
    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_4ad84c5e14db8a284d99b91e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_170aa635ce300a75b8541365.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_dd187e2383a7eba02ef4ed46.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_074e7577ef8a9e63b5cedf1d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_c6e513f5a366d739a72b6b72.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104980;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_ecade6875cf274e7680ee434.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_720b2a7610e65e11c65e331b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_6a7ae44c65e6a878a116ca81.woff')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_e94f709d9282d600a9ba710f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_b6a83decc6b574848ebf19fe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_31491be58f12e054ea26478a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_0fc398529e91508a9fee2e2f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_1c0486cbe0872aa7e4371b22.woff')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_d51ab2e1b248a9515705de4f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976074;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_79162cb02e08d1ff025acc65.woff')format("woff");}.fff{font-family:fff;line-height:1.096191;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_1459c388fcaf4ba3f75243c6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_900d41114477ad40c4fe27f8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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_367631c5d7a9f448aeec7c33.woff')format("woff");}.ff12{font-family:ff12;line-height:1.052734;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_03f80a0859915153379ba1aa.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_0d6a5957d3fd2f2c328c6a40.woff')format("woff");}.ff14{font-family:ff14;line-height:1.104004;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_3fe7bc3612c7c87fb98500ca.woff')format("woff");}.ff15{font-family:ff15;line-height:0.793457;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_dec71274370c78e9d6111135.woff')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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_76ef344b680e48aceb372234.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_dfd34dfe8c52f07ddd3d673d.woff')format("woff");}.ff18{font-family:ff18;line-height:1.106934;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_9f94f7c5e5ab3a36bd34fabe.woff')format("woff");}.ff19{font-family:ff19;line-height:1.038574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-103.620000px;}
.v7{vertical-align:-87.150000px;}
.v9{vertical-align:-67.500000px;}
.v18{vertical-align:-58.620000px;}
.v19{vertical-align:-54.000000px;}
.v5{vertical-align:-40.500000px;}
.vb{vertical-align:-36.120000px;}
.v1{vertical-align:-31.500000px;}
.ve{vertical-align:-29.460000px;}
.vc{vertical-align:-27.000000px;}
.v15{vertical-align:-22.680000px;}
.v17{vertical-align:-9.000000px;}
.v13{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:4.500000px;}
.v16{vertical-align:6.420000px;}
.vd{vertical-align:27.000000px;}
.v10{vertical-align:29.520000px;}
.v2{vertical-align:31.500000px;}
.v3{vertical-align:36.180000px;}
.v4{vertical-align:40.500000px;}
.v8{vertical-align:45.000000px;}
.v12{vertical-align:54.120000px;}
.v6{vertical-align:60.180000px;}
.v11{vertical-align:82.320000px;}
.va{vertical-align:108.000000px;}
.v1a{vertical-align:139.620000px;}
.ls3c{letter-spacing:-3.060000px;}
.ls39{letter-spacing:-3.006000px;}
.ls2f{letter-spacing:-2.988000px;}
.ls63{letter-spacing:-2.910000px;}
.ls26{letter-spacing:-2.730000px;}
.ls28{letter-spacing:-2.688000px;}
.ls59{letter-spacing:-2.580000px;}
.ls81{letter-spacing:-2.508000px;}
.ls25{letter-spacing:-2.322000px;}
.ls8d{letter-spacing:-2.316000px;}
.ls12{letter-spacing:-2.274000px;}
.ls1f{letter-spacing:-2.250000px;}
.ls1a{letter-spacing:-2.178000px;}
.ls80{letter-spacing:-2.172000px;}
.ls22{letter-spacing:-2.100000px;}
.ls15{letter-spacing:-2.076000px;}
.lsc7{letter-spacing:-1.992000px;}
.ls1b{letter-spacing:-1.812000px;}
.lsdf{letter-spacing:-1.782000px;}
.ls21{letter-spacing:-1.770000px;}
.ls5b{letter-spacing:-1.662000px;}
.lse1{letter-spacing:-1.632000px;}
.ls6d{letter-spacing:-1.626000px;}
.ls3d{letter-spacing:-1.602000px;}
.ls43{letter-spacing:-1.482000px;}
.ls7f{letter-spacing:-1.332000px;}
.ls7{letter-spacing:-1.308000px;}
.ls4{letter-spacing:-1.266000px;}
.ls7c{letter-spacing:-1.236000px;}
.ls6{letter-spacing:-1.158000px;}
.lscc{letter-spacing:-1.146000px;}
.lse{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-1.020000px;}
.lsa9{letter-spacing:-0.990000px;}
.ls13{letter-spacing:-0.966000px;}
.ls44{letter-spacing:-0.954000px;}
.ls47{letter-spacing:-0.906000px;}
.ls1c{letter-spacing:-0.870000px;}
.lsb2{letter-spacing:-0.858000px;}
.ls38{letter-spacing:-0.840000px;}
.ls48{letter-spacing:-0.822000px;}
.lsac{letter-spacing:-0.816000px;}
.ls1e{letter-spacing:-0.804000px;}
.lsa4{letter-spacing:-0.762000px;}
.lsca{letter-spacing:-0.750000px;}
.lsf{letter-spacing:-0.744000px;}
.lsb4{letter-spacing:-0.708000px;}
.lsc9{letter-spacing:-0.624000px;}
.lsad{letter-spacing:-0.595800px;}
.ls36{letter-spacing:-0.518400px;}
.ls14{letter-spacing:-0.380400px;}
.lsc8{letter-spacing:-0.340200px;}
.ls9e{letter-spacing:-0.330000px;}
.ls53{letter-spacing:-0.259200px;}
.ls5d{letter-spacing:-0.255600px;}
.ls11{letter-spacing:-0.230400px;}
.ls19{letter-spacing:-0.180000px;}
.lsae{letter-spacing:-0.147000px;}
.ls88{letter-spacing:-0.140400px;}
.ls6a{letter-spacing:-0.137400px;}
.lscb{letter-spacing:-0.099600px;}
.ls8b{letter-spacing:-0.059700px;}
.lsc6{letter-spacing:-0.056400px;}
.ls86{letter-spacing:-0.054000px;}
.ls8a{letter-spacing:-0.040500px;}
.ls89{letter-spacing:-0.006300px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.012600px;}
.ls87{letter-spacing:0.027000px;}
.lsaf{letter-spacing:0.031020px;}
.lsa3{letter-spacing:0.035700px;}
.ls83{letter-spacing:0.040500px;}
.ls9d{letter-spacing:0.075000px;}
.ls82{letter-spacing:0.096000px;}
.ls99{letter-spacing:0.097500px;}
.ls2{letter-spacing:0.128550px;}
.ls8c{letter-spacing:0.140400px;}
.ls30{letter-spacing:0.141600px;}
.lse2{letter-spacing:0.143400px;}
.ls9b{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.178500px;}
.ls23{letter-spacing:0.180000px;}
.ls7a{letter-spacing:0.183600px;}
.ls75{letter-spacing:0.225300px;}
.lsaa{letter-spacing:0.227400px;}
.lsa2{letter-spacing:0.238800px;}
.ls0{letter-spacing:0.249300px;}
.ls5e{letter-spacing:0.310800px;}
.lsd0{letter-spacing:0.337200px;}
.ls72{letter-spacing:0.337500px;}
.ls9{letter-spacing:0.356400px;}
.ls6f{letter-spacing:0.366600px;}
.ls9c{letter-spacing:0.367500px;}
.lsa0{letter-spacing:0.372000px;}
.ls10{letter-spacing:0.377400px;}
.ls20{letter-spacing:0.388200px;}
.ls9a{letter-spacing:0.405000px;}
.lscf{letter-spacing:0.415200px;}
.ls73{letter-spacing:0.450000px;}
.ls70{letter-spacing:0.450600px;}
.ls49{letter-spacing:0.460800px;}
.ls79{letter-spacing:0.483300px;}
.ls76{letter-spacing:0.516600px;}
.lse3{letter-spacing:0.558750px;}
.ls77{letter-spacing:0.600000px;}
.ls8f{letter-spacing:0.607500px;}
.ls90{letter-spacing:0.667500px;}
.lsd{letter-spacing:0.690000px;}
.ls31{letter-spacing:0.702000px;}
.ls97{letter-spacing:0.727500px;}
.lsbd{letter-spacing:0.729000px;}
.ls3a{letter-spacing:0.738000px;}
.ls96{letter-spacing:0.787500px;}
.lsb6{letter-spacing:0.821100px;}
.ls3f{letter-spacing:0.840000px;}
.ls33{letter-spacing:0.852000px;}
.ls27{letter-spacing:0.870000px;}
.lsb8{letter-spacing:0.922050px;}
.ls98{letter-spacing:0.932850px;}
.ls6c{letter-spacing:0.937500px;}
.lsbc{letter-spacing:0.948000px;}
.ls45{letter-spacing:0.954000px;}
.lsb7{letter-spacing:1.001100px;}
.ls5a{letter-spacing:1.020000px;}
.ls1d{letter-spacing:1.086000px;}
.lsd2{letter-spacing:1.104000px;}
.ls9f{letter-spacing:1.128000px;}
.lsc{letter-spacing:1.194000px;}
.ls40{letter-spacing:1.200000px;}
.ls34{letter-spacing:1.206000px;}
.lsb0{letter-spacing:1.230000px;}
.ls37{letter-spacing:1.242000px;}
.lsba{letter-spacing:1.253100px;}
.ls5f{letter-spacing:1.326000px;}
.ls3b{letter-spacing:1.356000px;}
.lsa8{letter-spacing:1.374000px;}
.lsdd{letter-spacing:1.380000px;}
.ls41{letter-spacing:1.387500px;}
.lsbe{letter-spacing:1.458000px;}
.ls4a{letter-spacing:1.470000px;}
.lsb9{letter-spacing:1.493100px;}
.ls7d{letter-spacing:1.512000px;}
.lsa7{letter-spacing:1.524000px;}
.lsbb{letter-spacing:1.528500px;}
.lsde{letter-spacing:1.530000px;}
.ls4b{letter-spacing:1.596000px;}
.lsbf{letter-spacing:1.674000px;}
.lse0{letter-spacing:1.776000px;}
.lsab{letter-spacing:1.836000px;}
.lsd1{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.878000px;}
.lsb3{letter-spacing:1.938000px;}
.ls7e{letter-spacing:1.992000px;}
.ls61{letter-spacing:1.995000px;}
.ls60{letter-spacing:2.025000px;}
.ls7b{letter-spacing:2.028000px;}
.ls3e{letter-spacing:2.334000px;}
.ls58{letter-spacing:3.487500px;}
.ls64{letter-spacing:3.522000px;}
.ls57{letter-spacing:3.607500px;}
.ls56{letter-spacing:3.667500px;}
.ls32{letter-spacing:5.238000px;}
.ls92{letter-spacing:6.045000px;}
.ls93{letter-spacing:6.225000px;}
.ls2a{letter-spacing:6.440550px;}
.ls2b{letter-spacing:6.500550px;}
.ls55{letter-spacing:6.645000px;}
.ls50{letter-spacing:6.711000px;}
.ls54{letter-spacing:6.825000px;}
.ls18{letter-spacing:7.545000px;}
.ls71{letter-spacing:8.103300px;}
.lsa1{letter-spacing:9.705000px;}
.ls4f{letter-spacing:10.203000px;}
.lsc1{letter-spacing:10.406550px;}
.lsce{letter-spacing:12.623550px;}
.lscd{letter-spacing:12.773550px;}
.ls46{letter-spacing:12.970500px;}
.lse4{letter-spacing:13.160550px;}
.lse5{letter-spacing:13.220550px;}
.lsd6{letter-spacing:13.323000px;}
.ls85{letter-spacing:16.203000px;}
.ls17{letter-spacing:18.307500px;}
.ls16{letter-spacing:18.367500px;}
.ls6b{letter-spacing:19.305000px;}
.ls95{letter-spacing:20.407500px;}
.ls94{letter-spacing:20.437500px;}
.ls42{letter-spacing:23.467500px;}
.lsda{letter-spacing:27.381300px;}
.lsd9{letter-spacing:27.501300px;}
.ls91{letter-spacing:28.267500px;}
.lsdc{letter-spacing:34.581300px;}
.ls65{letter-spacing:35.471400px;}
.ls68{letter-spacing:35.562000px;}
.lsc4{letter-spacing:37.466550px;}
.lsc0{letter-spacing:41.453400px;}
.lsc2{letter-spacing:41.544000px;}
.ls52{letter-spacing:41.880000px;}
.ls4e{letter-spacing:42.091500px;}
.lsd8{letter-spacing:42.952050px;}
.ls51{letter-spacing:46.966650px;}
.ls69{letter-spacing:48.923550px;}
.lsd7{letter-spacing:49.323000px;}
.ls74{letter-spacing:54.633300px;}
.lsc3{letter-spacing:58.453500px;}
.lsd5{letter-spacing:60.003000px;}
.lsd3{letter-spacing:60.123000px;}
.lsd4{letter-spacing:60.183000px;}
.ls4c{letter-spacing:82.512000px;}
.lsb5{letter-spacing:86.135400px;}
.ls4d{letter-spacing:86.652000px;}
.ls67{letter-spacing:89.721300px;}
.ls66{letter-spacing:89.841300px;}
.ls2e{letter-spacing:91.889400px;}
.ls29{letter-spacing:91.980000px;}
.lsa6{letter-spacing:94.325400px;}
.lsb1{letter-spacing:94.380000px;}
.ls78{letter-spacing:109.889400px;}
.ls6e{letter-spacing:109.980000px;}
.ls84{letter-spacing:113.771400px;}
.lsa5{letter-spacing:115.271400px;}
.ls8{letter-spacing:118.571400px;}
.lsa{letter-spacing:118.662000px;}
.ls8e{letter-spacing:118.692000px;}
.ls62{letter-spacing:118.721400px;}
.lsb{letter-spacing:118.812000px;}
.ls2d{letter-spacing:119.188350px;}
.lsc5{letter-spacing:150.253500px;}
.lsdb{letter-spacing:182.481300px;}
.ls2c{letter-spacing:244.871400px;}
.ls5c{letter-spacing:244.962000px;}
.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;}
}
.ws33{word-spacing:-146.484000px;}
.ws2f{word-spacing:-144.150000px;}
.ws86{word-spacing:-121.650000px;}
.ws9f{word-spacing:-121.643700px;}
.ws47{word-spacing:-112.510050px;}
.ws46{word-spacing:-112.330050px;}
.ws45{word-spacing:-112.270050px;}
.wsa1{word-spacing:-108.000000px;}
.ws44{word-spacing:-104.410050px;}
.ws2{word-spacing:-85.500000px;}
.ws76{word-spacing:-45.075000px;}
.ws67{word-spacing:-45.037500px;}
.ws79{word-spacing:-42.301950px;}
.ws78{word-spacing:-42.255000px;}
.ws68{word-spacing:-41.662500px;}
.ws90{word-spacing:-40.893450px;}
.ws92{word-spacing:-40.846500px;}
.ws91{word-spacing:-40.837050px;}
.ws97{word-spacing:-40.793850px;}
.ws94{word-spacing:-40.506300px;}
.ws95{word-spacing:-40.269450px;}
.ws96{word-spacing:-40.143450px;}
.ws2d{word-spacing:-40.073700px;}
.ws98{word-spacing:-39.700500px;}
.ws41{word-spacing:-39.672450px;}
.ws40{word-spacing:-39.546450px;}
.ws4f{word-spacing:-39.412500px;}
.ws36{word-spacing:-39.276450px;}
.ws99{word-spacing:-39.180450px;}
.ws93{word-spacing:-38.854500px;}
.ws3f{word-spacing:-38.490300px;}
.ws7f{word-spacing:-38.457000px;}
.wsc{word-spacing:-38.453850px;}
.ws9d{word-spacing:-38.443950px;}
.ws51{word-spacing:-38.340300px;}
.ws7e{word-spacing:-38.303850px;}
.ws9b{word-spacing:-38.197950px;}
.ws5{word-spacing:-38.076450px;}
.ws9a{word-spacing:-38.047950px;}
.ws7{word-spacing:-38.029500px;}
.ws89{word-spacing:-37.989000px;}
.ws83{word-spacing:-37.882500px;}
.wsd{word-spacing:-37.846050px;}
.ws50{word-spacing:-37.820850px;}
.ws42{word-spacing:-37.817250px;}
.ws10{word-spacing:-37.696050px;}
.ws82{word-spacing:-37.480650px;}
.wsb{word-spacing:-37.332450px;}
.ws77{word-spacing:-37.267500px;}
.ws43{word-spacing:-37.236450px;}
.ws85{word-spacing:-37.218450px;}
.ws3e{word-spacing:-37.207500px;}
.ws3d{word-spacing:-37.123500px;}
.wsf{word-spacing:-37.110450px;}
.ws7d{word-spacing:-37.086450px;}
.ws81{word-spacing:-36.667950px;}
.ws80{word-spacing:-36.621000px;}
.ws2c{word-spacing:-36.615450px;}
.ws27{word-spacing:-36.465450px;}
.ws26{word-spacing:-36.111450px;}
.ws24{word-spacing:-35.961450px;}
.ws88{word-spacing:-35.643450px;}
.ws8a{word-spacing:-35.599500px;}
.ws23{word-spacing:-35.401050px;}
.ws25{word-spacing:-35.259450px;}
.ws9e{word-spacing:-35.035950px;}
.ws9c{word-spacing:-34.885950px;}
.wsa0{word-spacing:-33.962100px;}
.ws70{word-spacing:-33.959100px;}
.ws65{word-spacing:-33.873000px;}
.ws8c{word-spacing:-33.850950px;}
.ws28{word-spacing:-33.831300px;}
.ws4d{word-spacing:-33.818700px;}
.ws66{word-spacing:-33.817500px;}
.ws6c{word-spacing:-33.812400px;}
.ws6a{word-spacing:-33.804000px;}
.ws72{word-spacing:-33.777000px;}
.ws6e{word-spacing:-33.736500px;}
.ws64{word-spacing:-33.723000px;}
.ws52{word-spacing:-33.681300px;}
.ws6b{word-spacing:-33.678300px;}
.ws5d{word-spacing:-33.308700px;}
.ws58{word-spacing:-33.303000px;}
.ws5b{word-spacing:-32.828700px;}
.ws69{word-spacing:-32.567700px;}
.ws22{word-spacing:-32.271450px;}
.ws2b{word-spacing:-32.253450px;}
.ws60{word-spacing:-31.875000px;}
.ws5c{word-spacing:-31.833300px;}
.ws56{word-spacing:-31.767300px;}
.ws5a{word-spacing:-31.725000px;}
.ws55{word-spacing:-31.683300px;}
.ws71{word-spacing:-31.502700px;}
.ws54{word-spacing:-31.500300px;}
.ws57{word-spacing:-31.316700px;}
.ws5f{word-spacing:-31.275000px;}
.wse{word-spacing:-30.412500px;}
.ws6{word-spacing:-30.375000px;}
.ws3c{word-spacing:-30.369450px;}
.ws4e{word-spacing:-30.065700px;}
.ws59{word-spacing:-30.039000px;}
.ws4c{word-spacing:-30.024000px;}
.ws5e{word-spacing:-29.984700px;}
.ws37{word-spacing:-29.625450px;}
.ws38{word-spacing:-29.578500px;}
.ws62{word-spacing:-29.144700px;}
.ws63{word-spacing:-28.808700px;}
.ws2a{word-spacing:-28.785450px;}
.ws8e{word-spacing:-28.090500px;}
.ws7b{word-spacing:-27.836700px;}
.ws87{word-spacing:-27.688500px;}
.ws7c{word-spacing:-27.686700px;}
.ws4a{word-spacing:-26.932500px;}
.ws3b{word-spacing:-26.829000px;}
.ws20{word-spacing:-26.782500px;}
.ws7a{word-spacing:-26.761500px;}
.ws8f{word-spacing:-26.271000px;}
.ws18{word-spacing:-26.263200px;}
.ws35{word-spacing:-26.239950px;}
.ws75{word-spacing:-26.113800px;}
.ws1c{word-spacing:-26.092500px;}
.wsa{word-spacing:-26.089950px;}
.ws15{word-spacing:-25.912500px;}
.ws1a{word-spacing:-25.875000px;}
.ws11{word-spacing:-25.732500px;}
.ws0{word-spacing:-25.688700px;}
.ws74{word-spacing:-25.582500px;}
.ws9{word-spacing:-25.399950px;}
.ws8{word-spacing:-25.353000px;}
.ws16{word-spacing:-25.071000px;}
.ws14{word-spacing:-25.042500px;}
.ws3a{word-spacing:-24.921000px;}
.ws1d{word-spacing:-24.892500px;}
.ws39{word-spacing:-24.430500px;}
.ws4b{word-spacing:-24.250500px;}
.ws53{word-spacing:-24.249000px;}
.ws19{word-spacing:-24.105000px;}
.ws13{word-spacing:-24.100500px;}
.ws1{word-spacing:-23.810700px;}
.ws1b{word-spacing:-23.775000px;}
.ws3{word-spacing:-23.769000px;}
.ws12{word-spacing:-23.734500px;}
.ws17{word-spacing:-23.625000px;}
.ws1e{word-spacing:-23.590500px;}
.ws48{word-spacing:-23.295000px;}
.ws21{word-spacing:-23.224500px;}
.ws1f{word-spacing:-23.145000px;}
.ws6f{word-spacing:-22.559700px;}
.ws61{word-spacing:-21.308700px;}
.ws49{word-spacing:-16.912500px;}
.ws73{word-spacing:-16.875000px;}
.ws2e{word-spacing:-0.144150px;}
.ws31{word-spacing:-0.094650px;}
.ws30{word-spacing:-0.094500px;}
.ws4{word-spacing:0.000000px;}
.ws32{word-spacing:1.457850px;}
.ws8d{word-spacing:59.387550px;}
.ws8b{word-spacing:69.576000px;}
.ws84{word-spacing:252.123600px;}
.ws29{word-spacing:575.068050px;}
.ws6d{word-spacing:703.122150px;}
.ws34{word-spacing:1787.499150px;}
._1a{margin-left:-718.227000px;}
._e{margin-left:-555.442800px;}
._3f{margin-left:-182.481300px;}
._10{margin-left:-15.882900px;}
._17{margin-left:-7.713750px;}
._24{margin-left:-5.971350px;}
._5{margin-left:-4.863150px;}
._2{margin-left:-3.189300px;}
._1{margin-left:-1.284750px;}
._0{width:1.969950px;}
._3{width:3.720600px;}
._4{width:5.284350px;}
._b{width:6.613350px;}
._c{width:8.060400px;}
._11{width:9.175350px;}
._1b{width:10.932300px;}
._15{width:12.212550px;}
._14{width:13.317900px;}
._18{width:14.760900px;}
._19{width:15.902700px;}
._9{width:17.439750px;}
._a{width:18.992700px;}
._25{width:20.882550px;}
._26{width:22.268400px;}
._d{width:23.294250px;}
._7{width:24.376500px;}
._3e{width:26.590050px;}
._2a{width:28.425600px;}
._28{width:30.549750px;}
._1f{width:32.411250px;}
._6{width:34.650600px;}
._1e{width:36.252900px;}
._20{width:37.646700px;}
._16{width:39.103350px;}
._13{width:40.522950px;}
._12{width:41.865750px;}
._3a{width:43.085700px;}
._2e{width:46.128600px;}
._21{width:48.539700px;}
._39{width:49.807650px;}
._2d{width:51.011100px;}
._22{width:52.791900px;}
._23{width:54.276900px;}
._2c{width:58.259700px;}
._38{width:59.654850px;}
._32{width:61.189500px;}
._8{width:62.353500px;}
._27{width:75.581550px;}
._37{width:78.348900px;}
._1c{width:85.894650px;}
._1d{width:89.562750px;}
._31{width:92.657400px;}
._40{width:108.650700px;}
._34{width:132.376950px;}
._33{width:133.932900px;}
._35{width:150.210000px;}
._2f{width:152.716800px;}
._3b{width:182.481300px;}
._3d{width:200.474250px;}
._3c{width:202.263450px;}
._41{width:222.842400px;}
._42{width:255.894150px;}
._36{width:265.993800px;}
._30{width:699.692850px;}
._2b{width:1003.524150px;}
._29{width:1027.897950px;}
._f{width:1939.828050px;}
.fc16{color:rgb(51,51,51);}
.fc15{color:rgb(0,150,255);}
.fc14{color:rgb(6,69,173);}
.fcf{color:rgb(255,147,0);}
.fce{color:rgb(0,144,81);}
.fc11{color:rgb(0,249,0);}
.fcd{color:rgb(0,145,147);}
.fc2{color:rgb(4,51,255);}
.fc0{color:rgb(204,0,153);}
.fc4{color:rgb(0,150,0);}
.fc7{color:rgb(255,0,0);}
.fc9{color:rgb(142,250,0);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(51,51,204);}
.fc10{color:rgb(255,126,121);}
.fc6{color:rgb(28,28,28);}
.fc5{color:rgb(255,38,0);}
.fc13{color:rgb(0,0,255);}
.fc12{color:rgb(37,37,37);}
.fc8{color:transparent;}
.fca{color:rgb(192,80,77);}
.fcb{color:rgb(0,39,159);}
.fcc{color:rgb(255,207,1);}
.fs21{font-size:58.650000px;}
.fs25{font-size:63.000000px;}
.fs24{font-size:63.150000px;}
.fsd{font-size:67.500000px;}
.fsf{font-size:67.650000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs16{font-size:76.500000px;}
.fs18{font-size:76.650000px;}
.fs8{font-size:81.000000px;}
.fs9{font-size:81.150000px;}
.fs0{font-size:85.500000px;}
.fs1{font-size:85.650000px;}
.fs1c{font-size:90.000000px;}
.fsa{font-size:94.500000px;}
.fs3{font-size:94.650000px;}
.fsc{font-size:103.500000px;}
.fsb{font-size:103.650000px;}
.fs12{font-size:108.000000px;}
.fs13{font-size:108.150000px;}
.fs17{font-size:112.500000px;}
.fse{font-size:112.650000px;}
.fs1f{font-size:117.000000px;}
.fs1b{font-size:117.150000px;}
.fs7{font-size:121.500000px;}
.fs5{font-size:121.650000px;}
.fs27{font-size:130.500000px;}
.fs26{font-size:130.650000px;}
.fs1e{font-size:135.000000px;}
.fs20{font-size:135.150000px;}
.fs10{font-size:144.150000px;}
.fs2{font-size:148.650000px;}
.fs11{font-size:157.650000px;}
.fs1a{font-size:166.650000px;}
.fs22{font-size:166.800000px;}
.fs19{font-size:180.150000px;}
.fs1d{font-size:180.300000px;}
.fs15{font-size:193.650000px;}
.fs14{font-size:216.300000px;}
.fs23{font-size:599.250000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:15.600000px;}
.y1b3{bottom:35.025000px;}
.y1{bottom:35.512500px;}
.y173{bottom:41.550000px;}
.ye4{bottom:42.225000px;}
.y8b{bottom:45.975000px;}
.yb2{bottom:50.175000px;}
.yaf{bottom:50.287500px;}
.y43{bottom:53.625000px;}
.yb4{bottom:55.912500px;}
.y11c{bottom:56.737500px;}
.y160{bottom:57.450000px;}
.y19d{bottom:59.362500px;}
.ybb{bottom:60.712500px;}
.y1b2{bottom:63.187500px;}
.yef{bottom:67.050000px;}
.yd7{bottom:71.100000px;}
.y1eb{bottom:72.337500px;}
.y94{bottom:73.500000px;}
.y23{bottom:77.587500px;}
.y8a{bottom:82.012500px;}
.yb1{bottom:82.837500px;}
.yae{bottom:82.950000px;}
.y15f{bottom:83.362500px;}
.ye3{bottom:85.012500px;}
.y1dd{bottom:87.862500px;}
.yb3{bottom:88.575000px;}
.y1da{bottom:96.862500px;}
.y1ea{bottom:97.087500px;}
.yee{bottom:99.712500px;}
.y5f{bottom:102.300000px;}
.y19c{bottom:113.437500px;}
.yb9{bottom:114.300000px;}
.y110{bottom:114.337500px;}
.y198{bottom:114.487500px;}
.y83{bottom:117.600000px;}
.y22{bottom:119.250000px;}
.y169{bottom:120.937500px;}
.y19{bottom:121.200000px;}
.y1e9{bottom:123.000000px;}
.y145{bottom:123.600000px;}
.ya2{bottom:124.950000px;}
.y106{bottom:131.250000px;}
.y42{bottom:132.487500px;}
.y1d9{bottom:132.900000px;}
.y124{bottom:134.550000px;}
.y141{bottom:137.962500px;}
.y5e{bottom:138.337500px;}
.y138{bottom:138.487500px;}
.y1b1{bottom:144.712500px;}
.y82{bottom:148.012500px;}
.y18{bottom:148.237500px;}
.y1c4{bottom:151.980000px;}
.y105{bottom:158.280000px;}
.y50{bottom:158.775000px;}
.y8c{bottom:162.270000px;}
.y19b{bottom:167.475000px;}
.y140{bottom:168.375000px;}
.y137{bottom:168.900000px;}
.y1d8{bottom:168.930000px;}
.yb0{bottom:169.845000px;}
.y31{bottom:170.775000px;}
.yad{bottom:171.630000px;}
.y17{bottom:175.230000px;}
.y17c{bottom:178.155000px;}
.y1b0{bottom:180.750000px;}
.y197{bottom:182.805000px;}
.yb8{bottom:183.045000px;}
.yd6{bottom:191.925000px;}
.y15e{bottom:194.295000px;}
.y17d{bottom:196.800000px;}
.ye2{bottom:197.025000px;}
.y13f{bottom:198.750000px;}
.y1d7{bottom:204.975000px;}
.y111{bottom:213.675000px;}
.yb7{bottom:216.705000px;}
.y1af{bottom:216.795000px;}
.y171{bottom:220.650000px;}
.y19a{bottom:221.550000px;}
.y123{bottom:223.275000px;}
.y1c3{bottom:224.070000px;}
.y196{bottom:225.630000px;}
.yf8{bottom:227.295000px;}
.y104{bottom:228.120000px;}
.y16{bottom:228.195000px;}
.y6f{bottom:228.525000px;}
.ye6{bottom:229.005000px;}
.y89{bottom:229.350000px;}
.y4f{bottom:230.850000px;}
.ya3{bottom:233.955000px;}
.yba{bottom:236.400000px;}
.y41{bottom:238.095000px;}
.y1d6{bottom:241.005000px;}
.y1dc{bottom:242.850000px;}
.y93{bottom:244.695000px;}
.yb6{bottom:250.920000px;}
.y103{bottom:255.120000px;}
.y15{bottom:255.195000px;}
.y170{bottom:256.695000px;}
.y11b{bottom:260.745000px;}
.yac{bottom:261.225000px;}
.y68{bottom:263.595000px;}
.y136{bottom:264.300000px;}
.y88{bottom:265.380000px;}
.yb5{bottom:265.650000px;}
.y1db{bottom:274.380000px;}
.y199{bottom:274.455000px;}
.y1d5{bottom:277.050000px;}
.y17a{bottom:278.880000px;}
.y14{bottom:282.225000px;}
.yd5{bottom:283.050000px;}
.ye7{bottom:289.320000px;}
.y16f{bottom:292.725000px;}
.y10f{bottom:302.130000px;}
.y81{bottom:302.700000px;}
.y13e{bottom:302.850000px;}
.y4e{bottom:302.925000px;}
.y13{bottom:308.130000px;}
.ye1{bottom:309.045000px;}
.y179{bottom:314.925000px;}
.y1e8{bottom:316.845000px;}
.y16e{bottom:328.770000px;}
.y40{bottom:329.280000px;}
.y1ae{bottom:330.780000px;}
.y172{bottom:331.095000px;}
.y1c2{bottom:332.175000px;}
.y10e{bottom:334.755000px;}
.y15d{bottom:335.100000px;}
.ya1{bottom:336.450000px;}
.y11a{bottom:338.520000px;}
.y144{bottom:342.000000px;}
.y1e7{bottom:350.625000px;}
.y178{bottom:350.970000px;}
.y195{bottom:355.125000px;}
.y80{bottom:358.545000px;}
.y12{bottom:362.175000px;}
.y1ac{bottom:363.450000px;}
.y16d{bottom:364.800000px;}
.ye0{bottom:366.975000px;}
.y1c1{bottom:368.220000px;}
.y1ad{bottom:369.075000px;}
.y135{bottom:370.230000px;}
.y1df{bottom:370.275000px;}
.y4d{bottom:376.125000px;}
.y13c{bottom:380.325000px;}
.y1e6{bottom:384.405000px;}
.yda{bottom:386.505000px;}
.yed{bottom:386.880000px;}
.y7f{bottom:388.950000px;}
.y11{bottom:389.220000px;}
.y3f{bottom:389.820000px;}
.y102{bottom:392.520000px;}
.y1ab{bottom:401.745000px;}
.y1de{bottom:402.945000px;}
.y5a{bottom:406.980000px;}
.y147{bottom:409.125000px;}
.y149{bottom:409.350000px;}
.yf7{bottom:410.820000px;}
.y194{bottom:412.545000px;}
.y15c{bottom:413.400000px;}
.y10{bottom:416.250000px;}
.y33{bottom:417.870000px;}
.y146{bottom:418.800000px;}
.y118{bottom:422.130000px;}
.y87{bottom:428.475000px;}
.y122{bottom:431.820000px;}
.y8d{bottom:432.195000px;}
.y116{bottom:432.405000px;}
.yd3{bottom:435.000000px;}
.y18a{bottom:438.450000px;}
.y177{bottom:446.670000px;}
.y1aa{bottom:448.320000px;}
.y1c9{bottom:450.720000px;}
.y1e5{bottom:451.995000px;}
.y67{bottom:453.225000px;}
.y112{bottom:454.695000px;}
.y34{bottom:458.445000px;}
.y13d{bottom:460.020000px;}
.y101{bottom:461.205000px;}
.y32{bottom:465.900000px;}
.yab{bottom:467.070000px;}
.y56{bottom:467.250000px;}
.yf{bottom:469.155000px;}
.ya0{bottom:469.695000px;}
.y165{bottom:471.705000px;}
.y1e4{bottom:484.650000px;}
.y1d4{bottom:486.405000px;}
.y1a9{bottom:486.600000px;}
.y100{bottom:487.125000px;}
.y10d{bottom:490.275000px;}
.ye{bottom:490.575000px;}
.y15b{bottom:492.075000px;}
.y134{bottom:492.975000px;}
.y92{bottom:511.245000px;}
.yd{bottom:516.495000px;}
.y7e{bottom:517.245000px;}
.y14a{bottom:517.650000px;}
.y115{bottom:518.250000px;}
.y1e3{bottom:518.445000px;}
.y4c{bottom:519.000000px;}
.y1d3{bottom:521.325000px;}
.y1c8{bottom:527.070000px;}
.y1a8{bottom:533.850000px;}
.y58{bottom:540.600000px;}
.y189{bottom:542.850000px;}
.y13b{bottom:544.620000px;}
.y155{bottom:545.355000px;}
.y1bb{bottom:548.280000px;}
.y133{bottom:553.725000px;}
.y1d2{bottom:556.245000px;}
.yff{bottom:561.450000px;}
.y1a7{bottom:565.350000px;}
.yc{bottom:570.525000px;}
.yd2{bottom:573.150000px;}
.yf6{bottom:576.225000px;}
.y188{bottom:578.880000px;}
.y1ba{bottom:583.200000px;}
.y57{bottom:590.025000px;}
.y7c{bottom:590.850000px;}
.yfe{bottom:595.245000px;}
.y121{bottom:595.980000px;}
.y14b{bottom:596.970000px;}
.yb{bottom:597.570000px;}
.yaa{bottom:597.720000px;}
.y1a6{bottom:598.005000px;}
.y166{bottom:602.925000px;}
.y3e{bottom:606.255000px;}
.y59{bottom:606.750000px;}
.y132{bottom:608.175000px;}
.y5d{bottom:610.995000px;}
.y9e{bottom:611.775000px;}
.y187{bottom:614.925000px;}
.y1c0{bottom:615.045000px;}
.y2b{bottom:617.175000px;}
.y1b9{bottom:618.105000px;}
.y55{bottom:619.320000px;}
.ya{bottom:623.445000px;}
.y1d1{bottom:624.945000px;}
.y6e{bottom:634.800000px;}
.y7a{bottom:635.925000px;}
.y1a5{bottom:645.255000px;}
.y10a{bottom:649.725000px;}
.y1bf{bottom:649.950000px;}
.y2a{bottom:652.095000px;}
.y15a{bottom:655.380000px;}
.y17e{bottom:655.905000px;}
.y109{bottom:658.875000px;}
.y1d0{bottom:659.850000px;}
.y119{bottom:663.780000px;}
.yfd{bottom:663.945000px;}
.y14f{bottom:665.220000px;}
.y1a3{bottom:671.130000px;}
.y25{bottom:672.345000px;}
.y6d{bottom:673.095000px;}
.y17f{bottom:674.280000px;}
.y78{bottom:674.970000px;}
.yec{bottom:676.575000px;}
.y1a4{bottom:676.770000px;}
.yc0{bottom:676.875000px;}
.y4b{bottom:677.280000px;}
.y9{bottom:677.505000px;}
.y162{bottom:680.625000px;}
.y148{bottom:680.730000px;}
.y29{bottom:688.125000px;}
.ya6{bottom:688.725000px;}
.y143{bottom:689.520000px;}
.yfc{bottom:690.945000px;}
.y13a{bottom:694.500000px;}
.y1cf{bottom:694.755000px;}
.y91{bottom:695.850000px;}
.yc6{bottom:696.195000px;}
.y1b8{bottom:696.975000px;}
.y193{bottom:698.625000px;}
.y131{bottom:700.500000px;}
.y8{bottom:704.550000px;}
.yf5{bottom:705.120000px;}
.y3d{bottom:708.825000px;}
.y14e{bottom:709.320000px;}
.y1a2{bottom:709.425000px;}
.yeb{bottom:710.370000px;}
.y161{bottom:713.280000px;}
.y1bd{bottom:715.500000px;}
.yfb{bottom:717.975000px;}
.y117{bottom:719.130000px;}
.y154{bottom:721.050000px;}
.yd4{bottom:721.650000px;}
.y4a{bottom:725.655000px;}
.y52{bottom:729.300000px;}
.y130{bottom:729.750000px;}
.y7{bottom:730.425000px;}
.y186{bottom:730.905000px;}
.y1b7{bottom:731.850000px;}
.y90{bottom:731.880000px;}
.y7d{bottom:736.380000px;}
.y3c{bottom:739.245000px;}
.ya7{bottom:739.575000px;}
.yc5{bottom:740.130000px;}
.y18c{bottom:746.175000px;}
.y192{bottom:749.655000px;}
.y12f{bottom:752.295000px;}
.y6c{bottom:756.000000px;}
.y6{bottom:757.470000px;}
.y176{bottom:757.500000px;}
.y21{bottom:757.950000px;}
.y51{bottom:758.595000px;}
.y1be{bottom:759.150000px;}
.y28{bottom:760.200000px;}
.yc8{bottom:760.530000px;}
.y1ce{bottom:764.100000px;}
.y1c5{bottom:765.195000px;}
.y1b6{bottom:766.755000px;}
.yd9{bottom:767.280000px;}
.ybf{bottom:768.195000px;}
.y65{bottom:770.100000px;}
.y5b{bottom:772.050000px;}
.y120{bottom:772.575000px;}
.y185{bottom:774.870000px;}
.ya9{bottom:774.900000px;}
.y1c7{bottom:778.800000px;}
.y9d{bottom:779.475000px;}
.y12e{bottom:782.700000px;}
.yc4{bottom:782.925000px;}
.y63{bottom:784.170000px;}
.y5{bottom:784.500000px;}
.y61{bottom:784.875000px;}
.y7b{bottom:789.075000px;}
.y49{bottom:793.050000px;}
.y20{bottom:793.995000px;}
.y1a1{bottom:795.225000px;}
.y27{bottom:796.245000px;}
.y191{bottom:797.700000px;}
.y1cd{bottom:800.130000px;}
.yd8{bottom:803.325000px;}
.y4{bottom:804.750000px;}
.y1bc{bottom:805.575000px;}
.ycb{bottom:807.120000px;}
.yf4{bottom:813.870000px;}
.y12d{bottom:814.245000px;}
.y3b{bottom:817.245000px;}
.y184{bottom:817.650000px;}
.y151{bottom:818.475000px;}
.y164{bottom:818.745000px;}
.y97{bottom:821.625000px;}
.y77{bottom:822.120000px;}
.y114{bottom:824.100000px;}
.yc3{bottom:826.830000px;}
.y48{bottom:829.080000px;}
.y3{bottom:831.795000px;}
.y26{bottom:832.275000px;}
.y1cc{bottom:836.175000px;}
.y1f{bottom:837.945000px;}
.y159{bottom:839.250000px;}
.y79{bottom:840.120000px;}
.ya5{bottom:840.300000px;}
.y16c{bottom:843.150000px;}
.y12c{bottom:844.650000px;}
.ydf{bottom:845.100000px;}
.yf3{bottom:845.400000px;}
.ybe{bottom:846.630000px;}
.y1b5{bottom:846.750000px;}
.y3a{bottom:847.650000px;}
.y64{bottom:848.700000px;}
.y190{bottom:848.775000px;}
.y139{bottom:853.125000px;}
.y71{bottom:854.205000px;}
.ycc{bottom:855.255000px;}
.y70{bottom:857.550000px;}
.y2{bottom:858.825000px;}
.y183{bottom:861.570000px;}
.y47{bottom:861.750000px;}
.y156{bottom:862.275000px;}
.y95{bottom:863.445000px;}
.yd1{bottom:864.195000px;}
.y9f{bottom:868.200000px;}
.y10c{bottom:868.425000px;}
.yc2{bottom:870.750000px;}
.y1cb{bottom:872.205000px;}
.y1e{bottom:873.975000px;}
.yea{bottom:874.995000px;}
.y12b{bottom:875.025000px;}
.yfa{bottom:875.625000px;}
.yf2{bottom:875.775000px;}
.y85{bottom:876.630000px;}
.yc9{bottom:877.170000px;}
.y39{bottom:878.025000px;}
.y66{bottom:878.445000px;}
.y1a0{bottom:878.700000px;}
.y16b{bottom:879.195000px;}
.yde{bottom:881.130000px;}
.y1b4{bottom:881.670000px;}
.y6b{bottom:881.880000px;}
.y76{bottom:882.945000px;}
.y18e{bottom:888.525000px;}
.y54{bottom:888.795000px;}
.y96{bottom:889.350000px;}
.y2f{bottom:891.570000px;}
.yd0{bottom:894.600000px;}
.y175{bottom:894.870000px;}
.y46{bottom:897.795000px;}
.yf9{bottom:902.670000px;}
.y12a{bottom:905.445000px;}
.y182{bottom:905.475000px;}
.yf1{bottom:906.195000px;}
.ye9{bottom:906.525000px;}
.y62{bottom:907.620000px;}
.y38{bottom:908.445000px;}
.y9c{bottom:910.080000px;}
.y11f{bottom:910.320000px;}
.y150{bottom:911.100000px;}
.yca{bottom:911.700000px;}
.y84{bottom:912.630000px;}
.yc1{bottom:913.545000px;}
.y75{bottom:914.445000px;}
.y18d{bottom:916.650000px;}
.y1d{bottom:916.755000px;}
.y1a{bottom:918.825000px;}
.y1e2{bottom:922.725000px;}
.ybd{bottom:922.995000px;}
.y2e{bottom:927.600000px;}
.y174{bottom:930.900000px;}
.y45{bottom:934.950000px;}
.yf0{bottom:936.600000px;}
.y129{bottom:936.975000px;}
.y6a{bottom:937.050000px;}
.y60{bottom:938.175000px;}
.y153{bottom:938.955000px;}
.ye8{bottom:939.195000px;}
.y37{bottom:939.975000px;}
.y9b{bottom:941.625000px;}
.y74{bottom:944.850000px;}
.y181{bottom:948.255000px;}
.y10b{bottom:949.005000px;}
.y2d{bottom:950.325000px;}
.y14d{bottom:950.475000px;}
.y11e{bottom:950.850000px;}
.y19f{bottom:951.945000px;}
.ya8{bottom:952.080000px;}
.ycf{bottom:953.370000px;}
.y1c6{bottom:956.100000px;}
.y1e1{bottom:956.505000px;}
.y1ca{bottom:961.380000px;}
.y8f{bottom:966.000000px;}
.y128{bottom:967.380000px;}
.y9a{bottom:972.045000px;}
.y69{bottom:973.080000px;}
.y73{bottom:975.255000px;}
.y158{bottom:975.630000px;}
.y113{bottom:979.755000px;}
.ydd{bottom:979.875000px;}
.ybc{bottom:981.420000px;}
.y53{bottom:982.275000px;}
.ydb{bottom:983.370000px;}
.yce{bottom:983.745000px;}
.y180{bottom:984.300000px;}
.y2c{bottom:985.245000px;}
.y163{bottom:985.350000px;}
.y16a{bottom:986.475000px;}
.y86{bottom:986.505000px;}
.y168{bottom:987.330000px;}
.y125{bottom:988.005000px;}
.y142{bottom:988.425000px;}
.y11d{bottom:990.300000px;}
.y107{bottom:995.925000px;}
.y5c{bottom:996.570000px;}
.y127{bottom:997.800000px;}
.y30{bottom:1000.695000px;}
.y36{bottom:1000.800000px;}
.y152{bottom:1001.955000px;}
.y8e{bottom:1002.045000px;}
.y99{bottom:1002.420000px;}
.y167{bottom:1003.500000px;}
.y24{bottom:1003.800000px;}
.y1c{bottom:1004.475000px;}
.ye5{bottom:1004.550000px;}
.y72{bottom:1005.675000px;}
.y44{bottom:1009.050000px;}
.y18f{bottom:1012.005000px;}
.y17b{bottom:1013.505000px;}
.ycd{bottom:1014.150000px;}
.y14c{bottom:1014.255000px;}
.ydc{bottom:1015.920000px;}
.y19e{bottom:1016.250000px;}
.y18b{bottom:1018.005000px;}
.y108{bottom:1019.775000px;}
.y1e0{bottom:1022.925000px;}
.y126{bottom:1028.205000px;}
.y35{bottom:1031.205000px;}
.y98{bottom:1032.825000px;}
.y1b{bottom:1033.755000px;}
.y157{bottom:1037.205000px;}
.yc7{bottom:1047.330000px;}
.h2f{height:70.664062px;}
.h3c{height:72.185229px;}
.h27{height:76.649414px;}
.h21{height:77.457715px;}
.h1{height:83.913574px;}
.h39{height:84.060791px;}
.h45{height:84.763916px;}
.h19{height:87.227051px;}
.h2e{height:88.330078px;}
.h3{height:89.173828px;}
.h2{height:89.330273px;}
.h3f{height:90.030762px;}
.h3e{height:90.180835px;}
.h24{height:92.786133px;}
.h23{height:92.920605px;}
.h8{height:94.546143px;}
.h5{height:94.696216px;}
.h38{height:98.716992px;}
.h11{height:99.553418px;}
.hb{height:101.579590px;}
.ha{height:101.726807px;}
.h16{height:103.700610px;}
.h1b{height:104.308594px;}
.h9{height:104.459766px;}
.h32{height:106.143311px;}
.h42{height:108.052734px;}
.h43{height:108.202808px;}
.h2b{height:108.982178px;}
.h2c{height:109.116724px;}
.h4a{height:112.554932px;}
.h1c{height:112.640625px;}
.hc{height:112.705005px;}
.h1d{height:112.797070px;}
.h10{height:115.854932px;}
.h36{height:117.057129px;}
.h35{height:117.207202px;}
.h26{height:117.333984px;}
.h25{height:117.490430px;}
.h44{height:119.392822px;}
.h12{height:120.950684px;}
.h13{height:121.191240px;}
.h18{height:121.485791px;}
.h7{height:121.559326px;}
.h6{height:121.709399px;}
.h3d{height:121.869624px;}
.h2a{height:122.183789px;}
.h22{height:126.720703px;}
.hd{height:126.877148px;}
.h33{height:128.129399px;}
.h47{height:130.563721px;}
.h46{height:130.713794px;}
.h34{height:135.065918px;}
.h37{height:135.215991px;}
.h17{height:139.636216px;}
.h40{height:139.696216px;}
.h41{height:139.876216px;}
.h1a{height:140.153467px;}
.h3a{height:144.220386px;}
.h49{height:145.276172px;}
.hf{height:150.343945px;}
.h1f{height:154.724854px;}
.he{height:154.876216px;}
.h4{height:155.037305px;}
.h15{height:157.726978px;}
.h31{height:161.501660px;}
.h29{height:163.557861px;}
.h2d{height:171.327202px;}
.h28{height:176.807373px;}
.h30{height:176.954590px;}
.h20{height:190.056885px;}
.h1e{height:225.594141px;}
.h14{height:229.709399px;}
.h48{height:279.316216px;}
.h3b{height:399.402466px;}
.h0{height:1080.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x7f{left:15.562488px;}
.xc{left:17.212488px;}
.x3{left:18.937488px;}
.x7{left:23.549988px;}
.x5{left:24.937488px;}
.x46{left:28.087488px;}
.x40{left:31.424988px;}
.x71{left:32.849988px;}
.xf{left:38.212488px;}
.xa{left:39.637488px;}
.x10{left:40.874988px;}
.x65{left:42.037488px;}
.x11{left:43.574988px;}
.x61{left:45.374988px;}
.x17{left:46.462488px;}
.x23{left:48.074988px;}
.x72{left:49.949988px;}
.x3d{left:51.187488px;}
.x9{left:52.237488px;}
.x13{left:53.399988px;}
.x5e{left:54.974988px;}
.x6{left:56.249988px;}
.x15{left:57.974988px;}
.x4{left:59.474988px;}
.x2b{left:61.574988px;}
.x24{left:62.699988px;}
.x5c{left:64.649988px;}
.x3f{left:66.224988px;}
.x33{left:68.099988px;}
.x64{left:69.337488px;}
.x1c{left:70.612488px;}
.x73{left:71.887488px;}
.x3c{left:73.237488px;}
.x1a{left:74.437488px;}
.x3a{left:75.824988px;}
.x2c{left:77.062488px;}
.x38{left:78.487488px;}
.x83{left:79.762488px;}
.x62{left:81.224988px;}
.x7a{left:84.112488px;}
.x2{left:85.274988px;}
.x14{left:86.662488px;}
.x32{left:89.812488px;}
.x7b{left:93.524988px;}
.x6c{left:94.724988px;}
.x16{left:96.037488px;}
.x6a{left:97.349988px;}
.x74{left:100.987488px;}
.x4b{left:102.374988px;}
.x70{left:103.762488px;}
.x20{left:106.987488px;}
.x2f{left:108.712488px;}
.x12{left:112.349988px;}
.x3b{left:116.362488px;}
.x7e{left:117.937488px;}
.x19{left:124.574988px;}
.x5d{left:126.562488px;}
.x92{left:128.587488px;}
.xd{left:129.862488px;}
.x8f{left:133.387488px;}
.x79{left:134.587488px;}
.x6b{left:136.087488px;}
.x55{left:141.824988px;}
.x8d{left:145.087488px;}
.x88{left:146.887488px;}
.x5f{left:150.179988px;}
.x89{left:151.424988px;}
.x4e{left:153.374988px;}
.x2a{left:155.849988px;}
.x51{left:156.929988px;}
.x8e{left:167.924988px;}
.x8a{left:170.024988px;}
.x18{left:175.649988px;}
.x52{left:184.724988px;}
.x35{left:193.319988px;}
.x56{left:205.919988px;}
.x54{left:207.269988px;}
.x30{left:208.919988px;}
.x84{left:215.999988px;}
.x63{left:218.174988px;}
.x45{left:225.149988px;}
.x60{left:226.619988px;}
.x1d{left:238.274988px;}
.x29{left:266.924988px;}
.x1e{left:269.369988px;}
.x85{left:276.074988px;}
.x41{left:287.849988px;}
.x25{left:290.174988px;}
.x42{left:298.244988px;}
.x82{left:305.099988px;}
.x22{left:313.874988px;}
.xe{left:320.624988px;}
.x2e{left:327.194988px;}
.x7d{left:329.849988px;}
.x68{left:333.119988px;}
.x86{left:336.149988px;}
.x50{left:342.644988px;}
.x4f{left:344.894988px;}
.x6d{left:360.194988px;}
.x2d{left:363.374988px;}
.x31{left:376.499988px;}
.x43{left:378.719988px;}
.x81{left:386.924988px;}
.x37{left:394.124988px;}
.x8{left:397.529988px;}
.x87{left:402.254988px;}
.xb{left:408.344988px;}
.x78{left:418.199988px;}
.x36{left:420.149988px;}
.x90{left:423.899988px;}
.x77{left:428.369988px;}
.x8b{left:435.899988px;}
.x4a{left:442.499988px;}
.x69{left:448.394988px;}
.x44{left:457.529988px;}
.x26{left:458.879988px;}
.x48{left:469.694988px;}
.x4d{left:479.399988px;}
.x4c{left:484.649988px;}
.x3e{left:489.374988px;}
.x91{left:491.444988px;}
.x80{left:502.619988px;}
.x21{left:518.324988px;}
.x1b{left:520.199988px;}
.x93{left:536.504988px;}
.x7c{left:549.194988px;}
.x67{left:575.144988px;}
.x5b{left:582.524988px;}
.x47{left:593.999988px;}
.x34{left:597.524988px;}
.x8c{left:598.769988px;}
.x58{left:612.524988px;}
.x6e{left:624.569988px;}
.x6f{left:629.069988px;}
.x27{left:635.774988px;}
.x1f{left:646.499988px;}
.x28{left:647.549988px;}
.x57{left:650.444988px;}
.x53{left:654.149988px;}
.x66{left:655.844988px;}
.x59{left:675.629988px;}
.x76{left:683.504988px;}
.x5a{left:708.374988px;}
.x49{left:717.374988px;}
.x75{left:751.454988px;}
.x39{left:770.999988px;}
.x1{left:781.499988px;}
@media print{
.vf{vertical-align:-92.106667pt;}
.v7{vertical-align:-77.466667pt;}
.v9{vertical-align:-60.000000pt;}
.v18{vertical-align:-52.106667pt;}
.v19{vertical-align:-48.000000pt;}
.v5{vertical-align:-36.000000pt;}
.vb{vertical-align:-32.106667pt;}
.v1{vertical-align:-28.000000pt;}
.ve{vertical-align:-26.186667pt;}
.vc{vertical-align:-24.000000pt;}
.v15{vertical-align:-20.160000pt;}
.v17{vertical-align:-8.000000pt;}
.v13{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:4.000000pt;}
.v16{vertical-align:5.706667pt;}
.vd{vertical-align:24.000000pt;}
.v10{vertical-align:26.240000pt;}
.v2{vertical-align:28.000000pt;}
.v3{vertical-align:32.160000pt;}
.v4{vertical-align:36.000000pt;}
.v8{vertical-align:40.000000pt;}
.v12{vertical-align:48.106667pt;}
.v6{vertical-align:53.493333pt;}
.v11{vertical-align:73.173333pt;}
.va{vertical-align:96.000000pt;}
.v1a{vertical-align:124.106667pt;}
.ls3c{letter-spacing:-2.720000pt;}
.ls39{letter-spacing:-2.672000pt;}
.ls2f{letter-spacing:-2.656000pt;}
.ls63{letter-spacing:-2.586667pt;}
.ls26{letter-spacing:-2.426667pt;}
.ls28{letter-spacing:-2.389333pt;}
.ls59{letter-spacing:-2.293333pt;}
.ls81{letter-spacing:-2.229333pt;}
.ls25{letter-spacing:-2.064000pt;}
.ls8d{letter-spacing:-2.058667pt;}
.ls12{letter-spacing:-2.021333pt;}
.ls1f{letter-spacing:-2.000000pt;}
.ls1a{letter-spacing:-1.936000pt;}
.ls80{letter-spacing:-1.930667pt;}
.ls22{letter-spacing:-1.866667pt;}
.ls15{letter-spacing:-1.845333pt;}
.lsc7{letter-spacing:-1.770667pt;}
.ls1b{letter-spacing:-1.610667pt;}
.lsdf{letter-spacing:-1.584000pt;}
.ls21{letter-spacing:-1.573333pt;}
.ls5b{letter-spacing:-1.477333pt;}
.lse1{letter-spacing:-1.450667pt;}
.ls6d{letter-spacing:-1.445333pt;}
.ls3d{letter-spacing:-1.424000pt;}
.ls43{letter-spacing:-1.317333pt;}
.ls7f{letter-spacing:-1.184000pt;}
.ls7{letter-spacing:-1.162667pt;}
.ls4{letter-spacing:-1.125333pt;}
.ls7c{letter-spacing:-1.098667pt;}
.ls6{letter-spacing:-1.029333pt;}
.lscc{letter-spacing:-1.018667pt;}
.lse{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.906667pt;}
.lsa9{letter-spacing:-0.880000pt;}
.ls13{letter-spacing:-0.858667pt;}
.ls44{letter-spacing:-0.848000pt;}
.ls47{letter-spacing:-0.805333pt;}
.ls1c{letter-spacing:-0.773333pt;}
.lsb2{letter-spacing:-0.762667pt;}
.ls38{letter-spacing:-0.746667pt;}
.ls48{letter-spacing:-0.730667pt;}
.lsac{letter-spacing:-0.725333pt;}
.ls1e{letter-spacing:-0.714667pt;}
.lsa4{letter-spacing:-0.677333pt;}
.lsca{letter-spacing:-0.666667pt;}
.lsf{letter-spacing:-0.661333pt;}
.lsb4{letter-spacing:-0.629333pt;}
.lsc9{letter-spacing:-0.554667pt;}
.lsad{letter-spacing:-0.529600pt;}
.ls36{letter-spacing:-0.460800pt;}
.ls14{letter-spacing:-0.338133pt;}
.lsc8{letter-spacing:-0.302400pt;}
.ls9e{letter-spacing:-0.293333pt;}
.ls53{letter-spacing:-0.230400pt;}
.ls5d{letter-spacing:-0.227200pt;}
.ls11{letter-spacing:-0.204800pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsae{letter-spacing:-0.130667pt;}
.ls88{letter-spacing:-0.124800pt;}
.ls6a{letter-spacing:-0.122133pt;}
.lscb{letter-spacing:-0.088533pt;}
.ls8b{letter-spacing:-0.053067pt;}
.lsc6{letter-spacing:-0.050133pt;}
.ls86{letter-spacing:-0.048000pt;}
.ls8a{letter-spacing:-0.036000pt;}
.ls89{letter-spacing:-0.005600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.011200pt;}
.ls87{letter-spacing:0.024000pt;}
.lsaf{letter-spacing:0.027573pt;}
.lsa3{letter-spacing:0.031733pt;}
.ls83{letter-spacing:0.036000pt;}
.ls9d{letter-spacing:0.066667pt;}
.ls82{letter-spacing:0.085333pt;}
.ls99{letter-spacing:0.086667pt;}
.ls2{letter-spacing:0.114267pt;}
.ls8c{letter-spacing:0.124800pt;}
.ls30{letter-spacing:0.125867pt;}
.lse2{letter-spacing:0.127467pt;}
.ls9b{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.158667pt;}
.ls23{letter-spacing:0.160000pt;}
.ls7a{letter-spacing:0.163200pt;}
.ls75{letter-spacing:0.200267pt;}
.lsaa{letter-spacing:0.202133pt;}
.lsa2{letter-spacing:0.212267pt;}
.ls0{letter-spacing:0.221600pt;}
.ls5e{letter-spacing:0.276267pt;}
.lsd0{letter-spacing:0.299733pt;}
.ls72{letter-spacing:0.300000pt;}
.ls9{letter-spacing:0.316800pt;}
.ls6f{letter-spacing:0.325867pt;}
.ls9c{letter-spacing:0.326667pt;}
.lsa0{letter-spacing:0.330667pt;}
.ls10{letter-spacing:0.335467pt;}
.ls20{letter-spacing:0.345067pt;}
.ls9a{letter-spacing:0.360000pt;}
.lscf{letter-spacing:0.369067pt;}
.ls73{letter-spacing:0.400000pt;}
.ls70{letter-spacing:0.400533pt;}
.ls49{letter-spacing:0.409600pt;}
.ls79{letter-spacing:0.429600pt;}
.ls76{letter-spacing:0.459200pt;}
.lse3{letter-spacing:0.496667pt;}
.ls77{letter-spacing:0.533333pt;}
.ls8f{letter-spacing:0.540000pt;}
.ls90{letter-spacing:0.593333pt;}
.lsd{letter-spacing:0.613333pt;}
.ls31{letter-spacing:0.624000pt;}
.ls97{letter-spacing:0.646667pt;}
.lsbd{letter-spacing:0.648000pt;}
.ls3a{letter-spacing:0.656000pt;}
.ls96{letter-spacing:0.700000pt;}
.lsb6{letter-spacing:0.729867pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls33{letter-spacing:0.757333pt;}
.ls27{letter-spacing:0.773333pt;}
.lsb8{letter-spacing:0.819600pt;}
.ls98{letter-spacing:0.829200pt;}
.ls6c{letter-spacing:0.833333pt;}
.lsbc{letter-spacing:0.842667pt;}
.ls45{letter-spacing:0.848000pt;}
.lsb7{letter-spacing:0.889867pt;}
.ls5a{letter-spacing:0.906667pt;}
.ls1d{letter-spacing:0.965333pt;}
.lsd2{letter-spacing:0.981333pt;}
.ls9f{letter-spacing:1.002667pt;}
.lsc{letter-spacing:1.061333pt;}
.ls40{letter-spacing:1.066667pt;}
.ls34{letter-spacing:1.072000pt;}
.lsb0{letter-spacing:1.093333pt;}
.ls37{letter-spacing:1.104000pt;}
.lsba{letter-spacing:1.113867pt;}
.ls5f{letter-spacing:1.178667pt;}
.ls3b{letter-spacing:1.205333pt;}
.lsa8{letter-spacing:1.221333pt;}
.lsdd{letter-spacing:1.226667pt;}
.ls41{letter-spacing:1.233333pt;}
.lsbe{letter-spacing:1.296000pt;}
.ls4a{letter-spacing:1.306667pt;}
.lsb9{letter-spacing:1.327200pt;}
.ls7d{letter-spacing:1.344000pt;}
.lsa7{letter-spacing:1.354667pt;}
.lsbb{letter-spacing:1.358667pt;}
.lsde{letter-spacing:1.360000pt;}
.ls4b{letter-spacing:1.418667pt;}
.lsbf{letter-spacing:1.488000pt;}
.lse0{letter-spacing:1.578667pt;}
.lsab{letter-spacing:1.632000pt;}
.lsd1{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.669333pt;}
.lsb3{letter-spacing:1.722667pt;}
.ls7e{letter-spacing:1.770667pt;}
.ls61{letter-spacing:1.773333pt;}
.ls60{letter-spacing:1.800000pt;}
.ls7b{letter-spacing:1.802667pt;}
.ls3e{letter-spacing:2.074667pt;}
.ls58{letter-spacing:3.100000pt;}
.ls64{letter-spacing:3.130667pt;}
.ls57{letter-spacing:3.206667pt;}
.ls56{letter-spacing:3.260000pt;}
.ls32{letter-spacing:4.656000pt;}
.ls92{letter-spacing:5.373333pt;}
.ls93{letter-spacing:5.533333pt;}
.ls2a{letter-spacing:5.724933pt;}
.ls2b{letter-spacing:5.778267pt;}
.ls55{letter-spacing:5.906667pt;}
.ls50{letter-spacing:5.965333pt;}
.ls54{letter-spacing:6.066667pt;}
.ls18{letter-spacing:6.706667pt;}
.ls71{letter-spacing:7.202933pt;}
.lsa1{letter-spacing:8.626667pt;}
.ls4f{letter-spacing:9.069333pt;}
.lsc1{letter-spacing:9.250267pt;}
.lsce{letter-spacing:11.220933pt;}
.lscd{letter-spacing:11.354267pt;}
.ls46{letter-spacing:11.529333pt;}
.lse4{letter-spacing:11.698267pt;}
.lse5{letter-spacing:11.751600pt;}
.lsd6{letter-spacing:11.842667pt;}
.ls85{letter-spacing:14.402667pt;}
.ls17{letter-spacing:16.273333pt;}
.ls16{letter-spacing:16.326667pt;}
.ls6b{letter-spacing:17.160000pt;}
.ls95{letter-spacing:18.140000pt;}
.ls94{letter-spacing:18.166667pt;}
.ls42{letter-spacing:20.860000pt;}
.lsda{letter-spacing:24.338933pt;}
.lsd9{letter-spacing:24.445600pt;}
.ls91{letter-spacing:25.126667pt;}
.lsdc{letter-spacing:30.738933pt;}
.ls65{letter-spacing:31.530133pt;}
.ls68{letter-spacing:31.610667pt;}
.lsc4{letter-spacing:33.303600pt;}
.lsc0{letter-spacing:36.847467pt;}
.lsc2{letter-spacing:36.928000pt;}
.ls52{letter-spacing:37.226667pt;}
.ls4e{letter-spacing:37.414667pt;}
.lsd8{letter-spacing:38.179600pt;}
.ls51{letter-spacing:41.748133pt;}
.ls69{letter-spacing:43.487600pt;}
.lsd7{letter-spacing:43.842667pt;}
.ls74{letter-spacing:48.562933pt;}
.lsc3{letter-spacing:51.958667pt;}
.lsd5{letter-spacing:53.336000pt;}
.lsd3{letter-spacing:53.442667pt;}
.lsd4{letter-spacing:53.496000pt;}
.ls4c{letter-spacing:73.344000pt;}
.lsb5{letter-spacing:76.564800pt;}
.ls4d{letter-spacing:77.024000pt;}
.ls67{letter-spacing:79.752267pt;}
.ls66{letter-spacing:79.858933pt;}
.ls2e{letter-spacing:81.679467pt;}
.ls29{letter-spacing:81.760000pt;}
.lsa6{letter-spacing:83.844800pt;}
.lsb1{letter-spacing:83.893333pt;}
.ls78{letter-spacing:97.679467pt;}
.ls6e{letter-spacing:97.760000pt;}
.ls84{letter-spacing:101.130133pt;}
.lsa5{letter-spacing:102.463467pt;}
.ls8{letter-spacing:105.396800pt;}
.lsa{letter-spacing:105.477333pt;}
.ls8e{letter-spacing:105.504000pt;}
.ls62{letter-spacing:105.530133pt;}
.lsb{letter-spacing:105.610667pt;}
.ls2d{letter-spacing:105.945200pt;}
.lsc5{letter-spacing:133.558667pt;}
.lsdb{letter-spacing:162.205600pt;}
.ls2c{letter-spacing:217.663467pt;}
.ls5c{letter-spacing:217.744000pt;}
.ws33{word-spacing:-130.208000pt;}
.ws2f{word-spacing:-128.133333pt;}
.ws86{word-spacing:-108.133333pt;}
.ws9f{word-spacing:-108.127733pt;}
.ws47{word-spacing:-100.008933pt;}
.ws46{word-spacing:-99.848933pt;}
.ws45{word-spacing:-99.795600pt;}
.wsa1{word-spacing:-96.000000pt;}
.ws44{word-spacing:-92.808933pt;}
.ws2{word-spacing:-76.000000pt;}
.ws76{word-spacing:-40.066667pt;}
.ws67{word-spacing:-40.033333pt;}
.ws79{word-spacing:-37.601733pt;}
.ws78{word-spacing:-37.560000pt;}
.ws68{word-spacing:-37.033333pt;}
.ws90{word-spacing:-36.349733pt;}
.ws92{word-spacing:-36.308000pt;}
.ws91{word-spacing:-36.299600pt;}
.ws97{word-spacing:-36.261200pt;}
.ws94{word-spacing:-36.005600pt;}
.ws95{word-spacing:-35.795067pt;}
.ws96{word-spacing:-35.683067pt;}
.ws2d{word-spacing:-35.621067pt;}
.ws98{word-spacing:-35.289333pt;}
.ws41{word-spacing:-35.264400pt;}
.ws40{word-spacing:-35.152400pt;}
.ws4f{word-spacing:-35.033333pt;}
.ws36{word-spacing:-34.912400pt;}
.ws99{word-spacing:-34.827067pt;}
.ws93{word-spacing:-34.537333pt;}
.ws3f{word-spacing:-34.213600pt;}
.ws7f{word-spacing:-34.184000pt;}
.wsc{word-spacing:-34.181200pt;}
.ws9d{word-spacing:-34.172400pt;}
.ws51{word-spacing:-34.080267pt;}
.ws7e{word-spacing:-34.047867pt;}
.ws9b{word-spacing:-33.953733pt;}
.ws5{word-spacing:-33.845733pt;}
.ws9a{word-spacing:-33.820400pt;}
.ws7{word-spacing:-33.804000pt;}
.ws89{word-spacing:-33.768000pt;}
.ws83{word-spacing:-33.673333pt;}
.wsd{word-spacing:-33.640933pt;}
.ws50{word-spacing:-33.618533pt;}
.ws42{word-spacing:-33.615333pt;}
.ws10{word-spacing:-33.507600pt;}
.ws82{word-spacing:-33.316133pt;}
.wsb{word-spacing:-33.184400pt;}
.ws77{word-spacing:-33.126667pt;}
.ws43{word-spacing:-33.099067pt;}
.ws85{word-spacing:-33.083067pt;}
.ws3e{word-spacing:-33.073333pt;}
.ws3d{word-spacing:-32.998667pt;}
.wsf{word-spacing:-32.987067pt;}
.ws7d{word-spacing:-32.965733pt;}
.ws81{word-spacing:-32.593733pt;}
.ws80{word-spacing:-32.552000pt;}
.ws2c{word-spacing:-32.547067pt;}
.ws27{word-spacing:-32.413733pt;}
.ws26{word-spacing:-32.099067pt;}
.ws24{word-spacing:-31.965733pt;}
.ws88{word-spacing:-31.683067pt;}
.ws8a{word-spacing:-31.644000pt;}
.ws23{word-spacing:-31.467600pt;}
.ws25{word-spacing:-31.341733pt;}
.ws9e{word-spacing:-31.143067pt;}
.ws9c{word-spacing:-31.009733pt;}
.wsa0{word-spacing:-30.188533pt;}
.ws70{word-spacing:-30.185867pt;}
.ws65{word-spacing:-30.109333pt;}
.ws8c{word-spacing:-30.089733pt;}
.ws28{word-spacing:-30.072267pt;}
.ws4d{word-spacing:-30.061067pt;}
.ws66{word-spacing:-30.060000pt;}
.ws6c{word-spacing:-30.055467pt;}
.ws6a{word-spacing:-30.048000pt;}
.ws72{word-spacing:-30.024000pt;}
.ws6e{word-spacing:-29.988000pt;}
.ws64{word-spacing:-29.976000pt;}
.ws52{word-spacing:-29.938933pt;}
.ws6b{word-spacing:-29.936267pt;}
.ws5d{word-spacing:-29.607733pt;}
.ws58{word-spacing:-29.602667pt;}
.ws5b{word-spacing:-29.181067pt;}
.ws69{word-spacing:-28.949067pt;}
.ws22{word-spacing:-28.685733pt;}
.ws2b{word-spacing:-28.669733pt;}
.ws60{word-spacing:-28.333333pt;}
.ws5c{word-spacing:-28.296267pt;}
.ws56{word-spacing:-28.237600pt;}
.ws5a{word-spacing:-28.200000pt;}
.ws55{word-spacing:-28.162933pt;}
.ws71{word-spacing:-28.002400pt;}
.ws54{word-spacing:-28.000267pt;}
.ws57{word-spacing:-27.837067pt;}
.ws5f{word-spacing:-27.800000pt;}
.wse{word-spacing:-27.033333pt;}
.ws6{word-spacing:-27.000000pt;}
.ws3c{word-spacing:-26.995067pt;}
.ws4e{word-spacing:-26.725067pt;}
.ws59{word-spacing:-26.701333pt;}
.ws4c{word-spacing:-26.688000pt;}
.ws5e{word-spacing:-26.653067pt;}
.ws37{word-spacing:-26.333733pt;}
.ws38{word-spacing:-26.292000pt;}
.ws62{word-spacing:-25.906400pt;}
.ws63{word-spacing:-25.607733pt;}
.ws2a{word-spacing:-25.587067pt;}
.ws8e{word-spacing:-24.969333pt;}
.ws7b{word-spacing:-24.743733pt;}
.ws87{word-spacing:-24.612000pt;}
.ws7c{word-spacing:-24.610400pt;}
.ws4a{word-spacing:-23.940000pt;}
.ws3b{word-spacing:-23.848000pt;}
.ws20{word-spacing:-23.806667pt;}
.ws7a{word-spacing:-23.788000pt;}
.ws8f{word-spacing:-23.352000pt;}
.ws18{word-spacing:-23.345067pt;}
.ws35{word-spacing:-23.324400pt;}
.ws75{word-spacing:-23.212267pt;}
.ws1c{word-spacing:-23.193333pt;}
.wsa{word-spacing:-23.191067pt;}
.ws15{word-spacing:-23.033333pt;}
.ws1a{word-spacing:-23.000000pt;}
.ws11{word-spacing:-22.873333pt;}
.ws0{word-spacing:-22.834400pt;}
.ws74{word-spacing:-22.740000pt;}
.ws9{word-spacing:-22.577733pt;}
.ws8{word-spacing:-22.536000pt;}
.ws16{word-spacing:-22.285333pt;}
.ws14{word-spacing:-22.260000pt;}
.ws3a{word-spacing:-22.152000pt;}
.ws1d{word-spacing:-22.126667pt;}
.ws39{word-spacing:-21.716000pt;}
.ws4b{word-spacing:-21.556000pt;}
.ws53{word-spacing:-21.554667pt;}
.ws19{word-spacing:-21.426667pt;}
.ws13{word-spacing:-21.422667pt;}
.ws1{word-spacing:-21.165067pt;}
.ws1b{word-spacing:-21.133333pt;}
.ws3{word-spacing:-21.128000pt;}
.ws12{word-spacing:-21.097333pt;}
.ws17{word-spacing:-21.000000pt;}
.ws1e{word-spacing:-20.969333pt;}
.ws48{word-spacing:-20.706667pt;}
.ws21{word-spacing:-20.644000pt;}
.ws1f{word-spacing:-20.573333pt;}
.ws6f{word-spacing:-20.053067pt;}
.ws61{word-spacing:-18.941067pt;}
.ws49{word-spacing:-15.033333pt;}
.ws73{word-spacing:-15.000000pt;}
.ws2e{word-spacing:-0.128133pt;}
.ws31{word-spacing:-0.084133pt;}
.ws30{word-spacing:-0.084000pt;}
.ws4{word-spacing:0.000000pt;}
.ws32{word-spacing:1.295867pt;}
.ws8d{word-spacing:52.788933pt;}
.ws8b{word-spacing:61.845333pt;}
.ws84{word-spacing:224.109867pt;}
.ws29{word-spacing:511.171600pt;}
.ws6d{word-spacing:624.997467pt;}
.ws34{word-spacing:1588.888133pt;}
._1a{margin-left:-638.424000pt;}
._e{margin-left:-493.726933pt;}
._3f{margin-left:-162.205600pt;}
._10{margin-left:-14.118133pt;}
._17{margin-left:-6.856667pt;}
._24{margin-left:-5.307867pt;}
._5{margin-left:-4.322800pt;}
._2{margin-left:-2.834933pt;}
._1{margin-left:-1.142000pt;}
._0{width:1.751067pt;}
._3{width:3.307200pt;}
._4{width:4.697200pt;}
._b{width:5.878533pt;}
._c{width:7.164800pt;}
._11{width:8.155867pt;}
._1b{width:9.717600pt;}
._15{width:10.855600pt;}
._14{width:11.838133pt;}
._18{width:13.120800pt;}
._19{width:14.135733pt;}
._9{width:15.502000pt;}
._a{width:16.882400pt;}
._25{width:18.562267pt;}
._26{width:19.794133pt;}
._d{width:20.706000pt;}
._7{width:21.668000pt;}
._3e{width:23.635600pt;}
._2a{width:25.267200pt;}
._28{width:27.155333pt;}
._1f{width:28.810000pt;}
._6{width:30.800533pt;}
._1e{width:32.224800pt;}
._20{width:33.463733pt;}
._16{width:34.758533pt;}
._13{width:36.020400pt;}
._12{width:37.214000pt;}
._3a{width:38.298400pt;}
._2e{width:41.003200pt;}
._21{width:43.146400pt;}
._39{width:44.273467pt;}
._2d{width:45.343200pt;}
._22{width:46.926133pt;}
._23{width:48.246133pt;}
._2c{width:51.786400pt;}
._38{width:53.026533pt;}
._32{width:54.390667pt;}
._8{width:55.425333pt;}
._27{width:67.183600pt;}
._37{width:69.643467pt;}
._1c{width:76.350800pt;}
._1d{width:79.611333pt;}
._31{width:82.362133pt;}
._40{width:96.578400pt;}
._34{width:117.668400pt;}
._33{width:119.051467pt;}
._35{width:133.520000pt;}
._2f{width:135.748267pt;}
._3b{width:162.205600pt;}
._3d{width:178.199333pt;}
._3c{width:179.789733pt;}
._41{width:198.082133pt;}
._42{width:227.461467pt;}
._36{width:236.438933pt;}
._30{width:621.949200pt;}
._2b{width:892.021467pt;}
._29{width:913.687067pt;}
._f{width:1724.291600pt;}
.fs21{font-size:52.133333pt;}
.fs25{font-size:56.000000pt;}
.fs24{font-size:56.133333pt;}
.fsd{font-size:60.000000pt;}
.fsf{font-size:60.133333pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs16{font-size:68.000000pt;}
.fs18{font-size:68.133333pt;}
.fs8{font-size:72.000000pt;}
.fs9{font-size:72.133333pt;}
.fs0{font-size:76.000000pt;}
.fs1{font-size:76.133333pt;}
.fs1c{font-size:80.000000pt;}
.fsa{font-size:84.000000pt;}
.fs3{font-size:84.133333pt;}
.fsc{font-size:92.000000pt;}
.fsb{font-size:92.133333pt;}
.fs12{font-size:96.000000pt;}
.fs13{font-size:96.133333pt;}
.fs17{font-size:100.000000pt;}
.fse{font-size:100.133333pt;}
.fs1f{font-size:104.000000pt;}
.fs1b{font-size:104.133333pt;}
.fs7{font-size:108.000000pt;}
.fs5{font-size:108.133333pt;}
.fs27{font-size:116.000000pt;}
.fs26{font-size:116.133333pt;}
.fs1e{font-size:120.000000pt;}
.fs20{font-size:120.133333pt;}
.fs10{font-size:128.133333pt;}
.fs2{font-size:132.133333pt;}
.fs11{font-size:140.133333pt;}
.fs1a{font-size:148.133333pt;}
.fs22{font-size:148.266667pt;}
.fs19{font-size:160.133333pt;}
.fs1d{font-size:160.266667pt;}
.fs15{font-size:172.133333pt;}
.fs14{font-size:192.266667pt;}
.fs23{font-size:532.666667pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:13.866667pt;}
.y1b3{bottom:31.133333pt;}
.y1{bottom:31.566667pt;}
.y173{bottom:36.933333pt;}
.ye4{bottom:37.533333pt;}
.y8b{bottom:40.866667pt;}
.yb2{bottom:44.600000pt;}
.yaf{bottom:44.700000pt;}
.y43{bottom:47.666667pt;}
.yb4{bottom:49.700000pt;}
.y11c{bottom:50.433333pt;}
.y160{bottom:51.066667pt;}
.y19d{bottom:52.766667pt;}
.ybb{bottom:53.966667pt;}
.y1b2{bottom:56.166667pt;}
.yef{bottom:59.600000pt;}
.yd7{bottom:63.200000pt;}
.y1eb{bottom:64.300000pt;}
.y94{bottom:65.333333pt;}
.y23{bottom:68.966667pt;}
.y8a{bottom:72.900000pt;}
.yb1{bottom:73.633333pt;}
.yae{bottom:73.733333pt;}
.y15f{bottom:74.100000pt;}
.ye3{bottom:75.566667pt;}
.y1dd{bottom:78.100000pt;}
.yb3{bottom:78.733333pt;}
.y1da{bottom:86.100000pt;}
.y1ea{bottom:86.300000pt;}
.yee{bottom:88.633333pt;}
.y5f{bottom:90.933333pt;}
.y19c{bottom:100.833333pt;}
.yb9{bottom:101.600000pt;}
.y110{bottom:101.633333pt;}
.y198{bottom:101.766667pt;}
.y83{bottom:104.533333pt;}
.y22{bottom:106.000000pt;}
.y169{bottom:107.500000pt;}
.y19{bottom:107.733333pt;}
.y1e9{bottom:109.333333pt;}
.y145{bottom:109.866667pt;}
.ya2{bottom:111.066667pt;}
.y106{bottom:116.666667pt;}
.y42{bottom:117.766667pt;}
.y1d9{bottom:118.133333pt;}
.y124{bottom:119.600000pt;}
.y141{bottom:122.633333pt;}
.y5e{bottom:122.966667pt;}
.y138{bottom:123.100000pt;}
.y1b1{bottom:128.633333pt;}
.y82{bottom:131.566667pt;}
.y18{bottom:131.766667pt;}
.y1c4{bottom:135.093333pt;}
.y105{bottom:140.693333pt;}
.y50{bottom:141.133333pt;}
.y8c{bottom:144.240000pt;}
.y19b{bottom:148.866667pt;}
.y140{bottom:149.666667pt;}
.y137{bottom:150.133333pt;}
.y1d8{bottom:150.160000pt;}
.yb0{bottom:150.973333pt;}
.y31{bottom:151.800000pt;}
.yad{bottom:152.560000pt;}
.y17{bottom:155.760000pt;}
.y17c{bottom:158.360000pt;}
.y1b0{bottom:160.666667pt;}
.y197{bottom:162.493333pt;}
.yb8{bottom:162.706667pt;}
.yd6{bottom:170.600000pt;}
.y15e{bottom:172.706667pt;}
.y17d{bottom:174.933333pt;}
.ye2{bottom:175.133333pt;}
.y13f{bottom:176.666667pt;}
.y1d7{bottom:182.200000pt;}
.y111{bottom:189.933333pt;}
.yb7{bottom:192.626667pt;}
.y1af{bottom:192.706667pt;}
.y171{bottom:196.133333pt;}
.y19a{bottom:196.933333pt;}
.y123{bottom:198.466667pt;}
.y1c3{bottom:199.173333pt;}
.y196{bottom:200.560000pt;}
.yf8{bottom:202.040000pt;}
.y104{bottom:202.773333pt;}
.y16{bottom:202.840000pt;}
.y6f{bottom:203.133333pt;}
.ye6{bottom:203.560000pt;}
.y89{bottom:203.866667pt;}
.y4f{bottom:205.200000pt;}
.ya3{bottom:207.960000pt;}
.yba{bottom:210.133333pt;}
.y41{bottom:211.640000pt;}
.y1d6{bottom:214.226667pt;}
.y1dc{bottom:215.866667pt;}
.y93{bottom:217.506667pt;}
.yb6{bottom:223.040000pt;}
.y103{bottom:226.773333pt;}
.y15{bottom:226.840000pt;}
.y170{bottom:228.173333pt;}
.y11b{bottom:231.773333pt;}
.yac{bottom:232.200000pt;}
.y68{bottom:234.306667pt;}
.y136{bottom:234.933333pt;}
.y88{bottom:235.893333pt;}
.yb5{bottom:236.133333pt;}
.y1db{bottom:243.893333pt;}
.y199{bottom:243.960000pt;}
.y1d5{bottom:246.266667pt;}
.y17a{bottom:247.893333pt;}
.y14{bottom:250.866667pt;}
.yd5{bottom:251.600000pt;}
.ye7{bottom:257.173333pt;}
.y16f{bottom:260.200000pt;}
.y10f{bottom:268.560000pt;}
.y81{bottom:269.066667pt;}
.y13e{bottom:269.200000pt;}
.y4e{bottom:269.266667pt;}
.y13{bottom:273.893333pt;}
.ye1{bottom:274.706667pt;}
.y179{bottom:279.933333pt;}
.y1e8{bottom:281.640000pt;}
.y16e{bottom:292.240000pt;}
.y40{bottom:292.693333pt;}
.y1ae{bottom:294.026667pt;}
.y172{bottom:294.306667pt;}
.y1c2{bottom:295.266667pt;}
.y10e{bottom:297.560000pt;}
.y15d{bottom:297.866667pt;}
.ya1{bottom:299.066667pt;}
.y11a{bottom:300.906667pt;}
.y144{bottom:304.000000pt;}
.y1e7{bottom:311.666667pt;}
.y178{bottom:311.973333pt;}
.y195{bottom:315.666667pt;}
.y80{bottom:318.706667pt;}
.y12{bottom:321.933333pt;}
.y1ac{bottom:323.066667pt;}
.y16d{bottom:324.266667pt;}
.ye0{bottom:326.200000pt;}
.y1c1{bottom:327.306667pt;}
.y1ad{bottom:328.066667pt;}
.y135{bottom:329.093333pt;}
.y1df{bottom:329.133333pt;}
.y4d{bottom:334.333333pt;}
.y13c{bottom:338.066667pt;}
.y1e6{bottom:341.693333pt;}
.yda{bottom:343.560000pt;}
.yed{bottom:343.893333pt;}
.y7f{bottom:345.733333pt;}
.y11{bottom:345.973333pt;}
.y3f{bottom:346.506667pt;}
.y102{bottom:348.906667pt;}
.y1ab{bottom:357.106667pt;}
.y1de{bottom:358.173333pt;}
.y5a{bottom:361.760000pt;}
.y147{bottom:363.666667pt;}
.y149{bottom:363.866667pt;}
.yf7{bottom:365.173333pt;}
.y194{bottom:366.706667pt;}
.y15c{bottom:367.466667pt;}
.y10{bottom:370.000000pt;}
.y33{bottom:371.440000pt;}
.y146{bottom:372.266667pt;}
.y118{bottom:375.226667pt;}
.y87{bottom:380.866667pt;}
.y122{bottom:383.840000pt;}
.y8d{bottom:384.173333pt;}
.y116{bottom:384.360000pt;}
.yd3{bottom:386.666667pt;}
.y18a{bottom:389.733333pt;}
.y177{bottom:397.040000pt;}
.y1aa{bottom:398.506667pt;}
.y1c9{bottom:400.640000pt;}
.y1e5{bottom:401.773333pt;}
.y67{bottom:402.866667pt;}
.y112{bottom:404.173333pt;}
.y34{bottom:407.506667pt;}
.y13d{bottom:408.906667pt;}
.y101{bottom:409.960000pt;}
.y32{bottom:414.133333pt;}
.yab{bottom:415.173333pt;}
.y56{bottom:415.333333pt;}
.yf{bottom:417.026667pt;}
.ya0{bottom:417.506667pt;}
.y165{bottom:419.293333pt;}
.y1e4{bottom:430.800000pt;}
.y1d4{bottom:432.360000pt;}
.y1a9{bottom:432.533333pt;}
.y100{bottom:433.000000pt;}
.y10d{bottom:435.800000pt;}
.ye{bottom:436.066667pt;}
.y15b{bottom:437.400000pt;}
.y134{bottom:438.200000pt;}
.y92{bottom:454.440000pt;}
.yd{bottom:459.106667pt;}
.y7e{bottom:459.773333pt;}
.y14a{bottom:460.133333pt;}
.y115{bottom:460.666667pt;}
.y1e3{bottom:460.840000pt;}
.y4c{bottom:461.333333pt;}
.y1d3{bottom:463.400000pt;}
.y1c8{bottom:468.506667pt;}
.y1a8{bottom:474.533333pt;}
.y58{bottom:480.533333pt;}
.y189{bottom:482.533333pt;}
.y13b{bottom:484.106667pt;}
.y155{bottom:484.760000pt;}
.y1bb{bottom:487.360000pt;}
.y133{bottom:492.200000pt;}
.y1d2{bottom:494.440000pt;}
.yff{bottom:499.066667pt;}
.y1a7{bottom:502.533333pt;}
.yc{bottom:507.133333pt;}
.yd2{bottom:509.466667pt;}
.yf6{bottom:512.200000pt;}
.y188{bottom:514.560000pt;}
.y1ba{bottom:518.400000pt;}
.y57{bottom:524.466667pt;}
.y7c{bottom:525.200000pt;}
.yfe{bottom:529.106667pt;}
.y121{bottom:529.760000pt;}
.y14b{bottom:530.640000pt;}
.yb{bottom:531.173333pt;}
.yaa{bottom:531.306667pt;}
.y1a6{bottom:531.560000pt;}
.y166{bottom:535.933333pt;}
.y3e{bottom:538.893333pt;}
.y59{bottom:539.333333pt;}
.y132{bottom:540.600000pt;}
.y5d{bottom:543.106667pt;}
.y9e{bottom:543.800000pt;}
.y187{bottom:546.600000pt;}
.y1c0{bottom:546.706667pt;}
.y2b{bottom:548.600000pt;}
.y1b9{bottom:549.426667pt;}
.y55{bottom:550.506667pt;}
.ya{bottom:554.173333pt;}
.y1d1{bottom:555.506667pt;}
.y6e{bottom:564.266667pt;}
.y7a{bottom:565.266667pt;}
.y1a5{bottom:573.560000pt;}
.y10a{bottom:577.533333pt;}
.y1bf{bottom:577.733333pt;}
.y2a{bottom:579.640000pt;}
.y15a{bottom:582.560000pt;}
.y17e{bottom:583.026667pt;}
.y109{bottom:585.666667pt;}
.y1d0{bottom:586.533333pt;}
.y119{bottom:590.026667pt;}
.yfd{bottom:590.173333pt;}
.y14f{bottom:591.306667pt;}
.y1a3{bottom:596.560000pt;}
.y25{bottom:597.640000pt;}
.y6d{bottom:598.306667pt;}
.y17f{bottom:599.360000pt;}
.y78{bottom:599.973333pt;}
.yec{bottom:601.400000pt;}
.y1a4{bottom:601.573333pt;}
.yc0{bottom:601.666667pt;}
.y4b{bottom:602.026667pt;}
.y9{bottom:602.226667pt;}
.y162{bottom:605.000000pt;}
.y148{bottom:605.093333pt;}
.y29{bottom:611.666667pt;}
.ya6{bottom:612.200000pt;}
.y143{bottom:612.906667pt;}
.yfc{bottom:614.173333pt;}
.y13a{bottom:617.333333pt;}
.y1cf{bottom:617.560000pt;}
.y91{bottom:618.533333pt;}
.yc6{bottom:618.840000pt;}
.y1b8{bottom:619.533333pt;}
.y193{bottom:621.000000pt;}
.y131{bottom:622.666667pt;}
.y8{bottom:626.266667pt;}
.yf5{bottom:626.773333pt;}
.y3d{bottom:630.066667pt;}
.y14e{bottom:630.506667pt;}
.y1a2{bottom:630.600000pt;}
.yeb{bottom:631.440000pt;}
.y161{bottom:634.026667pt;}
.y1bd{bottom:636.000000pt;}
.yfb{bottom:638.200000pt;}
.y117{bottom:639.226667pt;}
.y154{bottom:640.933333pt;}
.yd4{bottom:641.466667pt;}
.y4a{bottom:645.026667pt;}
.y52{bottom:648.266667pt;}
.y130{bottom:648.666667pt;}
.y7{bottom:649.266667pt;}
.y186{bottom:649.693333pt;}
.y1b7{bottom:650.533333pt;}
.y90{bottom:650.560000pt;}
.y7d{bottom:654.560000pt;}
.y3c{bottom:657.106667pt;}
.ya7{bottom:657.400000pt;}
.yc5{bottom:657.893333pt;}
.y18c{bottom:663.266667pt;}
.y192{bottom:666.360000pt;}
.y12f{bottom:668.706667pt;}
.y6c{bottom:672.000000pt;}
.y6{bottom:673.306667pt;}
.y176{bottom:673.333333pt;}
.y21{bottom:673.733333pt;}
.y51{bottom:674.306667pt;}
.y1be{bottom:674.800000pt;}
.y28{bottom:675.733333pt;}
.yc8{bottom:676.026667pt;}
.y1ce{bottom:679.200000pt;}
.y1c5{bottom:680.173333pt;}
.y1b6{bottom:681.560000pt;}
.yd9{bottom:682.026667pt;}
.ybf{bottom:682.840000pt;}
.y65{bottom:684.533333pt;}
.y5b{bottom:686.266667pt;}
.y120{bottom:686.733333pt;}
.y185{bottom:688.773333pt;}
.ya9{bottom:688.800000pt;}
.y1c7{bottom:692.266667pt;}
.y9d{bottom:692.866667pt;}
.y12e{bottom:695.733333pt;}
.yc4{bottom:695.933333pt;}
.y63{bottom:697.040000pt;}
.y5{bottom:697.333333pt;}
.y61{bottom:697.666667pt;}
.y7b{bottom:701.400000pt;}
.y49{bottom:704.933333pt;}
.y20{bottom:705.773333pt;}
.y1a1{bottom:706.866667pt;}
.y27{bottom:707.773333pt;}
.y191{bottom:709.066667pt;}
.y1cd{bottom:711.226667pt;}
.yd8{bottom:714.066667pt;}
.y4{bottom:715.333333pt;}
.y1bc{bottom:716.066667pt;}
.ycb{bottom:717.440000pt;}
.yf4{bottom:723.440000pt;}
.y12d{bottom:723.773333pt;}
.y3b{bottom:726.440000pt;}
.y184{bottom:726.800000pt;}
.y151{bottom:727.533333pt;}
.y164{bottom:727.773333pt;}
.y97{bottom:730.333333pt;}
.y77{bottom:730.773333pt;}
.y114{bottom:732.533333pt;}
.yc3{bottom:734.960000pt;}
.y48{bottom:736.960000pt;}
.y3{bottom:739.373333pt;}
.y26{bottom:739.800000pt;}
.y1cc{bottom:743.266667pt;}
.y1f{bottom:744.840000pt;}
.y159{bottom:746.000000pt;}
.y79{bottom:746.773333pt;}
.ya5{bottom:746.933333pt;}
.y16c{bottom:749.466667pt;}
.y12c{bottom:750.800000pt;}
.ydf{bottom:751.200000pt;}
.yf3{bottom:751.466667pt;}
.ybe{bottom:752.560000pt;}
.y1b5{bottom:752.666667pt;}
.y3a{bottom:753.466667pt;}
.y64{bottom:754.400000pt;}
.y190{bottom:754.466667pt;}
.y139{bottom:758.333333pt;}
.y71{bottom:759.293333pt;}
.ycc{bottom:760.226667pt;}
.y70{bottom:762.266667pt;}
.y2{bottom:763.400000pt;}
.y183{bottom:765.840000pt;}
.y47{bottom:766.000000pt;}
.y156{bottom:766.466667pt;}
.y95{bottom:767.506667pt;}
.yd1{bottom:768.173333pt;}
.y9f{bottom:771.733333pt;}
.y10c{bottom:771.933333pt;}
.yc2{bottom:774.000000pt;}
.y1cb{bottom:775.293333pt;}
.y1e{bottom:776.866667pt;}
.yea{bottom:777.773333pt;}
.y12b{bottom:777.800000pt;}
.yfa{bottom:778.333333pt;}
.yf2{bottom:778.466667pt;}
.y85{bottom:779.226667pt;}
.yc9{bottom:779.706667pt;}
.y39{bottom:780.466667pt;}
.y66{bottom:780.840000pt;}
.y1a0{bottom:781.066667pt;}
.y16b{bottom:781.506667pt;}
.yde{bottom:783.226667pt;}
.y1b4{bottom:783.706667pt;}
.y6b{bottom:783.893333pt;}
.y76{bottom:784.840000pt;}
.y18e{bottom:789.800000pt;}
.y54{bottom:790.040000pt;}
.y96{bottom:790.533333pt;}
.y2f{bottom:792.506667pt;}
.yd0{bottom:795.200000pt;}
.y175{bottom:795.440000pt;}
.y46{bottom:798.040000pt;}
.yf9{bottom:802.373333pt;}
.y12a{bottom:804.840000pt;}
.y182{bottom:804.866667pt;}
.yf1{bottom:805.506667pt;}
.ye9{bottom:805.800000pt;}
.y62{bottom:806.773333pt;}
.y38{bottom:807.506667pt;}
.y9c{bottom:808.960000pt;}
.y11f{bottom:809.173333pt;}
.y150{bottom:809.866667pt;}
.yca{bottom:810.400000pt;}
.y84{bottom:811.226667pt;}
.yc1{bottom:812.040000pt;}
.y75{bottom:812.840000pt;}
.y18d{bottom:814.800000pt;}
.y1d{bottom:814.893333pt;}
.y1a{bottom:816.733333pt;}
.y1e2{bottom:820.200000pt;}
.ybd{bottom:820.440000pt;}
.y2e{bottom:824.533333pt;}
.y174{bottom:827.466667pt;}
.y45{bottom:831.066667pt;}
.yf0{bottom:832.533333pt;}
.y129{bottom:832.866667pt;}
.y6a{bottom:832.933333pt;}
.y60{bottom:833.933333pt;}
.y153{bottom:834.626667pt;}
.ye8{bottom:834.840000pt;}
.y37{bottom:835.533333pt;}
.y9b{bottom:837.000000pt;}
.y74{bottom:839.866667pt;}
.y181{bottom:842.893333pt;}
.y10b{bottom:843.560000pt;}
.y2d{bottom:844.733333pt;}
.y14d{bottom:844.866667pt;}
.y11e{bottom:845.200000pt;}
.y19f{bottom:846.173333pt;}
.ya8{bottom:846.293333pt;}
.ycf{bottom:847.440000pt;}
.y1c6{bottom:849.866667pt;}
.y1e1{bottom:850.226667pt;}
.y1ca{bottom:854.560000pt;}
.y8f{bottom:858.666667pt;}
.y128{bottom:859.893333pt;}
.y9a{bottom:864.040000pt;}
.y69{bottom:864.960000pt;}
.y73{bottom:866.893333pt;}
.y158{bottom:867.226667pt;}
.y113{bottom:870.893333pt;}
.ydd{bottom:871.000000pt;}
.ybc{bottom:872.373333pt;}
.y53{bottom:873.133333pt;}
.ydb{bottom:874.106667pt;}
.yce{bottom:874.440000pt;}
.y180{bottom:874.933333pt;}
.y2c{bottom:875.773333pt;}
.y163{bottom:875.866667pt;}
.y16a{bottom:876.866667pt;}
.y86{bottom:876.893333pt;}
.y168{bottom:877.626667pt;}
.y125{bottom:878.226667pt;}
.y142{bottom:878.600000pt;}
.y11d{bottom:880.266667pt;}
.y107{bottom:885.266667pt;}
.y5c{bottom:885.840000pt;}
.y127{bottom:886.933333pt;}
.y30{bottom:889.506667pt;}
.y36{bottom:889.600000pt;}
.y152{bottom:890.626667pt;}
.y8e{bottom:890.706667pt;}
.y99{bottom:891.040000pt;}
.y167{bottom:892.000000pt;}
.y24{bottom:892.266667pt;}
.y1c{bottom:892.866667pt;}
.ye5{bottom:892.933333pt;}
.y72{bottom:893.933333pt;}
.y44{bottom:896.933333pt;}
.y18f{bottom:899.560000pt;}
.y17b{bottom:900.893333pt;}
.ycd{bottom:901.466667pt;}
.y14c{bottom:901.560000pt;}
.ydc{bottom:903.040000pt;}
.y19e{bottom:903.333333pt;}
.y18b{bottom:904.893333pt;}
.y108{bottom:906.466667pt;}
.y1e0{bottom:909.266667pt;}
.y126{bottom:913.960000pt;}
.y35{bottom:916.626667pt;}
.y98{bottom:918.066667pt;}
.y1b{bottom:918.893333pt;}
.y157{bottom:921.960000pt;}
.yc7{bottom:930.960000pt;}
.h2f{height:62.812500pt;}
.h3c{height:64.164648pt;}
.h27{height:68.132812pt;}
.h21{height:68.851302pt;}
.h1{height:74.589844pt;}
.h39{height:74.720703pt;}
.h45{height:75.345703pt;}
.h19{height:77.535156pt;}
.h2e{height:78.515625pt;}
.h3{height:79.265625pt;}
.h2{height:79.404688pt;}
.h3f{height:80.027344pt;}
.h3e{height:80.160742pt;}
.h24{height:82.476562pt;}
.h23{height:82.596094pt;}
.h8{height:84.041016pt;}
.h5{height:84.174414pt;}
.h38{height:87.748438pt;}
.h11{height:88.491927pt;}
.hb{height:90.292969pt;}
.ha{height:90.423828pt;}
.h16{height:92.178320pt;}
.h1b{height:92.718750pt;}
.h9{height:92.853125pt;}
.h32{height:94.349609pt;}
.h42{height:96.046875pt;}
.h43{height:96.180273pt;}
.h2b{height:96.873047pt;}
.h2c{height:96.992643pt;}
.h4a{height:100.048828pt;}
.h1c{height:100.125000pt;}
.hc{height:100.182227pt;}
.h1d{height:100.264062pt;}
.h10{height:102.982161pt;}
.h36{height:104.050781pt;}
.h35{height:104.184180pt;}
.h26{height:104.296875pt;}
.h25{height:104.435937pt;}
.h44{height:106.126953pt;}
.h12{height:107.511719pt;}
.h13{height:107.725547pt;}
.h18{height:107.987370pt;}
.h7{height:108.052734pt;}
.h6{height:108.186133pt;}
.h3d{height:108.328555pt;}
.h2a{height:108.607812pt;}
.h22{height:112.640625pt;}
.hd{height:112.779687pt;}
.h33{height:113.892799pt;}
.h47{height:116.056641pt;}
.h46{height:116.190039pt;}
.h34{height:120.058594pt;}
.h37{height:120.191992pt;}
.h17{height:124.121081pt;}
.h40{height:124.174414pt;}
.h41{height:124.334414pt;}
.h1a{height:124.580859pt;}
.h3a{height:128.195898pt;}
.h49{height:129.134375pt;}
.hf{height:133.639062pt;}
.h1f{height:137.533203pt;}
.he{height:137.667747pt;}
.h4{height:137.810937pt;}
.h15{height:140.201758pt;}
.h31{height:143.557031pt;}
.h29{height:145.384766pt;}
.h2d{height:152.290846pt;}
.h28{height:157.162109pt;}
.h30{height:157.292969pt;}
.h20{height:168.939453pt;}
.h1e{height:200.528125pt;}
.h14{height:204.186133pt;}
.h48{height:248.281081pt;}
.h3b{height:355.024414pt;}
.h0{height:960.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x7f{left:13.833323pt;}
.xc{left:15.299989pt;}
.x3{left:16.833323pt;}
.x7{left:20.933323pt;}
.x5{left:22.166656pt;}
.x46{left:24.966656pt;}
.x40{left:27.933323pt;}
.x71{left:29.199989pt;}
.xf{left:33.966656pt;}
.xa{left:35.233323pt;}
.x10{left:36.333323pt;}
.x65{left:37.366656pt;}
.x11{left:38.733323pt;}
.x61{left:40.333323pt;}
.x17{left:41.299989pt;}
.x23{left:42.733323pt;}
.x72{left:44.399989pt;}
.x3d{left:45.499989pt;}
.x9{left:46.433323pt;}
.x13{left:47.466656pt;}
.x5e{left:48.866656pt;}
.x6{left:49.999989pt;}
.x15{left:51.533323pt;}
.x4{left:52.866656pt;}
.x2b{left:54.733323pt;}
.x24{left:55.733323pt;}
.x5c{left:57.466656pt;}
.x3f{left:58.866656pt;}
.x33{left:60.533323pt;}
.x64{left:61.633323pt;}
.x1c{left:62.766656pt;}
.x73{left:63.899989pt;}
.x3c{left:65.099989pt;}
.x1a{left:66.166656pt;}
.x3a{left:67.399989pt;}
.x2c{left:68.499989pt;}
.x38{left:69.766656pt;}
.x83{left:70.899989pt;}
.x62{left:72.199989pt;}
.x7a{left:74.766656pt;}
.x2{left:75.799989pt;}
.x14{left:77.033323pt;}
.x32{left:79.833323pt;}
.x7b{left:83.133323pt;}
.x6c{left:84.199989pt;}
.x16{left:85.366656pt;}
.x6a{left:86.533323pt;}
.x74{left:89.766656pt;}
.x4b{left:90.999989pt;}
.x70{left:92.233323pt;}
.x20{left:95.099989pt;}
.x2f{left:96.633323pt;}
.x12{left:99.866656pt;}
.x3b{left:103.433323pt;}
.x7e{left:104.833323pt;}
.x19{left:110.733323pt;}
.x5d{left:112.499989pt;}
.x92{left:114.299989pt;}
.xd{left:115.433323pt;}
.x8f{left:118.566656pt;}
.x79{left:119.633323pt;}
.x6b{left:120.966656pt;}
.x55{left:126.066656pt;}
.x8d{left:128.966656pt;}
.x88{left:130.566656pt;}
.x5f{left:133.493323pt;}
.x89{left:134.599989pt;}
.x4e{left:136.333323pt;}
.x2a{left:138.533323pt;}
.x51{left:139.493323pt;}
.x8e{left:149.266656pt;}
.x8a{left:151.133323pt;}
.x18{left:156.133323pt;}
.x52{left:164.199989pt;}
.x35{left:171.839989pt;}
.x56{left:183.039989pt;}
.x54{left:184.239989pt;}
.x30{left:185.706656pt;}
.x84{left:191.999989pt;}
.x63{left:193.933323pt;}
.x45{left:200.133323pt;}
.x60{left:201.439989pt;}
.x1d{left:211.799989pt;}
.x29{left:237.266656pt;}
.x1e{left:239.439989pt;}
.x85{left:245.399989pt;}
.x41{left:255.866656pt;}
.x25{left:257.933323pt;}
.x42{left:265.106656pt;}
.x82{left:271.199989pt;}
.x22{left:278.999989pt;}
.xe{left:284.999989pt;}
.x2e{left:290.839989pt;}
.x7d{left:293.199989pt;}
.x68{left:296.106656pt;}
.x86{left:298.799989pt;}
.x50{left:304.573323pt;}
.x4f{left:306.573323pt;}
.x6d{left:320.173323pt;}
.x2d{left:322.999989pt;}
.x31{left:334.666656pt;}
.x43{left:336.639989pt;}
.x81{left:343.933323pt;}
.x37{left:350.333323pt;}
.x8{left:353.359989pt;}
.x87{left:357.559989pt;}
.xb{left:362.973323pt;}
.x78{left:371.733323pt;}
.x36{left:373.466656pt;}
.x90{left:376.799989pt;}
.x77{left:380.773323pt;}
.x8b{left:387.466656pt;}
.x4a{left:393.333323pt;}
.x69{left:398.573323pt;}
.x44{left:406.693323pt;}
.x26{left:407.893323pt;}
.x48{left:417.506656pt;}
.x4d{left:426.133323pt;}
.x4c{left:430.799989pt;}
.x3e{left:434.999989pt;}
.x91{left:436.839989pt;}
.x80{left:446.773323pt;}
.x21{left:460.733323pt;}
.x1b{left:462.399989pt;}
.x93{left:476.893323pt;}
.x7c{left:488.173323pt;}
.x67{left:511.239989pt;}
.x5b{left:517.799989pt;}
.x47{left:527.999989pt;}
.x34{left:531.133323pt;}
.x8c{left:532.239989pt;}
.x58{left:544.466656pt;}
.x6e{left:555.173323pt;}
.x6f{left:559.173323pt;}
.x27{left:565.133323pt;}
.x1f{left:574.666656pt;}
.x28{left:575.599989pt;}
.x57{left:578.173323pt;}
.x53{left:581.466656pt;}
.x66{left:582.973323pt;}
.x59{left:600.559989pt;}
.x76{left:607.559989pt;}
.x5a{left:629.666656pt;}
.x49{left:637.666656pt;}
.x75{left:667.959989pt;}
.x39{left:685.333323pt;}
.x1{left:694.666656pt;}
}




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