
    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_05bbc22c2eaa29a8eba10763.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_7c2b6717edc97bbd436d5c2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_663aaf070ad4c70150cee9ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_bc7c849e0b777a611770f76d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_60707725e39eaa890d7147d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_c2f06243e4d6ab9e39f67794.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_19236528aab91562f75d9f94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191406;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_7f7d818f014ab3b267eaac0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_40a9e3251e9a3916b9c6e5a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_28769f2bc9d44eb6e7a9a936.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_6d89d9943fe28c4e58668dbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.190918;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_9b6b5c037f09695ce78f6cab.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.190918;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:ffe;src:url('chunks/assets/font_9dcec5fb04ef12b827f496e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.191406;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:fff;src:url('chunks/assets/font_aa1e75c0f67a5931799c36a1.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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:ff10;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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:ff11;src:url('chunks/assets/font_31d34fd9e10d74d09410db21.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.362000;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:ff12;src:url('chunks/assets/font_6d89d9943fe28c4e58668dbb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.190918;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:ff13;src:url('chunks/assets/font_9b6b5c037f09695ce78f6cab.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.190918;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:ff14;src:url('chunks/assets/font_9dcec5fb04ef12b827f496e3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.191406;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:ff15;src:url('chunks/assets/font_aa1e75c0f67a5931799c36a1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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:ff16;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.203000;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:ff17;src:url('chunks/assets/font_fbdfe4243fb129eb030c02cf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.411000;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:ff18;src:url('chunks/assets/font_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.384000;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:ff19;src:url('chunks/assets/font_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.200885;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:ff1a;src:url('chunks/assets/font_9b6b5c037f09695ce78f6cab.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.190918;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:ff1b;src:url('chunks/assets/font_9dcec5fb04ef12b827f496e3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.191406;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:ff1c;src:url('chunks/assets/font_72f95233c1a2f1aca6420f1e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;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:ff1d;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.203000;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:ff1e;src:url('chunks/assets/font_d093a36a0372a89ad04c1dd0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.190918;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:ff1f;src:url('chunks/assets/font_5732123bb5200c88c942e923.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.191406;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:ff20;src:url('chunks/assets/font_72f95233c1a2f1aca6420f1e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;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:ff21;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.203000;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:ff22;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.225182;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:ff23;src:url('chunks/assets/font_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.200885;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:ff24;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.225182;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:ff25;src:url('chunks/assets/font_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.200885;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400000px;}
.v4{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.v8{vertical-align:-10.860000px;}
.v7{vertical-align:-8.388000px;}
.vb{vertical-align:-5.196096px;}
.vc{vertical-align:-1.714176px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.400000px;}
.v9{vertical-align:10.800000px;}
.v3{vertical-align:18.222000px;}
.v1{vertical-align:20.400000px;}
.v6{vertical-align:44.982000px;}
.ls56{letter-spacing:-6.804000px;}
.ls57{letter-spacing:-6.750000px;}
.ls86{letter-spacing:-6.372000px;}
.ls4f{letter-spacing:-5.124000px;}
.ls37{letter-spacing:-1.458000px;}
.lsc1{letter-spacing:-1.305000px;}
.ls2b{letter-spacing:-1.188000px;}
.lsd9{letter-spacing:-1.035000px;}
.ls88{letter-spacing:-1.026000px;}
.lsdb{letter-spacing:-0.990000px;}
.ls32{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.960000px;}
.lscb{letter-spacing:-0.945000px;}
.lsd2{letter-spacing:-0.900000px;}
.lsa5{letter-spacing:-0.857088px;}
.lscf{letter-spacing:-0.855000px;}
.ls38{letter-spacing:-0.810000px;}
.lsc6{letter-spacing:-0.765000px;}
.ls91{letter-spacing:-0.756000px;}
.lsc5{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.702000px;}
.lsb2{letter-spacing:-0.696384px;}
.lsd7{letter-spacing:-0.675000px;}
.ls39{letter-spacing:-0.648000px;}
.lsd8{letter-spacing:-0.630000px;}
.ls36{letter-spacing:-0.594000px;}
.lsc7{letter-spacing:-0.585000px;}
.ls34{letter-spacing:-0.540000px;}
.lsc0{letter-spacing:-0.495000px;}
.ls1f{letter-spacing:-0.486000px;}
.lsca{letter-spacing:-0.450000px;}
.ls84{letter-spacing:-0.432000px;}
.ls85{letter-spacing:-0.421200px;}
.lsbe{letter-spacing:-0.405000px;}
.ls92{letter-spacing:-0.378000px;}
.lsd5{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.351000px;}
.ls2e{letter-spacing:-0.324000px;}
.lsa4{letter-spacing:-0.321408px;}
.ls87{letter-spacing:-0.315900px;}
.lsbf{letter-spacing:-0.315000px;}
.ls1d{letter-spacing:-0.270000px;}
.lsc4{letter-spacing:-0.225000px;}
.ls3d{letter-spacing:-0.216000px;}
.lsb0{letter-spacing:-0.214272px;}
.ls4d{letter-spacing:-0.210000px;}
.lsd3{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.162000px;}
.ls70{letter-spacing:-0.140400px;}
.lsd4{letter-spacing:-0.135000px;}
.ls2d{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.105300px;}
.lsc8{letter-spacing:-0.090000px;}
.ls35{letter-spacing:-0.070200px;}
.ls93{letter-spacing:-0.060000px;}
.ls3a{letter-spacing:-0.054000px;}
.lsc2{letter-spacing:-0.045000px;}
.ls3b{letter-spacing:-0.035100px;}
.ls19{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.002400px;}
.ls6d{letter-spacing:0.003000px;}
.ls48{letter-spacing:0.006000px;}
.ls43{letter-spacing:0.006600px;}
.ls46{letter-spacing:0.007200px;}
.ls42{letter-spacing:0.007800px;}
.ls5e{letter-spacing:0.008400px;}
.ls69{letter-spacing:0.009600px;}
.ls6b{letter-spacing:0.010800px;}
.ls44{letter-spacing:0.012000px;}
.ls24{letter-spacing:0.012600px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls8b{letter-spacing:0.015600px;}
.ls6c{letter-spacing:0.018000px;}
.ls67{letter-spacing:0.020400px;}
.ls4b{letter-spacing:0.021000px;}
.ls76{letter-spacing:0.021300px;}
.ls8a{letter-spacing:0.022800px;}
.ls5d{letter-spacing:0.024600px;}
.ls77{letter-spacing:0.027000px;}
.ls7c{letter-spacing:0.029400px;}
.ls31{letter-spacing:0.035100px;}
.ls40{letter-spacing:0.039000px;}
.ls5c{letter-spacing:0.042000px;}
.ls80{letter-spacing:0.042600px;}
.ls7b{letter-spacing:0.043200px;}
.lsc9{letter-spacing:0.045000px;}
.ls7a{letter-spacing:0.046500px;}
.ls8e{letter-spacing:0.048600px;}
.ls21{letter-spacing:0.054000px;}
.ls7f{letter-spacing:0.061200px;}
.ls7e{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.070200px;}
.lsbd{letter-spacing:0.090000px;}
.lse{letter-spacing:0.098850px;}
.ls7d{letter-spacing:0.105300px;}
.lsa3{letter-spacing:0.107136px;}
.ls28{letter-spacing:0.108000px;}
.ls8d{letter-spacing:0.118800px;}
.ls8f{letter-spacing:0.135000px;}
.ls78{letter-spacing:0.140400px;}
.ls79{letter-spacing:0.151800px;}
.lsf{letter-spacing:0.153000px;}
.ls30{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.175500px;}
.lsd0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.183600px;}
.ls7{letter-spacing:0.210600px;}
.ls83{letter-spacing:0.211200px;}
.ls82{letter-spacing:0.211800px;}
.lsa{letter-spacing:0.216000px;}
.lsb9{letter-spacing:0.225000px;}
.ls25{letter-spacing:0.228150px;}
.lsb4{letter-spacing:0.232200px;}
.ls94{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.243000px;}
.ls1e{letter-spacing:0.245700px;}
.ls4e{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.264600px;}
.lsa6{letter-spacing:0.267840px;}
.ls1c{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.280800px;}
.ls5a{letter-spacing:0.297000px;}
.ls9a{letter-spacing:0.313200px;}
.lsb5{letter-spacing:0.315000px;}
.ls2f{letter-spacing:0.315900px;}
.ls81{letter-spacing:0.316200px;}
.ls9{letter-spacing:0.324000px;}
.ls74{letter-spacing:0.336900px;}
.ls75{letter-spacing:0.338100px;}
.ls59{letter-spacing:0.340200px;}
.ls90{letter-spacing:0.351000px;}
.lsb6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.362250px;}
.ls71{letter-spacing:0.369000px;}
.lsc{letter-spacing:0.378000px;}
.ls72{letter-spacing:0.386100px;}
.ls58{letter-spacing:0.405000px;}
.ls89{letter-spacing:0.409200px;}
.ls73{letter-spacing:0.421200px;}
.ls6{letter-spacing:0.432000px;}
.lsd6{letter-spacing:0.450000px;}
.ls29{letter-spacing:0.456300px;}
.ls26{letter-spacing:0.480000px;}
.lsa9{letter-spacing:0.482112px;}
.ls20{letter-spacing:0.486000px;}
.lsbb{letter-spacing:0.495000px;}
.ls97{letter-spacing:0.507600px;}
.ls5b{letter-spacing:0.513000px;}
.ls60{letter-spacing:0.526500px;}
.ls1b{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.540450px;}
.ls5f{letter-spacing:0.541800px;}
.ls13{letter-spacing:0.559050px;}
.ls16{letter-spacing:0.561000px;}
.ls63{letter-spacing:0.561600px;}
.lsce{letter-spacing:0.567000px;}
.ls64{letter-spacing:0.580200px;}
.lsda{letter-spacing:0.585000px;}
.ls27{letter-spacing:0.594000px;}
.ls61{letter-spacing:0.596700px;}
.ls9b{letter-spacing:0.600000px;}
.ls53{letter-spacing:0.626400px;}
.lsd1{letter-spacing:0.630000px;}
.ls52{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.658050px;}
.ls95{letter-spacing:0.660000px;}
.lsc3{letter-spacing:0.675000px;}
.ls23{letter-spacing:0.702000px;}
.ls10{letter-spacing:0.707250px;}
.ls8c{letter-spacing:0.710400px;}
.lscd{letter-spacing:0.720000px;}
.lsa2{letter-spacing:0.749952px;}
.ls33{letter-spacing:0.756000px;}
.lsba{letter-spacing:0.765000px;}
.ls50{letter-spacing:0.772200px;}
.lscc{letter-spacing:0.774000px;}
.ls3e{letter-spacing:0.810000px;}
.lsa7{letter-spacing:0.857088px;}
.ls65{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.867000px;}
.ls62{letter-spacing:0.868800px;}
.lsdd{letter-spacing:0.918000px;}
.ls55{letter-spacing:0.972000px;}
.ls14{letter-spacing:1.020000px;}
.ls51{letter-spacing:1.026000px;}
.lsb7{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.122000px;}
.ls54{letter-spacing:1.188000px;}
.lsdc{letter-spacing:1.566000px;}
.lsb8{letter-spacing:1.710000px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsbc{letter-spacing:6.120000px;}
.lsaa{letter-spacing:17.088192px;}
.lsb3{letter-spacing:61.603200px;}
.ls9d{letter-spacing:67.174272px;}
.lsb1{letter-spacing:75.209472px;}
.ls4a{letter-spacing:95.256000px;}
.ls6e{letter-spacing:99.078000px;}
.lsac{letter-spacing:103.493376px;}
.ls6a{letter-spacing:115.542000px;}
.lsad{letter-spacing:117.313920px;}
.lsae{letter-spacing:120.099456px;}
.ls4c{letter-spacing:121.632000px;}
.ls41{letter-spacing:122.346000px;}
.ls66{letter-spacing:122.388000px;}
.ls98{letter-spacing:132.848640px;}
.ls49{letter-spacing:134.736000px;}
.ls47{letter-spacing:165.396000px;}
.ls45{letter-spacing:174.300000px;}
.lsaf{letter-spacing:179.827776px;}
.lsa1{letter-spacing:185.023872px;}
.ls9f{letter-spacing:219.253824px;}
.lsa0{letter-spacing:220.325184px;}
.lsab{letter-spacing:233.074368px;}
.ls9e{letter-spacing:239.341824px;}
.lsa8{letter-spacing:346.049280px;}
.ls96{letter-spacing:348.941952px;}
.ls99{letter-spacing:1249.205760px;}
.ls9c{letter-spacing:1474.512768px;}
.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;}
}
.ws97{word-spacing:-1487.904768px;}
.wsbe{word-spacing:-346.049280px;}
.ws99{word-spacing:-252.733824px;}
.wsaa{word-spacing:-246.466368px;}
.ws9b{word-spacing:-233.717184px;}
.ws9a{word-spacing:-232.645824px;}
.wsbb{word-spacing:-219.253824px;}
.ws9c{word-spacing:-197.290944px;}
.wsaf{word-spacing:-192.094848px;}
.wsad{word-spacing:-146.240640px;}
.wsbc{word-spacing:-120.099456px;}
.wsb1{word-spacing:-87.476544px;}
.wsb4{word-spacing:-73.870272px;}
.wsab{word-spacing:-59.835456px;}
.wsa9{word-spacing:-30.480192px;}
.wsae{word-spacing:-27.694656px;}
.ws2{word-spacing:-15.067500px;}
.ws24{word-spacing:-14.700000px;}
.ws31{word-spacing:-13.596000px;}
.wsa2{word-spacing:-13.124160px;}
.wsa6{word-spacing:-13.017024px;}
.ws69{word-spacing:-12.960000px;}
.ws67{word-spacing:-12.798000px;}
.ws6a{word-spacing:-12.771000px;}
.wsa8{word-spacing:-12.642048px;}
.ws8a{word-spacing:-12.636000px;}
.ws8f{word-spacing:-12.582000px;}
.ws68{word-spacing:-12.555000px;}
.wsa1{word-spacing:-12.534912px;}
.ws8b{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws90{word-spacing:-12.420000px;}
.ws9e{word-spacing:-12.374208px;}
.ws29{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws28{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws66{word-spacing:-12.150000px;}
.ws2d{word-spacing:-12.096000px;}
.wsb0{word-spacing:-12.052800px;}
.ws65{word-spacing:-11.610000px;}
.wsb3{word-spacing:-11.570688px;}
.ws2f{word-spacing:-11.556000px;}
.wsa0{word-spacing:-11.409984px;}
.ws2c{word-spacing:-11.394000px;}
.ws89{word-spacing:-11.340000px;}
.ws26{word-spacing:-11.178000px;}
.wse5{word-spacing:-10.755000px;}
.wsc2{word-spacing:-10.530000px;}
.wsc3{word-spacing:-10.350000px;}
.wsde{word-spacing:-10.305000px;}
.wse2{word-spacing:-10.260000px;}
.ws8{word-spacing:-10.200000px;}
.wse0{word-spacing:-10.170000px;}
.wse4{word-spacing:-10.035000px;}
.wsc0{word-spacing:-9.990000px;}
.wse1{word-spacing:-9.945000px;}
.ws53{word-spacing:-9.912000px;}
.wsf0{word-spacing:-9.900000px;}
.wsc4{word-spacing:-9.855000px;}
.wse3{word-spacing:-9.810000px;}
.wsc1{word-spacing:-9.720000px;}
.wsd8{word-spacing:-9.675000px;}
.ws4f{word-spacing:-9.534000px;}
.wsef{word-spacing:-9.495000px;}
.wsdf{word-spacing:-9.450000px;}
.wsbf{word-spacing:-9.000000px;}
.ws82{word-spacing:-8.775000px;}
.ws6e{word-spacing:-8.494200px;}
.ws25{word-spacing:-8.424000px;}
.ws8e{word-spacing:-8.388900px;}
.ws8d{word-spacing:-8.318700px;}
.ws2a{word-spacing:-8.283600px;}
.ws5{word-spacing:-8.213400px;}
.ws6{word-spacing:-8.178300px;}
.ws6d{word-spacing:-8.143200px;}
.ws83{word-spacing:-8.073000px;}
.ws4{word-spacing:-8.034000px;}
.ws2b{word-spacing:-8.002800px;}
.ws7{word-spacing:-7.967700px;}
.ws30{word-spacing:-7.932600px;}
.ws2e{word-spacing:-7.897500px;}
.ws27{word-spacing:-7.862400px;}
.ws6c{word-spacing:-7.827300px;}
.ws84{word-spacing:-7.651800px;}
.ws6b{word-spacing:-7.616700px;}
.ws81{word-spacing:-7.546500px;}
.ws4e{word-spacing:-6.197100px;}
.wsc5{word-spacing:-6.120000px;}
.ws5c{word-spacing:-5.508000px;}
.ws5d{word-spacing:-5.454000px;}
.ws79{word-spacing:-4.410000px;}
.ws5a{word-spacing:-4.284000px;}
.wsf5{word-spacing:-3.960000px;}
.wsb{word-spacing:-3.276000px;}
.ws3e{word-spacing:-1.890000px;}
.ws11{word-spacing:-1.836000px;}
.ws41{word-spacing:-1.782000px;}
.ws42{word-spacing:-1.728000px;}
.ws35{word-spacing:-1.674000px;}
.ws19{word-spacing:-1.620000px;}
.wscd{word-spacing:-1.575000px;}
.ws88{word-spacing:-1.566000px;}
.wscc{word-spacing:-1.530000px;}
.ws7f{word-spacing:-1.512000px;}
.ws80{word-spacing:-1.458000px;}
.wsda{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.404000px;}
.wsf6{word-spacing:-1.386000px;}
.wsb8{word-spacing:-1.350000px;}
.wsea{word-spacing:-1.305000px;}
.ws3c{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.242000px;}
.wscb{word-spacing:-1.215000px;}
.ws5b{word-spacing:-1.188000px;}
.wsd{word-spacing:-1.134000px;}
.wsd1{word-spacing:-1.125000px;}
.ws1f{word-spacing:-1.122000px;}
.ws1b{word-spacing:-1.080000px;}
.wsc6{word-spacing:-1.035000px;}
.ws7e{word-spacing:-1.026000px;}
.ws21{word-spacing:-1.020000px;}
.ws62{word-spacing:-0.972000px;}
.wsd9{word-spacing:-0.945000px;}
.ws59{word-spacing:-0.924000px;}
.ws18{word-spacing:-0.918000px;}
.ws20{word-spacing:-0.867000px;}
.ws3f{word-spacing:-0.864000px;}
.wseb{word-spacing:-0.855000px;}
.ws87{word-spacing:-0.810000px;}
.ws38{word-spacing:-0.756000px;}
.wsbd{word-spacing:-0.749952px;}
.wsc9{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.714000px;}
.ws39{word-spacing:-0.702000px;}
.wsdb{word-spacing:-0.675000px;}
.wsb9{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.648000px;}
.wsd7{word-spacing:-0.630000px;}
.wsba{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.594000px;}
.ws22{word-spacing:-0.561000px;}
.ws43{word-spacing:-0.540000px;}
.wsce{word-spacing:-0.495000px;}
.ws1c{word-spacing:-0.486000px;}
.ws46{word-spacing:-0.480000px;}
.ws8c{word-spacing:-0.456300px;}
.wsee{word-spacing:-0.450000px;}
.ws1d{word-spacing:-0.432000px;}
.ws12{word-spacing:-0.378000px;}
.ws94{word-spacing:-0.351000px;}
.ws17{word-spacing:-0.324000px;}
.ws40{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.245700px;}
.wsb7{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.210600px;}
.wse6{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.162000px;}
.ws1e{word-spacing:-0.153000px;}
.wsdd{word-spacing:-0.135000px;}
.ws16{word-spacing:-0.108000px;}
.wsc7{word-spacing:-0.090000px;}
.ws37{word-spacing:-0.054000px;}
.wsc8{word-spacing:-0.045000px;}
.ws3a{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.wscf{word-spacing:0.045000px;}
.ws10{word-spacing:0.054000px;}
.ws96{word-spacing:0.060000px;}
.wsdc{word-spacing:0.090000px;}
.ws36{word-spacing:0.105300px;}
.wse{word-spacing:0.108000px;}
.wsec{word-spacing:0.135000px;}
.ws44{word-spacing:0.162000px;}
.wsed{word-spacing:0.180000px;}
.ws64{word-spacing:0.216000px;}
.ws3d{word-spacing:0.270000px;}
.wsf1{word-spacing:0.315000px;}
.ws48{word-spacing:0.324000px;}
.wsf3{word-spacing:0.360000px;}
.ws63{word-spacing:0.378000px;}
.wsf2{word-spacing:0.405000px;}
.ws60{word-spacing:0.432000px;}
.ws7c{word-spacing:0.486000px;}
.ws92{word-spacing:0.540000px;}
.wsd0{word-spacing:0.585000px;}
.ws33{word-spacing:0.594000px;}
.wse8{word-spacing:0.630000px;}
.ws85{word-spacing:0.648000px;}
.ws5e{word-spacing:0.702000px;}
.wsd2{word-spacing:0.765000px;}
.ws95{word-spacing:0.810000px;}
.wsd6{word-spacing:0.855000px;}
.ws47{word-spacing:0.864000px;}
.wsd5{word-spacing:0.900000px;}
.ws49{word-spacing:0.918000px;}
.wsd3{word-spacing:0.945000px;}
.wsa{word-spacing:0.960000px;}
.wse9{word-spacing:0.990000px;}
.ws34{word-spacing:1.026000px;}
.wse7{word-spacing:1.125000px;}
.ws61{word-spacing:1.134000px;}
.ws93{word-spacing:1.188000px;}
.wsf7{word-spacing:1.242000px;}
.ws91{word-spacing:1.296000px;}
.wsd4{word-spacing:1.395000px;}
.ws3b{word-spacing:1.620000px;}
.wsca{word-spacing:1.710000px;}
.ws5f{word-spacing:1.782000px;}
.wsf4{word-spacing:2.592000px;}
.ws9d{word-spacing:5.142528px;}
.ws86{word-spacing:5.994000px;}
.wsac{word-spacing:12.695616px;}
.wsb6{word-spacing:47.568384px;}
.ws9f{word-spacing:49.978944px;}
.wsa5{word-spacing:61.388928px;}
.wsa4{word-spacing:63.799488px;}
.wsb5{word-spacing:64.335168px;}
.wsb2{word-spacing:66.585024px;}
.ws77{word-spacing:67.116000px;}
.ws75{word-spacing:68.758200px;}
.ws76{word-spacing:71.358000px;}
.ws73{word-spacing:78.036000px;}
.wsa3{word-spacing:80.405568px;}
.ws52{word-spacing:82.404000px;}
.ws56{word-spacing:82.530000px;}
.ws74{word-spacing:83.874000px;}
.ws98{word-spacing:85.333824px;}
.ws4a{word-spacing:97.944000px;}
.ws6f{word-spacing:107.100000px;}
.ws51{word-spacing:112.098000px;}
.ws55{word-spacing:123.564000px;}
.ws57{word-spacing:127.050000px;}
.ws7b{word-spacing:163.086000px;}
.ws4b{word-spacing:164.178000px;}
.ws71{word-spacing:169.050000px;}
.ws70{word-spacing:171.192000px;}
.ws54{word-spacing:187.110000px;}
.ws4c{word-spacing:190.638000px;}
.wsa7{word-spacing:255.197952px;}
.ws78{word-spacing:257.334000px;}
.ws50{word-spacing:270.358200px;}
.ws7a{word-spacing:332.556000px;}
.ws4d{word-spacing:356.580000px;}
.ws72{word-spacing:426.804000px;}
._25{margin-left:-3065.053824px;}
._28{margin-left:-1818.955008px;}
._2a{margin-left:-1242.724296px;}
._29{margin-left:-185.345280px;}
._2c{margin-left:-180.149184px;}
._2b{margin-left:-119.242368px;}
._26{margin-left:-106.493184px;}
._27{margin-left:-86.405184px;}
._2d{margin-left:-75.959424px;}
._2e{margin-left:-61.751688px;}
._23{margin-left:-11.794800px;}
._3{margin-left:-9.859800px;}
._22{margin-left:-8.404200px;}
._7{margin-left:-6.476100px;}
._8{margin-left:-5.040000px;}
._1{margin-left:-3.684000px;}
._0{margin-left:-1.776000px;}
._4{width:1.067400px;}
._5{width:2.126400px;}
._6{width:3.468000px;}
._e{width:5.376000px;}
._17{width:6.577200px;}
._33{width:7.834800px;}
._32{width:9.135000px;}
._31{width:10.350000px;}
._30{width:11.610000px;}
._2f{width:12.960000px;}
._16{width:15.948000px;}
._34{width:17.460000px;}
._24{width:41.843400px;}
._2{width:43.112400px;}
._9{width:48.492600px;}
._21{width:62.989200px;}
._1b{width:67.715400px;}
._1e{width:69.116400px;}
._11{width:70.913400px;}
._1a{width:75.027600px;}
._20{width:77.118000px;}
._13{width:85.802400px;}
._14{width:88.492800px;}
._10{width:90.232800px;}
._1c{width:94.685400px;}
._b{width:97.740600px;}
._1f{width:99.981000px;}
._1d{width:100.988400px;}
._c{width:109.632000px;}
._a{width:111.097200px;}
._f{width:121.018800px;}
._15{width:126.625200px;}
._12{width:129.171000px;}
._19{width:153.186000px;}
._18{width:189.511200px;}
._d{width:201.864000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y194{bottom:4.752000px;}
.y183{bottom:5.616000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y195{bottom:42.329952px;}
.y191{bottom:42.336000px;}
.y2f{bottom:68.307900px;}
.ye2{bottom:68.551500px;}
.y1ac{bottom:68.554500px;}
.y78{bottom:68.560500px;}
.y16e{bottom:68.572500px;}
.yaa{bottom:68.589300px;}
.y13b{bottom:68.799300px;}
.y1ec{bottom:70.492050px;}
.y7f{bottom:76.287300px;}
.y237{bottom:80.050800px;}
.y1eb{bottom:83.238300px;}
.y2e{bottom:83.307900px;}
.ye1{bottom:83.551500px;}
.y1ab{bottom:83.553000px;}
.y77{bottom:83.559000px;}
.y16d{bottom:83.571000px;}
.ya9{bottom:83.587800px;}
.y13a{bottom:83.797800px;}
.y7e{bottom:91.285800px;}
.y236{bottom:95.049300px;}
.y1ea{bottom:95.984550px;}
.y2d{bottom:98.307900px;}
.y101{bottom:98.550000px;}
.ye0{bottom:98.551500px;}
.y76{bottom:98.557500px;}
.y16c{bottom:98.569500px;}
.ya8{bottom:98.586300px;}
.y139{bottom:98.796300px;}
.y7d{bottom:106.284300px;}
.y1e9{bottom:108.730800px;}
.y235{bottom:110.047800px;}
.y2c{bottom:113.307900px;}
.y100{bottom:113.550000px;}
.ydf{bottom:113.554350px;}
.y75{bottom:113.556000px;}
.y16b{bottom:113.568000px;}
.y1aa{bottom:113.580000px;}
.ya7{bottom:113.584800px;}
.y138{bottom:113.794800px;}
.y7c{bottom:121.282800px;}
.y1e8{bottom:121.477050px;}
.y234{bottom:125.046300px;}
.y2b{bottom:128.307900px;}
.yde{bottom:128.552850px;}
.y74{bottom:128.554500px;}
.y16a{bottom:128.566500px;}
.y1a9{bottom:128.578500px;}
.ya6{bottom:128.583300px;}
.y137{bottom:128.815800px;}
.y1e7{bottom:134.223300px;}
.y7b{bottom:136.281300px;}
.y233{bottom:140.044800px;}
.y2a{bottom:143.307900px;}
.y73{bottom:143.553000px;}
.y169{bottom:143.565000px;}
.y1a8{bottom:143.577000px;}
.ya5{bottom:143.581800px;}
.y136{bottom:143.814300px;}
.yff{bottom:146.049300px;}
.y1e6{bottom:146.969550px;}
.y7a{bottom:151.279800px;}
.y232{bottom:155.043300px;}
.y72{bottom:158.551500px;}
.y168{bottom:158.563500px;}
.y1a7{bottom:158.575500px;}
.ya4{bottom:158.580300px;}
.ydd{bottom:158.752350px;}
.y135{bottom:158.812800px;}
.y1e5{bottom:159.715800px;}
.yfe{bottom:161.047800px;}
.y29{bottom:162.636900px;}
.y79{bottom:166.278300px;}
.y231{bottom:170.043300px;}
.y1e4{bottom:172.462050px;}
.y71{bottom:173.550000px;}
.y167{bottom:173.562000px;}
.y1a6{bottom:173.574000px;}
.ya3{bottom:173.578800px;}
.ydc{bottom:173.750850px;}
.y134{bottom:173.811300px;}
.yfd{bottom:176.046300px;}
.y1e3{bottom:185.208300px;}
.y70{bottom:188.550000px;}
.y166{bottom:188.560500px;}
.ya2{bottom:188.577300px;}
.ydb{bottom:188.749350px;}
.y133{bottom:188.809800px;}
.yfc{bottom:191.044800px;}
.y1e2{bottom:197.954550px;}
.y28{bottom:201.687300px;}
.y230{bottom:203.050800px;}
.y1a5{bottom:203.125500px;}
.y165{bottom:203.559000px;}
.ya1{bottom:203.575800px;}
.yda{bottom:203.747850px;}
.y132{bottom:203.808300px;}
.yfb{bottom:206.044800px;}
.y1e1{bottom:210.700800px;}
.y27{bottom:216.685800px;}
.y22f{bottom:218.049300px;}
.y1a4{bottom:218.124000px;}
.y164{bottom:218.557500px;}
.ya0{bottom:218.574300px;}
.yd9{bottom:218.761350px;}
.y6f{bottom:218.806800px;}
.yfa{bottom:221.044800px;}
.y90{bottom:223.344450px;}
.y1e0{bottom:223.447050px;}
.y26{bottom:231.685800px;}
.y22e{bottom:233.047800px;}
.y1a3{bottom:233.122500px;}
.y163{bottom:233.556000px;}
.y9f{bottom:233.572800px;}
.yd8{bottom:233.759850px;}
.y6e{bottom:233.805300px;}
.yf9{bottom:236.053800px;}
.y1df{bottom:236.193300px;}
.y8f{bottom:238.342950px;}
.y25{bottom:246.690300px;}
.y22d{bottom:248.046300px;}
.y1a2{bottom:248.121000px;}
.y162{bottom:248.554500px;}
.y9e{bottom:248.571300px;}
.yd7{bottom:248.758350px;}
.y6d{bottom:248.803800px;}
.y1de{bottom:248.939550px;}
.yf8{bottom:251.052300px;}
.y8e{bottom:253.341450px;}
.y1dd{bottom:261.685800px;}
.y24{bottom:261.688800px;}
.y22c{bottom:263.044800px;}
.y1a1{bottom:263.119500px;}
.y161{bottom:263.553000px;}
.y9d{bottom:263.569800px;}
.yd6{bottom:263.756850px;}
.y6c{bottom:263.802300px;}
.yf7{bottom:266.050800px;}
.y8d{bottom:268.339950px;}
.y1dc{bottom:274.432050px;}
.y23{bottom:276.687300px;}
.y22b{bottom:278.043300px;}
.y1a0{bottom:278.118000px;}
.y160{bottom:278.551500px;}
.y9c{bottom:278.568300px;}
.yd5{bottom:278.755350px;}
.y6b{bottom:278.800800px;}
.yf6{bottom:281.049300px;}
.y8c{bottom:283.338450px;}
.y1db{bottom:287.178300px;}
.y22{bottom:291.685800px;}
.y22a{bottom:293.043300px;}
.y19f{bottom:293.116500px;}
.y15f{bottom:293.559000px;}
.y9b{bottom:293.566800px;}
.yd4{bottom:293.753850px;}
.y6a{bottom:293.799300px;}
.yf5{bottom:296.047800px;}
.y8b{bottom:298.336950px;}
.y1da{bottom:299.924550px;}
.y21{bottom:306.688800px;}
.y19e{bottom:308.115000px;}
.y15e{bottom:308.557500px;}
.y9a{bottom:308.565300px;}
.yd3{bottom:308.752350px;}
.y69{bottom:308.797800px;}
.yf4{bottom:311.046300px;}
.y1d9{bottom:312.670800px;}
.y8a{bottom:313.335450px;}
.y20{bottom:321.687300px;}
.y19d{bottom:323.113500px;}
.y15d{bottom:323.556000px;}
.y99{bottom:323.563800px;}
.yd2{bottom:323.750850px;}
.y68{bottom:323.796300px;}
.y1d8{bottom:325.417050px;}
.yf3{bottom:326.044800px;}
.y229{bottom:326.268300px;}
.y89{bottom:328.333950px;}
.y1f{bottom:336.685800px;}
.y19c{bottom:338.112000px;}
.y1d7{bottom:338.163300px;}
.y15c{bottom:338.554500px;}
.y98{bottom:338.562300px;}
.yd1{bottom:338.749350px;}
.y67{bottom:338.794800px;}
.y228{bottom:339.014550px;}
.yf2{bottom:341.044800px;}
.y1d6{bottom:350.909550px;}
.y1e{bottom:351.685800px;}
.y227{bottom:351.760800px;}
.y19b{bottom:353.110500px;}
.y15b{bottom:353.553000px;}
.yd0{bottom:353.747850px;}
.y66{bottom:353.800800px;}
.y131{bottom:353.812800px;}
.yf1{bottom:356.044800px;}
.y1d5{bottom:363.655800px;}
.y226{bottom:364.507050px;}
.y1d{bottom:366.688800px;}
.y19a{bottom:368.109000px;}
.y15a{bottom:368.551500px;}
.ycf{bottom:368.746350px;}
.y65{bottom:368.799300px;}
.y97{bottom:368.802300px;}
.y130{bottom:368.811300px;}
.yf0{bottom:371.047800px;}
.y1d4{bottom:376.402050px;}
.y225{bottom:377.253300px;}
.y1c{bottom:381.687300px;}
.y199{bottom:383.107500px;}
.y159{bottom:383.550000px;}
.y64{bottom:383.797800px;}
.y96{bottom:383.800800px;}
.y12f{bottom:383.809800px;}
.yef{bottom:386.046300px;}
.y1d3{bottom:389.148300px;}
.y224{bottom:389.999550px;}
.yce{bottom:396.591300px;}
.y1b{bottom:396.685800px;}
.y198{bottom:398.106000px;}
.y158{bottom:398.550000px;}
.y63{bottom:398.796300px;}
.y95{bottom:398.799300px;}
.y12e{bottom:398.808300px;}
.yee{bottom:401.044800px;}
.y1d2{bottom:401.894550px;}
.y223{bottom:402.745800px;}
.ycd{bottom:411.589800px;}
.y1a{bottom:411.688800px;}
.y197{bottom:413.104500px;}
.y62{bottom:413.794800px;}
.y94{bottom:413.797800px;}
.y12d{bottom:413.806800px;}
.y1d1{bottom:414.640800px;}
.y222{bottom:415.492050px;}
.yed{bottom:416.044800px;}
.ycc{bottom:426.588300px;}
.y19{bottom:426.687300px;}
.y1d0{bottom:427.387050px;}
.y196{bottom:428.103000px;}
.y221{bottom:428.238300px;}
.y93{bottom:428.796300px;}
.y61{bottom:428.799300px;}
.y12c{bottom:428.805300px;}
.yec{bottom:431.046300px;}
.y1cf{bottom:440.133300px;}
.y220{bottom:440.984550px;}
.ycb{bottom:441.586800px;}
.y18{bottom:441.685800px;}
.y92{bottom:443.794800px;}
.y60{bottom:443.797800px;}
.y12b{bottom:443.803800px;}
.yeb{bottom:446.044800px;}
.y190{bottom:448.213500px;}
.y1ce{bottom:452.879550px;}
.y18f{bottom:452.965500px;}
.y193{bottom:452.966796px;}
.y21f{bottom:453.730800px;}
.yca{bottom:456.585300px;}
.y17{bottom:456.718800px;}
.y91{bottom:458.793300px;}
.y5f{bottom:458.796300px;}
.y12a{bottom:458.802300px;}
.yea{bottom:461.044800px;}
.y1cd{bottom:465.625800px;}
.y21e{bottom:466.477050px;}
.y192{bottom:471.541500px;}
.yc9{bottom:471.583800px;}
.y16{bottom:471.717300px;}
.y5e{bottom:473.794800px;}
.y129{bottom:473.800800px;}
.ye9{bottom:476.044800px;}
.y1cc{bottom:478.372050px;}
.y21d{bottom:479.223300px;}
.yc8{bottom:486.582300px;}
.y157{bottom:488.796300px;}
.y128{bottom:488.799300px;}
.y5d{bottom:488.802300px;}
.ye8{bottom:491.044800px;}
.y1cb{bottom:491.118300px;}
.y21c{bottom:491.969550px;}
.yc7{bottom:501.580800px;}
.y156{bottom:503.794800px;}
.y127{bottom:503.797800px;}
.y5c{bottom:503.800800px;}
.y1ca{bottom:503.864550px;}
.y21b{bottom:504.715800px;}
.ye7{bottom:506.043300px;}
.yad{bottom:511.561950px;}
.yc6{bottom:516.579300px;}
.y1c9{bottom:516.610800px;}
.y21a{bottom:517.462050px;}
.y18e{bottom:517.500000px;}
.y126{bottom:518.796300px;}
.y5b{bottom:518.799300px;}
.y155{bottom:518.805300px;}
.y15{bottom:518.967300px;}
.yac{bottom:526.560450px;}
.y1c8{bottom:529.357050px;}
.y219{bottom:530.208300px;}
.yc5{bottom:531.577800px;}
.y18d{bottom:532.498500px;}
.y125{bottom:533.794800px;}
.y5a{bottom:533.797800px;}
.y154{bottom:533.803800px;}
.y14{bottom:535.464300px;}
.yab{bottom:541.558950px;}
.y1c7{bottom:542.103300px;}
.y218{bottom:542.954550px;}
.yc4{bottom:546.576300px;}
.y18c{bottom:547.497000px;}
.y59{bottom:548.796300px;}
.y153{bottom:548.802300px;}
.y124{bottom:548.805300px;}
.y13{bottom:551.961300px;}
.y1c6{bottom:554.849550px;}
.y217{bottom:555.700800px;}
.yc3{bottom:561.574800px;}
.y18b{bottom:562.495500px;}
.y58{bottom:563.794800px;}
.y152{bottom:563.800800px;}
.y123{bottom:563.803800px;}
.y1c5{bottom:567.595800px;}
.y104{bottom:568.441950px;}
.y216{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.yc2{bottom:576.573300px;}
.y18a{bottom:577.494000px;}
.y57{bottom:578.796300px;}
.y151{bottom:578.799300px;}
.y122{bottom:578.802300px;}
.y1c4{bottom:580.342050px;}
.y215{bottom:581.193300px;}
.y103{bottom:583.440450px;}
.y11{bottom:584.955300px;}
.yc1{bottom:591.571800px;}
.y189{bottom:592.492500px;}
.y1c3{bottom:593.088300px;}
.y56{bottom:593.794800px;}
.y150{bottom:593.797800px;}
.y121{bottom:593.800800px;}
.y214{bottom:593.939550px;}
.y102{bottom:598.438950px;}
.y10{bottom:601.452300px;}
.y1c2{bottom:605.834550px;}
.yc0{bottom:606.570300px;}
.y213{bottom:606.685800px;}
.y188{bottom:607.491000px;}
.y55{bottom:608.794800px;}
.y14f{bottom:608.796300px;}
.y120{bottom:608.799300px;}
.yf{bottom:617.949300px;}
.y1c1{bottom:618.580800px;}
.y212{bottom:619.432050px;}
.ybf{bottom:621.568800px;}
.y187{bottom:622.489500px;}
.y14e{bottom:623.794800px;}
.y54{bottom:623.796300px;}
.y11f{bottom:623.797800px;}
.y1c0{bottom:631.327050px;}
.y211{bottom:632.178300px;}
.ye{bottom:634.446300px;}
.ybe{bottom:636.567300px;}
.y186{bottom:637.488000px;}
.y53{bottom:638.794800px;}
.y11e{bottom:638.796300px;}
.y1bf{bottom:644.073300px;}
.y210{bottom:644.924550px;}
.yd{bottom:650.943300px;}
.ybd{bottom:651.565800px;}
.y185{bottom:652.486500px;}
.y11d{bottom:653.794800px;}
.y52{bottom:653.797800px;}
.y14d{bottom:653.799300px;}
.y1be{bottom:656.819550px;}
.y20f{bottom:657.670800px;}
.ybc{bottom:666.564300px;}
.yc{bottom:667.440300px;}
.y184{bottom:667.485000px;}
.y51{bottom:668.796300px;}
.y14c{bottom:668.797800px;}
.y11c{bottom:668.805300px;}
.y1bd{bottom:669.565800px;}
.y20e{bottom:670.417050px;}
.ybb{bottom:681.562800px;}
.y1bc{bottom:682.312050px;}
.y20d{bottom:683.163300px;}
.y50{bottom:683.794800px;}
.y14b{bottom:683.796300px;}
.y11b{bottom:683.803800px;}
.yb{bottom:683.937300px;}
.y182{bottom:687.595500px;}
.y1bb{bottom:695.058300px;}
.y20c{bottom:695.909550px;}
.yba{bottom:696.561300px;}
.y14a{bottom:698.794800px;}
.y4f{bottom:698.799300px;}
.y11a{bottom:698.802300px;}
.ya{bottom:700.434300px;}
.y1ba{bottom:707.804550px;}
.y20b{bottom:708.655800px;}
.yb9{bottom:711.559800px;}
.y4e{bottom:713.797800px;}
.y149{bottom:713.799300px;}
.y119{bottom:713.800800px;}
.y181{bottom:719.286000px;}
.y1b9{bottom:720.550800px;}
.y20a{bottom:721.402050px;}
.yb8{bottom:726.558300px;}
.y4d{bottom:728.796300px;}
.y148{bottom:728.797800px;}
.y118{bottom:728.799300px;}
.y9{bottom:730.434300px;}
.y1b8{bottom:733.297050px;}
.y209{bottom:734.148300px;}
.y180{bottom:734.284500px;}
.yb7{bottom:741.556800px;}
.y4c{bottom:743.794800px;}
.y147{bottom:743.796300px;}
.y117{bottom:743.797800px;}
.y1b7{bottom:746.043300px;}
.y208{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y17f{bottom:749.283000px;}
.yb6{bottom:756.555300px;}
.y32{bottom:757.139400px;}
.y1b6{bottom:758.793300px;}
.y146{bottom:758.794800px;}
.y4b{bottom:758.796300px;}
.y207{bottom:759.640800px;}
.yb5{bottom:771.553800px;}
.y206{bottom:772.387050px;}
.y4a{bottom:773.794800px;}
.y145{bottom:773.796300px;}
.y17e{bottom:776.542650px;}
.y31{bottom:778.138650px;}
.y7{bottom:781.416300px;}
.y205{bottom:785.133300px;}
.yb4{bottom:786.552300px;}
.y116{bottom:788.794800px;}
.y49{bottom:788.796300px;}
.y17d{bottom:791.541150px;}
.y1b5{bottom:791.794800px;}
.y204{bottom:797.879550px;}
.y30{bottom:799.137900px;}
.yb3{bottom:801.550800px;}
.y48{bottom:803.794800px;}
.y144{bottom:803.800800px;}
.y115{bottom:803.806800px;}
.y17c{bottom:806.539650px;}
.y1b4{bottom:806.793300px;}
.y203{bottom:810.625800px;}
.yb2{bottom:816.549300px;}
.y47{bottom:818.797800px;}
.y143{bottom:818.799300px;}
.y114{bottom:818.805300px;}
.y17b{bottom:821.542650px;}
.y202{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.yb1{bottom:831.547800px;}
.y46{bottom:833.796300px;}
.y142{bottom:833.797800px;}
.y1b3{bottom:833.800800px;}
.y113{bottom:833.803800px;}
.y201{bottom:836.118300px;}
.y17a{bottom:836.541150px;}
.yb0{bottom:846.546300px;}
.y45{bottom:848.794800px;}
.y141{bottom:848.796300px;}
.y1b2{bottom:848.799300px;}
.y112{bottom:848.802300px;}
.y200{bottom:848.864550px;}
.y179{bottom:851.539650px;}
.y245{bottom:858.556800px;}
.yaf{bottom:861.544800px;}
.y1ff{bottom:861.610800px;}
.y44{bottom:863.794800px;}
.y1b1{bottom:863.797800px;}
.y111{bottom:863.800800px;}
.y178{bottom:866.538150px;}
.y5{bottom:871.428300px;}
.y244{bottom:873.555300px;}
.y1fe{bottom:874.357050px;}
.yae{bottom:876.543300px;}
.y140{bottom:878.796300px;}
.y110{bottom:878.799300px;}
.y43{bottom:878.802300px;}
.y1fd{bottom:887.103300px;}
.y243{bottom:888.553800px;}
.y13f{bottom:893.794800px;}
.y10f{bottom:893.797800px;}
.y42{bottom:893.800800px;}
.y1fc{bottom:899.849550px;}
.y242{bottom:903.552300px;}
.y10e{bottom:908.796300px;}
.y41{bottom:908.799300px;}
.y1b0{bottom:908.800800px;}
.y177{bottom:908.806800px;}
.y1fb{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y241{bottom:918.550800px;}
.y10d{bottom:923.794800px;}
.y40{bottom:923.797800px;}
.y1af{bottom:923.799300px;}
.y176{bottom:923.805300px;}
.y1fa{bottom:925.342050px;}
.ye6{bottom:926.049300px;}
.y33{bottom:926.409600px;}
.y88{bottom:926.989800px;}
.y240{bottom:933.549300px;}
.y1f9{bottom:938.088300px;}
.y13e{bottom:938.794800px;}
.y3f{bottom:938.796300px;}
.y1ae{bottom:938.797800px;}
.y175{bottom:938.803800px;}
.y10c{bottom:938.808300px;}
.ye5{bottom:942.546300px;}
.y87{bottom:943.486800px;}
.y23f{bottom:948.547800px;}
.y1f8{bottom:950.834550px;}
.y3e{bottom:953.794800px;}
.y1ad{bottom:953.796300px;}
.y13d{bottom:953.800800px;}
.y174{bottom:953.802300px;}
.y10b{bottom:953.806800px;}
.ye4{bottom:959.043300px;}
.y86{bottom:959.983800px;}
.y23e{bottom:963.546300px;}
.y1f7{bottom:963.580800px;}
.y3d{bottom:968.794800px;}
.y13c{bottom:968.799300px;}
.y173{bottom:968.800800px;}
.y10a{bottom:968.805300px;}
.y1f6{bottom:976.327050px;}
.y85{bottom:976.480800px;}
.y23d{bottom:978.544800px;}
.y3c{bottom:983.797800px;}
.y172{bottom:983.799300px;}
.y109{bottom:983.803800px;}
.y1f5{bottom:989.073300px;}
.y23c{bottom:993.543300px;}
.ye3{bottom:993.727800px;}
.y3b{bottom:998.796300px;}
.y171{bottom:998.797800px;}
.y108{bottom:998.802300px;}
.y1f4{bottom:1001.819550px;}
.y84{bottom:1011.165300px;}
.y3a{bottom:1013.794800px;}
.y170{bottom:1013.796300px;}
.y107{bottom:1013.800800px;}
.y1f3{bottom:1014.565800px;}
.y23b{bottom:1015.297800px;}
.y1f2{bottom:1027.312050px;}
.y83{bottom:1028.602800px;}
.y16f{bottom:1028.794800px;}
.y39{bottom:1028.796300px;}
.y106{bottom:1028.799300px;}
.y23a{bottom:1030.296300px;}
.y1f1{bottom:1040.058300px;}
.y38{bottom:1043.794800px;}
.y105{bottom:1043.797800px;}
.y82{bottom:1046.040300px;}
.y239{bottom:1052.044800px;}
.y1f0{bottom:1052.804550px;}
.y37{bottom:1058.796300px;}
.y81{bottom:1063.477800px;}
.y1ef{bottom:1065.550800px;}
.y238{bottom:1073.793300px;}
.y36{bottom:1073.794800px;}
.y1ee{bottom:1078.297050px;}
.y80{bottom:1080.918300px;}
.y35{bottom:1088.793300px;}
.y1ed{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h19{height:16.848000px;}
.ha{height:23.842749px;}
.hd{height:35.411133px;}
.hc{height:36.681152px;}
.h7{height:38.838867px;}
.hb{height:41.158749px;}
.h14{height:41.550000px;}
.h13{height:43.008000px;}
.h4{height:44.233154px;}
.h1f{height:44.505000px;}
.h20{height:45.090000px;}
.h3{height:45.744000px;}
.h1e{height:46.080000px;}
.h1b{height:50.889600px;}
.h8{height:51.416016px;}
.h1d{height:52.978752px;}
.h9{height:53.406000px;}
.h1a{height:53.675136px;}
.h16{height:54.048000px;}
.h10{height:54.072000px;}
.h18{height:54.096000px;}
.h17{height:54.102000px;}
.hf{height:54.108000px;}
.h1c{height:54.432000px;}
.h15{height:55.296000px;}
.h2{height:57.099609px;}
.h6{height:57.128906px;}
.h11{height:62.841797px;}
.he{height:77.677734px;}
.h12{height:87.990000px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:598.752000px;}
.w3{width:599.184000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.080500px;}
.x2{left:61.191450px;}
.x8{left:65.643900px;}
.x14{left:83.375700px;}
.x12{left:95.903700px;}
.x10{left:109.295700px;}
.x16{left:119.231700px;}
.x7{left:140.952750px;}
.x17{left:156.823044px;}
.x9{left:172.922400px;}
.xd{left:192.525900px;}
.x4{left:233.456400px;}
.x5{left:251.463150px;}
.x19{left:267.839700px;}
.x1b{left:300.594600px;}
.x13{left:341.546700px;}
.x15{left:352.346700px;}
.x18{left:412.826700px;}
.xa{left:448.473900px;}
.xe{left:476.466900px;}
.x11{left:494.474700px;}
.xb{left:537.692400px;}
.xf{left:567.438900px;}
.x3{left:584.586600px;}
.x1a{left:816.003600px;}
.xc{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v4{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.v8{vertical-align:-9.653333pt;}
.v7{vertical-align:-7.456000pt;}
.vb{vertical-align:-4.618752pt;}
.vc{vertical-align:-1.523712pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.466667pt;}
.v9{vertical-align:9.600000pt;}
.v3{vertical-align:16.197333pt;}
.v1{vertical-align:18.133333pt;}
.v6{vertical-align:39.984000pt;}
.ls56{letter-spacing:-6.048000pt;}
.ls57{letter-spacing:-6.000000pt;}
.ls86{letter-spacing:-5.664000pt;}
.ls4f{letter-spacing:-4.554667pt;}
.ls37{letter-spacing:-1.296000pt;}
.lsc1{letter-spacing:-1.160000pt;}
.ls2b{letter-spacing:-1.056000pt;}
.lsd9{letter-spacing:-0.920000pt;}
.ls88{letter-spacing:-0.912000pt;}
.lsdb{letter-spacing:-0.880000pt;}
.ls32{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.853333pt;}
.lscb{letter-spacing:-0.840000pt;}
.lsd2{letter-spacing:-0.800000pt;}
.lsa5{letter-spacing:-0.761856pt;}
.lscf{letter-spacing:-0.760000pt;}
.ls38{letter-spacing:-0.720000pt;}
.lsc6{letter-spacing:-0.680000pt;}
.ls91{letter-spacing:-0.672000pt;}
.lsc5{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.624000pt;}
.lsb2{letter-spacing:-0.619008pt;}
.lsd7{letter-spacing:-0.600000pt;}
.ls39{letter-spacing:-0.576000pt;}
.lsd8{letter-spacing:-0.560000pt;}
.ls36{letter-spacing:-0.528000pt;}
.lsc7{letter-spacing:-0.520000pt;}
.ls34{letter-spacing:-0.480000pt;}
.lsc0{letter-spacing:-0.440000pt;}
.ls1f{letter-spacing:-0.432000pt;}
.lsca{letter-spacing:-0.400000pt;}
.ls84{letter-spacing:-0.384000pt;}
.ls85{letter-spacing:-0.374400pt;}
.lsbe{letter-spacing:-0.360000pt;}
.ls92{letter-spacing:-0.336000pt;}
.lsd5{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.312000pt;}
.ls2e{letter-spacing:-0.288000pt;}
.lsa4{letter-spacing:-0.285696pt;}
.ls87{letter-spacing:-0.280800pt;}
.lsbf{letter-spacing:-0.280000pt;}
.ls1d{letter-spacing:-0.240000pt;}
.lsc4{letter-spacing:-0.200000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.lsb0{letter-spacing:-0.190464pt;}
.ls4d{letter-spacing:-0.186667pt;}
.lsd3{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls70{letter-spacing:-0.124800pt;}
.lsd4{letter-spacing:-0.120000pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.093600pt;}
.lsc8{letter-spacing:-0.080000pt;}
.ls35{letter-spacing:-0.062400pt;}
.ls93{letter-spacing:-0.053333pt;}
.ls3a{letter-spacing:-0.048000pt;}
.lsc2{letter-spacing:-0.040000pt;}
.ls3b{letter-spacing:-0.031200pt;}
.ls19{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.002133pt;}
.ls6d{letter-spacing:0.002667pt;}
.ls48{letter-spacing:0.005333pt;}
.ls43{letter-spacing:0.005867pt;}
.ls46{letter-spacing:0.006400pt;}
.ls42{letter-spacing:0.006933pt;}
.ls5e{letter-spacing:0.007467pt;}
.ls69{letter-spacing:0.008533pt;}
.ls6b{letter-spacing:0.009600pt;}
.ls44{letter-spacing:0.010667pt;}
.ls24{letter-spacing:0.011200pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls8b{letter-spacing:0.013867pt;}
.ls6c{letter-spacing:0.016000pt;}
.ls67{letter-spacing:0.018133pt;}
.ls4b{letter-spacing:0.018667pt;}
.ls76{letter-spacing:0.018933pt;}
.ls8a{letter-spacing:0.020267pt;}
.ls5d{letter-spacing:0.021867pt;}
.ls77{letter-spacing:0.024000pt;}
.ls7c{letter-spacing:0.026133pt;}
.ls31{letter-spacing:0.031200pt;}
.ls40{letter-spacing:0.034667pt;}
.ls5c{letter-spacing:0.037333pt;}
.ls80{letter-spacing:0.037867pt;}
.ls7b{letter-spacing:0.038400pt;}
.lsc9{letter-spacing:0.040000pt;}
.ls7a{letter-spacing:0.041333pt;}
.ls8e{letter-spacing:0.043200pt;}
.ls21{letter-spacing:0.048000pt;}
.ls7f{letter-spacing:0.054400pt;}
.ls7e{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.062400pt;}
.lsbd{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.087867pt;}
.ls7d{letter-spacing:0.093600pt;}
.lsa3{letter-spacing:0.095232pt;}
.ls28{letter-spacing:0.096000pt;}
.ls8d{letter-spacing:0.105600pt;}
.ls8f{letter-spacing:0.120000pt;}
.ls78{letter-spacing:0.124800pt;}
.ls79{letter-spacing:0.134933pt;}
.lsf{letter-spacing:0.136000pt;}
.ls30{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.156000pt;}
.lsd0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.163200pt;}
.ls7{letter-spacing:0.187200pt;}
.ls83{letter-spacing:0.187733pt;}
.ls82{letter-spacing:0.188267pt;}
.lsa{letter-spacing:0.192000pt;}
.lsb9{letter-spacing:0.200000pt;}
.ls25{letter-spacing:0.202800pt;}
.lsb4{letter-spacing:0.206400pt;}
.ls94{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.216000pt;}
.ls1e{letter-spacing:0.218400pt;}
.ls4e{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.235200pt;}
.lsa6{letter-spacing:0.238080pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.249600pt;}
.ls5a{letter-spacing:0.264000pt;}
.ls9a{letter-spacing:0.278400pt;}
.lsb5{letter-spacing:0.280000pt;}
.ls2f{letter-spacing:0.280800pt;}
.ls81{letter-spacing:0.281067pt;}
.ls9{letter-spacing:0.288000pt;}
.ls74{letter-spacing:0.299467pt;}
.ls75{letter-spacing:0.300533pt;}
.ls59{letter-spacing:0.302400pt;}
.ls90{letter-spacing:0.312000pt;}
.lsb6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.322000pt;}
.ls71{letter-spacing:0.328000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls72{letter-spacing:0.343200pt;}
.ls58{letter-spacing:0.360000pt;}
.ls89{letter-spacing:0.363733pt;}
.ls73{letter-spacing:0.374400pt;}
.ls6{letter-spacing:0.384000pt;}
.lsd6{letter-spacing:0.400000pt;}
.ls29{letter-spacing:0.405600pt;}
.ls26{letter-spacing:0.426667pt;}
.lsa9{letter-spacing:0.428544pt;}
.ls20{letter-spacing:0.432000pt;}
.lsbb{letter-spacing:0.440000pt;}
.ls97{letter-spacing:0.451200pt;}
.ls5b{letter-spacing:0.456000pt;}
.ls60{letter-spacing:0.468000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.480400pt;}
.ls5f{letter-spacing:0.481600pt;}
.ls13{letter-spacing:0.496933pt;}
.ls16{letter-spacing:0.498667pt;}
.ls63{letter-spacing:0.499200pt;}
.lsce{letter-spacing:0.504000pt;}
.ls64{letter-spacing:0.515733pt;}
.lsda{letter-spacing:0.520000pt;}
.ls27{letter-spacing:0.528000pt;}
.ls61{letter-spacing:0.530400pt;}
.ls9b{letter-spacing:0.533333pt;}
.ls53{letter-spacing:0.556800pt;}
.lsd1{letter-spacing:0.560000pt;}
.ls52{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.584933pt;}
.ls95{letter-spacing:0.586667pt;}
.lsc3{letter-spacing:0.600000pt;}
.ls23{letter-spacing:0.624000pt;}
.ls10{letter-spacing:0.628667pt;}
.ls8c{letter-spacing:0.631467pt;}
.lscd{letter-spacing:0.640000pt;}
.lsa2{letter-spacing:0.666624pt;}
.ls33{letter-spacing:0.672000pt;}
.lsba{letter-spacing:0.680000pt;}
.ls50{letter-spacing:0.686400pt;}
.lscc{letter-spacing:0.688000pt;}
.ls3e{letter-spacing:0.720000pt;}
.lsa7{letter-spacing:0.761856pt;}
.ls65{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.770667pt;}
.ls62{letter-spacing:0.772267pt;}
.lsdd{letter-spacing:0.816000pt;}
.ls55{letter-spacing:0.864000pt;}
.ls14{letter-spacing:0.906667pt;}
.ls51{letter-spacing:0.912000pt;}
.lsb7{letter-spacing:0.960000pt;}
.ls11{letter-spacing:0.997333pt;}
.ls54{letter-spacing:1.056000pt;}
.lsdc{letter-spacing:1.392000pt;}
.lsb8{letter-spacing:1.520000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsbc{letter-spacing:5.440000pt;}
.lsaa{letter-spacing:15.189504pt;}
.lsb3{letter-spacing:54.758400pt;}
.ls9d{letter-spacing:59.710464pt;}
.lsb1{letter-spacing:66.852864pt;}
.ls4a{letter-spacing:84.672000pt;}
.ls6e{letter-spacing:88.069333pt;}
.lsac{letter-spacing:91.994112pt;}
.ls6a{letter-spacing:102.704000pt;}
.lsad{letter-spacing:104.279040pt;}
.lsae{letter-spacing:106.755072pt;}
.ls4c{letter-spacing:108.117333pt;}
.ls41{letter-spacing:108.752000pt;}
.ls66{letter-spacing:108.789333pt;}
.ls98{letter-spacing:118.087680pt;}
.ls49{letter-spacing:119.765333pt;}
.ls47{letter-spacing:147.018667pt;}
.ls45{letter-spacing:154.933333pt;}
.lsaf{letter-spacing:159.846912pt;}
.lsa1{letter-spacing:164.465664pt;}
.ls9f{letter-spacing:194.892288pt;}
.lsa0{letter-spacing:195.844608pt;}
.lsab{letter-spacing:207.177216pt;}
.ls9e{letter-spacing:212.748288pt;}
.lsa8{letter-spacing:307.599360pt;}
.ls96{letter-spacing:310.170624pt;}
.ls99{letter-spacing:1110.405120pt;}
.ls9c{letter-spacing:1310.678016pt;}
.ws97{word-spacing:-1322.582016pt;}
.wsbe{word-spacing:-307.599360pt;}
.ws99{word-spacing:-224.652288pt;}
.wsaa{word-spacing:-219.081216pt;}
.ws9b{word-spacing:-207.748608pt;}
.ws9a{word-spacing:-206.796288pt;}
.wsbb{word-spacing:-194.892288pt;}
.ws9c{word-spacing:-175.369728pt;}
.wsaf{word-spacing:-170.750976pt;}
.wsad{word-spacing:-129.991680pt;}
.wsbc{word-spacing:-106.755072pt;}
.wsb1{word-spacing:-77.756928pt;}
.wsb4{word-spacing:-65.662464pt;}
.wsab{word-spacing:-53.187072pt;}
.wsa9{word-spacing:-27.093504pt;}
.wsae{word-spacing:-24.617472pt;}
.ws2{word-spacing:-13.393333pt;}
.ws24{word-spacing:-13.066667pt;}
.ws31{word-spacing:-12.085333pt;}
.wsa2{word-spacing:-11.665920pt;}
.wsa6{word-spacing:-11.570688pt;}
.ws69{word-spacing:-11.520000pt;}
.ws67{word-spacing:-11.376000pt;}
.ws6a{word-spacing:-11.352000pt;}
.wsa8{word-spacing:-11.237376pt;}
.ws8a{word-spacing:-11.232000pt;}
.ws8f{word-spacing:-11.184000pt;}
.ws68{word-spacing:-11.160000pt;}
.wsa1{word-spacing:-11.142144pt;}
.ws8b{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws90{word-spacing:-11.040000pt;}
.ws9e{word-spacing:-10.999296pt;}
.ws29{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws28{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws66{word-spacing:-10.800000pt;}
.ws2d{word-spacing:-10.752000pt;}
.wsb0{word-spacing:-10.713600pt;}
.ws65{word-spacing:-10.320000pt;}
.wsb3{word-spacing:-10.285056pt;}
.ws2f{word-spacing:-10.272000pt;}
.wsa0{word-spacing:-10.142208pt;}
.ws2c{word-spacing:-10.128000pt;}
.ws89{word-spacing:-10.080000pt;}
.ws26{word-spacing:-9.936000pt;}
.wse5{word-spacing:-9.560000pt;}
.wsc2{word-spacing:-9.360000pt;}
.wsc3{word-spacing:-9.200000pt;}
.wsde{word-spacing:-9.160000pt;}
.wse2{word-spacing:-9.120000pt;}
.ws8{word-spacing:-9.066667pt;}
.wse0{word-spacing:-9.040000pt;}
.wse4{word-spacing:-8.920000pt;}
.wsc0{word-spacing:-8.880000pt;}
.wse1{word-spacing:-8.840000pt;}
.ws53{word-spacing:-8.810667pt;}
.wsf0{word-spacing:-8.800000pt;}
.wsc4{word-spacing:-8.760000pt;}
.wse3{word-spacing:-8.720000pt;}
.wsc1{word-spacing:-8.640000pt;}
.wsd8{word-spacing:-8.600000pt;}
.ws4f{word-spacing:-8.474667pt;}
.wsef{word-spacing:-8.440000pt;}
.wsdf{word-spacing:-8.400000pt;}
.wsbf{word-spacing:-8.000000pt;}
.ws82{word-spacing:-7.800000pt;}
.ws6e{word-spacing:-7.550400pt;}
.ws25{word-spacing:-7.488000pt;}
.ws8e{word-spacing:-7.456800pt;}
.ws8d{word-spacing:-7.394400pt;}
.ws2a{word-spacing:-7.363200pt;}
.ws5{word-spacing:-7.300800pt;}
.ws6{word-spacing:-7.269600pt;}
.ws6d{word-spacing:-7.238400pt;}
.ws83{word-spacing:-7.176000pt;}
.ws4{word-spacing:-7.141333pt;}
.ws2b{word-spacing:-7.113600pt;}
.ws7{word-spacing:-7.082400pt;}
.ws30{word-spacing:-7.051200pt;}
.ws2e{word-spacing:-7.020000pt;}
.ws27{word-spacing:-6.988800pt;}
.ws6c{word-spacing:-6.957600pt;}
.ws84{word-spacing:-6.801600pt;}
.ws6b{word-spacing:-6.770400pt;}
.ws81{word-spacing:-6.708000pt;}
.ws4e{word-spacing:-5.508533pt;}
.wsc5{word-spacing:-5.440000pt;}
.ws5c{word-spacing:-4.896000pt;}
.ws5d{word-spacing:-4.848000pt;}
.ws79{word-spacing:-3.920000pt;}
.ws5a{word-spacing:-3.808000pt;}
.wsf5{word-spacing:-3.520000pt;}
.wsb{word-spacing:-2.912000pt;}
.ws3e{word-spacing:-1.680000pt;}
.ws11{word-spacing:-1.632000pt;}
.ws41{word-spacing:-1.584000pt;}
.ws42{word-spacing:-1.536000pt;}
.ws35{word-spacing:-1.488000pt;}
.ws19{word-spacing:-1.440000pt;}
.wscd{word-spacing:-1.400000pt;}
.ws88{word-spacing:-1.392000pt;}
.wscc{word-spacing:-1.360000pt;}
.ws7f{word-spacing:-1.344000pt;}
.ws80{word-spacing:-1.296000pt;}
.wsda{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-1.248000pt;}
.wsf6{word-spacing:-1.232000pt;}
.wsb8{word-spacing:-1.200000pt;}
.wsea{word-spacing:-1.160000pt;}
.ws3c{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.104000pt;}
.wscb{word-spacing:-1.080000pt;}
.ws5b{word-spacing:-1.056000pt;}
.wsd{word-spacing:-1.008000pt;}
.wsd1{word-spacing:-1.000000pt;}
.ws1f{word-spacing:-0.997333pt;}
.ws1b{word-spacing:-0.960000pt;}
.wsc6{word-spacing:-0.920000pt;}
.ws7e{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.906667pt;}
.ws62{word-spacing:-0.864000pt;}
.wsd9{word-spacing:-0.840000pt;}
.ws59{word-spacing:-0.821333pt;}
.ws18{word-spacing:-0.816000pt;}
.ws20{word-spacing:-0.770667pt;}
.ws3f{word-spacing:-0.768000pt;}
.wseb{word-spacing:-0.760000pt;}
.ws87{word-spacing:-0.720000pt;}
.ws38{word-spacing:-0.672000pt;}
.wsbd{word-spacing:-0.666624pt;}
.wsc9{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.634667pt;}
.ws39{word-spacing:-0.624000pt;}
.wsdb{word-spacing:-0.600000pt;}
.wsb9{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.576000pt;}
.wsd7{word-spacing:-0.560000pt;}
.wsba{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.528000pt;}
.ws22{word-spacing:-0.498667pt;}
.ws43{word-spacing:-0.480000pt;}
.wsce{word-spacing:-0.440000pt;}
.ws1c{word-spacing:-0.432000pt;}
.ws46{word-spacing:-0.426667pt;}
.ws8c{word-spacing:-0.405600pt;}
.wsee{word-spacing:-0.400000pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws12{word-spacing:-0.336000pt;}
.ws94{word-spacing:-0.312000pt;}
.ws17{word-spacing:-0.288000pt;}
.ws40{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.218400pt;}
.wsb7{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.187200pt;}
.wse6{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.144000pt;}
.ws1e{word-spacing:-0.136000pt;}
.wsdd{word-spacing:-0.120000pt;}
.ws16{word-spacing:-0.096000pt;}
.wsc7{word-spacing:-0.080000pt;}
.ws37{word-spacing:-0.048000pt;}
.wsc8{word-spacing:-0.040000pt;}
.ws3a{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.wscf{word-spacing:0.040000pt;}
.ws10{word-spacing:0.048000pt;}
.ws96{word-spacing:0.053333pt;}
.wsdc{word-spacing:0.080000pt;}
.ws36{word-spacing:0.093600pt;}
.wse{word-spacing:0.096000pt;}
.wsec{word-spacing:0.120000pt;}
.ws44{word-spacing:0.144000pt;}
.wsed{word-spacing:0.160000pt;}
.ws64{word-spacing:0.192000pt;}
.ws3d{word-spacing:0.240000pt;}
.wsf1{word-spacing:0.280000pt;}
.ws48{word-spacing:0.288000pt;}
.wsf3{word-spacing:0.320000pt;}
.ws63{word-spacing:0.336000pt;}
.wsf2{word-spacing:0.360000pt;}
.ws60{word-spacing:0.384000pt;}
.ws7c{word-spacing:0.432000pt;}
.ws92{word-spacing:0.480000pt;}
.wsd0{word-spacing:0.520000pt;}
.ws33{word-spacing:0.528000pt;}
.wse8{word-spacing:0.560000pt;}
.ws85{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.624000pt;}
.wsd2{word-spacing:0.680000pt;}
.ws95{word-spacing:0.720000pt;}
.wsd6{word-spacing:0.760000pt;}
.ws47{word-spacing:0.768000pt;}
.wsd5{word-spacing:0.800000pt;}
.ws49{word-spacing:0.816000pt;}
.wsd3{word-spacing:0.840000pt;}
.wsa{word-spacing:0.853333pt;}
.wse9{word-spacing:0.880000pt;}
.ws34{word-spacing:0.912000pt;}
.wse7{word-spacing:1.000000pt;}
.ws61{word-spacing:1.008000pt;}
.ws93{word-spacing:1.056000pt;}
.wsf7{word-spacing:1.104000pt;}
.ws91{word-spacing:1.152000pt;}
.wsd4{word-spacing:1.240000pt;}
.ws3b{word-spacing:1.440000pt;}
.wsca{word-spacing:1.520000pt;}
.ws5f{word-spacing:1.584000pt;}
.wsf4{word-spacing:2.304000pt;}
.ws9d{word-spacing:4.571136pt;}
.ws86{word-spacing:5.328000pt;}
.wsac{word-spacing:11.284992pt;}
.wsb6{word-spacing:42.283008pt;}
.ws9f{word-spacing:44.425728pt;}
.wsa5{word-spacing:54.567936pt;}
.wsa4{word-spacing:56.710656pt;}
.wsb5{word-spacing:57.186816pt;}
.wsb2{word-spacing:59.186688pt;}
.ws77{word-spacing:59.658667pt;}
.ws75{word-spacing:61.118400pt;}
.ws76{word-spacing:63.429333pt;}
.ws73{word-spacing:69.365333pt;}
.wsa3{word-spacing:71.471616pt;}
.ws52{word-spacing:73.248000pt;}
.ws56{word-spacing:73.360000pt;}
.ws74{word-spacing:74.554667pt;}
.ws98{word-spacing:75.852288pt;}
.ws4a{word-spacing:87.061333pt;}
.ws6f{word-spacing:95.200000pt;}
.ws51{word-spacing:99.642667pt;}
.ws55{word-spacing:109.834667pt;}
.ws57{word-spacing:112.933333pt;}
.ws7b{word-spacing:144.965333pt;}
.ws4b{word-spacing:145.936000pt;}
.ws71{word-spacing:150.266667pt;}
.ws70{word-spacing:152.170667pt;}
.ws54{word-spacing:166.320000pt;}
.ws4c{word-spacing:169.456000pt;}
.wsa7{word-spacing:226.842624pt;}
.ws78{word-spacing:228.741333pt;}
.ws50{word-spacing:240.318400pt;}
.ws7a{word-spacing:295.605333pt;}
.ws4d{word-spacing:316.960000pt;}
.ws72{word-spacing:379.381333pt;}
._25{margin-left:-2724.492288pt;}
._28{margin-left:-1616.848896pt;}
._2a{margin-left:-1104.643819pt;}
._29{margin-left:-164.751360pt;}
._2c{margin-left:-160.132608pt;}
._2b{margin-left:-105.993216pt;}
._26{margin-left:-94.660608pt;}
._27{margin-left:-76.804608pt;}
._2d{margin-left:-67.519488pt;}
._2e{margin-left:-54.890389pt;}
._23{margin-left:-10.484267pt;}
._3{margin-left:-8.764267pt;}
._22{margin-left:-7.470400pt;}
._7{margin-left:-5.756533pt;}
._8{margin-left:-4.480000pt;}
._1{margin-left:-3.274667pt;}
._0{margin-left:-1.578667pt;}
._4{width:0.948800pt;}
._5{width:1.890133pt;}
._6{width:3.082667pt;}
._e{width:4.778667pt;}
._17{width:5.846400pt;}
._33{width:6.964267pt;}
._32{width:8.120000pt;}
._31{width:9.200000pt;}
._30{width:10.320000pt;}
._2f{width:11.520000pt;}
._16{width:14.176000pt;}
._34{width:15.520000pt;}
._24{width:37.194133pt;}
._2{width:38.322133pt;}
._9{width:43.104533pt;}
._21{width:55.990400pt;}
._1b{width:60.191467pt;}
._1e{width:61.436800pt;}
._11{width:63.034133pt;}
._1a{width:66.691200pt;}
._20{width:68.549333pt;}
._13{width:76.268800pt;}
._14{width:78.660267pt;}
._10{width:80.206933pt;}
._1c{width:84.164800pt;}
._b{width:86.880533pt;}
._1f{width:88.872000pt;}
._1d{width:89.767467pt;}
._c{width:97.450667pt;}
._a{width:98.753067pt;}
._f{width:107.572267pt;}
._15{width:112.555733pt;}
._12{width:114.818667pt;}
._19{width:136.165333pt;}
._18{width:168.454400pt;}
._d{width:179.434667pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y194{bottom:4.224000pt;}
.y183{bottom:4.992000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y195{bottom:37.626624pt;}
.y191{bottom:37.632000pt;}
.y2f{bottom:60.718133pt;}
.ye2{bottom:60.934667pt;}
.y1ac{bottom:60.937333pt;}
.y78{bottom:60.942667pt;}
.y16e{bottom:60.953333pt;}
.yaa{bottom:60.968267pt;}
.y13b{bottom:61.154933pt;}
.y1ec{bottom:62.659600pt;}
.y7f{bottom:67.810933pt;}
.y237{bottom:71.156267pt;}
.y1eb{bottom:73.989600pt;}
.y2e{bottom:74.051467pt;}
.ye1{bottom:74.268000pt;}
.y1ab{bottom:74.269333pt;}
.y77{bottom:74.274667pt;}
.y16d{bottom:74.285333pt;}
.ya9{bottom:74.300267pt;}
.y13a{bottom:74.486933pt;}
.y7e{bottom:81.142933pt;}
.y236{bottom:84.488267pt;}
.y1ea{bottom:85.319600pt;}
.y2d{bottom:87.384800pt;}
.y101{bottom:87.600000pt;}
.ye0{bottom:87.601333pt;}
.y76{bottom:87.606667pt;}
.y16c{bottom:87.617333pt;}
.ya8{bottom:87.632267pt;}
.y139{bottom:87.818933pt;}
.y7d{bottom:94.474933pt;}
.y1e9{bottom:96.649600pt;}
.y235{bottom:97.820267pt;}
.y2c{bottom:100.718133pt;}
.y100{bottom:100.933333pt;}
.ydf{bottom:100.937200pt;}
.y75{bottom:100.938667pt;}
.y16b{bottom:100.949333pt;}
.y1aa{bottom:100.960000pt;}
.ya7{bottom:100.964267pt;}
.y138{bottom:101.150933pt;}
.y7c{bottom:107.806933pt;}
.y1e8{bottom:107.979600pt;}
.y234{bottom:111.152267pt;}
.y2b{bottom:114.051467pt;}
.yde{bottom:114.269200pt;}
.y74{bottom:114.270667pt;}
.y16a{bottom:114.281333pt;}
.y1a9{bottom:114.292000pt;}
.ya6{bottom:114.296267pt;}
.y137{bottom:114.502933pt;}
.y1e7{bottom:119.309600pt;}
.y7b{bottom:121.138933pt;}
.y233{bottom:124.484267pt;}
.y2a{bottom:127.384800pt;}
.y73{bottom:127.602667pt;}
.y169{bottom:127.613333pt;}
.y1a8{bottom:127.624000pt;}
.ya5{bottom:127.628267pt;}
.y136{bottom:127.834933pt;}
.yff{bottom:129.821600pt;}
.y1e6{bottom:130.639600pt;}
.y7a{bottom:134.470933pt;}
.y232{bottom:137.816267pt;}
.y72{bottom:140.934667pt;}
.y168{bottom:140.945333pt;}
.y1a7{bottom:140.956000pt;}
.ya4{bottom:140.960267pt;}
.ydd{bottom:141.113200pt;}
.y135{bottom:141.166933pt;}
.y1e5{bottom:141.969600pt;}
.yfe{bottom:143.153600pt;}
.y29{bottom:144.566133pt;}
.y79{bottom:147.802933pt;}
.y231{bottom:151.149600pt;}
.y1e4{bottom:153.299600pt;}
.y71{bottom:154.266667pt;}
.y167{bottom:154.277333pt;}
.y1a6{bottom:154.288000pt;}
.ya3{bottom:154.292267pt;}
.ydc{bottom:154.445200pt;}
.y134{bottom:154.498933pt;}
.yfd{bottom:156.485600pt;}
.y1e3{bottom:164.629600pt;}
.y70{bottom:167.600000pt;}
.y166{bottom:167.609333pt;}
.ya2{bottom:167.624267pt;}
.ydb{bottom:167.777200pt;}
.y133{bottom:167.830933pt;}
.yfc{bottom:169.817600pt;}
.y1e2{bottom:175.959600pt;}
.y28{bottom:179.277600pt;}
.y230{bottom:180.489600pt;}
.y1a5{bottom:180.556000pt;}
.y165{bottom:180.941333pt;}
.ya1{bottom:180.956267pt;}
.yda{bottom:181.109200pt;}
.y132{bottom:181.162933pt;}
.yfb{bottom:183.150933pt;}
.y1e1{bottom:187.289600pt;}
.y27{bottom:192.609600pt;}
.y22f{bottom:193.821600pt;}
.y1a4{bottom:193.888000pt;}
.y164{bottom:194.273333pt;}
.ya0{bottom:194.288267pt;}
.yd9{bottom:194.454533pt;}
.y6f{bottom:194.494933pt;}
.yfa{bottom:196.484267pt;}
.y90{bottom:198.528400pt;}
.y1e0{bottom:198.619600pt;}
.y26{bottom:205.942933pt;}
.y22e{bottom:207.153600pt;}
.y1a3{bottom:207.220000pt;}
.y163{bottom:207.605333pt;}
.y9f{bottom:207.620267pt;}
.yd8{bottom:207.786533pt;}
.y6e{bottom:207.826933pt;}
.yf9{bottom:209.825600pt;}
.y1df{bottom:209.949600pt;}
.y8f{bottom:211.860400pt;}
.y25{bottom:219.280267pt;}
.y22d{bottom:220.485600pt;}
.y1a2{bottom:220.552000pt;}
.y162{bottom:220.937333pt;}
.y9e{bottom:220.952267pt;}
.yd7{bottom:221.118533pt;}
.y6d{bottom:221.158933pt;}
.y1de{bottom:221.279600pt;}
.yf8{bottom:223.157600pt;}
.y8e{bottom:225.192400pt;}
.y1dd{bottom:232.609600pt;}
.y24{bottom:232.612267pt;}
.y22c{bottom:233.817600pt;}
.y1a1{bottom:233.884000pt;}
.y161{bottom:234.269333pt;}
.y9d{bottom:234.284267pt;}
.yd6{bottom:234.450533pt;}
.y6c{bottom:234.490933pt;}
.yf7{bottom:236.489600pt;}
.y8d{bottom:238.524400pt;}
.y1dc{bottom:243.939600pt;}
.y23{bottom:245.944267pt;}
.y22b{bottom:247.149600pt;}
.y1a0{bottom:247.216000pt;}
.y160{bottom:247.601333pt;}
.y9c{bottom:247.616267pt;}
.yd5{bottom:247.782533pt;}
.y6b{bottom:247.822933pt;}
.yf6{bottom:249.821600pt;}
.y8c{bottom:251.856400pt;}
.y1db{bottom:255.269600pt;}
.y22{bottom:259.276267pt;}
.y22a{bottom:260.482933pt;}
.y19f{bottom:260.548000pt;}
.y15f{bottom:260.941333pt;}
.y9b{bottom:260.948267pt;}
.yd4{bottom:261.114533pt;}
.y6a{bottom:261.154933pt;}
.yf5{bottom:263.153600pt;}
.y8b{bottom:265.188400pt;}
.y1da{bottom:266.599600pt;}
.y21{bottom:272.612267pt;}
.y19e{bottom:273.880000pt;}
.y15e{bottom:274.273333pt;}
.y9a{bottom:274.280267pt;}
.yd3{bottom:274.446533pt;}
.y69{bottom:274.486933pt;}
.yf4{bottom:276.485600pt;}
.y1d9{bottom:277.929600pt;}
.y8a{bottom:278.520400pt;}
.y20{bottom:285.944267pt;}
.y19d{bottom:287.212000pt;}
.y15d{bottom:287.605333pt;}
.y99{bottom:287.612267pt;}
.yd2{bottom:287.778533pt;}
.y68{bottom:287.818933pt;}
.y1d8{bottom:289.259600pt;}
.yf3{bottom:289.817600pt;}
.y229{bottom:290.016267pt;}
.y89{bottom:291.852400pt;}
.y1f{bottom:299.276267pt;}
.y19c{bottom:300.544000pt;}
.y1d7{bottom:300.589600pt;}
.y15c{bottom:300.937333pt;}
.y98{bottom:300.944267pt;}
.yd1{bottom:301.110533pt;}
.y67{bottom:301.150933pt;}
.y228{bottom:301.346267pt;}
.yf2{bottom:303.150933pt;}
.y1d6{bottom:311.919600pt;}
.y1e{bottom:312.609600pt;}
.y227{bottom:312.676267pt;}
.y19b{bottom:313.876000pt;}
.y15b{bottom:314.269333pt;}
.yd0{bottom:314.442533pt;}
.y66{bottom:314.489600pt;}
.y131{bottom:314.500267pt;}
.yf1{bottom:316.484267pt;}
.y1d5{bottom:323.249600pt;}
.y226{bottom:324.006267pt;}
.y1d{bottom:325.945600pt;}
.y19a{bottom:327.208000pt;}
.y15a{bottom:327.601333pt;}
.ycf{bottom:327.774533pt;}
.y65{bottom:327.821600pt;}
.y97{bottom:327.824267pt;}
.y130{bottom:327.832267pt;}
.yf0{bottom:329.820267pt;}
.y1d4{bottom:334.579600pt;}
.y225{bottom:335.336267pt;}
.y1c{bottom:339.277600pt;}
.y199{bottom:340.540000pt;}
.y159{bottom:340.933333pt;}
.y64{bottom:341.153600pt;}
.y96{bottom:341.156267pt;}
.y12f{bottom:341.164267pt;}
.yef{bottom:343.152267pt;}
.y1d3{bottom:345.909600pt;}
.y224{bottom:346.666267pt;}
.yce{bottom:352.525600pt;}
.y1b{bottom:352.609600pt;}
.y198{bottom:353.872000pt;}
.y158{bottom:354.266667pt;}
.y63{bottom:354.485600pt;}
.y95{bottom:354.488267pt;}
.y12e{bottom:354.496267pt;}
.yee{bottom:356.484267pt;}
.y1d2{bottom:357.239600pt;}
.y223{bottom:357.996267pt;}
.ycd{bottom:365.857600pt;}
.y1a{bottom:365.945600pt;}
.y197{bottom:367.204000pt;}
.y62{bottom:367.817600pt;}
.y94{bottom:367.820267pt;}
.y12d{bottom:367.828267pt;}
.y1d1{bottom:368.569600pt;}
.y222{bottom:369.326267pt;}
.yed{bottom:369.817600pt;}
.ycc{bottom:379.189600pt;}
.y19{bottom:379.277600pt;}
.y1d0{bottom:379.899600pt;}
.y196{bottom:380.536000pt;}
.y221{bottom:380.656267pt;}
.y93{bottom:381.152267pt;}
.y61{bottom:381.154933pt;}
.y12c{bottom:381.160267pt;}
.yec{bottom:383.152267pt;}
.y1cf{bottom:391.229600pt;}
.y220{bottom:391.986267pt;}
.ycb{bottom:392.521600pt;}
.y18{bottom:392.609600pt;}
.y92{bottom:394.484267pt;}
.y60{bottom:394.486933pt;}
.y12b{bottom:394.492267pt;}
.yeb{bottom:396.484267pt;}
.y190{bottom:398.412000pt;}
.y1ce{bottom:402.559600pt;}
.y18f{bottom:402.636000pt;}
.y193{bottom:402.637152pt;}
.y21f{bottom:403.316267pt;}
.yca{bottom:405.853600pt;}
.y17{bottom:405.972267pt;}
.y91{bottom:407.816267pt;}
.y5f{bottom:407.818933pt;}
.y12a{bottom:407.824267pt;}
.yea{bottom:409.817600pt;}
.y1cd{bottom:413.889600pt;}
.y21e{bottom:414.646267pt;}
.y192{bottom:419.148000pt;}
.yc9{bottom:419.185600pt;}
.y16{bottom:419.304267pt;}
.y5e{bottom:421.150933pt;}
.y129{bottom:421.156267pt;}
.ye9{bottom:423.150933pt;}
.y1cc{bottom:425.219600pt;}
.y21d{bottom:425.976267pt;}
.yc8{bottom:432.517600pt;}
.y157{bottom:434.485600pt;}
.y128{bottom:434.488267pt;}
.y5d{bottom:434.490933pt;}
.ye8{bottom:436.484267pt;}
.y1cb{bottom:436.549600pt;}
.y21c{bottom:437.306267pt;}
.yc7{bottom:445.849600pt;}
.y156{bottom:447.817600pt;}
.y127{bottom:447.820267pt;}
.y5c{bottom:447.822933pt;}
.y1ca{bottom:447.879600pt;}
.y21b{bottom:448.636267pt;}
.ye7{bottom:449.816267pt;}
.yad{bottom:454.721733pt;}
.yc6{bottom:459.181600pt;}
.y1c9{bottom:459.209600pt;}
.y21a{bottom:459.966267pt;}
.y18e{bottom:460.000000pt;}
.y126{bottom:461.152267pt;}
.y5b{bottom:461.154933pt;}
.y155{bottom:461.160267pt;}
.y15{bottom:461.304267pt;}
.yac{bottom:468.053733pt;}
.y1c8{bottom:470.539600pt;}
.y219{bottom:471.296267pt;}
.yc5{bottom:472.513600pt;}
.y18d{bottom:473.332000pt;}
.y125{bottom:474.484267pt;}
.y5a{bottom:474.486933pt;}
.y154{bottom:474.492267pt;}
.y14{bottom:475.968267pt;}
.yab{bottom:481.385733pt;}
.y1c7{bottom:481.869600pt;}
.y218{bottom:482.626267pt;}
.yc4{bottom:485.845600pt;}
.y18c{bottom:486.664000pt;}
.y59{bottom:487.818933pt;}
.y153{bottom:487.824267pt;}
.y124{bottom:487.826933pt;}
.y13{bottom:490.632267pt;}
.y1c6{bottom:493.199600pt;}
.y217{bottom:493.956267pt;}
.yc3{bottom:499.177600pt;}
.y18b{bottom:499.996000pt;}
.y58{bottom:501.150933pt;}
.y152{bottom:501.156267pt;}
.y123{bottom:501.158933pt;}
.y1c5{bottom:504.529600pt;}
.y104{bottom:505.281733pt;}
.y216{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.yc2{bottom:512.509600pt;}
.y18a{bottom:513.328000pt;}
.y57{bottom:514.485600pt;}
.y151{bottom:514.488267pt;}
.y122{bottom:514.490933pt;}
.y1c4{bottom:515.859600pt;}
.y215{bottom:516.616267pt;}
.y103{bottom:518.613733pt;}
.y11{bottom:519.960267pt;}
.yc1{bottom:525.841600pt;}
.y189{bottom:526.660000pt;}
.y1c3{bottom:527.189600pt;}
.y56{bottom:527.817600pt;}
.y150{bottom:527.820267pt;}
.y121{bottom:527.822933pt;}
.y214{bottom:527.946267pt;}
.y102{bottom:531.945733pt;}
.y10{bottom:534.624267pt;}
.y1c2{bottom:538.519600pt;}
.yc0{bottom:539.173600pt;}
.y213{bottom:539.276267pt;}
.y188{bottom:539.992000pt;}
.y55{bottom:541.150933pt;}
.y14f{bottom:541.152267pt;}
.y120{bottom:541.154933pt;}
.yf{bottom:549.288267pt;}
.y1c1{bottom:549.849600pt;}
.y212{bottom:550.606267pt;}
.ybf{bottom:552.505600pt;}
.y187{bottom:553.324000pt;}
.y14e{bottom:554.484267pt;}
.y54{bottom:554.485600pt;}
.y11f{bottom:554.486933pt;}
.y1c0{bottom:561.179600pt;}
.y211{bottom:561.936267pt;}
.ye{bottom:563.952267pt;}
.ybe{bottom:565.837600pt;}
.y186{bottom:566.656000pt;}
.y53{bottom:567.817600pt;}
.y11e{bottom:567.818933pt;}
.y1bf{bottom:572.509600pt;}
.y210{bottom:573.266267pt;}
.yd{bottom:578.616267pt;}
.ybd{bottom:579.169600pt;}
.y185{bottom:579.988000pt;}
.y11d{bottom:581.150933pt;}
.y52{bottom:581.153600pt;}
.y14d{bottom:581.154933pt;}
.y1be{bottom:583.839600pt;}
.y20f{bottom:584.596267pt;}
.ybc{bottom:592.501600pt;}
.yc{bottom:593.280267pt;}
.y184{bottom:593.320000pt;}
.y51{bottom:594.485600pt;}
.y14c{bottom:594.486933pt;}
.y11c{bottom:594.493600pt;}
.y1bd{bottom:595.169600pt;}
.y20e{bottom:595.926267pt;}
.ybb{bottom:605.833600pt;}
.y1bc{bottom:606.499600pt;}
.y20d{bottom:607.256267pt;}
.y50{bottom:607.817600pt;}
.y14b{bottom:607.818933pt;}
.y11b{bottom:607.825600pt;}
.yb{bottom:607.944267pt;}
.y182{bottom:611.196000pt;}
.y1bb{bottom:617.829600pt;}
.y20c{bottom:618.586267pt;}
.yba{bottom:619.165600pt;}
.y14a{bottom:621.150933pt;}
.y4f{bottom:621.154933pt;}
.y11a{bottom:621.157600pt;}
.ya{bottom:622.608267pt;}
.y1ba{bottom:629.159600pt;}
.y20b{bottom:629.916267pt;}
.yb9{bottom:632.497600pt;}
.y4e{bottom:634.486933pt;}
.y149{bottom:634.488267pt;}
.y119{bottom:634.489600pt;}
.y181{bottom:639.365333pt;}
.y1b9{bottom:640.489600pt;}
.y20a{bottom:641.246267pt;}
.yb8{bottom:645.829600pt;}
.y4d{bottom:647.818933pt;}
.y148{bottom:647.820267pt;}
.y118{bottom:647.821600pt;}
.y9{bottom:649.274933pt;}
.y1b8{bottom:651.819600pt;}
.y209{bottom:652.576267pt;}
.y180{bottom:652.697333pt;}
.yb7{bottom:659.161600pt;}
.y4c{bottom:661.150933pt;}
.y147{bottom:661.152267pt;}
.y117{bottom:661.153600pt;}
.y1b7{bottom:663.149600pt;}
.y208{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y17f{bottom:666.029333pt;}
.yb6{bottom:672.493600pt;}
.y32{bottom:673.012800pt;}
.y1b6{bottom:674.482933pt;}
.y146{bottom:674.484267pt;}
.y4b{bottom:674.485600pt;}
.y207{bottom:675.236267pt;}
.yb5{bottom:685.825600pt;}
.y206{bottom:686.566267pt;}
.y4a{bottom:687.817600pt;}
.y145{bottom:687.818933pt;}
.y17e{bottom:690.260133pt;}
.y31{bottom:691.678800pt;}
.y7{bottom:694.592267pt;}
.y205{bottom:697.896267pt;}
.yb4{bottom:699.157600pt;}
.y116{bottom:701.150933pt;}
.y49{bottom:701.152267pt;}
.y17d{bottom:703.592133pt;}
.y1b5{bottom:703.817600pt;}
.y204{bottom:709.226267pt;}
.y30{bottom:710.344800pt;}
.yb3{bottom:712.489600pt;}
.y48{bottom:714.484267pt;}
.y144{bottom:714.489600pt;}
.y115{bottom:714.494933pt;}
.y17c{bottom:716.924133pt;}
.y1b4{bottom:717.149600pt;}
.y203{bottom:720.556267pt;}
.yb2{bottom:725.821600pt;}
.y47{bottom:727.820267pt;}
.y143{bottom:727.821600pt;}
.y114{bottom:727.826933pt;}
.y17b{bottom:730.260133pt;}
.y202{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.yb1{bottom:739.153600pt;}
.y46{bottom:741.152267pt;}
.y142{bottom:741.153600pt;}
.y1b3{bottom:741.156267pt;}
.y113{bottom:741.158933pt;}
.y201{bottom:743.216267pt;}
.y17a{bottom:743.592133pt;}
.yb0{bottom:752.485600pt;}
.y45{bottom:754.484267pt;}
.y141{bottom:754.485600pt;}
.y1b2{bottom:754.488267pt;}
.y112{bottom:754.490933pt;}
.y200{bottom:754.546267pt;}
.y179{bottom:756.924133pt;}
.y245{bottom:763.161600pt;}
.yaf{bottom:765.817600pt;}
.y1ff{bottom:765.876267pt;}
.y44{bottom:767.817600pt;}
.y1b1{bottom:767.820267pt;}
.y111{bottom:767.822933pt;}
.y178{bottom:770.256133pt;}
.y5{bottom:774.602933pt;}
.y244{bottom:776.493600pt;}
.y1fe{bottom:777.206267pt;}
.yae{bottom:779.149600pt;}
.y140{bottom:781.152267pt;}
.y110{bottom:781.154933pt;}
.y43{bottom:781.157600pt;}
.y1fd{bottom:788.536267pt;}
.y243{bottom:789.825600pt;}
.y13f{bottom:794.484267pt;}
.y10f{bottom:794.486933pt;}
.y42{bottom:794.489600pt;}
.y1fc{bottom:799.866267pt;}
.y242{bottom:803.157600pt;}
.y10e{bottom:807.818933pt;}
.y41{bottom:807.821600pt;}
.y1b0{bottom:807.822933pt;}
.y177{bottom:807.828267pt;}
.y1fb{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y241{bottom:816.489600pt;}
.y10d{bottom:821.150933pt;}
.y40{bottom:821.153600pt;}
.y1af{bottom:821.154933pt;}
.y176{bottom:821.160267pt;}
.y1fa{bottom:822.526267pt;}
.ye6{bottom:823.154933pt;}
.y33{bottom:823.475200pt;}
.y88{bottom:823.990933pt;}
.y240{bottom:829.821600pt;}
.y1f9{bottom:833.856267pt;}
.y13e{bottom:834.484267pt;}
.y3f{bottom:834.485600pt;}
.y1ae{bottom:834.486933pt;}
.y175{bottom:834.492267pt;}
.y10c{bottom:834.496267pt;}
.ye5{bottom:837.818933pt;}
.y87{bottom:838.654933pt;}
.y23f{bottom:843.153600pt;}
.y1f8{bottom:845.186267pt;}
.y3e{bottom:847.817600pt;}
.y1ad{bottom:847.818933pt;}
.y13d{bottom:847.822933pt;}
.y174{bottom:847.824267pt;}
.y10b{bottom:847.828267pt;}
.ye4{bottom:852.482933pt;}
.y86{bottom:853.318933pt;}
.y23e{bottom:856.485600pt;}
.y1f7{bottom:856.516267pt;}
.y3d{bottom:861.150933pt;}
.y13c{bottom:861.154933pt;}
.y173{bottom:861.156267pt;}
.y10a{bottom:861.160267pt;}
.y1f6{bottom:867.846267pt;}
.y85{bottom:867.982933pt;}
.y23d{bottom:869.817600pt;}
.y3c{bottom:874.486933pt;}
.y172{bottom:874.488267pt;}
.y109{bottom:874.492267pt;}
.y1f5{bottom:879.176267pt;}
.y23c{bottom:883.149600pt;}
.ye3{bottom:883.313600pt;}
.y3b{bottom:887.818933pt;}
.y171{bottom:887.820267pt;}
.y108{bottom:887.824267pt;}
.y1f4{bottom:890.506267pt;}
.y84{bottom:898.813600pt;}
.y3a{bottom:901.150933pt;}
.y170{bottom:901.152267pt;}
.y107{bottom:901.156267pt;}
.y1f3{bottom:901.836267pt;}
.y23b{bottom:902.486933pt;}
.y1f2{bottom:913.166267pt;}
.y83{bottom:914.313600pt;}
.y16f{bottom:914.484267pt;}
.y39{bottom:914.485600pt;}
.y106{bottom:914.488267pt;}
.y23a{bottom:915.818933pt;}
.y1f1{bottom:924.496267pt;}
.y38{bottom:927.817600pt;}
.y105{bottom:927.820267pt;}
.y82{bottom:929.813600pt;}
.y239{bottom:935.150933pt;}
.y1f0{bottom:935.826267pt;}
.y37{bottom:941.152267pt;}
.y81{bottom:945.313600pt;}
.y1ef{bottom:947.156267pt;}
.y238{bottom:954.482933pt;}
.y36{bottom:954.484267pt;}
.y1ee{bottom:958.486267pt;}
.y80{bottom:960.816267pt;}
.y35{bottom:967.816267pt;}
.y1ed{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h19{height:14.976000pt;}
.ha{height:21.193555pt;}
.hd{height:31.476562pt;}
.hc{height:32.605469pt;}
.h7{height:34.523438pt;}
.hb{height:36.585555pt;}
.h14{height:36.933333pt;}
.h13{height:38.229333pt;}
.h4{height:39.318359pt;}
.h1f{height:39.560000pt;}
.h20{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1e{height:40.960000pt;}
.h1b{height:45.235200pt;}
.h8{height:45.703125pt;}
.h1d{height:47.092224pt;}
.h9{height:47.472000pt;}
.h1a{height:47.711232pt;}
.h16{height:48.042667pt;}
.h10{height:48.064000pt;}
.h18{height:48.085333pt;}
.h17{height:48.090667pt;}
.hf{height:48.096000pt;}
.h1c{height:48.384000pt;}
.h15{height:49.152000pt;}
.h2{height:50.755208pt;}
.h6{height:50.781250pt;}
.h11{height:55.859375pt;}
.he{height:69.046875pt;}
.h12{height:78.213333pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:532.224000pt;}
.w3{width:532.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.516000pt;}
.x2{left:54.392400pt;}
.x8{left:58.350133pt;}
.x14{left:74.111733pt;}
.x12{left:85.247733pt;}
.x10{left:97.151733pt;}
.x16{left:105.983733pt;}
.x7{left:125.291333pt;}
.x17{left:139.398261pt;}
.x9{left:153.708800pt;}
.xd{left:171.134133pt;}
.x4{left:207.516800pt;}
.x5{left:223.522800pt;}
.x19{left:238.079733pt;}
.x1b{left:267.195200pt;}
.x13{left:303.597067pt;}
.x15{left:313.197067pt;}
.x18{left:366.957067pt;}
.xa{left:398.643467pt;}
.xe{left:423.526133pt;}
.x11{left:439.533067pt;}
.xb{left:477.948800pt;}
.xf{left:504.390133pt;}
.x3{left:519.632533pt;}
.x1a{left:725.336533pt;}
.xc{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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