
    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_72b15b8ec84cbe89b8652b2b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ac03fcdbddccb432f8b2aa25.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ef6a1c25d2a81a3467c2066b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_dd05efbd61bddd29a35f9ae6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_fb5053d0e81c2830e1a189b8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_43deedfba8d45103d09e4a22.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726000;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_9fa628b32c22ac1a96440c59.woff')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_1e660791d3a1fac8b8a60f41.woff')format("woff");}.ff8{font-family:ff8;line-height:0.790000;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_4b9431b53c9829d615718495.woff')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_23318c437dc5fcf447a9af2a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_37f00b11c388e851f8ce34ed.woff')format("woff");}.ffb{font-family:ffb;line-height:0.888000;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_f39648c952689d22845d9d58.woff')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_d9852639aa2290e83c0ea219.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_37f00b11c388e851f8ce34ed.woff')format("woff");}.ffe{font-family:ffe;line-height:0.888000;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_8f5fb6155f9230e9d22563b6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_df282dab8c3d9578d8ca8a68.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1c9cbe90feacd6c6e61e64d4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.631000;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_310e95b76f3b88723c36bf1d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_71d6ccd27cfd2e77154a043e.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8b3c25a1eddc7e846faa69ed.woff')format("woff");}.ff14{font-family:ff14;line-height:0.704000;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_f2e0b162cd7f22280ec4c961.woff')format("woff");}.ff15{font-family:ff15;line-height:0.887000;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_63f47deb1115137537b7fab4.woff')format("woff");}.ff16{font-family:ff16;line-height:0.888000;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_09b3d105b316cca1f1cebefd.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_830aacb5760be32596d03f1f.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_2df0a7806263084f5d2ac057.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5d3fe48204924f93c4741fbd.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.887000;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_d16dc87735697c011f9e2e22.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_a3ab3da16c1a83a33c4bf451.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.623000;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_830aacb5760be32596d03f1f.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_4d86f2e60d2aaf1a513bc626.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_14e745034bd76d23b1a27642.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.635000;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_830aacb5760be32596d03f1f.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_59eebc65ca730e556404e54d.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_5d3fe48204924f93c4741fbd.woff')format("woff");}.ff22{font-family:ff22;line-height:0.887000;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:ff23;src:url('chunks/assets/font_c94bfa3f864880b386c1a3a9.woff')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_1c9cbe90feacd6c6e61e64d4.woff')format("woff");}.ff24{font-family:ff24;line-height:0.631000;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:ff25;src:url('chunks/assets/font_14b6fd07ac01614783b4db6a.woff')format("woff");}.ff25{font-family:ff25;line-height:0.637000;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:ff26;src:url('chunks/assets/font_5410ae41ad9666aa2d702341.woff')format("woff");}.ff26{font-family:ff26;line-height:0.703450;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:ff27;src:url('chunks/assets/font_830aacb5760be32596d03f1f.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_96efaf97cd8bf6565b723c43.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_14e745034bd76d23b1a27642.woff')format("woff");}.ff29{font-family:ff29;line-height:0.635000;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:ff2a;src:url('chunks/assets/font_72c172090de2a41675e20bfe.woff')format("woff");}.ff2a{font-family:ff2a;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-26.379648px;}
.v2{vertical-align:-22.326874px;}
.v5{vertical-align:-8.970000px;}
.v6{vertical-align:-6.412218px;}
.v7{vertical-align:-1.545113px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.734642px;}
.v4{vertical-align:3.652995px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.002654px;}
.ls16{letter-spacing:0.003031px;}
.ls26{letter-spacing:0.004028px;}
.ls24{letter-spacing:0.004399px;}
.ls27{letter-spacing:0.006094px;}
.lsc{letter-spacing:0.009132px;}
.ls9{letter-spacing:0.009567px;}
.ls1e{letter-spacing:0.010377px;}
.ls23{letter-spacing:0.010399px;}
.ls7{letter-spacing:0.014380px;}
.ls2c{letter-spacing:0.017656px;}
.ls2f{letter-spacing:0.019550px;}
.ls1a{letter-spacing:0.024856px;}
.ls30{letter-spacing:0.025264px;}
.ls2b{letter-spacing:0.026387px;}
.ls20{letter-spacing:0.028141px;}
.ls11{letter-spacing:0.028426px;}
.ls29{letter-spacing:0.029254px;}
.ls31{letter-spacing:0.860771px;}
.ls21{letter-spacing:1.315063px;}
.ls5{letter-spacing:2.486671px;}
.ls0{letter-spacing:2.964877px;}
.ls2e{letter-spacing:2.988411px;}
.ls12{letter-spacing:2.988775px;}
.ls4{letter-spacing:2.988780px;}
.lsd{letter-spacing:2.990177px;}
.lsa{letter-spacing:2.994775px;}
.ls6{letter-spacing:3.012698px;}
.ls10{letter-spacing:13.270183px;}
.ls15{letter-spacing:13.329959px;}
.ls2d{letter-spacing:15.092003px;}
.ls17{letter-spacing:16.272775px;}
.lsf{letter-spacing:16.617617px;}
.ls2{letter-spacing:16.737210px;}
.ls28{letter-spacing:17.155597px;}
.ls1f{letter-spacing:20.921460px;}
.ls8{letter-spacing:21.100787px;}
.ls22{letter-spacing:21.758318px;}
.ls25{letter-spacing:24.762775px;}
.lsb{letter-spacing:26.062162px;}
.ls2a{letter-spacing:26.181713px;}
.ls19{letter-spacing:27.556552px;}
.lse{letter-spacing:28.811839px;}
.ls13{letter-spacing:59.775600px;}
.ls1d{letter-spacing:146.139754px;}
.ls1c{letter-spacing:148.769887px;}
.ls1b{letter-spacing:151.447840px;}
.ls18{letter-spacing:390.918775px;}
.ls3{letter-spacing:412.452675px;}
.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;}
}
.ws12c{word-spacing:-15.131203px;}
.ws3{word-spacing:-14.943900px;}
.ws17{word-spacing:-14.920027px;}
.ws75{word-spacing:-11.955150px;}
.ws7b{word-spacing:-11.241672px;}
.wse4{word-spacing:-10.460700px;}
.ws82{word-spacing:-9.929106px;}
.ws101{word-spacing:-5.021150px;}
.ws123{word-spacing:-4.961375px;}
.ws6d{word-spacing:-1.075961px;}
.ws2f{word-spacing:-0.956410px;}
.ws169{word-spacing:-0.812950px;}
.ws84{word-spacing:-0.777083px;}
.ws10f{word-spacing:-0.657532px;}
.ws14e{word-spacing:-0.621668px;}
.wse3{word-spacing:-0.597756px;}
.ws14f{word-spacing:-0.573847px;}
.ws124{word-spacing:-0.239102px;}
.ws46{word-spacing:-0.119551px;}
.ws15a{word-spacing:-0.095641px;}
.ws60{word-spacing:-0.059776px;}
.ws127{word-spacing:-0.056000px;}
.ws4{word-spacing:-0.053798px;}
.wsdf{word-spacing:-0.042759px;}
.wsca{word-spacing:-0.041843px;}
.ws7a{word-spacing:-0.035973px;}
.ws12f{word-spacing:-0.035866px;}
.ws81{word-spacing:-0.031773px;}
.wsa5{word-spacing:-0.021387px;}
.wsc8{word-spacing:-0.012000px;}
.ws53{word-spacing:0.000000px;}
.ws13c{word-spacing:0.047776px;}
.wsb6{word-spacing:0.179327px;}
.ws165{word-spacing:0.191282px;}
.ws141{word-spacing:0.239102px;}
.wsf7{word-spacing:0.298878px;}
.wsbf{word-spacing:0.358654px;}
.ws136{word-spacing:0.418429px;}
.ws8a{word-spacing:0.478205px;}
.ws1a{word-spacing:0.537980px;}
.ws69{word-spacing:0.657532px;}
.ws134{word-spacing:0.717307px;}
.ws151{word-spacing:0.765130px;}
.ws30{word-spacing:0.777083px;}
.ws6a{word-spacing:0.836858px;}
.ws116{word-spacing:0.896634px;}
.ws15f{word-spacing:0.908591px;}
.ws5d{word-spacing:0.956410px;}
.ws2b{word-spacing:1.075961px;}
.ws171{word-spacing:1.099874px;}
.wsa{word-spacing:1.129766px;}
.ws144{word-spacing:1.135736px;}
.wsc0{word-spacing:1.195512px;}
.ws148{word-spacing:1.255288px;}
.ws95{word-spacing:1.315063px;}
.ws170{word-spacing:1.434618px;}
.ws78{word-spacing:1.494390px;}
.ws6b{word-spacing:1.554166px;}
.ws153{word-spacing:1.578080px;}
.ws145{word-spacing:1.673717px;}
.ws16e{word-spacing:1.721542px;}
.ws19{word-spacing:1.733492px;}
.ws16d{word-spacing:1.769362px;}
.ws11d{word-spacing:1.853044px;}
.ws26{word-spacing:1.912819px;}
.ws160{word-spacing:1.960645px;}
.wscb{word-spacing:1.972595px;}
.ws80{word-spacing:1.985821px;}
.ws85{word-spacing:2.032370px;}
.wsfe{word-spacing:2.092146px;}
.ws9b{word-spacing:2.151922px;}
.wsfa{word-spacing:2.211697px;}
.ws79{word-spacing:2.248334px;}
.wsb8{word-spacing:2.331248px;}
.ws16f{word-spacing:2.343209px;}
.wsf1{word-spacing:2.391024px;}
.ws8d{word-spacing:2.510575px;}
.ws8e{word-spacing:2.570351px;}
.ws94{word-spacing:2.630126px;}
.wsb5{word-spacing:2.689902px;}
.ws15b{word-spacing:2.725774px;}
.ws1c{word-spacing:2.809453px;}
.wsb{word-spacing:2.905114px;}
.wsc5{word-spacing:2.929004px;}
.wsb9{word-spacing:2.988780px;}
.ws13a{word-spacing:3.168107px;}
.ws25{word-spacing:3.227882px;}
.ws6{word-spacing:3.227904px;}
.ws166{word-spacing:3.251801px;}
.ws2c{word-spacing:3.287658px;}
.ws154{word-spacing:3.299621px;}
.ws70{word-spacing:3.347434px;}
.ws16a{word-spacing:3.347442px;}
.ws9f{word-spacing:3.407209px;}
.ws42{word-spacing:3.466985px;}
.ws9d{word-spacing:3.526760px;}
.ws58{word-spacing:3.586536px;}
.ws125{word-spacing:3.765863px;}
.ws1b{word-spacing:3.825638px;}
.ws9{word-spacing:3.873485px;}
.wsf9{word-spacing:3.945190px;}
.wsaa{word-spacing:4.064741px;}
.ws28{word-spacing:4.124516px;}
.ws9c{word-spacing:4.184292px;}
.ws3d{word-spacing:4.303843px;}
.ws164{word-spacing:4.351675px;}
.ws50{word-spacing:4.363619px;}
.ws163{word-spacing:4.399495px;}
.wsd0{word-spacing:4.423394px;}
.ws43{word-spacing:4.483170px;}
.ws52{word-spacing:4.542946px;}
.wsc1{word-spacing:4.602721px;}
.ws13{word-spacing:4.626662px;}
.ws71{word-spacing:4.722272px;}
.ws77{word-spacing:4.782048px;}
.ws54{word-spacing:4.782060px;}
.ws5f{word-spacing:4.901599px;}
.ws76{word-spacing:4.961375px;}
.ws96{word-spacing:5.021150px;}
.ws66{word-spacing:5.140702px;}
.ws8f{word-spacing:5.200477px;}
.ws8b{word-spacing:5.260253px;}
.ws8c{word-spacing:5.320028px;}
.ws4f{word-spacing:5.379804px;}
.ws7e{word-spacing:5.379840px;}
.wsc{word-spacing:5.433638px;}
.wsb1{word-spacing:5.439580px;}
.wsec{word-spacing:5.499355px;}
.ws11b{word-spacing:5.559131px;}
.ws20{word-spacing:5.618906px;}
.ws36{word-spacing:5.738458px;}
.ws5c{word-spacing:5.798233px;}
.ws13d{word-spacing:5.858009px;}
.ws74{word-spacing:5.917754px;}
.wse{word-spacing:5.971622px;}
.ws2{word-spacing:5.977560px;}
.ws4c{word-spacing:6.037336px;}
.wscd{word-spacing:6.156887px;}
.ws2e{word-spacing:6.216662px;}
.wsaf{word-spacing:6.336214px;}
.ws38{word-spacing:6.395989px;}
.ws88{word-spacing:6.455765px;}
.ws61{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws167{word-spacing:6.647063px;}
.ws2d{word-spacing:6.694867px;}
.ws14{word-spacing:6.724800px;}
.ws161{word-spacing:6.742705px;}
.ws32{word-spacing:6.754643px;}
.wsab{word-spacing:6.814418px;}
.ws11e{word-spacing:6.874194px;}
.ws112{word-spacing:6.933970px;}
.ws3f{word-spacing:7.053521px;}
.wsef{word-spacing:7.173072px;}
.wsa9{word-spacing:7.232848px;}
.ws98{word-spacing:7.292623px;}
.wsdb{word-spacing:7.352399px;}
.ws10e{word-spacing:7.412174px;}
.ws41{word-spacing:7.471950px;}
.ws11f{word-spacing:7.531726px;}
.ws108{word-spacing:7.591501px;}
.ws22{word-spacing:7.651277px;}
.ws2a{word-spacing:7.711052px;}
.ws173{word-spacing:7.794758px;}
.ws51{word-spacing:7.830604px;}
.ws16b{word-spacing:7.890399px;}
.wsb0{word-spacing:7.950155px;}
.ws90{word-spacing:8.009930px;}
.ws7{word-spacing:8.015962px;}
.ws1d{word-spacing:8.069706px;}
.ws162{word-spacing:8.081681px;}
.wsba{word-spacing:8.129482px;}
.ws168{word-spacing:8.129502px;}
.ws139{word-spacing:8.189257px;}
.ws67{word-spacing:8.308808px;}
.ws104{word-spacing:8.368584px;}
.ws152{word-spacing:8.368605px;}
.ws6e{word-spacing:8.428360px;}
.ws14d{word-spacing:8.464246px;}
.ws140{word-spacing:8.547911px;}
.ws13f{word-spacing:8.607686px;}
.ws33{word-spacing:8.667462px;}
.wsb4{word-spacing:8.727238px;}
.ws3b{word-spacing:8.787013px;}
.wsf{word-spacing:8.822938px;}
.wsf0{word-spacing:8.846789px;}
.ws21{word-spacing:8.906564px;}
.wsb3{word-spacing:8.966340px;}
.ws24{word-spacing:9.085891px;}
.ws86{word-spacing:9.145667px;}
.wsd{word-spacing:9.199526px;}
.wsb2{word-spacing:9.205442px;}
.wsbd{word-spacing:9.324994px;}
.ws3a{word-spacing:9.384769px;}
.ws59{word-spacing:9.444545px;}
.ws109{word-spacing:9.504320px;}
.ws100{word-spacing:9.579998px;}
.ws114{word-spacing:9.623872px;}
.wsc2{word-spacing:9.683647px;}
.ws47{word-spacing:9.803198px;}
.ws150{word-spacing:9.851044px;}
.ws16c{word-spacing:9.898864px;}
.ws45{word-spacing:9.922750px;}
.ws5e{word-spacing:10.042301px;}
.wsa3{word-spacing:10.066113px;}
.wsf2{word-spacing:10.102076px;}
.wsc7{word-spacing:10.161852px;}
.ws5a{word-spacing:10.221628px;}
.wsbc{word-spacing:10.281403px;}
.wsd1{word-spacing:10.341179px;}
.ws64{word-spacing:10.400954px;}
.ws65{word-spacing:10.520506px;}
.ws39{word-spacing:10.580281px;}
.ws149{word-spacing:10.640057px;}
.wsfc{word-spacing:10.699832px;}
.ws56{word-spacing:10.759608px;}
.ws37{word-spacing:10.879159px;}
.ws72{word-spacing:10.938935px;}
.wsa4{word-spacing:10.971539px;}
.wsc3{word-spacing:10.998710px;}
.ws31{word-spacing:11.118262px;}
.wsce{word-spacing:11.178037px;}
.wsa8{word-spacing:11.237813px;}
.ws14b{word-spacing:11.285662px;}
.ws63{word-spacing:11.297588px;}
.ws102{word-spacing:11.357364px;}
.ws97{word-spacing:11.417140px;}
.ws48{word-spacing:11.476915px;}
.ws35{word-spacing:11.536691px;}
.ws93{word-spacing:11.596466px;}
.ws5b{word-spacing:11.656242px;}
.wseb{word-spacing:11.835569px;}
.ws89{word-spacing:11.895344px;}
.ws7f{word-spacing:11.945253px;}
.ws73{word-spacing:11.955120px;}
.ws62{word-spacing:12.014896px;}
.wsee{word-spacing:12.074671px;}
.wsde{word-spacing:12.075251px;}
.ws159{word-spacing:12.146432px;}
.ws132{word-spacing:12.212237px;}
.ws14a{word-spacing:12.253998px;}
.ws23{word-spacing:12.313774px;}
.ws87{word-spacing:12.373549px;}
.ws12{word-spacing:12.427430px;}
.ws111{word-spacing:12.433325px;}
.wsa1{word-spacing:12.513642px;}
.wsd5{word-spacing:12.612652px;}
.wsfd{word-spacing:12.672427px;}
.ws10a{word-spacing:12.732203px;}
.ws138{word-spacing:12.791978px;}
.wsd8{word-spacing:12.851754px;}
.wsfb{word-spacing:12.911530px;}
.wsd9{word-spacing:13.150632px;}
.wse5{word-spacing:13.210408px;}
.ws4a{word-spacing:13.270183px;}
.ws174{word-spacing:13.389768px;}
.wsa7{word-spacing:13.449510px;}
.wsa0{word-spacing:13.639218px;}
.ws4e{word-spacing:13.688612px;}
.wscf{word-spacing:13.808164px;}
.ws9e{word-spacing:13.867939px;}
.wsf8{word-spacing:13.927715px;}
.ws1e{word-spacing:14.166817px;}
.wse2{word-spacing:14.196081px;}
.ws13e{word-spacing:14.226593px;}
.ws15e{word-spacing:14.250539px;}
.ws3c{word-spacing:14.286368px;}
.ws15c{word-spacing:14.298359px;}
.ws118{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wsae{word-spacing:14.465695px;}
.wsdc{word-spacing:14.525471px;}
.ws8{word-spacing:14.525568px;}
.wsad{word-spacing:14.645022px;}
.wsac{word-spacing:14.704798px;}
.ws10c{word-spacing:14.764573px;}
.wsed{word-spacing:14.824349px;}
.ws11{word-spacing:14.902157px;}
.ws142{word-spacing:14.940317px;}
.ws12b{word-spacing:14.940558px;}
.ws40{word-spacing:14.943900px;}
.ws12d{word-spacing:14.946050px;}
.ws12e{word-spacing:14.946399px;}
.ws129{word-spacing:14.955712px;}
.ws12a{word-spacing:15.052803px;}
.ws13b{word-spacing:15.063451px;}
.wse9{word-spacing:15.123227px;}
.ws34{word-spacing:15.183002px;}
.wse7{word-spacing:15.242778px;}
.ws130{word-spacing:15.247804px;}
.ws9a{word-spacing:15.422105px;}
.ws143{word-spacing:15.481880px;}
.wse6{word-spacing:15.541656px;}
.ws57{word-spacing:15.601432px;}
.ws126{word-spacing:15.814489px;}
.ws113{word-spacing:15.840534px;}
.ws15d{word-spacing:16.115542px;}
.wse1{word-spacing:16.121996px;}
.wsd2{word-spacing:16.219843px;}
.wsd3{word-spacing:16.227039px;}
.ws44{word-spacing:16.258963px;}
.wse0{word-spacing:16.360431px;}
.ws146{word-spacing:16.438290px;}
.ws106{word-spacing:16.557841px;}
.ws158{word-spacing:16.593748px;}
.ws55{word-spacing:16.689389px;}
.ws137{word-spacing:16.737168px;}
.ws27{word-spacing:16.856719px;}
.ws5{word-spacing:16.892698px;}
.wsff{word-spacing:16.976270px;}
.ws29{word-spacing:17.036046px;}
.ws49{word-spacing:17.095822px;}
.wsc9{word-spacing:17.215373px;}
.ws110{word-spacing:17.222362px;}
.ws1f{word-spacing:17.275148px;}
.ws10d{word-spacing:17.394700px;}
.wsbe{word-spacing:17.514251px;}
.ws91{word-spacing:17.574026px;}
.ws131{word-spacing:17.925844px;}
.ws16{word-spacing:17.932680px;}
.ws103{word-spacing:18.291334px;}
.ws121{word-spacing:18.649987px;}
.ws99{word-spacing:18.709763px;}
.ws117{word-spacing:18.800362px;}
.wsc4{word-spacing:19.187968px;}
.ws119{word-spacing:19.546621px;}
.ws105{word-spacing:19.550362px;}
.ws4d{word-spacing:19.606397px;}
.wsd6{word-spacing:19.645843px;}
.wsbb{word-spacing:19.666172px;}
.wscc{word-spacing:19.893039px;}
.ws147{word-spacing:19.905275px;}
.wsf6{word-spacing:20.024826px;}
.ws15{word-spacing:20.120602px;}
.ws107{word-spacing:20.125843px;}
.ws10{word-spacing:20.174400px;}
.ws18{word-spacing:20.323704px;}
.ws68{word-spacing:20.622582px;}
.wse8{word-spacing:20.682358px;}
.wsf5{word-spacing:20.742133px;}
.ws3e{word-spacing:20.801909px;}
.ws4b{word-spacing:20.861684px;}
.ws10b{word-spacing:20.921460px;}
.ws128{word-spacing:21.426623px;}
.ws6c{word-spacing:21.578992px;}
.wsea{word-spacing:21.758318px;}
.ws133{word-spacing:22.057196px;}
.wsb7{word-spacing:22.236523px;}
.ws156{word-spacing:22.571323px;}
.wsf4{word-spacing:22.894055px;}
.wsda{word-spacing:23.133157px;}
.ws6f{word-spacing:23.312484px;}
.ws14c{word-spacing:23.958121px;}
.ws11a{word-spacing:24.029791px;}
.wsf3{word-spacing:24.986201px;}
.ws120{word-spacing:25.418362px;}
.ws122{word-spacing:25.502362px;}
.wsc6{word-spacing:25.643732px;}
.wsd7{word-spacing:25.743039px;}
.ws115{word-spacing:27.530362px;}
.ws172{word-spacing:28.644539px;}
.ws135{word-spacing:29.024362px;}
.ws11c{word-spacing:30.494362px;}
.ws157{word-spacing:32.374546px;}
.ws92{word-spacing:32.458151px;}
.wsd4{word-spacing:37.071039px;}
.ws155{word-spacing:38.830327px;}
.wsdd{word-spacing:59.775750px;}
.ws7d{word-spacing:67.694439px;}
.wsa6{word-spacing:74.963294px;}
.wsa2{word-spacing:93.190270px;}
.ws7c{word-spacing:1282.689718px;}
.ws83{word-spacing:1308.810145px;}
._27{margin-left:-566.126444px;}
._2e{margin-left:-15.092003px;}
._5{margin-left:-7.800768px;}
._1d{margin-left:-6.575300px;}
._0{margin-left:-5.021163px;}
._3{margin-left:-3.981082px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.129775px;}
._8{width:1.147694px;}
._6{width:2.988780px;}
._2{width:4.761710px;}
._24{width:7.938220px;}
._f{width:8.966340px;}
._29{width:9.976564px;}
._2a{width:16.198646px;}
._1b{width:17.514256px;}
._c{width:20.437300px;}
._7{width:22.176753px;}
._d{width:23.730919px;}
._21{width:26.181680px;}
._1f{width:28.752069px;}
._9{width:29.887800px;}
._b{width:32.398375px;}
._a{width:33.713438px;}
._1a{width:35.686033px;}
._20{width:36.738116px;}
._1c{width:40.408316px;}
._e{width:42.022247px;}
._32{width:46.912009px;}
._33{width:48.729191px;}
._28{width:57.297525px;}
._23{width:70.750600px;}
._18{width:72.209106px;}
._1e{width:75.140311px;}
._2f{width:106.897904px;}
._2d{width:111.456568px;}
._30{width:128.684492px;}
._25{width:152.212970px;}
._31{width:171.882839px;}
._26{width:176.123270px;}
._2b{width:178.270859px;}
._2c{width:184.636888px;}
._10{width:187.265470px;}
._16{width:208.832560px;}
._13{width:214.905776px;}
._12{width:300.935036px;}
._14{width:319.537249px;}
._17{width:341.534725px;}
._19{width:371.183497px;}
._15{width:435.693487px;}
._11{width:586.722913px;}
._22{width:652.607728px;}
.fc4{color:rgb(92,15,86);}
.fc2{color:rgb(200,28,34);}
.fc1{color:rgb(136,177,22);}
.fc3{color:rgb(20,120,199);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.156047px;}
.fs6{font-size:20.556163px;}
.fsd{font-size:21.387016px;}
.fsb{font-size:28.515902px;}
.fs11{font-size:29.931410px;}
.fs7{font-size:31.773140px;}
.fsc{font-size:32.080524px;}
.fsf{font-size:34.207510px;}
.fsa{font-size:35.449411px;}
.fs15{font-size:35.865600px;}
.fs5{font-size:35.973350px;}
.fs14{font-size:39.200009px;}
.fs9{font-size:39.880754px;}
.fse{font-size:41.842800px;}
.fs10{font-size:42.759280px;}
.fs16{font-size:43.194913px;}
.fs12{font-size:44.800251px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs17{font-size:53.993506px;}
.fs13{font-size:56.000173px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yd6{bottom:8.981323px;}
.y136{bottom:10.902702px;}
.yce{bottom:11.165090px;}
.y19e{bottom:13.767190px;}
.y194{bottom:14.278847px;}
.y97{bottom:16.532416px;}
.y9e{bottom:19.229906px;}
.y13d{bottom:21.640163px;}
.y137{bottom:21.641236px;}
.ya2{bottom:24.131635px;}
.y9b{bottom:24.176057px;}
.ya1{bottom:24.948306px;}
.y9d{bottom:26.858425px;}
.y19f{bottom:27.327079px;}
.y195{bottom:28.342689px;}
.y1a4{bottom:30.742794px;}
.y9c{bottom:32.531834px;}
.ya0{bottom:33.465253px;}
.yd5{bottom:35.338523px;}
.yd7{bottom:37.220478px;}
.y9f{bottom:39.139231px;}
.y143{bottom:39.554888px;}
.ycf{bottom:39.966819px;}
.y13e{bottom:42.435879px;}
.ycd{bottom:43.930921px;}
.y199{bottom:44.005717px;}
.y13b{bottom:48.806251px;}
.y92{bottom:49.666884px;}
.y1a0{bottom:50.547441px;}
.y96{bottom:55.215947px;}
.y8f{bottom:55.266240px;}
.y9a{bottom:55.713535px;}
.y95{bottom:56.140576px;}
.y138{bottom:56.297902px;}
.y91{bottom:58.303201px;}
.y196{bottom:60.454285px;}
.yd4{bottom:62.271759px;}
.y13f{bottom:63.230522px;}
.y90{bottom:64.726599px;}
.y94{bottom:65.783410px;}
.ycc{bottom:72.022113px;}
.y93{bottom:72.207453px;}
.y1a1{bottom:73.767803px;}
.yd8{bottom:74.638632px;}
.y140{bottom:84.025165px;}
.y8e{bottom:84.653190px;}
.yd3{bottom:90.896428px;}
.y139{bottom:90.954567px;}
.yd0{bottom:91.974944px;}
.y197{bottom:92.565881px;}
.y1a2{bottom:96.989520px;}
.y141{bottom:104.819809px;}
.yd2{bottom:110.351936px;}
.ycb{bottom:112.028963px;}
.y144{bottom:113.432739px;}
.y13c{bottom:114.492858px;}
.y1a3{bottom:120.209881px;}
.y198{bottom:124.677478px;}
.y13a{bottom:125.611233px;}
.y142{bottom:125.614452px;}
.y19b{bottom:151.619122px;}
.y19a{bottom:167.851281px;}
.y134{bottom:179.662500px;}
.y33{bottom:179.664000px;}
.y1fe{bottom:181.558500px;}
.y1fd{bottom:195.009000px;}
.y32{bottom:197.596500px;}
.y1fc{bottom:208.458000px;}
.y31{bottom:215.529000px;}
.y102{bottom:215.626500px;}
.y168{bottom:215.782500px;}
.y1fb{bottom:221.907000px;}
.y30{bottom:233.461500px;}
.y101{bottom:233.559000px;}
.y167{bottom:233.715000px;}
.y1fa{bottom:235.357500px;}
.y8c{bottom:238.044000px;}
.y1f9{bottom:248.806500px;}
.y2f{bottom:251.394000px;}
.y1be{bottom:251.395500px;}
.y100{bottom:251.491500px;}
.y166{bottom:251.647500px;}
.y133{bottom:256.083000px;}
.yc9{bottom:256.647000px;}
.y1f8{bottom:262.255500px;}
.y8b{bottom:265.308000px;}
.y58{bottom:269.326500px;}
.y2e{bottom:269.328000px;}
.yff{bottom:269.424000px;}
.y165{bottom:269.581500px;}
.y1f7{bottom:275.706000px;}
.yc8{bottom:280.219500px;}
.y8a{bottom:283.242000px;}
.y132{bottom:283.995000px;}
.y57{bottom:287.260500px;}
.yfe{bottom:287.356500px;}
.y164{bottom:287.514000px;}
.y2d{bottom:288.105000px;}
.y1f6{bottom:289.155000px;}
.y89{bottom:301.174500px;}
.y131{bottom:301.927500px;}
.y1f5{bottom:302.605500px;}
.y56{bottom:305.193000px;}
.yfd{bottom:305.290500px;}
.y163{bottom:305.446500px;}
.y2c{bottom:306.037500px;}
.yc7{bottom:309.562500px;}
.y1f4{bottom:316.054500px;}
.y88{bottom:319.107000px;}
.y130{bottom:319.861500px;}
.y55{bottom:323.125500px;}
.y162{bottom:323.379000px;}
.y2b{bottom:323.970000px;}
.yc6{bottom:327.495000px;}
.yfc{bottom:328.512000px;}
.y1f3{bottom:329.503500px;}
.y87{bottom:337.039500px;}
.y12f{bottom:337.794000px;}
.y54{bottom:341.058000px;}
.y161{bottom:341.311500px;}
.y2a{bottom:341.902500px;}
.y192{bottom:342.262500px;}
.y1f2{bottom:342.954000px;}
.yc5{bottom:345.427500px;}
.y86{bottom:354.972000px;}
.y12e{bottom:355.726500px;}
.y1f1{bottom:356.403000px;}
.yfb{bottom:357.355500px;}
.y53{bottom:358.990500px;}
.y160{bottom:359.245500px;}
.y29{bottom:359.835000px;}
.y191{bottom:360.195000px;}
.yc4{bottom:363.360000px;}
.y1f0{bottom:369.852000px;}
.y85{bottom:372.904500px;}
.y12d{bottom:373.659000px;}
.yfa{bottom:375.288000px;}
.y1bd{bottom:376.924500px;}
.y52{bottom:377.178000px;}
.y28{bottom:377.767500px;}
.y190{bottom:378.127500px;}
.yc3{bottom:381.292500px;}
.y1ef{bottom:383.302500px;}
.y84{bottom:390.838500px;}
.y12c{bottom:391.591500px;}
.yf9{bottom:393.220500px;}
.y1bc{bottom:394.857000px;}
.y51{bottom:395.110500px;}
.y27{bottom:395.701500px;}
.y18f{bottom:396.060000px;}
.y1ee{bottom:396.751500px;}
.yc2{bottom:399.226500px;}
.y83{bottom:408.771000px;}
.y12b{bottom:409.524000px;}
.y1ed{bottom:410.202000px;}
.yf8{bottom:411.154500px;}
.y1bb{bottom:412.789500px;}
.y50{bottom:413.043000px;}
.y26{bottom:413.634000px;}
.y18e{bottom:413.992500px;}
.yc1{bottom:417.159000px;}
.y1ec{bottom:423.651000px;}
.y82{bottom:426.703500px;}
.yf7{bottom:429.087000px;}
.y15f{bottom:430.975500px;}
.y4f{bottom:430.977000px;}
.y25{bottom:431.566500px;}
.y18d{bottom:431.926500px;}
.yc0{bottom:435.091500px;}
.y1eb{bottom:437.100000px;}
.y1ba{bottom:437.287500px;}
.y12a{bottom:437.464500px;}
.y81{bottom:444.636000px;}
.yf6{bottom:447.019500px;}
.y4e{bottom:448.909500px;}
.y15e{bottom:449.161500px;}
.y24{bottom:449.499000px;}
.y18c{bottom:449.859000px;}
.y1ea{bottom:450.550500px;}
.ybf{bottom:453.024000px;}
.y129{bottom:459.880500px;}
.y80{bottom:462.568500px;}
.y1e9{bottom:463.999500px;}
.yf5{bottom:464.952000px;}
.y4d{bottom:466.842000px;}
.y15d{bottom:467.095500px;}
.y23{bottom:467.431500px;}
.y18b{bottom:467.791500px;}
.y1b9{bottom:467.940000px;}
.ybe{bottom:471.112500px;}
.y1e8{bottom:477.448500px;}
.y7f{bottom:480.501000px;}
.yf4{bottom:482.884500px;}
.y4c{bottom:484.774500px;}
.y15c{bottom:485.028000px;}
.y22{bottom:485.364000px;}
.y18a{bottom:485.724000px;}
.y1b8{bottom:485.872500px;}
.y128{bottom:487.821000px;}
.ybd{bottom:489.045000px;}
.y1e7{bottom:490.899000px;}
.y7e{bottom:498.435000px;}
.yf3{bottom:500.817000px;}
.y4b{bottom:502.707000px;}
.y15b{bottom:502.960500px;}
.y21{bottom:503.298000px;}
.y189{bottom:503.656500px;}
.y1b7{bottom:503.805000px;}
.y1e6{bottom:504.348000px;}
.y127{bottom:505.753500px;}
.ybc{bottom:506.977500px;}
.y7d{bottom:516.367500px;}
.y1e5{bottom:517.798500px;}
.yf2{bottom:518.751000px;}
.y4a{bottom:520.641000px;}
.y15a{bottom:520.893000px;}
.y20{bottom:521.230500px;}
.y188{bottom:521.590500px;}
.y1b6{bottom:521.737500px;}
.y126{bottom:523.686000px;}
.ybb{bottom:524.910000px;}
.y1e4{bottom:531.247500px;}
.y7c{bottom:534.048000px;}
.yf1{bottom:536.829000px;}
.y49{bottom:538.573500px;}
.y1f{bottom:539.163000px;}
.y187{bottom:539.523000px;}
.y1b5{bottom:539.670000px;}
.y125{bottom:541.618500px;}
.yba{bottom:542.844000px;}
.y159{bottom:544.125000px;}
.y1e3{bottom:544.696500px;}
.y7b{bottom:551.980500px;}
.yf0{bottom:554.761500px;}
.y48{bottom:556.506000px;}
.y1e{bottom:557.095500px;}
.y186{bottom:557.455500px;}
.y1b4{bottom:557.604000px;}
.y1e2{bottom:558.147000px;}
.y124{bottom:559.551000px;}
.yb9{bottom:560.776500px;}
.y7a{bottom:569.914500px;}
.y1e1{bottom:571.596000px;}
.yef{bottom:572.694000px;}
.y158{bottom:573.582000px;}
.y47{bottom:574.693500px;}
.y1d{bottom:575.028000px;}
.y1b3{bottom:575.536500px;}
.y185{bottom:576.592500px;}
.y123{bottom:577.483500px;}
.yb8{bottom:578.709000px;}
.y1e0{bottom:585.045000px;}
.y79{bottom:587.847000px;}
.yee{bottom:590.626500px;}
.y157{bottom:591.516000px;}
.y46{bottom:592.626000px;}
.y1c{bottom:592.960500px;}
.y1b2{bottom:593.469000px;}
.y184{bottom:594.525000px;}
.y122{bottom:595.417500px;}
.yb7{bottom:596.641500px;}
.y1df{bottom:598.495500px;}
.y78{bottom:605.779500px;}
.yed{bottom:608.559000px;}
.y156{bottom:609.448500px;}
.y45{bottom:610.558500px;}
.y1b{bottom:610.894500px;}
.y1b1{bottom:611.401500px;}
.y1de{bottom:611.944500px;}
.y183{bottom:612.457500px;}
.y121{bottom:613.350000px;}
.yb6{bottom:614.574000px;}
.y77{bottom:623.712000px;}
.y1dd{bottom:625.393500px;}
.yec{bottom:626.493000px;}
.y155{bottom:627.381000px;}
.y44{bottom:628.491000px;}
.y1a{bottom:628.827000px;}
.y1b0{bottom:629.334000px;}
.y182{bottom:630.390000px;}
.y120{bottom:631.282500px;}
.yb5{bottom:632.508000px;}
.y1dc{bottom:638.844000px;}
.y76{bottom:641.644500px;}
.yeb{bottom:644.425500px;}
.y154{bottom:645.313500px;}
.y43{bottom:646.423500px;}
.y19{bottom:646.759500px;}
.y1af{bottom:647.268000px;}
.y181{bottom:648.322500px;}
.y11f{bottom:649.215000px;}
.yb4{bottom:650.440500px;}
.y1db{bottom:652.293000px;}
.y75{bottom:659.577000px;}
.yea{bottom:662.358000px;}
.y153{bottom:663.246000px;}
.y42{bottom:664.357500px;}
.y1ae{bottom:665.200500px;}
.y1da{bottom:665.743500px;}
.y180{bottom:666.256500px;}
.y11e{bottom:667.147500px;}
.yb3{bottom:668.373000px;}
.y18{bottom:674.464500px;}
.y74{bottom:677.511000px;}
.y1d9{bottom:679.192500px;}
.ye9{bottom:680.290500px;}
.y152{bottom:681.178500px;}
.y41{bottom:682.290000px;}
.y1ad{bottom:683.133000px;}
.y17f{bottom:684.189000px;}
.y11d{bottom:685.080000px;}
.yb2{bottom:686.305500px;}
.y1d8{bottom:692.641500px;}
.y73{bottom:695.443500px;}
.ye8{bottom:698.223000px;}
.y151{bottom:699.112500px;}
.y1ac{bottom:701.065500px;}
.y17e{bottom:702.121500px;}
.y11c{bottom:703.014000px;}
.yb1{bottom:704.238000px;}
.y40{bottom:705.948000px;}
.y1d7{bottom:706.092000px;}
.y72{bottom:713.376000px;}
.y17{bottom:713.814000px;}
.y150{bottom:717.045000px;}
.y1ab{bottom:719.308500px;}
.y1d6{bottom:719.541000px;}
.y17d{bottom:720.054000px;}
.y11b{bottom:720.946500px;}
.ye7{bottom:721.203000px;}
.yb0{bottom:722.170500px;}
.y16{bottom:729.601500px;}
.y71{bottom:731.308500px;}
.y1d5{bottom:732.990000px;}
.y14f{bottom:734.977500px;}
.y3f{bottom:735.409500px;}
.y1aa{bottom:737.241000px;}
.y17c{bottom:739.191000px;}
.yaf{bottom:740.104500px;}
.y11a{bottom:743.568000px;}
.y15{bottom:744.546000px;}
.y1d4{bottom:746.440500px;}
.y70{bottom:749.241000px;}
.ye6{bottom:750.046500px;}
.y14e{bottom:752.910000px;}
.y3e{bottom:753.342000px;}
.y1a9{bottom:755.173500px;}
.y17b{bottom:757.123500px;}
.yae{bottom:758.037000px;}
.y14{bottom:759.489000px;}
.y1d3{bottom:759.889500px;}
.y6f{bottom:767.175000px;}
.ye5{bottom:767.979000px;}
.y14d{bottom:770.842500px;}
.y3d{bottom:771.274500px;}
.y119{bottom:771.480000px;}
.y1a8{bottom:773.106000px;}
.y1d2{bottom:773.340000px;}
.y13{bottom:774.433500px;}
.y17a{bottom:775.056000px;}
.yad{bottom:775.969500px;}
.y6e{bottom:785.107500px;}
.ye4{bottom:785.913000px;}
.y1d1{bottom:786.789000px;}
.y14c{bottom:789.030000px;}
.y3c{bottom:789.207000px;}
.y12{bottom:789.378000px;}
.y118{bottom:789.412500px;}
.y1a7{bottom:791.038500px;}
.y179{bottom:792.990000px;}
.yac{bottom:793.902000px;}
.y1d0{bottom:800.238000px;}
.y6d{bottom:803.040000px;}
.ye3{bottom:803.845500px;}
.y11{bottom:804.321000px;}
.y14b{bottom:806.962500px;}
.y3b{bottom:807.141000px;}
.y117{bottom:807.345000px;}
.y178{bottom:810.922500px;}
.yab{bottom:811.834500px;}
.y1cf{bottom:813.688500px;}
.y10{bottom:819.265500px;}
.y6c{bottom:820.972500px;}
.y1a6{bottom:821.713500px;}
.ye2{bottom:821.778000px;}
.y14a{bottom:824.895000px;}
.y3a{bottom:825.243000px;}
.y116{bottom:825.279000px;}
.y1ce{bottom:827.137500px;}
.y177{bottom:828.855000px;}
.yaa{bottom:829.767000px;}
.yf{bottom:834.210000px;}
.y6b{bottom:838.905000px;}
.ye1{bottom:839.710500px;}
.y1cd{bottom:840.586500px;}
.y149{bottom:842.827500px;}
.y39{bottom:843.175500px;}
.y115{bottom:843.211500px;}
.ya9{bottom:847.701000px;}
.y1a5{bottom:847.716000px;}
.y176{bottom:848.593500px;}
.ye{bottom:849.153000px;}
.y19d{bottom:851.059500px;}
.y1cc{bottom:854.037000px;}
.y6a{bottom:856.587000px;}
.ye0{bottom:857.643000px;}
.y148{bottom:860.760000px;}
.y38{bottom:861.108000px;}
.y114{bottom:861.144000px;}
.yd{bottom:864.097500px;}
.ya8{bottom:865.633500px;}
.y175{bottom:866.526000px;}
.y1cb{bottom:867.486000px;}
.y69{bottom:874.519500px;}
.ydf{bottom:875.577000px;}
.y147{bottom:878.694000px;}
.yc{bottom:879.040500px;}
.y113{bottom:879.076500px;}
.y1ca{bottom:880.936500px;}
.ya7{bottom:883.566000px;}
.y174{bottom:884.458500px;}
.y68{bottom:892.452000px;}
.yde{bottom:893.509500px;}
.yb{bottom:893.985000px;}
.y1c9{bottom:894.385500px;}
.y37{bottom:896.973000px;}
.y112{bottom:897.009000px;}
.ya6{bottom:901.498500px;}
.y173{bottom:902.392500px;}
.ya{bottom:908.929500px;}
.y146{bottom:908.992500px;}
.y67{bottom:910.384500px;}
.ydd{bottom:911.442000px;}
.y36{bottom:914.907000px;}
.y111{bottom:914.943000px;}
.y1c8{bottom:915.121500px;}
.y9{bottom:923.872500px;}
.y145{bottom:926.925000px;}
.y66{bottom:928.317000px;}
.y172{bottom:929.245500px;}
.ydc{bottom:929.374500px;}
.ya5{bottom:931.762500px;}
.y35{bottom:932.839500px;}
.y110{bottom:932.875500px;}
.y135{bottom:936.613500px;}
.y8{bottom:938.817000px;}
.y1c7{bottom:939.424500px;}
.y65{bottom:946.251000px;}
.ydb{bottom:947.452500px;}
.ya4{bottom:949.695000px;}
.y34{bottom:950.772000px;}
.y10f{bottom:950.808000px;}
.y7{bottom:953.761500px;}
.y1c6{bottom:957.357000px;}
.y64{bottom:964.183500px;}
.yda{bottom:965.385000px;}
.y171{bottom:967.500000px;}
.y6{bottom:968.704500px;}
.y10e{bottom:968.740500px;}
.y1c5{bottom:975.289500px;}
.ya3{bottom:975.697500px;}
.y63{bottom:982.116000px;}
.y170{bottom:985.434000px;}
.y10d{bottom:986.673000px;}
.y19c{bottom:988.951500px;}
.y193{bottom:992.295000px;}
.y1c4{bottom:993.222000px;}
.y99{bottom:995.124000px;}
.y62{bottom:1000.048500px;}
.y16f{bottom:1003.366500px;}
.y10c{bottom:1004.605500px;}
.yd9{bottom:1006.122000px;}
.y1c3{bottom:1011.156000px;}
.y61{bottom:1017.981000px;}
.y16e{bottom:1021.299000px;}
.y5{bottom:1021.359000px;}
.y10b{bottom:1022.539500px;}
.y1c2{bottom:1029.088500px;}
.yd1{bottom:1032.124500px;}
.y60{bottom:1035.913500px;}
.y16d{bottom:1039.231500px;}
.y4{bottom:1039.851000px;}
.y10a{bottom:1040.472000px;}
.y1c1{bottom:1051.236000px;}
.yca{bottom:1051.552500px;}
.y16c{bottom:1057.164000px;}
.y109{bottom:1058.404500px;}
.y3{bottom:1058.566500px;}
.y98{bottom:1063.158000px;}
.y5f{bottom:1066.962000px;}
.y16b{bottom:1075.096500px;}
.y1c0{bottom:1076.301000px;}
.y108{bottom:1076.337000px;}
.y5e{bottom:1080.411000px;}
.y8d{bottom:1082.586000px;}
.y16a{bottom:1093.030500px;}
.y5d{bottom:1093.861500px;}
.y107{bottom:1094.233500px;}
.y2{bottom:1105.639500px;}
.y5c{bottom:1107.310500px;}
.y169{bottom:1110.963000px;}
.y106{bottom:1112.166000px;}
.y1bf{bottom:1112.167500px;}
.y5b{bottom:1120.759500px;}
.y105{bottom:1130.100000px;}
.y5a{bottom:1142.017500px;}
.y1{bottom:1147.483500px;}
.y104{bottom:1148.032500px;}
.y103{bottom:1165.965000px;}
.y59{bottom:1171.345500px;}
.h13{height:12.455048px;}
.he{height:14.101528px;}
.h19{height:21.386926px;}
.h11{height:22.241198px;}
.h12{height:22.686022px;}
.h1a{height:24.060393px;}
.hc{height:25.181345px;}
.h1d{height:25.655632px;}
.hd{height:25.684972px;}
.h17{height:26.587058px;}
.h24{height:27.989126px;}
.h25{height:29.400007px;}
.h16{height:29.910565px;}
.h1f{height:30.524347px;}
.h1e{height:32.069460px;}
.h27{height:32.396185px;}
.h2b{height:32.661470px;}
.h9{height:32.900573px;}
.h2a{height:33.140573px;}
.ha{height:33.426599px;}
.h22{height:33.600188px;}
.hf{height:37.013299px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.h29{height:40.348800px;}
.h28{height:40.495130px;}
.h14{height:40.826735px;}
.h5{height:41.125613px;}
.h1b{height:41.484266px;}
.h23{height:42.000130px;}
.h6{height:44.831700px;}
.h4{height:45.238339px;}
.h3{height:45.568339px;}
.h10{height:63.551063px;}
.hb{height:95.933791px;}
.h2{height:98.701718px;}
.h18{height:118.192816px;}
.h15{height:126.965787px;}
.h26{height:133.408011px;}
.h1c{height:136.063277px;}
.h20{height:136.066496px;}
.h21{height:186.222245px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:184.531707px;}
.w4{width:184.534774px;}
.w6{width:187.883570px;}
.w7{width:198.572747px;}
.w2{width:376.594758px;}
.w3{width:376.595432px;}
.w8{width:376.598438px;}
.w9{width:376.602619px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:2.397974px;}
.x2a{left:10.305553px;}
.x39{left:11.579762px;}
.x2e{left:13.361518px;}
.x3e{left:15.165566px;}
.x29{left:17.747834px;}
.x2d{left:19.348172px;}
.x38{left:21.591878px;}
.x28{left:24.162674px;}
.x3d{left:26.937539px;}
.x27{left:28.676079px;}
.x3c{left:32.282128px;}
.x40{left:34.014890px;}
.x1e{left:38.410834px;}
.x13{left:40.957061px;}
.x3a{left:50.352436px;}
.x14{left:51.386539px;}
.x8{left:60.903000px;}
.x36{left:62.346000px;}
.x41{left:64.168500px;}
.x1{left:65.406000px;}
.x31{left:69.378000px;}
.x10{left:71.992500px;}
.x7{left:75.846000px;}
.x11{left:90.790500px;}
.x42{left:96.694500px;}
.x37{left:102.005343px;}
.x2{left:103.029000px;}
.x2f{left:107.638129px;}
.xe{left:108.874500px;}
.x16{left:117.649028px;}
.x15{left:119.542132px;}
.x2b{left:127.505083px;}
.x20{left:129.562957px;}
.x1f{left:131.234454px;}
.x1c{left:135.525186px;}
.x3f{left:155.086500px;}
.x35{left:158.106000px;}
.x5{left:173.970000px;}
.x19{left:175.581475px;}
.x22{left:178.980045px;}
.x23{left:180.731273px;}
.x12{left:181.912500px;}
.x9{left:190.885500px;}
.x3{left:192.757500px;}
.x21{left:227.414167px;}
.x17{left:228.435556px;}
.x18{left:230.201636px;}
.x3b{left:237.474000px;}
.x6{left:242.170500px;}
.xf{left:243.900000px;}
.x2c{left:250.663500px;}
.x30{left:265.069500px;}
.x24{left:285.946752px;}
.x1a{left:294.705783px;}
.xa{left:455.422500px;}
.x45{left:461.400000px;}
.x33{left:468.102000px;}
.xb{left:470.367000px;}
.x4a{left:482.812500px;}
.xd{left:485.311500px;}
.x46{left:505.567500px;}
.x47{left:515.526000px;}
.x25{left:522.907500px;}
.x4{left:549.187500px;}
.x1d{left:552.234000px;}
.x32{left:554.121000px;}
.x43{left:574.855500px;}
.x48{left:576.963000px;}
.x34{left:584.883000px;}
.xc{left:586.236000px;}
.x44{left:601.875000px;}
.x26{left:605.236500px;}
.x4b{left:609.532500px;}
.x49{left:697.848000px;}
@media print{
.v1{vertical-align:-23.448576pt;}
.v2{vertical-align:-19.846110pt;}
.v5{vertical-align:-7.973333pt;}
.v6{vertical-align:-5.699749pt;}
.v7{vertical-align:-1.373434pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.541904pt;}
.v4{vertical-align:3.247107pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.002359pt;}
.ls16{letter-spacing:0.002694pt;}
.ls26{letter-spacing:0.003580pt;}
.ls24{letter-spacing:0.003911pt;}
.ls27{letter-spacing:0.005417pt;}
.lsc{letter-spacing:0.008117pt;}
.ls9{letter-spacing:0.008504pt;}
.ls1e{letter-spacing:0.009224pt;}
.ls23{letter-spacing:0.009244pt;}
.ls7{letter-spacing:0.012783pt;}
.ls2c{letter-spacing:0.015694pt;}
.ls2f{letter-spacing:0.017377pt;}
.ls1a{letter-spacing:0.022094pt;}
.ls30{letter-spacing:0.022457pt;}
.ls2b{letter-spacing:0.023455pt;}
.ls20{letter-spacing:0.025014pt;}
.ls11{letter-spacing:0.025268pt;}
.ls29{letter-spacing:0.026003pt;}
.ls31{letter-spacing:0.765130pt;}
.ls21{letter-spacing:1.168945pt;}
.ls5{letter-spacing:2.210374pt;}
.ls0{letter-spacing:2.635446pt;}
.ls2e{letter-spacing:2.656365pt;}
.ls12{letter-spacing:2.656689pt;}
.ls4{letter-spacing:2.656693pt;}
.lsd{letter-spacing:2.657935pt;}
.lsa{letter-spacing:2.662022pt;}
.ls6{letter-spacing:2.677954pt;}
.ls10{letter-spacing:11.795718pt;}
.ls15{letter-spacing:11.848852pt;}
.ls2d{letter-spacing:13.415114pt;}
.ls17{letter-spacing:14.464689pt;}
.lsf{letter-spacing:14.771215pt;}
.ls2{letter-spacing:14.877520pt;}
.ls28{letter-spacing:15.249420pt;}
.ls1f{letter-spacing:18.596853pt;}
.ls8{letter-spacing:18.756255pt;}
.ls22{letter-spacing:19.340727pt;}
.ls25{letter-spacing:22.011356pt;}
.lsb{letter-spacing:23.166366pt;}
.ls2a{letter-spacing:23.272634pt;}
.ls19{letter-spacing:24.494713pt;}
.lse{letter-spacing:25.610524pt;}
.ls13{letter-spacing:53.133867pt;}
.ls1d{letter-spacing:129.902003pt;}
.ls1c{letter-spacing:132.239899pt;}
.ls1b{letter-spacing:134.620302pt;}
.ls18{letter-spacing:347.483356pt;}
.ls3{letter-spacing:366.624600pt;}
.ws12c{word-spacing:-13.449959pt;}
.ws3{word-spacing:-13.283467pt;}
.ws17{word-spacing:-13.262246pt;}
.ws75{word-spacing:-10.626800pt;}
.ws7b{word-spacing:-9.992597pt;}
.wse4{word-spacing:-9.298400pt;}
.ws82{word-spacing:-8.825872pt;}
.ws101{word-spacing:-4.463245pt;}
.ws123{word-spacing:-4.410111pt;}
.ws6d{word-spacing:-0.956410pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws169{word-spacing:-0.722622pt;}
.ws84{word-spacing:-0.690740pt;}
.ws10f{word-spacing:-0.584473pt;}
.ws14e{word-spacing:-0.552594pt;}
.wse3{word-spacing:-0.531339pt;}
.ws14f{word-spacing:-0.510086pt;}
.ws124{word-spacing:-0.212535pt;}
.ws46{word-spacing:-0.106268pt;}
.ws15a{word-spacing:-0.085014pt;}
.ws60{word-spacing:-0.053134pt;}
.ws127{word-spacing:-0.049778pt;}
.ws4{word-spacing:-0.047821pt;}
.wsdf{word-spacing:-0.038008pt;}
.wsca{word-spacing:-0.037194pt;}
.ws7a{word-spacing:-0.031976pt;}
.ws12f{word-spacing:-0.031881pt;}
.ws81{word-spacing:-0.028243pt;}
.wsa5{word-spacing:-0.019011pt;}
.wsc8{word-spacing:-0.010667pt;}
.ws53{word-spacing:0.000000pt;}
.ws13c{word-spacing:0.042467pt;}
.wsb6{word-spacing:0.159402pt;}
.ws165{word-spacing:0.170029pt;}
.ws141{word-spacing:0.212535pt;}
.wsf7{word-spacing:0.265669pt;}
.wsbf{word-spacing:0.318803pt;}
.ws136{word-spacing:0.371937pt;}
.ws8a{word-spacing:0.425071pt;}
.ws1a{word-spacing:0.478205pt;}
.ws69{word-spacing:0.584473pt;}
.ws134{word-spacing:0.637606pt;}
.ws151{word-spacing:0.680115pt;}
.ws30{word-spacing:0.690740pt;}
.ws6a{word-spacing:0.743874pt;}
.ws116{word-spacing:0.797008pt;}
.ws15f{word-spacing:0.807637pt;}
.ws5d{word-spacing:0.850142pt;}
.ws2b{word-spacing:0.956410pt;}
.ws171{word-spacing:0.977666pt;}
.wsa{word-spacing:1.004237pt;}
.ws144{word-spacing:1.009543pt;}
.wsc0{word-spacing:1.062677pt;}
.ws148{word-spacing:1.115811pt;}
.ws95{word-spacing:1.168945pt;}
.ws170{word-spacing:1.275216pt;}
.ws78{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.381481pt;}
.ws153{word-spacing:1.402738pt;}
.ws145{word-spacing:1.487748pt;}
.ws16e{word-spacing:1.530259pt;}
.ws19{word-spacing:1.540882pt;}
.ws16d{word-spacing:1.572766pt;}
.ws11d{word-spacing:1.647150pt;}
.ws26{word-spacing:1.700284pt;}
.ws160{word-spacing:1.742795pt;}
.wscb{word-spacing:1.753418pt;}
.ws80{word-spacing:1.765174pt;}
.ws85{word-spacing:1.806551pt;}
.wsfe{word-spacing:1.859685pt;}
.ws9b{word-spacing:1.912819pt;}
.wsfa{word-spacing:1.965953pt;}
.ws79{word-spacing:1.998519pt;}
.wsb8{word-spacing:2.072221pt;}
.ws16f{word-spacing:2.082853pt;}
.wsf1{word-spacing:2.125355pt;}
.ws8d{word-spacing:2.231622pt;}
.ws8e{word-spacing:2.284756pt;}
.ws94{word-spacing:2.337890pt;}
.wsb5{word-spacing:2.391024pt;}
.ws15b{word-spacing:2.422910pt;}
.ws1c{word-spacing:2.497292pt;}
.wsb{word-spacing:2.582323pt;}
.wsc5{word-spacing:2.603559pt;}
.wsb9{word-spacing:2.656693pt;}
.ws13a{word-spacing:2.816095pt;}
.ws25{word-spacing:2.869229pt;}
.ws6{word-spacing:2.869248pt;}
.ws166{word-spacing:2.890490pt;}
.ws2c{word-spacing:2.922363pt;}
.ws154{word-spacing:2.932997pt;}
.ws70{word-spacing:2.975497pt;}
.ws16a{word-spacing:2.975504pt;}
.ws9f{word-spacing:3.028630pt;}
.ws42{word-spacing:3.081764pt;}
.ws9d{word-spacing:3.134898pt;}
.ws58{word-spacing:3.188032pt;}
.ws125{word-spacing:3.347434pt;}
.ws1b{word-spacing:3.400567pt;}
.ws9{word-spacing:3.443098pt;}
.wsf9{word-spacing:3.506835pt;}
.wsaa{word-spacing:3.613103pt;}
.ws28{word-spacing:3.666237pt;}
.ws9c{word-spacing:3.719371pt;}
.ws3d{word-spacing:3.825638pt;}
.ws164{word-spacing:3.868155pt;}
.ws50{word-spacing:3.878772pt;}
.ws163{word-spacing:3.910662pt;}
.wsd0{word-spacing:3.931906pt;}
.ws43{word-spacing:3.985040pt;}
.ws52{word-spacing:4.038174pt;}
.wsc1{word-spacing:4.091308pt;}
.ws13{word-spacing:4.112589pt;}
.ws71{word-spacing:4.197575pt;}
.ws77{word-spacing:4.250709pt;}
.ws54{word-spacing:4.250720pt;}
.ws5f{word-spacing:4.356977pt;}
.ws76{word-spacing:4.410111pt;}
.ws96{word-spacing:4.463245pt;}
.ws66{word-spacing:4.569513pt;}
.ws8f{word-spacing:4.622646pt;}
.ws8b{word-spacing:4.675780pt;}
.ws8c{word-spacing:4.728914pt;}
.ws4f{word-spacing:4.782048pt;}
.ws7e{word-spacing:4.782080pt;}
.wsc{word-spacing:4.829901pt;}
.wsb1{word-spacing:4.835182pt;}
.wsec{word-spacing:4.888316pt;}
.ws11b{word-spacing:4.941450pt;}
.ws20{word-spacing:4.994583pt;}
.ws36{word-spacing:5.100851pt;}
.ws5c{word-spacing:5.153985pt;}
.ws13d{word-spacing:5.207119pt;}
.ws74{word-spacing:5.260226pt;}
.wse{word-spacing:5.308109pt;}
.ws2{word-spacing:5.313387pt;}
.ws4c{word-spacing:5.366521pt;}
.wscd{word-spacing:5.472788pt;}
.ws2e{word-spacing:5.525922pt;}
.wsaf{word-spacing:5.632190pt;}
.ws38{word-spacing:5.685324pt;}
.ws88{word-spacing:5.738458pt;}
.ws61{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws167{word-spacing:5.908501pt;}
.ws2d{word-spacing:5.950993pt;}
.ws14{word-spacing:5.977600pt;}
.ws161{word-spacing:5.993515pt;}
.ws32{word-spacing:6.004127pt;}
.wsab{word-spacing:6.057261pt;}
.ws11e{word-spacing:6.110395pt;}
.ws112{word-spacing:6.163529pt;}
.ws3f{word-spacing:6.269796pt;}
.wsef{word-spacing:6.376064pt;}
.wsa9{word-spacing:6.429198pt;}
.ws98{word-spacing:6.482332pt;}
.wsdb{word-spacing:6.535466pt;}
.ws10e{word-spacing:6.588599pt;}
.ws41{word-spacing:6.641733pt;}
.ws11f{word-spacing:6.694867pt;}
.ws108{word-spacing:6.748001pt;}
.ws22{word-spacing:6.801135pt;}
.ws2a{word-spacing:6.854269pt;}
.ws173{word-spacing:6.928674pt;}
.ws51{word-spacing:6.960537pt;}
.ws16b{word-spacing:7.013688pt;}
.wsb0{word-spacing:7.066804pt;}
.ws90{word-spacing:7.119938pt;}
.ws7{word-spacing:7.125299pt;}
.ws1d{word-spacing:7.173072pt;}
.ws162{word-spacing:7.183717pt;}
.wsba{word-spacing:7.226206pt;}
.ws168{word-spacing:7.226224pt;}
.ws139{word-spacing:7.279340pt;}
.ws67{word-spacing:7.385607pt;}
.ws104{word-spacing:7.438741pt;}
.ws152{word-spacing:7.438760pt;}
.ws6e{word-spacing:7.491875pt;}
.ws14d{word-spacing:7.523774pt;}
.ws140{word-spacing:7.598143pt;}
.ws13f{word-spacing:7.651277pt;}
.ws33{word-spacing:7.704411pt;}
.wsb4{word-spacing:7.757545pt;}
.ws3b{word-spacing:7.810678pt;}
.wsf{word-spacing:7.842611pt;}
.wsf0{word-spacing:7.863812pt;}
.ws21{word-spacing:7.916946pt;}
.wsb3{word-spacing:7.970080pt;}
.ws24{word-spacing:8.076348pt;}
.ws86{word-spacing:8.129482pt;}
.wsd{word-spacing:8.177357pt;}
.wsb2{word-spacing:8.182615pt;}
.wsbd{word-spacing:8.288883pt;}
.ws3a{word-spacing:8.342017pt;}
.ws59{word-spacing:8.395151pt;}
.ws109{word-spacing:8.448285pt;}
.ws100{word-spacing:8.515554pt;}
.ws114{word-spacing:8.554553pt;}
.wsc2{word-spacing:8.607686pt;}
.ws47{word-spacing:8.713954pt;}
.ws150{word-spacing:8.756483pt;}
.ws16c{word-spacing:8.798990pt;}
.ws45{word-spacing:8.820222pt;}
.ws5e{word-spacing:8.926490pt;}
.wsa3{word-spacing:8.947656pt;}
.wsf2{word-spacing:8.979623pt;}
.wsc7{word-spacing:9.032757pt;}
.ws5a{word-spacing:9.085891pt;}
.wsbc{word-spacing:9.139025pt;}
.wsd1{word-spacing:9.192159pt;}
.ws64{word-spacing:9.245293pt;}
.ws65{word-spacing:9.351561pt;}
.ws39{word-spacing:9.404694pt;}
.ws149{word-spacing:9.457828pt;}
.wsfc{word-spacing:9.510962pt;}
.ws56{word-spacing:9.564096pt;}
.ws37{word-spacing:9.670364pt;}
.ws72{word-spacing:9.723498pt;}
.wsa4{word-spacing:9.752479pt;}
.wsc3{word-spacing:9.776631pt;}
.ws31{word-spacing:9.882899pt;}
.wsce{word-spacing:9.936033pt;}
.wsa8{word-spacing:9.989167pt;}
.ws14b{word-spacing:10.031699pt;}
.ws63{word-spacing:10.042301pt;}
.ws102{word-spacing:10.095435pt;}
.ws97{word-spacing:10.148569pt;}
.ws48{word-spacing:10.201702pt;}
.ws35{word-spacing:10.254836pt;}
.ws93{word-spacing:10.307970pt;}
.ws5b{word-spacing:10.361104pt;}
.wseb{word-spacing:10.520506pt;}
.ws89{word-spacing:10.573639pt;}
.ws7f{word-spacing:10.618003pt;}
.ws73{word-spacing:10.626773pt;}
.ws62{word-spacing:10.679907pt;}
.wsee{word-spacing:10.733041pt;}
.wsde{word-spacing:10.733556pt;}
.ws159{word-spacing:10.796829pt;}
.ws132{word-spacing:10.855322pt;}
.ws14a{word-spacing:10.892443pt;}
.ws23{word-spacing:10.945577pt;}
.ws87{word-spacing:10.998710pt;}
.ws12{word-spacing:11.046605pt;}
.ws111{word-spacing:11.051844pt;}
.wsa1{word-spacing:11.123237pt;}
.wsd5{word-spacing:11.211246pt;}
.wsfd{word-spacing:11.264380pt;}
.ws10a{word-spacing:11.317514pt;}
.ws138{word-spacing:11.370647pt;}
.wsd8{word-spacing:11.423781pt;}
.wsfb{word-spacing:11.476915pt;}
.wsd9{word-spacing:11.689451pt;}
.wse5{word-spacing:11.742585pt;}
.ws4a{word-spacing:11.795718pt;}
.ws174{word-spacing:11.902016pt;}
.wsa7{word-spacing:11.955120pt;}
.wsa0{word-spacing:12.123749pt;}
.ws4e{word-spacing:12.167655pt;}
.wscf{word-spacing:12.273923pt;}
.ws9e{word-spacing:12.327057pt;}
.wsf8{word-spacing:12.380191pt;}
.ws1e{word-spacing:12.592726pt;}
.wse2{word-spacing:12.618739pt;}
.ws13e{word-spacing:12.645860pt;}
.ws15e{word-spacing:12.667146pt;}
.ws3c{word-spacing:12.698994pt;}
.ws15c{word-spacing:12.709653pt;}
.ws118{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wsae{word-spacing:12.858396pt;}
.wsdc{word-spacing:12.911530pt;}
.ws8{word-spacing:12.911616pt;}
.wsad{word-spacing:13.017797pt;}
.wsac{word-spacing:13.070931pt;}
.ws10c{word-spacing:13.124065pt;}
.wsed{word-spacing:13.177199pt;}
.ws11{word-spacing:13.246362pt;}
.ws142{word-spacing:13.280282pt;}
.ws12b{word-spacing:13.280496pt;}
.ws40{word-spacing:13.283467pt;}
.ws12d{word-spacing:13.285378pt;}
.ws12e{word-spacing:13.285688pt;}
.ws129{word-spacing:13.293966pt;}
.ws12a{word-spacing:13.380270pt;}
.ws13b{word-spacing:13.389734pt;}
.wse9{word-spacing:13.442868pt;}
.ws34{word-spacing:13.496002pt;}
.wse7{word-spacing:13.549136pt;}
.ws130{word-spacing:13.553604pt;}
.ws9a{word-spacing:13.708538pt;}
.ws143{word-spacing:13.761671pt;}
.wse6{word-spacing:13.814805pt;}
.ws57{word-spacing:13.867939pt;}
.ws126{word-spacing:14.057323pt;}
.ws113{word-spacing:14.080475pt;}
.ws15d{word-spacing:14.324926pt;}
.wse1{word-spacing:14.330663pt;}
.wsd2{word-spacing:14.417639pt;}
.wsd3{word-spacing:14.424035pt;}
.ws44{word-spacing:14.452412pt;}
.wse0{word-spacing:14.542606pt;}
.ws146{word-spacing:14.611813pt;}
.ws106{word-spacing:14.718081pt;}
.ws158{word-spacing:14.749998pt;}
.ws55{word-spacing:14.835013pt;}
.ws137{word-spacing:14.877483pt;}
.ws27{word-spacing:14.983750pt;}
.ws5{word-spacing:15.015731pt;}
.wsff{word-spacing:15.090018pt;}
.ws29{word-spacing:15.143152pt;}
.ws49{word-spacing:15.196286pt;}
.wsc9{word-spacing:15.302554pt;}
.ws110{word-spacing:15.308766pt;}
.ws1f{word-spacing:15.355687pt;}
.ws10d{word-spacing:15.461955pt;}
.wsbe{word-spacing:15.568223pt;}
.ws91{word-spacing:15.621357pt;}
.ws131{word-spacing:15.934084pt;}
.ws16{word-spacing:15.940160pt;}
.ws103{word-spacing:16.258963pt;}
.ws121{word-spacing:16.577766pt;}
.ws99{word-spacing:16.630900pt;}
.ws117{word-spacing:16.711433pt;}
.wsc4{word-spacing:17.055971pt;}
.ws119{word-spacing:17.374774pt;}
.ws105{word-spacing:17.378099pt;}
.ws4d{word-spacing:17.427908pt;}
.wsd6{word-spacing:17.462972pt;}
.wsbb{word-spacing:17.481042pt;}
.wscc{word-spacing:17.682701pt;}
.ws147{word-spacing:17.693578pt;}
.wsf6{word-spacing:17.799845pt;}
.ws15{word-spacing:17.884979pt;}
.ws107{word-spacing:17.889639pt;}
.ws10{word-spacing:17.932800pt;}
.ws18{word-spacing:18.065515pt;}
.ws68{word-spacing:18.331184pt;}
.wse8{word-spacing:18.384318pt;}
.wsf5{word-spacing:18.437452pt;}
.ws3e{word-spacing:18.490586pt;}
.ws4b{word-spacing:18.543719pt;}
.ws10b{word-spacing:18.596853pt;}
.ws128{word-spacing:19.045887pt;}
.ws6c{word-spacing:19.181326pt;}
.wsea{word-spacing:19.340727pt;}
.ws133{word-spacing:19.606397pt;}
.wsb7{word-spacing:19.765798pt;}
.ws156{word-spacing:20.063398pt;}
.wsf4{word-spacing:20.350271pt;}
.wsda{word-spacing:20.562806pt;}
.ws6f{word-spacing:20.722208pt;}
.ws14c{word-spacing:21.296107pt;}
.ws11a{word-spacing:21.359814pt;}
.wsf3{word-spacing:22.209956pt;}
.ws120{word-spacing:22.594099pt;}
.ws122{word-spacing:22.668766pt;}
.wsc6{word-spacing:22.794429pt;}
.wsd7{word-spacing:22.882701pt;}
.ws115{word-spacing:24.471433pt;}
.ws172{word-spacing:25.461813pt;}
.ws135{word-spacing:25.799433pt;}
.ws11c{word-spacing:27.106099pt;}
.ws157{word-spacing:28.777374pt;}
.ws92{word-spacing:28.851690pt;}
.wsd4{word-spacing:32.952035pt;}
.ws155{word-spacing:34.515846pt;}
.wsdd{word-spacing:53.134000pt;}
.ws7d{word-spacing:60.172834pt;}
.wsa6{word-spacing:66.634039pt;}
.wsa2{word-spacing:82.835796pt;}
.ws7c{word-spacing:1140.168639pt;}
.ws83{word-spacing:1163.386795pt;}
._27{margin-left:-503.223506pt;}
._2e{margin-left:-13.415114pt;}
._5{margin-left:-6.934016pt;}
._1d{margin-left:-5.844711pt;}
._0{margin-left:-4.463256pt;}
._3{margin-left:-3.538739pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-1.004245pt;}
._8{width:1.020173pt;}
._6{width:2.656693pt;}
._2{width:4.232631pt;}
._24{width:7.056195pt;}
._f{width:7.970080pt;}
._29{width:8.868057pt;}
._2a{width:14.398797pt;}
._1b{width:15.568228pt;}
._c{width:18.166489pt;}
._7{width:19.712669pt;}
._d{width:21.094150pt;}
._21{width:23.272605pt;}
._1f{width:25.557395pt;}
._9{width:26.566933pt;}
._b{width:28.798556pt;}
._a{width:29.967501pt;}
._1a{width:31.720918pt;}
._20{width:32.656103pt;}
._1c{width:35.918503pt;}
._e{width:37.353108pt;}
._32{width:41.699563pt;}
._33{width:43.314837pt;}
._28{width:50.931134pt;}
._23{width:62.889422pt;}
._18{width:64.185872pt;}
._1e{width:66.791387pt;}
._2f{width:95.020359pt;}
._2d{width:99.072505pt;}
._30{width:114.386215pt;}
._25{width:135.300418pt;}
._31{width:152.784746pt;}
._26{width:156.554018pt;}
._2b{width:158.462986pt;}
._2c{width:164.121678pt;}
._10{width:166.458195pt;}
._16{width:185.628942pt;}
._13{width:191.027357pt;}
._12{width:267.497810pt;}
._14{width:284.033110pt;}
._17{width:303.586422pt;}
._19{width:329.940886pt;}
._15{width:387.283099pt;}
._11{width:521.531478pt;}
._22{width:580.095758pt;}
.fs8{font-size:16.138709pt;}
.fs6{font-size:18.272145pt;}
.fsd{font-size:19.010681pt;}
.fsb{font-size:25.347468pt;}
.fs11{font-size:26.605698pt;}
.fs7{font-size:28.242791pt;}
.fsc{font-size:28.516021pt;}
.fsf{font-size:30.406675pt;}
.fsa{font-size:31.510587pt;}
.fs15{font-size:31.880533pt;}
.fs5{font-size:31.976311pt;}
.fs14{font-size:34.844452pt;}
.fs9{font-size:35.449559pt;}
.fse{font-size:37.193600pt;}
.fs10{font-size:38.008249pt;}
.fs16{font-size:38.395479pt;}
.fs12{font-size:39.822445pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs17{font-size:47.994228pt;}
.fs13{font-size:49.777932pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:7.983398pt;}
.y136{bottom:9.691291pt;}
.yce{bottom:9.924524pt;}
.y19e{bottom:12.237502pt;}
.y194{bottom:12.692308pt;}
.y97{bottom:14.695481pt;}
.y9e{bottom:17.093250pt;}
.y13d{bottom:19.235701pt;}
.y137{bottom:19.236654pt;}
.ya2{bottom:21.450343pt;}
.y9b{bottom:21.489828pt;}
.ya1{bottom:22.176272pt;}
.y9d{bottom:23.874156pt;}
.y19f{bottom:24.290737pt;}
.y195{bottom:25.193501pt;}
.y1a4{bottom:27.326928pt;}
.y9c{bottom:28.917186pt;}
.ya0{bottom:29.746891pt;}
.yd5{bottom:31.412021pt;}
.yd7{bottom:33.084869pt;}
.y9f{bottom:34.790428pt;}
.y143{bottom:35.159900pt;}
.ycf{bottom:35.526061pt;}
.y13e{bottom:37.720782pt;}
.ycd{bottom:39.049707pt;}
.y199{bottom:39.116193pt;}
.y13b{bottom:43.383334pt;}
.y92{bottom:44.148341pt;}
.y1a0{bottom:44.931059pt;}
.y96{bottom:49.080842pt;}
.y8f{bottom:49.125547pt;}
.y9a{bottom:49.523142pt;}
.y95{bottom:49.902734pt;}
.y138{bottom:50.042579pt;}
.y91{bottom:51.825068pt;}
.y196{bottom:53.737142pt;}
.yd4{bottom:55.352675pt;}
.y13f{bottom:56.204909pt;}
.y90{bottom:57.534755pt;}
.y94{bottom:58.474142pt;}
.ycc{bottom:64.019656pt;}
.y93{bottom:64.184403pt;}
.y1a1{bottom:65.571380pt;}
.yd8{bottom:66.345451pt;}
.y140{bottom:74.689036pt;}
.y8e{bottom:75.247280pt;}
.yd3{bottom:80.796825pt;}
.y139{bottom:80.848504pt;}
.yd0{bottom:81.755506pt;}
.y197{bottom:82.280784pt;}
.y1a2{bottom:86.212906pt;}
.y141{bottom:93.173163pt;}
.yd2{bottom:98.090610pt;}
.ycb{bottom:99.581300pt;}
.y144{bottom:100.829102pt;}
.y13c{bottom:101.771430pt;}
.y1a3{bottom:106.853228pt;}
.y198{bottom:110.824425pt;}
.y13a{bottom:111.654429pt;}
.y142{bottom:111.657290pt;}
.y19b{bottom:134.772553pt;}
.y19a{bottom:149.201138pt;}
.y134{bottom:159.700000pt;}
.y33{bottom:159.701333pt;}
.y1fe{bottom:161.385333pt;}
.y1fd{bottom:173.341333pt;}
.y32{bottom:175.641333pt;}
.y1fc{bottom:185.296000pt;}
.y31{bottom:191.581333pt;}
.y102{bottom:191.668000pt;}
.y168{bottom:191.806667pt;}
.y1fb{bottom:197.250667pt;}
.y30{bottom:207.521333pt;}
.y101{bottom:207.608000pt;}
.y167{bottom:207.746667pt;}
.y1fa{bottom:209.206667pt;}
.y8c{bottom:211.594667pt;}
.y1f9{bottom:221.161333pt;}
.y2f{bottom:223.461333pt;}
.y1be{bottom:223.462667pt;}
.y100{bottom:223.548000pt;}
.y166{bottom:223.686667pt;}
.y133{bottom:227.629333pt;}
.yc9{bottom:228.130667pt;}
.y1f8{bottom:233.116000pt;}
.y8b{bottom:235.829333pt;}
.y58{bottom:239.401333pt;}
.y2e{bottom:239.402667pt;}
.yff{bottom:239.488000pt;}
.y165{bottom:239.628000pt;}
.y1f7{bottom:245.072000pt;}
.yc8{bottom:249.084000pt;}
.y8a{bottom:251.770667pt;}
.y132{bottom:252.440000pt;}
.y57{bottom:255.342667pt;}
.yfe{bottom:255.428000pt;}
.y164{bottom:255.568000pt;}
.y2d{bottom:256.093333pt;}
.y1f6{bottom:257.026667pt;}
.y89{bottom:267.710667pt;}
.y131{bottom:268.380000pt;}
.y1f5{bottom:268.982667pt;}
.y56{bottom:271.282667pt;}
.yfd{bottom:271.369333pt;}
.y163{bottom:271.508000pt;}
.y2c{bottom:272.033333pt;}
.yc7{bottom:275.166667pt;}
.y1f4{bottom:280.937333pt;}
.y88{bottom:283.650667pt;}
.y130{bottom:284.321333pt;}
.y55{bottom:287.222667pt;}
.y162{bottom:287.448000pt;}
.y2b{bottom:287.973333pt;}
.yc6{bottom:291.106667pt;}
.yfc{bottom:292.010667pt;}
.y1f3{bottom:292.892000pt;}
.y87{bottom:299.590667pt;}
.y12f{bottom:300.261333pt;}
.y54{bottom:303.162667pt;}
.y161{bottom:303.388000pt;}
.y2a{bottom:303.913333pt;}
.y192{bottom:304.233333pt;}
.y1f2{bottom:304.848000pt;}
.yc5{bottom:307.046667pt;}
.y86{bottom:315.530667pt;}
.y12e{bottom:316.201333pt;}
.y1f1{bottom:316.802667pt;}
.yfb{bottom:317.649333pt;}
.y53{bottom:319.102667pt;}
.y160{bottom:319.329333pt;}
.y29{bottom:319.853333pt;}
.y191{bottom:320.173333pt;}
.yc4{bottom:322.986667pt;}
.y1f0{bottom:328.757333pt;}
.y85{bottom:331.470667pt;}
.y12d{bottom:332.141333pt;}
.yfa{bottom:333.589333pt;}
.y1bd{bottom:335.044000pt;}
.y52{bottom:335.269333pt;}
.y28{bottom:335.793333pt;}
.y190{bottom:336.113333pt;}
.yc3{bottom:338.926667pt;}
.y1ef{bottom:340.713333pt;}
.y84{bottom:347.412000pt;}
.y12c{bottom:348.081333pt;}
.yf9{bottom:349.529333pt;}
.y1bc{bottom:350.984000pt;}
.y51{bottom:351.209333pt;}
.y27{bottom:351.734667pt;}
.y18f{bottom:352.053333pt;}
.y1ee{bottom:352.668000pt;}
.yc2{bottom:354.868000pt;}
.y83{bottom:363.352000pt;}
.y12b{bottom:364.021333pt;}
.y1ed{bottom:364.624000pt;}
.yf8{bottom:365.470667pt;}
.y1bb{bottom:366.924000pt;}
.y50{bottom:367.149333pt;}
.y26{bottom:367.674667pt;}
.y18e{bottom:367.993333pt;}
.yc1{bottom:370.808000pt;}
.y1ec{bottom:376.578667pt;}
.y82{bottom:379.292000pt;}
.yf7{bottom:381.410667pt;}
.y15f{bottom:383.089333pt;}
.y4f{bottom:383.090667pt;}
.y25{bottom:383.614667pt;}
.y18d{bottom:383.934667pt;}
.yc0{bottom:386.748000pt;}
.y1eb{bottom:388.533333pt;}
.y1ba{bottom:388.700000pt;}
.y12a{bottom:388.857333pt;}
.y81{bottom:395.232000pt;}
.yf6{bottom:397.350667pt;}
.y4e{bottom:399.030667pt;}
.y15e{bottom:399.254667pt;}
.y24{bottom:399.554667pt;}
.y18c{bottom:399.874667pt;}
.y1ea{bottom:400.489333pt;}
.ybf{bottom:402.688000pt;}
.y129{bottom:408.782667pt;}
.y80{bottom:411.172000pt;}
.y1e9{bottom:412.444000pt;}
.yf5{bottom:413.290667pt;}
.y4d{bottom:414.970667pt;}
.y15d{bottom:415.196000pt;}
.y23{bottom:415.494667pt;}
.y18b{bottom:415.814667pt;}
.y1b9{bottom:415.946667pt;}
.ybe{bottom:418.766667pt;}
.y1e8{bottom:424.398667pt;}
.y7f{bottom:427.112000pt;}
.yf4{bottom:429.230667pt;}
.y4c{bottom:430.910667pt;}
.y15c{bottom:431.136000pt;}
.y22{bottom:431.434667pt;}
.y18a{bottom:431.754667pt;}
.y1b8{bottom:431.886667pt;}
.y128{bottom:433.618667pt;}
.ybd{bottom:434.706667pt;}
.y1e7{bottom:436.354667pt;}
.y7e{bottom:443.053333pt;}
.yf3{bottom:445.170667pt;}
.y4b{bottom:446.850667pt;}
.y15b{bottom:447.076000pt;}
.y21{bottom:447.376000pt;}
.y189{bottom:447.694667pt;}
.y1b7{bottom:447.826667pt;}
.y1e6{bottom:448.309333pt;}
.y127{bottom:449.558667pt;}
.ybc{bottom:450.646667pt;}
.y7d{bottom:458.993333pt;}
.y1e5{bottom:460.265333pt;}
.yf2{bottom:461.112000pt;}
.y4a{bottom:462.792000pt;}
.y15a{bottom:463.016000pt;}
.y20{bottom:463.316000pt;}
.y188{bottom:463.636000pt;}
.y1b6{bottom:463.766667pt;}
.y126{bottom:465.498667pt;}
.ybb{bottom:466.586667pt;}
.y1e4{bottom:472.220000pt;}
.y7c{bottom:474.709333pt;}
.yf1{bottom:477.181333pt;}
.y49{bottom:478.732000pt;}
.y1f{bottom:479.256000pt;}
.y187{bottom:479.576000pt;}
.y1b5{bottom:479.706667pt;}
.y125{bottom:481.438667pt;}
.yba{bottom:482.528000pt;}
.y159{bottom:483.666667pt;}
.y1e3{bottom:484.174667pt;}
.y7b{bottom:490.649333pt;}
.yf0{bottom:493.121333pt;}
.y48{bottom:494.672000pt;}
.y1e{bottom:495.196000pt;}
.y186{bottom:495.516000pt;}
.y1b4{bottom:495.648000pt;}
.y1e2{bottom:496.130667pt;}
.y124{bottom:497.378667pt;}
.yb9{bottom:498.468000pt;}
.y7a{bottom:506.590667pt;}
.y1e1{bottom:508.085333pt;}
.yef{bottom:509.061333pt;}
.y158{bottom:509.850667pt;}
.y47{bottom:510.838667pt;}
.y1d{bottom:511.136000pt;}
.y1b3{bottom:511.588000pt;}
.y185{bottom:512.526667pt;}
.y123{bottom:513.318667pt;}
.yb8{bottom:514.408000pt;}
.y1e0{bottom:520.040000pt;}
.y79{bottom:522.530667pt;}
.yee{bottom:525.001333pt;}
.y157{bottom:525.792000pt;}
.y46{bottom:526.778667pt;}
.y1c{bottom:527.076000pt;}
.y1b2{bottom:527.528000pt;}
.y184{bottom:528.466667pt;}
.y122{bottom:529.260000pt;}
.yb7{bottom:530.348000pt;}
.y1df{bottom:531.996000pt;}
.y78{bottom:538.470667pt;}
.yed{bottom:540.941333pt;}
.y156{bottom:541.732000pt;}
.y45{bottom:542.718667pt;}
.y1b{bottom:543.017333pt;}
.y1b1{bottom:543.468000pt;}
.y1de{bottom:543.950667pt;}
.y183{bottom:544.406667pt;}
.y121{bottom:545.200000pt;}
.yb6{bottom:546.288000pt;}
.y77{bottom:554.410667pt;}
.y1dd{bottom:555.905333pt;}
.yec{bottom:556.882667pt;}
.y155{bottom:557.672000pt;}
.y44{bottom:558.658667pt;}
.y1a{bottom:558.957333pt;}
.y1b0{bottom:559.408000pt;}
.y182{bottom:560.346667pt;}
.y120{bottom:561.140000pt;}
.yb5{bottom:562.229333pt;}
.y1dc{bottom:567.861333pt;}
.y76{bottom:570.350667pt;}
.yeb{bottom:572.822667pt;}
.y154{bottom:573.612000pt;}
.y43{bottom:574.598667pt;}
.y19{bottom:574.897333pt;}
.y1af{bottom:575.349333pt;}
.y181{bottom:576.286667pt;}
.y11f{bottom:577.080000pt;}
.yb4{bottom:578.169333pt;}
.y1db{bottom:579.816000pt;}
.y75{bottom:586.290667pt;}
.yea{bottom:588.762667pt;}
.y153{bottom:589.552000pt;}
.y42{bottom:590.540000pt;}
.y1ae{bottom:591.289333pt;}
.y1da{bottom:591.772000pt;}
.y180{bottom:592.228000pt;}
.y11e{bottom:593.020000pt;}
.yb3{bottom:594.109333pt;}
.y18{bottom:599.524000pt;}
.y74{bottom:602.232000pt;}
.y1d9{bottom:603.726667pt;}
.ye9{bottom:604.702667pt;}
.y152{bottom:605.492000pt;}
.y41{bottom:606.480000pt;}
.y1ad{bottom:607.229333pt;}
.y17f{bottom:608.168000pt;}
.y11d{bottom:608.960000pt;}
.yb2{bottom:610.049333pt;}
.y1d8{bottom:615.681333pt;}
.y73{bottom:618.172000pt;}
.ye8{bottom:620.642667pt;}
.y151{bottom:621.433333pt;}
.y1ac{bottom:623.169333pt;}
.y17e{bottom:624.108000pt;}
.y11c{bottom:624.901333pt;}
.yb1{bottom:625.989333pt;}
.y40{bottom:627.509333pt;}
.y1d7{bottom:627.637333pt;}
.y72{bottom:634.112000pt;}
.y17{bottom:634.501333pt;}
.y150{bottom:637.373333pt;}
.y1ab{bottom:639.385333pt;}
.y1d6{bottom:639.592000pt;}
.y17d{bottom:640.048000pt;}
.y11b{bottom:640.841333pt;}
.ye7{bottom:641.069333pt;}
.yb0{bottom:641.929333pt;}
.y16{bottom:648.534667pt;}
.y71{bottom:650.052000pt;}
.y1d5{bottom:651.546667pt;}
.y14f{bottom:653.313333pt;}
.y3f{bottom:653.697333pt;}
.y1aa{bottom:655.325333pt;}
.y17c{bottom:657.058667pt;}
.yaf{bottom:657.870667pt;}
.y11a{bottom:660.949333pt;}
.y15{bottom:661.818667pt;}
.y1d4{bottom:663.502667pt;}
.y70{bottom:665.992000pt;}
.ye6{bottom:666.708000pt;}
.y14e{bottom:669.253333pt;}
.y3e{bottom:669.637333pt;}
.y1a9{bottom:671.265333pt;}
.y17b{bottom:672.998667pt;}
.yae{bottom:673.810667pt;}
.y14{bottom:675.101333pt;}
.y1d3{bottom:675.457333pt;}
.y6f{bottom:681.933333pt;}
.ye5{bottom:682.648000pt;}
.y14d{bottom:685.193333pt;}
.y3d{bottom:685.577333pt;}
.y119{bottom:685.760000pt;}
.y1a8{bottom:687.205333pt;}
.y1d2{bottom:687.413333pt;}
.y13{bottom:688.385333pt;}
.y17a{bottom:688.938667pt;}
.yad{bottom:689.750667pt;}
.y6e{bottom:697.873333pt;}
.ye4{bottom:698.589333pt;}
.y1d1{bottom:699.368000pt;}
.y14c{bottom:701.360000pt;}
.y3c{bottom:701.517333pt;}
.y12{bottom:701.669333pt;}
.y118{bottom:701.700000pt;}
.y1a7{bottom:703.145333pt;}
.y179{bottom:704.880000pt;}
.yac{bottom:705.690667pt;}
.y1d0{bottom:711.322667pt;}
.y6d{bottom:713.813333pt;}
.ye3{bottom:714.529333pt;}
.y11{bottom:714.952000pt;}
.y14b{bottom:717.300000pt;}
.y3b{bottom:717.458667pt;}
.y117{bottom:717.640000pt;}
.y178{bottom:720.820000pt;}
.yab{bottom:721.630667pt;}
.y1cf{bottom:723.278667pt;}
.y10{bottom:728.236000pt;}
.y6c{bottom:729.753333pt;}
.y1a6{bottom:730.412000pt;}
.ye2{bottom:730.469333pt;}
.y14a{bottom:733.240000pt;}
.y3a{bottom:733.549333pt;}
.y116{bottom:733.581333pt;}
.y1ce{bottom:735.233333pt;}
.y177{bottom:736.760000pt;}
.yaa{bottom:737.570667pt;}
.yf{bottom:741.520000pt;}
.y6b{bottom:745.693333pt;}
.ye1{bottom:746.409333pt;}
.y1cd{bottom:747.188000pt;}
.y149{bottom:749.180000pt;}
.y39{bottom:749.489333pt;}
.y115{bottom:749.521333pt;}
.ya9{bottom:753.512000pt;}
.y1a5{bottom:753.525333pt;}
.y176{bottom:754.305333pt;}
.ye{bottom:754.802667pt;}
.y19d{bottom:756.497333pt;}
.y1cc{bottom:759.144000pt;}
.y6a{bottom:761.410667pt;}
.ye0{bottom:762.349333pt;}
.y148{bottom:765.120000pt;}
.y38{bottom:765.429333pt;}
.y114{bottom:765.461333pt;}
.yd{bottom:768.086667pt;}
.ya8{bottom:769.452000pt;}
.y175{bottom:770.245333pt;}
.y1cb{bottom:771.098667pt;}
.y69{bottom:777.350667pt;}
.ydf{bottom:778.290667pt;}
.y147{bottom:781.061333pt;}
.yc{bottom:781.369333pt;}
.y113{bottom:781.401333pt;}
.y1ca{bottom:783.054667pt;}
.ya7{bottom:785.392000pt;}
.y174{bottom:786.185333pt;}
.y68{bottom:793.290667pt;}
.yde{bottom:794.230667pt;}
.yb{bottom:794.653333pt;}
.y1c9{bottom:795.009333pt;}
.y37{bottom:797.309333pt;}
.y112{bottom:797.341333pt;}
.ya6{bottom:801.332000pt;}
.y173{bottom:802.126667pt;}
.ya{bottom:807.937333pt;}
.y146{bottom:807.993333pt;}
.y67{bottom:809.230667pt;}
.ydd{bottom:810.170667pt;}
.y36{bottom:813.250667pt;}
.y111{bottom:813.282667pt;}
.y1c8{bottom:813.441333pt;}
.y9{bottom:821.220000pt;}
.y145{bottom:823.933333pt;}
.y66{bottom:825.170667pt;}
.y172{bottom:825.996000pt;}
.ydc{bottom:826.110667pt;}
.ya5{bottom:828.233333pt;}
.y35{bottom:829.190667pt;}
.y110{bottom:829.222667pt;}
.y135{bottom:832.545333pt;}
.y8{bottom:834.504000pt;}
.y1c7{bottom:835.044000pt;}
.y65{bottom:841.112000pt;}
.ydb{bottom:842.180000pt;}
.ya4{bottom:844.173333pt;}
.y34{bottom:845.130667pt;}
.y10f{bottom:845.162667pt;}
.y7{bottom:847.788000pt;}
.y1c6{bottom:850.984000pt;}
.y64{bottom:857.052000pt;}
.yda{bottom:858.120000pt;}
.y171{bottom:860.000000pt;}
.y6{bottom:861.070667pt;}
.y10e{bottom:861.102667pt;}
.y1c5{bottom:866.924000pt;}
.ya3{bottom:867.286667pt;}
.y63{bottom:872.992000pt;}
.y170{bottom:875.941333pt;}
.y10d{bottom:877.042667pt;}
.y19c{bottom:879.068000pt;}
.y193{bottom:882.040000pt;}
.y1c4{bottom:882.864000pt;}
.y99{bottom:884.554667pt;}
.y62{bottom:888.932000pt;}
.y16f{bottom:891.881333pt;}
.y10c{bottom:892.982667pt;}
.yd9{bottom:894.330667pt;}
.y1c3{bottom:898.805333pt;}
.y61{bottom:904.872000pt;}
.y16e{bottom:907.821333pt;}
.y5{bottom:907.874667pt;}
.y10b{bottom:908.924000pt;}
.y1c2{bottom:914.745333pt;}
.yd1{bottom:917.444000pt;}
.y60{bottom:920.812000pt;}
.y16d{bottom:923.761333pt;}
.y4{bottom:924.312000pt;}
.y10a{bottom:924.864000pt;}
.y1c1{bottom:934.432000pt;}
.yca{bottom:934.713333pt;}
.y16c{bottom:939.701333pt;}
.y109{bottom:940.804000pt;}
.y3{bottom:940.948000pt;}
.y98{bottom:945.029333pt;}
.y5f{bottom:948.410667pt;}
.y16b{bottom:955.641333pt;}
.y1c0{bottom:956.712000pt;}
.y108{bottom:956.744000pt;}
.y5e{bottom:960.365333pt;}
.y8d{bottom:962.298667pt;}
.y16a{bottom:971.582667pt;}
.y5d{bottom:972.321333pt;}
.y107{bottom:972.652000pt;}
.y2{bottom:982.790667pt;}
.y5c{bottom:984.276000pt;}
.y169{bottom:987.522667pt;}
.y106{bottom:988.592000pt;}
.y1bf{bottom:988.593333pt;}
.y5b{bottom:996.230667pt;}
.y105{bottom:1004.533333pt;}
.y5a{bottom:1015.126667pt;}
.y1{bottom:1019.985333pt;}
.y104{bottom:1020.473333pt;}
.y103{bottom:1036.413333pt;}
.y59{bottom:1041.196000pt;}
.h13{height:11.071154pt;}
.he{height:12.534691pt;}
.h19{height:19.010601pt;}
.h11{height:19.769954pt;}
.h12{height:20.165353pt;}
.h1a{height:21.387016pt;}
.hc{height:22.383418pt;}
.h1d{height:22.805007pt;}
.hd{height:22.831086pt;}
.h17{height:23.632941pt;}
.h24{height:24.879223pt;}
.h25{height:26.133339pt;}
.h16{height:26.587169pt;}
.h1f{height:27.132753pt;}
.h1e{height:28.506187pt;}
.h27{height:28.796609pt;}
.h2b{height:29.032418pt;}
.h9{height:29.244954pt;}
.h2a{height:29.458287pt;}
.ha{height:29.712533pt;}
.h22{height:29.866834pt;}
.hf{height:32.900710pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.h29{height:35.865600pt;}
.h28{height:35.995671pt;}
.h14{height:36.290431pt;}
.h5{height:36.556100pt;}
.h1b{height:36.874903pt;}
.h23{height:37.333449pt;}
.h6{height:39.850400pt;}
.h4{height:40.211857pt;}
.h3{height:40.505190pt;}
.h10{height:56.489834pt;}
.hb{height:85.274481pt;}
.h2{height:87.734861pt;}
.h18{height:105.060281pt;}
.h15{height:112.858477pt;}
.h26{height:118.584899pt;}
.h1c{height:120.945135pt;}
.h20{height:120.947996pt;}
.h21{height:165.530884pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:164.028184pt;}
.w4{width:164.030910pt;}
.w6{width:167.007618pt;}
.w7{width:176.509108pt;}
.w2{width:334.750896pt;}
.w3{width:334.751495pt;}
.w8{width:334.754167pt;}
.w9{width:334.757884pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:2.131532pt;}
.x2a{left:9.160491pt;}
.x39{left:10.293122pt;}
.x2e{left:11.876905pt;}
.x3e{left:13.480503pt;}
.x29{left:15.775852pt;}
.x2d{left:17.198375pt;}
.x38{left:19.192781pt;}
.x28{left:21.477932pt;}
.x3d{left:23.944480pt;}
.x27{left:25.489848pt;}
.x3c{left:28.695225pt;}
.x40{left:30.235458pt;}
.x1e{left:34.142964pt;}
.x13{left:36.406276pt;}
.x3a{left:44.757721pt;}
.x14{left:45.676924pt;}
.x8{left:54.136000pt;}
.x36{left:55.418667pt;}
.x41{left:57.038667pt;}
.x1{left:58.138667pt;}
.x31{left:61.669333pt;}
.x10{left:63.993333pt;}
.x7{left:67.418667pt;}
.x11{left:80.702667pt;}
.x42{left:85.950667pt;}
.x37{left:90.671416pt;}
.x2{left:91.581333pt;}
.x2f{left:95.678337pt;}
.xe{left:96.777333pt;}
.x16{left:104.576914pt;}
.x15{left:106.259673pt;}
.x2b{left:113.337851pt;}
.x20{left:115.167073pt;}
.x1f{left:116.652848pt;}
.x1c{left:120.466832pt;}
.x3f{left:137.854667pt;}
.x35{left:140.538667pt;}
.x5{left:154.640000pt;}
.x19{left:156.072423pt;}
.x22{left:159.093373pt;}
.x23{left:160.650020pt;}
.x12{left:161.700000pt;}
.x9{left:169.676000pt;}
.x3{left:171.340000pt;}
.x21{left:202.145926pt;}
.x17{left:203.053828pt;}
.x18{left:204.623677pt;}
.x3b{left:211.088000pt;}
.x6{left:215.262667pt;}
.xf{left:216.800000pt;}
.x2c{left:222.812000pt;}
.x30{left:235.617333pt;}
.x24{left:254.174891pt;}
.x1a{left:261.960696pt;}
.xa{left:404.820000pt;}
.x45{left:410.133333pt;}
.x33{left:416.090667pt;}
.xb{left:418.104000pt;}
.x4a{left:429.166667pt;}
.xd{left:431.388000pt;}
.x46{left:449.393333pt;}
.x47{left:458.245333pt;}
.x25{left:464.806667pt;}
.x4{left:488.166667pt;}
.x1d{left:490.874667pt;}
.x32{left:492.552000pt;}
.x43{left:510.982667pt;}
.x48{left:512.856000pt;}
.x34{left:519.896000pt;}
.xc{left:521.098667pt;}
.x44{left:535.000000pt;}
.x26{left:537.988000pt;}
.x4b{left:541.806667pt;}
.x49{left:620.309333pt;}
}




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