
    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_068111c5f2794f23042963e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9373736a69b6649e041f7a94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_d50bbdc27bbdebd360f7dced.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_6c982b35f585bf92e2a41394.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_2fac1a0683465a0e248a7507.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_cd7ecfbcbcc8a5fc38ed4984.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aa51ad48e9f6405d5975dbcd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_7c22b4cd6989cc2a26a96afe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_807a8d3bcffaf5f71f096051.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7e6f6c717e1e7e18d3c13baf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_89028897f7f596827bf7b932.woff2')format("woff");}.fff{font-family:fff;line-height:0.901000;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_e2ad08f80707e26fa4e25054.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697000;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_4b1e73339de1e417929d8756.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.696000;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_32fe4cc836fc7568e710c591.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_64ac9c1dc7568527f4c532bc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861328;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_d195dd519b7537112bbf41c7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.861816;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_32fe4cc836fc7568e710c591.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_87b96cd20f30cedac1878a4a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861328;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_4aacc94086a6ea93da6b8e83.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_9aa86a71d441871fd1fa0ee5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.893555;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_80a937eee5c520bfa101f228.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.896000;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_fc34cd9df2e67d90943a8cd9.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_c4aa489574d82a8b4bb8e74b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;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_32fe4cc836fc7568e710c591.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_217261666960f0b1bb58985d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.575000;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_ba6190b5927734e7d835a4b4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.575000;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_50cff26afa0065f45d09a061.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.592000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-90.720000px;}
.v7{vertical-align:-86.412960px;}
.v8{vertical-align:-72.727920px;}
.v4{vertical-align:-69.859440px;}
.v9{vertical-align:-67.615920px;}
.v5{vertical-align:-59.760000px;}
.v3{vertical-align:-21.690000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.028000px;}
.ls47{letter-spacing:-2.211120px;}
.ls48{letter-spacing:-2.091600px;}
.ls46{letter-spacing:-2.031840px;}
.ls42{letter-spacing:-1.494000px;}
.ls44{letter-spacing:-1.374480px;}
.ls41{letter-spacing:-1.314720px;}
.ls43{letter-spacing:-1.195200px;}
.ls4a{letter-spacing:-0.657360px;}
.ls1c{letter-spacing:-0.624960px;}
.ls4b{letter-spacing:-0.597600px;}
.ls4c{letter-spacing:-0.478080px;}
.ls19{letter-spacing:-0.468720px;}
.ls31{letter-spacing:-0.467869px;}
.ls17{letter-spacing:-0.432000px;}
.ls4d{letter-spacing:-0.418320px;}
.ls14{letter-spacing:-0.384480px;}
.ls32{letter-spacing:-0.363898px;}
.ls37{letter-spacing:-0.342256px;}
.ls1f{letter-spacing:-0.331200px;}
.ls4f{letter-spacing:-0.298800px;}
.ls1d{letter-spacing:-0.276480px;}
.ls29{letter-spacing:-0.267082px;}
.ls27{letter-spacing:-0.258131px;}
.ls18{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.207942px;}
.ls38{letter-spacing:-0.195575px;}
.ls2a{letter-spacing:-0.184749px;}
.ls50{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.156240px;}
.ls16{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.132480px;}
.ls33{letter-spacing:-0.103971px;}
.ls39{letter-spacing:-0.097788px;}
.ls40{letter-spacing:-0.066240px;}
.ls4e{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.048240px;}
.ls3c{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.078120px;}
.ls28{letter-spacing:0.089278px;}
.ls36{letter-spacing:0.097788px;}
.ls34{letter-spacing:0.103971px;}
.ls12{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.156240px;}
.ls15{letter-spacing:0.192240px;}
.ls2f{letter-spacing:0.207942px;}
.ls22{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.264960px;}
.ls3f{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.312480px;}
.ls21{letter-spacing:0.331200px;}
.ls1e{letter-spacing:0.336960px;}
.ls3a{letter-spacing:0.440044px;}
.ls49{letter-spacing:0.717120px;}
.ls45{letter-spacing:0.836640px;}
.ls5{letter-spacing:0.993600px;}
.lsc{letter-spacing:1.417536px;}
.ls10{letter-spacing:1.887840px;}
.lsf{letter-spacing:2.450880px;}
.ls24{letter-spacing:2.990525px;}
.ls6{letter-spacing:5.365440px;}
.lsd{letter-spacing:8.670816px;}
.lsb{letter-spacing:11.128320px;}
.ls8{letter-spacing:12.453120px;}
.lse{letter-spacing:13.499712px;}
.ls7{letter-spacing:13.976640px;}
.ls9{letter-spacing:18.282240px;}
.lsa{letter-spacing:18.606816px;}
.ls2d{letter-spacing:29.918915px;}
.ls2e{letter-spacing:33.320915px;}
.ls26{letter-spacing:33.344915px;}
.ls2b{letter-spacing:33.398915px;}
.ls25{letter-spacing:33.566915px;}
.ls35{letter-spacing:37.538915px;}
.ls23{letter-spacing:40.172915px;}
.ls2c{letter-spacing:53.228915px;}
.ls13{letter-spacing:69.930000px;}
.ls3e{letter-spacing:443.598480px;}
.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;}
}
.ws1{word-spacing:-53.058240px;}
.ws8{word-spacing:-43.747200px;}
.wsa{word-spacing:-43.590960px;}
.ws7{word-spacing:-43.278480px;}
.ws6{word-spacing:-42.966000px;}
.ws9{word-spacing:-42.809760px;}
.wsc{word-spacing:-23.755680px;}
.ws4{word-spacing:-20.304000px;}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.584000px;}
.ws14a{word-spacing:-19.510886px;}
.wsb{word-spacing:-18.938880px;}
.wsf{word-spacing:-18.745920px;}
.wsd{word-spacing:-18.414720px;}
.wse{word-spacing:-18.282240px;}
.ws3b{word-spacing:-18.183288px;}
.ws12{word-spacing:-15.228000px;}
.ws191{word-spacing:-15.102720px;}
.ws192{word-spacing:-15.036480px;}
.ws195{word-spacing:-14.461920px;}
.ws199{word-spacing:-14.342400px;}
.ws196{word-spacing:-13.744800px;}
.ws19d{word-spacing:-13.685040px;}
.ws194{word-spacing:-13.625280px;}
.ws19c{word-spacing:-13.565520px;}
.ws19e{word-spacing:-13.326480px;}
.ws19b{word-spacing:-13.147200px;}
.wse5{word-spacing:-13.100331px;}
.ws19a{word-spacing:-13.027680px;}
.wse4{word-spacing:-12.996360px;}
.wse2{word-spacing:-12.788418px;}
.ws139{word-spacing:-12.663484px;}
.wse3{word-spacing:-12.632462px;}
.ws135{word-spacing:-12.321228px;}
.ws1a0{word-spacing:-12.312000px;}
.ws193{word-spacing:-12.310560px;}
.ws13a{word-spacing:-12.223440px;}
.ws19f{word-spacing:-12.150000px;}
.ws138{word-spacing:-12.125652px;}
.ws137{word-spacing:-12.027865px;}
.ws136{word-spacing:-11.881184px;}
.ws197{word-spacing:-11.593440px;}
.ws198{word-spacing:-11.414160px;}
.ws10{word-spacing:-11.046960px;}
.ws11{word-spacing:-10.808640px;}
.wsbe{word-spacing:-8.355861px;}
.ws18d{word-spacing:-3.873485px;}
.ws18f{word-spacing:-3.730022px;}
.ws179{word-spacing:-3.156173px;}
.ws15c{word-spacing:-3.036600px;}
.ws72{word-spacing:-3.012710px;}
.ws14b{word-spacing:-2.940979px;}
.ws14c{word-spacing:-2.797517px;}
.ws157{word-spacing:-2.725786px;}
.wsd9{word-spacing:-2.582323px;}
.ws84{word-spacing:-2.295398px;}
.ws168{word-spacing:-2.080205px;}
.ws5e{word-spacing:-2.080191px;}
.ws13b{word-spacing:-1.936742px;}
.ws85{word-spacing:-1.865011px;}
.wsfc{word-spacing:-1.793280px;}
.ws13d{word-spacing:-1.721549px;}
.ws61{word-spacing:-1.649818px;}
.ws80{word-spacing:-1.578086px;}
.wsfe{word-spacing:-1.506355px;}
.ws125{word-spacing:-1.434624px;}
.wsc2{word-spacing:-1.428452px;}
.wscd{word-spacing:-1.422659px;}
.ws12d{word-spacing:-1.219430px;}
.ws166{word-spacing:-1.147699px;}
.ws17{word-spacing:-1.093680px;}
.wsa0{word-spacing:-0.860774px;}
.ws28{word-spacing:-0.810000px;}
.ws70{word-spacing:-0.645581px;}
.ws152{word-spacing:-0.502118px;}
.wsc1{word-spacing:-0.491030px;}
.ws5b{word-spacing:-0.466250px;}
.ws101{word-spacing:-0.430387px;}
.ws13{word-spacing:-0.384480px;}
.ws171{word-spacing:-0.358656px;}
.ws1ad{word-spacing:-0.324000px;}
.ws15{word-spacing:-0.288000px;}
.wsc3{word-spacing:-0.230936px;}
.ws18{word-spacing:-0.156240px;}
.ws89{word-spacing:-0.143462px;}
.ws29{word-spacing:-0.108000px;}
.wsd1{word-spacing:-0.107596px;}
.ws6c{word-spacing:-0.071731px;}
.ws3e{word-spacing:-0.065455px;}
.ws47{word-spacing:-0.059776px;}
.ws1a8{word-spacing:-0.059760px;}
.ws11c{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws1aa{word-spacing:0.059760px;}
.ws132{word-spacing:0.071731px;}
.wsf1{word-spacing:0.103971px;}
.ws1ac{word-spacing:0.108000px;}
.ws1a1{word-spacing:0.119520px;}
.ws1b{word-spacing:0.132480px;}
.ws67{word-spacing:0.143462px;}
.ws14{word-spacing:0.144000px;}
.ws145{word-spacing:0.195575px;}
.wsec{word-spacing:0.207942px;}
.ws92{word-spacing:0.215194px;}
.wsbc{word-spacing:0.221255px;}
.ws39{word-spacing:0.274909px;}
.ws16{word-spacing:0.288000px;}
.ws1ab{word-spacing:0.298800px;}
.ws19{word-spacing:0.331200px;}
.ws7e{word-spacing:0.358656px;}
.wsee{word-spacing:0.363898px;}
.ws11a{word-spacing:0.430387px;}
.wsed{word-spacing:0.467869px;}
.ws1a7{word-spacing:0.478080px;}
.ws109{word-spacing:0.502118px;}
.ws1a6{word-spacing:0.597600px;}
.ws6e{word-spacing:0.645581px;}
.ws1a5{word-spacing:0.657360px;}
.ws1a4{word-spacing:0.717120px;}
.wsfb{word-spacing:0.717312px;}
.wsef{word-spacing:0.727796px;}
.wsc8{word-spacing:0.860774px;}
.ws40{word-spacing:0.908589px;}
.ws56{word-spacing:0.932506px;}
.ws15d{word-spacing:0.968365px;}
.wsf0{word-spacing:0.987723px;}
.ws5a{word-spacing:1.004237px;}
.ws7f{word-spacing:1.075968px;}
.wsba{word-spacing:1.087916px;}
.wsaf{word-spacing:1.147699px;}
.ws1c{word-spacing:1.192320px;}
.ws1a2{word-spacing:1.195200px;}
.wsca{word-spacing:1.219430px;}
.ws120{word-spacing:1.242712px;}
.wscc{word-spacing:1.291162px;}
.wsb5{word-spacing:1.362893px;}
.ws1a3{word-spacing:1.374480px;}
.wsd7{word-spacing:1.386794px;}
.ws81{word-spacing:1.434624px;}
.wsc4{word-spacing:1.506355px;}
.ws73{word-spacing:1.578086px;}
.ws90{word-spacing:1.649818px;}
.wscb{word-spacing:1.721549px;}
.ws107{word-spacing:1.793280px;}
.wse1{word-spacing:1.805223px;}
.ws15b{word-spacing:1.864999px;}
.ws9a{word-spacing:1.865011px;}
.ws27{word-spacing:1.920960px;}
.wsd2{word-spacing:1.924774px;}
.wsad{word-spacing:1.936742px;}
.wsa5{word-spacing:2.008474px;}
.ws1a9{word-spacing:2.031840px;}
.ws4f{word-spacing:2.080205px;}
.wsd8{word-spacing:2.104101px;}
.wsde{word-spacing:2.151936px;}
.wsce{word-spacing:2.223652px;}
.ws30{word-spacing:2.238547px;}
.ws110{word-spacing:2.295398px;}
.wsbb{word-spacing:2.367130px;}
.ws38{word-spacing:2.500366px;}
.ws74{word-spacing:2.582323px;}
.ws26{word-spacing:2.583360px;}
.wsd4{word-spacing:2.642082px;}
.ws97{word-spacing:2.654054px;}
.wsb6{word-spacing:2.725786px;}
.ws142{word-spacing:2.761633px;}
.ws96{word-spacing:2.797517px;}
.ws113{word-spacing:2.846227px;}
.wsa1{word-spacing:2.869248px;}
.wsd5{word-spacing:2.940960px;}
.ws117{word-spacing:2.940979px;}
.wsa6{word-spacing:3.012710px;}
.ws15f{word-spacing:3.120286px;}
.ws55{word-spacing:3.156173px;}
.ws115{word-spacing:3.227904px;}
.wsd3{word-spacing:3.239838px;}
.ws49{word-spacing:3.299613px;}
.ws25{word-spacing:3.312000px;}
.ws32{word-spacing:3.351276px;}
.ws5f{word-spacing:3.359389px;}
.ws8f{word-spacing:3.371366px;}
.ws147{word-spacing:3.443098px;}
.wsa7{word-spacing:3.478940px;}
.ws103{word-spacing:3.514829px;}
.ws123{word-spacing:3.586560px;}
.ws3d{word-spacing:3.613094px;}
.ws134{word-spacing:3.658291px;}
.ws10e{word-spacing:3.718042px;}
.ws6d{word-spacing:3.730022px;}
.ws83{word-spacing:3.801754px;}
.ws4a{word-spacing:3.873485px;}
.ws4c{word-spacing:3.945216px;}
.wse0{word-spacing:3.957145px;}
.wsb8{word-spacing:4.016947px;}
.ws34{word-spacing:4.071276px;}
.ws41{word-spacing:4.076696px;}
.ws124{word-spacing:4.088678px;}
.ws128{word-spacing:4.160410px;}
.ws44{word-spacing:4.196247px;}
.ws164{word-spacing:4.232141px;}
.ws31{word-spacing:4.267640px;}
.wsb4{word-spacing:4.303872px;}
.ws1e{word-spacing:4.371840px;}
.ws6b{word-spacing:4.375603px;}
.ws9d{word-spacing:4.447334px;}
.wsbd{word-spacing:4.456824px;}
.ws8a{word-spacing:4.519066px;}
.ws9f{word-spacing:4.590797px;}
.ws2c{word-spacing:4.648169px;}
.ws59{word-spacing:4.662528px;}
.wsfd{word-spacing:4.734259px;}
.wsa8{word-spacing:4.853779px;}
.ws58{word-spacing:4.877722px;}
.wse7{word-spacing:4.949453px;}
.ws64{word-spacing:5.021184px;}
.ws6a{word-spacing:5.092915px;}
.ws45{word-spacing:5.152657px;}
.wsc5{word-spacing:5.164646px;}
.ws2f{word-spacing:5.184004px;}
.wsa3{word-spacing:5.236378px;}
.ws65{word-spacing:5.308109px;}
.ws37{word-spacing:5.314914px;}
.ws12a{word-spacing:5.374380px;}
.wsea{word-spacing:5.379825px;}
.ws66{word-spacing:5.379840px;}
.ws60{word-spacing:5.391759px;}
.ws91{word-spacing:5.451571px;}
.ws1d{word-spacing:5.497920px;}
.ws7d{word-spacing:5.523302px;}
.wsb1{word-spacing:5.560929px;}
.ws95{word-spacing:5.595034px;}
.ws93{word-spacing:5.609543px;}
.wsa9{word-spacing:5.630862px;}
.ws9e{word-spacing:5.666765px;}
.ws57{word-spacing:5.738496px;}
.wsda{word-spacing:5.810227px;}
.ws51{word-spacing:5.881958px;}
.ws86{word-spacing:5.953690px;}
.wsb9{word-spacing:6.025421px;}
.ws7a{word-spacing:6.097152px;}
.wsdf{word-spacing:6.168842px;}
.ws129{word-spacing:6.168883px;}
.ws5c{word-spacing:6.228618px;}
.wsc9{word-spacing:6.240614px;}
.wsa4{word-spacing:6.312346px;}
.ws11f{word-spacing:6.407944px;}
.ws71{word-spacing:6.455775px;}
.ws154{word-spacing:6.455808px;}
.ws33{word-spacing:6.493096px;}
.ws78{word-spacing:6.527539px;}
.ws76{word-spacing:6.599270px;}
.ws75{word-spacing:6.671002px;}
.ws10c{word-spacing:6.706822px;}
.wsc6{word-spacing:6.742733px;}
.ws8b{word-spacing:6.814464px;}
.ws2d{word-spacing:6.820369px;}
.ws127{word-spacing:6.886195px;}
.wsff{word-spacing:6.957926px;}
.wscf{word-spacing:7.005700px;}
.ws7c{word-spacing:7.029658px;}
.ws68{word-spacing:7.101389px;}
.ws7b{word-spacing:7.173120px;}
.ws106{word-spacing:7.244851px;}
.ws52{word-spacing:7.316582px;}
.ws167{word-spacing:7.388314px;}
.ws15e{word-spacing:7.483905px;}
.wsac{word-spacing:7.531776px;}
.ws53{word-spacing:7.603507px;}
.ws16a{word-spacing:7.675238px;}
.ws100{word-spacing:7.746970px;}
.ws35{word-spacing:7.802188px;}
.wsaa{word-spacing:7.818701px;}
.ws175{word-spacing:7.890432px;}
.wsf7{word-spacing:7.962163px;}
.ws8e{word-spacing:8.105626px;}
.ws99{word-spacing:8.177357px;}
.ws2e{word-spacing:8.260371px;}
.ws146{word-spacing:8.320819px;}
.ws24{word-spacing:8.346240px;}
.ws126{word-spacing:8.392550px;}
.wse8{word-spacing:8.464282px;}
.ws105{word-spacing:8.536013px;}
.ws14d{word-spacing:8.607744px;}
.ws144{word-spacing:8.619642px;}
.wsf3{word-spacing:8.625324px;}
.wsf5{word-spacing:8.679475px;}
.ws98{word-spacing:8.751206px;}
.wsb7{word-spacing:8.822938px;}
.ws143{word-spacing:8.858744px;}
.wsdc{word-spacing:8.894669px;}
.ws122{word-spacing:8.966400px;}
.wsb3{word-spacing:9.038131px;}
.ws8d{word-spacing:9.109862px;}
.ws36{word-spacing:9.176735px;}
.ws62{word-spacing:9.181594px;}
.ws14e{word-spacing:9.253325px;}
.ws9b{word-spacing:9.325056px;}
.wsd6{word-spacing:9.336949px;}
.wsa2{word-spacing:9.396787px;}
.ws5d{word-spacing:9.516276px;}
.ws131{word-spacing:9.540250px;}
.ws150{word-spacing:9.611981px;}
.wsf6{word-spacing:9.683712px;}
.ws108{word-spacing:9.755443px;}
.ws141{word-spacing:9.827174px;}
.ws10b{word-spacing:9.898906px;}
.ws111{word-spacing:9.970637px;}
.wsf9{word-spacing:10.042368px;}
.ws155{word-spacing:10.114099px;}
.ws160{word-spacing:10.182570px;}
.ws54{word-spacing:10.185830px;}
.ws77{word-spacing:10.257562px;}
.wse9{word-spacing:10.329293px;}
.ws12e{word-spacing:10.401024px;}
.ws50{word-spacing:10.472755px;}
.ws79{word-spacing:10.544486px;}
.ws3f{word-spacing:10.551282px;}
.ws48{word-spacing:10.592236px;}
.ws153{word-spacing:10.687949px;}
.ws140{word-spacing:10.759680px;}
.ws11e{word-spacing:10.831339px;}
.ws112{word-spacing:10.831411px;}
.ws162{word-spacing:10.903142px;}
.wsdd{word-spacing:11.118336px;}
.ws3a{word-spacing:11.140373px;}
.ws10a{word-spacing:11.190067px;}
.ws23{word-spacing:11.260800px;}
.wsf8{word-spacing:11.333530px;}
.ws63{word-spacing:11.405261px;}
.ws13c{word-spacing:11.548723px;}
.ws188{word-spacing:11.598205px;}
.ws176{word-spacing:11.628975px;}
.wse6{word-spacing:11.692186px;}
.wsae{word-spacing:11.763917px;}
.ws10d{word-spacing:11.787748px;}
.wsfa{word-spacing:11.835648px;}
.ws69{word-spacing:11.907379px;}
.ws14f{word-spacing:11.979110px;}
.ws1a{word-spacing:11.989440px;}
.ws11d{word-spacing:12.026851px;}
.ws87{word-spacing:12.122573px;}
.ws4e{word-spacing:12.266035px;}
.ws118{word-spacing:12.552960px;}
.wsab{word-spacing:12.696422px;}
.ws130{word-spacing:12.768154px;}
.ws8c{word-spacing:13.055078px;}
.ws12f{word-spacing:13.126810px;}
.ws11b{word-spacing:13.270272px;}
.ws119{word-spacing:13.342003px;}
.ws13f{word-spacing:13.413734px;}
.ws159{word-spacing:13.485466px;}
.ws20{word-spacing:13.579200px;}
.ws88{word-spacing:13.628928px;}
.ws9c{word-spacing:13.700659px;}
.ws158{word-spacing:14.059315px;}
.ws1f{word-spacing:14.109120px;}
.ws12c{word-spacing:14.202778px;}
.ws184{word-spacing:14.346240px;}
.ws181{word-spacing:14.920090px;}
.ws169{word-spacing:15.422208px;}
.ws133{word-spacing:15.565670px;}
.ws185{word-spacing:16.139520px;}
.ws22{word-spacing:17.752320px;}
.ws21{word-spacing:18.480960px;}
.ws180{word-spacing:18.721843px;}
.ws18e{word-spacing:19.295693px;}
.ws17e{word-spacing:19.582618px;}
.ws18a{word-spacing:19.941274px;}
.ws174{word-spacing:20.658586px;}
.ws16f{word-spacing:20.873779px;}
.ws172{word-spacing:21.088973px;}
.wsd0{word-spacing:21.339889px;}
.ws16b{word-spacing:21.806285px;}
.ws42{word-spacing:22.057196px;}
.ws17f{word-spacing:22.523597px;}
.ws82{word-spacing:22.810522px;}
.ws46{word-spacing:23.013606px;}
.wsdb{word-spacing:23.292436px;}
.ws3c{word-spacing:23.367292px;}
.ws17b{word-spacing:23.527834px;}
.ws151{word-spacing:24.173414px;}
.ws102{word-spacing:24.354989px;}
.ws4b{word-spacing:25.034189px;}
.ws43{word-spacing:25.316065px;}
.ws6f{word-spacing:25.427309px;}
.wseb{word-spacing:25.996109px;}
.ws17a{word-spacing:26.110157px;}
.wsc0{word-spacing:26.372995px;}
.ws163{word-spacing:26.397082px;}
.wsb2{word-spacing:26.540544px;}
.ws94{word-spacing:26.612275px;}
.ws148{word-spacing:27.539789px;}
.ws17d{word-spacing:27.544781px;}
.ws173{word-spacing:27.688243px;}
.ws189{word-spacing:28.118630px;}
.ws121{word-spacing:28.148909px;}
.wsc7{word-spacing:28.405555px;}
.ws104{word-spacing:28.667549px;}
.ws16d{word-spacing:28.692480px;}
.ws165{word-spacing:28.703309px;}
.wsbf{word-spacing:28.891548px;}
.ws114{word-spacing:29.124509px;}
.ws183{word-spacing:29.266330px;}
.ws187{word-spacing:29.624986px;}
.ws170{word-spacing:30.844416px;}
.ws18c{word-spacing:31.059610px;}
.wsb0{word-spacing:31.293629px;}
.ws178{word-spacing:31.489997px;}
.ws177{word-spacing:32.637696px;}
.ws16c{word-spacing:32.924621px;}
.ws156{word-spacing:33.222010px;}
.ws190{word-spacing:34.072320px;}
.ws149{word-spacing:34.457549px;}
.ws16e{word-spacing:34.502707px;}
.ws17c{word-spacing:34.574438px;}
.ws182{word-spacing:35.148288px;}
.wsf4{word-spacing:35.538509px;}
.ws161{word-spacing:35.920589px;}
.ws2a{word-spacing:35.952750px;}
.ws186{word-spacing:36.295987px;}
.wsf2{word-spacing:36.716189px;}
.ws116{word-spacing:36.770909px;}
.ws2b{word-spacing:37.316475px;}
.ws13e{word-spacing:38.448010px;}
.ws10f{word-spacing:38.670010px;}
.ws18b{word-spacing:39.739085px;}
.ws12b{word-spacing:41.223466px;}
.ws15a{word-spacing:44.292010px;}
.ws4d{word-spacing:83.925075px;}
._35{margin-left:-36.194731px;}
._2b{margin-left:-34.894987px;}
._26{margin-left:-31.254792px;}
._2c{margin-left:-29.887800px;}
._3e{margin-left:-15.102720px;}
._3d{margin-left:-13.625280px;}
._9{margin-left:-9.670050px;}
._18{margin-left:-5.881958px;}
._7{margin-left:-4.204413px;}
._a{margin-left:-3.134266px;}
._2{margin-left:-2.118312px;}
._0{margin-left:-1.006992px;}
._1{width:1.366992px;}
._e{width:2.429375px;}
._5{width:3.509352px;}
._1e{width:4.554813px;}
._14{width:6.006977px;}
._33{width:9.205689px;}
._34{width:10.410111px;}
._3{width:11.838816px;}
._4{width:13.549032px;}
._1a{width:16.430846px;}
._25{width:17.787366px;}
._13{width:19.487546px;}
._1c{width:20.668440px;}
._d{width:22.325858px;}
._1f{width:24.253984px;}
._f{width:26.278614px;}
._b{width:27.621841px;}
._12{width:29.134852px;}
._10{width:30.370934px;}
._17{width:32.320410px;}
._c{width:33.643664px;}
._1b{width:35.144189px;}
._6{width:36.521280px;}
._23{width:37.568398px;}
._21{width:39.236966px;}
._22{width:40.741132px;}
._11{width:41.800010px;}
._15{width:43.157423px;}
._32{width:45.013570px;}
._19{width:46.139320px;}
._16{width:48.403812px;}
._8{width:49.961925px;}
._29{width:51.216461px;}
._28{width:52.301531px;}
._1d{width:54.119333px;}
._31{width:56.056075px;}
._2d{width:57.571916px;}
._2e{width:58.640766px;}
._30{width:59.794680px;}
._24{width:60.976003px;}
._39{width:62.434152px;}
._3c{width:63.764938px;}
._2f{width:66.705917px;}
._3a{width:68.486968px;}
._37{width:77.709649px;}
._3b{width:79.000811px;}
._36{width:90.456819px;}
._38{width:93.709991px;}
._2a{width:96.836850px;}
._27{width:101.949599px;}
._20{width:116.203950px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(227,5,19);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs19{font-size:36.875808px;}
.fs1c{font-size:38.154614px;}
.fse{font-size:38.880000px;}
.fs14{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs1a{font-size:44.639136px;}
.fsa{font-size:45.360000px;}
.fs1d{font-size:46.187165px;}
.fs17{font-size:47.820600px;}
.fsd{font-size:48.240000px;}
.fs18{font-size:48.520800px;}
.fs1f{font-size:48.893760px;}
.fs1b{font-size:50.203440px;}
.fs1e{font-size:51.985440px;}
.fsf{font-size:54.000000px;}
.fs21{font-size:59.760000px;}
.fs12{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs13{font-size:65.454600px;}
.fsb{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs15{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs20{font-size:82.552320px;}
.fsc{font-size:84.240000px;}
.fs11{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs16{font-size:103.292400px;}
.fs10{font-size:123.975000px;}
.fs8{font-size:156.240000px;}
.fs6{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.ybb{bottom:-28.087478px;}
.yba{bottom:-8.679158px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.600000px;}
.y27{bottom:3.780000px;}
.yd6{bottom:6.651956px;}
.y24{bottom:10.260000px;}
.y154{bottom:11.978971px;}
.y113{bottom:12.476506px;}
.y115{bottom:12.736433px;}
.yc5{bottom:15.505024px;}
.y17a{bottom:17.212159px;}
.ycb{bottom:20.247675px;}
.y15a{bottom:26.891568px;}
.y14b{bottom:27.136037px;}
.yd7{bottom:28.269662px;}
.y110{bottom:28.591992px;}
.y109{bottom:28.851919px;}
.y150{bottom:42.293102px;}
.y31{bottom:50.580000px;}
.ybc{bottom:61.045838px;}
.yc6{bottom:63.171656px;}
.y5{bottom:66.525004px;}
.y152{bottom:73.153214px;}
.ycc{bottom:74.270865px;}
.yd9{bottom:83.493341px;}
.y2f{bottom:85.140000px;}
.ybd{bottom:85.697316px;}
.y15d{bottom:87.087936px;}
.y151{bottom:88.310280px;}
.y10a{bottom:88.857196px;}
.y11b{bottom:91.456468px;}
.y10e{bottom:92.756104px;}
.y4{bottom:97.125005px;}
.yc7{bottom:100.775276px;}
.yd8{bottom:101.481861px;}
.ycd{bottom:101.818496px;}
.y47{bottom:106.924500px;}
.y67{bottom:108.000000px;}
.ybe{bottom:110.348793px;}
.y46{bottom:127.260000px;}
.yce{bottom:129.366128px;}
.y2d{bottom:129.960000px;}
.ybf{bottom:135.000271px;}
.y21{bottom:139.264499px;}
.y45{bottom:139.320000px;}
.y111{bottom:149.160307px;}
.y66{bottom:152.841000px;}
.y186{bottom:155.967000px;}
.y145{bottom:156.054000px;}
.ycf{bottom:156.913759px;}
.y1be{bottom:159.451500px;}
.yc0{bottom:159.651749px;}
.yb4{bottom:159.661500px;}
.y16e{bottom:160.026000px;}
.y84{bottom:165.510000px;}
.ya0{bottom:165.523500px;}
.y1ee{bottom:166.140000px;}
.yec{bottom:168.180000px;}
.y12d{bottom:169.198500px;}
.y65{bottom:170.773500px;}
.y127{bottom:172.623000px;}
.y9b{bottom:173.916000px;}
.y2b{bottom:174.780000px;}
.y102{bottom:176.974500px;}
.yb3{bottom:177.594000px;}
.y16d{bottom:177.960000px;}
.y1bd{bottom:181.120500px;}
.y1ed{bottom:182.875500px;}
.y83{bottom:183.442500px;}
.yc1{bottom:184.303226px;}
.yd0{bottom:184.461391px;}
.yeb{bottom:186.112500px;}
.y177{bottom:187.123500px;}
.y12b{bottom:187.131000px;}
.yb6{bottom:187.135500px;}
.y64{bottom:188.706000px;}
.y19f{bottom:190.002000px;}
.y185{bottom:191.829000px;}
.y144{bottom:191.916000px;}
.y101{bottom:194.907000px;}
.yb2{bottom:195.528000px;}
.y15b{bottom:195.876552px;}
.y16c{bottom:195.892500px;}
.y18{bottom:196.933500px;}
.y14c{bottom:197.098896px;}
.y14e{bottom:198.321240px;}
.y1ec{bottom:199.440000px;}
.y82{bottom:201.375000px;}
.y9f{bottom:201.385500px;}
.y1bc{bottom:202.789500px;}
.yea{bottom:204.045000px;}
.y176{bottom:205.056000px;}
.y12a{bottom:205.063500px;}
.y63{bottom:206.640000px;}
.y126{bottom:208.485000px;}
.yc2{bottom:208.954704px;}
.y119{bottom:209.203490px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y10c{bottom:209.723344px;}
.y9a{bottom:209.778000px;}
.y12c{bottom:210.487500px;}
.yb5{bottom:210.490500px;}
.y19e{bottom:211.671000px;}
.yd1{bottom:212.009023px;}
.y100{bottom:212.839500px;}
.y16b{bottom:213.825000px;}
.y1eb{bottom:215.811000px;}
.y44{bottom:216.900000px;}
.yb1{bottom:218.883000px;}
.y81{bottom:219.307500px;}
.y29{bottom:219.780000px;}
.ye9{bottom:221.977500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y129{bottom:222.997500px;}
.y62{bottom:224.572500px;}
.y184{bottom:227.691000px;}
.y143{bottom:227.778000px;}
.y175{bottom:228.412500px;}
.y16a{bottom:231.757500px;}
.y1ea{bottom:232.375500px;}
.yc3{bottom:233.606182px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yff{bottom:236.196000px;}
.y80{bottom:237.241500px;}
.y9e{bottom:237.247500px;}
.y1bb{bottom:239.403000px;}
.yd2{bottom:239.556654px;}
.ye8{bottom:239.910000px;}
.y174{bottom:240.922500px;}
.y43{bottom:240.974640px;}
.y61{bottom:242.505000px;}
.yb0{bottom:245.640000px;}
.y128{bottom:246.352500px;}
.y60{bottom:247.927500px;}
.y19d{bottom:248.284500px;}
.y1ca{bottom:254.346000px;}
.y169{bottom:255.114000px;}
.y7f{bottom:255.174000px;}
.y125{bottom:255.928500px;}
.ydb{bottom:256.492500px;}
.ye7{bottom:257.844000px;}
.yc4{bottom:258.257659px;}
.y173{bottom:258.855000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1ba{bottom:261.070500px;}
.y42{bottom:261.856800px;}
.yfe{bottom:262.951500px;}
.y99{bottom:263.398500px;}
.y183{bottom:263.553000px;}
.y142{bottom:263.640000px;}
.y1e9{bottom:265.843980px;}
.yd3{bottom:267.104286px;}
.y19c{bottom:269.952000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y9d{bottom:273.109500px;}
.yda{bottom:274.426500px;}
.ye6{bottom:275.776500px;}
.y1c9{bottom:276.015000px;}
.y7e{bottom:278.529000px;}
.y157{bottom:280.218288px;}
.yaf{bottom:281.500500px;}
.y168{bottom:281.869500px;}
.y172{bottom:282.210000px;}
.y41{bottom:282.921120px;}
.y1e8{bottom:283.846680px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yca{bottom:290.146500px;}
.ye5{bottom:293.709000px;}
.yd4{bottom:294.651917px;}
.y171{bottom:294.720000px;}
.y1b9{bottom:297.684000px;}
.yfd{bottom:298.813500px;}
.y182{bottom:299.415000px;}
.y141{bottom:299.500500px;}
.y40{bottom:303.985440px;}
.y7d{bottom:305.286000px;}
.y19b{bottom:306.565500px;}
.y9c{bottom:308.970000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yd5{bottom:310.645192px;}
.ye4{bottom:317.064000px;}
.yae{bottom:317.362500px;}
.y149{bottom:317.622014px;}
.y167{bottom:317.731500px;}
.y170{bottom:318.076500px;}
.y1b8{bottom:319.353000px;}
.y1e7{bottom:320.031360px;}
.y117{bottom:320.452332px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y3f{bottom:324.867600px;}
.y124{bottom:325.539000px;}
.y19a{bottom:328.234500px;}
.ye3{bottom:329.574000px;}
.yfc{bottom:334.675500px;}
.y181{bottom:335.277000px;}
.y140{bottom:335.362500px;}
.y107{bottom:336.567818px;}
.y1b7{bottom:341.020500px;}
.y148{bottom:341.091019px;}
.y7c{bottom:341.148000px;}
.y98{bottom:344.832000px;}
.y3e{bottom:345.931920px;}
.yf{bottom:348.133500px;}
.ye2{bottom:352.930500px;}
.yad{bottom:353.224500px;}
.y166{bottom:353.593500px;}
.y1c8{bottom:355.965000px;}
.y123{bottom:361.401000px;}
.y106{bottom:361.520829px;}
.y1e6{bottom:364.134240px;}
.y147{bottom:364.315555px;}
.y199{bottom:364.846500px;}
.ye1{bottom:365.440500px;}
.y3d{bottom:366.996240px;}
.yfb{bottom:370.537500px;}
.y180{bottom:371.137500px;}
.y13f{bottom:371.224500px;}
.y5f{bottom:375.477000px;}
.y7b{bottom:377.008500px;}
.y1b6{bottom:377.634000px;}
.y97{bottom:380.694000px;}
.ye0{bottom:383.373000px;}
.y105{bottom:386.213913px;}
.y198{bottom:386.515500px;}
.ye{bottom:386.785499px;}
.y3c{bottom:387.878400px;}
.yac{bottom:389.086500px;}
.y165{bottom:389.455500px;}
.y5e{bottom:395.800500px;}
.y122{bottom:397.263000px;}
.y1b5{bottom:399.303000px;}
.yfa{bottom:406.399500px;}
.ydf{bottom:406.728000px;}
.y17f{bottom:406.999500px;}
.y13e{bottom:407.086500px;}
.y1e5{bottom:407.520000px;}
.yd{bottom:408.044999px;}
.y3b{bottom:408.942720px;}
.y7a{bottom:412.870500px;}
.y5d{bottom:416.125500px;}
.y96{bottom:416.556000px;}
.yde{bottom:419.238000px;}
.y197{bottom:423.127500px;}
.y1e4{bottom:424.617300px;}
.yab{bottom:424.948500px;}
.y164{bottom:425.316000px;}
.y3a{bottom:430.007040px;}
.y121{bottom:433.125000px;}
.y1b4{bottom:435.915000px;}
.ydd{bottom:437.170500px;}
.yf9{bottom:442.260000px;}
.y17e{bottom:442.861500px;}
.y13d{bottom:442.948500px;}
.y196{bottom:444.796500px;}
.y79{bottom:448.732500px;}
.y39{bottom:450.889200px;}
.y95{bottom:452.418000px;}
.y5c{bottom:456.772500px;}
.y1b3{bottom:457.584000px;}
.ydc{bottom:460.527000px;}
.yaa{bottom:460.810500px;}
.y163{bottom:461.178000px;}
.y1e3{bottom:465.300000px;}
.y120{bottom:468.985500px;}
.y38{bottom:471.953520px;}
.y5b{bottom:477.096000px;}
.yf8{bottom:478.122000px;}
.y17d{bottom:478.723500px;}
.y13c{bottom:478.810500px;}
.y195{bottom:481.410000px;}
.y1e2{bottom:484.010460px;}
.y78{bottom:484.594500px;}
.y94{bottom:488.280000px;}
.y16f{bottom:490.392000px;}
.y37{bottom:493.017840px;}
.y1c7{bottom:494.196000px;}
.y1b2{bottom:494.197500px;}
.ya9{bottom:496.671000px;}
.y162{bottom:497.040000px;}
.y5a{bottom:497.419500px;}
.y1e1{bottom:502.013160px;}
.yc{bottom:502.864502px;}
.y194{bottom:503.079000px;}
.y11f{bottom:504.847500px;}
.y36{bottom:513.900000px;}
.yf7{bottom:513.984000px;}
.y187{bottom:514.429500px;}
.y17c{bottom:514.585500px;}
.y13b{bottom:514.671000px;}
.y1b1{bottom:515.865000px;}
.y59{bottom:517.743000px;}
.y77{bottom:520.456500px;}
.yb{bottom:520.864502px;}
.y93{bottom:524.140500px;}
.y193{bottom:524.746500px;}
.ya8{bottom:532.533000px;}
.y161{bottom:532.902000px;}
.y1c6{bottom:537.534000px;}
.y58{bottom:538.068000px;}
.ya{bottom:538.864499px;}
.y11e{bottom:540.709500px;}
.yf6{bottom:549.846000px;}
.y17b{bottom:550.446000px;}
.y13a{bottom:550.533000px;}
.y1b0{bottom:552.478500px;}
.y1e0{bottom:552.600000px;}
.y76{bottom:556.318500px;}
.y9{bottom:556.864499px;}
.y35{bottom:557.100000px;}
.y57{bottom:558.391500px;}
.y92{bottom:560.002500px;}
.y192{bottom:561.360000px;}
.y1df{bottom:568.260000px;}
.ya7{bottom:568.395000px;}
.y160{bottom:568.764000px;}
.y1af{bottom:574.147500px;}
.y11d{bottom:576.571500px;}
.y56{bottom:578.715000px;}
.y191{bottom:583.029000px;}
.yf5{bottom:585.708000px;}
.y139{bottom:586.395000px;}
.y75{bottom:592.179000px;}
.y1c5{bottom:595.815000px;}
.y91{bottom:595.864500px;}
.y55{bottom:599.038500px;}
.y1de{bottom:599.040000px;}
.ya6{bottom:604.257000px;}
.y15f{bottom:604.626000px;}
.y1ae{bottom:610.759500px;}
.y11c{bottom:612.433500px;}
.y179{bottom:617.694000px;}
.y34{bottom:618.660000px;}
.y54{bottom:619.362000px;}
.y190{bottom:619.641000px;}
.yf4{bottom:621.570000px;}
.y138{bottom:622.257000px;}
.y1dd{bottom:627.476580px;}
.y74{bottom:628.041000px;}
.yc9{bottom:628.642500px;}
.y90{bottom:631.726500px;}
.y1ad{bottom:632.428500px;}
.y53{bottom:639.687000px;}
.ya5{bottom:640.119000px;}
.y15e{bottom:640.486500px;}
.y18f{bottom:641.310000px;}
.y8{bottom:645.510000px;}
.yc8{bottom:646.576500px;}
.y1c4{bottom:654.097500px;}
.yf3{bottom:657.430500px;}
.y137{bottom:658.119000px;}
.y28{bottom:658.440000px;}
.y52{bottom:660.010500px;}
.yb9{bottom:662.296500px;}
.y18e{bottom:662.979000px;}
.y73{bottom:663.903000px;}
.y7{bottom:666.771000px;}
.y33{bottom:667.260000px;}
.y8f{bottom:667.588500px;}
.y1ac{bottom:669.040500px;}
.ya4{bottom:675.981000px;}
.y1dc{bottom:677.884140px;}
.y104{bottom:679.681500px;}
.y51{bottom:680.334000px;}
.y1ab{bottom:690.709500px;}
.yf2{bottom:693.292500px;}
.y136{bottom:693.981000px;}
.y18d{bottom:699.591000px;}
.y72{bottom:699.765000px;}
.y50{bottom:700.657500px;}
.y8e{bottom:703.450500px;}
.y1db{bottom:703.984320px;}
.y146{bottom:707.734500px;}
.ya3{bottom:711.841500px;}
.y1c3{bottom:712.378500px;}
.y4f{bottom:720.981000px;}
.y18c{bottom:721.260000px;}
.y6{bottom:726.298500px;}
.y1aa{bottom:727.323000px;}
.yf1{bottom:729.154500px;}
.y135{bottom:729.841500px;}
.y1da{bottom:730.263780px;}
.y71{bottom:735.627000px;}
.y8d{bottom:739.311000px;}
.y4e{bottom:741.306000px;}
.y30{bottom:743.580000px;}
.ya2{bottom:747.703500px;}
.y1a9{bottom:748.992000px;}
.y3{bottom:752.599495px;}
.y108{bottom:756.062191px;}
.y1d9{bottom:756.543240px;}
.y18b{bottom:757.873500px;}
.y11a{bottom:758.661463px;}
.y10d{bottom:759.701172px;}
.yf0{bottom:765.016500px;}
.y134{bottom:765.703500px;}
.y14f{bottom:768.908743px;}
.y1c2{bottom:770.659500px;}
.y70{bottom:771.487500px;}
.y4d{bottom:771.648000px;}
.y8c{bottom:775.173000px;}
.y18a{bottom:779.541000px;}
.y1d8{bottom:782.643420px;}
.y15c{bottom:783.087933px;}
.y1a8{bottom:785.604000px;}
.y2e{bottom:788.400000px;}
.yef{bottom:800.878500px;}
.ya1{bottom:801.324000px;}
.y133{bottom:801.565500px;}
.y1a7{bottom:807.273000px;}
.y1d7{bottom:808.922880px;}
.y8b{bottom:811.035000px;}
.y189{bottom:816.154500px;}
.y10f{bottom:816.365301px;}
.y6f{bottom:825.108000px;}
.y1c1{bottom:828.942000px;}
.y2c{bottom:833.220000px;}
.y1d6{bottom:835.202340px;}
.y132{bottom:837.427500px;}
.y153{bottom:842.004914px;}
.y1a6{bottom:843.885000px;}
.y8a{bottom:846.897000px;}
.yee{bottom:854.497500px;}
.y4c{bottom:857.164500px;}
.y188{bottom:858.720000px;}
.y1d5{bottom:861.302520px;}
.y1a5{bottom:865.554000px;}
.y131{bottom:873.289500px;}
.y118{bottom:876.408484px;}
.y10b{bottom:876.668412px;}
.y2a{bottom:878.220000px;}
.y2{bottom:879.369000px;}
.y89{bottom:882.759000px;}
.y1a4{bottom:887.223000px;}
.y1d4{bottom:887.581980px;}
.y159{bottom:891.876549px;}
.y14a{bottom:892.854424px;}
.y14d{bottom:894.076768px;}
.y4a{bottom:898.992000px;}
.y6e{bottom:906.543000px;}
.y4b{bottom:906.801000px;}
.yed{bottom:908.908500px;}
.y130{bottom:909.150000px;}
.y1d3{bottom:913.682160px;}
.y88{bottom:918.621000px;}
.y1a3{bottom:923.835000px;}
.y6d{bottom:928.212000px;}
.y1d2{bottom:939.961620px;}
.y12f{bottom:945.012000px;}
.y1a2{bottom:945.504000px;}
.y49{bottom:952.230000px;}
.y112{bottom:952.307227px;}
.y114{bottom:952.827081px;}
.y87{bottom:954.481500px;}
.y6c{bottom:962.637000px;}
.y1d1{bottom:966.241080px;}
.y1{bottom:966.726000px;}
.y1c0{bottom:967.173000px;}
.yb8{bottom:973.275000px;}
.y156{bottom:975.973816px;}
.y26{bottom:977.400000px;}
.y1a1{bottom:982.117500px;}
.y6b{bottom:984.304500px;}
.y155{bottom:985.019162px;}
.y116{bottom:987.397399px;}
.y48{bottom:989.589000px;}
.y86{bottom:990.343500px;}
.y1d0{bottom:992.341260px;}
.y12e{bottom:992.455500px;}
.yb7{bottom:994.944000px;}
.y1a0{bottom:1003.786500px;}
.y25{bottom:1006.920000px;}
.y158{bottom:1009.466042px;}
.y1cf{bottom:1018.620720px;}
.y6a{bottom:1018.729500px;}
.y23{bottom:1020.420000px;}
.y1bf{bottom:1025.454000px;}
.y85{bottom:1026.205500px;}
.y69{bottom:1040.398500px;}
.y178{bottom:1043.163000px;}
.y1ce{bottom:1044.900180px;}
.y68{bottom:1062.067500px;}
.y103{bottom:1064.832000px;}
.y1cd{bottom:1071.000360px;}
.y1cc{bottom:1097.279820px;}
.y22{bottom:1117.440000px;}
.y1cb{bottom:1123.380000px;}
.h9{height:4.199063px;}
.hc{height:13.500000px;}
.h3f{height:23.469005px;}
.h36{height:24.694167px;}
.h37{height:24.953011px;}
.h28{height:25.208072px;}
.h2d{height:26.082256px;}
.h24{height:28.285733px;}
.h17{height:28.343672px;}
.hd{height:29.520000px;}
.h2a{height:30.515034px;}
.h2f{height:31.573257px;}
.h7{height:32.130000px;}
.h16{height:32.152148px;}
.h12{height:33.067617px;}
.h3d{height:33.136982px;}
.h27{height:33.689735px;}
.h3a{height:33.948695px;}
.h2c{height:34.858053px;}
.h34{height:35.232320px;}
.h31{height:36.095359px;}
.h40{height:38.381602px;}
.h3b{height:38.626070px;}
.h3c{height:38.627089px;}
.h18{height:39.366211px;}
.h1f{height:39.750660px;}
.h14{height:39.778500px;}
.h35{height:40.807487px;}
.h32{height:41.068498px;}
.h33{height:41.069581px;}
.h20{height:44.831700px;}
.h1d{height:45.687311px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h13{height:48.289219px;}
.h1e{height:49.090950px;}
.h11{height:50.388750px;}
.he{height:52.417969px;}
.h3e{height:53.783136px;}
.h21{height:53.798400px;}
.h2{height:55.080000px;}
.ha{height:55.260000px;}
.h1c{height:56.786820px;}
.h42{height:57.319043px;}
.h4b{height:57.618000px;}
.h4c{height:57.654000px;}
.h23{height:58.354726px;}
.h25{height:58.360726px;}
.h38{height:60.254040px;}
.h15{height:61.329023px;}
.h45{height:63.763920px;}
.h49{height:63.774720px;}
.h48{height:63.802080px;}
.h1b{height:64.557900px;}
.h4a{height:64.779840px;}
.h43{height:68.144640px;}
.h47{height:70.678080px;}
.h22{height:72.304680px;}
.h46{height:76.824000px;}
.h5{height:78.030000px;}
.h1a{height:87.650325px;}
.h10{height:113.746992px;}
.h4{height:119.055004px;}
.hb{height:157.253906px;}
.h29{height:269.345026px;}
.h2e{height:288.418763px;}
.h26{height:289.532711px;}
.hf{height:318.960000px;}
.h2b{height:322.658555px;}
.h39{height:335.654644px;}
.h30{height:363.709633px;}
.h41{height:404.024813px;}
.h19{height:1188.000000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.h44{height:1263.060000px;}
.wb{width:55.364494px;}
.w16{width:61.850606px;}
.w10{width:73.299470px;}
.w14{width:82.578607px;}
.w17{width:83.118373px;}
.w13{width:83.119392px;}
.wc{width:88.375248px;}
.w12{width:89.231112px;}
.w15{width:90.452437px;}
.wf{width:94.094729px;}
.we{width:102.672327px;}
.wd{width:107.349934px;}
.wa{width:432.011786px;}
.w11{width:432.015179px;}
.w18{width:432.044618px;}
.w9{width:488.661459px;}
.w7{width:490.345140px;}
.w6{width:491.407341px;}
.w8{width:491.409574px;}
.w2{width:637.794021px;}
.w4{width:776.338500px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.w1a{width:894.000000px;}
.w19{width:894.060000px;}
.w5{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:1.062201px;}
.x68{left:6.793279px;}
.x58{left:7.797816px;}
.x5c{left:10.099038px;}
.x39{left:12.674442px;}
.x51{left:14.574686px;}
.x3a{left:27.322467px;}
.x53{left:28.631649px;}
.x52{left:31.379765px;}
.x1f{left:35.674615px;}
.x56{left:41.550229px;}
.x3b{left:47.052651px;}
.x64{left:52.997882px;}
.x21{left:63.406375px;}
.x5a{left:71.181930px;}
.x22{left:78.099484px;}
.x67{left:80.867325px;}
.x3c{left:87.869303px;}
.x23{left:92.792593px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:108.000000px;}
.x3d{left:116.480348px;}
.x1b{left:122.944500px;}
.x77{left:125.559000px;}
.xc{left:127.800000px;}
.xe{left:131.379000px;}
.x14{left:134.899500px;}
.x24{left:136.872021px;}
.x7{left:138.780000px;}
.x3e{left:145.091393px;}
.x15{left:148.791000px;}
.x13{left:151.897500px;}
.x3f{left:159.396759px;}
.xa{left:164.880000px;}
.x25{left:166.258341px;}
.x40{left:173.702334px;}
.x1a{left:178.515000px;}
.x66{left:179.877189px;}
.x26{left:180.951450px;}
.x8{left:184.320000px;}
.x41{left:188.007804px;}
.x27{left:195.644559px;}
.x18{left:200.323500px;}
.x42{left:202.313274px;}
.x4{left:203.484001px;}
.x16{left:205.371000px;}
.x28{left:210.337769px;}
.x1c{left:213.301702px;}
.x20{left:214.363903px;}
.x43{left:216.618849px;}
.x29{left:225.030777px;}
.xb{left:227.700000px;}
.x44{left:230.924319px;}
.x2a{left:239.723987px;}
.x5b{left:242.374939px;}
.x45{left:245.229789px;}
.x19{left:249.076500px;}
.x17{left:250.425000px;}
.x2b{left:254.417096px;}
.x46{left:259.535364px;}
.x2c{left:269.110205px;}
.x47{left:273.840834px;}
.x55{left:282.538500px;}
.x2d{left:283.803416px;}
.x48{left:288.146305px;}
.x2e{left:298.496525px;}
.x63{left:301.122000px;}
.x49{left:302.451775px;}
.x59{left:303.457831px;}
.x2f{left:313.189634px;}
.x4a{left:316.757350px;}
.x6d{left:318.002061px;}
.x6f{left:319.713343px;}
.x62{left:325.130805px;}
.x30{left:327.882743px;}
.x4b{left:331.062820px;}
.x31{left:342.575953px;}
.x4c{left:345.368290px;}
.x32{left:357.269062px;}
.x4d{left:359.673865px;}
.x33{left:371.962272px;}
.x4e{left:373.979335px;}
.xf{left:384.085500px;}
.x11{left:385.693500px;}
.x4f{left:388.284910px;}
.x5d{left:398.851113px;}
.x34{left:401.348491px;}
.x50{left:402.590380px;}
.x69{left:407.727147px;}
.x65{left:412.616523px;}
.x35{left:416.041600px;}
.x12{left:422.998500px;}
.x57{left:427.443105px;}
.x9{left:431.280000px;}
.x36{left:445.427919px;}
.x54{left:450.220500px;}
.x3{left:454.959000px;}
.x37{left:460.121129px;}
.x5f{left:472.410511px;}
.x38{left:474.814238px;}
.x6b{left:488.890789px;}
.x1d{left:492.820509px;}
.x5{left:503.100000px;}
.x72{left:505.845000px;}
.x73{left:514.623000px;}
.x10{left:533.914500px;}
.x76{left:544.459500px;}
.x5e{left:545.709981px;}
.x6a{left:549.519051px;}
.x6c{left:550.741395px;}
.x6e{left:552.452677px;}
.x61{left:557.406705px;}
.x60{left:560.785759px;}
.x74{left:581.073000px;}
.x75{left:589.851000px;}
.x70{left:722.415000px;}
.x71{left:731.191500px;}
.x6{left:771.660000px;}
@media print{
.v6{vertical-align:-80.640000pt;}
.v7{vertical-align:-76.811520pt;}
.v8{vertical-align:-64.647040pt;}
.v4{vertical-align:-62.097280pt;}
.v9{vertical-align:-60.103040pt;}
.v5{vertical-align:-53.120000pt;}
.v3{vertical-align:-19.280000pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.136000pt;}
.ls47{letter-spacing:-1.965440pt;}
.ls48{letter-spacing:-1.859200pt;}
.ls46{letter-spacing:-1.806080pt;}
.ls42{letter-spacing:-1.328000pt;}
.ls44{letter-spacing:-1.221760pt;}
.ls41{letter-spacing:-1.168640pt;}
.ls43{letter-spacing:-1.062400pt;}
.ls4a{letter-spacing:-0.584320pt;}
.ls1c{letter-spacing:-0.555520pt;}
.ls4b{letter-spacing:-0.531200pt;}
.ls4c{letter-spacing:-0.424960pt;}
.ls19{letter-spacing:-0.416640pt;}
.ls31{letter-spacing:-0.415884pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls4d{letter-spacing:-0.371840pt;}
.ls14{letter-spacing:-0.341760pt;}
.ls32{letter-spacing:-0.323465pt;}
.ls37{letter-spacing:-0.304228pt;}
.ls1f{letter-spacing:-0.294400pt;}
.ls4f{letter-spacing:-0.265600pt;}
.ls1d{letter-spacing:-0.245760pt;}
.ls29{letter-spacing:-0.237406pt;}
.ls27{letter-spacing:-0.229449pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.184837pt;}
.ls38{letter-spacing:-0.173844pt;}
.ls2a{letter-spacing:-0.164221pt;}
.ls50{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.138880pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls33{letter-spacing:-0.092419pt;}
.ls39{letter-spacing:-0.086922pt;}
.ls40{letter-spacing:-0.058880pt;}
.ls4e{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.042880pt;}
.ls3c{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.069440pt;}
.ls28{letter-spacing:0.079358pt;}
.ls36{letter-spacing:0.086922pt;}
.ls34{letter-spacing:0.092419pt;}
.ls12{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.138880pt;}
.ls15{letter-spacing:0.170880pt;}
.ls2f{letter-spacing:0.184837pt;}
.ls22{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.235520pt;}
.ls3f{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.277760pt;}
.ls21{letter-spacing:0.294400pt;}
.ls1e{letter-spacing:0.299520pt;}
.ls3a{letter-spacing:0.391150pt;}
.ls49{letter-spacing:0.637440pt;}
.ls45{letter-spacing:0.743680pt;}
.ls5{letter-spacing:0.883200pt;}
.lsc{letter-spacing:1.260032pt;}
.ls10{letter-spacing:1.678080pt;}
.lsf{letter-spacing:2.178560pt;}
.ls24{letter-spacing:2.658245pt;}
.ls6{letter-spacing:4.769280pt;}
.lsd{letter-spacing:7.707392pt;}
.lsb{letter-spacing:9.891840pt;}
.ls8{letter-spacing:11.069440pt;}
.lse{letter-spacing:11.999744pt;}
.ls7{letter-spacing:12.423680pt;}
.ls9{letter-spacing:16.250880pt;}
.lsa{letter-spacing:16.539392pt;}
.ls2d{letter-spacing:26.594591pt;}
.ls2e{letter-spacing:29.618591pt;}
.ls26{letter-spacing:29.639925pt;}
.ls2b{letter-spacing:29.687925pt;}
.ls25{letter-spacing:29.837258pt;}
.ls35{letter-spacing:33.367925pt;}
.ls23{letter-spacing:35.709258pt;}
.ls2c{letter-spacing:47.314591pt;}
.ls13{letter-spacing:62.160000pt;}
.ls3e{letter-spacing:394.309760pt;}
.ws1{word-spacing:-47.162880pt;}
.ws8{word-spacing:-38.886400pt;}
.wsa{word-spacing:-38.747520pt;}
.ws7{word-spacing:-38.469760pt;}
.ws6{word-spacing:-38.192000pt;}
.ws9{word-spacing:-38.053120pt;}
.wsc{word-spacing:-21.116160pt;}
.ws4{word-spacing:-18.048000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws14a{word-spacing:-17.343010pt;}
.wsb{word-spacing:-16.834560pt;}
.wsf{word-spacing:-16.663040pt;}
.wsd{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.250880pt;}
.ws3b{word-spacing:-16.162923pt;}
.ws12{word-spacing:-13.536000pt;}
.ws191{word-spacing:-13.424640pt;}
.ws192{word-spacing:-13.365760pt;}
.ws195{word-spacing:-12.855040pt;}
.ws199{word-spacing:-12.748800pt;}
.ws196{word-spacing:-12.217600pt;}
.ws19d{word-spacing:-12.164480pt;}
.ws194{word-spacing:-12.111360pt;}
.ws19c{word-spacing:-12.058240pt;}
.ws19e{word-spacing:-11.845760pt;}
.ws19b{word-spacing:-11.686400pt;}
.wse5{word-spacing:-11.644739pt;}
.ws19a{word-spacing:-11.580160pt;}
.wse4{word-spacing:-11.552320pt;}
.wse2{word-spacing:-11.367483pt;}
.ws139{word-spacing:-11.256430pt;}
.wse3{word-spacing:-11.228855pt;}
.ws135{word-spacing:-10.952202pt;}
.ws1a0{word-spacing:-10.944000pt;}
.ws193{word-spacing:-10.942720pt;}
.ws13a{word-spacing:-10.865280pt;}
.ws19f{word-spacing:-10.800000pt;}
.ws138{word-spacing:-10.778358pt;}
.ws137{word-spacing:-10.691436pt;}
.ws136{word-spacing:-10.561052pt;}
.ws197{word-spacing:-10.305280pt;}
.ws198{word-spacing:-10.145920pt;}
.ws10{word-spacing:-9.819520pt;}
.ws11{word-spacing:-9.607680pt;}
.wsbe{word-spacing:-7.427432pt;}
.ws18d{word-spacing:-3.443098pt;}
.ws18f{word-spacing:-3.315575pt;}
.ws179{word-spacing:-2.805487pt;}
.ws15c{word-spacing:-2.699200pt;}
.ws72{word-spacing:-2.677965pt;}
.ws14b{word-spacing:-2.614204pt;}
.ws14c{word-spacing:-2.486682pt;}
.ws157{word-spacing:-2.422921pt;}
.wsd9{word-spacing:-2.295398pt;}
.ws84{word-spacing:-2.040354pt;}
.ws168{word-spacing:-1.849071pt;}
.ws5e{word-spacing:-1.849059pt;}
.ws13b{word-spacing:-1.721549pt;}
.ws85{word-spacing:-1.657788pt;}
.wsfc{word-spacing:-1.594027pt;}
.ws13d{word-spacing:-1.530266pt;}
.ws61{word-spacing:-1.466505pt;}
.ws80{word-spacing:-1.402743pt;}
.wsfe{word-spacing:-1.338982pt;}
.ws125{word-spacing:-1.275221pt;}
.wsc2{word-spacing:-1.269735pt;}
.wscd{word-spacing:-1.264586pt;}
.ws12d{word-spacing:-1.083938pt;}
.ws166{word-spacing:-1.020177pt;}
.ws17{word-spacing:-0.972160pt;}
.wsa0{word-spacing:-0.765133pt;}
.ws28{word-spacing:-0.720000pt;}
.ws70{word-spacing:-0.573850pt;}
.ws152{word-spacing:-0.446327pt;}
.wsc1{word-spacing:-0.436472pt;}
.ws5b{word-spacing:-0.414444pt;}
.ws101{word-spacing:-0.382566pt;}
.ws13{word-spacing:-0.341760pt;}
.ws171{word-spacing:-0.318805pt;}
.ws1ad{word-spacing:-0.288000pt;}
.ws15{word-spacing:-0.256000pt;}
.wsc3{word-spacing:-0.205276pt;}
.ws18{word-spacing:-0.138880pt;}
.ws89{word-spacing:-0.127522pt;}
.ws29{word-spacing:-0.096000pt;}
.wsd1{word-spacing:-0.095641pt;}
.ws6c{word-spacing:-0.063761pt;}
.ws3e{word-spacing:-0.058182pt;}
.ws47{word-spacing:-0.053134pt;}
.ws1a8{word-spacing:-0.053120pt;}
.ws11c{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws1aa{word-spacing:0.053120pt;}
.ws132{word-spacing:0.063761pt;}
.wsf1{word-spacing:0.092419pt;}
.ws1ac{word-spacing:0.096000pt;}
.ws1a1{word-spacing:0.106240pt;}
.ws1b{word-spacing:0.117760pt;}
.ws67{word-spacing:0.127522pt;}
.ws14{word-spacing:0.128000pt;}
.ws145{word-spacing:0.173844pt;}
.wsec{word-spacing:0.184837pt;}
.ws92{word-spacing:0.191283pt;}
.wsbc{word-spacing:0.196671pt;}
.ws39{word-spacing:0.244364pt;}
.ws16{word-spacing:0.256000pt;}
.ws1ab{word-spacing:0.265600pt;}
.ws19{word-spacing:0.294400pt;}
.ws7e{word-spacing:0.318805pt;}
.wsee{word-spacing:0.323465pt;}
.ws11a{word-spacing:0.382566pt;}
.wsed{word-spacing:0.415884pt;}
.ws1a7{word-spacing:0.424960pt;}
.ws109{word-spacing:0.446327pt;}
.ws1a6{word-spacing:0.531200pt;}
.ws6e{word-spacing:0.573850pt;}
.ws1a5{word-spacing:0.584320pt;}
.ws1a4{word-spacing:0.637440pt;}
.wsfb{word-spacing:0.637611pt;}
.wsef{word-spacing:0.646930pt;}
.wsc8{word-spacing:0.765133pt;}
.ws40{word-spacing:0.807635pt;}
.ws56{word-spacing:0.828894pt;}
.ws15d{word-spacing:0.860769pt;}
.wsf0{word-spacing:0.877976pt;}
.ws5a{word-spacing:0.892655pt;}
.ws7f{word-spacing:0.956416pt;}
.wsba{word-spacing:0.967036pt;}
.wsaf{word-spacing:1.020177pt;}
.ws1c{word-spacing:1.059840pt;}
.ws1a2{word-spacing:1.062400pt;}
.wsca{word-spacing:1.083938pt;}
.ws120{word-spacing:1.104633pt;}
.wscc{word-spacing:1.147699pt;}
.wsb5{word-spacing:1.211460pt;}
.ws1a3{word-spacing:1.221760pt;}
.wsd7{word-spacing:1.232706pt;}
.ws81{word-spacing:1.275221pt;}
.wsc4{word-spacing:1.338982pt;}
.ws73{word-spacing:1.402743pt;}
.ws90{word-spacing:1.466505pt;}
.wscb{word-spacing:1.530266pt;}
.ws107{word-spacing:1.594027pt;}
.wse1{word-spacing:1.604643pt;}
.ws15b{word-spacing:1.657777pt;}
.ws9a{word-spacing:1.657788pt;}
.ws27{word-spacing:1.707520pt;}
.wsd2{word-spacing:1.710911pt;}
.wsad{word-spacing:1.721549pt;}
.wsa5{word-spacing:1.785310pt;}
.ws1a9{word-spacing:1.806080pt;}
.ws4f{word-spacing:1.849071pt;}
.wsd8{word-spacing:1.870312pt;}
.wsde{word-spacing:1.912832pt;}
.wsce{word-spacing:1.976580pt;}
.ws30{word-spacing:1.989820pt;}
.ws110{word-spacing:2.040354pt;}
.wsbb{word-spacing:2.104115pt;}
.ws38{word-spacing:2.222547pt;}
.ws74{word-spacing:2.295398pt;}
.ws26{word-spacing:2.296320pt;}
.wsd4{word-spacing:2.348517pt;}
.ws97{word-spacing:2.359159pt;}
.wsb6{word-spacing:2.422921pt;}
.ws142{word-spacing:2.454785pt;}
.ws96{word-spacing:2.486682pt;}
.ws113{word-spacing:2.529980pt;}
.wsa1{word-spacing:2.550443pt;}
.wsd5{word-spacing:2.614186pt;}
.ws117{word-spacing:2.614204pt;}
.wsa6{word-spacing:2.677965pt;}
.ws15f{word-spacing:2.773588pt;}
.ws55{word-spacing:2.805487pt;}
.ws115{word-spacing:2.869248pt;}
.wsd3{word-spacing:2.879856pt;}
.ws49{word-spacing:2.932989pt;}
.ws25{word-spacing:2.944000pt;}
.ws32{word-spacing:2.978912pt;}
.ws5f{word-spacing:2.986123pt;}
.ws8f{word-spacing:2.996770pt;}
.ws147{word-spacing:3.060531pt;}
.wsa7{word-spacing:3.092391pt;}
.ws103{word-spacing:3.124292pt;}
.ws123{word-spacing:3.188053pt;}
.ws3d{word-spacing:3.211639pt;}
.ws134{word-spacing:3.251814pt;}
.ws10e{word-spacing:3.304927pt;}
.ws6d{word-spacing:3.315575pt;}
.ws83{word-spacing:3.379337pt;}
.ws4a{word-spacing:3.443098pt;}
.ws4c{word-spacing:3.506859pt;}
.wse0{word-spacing:3.517462pt;}
.wsb8{word-spacing:3.570620pt;}
.ws34{word-spacing:3.618912pt;}
.ws41{word-spacing:3.623730pt;}
.ws124{word-spacing:3.634381pt;}
.ws128{word-spacing:3.698142pt;}
.ws44{word-spacing:3.729997pt;}
.ws164{word-spacing:3.761903pt;}
.ws31{word-spacing:3.793458pt;}
.wsb4{word-spacing:3.825664pt;}
.ws1e{word-spacing:3.886080pt;}
.ws6b{word-spacing:3.889425pt;}
.ws9d{word-spacing:3.953186pt;}
.wsbd{word-spacing:3.961622pt;}
.ws8a{word-spacing:4.016947pt;}
.ws9f{word-spacing:4.080708pt;}
.ws2c{word-spacing:4.131706pt;}
.ws59{word-spacing:4.144469pt;}
.wsfd{word-spacing:4.208230pt;}
.wsa8{word-spacing:4.314470pt;}
.ws58{word-spacing:4.335753pt;}
.wse7{word-spacing:4.399514pt;}
.ws64{word-spacing:4.463275pt;}
.ws6a{word-spacing:4.527036pt;}
.ws45{word-spacing:4.580139pt;}
.wsc5{word-spacing:4.590797pt;}
.ws2f{word-spacing:4.608004pt;}
.wsa3{word-spacing:4.654558pt;}
.ws65{word-spacing:4.718319pt;}
.ws37{word-spacing:4.724368pt;}
.ws12a{word-spacing:4.777227pt;}
.wsea{word-spacing:4.782067pt;}
.ws66{word-spacing:4.782080pt;}
.ws60{word-spacing:4.792675pt;}
.ws91{word-spacing:4.845841pt;}
.ws1d{word-spacing:4.887040pt;}
.ws7d{word-spacing:4.909602pt;}
.wsb1{word-spacing:4.943048pt;}
.ws95{word-spacing:4.973363pt;}
.ws93{word-spacing:4.986260pt;}
.wsa9{word-spacing:5.005210pt;}
.ws9e{word-spacing:5.037124pt;}
.ws57{word-spacing:5.100885pt;}
.wsda{word-spacing:5.164646pt;}
.ws51{word-spacing:5.228407pt;}
.ws86{word-spacing:5.292169pt;}
.wsb9{word-spacing:5.355930pt;}
.ws7a{word-spacing:5.419691pt;}
.wsdf{word-spacing:5.483415pt;}
.ws129{word-spacing:5.483452pt;}
.ws5c{word-spacing:5.536549pt;}
.wsc9{word-spacing:5.547213pt;}
.wsa4{word-spacing:5.610974pt;}
.ws11f{word-spacing:5.695951pt;}
.ws71{word-spacing:5.738467pt;}
.ws154{word-spacing:5.738496pt;}
.ws33{word-spacing:5.771641pt;}
.ws78{word-spacing:5.802257pt;}
.ws76{word-spacing:5.866018pt;}
.ws75{word-spacing:5.929779pt;}
.ws10c{word-spacing:5.961620pt;}
.wsc6{word-spacing:5.993540pt;}
.ws8b{word-spacing:6.057301pt;}
.ws2d{word-spacing:6.062551pt;}
.ws127{word-spacing:6.121062pt;}
.wsff{word-spacing:6.184823pt;}
.wscf{word-spacing:6.227289pt;}
.ws7c{word-spacing:6.248585pt;}
.ws68{word-spacing:6.312346pt;}
.ws7b{word-spacing:6.376107pt;}
.ws106{word-spacing:6.439868pt;}
.ws52{word-spacing:6.503629pt;}
.ws167{word-spacing:6.567390pt;}
.ws15e{word-spacing:6.652360pt;}
.wsac{word-spacing:6.694912pt;}
.ws53{word-spacing:6.758673pt;}
.ws16a{word-spacing:6.822434pt;}
.ws100{word-spacing:6.886195pt;}
.ws35{word-spacing:6.935279pt;}
.wsaa{word-spacing:6.949956pt;}
.ws175{word-spacing:7.013717pt;}
.wsf7{word-spacing:7.077478pt;}
.ws8e{word-spacing:7.205001pt;}
.ws99{word-spacing:7.268762pt;}
.ws2e{word-spacing:7.342552pt;}
.ws146{word-spacing:7.396284pt;}
.ws24{word-spacing:7.418880pt;}
.ws126{word-spacing:7.460045pt;}
.wse8{word-spacing:7.523806pt;}
.ws105{word-spacing:7.587567pt;}
.ws14d{word-spacing:7.651328pt;}
.ws144{word-spacing:7.661904pt;}
.wsf3{word-spacing:7.666954pt;}
.wsf5{word-spacing:7.715089pt;}
.ws98{word-spacing:7.778850pt;}
.wsb7{word-spacing:7.842611pt;}
.ws143{word-spacing:7.874439pt;}
.wsdc{word-spacing:7.906372pt;}
.ws122{word-spacing:7.970133pt;}
.wsb3{word-spacing:8.033894pt;}
.ws8d{word-spacing:8.097655pt;}
.ws36{word-spacing:8.157098pt;}
.ws62{word-spacing:8.161417pt;}
.ws14e{word-spacing:8.225178pt;}
.ws9b{word-spacing:8.288939pt;}
.wsd6{word-spacing:8.299510pt;}
.wsa2{word-spacing:8.352700pt;}
.ws5d{word-spacing:8.458912pt;}
.ws131{word-spacing:8.480222pt;}
.ws150{word-spacing:8.543983pt;}
.wsf6{word-spacing:8.607744pt;}
.ws108{word-spacing:8.671505pt;}
.ws141{word-spacing:8.735266pt;}
.ws10b{word-spacing:8.799027pt;}
.ws111{word-spacing:8.862788pt;}
.wsf9{word-spacing:8.926549pt;}
.ws155{word-spacing:8.990310pt;}
.ws160{word-spacing:9.051174pt;}
.ws54{word-spacing:9.054071pt;}
.ws77{word-spacing:9.117833pt;}
.wse9{word-spacing:9.181594pt;}
.ws12e{word-spacing:9.245355pt;}
.ws50{word-spacing:9.309116pt;}
.ws79{word-spacing:9.372877pt;}
.ws3f{word-spacing:9.378917pt;}
.ws48{word-spacing:9.415321pt;}
.ws153{word-spacing:9.500399pt;}
.ws140{word-spacing:9.564160pt;}
.ws11e{word-spacing:9.627857pt;}
.ws112{word-spacing:9.627921pt;}
.ws162{word-spacing:9.691682pt;}
.wsdd{word-spacing:9.882965pt;}
.ws3a{word-spacing:9.902554pt;}
.ws10a{word-spacing:9.946726pt;}
.ws23{word-spacing:10.009600pt;}
.wsf8{word-spacing:10.074249pt;}
.ws63{word-spacing:10.138010pt;}
.ws13c{word-spacing:10.265532pt;}
.ws188{word-spacing:10.309516pt;}
.ws176{word-spacing:10.336867pt;}
.wse6{word-spacing:10.393054pt;}
.wsae{word-spacing:10.456815pt;}
.ws10d{word-spacing:10.477999pt;}
.wsfa{word-spacing:10.520576pt;}
.ws69{word-spacing:10.584337pt;}
.ws14f{word-spacing:10.648098pt;}
.ws1a{word-spacing:10.657280pt;}
.ws11d{word-spacing:10.690534pt;}
.ws87{word-spacing:10.775620pt;}
.ws4e{word-spacing:10.903142pt;}
.ws118{word-spacing:11.158187pt;}
.wsab{word-spacing:11.285709pt;}
.ws130{word-spacing:11.349470pt;}
.ws8c{word-spacing:11.604514pt;}
.ws12f{word-spacing:11.668275pt;}
.ws11b{word-spacing:11.795797pt;}
.ws119{word-spacing:11.859558pt;}
.ws13f{word-spacing:11.923319pt;}
.ws159{word-spacing:11.987081pt;}
.ws20{word-spacing:12.070400pt;}
.ws88{word-spacing:12.114603pt;}
.ws9c{word-spacing:12.178364pt;}
.ws158{word-spacing:12.497169pt;}
.ws1f{word-spacing:12.541440pt;}
.ws12c{word-spacing:12.624691pt;}
.ws184{word-spacing:12.752213pt;}
.ws181{word-spacing:13.262302pt;}
.ws169{word-spacing:13.708629pt;}
.ws133{word-spacing:13.836151pt;}
.ws185{word-spacing:14.346240pt;}
.ws22{word-spacing:15.779840pt;}
.ws21{word-spacing:16.427520pt;}
.ws180{word-spacing:16.641638pt;}
.ws18e{word-spacing:17.151727pt;}
.ws17e{word-spacing:17.406771pt;}
.ws18a{word-spacing:17.725577pt;}
.ws174{word-spacing:18.363187pt;}
.ws16f{word-spacing:18.554470pt;}
.ws172{word-spacing:18.745754pt;}
.wsd0{word-spacing:18.968790pt;}
.ws16b{word-spacing:19.383364pt;}
.ws42{word-spacing:19.606397pt;}
.ws17f{word-spacing:20.020975pt;}
.ws82{word-spacing:20.276019pt;}
.ws46{word-spacing:20.456539pt;}
.wsdb{word-spacing:20.704388pt;}
.ws3c{word-spacing:20.770926pt;}
.ws17b{word-spacing:20.913630pt;}
.ws151{word-spacing:21.487479pt;}
.ws102{word-spacing:21.648879pt;}
.ws4b{word-spacing:22.252612pt;}
.ws43{word-spacing:22.503169pt;}
.ws6f{word-spacing:22.602052pt;}
.wseb{word-spacing:23.107652pt;}
.ws17a{word-spacing:23.209028pt;}
.wsc0{word-spacing:23.442662pt;}
.ws163{word-spacing:23.464073pt;}
.wsb2{word-spacing:23.591595pt;}
.ws94{word-spacing:23.655356pt;}
.ws148{word-spacing:24.479812pt;}
.ws17d{word-spacing:24.484250pt;}
.ws173{word-spacing:24.611772pt;}
.ws189{word-spacing:24.994338pt;}
.ws121{word-spacing:25.021252pt;}
.wsc7{word-spacing:25.249382pt;}
.ws104{word-spacing:25.482266pt;}
.ws16d{word-spacing:25.504427pt;}
.ws165{word-spacing:25.514052pt;}
.wsbf{word-spacing:25.681376pt;}
.ws114{word-spacing:25.888452pt;}
.ws183{word-spacing:26.014515pt;}
.ws187{word-spacing:26.333321pt;}
.ws170{word-spacing:27.417259pt;}
.ws18c{word-spacing:27.608542pt;}
.wsb0{word-spacing:27.816559pt;}
.ws178{word-spacing:27.991108pt;}
.ws177{word-spacing:29.011285pt;}
.ws16c{word-spacing:29.266330pt;}
.ws156{word-spacing:29.530675pt;}
.ws190{word-spacing:30.286507pt;}
.ws149{word-spacing:30.628932pt;}
.ws16e{word-spacing:30.669073pt;}
.ws17c{word-spacing:30.732834pt;}
.ws182{word-spacing:31.242923pt;}
.wsf4{word-spacing:31.589786pt;}
.ws161{word-spacing:31.929412pt;}
.ws2a{word-spacing:31.958000pt;}
.ws186{word-spacing:32.263100pt;}
.wsf2{word-spacing:32.636612pt;}
.ws116{word-spacing:32.685252pt;}
.ws2b{word-spacing:33.170200pt;}
.ws13e{word-spacing:34.176009pt;}
.ws10f{word-spacing:34.373342pt;}
.ws18b{word-spacing:35.323631pt;}
.ws12b{word-spacing:36.643081pt;}
.ws15a{word-spacing:39.370675pt;}
.ws4d{word-spacing:74.600067pt;}
._35{margin-left:-32.173094pt;}
._2b{margin-left:-31.017766pt;}
._26{margin-left:-27.782037pt;}
._2c{margin-left:-26.566933pt;}
._3e{margin-left:-13.424640pt;}
._3d{margin-left:-12.111360pt;}
._9{margin-left:-8.595600pt;}
._18{margin-left:-5.228407pt;}
._7{margin-left:-3.737256pt;}
._a{margin-left:-2.786014pt;}
._2{margin-left:-1.882944pt;}
._0{margin-left:-0.895104pt;}
._1{width:1.215104pt;}
._e{width:2.159444pt;}
._5{width:3.119424pt;}
._1e{width:4.048723pt;}
._14{width:5.339535pt;}
._33{width:8.182834pt;}
._34{width:9.253432pt;}
._3{width:10.523392pt;}
._4{width:12.043584pt;}
._1a{width:14.605197pt;}
._25{width:15.810992pt;}
._13{width:17.322263pt;}
._1c{width:18.371947pt;}
._d{width:19.845207pt;}
._1f{width:21.559097pt;}
._f{width:23.358768pt;}
._b{width:24.552748pt;}
._12{width:25.897646pt;}
._10{width:26.996386pt;}
._17{width:28.729254pt;}
._c{width:29.905479pt;}
._1b{width:31.239279pt;}
._6{width:32.463360pt;}
._23{width:33.394131pt;}
._21{width:34.877303pt;}
._22{width:36.214339pt;}
._11{width:37.155564pt;}
._15{width:38.362154pt;}
._32{width:40.012062pt;}
._19{width:41.012729pt;}
._16{width:43.025610pt;}
._8{width:44.410600pt;}
._29{width:45.525743pt;}
._28{width:46.490250pt;}
._1d{width:48.106074pt;}
._31{width:49.827622pt;}
._2d{width:51.175037pt;}
._2e{width:52.125125pt;}
._30{width:53.150827pt;}
._24{width:54.200892pt;}
._39{width:55.497024pt;}
._3c{width:56.679945pt;}
._2f{width:59.294148pt;}
._3a{width:60.877305pt;}
._37{width:69.075244pt;}
._3b{width:70.222943pt;}
._36{width:80.406062pt;}
._38{width:83.297770pt;}
._2a{width:86.077200pt;}
._27{width:90.621866pt;}
._20{width:103.292400pt;}
.fs5{font-size:5.120000pt;}
.fs19{font-size:32.778496pt;}
.fs1c{font-size:33.915213pt;}
.fse{font-size:34.560000pt;}
.fs14{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs1a{font-size:39.679232pt;}
.fsa{font-size:40.320000pt;}
.fs1d{font-size:41.055258pt;}
.fs17{font-size:42.507200pt;}
.fsd{font-size:42.880000pt;}
.fs18{font-size:43.129600pt;}
.fs1f{font-size:43.461120pt;}
.fs1b{font-size:44.625280pt;}
.fs1e{font-size:46.209280pt;}
.fsf{font-size:48.000000pt;}
.fs21{font-size:53.120000pt;}
.fs12{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs13{font-size:58.181867pt;}
.fsb{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs15{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs20{font-size:73.379840pt;}
.fsc{font-size:74.880000pt;}
.fs11{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs16{font-size:91.815467pt;}
.fs10{font-size:110.200000pt;}
.fs8{font-size:138.880000pt;}
.fs6{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.ybb{bottom:-24.966647pt;}
.yba{bottom:-7.714807pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.200000pt;}
.y27{bottom:3.360000pt;}
.yd6{bottom:5.912850pt;}
.y24{bottom:9.120000pt;}
.y154{bottom:10.647974pt;}
.y113{bottom:11.090227pt;}
.y115{bottom:11.321274pt;}
.yc5{bottom:13.782243pt;}
.y17a{bottom:15.299697pt;}
.ycb{bottom:17.997933pt;}
.y15a{bottom:23.903616pt;}
.y14b{bottom:24.120922pt;}
.yd7{bottom:25.128588pt;}
.y110{bottom:25.415104pt;}
.y109{bottom:25.646150pt;}
.y150{bottom:37.593869pt;}
.y31{bottom:44.960000pt;}
.ybc{bottom:54.262967pt;}
.yc6{bottom:56.152583pt;}
.y5{bottom:59.133337pt;}
.y152{bottom:65.025079pt;}
.ycc{bottom:66.018546pt;}
.yd9{bottom:74.216303pt;}
.y2f{bottom:75.680000pt;}
.ybd{bottom:76.175392pt;}
.y15d{bottom:77.411498pt;}
.y151{bottom:78.498026pt;}
.y10a{bottom:78.984175pt;}
.y11b{bottom:81.294639pt;}
.y10e{bottom:82.449871pt;}
.y4{bottom:86.333337pt;}
.yc7{bottom:89.578023pt;}
.yd8{bottom:90.206099pt;}
.ycd{bottom:90.505330pt;}
.y47{bottom:95.044000pt;}
.y67{bottom:96.000000pt;}
.ybe{bottom:98.087816pt;}
.y46{bottom:113.120000pt;}
.yce{bottom:114.992114pt;}
.y2d{bottom:115.520000pt;}
.ybf{bottom:120.000241pt;}
.y21{bottom:123.790666pt;}
.y45{bottom:123.840000pt;}
.y111{bottom:132.586939pt;}
.y66{bottom:135.858667pt;}
.y186{bottom:138.637333pt;}
.y145{bottom:138.714667pt;}
.ycf{bottom:139.478897pt;}
.y1be{bottom:141.734667pt;}
.yc0{bottom:141.912665pt;}
.yb4{bottom:141.921333pt;}
.y16e{bottom:142.245333pt;}
.y84{bottom:147.120000pt;}
.ya0{bottom:147.132000pt;}
.y1ee{bottom:147.680000pt;}
.yec{bottom:149.493333pt;}
.y12d{bottom:150.398667pt;}
.y65{bottom:151.798667pt;}
.y127{bottom:153.442667pt;}
.y9b{bottom:154.592000pt;}
.y2b{bottom:155.360000pt;}
.y102{bottom:157.310667pt;}
.yb3{bottom:157.861333pt;}
.y16d{bottom:158.186667pt;}
.y1bd{bottom:160.996000pt;}
.y1ed{bottom:162.556000pt;}
.y83{bottom:163.060000pt;}
.yc1{bottom:163.825090pt;}
.yd0{bottom:163.965681pt;}
.yeb{bottom:165.433333pt;}
.y177{bottom:166.332000pt;}
.y12b{bottom:166.338667pt;}
.yb6{bottom:166.342667pt;}
.y64{bottom:167.738667pt;}
.y19f{bottom:168.890667pt;}
.y185{bottom:170.514667pt;}
.y144{bottom:170.592000pt;}
.y101{bottom:173.250667pt;}
.yb2{bottom:173.802667pt;}
.y15b{bottom:174.112490pt;}
.y16c{bottom:174.126667pt;}
.y18{bottom:175.052000pt;}
.y14c{bottom:175.199018pt;}
.y14e{bottom:176.285546pt;}
.y1ec{bottom:177.280000pt;}
.y82{bottom:179.000000pt;}
.y9f{bottom:179.009333pt;}
.y1bc{bottom:180.257333pt;}
.yea{bottom:181.373333pt;}
.y176{bottom:182.272000pt;}
.y12a{bottom:182.278667pt;}
.y63{bottom:183.680000pt;}
.y126{bottom:185.320000pt;}
.yc2{bottom:185.737515pt;}
.y119{bottom:185.958658pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y10c{bottom:186.420751pt;}
.y9a{bottom:186.469333pt;}
.y12c{bottom:187.100000pt;}
.yb5{bottom:187.102667pt;}
.y19e{bottom:188.152000pt;}
.yd1{bottom:188.452464pt;}
.y100{bottom:189.190667pt;}
.y16b{bottom:190.066667pt;}
.y1eb{bottom:191.832000pt;}
.y44{bottom:192.800000pt;}
.yb1{bottom:194.562667pt;}
.y81{bottom:194.940000pt;}
.y29{bottom:195.360000pt;}
.ye9{bottom:197.313333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y129{bottom:198.220000pt;}
.y62{bottom:199.620000pt;}
.y184{bottom:202.392000pt;}
.y143{bottom:202.469333pt;}
.y175{bottom:203.033333pt;}
.y16a{bottom:206.006667pt;}
.y1ea{bottom:206.556000pt;}
.yc3{bottom:207.649939pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yff{bottom:209.952000pt;}
.y80{bottom:210.881333pt;}
.y9e{bottom:210.886667pt;}
.y1bb{bottom:212.802667pt;}
.yd2{bottom:212.939248pt;}
.ye8{bottom:213.253333pt;}
.y174{bottom:214.153333pt;}
.y43{bottom:214.199680pt;}
.y61{bottom:215.560000pt;}
.yb0{bottom:218.346667pt;}
.y128{bottom:218.980000pt;}
.y60{bottom:220.380000pt;}
.y19d{bottom:220.697333pt;}
.y1ca{bottom:226.085333pt;}
.y169{bottom:226.768000pt;}
.y7f{bottom:226.821333pt;}
.y125{bottom:227.492000pt;}
.ydb{bottom:227.993333pt;}
.ye7{bottom:229.194667pt;}
.yc4{bottom:229.562364pt;}
.y173{bottom:230.093333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1ba{bottom:232.062667pt;}
.y42{bottom:232.761600pt;}
.yfe{bottom:233.734667pt;}
.y99{bottom:234.132000pt;}
.y183{bottom:234.269333pt;}
.y142{bottom:234.346667pt;}
.y1e9{bottom:236.305760pt;}
.yd3{bottom:237.426032pt;}
.y19c{bottom:239.957333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y9d{bottom:242.764000pt;}
.yda{bottom:243.934667pt;}
.ye6{bottom:245.134667pt;}
.y1c9{bottom:245.346667pt;}
.y7e{bottom:247.581333pt;}
.y157{bottom:249.082922pt;}
.yaf{bottom:250.222667pt;}
.y168{bottom:250.550667pt;}
.y172{bottom:250.853333pt;}
.y41{bottom:251.485440pt;}
.y1e8{bottom:252.308160pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yca{bottom:257.908000pt;}
.ye5{bottom:261.074667pt;}
.yd4{bottom:261.912815pt;}
.y171{bottom:261.973333pt;}
.y1b9{bottom:264.608000pt;}
.yfd{bottom:265.612000pt;}
.y182{bottom:266.146667pt;}
.y141{bottom:266.222667pt;}
.y40{bottom:270.209280pt;}
.y7d{bottom:271.365333pt;}
.y19b{bottom:272.502667pt;}
.y9c{bottom:274.640000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yd5{bottom:276.129060pt;}
.ye4{bottom:281.834667pt;}
.yae{bottom:282.100000pt;}
.y149{bottom:282.330679pt;}
.y167{bottom:282.428000pt;}
.y170{bottom:282.734667pt;}
.y1b8{bottom:283.869333pt;}
.y1e7{bottom:284.472320pt;}
.y117{bottom:284.846517pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y3f{bottom:288.771200pt;}
.y124{bottom:289.368000pt;}
.y19a{bottom:291.764000pt;}
.ye3{bottom:292.954667pt;}
.yfc{bottom:297.489333pt;}
.y181{bottom:298.024000pt;}
.y140{bottom:298.100000pt;}
.y107{bottom:299.171394pt;}
.y1b7{bottom:303.129333pt;}
.y148{bottom:303.192017pt;}
.y7c{bottom:303.242667pt;}
.y98{bottom:306.517333pt;}
.y3e{bottom:307.495040pt;}
.yf{bottom:309.452000pt;}
.ye2{bottom:313.716000pt;}
.yad{bottom:313.977333pt;}
.y166{bottom:314.305333pt;}
.y1c8{bottom:316.413333pt;}
.y123{bottom:321.245333pt;}
.y106{bottom:321.351848pt;}
.y1e6{bottom:323.674880pt;}
.y147{bottom:323.836049pt;}
.y199{bottom:324.308000pt;}
.ye1{bottom:324.836000pt;}
.y3d{bottom:326.218880pt;}
.yfb{bottom:329.366667pt;}
.y180{bottom:329.900000pt;}
.y13f{bottom:329.977333pt;}
.y5f{bottom:333.757333pt;}
.y7b{bottom:335.118667pt;}
.y1b6{bottom:335.674667pt;}
.y97{bottom:338.394667pt;}
.ye0{bottom:340.776000pt;}
.y105{bottom:343.301256pt;}
.y198{bottom:343.569333pt;}
.ye{bottom:343.809333pt;}
.y3c{bottom:344.780800pt;}
.yac{bottom:345.854667pt;}
.y165{bottom:346.182667pt;}
.y5e{bottom:351.822667pt;}
.y122{bottom:353.122667pt;}
.y1b5{bottom:354.936000pt;}
.yfa{bottom:361.244000pt;}
.ydf{bottom:361.536000pt;}
.y17f{bottom:361.777333pt;}
.y13e{bottom:361.854667pt;}
.y1e5{bottom:362.240000pt;}
.yd{bottom:362.706666pt;}
.y3b{bottom:363.504640pt;}
.y7a{bottom:366.996000pt;}
.y5d{bottom:369.889333pt;}
.y96{bottom:370.272000pt;}
.yde{bottom:372.656000pt;}
.y197{bottom:376.113333pt;}
.y1e4{bottom:377.437600pt;}
.yab{bottom:377.732000pt;}
.y164{bottom:378.058667pt;}
.y3a{bottom:382.228480pt;}
.y121{bottom:385.000000pt;}
.y1b4{bottom:387.480000pt;}
.ydd{bottom:388.596000pt;}
.yf9{bottom:393.120000pt;}
.y17e{bottom:393.654667pt;}
.y13d{bottom:393.732000pt;}
.y196{bottom:395.374667pt;}
.y79{bottom:398.873333pt;}
.y39{bottom:400.790400pt;}
.y95{bottom:402.149333pt;}
.y5c{bottom:406.020000pt;}
.y1b3{bottom:406.741333pt;}
.ydc{bottom:409.357333pt;}
.yaa{bottom:409.609333pt;}
.y163{bottom:409.936000pt;}
.y1e3{bottom:413.600000pt;}
.y120{bottom:416.876000pt;}
.y38{bottom:419.514240pt;}
.y5b{bottom:424.085333pt;}
.yf8{bottom:424.997333pt;}
.y17d{bottom:425.532000pt;}
.y13c{bottom:425.609333pt;}
.y195{bottom:427.920000pt;}
.y1e2{bottom:430.231520pt;}
.y78{bottom:430.750667pt;}
.y94{bottom:434.026667pt;}
.y16f{bottom:435.904000pt;}
.y37{bottom:438.238080pt;}
.y1c7{bottom:439.285333pt;}
.y1b2{bottom:439.286667pt;}
.ya9{bottom:441.485333pt;}
.y162{bottom:441.813333pt;}
.y5a{bottom:442.150667pt;}
.y1e1{bottom:446.233920pt;}
.yc{bottom:446.990669pt;}
.y194{bottom:447.181333pt;}
.y11f{bottom:448.753333pt;}
.y36{bottom:456.800000pt;}
.yf7{bottom:456.874667pt;}
.y187{bottom:457.270667pt;}
.y17c{bottom:457.409333pt;}
.y13b{bottom:457.485333pt;}
.y1b1{bottom:458.546667pt;}
.y59{bottom:460.216000pt;}
.y77{bottom:462.628000pt;}
.yb{bottom:462.990669pt;}
.y93{bottom:465.902667pt;}
.y193{bottom:466.441333pt;}
.ya8{bottom:473.362667pt;}
.y161{bottom:473.690667pt;}
.y1c6{bottom:477.808000pt;}
.y58{bottom:478.282667pt;}
.ya{bottom:478.990666pt;}
.y11e{bottom:480.630667pt;}
.yf6{bottom:488.752000pt;}
.y17b{bottom:489.285333pt;}
.y13a{bottom:489.362667pt;}
.y1b0{bottom:491.092000pt;}
.y1e0{bottom:491.200000pt;}
.y76{bottom:494.505333pt;}
.y9{bottom:494.990666pt;}
.y35{bottom:495.200000pt;}
.y57{bottom:496.348000pt;}
.y92{bottom:497.780000pt;}
.y192{bottom:498.986667pt;}
.y1df{bottom:505.120000pt;}
.ya7{bottom:505.240000pt;}
.y160{bottom:505.568000pt;}
.y1af{bottom:510.353333pt;}
.y11d{bottom:512.508000pt;}
.y56{bottom:514.413333pt;}
.y191{bottom:518.248000pt;}
.yf5{bottom:520.629333pt;}
.y139{bottom:521.240000pt;}
.y75{bottom:526.381333pt;}
.y1c5{bottom:529.613333pt;}
.y91{bottom:529.657333pt;}
.y55{bottom:532.478667pt;}
.y1de{bottom:532.480000pt;}
.ya6{bottom:537.117333pt;}
.y15f{bottom:537.445333pt;}
.y1ae{bottom:542.897333pt;}
.y11c{bottom:544.385333pt;}
.y179{bottom:549.061333pt;}
.y34{bottom:549.920000pt;}
.y54{bottom:550.544000pt;}
.y190{bottom:550.792000pt;}
.yf4{bottom:552.506667pt;}
.y138{bottom:553.117333pt;}
.y1dd{bottom:557.756960pt;}
.y74{bottom:558.258667pt;}
.yc9{bottom:558.793333pt;}
.y90{bottom:561.534667pt;}
.y1ad{bottom:562.158667pt;}
.y53{bottom:568.610667pt;}
.ya5{bottom:568.994667pt;}
.y15e{bottom:569.321333pt;}
.y18f{bottom:570.053333pt;}
.y8{bottom:573.786667pt;}
.yc8{bottom:574.734667pt;}
.y1c4{bottom:581.420000pt;}
.yf3{bottom:584.382667pt;}
.y137{bottom:584.994667pt;}
.y28{bottom:585.280000pt;}
.y52{bottom:586.676000pt;}
.yb9{bottom:588.708000pt;}
.y18e{bottom:589.314667pt;}
.y73{bottom:590.136000pt;}
.y7{bottom:592.685334pt;}
.y33{bottom:593.120000pt;}
.y8f{bottom:593.412000pt;}
.y1ac{bottom:594.702667pt;}
.ya4{bottom:600.872000pt;}
.y1dc{bottom:602.563680pt;}
.y104{bottom:604.161333pt;}
.y51{bottom:604.741333pt;}
.y1ab{bottom:613.964000pt;}
.yf2{bottom:616.260000pt;}
.y136{bottom:616.872000pt;}
.y18d{bottom:621.858667pt;}
.y72{bottom:622.013333pt;}
.y50{bottom:622.806667pt;}
.y8e{bottom:625.289333pt;}
.y1db{bottom:625.763840pt;}
.y146{bottom:629.097333pt;}
.ya3{bottom:632.748000pt;}
.y1c3{bottom:633.225333pt;}
.y4f{bottom:640.872000pt;}
.y18c{bottom:641.120000pt;}
.y6{bottom:645.598667pt;}
.y1aa{bottom:646.509333pt;}
.yf1{bottom:648.137333pt;}
.y135{bottom:648.748000pt;}
.y1da{bottom:649.123360pt;}
.y71{bottom:653.890667pt;}
.y8d{bottom:657.165333pt;}
.y4e{bottom:658.938667pt;}
.y30{bottom:660.960000pt;}
.ya2{bottom:664.625333pt;}
.y1a9{bottom:665.770667pt;}
.y3{bottom:668.977329pt;}
.y108{bottom:672.055281pt;}
.y1d9{bottom:672.482880pt;}
.y18b{bottom:673.665333pt;}
.y11a{bottom:674.365745pt;}
.y10d{bottom:675.289930pt;}
.yf0{bottom:680.014667pt;}
.y134{bottom:680.625333pt;}
.y14f{bottom:683.474438pt;}
.y1c2{bottom:685.030667pt;}
.y70{bottom:685.766667pt;}
.y4d{bottom:685.909333pt;}
.y8c{bottom:689.042667pt;}
.y18a{bottom:692.925333pt;}
.y1d8{bottom:695.683040pt;}
.y15c{bottom:696.078163pt;}
.y1a8{bottom:698.314667pt;}
.y2e{bottom:700.800000pt;}
.yef{bottom:711.892000pt;}
.ya1{bottom:712.288000pt;}
.y133{bottom:712.502667pt;}
.y1a7{bottom:717.576000pt;}
.y1d7{bottom:719.042560pt;}
.y8b{bottom:720.920000pt;}
.y189{bottom:725.470667pt;}
.y10f{bottom:725.658045pt;}
.y6f{bottom:733.429333pt;}
.y1c1{bottom:736.837333pt;}
.y2c{bottom:740.640000pt;}
.y1d6{bottom:742.402080pt;}
.y132{bottom:744.380000pt;}
.y153{bottom:748.448812pt;}
.y1a6{bottom:750.120000pt;}
.y8a{bottom:752.797333pt;}
.yee{bottom:759.553333pt;}
.y4c{bottom:761.924000pt;}
.y188{bottom:763.306667pt;}
.y1d5{bottom:765.602240pt;}
.y1a5{bottom:769.381333pt;}
.y131{bottom:776.257333pt;}
.y118{bottom:779.029764pt;}
.y10b{bottom:779.260810pt;}
.y2a{bottom:780.640000pt;}
.y2{bottom:781.661334pt;}
.y89{bottom:784.674667pt;}
.y1a4{bottom:788.642667pt;}
.y1d4{bottom:788.961760pt;}
.y159{bottom:792.779155pt;}
.y14a{bottom:793.648377pt;}
.y14d{bottom:794.734905pt;}
.y4a{bottom:799.104000pt;}
.y6e{bottom:805.816000pt;}
.y4b{bottom:806.045333pt;}
.yed{bottom:807.918667pt;}
.y130{bottom:808.133333pt;}
.y1d3{bottom:812.161920pt;}
.y88{bottom:816.552000pt;}
.y1a3{bottom:821.186667pt;}
.y6d{bottom:825.077333pt;}
.y1d2{bottom:835.521440pt;}
.y12f{bottom:840.010667pt;}
.y1a2{bottom:840.448000pt;}
.y49{bottom:846.426667pt;}
.y112{bottom:846.495313pt;}
.y114{bottom:846.957405pt;}
.y87{bottom:848.428000pt;}
.y6c{bottom:855.677333pt;}
.y1d1{bottom:858.880960pt;}
.y1{bottom:859.312000pt;}
.y1c0{bottom:859.709333pt;}
.yb8{bottom:865.133333pt;}
.y156{bottom:867.532281pt;}
.y26{bottom:868.800000pt;}
.y1a1{bottom:872.993333pt;}
.y6b{bottom:874.937333pt;}
.y155{bottom:875.572588pt;}
.y116{bottom:877.686577pt;}
.y48{bottom:879.634667pt;}
.y86{bottom:880.305333pt;}
.y1d0{bottom:882.081120pt;}
.y12e{bottom:882.182667pt;}
.yb7{bottom:884.394667pt;}
.y1a0{bottom:892.254667pt;}
.y25{bottom:895.040000pt;}
.y158{bottom:897.303148pt;}
.y1cf{bottom:905.440640pt;}
.y6a{bottom:905.537333pt;}
.y23{bottom:907.040000pt;}
.y1bf{bottom:911.514667pt;}
.y85{bottom:912.182667pt;}
.y69{bottom:924.798667pt;}
.y178{bottom:927.256000pt;}
.y1ce{bottom:928.800160pt;}
.y68{bottom:944.060000pt;}
.y103{bottom:946.517333pt;}
.y1cd{bottom:952.000320pt;}
.y1cc{bottom:975.359840pt;}
.y22{bottom:993.280000pt;}
.y1cb{bottom:998.560000pt;}
.h9{height:3.732500pt;}
.hc{height:12.000000pt;}
.h3f{height:20.861338pt;}
.h36{height:21.950371pt;}
.h37{height:22.180454pt;}
.h28{height:22.407175pt;}
.h2d{height:23.184228pt;}
.h24{height:25.142874pt;}
.h17{height:25.194375pt;}
.hd{height:26.240000pt;}
.h2a{height:27.124475pt;}
.h2f{height:28.065118pt;}
.h7{height:28.560000pt;}
.h16{height:28.579687pt;}
.h12{height:29.393437pt;}
.h3d{height:29.455095pt;}
.h27{height:29.946431pt;}
.h3a{height:30.176618pt;}
.h2c{height:30.984936pt;}
.h34{height:31.317618pt;}
.h31{height:32.084764pt;}
.h40{height:34.116979pt;}
.h3b{height:34.334285pt;}
.h3c{height:34.335190pt;}
.h18{height:34.992188pt;}
.h1f{height:35.333920pt;}
.h14{height:35.358667pt;}
.h35{height:36.273322pt;}
.h32{height:36.505331pt;}
.h33{height:36.506294pt;}
.h20{height:39.850400pt;}
.h1d{height:40.610943pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h13{height:42.923750pt;}
.h1e{height:43.636400pt;}
.h11{height:44.790000pt;}
.he{height:46.593750pt;}
.h3e{height:47.807232pt;}
.h21{height:47.820800pt;}
.h2{height:48.960000pt;}
.ha{height:49.120000pt;}
.h1c{height:50.477173pt;}
.h42{height:50.950260pt;}
.h4b{height:51.216000pt;}
.h4c{height:51.248000pt;}
.h23{height:51.870867pt;}
.h25{height:51.876201pt;}
.h38{height:53.559147pt;}
.h15{height:54.514687pt;}
.h45{height:56.679040pt;}
.h49{height:56.688640pt;}
.h48{height:56.712960pt;}
.h1b{height:57.384800pt;}
.h4a{height:57.582080pt;}
.h43{height:60.573013pt;}
.h47{height:62.824960pt;}
.h22{height:64.270827pt;}
.h46{height:68.288000pt;}
.h5{height:69.360000pt;}
.h1a{height:77.911400pt;}
.h10{height:101.108438pt;}
.h4{height:105.826671pt;}
.hb{height:139.781250pt;}
.h29{height:239.417801pt;}
.h2e{height:256.372234pt;}
.h26{height:257.362410pt;}
.hf{height:283.520000pt;}
.h2b{height:286.807604pt;}
.h39{height:298.359683pt;}
.h30{height:323.297451pt;}
.h41{height:359.133167pt;}
.h19{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h44{height:1122.720000pt;}
.wb{width:49.212883pt;}
.w16{width:54.978317pt;}
.w10{width:65.155085pt;}
.w14{width:73.403206pt;}
.w17{width:73.882999pt;}
.w13{width:73.883904pt;}
.wc{width:78.555776pt;}
.w12{width:79.316544pt;}
.w15{width:80.402167pt;}
.wf{width:83.639759pt;}
.we{width:91.264291pt;}
.wd{width:95.422163pt;}
.wa{width:384.010477pt;}
.w11{width:384.013492pt;}
.w18{width:384.039661pt;}
.w9{width:434.365741pt;}
.w7{width:435.862346pt;}
.w6{width:436.806525pt;}
.w8{width:436.808510pt;}
.w2{width:566.928019pt;}
.w4{width:690.078667pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1a{width:794.666667pt;}
.w19{width:794.720000pt;}
.w5{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:0.944179pt;}
.x68{left:6.038470pt;}
.x58{left:6.931392pt;}
.x5c{left:8.976923pt;}
.x39{left:11.266170pt;}
.x51{left:12.955277pt;}
.x3a{left:24.286637pt;}
.x53{left:25.450355pt;}
.x52{left:27.893124pt;}
.x1f{left:31.710769pt;}
.x56{left:36.933537pt;}
.x3b{left:41.824579pt;}
.x64{left:47.109228pt;}
.x21{left:56.361222pt;}
.x5a{left:63.272827pt;}
.x22{left:69.421764pt;}
.x67{left:71.882067pt;}
.x3c{left:78.106047pt;}
.x23{left:82.482305pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:96.000000pt;}
.x3d{left:103.538087pt;}
.x1b{left:109.284000pt;}
.x77{left:111.608000pt;}
.xc{left:113.600000pt;}
.xe{left:116.781333pt;}
.x14{left:119.910667pt;}
.x24{left:121.664019pt;}
.x7{left:123.360000pt;}
.x3e{left:128.970127pt;}
.x15{left:132.258667pt;}
.x13{left:135.020000pt;}
.x3f{left:141.686008pt;}
.xa{left:146.560000pt;}
.x25{left:147.785192pt;}
.x40{left:154.402074pt;}
.x1a{left:158.680000pt;}
.x66{left:159.890835pt;}
.x26{left:160.845733pt;}
.x8{left:163.840000pt;}
.x41{left:167.118048pt;}
.x27{left:173.906275pt;}
.x18{left:178.065333pt;}
.x42{left:179.834021pt;}
.x4{left:180.874667pt;}
.x16{left:182.552000pt;}
.x28{left:186.966906pt;}
.x1c{left:189.601513pt;}
.x20{left:190.545692pt;}
.x43{left:192.550088pt;}
.x29{left:200.027357pt;}
.xb{left:202.400000pt;}
.x44{left:205.266061pt;}
.x2a{left:213.087989pt;}
.x5b{left:215.444390pt;}
.x45{left:217.982035pt;}
.x19{left:221.401333pt;}
.x17{left:222.600000pt;}
.x2b{left:226.148530pt;}
.x46{left:230.698101pt;}
.x2c{left:239.209072pt;}
.x47{left:243.414075pt;}
.x55{left:251.145333pt;}
.x2d{left:252.269703pt;}
.x48{left:256.130048pt;}
.x2e{left:265.330244pt;}
.x63{left:267.664000pt;}
.x49{left:268.846022pt;}
.x59{left:269.740294pt;}
.x2f{left:278.390786pt;}
.x4a{left:281.562089pt;}
.x6d{left:282.668499pt;}
.x6f{left:284.189638pt;}
.x62{left:289.005160pt;}
.x30{left:291.451327pt;}
.x4b{left:294.278062pt;}
.x31{left:304.511958pt;}
.x4c{left:306.994036pt;}
.x32{left:317.572500pt;}
.x4d{left:319.710102pt;}
.x33{left:330.633131pt;}
.x4e{left:332.426076pt;}
.xf{left:341.409333pt;}
.x11{left:342.838667pt;}
.x4f{left:345.142142pt;}
.x5d{left:354.534323pt;}
.x34{left:356.754214pt;}
.x50{left:357.858116pt;}
.x69{left:362.424131pt;}
.x65{left:366.770243pt;}
.x35{left:369.814755pt;}
.x12{left:375.998667pt;}
.x57{left:379.949427pt;}
.x9{left:383.360000pt;}
.x36{left:395.935928pt;}
.x54{left:400.196000pt;}
.x3{left:404.408000pt;}
.x37{left:408.996559pt;}
.x5f{left:419.920454pt;}
.x38{left:422.057101pt;}
.x6b{left:434.569590pt;}
.x1d{left:438.062675pt;}
.x5{left:447.200000pt;}
.x72{left:449.640000pt;}
.x73{left:457.442667pt;}
.x10{left:474.590667pt;}
.x76{left:483.964000pt;}
.x5e{left:485.075539pt;}
.x6a{left:488.461379pt;}
.x6c{left:489.547907pt;}
.x6e{left:491.069046pt;}
.x61{left:495.472627pt;}
.x60{left:498.476230pt;}
.x74{left:516.509333pt;}
.x75{left:524.312000pt;}
.x70{left:642.146667pt;}
.x71{left:649.948000pt;}
.x6{left:685.920000pt;}
}




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