
    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_76404194060ea0c8b7d7dcc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_f8bee667dc36b445fffba56f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759766;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_fe284fe7ca8464328e4e4d16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048000;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_ba8bb16a6ee3daec38ddc3cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_8814774052ba8d4e85dba292.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_026116453fe79be4445c6eb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_d928cc3f5e6d9bf98fccd824.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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_95568b4db1cb9a28b9f20a0b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7244a45e91f0f5c28a051860.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8a3f7aaec626fd9bfb42fa19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.835938;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_3c7a1734c7f4c05ba83380f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.779297;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_35aabfeb8477f23ac35cdbdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7859c916713d289faf4949bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.822266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_319d0010f75b338f7255c6f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_47ba0fbead202b99c6eaa7a2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_edcd3c39ced86b349749a941.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_98779cb40c8573f57d64b629.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871094;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_4cc3fce976b258bfcee3a7fa.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.002930;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_fd393f06b158c50e85927f5e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002930;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_27a9ac78c7e25ded37014d9d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.856934;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_74b4e7c0f632bd3dd7cc2b85.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.002930;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_b7367f5195f11d60e89f291d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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_b70f282ec9b32b9586692bc2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.895996;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;}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v1{vertical-align:-7.632763px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:24.436800px;}
.ls4{letter-spacing:-25.778578px;}
.ls3{letter-spacing:-19.585958px;}
.ls2{letter-spacing:-2.880000px;}
.lseb{letter-spacing:-1.929312px;}
.ls44{letter-spacing:-1.920960px;}
.lse9{letter-spacing:-1.899072px;}
.ls66{letter-spacing:-1.874880px;}
.ls64{letter-spacing:-1.788480px;}
.ls5b{letter-spacing:-1.753920px;}
.lscc{letter-spacing:-1.729152px;}
.lsdc{letter-spacing:-1.656000px;}
.ls34{letter-spacing:-1.632960px;}
.lsf4{letter-spacing:-1.608768px;}
.lsee{letter-spacing:-1.596672px;}
.lsc2{letter-spacing:-1.542240px;}
.ls5a{letter-spacing:-1.512000px;}
.lsdf{letter-spacing:-1.483776px;}
.lsdd{letter-spacing:-1.417536px;}
.ls97{letter-spacing:-1.415232px;}
.lsfe{letter-spacing:-1.410912px;}
.lscd{letter-spacing:-1.368000px;}
.lsf2{letter-spacing:-1.330560px;}
.lsce{letter-spacing:-1.329696px;}
.lsc3{letter-spacing:-1.318464px;}
.lsf7{letter-spacing:-1.312416px;}
.ls98{letter-spacing:-1.304928px;}
.ls5d{letter-spacing:-1.270080px;}
.lsb9{letter-spacing:-1.197504px;}
.lsf9{letter-spacing:-1.173312px;}
.ls88{letter-spacing:-1.100736px;}
.lsa8{letter-spacing:-1.046304px;}
.ls59{letter-spacing:-1.028160px;}
.ls5c{letter-spacing:-0.993600px;}
.ls4a{letter-spacing:-0.927360px;}
.lsec{letter-spacing:-0.919296px;}
.ls4d{letter-spacing:-0.907200px;}
.ls86{letter-spacing:-0.889056px;}
.ls2e{letter-spacing:-0.861120px;}
.lse0{letter-spacing:-0.854496px;}
.ls65{letter-spacing:-0.846720px;}
.lsb8{letter-spacing:-0.840672px;}
.ls92{letter-spacing:-0.804384px;}
.ls6f{letter-spacing:-0.786240px;}
.lsaf{letter-spacing:-0.768384px;}
.ls4f{letter-spacing:-0.725760px;}
.lsc7{letter-spacing:-0.722304px;}
.lsa5{letter-spacing:-0.722016px;}
.ls93{letter-spacing:-0.719712px;}
.lsf6{letter-spacing:-0.713664px;}
.lsfc{letter-spacing:-0.677376px;}
.ls28{letter-spacing:-0.662400px;}
.lsef{letter-spacing:-0.653184px;}
.lscf{letter-spacing:-0.634752px;}
.ls6c{letter-spacing:-0.604800px;}
.ls2a{letter-spacing:-0.596160px;}
.ls7b{letter-spacing:-0.589536px;}
.ls8c{letter-spacing:-0.576288px;}
.lse7{letter-spacing:-0.574560px;}
.lsa2{letter-spacing:-0.556416px;}
.lse6{letter-spacing:-0.483552px;}
.ls78{letter-spacing:-0.476928px;}
.ls60{letter-spacing:-0.475200px;}
.lsde{letter-spacing:-0.470304px;}
.ls26{letter-spacing:-0.463680px;}
.ls96{letter-spacing:-0.459648px;}
.ls76{letter-spacing:-0.434304px;}
.ls9f{letter-spacing:-0.430560px;}
.ls32{letter-spacing:-0.423360px;}
.ls77{letter-spacing:-0.417312px;}
.ls85{letter-spacing:-0.399168px;}
.ls29{letter-spacing:-0.397440px;}
.lsd2{letter-spacing:-0.377568px;}
.lsf8{letter-spacing:-0.368928px;}
.ls7a{letter-spacing:-0.351072px;}
.lsfa{letter-spacing:-0.320544px;}
.lse1{letter-spacing:-0.302400px;}
.lsc5{letter-spacing:-0.290016px;}
.ls2d{letter-spacing:-0.264960px;}
.ls1e{letter-spacing:-0.260064px;}
.lsc9{letter-spacing:-0.251712px;}
.lsa3{letter-spacing:-0.245088px;}
.ls24{letter-spacing:-0.237600px;}
.ls82{letter-spacing:-0.218592px;}
.ls9c{letter-spacing:-0.193536px;}
.ls89{letter-spacing:-0.187488px;}
.ls33{letter-spacing:-0.181440px;}
.lsc{letter-spacing:-0.178848px;}
.ls7f{letter-spacing:-0.175392px;}
.ls9b{letter-spacing:-0.169344px;}
.ls6{letter-spacing:-0.165600px;}
.ls9{letter-spacing:-0.152352px;}
.ls10{letter-spacing:-0.145728px;}
.lsae{letter-spacing:-0.139104px;}
.lse{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.125856px;}
.ls4c{letter-spacing:-0.120960px;}
.ls7{letter-spacing:-0.112608px;}
.lsed{letter-spacing:-0.108864px;}
.ls5{letter-spacing:-0.105984px;}
.lsc8{letter-spacing:-0.103968px;}
.lsc1{letter-spacing:-0.102816px;}
.lsf{letter-spacing:-0.099360px;}
.ls11{letter-spacing:-0.092736px;}
.ls12{letter-spacing:-0.086112px;}
.lsa{letter-spacing:-0.079488px;}
.ls8{letter-spacing:-0.072864px;}
.ls90{letter-spacing:-0.072576px;}
.lsb{letter-spacing:-0.066240px;}
.ls81{letter-spacing:-0.046368px;}
.lsa7{letter-spacing:-0.042336px;}
.lsd3{letter-spacing:-0.039744px;}
.lsc6{letter-spacing:-0.038304px;}
.lsf5{letter-spacing:-0.036288px;}
.ls8d{letter-spacing:-0.033120px;}
.ls1{letter-spacing:0.000000px;}
.lsb6{letter-spacing:0.006624px;}
.ls17{letter-spacing:0.007200px;}
.ls83{letter-spacing:0.019872px;}
.ls91{letter-spacing:0.024192px;}
.lsdb{letter-spacing:0.033120px;}
.ls25{letter-spacing:0.047520px;}
.ls21{letter-spacing:0.052992px;}
.lsf1{letter-spacing:0.054432px;}
.ls2b{letter-spacing:0.066240px;}
.lsd0{letter-spacing:0.071136px;}
.ls35{letter-spacing:0.086112px;}
.lsd7{letter-spacing:0.089280px;}
.ls6d{letter-spacing:0.099360px;}
.lsea{letter-spacing:0.108864px;}
.lsd1{letter-spacing:0.109440px;}
.ls13{letter-spacing:0.112032px;}
.ls5e{letter-spacing:0.120960px;}
.lsd9{letter-spacing:0.127008px;}
.ls43{letter-spacing:0.132480px;}
.ls1d{letter-spacing:0.133056px;}
.lsfb{letter-spacing:0.136080px;}
.lsa4{letter-spacing:0.145728px;}
.lsb0{letter-spacing:0.152352px;}
.ls15{letter-spacing:0.154080px;}
.ls79{letter-spacing:0.158976px;}
.ls20{letter-spacing:0.190080px;}
.ls42{letter-spacing:0.198720px;}
.lsca{letter-spacing:0.202464px;}
.ls8b{letter-spacing:0.213120px;}
.ls8e{letter-spacing:0.217728px;}
.ls18{letter-spacing:0.218592px;}
.ls1c{letter-spacing:0.223344px;}
.ls84{letter-spacing:0.231840px;}
.ls14{letter-spacing:0.237600px;}
.ls58{letter-spacing:0.241920px;}
.ls16{letter-spacing:0.242352px;}
.ls53{letter-spacing:0.251712px;}
.ls1b{letter-spacing:0.266112px;}
.ls1a{letter-spacing:0.270864px;}
.lsd4{letter-spacing:0.272160px;}
.ls75{letter-spacing:0.278208px;}
.lsf3{letter-spacing:0.284256px;}
.ls9d{letter-spacing:0.298080px;}
.ls94{letter-spacing:0.311328px;}
.ls19{letter-spacing:0.313632px;}
.ls31{letter-spacing:0.331200px;}
.lsa0{letter-spacing:0.338688px;}
.ls80{letter-spacing:0.351072px;}
.ls5f{letter-spacing:0.380160px;}
.lscb{letter-spacing:0.388512px;}
.lsa6{letter-spacing:0.393120px;}
.lsd5{letter-spacing:0.394560px;}
.ls67{letter-spacing:0.397440px;}
.lsfd{letter-spacing:0.410688px;}
.ls9a{letter-spacing:0.411264px;}
.ls55{letter-spacing:0.427680px;}
.lsab{letter-spacing:0.430560px;}
.ls57{letter-spacing:0.447840px;}
.ls49{letter-spacing:0.463680px;}
.ls7e{letter-spacing:0.483552px;}
.lsac{letter-spacing:0.489888px;}
.lsb5{letter-spacing:0.490176px;}
.lsba{letter-spacing:0.492480px;}
.lsa1{letter-spacing:0.510048px;}
.lsc4{letter-spacing:0.520128px;}
.ls2f{letter-spacing:0.529920px;}
.ls74{letter-spacing:0.542880px;}
.ls4b{letter-spacing:0.544320px;}
.ls87{letter-spacing:0.550368px;}
.lsbd{letter-spacing:0.587520px;}
.lsb1{letter-spacing:0.589536px;}
.lsf0{letter-spacing:0.592704px;}
.lsbc{letter-spacing:0.593280px;}
.ls61{letter-spacing:0.596160px;}
.lsbb{letter-spacing:0.598752px;}
.ls6e{letter-spacing:0.604800px;}
.ls8f{letter-spacing:0.635040px;}
.lse3{letter-spacing:0.636480px;}
.lse8{letter-spacing:0.653184px;}
.ls2c{letter-spacing:0.662400px;}
.ls7c{letter-spacing:0.669024px;}
.ls7d{letter-spacing:0.695520px;}
.ls99{letter-spacing:0.719712px;}
.ls9e{letter-spacing:0.722016px;}
.ls23{letter-spacing:0.725760px;}
.ls27{letter-spacing:0.728640px;}
.ls73{letter-spacing:0.731520px;}
.lsb7{letter-spacing:0.781632px;}
.lsad{letter-spacing:0.786240px;}
.ls48{letter-spacing:0.794880px;}
.lsda{letter-spacing:0.798336px;}
.lsaa{letter-spacing:0.847872px;}
.ls3d{letter-spacing:0.861120px;}
.lsb2{letter-spacing:0.869760px;}
.ls95{letter-spacing:0.973728px;}
.ls51{letter-spacing:0.993600px;}
.ls30{letter-spacing:1.059840px;}
.lsa9{letter-spacing:1.225440px;}
.ls3f{letter-spacing:1.324800px;}
.ls8a{letter-spacing:1.330560px;}
.ls46{letter-spacing:1.391040px;}
.ls50{letter-spacing:1.523520px;}
.ls47{letter-spacing:1.589760px;}
.lse4{letter-spacing:2.171520px;}
.ls45{letter-spacing:2.185920px;}
.lsb3{letter-spacing:2.309760px;}
.ls22{letter-spacing:2.318400px;}
.lsd8{letter-spacing:3.749760px;}
.ls36{letter-spacing:3.775680px;}
.ls54{letter-spacing:4.374720px;}
.ls62{letter-spacing:5.166720px;}
.ls72{letter-spacing:5.189760px;}
.lse5{letter-spacing:6.491520px;}
.ls68{letter-spacing:6.624000px;}
.ls71{letter-spacing:6.629760px;}
.ls69{letter-spacing:7.922880px;}
.ls70{letter-spacing:8.069760px;}
.ls3e{letter-spacing:8.081280px;}
.ls63{letter-spacing:9.419328px;}
.ls6a{letter-spacing:9.425952px;}
.lsd6{letter-spacing:9.509760px;}
.ls3c{letter-spacing:9.538560px;}
.ls3b{letter-spacing:10.929600px;}
.lse2{letter-spacing:12.251520px;}
.ls37{letter-spacing:12.386880px;}
.lsbe{letter-spacing:12.389760px;}
.lsbf{letter-spacing:13.829760px;}
.ls4e{letter-spacing:13.844160px;}
.ls39{letter-spacing:15.301440px;}
.ls38{letter-spacing:16.692480px;}
.ls6b{letter-spacing:18.043776px;}
.ls3a{letter-spacing:18.149760px;}
.ls41{letter-spacing:19.607040px;}
.ls56{letter-spacing:23.912640px;}
.ls40{letter-spacing:26.760960px;}
.ls52{letter-spacing:36.711360px;}
.lsc0{letter-spacing:65.669760px;}
.lsb4{letter-spacing:196.709760px;}
.ls1f{letter-spacing:200.220624px;}
.ls0{letter-spacing:2920.179989px;}
.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;}
}
.ws10{word-spacing:-16.279200px;}
.wsf{word-spacing:-16.272000px;}
.wscb{word-spacing:-15.943968px;}
.ws13{word-spacing:-15.698880px;}
.wsea{word-spacing:-15.665760px;}
.wsd3{word-spacing:-15.639264px;}
.ws34{word-spacing:-15.632640px;}
.wsd7{word-spacing:-15.559776px;}
.wsad{word-spacing:-15.500160px;}
.wsd6{word-spacing:-15.460416px;}
.wsf5{word-spacing:-15.453792px;}
.ws100{word-spacing:-15.380928px;}
.wsbf{word-spacing:-15.367680px;}
.wseb{word-spacing:-15.321312px;}
.ws19{word-spacing:-15.301440px;}
.wsca{word-spacing:-15.281568px;}
.wscd{word-spacing:-15.268320px;}
.wsc4{word-spacing:-15.248448px;}
.ws33{word-spacing:-15.168960px;}
.wse8{word-spacing:-15.129216px;}
.wsd4{word-spacing:-15.122592px;}
.wsa1{word-spacing:-15.102720px;}
.wsec{word-spacing:-15.069600px;}
.wse9{word-spacing:-15.056352px;}
.ws16{word-spacing:-15.036480px;}
.wsc9{word-spacing:-14.990112px;}
.wsd8{word-spacing:-14.976864px;}
.ws7{word-spacing:-14.970240px;}
.wsed{word-spacing:-14.930496px;}
.wsc6{word-spacing:-14.923872px;}
.ws8{word-spacing:-14.904000px;}
.wscc{word-spacing:-14.890752px;}
.ws6{word-spacing:-14.857632px;}
.ws9{word-spacing:-14.837760px;}
.wsb{word-spacing:-14.817888px;}
.wsa{word-spacing:-14.804640px;}
.wsc7{word-spacing:-14.751648px;}
.wsd0{word-spacing:-14.725152px;}
.ws17{word-spacing:-14.705280px;}
.wsd5{word-spacing:-14.619168px;}
.ws14{word-spacing:-14.572800px;}
.ws15{word-spacing:-14.506560px;}
.wsf4{word-spacing:-14.466816px;}
.wsf1{word-spacing:-14.388192px;}
.wsd1{word-spacing:-14.380704px;}
.ws36{word-spacing:-14.374080px;}
.ws6c{word-spacing:-14.307840px;}
.wsdd{word-spacing:-14.303520px;}
.wsf9{word-spacing:-14.267232px;}
.ws0{word-spacing:-14.257426px;}
.ws82{word-spacing:-14.212800px;}
.wse0{word-spacing:-14.188608px;}
.wsd9{word-spacing:-14.158368px;}
.wsf6{word-spacing:-14.115744px;}
.ws18{word-spacing:-14.109120px;}
.wsfd{word-spacing:-14.079744px;}
.wsa9{word-spacing:-14.042880px;}
.wsdf{word-spacing:-13.910400px;}
.wsfe{word-spacing:-13.881600px;}
.wsfc{word-spacing:-13.795488px;}
.wsfb{word-spacing:-13.789440px;}
.wsf0{word-spacing:-13.692672px;}
.ws83{word-spacing:-13.668480px;}
.wsce{word-spacing:-13.595904px;}
.ws101{word-spacing:-13.559328px;}
.ws81{word-spacing:-13.547520px;}
.wsde{word-spacing:-13.499136px;}
.ws1a{word-spacing:-13.487040px;}
.wsc8{word-spacing:-13.480992px;}
.wsfa{word-spacing:-13.474944px;}
.wsf7{word-spacing:-13.366080px;}
.wscf{word-spacing:-13.269312px;}
.wsef{word-spacing:-13.245120px;}
.wsa2{word-spacing:-13.181760px;}
.wsf8{word-spacing:-13.112064px;}
.wsee{word-spacing:-13.063680px;}
.ws35{word-spacing:-13.049280px;}
.wsbe{word-spacing:-12.882240px;}
.wsf2{word-spacing:-12.864096px;}
.wsdc{word-spacing:-12.779424px;}
.wsd2{word-spacing:-12.622176px;}
.wse3{word-spacing:-12.569184px;}
.wse7{word-spacing:-12.476160px;}
.wsda{word-spacing:-12.470976px;}
.wse6{word-spacing:-12.437856px;}
.wse1{word-spacing:-12.366720px;}
.wsf3{word-spacing:-12.156480px;}
.wsdb{word-spacing:-12.126240px;}
.wse2{word-spacing:-12.115008px;}
.wse5{word-spacing:-12.076704px;}
.ws84{word-spacing:-11.119680px;}
.wsd{word-spacing:-11.005632px;}
.wse4{word-spacing:-10.998720px;}
.wse{word-spacing:-10.981872px;}
.wsc{word-spacing:-10.958112px;}
.ws85{word-spacing:-10.264320px;}
.wsc5{word-spacing:-9.262368px;}
.wsff{word-spacing:-8.922960px;}
.ws4e{word-spacing:-2.185920px;}
.ws61{word-spacing:-1.589760px;}
.ws71{word-spacing:-1.523520px;}
.ws54{word-spacing:-1.391040px;}
.ws20{word-spacing:-1.258560px;}
.wsb4{word-spacing:-1.126080px;}
.ws2f{word-spacing:-1.059840px;}
.ws7b{word-spacing:-0.993600px;}
.wsa3{word-spacing:-0.794880px;}
.ws5c{word-spacing:-0.728640px;}
.ws1d{word-spacing:-0.712800px;}
.ws79{word-spacing:-0.596160px;}
.ws6f{word-spacing:-0.544320px;}
.ws22{word-spacing:-0.529920px;}
.ws66{word-spacing:-0.463680px;}
.ws1b{word-spacing:-0.427680px;}
.wsab{word-spacing:-0.397440px;}
.ws21{word-spacing:-0.331200px;}
.ws1c{word-spacing:-0.237600px;}
.ws30{word-spacing:-0.198720px;}
.ws1e{word-spacing:-0.132480px;}
.wsb9{word-spacing:-0.120960px;}
.ws39{word-spacing:-0.066240px;}
.ws12{word-spacing:-0.060480px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.066240px;}
.ws9f{word-spacing:0.120960px;}
.ws69{word-spacing:0.181440px;}
.ws11{word-spacing:0.199584px;}
.ws2d{word-spacing:0.264960px;}
.ws42{word-spacing:0.397440px;}
.ws6e{word-spacing:0.423360px;}
.ws46{word-spacing:0.463680px;}
.ws25{word-spacing:0.596160px;}
.ws9e{word-spacing:0.604800px;}
.ws43{word-spacing:0.662400px;}
.ws4f{word-spacing:0.728640px;}
.ws7d{word-spacing:0.794880px;}
.ws6a{word-spacing:0.846720px;}
.ws74{word-spacing:0.861120px;}
.wsa0{word-spacing:0.907200px;}
.ws51{word-spacing:0.927360px;}
.ws87{word-spacing:1.028160px;}
.ws50{word-spacing:1.126080px;}
.ws31{word-spacing:1.149120px;}
.ws73{word-spacing:1.258560px;}
.ws7e{word-spacing:1.324800px;}
.ws6d{word-spacing:1.451520px;}
.ws5a{word-spacing:1.523520px;}
.ws6b{word-spacing:1.632960px;}
.ws9b{word-spacing:1.656000px;}
.ws92{word-spacing:1.753920px;}
.ws68{word-spacing:1.788480px;}
.ws9d{word-spacing:1.995840px;}
.ws32{word-spacing:2.358720px;}
.ws2b{word-spacing:2.384640px;}
.ws29{word-spacing:2.583360px;}
.wsaa{word-spacing:2.600640px;}
.ws28{word-spacing:2.715840px;}
.ws2a{word-spacing:2.782080px;}
.ws4{word-spacing:2.880000px;}
.ws63{word-spacing:2.980800px;}
.wsae{word-spacing:3.245760px;}
.ws64{word-spacing:3.643200px;}
.ws3a{word-spacing:3.841920px;}
.ws37{word-spacing:4.040640px;}
.ws38{word-spacing:4.173120px;}
.wsbb{word-spacing:4.371840px;}
.ws9c{word-spacing:4.438080px;}
.wsa8{word-spacing:4.636800px;}
.ws97{word-spacing:5.232960px;}
.ws98{word-spacing:5.431680px;}
.wsa4{word-spacing:5.564160px;}
.wsb3{word-spacing:6.491520px;}
.wsb8{word-spacing:6.592320px;}
.wsb2{word-spacing:6.690240px;}
.ws5e{word-spacing:6.888960px;}
.ws5f{word-spacing:7.286400px;}
.wsb7{word-spacing:7.378560px;}
.ws8e{word-spacing:8.043840px;}
.ws89{word-spacing:8.104320px;}
.ws47{word-spacing:8.147520px;}
.ws48{word-spacing:8.346240px;}
.ws53{word-spacing:8.478720px;}
.wsa6{word-spacing:8.544960px;}
.wsba{word-spacing:9.008640px;}
.wsa7{word-spacing:9.207360px;}
.ws2c{word-spacing:9.538560px;}
.ws4a{word-spacing:9.604800px;}
.ws2e{word-spacing:9.803520px;}
.ws78{word-spacing:10.002240px;}
.ws24{word-spacing:10.399680px;}
.ws62{word-spacing:10.863360px;}
.ws26{word-spacing:10.995840px;}
.ws27{word-spacing:11.194560px;}
.ws4b{word-spacing:11.327040px;}
.ws4c{word-spacing:11.525760px;}
.ws23{word-spacing:11.592000px;}
.ws3c{word-spacing:12.453120px;}
.ws3b{word-spacing:12.651840px;}
.ws96{word-spacing:12.784320px;}
.ws8c{word-spacing:13.789440px;}
.ws75{word-spacing:13.910400px;}
.ws70{word-spacing:14.109120px;}
.wsac{word-spacing:14.241600px;}
.wsb5{word-spacing:14.575680px;}
.ws3f{word-spacing:14.639040px;}
.ws5d{word-spacing:15.168960px;}
.wsb6{word-spacing:15.301440px;}
.ws44{word-spacing:15.367680px;}
.ws45{word-spacing:15.566400px;}
.ws3e{word-spacing:15.698880px;}
.ws7c{word-spacing:15.765120px;}
.ws3d{word-spacing:16.758720px;}
.ws49{word-spacing:16.957440px;}
.ws7a{word-spacing:17.288640px;}
.ws67{word-spacing:17.619840px;}
.ws41{word-spacing:18.149760px;}
.wsbd{word-spacing:18.216000px;}
.ws40{word-spacing:18.414720px;}
.ws52{word-spacing:18.547200px;}
.ws65{word-spacing:18.613440px;}
.wsbc{word-spacing:18.745920px;}
.ws57{word-spacing:19.673280px;}
.ws58{word-spacing:19.872000px;}
.wsc3{word-spacing:20.070720px;}
.wsc2{word-spacing:20.260800px;}
.wsc0{word-spacing:20.321280px;}
.wsc1{word-spacing:21.047040px;}
.ws80{word-spacing:21.064320px;}
.ws77{word-spacing:22.521600px;}
.ws76{word-spacing:22.720320px;}
.ws99{word-spacing:23.978880px;}
.ws4d{word-spacing:24.177600px;}
.ws72{word-spacing:25.436160px;}
.ws59{word-spacing:25.634880px;}
.ws56{word-spacing:26.628480px;}
.ws55{word-spacing:26.827200px;}
.ws7f{word-spacing:27.158400px;}
.wsb1{word-spacing:28.284480px;}
.wsaf{word-spacing:28.615680px;}
.wsb0{word-spacing:28.681920px;}
.ws9a{word-spacing:29.013120px;}
.wsa5{word-spacing:32.590080px;}
.ws60{word-spacing:35.504640px;}
.ws8f{word-spacing:36.348480px;}
.ws90{word-spacing:36.953280px;}
.ws91{word-spacing:38.283840px;}
.ws8b{word-spacing:48.323520px;}
.ws8a{word-spacing:49.291200px;}
.ws94{word-spacing:49.896000px;}
.ws5{word-spacing:52.565256px;}
.ws5b{word-spacing:52.793280px;}
.ws95{word-spacing:68.523840px;}
.ws86{word-spacing:75.781440px;}
.ws8d{word-spacing:90.115200px;}
.ws93{word-spacing:113.158080px;}
.ws88{word-spacing:251.415360px;}
.ws1{word-spacing:1267.902778px;}
.ws2{word-spacing:1365.971400px;}
._9{margin-left:-1373.321318px;}
._13{margin-left:-16.128288px;}
._3{margin-left:-10.369037px;}
._1c{margin-left:-4.868928px;}
._b{margin-left:-3.096000px;}
._a{margin-left:-1.159200px;}
._8{width:1.440144px;}
._2{width:2.880288px;}
._4{width:4.176418px;}
._1{width:5.328533px;}
._0{width:6.912691px;}
._6{width:7.920792px;}
._5{width:9.733286px;}
._d{width:10.831392px;}
._1b{width:11.908944px;}
._7{width:13.105310px;}
._19{width:15.151680px;}
._e{width:16.908336px;}
._f{width:18.812160px;}
._1a{width:20.897280px;}
._16{width:23.250240px;}
._10{width:24.280416px;}
._12{width:26.017488px;}
._17{width:27.109296px;}
._18{width:28.405584px;}
._11{width:34.826256px;}
._1f{width:42.500304px;}
._20{width:43.934256px;}
._15{width:48.864240px;}
._22{width:54.019872px;}
._21{width:65.603520px;}
._14{width:75.282768px;}
._1e{width:80.945280px;}
._c{width:200.220624px;}
._1d{width:849.029760px;}
.fca{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fc5{color:rgb(174,201,183);}
.fc4{color:rgb(121,144,134);}
.fc2{color:rgb(123,121,121);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(191,191,191);}
.fc6{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(231,246,236);}
.fc0{color:rgb(101,98,99);}
.fsd{font-size:30.240000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fse{font-size:54.720000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.fs9{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.014400px;}
.fs0{font-size:239.952000px;}
.y7{bottom:-175.653750px;}
.y0{bottom:0.000000px;}
.y24f{bottom:0.179970px;}
.y16f{bottom:0.180000px;}
.y36{bottom:1.560000px;}
.y250{bottom:1.619970px;}
.y16e{bottom:1.620000px;}
.y1ac{bottom:1.980000px;}
.y1fa{bottom:4.140000px;}
.y222{bottom:4.500000px;}
.y22e{bottom:6.300000px;}
.y1ea{bottom:7.740000px;}
.y22c{bottom:12.780000px;}
.yf6{bottom:20.160000px;}
.yfc{bottom:20.520000px;}
.yf5{bottom:22.320000px;}
.y1f9{bottom:22.500000px;}
.y22b{bottom:24.300000px;}
.y221{bottom:24.660000px;}
.y20d{bottom:27.180000px;}
.y1f8{bottom:40.860000px;}
.y22a{bottom:42.660000px;}
.y20c{bottom:43.740000px;}
.y220{bottom:44.820000px;}
.y34{bottom:56.520000px;}
.y6e{bottom:57.613680px;}
.y1f7{bottom:59.220000px;}
.y20b{bottom:60.300000px;}
.y229{bottom:61.020000px;}
.y21f{bottom:64.980000px;}
.y33{bottom:70.920000px;}
.y20a{bottom:76.860000px;}
.y1f6{bottom:77.580000px;}
.y6d{bottom:77.767200px;}
.y228{bottom:79.380000px;}
.y21e{bottom:85.140000px;}
.y32{bottom:85.680000px;}
.y252{bottom:89.640000px;}
.y198{bottom:90.000000px;}
.y183{bottom:90.360000px;}
.y1e5{bottom:92.520000px;}
.y209{bottom:93.060000px;}
.y168{bottom:94.680000px;}
.y1f5{bottom:95.940000px;}
.y235{bottom:97.200000px;}
.y69{bottom:99.000000px;}
.y203{bottom:99.720000px;}
.y31{bottom:100.440000px;}
.y227{bottom:102.780000px;}
.y21d{bottom:105.300000px;}
.y9{bottom:107.310000px;}
.y1b2{bottom:107.640000px;}
.y208{bottom:109.980000px;}
.y182{bottom:110.160000px;}
.yf3{bottom:110.164320px;}
.y1cd{bottom:110.520000px;}
.y1e4{bottom:112.680000px;}
.y1f4{bottom:114.300000px;}
.y30{bottom:114.480000px;}
.y141{bottom:116.730000px;}
.y234{bottom:117.360000px;}
.y202{bottom:118.080000px;}
.y21c{bottom:125.100000px;}
.y251{bottom:126.000000px;}
.y1b1{bottom:127.800000px;}
.y207{bottom:128.340000px;}
.y181{bottom:128.880000px;}
.y197{bottom:130.320000px;}
.y1cc{bottom:130.680000px;}
.y1f3{bottom:132.300000px;}
.y85{bottom:132.480000px;}
.y167{bottom:132.840000px;}
.yf2{bottom:133.920000px;}
.yca{bottom:134.716320px;}
.y233{bottom:137.520000px;}
.y2f{bottom:137.880000px;}
.y21b{bottom:145.260000px;}
.y24e{bottom:146.340030px;}
.y206{bottom:146.700000px;}
.yf1{bottom:147.240000px;}
.y180{bottom:147.600000px;}
.y1b0{bottom:147.960000px;}
.y196{bottom:150.120000px;}
.y1cb{bottom:150.840000px;}
.y1e3{bottom:153.000000px;}
.yaf{bottom:153.164880px;}
.y68{bottom:153.720000px;}
.y140{bottom:154.884240px;}
.y1f2{bottom:155.340000px;}
.y166{bottom:155.880000px;}
.yc9{bottom:157.751280px;}
.y2e{bottom:160.920000px;}
.y27f{bottom:161.640000px;}
.y232{bottom:164.520000px;}
.y205{bottom:165.060000px;}
.y21a{bottom:165.420000px;}
.y6{bottom:166.671450px;}
.y12a{bottom:167.046480px;}
.y1af{bottom:167.760000px;}
.y195{bottom:168.480000px;}
.y11d{bottom:169.953120px;}
.y1ca{bottom:171.000000px;}
.y1e2{bottom:173.160000px;}
.yae{bottom:176.199840px;}
.y13f{bottom:177.919200px;}
.y1f1{bottom:178.020000px;}
.yc8{bottom:181.150560px;}
.yf0{bottom:182.597040px;}
.y231{bottom:182.880000px;}
.y8{bottom:182.957550px;}
.y204{bottom:183.780000px;}
.y2d{bottom:183.960000px;}
.y219{bottom:185.580000px;}
.y194{bottom:186.840000px;}
.y1ae{bottom:187.560000px;}
.y129{bottom:190.445760px;}
.y1c9{bottom:191.160000px;}
.y11c{bottom:192.988080px;}
.y1e1{bottom:193.320000px;}
.y1f0{bottom:196.380000px;}
.yad{bottom:199.234800px;}
.y56{bottom:199.800000px;}
.y230{bottom:201.240000px;}
.yc7{bottom:204.185520px;}
.y193{bottom:205.380000px;}
.yef{bottom:205.632000px;}
.y218{bottom:205.740000px;}
.y1ad{bottom:206.280000px;}
.y2c{bottom:207.360000px;}
.y67{bottom:208.080000px;}
.y1c8{bottom:211.320000px;}
.y1e0{bottom:213.480000px;}
.y128{bottom:213.480720px;}
.y1ef{bottom:215.460000px;}
.y13e{bottom:216.073440px;}
.y11b{bottom:216.387360px;}
.y22f{bottom:219.600000px;}
.yac{bottom:222.634080px;}
.y1ab{bottom:225.540000px;}
.y217{bottom:225.900000px;}
.yc6{bottom:227.220480px;}
.yee{bottom:228.666960px;}
.y2b{bottom:230.400000px;}
.y1c7{bottom:231.120000px;}
.y1df{bottom:233.640000px;}
.y127{bottom:236.880000px;}
.y55{bottom:237.960000px;}
.y11a{bottom:239.422320px;}
.y22d{bottom:239.580000px;}
.yab{bottom:245.669040px;}
.y216{bottom:246.060000px;}
.y1c6{bottom:249.120000px;}
.yc5{bottom:250.619760px;}
.y2a{bottom:253.440000px;}
.y1de{bottom:253.800000px;}
.y13d{bottom:254.227680px;}
.y27e{bottom:261.720000px;}
.y119{bottom:262.457280px;}
.y66{bottom:262.800000px;}
.y215{bottom:266.220000px;}
.yed{bottom:266.821200px;}
.y1c5{bottom:267.840000px;}
.yaa{bottom:268.704000px;}
.yc4{bottom:273.654720px;}
.y1dd{bottom:273.960000px;}
.y126{bottom:274.314960px;}
.y54{bottom:276.120000px;}
.y29{bottom:276.840000px;}
.y27d{bottom:281.880000px;}
.yb1{bottom:285.480000px;}
.y1c4{bottom:286.380000px;}
.yec{bottom:290.220480px;}
.ya9{bottom:292.103280px;}
.y13c{bottom:292.381920px;}
.y125{bottom:295.195680px;}
.y53{bottom:296.280000px;}
.yc3{bottom:296.689680px;}
.y5{bottom:297.966750px;}
.y118{bottom:300.611520px;}
.y27c{bottom:302.040000px;}
.y1dc{bottom:305.280000px;}
.y214{bottom:306.540000px;}
.yeb{bottom:313.255440px;}
.y28{bottom:315.000000px;}
.ya8{bottom:315.138240px;}
.y124{bottom:316.439280px;}
.y52{bottom:316.440000px;}
.y65{bottom:317.520000px;}
.yb0{bottom:317.920320px;}
.yc2{bottom:320.088960px;}
.y27b{bottom:322.200000px;}
.y1db{bottom:325.080000px;}
.y213{bottom:326.700000px;}
.y13b{bottom:330.536160px;}
.y51{bottom:336.600000px;}
.y123{bottom:337.320000px;}
.y27{bottom:338.040000px;}
.ya7{bottom:338.537520px;}
.y117{bottom:338.765760px;}
.y201{bottom:340.920000px;}
.yc1{bottom:343.123920px;}
.y1da{bottom:343.440000px;}
.y27a{bottom:344.880000px;}
.y212{bottom:346.860000px;}
.yea{bottom:351.409680px;}
.y24d{bottom:356.400000px;}
.y50{bottom:356.760000px;}
.y200{bottom:361.080000px;}
.y1d9{bottom:361.440000px;}
.ya6{bottom:361.572480px;}
.y116{bottom:362.165040px;}
.yc0{bottom:366.158880px;}
.y211{bottom:367.020000px;}
.y279{bottom:367.560000px;}
.y13a{bottom:368.690400px;}
.y122{bottom:369.769680px;}
.y64{bottom:372.240000px;}
.y1ee{bottom:374.220000px;}
.ye9{bottom:374.444640px;}
.y26{bottom:376.200000px;}
.y24c{bottom:376.560000px;}
.y4f{bottom:376.920000px;}
.y1d8{bottom:380.160000px;}
.y1ff{bottom:381.240000px;}
.ya5{bottom:384.607440px;}
.y115{bottom:385.200000px;}
.y210{bottom:387.180000px;}
.ybf{bottom:389.558160px;}
.y278{bottom:390.600000px;}
.y1ed{bottom:394.380000px;}
.y24b{bottom:396.720000px;}
.y4e{bottom:397.080000px;}
.ye8{bottom:397.843920px;}
.y1d7{bottom:398.880000px;}
.y25{bottom:399.240000px;}
.y1fe{bottom:401.400000px;}
.y139{bottom:406.844640px;}
.y20f{bottom:407.340000px;}
.ya4{bottom:408.006720px;}
.y226{bottom:410.580000px;}
.ybe{bottom:412.593120px;}
.y277{bottom:413.280000px;}
.y1ec{bottom:414.180000px;}
.y24a{bottom:416.520000px;}
.y4d{bottom:417.240000px;}
.ye7{bottom:420.878880px;}
.y1fd{bottom:421.560000px;}
.y114{bottom:422.636400px;}
.y63{bottom:426.960000px;}
.y20e{bottom:427.500000px;}
.ya3{bottom:431.041680px;}
.y276{bottom:431.640000px;}
.y1eb{bottom:434.340000px;}
.y165{bottom:434.880000px;}
.y249{bottom:436.680000px;}
.y24{bottom:437.400000px;}
.y1fc{bottom:441.360000px;}
.y113{bottom:443.880000px;}
.ye6{bottom:443.913840px;}
.y138{bottom:444.998880px;}
.ybd{bottom:450.747360px;}
.ya2{bottom:454.076640px;}
.y275{bottom:454.320000px;}
.y164{bottom:455.040000px;}
.y248{bottom:456.840000px;}
.y4c{bottom:457.560000px;}
.y23{bottom:460.800000px;}
.y1fb{bottom:461.520000px;}
.ye5{bottom:467.313120px;}
.y274{bottom:472.680000px;}
.ybc{bottom:473.782320px;}
.y163{bottom:475.200000px;}
.y112{bottom:476.300160px;}
.y247{bottom:477.000000px;}
.ya1{bottom:477.475920px;}
.y4b{bottom:477.720000px;}
.y1e9{bottom:477.900000px;}
.y62{bottom:481.680000px;}
.y137{bottom:483.153120px;}
.y22{bottom:483.840000px;}
.y273{bottom:491.040000px;}
.y162{bottom:495.360000px;}
.y246{bottom:497.160000px;}
.y4a{bottom:497.880000px;}
.ya0{bottom:500.510880px;}
.y17f{bottom:501.840000px;}
.ye4{bottom:505.467360px;}
.y21{bottom:506.880000px;}
.y1aa{bottom:507.240000px;}
.ybb{bottom:511.936560px;}
.y272{bottom:513.720000px;}
.y161{bottom:515.520000px;}
.y245{bottom:517.320000px;}
.y49{bottom:518.040000px;}
.y136{bottom:521.307360px;}
.y17e{bottom:522.000000px;}
.y9f{bottom:523.545840px;}
.y1a9{bottom:527.400000px;}
.ye3{bottom:528.502320px;}
.y20{bottom:530.280000px;}
.y271{bottom:532.080000px;}
.yba{bottom:535.335840px;}
.y160{bottom:535.680000px;}
.y61{bottom:536.400000px;}
.y244{bottom:537.480000px;}
.y48{bottom:537.840000px;}
.y17d{bottom:542.160000px;}
.y135{bottom:544.706640px;}
.y9e{bottom:546.945120px;}
.y1a8{bottom:547.560000px;}
.y270{bottom:550.440000px;}
.ye2{bottom:551.901600px;}
.y84{bottom:552.627360px;}
.y15f{bottom:553.320000px;}
.y243{bottom:557.640000px;}
.y47{bottom:558.000000px;}
.yb9{bottom:558.370800px;}
.y17c{bottom:562.320000px;}
.y15e{bottom:564.840000px;}
.y1a7{bottom:567.720000px;}
.y134{bottom:567.741600px;}
.y1f{bottom:568.440000px;}
.y9d{bottom:569.980080px;}
.y26f{bottom:573.120000px;}
.ye1{bottom:574.936560px;}
.y83{bottom:575.662320px;}
.y242{bottom:577.800000px;}
.y46{bottom:578.160000px;}
.y192{bottom:580.320000px;}
.yb8{bottom:581.405760px;}
.y17b{bottom:582.480000px;}
.y15d{bottom:585.000000px;}
.y1c3{bottom:589.320000px;}
.y133{bottom:590.776560px;}
.y60{bottom:591.120000px;}
.y26e{bottom:591.480000px;}
.y1a6{bottom:592.200000px;}
.y9c{bottom:593.015040px;}
.y241{bottom:597.960000px;}
.y45{bottom:598.320000px;}
.y82{bottom:598.697280px;}
.y191{bottom:600.480000px;}
.y17a{bottom:602.640000px;}
.yb7{bottom:604.805040px;}
.y15c{bottom:605.160000px;}
.y1e{bottom:606.600000px;}
.y1c2{bottom:609.480000px;}
.y111{bottom:609.575040px;}
.y1a5{bottom:612.360000px;}
.ye0{bottom:613.090800px;}
.y132{bottom:614.175840px;}
.y26d{bottom:614.520000px;}
.y9b{bottom:616.414320px;}
.y240{bottom:618.120000px;}
.y44{bottom:618.480000px;}
.y190{bottom:620.640000px;}
.y81{bottom:622.096560px;}
.y179{bottom:622.800000px;}
.y15b{bottom:625.320000px;}
.yb6{bottom:627.840000px;}
.y1c1{bottom:629.640000px;}
.y1a4{bottom:632.520000px;}
.y110{bottom:632.610000px;}
.ydf{bottom:636.125760px;}
.y26c{bottom:637.200000px;}
.y131{bottom:637.210800px;}
.y23f{bottom:638.280000px;}
.y43{bottom:638.640000px;}
.y9a{bottom:639.449280px;}
.y18f{bottom:640.800000px;}
.y178{bottom:642.960000px;}
.y1d{bottom:644.760000px;}
.y80{bottom:645.131520px;}
.y5f{bottom:645.480000px;}
.y1c0{bottom:649.800000px;}
.y121{bottom:651.289680px;}
.y1a3{bottom:652.680000px;}
.y26b{bottom:655.560000px;}
.y10f{bottom:655.644960px;}
.y23e{bottom:658.440000px;}
.y42{bottom:658.800000px;}
.yde{bottom:659.525040px;}
.y130{bottom:660.245760px;}
.y18e{bottom:660.960000px;}
.y99{bottom:662.484240px;}
.y177{bottom:663.120000px;}
.y15a{bottom:665.640000px;}
.yb5{bottom:666.005760px;}
.y1bf{bottom:669.960000px;}
.y1a2{bottom:672.840000px;}
.y26a{bottom:673.560000px;}
.y23d{bottom:678.600000px;}
.y10e{bottom:679.044240px;}
.y18d{bottom:680.760000px;}
.y41{bottom:681.840000px;}
.ydd{bottom:682.570800px;}
.y1c{bottom:682.920000px;}
.y176{bottom:683.280000px;}
.y7f{bottom:683.285760px;}
.y12f{bottom:683.645040px;}
.y159{bottom:685.800000px;}
.y98{bottom:685.883520px;}
.y1be{bottom:690.120000px;}
.y269{bottom:692.280000px;}
.y1a1{bottom:693.000000px;}
.y1d6{bottom:694.080000px;}
.y23c{bottom:698.760000px;}
.y18c{bottom:699.120000px;}
.y5e{bottom:700.200000px;}
.y10d{bottom:702.079200px;}
.y175{bottom:703.440000px;}
.yb4{bottom:704.160000px;}
.y40{bottom:705.240000px;}
.ydc{bottom:705.605760px;}
.y158{bottom:705.960000px;}
.y12e{bottom:706.680000px;}
.y97{bottom:708.918480px;}
.y1bd{bottom:710.280000px;}
.y1a0{bottom:713.160000px;}
.y225{bottom:713.880000px;}
.y1d5{bottom:714.240000px;}
.y268{bottom:714.960000px;}
.y18b{bottom:717.480000px;}
.y23b{bottom:718.920000px;}
.y1b{bottom:721.080000px;}
.y7e{bottom:721.440000px;}
.y174{bottom:723.600000px;}
.y10c{bottom:725.114160px;}
.y157{bottom:726.120000px;}
.y3f{bottom:728.280000px;}
.y1bc{bottom:730.080000px;}
.y96{bottom:731.953440px;}
.y19f{bottom:732.960000px;}
.y224{bottom:733.680000px;}
.y1d4{bottom:734.400000px;}
.y18a{bottom:736.020000px;}
.y23a{bottom:739.080000px;}
.yb3{bottom:741.600000px;}
.y7d{bottom:741.618720px;}
.ydb{bottom:743.760000px;}
.y12d{bottom:744.116400px;}
.y173{bottom:745.920000px;}
.y156{bottom:746.280000px;}
.y1bb{bottom:748.440000px;}
.y10b{bottom:748.513440px;}
.y19e{bottom:751.320000px;}
.y223{bottom:752.040000px;}
.y1d3{bottom:754.560000px;}
.y5d{bottom:754.920000px;}
.y95{bottom:755.352720px;}
.y172{bottom:757.080000px;}
.y1a{bottom:759.240000px;}
.y7c{bottom:761.772240px;}
.y12c{bottom:765.360000px;}
.y155{bottom:766.440000px;}
.y1ba{bottom:766.980000px;}
.y3e{bottom:767.160000px;}
.y19d{bottom:769.680000px;}
.y267{bottom:770.040000px;}
.y10a{bottom:771.548400px;}
.yfd{bottom:772.200000px;}
.yb2{bottom:774.015840px;}
.y1d2{bottom:774.720000px;}
.y171{bottom:775.080000px;}
.y94{bottom:778.387680px;}
.y239{bottom:779.400000px;}
.yda{bottom:781.169040px;}
.y7b{bottom:781.925760px;}
.y154{bottom:786.600000px;}
.y19c{bottom:788.220000px;}
.y266{bottom:792.720000px;}
.y170{bottom:793.800000px;}
.y1d1{bottom:794.520000px;}
.y109{bottom:794.583360px;}
.y19{bottom:797.400000px;}
.y12b{bottom:797.779440px;}
.y238{bottom:798.840000px;}
.y93{bottom:801.422640px;}
.yd9{bottom:802.412640px;}
.y7a{bottom:804.960720px;}
.y153{bottom:806.760000px;}
.y3d{bottom:809.640000px;}
.y265{bottom:810.720000px;}
.y16d{bottom:812.340000px;}
.y1d0{bottom:812.880000px;}
.y237{bottom:817.560000px;}
.y108{bottom:817.982640px;}
.yfb{bottom:819.000000px;}
.yd8{bottom:823.293360px;}
.y92{bottom:824.821920px;}
.y152{bottom:826.560000px;}
.y79{bottom:828.360000px;}
.y264{bottom:829.080000px;}
.y1cf{bottom:831.240000px;}
.y18{bottom:835.560000px;}
.y236{bottom:836.100000px;}
.y151{bottom:846.720000px;}
.y263{bottom:847.440000px;}
.y91{bottom:847.856880px;}
.y3c{bottom:848.520000px;}
.y78{bottom:848.568960px;}
.y1ce{bottom:849.780000px;}
.y107{bottom:856.136880px;}
.yd7{bottom:859.656960px;}
.yf{bottom:861.086400px;}
.y5c{bottom:864.360000px;}
.y262{bottom:865.800000px;}
.yfa{bottom:866.160000px;}
.y150{bottom:866.880000px;}
.y77{bottom:868.722480px;}
.y90{bottom:870.891840px;}
.y17{bottom:873.720000px;}
.ye{bottom:879.086400px;}
.y106{bottom:879.171840px;}
.yd6{bottom:880.537680px;}
.y14f{bottom:887.040000px;}
.y261{bottom:888.480000px;}
.y76{bottom:888.528240px;}
.y8f{bottom:894.291120px;}
.yd{bottom:897.086400px;}
.y3b{bottom:899.640000px;}
.yd5{bottom:901.781280px;}
.y105{bottom:902.206800px;}
.y260{bottom:906.840000px;}
.y14e{bottom:907.200000px;}
.y16{bottom:911.880000px;}
.yf9{bottom:912.960000px;}
.y8e{bottom:917.326080px;}
.y5b{bottom:919.080000px;}
.yd4{bottom:922.662000px;}
.y25f{bottom:925.200000px;}
.y104{bottom:925.606080px;}
.y75{bottom:926.682480px;}
.y14d{bottom:927.360000px;}
.y3a{bottom:932.400000px;}
.y1e8{bottom:933.120000px;}
.yc{bottom:940.286100px;}
.y14c{bottom:947.520000px;}
.y25e{bottom:947.880000px;}
.y103{bottom:948.641040px;}
.y15{bottom:950.040000px;}
.y1e7{bottom:953.280000px;}
.y8d{bottom:955.480320px;}
.y4{bottom:957.690150px;}
.yb{bottom:958.286100px;}
.yd3{bottom:958.662720px;}
.yf8{bottom:959.760000px;}
.y120{bottom:963.760320px;}
.y74{bottom:964.836720px;}
.y25d{bottom:966.600000px;}
.y14b{bottom:967.680000px;}
.y102{bottom:971.676000px;}
.y39{bottom:972.720000px;}
.y1e6{bottom:973.440000px;}
.y5a{bottom:973.800000px;}
.ya{bottom:976.286100px;}
.y8c{bottom:978.515280px;}
.yd2{bottom:979.906320px;}
.y11f{bottom:986.795280px;}
.y14a{bottom:987.840000px;}
.y14{bottom:988.200000px;}
.y25c{bottom:989.280000px;}
.y19b{bottom:993.600000px;}
.y101{bottom:995.075280px;}
.yd1{bottom:1000.787040px;}
.y8b{bottom:1001.914560px;}
.y73{bottom:1002.990960px;}
.yf7{bottom:1006.560000px;}
.y25b{bottom:1007.640000px;}
.y149{bottom:1008.000000px;}
.y11e{bottom:1009.830240px;}
.y19a{bottom:1013.760000px;}
.y38{bottom:1015.200000px;}
.yd0{bottom:1022.030640px;}
.y8a{bottom:1024.949520px;}
.y13{bottom:1026.360000px;}
.y59{bottom:1028.160000px;}
.y25a{bottom:1030.320000px;}
.y100{bottom:1033.229520px;}
.y199{bottom:1033.920000px;}
.y72{bottom:1041.145200px;}
.ycf{bottom:1042.911360px;}
.y1b9{bottom:1042.920000px;}
.y3{bottom:1044.090300px;}
.y89{bottom:1047.984480px;}
.y148{bottom:1048.320000px;}
.y259{bottom:1048.680000px;}
.y37{bottom:1053.360000px;}
.y189{bottom:1054.080000px;}
.yff{bottom:1056.264480px;}
.y1b8{bottom:1063.080000px;}
.y12{bottom:1064.520000px;}
.y71{bottom:1064.544480px;}
.y35{bottom:1068.000000px;}
.y147{bottom:1068.480000px;}
.y258{bottom:1071.360000px;}
.y88{bottom:1071.383760px;}
.y188{bottom:1074.240000px;}
.y2{bottom:1076.490300px;}
.yce{bottom:1078.912080px;}
.yfe{bottom:1079.299440px;}
.y58{bottom:1082.880000px;}
.y1b7{bottom:1083.240000px;}
.y146{bottom:1088.640000px;}
.y257{bottom:1089.720000px;}
.y187{bottom:1094.400000px;}
.y87{bottom:1094.418720px;}
.ycd{bottom:1100.155680px;}
.yf4{bottom:1100.160000px;}
.y11{bottom:1102.680000px;}
.y70{bottom:1102.698720px;}
.y1b6{bottom:1103.400000px;}
.y145{bottom:1108.800000px;}
.y256{bottom:1112.400000px;}
.y186{bottom:1114.560000px;}
.y86{bottom:1117.453680px;}
.ycc{bottom:1121.036400px;}
.y1b5{bottom:1123.560000px;}
.y16c{bottom:1130.040000px;}
.y255{bottom:1131.120000px;}
.y185{bottom:1134.720000px;}
.y10{bottom:1140.840000px;}
.y6f{bottom:1140.852960px;}
.ycb{bottom:1142.280000px;}
.y1b4{bottom:1143.720000px;}
.y144{bottom:1145.160000px;}
.y57{bottom:1149.840000px;}
.y16b{bottom:1150.200000px;}
.y254{bottom:1153.800000px;}
.y184{bottom:1154.880000px;}
.y1b3{bottom:1163.880000px;}
.y6c{bottom:1164.600000px;}
.y143{bottom:1169.640000px;}
.y253{bottom:1171.800000px;}
.y16a{bottom:1175.040000px;}
.y6b{bottom:1183.685040px;}
.y1{bottom:1187.725350px;}
.y142{bottom:1191.240000px;}
.y169{bottom:1195.200000px;}
.y6a{bottom:1198.440000px;}
.h21{height:24.939141px;}
.h1a{height:31.678500px;}
.h1c{height:31.680000px;}
.h1d{height:32.040000px;}
.h18{height:32.064609px;}
.h15{height:32.925234px;}
.hd{height:34.503047px;}
.h19{height:38.160000px;}
.h1b{height:39.190078px;}
.h31{height:43.410938px;}
.h13{height:45.022500px;}
.h12{height:45.054844px;}
.h2c{height:45.127969px;}
.hc{height:45.410625px;}
.hf{height:47.545313px;}
.h11{height:47.988281px;}
.h9{height:49.620000px;}
.h16{height:49.878281px;}
.hb{height:54.628594px;}
.h17{height:58.876566px;}
.h20{height:58.919766px;}
.h10{height:59.378906px;}
.h8{height:59.544000px;}
.h1f{height:68.879531px;}
.h2{height:71.982422px;}
.h14{height:79.660547px;}
.h3{height:95.976562px;}
.h5{height:104.906250px;}
.h7{height:104.912541px;}
.h4{height:104.916741px;}
.h6{height:104.922741px;}
.he{height:111.000000px;}
.h2e{height:171.000000px;}
.h1{height:174.808781px;}
.h2f{height:193.320000px;}
.h25{height:200.880000px;}
.h30{height:205.559970px;}
.h27{height:271.440000px;}
.h2d{height:275.040000px;}
.h26{height:276.480000px;}
.h29{height:280.440000px;}
.h28{height:298.440000px;}
.h22{height:313.200000px;}
.h23{height:313.560000px;}
.h24{height:370.440000px;}
.h2b{height:443.160000px;}
.h2a{height:450.000000px;}
.h32{height:1262.835000px;}
.ha{height:1262.880000px;}
.h0{height:1263.000000px;}
.h1e{height:1296.000000px;}
.w6{width:23.760000px;}
.w8{width:24.118500px;}
.w5{width:24.120000px;}
.w7{width:24.840000px;}
.w9{width:25.200000px;}
.w3{width:101.160000px;}
.w26{width:132.120000px;}
.w24{width:191.880000px;}
.wf{width:220.320000px;}
.w11{width:223.560000px;}
.w12{width:232.200000px;}
.w13{width:265.320000px;}
.w1f{width:284.400000px;}
.w21{width:289.440000px;}
.w23{width:297.720000px;}
.w4{width:305.640000px;}
.wb{width:308.160000px;}
.w1c{width:343.080000px;}
.w19{width:349.200000px;}
.w14{width:349.920000px;}
.w17{width:358.560000px;}
.wd{width:360.000000px;}
.w1b{width:360.360000px;}
.w1a{width:360.720000px;}
.we{width:361.080000px;}
.w16{width:361.800000px;}
.w15{width:368.640000px;}
.w18{width:371.880000px;}
.w1d{width:378.000000px;}
.w22{width:383.040000px;}
.w20{width:391.320000px;}
.w25{width:397.080000px;}
.wc{width:423.720000px;}
.w1e{width:434.880000px;}
.w10{width:486.720000px;}
.w2{width:724.500000px;}
.wa{width:891.000000px;}
.w0{width:892.500000px;}
.w1{width:892.800000px;}
.w27{width:892.920000px;}
.w28{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:5.760000px;}
.x1d{left:8.640000px;}
.x67{left:10.620000px;}
.x2c{left:11.880000px;}
.x64{left:22.140000px;}
.x1a{left:33.480000px;}
.x66{left:52.740000px;}
.x1{left:80.853450px;}
.xd{left:84.959856px;}
.x3d{left:88.920000px;}
.x39{left:92.880000px;}
.x5a{left:94.320000px;}
.x6{left:95.998200px;}
.x45{left:99.180000px;}
.x57{left:100.440000px;}
.x40{left:103.320000px;}
.x4e{left:106.920000px;}
.x72{left:118.980000px;}
.x74{left:120.960000px;}
.x54{left:122.040000px;}
.x31{left:124.560000px;}
.xc{left:127.439928px;}
.x5b{left:132.840000px;}
.x1c{left:136.080000px;}
.x11{left:138.134772px;}
.x58{left:139.320000px;}
.x1e{left:152.280000px;}
.x36{left:155.160000px;}
.xe{left:157.559676px;}
.x52{left:170.640000px;}
.x20{left:177.840000px;}
.x37{left:184.680000px;}
.x2{left:186.373500px;}
.x6d{left:193.680000px;}
.x68{left:195.660000px;}
.x3e{left:199.440000px;}
.x75{left:201.960000px;}
.x21{left:203.040000px;}
.x2e{left:208.782720px;}
.x46{left:212.220000px;}
.x51{left:214.920000px;}
.x4a{left:216.540000px;}
.x55{left:222.120000px;}
.x4b{left:225.180000px;}
.xf{left:227.102076px;}
.x1b{left:229.320000px;}
.x5e{left:232.920000px;}
.x49{left:237.240000px;}
.x5d{left:242.640000px;}
.x22{left:254.520000px;}
.x4d{left:258.300000px;}
.x70{left:262.980000px;}
.x3{left:267.643500px;}
.x44{left:270.000000px;}
.x62{left:276.120000px;}
.x73{left:278.640000px;}
.x23{left:280.080000px;}
.x10{left:281.976552px;}
.x6c{left:287.100000px;}
.x6e{left:301.320000px;}
.x24{left:305.640000px;}
.x43{left:309.240000px;}
.x47{left:319.500000px;}
.xb{left:329.835150px;}
.x25{left:330.840000px;}
.x8{left:332.978100px;}
.x41{left:334.440000px;}
.x19{left:343.440000px;}
.x38{left:346.320000px;}
.x6f{left:351.900000px;}
.x4f{left:354.060000px;}
.x26{left:356.400000px;}
.x59{left:359.100000px;}
.x60{left:360.180000px;}
.x6a{left:364.500000px;}
.x33{left:370.440000px;}
.x50{left:373.140000px;}
.x9{left:378.458100px;}
.x27{left:381.960000px;}
.x63{left:389.700000px;}
.x3b{left:393.300000px;}
.x3a{left:397.980000px;}
.x42{left:399.060000px;}
.xa{left:403.269300px;}
.x7{left:404.457300px;}
.x28{left:407.520000px;}
.x3c{left:424.620000px;}
.x5f{left:429.660000px;}
.x29{left:433.080000px;}
.x32{left:437.040000px;}
.x34{left:445.320000px;}
.x53{left:446.940000px;}
.x56{left:457.020000px;}
.x2a{left:458.640000px;}
.x6b{left:467.820000px;}
.x48{left:475.020000px;}
.x69{left:476.100000px;}
.x2b{left:484.200000px;}
.x13{left:493.194240px;}
.x4{left:509.134350px;}
.x65{left:521.460000px;}
.x4c{left:540.900000px;}
.x18{left:550.800000px;}
.x35{left:618.480000px;}
.x5c{left:635.760000px;}
.x3f{left:651.600000px;}
.x16{left:672.110640px;}
.x71{left:674.100000px;}
.x12{left:708.840000px;}
.x17{left:719.637840px;}
.x2d{left:721.790640px;}
.x30{left:748.800000px;}
.x15{left:757.080000px;}
.x14{left:765.360000px;}
.x2f{left:767.131920px;}
.x61{left:800.640000px;}
.x5{left:862.416450px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v1{vertical-align:-6.784678pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:21.721600pt;}
.ls4{letter-spacing:-22.914291pt;}
.ls3{letter-spacing:-17.409741pt;}
.ls2{letter-spacing:-2.560000pt;}
.lseb{letter-spacing:-1.714944pt;}
.ls44{letter-spacing:-1.707520pt;}
.lse9{letter-spacing:-1.688064pt;}
.ls66{letter-spacing:-1.666560pt;}
.ls64{letter-spacing:-1.589760pt;}
.ls5b{letter-spacing:-1.559040pt;}
.lscc{letter-spacing:-1.537024pt;}
.lsdc{letter-spacing:-1.472000pt;}
.ls34{letter-spacing:-1.451520pt;}
.lsf4{letter-spacing:-1.430016pt;}
.lsee{letter-spacing:-1.419264pt;}
.lsc2{letter-spacing:-1.370880pt;}
.ls5a{letter-spacing:-1.344000pt;}
.lsdf{letter-spacing:-1.318912pt;}
.lsdd{letter-spacing:-1.260032pt;}
.ls97{letter-spacing:-1.257984pt;}
.lsfe{letter-spacing:-1.254144pt;}
.lscd{letter-spacing:-1.216000pt;}
.lsf2{letter-spacing:-1.182720pt;}
.lsce{letter-spacing:-1.181952pt;}
.lsc3{letter-spacing:-1.171968pt;}
.lsf7{letter-spacing:-1.166592pt;}
.ls98{letter-spacing:-1.159936pt;}
.ls5d{letter-spacing:-1.128960pt;}
.lsb9{letter-spacing:-1.064448pt;}
.lsf9{letter-spacing:-1.042944pt;}
.ls88{letter-spacing:-0.978432pt;}
.lsa8{letter-spacing:-0.930048pt;}
.ls59{letter-spacing:-0.913920pt;}
.ls5c{letter-spacing:-0.883200pt;}
.ls4a{letter-spacing:-0.824320pt;}
.lsec{letter-spacing:-0.817152pt;}
.ls4d{letter-spacing:-0.806400pt;}
.ls86{letter-spacing:-0.790272pt;}
.ls2e{letter-spacing:-0.765440pt;}
.lse0{letter-spacing:-0.759552pt;}
.ls65{letter-spacing:-0.752640pt;}
.lsb8{letter-spacing:-0.747264pt;}
.ls92{letter-spacing:-0.715008pt;}
.ls6f{letter-spacing:-0.698880pt;}
.lsaf{letter-spacing:-0.683008pt;}
.ls4f{letter-spacing:-0.645120pt;}
.lsc7{letter-spacing:-0.642048pt;}
.lsa5{letter-spacing:-0.641792pt;}
.ls93{letter-spacing:-0.639744pt;}
.lsf6{letter-spacing:-0.634368pt;}
.lsfc{letter-spacing:-0.602112pt;}
.ls28{letter-spacing:-0.588800pt;}
.lsef{letter-spacing:-0.580608pt;}
.lscf{letter-spacing:-0.564224pt;}
.ls6c{letter-spacing:-0.537600pt;}
.ls2a{letter-spacing:-0.529920pt;}
.ls7b{letter-spacing:-0.524032pt;}
.ls8c{letter-spacing:-0.512256pt;}
.lse7{letter-spacing:-0.510720pt;}
.lsa2{letter-spacing:-0.494592pt;}
.lse6{letter-spacing:-0.429824pt;}
.ls78{letter-spacing:-0.423936pt;}
.ls60{letter-spacing:-0.422400pt;}
.lsde{letter-spacing:-0.418048pt;}
.ls26{letter-spacing:-0.412160pt;}
.ls96{letter-spacing:-0.408576pt;}
.ls76{letter-spacing:-0.386048pt;}
.ls9f{letter-spacing:-0.382720pt;}
.ls32{letter-spacing:-0.376320pt;}
.ls77{letter-spacing:-0.370944pt;}
.ls85{letter-spacing:-0.354816pt;}
.ls29{letter-spacing:-0.353280pt;}
.lsd2{letter-spacing:-0.335616pt;}
.lsf8{letter-spacing:-0.327936pt;}
.ls7a{letter-spacing:-0.312064pt;}
.lsfa{letter-spacing:-0.284928pt;}
.lse1{letter-spacing:-0.268800pt;}
.lsc5{letter-spacing:-0.257792pt;}
.ls2d{letter-spacing:-0.235520pt;}
.ls1e{letter-spacing:-0.231168pt;}
.lsc9{letter-spacing:-0.223744pt;}
.lsa3{letter-spacing:-0.217856pt;}
.ls24{letter-spacing:-0.211200pt;}
.ls82{letter-spacing:-0.194304pt;}
.ls9c{letter-spacing:-0.172032pt;}
.ls89{letter-spacing:-0.166656pt;}
.ls33{letter-spacing:-0.161280pt;}
.lsc{letter-spacing:-0.158976pt;}
.ls7f{letter-spacing:-0.155904pt;}
.ls9b{letter-spacing:-0.150528pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls9{letter-spacing:-0.135424pt;}
.ls10{letter-spacing:-0.129536pt;}
.lsae{letter-spacing:-0.123648pt;}
.lse{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.111872pt;}
.ls4c{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:-0.100096pt;}
.lsed{letter-spacing:-0.096768pt;}
.ls5{letter-spacing:-0.094208pt;}
.lsc8{letter-spacing:-0.092416pt;}
.lsc1{letter-spacing:-0.091392pt;}
.lsf{letter-spacing:-0.088320pt;}
.ls11{letter-spacing:-0.082432pt;}
.ls12{letter-spacing:-0.076544pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:-0.064768pt;}
.ls90{letter-spacing:-0.064512pt;}
.lsb{letter-spacing:-0.058880pt;}
.ls81{letter-spacing:-0.041216pt;}
.lsa7{letter-spacing:-0.037632pt;}
.lsd3{letter-spacing:-0.035328pt;}
.lsc6{letter-spacing:-0.034048pt;}
.lsf5{letter-spacing:-0.032256pt;}
.ls8d{letter-spacing:-0.029440pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb6{letter-spacing:0.005888pt;}
.ls17{letter-spacing:0.006400pt;}
.ls83{letter-spacing:0.017664pt;}
.ls91{letter-spacing:0.021504pt;}
.lsdb{letter-spacing:0.029440pt;}
.ls25{letter-spacing:0.042240pt;}
.ls21{letter-spacing:0.047104pt;}
.lsf1{letter-spacing:0.048384pt;}
.ls2b{letter-spacing:0.058880pt;}
.lsd0{letter-spacing:0.063232pt;}
.ls35{letter-spacing:0.076544pt;}
.lsd7{letter-spacing:0.079360pt;}
.ls6d{letter-spacing:0.088320pt;}
.lsea{letter-spacing:0.096768pt;}
.lsd1{letter-spacing:0.097280pt;}
.ls13{letter-spacing:0.099584pt;}
.ls5e{letter-spacing:0.107520pt;}
.lsd9{letter-spacing:0.112896pt;}
.ls43{letter-spacing:0.117760pt;}
.ls1d{letter-spacing:0.118272pt;}
.lsfb{letter-spacing:0.120960pt;}
.lsa4{letter-spacing:0.129536pt;}
.lsb0{letter-spacing:0.135424pt;}
.ls15{letter-spacing:0.136960pt;}
.ls79{letter-spacing:0.141312pt;}
.ls20{letter-spacing:0.168960pt;}
.ls42{letter-spacing:0.176640pt;}
.lsca{letter-spacing:0.179968pt;}
.ls8b{letter-spacing:0.189440pt;}
.ls8e{letter-spacing:0.193536pt;}
.ls18{letter-spacing:0.194304pt;}
.ls1c{letter-spacing:0.198528pt;}
.ls84{letter-spacing:0.206080pt;}
.ls14{letter-spacing:0.211200pt;}
.ls58{letter-spacing:0.215040pt;}
.ls16{letter-spacing:0.215424pt;}
.ls53{letter-spacing:0.223744pt;}
.ls1b{letter-spacing:0.236544pt;}
.ls1a{letter-spacing:0.240768pt;}
.lsd4{letter-spacing:0.241920pt;}
.ls75{letter-spacing:0.247296pt;}
.lsf3{letter-spacing:0.252672pt;}
.ls9d{letter-spacing:0.264960pt;}
.ls94{letter-spacing:0.276736pt;}
.ls19{letter-spacing:0.278784pt;}
.ls31{letter-spacing:0.294400pt;}
.lsa0{letter-spacing:0.301056pt;}
.ls80{letter-spacing:0.312064pt;}
.ls5f{letter-spacing:0.337920pt;}
.lscb{letter-spacing:0.345344pt;}
.lsa6{letter-spacing:0.349440pt;}
.lsd5{letter-spacing:0.350720pt;}
.ls67{letter-spacing:0.353280pt;}
.lsfd{letter-spacing:0.365056pt;}
.ls9a{letter-spacing:0.365568pt;}
.ls55{letter-spacing:0.380160pt;}
.lsab{letter-spacing:0.382720pt;}
.ls57{letter-spacing:0.398080pt;}
.ls49{letter-spacing:0.412160pt;}
.ls7e{letter-spacing:0.429824pt;}
.lsac{letter-spacing:0.435456pt;}
.lsb5{letter-spacing:0.435712pt;}
.lsba{letter-spacing:0.437760pt;}
.lsa1{letter-spacing:0.453376pt;}
.lsc4{letter-spacing:0.462336pt;}
.ls2f{letter-spacing:0.471040pt;}
.ls74{letter-spacing:0.482560pt;}
.ls4b{letter-spacing:0.483840pt;}
.ls87{letter-spacing:0.489216pt;}
.lsbd{letter-spacing:0.522240pt;}
.lsb1{letter-spacing:0.524032pt;}
.lsf0{letter-spacing:0.526848pt;}
.lsbc{letter-spacing:0.527360pt;}
.ls61{letter-spacing:0.529920pt;}
.lsbb{letter-spacing:0.532224pt;}
.ls6e{letter-spacing:0.537600pt;}
.ls8f{letter-spacing:0.564480pt;}
.lse3{letter-spacing:0.565760pt;}
.lse8{letter-spacing:0.580608pt;}
.ls2c{letter-spacing:0.588800pt;}
.ls7c{letter-spacing:0.594688pt;}
.ls7d{letter-spacing:0.618240pt;}
.ls99{letter-spacing:0.639744pt;}
.ls9e{letter-spacing:0.641792pt;}
.ls23{letter-spacing:0.645120pt;}
.ls27{letter-spacing:0.647680pt;}
.ls73{letter-spacing:0.650240pt;}
.lsb7{letter-spacing:0.694784pt;}
.lsad{letter-spacing:0.698880pt;}
.ls48{letter-spacing:0.706560pt;}
.lsda{letter-spacing:0.709632pt;}
.lsaa{letter-spacing:0.753664pt;}
.ls3d{letter-spacing:0.765440pt;}
.lsb2{letter-spacing:0.773120pt;}
.ls95{letter-spacing:0.865536pt;}
.ls51{letter-spacing:0.883200pt;}
.ls30{letter-spacing:0.942080pt;}
.lsa9{letter-spacing:1.089280pt;}
.ls3f{letter-spacing:1.177600pt;}
.ls8a{letter-spacing:1.182720pt;}
.ls46{letter-spacing:1.236480pt;}
.ls50{letter-spacing:1.354240pt;}
.ls47{letter-spacing:1.413120pt;}
.lse4{letter-spacing:1.930240pt;}
.ls45{letter-spacing:1.943040pt;}
.lsb3{letter-spacing:2.053120pt;}
.ls22{letter-spacing:2.060800pt;}
.lsd8{letter-spacing:3.333120pt;}
.ls36{letter-spacing:3.356160pt;}
.ls54{letter-spacing:3.888640pt;}
.ls62{letter-spacing:4.592640pt;}
.ls72{letter-spacing:4.613120pt;}
.lse5{letter-spacing:5.770240pt;}
.ls68{letter-spacing:5.888000pt;}
.ls71{letter-spacing:5.893120pt;}
.ls69{letter-spacing:7.042560pt;}
.ls70{letter-spacing:7.173120pt;}
.ls3e{letter-spacing:7.183360pt;}
.ls63{letter-spacing:8.372736pt;}
.ls6a{letter-spacing:8.378624pt;}
.lsd6{letter-spacing:8.453120pt;}
.ls3c{letter-spacing:8.478720pt;}
.ls3b{letter-spacing:9.715200pt;}
.lse2{letter-spacing:10.890240pt;}
.ls37{letter-spacing:11.010560pt;}
.lsbe{letter-spacing:11.013120pt;}
.lsbf{letter-spacing:12.293120pt;}
.ls4e{letter-spacing:12.305920pt;}
.ls39{letter-spacing:13.601280pt;}
.ls38{letter-spacing:14.837760pt;}
.ls6b{letter-spacing:16.038912pt;}
.ls3a{letter-spacing:16.133120pt;}
.ls41{letter-spacing:17.428480pt;}
.ls56{letter-spacing:21.255680pt;}
.ls40{letter-spacing:23.787520pt;}
.ls52{letter-spacing:32.632320pt;}
.lsc0{letter-spacing:58.373120pt;}
.lsb4{letter-spacing:174.853120pt;}
.ls1f{letter-spacing:177.973888pt;}
.ls0{letter-spacing:2595.715546pt;}
.ws10{word-spacing:-14.470400pt;}
.wsf{word-spacing:-14.464000pt;}
.wscb{word-spacing:-14.172416pt;}
.ws13{word-spacing:-13.954560pt;}
.wsea{word-spacing:-13.925120pt;}
.wsd3{word-spacing:-13.901568pt;}
.ws34{word-spacing:-13.895680pt;}
.wsd7{word-spacing:-13.830912pt;}
.wsad{word-spacing:-13.777920pt;}
.wsd6{word-spacing:-13.742592pt;}
.wsf5{word-spacing:-13.736704pt;}
.ws100{word-spacing:-13.671936pt;}
.wsbf{word-spacing:-13.660160pt;}
.wseb{word-spacing:-13.618944pt;}
.ws19{word-spacing:-13.601280pt;}
.wsca{word-spacing:-13.583616pt;}
.wscd{word-spacing:-13.571840pt;}
.wsc4{word-spacing:-13.554176pt;}
.ws33{word-spacing:-13.483520pt;}
.wse8{word-spacing:-13.448192pt;}
.wsd4{word-spacing:-13.442304pt;}
.wsa1{word-spacing:-13.424640pt;}
.wsec{word-spacing:-13.395200pt;}
.wse9{word-spacing:-13.383424pt;}
.ws16{word-spacing:-13.365760pt;}
.wsc9{word-spacing:-13.324544pt;}
.wsd8{word-spacing:-13.312768pt;}
.ws7{word-spacing:-13.306880pt;}
.wsed{word-spacing:-13.271552pt;}
.wsc6{word-spacing:-13.265664pt;}
.ws8{word-spacing:-13.248000pt;}
.wscc{word-spacing:-13.236224pt;}
.ws6{word-spacing:-13.206784pt;}
.ws9{word-spacing:-13.189120pt;}
.wsb{word-spacing:-13.171456pt;}
.wsa{word-spacing:-13.159680pt;}
.wsc7{word-spacing:-13.112576pt;}
.wsd0{word-spacing:-13.089024pt;}
.ws17{word-spacing:-13.071360pt;}
.wsd5{word-spacing:-12.994816pt;}
.ws14{word-spacing:-12.953600pt;}
.ws15{word-spacing:-12.894720pt;}
.wsf4{word-spacing:-12.859392pt;}
.wsf1{word-spacing:-12.789504pt;}
.wsd1{word-spacing:-12.782848pt;}
.ws36{word-spacing:-12.776960pt;}
.ws6c{word-spacing:-12.718080pt;}
.wsdd{word-spacing:-12.714240pt;}
.wsf9{word-spacing:-12.681984pt;}
.ws0{word-spacing:-12.673267pt;}
.ws82{word-spacing:-12.633600pt;}
.wse0{word-spacing:-12.612096pt;}
.wsd9{word-spacing:-12.585216pt;}
.wsf6{word-spacing:-12.547328pt;}
.ws18{word-spacing:-12.541440pt;}
.wsfd{word-spacing:-12.515328pt;}
.wsa9{word-spacing:-12.482560pt;}
.wsdf{word-spacing:-12.364800pt;}
.wsfe{word-spacing:-12.339200pt;}
.wsfc{word-spacing:-12.262656pt;}
.wsfb{word-spacing:-12.257280pt;}
.wsf0{word-spacing:-12.171264pt;}
.ws83{word-spacing:-12.149760pt;}
.wsce{word-spacing:-12.085248pt;}
.ws101{word-spacing:-12.052736pt;}
.ws81{word-spacing:-12.042240pt;}
.wsde{word-spacing:-11.999232pt;}
.ws1a{word-spacing:-11.988480pt;}
.wsc8{word-spacing:-11.983104pt;}
.wsfa{word-spacing:-11.977728pt;}
.wsf7{word-spacing:-11.880960pt;}
.wscf{word-spacing:-11.794944pt;}
.wsef{word-spacing:-11.773440pt;}
.wsa2{word-spacing:-11.717120pt;}
.wsf8{word-spacing:-11.655168pt;}
.wsee{word-spacing:-11.612160pt;}
.ws35{word-spacing:-11.599360pt;}
.wsbe{word-spacing:-11.450880pt;}
.wsf2{word-spacing:-11.434752pt;}
.wsdc{word-spacing:-11.359488pt;}
.wsd2{word-spacing:-11.219712pt;}
.wse3{word-spacing:-11.172608pt;}
.wse7{word-spacing:-11.089920pt;}
.wsda{word-spacing:-11.085312pt;}
.wse6{word-spacing:-11.055872pt;}
.wse1{word-spacing:-10.992640pt;}
.wsf3{word-spacing:-10.805760pt;}
.wsdb{word-spacing:-10.778880pt;}
.wse2{word-spacing:-10.768896pt;}
.wse5{word-spacing:-10.734848pt;}
.ws84{word-spacing:-9.884160pt;}
.wsd{word-spacing:-9.782784pt;}
.wse4{word-spacing:-9.776640pt;}
.wse{word-spacing:-9.761664pt;}
.wsc{word-spacing:-9.740544pt;}
.ws85{word-spacing:-9.123840pt;}
.wsc5{word-spacing:-8.233216pt;}
.wsff{word-spacing:-7.931520pt;}
.ws4e{word-spacing:-1.943040pt;}
.ws61{word-spacing:-1.413120pt;}
.ws71{word-spacing:-1.354240pt;}
.ws54{word-spacing:-1.236480pt;}
.ws20{word-spacing:-1.118720pt;}
.wsb4{word-spacing:-1.000960pt;}
.ws2f{word-spacing:-0.942080pt;}
.ws7b{word-spacing:-0.883200pt;}
.wsa3{word-spacing:-0.706560pt;}
.ws5c{word-spacing:-0.647680pt;}
.ws1d{word-spacing:-0.633600pt;}
.ws79{word-spacing:-0.529920pt;}
.ws6f{word-spacing:-0.483840pt;}
.ws22{word-spacing:-0.471040pt;}
.ws66{word-spacing:-0.412160pt;}
.ws1b{word-spacing:-0.380160pt;}
.wsab{word-spacing:-0.353280pt;}
.ws21{word-spacing:-0.294400pt;}
.ws1c{word-spacing:-0.211200pt;}
.ws30{word-spacing:-0.176640pt;}
.ws1e{word-spacing:-0.117760pt;}
.wsb9{word-spacing:-0.107520pt;}
.ws39{word-spacing:-0.058880pt;}
.ws12{word-spacing:-0.053760pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.058880pt;}
.ws9f{word-spacing:0.107520pt;}
.ws69{word-spacing:0.161280pt;}
.ws11{word-spacing:0.177408pt;}
.ws2d{word-spacing:0.235520pt;}
.ws42{word-spacing:0.353280pt;}
.ws6e{word-spacing:0.376320pt;}
.ws46{word-spacing:0.412160pt;}
.ws25{word-spacing:0.529920pt;}
.ws9e{word-spacing:0.537600pt;}
.ws43{word-spacing:0.588800pt;}
.ws4f{word-spacing:0.647680pt;}
.ws7d{word-spacing:0.706560pt;}
.ws6a{word-spacing:0.752640pt;}
.ws74{word-spacing:0.765440pt;}
.wsa0{word-spacing:0.806400pt;}
.ws51{word-spacing:0.824320pt;}
.ws87{word-spacing:0.913920pt;}
.ws50{word-spacing:1.000960pt;}
.ws31{word-spacing:1.021440pt;}
.ws73{word-spacing:1.118720pt;}
.ws7e{word-spacing:1.177600pt;}
.ws6d{word-spacing:1.290240pt;}
.ws5a{word-spacing:1.354240pt;}
.ws6b{word-spacing:1.451520pt;}
.ws9b{word-spacing:1.472000pt;}
.ws92{word-spacing:1.559040pt;}
.ws68{word-spacing:1.589760pt;}
.ws9d{word-spacing:1.774080pt;}
.ws32{word-spacing:2.096640pt;}
.ws2b{word-spacing:2.119680pt;}
.ws29{word-spacing:2.296320pt;}
.wsaa{word-spacing:2.311680pt;}
.ws28{word-spacing:2.414080pt;}
.ws2a{word-spacing:2.472960pt;}
.ws4{word-spacing:2.560000pt;}
.ws63{word-spacing:2.649600pt;}
.wsae{word-spacing:2.885120pt;}
.ws64{word-spacing:3.238400pt;}
.ws3a{word-spacing:3.415040pt;}
.ws37{word-spacing:3.591680pt;}
.ws38{word-spacing:3.709440pt;}
.wsbb{word-spacing:3.886080pt;}
.ws9c{word-spacing:3.944960pt;}
.wsa8{word-spacing:4.121600pt;}
.ws97{word-spacing:4.651520pt;}
.ws98{word-spacing:4.828160pt;}
.wsa4{word-spacing:4.945920pt;}
.wsb3{word-spacing:5.770240pt;}
.wsb8{word-spacing:5.859840pt;}
.wsb2{word-spacing:5.946880pt;}
.ws5e{word-spacing:6.123520pt;}
.ws5f{word-spacing:6.476800pt;}
.wsb7{word-spacing:6.558720pt;}
.ws8e{word-spacing:7.150080pt;}
.ws89{word-spacing:7.203840pt;}
.ws47{word-spacing:7.242240pt;}
.ws48{word-spacing:7.418880pt;}
.ws53{word-spacing:7.536640pt;}
.wsa6{word-spacing:7.595520pt;}
.wsba{word-spacing:8.007680pt;}
.wsa7{word-spacing:8.184320pt;}
.ws2c{word-spacing:8.478720pt;}
.ws4a{word-spacing:8.537600pt;}
.ws2e{word-spacing:8.714240pt;}
.ws78{word-spacing:8.890880pt;}
.ws24{word-spacing:9.244160pt;}
.ws62{word-spacing:9.656320pt;}
.ws26{word-spacing:9.774080pt;}
.ws27{word-spacing:9.950720pt;}
.ws4b{word-spacing:10.068480pt;}
.ws4c{word-spacing:10.245120pt;}
.ws23{word-spacing:10.304000pt;}
.ws3c{word-spacing:11.069440pt;}
.ws3b{word-spacing:11.246080pt;}
.ws96{word-spacing:11.363840pt;}
.ws8c{word-spacing:12.257280pt;}
.ws75{word-spacing:12.364800pt;}
.ws70{word-spacing:12.541440pt;}
.wsac{word-spacing:12.659200pt;}
.wsb5{word-spacing:12.956160pt;}
.ws3f{word-spacing:13.012480pt;}
.ws5d{word-spacing:13.483520pt;}
.wsb6{word-spacing:13.601280pt;}
.ws44{word-spacing:13.660160pt;}
.ws45{word-spacing:13.836800pt;}
.ws3e{word-spacing:13.954560pt;}
.ws7c{word-spacing:14.013440pt;}
.ws3d{word-spacing:14.896640pt;}
.ws49{word-spacing:15.073280pt;}
.ws7a{word-spacing:15.367680pt;}
.ws67{word-spacing:15.662080pt;}
.ws41{word-spacing:16.133120pt;}
.wsbd{word-spacing:16.192000pt;}
.ws40{word-spacing:16.368640pt;}
.ws52{word-spacing:16.486400pt;}
.ws65{word-spacing:16.545280pt;}
.wsbc{word-spacing:16.663040pt;}
.ws57{word-spacing:17.487360pt;}
.ws58{word-spacing:17.664000pt;}
.wsc3{word-spacing:17.840640pt;}
.wsc2{word-spacing:18.009600pt;}
.wsc0{word-spacing:18.063360pt;}
.wsc1{word-spacing:18.708480pt;}
.ws80{word-spacing:18.723840pt;}
.ws77{word-spacing:20.019200pt;}
.ws76{word-spacing:20.195840pt;}
.ws99{word-spacing:21.314560pt;}
.ws4d{word-spacing:21.491200pt;}
.ws72{word-spacing:22.609920pt;}
.ws59{word-spacing:22.786560pt;}
.ws56{word-spacing:23.669760pt;}
.ws55{word-spacing:23.846400pt;}
.ws7f{word-spacing:24.140800pt;}
.wsb1{word-spacing:25.141760pt;}
.wsaf{word-spacing:25.436160pt;}
.wsb0{word-spacing:25.495040pt;}
.ws9a{word-spacing:25.789440pt;}
.wsa5{word-spacing:28.968960pt;}
.ws60{word-spacing:31.559680pt;}
.ws8f{word-spacing:32.309760pt;}
.ws90{word-spacing:32.847360pt;}
.ws91{word-spacing:34.030080pt;}
.ws8b{word-spacing:42.954240pt;}
.ws8a{word-spacing:43.814400pt;}
.ws94{word-spacing:44.352000pt;}
.ws5{word-spacing:46.724672pt;}
.ws5b{word-spacing:46.927360pt;}
.ws95{word-spacing:60.910080pt;}
.ws86{word-spacing:67.361280pt;}
.ws8d{word-spacing:80.102400pt;}
.ws93{word-spacing:100.584960pt;}
.ws88{word-spacing:223.480320pt;}
.ws1{word-spacing:1127.024691pt;}
.ws2{word-spacing:1214.196800pt;}
._9{margin-left:-1220.730061pt;}
._13{margin-left:-14.336256pt;}
._3{margin-left:-9.216922pt;}
._1c{margin-left:-4.327936pt;}
._b{margin-left:-2.752000pt;}
._a{margin-left:-1.030400pt;}
._8{width:1.280128pt;}
._2{width:2.560256pt;}
._4{width:3.712371pt;}
._1{width:4.736474pt;}
._0{width:6.144614pt;}
._6{width:7.040704pt;}
._5{width:8.651810pt;}
._d{width:9.627904pt;}
._1b{width:10.585728pt;}
._7{width:11.649165pt;}
._19{width:13.468160pt;}
._e{width:15.029632pt;}
._f{width:16.721920pt;}
._1a{width:18.575360pt;}
._16{width:20.666880pt;}
._10{width:21.582592pt;}
._12{width:23.126656pt;}
._17{width:24.097152pt;}
._18{width:25.249408pt;}
._11{width:30.956672pt;}
._1f{width:37.778048pt;}
._20{width:39.052672pt;}
._15{width:43.434880pt;}
._22{width:48.017664pt;}
._21{width:58.314240pt;}
._14{width:66.918016pt;}
._1e{width:71.951360pt;}
._c{width:177.973888pt;}
._1d{width:754.693120pt;}
.fsd{font-size:26.880000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fse{font-size:48.640000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.fs9{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.012800pt;}
.fs0{font-size:213.290667pt;}
.y7{bottom:-156.136667pt;}
.y0{bottom:0.000000pt;}
.y24f{bottom:0.159973pt;}
.y16f{bottom:0.160000pt;}
.y36{bottom:1.386667pt;}
.y250{bottom:1.439973pt;}
.y16e{bottom:1.440000pt;}
.y1ac{bottom:1.760000pt;}
.y1fa{bottom:3.680000pt;}
.y222{bottom:4.000000pt;}
.y22e{bottom:5.600000pt;}
.y1ea{bottom:6.880000pt;}
.y22c{bottom:11.360000pt;}
.yf6{bottom:17.920000pt;}
.yfc{bottom:18.240000pt;}
.yf5{bottom:19.840000pt;}
.y1f9{bottom:20.000000pt;}
.y22b{bottom:21.600000pt;}
.y221{bottom:21.920000pt;}
.y20d{bottom:24.160000pt;}
.y1f8{bottom:36.320000pt;}
.y22a{bottom:37.920000pt;}
.y20c{bottom:38.880000pt;}
.y220{bottom:39.840000pt;}
.y34{bottom:50.240000pt;}
.y6e{bottom:51.212160pt;}
.y1f7{bottom:52.640000pt;}
.y20b{bottom:53.600000pt;}
.y229{bottom:54.240000pt;}
.y21f{bottom:57.760000pt;}
.y33{bottom:63.040000pt;}
.y20a{bottom:68.320000pt;}
.y1f6{bottom:68.960000pt;}
.y6d{bottom:69.126400pt;}
.y228{bottom:70.560000pt;}
.y21e{bottom:75.680000pt;}
.y32{bottom:76.160000pt;}
.y252{bottom:79.680000pt;}
.y198{bottom:80.000000pt;}
.y183{bottom:80.320000pt;}
.y1e5{bottom:82.240000pt;}
.y209{bottom:82.720000pt;}
.y168{bottom:84.160000pt;}
.y1f5{bottom:85.280000pt;}
.y235{bottom:86.400000pt;}
.y69{bottom:88.000000pt;}
.y203{bottom:88.640000pt;}
.y31{bottom:89.280000pt;}
.y227{bottom:91.360000pt;}
.y21d{bottom:93.600000pt;}
.y9{bottom:95.386667pt;}
.y1b2{bottom:95.680000pt;}
.y208{bottom:97.760000pt;}
.y182{bottom:97.920000pt;}
.yf3{bottom:97.923840pt;}
.y1cd{bottom:98.240000pt;}
.y1e4{bottom:100.160000pt;}
.y1f4{bottom:101.600000pt;}
.y30{bottom:101.760000pt;}
.y141{bottom:103.760000pt;}
.y234{bottom:104.320000pt;}
.y202{bottom:104.960000pt;}
.y21c{bottom:111.200000pt;}
.y251{bottom:112.000000pt;}
.y1b1{bottom:113.600000pt;}
.y207{bottom:114.080000pt;}
.y181{bottom:114.560000pt;}
.y197{bottom:115.840000pt;}
.y1cc{bottom:116.160000pt;}
.y1f3{bottom:117.600000pt;}
.y85{bottom:117.760000pt;}
.y167{bottom:118.080000pt;}
.yf2{bottom:119.040000pt;}
.yca{bottom:119.747840pt;}
.y233{bottom:122.240000pt;}
.y2f{bottom:122.560000pt;}
.y21b{bottom:129.120000pt;}
.y24e{bottom:130.080027pt;}
.y206{bottom:130.400000pt;}
.yf1{bottom:130.880000pt;}
.y180{bottom:131.200000pt;}
.y1b0{bottom:131.520000pt;}
.y196{bottom:133.440000pt;}
.y1cb{bottom:134.080000pt;}
.y1e3{bottom:136.000000pt;}
.yaf{bottom:136.146560pt;}
.y68{bottom:136.640000pt;}
.y140{bottom:137.674880pt;}
.y1f2{bottom:138.080000pt;}
.y166{bottom:138.560000pt;}
.yc9{bottom:140.223360pt;}
.y2e{bottom:143.040000pt;}
.y27f{bottom:143.680000pt;}
.y232{bottom:146.240000pt;}
.y205{bottom:146.720000pt;}
.y21a{bottom:147.040000pt;}
.y6{bottom:148.152400pt;}
.y12a{bottom:148.485760pt;}
.y1af{bottom:149.120000pt;}
.y195{bottom:149.760000pt;}
.y11d{bottom:151.069440pt;}
.y1ca{bottom:152.000000pt;}
.y1e2{bottom:153.920000pt;}
.yae{bottom:156.622080pt;}
.y13f{bottom:158.150400pt;}
.y1f1{bottom:158.240000pt;}
.yc8{bottom:161.022720pt;}
.yf0{bottom:162.308480pt;}
.y231{bottom:162.560000pt;}
.y8{bottom:162.628933pt;}
.y204{bottom:163.360000pt;}
.y2d{bottom:163.520000pt;}
.y219{bottom:164.960000pt;}
.y194{bottom:166.080000pt;}
.y1ae{bottom:166.720000pt;}
.y129{bottom:169.285120pt;}
.y1c9{bottom:169.920000pt;}
.y11c{bottom:171.544960pt;}
.y1e1{bottom:171.840000pt;}
.y1f0{bottom:174.560000pt;}
.yad{bottom:177.097600pt;}
.y56{bottom:177.600000pt;}
.y230{bottom:178.880000pt;}
.yc7{bottom:181.498240pt;}
.y193{bottom:182.560000pt;}
.yef{bottom:182.784000pt;}
.y218{bottom:182.880000pt;}
.y1ad{bottom:183.360000pt;}
.y2c{bottom:184.320000pt;}
.y67{bottom:184.960000pt;}
.y1c8{bottom:187.840000pt;}
.y1e0{bottom:189.760000pt;}
.y128{bottom:189.760640pt;}
.y1ef{bottom:191.520000pt;}
.y13e{bottom:192.065280pt;}
.y11b{bottom:192.344320pt;}
.y22f{bottom:195.200000pt;}
.yac{bottom:197.896960pt;}
.y1ab{bottom:200.480000pt;}
.y217{bottom:200.800000pt;}
.yc6{bottom:201.973760pt;}
.yee{bottom:203.259520pt;}
.y2b{bottom:204.800000pt;}
.y1c7{bottom:205.440000pt;}
.y1df{bottom:207.680000pt;}
.y127{bottom:210.560000pt;}
.y55{bottom:211.520000pt;}
.y11a{bottom:212.819840pt;}
.y22d{bottom:212.960000pt;}
.yab{bottom:218.372480pt;}
.y216{bottom:218.720000pt;}
.y1c6{bottom:221.440000pt;}
.yc5{bottom:222.773120pt;}
.y2a{bottom:225.280000pt;}
.y1de{bottom:225.600000pt;}
.y13d{bottom:225.980160pt;}
.y27e{bottom:232.640000pt;}
.y119{bottom:233.295360pt;}
.y66{bottom:233.600000pt;}
.y215{bottom:236.640000pt;}
.yed{bottom:237.174400pt;}
.y1c5{bottom:238.080000pt;}
.yaa{bottom:238.848000pt;}
.yc4{bottom:243.248640pt;}
.y1dd{bottom:243.520000pt;}
.y126{bottom:243.835520pt;}
.y54{bottom:245.440000pt;}
.y29{bottom:246.080000pt;}
.y27d{bottom:250.560000pt;}
.yb1{bottom:253.760000pt;}
.y1c4{bottom:254.560000pt;}
.yec{bottom:257.973760pt;}
.ya9{bottom:259.647360pt;}
.y13c{bottom:259.895040pt;}
.y125{bottom:262.396160pt;}
.y53{bottom:263.360000pt;}
.yc3{bottom:263.724160pt;}
.y5{bottom:264.859333pt;}
.y118{bottom:267.210240pt;}
.y27c{bottom:268.480000pt;}
.y1dc{bottom:271.360000pt;}
.y214{bottom:272.480000pt;}
.yeb{bottom:278.449280pt;}
.y28{bottom:280.000000pt;}
.ya8{bottom:280.122880pt;}
.y124{bottom:281.279360pt;}
.y52{bottom:281.280000pt;}
.y65{bottom:282.240000pt;}
.yb0{bottom:282.595840pt;}
.yc2{bottom:284.523520pt;}
.y27b{bottom:286.400000pt;}
.y1db{bottom:288.960000pt;}
.y213{bottom:290.400000pt;}
.y13b{bottom:293.809920pt;}
.y51{bottom:299.200000pt;}
.y123{bottom:299.840000pt;}
.y27{bottom:300.480000pt;}
.ya7{bottom:300.922240pt;}
.y117{bottom:301.125120pt;}
.y201{bottom:303.040000pt;}
.yc1{bottom:304.999040pt;}
.y1da{bottom:305.280000pt;}
.y27a{bottom:306.560000pt;}
.y212{bottom:308.320000pt;}
.yea{bottom:312.364160pt;}
.y24d{bottom:316.800000pt;}
.y50{bottom:317.120000pt;}
.y200{bottom:320.960000pt;}
.y1d9{bottom:321.280000pt;}
.ya6{bottom:321.397760pt;}
.y116{bottom:321.924480pt;}
.yc0{bottom:325.474560pt;}
.y211{bottom:326.240000pt;}
.y279{bottom:326.720000pt;}
.y13a{bottom:327.724800pt;}
.y122{bottom:328.684160pt;}
.y64{bottom:330.880000pt;}
.y1ee{bottom:332.640000pt;}
.ye9{bottom:332.839680pt;}
.y26{bottom:334.400000pt;}
.y24c{bottom:334.720000pt;}
.y4f{bottom:335.040000pt;}
.y1d8{bottom:337.920000pt;}
.y1ff{bottom:338.880000pt;}
.ya5{bottom:341.873280pt;}
.y115{bottom:342.400000pt;}
.y210{bottom:344.160000pt;}
.ybf{bottom:346.273920pt;}
.y278{bottom:347.200000pt;}
.y1ed{bottom:350.560000pt;}
.y24b{bottom:352.640000pt;}
.y4e{bottom:352.960000pt;}
.ye8{bottom:353.639040pt;}
.y1d7{bottom:354.560000pt;}
.y25{bottom:354.880000pt;}
.y1fe{bottom:356.800000pt;}
.y139{bottom:361.639680pt;}
.y20f{bottom:362.080000pt;}
.ya4{bottom:362.672640pt;}
.y226{bottom:364.960000pt;}
.ybe{bottom:366.749440pt;}
.y277{bottom:367.360000pt;}
.y1ec{bottom:368.160000pt;}
.y24a{bottom:370.240000pt;}
.y4d{bottom:370.880000pt;}
.ye7{bottom:374.114560pt;}
.y1fd{bottom:374.720000pt;}
.y114{bottom:375.676800pt;}
.y63{bottom:379.520000pt;}
.y20e{bottom:380.000000pt;}
.ya3{bottom:383.148160pt;}
.y276{bottom:383.680000pt;}
.y1eb{bottom:386.080000pt;}
.y165{bottom:386.560000pt;}
.y249{bottom:388.160000pt;}
.y24{bottom:388.800000pt;}
.y1fc{bottom:392.320000pt;}
.y113{bottom:394.560000pt;}
.ye6{bottom:394.590080pt;}
.y138{bottom:395.554560pt;}
.ybd{bottom:400.664320pt;}
.ya2{bottom:403.623680pt;}
.y275{bottom:403.840000pt;}
.y164{bottom:404.480000pt;}
.y248{bottom:406.080000pt;}
.y4c{bottom:406.720000pt;}
.y23{bottom:409.600000pt;}
.y1fb{bottom:410.240000pt;}
.ye5{bottom:415.389440pt;}
.y274{bottom:420.160000pt;}
.ybc{bottom:421.139840pt;}
.y163{bottom:422.400000pt;}
.y112{bottom:423.377920pt;}
.y247{bottom:424.000000pt;}
.ya1{bottom:424.423040pt;}
.y4b{bottom:424.640000pt;}
.y1e9{bottom:424.800000pt;}
.y62{bottom:428.160000pt;}
.y137{bottom:429.469440pt;}
.y22{bottom:430.080000pt;}
.y273{bottom:436.480000pt;}
.y162{bottom:440.320000pt;}
.y246{bottom:441.920000pt;}
.y4a{bottom:442.560000pt;}
.ya0{bottom:444.898560pt;}
.y17f{bottom:446.080000pt;}
.ye4{bottom:449.304320pt;}
.y21{bottom:450.560000pt;}
.y1aa{bottom:450.880000pt;}
.ybb{bottom:455.054720pt;}
.y272{bottom:456.640000pt;}
.y161{bottom:458.240000pt;}
.y245{bottom:459.840000pt;}
.y49{bottom:460.480000pt;}
.y136{bottom:463.384320pt;}
.y17e{bottom:464.000000pt;}
.y9f{bottom:465.374080pt;}
.y1a9{bottom:468.800000pt;}
.ye3{bottom:469.779840pt;}
.y20{bottom:471.360000pt;}
.y271{bottom:472.960000pt;}
.yba{bottom:475.854080pt;}
.y160{bottom:476.160000pt;}
.y61{bottom:476.800000pt;}
.y244{bottom:477.760000pt;}
.y48{bottom:478.080000pt;}
.y17d{bottom:481.920000pt;}
.y135{bottom:484.183680pt;}
.y9e{bottom:486.173440pt;}
.y1a8{bottom:486.720000pt;}
.y270{bottom:489.280000pt;}
.ye2{bottom:490.579200pt;}
.y84{bottom:491.224320pt;}
.y15f{bottom:491.840000pt;}
.y243{bottom:495.680000pt;}
.y47{bottom:496.000000pt;}
.yb9{bottom:496.329600pt;}
.y17c{bottom:499.840000pt;}
.y15e{bottom:502.080000pt;}
.y1a7{bottom:504.640000pt;}
.y134{bottom:504.659200pt;}
.y1f{bottom:505.280000pt;}
.y9d{bottom:506.648960pt;}
.y26f{bottom:509.440000pt;}
.ye1{bottom:511.054720pt;}
.y83{bottom:511.699840pt;}
.y242{bottom:513.600000pt;}
.y46{bottom:513.920000pt;}
.y192{bottom:515.840000pt;}
.yb8{bottom:516.805120pt;}
.y17b{bottom:517.760000pt;}
.y15d{bottom:520.000000pt;}
.y1c3{bottom:523.840000pt;}
.y133{bottom:525.134720pt;}
.y60{bottom:525.440000pt;}
.y26e{bottom:525.760000pt;}
.y1a6{bottom:526.400000pt;}
.y9c{bottom:527.124480pt;}
.y241{bottom:531.520000pt;}
.y45{bottom:531.840000pt;}
.y82{bottom:532.175360pt;}
.y191{bottom:533.760000pt;}
.y17a{bottom:535.680000pt;}
.yb7{bottom:537.604480pt;}
.y15c{bottom:537.920000pt;}
.y1e{bottom:539.200000pt;}
.y1c2{bottom:541.760000pt;}
.y111{bottom:541.844480pt;}
.y1a5{bottom:544.320000pt;}
.ye0{bottom:544.969600pt;}
.y132{bottom:545.934080pt;}
.y26d{bottom:546.240000pt;}
.y9b{bottom:547.923840pt;}
.y240{bottom:549.440000pt;}
.y44{bottom:549.760000pt;}
.y190{bottom:551.680000pt;}
.y81{bottom:552.974720pt;}
.y179{bottom:553.600000pt;}
.y15b{bottom:555.840000pt;}
.yb6{bottom:558.080000pt;}
.y1c1{bottom:559.680000pt;}
.y1a4{bottom:562.240000pt;}
.y110{bottom:562.320000pt;}
.ydf{bottom:565.445120pt;}
.y26c{bottom:566.400000pt;}
.y131{bottom:566.409600pt;}
.y23f{bottom:567.360000pt;}
.y43{bottom:567.680000pt;}
.y9a{bottom:568.399360pt;}
.y18f{bottom:569.600000pt;}
.y178{bottom:571.520000pt;}
.y1d{bottom:573.120000pt;}
.y80{bottom:573.450240pt;}
.y5f{bottom:573.760000pt;}
.y1c0{bottom:577.600000pt;}
.y121{bottom:578.924160pt;}
.y1a3{bottom:580.160000pt;}
.y26b{bottom:582.720000pt;}
.y10f{bottom:582.795520pt;}
.y23e{bottom:585.280000pt;}
.y42{bottom:585.600000pt;}
.yde{bottom:586.244480pt;}
.y130{bottom:586.885120pt;}
.y18e{bottom:587.520000pt;}
.y99{bottom:588.874880pt;}
.y177{bottom:589.440000pt;}
.y15a{bottom:591.680000pt;}
.yb5{bottom:592.005120pt;}
.y1bf{bottom:595.520000pt;}
.y1a2{bottom:598.080000pt;}
.y26a{bottom:598.720000pt;}
.y23d{bottom:603.200000pt;}
.y10e{bottom:603.594880pt;}
.y18d{bottom:605.120000pt;}
.y41{bottom:606.080000pt;}
.ydd{bottom:606.729600pt;}
.y1c{bottom:607.040000pt;}
.y176{bottom:607.360000pt;}
.y7f{bottom:607.365120pt;}
.y12f{bottom:607.684480pt;}
.y159{bottom:609.600000pt;}
.y98{bottom:609.674240pt;}
.y1be{bottom:613.440000pt;}
.y269{bottom:615.360000pt;}
.y1a1{bottom:616.000000pt;}
.y1d6{bottom:616.960000pt;}
.y23c{bottom:621.120000pt;}
.y18c{bottom:621.440000pt;}
.y5e{bottom:622.400000pt;}
.y10d{bottom:624.070400pt;}
.y175{bottom:625.280000pt;}
.yb4{bottom:625.920000pt;}
.y40{bottom:626.880000pt;}
.ydc{bottom:627.205120pt;}
.y158{bottom:627.520000pt;}
.y12e{bottom:628.160000pt;}
.y97{bottom:630.149760pt;}
.y1bd{bottom:631.360000pt;}
.y1a0{bottom:633.920000pt;}
.y225{bottom:634.560000pt;}
.y1d5{bottom:634.880000pt;}
.y268{bottom:635.520000pt;}
.y18b{bottom:637.760000pt;}
.y23b{bottom:639.040000pt;}
.y1b{bottom:640.960000pt;}
.y7e{bottom:641.280000pt;}
.y174{bottom:643.200000pt;}
.y10c{bottom:644.545920pt;}
.y157{bottom:645.440000pt;}
.y3f{bottom:647.360000pt;}
.y1bc{bottom:648.960000pt;}
.y96{bottom:650.625280pt;}
.y19f{bottom:651.520000pt;}
.y224{bottom:652.160000pt;}
.y1d4{bottom:652.800000pt;}
.y18a{bottom:654.240000pt;}
.y23a{bottom:656.960000pt;}
.yb3{bottom:659.200000pt;}
.y7d{bottom:659.216640pt;}
.ydb{bottom:661.120000pt;}
.y12d{bottom:661.436800pt;}
.y173{bottom:663.040000pt;}
.y156{bottom:663.360000pt;}
.y1bb{bottom:665.280000pt;}
.y10b{bottom:665.345280pt;}
.y19e{bottom:667.840000pt;}
.y223{bottom:668.480000pt;}
.y1d3{bottom:670.720000pt;}
.y5d{bottom:671.040000pt;}
.y95{bottom:671.424640pt;}
.y172{bottom:672.960000pt;}
.y1a{bottom:674.880000pt;}
.y7c{bottom:677.130880pt;}
.y12c{bottom:680.320000pt;}
.y155{bottom:681.280000pt;}
.y1ba{bottom:681.760000pt;}
.y3e{bottom:681.920000pt;}
.y19d{bottom:684.160000pt;}
.y267{bottom:684.480000pt;}
.y10a{bottom:685.820800pt;}
.yfd{bottom:686.400000pt;}
.yb2{bottom:688.014080pt;}
.y1d2{bottom:688.640000pt;}
.y171{bottom:688.960000pt;}
.y94{bottom:691.900160pt;}
.y239{bottom:692.800000pt;}
.yda{bottom:694.372480pt;}
.y7b{bottom:695.045120pt;}
.y154{bottom:699.200000pt;}
.y19c{bottom:700.640000pt;}
.y266{bottom:704.640000pt;}
.y170{bottom:705.600000pt;}
.y1d1{bottom:706.240000pt;}
.y109{bottom:706.296320pt;}
.y19{bottom:708.800000pt;}
.y12b{bottom:709.137280pt;}
.y238{bottom:710.080000pt;}
.y93{bottom:712.375680pt;}
.yd9{bottom:713.255680pt;}
.y7a{bottom:715.520640pt;}
.y153{bottom:717.120000pt;}
.y3d{bottom:719.680000pt;}
.y265{bottom:720.640000pt;}
.y16d{bottom:722.080000pt;}
.y1d0{bottom:722.560000pt;}
.y237{bottom:726.720000pt;}
.y108{bottom:727.095680pt;}
.yfb{bottom:728.000000pt;}
.yd8{bottom:731.816320pt;}
.y92{bottom:733.175040pt;}
.y152{bottom:734.720000pt;}
.y79{bottom:736.320000pt;}
.y264{bottom:736.960000pt;}
.y1cf{bottom:738.880000pt;}
.y18{bottom:742.720000pt;}
.y236{bottom:743.200000pt;}
.y151{bottom:752.640000pt;}
.y263{bottom:753.280000pt;}
.y91{bottom:753.650560pt;}
.y3c{bottom:754.240000pt;}
.y78{bottom:754.283520pt;}
.y1ce{bottom:755.360000pt;}
.y107{bottom:761.010560pt;}
.yd7{bottom:764.139520pt;}
.yf{bottom:765.410133pt;}
.y5c{bottom:768.320000pt;}
.y262{bottom:769.600000pt;}
.yfa{bottom:769.920000pt;}
.y150{bottom:770.560000pt;}
.y77{bottom:772.197760pt;}
.y90{bottom:774.126080pt;}
.y17{bottom:776.640000pt;}
.ye{bottom:781.410133pt;}
.y106{bottom:781.486080pt;}
.yd6{bottom:782.700160pt;}
.y14f{bottom:788.480000pt;}
.y261{bottom:789.760000pt;}
.y76{bottom:789.802880pt;}
.y8f{bottom:794.925440pt;}
.yd{bottom:797.410133pt;}
.y3b{bottom:799.680000pt;}
.yd5{bottom:801.583360pt;}
.y105{bottom:801.961600pt;}
.y260{bottom:806.080000pt;}
.y14e{bottom:806.400000pt;}
.y16{bottom:810.560000pt;}
.yf9{bottom:811.520000pt;}
.y8e{bottom:815.400960pt;}
.y5b{bottom:816.960000pt;}
.yd4{bottom:820.144000pt;}
.y25f{bottom:822.400000pt;}
.y104{bottom:822.760960pt;}
.y75{bottom:823.717760pt;}
.y14d{bottom:824.320000pt;}
.y3a{bottom:828.800000pt;}
.y1e8{bottom:829.440000pt;}
.yc{bottom:835.809867pt;}
.y14c{bottom:842.240000pt;}
.y25e{bottom:842.560000pt;}
.y103{bottom:843.236480pt;}
.y15{bottom:844.480000pt;}
.y1e7{bottom:847.360000pt;}
.y8d{bottom:849.315840pt;}
.y4{bottom:851.280133pt;}
.yb{bottom:851.809867pt;}
.yd3{bottom:852.144640pt;}
.yf8{bottom:853.120000pt;}
.y120{bottom:856.675840pt;}
.y74{bottom:857.632640pt;}
.y25d{bottom:859.200000pt;}
.y14b{bottom:860.160000pt;}
.y102{bottom:863.712000pt;}
.y39{bottom:864.640000pt;}
.y1e6{bottom:865.280000pt;}
.y5a{bottom:865.600000pt;}
.ya{bottom:867.809867pt;}
.y8c{bottom:869.791360pt;}
.yd2{bottom:871.027840pt;}
.y11f{bottom:877.151360pt;}
.y14a{bottom:878.080000pt;}
.y14{bottom:878.400000pt;}
.y25c{bottom:879.360000pt;}
.y19b{bottom:883.200000pt;}
.y101{bottom:884.511360pt;}
.yd1{bottom:889.588480pt;}
.y8b{bottom:890.590720pt;}
.y73{bottom:891.547520pt;}
.yf7{bottom:894.720000pt;}
.y25b{bottom:895.680000pt;}
.y149{bottom:896.000000pt;}
.y11e{bottom:897.626880pt;}
.y19a{bottom:901.120000pt;}
.y38{bottom:902.400000pt;}
.yd0{bottom:908.471680pt;}
.y8a{bottom:911.066240pt;}
.y13{bottom:912.320000pt;}
.y59{bottom:913.920000pt;}
.y25a{bottom:915.840000pt;}
.y100{bottom:918.426240pt;}
.y199{bottom:919.040000pt;}
.y72{bottom:925.462400pt;}
.ycf{bottom:927.032320pt;}
.y1b9{bottom:927.040000pt;}
.y3{bottom:928.080267pt;}
.y89{bottom:931.541760pt;}
.y148{bottom:931.840000pt;}
.y259{bottom:932.160000pt;}
.y37{bottom:936.320000pt;}
.y189{bottom:936.960000pt;}
.yff{bottom:938.901760pt;}
.y1b8{bottom:944.960000pt;}
.y12{bottom:946.240000pt;}
.y71{bottom:946.261760pt;}
.y35{bottom:949.333333pt;}
.y147{bottom:949.760000pt;}
.y258{bottom:952.320000pt;}
.y88{bottom:952.341120pt;}
.y188{bottom:954.880000pt;}
.y2{bottom:956.880267pt;}
.yce{bottom:959.032960pt;}
.yfe{bottom:959.377280pt;}
.y58{bottom:962.560000pt;}
.y1b7{bottom:962.880000pt;}
.y146{bottom:967.680000pt;}
.y257{bottom:968.640000pt;}
.y187{bottom:972.800000pt;}
.y87{bottom:972.816640pt;}
.ycd{bottom:977.916160pt;}
.yf4{bottom:977.920000pt;}
.y11{bottom:980.160000pt;}
.y70{bottom:980.176640pt;}
.y1b6{bottom:980.800000pt;}
.y145{bottom:985.600000pt;}
.y256{bottom:988.800000pt;}
.y186{bottom:990.720000pt;}
.y86{bottom:993.292160pt;}
.ycc{bottom:996.476800pt;}
.y1b5{bottom:998.720000pt;}
.y16c{bottom:1004.480000pt;}
.y255{bottom:1005.440000pt;}
.y185{bottom:1008.640000pt;}
.y10{bottom:1014.080000pt;}
.y6f{bottom:1014.091520pt;}
.ycb{bottom:1015.360000pt;}
.y1b4{bottom:1016.640000pt;}
.y144{bottom:1017.920000pt;}
.y57{bottom:1022.080000pt;}
.y16b{bottom:1022.400000pt;}
.y254{bottom:1025.600000pt;}
.y184{bottom:1026.560000pt;}
.y1b3{bottom:1034.560000pt;}
.y6c{bottom:1035.200000pt;}
.y143{bottom:1039.680000pt;}
.y253{bottom:1041.600000pt;}
.y16a{bottom:1044.480000pt;}
.y6b{bottom:1052.164480pt;}
.y1{bottom:1055.755867pt;}
.y142{bottom:1058.880000pt;}
.y169{bottom:1062.400000pt;}
.y6a{bottom:1065.280000pt;}
.h21{height:22.168125pt;}
.h1a{height:28.158667pt;}
.h1c{height:28.160000pt;}
.h1d{height:28.480000pt;}
.h18{height:28.501875pt;}
.h15{height:29.266875pt;}
.hd{height:30.669375pt;}
.h19{height:33.920000pt;}
.h1b{height:34.835625pt;}
.h31{height:38.587500pt;}
.h13{height:40.020000pt;}
.h12{height:40.048750pt;}
.h2c{height:40.113750pt;}
.hc{height:40.365000pt;}
.hf{height:42.262500pt;}
.h11{height:42.656250pt;}
.h9{height:44.106667pt;}
.h16{height:44.336250pt;}
.hb{height:48.558750pt;}
.h17{height:52.334725pt;}
.h20{height:52.373125pt;}
.h10{height:52.781250pt;}
.h8{height:52.928000pt;}
.h1f{height:61.226250pt;}
.h2{height:63.984375pt;}
.h14{height:70.809375pt;}
.h3{height:85.312500pt;}
.h5{height:93.250000pt;}
.h7{height:93.255592pt;}
.h4{height:93.259325pt;}
.h6{height:93.264658pt;}
.he{height:98.666667pt;}
.h2e{height:152.000000pt;}
.h1{height:155.385583pt;}
.h2f{height:171.840000pt;}
.h25{height:178.560000pt;}
.h30{height:182.719973pt;}
.h27{height:241.280000pt;}
.h2d{height:244.480000pt;}
.h26{height:245.760000pt;}
.h29{height:249.280000pt;}
.h28{height:265.280000pt;}
.h22{height:278.400000pt;}
.h23{height:278.720000pt;}
.h24{height:329.280000pt;}
.h2b{height:393.920000pt;}
.h2a{height:400.000000pt;}
.h32{height:1122.520000pt;}
.ha{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.h1e{height:1152.000000pt;}
.w6{width:21.120000pt;}
.w8{width:21.438667pt;}
.w5{width:21.440000pt;}
.w7{width:22.080000pt;}
.w9{width:22.400000pt;}
.w3{width:89.920000pt;}
.w26{width:117.440000pt;}
.w24{width:170.560000pt;}
.wf{width:195.840000pt;}
.w11{width:198.720000pt;}
.w12{width:206.400000pt;}
.w13{width:235.840000pt;}
.w1f{width:252.800000pt;}
.w21{width:257.280000pt;}
.w23{width:264.640000pt;}
.w4{width:271.680000pt;}
.wb{width:273.920000pt;}
.w1c{width:304.960000pt;}
.w19{width:310.400000pt;}
.w14{width:311.040000pt;}
.w17{width:318.720000pt;}
.wd{width:320.000000pt;}
.w1b{width:320.320000pt;}
.w1a{width:320.640000pt;}
.we{width:320.960000pt;}
.w16{width:321.600000pt;}
.w15{width:327.680000pt;}
.w18{width:330.560000pt;}
.w1d{width:336.000000pt;}
.w22{width:340.480000pt;}
.w20{width:347.840000pt;}
.w25{width:352.960000pt;}
.wc{width:376.640000pt;}
.w1e{width:386.560000pt;}
.w10{width:432.640000pt;}
.w2{width:644.000000pt;}
.wa{width:792.000000pt;}
.w0{width:793.333333pt;}
.w1{width:793.600000pt;}
.w27{width:793.706667pt;}
.w28{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:5.120000pt;}
.x1d{left:7.680000pt;}
.x67{left:9.440000pt;}
.x2c{left:10.560000pt;}
.x64{left:19.680000pt;}
.x1a{left:29.760000pt;}
.x66{left:46.880000pt;}
.x1{left:71.869733pt;}
.xd{left:75.519872pt;}
.x3d{left:79.040000pt;}
.x39{left:82.560000pt;}
.x5a{left:83.840000pt;}
.x6{left:85.331733pt;}
.x45{left:88.160000pt;}
.x57{left:89.280000pt;}
.x40{left:91.840000pt;}
.x4e{left:95.040000pt;}
.x72{left:105.760000pt;}
.x74{left:107.520000pt;}
.x54{left:108.480000pt;}
.x31{left:110.720000pt;}
.xc{left:113.279936pt;}
.x5b{left:118.080000pt;}
.x1c{left:120.960000pt;}
.x11{left:122.786464pt;}
.x58{left:123.840000pt;}
.x1e{left:135.360000pt;}
.x36{left:137.920000pt;}
.xe{left:140.053045pt;}
.x52{left:151.680000pt;}
.x20{left:158.080000pt;}
.x37{left:164.160000pt;}
.x2{left:165.665333pt;}
.x6d{left:172.160000pt;}
.x68{left:173.920000pt;}
.x3e{left:177.280000pt;}
.x75{left:179.520000pt;}
.x21{left:180.480000pt;}
.x2e{left:185.584640pt;}
.x46{left:188.640000pt;}
.x51{left:191.040000pt;}
.x4a{left:192.480000pt;}
.x55{left:197.440000pt;}
.x4b{left:200.160000pt;}
.xf{left:201.868512pt;}
.x1b{left:203.840000pt;}
.x5e{left:207.040000pt;}
.x49{left:210.880000pt;}
.x5d{left:215.680000pt;}
.x22{left:226.240000pt;}
.x4d{left:229.600000pt;}
.x70{left:233.760000pt;}
.x3{left:237.905333pt;}
.x44{left:240.000000pt;}
.x62{left:245.440000pt;}
.x73{left:247.680000pt;}
.x23{left:248.960000pt;}
.x10{left:250.645824pt;}
.x6c{left:255.200000pt;}
.x6e{left:267.840000pt;}
.x24{left:271.680000pt;}
.x43{left:274.880000pt;}
.x47{left:284.000000pt;}
.xb{left:293.186800pt;}
.x25{left:294.080000pt;}
.x8{left:295.980533pt;}
.x41{left:297.280000pt;}
.x19{left:305.280000pt;}
.x38{left:307.840000pt;}
.x6f{left:312.800000pt;}
.x4f{left:314.720000pt;}
.x26{left:316.800000pt;}
.x59{left:319.200000pt;}
.x60{left:320.160000pt;}
.x6a{left:324.000000pt;}
.x33{left:329.280000pt;}
.x50{left:331.680000pt;}
.x9{left:336.407200pt;}
.x27{left:339.520000pt;}
.x63{left:346.400000pt;}
.x3b{left:349.600000pt;}
.x3a{left:353.760000pt;}
.x42{left:354.720000pt;}
.xa{left:358.461600pt;}
.x7{left:359.517600pt;}
.x28{left:362.240000pt;}
.x3c{left:377.440000pt;}
.x5f{left:381.920000pt;}
.x29{left:384.960000pt;}
.x32{left:388.480000pt;}
.x34{left:395.840000pt;}
.x53{left:397.280000pt;}
.x56{left:406.240000pt;}
.x2a{left:407.680000pt;}
.x6b{left:415.840000pt;}
.x48{left:422.240000pt;}
.x69{left:423.200000pt;}
.x2b{left:430.400000pt;}
.x13{left:438.394880pt;}
.x4{left:452.563867pt;}
.x65{left:463.520000pt;}
.x4c{left:480.800000pt;}
.x18{left:489.600000pt;}
.x35{left:549.760000pt;}
.x5c{left:565.120000pt;}
.x3f{left:579.200000pt;}
.x16{left:597.431680pt;}
.x71{left:599.200000pt;}
.x12{left:630.080000pt;}
.x17{left:639.678080pt;}
.x2d{left:641.591680pt;}
.x30{left:665.600000pt;}
.x15{left:672.960000pt;}
.x14{left:680.320000pt;}
.x2f{left:681.895040pt;}
.x61{left:711.680000pt;}
.x5{left:766.592400pt;}
}




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