
    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_be4581eaf0ad21b2777e32e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_fe23c7e40b03f36d9c00f9f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:2.797852;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_114bb911257c491a38f00e35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_f5dfa56aa6e28fc44f8f11e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.824000;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_092a54d077fd0d3657846687.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_42baf3f1ef9297ff4c1fabcc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956000;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_436ba7283eb16bba8bccef0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_ca3f3582c01649e4a7395625.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_0bfb29b1a75fcac56a13b9ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_abf5469f2f589eae6bcc9f24.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_d15e34312e3e78521c08011c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906000;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_48e914f3ecf5f960b2f0deb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_e25139b7deb0978f56a9b063.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.717285;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_caed4ae96c344784af16cf32.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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_713db74b5bf364decf813224.woff2')format("woff");}.fff{font-family:fff;line-height:0.976562;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_4cb40ea29ce3f02edddc4b94.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_231a821d8c2ed10954805791.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.837308;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_be22096484db7ed0c40d20e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.976562;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_52d33fc11e7d4fd28529246d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.976562;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_37434fb42e61b91db3ca211a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.672000;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_4f5ff63cecd094da85a8af0c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.933000;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_f6b2957bf32f953f9c8f8019.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_075b011387ba1ade7529b04d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.848145;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_58165ca52a5e90c3ac423127.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.660000;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_66105f80117bed491ad365c5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.660000;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_d066fc4ed4e1bca80a3591ed.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.881836;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_2ee58b75f307bdf3a93fd057.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.717285;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_aee1a55f27c4eeb83593fa5d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8ee92df59b3666e9dd5ec15d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;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_d247dd614f6d64e9f1cc18db.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.741211;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_ea8625242766fae01ff6c784.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.660000;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;}
.m4{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);}
.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);}
.m3{transform:matrix(0.248894,0.023485,-0.023485,0.248894,0,0);-ms-transform:matrix(0.248894,0.023485,-0.023485,0.248894,0,0);-webkit-transform:matrix(0.248894,0.023485,-0.023485,0.248894,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);}
.v5{vertical-align:-3.338160px;}
.v3{vertical-align:-2.242800px;}
.v8{vertical-align:-1.169400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.330400px;}
.v6{vertical-align:4.806600px;}
.v7{vertical-align:7.282200px;}
.v9{vertical-align:16.534200px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:27.000000px;}
.v2{vertical-align:39.808200px;}
.ls10{letter-spacing:-13.176000px;}
.lsa{letter-spacing:-5.952000px;}
.ls9{letter-spacing:-3.868800px;}
.ls18{letter-spacing:-0.595200px;}
.ls4{letter-spacing:-0.237545px;}
.ls25{letter-spacing:-0.051000px;}
.ls1f{letter-spacing:-0.038400px;}
.ls8{letter-spacing:-0.003607px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005400px;}
.lsd{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.108225px;}
.ls5{letter-spacing:0.118580px;}
.ls7{letter-spacing:0.140692px;}
.ls3{letter-spacing:0.144151px;}
.ls2{letter-spacing:25.536000px;}
.ls24{letter-spacing:30.888000px;}
.ls14{letter-spacing:39.597480px;}
.ls13{letter-spacing:39.597600px;}
.ls1b{letter-spacing:42.041580px;}
.lse{letter-spacing:43.461000px;}
.lsc{letter-spacing:43.461240px;}
.lsb{letter-spacing:45.266640px;}
.ls22{letter-spacing:46.200000px;}
.ls1a{letter-spacing:47.177880px;}
.ls19{letter-spacing:47.178060px;}
.ls1c{letter-spacing:48.305520px;}
.ls17{letter-spacing:53.136000px;}
.ls1{letter-spacing:53.403000px;}
.ls1d{letter-spacing:53.403120px;}
.ls20{letter-spacing:58.200000px;}
.lsf{letter-spacing:58.536120px;}
.ls1e{letter-spacing:67.536000px;}
.ls15{letter-spacing:69.336000px;}
.ls23{letter-spacing:75.600000px;}
.ls11{letter-spacing:80.837400px;}
.ls16{letter-spacing:101.400240px;}
.ls21{letter-spacing:1038.187800px;}
.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;}
}
.ws8{word-spacing:-72.576000px;}
.ws2c{word-spacing:-61.824000px;}
.ws3b{word-spacing:-48.807000px;}
.wse{word-spacing:-45.984000px;}
.ws34{word-spacing:-45.945600px;}
.ws1e{word-spacing:-40.244400px;}
.ws3a{word-spacing:-38.208000px;}
.ws5{word-spacing:-38.130000px;}
.ws3c{word-spacing:-34.440000px;}
.ws6{word-spacing:-30.504000px;}
.ws25{word-spacing:-29.952000px;}
.ws2b{word-spacing:-29.908800px;}
.ws3d{word-spacing:-27.552000px;}
.ws19{word-spacing:-26.635200px;}
.ws1a{word-spacing:-24.552000px;}
.wsb{word-spacing:-22.680000px;}
.ws2f{word-spacing:-22.464000px;}
.ws29{word-spacing:-21.964800px;}
.ws7{word-spacing:-21.816000px;}
.ws22{word-spacing:-21.384000px;}
.ws2a{word-spacing:-21.216000px;}
.ws2e{word-spacing:-21.060000px;}
.ws16{word-spacing:-20.736000px;}
.ws3{word-spacing:-20.592000px;}
.ws0{word-spacing:-20.304000px;}
.ws24{word-spacing:-20.160000px;}
.ws1c{word-spacing:-19.680000px;}
.ws1d{word-spacing:-19.392000px;}
.ws39{word-spacing:-17.550000px;}
.ws20{word-spacing:-17.472000px;}
.ws1b{word-spacing:-17.220000px;}
.ws1f{word-spacing:-16.968000px;}
.ws35{word-spacing:-16.128000px;}
.ws21{word-spacing:-15.444000px;}
.ws14{word-spacing:-14.976000px;}
.ws1{word-spacing:-13.536000px;}
.wsf{word-spacing:-12.120000px;}
.ws9{word-spacing:-10.908000px;}
.ws38{word-spacing:-9.696000px;}
.wsc{word-spacing:-9.264259px;}
.wsd{word-spacing:-9.026713px;}
.wsa{word-spacing:-8.484000px;}
.ws17{word-spacing:-8.064000px;}
.ws23{word-spacing:-7.560000px;}
.ws12{word-spacing:-7.175309px;}
.ws11{word-spacing:-7.142841px;}
.ws10{word-spacing:-7.034616px;}
.ws13{word-spacing:-7.031009px;}
.ws2{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.078000px;}
.ws2d{word-spacing:-0.066000px;}
.ws37{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws30{word-spacing:11.299800px;}
.ws32{word-spacing:14.972220px;}
.ws15{word-spacing:30.615120px;}
.ws36{word-spacing:96.265200px;}
.ws27{word-spacing:357.792600px;}
.ws28{word-spacing:393.115800px;}
.ws26{word-spacing:509.292840px;}
.ws33{word-spacing:1991.718000px;}
.ws31{word-spacing:3010.458600px;}
._c{margin-left:-2697.114480px;}
._3{margin-left:-2667.294480px;}
._17{margin-left:-2279.244480px;}
._16{margin-left:-2066.089800px;}
._13{margin-left:-13.392000px;}
._4{margin-left:-12.120000px;}
._e{margin-left:-10.908000px;}
._6{margin-left:-8.640000px;}
._11{margin-left:-7.068000px;}
._2{margin-left:-5.544000px;}
._9{margin-left:-4.320000px;}
._a{margin-left:-3.240000px;}
._1{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._8{width:1.224000px;}
._12{width:2.430000px;}
._b{width:3.868800px;}
._d{width:5.952000px;}
._10{width:13.176000px;}
._14{width:25.834080px;}
._7{width:38.220600px;}
._5{width:53.403000px;}
._15{width:1175.801880px;}
._f{width:1895.332380px;}
.fc14{color:rgb(0,0,238);}
.fc12{color:rgb(188,89,82);}
.fc11{color:rgb(0,111,53);}
.fc10{color:rgb(31,74,137);}
.fcf{color:rgb(139,0,73);}
.fce{color:rgb(24,120,50);}
.fc1{color:rgb(162,0,85);}
.fc2{color:rgb(147,19,86);}
.fc15{color:rgb(67,121,128);}
.fc13{color:rgb(0,139,66);}
.fc3{color:rgb(0,139,66);}
.fc4{color:rgb(83,83,83);}
.fc5{color:rgb(167,167,167);}
.fc6{color:rgb(255,255,255);}
.fc7{color:rgb(136,136,136);}
.fcb{color:rgb(0,0,0);}
.fcd{color:rgb(30,100,200);}
.fc0{color:rgb(170,166,162);}
.fc8{color:rgb(30,100,200);}
.fc9{color:transparent;}
.fca{color:rgb(139,2,74);}
.fcc{color:rgb(126,24,72);}
.fs26{font-size:24.000000px;}
.fs28{font-size:36.000000px;}
.fs16{font-size:36.074956px;}
.fse{font-size:42.000000px;}
.fs14{font-size:47.431886px;}
.fs12{font-size:47.509018px;}
.fs27{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs10{font-size:57.660518px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs13{font-size:69.506044px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:78.000000px;}
.fs1a{font-size:78.000004px;}
.fs17{font-size:80.834623px;}
.fs18{font-size:80.901429px;}
.fsd{font-size:84.000000px;}
.fs15{font-size:89.185307px;}
.fs1c{font-size:90.000000px;}
.fsf{font-size:96.000000px;}
.fs1b{font-size:97.440000px;}
.fs21{font-size:102.000000px;}
.fs4{font-size:105.600000px;}
.fs2{font-size:108.000000px;}
.fs11{font-size:108.418016px;}
.fs1f{font-size:111.360000px;}
.fsa{font-size:114.000000px;}
.fs20{font-size:120.000000px;}
.fs22{font-size:125.280000px;}
.fs3{font-size:132.000000px;}
.fs2a{font-size:134.400000px;}
.fs23{font-size:136.037965px;}
.fs24{font-size:137.138854px;}
.fs25{font-size:138.000000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:148.800000px;}
.fs9{font-size:162.000000px;}
.fs29{font-size:168.000000px;}
.fs1e{font-size:183.649949px;}
.fs1d{font-size:185.136144px;}
.fs6{font-size:186.000000px;}
.fsb{font-size:216.000000px;}
.y2e{bottom:-247.092638px;}
.y53{bottom:-231.066135px;}
.y5b{bottom:-157.749911px;}
.y5d{bottom:-152.753419px;}
.y5a{bottom:-128.689530px;}
.y5c{bottom:-123.693038px;}
.y59{bottom:-99.629149px;}
.y56{bottom:-76.894411px;}
.y58{bottom:-70.547892px;}
.y57{bottom:-10.207239px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.566500px;}
.y4e{bottom:8.266500px;}
.y158{bottom:8.676000px;}
.yc0{bottom:8.722275px;}
.y169{bottom:9.495000px;}
.y62{bottom:11.451390px;}
.y71{bottom:11.451405px;}
.y176{bottom:11.451450px;}
.yaf{bottom:14.094015px;}
.y19c{bottom:14.436217px;}
.y29{bottom:15.855750px;}
.y26{bottom:15.855780px;}
.y136{bottom:16.290045px;}
.y8{bottom:17.914710px;}
.y77{bottom:19.005210px;}
.ybd{bottom:19.305750px;}
.y39{bottom:19.305780px;}
.yba{bottom:19.305900px;}
.y6d{bottom:21.766500px;}
.yfc{bottom:22.371000px;}
.y1{bottom:22.467090px;}
.y6a{bottom:23.116500px;}
.yc4{bottom:24.280050px;}
.ybf{bottom:25.222215px;}
.yf8{bottom:25.531350px;}
.yfe{bottom:25.531395px;}
.y76{bottom:25.741500px;}
.y101{bottom:26.265570px;}
.y19b{bottom:27.526710px;}
.y3{bottom:32.700000px;}
.y91{bottom:33.481500px;}
.y3f{bottom:33.659250px;}
.y180{bottom:35.152965px;}
.y6c{bottom:35.266500px;}
.y10d{bottom:35.894670px;}
.y168{bottom:36.495000px;}
.y61{bottom:36.951390px;}
.y70{bottom:36.951405px;}
.y35{bottom:38.264700px;}
.yf6{bottom:39.460590px;}
.y43{bottom:39.460650px;}
.y15b{bottom:42.460590px;}
.y8f{bottom:46.273650px;}
.y4d{bottom:48.423045px;}
.y182{bottom:49.112550px;}
.yf5{bottom:49.948785px;}
.y28{bottom:50.355750px;}
.y183{bottom:52.486500px;}
.y167{bottom:55.995000px;}
.ybc{bottom:57.255750px;}
.y38{bottom:57.255765px;}
.yb9{bottom:57.255900px;}
.y140{bottom:58.050900px;}
.ydd{bottom:58.482779px;}
.y149{bottom:59.041005px;}
.ydf{bottom:59.306120px;}
.y75{bottom:60.241500px;}
.yfb{bottom:60.321000px;}
.y6f{bottom:62.451405px;}
.y60{bottom:62.451420px;}
.y69{bottom:64.997535px;}
.y15a{bottom:65.079120px;}
.y134{bottom:65.491530px;}
.y6e{bottom:68.378475px;}
.y17f{bottom:70.247310px;}
.y10c{bottom:70.394670px;}
.y48{bottom:70.607070px;}
.y15c{bottom:71.554575px;}
.y138{bottom:72.099195px;}
.y172{bottom:72.645075px;}
.y166{bottom:75.495075px;}
.yb0{bottom:76.709370px;}
.y80{bottom:76.786305px;}
.y8a{bottom:77.346990px;}
.ycc{bottom:77.595105px;}
.y142{bottom:78.168165px;}
.yb5{bottom:78.951314px;}
.yb3{bottom:80.062619px;}
.y40{bottom:82.847760px;}
.y9{bottom:83.466765px;}
.y97{bottom:84.039555px;}
.y51{bottom:87.782940px;}
.y18e{bottom:88.067715px;}
.y14a{bottom:88.765740px;}
.y165{bottom:89.796825px;}
.y11{bottom:89.834220px;}
.y73{bottom:90.945495px;}
.ycb{bottom:91.095105px;}
.yd6{bottom:91.818480px;}
.y107{bottom:91.946640px;}
.y33{bottom:93.514560px;}
.y1c{bottom:95.190960px;}
.y37{bottom:95.205765px;}
.y148{bottom:96.241005px;}
.y13f{bottom:97.650900px;}
.y36{bottom:99.516435px;}
.y133{bottom:100.291530px;}
.ye8{bottom:101.632710px;}
.yfd{bottom:103.318875px;}
.yca{bottom:104.595105px;}
.y154{bottom:106.917840px;}
.y32{bottom:107.014560px;}
.yee{bottom:108.674670px;}
.y7f{bottom:109.186305px;}
.y164{bottom:109.578180px;}
.y141{bottom:109.697400px;}
.y89{bottom:109.746990px;}
.y5f{bottom:110.298030px;}
.y72{bottom:110.445495px;}
.y10b{bottom:112.094670px;}
.y127{bottom:112.826100px;}
.y2d{bottom:112.830480px;}
.y96{bottom:113.739555px;}
.y55{bottom:113.883928px;}
.y113{bottom:114.401535px;}
.y131{bottom:116.810970px;}
.ye1{bottom:117.674655px;}
.y13e{bottom:118.071600px;}
.yc9{bottom:118.095105px;}
.y147{bottom:118.189845px;}
.y184{bottom:118.924485px;}
.y20{bottom:118.954590px;}
.y10f{bottom:119.294670px;}
.yc2{bottom:119.521935px;}
.y1b{bottom:120.143460px;}
.y25{bottom:120.625605px;}
.yea{bottom:121.038195px;}
.y9e{bottom:122.145765px;}
.yae{bottom:122.871540px;}
.y50{bottom:122.977935px;}
.y174{bottom:123.591465px;}
.y153{bottom:124.460160px;}
.y108{bottom:125.838180px;}
.yad{bottom:126.120465px;}
.yd5{bottom:126.318480px;}
.y171{bottom:130.791465px;}
.y135{bottom:131.212500px;}
.y10{bottom:131.834220px;}
.y1f{bottom:132.454590px;}
.y132{bottom:135.091530px;}
.y106{bottom:135.467280px;}
.y19f{bottom:137.867760px;}
.y12f{bottom:138.926115px;}
.y54{bottom:140.606117px;}
.ybe{bottom:140.891985px;}
.y120{bottom:141.406470px;}
.y7e{bottom:141.586305px;}
.y88{bottom:142.146990px;}
.y18d{bottom:142.217715px;}
.yed{bottom:143.174670px;}
.y186{bottom:143.224455px;}
.y68{bottom:143.390475px;}
.y95{bottom:143.439555px;}
.y1e{bottom:144.626235px;}
.y112{bottom:145.849470px;}
.y163{bottom:150.978150px;}
.y6b{bottom:151.010850px;}
.yac{bottom:151.024950px;}
.y9d{bottom:151.845750px;}
.ye0{bottom:152.174700px;}
.y10a{bottom:153.794670px;}
.y173{bottom:155.039400px;}
.y12{bottom:159.584250px;}
.y4f{bottom:164.587650px;}
.y7{bottom:165.181650px;}
.y2b{bottom:167.823900px;}
.y105{bottom:168.146580px;}
.y152{bottom:169.167900px;}
.y126{bottom:171.378150px;}
.y185{bottom:171.724500px;}
.y170{bottom:172.191450px;}
.y94{bottom:173.139600px;}
.yf{bottom:173.834250px;}
.y7d{bottom:173.986350px;}
.y87{bottom:174.547050px;}
.yfa{bottom:175.479300px;}
.y24{bottom:176.455950px;}
.y18c{bottom:176.867700px;}
.yc1{bottom:179.521950px;}
.y9c{bottom:181.545750px;}
.yd7{bottom:181.915950px;}
.yb8{bottom:184.199700px;}
.ybb{bottom:184.199850px;}
.y12e{bottom:186.073650px;}
.y10e{bottom:186.473970px;}
.y13d{bottom:187.246050px;}
.y109{bottom:188.294670px;}
.yab{bottom:192.424950px;}
.y162{bottom:192.670500px;}
.y11f{bottom:192.856500px;}
.y12d{bottom:194.126100px;}
.y19a{bottom:197.426100px;}
.yf2{bottom:200.174700px;}
.y13c{bottom:200.746050px;}
.y111{bottom:202.249500px;}
.y5e{bottom:202.434300px;}
.y125{bottom:202.826100px;}
.y93{bottom:202.839600px;}
.y16f{bottom:203.639400px;}
.y151{bottom:203.960100px;}
.ye5{bottom:204.503100px;}
.ye9{bottom:204.656250px;}
.y2f{bottom:204.730306px;}
.y7c{bottom:206.386350px;}
.y17e{bottom:206.719350px;}
.y86{bottom:206.947050px;}
.y34{bottom:207.961800px;}
.y9b{bottom:211.245750px;}
.y104{bottom:211.667280px;}
.y23{bottom:212.455950px;}
.y156{bottom:212.778150px;}
.y4c{bottom:218.945550px;}
.yd3{bottom:219.919350px;}
.y119{bottom:222.434550px;}
.y41{bottom:222.743529px;}
.y52{bottom:223.516200px;}
.yaa{bottom:223.872900px;}
.y13{bottom:226.120500px;}
.y2{bottom:226.525050px;}
.y196{bottom:228.421650px;}
.y92{bottom:232.539600px;}
.yf1{bottom:234.674700px;}
.y18b{bottom:236.539950px;}
.y7b{bottom:238.786350px;}
.ye4{bottom:239.003100px;}
.y85{bottom:239.347050px;}
.y16d{bottom:240.802500px;}
.y9a{bottom:240.945750px;}
.y27{bottom:241.160250px;}
.y161{bottom:241.270500px;}
.y12c{bottom:241.273650px;}
.y155{bottom:244.226100px;}
.y103{bottom:244.346580px;}
.y67{bottom:244.999650px;}
.y3d{bottom:245.360250px;}
.y11e{bottom:246.127050px;}
.y118{bottom:248.145750px;}
.y150{bottom:248.667900px;}
.y192{bottom:248.726100px;}
.y12b{bottom:249.326100px;}
.y199{bottom:250.826100px;}
.y90{bottom:251.363100px;}
.y16e{bottom:252.239400px;}
.yc8{bottom:253.226100px;}
.y17d{bottom:253.519350px;}
.y4b{bottom:254.945550px;}
.yd2{bottom:256.219350px;}
.y124{bottom:261.378150px;}
.ya9{bottom:265.272900px;}
.y175{bottom:269.518650px;}
.y16{bottom:269.888850px;}
.y99{bottom:270.645750px;}
.y7a{bottom:271.186350px;}
.y84{bottom:271.747050px;}
.yf9{bottom:279.429300px;}
.y3c{bottom:283.310250px;}
.y14f{bottom:283.460100px;}
.y1a{bottom:283.918950px;}
.ydc{bottom:285.964500px;}
.y102{bottom:286.046580px;}
.y66{bottom:286.399650px;}
.y78{bottom:287.166900px;}
.y98{bottom:287.802900px;}
.y19e{bottom:289.058850px;}
.y16c{bottom:289.402500px;}
.y160{bottom:289.578150px;}
.y13b{bottom:290.982300px;}
.yf0{bottom:291.674700px;}
.yd1{bottom:292.519350px;}
.y123{bottom:292.826100px;}
.ye3{bottom:293.088900px;}
.y4a{bottom:296.189400px;}
.yec{bottom:297.274200px;}
.y191{bottom:297.326100px;}
.yb2{bottom:297.356700px;}
.y11d{bottom:297.577050px;}
.yb4{bottom:297.713100px;}
.y12a{bottom:297.926100px;}
.y17c{bottom:300.319350px;}
.y137{bottom:301.865250px;}
.y198{bottom:304.226100px;}
.y117{bottom:304.545750px;}
.y31{bottom:304.807173px;}
.ya8{bottom:306.672900px;}
.y18a{bottom:307.482150px;}
.y187{bottom:313.482150px;}
.y8d{bottom:313.666050px;}
.y83{bottom:314.228550px;}
.yc7{bottom:316.785750px;}
.y22{bottom:320.455950px;}
.y3b{bottom:321.260250px;}
.y30{bottom:321.861692px;}
.yef{bottom:326.174700px;}
.ye{bottom:326.442000px;}
.y114{bottom:326.883000px;}
.ye2{bottom:327.588900px;}
.y65{bottom:327.799650px;}
.y14e{bottom:328.460100px;}
.yd0{bottom:330.319350px;}
.y146{bottom:330.613350px;}
.y15f{bottom:331.270500px;}
.ydb{bottom:331.905600px;}
.y2a{bottom:332.810250px;}
.y143{bottom:337.140600px;}
.y16b{bottom:338.178150px;}
.y44{bottom:340.388550px;}
.y122{bottom:341.426100px;}
.ya2{bottom:341.526150px;}
.y129{bottom:345.073650px;}
.y42{bottom:345.274200px;}
.y190{bottom:345.926100px;}
.y17b{bottom:347.119350px;}
.y11c{bottom:349.027050px;}
.y8c{bottom:349.666050px;}
.y82{bottom:350.228550px;}
.y195{bottom:351.421650px;}
.yf7{bottom:351.589650px;}
.y159{bottom:352.355400px;}
.y128{bottom:353.126100px;}
.y21{bottom:356.455950px;}
.y47{bottom:357.359550px;}
.yc6{bottom:357.626100px;}
.ya7{bottom:358.024950px;}
.y3a{bottom:359.210250px;}
.y116{bottom:360.945750px;}
.y15{bottom:366.488850px;}
.ycf{bottom:366.619350px;}
.y64{bottom:369.199650px;}
.yd{bottom:369.942000px;}
.ya1{bottom:371.226150px;}
.y189{bottom:372.879300px;}
.y14d{bottom:373.460100px;}
.yde{bottom:373.863750px;}
.y74{bottom:376.076700px;}
.y100{bottom:376.120050px;}
.y2c{bottom:378.110250px;}
.yf4{bottom:378.674700px;}
.y16a{bottom:379.402500px;}
.y15e{bottom:379.870500px;}
.y3e{bottom:381.000000px;}
.ye7{bottom:381.674700px;}
.y13a{bottom:382.063350px;}
.yda{bottom:383.355600px;}
.yd8{bottom:383.830050px;}
.y11b{bottom:385.156500px;}
.y8b{bottom:385.666050px;}
.y81{bottom:386.228550px;}
.y8e{bottom:387.876600px;}
.y145{bottom:387.958500px;}
.y18{bottom:388.371000px;}
.y139{bottom:388.618950px;}
.yeb{bottom:389.969400px;}
.y46{bottom:393.359550px;}
.y17a{bottom:393.919350px;}
.y14b{bottom:394.702650px;}
.y188{bottom:398.529300px;}
.ya6{bottom:399.424950px;}
.ya0{bottom:400.926150px;}
.yb6{bottom:402.055650px;}
.yce{bottom:402.919350px;}
.y63{bottom:407.149650px;}
.y179{bottom:408.850050px;}
.y121{bottom:410.222850px;}
.yd4{bottom:410.721000px;}
.yb1{bottom:412.868400px;}
.y194{bottom:412.921650px;}
.yf3{bottom:413.174700px;}
.yc{bottom:413.442000px;}
.y18f{bottom:414.722850px;}
.yc5{bottom:414.897150px;}
.ye6{bottom:416.174700px;}
.y14c{bottom:418.460100px;}
.y9f{bottom:418.860750px;}
.y1a0{bottom:420.103800px;}
.y19d{bottom:421.058850px;}
.y115{bottom:421.138350px;}
.y157{bottom:423.194400px;}
.y15d{bottom:430.578150px;}
.ya4{bottom:432.887850px;}
.y17{bottom:433.221000px;}
.y130{bottom:433.513350px;}
.y45{bottom:435.086250px;}
.yff{bottom:436.251000px;}
.yd9{bottom:436.626150px;}
.y110{bottom:437.856300px;}
.y178{bottom:440.298000px;}
.ycd{bottom:440.719350px;}
.y11a{bottom:441.277050px;}
.y79{bottom:442.801050px;}
.yb{bottom:447.942000px;}
.ya3{bottom:458.387850px;}
.y144{bottom:459.173250px;}
.y14{bottom:463.088850px;}
.y193{bottom:474.421650px;}
.y6{bottom:480.222600px;}
.ya5{bottom:482.394150px;}
.ya{bottom:482.442000px;}
.y181{bottom:483.034500px;}
.y177{bottom:488.898000px;}
.yc3{bottom:507.429900px;}
.y5{bottom:514.722600px;}
.y1d{bottom:516.673350px;}
.y19{bottom:532.147050px;}
.y197{bottom:535.147050px;}
.y4{bottom:549.222600px;}
.yb7{bottom:578.949900px;}
.h5c{height:15.996094px;}
.h20{height:16.200000px;}
.h21{height:24.300000px;}
.h65{height:25.800000px;}
.h74{height:26.316000px;}
.h25{height:26.422087px;}
.h70{height:30.300000px;}
.h2b{height:30.702000px;}
.h10{height:30.744000px;}
.h23{height:34.740151px;}
.h17{height:34.796644px;}
.h66{height:35.136000px;}
.h6b{height:37.755780px;}
.h43{height:38.074219px;}
.h2a{height:39.150000px;}
.h2e{height:39.528000px;}
.h15{height:42.231825px;}
.h42{height:43.800000px;}
.h7{height:43.920000px;}
.h69{height:44.040000px;}
.h39{height:45.084030px;}
.h50{height:49.896000px;}
.h1d{height:50.907747px;}
.h2c{height:51.300000px;}
.h12{height:51.469530px;}
.h6c{height:51.480000px;}
.h1{height:52.632000px;}
.hf{height:55.440000px;}
.h29{height:57.018000px;}
.h5f{height:57.744000px;}
.h76{height:58.968000px;}
.h35{height:58.968003px;}
.h26{height:59.205046px;}
.h32{height:59.245200px;}
.h33{height:59.245260px;}
.h27{height:59.253976px;}
.h5d{height:61.404000px;}
.he{height:61.488000px;}
.h30{height:61.656000px;}
.h3a{height:63.457031px;}
.h6e{height:63.504000px;}
.h71{height:64.620000px;}
.h5a{height:64.680000px;}
.h4b{height:65.250210px;}
.h24{height:65.321270px;}
.h4d{height:65.778255px;}
.h48{height:68.469600px;}
.h62{height:69.300000px;}
.h2f{height:69.312000px;}
.h11{height:70.272000px;}
.h31{height:70.464000px;}
.h51{height:70.660365px;}
.h38{height:71.326080px;}
.h36{height:73.560795px;}
.h61{height:73.920000px;}
.h49{height:74.664000px;}
.h58{height:77.886600px;}
.h64{height:77.886720px;}
.h63{height:77.887200px;}
.h5e{height:77.938200px;}
.h40{height:77.976000px;}
.h9{height:78.948000px;}
.ha{height:79.056000px;}
.h4{height:79.272000px;}
.h16{height:79.407726px;}
.h1b{height:79.500000px;}
.h6a{height:79.758600px;}
.h34{height:80.164200px;}
.h1f{height:81.648000px;}
.h44{height:81.738240px;}
.h53{height:82.056000px;}
.h45{height:82.200000px;}
.h6d{height:84.075420px;}
.h1e{height:85.161060px;}
.h13{height:85.969530px;}
.h18{height:85.998045px;}
.h5{height:87.696000px;}
.h47{height:87.840000px;}
.h3e{height:88.087155px;}
.h28{height:88.755780px;}
.h3c{height:88.800000px;}
.h4c{height:89.785057px;}
.h55{height:90.452160px;}
.h4e{height:90.511644px;}
.h57{height:91.579680px;}
.h4a{height:91.704960px;}
.h41{height:92.869530px;}
.h6{height:94.776000px;}
.h68{height:96.300000px;}
.h4f{height:96.600000px;}
.h52{height:102.450000px;}
.h67{height:103.161060px;}
.h3b{height:103.968000px;}
.h6f{height:104.012655px;}
.h2d{height:104.943840px;}
.h2{height:107.700000px;}
.hc{height:113.400000px;}
.h3f{height:121.208966px;}
.h3d{height:122.189855px;}
.h75{height:123.312000px;}
.hb{height:123.878906px;}
.h1a{height:130.819530px;}
.h8{height:136.524000px;}
.h5b{height:144.450000px;}
.hd{height:154.933594px;}
.h37{height:157.664062px;}
.h60{height:159.615900px;}
.h59{height:169.803000px;}
.h19{height:180.187500px;}
.h72{height:191.449219px;}
.h46{height:202.710938px;}
.h56{height:223.908450px;}
.h73{height:225.234375px;}
.h22{height:253.750350px;}
.h3{height:270.281250px;}
.h1c{height:306.354750px;}
.h54{height:323.481000px;}
.h14{height:338.326950px;}
.h0{height:607.500000px;}
.w35{width:23.447280px;}
.w20{width:43.957530px;}
.w1d{width:65.208030px;}
.w26{width:65.250210px;}
.w27{width:65.778255px;}
.w3{width:82.231530px;}
.w22{width:84.340545px;}
.w2{width:85.321530px;}
.w1f{width:88.087155px;}
.w1e{width:88.800000px;}
.w5{width:105.625530px;}
.w4{width:109.783530px;}
.w7{width:116.695530px;}
.w6{width:118.639530px;}
.w8{width:145.855530px;}
.w25{width:180.712500px;}
.w18{width:194.953950px;}
.w10{width:196.596000px;}
.w2a{width:199.500000px;}
.w17{width:200.065200px;}
.w19{width:213.381600px;}
.w16{width:218.614800px;}
.w21{width:219.283500px;}
.w11{width:226.027500px;}
.w1b{width:227.896950px;}
.w31{width:229.728000px;}
.w33{width:234.317250px;}
.w15{width:240.034950px;}
.wf{width:247.184850px;}
.w2d{width:249.536850px;}
.w13{width:257.811000px;}
.w2c{width:270.862650px;}
.w38{width:272.850000px;}
.w1a{width:273.764850px;}
.w1c{width:277.344450px;}
.w24{width:279.046500px;}
.w14{width:280.136550px;}
.w12{width:286.497600px;}
.w32{width:287.004000px;}
.we{width:287.260800px;}
.w2b{width:293.961900px;}
.wa{width:294.772650px;}
.w2e{width:309.184650px;}
.w30{width:310.749150px;}
.w2f{width:322.074900px;}
.w9{width:339.078450px;}
.wc{width:345.000000px;}
.w28{width:358.733400px;}
.w36{width:359.543700px;}
.w29{width:364.507500px;}
.wb{width:405.552900px;}
.w37{width:411.082500px;}
.w1{width:470.650200px;}
.w34{width:482.391150px;}
.wd{width:489.568200px;}
.w23{width:651.251400px;}
.w0{width:1080.000000px;}
.x20{left:-326.201758px;}
.x36{left:-260.126254px;}
.x2a{left:-197.343056px;}
.x57{left:-24.178273px;}
.x55{left:-18.564080px;}
.x6a{left:-13.751268px;}
.x0{left:0.000000px;}
.x30{left:3.299550px;}
.x28{left:6.031500px;}
.x52{left:7.542000px;}
.x18{left:9.234750px;}
.x4b{left:12.030300px;}
.x24{left:13.749000px;}
.x60{left:15.467649px;}
.x1a{left:18.279900px;}
.x49{left:20.633700px;}
.x84{left:24.876825px;}
.x11{left:26.631495px;}
.x31{left:28.358880px;}
.x42{left:29.948400px;}
.x8a{left:31.320825px;}
.x29{left:32.733975px;}
.x5f{left:33.992895px;}
.x12{left:35.813880px;}
.x76{left:36.905700px;}
.x22{left:38.969880px;}
.x73{left:40.463880px;}
.x15{left:47.118300px;}
.x4d{left:54.167400px;}
.x3{left:55.362600px;}
.x4{left:56.863140px;}
.x90{left:58.258200px;}
.x10{left:59.400000px;}
.x45{left:61.271700px;}
.x7a{left:63.068865px;}
.xa{left:65.082675px;}
.x3a{left:66.297510px;}
.x3c{left:68.874195px;}
.x2d{left:71.054340px;}
.x64{left:74.200920px;}
.x54{left:77.485140px;}
.x61{left:78.825540px;}
.x46{left:81.153765px;}
.x2{left:83.657130px;}
.x65{left:88.411440px;}
.x96{left:93.064785px;}
.x2e{left:97.142925px;}
.x70{left:106.814985px;}
.x7b{left:108.068865px;}
.x78{left:109.612290px;}
.x3b{left:111.297510px;}
.x13{left:113.844420px;}
.x7c{left:115.275540px;}
.x8{left:120.220200px;}
.x9f{left:123.664755px;}
.x62{left:132.825540px;}
.xe{left:137.199945px;}
.x27{left:150.000000px;}
.x26{left:156.031500px;}
.xb{left:165.174600px;}
.xc{left:186.490350px;}
.xf{left:196.566750px;}
.x8e{left:198.283650px;}
.x6{left:233.173800px;}
.x58{left:251.545800px;}
.x40{left:270.986100px;}
.x91{left:283.132500px;}
.x5c{left:293.661000px;}
.x53{left:299.730750px;}
.x37{left:309.474038px;}
.x38{left:318.089163px;}
.x5{left:327.961800px;}
.x21{left:347.671705px;}
.x7{left:351.136800px;}
.x7f{left:354.681150px;}
.x56{left:363.750300px;}
.x9{left:377.332500px;}
.x16{left:392.474400px;}
.x1{left:424.990350px;}
.x34{left:447.760500px;}
.x75{left:450.362700px;}
.x39{left:451.782600px;}
.x6b{left:453.315000px;}
.x66{left:468.495300px;}
.xa1{left:484.635000px;}
.x8c{left:487.766850px;}
.x51{left:493.574400px;}
.x92{left:497.460750px;}
.x67{left:507.456300px;}
.x8d{left:508.766850px;}
.x59{left:519.219750px;}
.x43{left:527.831400px;}
.x98{left:530.552250px;}
.x3e{left:545.716350px;}
.x3f{left:547.604100px;}
.x63{left:549.250650px;}
.x79{left:550.978650px;}
.x14{left:558.250650px;}
.x5d{left:563.498700px;}
.x35{left:567.412811px;}
.x7d{left:569.091600px;}
.x89{left:574.983900px;}
.x23{left:578.417100px;}
.x25{left:599.959200px;}
.x7e{left:605.541600px;}
.x72{left:607.137900px;}
.x41{left:612.784200px;}
.x85{left:613.805250px;}
.x32{left:626.297400px;}
.x97{left:636.718950px;}
.x93{left:639.104100px;}
.x2f{left:643.007700px;}
.x71{left:669.014250px;}
.x1f{left:680.607053px;}
.x5b{left:682.851300px;}
.x47{left:686.118000px;}
.x1b{left:690.617100px;}
.x8f{left:691.742850px;}
.x9d{left:693.405000px;}
.xa0{left:695.955450px;}
.x6f{left:696.974400px;}
.x44{left:701.582550px;}
.x2b{left:713.318550px;}
.x6d{left:721.867650px;}
.x4e{left:740.149200px;}
.x33{left:744.150000px;}
.x94{left:746.514000px;}
.x8b{left:749.053350px;}
.x6c{left:750.471300px;}
.x2c{left:752.256600px;}
.x80{left:755.244900px;}
.x83{left:763.203750px;}
.x6e{left:764.851800px;}
.x77{left:770.506950px;}
.x4a{left:772.601250px;}
.x74{left:774.017700px;}
.x95{left:782.964000px;}
.x4f{left:784.631550px;}
.x5a{left:786.893850px;}
.x86{left:792.469350px;}
.x9e{left:801.405000px;}
.x19{left:804.977700px;}
.x9a{left:806.069850px;}
.x82{left:807.466500px;}
.x3d{left:808.791000px;}
.x4c{left:815.651550px;}
.x87{left:820.644750px;}
.x68{left:821.689500px;}
.x88{left:824.019750px;}
.x5e{left:826.756500px;}
.xd{left:831.409500px;}
.x48{left:837.141000px;}
.x99{left:849.719850px;}
.x1d{left:878.909700px;}
.x9b{left:894.048150px;}
.x1c{left:897.359850px;}
.x1e{left:921.536700px;}
.x69{left:932.542650px;}
.x17{left:935.144850px;}
.x9c{left:938.826600px;}
.x81{left:958.079100px;}
.x50{left:1058.420700px;}
@media print{
.v5{vertical-align:-2.967253pt;}
.v3{vertical-align:-1.993600pt;}
.v8{vertical-align:-1.039467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.071467pt;}
.v6{vertical-align:4.272533pt;}
.v7{vertical-align:6.473067pt;}
.v9{vertical-align:14.697067pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:24.000000pt;}
.v2{vertical-align:35.385067pt;}
.ls10{letter-spacing:-11.712000pt;}
.lsa{letter-spacing:-5.290667pt;}
.ls9{letter-spacing:-3.438933pt;}
.ls18{letter-spacing:-0.529067pt;}
.ls4{letter-spacing:-0.211151pt;}
.ls25{letter-spacing:-0.045333pt;}
.ls1f{letter-spacing:-0.034133pt;}
.ls8{letter-spacing:-0.003207pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.004800pt;}
.lsd{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.096200pt;}
.ls5{letter-spacing:0.105404pt;}
.ls7{letter-spacing:0.125060pt;}
.ls3{letter-spacing:0.128134pt;}
.ls2{letter-spacing:22.698667pt;}
.ls24{letter-spacing:27.456000pt;}
.ls14{letter-spacing:35.197760pt;}
.ls13{letter-spacing:35.197867pt;}
.ls1b{letter-spacing:37.370293pt;}
.lse{letter-spacing:38.632000pt;}
.lsc{letter-spacing:38.632213pt;}
.lsb{letter-spacing:40.237013pt;}
.ls22{letter-spacing:41.066667pt;}
.ls1a{letter-spacing:41.935893pt;}
.ls19{letter-spacing:41.936053pt;}
.ls1c{letter-spacing:42.938240pt;}
.ls17{letter-spacing:47.232000pt;}
.ls1{letter-spacing:47.469333pt;}
.ls1d{letter-spacing:47.469440pt;}
.ls20{letter-spacing:51.733333pt;}
.lsf{letter-spacing:52.032107pt;}
.ls1e{letter-spacing:60.032000pt;}
.ls15{letter-spacing:61.632000pt;}
.ls23{letter-spacing:67.200000pt;}
.ls11{letter-spacing:71.855467pt;}
.ls16{letter-spacing:90.133547pt;}
.ls21{letter-spacing:922.833600pt;}
.ws8{word-spacing:-64.512000pt;}
.ws2c{word-spacing:-54.954667pt;}
.ws3b{word-spacing:-43.384000pt;}
.wse{word-spacing:-40.874667pt;}
.ws34{word-spacing:-40.840533pt;}
.ws1e{word-spacing:-35.772800pt;}
.ws3a{word-spacing:-33.962667pt;}
.ws5{word-spacing:-33.893333pt;}
.ws3c{word-spacing:-30.613333pt;}
.ws6{word-spacing:-27.114667pt;}
.ws25{word-spacing:-26.624000pt;}
.ws2b{word-spacing:-26.585600pt;}
.ws3d{word-spacing:-24.490667pt;}
.ws19{word-spacing:-23.675733pt;}
.ws1a{word-spacing:-21.824000pt;}
.wsb{word-spacing:-20.160000pt;}
.ws2f{word-spacing:-19.968000pt;}
.ws29{word-spacing:-19.524267pt;}
.ws7{word-spacing:-19.392000pt;}
.ws22{word-spacing:-19.008000pt;}
.ws2a{word-spacing:-18.858667pt;}
.ws2e{word-spacing:-18.720000pt;}
.ws16{word-spacing:-18.432000pt;}
.ws3{word-spacing:-18.304000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws24{word-spacing:-17.920000pt;}
.ws1c{word-spacing:-17.493333pt;}
.ws1d{word-spacing:-17.237333pt;}
.ws39{word-spacing:-15.600000pt;}
.ws20{word-spacing:-15.530667pt;}
.ws1b{word-spacing:-15.306667pt;}
.ws1f{word-spacing:-15.082667pt;}
.ws35{word-spacing:-14.336000pt;}
.ws21{word-spacing:-13.728000pt;}
.ws14{word-spacing:-13.312000pt;}
.ws1{word-spacing:-12.032000pt;}
.wsf{word-spacing:-10.773333pt;}
.ws9{word-spacing:-9.696000pt;}
.ws38{word-spacing:-8.618667pt;}
.wsc{word-spacing:-8.234896pt;}
.wsd{word-spacing:-8.023745pt;}
.wsa{word-spacing:-7.541333pt;}
.ws17{word-spacing:-7.168000pt;}
.ws23{word-spacing:-6.720000pt;}
.ws12{word-spacing:-6.378052pt;}
.ws11{word-spacing:-6.349192pt;}
.ws10{word-spacing:-6.252992pt;}
.ws13{word-spacing:-6.249786pt;}
.ws2{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.069333pt;}
.ws2d{word-spacing:-0.058667pt;}
.ws37{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws30{word-spacing:10.044267pt;}
.ws32{word-spacing:13.308640pt;}
.ws15{word-spacing:27.213440pt;}
.ws36{word-spacing:85.569067pt;}
.ws27{word-spacing:318.037867pt;}
.ws28{word-spacing:349.436267pt;}
.ws26{word-spacing:452.704747pt;}
.ws33{word-spacing:1770.416000pt;}
.ws31{word-spacing:2675.963200pt;}
._c{margin-left:-2397.435093pt;}
._3{margin-left:-2370.928427pt;}
._17{margin-left:-2025.995093pt;}
._16{margin-left:-1836.524267pt;}
._13{margin-left:-11.904000pt;}
._4{margin-left:-10.773333pt;}
._e{margin-left:-9.696000pt;}
._6{margin-left:-7.680000pt;}
._11{margin-left:-6.282667pt;}
._2{margin-left:-4.928000pt;}
._9{margin-left:-3.840000pt;}
._a{margin-left:-2.880000pt;}
._1{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._8{width:1.088000pt;}
._12{width:2.160000pt;}
._b{width:3.438933pt;}
._d{width:5.290667pt;}
._10{width:11.712000pt;}
._14{width:22.963627pt;}
._7{width:33.973867pt;}
._5{width:47.469333pt;}
._15{width:1045.157227pt;}
._f{width:1684.739893pt;}
.fs26{font-size:21.333333pt;}
.fs28{font-size:32.000000pt;}
.fs16{font-size:32.066627pt;}
.fse{font-size:37.333333pt;}
.fs14{font-size:42.161677pt;}
.fs12{font-size:42.230238pt;}
.fs27{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs10{font-size:51.253794pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs13{font-size:61.783151pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:69.333333pt;}
.fs1a{font-size:69.333337pt;}
.fs17{font-size:71.852998pt;}
.fs18{font-size:71.912381pt;}
.fsd{font-size:74.666667pt;}
.fs15{font-size:79.275829pt;}
.fs1c{font-size:80.000000pt;}
.fsf{font-size:85.333333pt;}
.fs1b{font-size:86.613333pt;}
.fs21{font-size:90.666667pt;}
.fs4{font-size:93.866667pt;}
.fs2{font-size:96.000000pt;}
.fs11{font-size:96.371570pt;}
.fs1f{font-size:98.986667pt;}
.fsa{font-size:101.333333pt;}
.fs20{font-size:106.666667pt;}
.fs22{font-size:111.360000pt;}
.fs3{font-size:117.333333pt;}
.fs2a{font-size:119.466667pt;}
.fs23{font-size:120.922636pt;}
.fs24{font-size:121.901204pt;}
.fs25{font-size:122.666667pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:132.266667pt;}
.fs9{font-size:144.000000pt;}
.fs29{font-size:149.333333pt;}
.fs1e{font-size:163.244399pt;}
.fs1d{font-size:164.565461pt;}
.fs6{font-size:165.333333pt;}
.fsb{font-size:192.000000pt;}
.y2e{bottom:-219.637901pt;}
.y53{bottom:-205.392120pt;}
.y5b{bottom:-140.222143pt;}
.y5d{bottom:-135.780816pt;}
.y5a{bottom:-114.390694pt;}
.y5c{bottom:-109.949367pt;}
.y59{bottom:-88.559244pt;}
.y56{bottom:-68.350588pt;}
.y58{bottom:-62.709237pt;}
.y57{bottom:-9.073102pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.281333pt;}
.y4e{bottom:7.348000pt;}
.y158{bottom:7.712000pt;}
.yc0{bottom:7.753133pt;}
.y169{bottom:8.440000pt;}
.y62{bottom:10.179013pt;}
.y71{bottom:10.179027pt;}
.y176{bottom:10.179067pt;}
.yaf{bottom:12.528013pt;}
.y19c{bottom:12.832193pt;}
.y29{bottom:14.094000pt;}
.y26{bottom:14.094027pt;}
.y136{bottom:14.480040pt;}
.y8{bottom:15.924187pt;}
.y77{bottom:16.893520pt;}
.ybd{bottom:17.160667pt;}
.y39{bottom:17.160693pt;}
.yba{bottom:17.160800pt;}
.y6d{bottom:19.348000pt;}
.yfc{bottom:19.885333pt;}
.y1{bottom:19.970747pt;}
.y6a{bottom:20.548000pt;}
.yc4{bottom:21.582267pt;}
.ybf{bottom:22.419747pt;}
.yf8{bottom:22.694533pt;}
.yfe{bottom:22.694573pt;}
.y76{bottom:22.881333pt;}
.y101{bottom:23.347173pt;}
.y19b{bottom:24.468187pt;}
.y3{bottom:29.066667pt;}
.y91{bottom:29.761333pt;}
.y3f{bottom:29.919333pt;}
.y180{bottom:31.247080pt;}
.y6c{bottom:31.348000pt;}
.y10d{bottom:31.906373pt;}
.y168{bottom:32.440000pt;}
.y61{bottom:32.845680pt;}
.y70{bottom:32.845693pt;}
.y35{bottom:34.013067pt;}
.yf6{bottom:35.076080pt;}
.y43{bottom:35.076133pt;}
.y15b{bottom:37.742747pt;}
.y8f{bottom:41.132133pt;}
.y4d{bottom:43.042707pt;}
.y182{bottom:43.655600pt;}
.yf5{bottom:44.398920pt;}
.y28{bottom:44.760667pt;}
.y183{bottom:46.654667pt;}
.y167{bottom:49.773333pt;}
.ybc{bottom:50.894000pt;}
.y38{bottom:50.894013pt;}
.yb9{bottom:50.894133pt;}
.y140{bottom:51.600800pt;}
.ydd{bottom:51.984692pt;}
.y149{bottom:52.480893pt;}
.ydf{bottom:52.716551pt;}
.y75{bottom:53.548000pt;}
.yfb{bottom:53.618667pt;}
.y6f{bottom:55.512360pt;}
.y60{bottom:55.512373pt;}
.y69{bottom:57.775587pt;}
.y15a{bottom:57.848107pt;}
.y134{bottom:58.214693pt;}
.y6e{bottom:60.780867pt;}
.y17f{bottom:62.442053pt;}
.y10c{bottom:62.573040pt;}
.y48{bottom:62.761840pt;}
.y15c{bottom:63.604067pt;}
.y138{bottom:64.088173pt;}
.y172{bottom:64.573400pt;}
.y166{bottom:67.106733pt;}
.yb0{bottom:68.186107pt;}
.y80{bottom:68.254493pt;}
.y8a{bottom:68.752880pt;}
.ycc{bottom:68.973427pt;}
.y142{bottom:69.482813pt;}
.yb5{bottom:70.178946pt;}
.yb3{bottom:71.166772pt;}
.y40{bottom:73.642453pt;}
.y9{bottom:74.192680pt;}
.y97{bottom:74.701827pt;}
.y51{bottom:78.029280pt;}
.y18e{bottom:78.282413pt;}
.y14a{bottom:78.902880pt;}
.y165{bottom:79.819400pt;}
.y11{bottom:79.852640pt;}
.y73{bottom:80.840440pt;}
.ycb{bottom:80.973427pt;}
.yd6{bottom:81.616427pt;}
.y107{bottom:81.730347pt;}
.y33{bottom:83.124053pt;}
.y1c{bottom:84.614187pt;}
.y37{bottom:84.627347pt;}
.y148{bottom:85.547560pt;}
.y13f{bottom:86.800800pt;}
.y36{bottom:88.459053pt;}
.y133{bottom:89.148027pt;}
.ye8{bottom:90.340187pt;}
.yfd{bottom:91.839000pt;}
.yca{bottom:92.973427pt;}
.y154{bottom:95.038080pt;}
.y32{bottom:95.124053pt;}
.yee{bottom:96.599707pt;}
.y7f{bottom:97.054493pt;}
.y164{bottom:97.402827pt;}
.y141{bottom:97.508800pt;}
.y89{bottom:97.552880pt;}
.y5f{bottom:98.042693pt;}
.y72{bottom:98.173773pt;}
.y10b{bottom:99.639707pt;}
.y127{bottom:100.289867pt;}
.y2d{bottom:100.293760pt;}
.y96{bottom:101.101827pt;}
.y55{bottom:101.230158pt;}
.y113{bottom:101.690253pt;}
.y131{bottom:103.831973pt;}
.ye1{bottom:104.599693pt;}
.y13e{bottom:104.952533pt;}
.yc9{bottom:104.973427pt;}
.y147{bottom:105.057640pt;}
.y184{bottom:105.710653pt;}
.y20{bottom:105.737413pt;}
.y10f{bottom:106.039707pt;}
.yc2{bottom:106.241720pt;}
.y1b{bottom:106.794187pt;}
.y25{bottom:107.222760pt;}
.yea{bottom:107.589507pt;}
.y9e{bottom:108.574013pt;}
.yae{bottom:109.219147pt;}
.y50{bottom:109.313720pt;}
.y174{bottom:109.859080pt;}
.y153{bottom:110.631253pt;}
.y108{bottom:111.856160pt;}
.yad{bottom:112.107080pt;}
.yd5{bottom:112.283093pt;}
.y171{bottom:116.259080pt;}
.y135{bottom:116.633333pt;}
.y10{bottom:117.185973pt;}
.y1f{bottom:117.737413pt;}
.y132{bottom:120.081360pt;}
.y106{bottom:120.415360pt;}
.y19f{bottom:122.549120pt;}
.y12f{bottom:123.489880pt;}
.y54{bottom:124.983215pt;}
.ybe{bottom:125.237320pt;}
.y120{bottom:125.694640pt;}
.y7e{bottom:125.854493pt;}
.y88{bottom:126.352880pt;}
.y18d{bottom:126.415747pt;}
.yed{bottom:127.266373pt;}
.y186{bottom:127.310627pt;}
.y68{bottom:127.458200pt;}
.y95{bottom:127.501827pt;}
.y1e{bottom:128.556653pt;}
.y112{bottom:129.643973pt;}
.y163{bottom:134.202800pt;}
.y6b{bottom:134.231867pt;}
.yac{bottom:134.244400pt;}
.y9d{bottom:134.974000pt;}
.ye0{bottom:135.266400pt;}
.y10a{bottom:136.706373pt;}
.y173{bottom:137.812800pt;}
.y12{bottom:141.852667pt;}
.y4f{bottom:146.300133pt;}
.y7{bottom:146.828133pt;}
.y2b{bottom:149.176800pt;}
.y105{bottom:149.463627pt;}
.y152{bottom:150.371467pt;}
.y126{bottom:152.336133pt;}
.y185{bottom:152.644000pt;}
.y170{bottom:153.059067pt;}
.y94{bottom:153.901867pt;}
.yf{bottom:154.519333pt;}
.y7d{bottom:154.654533pt;}
.y87{bottom:155.152933pt;}
.yfa{bottom:155.981600pt;}
.y24{bottom:156.849733pt;}
.y18c{bottom:157.215733pt;}
.yc1{bottom:159.575067pt;}
.y9c{bottom:161.374000pt;}
.yd7{bottom:161.703067pt;}
.yb8{bottom:163.733067pt;}
.ybb{bottom:163.733200pt;}
.y12e{bottom:165.398800pt;}
.y10e{bottom:165.754640pt;}
.y13d{bottom:166.440933pt;}
.y109{bottom:167.373040pt;}
.yab{bottom:171.044400pt;}
.y162{bottom:171.262667pt;}
.y11f{bottom:171.428000pt;}
.y12d{bottom:172.556533pt;}
.y19a{bottom:175.489867pt;}
.yf2{bottom:177.933067pt;}
.y13c{bottom:178.440933pt;}
.y111{bottom:179.777333pt;}
.y5e{bottom:179.941600pt;}
.y125{bottom:180.289867pt;}
.y93{bottom:180.301867pt;}
.y16f{bottom:181.012800pt;}
.y151{bottom:181.297867pt;}
.ye5{bottom:181.780533pt;}
.ye9{bottom:181.916667pt;}
.y2f{bottom:181.982494pt;}
.y7c{bottom:183.454533pt;}
.y17e{bottom:183.750533pt;}
.y86{bottom:183.952933pt;}
.y34{bottom:184.854933pt;}
.y9b{bottom:187.774000pt;}
.y104{bottom:188.148693pt;}
.y23{bottom:188.849733pt;}
.y156{bottom:189.136133pt;}
.y4c{bottom:194.618267pt;}
.yd3{bottom:195.483867pt;}
.y119{bottom:197.719600pt;}
.y41{bottom:197.994248pt;}
.y52{bottom:198.681067pt;}
.yaa{bottom:198.998133pt;}
.y13{bottom:200.996000pt;}
.y2{bottom:201.355600pt;}
.y196{bottom:203.041467pt;}
.y92{bottom:206.701867pt;}
.yf1{bottom:208.599733pt;}
.y18b{bottom:210.257733pt;}
.y7b{bottom:212.254533pt;}
.ye4{bottom:212.447200pt;}
.y85{bottom:212.752933pt;}
.y16d{bottom:214.046667pt;}
.y9a{bottom:214.174000pt;}
.y27{bottom:214.364667pt;}
.y161{bottom:214.462667pt;}
.y12c{bottom:214.465467pt;}
.y155{bottom:217.089867pt;}
.y103{bottom:217.196960pt;}
.y67{bottom:217.777467pt;}
.y3d{bottom:218.098000pt;}
.y11e{bottom:218.779600pt;}
.y118{bottom:220.574000pt;}
.y150{bottom:221.038133pt;}
.y192{bottom:221.089867pt;}
.y12b{bottom:221.623200pt;}
.y199{bottom:222.956533pt;}
.y90{bottom:223.433867pt;}
.y16e{bottom:224.212800pt;}
.yc8{bottom:225.089867pt;}
.y17d{bottom:225.350533pt;}
.y4b{bottom:226.618267pt;}
.yd2{bottom:227.750533pt;}
.y124{bottom:232.336133pt;}
.ya9{bottom:235.798133pt;}
.y175{bottom:239.572133pt;}
.y16{bottom:239.901200pt;}
.y99{bottom:240.574000pt;}
.y7a{bottom:241.054533pt;}
.y84{bottom:241.552933pt;}
.yf9{bottom:248.381600pt;}
.y3c{bottom:251.831333pt;}
.y14f{bottom:251.964533pt;}
.y1a{bottom:252.372400pt;}
.ydc{bottom:254.190667pt;}
.y102{bottom:254.263627pt;}
.y66{bottom:254.577467pt;}
.y78{bottom:255.259467pt;}
.y98{bottom:255.824800pt;}
.y19e{bottom:256.941200pt;}
.y16c{bottom:257.246667pt;}
.y160{bottom:257.402800pt;}
.y13b{bottom:258.650933pt;}
.yf0{bottom:259.266400pt;}
.yd1{bottom:260.017200pt;}
.y123{bottom:260.289867pt;}
.ye3{bottom:260.523467pt;}
.y4a{bottom:263.279467pt;}
.yec{bottom:264.243733pt;}
.y191{bottom:264.289867pt;}
.yb2{bottom:264.317067pt;}
.y11d{bottom:264.512933pt;}
.yb4{bottom:264.633867pt;}
.y12a{bottom:264.823200pt;}
.y17c{bottom:266.950533pt;}
.y137{bottom:268.324667pt;}
.y198{bottom:270.423200pt;}
.y117{bottom:270.707333pt;}
.y31{bottom:270.939709pt;}
.ya8{bottom:272.598133pt;}
.y18a{bottom:273.317467pt;}
.y187{bottom:278.650800pt;}
.y8d{bottom:278.814267pt;}
.y83{bottom:279.314267pt;}
.yc7{bottom:281.587333pt;}
.y22{bottom:284.849733pt;}
.y3b{bottom:285.564667pt;}
.y30{bottom:286.099282pt;}
.yef{bottom:289.933067pt;}
.ye{bottom:290.170667pt;}
.y114{bottom:290.562667pt;}
.ye2{bottom:291.190133pt;}
.y65{bottom:291.377467pt;}
.y14e{bottom:291.964533pt;}
.yd0{bottom:293.617200pt;}
.y146{bottom:293.878533pt;}
.y15f{bottom:294.462667pt;}
.ydb{bottom:295.027200pt;}
.y2a{bottom:295.831333pt;}
.y143{bottom:299.680533pt;}
.y16b{bottom:300.602800pt;}
.y44{bottom:302.567600pt;}
.y122{bottom:303.489867pt;}
.ya2{bottom:303.578800pt;}
.y129{bottom:306.732133pt;}
.y42{bottom:306.910400pt;}
.y190{bottom:307.489867pt;}
.y17b{bottom:308.550533pt;}
.y11c{bottom:310.246267pt;}
.y8c{bottom:310.814267pt;}
.y82{bottom:311.314267pt;}
.y195{bottom:312.374800pt;}
.yf7{bottom:312.524133pt;}
.y159{bottom:313.204800pt;}
.y128{bottom:313.889867pt;}
.y21{bottom:316.849733pt;}
.y47{bottom:317.652933pt;}
.yc6{bottom:317.889867pt;}
.ya7{bottom:318.244400pt;}
.y3a{bottom:319.298000pt;}
.y116{bottom:320.840667pt;}
.y15{bottom:325.767867pt;}
.ycf{bottom:325.883867pt;}
.y64{bottom:328.177467pt;}
.yd{bottom:328.837333pt;}
.ya1{bottom:329.978800pt;}
.y189{bottom:331.448267pt;}
.y14d{bottom:331.964533pt;}
.yde{bottom:332.323333pt;}
.y74{bottom:334.290400pt;}
.y100{bottom:334.328933pt;}
.y2c{bottom:336.098000pt;}
.yf4{bottom:336.599733pt;}
.y16a{bottom:337.246667pt;}
.y15e{bottom:337.662667pt;}
.y3e{bottom:338.666667pt;}
.ye7{bottom:339.266400pt;}
.y13a{bottom:339.611867pt;}
.yda{bottom:340.760533pt;}
.yd8{bottom:341.182267pt;}
.y11b{bottom:342.361333pt;}
.y8b{bottom:342.814267pt;}
.y81{bottom:343.314267pt;}
.y8e{bottom:344.779200pt;}
.y145{bottom:344.852000pt;}
.y18{bottom:345.218667pt;}
.y139{bottom:345.439067pt;}
.yeb{bottom:346.639467pt;}
.y46{bottom:349.652933pt;}
.y17a{bottom:350.150533pt;}
.y14b{bottom:350.846800pt;}
.y188{bottom:354.248267pt;}
.ya6{bottom:355.044400pt;}
.ya0{bottom:356.378800pt;}
.yb6{bottom:357.382800pt;}
.yce{bottom:358.150533pt;}
.y63{bottom:361.910800pt;}
.y179{bottom:363.422267pt;}
.y121{bottom:364.642533pt;}
.yd4{bottom:365.085333pt;}
.yb1{bottom:366.994133pt;}
.y194{bottom:367.041467pt;}
.yf3{bottom:367.266400pt;}
.yc{bottom:367.504000pt;}
.y18f{bottom:368.642533pt;}
.yc5{bottom:368.797467pt;}
.ye6{bottom:369.933067pt;}
.y14c{bottom:371.964533pt;}
.y9f{bottom:372.320667pt;}
.y1a0{bottom:373.425600pt;}
.y19d{bottom:374.274533pt;}
.y115{bottom:374.345200pt;}
.y157{bottom:376.172800pt;}
.y15d{bottom:382.736133pt;}
.ya4{bottom:384.789200pt;}
.y17{bottom:385.085333pt;}
.y130{bottom:385.345200pt;}
.y45{bottom:386.743333pt;}
.yff{bottom:387.778667pt;}
.yd9{bottom:388.112133pt;}
.y110{bottom:389.205600pt;}
.y178{bottom:391.376000pt;}
.ycd{bottom:391.750533pt;}
.y11a{bottom:392.246267pt;}
.y79{bottom:393.600933pt;}
.yb{bottom:398.170667pt;}
.ya3{bottom:407.455867pt;}
.y144{bottom:408.154000pt;}
.y14{bottom:411.634533pt;}
.y193{bottom:421.708133pt;}
.y6{bottom:426.864533pt;}
.ya5{bottom:428.794800pt;}
.ya{bottom:428.837333pt;}
.y181{bottom:429.364000pt;}
.y177{bottom:434.576000pt;}
.yc3{bottom:451.048800pt;}
.y5{bottom:457.531200pt;}
.y1d{bottom:459.265200pt;}
.y19{bottom:473.019600pt;}
.y197{bottom:475.686267pt;}
.y4{bottom:488.197867pt;}
.yb7{bottom:514.622133pt;}
.h5c{height:14.218750pt;}
.h20{height:14.400000pt;}
.h21{height:21.600000pt;}
.h65{height:22.933333pt;}
.h74{height:23.392000pt;}
.h25{height:23.486299pt;}
.h70{height:26.933333pt;}
.h2b{height:27.290667pt;}
.h10{height:27.328000pt;}
.h23{height:30.880134pt;}
.h17{height:30.930350pt;}
.h66{height:31.232000pt;}
.h6b{height:33.560693pt;}
.h43{height:33.843750pt;}
.h2a{height:34.800000pt;}
.h2e{height:35.136000pt;}
.h15{height:37.539400pt;}
.h42{height:38.933333pt;}
.h7{height:39.040000pt;}
.h69{height:39.146667pt;}
.h39{height:40.074693pt;}
.h50{height:44.352000pt;}
.h1d{height:45.251331pt;}
.h2c{height:45.600000pt;}
.h12{height:45.750693pt;}
.h6c{height:45.760000pt;}
.h1{height:46.784000pt;}
.hf{height:49.280000pt;}
.h29{height:50.682667pt;}
.h5f{height:51.328000pt;}
.h76{height:52.416000pt;}
.h35{height:52.416003pt;}
.h26{height:52.626708pt;}
.h32{height:52.662400pt;}
.h33{height:52.662453pt;}
.h27{height:52.670201pt;}
.h5d{height:54.581333pt;}
.he{height:54.656000pt;}
.h30{height:54.805333pt;}
.h3a{height:56.406250pt;}
.h6e{height:56.448000pt;}
.h71{height:57.440000pt;}
.h5a{height:57.493333pt;}
.h4b{height:58.000187pt;}
.h24{height:58.063351pt;}
.h4d{height:58.469560pt;}
.h48{height:60.861867pt;}
.h62{height:61.600000pt;}
.h2f{height:61.610667pt;}
.h11{height:62.464000pt;}
.h31{height:62.634667pt;}
.h51{height:62.809213pt;}
.h38{height:63.400960pt;}
.h36{height:65.387373pt;}
.h61{height:65.706667pt;}
.h49{height:66.368000pt;}
.h58{height:69.232533pt;}
.h64{height:69.232640pt;}
.h63{height:69.233067pt;}
.h5e{height:69.278400pt;}
.h40{height:69.312000pt;}
.h9{height:70.176000pt;}
.ha{height:70.272000pt;}
.h4{height:70.464000pt;}
.h16{height:70.584646pt;}
.h1b{height:70.666667pt;}
.h6a{height:70.896533pt;}
.h34{height:71.257067pt;}
.h1f{height:72.576000pt;}
.h44{height:72.656213pt;}
.h53{height:72.938667pt;}
.h45{height:73.066667pt;}
.h6d{height:74.733707pt;}
.h1e{height:75.698720pt;}
.h13{height:76.417360pt;}
.h18{height:76.442707pt;}
.h5{height:77.952000pt;}
.h47{height:78.080000pt;}
.h3e{height:78.299693pt;}
.h28{height:78.894027pt;}
.h3c{height:78.933333pt;}
.h4c{height:79.808939pt;}
.h55{height:80.401920pt;}
.h4e{height:80.454794pt;}
.h57{height:81.404160pt;}
.h4a{height:81.515520pt;}
.h41{height:82.550693pt;}
.h6{height:84.245333pt;}
.h68{height:85.600000pt;}
.h4f{height:85.866667pt;}
.h52{height:91.066667pt;}
.h67{height:91.698720pt;}
.h3b{height:92.416000pt;}
.h6f{height:92.455693pt;}
.h2d{height:93.283413pt;}
.h2{height:95.733333pt;}
.hc{height:100.800000pt;}
.h3f{height:107.741303pt;}
.h3d{height:108.613204pt;}
.h75{height:109.610667pt;}
.hb{height:110.114583pt;}
.h1a{height:116.284027pt;}
.h8{height:121.354667pt;}
.h5b{height:128.400000pt;}
.hd{height:137.718750pt;}
.h37{height:140.145833pt;}
.h60{height:141.880800pt;}
.h59{height:150.936000pt;}
.h19{height:160.166667pt;}
.h72{height:170.177083pt;}
.h46{height:180.187500pt;}
.h56{height:199.029733pt;}
.h73{height:200.208333pt;}
.h22{height:225.555867pt;}
.h3{height:240.250000pt;}
.h1c{height:272.315333pt;}
.h54{height:287.538667pt;}
.h14{height:300.735067pt;}
.h0{height:540.000000pt;}
.w35{width:20.842027pt;}
.w20{width:39.073360pt;}
.w1d{width:57.962693pt;}
.w26{width:58.000187pt;}
.w27{width:58.469560pt;}
.w3{width:73.094693pt;}
.w22{width:74.969373pt;}
.w2{width:75.841360pt;}
.w1f{width:78.299693pt;}
.w1e{width:78.933333pt;}
.w5{width:93.889360pt;}
.w4{width:97.585360pt;}
.w7{width:103.729360pt;}
.w6{width:105.457360pt;}
.w8{width:129.649360pt;}
.w25{width:160.633333pt;}
.w18{width:173.292400pt;}
.w10{width:174.752000pt;}
.w2a{width:177.333333pt;}
.w17{width:177.835733pt;}
.w19{width:189.672533pt;}
.w16{width:194.324267pt;}
.w21{width:194.918667pt;}
.w11{width:200.913333pt;}
.w1b{width:202.575067pt;}
.w31{width:204.202667pt;}
.w33{width:208.282000pt;}
.w15{width:213.364400pt;}
.wf{width:219.719867pt;}
.w2d{width:221.810533pt;}
.w13{width:229.165333pt;}
.w2c{width:240.766800pt;}
.w38{width:242.533333pt;}
.w1a{width:243.346533pt;}
.w1c{width:246.528400pt;}
.w24{width:248.041333pt;}
.w14{width:249.010267pt;}
.w12{width:254.664533pt;}
.w32{width:255.114667pt;}
.we{width:255.342933pt;}
.w2b{width:261.299467pt;}
.wa{width:262.020133pt;}
.w2e{width:274.830800pt;}
.w30{width:276.221467pt;}
.w2f{width:286.288800pt;}
.w9{width:301.403067pt;}
.wc{width:306.666667pt;}
.w28{width:318.874133pt;}
.w36{width:319.594400pt;}
.w29{width:324.006667pt;}
.wb{width:360.491467pt;}
.w37{width:365.406667pt;}
.w1{width:418.355733pt;}
.w34{width:428.792133pt;}
.wd{width:435.171733pt;}
.w23{width:578.890133pt;}
.w0{width:960.000000pt;}
.x20{left:-289.957118pt;}
.x36{left:-231.223337pt;}
.x2a{left:-175.416050pt;}
.x57{left:-21.491798pt;}
.x55{left:-16.501404pt;}
.x6a{left:-12.223349pt;}
.x0{left:0.000000pt;}
.x30{left:2.932933pt;}
.x28{left:5.361333pt;}
.x52{left:6.704000pt;}
.x18{left:8.208667pt;}
.x4b{left:10.693600pt;}
.x24{left:12.221333pt;}
.x60{left:13.749021pt;}
.x1a{left:16.248800pt;}
.x49{left:18.341067pt;}
.x84{left:22.112733pt;}
.x11{left:23.672440pt;}
.x31{left:25.207893pt;}
.x42{left:26.620800pt;}
.x8a{left:27.840733pt;}
.x29{left:29.096867pt;}
.x5f{left:30.215907pt;}
.x12{left:31.834560pt;}
.x76{left:32.805067pt;}
.x22{left:34.639893pt;}
.x73{left:35.967893pt;}
.x15{left:41.882933pt;}
.x4d{left:48.148800pt;}
.x3{left:49.211200pt;}
.x4{left:50.545013pt;}
.x90{left:51.785067pt;}
.x10{left:52.800000pt;}
.x45{left:54.463733pt;}
.x7a{left:56.061213pt;}
.xa{left:57.851267pt;}
.x3a{left:58.931120pt;}
.x3c{left:61.221507pt;}
.x2d{left:63.159413pt;}
.x64{left:65.956373pt;}
.x54{left:68.875680pt;}
.x61{left:70.067147pt;}
.x46{left:72.136680pt;}
.x2{left:74.361893pt;}
.x65{left:78.587947pt;}
.x96{left:82.724253pt;}
.x2e{left:86.349267pt;}
.x70{left:94.946653pt;}
.x7b{left:96.061213pt;}
.x78{left:97.433147pt;}
.x3b{left:98.931120pt;}
.x13{left:101.195040pt;}
.x7c{left:102.467147pt;}
.x8{left:106.862400pt;}
.x9f{left:109.924227pt;}
.x62{left:118.067147pt;}
.xe{left:121.955507pt;}
.x27{left:133.333333pt;}
.x26{left:138.694667pt;}
.xb{left:146.821867pt;}
.xc{left:165.769200pt;}
.xf{left:174.726000pt;}
.x8e{left:176.252133pt;}
.x6{left:207.265600pt;}
.x58{left:223.596267pt;}
.x40{left:240.876533pt;}
.x91{left:251.673333pt;}
.x5c{left:261.032000pt;}
.x53{left:266.427333pt;}
.x37{left:275.088034pt;}
.x38{left:282.745923pt;}
.x5{left:291.521600pt;}
.x21{left:309.041515pt;}
.x7{left:312.121600pt;}
.x7f{left:315.272133pt;}
.x56{left:323.333600pt;}
.x9{left:335.406667pt;}
.x16{left:348.866133pt;}
.x1{left:377.769200pt;}
.x34{left:398.009333pt;}
.x75{left:400.322400pt;}
.x39{left:401.584533pt;}
.x6b{left:402.946667pt;}
.x66{left:416.440267pt;}
.xa1{left:430.786667pt;}
.x8c{left:433.570533pt;}
.x51{left:438.732800pt;}
.x92{left:442.187333pt;}
.x67{left:451.072267pt;}
.x8d{left:452.237200pt;}
.x59{left:461.528667pt;}
.x43{left:469.183467pt;}
.x98{left:471.602000pt;}
.x3e{left:485.081200pt;}
.x3f{left:486.759200pt;}
.x63{left:488.222800pt;}
.x79{left:489.758800pt;}
.x14{left:496.222800pt;}
.x5d{left:500.887733pt;}
.x35{left:504.366943pt;}
.x7d{left:505.859200pt;}
.x89{left:511.096800pt;}
.x23{left:514.148533pt;}
.x25{left:533.297067pt;}
.x7e{left:538.259200pt;}
.x72{left:539.678133pt;}
.x41{left:544.697067pt;}
.x85{left:545.604667pt;}
.x32{left:556.708800pt;}
.x97{left:565.972400pt;}
.x93{left:568.092533pt;}
.x2f{left:571.562400pt;}
.x71{left:594.679333pt;}
.x1f{left:604.984047pt;}
.x5b{left:606.978933pt;}
.x47{left:609.882667pt;}
.x1b{left:613.881867pt;}
.x8f{left:614.882533pt;}
.x9d{left:616.360000pt;}
.xa0{left:618.627067pt;}
.x6f{left:619.532800pt;}
.x44{left:623.628933pt;}
.x2b{left:634.060933pt;}
.x6d{left:641.660133pt;}
.x4e{left:657.910400pt;}
.x33{left:661.466667pt;}
.x94{left:663.568000pt;}
.x8b{left:665.825200pt;}
.x6c{left:667.085600pt;}
.x2c{left:668.672533pt;}
.x80{left:671.328800pt;}
.x83{left:678.403333pt;}
.x6e{left:679.868267pt;}
.x77{left:684.895067pt;}
.x4a{left:686.756667pt;}
.x74{left:688.015733pt;}
.x95{left:695.968000pt;}
.x4f{left:697.450267pt;}
.x5a{left:699.461200pt;}
.x86{left:704.417200pt;}
.x9e{left:712.360000pt;}
.x19{left:715.535733pt;}
.x9a{left:716.506533pt;}
.x82{left:717.748000pt;}
.x3d{left:718.925333pt;}
.x4c{left:725.023600pt;}
.x87{left:729.462000pt;}
.x68{left:730.390667pt;}
.x88{left:732.462000pt;}
.x5e{left:734.894667pt;}
.xd{left:739.030667pt;}
.x48{left:744.125333pt;}
.x99{left:755.306533pt;}
.x1d{left:781.253067pt;}
.x9b{left:794.709467pt;}
.x1c{left:797.653200pt;}
.x1e{left:819.143733pt;}
.x69{left:828.926800pt;}
.x17{left:831.239867pt;}
.x9c{left:834.512533pt;}
.x81{left:851.625867pt;}
.x50{left:940.818400pt;}
}




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