
    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_c672cc3637afcaa02f370415.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_6c661614540389775271d171.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_c37a409ce0d378ed677c8054.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1aec5a6fbd8ad7ada8acc2c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734863;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_e60848832a7fd513f64aa2f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_85705749428dd4d28f2651ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_7f6e76493935a59f0b584dcc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3bd5a171f3fadb46b63d7e83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734863;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.fff{font-family:fff;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.944000;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_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_5a035d2ce6722527668b3b5f.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.944000;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;}
.m9{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.226993,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.226993,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.226993,0.000000,-0.064705,0.241481,0,0);}
.m7{transform:matrix(0.231822,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.231822,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.231822,0.000000,-0.064705,0.241481,0,0);}
.m5{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.240315,0.000000,-0.068910,0.240315,0,0);-ms-transform:matrix(0.240315,0.000000,-0.068910,0.240315,0,0);-webkit-transform:matrix(0.240315,0.000000,-0.068910,0.240315,0,0);}
.m2{transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);-ms-transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);-webkit-transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);}
.m6{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v4{vertical-align:-3.144000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.000000px;}
.v6{vertical-align:31.608600px;}
.v3{vertical-align:33.000000px;}
.v7{vertical-align:66.000000px;}
.v2{vertical-align:121.420800px;}
.v1{vertical-align:123.952200px;}
.ls5{letter-spacing:-4.032000px;}
.ls3e{letter-spacing:-3.840000px;}
.ls45{letter-spacing:-3.660000px;}
.ls4d{letter-spacing:-3.600000px;}
.lsd{letter-spacing:-3.360000px;}
.ls26{letter-spacing:-3.240000px;}
.ls4c{letter-spacing:-3.000000px;}
.ls47{letter-spacing:-2.940000px;}
.ls14{letter-spacing:-2.400000px;}
.ls4b{letter-spacing:-2.360430px;}
.ls10{letter-spacing:-2.340000px;}
.ls24{letter-spacing:-2.280000px;}
.ls36{letter-spacing:-2.160000px;}
.ls52{letter-spacing:-2.100000px;}
.ls1f{letter-spacing:-2.049847px;}
.ls40{letter-spacing:-2.040000px;}
.ls4a{letter-spacing:-1.925614px;}
.ls1c{letter-spacing:-1.860000px;}
.ls3b{letter-spacing:-1.800000px;}
.ls22{letter-spacing:-1.740000px;}
.ls31{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.560000px;}
.ls50{letter-spacing:-1.500000px;}
.ls1e{letter-spacing:-1.320000px;}
.ls49{letter-spacing:-1.260000px;}
.lse{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.020000px;}
.ls27{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.780000px;}
.ls42{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.336000px;}
.ls23{letter-spacing:-0.300000px;}
.ls28{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.180000px;}
.ls53{letter-spacing:-0.124233px;}
.ls35{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.120000px;}
.ls43{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.270000px;}
.ls29{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.343299px;}
.ls3d{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.432000px;}
.ls46{letter-spacing:0.434816px;}
.ls11{letter-spacing:0.480000px;}
.ls3f{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.660000px;}
.ls33{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.900000px;}
.ls44{letter-spacing:0.960000px;}
.ls39{letter-spacing:1.020000px;}
.ls3c{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.200000px;}
.ls34{letter-spacing:1.260000px;}
.ls48{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.560000px;}
.ls1{letter-spacing:80.773800px;}
.ls20{letter-spacing:306.180000px;}
.ls51{letter-spacing:474.180000px;}
.ls4e{letter-spacing:484.314000px;}
.ls4f{letter-spacing:486.180000px;}
.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:-21.600000px;}
.ws9{word-spacing:-16.800000px;}
.ws61{word-spacing:-12.780000px;}
.wse8{word-spacing:-12.600000px;}
.wsff{word-spacing:-12.540000px;}
.ws93{word-spacing:-12.480000px;}
.wsd8{word-spacing:-12.420000px;}
.ws15b{word-spacing:-12.360000px;}
.ws59{word-spacing:-12.300000px;}
.ws162{word-spacing:-12.240000px;}
.ws137{word-spacing:-12.180000px;}
.ws85{word-spacing:-12.060000px;}
.ws2f{word-spacing:-12.000000px;}
.wsea{word-spacing:-11.940000px;}
.ws77{word-spacing:-11.880000px;}
.ws8c{word-spacing:-11.820000px;}
.ws144{word-spacing:-11.760000px;}
.ws42{word-spacing:-11.700000px;}
.ws6e{word-spacing:-11.520000px;}
.ws167{word-spacing:-11.340000px;}
.wse6{word-spacing:-11.280000px;}
.ws19{word-spacing:-11.070000px;}
.wsa4{word-spacing:-11.040000px;}
.ws15f{word-spacing:-10.980000px;}
.ws12{word-spacing:-10.854000px;}
.wsf{word-spacing:-10.800000px;}
.ws1f{word-spacing:-10.746000px;}
.wsee{word-spacing:-10.680000px;}
.ws171{word-spacing:-10.500000px;}
.ws16f{word-spacing:-10.200000px;}
.wsf3{word-spacing:-10.062887px;}
.ws175{word-spacing:-9.900000px;}
.ws50{word-spacing:-9.720000px;}
.wse2{word-spacing:-9.060000px;}
.ws3a{word-spacing:-8.760000px;}
.wsf2{word-spacing:-8.340000px;}
.wsa8{word-spacing:-8.160000px;}
.ws2a{word-spacing:-0.660000px;}
.ws172{word-spacing:-0.600000px;}
.wsf4{word-spacing:-0.559049px;}
.ws21{word-spacing:-0.480000px;}
.ws2e{word-spacing:-0.434816px;}
.wsd{word-spacing:-0.432000px;}
.ws16c{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.343299px;}
.wse{word-spacing:-0.324000px;}
.wsc{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.120000px;}
.ws15c{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws176{word-spacing:0.124233px;}
.ws173{word-spacing:0.180000px;}
.wsb{word-spacing:0.216000px;}
.wse0{word-spacing:0.240000px;}
.ws3{word-spacing:0.336000px;}
.ws6{word-spacing:0.420000px;}
.ws1{word-spacing:0.432000px;}
.ws24{word-spacing:0.480000px;}
.ws7{word-spacing:0.504000px;}
.ws2c{word-spacing:0.780000px;}
.ws29{word-spacing:0.900000px;}
.ws26{word-spacing:1.020000px;}
.ws23{word-spacing:1.140000px;}
.ws28{word-spacing:1.200000px;}
.ws2d{word-spacing:1.320000px;}
.ws25{word-spacing:1.560000px;}
.ws2b{word-spacing:1.860000px;}
.ws5{word-spacing:4.032000px;}
.ws31{word-spacing:55.926600px;}
.ws30{word-spacing:62.309400px;}
.ws96{word-spacing:69.540000px;}
.ws95{word-spacing:73.380000px;}
.ws98{word-spacing:73.680000px;}
.wsdf{word-spacing:113.028000px;}
.wsb3{word-spacing:118.836000px;}
.wsbf{word-spacing:119.796000px;}
.wsc5{word-spacing:121.050000px;}
.ws9e{word-spacing:122.646000px;}
.wsad{word-spacing:123.516000px;}
.wsd2{word-spacing:123.864000px;}
.wsce{word-spacing:124.158000px;}
.wsd7{word-spacing:125.058000px;}
.wsca{word-spacing:125.136000px;}
.wsb9{word-spacing:126.588000px;}
.ws97{word-spacing:127.800000px;}
.ws7e{word-spacing:128.590800px;}
.wsa3{word-spacing:128.736000px;}
.wsa7{word-spacing:128.970000px;}
.ws12d{word-spacing:154.321200px;}
.wsb1{word-spacing:155.970000px;}
.wsbd{word-spacing:156.702000px;}
.wsc3{word-spacing:157.284000px;}
.wsfc{word-spacing:158.402400px;}
.ws101{word-spacing:159.883200px;}
.ws9c{word-spacing:160.122000px;}
.wsfb{word-spacing:160.867200px;}
.ws106{word-spacing:161.281200px;}
.ws113{word-spacing:161.521200px;}
.wsc9{word-spacing:162.198000px;}
.ws10a{word-spacing:162.421200px;}
.ws115{word-spacing:163.286400px;}
.wsdd{word-spacing:163.296000px;}
.wsc4{word-spacing:163.878000px;}
.ws11c{word-spacing:164.641200px;}
.wsbe{word-spacing:164.970000px;}
.wsf7{word-spacing:165.511200px;}
.ws118{word-spacing:166.399200px;}
.ws6f{word-spacing:166.714800px;}
.ws124{word-spacing:168.241200px;}
.ws11f{word-spacing:173.803200px;}
.ws130{word-spacing:175.083600px;}
.ws8f{word-spacing:175.476000px;}
.ws12e{word-spacing:175.886400px;}
.wscf{word-spacing:176.766000px;}
.ws129{word-spacing:176.863200px;}
.ws12f{word-spacing:177.716400px;}
.wsc1{word-spacing:177.930000px;}
.ws92{word-spacing:178.134000px;}
.ws10f{word-spacing:178.627200px;}
.wsc7{word-spacing:179.118000px;}
.ws80{word-spacing:179.334000px;}
.ws88{word-spacing:179.484000px;}
.wsaf{word-spacing:180.348000px;}
.wsb5{word-spacing:180.774000px;}
.ws7a{word-spacing:181.272000px;}
.ws64{word-spacing:181.734000px;}
.wsaa{word-spacing:181.866000px;}
.ws72{word-spacing:182.244000px;}
.ws4b{word-spacing:182.910000px;}
.wsfe{word-spacing:183.027600px;}
.ws108{word-spacing:183.075600px;}
.wsdb{word-spacing:183.084000px;}
.ws54{word-spacing:183.504000px;}
.ws5d{word-spacing:183.690000px;}
.ws122{word-spacing:183.843600px;}
.ws10c{word-spacing:183.968400px;}
.ws3e{word-spacing:184.062000px;}
.ws44{word-spacing:184.134000px;}
.ws48{word-spacing:184.272000px;}
.ws15d{word-spacing:184.374000px;}
.ws6a{word-spacing:184.530000px;}
.ws10b{word-spacing:184.688400px;}
.ws107{word-spacing:184.904400px;}
.ws12b{word-spacing:185.048400px;}
.ws116{word-spacing:185.349600px;}
.ws127{word-spacing:185.553600px;}
.ws60{word-spacing:185.724000px;}
.wsfa{word-spacing:185.895600px;}
.ws125{word-spacing:185.984400px;}
.ws11b{word-spacing:186.051600px;}
.wsf8{word-spacing:186.080400px;}
.ws76{word-spacing:186.126000px;}
.ws119{word-spacing:186.440400px;}
.ws120{word-spacing:186.524400px;}
.wsb7{word-spacing:186.570000px;}
.ws4f{word-spacing:186.600000px;}
.ws41{word-spacing:187.050000px;}
.ws126{word-spacing:187.076400px;}
.ws68{word-spacing:187.206000px;}
.ws103{word-spacing:187.340400px;}
.wsf9{word-spacing:187.454400px;}
.ws111{word-spacing:187.664400px;}
.ws114{word-spacing:187.892400px;}
.ws121{word-spacing:188.264400px;}
.ws102{word-spacing:188.378400px;}
.wsa0{word-spacing:188.694000px;}
.ws110{word-spacing:188.852400px;}
.wsde{word-spacing:189.108000px;}
.wsa2{word-spacing:189.210000px;}
.ws84{word-spacing:189.546000px;}
.wsa6{word-spacing:189.570000px;}
.wsb8{word-spacing:189.618000px;}
.wsa1{word-spacing:190.032000px;}
.wscd{word-spacing:190.374000px;}
.ws35{word-spacing:190.494000px;}
.wsd6{word-spacing:190.830000px;}
.ws91{word-spacing:191.484000px;}
.ws104{word-spacing:191.559600px;}
.ws10d{word-spacing:191.985600px;}
.wsd1{word-spacing:192.318000px;}
.ws9d{word-spacing:193.260000px;}
.ws4{word-spacing:194.208000px;}
.ws12a{word-spacing:194.252400px;}
.wsfd{word-spacing:194.546400px;}
.ws2{word-spacing:194.712000px;}
.ws12c{word-spacing:195.012000px;}
.ws39{word-spacing:195.312000px;}
.ws6d{word-spacing:196.560000px;}
.ws58{word-spacing:196.734000px;}
.ws9a{word-spacing:197.526000px;}
.wsb2{word-spacing:198.636000px;}
.ws11a{word-spacing:199.538400px;}
.wsac{word-spacing:202.482000px;}
.ws57{word-spacing:202.968000px;}
.ws47{word-spacing:203.910000px;}
.ws83{word-spacing:205.926000px;}
.ws75{word-spacing:205.980000px;}
.ws7d{word-spacing:206.328000px;}
.ws67{word-spacing:206.526000px;}
.ws8b{word-spacing:207.006000px;}
.ws6c{word-spacing:207.066000px;}
.ws38{word-spacing:210.078000px;}
.ws4e{word-spacing:211.800000px;}
.wsd4{word-spacing:211.824000px;}
.wsbb{word-spacing:213.054000px;}
.ws5f{word-spacing:214.236000px;}
.wscc{word-spacing:220.350000px;}
.ws8e{word-spacing:223.644000px;}
.ws10e{word-spacing:228.942000px;}
.ws112{word-spacing:230.772000px;}
.ws105{word-spacing:231.072000px;}
.ws109{word-spacing:231.150000px;}
.ws5c{word-spacing:231.174000px;}
.ws43{word-spacing:231.300000px;}
.ws3d{word-spacing:231.690000px;}
.ws11e{word-spacing:232.410000px;}
.ws63{word-spacing:232.542000px;}
.ws87{word-spacing:232.782000px;}
.ws73{word-spacing:232.968000px;}
.ws65{word-spacing:233.016000px;}
.wsf6{word-spacing:233.280000px;}
.ws69{word-spacing:233.598000px;}
.ws100{word-spacing:234.636000px;}
.ws6b{word-spacing:235.050000px;}
.ws4a{word-spacing:235.290000px;}
.ws53{word-spacing:235.380000px;}
.ws128{word-spacing:235.482000px;}
.ws4c{word-spacing:235.614000px;}
.ws81{word-spacing:236.574000px;}
.ws90{word-spacing:236.604000px;}
.ws7b{word-spacing:236.928000px;}
.ws5e{word-spacing:236.958000px;}
.ws89{word-spacing:237.126000px;}
.ws36{word-spacing:237.198000px;}
.ws34{word-spacing:237.366000px;}
.ws55{word-spacing:237.564000px;}
.ws45{word-spacing:237.876000px;}
.ws3f{word-spacing:238.032000px;}
.ws117{word-spacing:239.232000px;}
.ws79{word-spacing:241.698000px;}
.ws123{word-spacing:242.790000px;}
.ws8a{word-spacing:245.436000px;}
.ws82{word-spacing:246.126000px;}
.ws46{word-spacing:246.630000px;}
.ws74{word-spacing:247.182000px;}
.ws4d{word-spacing:247.698000px;}
.ws56{word-spacing:248.220000px;}
.ws66{word-spacing:248.298000px;}
.ws7c{word-spacing:248.760000px;}
.ws8d{word-spacing:253.252800px;}
.ws37{word-spacing:257.340000px;}
.ws32{word-spacing:258.352800px;}
.ws51{word-spacing:259.864800px;}
.ws62{word-spacing:260.580000px;}
.ws40{word-spacing:261.234000px;}
.ws86{word-spacing:261.300000px;}
.ws7f{word-spacing:262.020000px;}
.ws5b{word-spacing:262.920000px;}
.ws3b{word-spacing:263.212800px;}
.ws33{word-spacing:264.540000px;}
.ws70{word-spacing:264.720000px;}
.ws52{word-spacing:265.080000px;}
.ws71{word-spacing:265.800000px;}
.ws49{word-spacing:266.160000px;}
.ws3c{word-spacing:267.240000px;}
.ws78{word-spacing:268.320000px;}
.ws5a{word-spacing:272.338800px;}
.ws16e{word-spacing:290.766000px;}
.ws16{word-spacing:317.658600px;}
.ws1b{word-spacing:334.150200px;}
.wsf1{word-spacing:336.438000px;}
.ws10{word-spacing:339.150000px;}
.wsd5{word-spacing:347.418000px;}
.ws9b{word-spacing:351.504000px;}
.wsda{word-spacing:363.744000px;}
.ws16d{word-spacing:364.560000px;}
.wsc8{word-spacing:364.728000px;}
.ws11{word-spacing:371.331000px;}
.wsdc{word-spacing:371.358000px;}
.ws159{word-spacing:375.829200px;}
.wsf0{word-spacing:376.074000px;}
.wsef{word-spacing:377.112000px;}
.wseb{word-spacing:377.340000px;}
.wsb0{word-spacing:377.490000px;}
.wsc2{word-spacing:378.210000px;}
.ws17{word-spacing:378.444000px;}
.wsbc{word-spacing:381.468000px;}
.wsb6{word-spacing:382.032000px;}
.wse5{word-spacing:382.056000px;}
.wsab{word-spacing:382.506000px;}
.ws1d{word-spacing:385.779600px;}
.ws132{word-spacing:385.987200px;}
.ws15a{word-spacing:386.094000px;}
.ws13f{word-spacing:387.097200px;}
.wsd0{word-spacing:387.798000px;}
.ws14c{word-spacing:388.711200px;}
.wse9{word-spacing:389.880000px;}
.ws11d{word-spacing:390.292800px;}
.ws149{word-spacing:391.507200px;}
.ws14f{word-spacing:391.921200px;}
.ws14d{word-spacing:392.970000px;}
.ws155{word-spacing:393.409200px;}
.ws13a{word-spacing:394.482000px;}
.ws150{word-spacing:396.714000px;}
.ws143{word-spacing:396.942000px;}
.ws13d{word-spacing:397.368000px;}
.ws140{word-spacing:397.956000px;}
.ws147{word-spacing:398.640000px;}
.ws146{word-spacing:399.001200px;}
.ws13c{word-spacing:400.147200px;}
.ws133{word-spacing:402.720000px;}
.ws139{word-spacing:403.297200px;}
.ws153{word-spacing:403.782000px;}
.ws14{word-spacing:403.944000px;}
.ws135{word-spacing:404.035200px;}
.ws14a{word-spacing:404.364000px;}
.ws156{word-spacing:405.096000px;}
.ws136{word-spacing:405.204000px;}
.wsb4{word-spacing:416.724000px;}
.wse7{word-spacing:417.762000px;}
.wsd3{word-spacing:419.550000px;}
.ws142{word-spacing:420.421200px;}
.wsba{word-spacing:420.504000px;}
.wsc0{word-spacing:420.636000px;}
.wsa9{word-spacing:420.966000px;}
.wsed{word-spacing:421.194000px;}
.wsae{word-spacing:421.410000px;}
.wse4{word-spacing:421.584000px;}
.wse3{word-spacing:421.752000px;}
.ws9f{word-spacing:421.932000px;}
.wscb{word-spacing:422.862000px;}
.wsec{word-spacing:423.558000px;}
.wsa5{word-spacing:423.942000px;}
.ws161{word-spacing:424.704000px;}
.ws170{word-spacing:426.570000px;}
.ws15e{word-spacing:427.488000px;}
.ws152{word-spacing:431.557200px;}
.ws174{word-spacing:433.800000px;}
.wse1{word-spacing:433.962000px;}
.ws99{word-spacing:434.424000px;}
.wsd9{word-spacing:442.560000px;}
.wsc6{word-spacing:450.480000px;}
.ws94{word-spacing:455.220000px;}
.ws158{word-spacing:527.758800px;}
.ws148{word-spacing:564.658800px;}
.ws141{word-spacing:565.444800px;}
.ws13b{word-spacing:565.468800px;}
.ws131{word-spacing:566.542800px;}
.ws134{word-spacing:566.896800px;}
.ws14e{word-spacing:567.658800px;}
.ws13e{word-spacing:567.778800px;}
.ws151{word-spacing:568.294800px;}
.ws138{word-spacing:571.156800px;}
.ws145{word-spacing:571.528800px;}
.ws22{word-spacing:572.220000px;}
.ws154{word-spacing:573.340800px;}
.ws16a{word-spacing:573.688800px;}
.ws14b{word-spacing:594.352800px;}
.ws157{word-spacing:619.252800px;}
.ws169{word-spacing:625.252800px;}
.wsf5{word-spacing:631.912800px;}
.ws1e{word-spacing:734.658600px;}
.ws18{word-spacing:751.150200px;}
.ws13{word-spacing:802.779600px;}
.ws1c{word-spacing:820.944000px;}
.ws16b{word-spacing:932.334000px;}
.ws166{word-spacing:1096.048800px;}
.ws160{word-spacing:1096.180800px;}
.ws164{word-spacing:1097.128800px;}
.ws168{word-spacing:1100.026800px;}
.ws163{word-spacing:1100.956800px;}
.ws165{word-spacing:1106.356800px;}
.ws1a{word-spacing:1177.158600px;}
.ws20{word-spacing:1193.650200px;}
.ws15{word-spacing:1245.279600px;}
._a8{margin-left:-3016.392474px;}
._4e{margin-left:-2995.966794px;}
._aa{margin-left:-1788.215661px;}
._8{margin-left:-195.074400px;}
._a9{margin-left:-158.339593px;}
._a{margin-left:-155.523000px;}
._9{margin-left:-85.688400px;}
._5{margin-left:-12.528000px;}
._3{margin-left:-10.800000px;}
._e{margin-left:-9.072000px;}
._7b{margin-left:-7.990557px;}
._2{margin-left:-6.396957px;}
._4c{margin-left:-4.894800px;}
._4{margin-left:-3.827043px;}
._0{margin-left:-2.496722px;}
._1{margin-left:-1.268400px;}
._7{width:1.828800px;}
._6{width:3.000722px;}
._10{width:4.844878px;}
._6c{width:6.205200px;}
._18{width:15.876000px;}
._d{width:31.266000px;}
._11{width:35.197922px;}
._b{width:41.526000px;}
._5a{width:51.180000px;}
._42{width:64.505052px;}
._a4{width:67.442400px;}
._5e{width:68.949000px;}
._5f{width:78.449522px;}
._65{width:83.500800px;}
._78{width:85.230008px;}
._1e{width:87.736800px;}
._6d{width:95.496722px;}
._57{width:98.367843px;}
._16{width:106.488000px;}
._13{width:110.664000px;}
._1f{width:117.736800px;}
._17{width:121.230000px;}
._72{width:128.301843px;}
._19{width:130.518000px;}
._60{width:134.009400px;}
._6f{width:140.301843px;}
._f{width:159.840000px;}
._63{width:164.014800px;}
._a1{width:165.121200px;}
._a6{width:166.732800px;}
._91{width:170.529600px;}
._14{width:172.284000px;}
._56{width:174.428400px;}
._87{width:177.361200px;}
._4a{width:183.941765px;}
._15{width:187.110000px;}
._62{width:190.258800px;}
._67{width:192.456722px;}
._12{width:194.157600px;}
._76{width:198.057600px;}
._1d{width:199.920000px;}
._c{width:201.960000px;}
._7e{width:203.602800px;}
._99{width:208.792800px;}
._90{width:210.592800px;}
._61{width:216.226078px;}
._68{width:222.768478px;}
._6b{width:234.120000px;}
._66{width:237.849600px;}
._71{width:240.428400px;}
._73{width:243.472313px;}
._9f{width:247.117922px;}
._6a{width:252.428400px;}
._64{width:260.422800px;}
._a5{width:264.138000px;}
._58{width:265.296722px;}
._79{width:272.189522px;}
._a3{width:274.860722px;}
._8b{width:282.541200px;}
._52{width:284.426400px;}
._92{width:287.032800px;}
._35{width:291.239530px;}
._9b{width:292.657922px;}
._59{width:293.969522px;}
._2f{width:296.853374px;}
._83{width:299.581200px;}
._8f{width:301.732800px;}
._8a{width:310.994643px;}
._8e{width:313.472400px;}
._4f{width:316.044000px;}
._9c{width:319.889522px;}
._70{width:323.580000px;}
._9e{width:325.081200px;}
._2b{width:331.253530px;}
._69{width:335.580000px;}
._53{width:343.908000px;}
._97{width:346.312800px;}
._50{width:352.560722px;}
._7d{width:354.429600px;}
._95{width:359.701200px;}
._2a{width:363.395052px;}
._84{width:365.812800px;}
._36{width:369.877208px;}
._3e{width:375.863287px;}
._26{width:378.881530px;}
._96{width:380.129522px;}
._94{width:382.769522px;}
._a0{width:385.432800px;}
._55{width:389.808000px;}
._9d{width:392.189522px;}
._54{width:394.344000px;}
._9a{width:407.452800px;}
._3f{width:412.523530px;}
._a2{width:420.097922px;}
._4b{width:421.933208px;}
._85{width:423.121200px;}
._25{width:426.239530px;}
._77{width:429.121200px;}
._6e{width:433.740000px;}
._93{width:437.692800px;}
._3a{width:439.981930px;}
._48{width:450.053530px;}
._51{width:470.322000px;}
._3d{width:472.247530px;}
._8c{width:474.180000px;}
._30{width:484.727287px;}
._8d{width:486.180000px;}
._49{width:496.438330px;}
._40{width:499.645208px;}
._82{width:506.272800px;}
._75{width:512.272800px;}
._46{width:519.577930px;}
._22{width:527.395208px;}
._74{width:529.432800px;}
._23{width:554.239208px;}
._31{width:558.842887px;}
._33{width:560.921287px;}
._24{width:563.486887px;}
._21{width:569.927530px;}
._38{width:589.117208px;}
._2d{width:594.806887px;}
._20{width:601.423808px;}
._2c{width:618.330252px;}
._45{width:628.003208px;}
._34{width:645.439208px;}
._7c{width:650.739843px;}
._37{width:658.507208px;}
._47{width:688.927930px;}
._29{width:695.894887px;}
._28{width:699.620887px;}
._39{width:701.781852px;}
._2e{width:729.374887px;}
._27{width:745.304887px;}
._3b{width:763.955530px;}
._44{width:805.603208px;}
._5d{width:818.375522px;}
._3c{width:827.073608px;}
._43{width:836.186887px;}
._32{width:851.144887px;}
._41{width:853.034887px;}
._a7{width:924.209522px;}
._7a{width:1049.411539px;}
._7f{width:1050.429600px;}
._1c{width:1257.047043px;}
._88{width:1280.081765px;}
._89{width:1464.748322px;}
._98{width:1557.290040px;}
._80{width:1561.708322px;}
._5b{width:1567.276926px;}
._5c{width:1587.702607px;}
._1b{width:1593.842045px;}
._86{width:1603.371600px;}
._1a{width:1608.025921px;}
._4d{width:1614.267725px;}
._81{width:1721.991600px;}
.fc7{color:rgb(192,32,38);}
.fc6{color:rgb(143,142,132);}
.fc4{color:rgb(41,84,171);}
.fc5{color:rgb(32,34,36);}
.fc3{color:rgb(68,65,65);}
.fc2{color:transparent;}
.fc1{color:rgb(41,86,171);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:48.000000px;}
.fs0{font-size:49.934434px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:62.116583px;}
.fs7{font-size:68.659764px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs9{font-size:168.000000px;}
.fs4{font-size:216.000000px;}
.fsd{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.401150px;}
.y1a0{bottom:80.250000px;}
.yfb{bottom:88.500000px;}
.y20a{bottom:94.500000px;}
.y26f{bottom:99.750000px;}
.y26d{bottom:101.147100px;}
.y177{bottom:101.250000px;}
.y273{bottom:103.500000px;}
.y208{bottom:111.000000px;}
.y18c{bottom:120.205650px;}
.y1ab{bottom:122.643150px;}
.y124{bottom:123.837150px;}
.y257{bottom:124.084350px;}
.y1c0{bottom:126.000000px;}
.y231{bottom:139.651950px;}
.y18b{bottom:141.205650px;}
.y1aa{bottom:143.643150px;}
.y299{bottom:144.390150px;}
.y256{bottom:148.444200px;}
.y123{bottom:160.603950px;}
.y18a{bottom:162.205650px;}
.y230{bottom:164.011800px;}
.y298{bottom:164.640150px;}
.y1a9{bottom:164.643150px;}
.y255{bottom:169.444200px;}
.y1e8{bottom:172.140150px;}
.y30{bottom:176.362950px;}
.y1e9{bottom:182.250000px;}
.y189{bottom:183.205650px;}
.y297{bottom:184.890150px;}
.y22f{bottom:185.011800px;}
.y1a8{bottom:185.643150px;}
.y122{bottom:191.146950px;}
.y90{bottom:191.676150px;}
.y254{bottom:193.803900px;}
.y1e7{bottom:199.140150px;}
.y188{bottom:204.205650px;}
.y2f{bottom:206.362950px;}
.y1a7{bottom:206.643150px;}
.y121{bottom:207.346950px;}
.y176{bottom:208.257150px;}
.y8f{bottom:209.676150px;}
.y22e{bottom:212.011800px;}
.y296{bottom:214.140150px;}
.y253{bottom:214.803900px;}
.y207{bottom:223.140150px;}
.y187{bottom:225.205650px;}
.y1e6{bottom:226.140150px;}
.y1a6{bottom:227.643150px;}
.y8e{bottom:227.676150px;}
.y40{bottom:228.452700px;}
.y120{bottom:230.146950px;}
.y252{bottom:235.803900px;}
.y2e{bottom:236.362950px;}
.y22d{bottom:239.011800px;}
.y173{bottom:240.451050px;}
.y295{bottom:243.390150px;}
.y7{bottom:245.136450px;}
.y8d{bottom:245.676150px;}
.y186{bottom:246.205650px;}
.y11f{bottom:246.346950px;}
.y206{bottom:247.140150px;}
.y1a5{bottom:248.643150px;}
.y3f{bottom:249.452700px;}
.y1e5{bottom:253.140150px;}
.y161{bottom:253.212150px;}
.y251{bottom:256.803900px;}
.y22c{bottom:263.371650px;}
.y8c{bottom:263.676150px;}
.y31{bottom:264.683100px;}
.y185{bottom:267.205650px;}
.y172{bottom:267.451050px;}
.y11e{bottom:269.146950px;}
.y3e{bottom:270.452700px;}
.y275{bottom:271.270500px;}
.y294{bottom:272.640150px;}
.y160{bottom:274.212150px;}
.y1e4{bottom:280.951050px;}
.y6{bottom:281.136450px;}
.y250{bottom:281.163750px;}
.y8b{bottom:281.676150px;}
.y22b{bottom:284.371650px;}
.y11d{bottom:285.346950px;}
.y1bf{bottom:287.715150px;}
.y205{bottom:289.327650px;}
.y3d{bottom:291.452700px;}
.y293{bottom:292.890150px;}
.y171{bottom:294.451050px;}
.y15f{bottom:295.212150px;}
.y8a{bottom:299.676150px;}
.y22a{bottom:305.371650px;}
.y24f{bottom:305.523600px;}
.y271{bottom:306.390000px;}
.y19f{bottom:307.027650px;}
.y1be{bottom:307.215150px;}
.y1e3{bottom:307.951050px;}
.y11c{bottom:308.146950px;}
.y3c{bottom:312.452700px;}
.yfa{bottom:313.140150px;}
.y204{bottom:313.327650px;}
.y2c{bottom:314.793000px;}
.y15e{bottom:316.212150px;}
.y5{bottom:317.136450px;}
.y89{bottom:317.676150px;}
.y170{bottom:318.810750px;}
.yd9{bottom:323.640150px;}
.y11b{bottom:324.346950px;}
.y229{bottom:326.371650px;}
.y19e{bottom:326.527650px;}
.y24e{bottom:329.883300px;}
.y1e2{bottom:332.310750px;}
.y258{bottom:333.000000px;}
.y292{bottom:333.390150px;}
.y3b{bottom:333.452700px;}
.yf9{bottom:334.140150px;}
.y88{bottom:335.676150px;}
.y15d{bottom:337.212150px;}
.y203{bottom:337.327650px;}
.y1bd{bottom:339.390150px;}
.y16f{bottom:339.810750px;}
.yd8{bottom:340.140150px;}
.y2b{bottom:344.793000px;}
.y19d{bottom:346.027650px;}
.y228{bottom:347.371650px;}
.y1e1{bottom:353.310750px;}
.y291{bottom:353.640150px;}
.y87{bottom:353.676150px;}
.y24d{bottom:354.243150px;}
.y3a{bottom:354.452700px;}
.yf8{bottom:355.140150px;}
.y11a{bottom:355.246950px;}
.yda{bottom:356.640150px;}
.yd7{bottom:356.676150px;}
.y15c{bottom:358.212150px;}
.y202{bottom:361.327650px;}
.y16e{bottom:364.170600px;}
.y1bc{bottom:366.390150px;}
.y86{bottom:371.676150px;}
.y1e0{bottom:374.310750px;}
.y2a{bottom:374.793000px;}
.y39{bottom:375.452700px;}
.yf7{bottom:376.140150px;}
.y19c{bottom:376.170600px;}
.y24c{bottom:378.603000px;}
.y15b{bottom:379.212150px;}
.y26b{bottom:381.121650px;}
.y290{bottom:382.890150px;}
.y26c{bottom:383.712150px;}
.y16d{bottom:385.170600px;}
.y201{bottom:385.327650px;}
.yd5{bottom:388.890150px;}
.y227{bottom:389.371650px;}
.y85{bottom:389.676150px;}
.y1bb{bottom:393.390150px;}
.y119{bottom:394.246950px;}
.y38{bottom:396.452700px;}
.yf6{bottom:397.140150px;}
.y15a{bottom:400.212150px;}
.y19{bottom:400.932150px;}
.y1df{bottom:401.310750px;}
.y26a{bottom:402.121650px;}
.y24b{bottom:402.962700px;}
.y28f{bottom:403.140150px;}
.y19b{bottom:403.170600px;}
.y29{bottom:405.133500px;}
.yd6{bottom:405.390150px;}
.yd4{bottom:405.426150px;}
.y84{bottom:407.676150px;}
.y200{bottom:409.327650px;}
.y226{bottom:410.371650px;}
.y16c{bottom:412.170600px;}
.y37{bottom:417.452700px;}
.yf5{bottom:418.140150px;}
.y61{bottom:419.640150px;}
.y1ba{bottom:420.390150px;}
.y159{bottom:421.212150px;}
.y18{bottom:421.932150px;}
.y28e{bottom:423.390150px;}
.y118{bottom:425.146950px;}
.y83{bottom:425.676150px;}
.y269{bottom:426.481350px;}
.y24a{bottom:427.322550px;}
.y1de{bottom:428.310750px;}
.y19a{bottom:430.170600px;}
.y225{bottom:431.371650px;}
.y1ff{bottom:433.327650px;}
.y36{bottom:438.452700px;}
.yd2{bottom:439.140150px;}
.y16b{bottom:439.170600px;}
.y117{bottom:441.346950px;}
.y158{bottom:442.212150px;}
.y17{bottom:442.932150px;}
.y28d{bottom:443.640150px;}
.y82{bottom:443.676150px;}
.yf4{bottom:445.140150px;}
.y1b9{bottom:447.390150px;}
.y268{bottom:447.481350px;}
.y249{bottom:448.322550px;}
.y28{bottom:451.343100px;}
.y224{bottom:452.371650px;}
.y1dd{bottom:455.310750px;}
.yd3{bottom:455.640150px;}
.yd1{bottom:455.676150px;}
.y199{bottom:457.170600px;}
.y1fe{bottom:457.327650px;}
.y35{bottom:459.452700px;}
.y81{bottom:461.676150px;}
.y157{bottom:463.212150px;}
.y28c{bottom:463.890150px;}
.y116{bottom:464.146950px;}
.y21{bottom:465.543000px;}
.yf3{bottom:466.140150px;}
.y16a{bottom:466.170600px;}
.y267{bottom:471.841200px;}
.y248{bottom:472.682400px;}
.y223{bottom:473.371650px;}
.y1b8{bottom:474.390150px;}
.yae{bottom:475.140150px;}
.y1a{bottom:477.168150px;}
.y80{bottom:479.676150px;}
.y115{bottom:480.346950px;}
.y34{bottom:480.452700px;}
.y1fd{bottom:481.327650px;}
.y27{bottom:481.343100px;}
.y1dc{bottom:482.310750px;}
.y198{bottom:484.170600px;}
.y156{bottom:484.212150px;}
.y20{bottom:486.543000px;}
.yf2{bottom:487.140150px;}
.ycf{bottom:491.640150px;}
.y28b{bottom:493.140150px;}
.y169{bottom:493.170600px;}
.yad{bottom:496.140150px;}
.y266{bottom:496.201050px;}
.y247{bottom:497.042250px;}
.y7f{bottom:497.676150px;}
.y222{bottom:500.371650px;}
.y1b7{bottom:501.390150px;}
.y33{bottom:501.452700px;}
.y1fc{bottom:505.327650px;}
.y1db{bottom:506.670600px;}
.y1f{bottom:507.543000px;}
.yd0{bottom:508.140150px;}
.yce{bottom:508.176150px;}
.y197{bottom:511.170600px;}
.y114{bottom:511.246950px;}
.y26{bottom:511.343100px;}
.y13e{bottom:514.068300px;}
.y7e{bottom:515.676150px;}
.yac{bottom:517.140150px;}
.y265{bottom:517.201050px;}
.y155{bottom:518.712150px;}
.y168{bottom:520.170600px;}
.y246{bottom:521.401950px;}
.y28a{bottom:522.390150px;}
.y32{bottom:522.452700px;}
.y221{bottom:527.371650px;}
.y1da{bottom:527.670600px;}
.y1e{bottom:528.543000px;}
.yf1{bottom:529.140150px;}
.y1fb{bottom:529.327650px;}
.y1b6{bottom:530.670600px;}
.y7d{bottom:533.676150px;}
.y13d{bottom:535.068300px;}
.yab{bottom:538.140150px;}
.y196{bottom:538.170600px;}
.y264{bottom:538.201050px;}
.y25{bottom:541.343100px;}
.ycc{bottom:541.890150px;}
.y245{bottom:542.401950px;}
.y289{bottom:542.640150px;}
.y167{bottom:547.170600px;}
.y154{bottom:548.712150px;}
.y1d{bottom:549.543000px;}
.yf0{bottom:550.140150px;}
.y113{bottom:550.246950px;}
.y7c{bottom:551.676150px;}
.y220{bottom:551.731350px;}
.y1d9{bottom:552.066450px;}
.y1fa{bottom:553.327650px;}
.y16{bottom:553.670700px;}
.y13c{bottom:556.068300px;}
.y1b5{bottom:557.670600px;}
.ycd{bottom:558.390150px;}
.ycb{bottom:558.426150px;}
.yaa{bottom:559.140150px;}
.y41{bottom:561.864300px;}
.y263{bottom:562.560750px;}
.y288{bottom:562.890150px;}
.y244{bottom:563.401950px;}
.y195{bottom:565.170600px;}
.y153{bottom:568.212150px;}
.y7b{bottom:569.676150px;}
.y1c{bottom:570.543000px;}
.yef{bottom:571.140150px;}
.y24{bottom:571.343100px;}
.y15{bottom:571.670700px;}
.y21f{bottom:572.731350px;}
.y166{bottom:574.170600px;}
.y13b{bottom:577.068300px;}
.ya9{bottom:580.140150px;}
.y1d8{bottom:580.890150px;}
.y112{bottom:581.146950px;}
.y287{bottom:583.140150px;}
.y262{bottom:583.560750px;}
.y1b4{bottom:584.670600px;}
.y7a{bottom:587.676150px;}
.y243{bottom:587.761800px;}
.y1d7{bottom:589.140150px;}
.y14{bottom:589.670700px;}
.y1b{bottom:591.543000px;}
.y194{bottom:592.170600px;}
.yc9{bottom:592.890150px;}
.y12{bottom:595.315500px;}
.y21e{bottom:597.091200px;}
.y111{bottom:597.346950px;}
.y13a{bottom:598.068300px;}
.yee{bottom:598.140150px;}
.y165{bottom:598.566450px;}
.ya8{bottom:601.140150px;}
.y23{bottom:601.343100px;}
.y286{bottom:603.390150px;}
.y150{bottom:603.810750px;}
.y261{bottom:604.560750px;}
.y79{bottom:605.676150px;}
.y13{bottom:607.670700px;}
.yca{bottom:609.390150px;}
.yc8{bottom:609.426150px;}
.y1f9{bottom:610.140150px;}
.y1b3{bottom:611.670600px;}
.y242{bottom:612.121650px;}
.y21d{bottom:618.091200px;}
.y139{bottom:619.068300px;}
.yed{bottom:619.140150px;}
.y193{bottom:619.170600px;}
.y110{bottom:620.521950px;}
.ya7{bottom:622.140150px;}
.y285{bottom:623.640150px;}
.y78{bottom:623.676150px;}
.y260{bottom:625.560750px;}
.y2d{bottom:626.075100px;}
.y163{bottom:627.390150px;}
.y22{bottom:630.566550px;}
.y14f{bottom:630.810750px;}
.y1d6{bottom:632.424300px;}
.y241{bottom:633.121650px;}
.y162{bottom:635.640150px;}
.y10f{bottom:636.721950px;}
.y1b2{bottom:638.670600px;}
.y138{bottom:640.068300px;}
.yec{bottom:640.140150px;}
.y77{bottom:641.676150px;}
.yc6{bottom:642.202650px;}
.y21c{bottom:642.451050px;}
.ya6{bottom:643.140150px;}
.y164{bottom:643.890150px;}
.y192{bottom:646.170600px;}
.y25f{bottom:646.560750px;}
.y11{bottom:647.659500px;}
.y284{bottom:652.890150px;}
.y1d5{bottom:653.424300px;}
.y240{bottom:657.481350px;}
.y14e{bottom:657.810750px;}
.yc7{bottom:658.702650px;}
.yc5{bottom:658.738650px;}
.y76{bottom:659.676150px;}
.y137{bottom:661.068300px;}
.yeb{bottom:661.140150px;}
.y10e{bottom:661.783950px;}
.y52{bottom:662.640150px;}
.y1b1{bottom:663.066450px;}
.y21b{bottom:663.451050px;}
.ya5{bottom:664.140150px;}
.y25e{bottom:670.920600px;}
.y191{bottom:673.170600px;}
.y1d4{bottom:674.424300px;}
.y175{bottom:676.140150px;}
.y75{bottom:677.676150px;}
.y10d{bottom:678.283950px;}
.y23f{bottom:681.841200px;}
.y136{bottom:682.068300px;}
.yea{bottom:682.140150px;}
.y14d{bottom:682.170600px;}
.y51{bottom:683.640150px;}
.y21a{bottom:684.451050px;}
.ya4{bottom:685.140150px;}
.yc3{bottom:691.702650px;}
.y1af{bottom:691.890150px;}
.y25d{bottom:691.920600px;}
.y10b{bottom:695.399550px;}
.y74{bottom:695.676150px;}
.y190{bottom:697.566450px;}
.yf{bottom:699.448050px;}
.y1ad{bottom:700.140150px;}
.ye9{bottom:703.140150px;}
.y14c{bottom:703.170600px;}
.y1d3{bottom:704.424300px;}
.yd{bottom:704.460000px;}
.y50{bottom:704.640150px;}
.ya3{bottom:706.140150px;}
.y23e{bottom:706.201050px;}
.yc2{bottom:708.202650px;}
.y1ac{bottom:708.390150px;}
.y219{bottom:708.810750px;}
.y283{bottom:711.390150px;}
.y135{bottom:712.068300px;}
.y25c{bottom:712.920600px;}
.y73{bottom:713.676150px;}
.y1b0{bottom:716.640150px;}
.ye{bottom:717.448050px;}
.y10c{bottom:718.829400px;}
.y1f8{bottom:724.140150px;}
.yc4{bottom:724.702650px;}
.yc1{bottom:724.738650px;}
.y1ae{bottom:724.890150px;}
.y1d2{bottom:725.424300px;}
.y4f{bottom:725.640150px;}
.y18e{bottom:726.390150px;}
.ya2{bottom:727.140150px;}
.y23d{bottom:727.201050px;}
.y14b{bottom:727.530450px;}
.y218{bottom:729.810750px;}
.ye8{bottom:730.140150px;}
.y282{bottom:731.640150px;}
.y72{bottom:731.676150px;}
.y134{bottom:733.068300px;}
.y25b{bottom:733.920600px;}
.y18d{bottom:734.640150px;}
.y18f{bottom:742.890150px;}
.y1f7{bottom:745.140150px;}
.y1d1{bottom:746.424300px;}
.y4e{bottom:746.640150px;}
.ya1{bottom:748.140150px;}
.y23c{bottom:748.201050px;}
.y14a{bottom:748.530450px;}
.y71{bottom:749.676150px;}
.y217{bottom:750.810750px;}
.ye7{bottom:751.140150px;}
.y133{bottom:754.068300px;}
.y25a{bottom:754.920600px;}
.ybf{bottom:756.390150px;}
.y1a4{bottom:757.140150px;}
.y281{bottom:760.890150px;}
.y10{bottom:761.942400px;}
.y10a{bottom:764.424300px;}
.y1f6{bottom:766.140150px;}
.y1d0{bottom:767.424300px;}
.y4d{bottom:767.640150px;}
.y70{bottom:767.676150px;}
.ya0{bottom:769.140150px;}
.y23b{bottom:769.201050px;}
.y216{bottom:771.810750px;}
.ye6{bottom:772.140150px;}
.ybe{bottom:772.890150px;}
.y132{bottom:775.068300px;}
.y149{bottom:775.530450px;}
.y184{bottom:778.140150px;}
.y109{bottom:785.424300px;}
.y6f{bottom:785.676150px;}
.y1a3{bottom:787.140150px;}
.y1cf{bottom:788.424300px;}
.y4c{bottom:788.640150px;}
.ybd{bottom:789.390150px;}
.y60{bottom:789.924300px;}
.y9f{bottom:790.140150px;}
.y215{bottom:792.810750px;}
.ye5{bottom:793.140150px;}
.y23a{bottom:793.560750px;}
.y272{bottom:794.034300px;}
.y131{bottom:796.068300px;}
.y259{bottom:796.920600px;}
.y183{bottom:799.140150px;}
.y148{bottom:802.530450px;}
.y6e{bottom:803.676150px;}
.yc0{bottom:805.890150px;}
.ybc{bottom:805.926150px;}
.y1a2{bottom:808.140150px;}
.y1ce{bottom:809.424300px;}
.y4b{bottom:809.640150px;}
.y280{bottom:810.390150px;}
.y5f{bottom:810.924300px;}
.y9e{bottom:811.140150px;}
.y214{bottom:813.810750px;}
.y108{bottom:815.424300px;}
.yb{bottom:815.509800px;}
.y130{bottom:817.068300px;}
.y1f5{bottom:817.140150px;}
.y239{bottom:817.920600px;}
.ye4{bottom:820.140150px;}
.y6d{bottom:821.676150px;}
.y182{bottom:829.140150px;}
.y276{bottom:829.153800px;}
.y147{bottom:829.530450px;}
.y1cd{bottom:830.424300px;}
.y4a{bottom:830.640150px;}
.y1ea{bottom:831.409350px;}
.y5e{bottom:831.924300px;}
.y9d{bottom:832.140150px;}
.y213{bottom:834.810750px;}
.y107{bottom:836.424300px;}
.y12f{bottom:838.068300px;}
.yba{bottom:838.140150px;}
.y238{bottom:838.920600px;}
.ye3{bottom:841.140150px;}
.y6c{bottom:842.676150px;}
.y181{bottom:850.140150px;}
.y1cc{bottom:851.424300px;}
.y49{bottom:851.640150px;}
.y5d{bottom:852.924300px;}
.y9c{bottom:853.140150px;}
.ybb{bottom:854.640150px;}
.yb9{bottom:854.676150px;}
.y146{bottom:856.530450px;}
.y106{bottom:857.424300px;}
.y12e{bottom:859.068300px;}
.y1f4{bottom:859.140150px;}
.y212{bottom:859.170600px;}
.y27f{bottom:859.890150px;}
.y237{bottom:859.920600px;}
.y6b{bottom:860.676150px;}
.ye2{bottom:862.140150px;}
.y180{bottom:871.140150px;}
.y1cb{bottom:872.424300px;}
.y48{bottom:872.640150px;}
.yc{bottom:872.992200px;}
.y5c{bottom:873.924300px;}
.y9b{bottom:874.140150px;}
.y105{bottom:878.424300px;}
.y6a{bottom:878.676150px;}
.y12d{bottom:880.068300px;}
.y1f3{bottom:880.140150px;}
.y211{bottom:880.170600px;}
.y236{bottom:880.920600px;}
.ye1{bottom:883.140150px;}
.y145{bottom:883.530450px;}
.yb8{bottom:886.140150px;}
.y27e{bottom:889.140150px;}
.y17f{bottom:892.140150px;}
.y1ca{bottom:893.424300px;}
.y47{bottom:893.640150px;}
.y5b{bottom:894.924300px;}
.y69{bottom:896.676150px;}
.y104{bottom:899.424300px;}
.y12c{bottom:901.068300px;}
.y1f2{bottom:901.140150px;}
.y210{bottom:901.170600px;}
.yb7{bottom:902.640150px;}
.y209{bottom:903.409350px;}
.y9a{bottom:904.140150px;}
.y235{bottom:905.280450px;}
.y27d{bottom:909.390150px;}
.y144{bottom:910.530450px;}
.y17e{bottom:913.140150px;}
.y1c9{bottom:914.424300px;}
.y46{bottom:914.640150px;}
.y68{bottom:914.676150px;}
.y5a{bottom:915.924300px;}
.y9{bottom:919.059450px;}
.yb6{bottom:919.140150px;}
.y103{bottom:920.424300px;}
.y12b{bottom:922.068300px;}
.y1f1{bottom:922.140150px;}
.y99{bottom:925.140150px;}
.y20f{bottom:925.530450px;}
.y234{bottom:926.280450px;}
.y27c{bottom:929.640150px;}
.ye0{bottom:931.140150px;}
.y67{bottom:932.676150px;}
.y17d{bottom:934.140150px;}
.y1c8{bottom:935.424300px;}
.y45{bottom:935.640150px;}
.yb5{bottom:935.676150px;}
.y59{bottom:936.924300px;}
.y143{bottom:937.530450px;}
.y102{bottom:941.424300px;}
.y12a{bottom:943.068300px;}
.y1f0{bottom:943.140150px;}
.y98{bottom:946.140150px;}
.y20e{bottom:946.530450px;}
.y233{bottom:947.280450px;}
.y27b{bottom:949.890150px;}
.y66{bottom:950.676150px;}
.ydf{bottom:952.140150px;}
.y17c{bottom:955.140150px;}
.y1c7{bottom:956.424300px;}
.y44{bottom:956.640150px;}
.y58{bottom:957.924300px;}
.y101{bottom:962.424300px;}
.y129{bottom:964.068300px;}
.y1ef{bottom:964.140150px;}
.y142{bottom:964.566450px;}
.y97{bottom:967.140150px;}
.yb3{bottom:967.530450px;}
.y232{bottom:968.280450px;}
.y65{bottom:968.676150px;}
.y27a{bottom:970.140150px;}
.yde{bottom:973.140150px;}
.y1c1{bottom:974.424300px;}
.y17b{bottom:976.140150px;}
.ya{bottom:976.541700px;}
.y1c6{bottom:977.424300px;}
.y43{bottom:977.640150px;}
.y57{bottom:978.924300px;}
.y100{bottom:983.424300px;}
.yb4{bottom:984.030450px;}
.yb2{bottom:984.066450px;}
.y1ee{bottom:985.140150px;}
.y96{bottom:988.140150px;}
.y64{bottom:989.316450px;}
.y279{bottom:990.390150px;}
.y140{bottom:993.390150px;}
.y128{bottom:994.068300px;}
.ydd{bottom:994.140150px;}
.y20c{bottom:996.390150px;}
.y274{bottom:996.924300px;}
.y17a{bottom:997.140150px;}
.y1c5{bottom:998.424300px;}
.y42{bottom:998.640150px;}
.y178{bottom:999.174300px;}
.y26e{bottom:999.277200px;}
.y56{bottom:999.924300px;}
.y270{bottom:1000.674300px;}
.y13f{bottom:1001.640150px;}
.yff{bottom:1004.424300px;}
.y20d{bottom:1004.640150px;}
.y20b{bottom:1005.924300px;}
.y1ed{bottom:1006.140150px;}
.y95{bottom:1009.140150px;}
.y141{bottom:1009.890150px;}
.y278{bottom:1010.640150px;}
.yfc{bottom:1011.924300px;}
.yb0{bottom:1012.890150px;}
.y63{bottom:1013.640150px;}
.y127{bottom:1015.068300px;}
.ydc{bottom:1015.140150px;}
.y179{bottom:1018.140150px;}
.y1c4{bottom:1019.424300px;}
.y1a1{bottom:1020.174300px;}
.y55{bottom:1020.924300px;}
.yaf{bottom:1021.140150px;}
.y62{bottom:1021.890150px;}
.y1ec{bottom:1027.140150px;}
.yb1{bottom:1029.390150px;}
.y94{bottom:1030.140150px;}
.yfe{bottom:1034.424300px;}
.y4{bottom:1034.496300px;}
.y126{bottom:1036.068300px;}
.ydb{bottom:1036.140150px;}
.y174{bottom:1039.140150px;}
.y277{bottom:1039.890150px;}
.y1c3{bottom:1040.424300px;}
.y54{bottom:1041.924300px;}
.y1eb{bottom:1048.140150px;}
.y93{bottom:1051.140150px;}
.y152{bottom:1052.640150px;}
.y8{bottom:1055.881650px;}
.y3{bottom:1061.496300px;}
.y125{bottom:1066.068300px;}
.yfd{bottom:1067.424300px;}
.y91{bottom:1069.140150px;}
.y1c2{bottom:1070.424300px;}
.y53{bottom:1071.924300px;}
.y92{bottom:1072.140150px;}
.y151{bottom:1073.640150px;}
.y2{bottom:1088.496300px;}
.h21{height:35.136000px;}
.h2e{height:36.552006px;}
.h1{height:36.701809px;}
.hb{height:39.528000px;}
.h1c{height:39.636000px;}
.h10{height:39.690000px;}
.h16{height:40.896000px;}
.h9{height:41.317383px;}
.h17{height:42.528000px;}
.h19{height:43.776000px;}
.h11{height:43.920000px;}
.h20{height:44.040000px;}
.hc{height:44.100000px;}
.h1f{height:44.808600px;}
.h18{height:45.469339px;}
.h14{height:45.655689px;}
.hd{height:50.464927px;}
.h3{height:52.704000px;}
.h1b{height:52.920000px;}
.he{height:61.656000px;}
.h2{height:61.740000px;}
.h7{height:63.820312px;}
.h13{height:70.560000px;}
.h1d{height:75.708600px;}
.h15{height:77.100000px;}
.h1e{height:77.208600px;}
.hf{height:79.380000px;}
.h5{height:104.414062px;}
.h4{height:105.840000px;}
.h22{height:110.100000px;}
.h12{height:121.816406px;}
.h6{height:156.621094px;}
.ha{height:162.738183px;}
.h8{height:165.269583px;}
.h27{height:317.520000px;}
.h2a{height:793.500000px;}
.h2d{height:820.110000px;}
.h30{height:855.229500px;}
.h26{height:943.500000px;}
.h25{height:1000.500000px;}
.h28{height:1015.500000px;}
.h2f{height:1023.000000px;}
.h23{height:1025.250000px;}
.h2b{height:1025.352900px;}
.h2c{height:1026.750000px;}
.h29{height:1032.000000px;}
.h1a{height:1038.000000px;}
.h24{height:1046.250000px;}
.h0{height:1188.000000px;}
.w2{width:627.803850px;}
.w1{width:635.303850px;}
.w3{width:667.367025px;}
.w4{width:667.367250px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x37{left:3.959475px;}
.x1b{left:12.803850px;}
.x1a{left:44.196150px;}
.x38{left:52.367175px;}
.x4{left:60.755850px;}
.xa{left:91.387800px;}
.xc{left:96.826800px;}
.x21{left:98.250000px;}
.x5{left:108.839700px;}
.xb{left:112.500000px;}
.x19{left:123.826800px;}
.x39{left:137.887800px;}
.x1c{left:139.441050px;}
.x18{left:144.509550px;}
.x7{left:146.332650px;}
.xd{left:151.421400px;}
.x3{left:159.000000px;}
.x6{left:160.677150px;}
.x3a{left:175.686600px;}
.x41{left:178.605300px;}
.x3b{left:181.185450px;}
.x42{left:182.269950px;}
.x1e{left:215.205450px;}
.x1d{left:226.950150px;}
.x2{left:228.000000px;}
.x22{left:260.326650px;}
.x28{left:261.826800px;}
.x27{left:263.326650px;}
.x2a{left:264.826800px;}
.x12{left:291.076800px;}
.x15{left:294.076800px;}
.x20{left:299.205450px;}
.x1f{left:304.755150px;}
.x2b{left:306.000000px;}
.xf{left:309.419400px;}
.x43{left:342.963300px;}
.x2c{left:390.000000px;}
.x23{left:391.576650px;}
.x29{left:393.076800px;}
.x3c{left:417.000000px;}
.x3f{left:420.000000px;}
.x13{left:448.576800px;}
.x16{left:451.576800px;}
.x2d{left:460.293300px;}
.x10{left:468.682800px;}
.x31{left:473.173200px;}
.x11{left:476.851800px;}
.x8{left:510.525600px;}
.x9{left:512.025600px;}
.x2e{left:528.879900px;}
.x3d{left:546.000000px;}
.x40{left:549.000000px;}
.x24{left:582.826650px;}
.x2f{left:597.466500px;}
.x32{left:600.000000px;}
.x34{left:604.139700px;}
.x35{left:607.139700px;}
.x14{left:615.076800px;}
.x17{left:618.076800px;}
.x25{left:651.826650px;}
.x3e{left:658.500000px;}
.x30{left:665.379900px;}
.x33{left:728.533500px;}
.x36{left:735.673200px;}
.xe{left:768.826650px;}
.x1{left:774.787950px;}
.x26{left:781.576650px;}
@media print{
.v4{vertical-align:-2.794667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.666667pt;}
.v6{vertical-align:28.096533pt;}
.v3{vertical-align:29.333333pt;}
.v7{vertical-align:58.666667pt;}
.v2{vertical-align:107.929600pt;}
.v1{vertical-align:110.179733pt;}
.ls5{letter-spacing:-3.584000pt;}
.ls3e{letter-spacing:-3.413333pt;}
.ls45{letter-spacing:-3.253333pt;}
.ls4d{letter-spacing:-3.200000pt;}
.lsd{letter-spacing:-2.986667pt;}
.ls26{letter-spacing:-2.880000pt;}
.ls4c{letter-spacing:-2.666667pt;}
.ls47{letter-spacing:-2.613333pt;}
.ls14{letter-spacing:-2.133333pt;}
.ls4b{letter-spacing:-2.098160pt;}
.ls10{letter-spacing:-2.080000pt;}
.ls24{letter-spacing:-2.026667pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls52{letter-spacing:-1.866667pt;}
.ls1f{letter-spacing:-1.822086pt;}
.ls40{letter-spacing:-1.813333pt;}
.ls4a{letter-spacing:-1.711657pt;}
.ls1c{letter-spacing:-1.653333pt;}
.ls3b{letter-spacing:-1.600000pt;}
.ls22{letter-spacing:-1.546667pt;}
.ls31{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.386667pt;}
.ls50{letter-spacing:-1.333333pt;}
.ls1e{letter-spacing:-1.173333pt;}
.ls49{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.906667pt;}
.ls27{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.693333pt;}
.ls42{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.298667pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls53{letter-spacing:-0.110429pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls43{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.240000pt;}
.ls29{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.305155pt;}
.ls3d{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls46{letter-spacing:0.386503pt;}
.ls11{letter-spacing:0.426667pt;}
.ls3f{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls33{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.800000pt;}
.ls44{letter-spacing:0.853333pt;}
.ls39{letter-spacing:0.906667pt;}
.ls3c{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:1.066667pt;}
.ls34{letter-spacing:1.120000pt;}
.ls48{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.386667pt;}
.ls1{letter-spacing:71.798933pt;}
.ls20{letter-spacing:272.160000pt;}
.ls51{letter-spacing:421.493333pt;}
.ls4e{letter-spacing:430.501333pt;}
.ls4f{letter-spacing:432.160000pt;}
.ws8{word-spacing:-19.200000pt;}
.ws9{word-spacing:-14.933333pt;}
.ws61{word-spacing:-11.360000pt;}
.wse8{word-spacing:-11.200000pt;}
.wsff{word-spacing:-11.146667pt;}
.ws93{word-spacing:-11.093333pt;}
.wsd8{word-spacing:-11.040000pt;}
.ws15b{word-spacing:-10.986667pt;}
.ws59{word-spacing:-10.933333pt;}
.ws162{word-spacing:-10.880000pt;}
.ws137{word-spacing:-10.826667pt;}
.ws85{word-spacing:-10.720000pt;}
.ws2f{word-spacing:-10.666667pt;}
.wsea{word-spacing:-10.613333pt;}
.ws77{word-spacing:-10.560000pt;}
.ws8c{word-spacing:-10.506667pt;}
.ws144{word-spacing:-10.453333pt;}
.ws42{word-spacing:-10.400000pt;}
.ws6e{word-spacing:-10.240000pt;}
.ws167{word-spacing:-10.080000pt;}
.wse6{word-spacing:-10.026667pt;}
.ws19{word-spacing:-9.840000pt;}
.wsa4{word-spacing:-9.813333pt;}
.ws15f{word-spacing:-9.760000pt;}
.ws12{word-spacing:-9.648000pt;}
.wsf{word-spacing:-9.600000pt;}
.ws1f{word-spacing:-9.552000pt;}
.wsee{word-spacing:-9.493333pt;}
.ws171{word-spacing:-9.333333pt;}
.ws16f{word-spacing:-9.066667pt;}
.wsf3{word-spacing:-8.944788pt;}
.ws175{word-spacing:-8.800000pt;}
.ws50{word-spacing:-8.640000pt;}
.wse2{word-spacing:-8.053333pt;}
.ws3a{word-spacing:-7.786667pt;}
.wsf2{word-spacing:-7.413333pt;}
.wsa8{word-spacing:-7.253333pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws172{word-spacing:-0.533333pt;}
.wsf4{word-spacing:-0.496933pt;}
.ws21{word-spacing:-0.426667pt;}
.ws2e{word-spacing:-0.386503pt;}
.wsd{word-spacing:-0.384000pt;}
.ws16c{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.305155pt;}
.wse{word-spacing:-0.288000pt;}
.wsc{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws15c{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws176{word-spacing:0.110429pt;}
.ws173{word-spacing:0.160000pt;}
.wsb{word-spacing:0.192000pt;}
.wse0{word-spacing:0.213333pt;}
.ws3{word-spacing:0.298667pt;}
.ws6{word-spacing:0.373333pt;}
.ws1{word-spacing:0.384000pt;}
.ws24{word-spacing:0.426667pt;}
.ws7{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.693333pt;}
.ws29{word-spacing:0.800000pt;}
.ws26{word-spacing:0.906667pt;}
.ws23{word-spacing:1.013333pt;}
.ws28{word-spacing:1.066667pt;}
.ws2d{word-spacing:1.173333pt;}
.ws25{word-spacing:1.386667pt;}
.ws2b{word-spacing:1.653333pt;}
.ws5{word-spacing:3.584000pt;}
.ws31{word-spacing:49.712533pt;}
.ws30{word-spacing:55.386133pt;}
.ws96{word-spacing:61.813333pt;}
.ws95{word-spacing:65.226667pt;}
.ws98{word-spacing:65.493333pt;}
.wsdf{word-spacing:100.469333pt;}
.wsb3{word-spacing:105.632000pt;}
.wsbf{word-spacing:106.485333pt;}
.wsc5{word-spacing:107.600000pt;}
.ws9e{word-spacing:109.018667pt;}
.wsad{word-spacing:109.792000pt;}
.wsd2{word-spacing:110.101333pt;}
.wsce{word-spacing:110.362667pt;}
.wsd7{word-spacing:111.162667pt;}
.wsca{word-spacing:111.232000pt;}
.wsb9{word-spacing:112.522667pt;}
.ws97{word-spacing:113.600000pt;}
.ws7e{word-spacing:114.302933pt;}
.wsa3{word-spacing:114.432000pt;}
.wsa7{word-spacing:114.640000pt;}
.ws12d{word-spacing:137.174400pt;}
.wsb1{word-spacing:138.640000pt;}
.wsbd{word-spacing:139.290667pt;}
.wsc3{word-spacing:139.808000pt;}
.wsfc{word-spacing:140.802133pt;}
.ws101{word-spacing:142.118400pt;}
.ws9c{word-spacing:142.330667pt;}
.wsfb{word-spacing:142.993067pt;}
.ws106{word-spacing:143.361067pt;}
.ws113{word-spacing:143.574400pt;}
.wsc9{word-spacing:144.176000pt;}
.ws10a{word-spacing:144.374400pt;}
.ws115{word-spacing:145.143467pt;}
.wsdd{word-spacing:145.152000pt;}
.wsc4{word-spacing:145.669333pt;}
.ws11c{word-spacing:146.347733pt;}
.wsbe{word-spacing:146.640000pt;}
.wsf7{word-spacing:147.121067pt;}
.ws118{word-spacing:147.910400pt;}
.ws6f{word-spacing:148.190933pt;}
.ws124{word-spacing:149.547733pt;}
.ws11f{word-spacing:154.491733pt;}
.ws130{word-spacing:155.629867pt;}
.ws8f{word-spacing:155.978667pt;}
.ws12e{word-spacing:156.343467pt;}
.wscf{word-spacing:157.125333pt;}
.ws129{word-spacing:157.211733pt;}
.ws12f{word-spacing:157.970133pt;}
.wsc1{word-spacing:158.160000pt;}
.ws92{word-spacing:158.341333pt;}
.ws10f{word-spacing:158.779733pt;}
.wsc7{word-spacing:159.216000pt;}
.ws80{word-spacing:159.408000pt;}
.ws88{word-spacing:159.541333pt;}
.wsaf{word-spacing:160.309333pt;}
.wsb5{word-spacing:160.688000pt;}
.ws7a{word-spacing:161.130667pt;}
.ws64{word-spacing:161.541333pt;}
.wsaa{word-spacing:161.658667pt;}
.ws72{word-spacing:161.994667pt;}
.ws4b{word-spacing:162.586667pt;}
.wsfe{word-spacing:162.691200pt;}
.ws108{word-spacing:162.733867pt;}
.wsdb{word-spacing:162.741333pt;}
.ws54{word-spacing:163.114667pt;}
.ws5d{word-spacing:163.280000pt;}
.ws122{word-spacing:163.416533pt;}
.ws10c{word-spacing:163.527467pt;}
.ws3e{word-spacing:163.610667pt;}
.ws44{word-spacing:163.674667pt;}
.ws48{word-spacing:163.797333pt;}
.ws15d{word-spacing:163.888000pt;}
.ws6a{word-spacing:164.026667pt;}
.ws10b{word-spacing:164.167467pt;}
.ws107{word-spacing:164.359467pt;}
.ws12b{word-spacing:164.487467pt;}
.ws116{word-spacing:164.755200pt;}
.ws127{word-spacing:164.936533pt;}
.ws60{word-spacing:165.088000pt;}
.wsfa{word-spacing:165.240533pt;}
.ws125{word-spacing:165.319467pt;}
.ws11b{word-spacing:165.379200pt;}
.wsf8{word-spacing:165.404800pt;}
.ws76{word-spacing:165.445333pt;}
.ws119{word-spacing:165.724800pt;}
.ws120{word-spacing:165.799467pt;}
.wsb7{word-spacing:165.840000pt;}
.ws4f{word-spacing:165.866667pt;}
.ws41{word-spacing:166.266667pt;}
.ws126{word-spacing:166.290133pt;}
.ws68{word-spacing:166.405333pt;}
.ws103{word-spacing:166.524800pt;}
.wsf9{word-spacing:166.626133pt;}
.ws111{word-spacing:166.812800pt;}
.ws114{word-spacing:167.015467pt;}
.ws121{word-spacing:167.346133pt;}
.ws102{word-spacing:167.447467pt;}
.wsa0{word-spacing:167.728000pt;}
.ws110{word-spacing:167.868800pt;}
.wsde{word-spacing:168.096000pt;}
.wsa2{word-spacing:168.186667pt;}
.ws84{word-spacing:168.485333pt;}
.wsa6{word-spacing:168.506667pt;}
.wsb8{word-spacing:168.549333pt;}
.wsa1{word-spacing:168.917333pt;}
.wscd{word-spacing:169.221333pt;}
.ws35{word-spacing:169.328000pt;}
.wsd6{word-spacing:169.626667pt;}
.ws91{word-spacing:170.208000pt;}
.ws104{word-spacing:170.275200pt;}
.ws10d{word-spacing:170.653867pt;}
.wsd1{word-spacing:170.949333pt;}
.ws9d{word-spacing:171.786667pt;}
.ws4{word-spacing:172.629333pt;}
.ws12a{word-spacing:172.668800pt;}
.wsfd{word-spacing:172.930133pt;}
.ws2{word-spacing:173.077333pt;}
.ws12c{word-spacing:173.344000pt;}
.ws39{word-spacing:173.610667pt;}
.ws6d{word-spacing:174.720000pt;}
.ws58{word-spacing:174.874667pt;}
.ws9a{word-spacing:175.578667pt;}
.wsb2{word-spacing:176.565333pt;}
.ws11a{word-spacing:177.367467pt;}
.wsac{word-spacing:179.984000pt;}
.ws57{word-spacing:180.416000pt;}
.ws47{word-spacing:181.253333pt;}
.ws83{word-spacing:183.045333pt;}
.ws75{word-spacing:183.093333pt;}
.ws7d{word-spacing:183.402667pt;}
.ws67{word-spacing:183.578667pt;}
.ws8b{word-spacing:184.005333pt;}
.ws6c{word-spacing:184.058667pt;}
.ws38{word-spacing:186.736000pt;}
.ws4e{word-spacing:188.266667pt;}
.wsd4{word-spacing:188.288000pt;}
.wsbb{word-spacing:189.381333pt;}
.ws5f{word-spacing:190.432000pt;}
.wscc{word-spacing:195.866667pt;}
.ws8e{word-spacing:198.794667pt;}
.ws10e{word-spacing:203.504000pt;}
.ws112{word-spacing:205.130667pt;}
.ws105{word-spacing:205.397333pt;}
.ws109{word-spacing:205.466667pt;}
.ws5c{word-spacing:205.488000pt;}
.ws43{word-spacing:205.600000pt;}
.ws3d{word-spacing:205.946667pt;}
.ws11e{word-spacing:206.586667pt;}
.ws63{word-spacing:206.704000pt;}
.ws87{word-spacing:206.917333pt;}
.ws73{word-spacing:207.082667pt;}
.ws65{word-spacing:207.125333pt;}
.wsf6{word-spacing:207.360000pt;}
.ws69{word-spacing:207.642667pt;}
.ws100{word-spacing:208.565333pt;}
.ws6b{word-spacing:208.933333pt;}
.ws4a{word-spacing:209.146667pt;}
.ws53{word-spacing:209.226667pt;}
.ws128{word-spacing:209.317333pt;}
.ws4c{word-spacing:209.434667pt;}
.ws81{word-spacing:210.288000pt;}
.ws90{word-spacing:210.314667pt;}
.ws7b{word-spacing:210.602667pt;}
.ws5e{word-spacing:210.629333pt;}
.ws89{word-spacing:210.778667pt;}
.ws36{word-spacing:210.842667pt;}
.ws34{word-spacing:210.992000pt;}
.ws55{word-spacing:211.168000pt;}
.ws45{word-spacing:211.445333pt;}
.ws3f{word-spacing:211.584000pt;}
.ws117{word-spacing:212.650667pt;}
.ws79{word-spacing:214.842667pt;}
.ws123{word-spacing:215.813333pt;}
.ws8a{word-spacing:218.165333pt;}
.ws82{word-spacing:218.778667pt;}
.ws46{word-spacing:219.226667pt;}
.ws74{word-spacing:219.717333pt;}
.ws4d{word-spacing:220.176000pt;}
.ws56{word-spacing:220.640000pt;}
.ws66{word-spacing:220.709333pt;}
.ws7c{word-spacing:221.120000pt;}
.ws8d{word-spacing:225.113600pt;}
.ws37{word-spacing:228.746667pt;}
.ws32{word-spacing:229.646933pt;}
.ws51{word-spacing:230.990933pt;}
.ws62{word-spacing:231.626667pt;}
.ws40{word-spacing:232.208000pt;}
.ws86{word-spacing:232.266667pt;}
.ws7f{word-spacing:232.906667pt;}
.ws5b{word-spacing:233.706667pt;}
.ws3b{word-spacing:233.966933pt;}
.ws33{word-spacing:235.146667pt;}
.ws70{word-spacing:235.306667pt;}
.ws52{word-spacing:235.626667pt;}
.ws71{word-spacing:236.266667pt;}
.ws49{word-spacing:236.586667pt;}
.ws3c{word-spacing:237.546667pt;}
.ws78{word-spacing:238.506667pt;}
.ws5a{word-spacing:242.078933pt;}
.ws16e{word-spacing:258.458667pt;}
.ws16{word-spacing:282.363200pt;}
.ws1b{word-spacing:297.022400pt;}
.wsf1{word-spacing:299.056000pt;}
.ws10{word-spacing:301.466667pt;}
.wsd5{word-spacing:308.816000pt;}
.ws9b{word-spacing:312.448000pt;}
.wsda{word-spacing:323.328000pt;}
.ws16d{word-spacing:324.053333pt;}
.wsc8{word-spacing:324.202667pt;}
.ws11{word-spacing:330.072000pt;}
.wsdc{word-spacing:330.096000pt;}
.ws159{word-spacing:334.070400pt;}
.wsf0{word-spacing:334.288000pt;}
.wsef{word-spacing:335.210667pt;}
.wseb{word-spacing:335.413333pt;}
.wsb0{word-spacing:335.546667pt;}
.wsc2{word-spacing:336.186667pt;}
.ws17{word-spacing:336.394667pt;}
.wsbc{word-spacing:339.082667pt;}
.wsb6{word-spacing:339.584000pt;}
.wse5{word-spacing:339.605333pt;}
.wsab{word-spacing:340.005333pt;}
.ws1d{word-spacing:342.915200pt;}
.ws132{word-spacing:343.099733pt;}
.ws15a{word-spacing:343.194667pt;}
.ws13f{word-spacing:344.086400pt;}
.wsd0{word-spacing:344.709333pt;}
.ws14c{word-spacing:345.521067pt;}
.wse9{word-spacing:346.560000pt;}
.ws11d{word-spacing:346.926933pt;}
.ws149{word-spacing:348.006400pt;}
.ws14f{word-spacing:348.374400pt;}
.ws14d{word-spacing:349.306667pt;}
.ws155{word-spacing:349.697067pt;}
.ws13a{word-spacing:350.650667pt;}
.ws150{word-spacing:352.634667pt;}
.ws143{word-spacing:352.837333pt;}
.ws13d{word-spacing:353.216000pt;}
.ws140{word-spacing:353.738667pt;}
.ws147{word-spacing:354.346667pt;}
.ws146{word-spacing:354.667733pt;}
.ws13c{word-spacing:355.686400pt;}
.ws133{word-spacing:357.973333pt;}
.ws139{word-spacing:358.486400pt;}
.ws153{word-spacing:358.917333pt;}
.ws14{word-spacing:359.061333pt;}
.ws135{word-spacing:359.142400pt;}
.ws14a{word-spacing:359.434667pt;}
.ws156{word-spacing:360.085333pt;}
.ws136{word-spacing:360.181333pt;}
.wsb4{word-spacing:370.421333pt;}
.wse7{word-spacing:371.344000pt;}
.wsd3{word-spacing:372.933333pt;}
.ws142{word-spacing:373.707733pt;}
.wsba{word-spacing:373.781333pt;}
.wsc0{word-spacing:373.898667pt;}
.wsa9{word-spacing:374.192000pt;}
.wsed{word-spacing:374.394667pt;}
.wsae{word-spacing:374.586667pt;}
.wse4{word-spacing:374.741333pt;}
.wse3{word-spacing:374.890667pt;}
.ws9f{word-spacing:375.050667pt;}
.wscb{word-spacing:375.877333pt;}
.wsec{word-spacing:376.496000pt;}
.wsa5{word-spacing:376.837333pt;}
.ws161{word-spacing:377.514667pt;}
.ws170{word-spacing:379.173333pt;}
.ws15e{word-spacing:379.989333pt;}
.ws152{word-spacing:383.606400pt;}
.ws174{word-spacing:385.600000pt;}
.wse1{word-spacing:385.744000pt;}
.ws99{word-spacing:386.154667pt;}
.wsd9{word-spacing:393.386667pt;}
.wsc6{word-spacing:400.426667pt;}
.ws94{word-spacing:404.640000pt;}
.ws158{word-spacing:469.118933pt;}
.ws148{word-spacing:501.918933pt;}
.ws141{word-spacing:502.617600pt;}
.ws13b{word-spacing:502.638933pt;}
.ws131{word-spacing:503.593600pt;}
.ws134{word-spacing:503.908267pt;}
.ws14e{word-spacing:504.585600pt;}
.ws13e{word-spacing:504.692267pt;}
.ws151{word-spacing:505.150933pt;}
.ws138{word-spacing:507.694933pt;}
.ws145{word-spacing:508.025600pt;}
.ws22{word-spacing:508.640000pt;}
.ws154{word-spacing:509.636267pt;}
.ws16a{word-spacing:509.945600pt;}
.ws14b{word-spacing:528.313600pt;}
.ws157{word-spacing:550.446933pt;}
.ws169{word-spacing:555.780267pt;}
.wsf5{word-spacing:561.700267pt;}
.ws1e{word-spacing:653.029867pt;}
.ws18{word-spacing:667.689067pt;}
.ws13{word-spacing:713.581867pt;}
.ws1c{word-spacing:729.728000pt;}
.ws16b{word-spacing:828.741333pt;}
.ws166{word-spacing:974.265600pt;}
.ws160{word-spacing:974.382933pt;}
.ws164{word-spacing:975.225600pt;}
.ws168{word-spacing:977.801600pt;}
.ws163{word-spacing:978.628267pt;}
.ws165{word-spacing:983.428267pt;}
.ws1a{word-spacing:1046.363200pt;}
.ws20{word-spacing:1061.022400pt;}
.ws15{word-spacing:1106.915200pt;}
._a8{margin-left:-2681.237754pt;}
._4e{margin-left:-2663.081594pt;}
._aa{margin-left:-1589.525032pt;}
._8{margin-left:-173.399467pt;}
._a9{margin-left:-140.746305pt;}
._a{margin-left:-138.242667pt;}
._9{margin-left:-76.167467pt;}
._5{margin-left:-11.136000pt;}
._3{margin-left:-9.600000pt;}
._e{margin-left:-8.064000pt;}
._7b{margin-left:-7.102717pt;}
._2{margin-left:-5.686184pt;}
._4c{margin-left:-4.350933pt;}
._4{margin-left:-3.401816pt;}
._0{margin-left:-2.219308pt;}
._1{margin-left:-1.127467pt;}
._7{width:1.625600pt;}
._6{width:2.667308pt;}
._10{width:4.306558pt;}
._6c{width:5.515733pt;}
._18{width:14.112000pt;}
._d{width:27.792000pt;}
._11{width:31.287042pt;}
._b{width:36.912000pt;}
._5a{width:45.493333pt;}
._42{width:57.337824pt;}
._a4{width:59.948800pt;}
._5e{width:61.288000pt;}
._5f{width:69.732908pt;}
._65{width:74.222933pt;}
._78{width:75.760008pt;}
._1e{width:77.988267pt;}
._6d{width:84.885975pt;}
._57{width:87.438083pt;}
._16{width:94.656000pt;}
._13{width:98.368000pt;}
._1f{width:104.654933pt;}
._17{width:107.760000pt;}
._72{width:114.046083pt;}
._19{width:116.016000pt;}
._60{width:119.119467pt;}
._6f{width:124.712750pt;}
._f{width:142.080000pt;}
._63{width:145.790933pt;}
._a1{width:146.774400pt;}
._a6{width:148.206933pt;}
._91{width:151.581867pt;}
._14{width:153.141333pt;}
._56{width:155.047467pt;}
._87{width:157.654400pt;}
._4a{width:163.503791pt;}
._15{width:166.320000pt;}
._62{width:169.118933pt;}
._67{width:171.072642pt;}
._12{width:172.584533pt;}
._76{width:176.051200pt;}
._1d{width:177.706667pt;}
._c{width:179.520000pt;}
._7e{width:180.980267pt;}
._99{width:185.593600pt;}
._90{width:187.193600pt;}
._61{width:192.200958pt;}
._68{width:198.016425pt;}
._6b{width:208.106667pt;}
._66{width:211.421867pt;}
._71{width:213.714133pt;}
._73{width:216.419834pt;}
._9f{width:219.660375pt;}
._6a{width:224.380800pt;}
._64{width:231.486933pt;}
._a5{width:234.789333pt;}
._58{width:235.819308pt;}
._79{width:241.946242pt;}
._a3{width:244.320642pt;}
._8b{width:251.147733pt;}
._52{width:252.823467pt;}
._92{width:255.140267pt;}
._35{width:258.879582pt;}
._9b{width:260.140375pt;}
._59{width:261.306242pt;}
._2f{width:263.869665pt;}
._83{width:266.294400pt;}
._8f{width:268.206933pt;}
._8a{width:276.439683pt;}
._8e{width:278.642133pt;}
._4f{width:280.928000pt;}
._9c{width:284.346242pt;}
._70{width:287.626667pt;}
._9e{width:288.961067pt;}
._2b{width:294.447582pt;}
._69{width:298.293333pt;}
._53{width:305.696000pt;}
._97{width:307.833600pt;}
._50{width:313.387308pt;}
._7d{width:315.048533pt;}
._95{width:319.734400pt;}
._2a{width:323.017824pt;}
._84{width:325.166933pt;}
._36{width:328.779741pt;}
._3e{width:334.100699pt;}
._26{width:336.783582pt;}
._96{width:337.892908pt;}
._94{width:340.239575pt;}
._a0{width:342.606933pt;}
._55{width:346.496000pt;}
._9d{width:348.612908pt;}
._54{width:350.528000pt;}
._9a{width:362.180267pt;}
._3f{width:366.687582pt;}
._a2{width:373.420375pt;}
._4b{width:375.051741pt;}
._85{width:376.107733pt;}
._25{width:378.879582pt;}
._77{width:381.441067pt;}
._6e{width:385.546667pt;}
._93{width:389.060267pt;}
._3a{width:391.095049pt;}
._48{width:400.047582pt;}
._51{width:418.064000pt;}
._3d{width:419.775582pt;}
._8c{width:421.493333pt;}
._30{width:430.868699pt;}
._8d{width:432.160000pt;}
._49{width:441.278516pt;}
._40{width:444.129074pt;}
._82{width:450.020267pt;}
._75{width:455.353600pt;}
._46{width:461.847049pt;}
._22{width:468.795741pt;}
._74{width:470.606933pt;}
._23{width:492.657074pt;}
._31{width:496.749233pt;}
._33{width:498.596699pt;}
._24{width:500.877233pt;}
._21{width:506.602249pt;}
._38{width:523.659741pt;}
._2d{width:528.717233pt;}
._20{width:534.598941pt;}
._2c{width:549.626891pt;}
._45{width:558.225074pt;}
._34{width:573.723741pt;}
._7c{width:578.435416pt;}
._37{width:585.339741pt;}
._47{width:612.380382pt;}
._29{width:618.573233pt;}
._28{width:621.885233pt;}
._39{width:623.806091pt;}
._2e{width:648.333233pt;}
._27{width:662.493233pt;}
._3b{width:679.071582pt;}
._44{width:716.091741pt;}
._5d{width:727.444908pt;}
._3c{width:735.176541pt;}
._43{width:743.277233pt;}
._32{width:756.573233pt;}
._41{width:758.253233pt;}
._a7{width:821.519575pt;}
._7a{width:932.810257pt;}
._7f{width:933.715200pt;}
._1c{width:1117.375150pt;}
._88{width:1137.850458pt;}
._89{width:1301.998508pt;}
._98{width:1384.257813pt;}
._80{width:1388.185175pt;}
._5b{width:1393.135046pt;}
._5c{width:1411.291206pt;}
._1b{width:1416.748485pt;}
._86{width:1425.219200pt;}
._1a{width:1429.356374pt;}
._4d{width:1434.904645pt;}
._81{width:1530.659200pt;}
.fsc{font-size:42.666667pt;}
.fs0{font-size:44.386164pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:55.214741pt;}
.fs7{font-size:61.030901pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs9{font-size:149.333333pt;}
.fs4{font-size:192.000000pt;}
.fsd{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.245467pt;}
.y1a0{bottom:71.333333pt;}
.yfb{bottom:78.666667pt;}
.y20a{bottom:84.000000pt;}
.y26f{bottom:88.666667pt;}
.y26d{bottom:89.908533pt;}
.y177{bottom:90.000000pt;}
.y273{bottom:92.000000pt;}
.y208{bottom:98.666667pt;}
.y18c{bottom:106.849467pt;}
.y1ab{bottom:109.016133pt;}
.y124{bottom:110.077467pt;}
.y257{bottom:110.297200pt;}
.y1c0{bottom:112.000000pt;}
.y231{bottom:124.135067pt;}
.y18b{bottom:125.516133pt;}
.y1aa{bottom:127.682800pt;}
.y299{bottom:128.346800pt;}
.y256{bottom:131.950400pt;}
.y123{bottom:142.759067pt;}
.y18a{bottom:144.182800pt;}
.y230{bottom:145.788267pt;}
.y298{bottom:146.346800pt;}
.y1a9{bottom:146.349467pt;}
.y255{bottom:150.617067pt;}
.y1e8{bottom:153.013467pt;}
.y30{bottom:156.767067pt;}
.y1e9{bottom:162.000000pt;}
.y189{bottom:162.849467pt;}
.y297{bottom:164.346800pt;}
.y22f{bottom:164.454933pt;}
.y1a8{bottom:165.016133pt;}
.y122{bottom:169.908400pt;}
.y90{bottom:170.378800pt;}
.y254{bottom:172.270133pt;}
.y1e7{bottom:177.013467pt;}
.y188{bottom:181.516133pt;}
.y2f{bottom:183.433733pt;}
.y1a7{bottom:183.682800pt;}
.y121{bottom:184.308400pt;}
.y176{bottom:185.117467pt;}
.y8f{bottom:186.378800pt;}
.y22e{bottom:188.454933pt;}
.y296{bottom:190.346800pt;}
.y253{bottom:190.936800pt;}
.y207{bottom:198.346800pt;}
.y187{bottom:200.182800pt;}
.y1e6{bottom:201.013467pt;}
.y1a6{bottom:202.349467pt;}
.y8e{bottom:202.378800pt;}
.y40{bottom:203.069067pt;}
.y120{bottom:204.575067pt;}
.y252{bottom:209.603467pt;}
.y2e{bottom:210.100400pt;}
.y22d{bottom:212.454933pt;}
.y173{bottom:213.734267pt;}
.y295{bottom:216.346800pt;}
.y7{bottom:217.899067pt;}
.y8d{bottom:218.378800pt;}
.y186{bottom:218.849467pt;}
.y11f{bottom:218.975067pt;}
.y206{bottom:219.680133pt;}
.y1a5{bottom:221.016133pt;}
.y3f{bottom:221.735733pt;}
.y1e5{bottom:225.013467pt;}
.y161{bottom:225.077467pt;}
.y251{bottom:228.270133pt;}
.y22c{bottom:234.108133pt;}
.y8c{bottom:234.378800pt;}
.y31{bottom:235.273867pt;}
.y185{bottom:237.516133pt;}
.y172{bottom:237.734267pt;}
.y11e{bottom:239.241733pt;}
.y3e{bottom:240.402400pt;}
.y275{bottom:241.129333pt;}
.y294{bottom:242.346800pt;}
.y160{bottom:243.744133pt;}
.y1e4{bottom:249.734267pt;}
.y6{bottom:249.899067pt;}
.y250{bottom:249.923333pt;}
.y8b{bottom:250.378800pt;}
.y22b{bottom:252.774800pt;}
.y11d{bottom:253.641733pt;}
.y1bf{bottom:255.746800pt;}
.y205{bottom:257.180133pt;}
.y3d{bottom:259.069067pt;}
.y293{bottom:260.346800pt;}
.y171{bottom:261.734267pt;}
.y15f{bottom:262.410800pt;}
.y8a{bottom:266.378800pt;}
.y22a{bottom:271.441467pt;}
.y24f{bottom:271.576533pt;}
.y271{bottom:272.346667pt;}
.y19f{bottom:272.913467pt;}
.y1be{bottom:273.080133pt;}
.y1e3{bottom:273.734267pt;}
.y11c{bottom:273.908400pt;}
.y3c{bottom:277.735733pt;}
.yfa{bottom:278.346800pt;}
.y204{bottom:278.513467pt;}
.y2c{bottom:279.816000pt;}
.y15e{bottom:281.077467pt;}
.y5{bottom:281.899067pt;}
.y89{bottom:282.378800pt;}
.y170{bottom:283.387333pt;}
.yd9{bottom:287.680133pt;}
.y11b{bottom:288.308400pt;}
.y229{bottom:290.108133pt;}
.y19e{bottom:290.246800pt;}
.y24e{bottom:293.229600pt;}
.y1e2{bottom:295.387333pt;}
.y258{bottom:296.000000pt;}
.y292{bottom:296.346800pt;}
.y3b{bottom:296.402400pt;}
.yf9{bottom:297.013467pt;}
.y88{bottom:298.378800pt;}
.y15d{bottom:299.744133pt;}
.y203{bottom:299.846800pt;}
.y1bd{bottom:301.680133pt;}
.y16f{bottom:302.054000pt;}
.yd8{bottom:302.346800pt;}
.y2b{bottom:306.482667pt;}
.y19d{bottom:307.580133pt;}
.y228{bottom:308.774800pt;}
.y1e1{bottom:314.054000pt;}
.y291{bottom:314.346800pt;}
.y87{bottom:314.378800pt;}
.y24d{bottom:314.882800pt;}
.y3a{bottom:315.069067pt;}
.yf8{bottom:315.680133pt;}
.y11a{bottom:315.775067pt;}
.yda{bottom:317.013467pt;}
.yd7{bottom:317.045467pt;}
.y15c{bottom:318.410800pt;}
.y202{bottom:321.180133pt;}
.y16e{bottom:323.707200pt;}
.y1bc{bottom:325.680133pt;}
.y86{bottom:330.378800pt;}
.y1e0{bottom:332.720667pt;}
.y2a{bottom:333.149333pt;}
.y39{bottom:333.735733pt;}
.yf7{bottom:334.346800pt;}
.y19c{bottom:334.373867pt;}
.y24c{bottom:336.536000pt;}
.y15b{bottom:337.077467pt;}
.y26b{bottom:338.774800pt;}
.y290{bottom:340.346800pt;}
.y26c{bottom:341.077467pt;}
.y16d{bottom:342.373867pt;}
.y201{bottom:342.513467pt;}
.yd5{bottom:345.680133pt;}
.y227{bottom:346.108133pt;}
.y85{bottom:346.378800pt;}
.y1bb{bottom:349.680133pt;}
.y119{bottom:350.441733pt;}
.y38{bottom:352.402400pt;}
.yf6{bottom:353.013467pt;}
.y15a{bottom:355.744133pt;}
.y19{bottom:356.384133pt;}
.y1df{bottom:356.720667pt;}
.y26a{bottom:357.441467pt;}
.y24b{bottom:358.189067pt;}
.y28f{bottom:358.346800pt;}
.y19b{bottom:358.373867pt;}
.y29{bottom:360.118667pt;}
.yd6{bottom:360.346800pt;}
.yd4{bottom:360.378800pt;}
.y84{bottom:362.378800pt;}
.y200{bottom:363.846800pt;}
.y226{bottom:364.774800pt;}
.y16c{bottom:366.373867pt;}
.y37{bottom:371.069067pt;}
.yf5{bottom:371.680133pt;}
.y61{bottom:373.013467pt;}
.y1ba{bottom:373.680133pt;}
.y159{bottom:374.410800pt;}
.y18{bottom:375.050800pt;}
.y28e{bottom:376.346800pt;}
.y118{bottom:377.908400pt;}
.y83{bottom:378.378800pt;}
.y269{bottom:379.094533pt;}
.y24a{bottom:379.842267pt;}
.y1de{bottom:380.720667pt;}
.y19a{bottom:382.373867pt;}
.y225{bottom:383.441467pt;}
.y1ff{bottom:385.180133pt;}
.y36{bottom:389.735733pt;}
.yd2{bottom:390.346800pt;}
.y16b{bottom:390.373867pt;}
.y117{bottom:392.308400pt;}
.y158{bottom:393.077467pt;}
.y17{bottom:393.717467pt;}
.y28d{bottom:394.346800pt;}
.y82{bottom:394.378800pt;}
.yf4{bottom:395.680133pt;}
.y1b9{bottom:397.680133pt;}
.y268{bottom:397.761200pt;}
.y249{bottom:398.508933pt;}
.y28{bottom:401.193867pt;}
.y224{bottom:402.108133pt;}
.y1dd{bottom:404.720667pt;}
.yd3{bottom:405.013467pt;}
.yd1{bottom:405.045467pt;}
.y199{bottom:406.373867pt;}
.y1fe{bottom:406.513467pt;}
.y35{bottom:408.402400pt;}
.y81{bottom:410.378800pt;}
.y157{bottom:411.744133pt;}
.y28c{bottom:412.346800pt;}
.y116{bottom:412.575067pt;}
.y21{bottom:413.816000pt;}
.yf3{bottom:414.346800pt;}
.y16a{bottom:414.373867pt;}
.y267{bottom:419.414400pt;}
.y248{bottom:420.162133pt;}
.y223{bottom:420.774800pt;}
.y1b8{bottom:421.680133pt;}
.yae{bottom:422.346800pt;}
.y1a{bottom:424.149467pt;}
.y80{bottom:426.378800pt;}
.y115{bottom:426.975067pt;}
.y34{bottom:427.069067pt;}
.y1fd{bottom:427.846800pt;}
.y27{bottom:427.860533pt;}
.y1dc{bottom:428.720667pt;}
.y198{bottom:430.373867pt;}
.y156{bottom:430.410800pt;}
.y20{bottom:432.482667pt;}
.yf2{bottom:433.013467pt;}
.ycf{bottom:437.013467pt;}
.y28b{bottom:438.346800pt;}
.y169{bottom:438.373867pt;}
.yad{bottom:441.013467pt;}
.y266{bottom:441.067600pt;}
.y247{bottom:441.815333pt;}
.y7f{bottom:442.378800pt;}
.y222{bottom:444.774800pt;}
.y1b7{bottom:445.680133pt;}
.y33{bottom:445.735733pt;}
.y1fc{bottom:449.180133pt;}
.y1db{bottom:450.373867pt;}
.y1f{bottom:451.149333pt;}
.yd0{bottom:451.680133pt;}
.yce{bottom:451.712133pt;}
.y197{bottom:454.373867pt;}
.y114{bottom:454.441733pt;}
.y26{bottom:454.527200pt;}
.y13e{bottom:456.949600pt;}
.y7e{bottom:458.378800pt;}
.yac{bottom:459.680133pt;}
.y265{bottom:459.734267pt;}
.y155{bottom:461.077467pt;}
.y168{bottom:462.373867pt;}
.y246{bottom:463.468400pt;}
.y28a{bottom:464.346800pt;}
.y32{bottom:464.402400pt;}
.y221{bottom:468.774800pt;}
.y1da{bottom:469.040533pt;}
.y1e{bottom:469.816000pt;}
.yf1{bottom:470.346800pt;}
.y1fb{bottom:470.513467pt;}
.y1b6{bottom:471.707200pt;}
.y7d{bottom:474.378800pt;}
.y13d{bottom:475.616267pt;}
.yab{bottom:478.346800pt;}
.y196{bottom:478.373867pt;}
.y264{bottom:478.400933pt;}
.y25{bottom:481.193867pt;}
.ycc{bottom:481.680133pt;}
.y245{bottom:482.135067pt;}
.y289{bottom:482.346800pt;}
.y167{bottom:486.373867pt;}
.y154{bottom:487.744133pt;}
.y1d{bottom:488.482667pt;}
.yf0{bottom:489.013467pt;}
.y113{bottom:489.108400pt;}
.y7c{bottom:490.378800pt;}
.y220{bottom:490.427867pt;}
.y1d9{bottom:490.725733pt;}
.y1fa{bottom:491.846800pt;}
.y16{bottom:492.151733pt;}
.y13c{bottom:494.282933pt;}
.y1b5{bottom:495.707200pt;}
.ycd{bottom:496.346800pt;}
.ycb{bottom:496.378800pt;}
.yaa{bottom:497.013467pt;}
.y41{bottom:499.434933pt;}
.y263{bottom:500.054000pt;}
.y288{bottom:500.346800pt;}
.y244{bottom:500.801733pt;}
.y195{bottom:502.373867pt;}
.y153{bottom:505.077467pt;}
.y7b{bottom:506.378800pt;}
.y1c{bottom:507.149333pt;}
.yef{bottom:507.680133pt;}
.y24{bottom:507.860533pt;}
.y15{bottom:508.151733pt;}
.y21f{bottom:509.094533pt;}
.y166{bottom:510.373867pt;}
.y13b{bottom:512.949600pt;}
.ya9{bottom:515.680133pt;}
.y1d8{bottom:516.346800pt;}
.y112{bottom:516.575067pt;}
.y287{bottom:518.346800pt;}
.y262{bottom:518.720667pt;}
.y1b4{bottom:519.707200pt;}
.y7a{bottom:522.378800pt;}
.y243{bottom:522.454933pt;}
.y1d7{bottom:523.680133pt;}
.y14{bottom:524.151733pt;}
.y1b{bottom:525.816000pt;}
.y194{bottom:526.373867pt;}
.yc9{bottom:527.013467pt;}
.y12{bottom:529.169333pt;}
.y21e{bottom:530.747733pt;}
.y111{bottom:530.975067pt;}
.y13a{bottom:531.616267pt;}
.yee{bottom:531.680133pt;}
.y165{bottom:532.059067pt;}
.ya8{bottom:534.346800pt;}
.y23{bottom:534.527200pt;}
.y286{bottom:536.346800pt;}
.y150{bottom:536.720667pt;}
.y261{bottom:537.387333pt;}
.y79{bottom:538.378800pt;}
.y13{bottom:540.151733pt;}
.yca{bottom:541.680133pt;}
.yc8{bottom:541.712133pt;}
.y1f9{bottom:542.346800pt;}
.y1b3{bottom:543.707200pt;}
.y242{bottom:544.108133pt;}
.y21d{bottom:549.414400pt;}
.y139{bottom:550.282933pt;}
.yed{bottom:550.346800pt;}
.y193{bottom:550.373867pt;}
.y110{bottom:551.575067pt;}
.ya7{bottom:553.013467pt;}
.y285{bottom:554.346800pt;}
.y78{bottom:554.378800pt;}
.y260{bottom:556.054000pt;}
.y2d{bottom:556.511200pt;}
.y163{bottom:557.680133pt;}
.y22{bottom:560.503600pt;}
.y14f{bottom:560.720667pt;}
.y1d6{bottom:562.154933pt;}
.y241{bottom:562.774800pt;}
.y162{bottom:565.013467pt;}
.y10f{bottom:565.975067pt;}
.y1b2{bottom:567.707200pt;}
.y138{bottom:568.949600pt;}
.yec{bottom:569.013467pt;}
.y77{bottom:570.378800pt;}
.yc6{bottom:570.846800pt;}
.y21c{bottom:571.067600pt;}
.ya6{bottom:571.680133pt;}
.y164{bottom:572.346800pt;}
.y192{bottom:574.373867pt;}
.y25f{bottom:574.720667pt;}
.y11{bottom:575.697333pt;}
.y284{bottom:580.346800pt;}
.y1d5{bottom:580.821600pt;}
.y240{bottom:584.427867pt;}
.y14e{bottom:584.720667pt;}
.yc7{bottom:585.513467pt;}
.yc5{bottom:585.545467pt;}
.y76{bottom:586.378800pt;}
.y137{bottom:587.616267pt;}
.yeb{bottom:587.680133pt;}
.y10e{bottom:588.252400pt;}
.y52{bottom:589.013467pt;}
.y1b1{bottom:589.392400pt;}
.y21b{bottom:589.734267pt;}
.ya5{bottom:590.346800pt;}
.y25e{bottom:596.373867pt;}
.y191{bottom:598.373867pt;}
.y1d4{bottom:599.488267pt;}
.y175{bottom:601.013467pt;}
.y75{bottom:602.378800pt;}
.y10d{bottom:602.919067pt;}
.y23f{bottom:606.081067pt;}
.y136{bottom:606.282933pt;}
.yea{bottom:606.346800pt;}
.y14d{bottom:606.373867pt;}
.y51{bottom:607.680133pt;}
.y21a{bottom:608.400933pt;}
.ya4{bottom:609.013467pt;}
.yc3{bottom:614.846800pt;}
.y1af{bottom:615.013467pt;}
.y25d{bottom:615.040533pt;}
.y10b{bottom:618.132933pt;}
.y74{bottom:618.378800pt;}
.y190{bottom:620.059067pt;}
.yf{bottom:621.731600pt;}
.y1ad{bottom:622.346800pt;}
.ye9{bottom:625.013467pt;}
.y14c{bottom:625.040533pt;}
.y1d3{bottom:626.154933pt;}
.yd{bottom:626.186667pt;}
.y50{bottom:626.346800pt;}
.ya3{bottom:627.680133pt;}
.y23e{bottom:627.734267pt;}
.yc2{bottom:629.513467pt;}
.y1ac{bottom:629.680133pt;}
.y219{bottom:630.054000pt;}
.y283{bottom:632.346800pt;}
.y135{bottom:632.949600pt;}
.y25c{bottom:633.707200pt;}
.y73{bottom:634.378800pt;}
.y1b0{bottom:637.013467pt;}
.ye{bottom:637.731600pt;}
.y10c{bottom:638.959467pt;}
.y1f8{bottom:643.680133pt;}
.yc4{bottom:644.180133pt;}
.yc1{bottom:644.212133pt;}
.y1ae{bottom:644.346800pt;}
.y1d2{bottom:644.821600pt;}
.y4f{bottom:645.013467pt;}
.y18e{bottom:645.680133pt;}
.ya2{bottom:646.346800pt;}
.y23d{bottom:646.400933pt;}
.y14b{bottom:646.693733pt;}
.y218{bottom:648.720667pt;}
.ye8{bottom:649.013467pt;}
.y282{bottom:650.346800pt;}
.y72{bottom:650.378800pt;}
.y134{bottom:651.616267pt;}
.y25b{bottom:652.373867pt;}
.y18d{bottom:653.013467pt;}
.y18f{bottom:660.346800pt;}
.y1f7{bottom:662.346800pt;}
.y1d1{bottom:663.488267pt;}
.y4e{bottom:663.680133pt;}
.ya1{bottom:665.013467pt;}
.y23c{bottom:665.067600pt;}
.y14a{bottom:665.360400pt;}
.y71{bottom:666.378800pt;}
.y217{bottom:667.387333pt;}
.ye7{bottom:667.680133pt;}
.y133{bottom:670.282933pt;}
.y25a{bottom:671.040533pt;}
.ybf{bottom:672.346800pt;}
.y1a4{bottom:673.013467pt;}
.y281{bottom:676.346800pt;}
.y10{bottom:677.282133pt;}
.y10a{bottom:679.488267pt;}
.y1f6{bottom:681.013467pt;}
.y1d0{bottom:682.154933pt;}
.y4d{bottom:682.346800pt;}
.y70{bottom:682.378800pt;}
.ya0{bottom:683.680133pt;}
.y23b{bottom:683.734267pt;}
.y216{bottom:686.054000pt;}
.ye6{bottom:686.346800pt;}
.ybe{bottom:687.013467pt;}
.y132{bottom:688.949600pt;}
.y149{bottom:689.360400pt;}
.y184{bottom:691.680133pt;}
.y109{bottom:698.154933pt;}
.y6f{bottom:698.378800pt;}
.y1a3{bottom:699.680133pt;}
.y1cf{bottom:700.821600pt;}
.y4c{bottom:701.013467pt;}
.ybd{bottom:701.680133pt;}
.y60{bottom:702.154933pt;}
.y9f{bottom:702.346800pt;}
.y215{bottom:704.720667pt;}
.ye5{bottom:705.013467pt;}
.y23a{bottom:705.387333pt;}
.y272{bottom:705.808267pt;}
.y131{bottom:707.616267pt;}
.y259{bottom:708.373867pt;}
.y183{bottom:710.346800pt;}
.y148{bottom:713.360400pt;}
.y6e{bottom:714.378800pt;}
.yc0{bottom:716.346800pt;}
.ybc{bottom:716.378800pt;}
.y1a2{bottom:718.346800pt;}
.y1ce{bottom:719.488267pt;}
.y4b{bottom:719.680133pt;}
.y280{bottom:720.346800pt;}
.y5f{bottom:720.821600pt;}
.y9e{bottom:721.013467pt;}
.y214{bottom:723.387333pt;}
.y108{bottom:724.821600pt;}
.yb{bottom:724.897600pt;}
.y130{bottom:726.282933pt;}
.y1f5{bottom:726.346800pt;}
.y239{bottom:727.040533pt;}
.ye4{bottom:729.013467pt;}
.y6d{bottom:730.378800pt;}
.y182{bottom:737.013467pt;}
.y276{bottom:737.025600pt;}
.y147{bottom:737.360400pt;}
.y1cd{bottom:738.154933pt;}
.y4a{bottom:738.346800pt;}
.y1ea{bottom:739.030533pt;}
.y5e{bottom:739.488267pt;}
.y9d{bottom:739.680133pt;}
.y213{bottom:742.054000pt;}
.y107{bottom:743.488267pt;}
.y12f{bottom:744.949600pt;}
.yba{bottom:745.013467pt;}
.y238{bottom:745.707200pt;}
.ye3{bottom:747.680133pt;}
.y6c{bottom:749.045467pt;}
.y181{bottom:755.680133pt;}
.y1cc{bottom:756.821600pt;}
.y49{bottom:757.013467pt;}
.y5d{bottom:758.154933pt;}
.y9c{bottom:758.346800pt;}
.ybb{bottom:759.680133pt;}
.yb9{bottom:759.712133pt;}
.y146{bottom:761.360400pt;}
.y106{bottom:762.154933pt;}
.y12e{bottom:763.616267pt;}
.y1f4{bottom:763.680133pt;}
.y212{bottom:763.707200pt;}
.y27f{bottom:764.346800pt;}
.y237{bottom:764.373867pt;}
.y6b{bottom:765.045467pt;}
.ye2{bottom:766.346800pt;}
.y180{bottom:774.346800pt;}
.y1cb{bottom:775.488267pt;}
.y48{bottom:775.680133pt;}
.yc{bottom:775.993067pt;}
.y5c{bottom:776.821600pt;}
.y9b{bottom:777.013467pt;}
.y105{bottom:780.821600pt;}
.y6a{bottom:781.045467pt;}
.y12d{bottom:782.282933pt;}
.y1f3{bottom:782.346800pt;}
.y211{bottom:782.373867pt;}
.y236{bottom:783.040533pt;}
.ye1{bottom:785.013467pt;}
.y145{bottom:785.360400pt;}
.yb8{bottom:787.680133pt;}
.y27e{bottom:790.346800pt;}
.y17f{bottom:793.013467pt;}
.y1ca{bottom:794.154933pt;}
.y47{bottom:794.346800pt;}
.y5b{bottom:795.488267pt;}
.y69{bottom:797.045467pt;}
.y104{bottom:799.488267pt;}
.y12c{bottom:800.949600pt;}
.y1f2{bottom:801.013467pt;}
.y210{bottom:801.040533pt;}
.yb7{bottom:802.346800pt;}
.y209{bottom:803.030533pt;}
.y9a{bottom:803.680133pt;}
.y235{bottom:804.693733pt;}
.y27d{bottom:808.346800pt;}
.y144{bottom:809.360400pt;}
.y17e{bottom:811.680133pt;}
.y1c9{bottom:812.821600pt;}
.y46{bottom:813.013467pt;}
.y68{bottom:813.045467pt;}
.y5a{bottom:814.154933pt;}
.y9{bottom:816.941733pt;}
.yb6{bottom:817.013467pt;}
.y103{bottom:818.154933pt;}
.y12b{bottom:819.616267pt;}
.y1f1{bottom:819.680133pt;}
.y99{bottom:822.346800pt;}
.y20f{bottom:822.693733pt;}
.y234{bottom:823.360400pt;}
.y27c{bottom:826.346800pt;}
.ye0{bottom:827.680133pt;}
.y67{bottom:829.045467pt;}
.y17d{bottom:830.346800pt;}
.y1c8{bottom:831.488267pt;}
.y45{bottom:831.680133pt;}
.yb5{bottom:831.712133pt;}
.y59{bottom:832.821600pt;}
.y143{bottom:833.360400pt;}
.y102{bottom:836.821600pt;}
.y12a{bottom:838.282933pt;}
.y1f0{bottom:838.346800pt;}
.y98{bottom:841.013467pt;}
.y20e{bottom:841.360400pt;}
.y233{bottom:842.027067pt;}
.y27b{bottom:844.346800pt;}
.y66{bottom:845.045467pt;}
.ydf{bottom:846.346800pt;}
.y17c{bottom:849.013467pt;}
.y1c7{bottom:850.154933pt;}
.y44{bottom:850.346800pt;}
.y58{bottom:851.488267pt;}
.y101{bottom:855.488267pt;}
.y129{bottom:856.949600pt;}
.y1ef{bottom:857.013467pt;}
.y142{bottom:857.392400pt;}
.y97{bottom:859.680133pt;}
.yb3{bottom:860.027067pt;}
.y232{bottom:860.693733pt;}
.y65{bottom:861.045467pt;}
.y27a{bottom:862.346800pt;}
.yde{bottom:865.013467pt;}
.y1c1{bottom:866.154933pt;}
.y17b{bottom:867.680133pt;}
.ya{bottom:868.037067pt;}
.y1c6{bottom:868.821600pt;}
.y43{bottom:869.013467pt;}
.y57{bottom:870.154933pt;}
.y100{bottom:874.154933pt;}
.yb4{bottom:874.693733pt;}
.yb2{bottom:874.725733pt;}
.y1ee{bottom:875.680133pt;}
.y96{bottom:878.346800pt;}
.y64{bottom:879.392400pt;}
.y279{bottom:880.346800pt;}
.y140{bottom:883.013467pt;}
.y128{bottom:883.616267pt;}
.ydd{bottom:883.680133pt;}
.y20c{bottom:885.680133pt;}
.y274{bottom:886.154933pt;}
.y17a{bottom:886.346800pt;}
.y1c5{bottom:887.488267pt;}
.y42{bottom:887.680133pt;}
.y178{bottom:888.154933pt;}
.y26e{bottom:888.246400pt;}
.y56{bottom:888.821600pt;}
.y270{bottom:889.488267pt;}
.y13f{bottom:890.346800pt;}
.yff{bottom:892.821600pt;}
.y20d{bottom:893.013467pt;}
.y20b{bottom:894.154933pt;}
.y1ed{bottom:894.346800pt;}
.y95{bottom:897.013467pt;}
.y141{bottom:897.680133pt;}
.y278{bottom:898.346800pt;}
.yfc{bottom:899.488267pt;}
.yb0{bottom:900.346800pt;}
.y63{bottom:901.013467pt;}
.y127{bottom:902.282933pt;}
.ydc{bottom:902.346800pt;}
.y179{bottom:905.013467pt;}
.y1c4{bottom:906.154933pt;}
.y1a1{bottom:906.821600pt;}
.y55{bottom:907.488267pt;}
.yaf{bottom:907.680133pt;}
.y62{bottom:908.346800pt;}
.y1ec{bottom:913.013467pt;}
.yb1{bottom:915.013467pt;}
.y94{bottom:915.680133pt;}
.yfe{bottom:919.488267pt;}
.y4{bottom:919.552267pt;}
.y126{bottom:920.949600pt;}
.ydb{bottom:921.013467pt;}
.y174{bottom:923.680133pt;}
.y277{bottom:924.346800pt;}
.y1c3{bottom:924.821600pt;}
.y54{bottom:926.154933pt;}
.y1eb{bottom:931.680133pt;}
.y93{bottom:934.346800pt;}
.y152{bottom:935.680133pt;}
.y8{bottom:938.561467pt;}
.y3{bottom:943.552267pt;}
.y125{bottom:947.616267pt;}
.yfd{bottom:948.821600pt;}
.y91{bottom:950.346800pt;}
.y1c2{bottom:951.488267pt;}
.y53{bottom:952.821600pt;}
.y92{bottom:953.013467pt;}
.y151{bottom:954.346800pt;}
.y2{bottom:967.552267pt;}
.h21{height:31.232000pt;}
.h2e{height:32.490672pt;}
.h1{height:32.623830pt;}
.hb{height:35.136000pt;}
.h1c{height:35.232000pt;}
.h10{height:35.280000pt;}
.h16{height:36.352000pt;}
.h9{height:36.726562pt;}
.h17{height:37.802667pt;}
.h19{height:38.912000pt;}
.h11{height:39.040000pt;}
.h20{height:39.146667pt;}
.hc{height:39.200000pt;}
.h1f{height:39.829867pt;}
.h18{height:40.417190pt;}
.h14{height:40.582834pt;}
.hd{height:44.857712pt;}
.h3{height:46.848000pt;}
.h1b{height:47.040000pt;}
.he{height:54.805333pt;}
.h2{height:54.880000pt;}
.h7{height:56.729167pt;}
.h13{height:62.720000pt;}
.h1d{height:67.296533pt;}
.h15{height:68.533333pt;}
.h1e{height:68.629867pt;}
.hf{height:70.560000pt;}
.h5{height:92.812500pt;}
.h4{height:94.080000pt;}
.h22{height:97.866667pt;}
.h12{height:108.281250pt;}
.h6{height:139.218750pt;}
.ha{height:144.656162pt;}
.h8{height:146.906296pt;}
.h27{height:282.240000pt;}
.h2a{height:705.333333pt;}
.h2d{height:728.986667pt;}
.h30{height:760.204000pt;}
.h26{height:838.666667pt;}
.h25{height:889.333333pt;}
.h28{height:902.666667pt;}
.h2f{height:909.333333pt;}
.h23{height:911.333333pt;}
.h2b{height:911.424800pt;}
.h2c{height:912.666667pt;}
.h29{height:917.333333pt;}
.h1a{height:922.666667pt;}
.h24{height:930.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:558.047867pt;}
.w1{width:564.714533pt;}
.w3{width:593.215133pt;}
.w4{width:593.215333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.519533pt;}
.x1b{left:11.381200pt;}
.x1a{left:39.285467pt;}
.x38{left:46.548600pt;}
.x4{left:54.005200pt;}
.xa{left:81.233600pt;}
.xc{left:86.068267pt;}
.x21{left:87.333333pt;}
.x5{left:96.746400pt;}
.xb{left:100.000000pt;}
.x19{left:110.068267pt;}
.x39{left:122.566933pt;}
.x1c{left:123.947600pt;}
.x18{left:128.452933pt;}
.x7{left:130.073467pt;}
.xd{left:134.596800pt;}
.x3{left:141.333333pt;}
.x6{left:142.824133pt;}
.x3a{left:156.165867pt;}
.x41{left:158.760267pt;}
.x3b{left:161.053733pt;}
.x42{left:162.017733pt;}
.x1e{left:191.293733pt;}
.x1d{left:201.733467pt;}
.x2{left:202.666667pt;}
.x22{left:231.401467pt;}
.x28{left:232.734933pt;}
.x27{left:234.068133pt;}
.x2a{left:235.401600pt;}
.x12{left:258.734933pt;}
.x15{left:261.401600pt;}
.x20{left:265.960400pt;}
.x1f{left:270.893467pt;}
.x2b{left:272.000000pt;}
.xf{left:275.039467pt;}
.x43{left:304.856267pt;}
.x2c{left:346.666667pt;}
.x23{left:348.068133pt;}
.x29{left:349.401600pt;}
.x3c{left:370.666667pt;}
.x3f{left:373.333333pt;}
.x13{left:398.734933pt;}
.x16{left:401.401600pt;}
.x2d{left:409.149600pt;}
.x10{left:416.606933pt;}
.x31{left:420.598400pt;}
.x11{left:423.868267pt;}
.x8{left:453.800533pt;}
.x9{left:455.133867pt;}
.x2e{left:470.115467pt;}
.x3d{left:485.333333pt;}
.x40{left:488.000000pt;}
.x24{left:518.068133pt;}
.x2f{left:531.081333pt;}
.x32{left:533.333333pt;}
.x34{left:537.013067pt;}
.x35{left:539.679733pt;}
.x14{left:546.734933pt;}
.x17{left:549.401600pt;}
.x25{left:579.401467pt;}
.x3e{left:585.333333pt;}
.x30{left:591.448800pt;}
.x33{left:647.585333pt;}
.x36{left:653.931733pt;}
.xe{left:683.401467pt;}
.x1{left:688.700400pt;}
.x26{left:694.734800pt;}
}




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