
    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_80533e1ab74d06cfa6b84e5e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_4fd6cc60db70d59f67d7913a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_477e1bb088c1fe46fdd6aaf0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_2b1d281ac1f73808c8c2e8f6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_4a90f312830dd90eacbe1b96.woff')format("woff");}.ff5{font-family:ff5;line-height:1.146000;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_ba8156333ae0e911215baef9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.197000;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_c7950931e2bf0411d52d0409.woff')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_66166492c324a2bee66fb546.woff')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_7f239505f5daaa242a0e21e6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.439000;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_c46692193868ef88cd51d4b6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_c628d27860c9aaea86571353.woff')format("woff");}.ffb{font-family:ffb;line-height:0.441000;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_87141dad99fc5c47bdf7d7ab.woff')format("woff");}.ffc{font-family:ffc;line-height:0.266000;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_0a07f04799f46f37cc04f156.woff')format("woff");}.ffd{font-family:ffd;line-height:0.959473;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_c8d3c63edd1571ac0f0d8a2d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.706000;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_c9e80323facf19d5eec72f60.woff')format("woff");}.fff{font-family:fff;line-height:0.452000;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_71da3b9a93d411d84db67abb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.690000;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_1b779aff2814ac3bd54d0dcc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.439000;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_9474945b752ff2cae2894d99.woff')format("woff");}.ff12{font-family:ff12;line-height:0.676000;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_808ea369ceea18bda4499567.woff')format("woff");}.ff13{font-family:ff13;line-height:0.674000;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_b634ca99125466efa9f33793.woff')format("woff");}.ff14{font-family:ff14;line-height:0.674000;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_11276b7bde8ed7d6357f5e29.woff')format("woff");}.ff15{font-family:ff15;line-height:0.624000;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_1e815d2f74fda003bef2dea1.woff')format("woff");}.ff16{font-family:ff16;line-height:0.588000;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_206dbeaaf83e9ba15cbdceaa.woff')format("woff");}.ff17{font-family:ff17;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fa5b1e21a11eecc944cfa915.woff')format("woff");}.ff18{font-family:ff18;line-height:0.452000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6925348af8e57890a9b5716c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_37fff65faf0f672b9a86677e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8bcebf1aa95e492cd3df5a5f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_6065397616273549e3fcc9ed.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_4e9c7c20af90a7b574ec1d00.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_47e16b027ab46a562bf63bef.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f1f86ad4835a5da2f6814438.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_cd5f13dd941bce313dd7b9aa.woff')format("woff");}.ff20{font-family:ff20;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_40bf56c4e16724075564421d.woff')format("woff");}.ff21{font-family:ff21;line-height:0.452000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_53414612a93e4082b485c40f.woff')format("woff");}.ff22{font-family:ff22;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-19.199982px;}
.v4{vertical-align:-14.195984px;}
.v5{vertical-align:-9.988770px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.660645px;}
.v8{vertical-align:17.280579px;}
.v3{vertical-align:19.980469px;}
.v1{vertical-align:22.799931px;}
.v2{vertical-align:32.187012px;}
.v7{vertical-align:39.918457px;}
.v9{vertical-align:52.367981px;}
.ls33{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.684000px;}
.ls34{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.456000px;}
.ls39{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.157333px;}
.ls2e{letter-spacing:-0.048000px;}
.ls3{letter-spacing:-0.040089px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000004px;}
.ls1d{letter-spacing:0.000008px;}
.ls10{letter-spacing:0.000009px;}
.ls11{letter-spacing:0.000012px;}
.ls19{letter-spacing:0.000017px;}
.lsb{letter-spacing:0.000019px;}
.ls7{letter-spacing:0.000027px;}
.ls1e{letter-spacing:0.000032px;}
.ls12{letter-spacing:0.000039px;}
.ls1{letter-spacing:0.000044px;}
.lsd{letter-spacing:0.000058px;}
.ls8{letter-spacing:0.000073px;}
.ls5{letter-spacing:0.000079px;}
.ls13{letter-spacing:0.007821px;}
.ls14{letter-spacing:0.022680px;}
.ls2b{letter-spacing:0.470400px;}
.ls22{letter-spacing:0.671910px;}
.ls24{letter-spacing:0.671997px;}
.ls20{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.672043px;}
.ls2d{letter-spacing:0.676758px;}
.ls28{letter-spacing:0.676804px;}
.ls23{letter-spacing:0.676849px;}
.ls29{letter-spacing:0.681610px;}
.ls1a{letter-spacing:0.739231px;}
.ls1f{letter-spacing:0.798000px;}
.ls26{letter-spacing:2.063782px;}
.ls21{letter-spacing:2.112025px;}
.ls2c{letter-spacing:2.112122px;}
.ls1c{letter-spacing:2.358521px;}
.ls1b{letter-spacing:2.358613px;}
.ls27{letter-spacing:2.448120px;}
.ls31{letter-spacing:2.481628px;}
.ls15{letter-spacing:2.855003px;}
.lsf{letter-spacing:2.857384px;}
.lse{letter-spacing:2.857427px;}
.lsc{letter-spacing:2.857433px;}
.ls17{letter-spacing:2.865349px;}
.ls0{letter-spacing:3.360000px;}
.ls35{letter-spacing:3.552062px;}
.ls32{letter-spacing:3.556824px;}
.ls38{letter-spacing:4.372742px;}
.ls25{letter-spacing:4.991821px;}
.ls30{letter-spacing:5.380829px;}
.ls37{letter-spacing:9.120117px;}
.ls36{letter-spacing:10.272034px;}
.ls16{letter-spacing:12.659816px;}
.ls18{letter-spacing:12.659908px;}
.ls2a{letter-spacing:12.912048px;}
.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;}
}
.wsaf{word-spacing:-57.000000px;}
.wsd5{word-spacing:-15.048000px;}
.ws4{word-spacing:-14.250000px;}
.wsa3{word-spacing:-13.794000px;}
.ws8a{word-spacing:-13.566000px;}
.ws5{word-spacing:-13.332000px;}
.wsf0{word-spacing:-12.672000px;}
.wsbf{word-spacing:-12.000000px;}
.ws111{word-spacing:-11.952000px;}
.wsb7{word-spacing:-11.856000px;}
.ws145{word-spacing:-11.760000px;}
.ws2{word-spacing:-11.514000px;}
.ws78{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.944000px;}
.wsa2{word-spacing:-9.975000px;}
.ws0{word-spacing:-9.408000px;}
.wsdf{word-spacing:-9.216000px;}
.wsf1{word-spacing:-8.870400px;}
.wsc7{word-spacing:-8.400000px;}
.ws1{word-spacing:-8.259300px;}
.ws86{word-spacing:-7.125000px;}
.wsc9{word-spacing:-6.000000px;}
.ws19{word-spacing:-3.812266px;}
.ws8{word-spacing:-2.496000px;}
.ws95{word-spacing:-1.920000px;}
.ws8e{word-spacing:-1.083000px;}
.ws51{word-spacing:-1.026000px;}
.ws121{word-spacing:-1.008000px;}
.ws17{word-spacing:-0.855000px;}
.ws124{word-spacing:-0.816000px;}
.ws13a{word-spacing:-0.768000px;}
.ws3f{word-spacing:-0.741000px;}
.ws6b{word-spacing:-0.684000px;}
.wsfc{word-spacing:-0.672000px;}
.ws9f{word-spacing:-0.627000px;}
.ws133{word-spacing:-0.576000px;}
.ws84{word-spacing:-0.570000px;}
.ws10a{word-spacing:-0.528000px;}
.wsbd{word-spacing:-0.513000px;}
.ws6{word-spacing:-0.480000px;}
.ws52{word-spacing:-0.456000px;}
.wsb8{word-spacing:-0.399000px;}
.ws115{word-spacing:-0.384000px;}
.ws88{word-spacing:-0.342000px;}
.ws129{word-spacing:-0.288000px;}
.wsee{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.228000px;}
.wsed{word-spacing:-0.192000px;}
.ws98{word-spacing:-0.171000px;}
.wsec{word-spacing:-0.144000px;}
.ws3c{word-spacing:-0.114000px;}
.ws103{word-spacing:-0.096000px;}
.ws9{word-spacing:-0.065230px;}
.wsb4{word-spacing:-0.057000px;}
.wsc2{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws104{word-spacing:0.048000px;}
.ws74{word-spacing:0.057000px;}
.wsff{word-spacing:0.096000px;}
.ws89{word-spacing:0.114000px;}
.wsef{word-spacing:0.144000px;}
.ws90{word-spacing:0.228000px;}
.ws10f{word-spacing:0.240000px;}
.wsba{word-spacing:0.285000px;}
.ws13c{word-spacing:0.336000px;}
.wsd0{word-spacing:0.342000px;}
.ws31{word-spacing:0.399000px;}
.ws11f{word-spacing:0.432000px;}
.ws85{word-spacing:0.456000px;}
.ws13d{word-spacing:0.480000px;}
.ws4b{word-spacing:0.513000px;}
.ws46{word-spacing:0.570000px;}
.ws136{word-spacing:0.624000px;}
.ws43{word-spacing:0.627000px;}
.wse8{word-spacing:0.672000px;}
.ws9d{word-spacing:0.684000px;}
.ws139{word-spacing:0.720000px;}
.ws13{word-spacing:0.741000px;}
.ws130{word-spacing:0.768000px;}
.ws8f{word-spacing:0.798000px;}
.wsa0{word-spacing:0.855000px;}
.wse9{word-spacing:0.864000px;}
.ws2c{word-spacing:0.912000px;}
.ws11c{word-spacing:0.960000px;}
.ws12{word-spacing:0.969000px;}
.ws83{word-spacing:1.026000px;}
.ws7b{word-spacing:1.083000px;}
.ws147{word-spacing:1.104000px;}
.ws75{word-spacing:1.140000px;}
.ws143{word-spacing:1.152000px;}
.ws25{word-spacing:1.254000px;}
.ws122{word-spacing:1.296000px;}
.wscb{word-spacing:1.311000px;}
.ws119{word-spacing:1.344000px;}
.wsbc{word-spacing:1.368000px;}
.ws10{word-spacing:1.425000px;}
.ws105{word-spacing:1.440000px;}
.ws7a{word-spacing:1.482000px;}
.wsfb{word-spacing:1.488000px;}
.ws107{word-spacing:1.536000px;}
.ws70{word-spacing:1.539000px;}
.ws10b{word-spacing:1.584000px;}
.ws7c{word-spacing:1.596000px;}
.ws12d{word-spacing:1.632000px;}
.ws6e{word-spacing:1.653000px;}
.ws55{word-spacing:1.710000px;}
.ws82{word-spacing:1.767000px;}
.wsf8{word-spacing:1.776000px;}
.ws92{word-spacing:1.824000px;}
.wsaa{word-spacing:1.881000px;}
.wse6{word-spacing:1.920000px;}
.ws6c{word-spacing:1.938000px;}
.ws11d{word-spacing:1.968000px;}
.ws126{word-spacing:2.016000px;}
.ws28{word-spacing:2.052000px;}
.ws13b{word-spacing:2.064000px;}
.wsd3{word-spacing:2.109000px;}
.ws112{word-spacing:2.112000px;}
.ws4e{word-spacing:2.166000px;}
.ws125{word-spacing:2.208000px;}
.ws36{word-spacing:2.223000px;}
.ws11a{word-spacing:2.256000px;}
.wsce{word-spacing:2.280000px;}
.ws144{word-spacing:2.304000px;}
.ws2d{word-spacing:2.337000px;}
.ws4a{word-spacing:2.394000px;}
.wsf5{word-spacing:2.447995px;}
.ws68{word-spacing:2.451000px;}
.ws138{word-spacing:2.496000px;}
.wsab{word-spacing:2.508000px;}
.wsf9{word-spacing:2.544000px;}
.ws7d{word-spacing:2.565000px;}
.ws12b{word-spacing:2.592000px;}
.ws2e{word-spacing:2.622000px;}
.ws93{word-spacing:2.679000px;}
.ws101{word-spacing:2.688000px;}
.ws110{word-spacing:2.784000px;}
.ws79{word-spacing:2.793000px;}
.ws137{word-spacing:2.832000px;}
.wscd{word-spacing:2.850000px;}
.ws30{word-spacing:2.906994px;}
.wsea{word-spacing:2.928000px;}
.ws8d{word-spacing:2.964000px;}
.ws61{word-spacing:3.021000px;}
.ws146{word-spacing:3.072000px;}
.ws10c{word-spacing:3.120000px;}
.ws42{word-spacing:3.135000px;}
.ws13e{word-spacing:3.168000px;}
.ws3a{word-spacing:3.192000px;}
.ws123{word-spacing:3.216000px;}
.ws1c{word-spacing:3.249000px;}
.ws80{word-spacing:3.306000px;}
.ws109{word-spacing:3.312000px;}
.ws12f{word-spacing:3.360000px;}
.ws38{word-spacing:3.363000px;}
.ws14a{word-spacing:3.407995px;}
.ws5c{word-spacing:3.420000px;}
.ws7f{word-spacing:3.477000px;}
.ws108{word-spacing:3.504000px;}
.ws27{word-spacing:3.534000px;}
.ws91{word-spacing:3.591000px;}
.ws40{word-spacing:3.648000px;}
.wse3{word-spacing:3.696000px;}
.ws23{word-spacing:3.705000px;}
.ws8b{word-spacing:3.762000px;}
.ws6a{word-spacing:3.819000px;}
.ws13f{word-spacing:3.840000px;}
.ws2f{word-spacing:3.876000px;}
.ws120{word-spacing:3.888000px;}
.wsd4{word-spacing:3.933000px;}
.ws142{word-spacing:3.936000px;}
.wsa9{word-spacing:3.990000px;}
.ws57{word-spacing:4.046994px;}
.ws100{word-spacing:4.080000px;}
.ws24{word-spacing:4.104000px;}
.wse1{word-spacing:4.127995px;}
.ws3b{word-spacing:4.161000px;}
.ws114{word-spacing:4.176000px;}
.ws6f{word-spacing:4.218000px;}
.ws12a{word-spacing:4.224000px;}
.ws118{word-spacing:4.320000px;}
.ws29{word-spacing:4.332000px;}
.ws14c{word-spacing:4.416000px;}
.ws60{word-spacing:4.446000px;}
.ws7e{word-spacing:4.503000px;}
.wse7{word-spacing:4.512000px;}
.ws67{word-spacing:4.560000px;}
.wsfa{word-spacing:4.608000px;}
.ws44{word-spacing:4.617000px;}
.ws37{word-spacing:4.674000px;}
.ws54{word-spacing:4.731000px;}
.ws14{word-spacing:4.788000px;}
.wsf6{word-spacing:4.800000px;}
.ws26{word-spacing:4.845000px;}
.ws132{word-spacing:4.848000px;}
.ws14b{word-spacing:4.896000px;}
.ws6d{word-spacing:4.901994px;}
.wsd7{word-spacing:4.959000px;}
.ws50{word-spacing:5.016000px;}
.ws48{word-spacing:5.073000px;}
.ws116{word-spacing:5.088000px;}
.wsad{word-spacing:5.130000px;}
.wsfd{word-spacing:5.184000px;}
.wsf7{word-spacing:5.232000px;}
.wsb6{word-spacing:5.244000px;}
.ws135{word-spacing:5.280000px;}
.ws3e{word-spacing:5.301000px;}
.ws63{word-spacing:5.358000px;}
.wse2{word-spacing:5.376000px;}
.ws9b{word-spacing:5.415000px;}
.wscc{word-spacing:5.472000px;}
.ws128{word-spacing:5.520000px;}
.ws15{word-spacing:5.529000px;}
.ws1a{word-spacing:5.586000px;}
.ws69{word-spacing:5.643000px;}
.ws81{word-spacing:5.700000px;}
.wse5{word-spacing:5.712000px;}
.ws1d{word-spacing:5.757000px;}
.ws66{word-spacing:5.814000px;}
.wsae{word-spacing:5.871000px;}
.ws127{word-spacing:5.904000px;}
.wsd2{word-spacing:5.928000px;}
.wseb{word-spacing:5.952000px;}
.wsb3{word-spacing:5.985000px;}
.wse4{word-spacing:6.000000px;}
.ws47{word-spacing:6.042000px;}
.ws10e{word-spacing:6.096000px;}
.ws53{word-spacing:6.099000px;}
.ws20{word-spacing:6.156000px;}
.ws22{word-spacing:6.213000px;}
.ws12c{word-spacing:6.240000px;}
.ws106{word-spacing:6.288000px;}
.ws72{word-spacing:6.327000px;}
.wsdc{word-spacing:6.384000px;}
.ws102{word-spacing:6.432000px;}
.ws33{word-spacing:6.441000px;}
.ws117{word-spacing:6.480000px;}
.ws45{word-spacing:6.498000px;}
.ws131{word-spacing:6.528000px;}
.ws65{word-spacing:6.555000px;}
.ws5d{word-spacing:6.612000px;}
.wsac{word-spacing:6.669000px;}
.ws11e{word-spacing:6.768000px;}
.ws35{word-spacing:6.783000px;}
.ws4f{word-spacing:6.840000px;}
.ws141{word-spacing:6.864000px;}
.ws4d{word-spacing:6.897000px;}
.ws3d{word-spacing:6.954000px;}
.ws113{word-spacing:7.008000px;}
.wsd{word-spacing:7.011000px;}
.ws77{word-spacing:7.068000px;}
.wsf4{word-spacing:7.104000px;}
.wsda{word-spacing:7.125000px;}
.wse{word-spacing:7.182000px;}
.ws18{word-spacing:7.239000px;}
.ws2a{word-spacing:7.296000px;}
.ws49{word-spacing:7.353000px;}
.wsf2{word-spacing:7.392000px;}
.ws62{word-spacing:7.410000px;}
.ws58{word-spacing:7.467000px;}
.wscf{word-spacing:7.524000px;}
.wsd8{word-spacing:7.581000px;}
.ws134{word-spacing:7.584000px;}
.ws64{word-spacing:7.695000px;}
.ws1e{word-spacing:7.752000px;}
.ws56{word-spacing:7.809000px;}
.ws97{word-spacing:7.866000px;}
.ws59{word-spacing:7.923000px;}
.ws87{word-spacing:7.980000px;}
.ws5e{word-spacing:8.037000px;}
.wsf{word-spacing:8.094000px;}
.ws1b{word-spacing:8.151000px;}
.ws4c{word-spacing:8.208000px;}
.ws94{word-spacing:8.265000px;}
.ws1f{word-spacing:8.322000px;}
.ws32{word-spacing:8.379000px;}
.ws11b{word-spacing:8.400000px;}
.wsca{word-spacing:8.436000px;}
.ws34{word-spacing:8.493000px;}
.ws12e{word-spacing:8.496000px;}
.wsfe{word-spacing:8.544000px;}
.wsa{word-spacing:8.607000px;}
.wsc{word-spacing:8.835000px;}
.ws73{word-spacing:8.949000px;}
.ws8c{word-spacing:9.006000px;}
.ws149{word-spacing:9.024000px;}
.wsa1{word-spacing:9.063000px;}
.wsd9{word-spacing:9.120000px;}
.wsdd{word-spacing:9.177000px;}
.ws5b{word-spacing:9.348000px;}
.ws9e{word-spacing:9.462000px;}
.ws5a{word-spacing:9.519000px;}
.wsf3{word-spacing:9.600000px;}
.ws9c{word-spacing:9.747000px;}
.ws96{word-spacing:9.804000px;}
.ws140{word-spacing:9.840000px;}
.ws99{word-spacing:9.861000px;}
.ws16{word-spacing:9.918000px;}
.wsb5{word-spacing:9.975000px;}
.ws5f{word-spacing:10.089000px;}
.ws148{word-spacing:10.224000px;}
.wsd6{word-spacing:10.260000px;}
.wsd1{word-spacing:10.431000px;}
.wse0{word-spacing:10.488000px;}
.ws21{word-spacing:10.545000px;}
.wsb9{word-spacing:10.716000px;}
.wsde{word-spacing:10.887000px;}
.wsb{word-spacing:10.944000px;}
.ws39{word-spacing:11.286000px;}
.ws41{word-spacing:11.913000px;}
.ws71{word-spacing:12.312000px;}
.ws10d{word-spacing:12.384000px;}
.ws2b{word-spacing:12.540000px;}
.wsb2{word-spacing:12.545850px;}
.wsb0{word-spacing:12.602795px;}
.wsdb{word-spacing:13.281000px;}
.wsbe{word-spacing:13.794000px;}
.ws9a{word-spacing:14.307000px;}
.wsbb{word-spacing:15.675000px;}
.ws11{word-spacing:15.960000px;}
.wsb1{word-spacing:22.924634px;}
.ws14d{word-spacing:73.056000px;}
.wsc5{word-spacing:129.791931px;}
.wsc4{word-spacing:137.135993px;}
.wsc8{word-spacing:177.792114px;}
.wsc6{word-spacing:189.792114px;}
.wsa8{word-spacing:190.703897px;}
.wsa5{word-spacing:190.703979px;}
.wsa6{word-spacing:190.703984px;}
.wsa7{word-spacing:190.704163px;}
.wsa4{word-spacing:258.719979px;}
.wsc3{word-spacing:273.791931px;}
.wsc0{word-spacing:1663.295854px;}
.wsc1{word-spacing:1663.295946px;}
._20{margin-left:-23.675988px;}
._19{margin-left:-19.811760px;}
._21{margin-left:-18.010229px;}
._13{margin-left:-15.868811px;}
._17{margin-left:-14.441638px;}
._11{margin-left:-13.220075px;}
._15{margin-left:-12.158089px;}
._10{margin-left:-10.316993px;}
._1f{margin-left:-8.927988px;}
._f{margin-left:-7.851035px;}
._9{margin-left:-5.438400px;}
._1{margin-left:-3.892800px;}
._6{margin-left:-2.726400px;}
._0{margin-left:-1.632000px;}
._3{width:1.233000px;}
._2{width:2.560200px;}
._a{width:4.155866px;}
._5{width:6.249024px;}
._7{width:7.353007px;}
._8{width:8.664007px;}
._16{width:10.009739px;}
._14{width:11.177698px;}
._d{width:12.498246px;}
._c{width:13.898395px;}
._e{width:15.754789px;}
._12{width:17.134190px;}
._18{width:20.607271px;}
._36{width:22.588800px;}
._4{width:40.521007px;}
._38{width:56.255989px;}
._37{width:73.055989px;}
._29{width:98.256016px;}
._2e{width:153.792023px;}
._22{width:164.448023px;}
._2f{width:165.791931px;}
._1b{width:206.688083px;}
._24{width:208.463931px;}
._35{width:211.385889px;}
._2c{width:213.168043px;}
._2b{width:214.416003px;}
._23{width:220.464023px;}
._2a{width:225.167951px;}
._1e{width:227.087940px;}
._1d{width:238.703897px;}
._1c{width:251.087940px;}
._32{width:261.792114px;}
._33{width:269.808293px;}
._34{width:273.792023px;}
._30{width:285.792114px;}
._31{width:297.792114px;}
._28{width:469.200034px;}
._2d{width:556.416041px;}
._1a{width:577.809027px;}
._b{width:1180.341581px;}
._25{width:1206.287923px;}
._26{width:2079.168014px;}
._27{width:2444.687900px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:24.000000px;}
.fs8{font-size:28.513200px;}
.fs9{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fs7{font-size:39.917999px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs6{font-size:57.026400px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y16c{bottom:-0.575398px;}
.y17c{bottom:-0.485985px;}
.y181{bottom:-0.485550px;}
.y179{bottom:-0.485390px;}
.y0{bottom:0.000000px;}
.y116{bottom:0.044678px;}
.y11d{bottom:0.044700px;}
.y10f{bottom:0.065735px;}
.yfe{bottom:0.067200px;}
.y13d{bottom:0.097229px;}
.y16f{bottom:0.159599px;}
.y105{bottom:0.161591px;}
.y148{bottom:0.389557px;}
.y104{bottom:5.146042px;}
.y17a{bottom:5.951866px;}
.y170{bottom:7.490398px;}
.y10d{bottom:7.544403px;}
.yfc{bottom:7.546051px;}
.y100{bottom:7.546188px;}
.y17e{bottom:9.220665px;}
.y183{bottom:9.221100px;}
.y143{bottom:10.364731px;}
.y14a{bottom:10.366379px;}
.y136{bottom:17.969557px;}
.y141{bottom:17.971207px;}
.y147{bottom:18.639771px;}
.y1{bottom:32.687250px;}
.y139{bottom:37.409729px;}
.y14c{bottom:73.274998px;}
.y26{bottom:73.275010px;}
.y16e{bottom:73.275744px;}
.y177{bottom:73.278279px;}
.y184{bottom:73.278445px;}
.y174{bottom:73.279944px;}
.y14e{bottom:73.281609px;}
.y15e{bottom:73.293614px;}
.y16a{bottom:73.305624px;}
.y5a{bottom:73.426037px;}
.y1b0{bottom:74.211737px;}
.y6b{bottom:74.393984px;}
.y8c{bottom:74.400736px;}
.yac{bottom:74.407482px;}
.y1fd{bottom:80.483562px;}
.y134{bottom:81.313803px;}
.yd8{bottom:81.417297px;}
.y175{bottom:82.279944px;}
.yf1{bottom:82.968298px;}
.y231{bottom:84.989536px;}
.y59{bottom:90.682783px;}
.y1af{bottom:91.468483px;}
.y6a{bottom:91.650736px;}
.y8b{bottom:91.657482px;}
.yab{bottom:91.664234px;}
.y1fc{bottom:94.355564px;}
.y133{bottom:98.570549px;}
.yd7{bottom:98.674049px;}
.y230{bottom:98.861538px;}
.y1c5{bottom:99.424210px;}
.yf0{bottom:100.632305px;}
.y245{bottom:104.179047px;}
.y58{bottom:107.939529px;}
.y1fb{bottom:108.227566px;}
.y1ae{bottom:108.725235px;}
.y69{bottom:108.907482px;}
.y8a{bottom:108.914234px;}
.yaa{bottom:108.920986px;}
.y22f{bottom:112.733540px;}
.y1c4{bottom:113.296211px;}
.y132{bottom:115.827300px;}
.yd6{bottom:115.930800px;}
.yef{bottom:118.224300px;}
.y244{bottom:120.804302px;}
.y1fa{bottom:122.099567px;}
.y57{bottom:125.196281px;}
.y25{bottom:125.335200px;}
.y1ad{bottom:125.981987px;}
.y68{bottom:126.164234px;}
.y89{bottom:126.170986px;}
.ya9{bottom:126.177738px;}
.y22e{bottom:126.605530px;}
.y1c3{bottom:127.168213px;}
.y131{bottom:133.077300px;}
.yd5{bottom:133.187553px;}
.yee{bottom:135.816296px;}
.y1f9{bottom:135.971569px;}
.y243{bottom:139.476299px;}
.y22d{bottom:140.477531px;}
.y1c2{bottom:141.040215px;}
.y56{bottom:142.453033px;}
.y24{bottom:142.591953px;}
.y1ac{bottom:143.238739px;}
.y67{bottom:143.420986px;}
.y88{bottom:143.427738px;}
.ya8{bottom:143.434490px;}
.y1f8{bottom:149.843571px;}
.y12f{bottom:150.291000px;}
.y12e{bottom:150.327300px;}
.y130{bottom:150.334053px;}
.yed{bottom:153.408302px;}
.y22c{bottom:154.349533px;}
.y1c1{bottom:154.912216px;}
.y242{bottom:156.101555px;}
.y55{bottom:159.709785px;}
.y23{bottom:159.848705px;}
.y1ab{bottom:160.495480px;}
.y66{bottom:160.677738px;}
.y87{bottom:160.684490px;}
.ya7{bottom:160.691231px;}
.y1f7{bottom:163.715561px;}
.y12d{bottom:167.570549px;}
.y22b{bottom:168.221535px;}
.yd4{bottom:168.437553px;}
.yec{bottom:171.000298px;}
.y16b{bottom:171.191994px;}
.y17f{bottom:171.199946px;}
.y14f{bottom:171.201607px;}
.y15d{bottom:171.213600px;}
.y15a{bottom:171.213612px;}
.y165{bottom:171.225617px;}
.y167{bottom:171.225628px;}
.y241{bottom:174.773552px;}
.y54{bottom:176.966537px;}
.y1f6{bottom:177.587563px;}
.y1aa{bottom:177.752232px;}
.y65{bottom:177.934490px;}
.y86{bottom:177.941231px;}
.ya6{bottom:177.947983px;}
.y16d{bottom:178.707741px;}
.y150{bottom:180.201607px;}
.y15b{bottom:180.213612px;}
.y166{bottom:180.225617px;}
.y22a{bottom:182.093536px;}
.y1c0{bottom:182.584213px;}
.y12c{bottom:184.827300px;}
.yeb{bottom:188.592304px;}
.y240{bottom:191.398796px;}
.y1f5{bottom:191.459564px;}
.y53{bottom:194.223290px;}
.y1a9{bottom:195.008995px;}
.y22{bottom:195.098694px;}
.y64{bottom:195.191231px;}
.y85{bottom:195.197983px;}
.ya5{bottom:195.204735px;}
.y229{bottom:195.965538px;}
.y1bf{bottom:196.456215px;}
.y180{bottom:201.528004px;}
.y12b{bottom:202.077300px;}
.y1f4{bottom:205.331566px;}
.yea{bottom:206.184311px;}
.y178{bottom:207.467991px;}
.y182{bottom:207.481953px;}
.y228{bottom:209.837540px;}
.y23f{bottom:210.070793px;}
.y52{bottom:211.480042px;}
.y1a8{bottom:212.265724px;}
.y63{bottom:212.447983px;}
.y84{bottom:212.454735px;}
.ya4{bottom:212.461487px;}
.y17b{bottom:216.803990px;}
.y1f3{bottom:219.203568px;}
.y129{bottom:219.291000px;}
.y128{bottom:219.327300px;}
.y12a{bottom:219.334053px;}
.y17d{bottom:222.757504px;}
.y227{bottom:223.709541px;}
.ye9{bottom:223.776306px;}
.y1be{bottom:224.128212px;}
.yd3{bottom:227.437775px;}
.y51{bottom:228.736794px;}
.y1a7{bottom:229.522476px;}
.y62{bottom:229.704735px;}
.y83{bottom:229.711487px;}
.ya3{bottom:229.718239px;}
.y1f2{bottom:233.075569px;}
.y23e{bottom:233.564552px;}
.y127{bottom:236.570549px;}
.y226{bottom:237.581543px;}
.ye8{bottom:241.368300px;}
.yd2{bottom:244.694527px;}
.y50{bottom:245.993546px;}
.y1a6{bottom:246.779228px;}
.y1f1{bottom:246.947571px;}
.y61{bottom:246.961487px;}
.y82{bottom:246.968239px;}
.ya2{bottom:246.974991px;}
.y23d{bottom:247.436554px;}
.y21{bottom:248.950950px;}
.y225{bottom:251.453545px;}
.y1bd{bottom:251.800209px;}
.y126{bottom:253.827300px;}
.ye7{bottom:258.960297px;}
.y1f0{bottom:260.819572px;}
.yd1{bottom:261.951279px;}
.y4f{bottom:263.250275px;}
.y1a5{bottom:264.035980px;}
.y60{bottom:264.218239px;}
.y81{bottom:264.224991px;}
.y224{bottom:265.325546px;}
.y20{bottom:266.207703px;}
.y14d{bottom:268.017605px;}
.y151{bottom:268.029621px;}
.y23c{bottom:268.856552px;}
.y125{bottom:271.077300px;}
.y1ef{bottom:274.691574px;}
.y152{bottom:277.029621px;}
.ye6{bottom:277.104309px;}
.y223{bottom:279.197525px;}
.yd0{bottom:279.208031px;}
.y1bc{bottom:279.550209px;}
.y4e{bottom:280.507027px;}
.y1a4{bottom:281.292732px;}
.y5f{bottom:281.474991px;}
.ya1{bottom:282.224991px;}
.y23b{bottom:282.728554px;}
.y123{bottom:288.291000px;}
.y122{bottom:288.320549px;}
.y124{bottom:288.334053px;}
.y1ee{bottom:288.563576px;}
.y222{bottom:293.069527px;}
.ycf{bottom:296.464783px;}
.ye5{bottom:297.065552px;}
.y4d{bottom:297.763779px;}
.y1a3{bottom:298.549484px;}
.y80{bottom:299.474991px;}
.y1f{bottom:300.706947px;}
.y1ed{bottom:302.435554px;}
.y23a{bottom:304.148552px;}
.y121{bottom:305.577300px;}
.y221{bottom:306.941528px;}
.y1bb{bottom:310.762024px;}
.ye4{bottom:310.937553px;}
.yce{bottom:313.721535px;}
.y4c{bottom:315.020531px;}
.y1a2{bottom:315.806236px;}
.y1ec{bottom:316.307556px;}
.y5e{bottom:316.724991px;}
.y1e{bottom:317.963699px;}
.y239{bottom:318.020554px;}
.y220{bottom:320.813530px;}
.y120{bottom:322.820549px;}
.y1ba{bottom:324.634026px;}
.ya0{bottom:325.219940px;}
.y1eb{bottom:330.179558px;}
.ycd{bottom:330.978287px;}
.y4b{bottom:332.277283px;}
.y1a1{bottom:333.062988px;}
.y21f{bottom:334.685532px;}
.y1d{bottom:335.220450px;}
.y1b9{bottom:338.506027px;}
.y238{bottom:339.440552px;}
.y11f{bottom:340.077300px;}
.y9f{bottom:342.476692px;}
.y1ea{bottom:344.051559px;}
.ycc{bottom:348.235039px;}
.y21e{bottom:348.557533px;}
.y4a{bottom:349.534035px;}
.y1a0{bottom:350.319740px;}
.y7f{bottom:351.122841px;}
.y1c{bottom:352.477203px;}
.y237{bottom:353.312553px;}
.y11c{bottom:357.291000px;}
.y11b{bottom:357.313774px;}
.y11e{bottom:357.334053px;}
.y1e9{bottom:357.923561px;}
.y9e{bottom:359.733444px;}
.y21d{bottom:362.429535px;}
.y171{bottom:363.463940px;}
.y153{bottom:363.477604px;}
.y15f{bottom:363.489620px;}
.ye3{bottom:363.973045px;}
.ycb{bottom:365.491791px;}
.y1b8{bottom:366.262024px;}
.y49{bottom:366.790787px;}
.y19f{bottom:367.576492px;}
.y7e{bottom:368.379593px;}
.y1b{bottom:369.733955px;}
.y1e8{bottom:371.795563px;}
.y154{bottom:372.477604px;}
.y11a{bottom:374.570526px;}
.y21c{bottom:376.301537px;}
.y1b7{bottom:380.134026px;}
.ye2{bottom:381.229774px;}
.yca{bottom:382.748543px;}
.y48{bottom:384.047516px;}
.y19e{bottom:384.833221px;}
.y236{bottom:385.330765px;}
.y7d{bottom:385.636322px;}
.y1e7{bottom:385.667587px;}
.y1a{bottom:386.990707px;}
.y21b{bottom:390.173538px;}
.y119{bottom:391.827300px;}
.y9d{bottom:394.983444px;}
.ye1{bottom:398.486526px;}
.y1e6{bottom:399.539566px;}
.yc9{bottom:400.005295px;}
.y47{bottom:401.304291px;}
.y19d{bottom:402.089996px;}
.y235{bottom:402.587540px;}
.y7c{bottom:402.893097px;}
.y21a{bottom:404.045517px;}
.y19{bottom:404.247437px;}
.y1b6{bottom:407.890045px;}
.y118{bottom:409.077300px;}
.y1e5{bottom:413.411545px;}
.ye0{bottom:415.743300px;}
.yc8{bottom:417.262024px;}
.y219{bottom:417.917542px;}
.y46{bottom:418.561020px;}
.y19c{bottom:419.346725px;}
.y7b{bottom:420.149826px;}
.y18{bottom:421.504211px;}
.y1b5{bottom:421.762024px;}
.y115{bottom:426.291000px;}
.y114{bottom:426.321304px;}
.y117{bottom:426.334030px;}
.y1e4{bottom:427.283569px;}
.y218{bottom:431.789520px;}
.ydf{bottom:433.000031px;}
.yc7{bottom:434.518799px;}
.y1b4{bottom:435.634048px;}
.y45{bottom:435.817795px;}
.y19b{bottom:436.603500px;}
.y7a{bottom:437.406600px;}
.y234{bottom:437.837540px;}
.y9c{bottom:437.904007px;}
.y17{bottom:438.760941px;}
.y1e3{bottom:441.155548px;}
.y217{bottom:445.661545px;}
.y1b3{bottom:449.506027px;}
.yc6{bottom:451.775528px;}
.y142{bottom:452.209488px;}
.y44{bottom:453.074524px;}
.y19a{bottom:453.860229px;}
.y79{bottom:454.663330px;}
.y1e2{bottom:455.027573px;}
.y9b{bottom:455.160782px;}
.y16{bottom:456.017715px;}
.y145{bottom:457.596634px;}
.y176{bottom:458.910275px;}
.y155{bottom:458.925610px;}
.y160{bottom:458.937603px;}
.y216{bottom:459.533524px;}
.y146{bottom:462.573898px;}
.y149{bottom:462.575867px;}
.y1b2{bottom:463.378052px;}
.yde{bottom:468.250031px;}
.y144{bottom:468.284683px;}
.y1e1{bottom:468.899550px;}
.yc5{bottom:469.032303px;}
.y43{bottom:470.331299px;}
.y199{bottom:471.117004px;}
.y78{bottom:471.920105px;}
.y9a{bottom:472.417511px;}
.y15{bottom:473.274445px;}
.y215{bottom:473.405548px;}
.y1b1{bottom:477.250031px;}
.y1e0{bottom:482.771576px;}
.yc4{bottom:486.289032px;}
.y214{bottom:487.277527px;}
.y42{bottom:487.588028px;}
.y198{bottom:488.373734px;}
.y77{bottom:489.176834px;}
.y99{bottom:489.674286px;}
.y14{bottom:490.531219px;}
.y1df{bottom:496.643555px;}
.y113{bottom:497.941772px;}
.y233{bottom:501.137512px;}
.y213{bottom:501.149550px;}
.yc3{bottom:503.545807px;}
.y41{bottom:504.844803px;}
.y197{bottom:505.630463px;}
.y76{bottom:506.433563px;}
.y98{bottom:506.931015px;}
.y13{bottom:507.787949px;}
.y1de{bottom:510.515579px;}
.y232{bottom:515.009537px;}
.y212{bottom:515.021530px;}
.y112{bottom:515.198547px;}
.yc2{bottom:520.802536px;}
.y40{bottom:522.101532px;}
.ydd{bottom:522.236526px;}
.y196{bottom:522.887238px;}
.y75{bottom:523.690338px;}
.y97{bottom:524.187744px;}
.y1dd{bottom:524.429581px;}
.y12{bottom:525.044678px;}
.y211{bottom:528.893555px;}
.y111{bottom:532.455276px;}
.yc1{bottom:538.059265px;}
.y1dc{bottom:538.301559px;}
.y3f{bottom:539.358307px;}
.ydc{bottom:539.493300px;}
.y195{bottom:540.143967px;}
.y74{bottom:540.947067px;}
.y96{bottom:541.444519px;}
.y11{bottom:542.301453px;}
.y210{bottom:542.765533px;}
.y10c{bottom:544.459488px;}
.y10e{bottom:547.022415px;}
.y156{bottom:551.373593px;}
.y161{bottom:551.385632px;}
.y10b{bottom:551.972580px;}
.y110{bottom:551.992035px;}
.y1db{bottom:552.173584px;}
.yc0{bottom:555.316040px;}
.y3e{bottom:556.615036px;}
.y20f{bottom:556.637512px;}
.ydb{bottom:556.743300px;}
.y194{bottom:557.400742px;}
.y73{bottom:558.203842px;}
.y95{bottom:558.701248px;}
.y10{bottom:559.558182px;}
.y1da{bottom:566.045563px;}
.y10a{bottom:569.229309px;}
.y20e{bottom:570.509537px;}
.ybf{bottom:572.572769px;}
.y3d{bottom:573.871765px;}
.yda{bottom:573.993300px;}
.y193{bottom:574.657471px;}
.y72{bottom:575.460571px;}
.y94{bottom:575.958023px;}
.yf{bottom:576.814957px;}
.y1d9{bottom:579.917587px;}
.y20d{bottom:584.381515px;}
.y109{bottom:586.486084px;}
.ybe{bottom:589.829544px;}
.y3c{bottom:591.128540px;}
.yd9{bottom:591.243300px;}
.y192{bottom:591.914246px;}
.y71{bottom:592.717346px;}
.y93{bottom:593.214752px;}
.y1d8{bottom:593.789566px;}
.ye{bottom:594.071686px;}
.y20c{bottom:598.253540px;}
.y108{bottom:603.742813px;}
.ybd{bottom:607.086273px;}
.y1d7{bottom:607.661545px;}
.y3b{bottom:608.385269px;}
.y191{bottom:609.170975px;}
.y70{bottom:609.974075px;}
.y92{bottom:610.471527px;}
.yd{bottom:611.328461px;}
.y20b{bottom:612.125519px;}
.y1d6{bottom:621.533569px;}
.ybc{bottom:624.343048px;}
.y3a{bottom:625.642044px;}
.y20a{bottom:625.997543px;}
.y190{bottom:626.427750px;}
.y6f{bottom:627.230850px;}
.y91{bottom:627.728256px;}
.yc{bottom:628.585190px;}
.y135{bottom:629.617493px;}
.y13c{bottom:632.210495px;}
.y1d5{bottom:635.405548px;}
.y13b{bottom:637.207031px;}
.y140{bottom:637.612061px;}
.y209{bottom:639.869522px;}
.ybb{bottom:641.599777px;}
.y39{bottom:642.898773px;}
.y18f{bottom:643.684479px;}
.y15c{bottom:643.821575px;}
.y157{bottom:643.821621px;}
.y162{bottom:643.833615px;}
.y6e{bottom:644.487579px;}
.y90{bottom:644.985031px;}
.yb{bottom:645.841965px;}
.y137{bottom:647.587050px;}
.y13e{bottom:647.588699px;}
.y1d4{bottom:649.277573px;}
.y208{bottom:653.741547px;}
.y13f{bottom:655.857513px;}
.y13a{bottom:657.050537px;}
.yba{bottom:658.856552px;}
.y38{bottom:660.155548px;}
.y18e{bottom:660.941254px;}
.y138{bottom:662.043228px;}
.y8f{bottom:662.241760px;}
.ya{bottom:663.098694px;}
.y1d3{bottom:663.149550px;}
.y207{bottom:667.613525px;}
.yb9{bottom:676.113281px;}
.y1d2{bottom:677.021576px;}
.y37{bottom:677.412277px;}
.y18d{bottom:678.197983px;}
.y6d{bottom:679.737579px;}
.y206{bottom:681.485550px;}
.y103{bottom:685.808990px;}
.y1d1{bottom:690.893555px;}
.y106{bottom:690.955032px;}
.y102{bottom:690.967026px;}
.y107{bottom:690.967072px;}
.yb8{bottom:693.370056px;}
.y36{bottom:694.669052px;}
.y205{bottom:695.357529px;}
.y18c{bottom:695.454758px;}
.y8e{bottom:697.491760px;}
.yfb{bottom:704.466019px;}
.y1d0{bottom:704.765579px;}
.yfd{bottom:707.030411px;}
.y204{bottom:709.229553px;}
.yb7{bottom:710.626785px;}
.y9{bottom:710.837723px;}
.y35{bottom:711.925781px;}
.yfa{bottom:711.986526px;}
.y101{bottom:712.000031px;}
.yff{bottom:712.012207px;}
.y18b{bottom:712.711487px;}
.y6c{bottom:715.737579px;}
.y1cf{bottom:718.637558px;}
.y203{bottom:723.101532px;}
.y8{bottom:724.709702px;}
.y27{bottom:724.767403px;}
.yb6{bottom:727.883514px;}
.y34{bottom:729.182556px;}
.yf9{bottom:729.243300px;}
.y18a{bottom:729.968216px;}
.y8d{bottom:733.491760px;}
.y158{bottom:736.269604px;}
.y163{bottom:736.281596px;}
.y168{bottom:736.281643px;}
.y202{bottom:736.973557px;}
.yb5{bottom:745.140289px;}
.y33{bottom:746.439285px;}
.yf8{bottom:746.466293px;}
.y189{bottom:747.224991px;}
.y1ce{bottom:750.812531px;}
.y201{bottom:750.845535px;}
.yb4{bottom:762.397018px;}
.y7{bottom:762.478180px;}
.y32{bottom:763.696014px;}
.yf7{bottom:763.723022px;}
.y200{bottom:764.717514px;}
.y1ff{bottom:778.589539px;}
.yb3{bottom:779.653748px;}
.y31{bottom:780.952789px;}
.yf6{bottom:780.979797px;}
.y6{bottom:781.231200px;}
.y188{bottom:782.475037px;}
.y1fe{bottom:792.461517px;}
.yb2{bottom:796.910522px;}
.y30{bottom:798.209564px;}
.yf5{bottom:798.236572px;}
.y1cd{bottom:806.333496px;}
.yb1{bottom:814.167297px;}
.y2f{bottom:815.466248px;}
.yf4{bottom:815.493256px;}
.y1cc{bottom:820.205566px;}
.y5{bottom:823.663147px;}
.y159{bottom:828.717587px;}
.y164{bottom:828.729580px;}
.y169{bottom:828.729672px;}
.yb0{bottom:831.424072px;}
.y2e{bottom:832.723022px;}
.y1cb{bottom:834.077545px;}
.y4{bottom:846.166168px;}
.y1ca{bottom:847.949524px;}
.yaf{bottom:848.680756px;}
.y2d{bottom:849.979797px;}
.y187{bottom:849.986572px;}
.y1c9{bottom:861.821503px;}
.yae{bottom:865.937531px;}
.y2c{bottom:867.236572px;}
.y186{bottom:867.243256px;}
.y1c8{bottom:875.693573px;}
.y2b{bottom:884.493256px;}
.y1c7{bottom:889.565552px;}
.y3{bottom:899.785217px;}
.yad{bottom:901.187531px;}
.y185{bottom:901.707000px;}
.y2a{bottom:901.750031px;}
.y1c6{bottom:903.437531px;}
.y2{bottom:926.117157px;}
.y173{bottom:939.068972px;}
.yf3{bottom:939.068973px;}
.y5c{bottom:939.188973px;}
.y172{bottom:939.189122px;}
.yf2{bottom:939.189123px;}
.y5b{bottom:939.189148px;}
.y14b{bottom:939.189198px;}
.y28{bottom:939.189210px;}
.y5d{bottom:939.189240px;}
.y29{bottom:939.989136px;}
.h34{height:7.515000px;}
.h21{height:9.600000px;}
.h44{height:10.530000px;}
.h3b{height:11.475000px;}
.h49{height:11.595000px;}
.h47{height:12.075000px;}
.h41{height:14.265000px;}
.h46{height:14.817600px;}
.h3e{height:14.940000px;}
.h48{height:16.224000px;}
.h1c{height:16.950000px;}
.h37{height:17.476500px;}
.h17{height:17.603838px;}
.h18{height:19.274923px;}
.h1f{height:19.349999px;}
.h15{height:19.351500px;}
.h2c{height:19.503029px;}
.h39{height:21.940800px;}
.h19{height:22.012190px;}
.h3f{height:22.713600px;}
.h28{height:25.148642px;}
.h31{height:26.066454px;}
.h2a{height:27.303911px;}
.h30{height:27.463583px;}
.h2e{height:28.500000px;}
.h51{height:31.180800px;}
.h29{height:31.193441px;}
.h35{height:32.352000px;}
.h2f{height:37.238239px;}
.h22{height:38.435794px;}
.h1a{height:38.549846px;}
.h1e{height:39.006058px;}
.h32{height:39.234163px;}
.h3c{height:39.506380px;}
.h45{height:39.506386px;}
.h4a{height:39.507027px;}
.h38{height:39.994179px;}
.h42{height:39.994224px;}
.h2{height:42.048000px;}
.h3{height:42.672000px;}
.h2b{height:42.964556px;}
.h27{height:44.099999px;}
.ha{height:44.544000px;}
.hb{height:45.456000px;}
.h16{height:46.965036px;}
.h20{height:46.965219px;}
.h1d{height:47.284014px;}
.h33{height:49.104000px;}
.h4e{height:50.212599px;}
.h4b{height:50.380782px;}
.h8{height:52.896000px;}
.he{height:53.160000px;}
.h40{height:53.557767px;}
.h3a{height:53.557813px;}
.h3d{height:53.569165px;}
.h36{height:53.569211px;}
.hc{height:53.640000px;}
.h7{height:56.373000px;}
.h5{height:58.271031px;}
.h4f{height:58.271210px;}
.h6{height:58.283112px;}
.h50{height:58.298309px;}
.hd{height:58.311000px;}
.h4d{height:58.364833px;}
.h25{height:58.365016px;}
.h1b{height:59.827310px;}
.hf{height:63.617627px;}
.h24{height:63.617718px;}
.h26{height:63.644685px;}
.h4c{height:63.644726px;}
.h23{height:63.644730px;}
.h11{height:63.644732px;}
.h13{height:63.725659px;}
.h14{height:63.752759px;}
.h10{height:64.076855px;}
.h9{height:65.274000px;}
.h4{height:69.108000px;}
.h2d{height:71.111898px;}
.h12{height:81.291012px;}
.h43{height:96.911981px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.wa{width:8.055000px;}
.w6{width:8.940000px;}
.w7{width:8.941500px;}
.w5{width:13.770000px;}
.wc{width:14.099999px;}
.w4{width:14.355000px;}
.wb{width:14.550000px;}
.wd{width:14.698500px;}
.we{width:16.200000px;}
.w3{width:69.436500px;}
.w2{width:72.178499px;}
.w9{width:172.259995px;}
.w8{width:246.690010px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xf{left:7.075470px;}
.x53{left:9.854552px;}
.xb{left:10.966352px;}
.x50{left:14.487625px;}
.x5c{left:16.159813px;}
.x10{left:31.216198px;}
.xd{left:33.700796px;}
.x29{left:37.742844px;}
.x25{left:49.676697px;}
.x32{left:58.204651px;}
.x2{left:70.157553px;}
.x3{left:74.529448px;}
.x35{left:79.157553px;}
.x9{left:85.490999px;}
.x5{left:87.171902px;}
.x62{left:91.421550px;}
.xa{left:92.569650px;}
.x61{left:95.669552px;}
.x36{left:102.923835px;}
.xc{left:105.461998px;}
.x12{left:108.398998px;}
.x13{left:115.477947px;}
.x52{left:120.586499px;}
.x14{left:122.754295px;}
.x51{left:129.582150px;}
.x37{left:130.931842px;}
.x56{left:139.041001px;}
.x34{left:140.973015px;}
.x11{left:144.931355px;}
.x54{left:148.041905px;}
.x1a{left:151.206000px;}
.xe{left:157.670998px;}
.x38{left:158.675834px;}
.x1b{left:160.145702px;}
.x55{left:161.913895px;}
.x58{left:170.507996px;}
.x39{left:176.807841px;}
.x57{left:179.503945px;}
.x7{left:187.096355px;}
.x5b{left:189.115506px;}
.x3a{left:190.679843px;}
.x59{left:198.191712px;}
.x4{left:204.427023px;}
.x22{left:206.182503px;}
.x2f{left:208.275169px;}
.x5a{left:212.063691px;}
.x23{left:216.871650px;}
.x3b{left:222.143840px;}
.x5e{left:226.843507px;}
.x27{left:232.382996px;}
.x5d{left:236.704491px;}
.x28{left:240.034012px;}
.x30{left:243.397499px;}
.x24{left:247.494827px;}
.x8{left:248.749819px;}
.x2a{left:252.146690px;}
.x3c{left:253.607837px;}
.x26{left:255.143852px;}
.x31{left:261.992706px;}
.x5f{left:263.179505px;}
.x3d{left:271.199832px;}
.x2b{left:272.731018px;}
.x2c{left:284.938042px;}
.x2e{left:300.463509px;}
.x3e{left:302.663829px;}
.x3f{left:316.535830px;}
.x2d{left:328.107033px;}
.x40{left:334.127848px;}
.x41{left:347.999827px;}
.x15{left:354.965996px;}
.x16{left:362.045105px;}
.x42{left:365.591845px;}
.x17{left:368.736443px;}
.x33{left:370.654198px;}
.x43{left:379.463847px;}
.x1c{left:380.613007px;}
.x6{left:381.990784px;}
.x1d{left:389.552994px;}
.x44{left:397.055819px;}
.x45{left:410.927844px;}
.x1e{left:428.906982px;}
.x1f{left:437.847427px;}
.x46{left:442.391818px;}
.x47{left:459.983859px;}
.x48{left:473.855837px;}
.x60{left:477.341995px;}
.x20{left:483.859497px;}
.x1{left:485.858414px;}
.x49{left:491.447833px;}
.x21{left:492.799484px;}
.x4a{left:505.319857px;}
.x4b{left:522.911853px;}
.x4c{left:532.554004px;}
.x4d{left:540.567157px;}
.x4f{left:549.160479px;}
.x4e{left:558.159152px;}
.x18{left:579.957000px;}
.x19{left:588.897583px;}
@media print{
.va{vertical-align:-17.066650pt;}
.v4{vertical-align:-12.618652pt;}
.v5{vertical-align:-8.878906pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.920573pt;}
.v8{vertical-align:15.360514pt;}
.v3{vertical-align:17.760417pt;}
.v1{vertical-align:20.266606pt;}
.v2{vertical-align:28.610678pt;}
.v7{vertical-align:35.483073pt;}
.v9{vertical-align:46.549316pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.405333pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.139852pt;}
.ls2e{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:-0.035635pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000003pt;}
.ls1d{letter-spacing:0.000007pt;}
.ls10{letter-spacing:0.000008pt;}
.ls11{letter-spacing:0.000011pt;}
.ls19{letter-spacing:0.000015pt;}
.lsb{letter-spacing:0.000017pt;}
.ls7{letter-spacing:0.000024pt;}
.ls1e{letter-spacing:0.000028pt;}
.ls12{letter-spacing:0.000035pt;}
.ls1{letter-spacing:0.000039pt;}
.lsd{letter-spacing:0.000051pt;}
.ls8{letter-spacing:0.000065pt;}
.ls5{letter-spacing:0.000070pt;}
.ls13{letter-spacing:0.006952pt;}
.ls14{letter-spacing:0.020160pt;}
.ls2b{letter-spacing:0.418133pt;}
.ls22{letter-spacing:0.597254pt;}
.ls24{letter-spacing:0.597331pt;}
.ls20{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.597371pt;}
.ls2d{letter-spacing:0.601563pt;}
.ls28{letter-spacing:0.601603pt;}
.ls23{letter-spacing:0.601644pt;}
.ls29{letter-spacing:0.605876pt;}
.ls1a{letter-spacing:0.657095pt;}
.ls1f{letter-spacing:0.709333pt;}
.ls26{letter-spacing:1.834473pt;}
.ls21{letter-spacing:1.877356pt;}
.ls2c{letter-spacing:1.877441pt;}
.ls1c{letter-spacing:2.096464pt;}
.ls1b{letter-spacing:2.096545pt;}
.ls27{letter-spacing:2.176107pt;}
.ls31{letter-spacing:2.205892pt;}
.ls15{letter-spacing:2.537781pt;}
.lsf{letter-spacing:2.539896pt;}
.lse{letter-spacing:2.539935pt;}
.lsc{letter-spacing:2.539940pt;}
.ls17{letter-spacing:2.546977pt;}
.ls0{letter-spacing:2.986667pt;}
.ls35{letter-spacing:3.157388pt;}
.ls32{letter-spacing:3.161621pt;}
.ls38{letter-spacing:3.886882pt;}
.ls25{letter-spacing:4.437174pt;}
.ls30{letter-spacing:4.782959pt;}
.ls37{letter-spacing:8.106771pt;}
.ls36{letter-spacing:9.130697pt;}
.ls16{letter-spacing:11.253170pt;}
.ls18{letter-spacing:11.253252pt;}
.ls2a{letter-spacing:11.477376pt;}
.wsaf{word-spacing:-50.666667pt;}
.wsd5{word-spacing:-13.376000pt;}
.ws4{word-spacing:-12.666667pt;}
.wsa3{word-spacing:-12.261333pt;}
.ws8a{word-spacing:-12.058667pt;}
.ws5{word-spacing:-11.850667pt;}
.wsf0{word-spacing:-11.264000pt;}
.wsbf{word-spacing:-10.666667pt;}
.ws111{word-spacing:-10.624000pt;}
.wsb7{word-spacing:-10.538667pt;}
.ws145{word-spacing:-10.453333pt;}
.ws2{word-spacing:-10.234667pt;}
.ws78{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.728000pt;}
.wsa2{word-spacing:-8.866667pt;}
.ws0{word-spacing:-8.362667pt;}
.wsdf{word-spacing:-8.192000pt;}
.wsf1{word-spacing:-7.884800pt;}
.wsc7{word-spacing:-7.466667pt;}
.ws1{word-spacing:-7.341600pt;}
.ws86{word-spacing:-6.333333pt;}
.wsc9{word-spacing:-5.333333pt;}
.ws19{word-spacing:-3.388680pt;}
.ws8{word-spacing:-2.218667pt;}
.ws95{word-spacing:-1.706667pt;}
.ws8e{word-spacing:-0.962667pt;}
.ws51{word-spacing:-0.912000pt;}
.ws121{word-spacing:-0.896000pt;}
.ws17{word-spacing:-0.760000pt;}
.ws124{word-spacing:-0.725333pt;}
.ws13a{word-spacing:-0.682667pt;}
.ws3f{word-spacing:-0.658667pt;}
.ws6b{word-spacing:-0.608000pt;}
.wsfc{word-spacing:-0.597333pt;}
.ws9f{word-spacing:-0.557333pt;}
.ws133{word-spacing:-0.512000pt;}
.ws84{word-spacing:-0.506667pt;}
.ws10a{word-spacing:-0.469333pt;}
.wsbd{word-spacing:-0.456000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws52{word-spacing:-0.405333pt;}
.wsb8{word-spacing:-0.354667pt;}
.ws115{word-spacing:-0.341333pt;}
.ws88{word-spacing:-0.304000pt;}
.ws129{word-spacing:-0.256000pt;}
.wsee{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.202667pt;}
.wsed{word-spacing:-0.170667pt;}
.ws98{word-spacing:-0.152000pt;}
.wsec{word-spacing:-0.128000pt;}
.ws3c{word-spacing:-0.101333pt;}
.ws103{word-spacing:-0.085333pt;}
.ws9{word-spacing:-0.057982pt;}
.wsb4{word-spacing:-0.050667pt;}
.wsc2{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws104{word-spacing:0.042667pt;}
.ws74{word-spacing:0.050667pt;}
.wsff{word-spacing:0.085333pt;}
.ws89{word-spacing:0.101333pt;}
.wsef{word-spacing:0.128000pt;}
.ws90{word-spacing:0.202667pt;}
.ws10f{word-spacing:0.213333pt;}
.wsba{word-spacing:0.253333pt;}
.ws13c{word-spacing:0.298667pt;}
.wsd0{word-spacing:0.304000pt;}
.ws31{word-spacing:0.354667pt;}
.ws11f{word-spacing:0.384000pt;}
.ws85{word-spacing:0.405333pt;}
.ws13d{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.456000pt;}
.ws46{word-spacing:0.506667pt;}
.ws136{word-spacing:0.554667pt;}
.ws43{word-spacing:0.557333pt;}
.wse8{word-spacing:0.597333pt;}
.ws9d{word-spacing:0.608000pt;}
.ws139{word-spacing:0.640000pt;}
.ws13{word-spacing:0.658667pt;}
.ws130{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.709333pt;}
.wsa0{word-spacing:0.760000pt;}
.wse9{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.810667pt;}
.ws11c{word-spacing:0.853333pt;}
.ws12{word-spacing:0.861333pt;}
.ws83{word-spacing:0.912000pt;}
.ws7b{word-spacing:0.962667pt;}
.ws147{word-spacing:0.981333pt;}
.ws75{word-spacing:1.013333pt;}
.ws143{word-spacing:1.024000pt;}
.ws25{word-spacing:1.114667pt;}
.ws122{word-spacing:1.152000pt;}
.wscb{word-spacing:1.165333pt;}
.ws119{word-spacing:1.194667pt;}
.wsbc{word-spacing:1.216000pt;}
.ws10{word-spacing:1.266667pt;}
.ws105{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.317333pt;}
.wsfb{word-spacing:1.322667pt;}
.ws107{word-spacing:1.365333pt;}
.ws70{word-spacing:1.368000pt;}
.ws10b{word-spacing:1.408000pt;}
.ws7c{word-spacing:1.418667pt;}
.ws12d{word-spacing:1.450667pt;}
.ws6e{word-spacing:1.469333pt;}
.ws55{word-spacing:1.520000pt;}
.ws82{word-spacing:1.570667pt;}
.wsf8{word-spacing:1.578667pt;}
.ws92{word-spacing:1.621333pt;}
.wsaa{word-spacing:1.672000pt;}
.wse6{word-spacing:1.706667pt;}
.ws6c{word-spacing:1.722667pt;}
.ws11d{word-spacing:1.749333pt;}
.ws126{word-spacing:1.792000pt;}
.ws28{word-spacing:1.824000pt;}
.ws13b{word-spacing:1.834667pt;}
.wsd3{word-spacing:1.874667pt;}
.ws112{word-spacing:1.877333pt;}
.ws4e{word-spacing:1.925333pt;}
.ws125{word-spacing:1.962667pt;}
.ws36{word-spacing:1.976000pt;}
.ws11a{word-spacing:2.005333pt;}
.wsce{word-spacing:2.026667pt;}
.ws144{word-spacing:2.048000pt;}
.ws2d{word-spacing:2.077333pt;}
.ws4a{word-spacing:2.128000pt;}
.wsf5{word-spacing:2.175996pt;}
.ws68{word-spacing:2.178667pt;}
.ws138{word-spacing:2.218667pt;}
.wsab{word-spacing:2.229333pt;}
.wsf9{word-spacing:2.261333pt;}
.ws7d{word-spacing:2.280000pt;}
.ws12b{word-spacing:2.304000pt;}
.ws2e{word-spacing:2.330667pt;}
.ws93{word-spacing:2.381333pt;}
.ws101{word-spacing:2.389333pt;}
.ws110{word-spacing:2.474667pt;}
.ws79{word-spacing:2.482667pt;}
.ws137{word-spacing:2.517333pt;}
.wscd{word-spacing:2.533333pt;}
.ws30{word-spacing:2.583995pt;}
.wsea{word-spacing:2.602667pt;}
.ws8d{word-spacing:2.634667pt;}
.ws61{word-spacing:2.685333pt;}
.ws146{word-spacing:2.730667pt;}
.ws10c{word-spacing:2.773333pt;}
.ws42{word-spacing:2.786667pt;}
.ws13e{word-spacing:2.816000pt;}
.ws3a{word-spacing:2.837333pt;}
.ws123{word-spacing:2.858667pt;}
.ws1c{word-spacing:2.888000pt;}
.ws80{word-spacing:2.938667pt;}
.ws109{word-spacing:2.944000pt;}
.ws12f{word-spacing:2.986667pt;}
.ws38{word-spacing:2.989333pt;}
.ws14a{word-spacing:3.029329pt;}
.ws5c{word-spacing:3.040000pt;}
.ws7f{word-spacing:3.090667pt;}
.ws108{word-spacing:3.114667pt;}
.ws27{word-spacing:3.141333pt;}
.ws91{word-spacing:3.192000pt;}
.ws40{word-spacing:3.242667pt;}
.wse3{word-spacing:3.285333pt;}
.ws23{word-spacing:3.293333pt;}
.ws8b{word-spacing:3.344000pt;}
.ws6a{word-spacing:3.394667pt;}
.ws13f{word-spacing:3.413333pt;}
.ws2f{word-spacing:3.445333pt;}
.ws120{word-spacing:3.456000pt;}
.wsd4{word-spacing:3.496000pt;}
.ws142{word-spacing:3.498667pt;}
.wsa9{word-spacing:3.546667pt;}
.ws57{word-spacing:3.597328pt;}
.ws100{word-spacing:3.626667pt;}
.ws24{word-spacing:3.648000pt;}
.wse1{word-spacing:3.669329pt;}
.ws3b{word-spacing:3.698667pt;}
.ws114{word-spacing:3.712000pt;}
.ws6f{word-spacing:3.749333pt;}
.ws12a{word-spacing:3.754667pt;}
.ws118{word-spacing:3.840000pt;}
.ws29{word-spacing:3.850667pt;}
.ws14c{word-spacing:3.925333pt;}
.ws60{word-spacing:3.952000pt;}
.ws7e{word-spacing:4.002667pt;}
.wse7{word-spacing:4.010667pt;}
.ws67{word-spacing:4.053333pt;}
.wsfa{word-spacing:4.096000pt;}
.ws44{word-spacing:4.104000pt;}
.ws37{word-spacing:4.154667pt;}
.ws54{word-spacing:4.205333pt;}
.ws14{word-spacing:4.256000pt;}
.wsf6{word-spacing:4.266667pt;}
.ws26{word-spacing:4.306667pt;}
.ws132{word-spacing:4.309333pt;}
.ws14b{word-spacing:4.352000pt;}
.ws6d{word-spacing:4.357328pt;}
.wsd7{word-spacing:4.408000pt;}
.ws50{word-spacing:4.458667pt;}
.ws48{word-spacing:4.509333pt;}
.ws116{word-spacing:4.522667pt;}
.wsad{word-spacing:4.560000pt;}
.wsfd{word-spacing:4.608000pt;}
.wsf7{word-spacing:4.650667pt;}
.wsb6{word-spacing:4.661333pt;}
.ws135{word-spacing:4.693333pt;}
.ws3e{word-spacing:4.712000pt;}
.ws63{word-spacing:4.762667pt;}
.wse2{word-spacing:4.778667pt;}
.ws9b{word-spacing:4.813333pt;}
.wscc{word-spacing:4.864000pt;}
.ws128{word-spacing:4.906667pt;}
.ws15{word-spacing:4.914667pt;}
.ws1a{word-spacing:4.965333pt;}
.ws69{word-spacing:5.016000pt;}
.ws81{word-spacing:5.066667pt;}
.wse5{word-spacing:5.077333pt;}
.ws1d{word-spacing:5.117333pt;}
.ws66{word-spacing:5.168000pt;}
.wsae{word-spacing:5.218667pt;}
.ws127{word-spacing:5.248000pt;}
.wsd2{word-spacing:5.269333pt;}
.wseb{word-spacing:5.290667pt;}
.wsb3{word-spacing:5.320000pt;}
.wse4{word-spacing:5.333333pt;}
.ws47{word-spacing:5.370667pt;}
.ws10e{word-spacing:5.418667pt;}
.ws53{word-spacing:5.421333pt;}
.ws20{word-spacing:5.472000pt;}
.ws22{word-spacing:5.522667pt;}
.ws12c{word-spacing:5.546667pt;}
.ws106{word-spacing:5.589333pt;}
.ws72{word-spacing:5.624000pt;}
.wsdc{word-spacing:5.674667pt;}
.ws102{word-spacing:5.717333pt;}
.ws33{word-spacing:5.725333pt;}
.ws117{word-spacing:5.760000pt;}
.ws45{word-spacing:5.776000pt;}
.ws131{word-spacing:5.802667pt;}
.ws65{word-spacing:5.826667pt;}
.ws5d{word-spacing:5.877333pt;}
.wsac{word-spacing:5.928000pt;}
.ws11e{word-spacing:6.016000pt;}
.ws35{word-spacing:6.029333pt;}
.ws4f{word-spacing:6.080000pt;}
.ws141{word-spacing:6.101333pt;}
.ws4d{word-spacing:6.130667pt;}
.ws3d{word-spacing:6.181333pt;}
.ws113{word-spacing:6.229333pt;}
.wsd{word-spacing:6.232000pt;}
.ws77{word-spacing:6.282667pt;}
.wsf4{word-spacing:6.314667pt;}
.wsda{word-spacing:6.333333pt;}
.wse{word-spacing:6.384000pt;}
.ws18{word-spacing:6.434667pt;}
.ws2a{word-spacing:6.485333pt;}
.ws49{word-spacing:6.536000pt;}
.wsf2{word-spacing:6.570667pt;}
.ws62{word-spacing:6.586667pt;}
.ws58{word-spacing:6.637333pt;}
.wscf{word-spacing:6.688000pt;}
.wsd8{word-spacing:6.738667pt;}
.ws134{word-spacing:6.741333pt;}
.ws64{word-spacing:6.840000pt;}
.ws1e{word-spacing:6.890667pt;}
.ws56{word-spacing:6.941333pt;}
.ws97{word-spacing:6.992000pt;}
.ws59{word-spacing:7.042667pt;}
.ws87{word-spacing:7.093333pt;}
.ws5e{word-spacing:7.144000pt;}
.wsf{word-spacing:7.194667pt;}
.ws1b{word-spacing:7.245333pt;}
.ws4c{word-spacing:7.296000pt;}
.ws94{word-spacing:7.346667pt;}
.ws1f{word-spacing:7.397333pt;}
.ws32{word-spacing:7.448000pt;}
.ws11b{word-spacing:7.466667pt;}
.wsca{word-spacing:7.498667pt;}
.ws34{word-spacing:7.549333pt;}
.ws12e{word-spacing:7.552000pt;}
.wsfe{word-spacing:7.594667pt;}
.wsa{word-spacing:7.650667pt;}
.wsc{word-spacing:7.853333pt;}
.ws73{word-spacing:7.954667pt;}
.ws8c{word-spacing:8.005333pt;}
.ws149{word-spacing:8.021333pt;}
.wsa1{word-spacing:8.056000pt;}
.wsd9{word-spacing:8.106667pt;}
.wsdd{word-spacing:8.157333pt;}
.ws5b{word-spacing:8.309333pt;}
.ws9e{word-spacing:8.410667pt;}
.ws5a{word-spacing:8.461333pt;}
.wsf3{word-spacing:8.533333pt;}
.ws9c{word-spacing:8.664000pt;}
.ws96{word-spacing:8.714667pt;}
.ws140{word-spacing:8.746667pt;}
.ws99{word-spacing:8.765333pt;}
.ws16{word-spacing:8.816000pt;}
.wsb5{word-spacing:8.866667pt;}
.ws5f{word-spacing:8.968000pt;}
.ws148{word-spacing:9.088000pt;}
.wsd6{word-spacing:9.120000pt;}
.wsd1{word-spacing:9.272000pt;}
.wse0{word-spacing:9.322667pt;}
.ws21{word-spacing:9.373333pt;}
.wsb9{word-spacing:9.525333pt;}
.wsde{word-spacing:9.677333pt;}
.wsb{word-spacing:9.728000pt;}
.ws39{word-spacing:10.032000pt;}
.ws41{word-spacing:10.589333pt;}
.ws71{word-spacing:10.944000pt;}
.ws10d{word-spacing:11.008000pt;}
.ws2b{word-spacing:11.146667pt;}
.wsb2{word-spacing:11.151866pt;}
.wsb0{word-spacing:11.202485pt;}
.wsdb{word-spacing:11.805333pt;}
.wsbe{word-spacing:12.261333pt;}
.ws9a{word-spacing:12.717333pt;}
.wsbb{word-spacing:13.933333pt;}
.ws11{word-spacing:14.186667pt;}
.wsb1{word-spacing:20.377452pt;}
.ws14d{word-spacing:64.938667pt;}
.wsc5{word-spacing:115.370605pt;}
.wsc4{word-spacing:121.898660pt;}
.wsc8{word-spacing:158.037435pt;}
.wsc6{word-spacing:168.704102pt;}
.wsa8{word-spacing:169.514575pt;}
.wsa5{word-spacing:169.514648pt;}
.wsa6{word-spacing:169.514652pt;}
.wsa7{word-spacing:169.514811pt;}
.wsa4{word-spacing:229.973315pt;}
.wsc3{word-spacing:243.370605pt;}
.wsc0{word-spacing:1478.485204pt;}
.wsc1{word-spacing:1478.485285pt;}
._20{margin-left:-21.045323pt;}
._19{margin-left:-17.610453pt;}
._21{margin-left:-16.009093pt;}
._13{margin-left:-14.105610pt;}
._17{margin-left:-12.837012pt;}
._11{margin-left:-11.751178pt;}
._15{margin-left:-10.807191pt;}
._10{margin-left:-9.170660pt;}
._1f{margin-left:-7.935990pt;}
._f{margin-left:-6.978698pt;}
._9{margin-left:-4.834133pt;}
._1{margin-left:-3.460267pt;}
._6{margin-left:-2.423467pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.096000pt;}
._2{width:2.275733pt;}
._a{width:3.694103pt;}
._5{width:5.554688pt;}
._7{width:6.536006pt;}
._8{width:7.701340pt;}
._16{width:8.897546pt;}
._14{width:9.935732pt;}
._d{width:11.109552pt;}
._c{width:12.354129pt;}
._e{width:14.004257pt;}
._12{width:15.230391pt;}
._18{width:18.317575pt;}
._36{width:20.078934pt;}
._4{width:36.018673pt;}
._38{width:50.005324pt;}
._37{width:64.938657pt;}
._29{width:87.338681pt;}
._2e{width:136.704020pt;}
._22{width:146.176020pt;}
._2f{width:147.370605pt;}
._1b{width:183.722741pt;}
._24{width:185.301272pt;}
._35{width:187.898568pt;}
._2c{width:189.482705pt;}
._2b{width:190.592002pt;}
._23{width:195.968020pt;}
._2a{width:200.149290pt;}
._1e{width:201.855947pt;}
._1d{width:212.181242pt;}
._1c{width:223.189280pt;}
._32{width:232.704102pt;}
._33{width:239.829594pt;}
._34{width:243.370687pt;}
._30{width:254.037435pt;}
._31{width:264.704102pt;}
._28{width:417.066697pt;}
._2d{width:494.592037pt;}
._1a{width:513.608024pt;}
._b{width:1049.192516pt;}
._25{width:1072.255932pt;}
._26{width:1848.149346pt;}
._27{width:2173.055911pt;}
.fsa{font-size:21.333333pt;}
.fs8{font-size:25.345067pt;}
.fs9{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs7{font-size:35.482666pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs6{font-size:50.690133pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y16c{bottom:-0.511464pt;}
.y17c{bottom:-0.431986pt;}
.y181{bottom:-0.431600pt;}
.y179{bottom:-0.431458pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:0.039714pt;}
.y11d{bottom:0.039733pt;}
.y10f{bottom:0.058431pt;}
.yfe{bottom:0.059733pt;}
.y13d{bottom:0.086426pt;}
.y16f{bottom:0.141866pt;}
.y105{bottom:0.143636pt;}
.y148{bottom:0.346273pt;}
.y104{bottom:4.574259pt;}
.y17a{bottom:5.290548pt;}
.y170{bottom:6.658132pt;}
.y10d{bottom:6.706136pt;}
.yfc{bottom:6.707601pt;}
.y100{bottom:6.707723pt;}
.y17e{bottom:8.196147pt;}
.y183{bottom:8.196533pt;}
.y143{bottom:9.213094pt;}
.y14a{bottom:9.214559pt;}
.y136{bottom:15.972940pt;}
.y141{bottom:15.974406pt;}
.y147{bottom:16.568685pt;}
.y1{bottom:29.055333pt;}
.y139{bottom:33.253092pt;}
.y14c{bottom:65.133331pt;}
.y26{bottom:65.133342pt;}
.y16e{bottom:65.133994pt;}
.y177{bottom:65.136248pt;}
.y184{bottom:65.136395pt;}
.y174{bottom:65.137728pt;}
.y14e{bottom:65.139208pt;}
.y15e{bottom:65.149879pt;}
.y16a{bottom:65.160555pt;}
.y5a{bottom:65.267588pt;}
.y1b0{bottom:65.965988pt;}
.y6b{bottom:66.127986pt;}
.y8c{bottom:66.133987pt;}
.yac{bottom:66.139984pt;}
.y1fd{bottom:71.540944pt;}
.y134{bottom:72.278936pt;}
.yd8{bottom:72.370931pt;}
.y175{bottom:73.137728pt;}
.yf1{bottom:73.749598pt;}
.y231{bottom:75.546254pt;}
.y59{bottom:80.606918pt;}
.y1af{bottom:81.305318pt;}
.y6a{bottom:81.467321pt;}
.y8b{bottom:81.473317pt;}
.yab{bottom:81.479319pt;}
.y1fc{bottom:83.871613pt;}
.y133{bottom:87.618266pt;}
.yd7{bottom:87.710266pt;}
.y230{bottom:87.876923pt;}
.y1c5{bottom:88.377075pt;}
.yf0{bottom:89.450938pt;}
.y245{bottom:92.603597pt;}
.y58{bottom:95.946248pt;}
.y1fb{bottom:96.202281pt;}
.y1ae{bottom:96.644653pt;}
.y69{bottom:96.806651pt;}
.y8a{bottom:96.812653pt;}
.yaa{bottom:96.818654pt;}
.y22f{bottom:100.207591pt;}
.y1c4{bottom:100.707743pt;}
.y132{bottom:102.957600pt;}
.yd6{bottom:103.049600pt;}
.yef{bottom:105.088267pt;}
.y244{bottom:107.381602pt;}
.y1fa{bottom:108.532949pt;}
.y57{bottom:111.285583pt;}
.y25{bottom:111.409067pt;}
.y1ad{bottom:111.983988pt;}
.y68{bottom:112.145986pt;}
.y89{bottom:112.151988pt;}
.ya9{bottom:112.157990pt;}
.y22e{bottom:112.538249pt;}
.y1c3{bottom:113.038411pt;}
.y131{bottom:118.290933pt;}
.yd5{bottom:118.388936pt;}
.yee{bottom:120.725596pt;}
.y1f9{bottom:120.863617pt;}
.y243{bottom:123.978933pt;}
.y22d{bottom:124.868917pt;}
.y1c2{bottom:125.369080pt;}
.y56{bottom:126.624919pt;}
.y24{bottom:126.748403pt;}
.y1ac{bottom:127.323324pt;}
.y67{bottom:127.485321pt;}
.y88{bottom:127.491323pt;}
.ya8{bottom:127.497325pt;}
.y1f8{bottom:133.194285pt;}
.y12f{bottom:133.592000pt;}
.y12e{bottom:133.624267pt;}
.y130{bottom:133.630269pt;}
.yed{bottom:136.362936pt;}
.y22c{bottom:137.199585pt;}
.y1c1{bottom:137.699748pt;}
.y242{bottom:138.756938pt;}
.y55{bottom:141.964254pt;}
.y23{bottom:142.087738pt;}
.y1ab{bottom:142.662649pt;}
.y66{bottom:142.824656pt;}
.y87{bottom:142.830658pt;}
.ya7{bottom:142.836650pt;}
.y1f7{bottom:145.524943pt;}
.y12d{bottom:148.951599pt;}
.y22b{bottom:149.530253pt;}
.yd4{bottom:149.722270pt;}
.yec{bottom:152.000265pt;}
.y16b{bottom:152.170661pt;}
.y17f{bottom:152.177730pt;}
.y14f{bottom:152.179206pt;}
.y15d{bottom:152.189867pt;}
.y15a{bottom:152.189877pt;}
.y165{bottom:152.200548pt;}
.y167{bottom:152.200558pt;}
.y241{bottom:155.354268pt;}
.y54{bottom:157.303589pt;}
.y1f6{bottom:157.855611pt;}
.y1aa{bottom:158.001984pt;}
.y65{bottom:158.163991pt;}
.y86{bottom:158.169983pt;}
.ya6{bottom:158.175985pt;}
.y16d{bottom:158.851325pt;}
.y150{bottom:160.179206pt;}
.y15b{bottom:160.189877pt;}
.y166{bottom:160.200548pt;}
.y22a{bottom:161.860921pt;}
.y1c0{bottom:162.297078pt;}
.y12c{bottom:164.290933pt;}
.yeb{bottom:167.637604pt;}
.y240{bottom:170.132263pt;}
.y1f5{bottom:170.186279pt;}
.y53{bottom:172.642924pt;}
.y1a9{bottom:173.341329pt;}
.y22{bottom:173.421061pt;}
.y64{bottom:173.503316pt;}
.y85{bottom:173.509318pt;}
.ya5{bottom:173.515320pt;}
.y229{bottom:174.191589pt;}
.y1bf{bottom:174.627747pt;}
.y180{bottom:179.136003pt;}
.y12b{bottom:179.624267pt;}
.y1f4{bottom:182.516947pt;}
.yea{bottom:183.274943pt;}
.y178{bottom:184.415992pt;}
.y182{bottom:184.428403pt;}
.y228{bottom:186.522257pt;}
.y23f{bottom:186.729594pt;}
.y52{bottom:187.982259pt;}
.y1a8{bottom:188.680644pt;}
.y63{bottom:188.842651pt;}
.y84{bottom:188.848653pt;}
.ya4{bottom:188.854655pt;}
.y17b{bottom:192.714657pt;}
.y1f3{bottom:194.847616pt;}
.y129{bottom:194.925333pt;}
.y128{bottom:194.957600pt;}
.y12a{bottom:194.963603pt;}
.y17d{bottom:198.006670pt;}
.y227{bottom:198.852926pt;}
.ye9{bottom:198.912272pt;}
.y1be{bottom:199.225077pt;}
.yd3{bottom:202.166911pt;}
.y51{bottom:203.321594pt;}
.y1a7{bottom:204.019979pt;}
.y62{bottom:204.181986pt;}
.y83{bottom:204.187988pt;}
.ya3{bottom:204.193990pt;}
.y1f2{bottom:207.178284pt;}
.y23e{bottom:207.612935pt;}
.y127{bottom:210.284932pt;}
.y226{bottom:211.183594pt;}
.ye8{bottom:214.549600pt;}
.yd2{bottom:217.506246pt;}
.y50{bottom:218.660929pt;}
.y1a6{bottom:219.359314pt;}
.y1f1{bottom:219.508952pt;}
.y61{bottom:219.521322pt;}
.y82{bottom:219.527323pt;}
.ya2{bottom:219.533325pt;}
.y23d{bottom:219.943604pt;}
.y21{bottom:221.289733pt;}
.y225{bottom:223.514262pt;}
.y1bd{bottom:223.822408pt;}
.y126{bottom:225.624267pt;}
.ye7{bottom:230.186931pt;}
.y1f0{bottom:231.839620pt;}
.yd1{bottom:232.845581pt;}
.y4f{bottom:234.000244pt;}
.y1a5{bottom:234.698649pt;}
.y60{bottom:234.860657pt;}
.y81{bottom:234.866659pt;}
.y224{bottom:235.844930pt;}
.y20{bottom:236.629069pt;}
.y14d{bottom:238.237871pt;}
.y151{bottom:238.248552pt;}
.y23c{bottom:238.983602pt;}
.y125{bottom:240.957600pt;}
.y1ef{bottom:244.170288pt;}
.y152{bottom:246.248552pt;}
.ye6{bottom:246.314942pt;}
.y223{bottom:248.175578pt;}
.yd0{bottom:248.184916pt;}
.y1bc{bottom:248.489075pt;}
.y4e{bottom:249.339579pt;}
.y1a4{bottom:250.037984pt;}
.y5f{bottom:250.199992pt;}
.ya1{bottom:250.866659pt;}
.y23b{bottom:251.314270pt;}
.y123{bottom:256.258667pt;}
.y122{bottom:256.284932pt;}
.y124{bottom:256.296936pt;}
.y1ee{bottom:256.500956pt;}
.y222{bottom:260.506246pt;}
.ycf{bottom:263.524251pt;}
.ye5{bottom:264.058268pt;}
.y4d{bottom:264.678914pt;}
.y1a3{bottom:265.377319pt;}
.y80{bottom:266.199992pt;}
.y1f{bottom:267.295064pt;}
.y1ed{bottom:268.831604pt;}
.y23a{bottom:270.354268pt;}
.y121{bottom:271.624267pt;}
.y221{bottom:272.836914pt;}
.y1bb{bottom:276.232910pt;}
.ye4{bottom:276.388936pt;}
.yce{bottom:278.863586pt;}
.y4c{bottom:280.018250pt;}
.y1a2{bottom:280.716654pt;}
.y1ec{bottom:281.162272pt;}
.y5e{bottom:281.533325pt;}
.y1e{bottom:282.634399pt;}
.y239{bottom:282.684937pt;}
.y220{bottom:285.167582pt;}
.y120{bottom:286.951599pt;}
.y1ba{bottom:288.563578pt;}
.ya0{bottom:289.084391pt;}
.y1eb{bottom:293.492940pt;}
.ycd{bottom:294.202922pt;}
.y4b{bottom:295.357585pt;}
.y1a1{bottom:296.055990pt;}
.y21f{bottom:297.498250pt;}
.y1d{bottom:297.973733pt;}
.y1b9{bottom:300.894246pt;}
.y238{bottom:301.724935pt;}
.y11f{bottom:302.290933pt;}
.y9f{bottom:304.423726pt;}
.y1ea{bottom:305.823608pt;}
.ycc{bottom:309.542257pt;}
.y21e{bottom:309.828918pt;}
.y4a{bottom:310.696920pt;}
.y1a0{bottom:311.395325pt;}
.y7f{bottom:312.109192pt;}
.y1c{bottom:313.313070pt;}
.y237{bottom:314.055603pt;}
.y11c{bottom:317.592000pt;}
.y11b{bottom:317.612244pt;}
.y11e{bottom:317.630269pt;}
.y1e9{bottom:318.154277pt;}
.y9e{bottom:319.763062pt;}
.y21d{bottom:322.159587pt;}
.y171{bottom:323.079058pt;}
.y153{bottom:323.091204pt;}
.y15f{bottom:323.101885pt;}
.ye3{bottom:323.531596pt;}
.ycb{bottom:324.881592pt;}
.y1b8{bottom:325.566243pt;}
.y49{bottom:326.036255pt;}
.y19f{bottom:326.734660pt;}
.y7e{bottom:327.448527pt;}
.y1b{bottom:328.652405pt;}
.y1e8{bottom:330.484945pt;}
.y154{bottom:331.091204pt;}
.y11a{bottom:332.951579pt;}
.y21c{bottom:334.490255pt;}
.y1b7{bottom:337.896912pt;}
.ye2{bottom:338.870911pt;}
.yca{bottom:340.220927pt;}
.y48{bottom:341.375570pt;}
.y19e{bottom:342.073975pt;}
.y236{bottom:342.516235pt;}
.y7d{bottom:342.787842pt;}
.y1e7{bottom:342.815633pt;}
.y1a{bottom:343.991740pt;}
.y21b{bottom:346.820923pt;}
.y119{bottom:348.290933pt;}
.y9d{bottom:351.096395pt;}
.ye1{bottom:354.210246pt;}
.y1e6{bottom:355.146281pt;}
.yc9{bottom:355.560262pt;}
.y47{bottom:356.714925pt;}
.y19d{bottom:357.413330pt;}
.y235{bottom:357.855591pt;}
.y7c{bottom:358.127197pt;}
.y21a{bottom:359.151571pt;}
.y19{bottom:359.331055pt;}
.y1b6{bottom:362.568929pt;}
.y118{bottom:363.624267pt;}
.y1e5{bottom:367.476929pt;}
.ye0{bottom:369.549600pt;}
.yc8{bottom:370.899577pt;}
.y219{bottom:371.482259pt;}
.y46{bottom:372.054240pt;}
.y19c{bottom:372.752645pt;}
.y7b{bottom:373.466512pt;}
.y18{bottom:374.670410pt;}
.y1b5{bottom:374.899577pt;}
.y115{bottom:378.925333pt;}
.y114{bottom:378.952271pt;}
.y117{bottom:378.963582pt;}
.y1e4{bottom:379.807617pt;}
.y218{bottom:383.812907pt;}
.ydf{bottom:384.888916pt;}
.yc7{bottom:386.238932pt;}
.y1b4{bottom:387.230265pt;}
.y45{bottom:387.393595pt;}
.y19b{bottom:388.092000pt;}
.y7a{bottom:388.805867pt;}
.y234{bottom:389.188924pt;}
.y9c{bottom:389.248006pt;}
.y17{bottom:390.009725pt;}
.y1e3{bottom:392.138265pt;}
.y217{bottom:396.143595pt;}
.y1b3{bottom:399.560913pt;}
.yc6{bottom:401.578247pt;}
.y142{bottom:401.963989pt;}
.y44{bottom:402.732910pt;}
.y19a{bottom:403.431315pt;}
.y79{bottom:404.145182pt;}
.y1e2{bottom:404.468953pt;}
.y9b{bottom:404.587362pt;}
.y16{bottom:405.349080pt;}
.y145{bottom:406.752563pt;}
.y176{bottom:407.920244pt;}
.y155{bottom:407.933875pt;}
.y160{bottom:407.944536pt;}
.y216{bottom:408.474243pt;}
.y146{bottom:411.176799pt;}
.y149{bottom:411.178548pt;}
.y1b2{bottom:411.891602pt;}
.yde{bottom:416.222249pt;}
.y144{bottom:416.253052pt;}
.y1e1{bottom:416.799600pt;}
.yc5{bottom:416.917603pt;}
.y43{bottom:418.072266pt;}
.y199{bottom:418.770671pt;}
.y78{bottom:419.484538pt;}
.y9a{bottom:419.926676pt;}
.y15{bottom:420.688395pt;}
.y215{bottom:420.804932pt;}
.y1b1{bottom:424.222249pt;}
.y1e0{bottom:429.130290pt;}
.yc4{bottom:432.256917pt;}
.y214{bottom:433.135579pt;}
.y42{bottom:433.411580pt;}
.y198{bottom:434.109985pt;}
.y77{bottom:434.823853pt;}
.y99{bottom:435.266032pt;}
.y14{bottom:436.027751pt;}
.y1df{bottom:441.460938pt;}
.y113{bottom:442.614909pt;}
.y233{bottom:445.455566pt;}
.y213{bottom:445.466267pt;}
.yc3{bottom:447.596273pt;}
.y41{bottom:448.750936pt;}
.y197{bottom:449.449300pt;}
.y76{bottom:450.163167pt;}
.y98{bottom:450.605347pt;}
.y13{bottom:451.367065pt;}
.y1de{bottom:453.791626pt;}
.y232{bottom:457.786255pt;}
.y212{bottom:457.796916pt;}
.y112{bottom:457.954264pt;}
.yc2{bottom:462.935588pt;}
.y40{bottom:464.090251pt;}
.ydd{bottom:464.210246pt;}
.y196{bottom:464.788656pt;}
.y75{bottom:465.502523pt;}
.y97{bottom:465.944661pt;}
.y1dd{bottom:466.159627pt;}
.y12{bottom:466.706380pt;}
.y211{bottom:470.127604pt;}
.y111{bottom:473.293579pt;}
.yc1{bottom:478.274902pt;}
.y1dc{bottom:478.490275pt;}
.y3f{bottom:479.429606pt;}
.ydc{bottom:479.549600pt;}
.y195{bottom:480.127970pt;}
.y74{bottom:480.841838pt;}
.y96{bottom:481.284017pt;}
.y11{bottom:482.045736pt;}
.y210{bottom:482.458252pt;}
.y10c{bottom:483.963989pt;}
.y10e{bottom:486.242147pt;}
.y156{bottom:490.109860pt;}
.y161{bottom:490.120562pt;}
.y10b{bottom:490.642293pt;}
.y110{bottom:490.659587pt;}
.y1db{bottom:490.820964pt;}
.yc0{bottom:493.614258pt;}
.y3e{bottom:494.768921pt;}
.y20f{bottom:494.788900pt;}
.ydb{bottom:494.882933pt;}
.y194{bottom:495.467326pt;}
.y73{bottom:496.181193pt;}
.y95{bottom:496.623332pt;}
.y10{bottom:497.385050pt;}
.y1da{bottom:503.151611pt;}
.y10a{bottom:505.981608pt;}
.y20e{bottom:507.119588pt;}
.ybf{bottom:508.953573pt;}
.y3d{bottom:510.108236pt;}
.yda{bottom:510.216267pt;}
.y193{bottom:510.806641pt;}
.y72{bottom:511.520508pt;}
.y94{bottom:511.962687pt;}
.yf{bottom:512.724406pt;}
.y1d9{bottom:515.482300pt;}
.y20d{bottom:519.450236pt;}
.y109{bottom:521.320964pt;}
.ybe{bottom:524.292928pt;}
.y3c{bottom:525.447591pt;}
.yd9{bottom:525.549600pt;}
.y192{bottom:526.145996pt;}
.y71{bottom:526.859863pt;}
.y93{bottom:527.302002pt;}
.y1d8{bottom:527.812948pt;}
.ye{bottom:528.063721pt;}
.y20c{bottom:531.780924pt;}
.y108{bottom:536.660278pt;}
.ybd{bottom:539.632243pt;}
.y1d7{bottom:540.143595pt;}
.y3b{bottom:540.786906pt;}
.y191{bottom:541.485311pt;}
.y70{bottom:542.199178pt;}
.y92{bottom:542.641357pt;}
.yd{bottom:543.403076pt;}
.y20b{bottom:544.111572pt;}
.y1d6{bottom:552.474284pt;}
.ybc{bottom:554.971598pt;}
.y3a{bottom:556.126261pt;}
.y20a{bottom:556.442261pt;}
.y190{bottom:556.824666pt;}
.y6f{bottom:557.538533pt;}
.y91{bottom:557.980672pt;}
.yc{bottom:558.742391pt;}
.y135{bottom:559.659993pt;}
.y13c{bottom:561.964884pt;}
.y1d5{bottom:564.804932pt;}
.y13b{bottom:566.406250pt;}
.y140{bottom:566.766276pt;}
.y209{bottom:568.772909pt;}
.ybb{bottom:570.310913pt;}
.y39{bottom:571.465576pt;}
.y18f{bottom:572.163981pt;}
.y15c{bottom:572.285845pt;}
.y157{bottom:572.285885pt;}
.y162{bottom:572.296546pt;}
.y6e{bottom:572.877848pt;}
.y90{bottom:573.320028pt;}
.yb{bottom:574.081746pt;}
.y137{bottom:575.632933pt;}
.y13e{bottom:575.634399pt;}
.y1d4{bottom:577.135620pt;}
.y208{bottom:581.103597pt;}
.y13f{bottom:582.984456pt;}
.y13a{bottom:584.044922pt;}
.yba{bottom:585.650269pt;}
.y38{bottom:586.804932pt;}
.y18e{bottom:587.503337pt;}
.y138{bottom:588.482869pt;}
.y8f{bottom:588.659342pt;}
.ya{bottom:589.421061pt;}
.y1d3{bottom:589.466267pt;}
.y207{bottom:593.434245pt;}
.yb9{bottom:600.989583pt;}
.y1d2{bottom:601.796956pt;}
.y37{bottom:602.144246pt;}
.y18d{bottom:602.842651pt;}
.y6d{bottom:604.211182pt;}
.y206{bottom:605.764933pt;}
.y103{bottom:609.607992pt;}
.y1d1{bottom:614.127604pt;}
.y106{bottom:614.182251pt;}
.y102{bottom:614.192912pt;}
.y107{bottom:614.192952pt;}
.yb8{bottom:616.328939pt;}
.y36{bottom:617.483602pt;}
.y205{bottom:618.095581pt;}
.y18c{bottom:618.182007pt;}
.y8e{bottom:619.992676pt;}
.yfb{bottom:626.192017pt;}
.y1d0{bottom:626.458293pt;}
.yfd{bottom:628.471476pt;}
.y204{bottom:630.426270pt;}
.yb7{bottom:631.668254pt;}
.y9{bottom:631.855754pt;}
.y35{bottom:632.822917pt;}
.yfa{bottom:632.876912pt;}
.y101{bottom:632.888916pt;}
.yff{bottom:632.899740pt;}
.y18b{bottom:633.521322pt;}
.y6c{bottom:636.211182pt;}
.y1cf{bottom:638.788940pt;}
.y203{bottom:642.756917pt;}
.y8{bottom:644.186401pt;}
.y27{bottom:644.237691pt;}
.yb6{bottom:647.007568pt;}
.y34{bottom:648.162272pt;}
.yf9{bottom:648.216267pt;}
.y18a{bottom:648.860636pt;}
.y8d{bottom:651.992676pt;}
.y158{bottom:654.461870pt;}
.y163{bottom:654.472530pt;}
.y168{bottom:654.472572pt;}
.y202{bottom:655.087606pt;}
.yb5{bottom:662.346924pt;}
.y33{bottom:663.501587pt;}
.yf8{bottom:663.525594pt;}
.y189{bottom:664.199992pt;}
.y1ce{bottom:667.388916pt;}
.y201{bottom:667.418254pt;}
.yb4{bottom:677.686239pt;}
.y7{bottom:677.758382pt;}
.y32{bottom:678.840902pt;}
.yf7{bottom:678.864909pt;}
.y200{bottom:679.748901pt;}
.y1ff{bottom:692.079590pt;}
.yb3{bottom:693.025553pt;}
.y31{bottom:694.180257pt;}
.yf6{bottom:694.204264pt;}
.y6{bottom:694.427733pt;}
.y188{bottom:695.533366pt;}
.y1fe{bottom:704.410238pt;}
.yb2{bottom:708.364909pt;}
.y30{bottom:709.519613pt;}
.yf5{bottom:709.543620pt;}
.y1cd{bottom:716.740885pt;}
.yb1{bottom:723.704264pt;}
.y2f{bottom:724.858887pt;}
.yf4{bottom:724.882894pt;}
.y1cc{bottom:729.071615pt;}
.y5{bottom:732.145020pt;}
.y159{bottom:736.637855pt;}
.y164{bottom:736.648516pt;}
.y169{bottom:736.648597pt;}
.yb0{bottom:739.043620pt;}
.y2e{bottom:740.198242pt;}
.y1cb{bottom:741.402262pt;}
.y4{bottom:752.147705pt;}
.y1ca{bottom:753.732910pt;}
.yaf{bottom:754.382894pt;}
.y2d{bottom:755.537598pt;}
.y187{bottom:755.543620pt;}
.y1c9{bottom:766.063558pt;}
.yae{bottom:769.722249pt;}
.y2c{bottom:770.876953pt;}
.y186{bottom:770.882894pt;}
.y1c8{bottom:778.394287pt;}
.y2b{bottom:786.216227pt;}
.y1c7{bottom:790.724935pt;}
.y3{bottom:799.809082pt;}
.yad{bottom:801.055583pt;}
.y185{bottom:801.517333pt;}
.y2a{bottom:801.555583pt;}
.y1c6{bottom:803.055583pt;}
.y2{bottom:823.215251pt;}
.y173{bottom:834.727975pt;}
.yf3{bottom:834.727976pt;}
.y5c{bottom:834.834642pt;}
.y172{bottom:834.834775pt;}
.yf2{bottom:834.834776pt;}
.y5b{bottom:834.834798pt;}
.y14b{bottom:834.834842pt;}
.y28{bottom:834.834853pt;}
.y5d{bottom:834.834880pt;}
.y29{bottom:835.545898pt;}
.h34{height:6.680000pt;}
.h21{height:8.533333pt;}
.h44{height:9.360000pt;}
.h3b{height:10.200000pt;}
.h49{height:10.306667pt;}
.h47{height:10.733333pt;}
.h41{height:12.680000pt;}
.h46{height:13.171200pt;}
.h3e{height:13.280000pt;}
.h48{height:14.421333pt;}
.h1c{height:15.066667pt;}
.h37{height:15.534667pt;}
.h17{height:15.647856pt;}
.h18{height:17.133265pt;}
.h1f{height:17.199999pt;}
.h15{height:17.201333pt;}
.h2c{height:17.336026pt;}
.h39{height:19.502933pt;}
.h19{height:19.566391pt;}
.h3f{height:20.189867pt;}
.h28{height:22.354349pt;}
.h31{height:23.170181pt;}
.h2a{height:24.270144pt;}
.h30{height:24.412074pt;}
.h2e{height:25.333333pt;}
.h51{height:27.716267pt;}
.h29{height:27.727503pt;}
.h35{height:28.757333pt;}
.h2f{height:33.100657pt;}
.h22{height:34.165150pt;}
.h1a{height:34.266530pt;}
.h1e{height:34.672051pt;}
.h32{height:34.874812pt;}
.h3c{height:35.116782pt;}
.h45{height:35.116787pt;}
.h4a{height:35.117357pt;}
.h38{height:35.550381pt;}
.h42{height:35.550422pt;}
.h2{height:37.376000pt;}
.h3{height:37.930667pt;}
.h2b{height:38.190716pt;}
.h27{height:39.199999pt;}
.ha{height:39.594667pt;}
.hb{height:40.405333pt;}
.h16{height:41.746699pt;}
.h20{height:41.746862pt;}
.h1d{height:42.030235pt;}
.h33{height:43.648000pt;}
.h4e{height:44.633422pt;}
.h4b{height:44.782917pt;}
.h8{height:47.018667pt;}
.he{height:47.253333pt;}
.h40{height:47.606904pt;}
.h3a{height:47.606945pt;}
.h3d{height:47.617036pt;}
.h36{height:47.617077pt;}
.hc{height:47.680000pt;}
.h7{height:50.109333pt;}
.h5{height:51.796472pt;}
.h4f{height:51.796631pt;}
.h6{height:51.807210pt;}
.h50{height:51.820720pt;}
.hd{height:51.832000pt;}
.h4d{height:51.879852pt;}
.h25{height:51.880014pt;}
.h1b{height:53.179831pt;}
.hf{height:56.549002pt;}
.h24{height:56.549083pt;}
.h26{height:56.573053pt;}
.h4c{height:56.573090pt;}
.h23{height:56.573094pt;}
.h11{height:56.573095pt;}
.h13{height:56.645030pt;}
.h14{height:56.669119pt;}
.h10{height:56.957205pt;}
.h9{height:58.021333pt;}
.h4{height:61.429333pt;}
.h2d{height:63.210576pt;}
.h12{height:72.258678pt;}
.h43{height:86.143983pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.wa{width:7.160000pt;}
.w6{width:7.946667pt;}
.w7{width:7.948000pt;}
.w5{width:12.240000pt;}
.wc{width:12.533333pt;}
.w4{width:12.760000pt;}
.wb{width:12.933333pt;}
.wd{width:13.065333pt;}
.we{width:14.400000pt;}
.w3{width:61.721333pt;}
.w2{width:64.158666pt;}
.w9{width:153.119995pt;}
.w8{width:219.280009pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.289307pt;}
.x53{left:8.759602pt;}
.xb{left:9.747869pt;}
.x50{left:12.877889pt;}
.x5c{left:14.364278pt;}
.x10{left:27.747732pt;}
.xd{left:29.956263pt;}
.x29{left:33.549194pt;}
.x25{left:44.157064pt;}
.x32{left:51.737467pt;}
.x2{left:62.362269pt;}
.x3{left:66.248398pt;}
.x35{left:70.362269pt;}
.x9{left:75.991999pt;}
.x5{left:77.486135pt;}
.x62{left:81.263600pt;}
.xa{left:82.284133pt;}
.x61{left:85.039602pt;}
.x36{left:91.487853pt;}
.xc{left:93.743998pt;}
.x12{left:96.354665pt;}
.x13{left:102.647064pt;}
.x52{left:107.187999pt;}
.x14{left:109.114929pt;}
.x51{left:115.184134pt;}
.x37{left:116.383859pt;}
.x56{left:123.592001pt;}
.x34{left:125.309347pt;}
.x11{left:128.827871pt;}
.x54{left:131.592805pt;}
.x1a{left:134.405333pt;}
.xe{left:140.151998pt;}
.x38{left:141.045185pt;}
.x1b{left:142.351735pt;}
.x55{left:143.923463pt;}
.x58{left:151.562663pt;}
.x39{left:157.162525pt;}
.x57{left:159.559062pt;}
.x7{left:166.307872pt;}
.x5b{left:168.102672pt;}
.x3a{left:169.493194pt;}
.x59{left:176.170411pt;}
.x4{left:181.712909pt;}
.x22{left:183.273336pt;}
.x2f{left:185.133484pt;}
.x5a{left:188.501059pt;}
.x23{left:192.774800pt;}
.x3b{left:197.461191pt;}
.x5e{left:201.638673pt;}
.x27{left:206.562663pt;}
.x5d{left:210.403992pt;}
.x28{left:213.363566pt;}
.x30{left:216.353333pt;}
.x24{left:219.995402pt;}
.x8{left:221.110950pt;}
.x2a{left:224.130391pt;}
.x3c{left:225.429188pt;}
.x26{left:226.794535pt;}
.x31{left:232.882406pt;}
.x5f{left:233.937338pt;}
.x3d{left:241.066517pt;}
.x2b{left:242.427572pt;}
.x2c{left:253.278259pt;}
.x2e{left:267.078674pt;}
.x3e{left:269.034514pt;}
.x3f{left:281.365183pt;}
.x2d{left:291.650696pt;}
.x40{left:297.002532pt;}
.x41{left:309.333180pt;}
.x15{left:315.525330pt;}
.x16{left:321.817871pt;}
.x42{left:324.970529pt;}
.x17{left:327.765727pt;}
.x33{left:329.470398pt;}
.x43{left:337.301197pt;}
.x1c{left:338.322673pt;}
.x6{left:339.547363pt;}
.x1d{left:346.269328pt;}
.x44{left:352.938506pt;}
.x45{left:365.269195pt;}
.x1e{left:381.250651pt;}
.x1f{left:389.197713pt;}
.x46{left:393.237171pt;}
.x47{left:408.874541pt;}
.x48{left:421.205189pt;}
.x60{left:424.303996pt;}
.x20{left:430.097331pt;}
.x1{left:431.874146pt;}
.x49{left:436.842518pt;}
.x21{left:438.043986pt;}
.x4a{left:449.173207pt;}
.x4b{left:464.810536pt;}
.x4c{left:473.381337pt;}
.x4d{left:480.504139pt;}
.x4f{left:488.142648pt;}
.x4e{left:496.141468pt;}
.x18{left:515.517333pt;}
.x19{left:523.464518pt;}
}




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