
    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_4aa8d9e97a6e133b99e399b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_963898d0e13193396eecd5d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_5973374e9b22a571b4dc26d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_f60123b88c0c6acca26bb390.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_3a0e1bafc9e383bc3ae9ccb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_7e37fc611dd27c9e949c0031.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_c5fb05937d65b6c3f187f880.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087000;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_a8c329a813a58052387f72e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_891f2bff090382564a124454.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_963898d0e13193396eecd5d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_5973374e9b22a571b4dc26d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_23b544a57bc23ff063db6e96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_2ba161539f7ae9635de5eec0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.851000;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_891f2bff090382564a124454.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_963898d0e13193396eecd5d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_5973374e9b22a571b4dc26d6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_23b544a57bc23ff063db6e96.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_a8bc2ac8c5259ac67dbcd38a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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_963898d0e13193396eecd5d5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_5973374e9b22a571b4dc26d6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_23b544a57bc23ff063db6e96.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_963898d0e13193396eecd5d5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_5973374e9b22a571b4dc26d6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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_23b544a57bc23ff063db6e96.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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_88434181e33301391cab4ba0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.969000;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_b98be661fc01aeee626e6582.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.453629;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_2ba161539f7ae9635de5eec0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.851000;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.969000;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_b02a3a82af960a1855b5547f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.087000;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_2ba161539f7ae9635de5eec0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.851000;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.969000;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_b02a3a82af960a1855b5547f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.087000;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_2ba161539f7ae9635de5eec0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.851000;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.969000;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_b02a3a82af960a1855b5547f.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.087000;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_2ba161539f7ae9635de5eec0.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.851000;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_b98be661fc01aeee626e6582.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.453629;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.969000;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_b02a3a82af960a1855b5547f.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.087000;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_b98be661fc01aeee626e6582.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.453629;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.969000;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_c37ed024ae20731bc37fc468.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.969000;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:ff2b;src:url('chunks/assets/font_720811bd595b378dd86418ca.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.672000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_2adb7f00d14b3f60dd7ad7b2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.958496;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:ff2d;src:url('chunks/assets/font_6e268a36755d74f45595eadd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.958496;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:ff2e;src:url('chunks/assets/font_b0728c36aa93b764c04e7151.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.958496;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:ff2f;src:url('chunks/assets/font_4b1f023e2c0fd55e6c95529a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.958496;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:ff30;src:url('chunks/assets/font_806564f913c93993eb426a59.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.958496;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:ff31;src:url('chunks/assets/font_ede4ccb6fcc83ff7455ac2ba.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.958496;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:ff32;src:url('chunks/assets/font_212209def88d75d2eb79405f.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.087000;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:ff33;src:url('chunks/assets/font_fee29d684c31b75c7b914310.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.969000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.va{vertical-align:-13.824000px;}
.v7{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.481920px;}
.v6{vertical-align:8.624448px;}
.v8{vertical-align:10.800000px;}
.v5{vertical-align:14.280000px;}
.v2{vertical-align:18.186000px;}
.v1{vertical-align:20.400000px;}
.ls86{letter-spacing:-7.506000px;}
.ls68{letter-spacing:-4.284000px;}
.ls66{letter-spacing:-4.032000px;}
.ls8d{letter-spacing:-1.755000px;}
.ls6b{letter-spacing:-1.728000px;}
.ls9d{letter-spacing:-1.440000px;}
.ls8c{letter-spacing:-1.305000px;}
.ls47{letter-spacing:-1.296000px;}
.ls83{letter-spacing:-1.188000px;}
.ls9a{letter-spacing:-1.125000px;}
.ls38{letter-spacing:-1.080000px;}
.ls85{letter-spacing:-1.026000px;}
.ls45{letter-spacing:-1.008000px;}
.ls99{letter-spacing:-0.990000px;}
.ls37{letter-spacing:-0.918000px;}
.ls51{letter-spacing:-0.864000px;}
.ls9b{letter-spacing:-0.855000px;}
.ls4d{letter-spacing:-0.810000px;}
.ls62{letter-spacing:-0.749952px;}
.ls93{letter-spacing:-0.720000px;}
.ls67{letter-spacing:-0.714000px;}
.ls6a{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.648000px;}
.ls9e{letter-spacing:-0.630000px;}
.ls65{letter-spacing:-0.589248px;}
.ls89{letter-spacing:-0.585000px;}
.ls52{letter-spacing:-0.540000px;}
.ls69{letter-spacing:-0.504000px;}
.ls5c{letter-spacing:-0.482112px;}
.ls84{letter-spacing:-0.456300px;}
.ls5f{letter-spacing:-0.456192px;}
.ls90{letter-spacing:-0.450000px;}
.ls35{letter-spacing:-0.432000px;}
.ls44{letter-spacing:-0.420000px;}
.ls9f{letter-spacing:-0.405000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls53{letter-spacing:-0.351000px;}
.ls87{letter-spacing:-0.315000px;}
.ls60{letter-spacing:-0.280800px;}
.ls3d{letter-spacing:-0.270000px;}
.ls57{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.225000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.210000px;}
.ls8e{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.175500px;}
.ls18{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.140400px;}
.ls88{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.108000px;}
.ls5a{letter-spacing:-0.107136px;}
.ls8f{letter-spacing:-0.090000px;}
.ls80{letter-spacing:-0.076032px;}
.ls2f{letter-spacing:-0.070200px;}
.ls30{letter-spacing:-0.054000px;}
.ls9c{letter-spacing:-0.045000px;}
.ls17{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.003000px;}
.ls2{letter-spacing:0.013200px;}
.ls5{letter-spacing:0.013800px;}
.ls4{letter-spacing:0.022200px;}
.ls3{letter-spacing:0.022800px;}
.ls23{letter-spacing:0.035100px;}
.ls74{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.047250px;}
.ls2c{letter-spacing:0.054000px;}
.ls56{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.070200px;}
.ls73{letter-spacing:0.090000px;}
.ls70{letter-spacing:0.097800px;}
.lsd{letter-spacing:0.102000px;}
.ls3f{letter-spacing:0.105300px;}
.ls58{letter-spacing:0.107136px;}
.ls36{letter-spacing:0.108000px;}
.ls7b{letter-spacing:0.135000px;}
.ls34{letter-spacing:0.140400px;}
.ls27{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.175500px;}
.ls4a{letter-spacing:0.180000px;}
.ls72{letter-spacing:0.189600px;}
.ls6f{letter-spacing:0.192600px;}
.ls24{letter-spacing:0.193050px;}
.lsb{letter-spacing:0.210600px;}
.ls19{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.224250px;}
.ls14{letter-spacing:0.224850px;}
.ls92{letter-spacing:0.225000px;}
.ls40{letter-spacing:0.245700px;}
.ls71{letter-spacing:0.249600px;}
.lsf{letter-spacing:0.265050px;}
.ls9{letter-spacing:0.270000px;}
.ls6d{letter-spacing:0.276480px;}
.ls2b{letter-spacing:0.280800px;}
.ls11{letter-spacing:0.283650px;}
.ls29{letter-spacing:0.297000px;}
.ls94{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.324000px;}
.ls82{letter-spacing:0.342144px;}
.ls26{letter-spacing:0.351000px;}
.ls13{letter-spacing:0.357000px;}
.ls3e{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.386100px;}
.lse{letter-spacing:0.408000px;}
.ls3a{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.421200px;}
.ls21{letter-spacing:0.432000px;}
.ls7a{letter-spacing:0.450000px;}
.ls10{letter-spacing:0.459000px;}
.ls5b{letter-spacing:0.482112px;}
.ls33{letter-spacing:0.486000px;}
.ls48{letter-spacing:0.491400px;}
.ls77{letter-spacing:0.495000px;}
.ls7e{letter-spacing:0.535680px;}
.ls22{letter-spacing:0.540000px;}
.ls98{letter-spacing:0.585000px;}
.lsa{letter-spacing:0.594000px;}
.ls43{letter-spacing:0.596700px;}
.ls41{letter-spacing:0.631800px;}
.ls96{letter-spacing:0.643500px;}
.ls7{letter-spacing:0.648000px;}
.ls79{letter-spacing:0.675000px;}
.ls75{letter-spacing:0.688500px;}
.ls32{letter-spacing:0.702000px;}
.ls8a{letter-spacing:0.720000px;}
.ls5e{letter-spacing:0.722304px;}
.ls12{letter-spacing:0.736650px;}
.ls1a{letter-spacing:0.756000px;}
.ls91{letter-spacing:0.765000px;}
.ls5d{letter-spacing:0.857088px;}
.ls2a{letter-spacing:0.864000px;}
.ls76{letter-spacing:0.900000px;}
.ls42{letter-spacing:0.918000px;}
.ls95{letter-spacing:0.945000px;}
.ls16{letter-spacing:0.960000px;}
.ls4b{letter-spacing:0.966600px;}
.ls39{letter-spacing:0.972000px;}
.ls97{letter-spacing:1.134000px;}
.ls1f{letter-spacing:1.173000px;}
.ls4c{letter-spacing:1.188000px;}
.ls78{letter-spacing:1.395000px;}
.ls0{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.700000px;}
.ls50{letter-spacing:2.754000px;}
.ls1{letter-spacing:2.767500px;}
.ls4e{letter-spacing:2.916000px;}
.ls4f{letter-spacing:2.970000px;}
.ls6e{letter-spacing:3.625944px;}
.ls6c{letter-spacing:5.425920px;}
.lsa0{letter-spacing:6.120000px;}
.ls3c{letter-spacing:14.742000px;}
.ls59{letter-spacing:17.891712px;}
.ls7f{letter-spacing:41.475456px;}
.ls7d{letter-spacing:71.406144px;}
.ls63{letter-spacing:75.370176px;}
.ls64{letter-spacing:75.745152px;}
.ls61{letter-spacing:100.011456px;}
.ls81{letter-spacing:112.831488px;}
.ls55{letter-spacing:176.052096px;}
.ls7c{letter-spacing:198.523008px;}
.ls54{letter-spacing:1090.590912px;}
.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;}
}
.ws9f{word-spacing:-198.576576px;}
.wsa4{word-spacing:-112.869504px;}
.ws87{word-spacing:-100.065024px;}
.ws8a{word-spacing:-75.798720px;}
.ws89{word-spacing:-75.423744px;}
.wsa0{word-spacing:-71.459712px;}
.ws80{word-spacing:-17.945280px;}
.ws2{word-spacing:-15.067500px;}
.ws2c{word-spacing:-13.596000px;}
.ws61{word-spacing:-13.014000px;}
.wsa5{word-spacing:-12.690000px;}
.ws86{word-spacing:-12.528000px;}
.ws4b{word-spacing:-12.474000px;}
.wsa6{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws60{word-spacing:-12.312000px;}
.ws3e{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws26{word-spacing:-12.150000px;}
.ws5e{word-spacing:-11.988000px;}
.ws6{word-spacing:-11.880000px;}
.ws6b{word-spacing:-11.718000px;}
.ws28{word-spacing:-11.610000px;}
.ws95{word-spacing:-11.556000px;}
.wsce{word-spacing:-11.070000px;}
.ws3f{word-spacing:-11.016000px;}
.ws5f{word-spacing:-10.962000px;}
.wsc9{word-spacing:-10.485000px;}
.wsac{word-spacing:-10.440000px;}
.wsaf{word-spacing:-10.395000px;}
.wsca{word-spacing:-10.305000px;}
.wsad{word-spacing:-10.215000px;}
.wsc8{word-spacing:-10.125000px;}
.wscd{word-spacing:-10.080000px;}
.wsa8{word-spacing:-9.990000px;}
.wscc{word-spacing:-9.855000px;}
.wsa9{word-spacing:-9.810000px;}
.wsaa{word-spacing:-9.765000px;}
.wsab{word-spacing:-9.720000px;}
.wscf{word-spacing:-9.675000px;}
.wsb0{word-spacing:-9.585000px;}
.ws5b{word-spacing:-9.534000px;}
.wsd0{word-spacing:-9.315000px;}
.wscb{word-spacing:-9.180000px;}
.ws9d{word-spacing:-9.030000px;}
.wsae{word-spacing:-9.000000px;}
.ws49{word-spacing:-8.599500px;}
.ws4a{word-spacing:-8.564400px;}
.ws5a{word-spacing:-8.526000px;}
.ws62{word-spacing:-8.459100px;}
.ws4{word-spacing:-8.388900px;}
.ws8{word-spacing:-8.353800px;}
.ws23{word-spacing:-8.318700px;}
.ws22{word-spacing:-8.248500px;}
.ws48{word-spacing:-8.213400px;}
.ws9{word-spacing:-8.178300px;}
.ws29{word-spacing:-8.160750px;}
.ws7{word-spacing:-8.143200px;}
.ws2a{word-spacing:-8.108100px;}
.ws47{word-spacing:-8.073000px;}
.ws2b{word-spacing:-8.037900px;}
.ws24{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws27{word-spacing:-7.897500px;}
.ws25{word-spacing:-7.827300px;}
.ws67{word-spacing:-7.792200px;}
.ws85{word-spacing:-7.686900px;}
.ws6c{word-spacing:-7.616700px;}
.wsa7{word-spacing:-7.581600px;}
.wsd1{word-spacing:-6.639750px;}
.wsa{word-spacing:-6.630000px;}
.wse0{word-spacing:-6.120000px;}
.ws4e{word-spacing:-5.924100px;}
.ws91{word-spacing:-4.830000px;}
.wsb2{word-spacing:-4.482000px;}
.ws6e{word-spacing:-3.348000px;}
.ws76{word-spacing:-2.916000px;}
.ws79{word-spacing:-2.808000px;}
.ws21{word-spacing:-2.760000px;}
.wsd{word-spacing:-2.700000px;}
.ws7a{word-spacing:-2.646000px;}
.ws1{word-spacing:-2.640000px;}
.ws7b{word-spacing:-2.430000px;}
.wse{word-spacing:-2.400000px;}
.wsde{word-spacing:-1.944000px;}
.ws68{word-spacing:-1.890000px;}
.wsf{word-spacing:-1.836000px;}
.ws31{word-spacing:-1.728000px;}
.ws63{word-spacing:-1.674000px;}
.ws37{word-spacing:-1.620000px;}
.wsb5{word-spacing:-1.575000px;}
.wsb6{word-spacing:-1.530000px;}
.ws43{word-spacing:-1.512000px;}
.wsd4{word-spacing:-1.485000px;}
.ws45{word-spacing:-1.458000px;}
.ws7e{word-spacing:-1.404000px;}
.ws46{word-spacing:-1.350000px;}
.wsc{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.242000px;}
.ws5d{word-spacing:-1.188000px;}
.ws1e{word-spacing:-1.173000px;}
.wsdb{word-spacing:-1.170000px;}
.ws36{word-spacing:-1.134000px;}
.ws3b{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.035000px;}
.ws6f{word-spacing:-1.026000px;}
.wsd5{word-spacing:-0.990000px;}
.ws7c{word-spacing:-0.972000px;}
.ws59{word-spacing:-0.966000px;}
.ws69{word-spacing:-0.960000px;}
.wsda{word-spacing:-0.945000px;}
.ws58{word-spacing:-0.924000px;}
.ws34{word-spacing:-0.918000px;}
.ws82{word-spacing:-0.910656px;}
.ws32{word-spacing:-0.864000px;}
.wsc5{word-spacing:-0.855000px;}
.ws41{word-spacing:-0.810000px;}
.wsc2{word-spacing:-0.765000px;}
.ws35{word-spacing:-0.756000px;}
.ws9a{word-spacing:-0.722304px;}
.ws13{word-spacing:-0.702000px;}
.ws14{word-spacing:-0.648000px;}
.wsbd{word-spacing:-0.630000px;}
.ws15{word-spacing:-0.594000px;}
.wsc6{word-spacing:-0.585000px;}
.ws65{word-spacing:-0.540000px;}
.ws81{word-spacing:-0.535680px;}
.ws1b{word-spacing:-0.510000px;}
.wsb3{word-spacing:-0.495000px;}
.ws17{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.459000px;}
.wsc1{word-spacing:-0.450000px;}
.ws1a{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.420000px;}
.ws1c{word-spacing:-0.408000px;}
.ws12{word-spacing:-0.378000px;}
.ws52{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.357000px;}
.wsb1{word-spacing:-0.342144px;}
.ws3d{word-spacing:-0.324000px;}
.wsd3{word-spacing:-0.315000px;}
.ws38{word-spacing:-0.270000px;}
.wsd8{word-spacing:-0.225000px;}
.ws33{word-spacing:-0.216000px;}
.ws6d{word-spacing:-0.180000px;}
.ws2e{word-spacing:-0.162000px;}
.wsc4{word-spacing:-0.135000px;}
.ws19{word-spacing:-0.108000px;}
.ws97{word-spacing:-0.107136px;}
.ws20{word-spacing:-0.102000px;}
.ws9c{word-spacing:-0.060000px;}
.ws2d{word-spacing:-0.054000px;}
.ws7f{word-spacing:-0.053568px;}
.ws84{word-spacing:-0.035100px;}
.wsb{word-spacing:0.000000px;}
.wsa3{word-spacing:0.038016px;}
.ws9e{word-spacing:0.042000px;}
.wsdc{word-spacing:0.045000px;}
.ws39{word-spacing:0.054000px;}
.wsbf{word-spacing:0.090000px;}
.ws98{word-spacing:0.107136px;}
.ws6a{word-spacing:0.108000px;}
.wsc0{word-spacing:0.135000px;}
.ws3c{word-spacing:0.162000px;}
.ws5c{word-spacing:0.210000px;}
.ws30{word-spacing:0.216000px;}
.ws96{word-spacing:0.240000px;}
.wsbe{word-spacing:0.270000px;}
.wsb7{word-spacing:0.315000px;}
.ws11{word-spacing:0.324000px;}
.wsb8{word-spacing:0.360000px;}
.ws56{word-spacing:0.378000px;}
.wsd2{word-spacing:0.405000px;}
.ws83{word-spacing:0.418176px;}
.ws3a{word-spacing:0.432000px;}
.wsdd{word-spacing:0.450000px;}
.ws99{word-spacing:0.482112px;}
.ws2f{word-spacing:0.486000px;}
.ws57{word-spacing:0.540000px;}
.ws18{word-spacing:0.648000px;}
.ws88{word-spacing:0.696384px;}
.ws66{word-spacing:0.702000px;}
.wsbc{word-spacing:0.720000px;}
.ws70{word-spacing:0.756000px;}
.wsc7{word-spacing:0.810000px;}
.wsd9{word-spacing:0.855000px;}
.wsdf{word-spacing:0.864000px;}
.ws42{word-spacing:0.918000px;}
.ws10{word-spacing:0.972000px;}
.wsd6{word-spacing:0.990000px;}
.ws64{word-spacing:1.026000px;}
.ws40{word-spacing:1.080000px;}
.wsd7{word-spacing:1.125000px;}
.ws9b{word-spacing:1.134000px;}
.ws44{word-spacing:1.188000px;}
.ws55{word-spacing:1.242000px;}
.wsb9{word-spacing:1.260000px;}
.ws54{word-spacing:1.296000px;}
.wsba{word-spacing:1.440000px;}
.ws74{word-spacing:1.458000px;}
.wsbb{word-spacing:1.665000px;}
.ws75{word-spacing:1.728000px;}
.wsc3{word-spacing:1.755000px;}
.ws72{word-spacing:1.782000px;}
.ws71{word-spacing:1.836000px;}
.ws73{word-spacing:2.538000px;}
.ws77{word-spacing:6.102000px;}
.ws78{word-spacing:6.318000px;}
.ws7d{word-spacing:14.202000px;}
.wsa2{word-spacing:27.561600px;}
.ws8d{word-spacing:82.114200px;}
.ws8e{word-spacing:87.150000px;}
.ws50{word-spacing:97.440000px;}
.ws8f{word-spacing:101.346000px;}
.ws51{word-spacing:107.520000px;}
.ws4f{word-spacing:118.608000px;}
.ws90{word-spacing:136.584000px;}
.ws8c{word-spacing:137.214000px;}
.ws4c{word-spacing:139.692000px;}
.ws93{word-spacing:149.772000px;}
.ws4d{word-spacing:158.130000px;}
.ws92{word-spacing:169.932000px;}
.wsa1{word-spacing:188.773632px;}
.ws94{word-spacing:214.536000px;}
.ws8b{word-spacing:974.562624px;}
._2b{margin-left:-404.331264px;}
._43{margin-left:-181.434816px;}
._42{margin-left:-158.721984px;}
._29{margin-left:-126.366912px;}
._45{margin-left:-112.451328px;}
._2d{margin-left:-76.066560px;}
._2c{margin-left:-74.486088px;}
._44{margin-left:-54.317952px;}
._2a{margin-left:-17.463168px;}
._28{margin-left:-15.205200px;}
._6{margin-left:-12.345000px;}
._a{margin-left:-10.438200px;}
._48{margin-left:-9.297600px;}
._9{margin-left:-8.291400px;}
._47{margin-left:-6.999000px;}
._8{margin-left:-5.886000px;}
._2{margin-left:-4.678800px;}
._1{margin-left:-3.385200px;}
._0{margin-left:-1.776000px;}
._3{width:1.312200px;}
._4{width:2.973300px;}
._10{width:5.140800px;}
._5{width:6.534600px;}
._25{width:7.594200px;}
._11{width:8.620800px;}
._46{width:10.887000px;}
._7{width:12.649800px;}
._27{width:15.282000px;}
._39{width:41.286000px;}
._3a{width:46.368000px;}
._b{width:48.001200px;}
._26{width:49.314000px;}
._38{width:51.408000px;}
._3c{width:61.446000px;}
._3e{width:66.528000px;}
._3d{width:71.526000px;}
._41{width:76.608000px;}
._3f{width:90.007800px;}
._40{width:91.728000px;}
._37{width:103.782000px;}
._3b{width:111.405600px;}
._d{width:118.104000px;}
._22{width:119.784000px;}
._32{width:135.252600px;}
._24{width:138.054000px;}
._33{width:139.553400px;}
._30{width:155.022000px;}
._1b{width:158.214000px;}
._31{width:160.104000px;}
._13{width:162.036000px;}
._1f{width:168.294000px;}
._1d{width:172.116000px;}
._14{width:174.099600px;}
._12{width:175.601400px;}
._15{width:178.374000px;}
._16{width:185.597400px;}
._18{width:188.454000px;}
._21{width:196.056000px;}
._2f{width:199.710000px;}
._f{width:203.322000px;}
._17{width:205.337400px;}
._34{width:211.104000px;}
._2e{width:213.636000px;}
._36{width:229.152000px;}
._35{width:244.272000px;}
._23{width:265.002000px;}
._20{width:298.074000px;}
._1c{width:302.035200px;}
._19{width:310.980000px;}
._1a{width:321.775200px;}
._c{width:325.909800px;}
._e{width:327.948000px;}
._1e{width:330.625200px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs11{font-size:29.250000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fse{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsf{font-size:72.576000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:2.160150px;}
.y144{bottom:2.160300px;}
.y110{bottom:2.164902px;}
.y131{bottom:3.456000px;}
.y11b{bottom:4.320150px;}
.y146{bottom:4.320300px;}
.y14b{bottom:4.751850px;}
.y10f{bottom:21.168150px;}
.y119{bottom:25.056150px;}
.y1{bottom:27.197850px;}
.y111{bottom:27.216150px;}
.y2{bottom:27.253800px;}
.y147{bottom:30.672300px;}
.y2f{bottom:68.313900px;}
.ya1{bottom:68.551500px;}
.ye0{bottom:68.556000px;}
.yff{bottom:68.568000px;}
.y78{bottom:68.574000px;}
.yc6{bottom:77.046300px;}
.y1d5{bottom:80.046300px;}
.y2e{bottom:83.307900px;}
.y137{bottom:83.550000px;}
.ya0{bottom:83.551500px;}
.ydf{bottom:83.554500px;}
.yfe{bottom:83.566500px;}
.y77{bottom:83.572500px;}
.y18a{bottom:87.921300px;}
.yc5{bottom:92.044800px;}
.y1d4{bottom:95.044800px;}
.y2d{bottom:98.307900px;}
.yde{bottom:98.553000px;}
.y9f{bottom:98.563500px;}
.yfd{bottom:98.565000px;}
.y76{bottom:98.571000px;}
.y189{bottom:100.667550px;}
.yc4{bottom:107.046300px;}
.y1d3{bottom:110.043300px;}
.y2c{bottom:113.313900px;}
.y188{bottom:113.413800px;}
.ydd{bottom:113.551500px;}
.y9e{bottom:113.562000px;}
.yfc{bottom:113.563500px;}
.y75{bottom:113.569500px;}
.y136{bottom:115.137000px;}
.yc3{bottom:122.044800px;}
.y1d2{bottom:125.043300px;}
.y187{bottom:126.160050px;}
.y2b{bottom:128.307900px;}
.ydc{bottom:128.553000px;}
.y9d{bottom:128.560500px;}
.yfb{bottom:128.562000px;}
.y74{bottom:128.568000px;}
.y135{bottom:130.135500px;}
.yc2{bottom:137.047800px;}
.y186{bottom:138.906300px;}
.y2a{bottom:143.307900px;}
.ydb{bottom:143.551500px;}
.y9c{bottom:143.559000px;}
.yfa{bottom:143.560500px;}
.y73{bottom:143.566500px;}
.y134{bottom:145.134000px;}
.y185{bottom:151.652550px;}
.yc1{bottom:152.046300px;}
.y1d1{bottom:158.055300px;}
.y29{bottom:158.307900px;}
.yda{bottom:158.551500px;}
.y9b{bottom:158.557500px;}
.yf9{bottom:158.559000px;}
.y72{bottom:158.565000px;}
.y133{bottom:160.132500px;}
.y184{bottom:164.398800px;}
.yc0{bottom:167.044800px;}
.y1d0{bottom:173.053800px;}
.y28{bottom:173.307900px;}
.yd9{bottom:173.551500px;}
.y9a{bottom:173.556000px;}
.yf8{bottom:173.557500px;}
.y71{bottom:173.563500px;}
.y132{bottom:175.131000px;}
.y183{bottom:177.145050px;}
.ybf{bottom:182.044800px;}
.y1cf{bottom:188.052300px;}
.yd8{bottom:188.553000px;}
.y99{bottom:188.554500px;}
.yf7{bottom:188.556000px;}
.y70{bottom:188.562000px;}
.y182{bottom:189.891300px;}
.y27{bottom:192.636900px;}
.y130{bottom:195.241500px;}
.ybe{bottom:197.044800px;}
.y181{bottom:202.637550px;}
.y1ce{bottom:203.050800px;}
.yd7{bottom:203.551500px;}
.y98{bottom:203.553000px;}
.yf6{bottom:203.554500px;}
.y6f{bottom:203.560500px;}
.ybd{bottom:212.052300px;}
.y180{bottom:215.383800px;}
.y1cd{bottom:218.049300px;}
.yd6{bottom:218.550000px;}
.y97{bottom:218.551500px;}
.yf5{bottom:218.553000px;}
.y6e{bottom:218.559000px;}
.y12f{bottom:225.634650px;}
.ybc{bottom:227.050800px;}
.y26{bottom:227.185800px;}
.y17f{bottom:228.130050px;}
.y1cc{bottom:233.047800px;}
.yf4{bottom:233.551500px;}
.y96{bottom:233.556000px;}
.y6d{bottom:233.557500px;}
.y12e{bottom:240.636150px;}
.y17e{bottom:240.876300px;}
.ybb{bottom:242.049300px;}
.y25{bottom:242.185800px;}
.yd5{bottom:246.556800px;}
.y1cb{bottom:248.046300px;}
.yf3{bottom:248.553000px;}
.y95{bottom:248.554500px;}
.y6c{bottom:248.556000px;}
.y17d{bottom:253.622550px;}
.y12d{bottom:255.634650px;}
.yba{bottom:257.047800px;}
.y24{bottom:257.185800px;}
.yd4{bottom:261.555300px;}
.y1ca{bottom:263.044800px;}
.yf2{bottom:263.551500px;}
.y94{bottom:263.553000px;}
.y6b{bottom:263.554500px;}
.y17c{bottom:266.368800px;}
.y12c{bottom:270.634650px;}
.yb9{bottom:272.046300px;}
.y23{bottom:272.190300px;}
.yd3{bottom:276.553800px;}
.y1c9{bottom:278.043300px;}
.yf1{bottom:278.550000px;}
.y93{bottom:278.551500px;}
.y6a{bottom:278.553000px;}
.y17b{bottom:279.115050px;}
.y12b{bottom:285.633150px;}
.yb8{bottom:287.044800px;}
.y22{bottom:287.188800px;}
.yd2{bottom:291.552300px;}
.y17a{bottom:291.861300px;}
.y1c8{bottom:293.043300px;}
.yf0{bottom:293.550000px;}
.y69{bottom:293.551500px;}
.yb7{bottom:302.044800px;}
.y21{bottom:302.187300px;}
.y179{bottom:304.607550px;}
.yd1{bottom:306.550800px;}
.y92{bottom:308.551500px;}
.y68{bottom:308.562000px;}
.yb6{bottom:317.043300px;}
.y20{bottom:317.185800px;}
.y12a{bottom:317.217150px;}
.y178{bottom:317.353800px;}
.yd0{bottom:321.549300px;}
.y91{bottom:323.553000px;}
.y67{bottom:323.560500px;}
.yef{bottom:323.806800px;}
.y1c7{bottom:326.047050px;}
.y177{bottom:330.100050px;}
.y1f{bottom:332.185800px;}
.y129{bottom:332.215650px;}
.ycf{bottom:336.547800px;}
.y90{bottom:338.551500px;}
.y66{bottom:338.559000px;}
.yee{bottom:338.805300px;}
.y1c6{bottom:339.014550px;}
.y176{bottom:342.846300px;}
.y1e{bottom:347.187300px;}
.y128{bottom:347.217150px;}
.yce{bottom:351.546300px;}
.y1c5{bottom:351.760800px;}
.y8f{bottom:353.550000px;}
.y65{bottom:353.557500px;}
.yed{bottom:353.803800px;}
.y175{bottom:355.592550px;}
.y1d{bottom:362.185800px;}
.y127{bottom:362.215650px;}
.y1c4{bottom:364.507050px;}
.ycd{bottom:366.544800px;}
.y174{bottom:368.338800px;}
.y64{bottom:368.556000px;}
.yec{bottom:368.802300px;}
.y1c{bottom:377.187300px;}
.y126{bottom:377.226150px;}
.y1c3{bottom:377.253300px;}
.yc9{bottom:379.081950px;}
.y173{bottom:381.085050px;}
.y8e{bottom:381.426150px;}
.ycc{bottom:381.546300px;}
.y63{bottom:383.554500px;}
.yeb{bottom:383.800800px;}
.y1c2{bottom:389.999550px;}
.y1b{bottom:392.185800px;}
.y125{bottom:392.224650px;}
.y172{bottom:393.831300px;}
.yc8{bottom:394.080450px;}
.y8d{bottom:396.424650px;}
.ycb{bottom:396.544800px;}
.y62{bottom:398.553000px;}
.yea{bottom:398.799300px;}
.y1c1{bottom:402.745800px;}
.y171{bottom:406.577550px;}
.y124{bottom:407.223150px;}
.y1a{bottom:407.227800px;}
.yc7{bottom:409.078950px;}
.y8c{bottom:411.423150px;}
.yca{bottom:411.543300px;}
.y61{bottom:413.551500px;}
.ye9{bottom:413.797800px;}
.y1c0{bottom:415.492050px;}
.y170{bottom:419.323800px;}
.y123{bottom:422.221650px;}
.y19{bottom:422.226300px;}
.y8b{bottom:426.423150px;}
.y1bf{bottom:428.238300px;}
.y60{bottom:428.550000px;}
.ye8{bottom:428.796300px;}
.y16f{bottom:432.070050px;}
.y122{bottom:437.220150px;}
.y1be{bottom:440.984550px;}
.y8a{bottom:441.426150px;}
.y5f{bottom:443.550000px;}
.ye7{bottom:443.794800px;}
.y16e{bottom:444.816300px;}
.y121{bottom:452.218650px;}
.y1bd{bottom:453.730800px;}
.y89{bottom:456.424650px;}
.y16d{bottom:457.562550px;}
.ye6{bottom:458.793300px;}
.y1bc{bottom:466.477050px;}
.y120{bottom:467.217150px;}
.ye5{bottom:468.060450px;}
.y18{bottom:469.476300px;}
.y16c{bottom:470.308800px;}
.y88{bottom:471.423150px;}
.y5e{bottom:473.796300px;}
.y1bb{bottom:479.223300px;}
.y11f{bottom:482.215650px;}
.y16b{bottom:483.055050px;}
.ye4{bottom:483.060450px;}
.y17{bottom:485.973300px;}
.y87{bottom:486.423150px;}
.y5d{bottom:488.794800px;}
.y1ba{bottom:491.969550px;}
.y16a{bottom:495.801300px;}
.y11e{bottom:497.214150px;}
.ye3{bottom:498.060450px;}
.y86{bottom:501.424650px;}
.y16{bottom:502.470300px;}
.y5c{bottom:503.797800px;}
.y1b9{bottom:504.715800px;}
.y1ec{bottom:505.443300px;}
.y169{bottom:508.547550px;}
.ye2{bottom:513.060450px;}
.y103{bottom:516.180450px;}
.y85{bottom:516.423150px;}
.y118{bottom:517.324500px;}
.y1b8{bottom:517.462050px;}
.y5b{bottom:518.796300px;}
.y15{bottom:518.967300px;}
.y1eb{bottom:520.441800px;}
.y168{bottom:521.293800px;}
.y11a{bottom:522.940650px;}
.ye1{bottom:528.058950px;}
.y1b7{bottom:530.208300px;}
.y102{bottom:531.181950px;}
.y84{bottom:531.424650px;}
.y117{bottom:533.740650px;}
.y5a{bottom:533.794800px;}
.y167{bottom:534.040050px;}
.y1ea{bottom:535.440300px;}
.y14{bottom:535.464300px;}
.y11c{bottom:538.924650px;}
.y1b6{bottom:542.954550px;}
.y101{bottom:546.180450px;}
.y83{bottom:546.423150px;}
.y166{bottom:546.786300px;}
.y59{bottom:548.796300px;}
.y1e9{bottom:550.438800px;}
.y13{bottom:551.961300px;}
.y1b5{bottom:555.700800px;}
.y165{bottom:559.532550px;}
.y100{bottom:561.178950px;}
.y82{bottom:561.429150px;}
.y58{bottom:563.794800px;}
.y1e8{bottom:565.437300px;}
.y116{bottom:568.021650px;}
.y1b4{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.y164{bottom:572.278800px;}
.y81{bottom:576.427650px;}
.y57{bottom:578.805300px;}
.y1e7{bottom:580.435800px;}
.y1b3{bottom:581.193300px;}
.y115{bottom:583.024650px;}
.y11{bottom:584.955300px;}
.y163{bottom:585.025050px;}
.y80{bottom:591.426150px;}
.y56{bottom:593.803800px;}
.y1b2{bottom:593.939550px;}
.y1e6{bottom:595.434300px;}
.y162{bottom:597.771300px;}
.y114{bottom:598.023150px;}
.y10{bottom:601.452300px;}
.y7f{bottom:606.424650px;}
.y1b1{bottom:606.685800px;}
.y55{bottom:608.802300px;}
.y161{bottom:610.517550px;}
.y113{bottom:613.021650px;}
.yf{bottom:617.949300px;}
.y1b0{bottom:619.432050px;}
.y7e{bottom:621.423150px;}
.y160{bottom:623.263800px;}
.y54{bottom:623.800800px;}
.y1e5{bottom:626.185800px;}
.y112{bottom:628.020150px;}
.y1af{bottom:632.178300px;}
.ye{bottom:634.446300px;}
.y15f{bottom:636.010050px;}
.y7d{bottom:636.421650px;}
.y53{bottom:638.799300px;}
.y1e4{bottom:641.184300px;}
.y1ae{bottom:644.924550px;}
.y10e{bottom:648.130500px;}
.y15e{bottom:648.756300px;}
.yd{bottom:650.943300px;}
.y7c{bottom:651.421650px;}
.y52{bottom:653.797800px;}
.y1e3{bottom:656.182800px;}
.y1ad{bottom:657.670800px;}
.y10d{bottom:661.089354px;}
.y15d{bottom:661.502550px;}
.yc{bottom:667.440300px;}
.y51{bottom:668.796300px;}
.y10c{bottom:669.298650px;}
.y1ac{bottom:670.417050px;}
.y15c{bottom:674.248800px;}
.y7b{bottom:679.296300px;}
.y1ab{bottom:683.163300px;}
.y50{bottom:683.794800px;}
.yb{bottom:683.937300px;}
.y1e2{bottom:686.935800px;}
.y15b{bottom:686.995050px;}
.y7a{bottom:694.294800px;}
.y1aa{bottom:695.909550px;}
.y10b{bottom:697.965150px;}
.y4f{bottom:698.803800px;}
.y15a{bottom:699.741300px;}
.ya{bottom:700.434300px;}
.y1e1{bottom:701.934300px;}
.y1a9{bottom:708.655800px;}
.y79{bottom:709.293300px;}
.y159{bottom:712.491300px;}
.y10a{bottom:712.963650px;}
.y4e{bottom:713.802300px;}
.y1a8{bottom:721.402050px;}
.y109{bottom:727.962150px;}
.y4d{bottom:728.800800px;}
.y9{bottom:730.434300px;}
.y1a7{bottom:734.148300px;}
.y4c{bottom:743.799300px;}
.y158{bottom:745.492800px;}
.y1a6{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y32{bottom:757.050000px;}
.y4b{bottom:758.797800px;}
.y108{bottom:759.549300px;}
.y1a5{bottom:759.640800px;}
.y157{bottom:760.492800px;}
.yb5{bottom:765.169800px;}
.y1a4{bottom:772.387050px;}
.y4a{bottom:773.796300px;}
.y107{bottom:774.547800px;}
.y156{bottom:775.494300px;}
.y31{bottom:778.050000px;}
.yb4{bottom:780.169800px;}
.y7{bottom:781.416300px;}
.y1a3{bottom:785.133300px;}
.y49{bottom:788.794800px;}
.y106{bottom:789.546300px;}
.y155{bottom:790.492800px;}
.yb3{bottom:795.169800px;}
.y1a2{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.y48{bottom:803.794800px;}
.y105{bottom:804.544800px;}
.y154{bottom:805.494300px;}
.yb2{bottom:810.169800px;}
.y1a1{bottom:810.625800px;}
.y47{bottom:818.796300px;}
.y104{bottom:819.543300px;}
.y153{bottom:820.492800px;}
.y1a0{bottom:823.372050px;}
.yb1{bottom:825.169800px;}
.y6{bottom:826.422300px;}
.y46{bottom:833.794800px;}
.y152{bottom:835.500300px;}
.y19f{bottom:836.118300px;}
.yb0{bottom:840.171300px;}
.y45{bottom:848.794800px;}
.y19e{bottom:848.864550px;}
.y151{bottom:850.498800px;}
.yaf{bottom:855.169800px;}
.y19d{bottom:861.610800px;}
.y44{bottom:863.796300px;}
.y150{bottom:865.497300px;}
.yae{bottom:870.168300px;}
.y5{bottom:871.428300px;}
.y19c{bottom:874.357050px;}
.y43{bottom:878.794800px;}
.y14f{bottom:880.495800px;}
.y13d{bottom:882.363300px;}
.y19b{bottom:887.103300px;}
.y42{bottom:893.796300px;}
.y14e{bottom:895.494300px;}
.y13c{bottom:897.361800px;}
.y19a{bottom:899.849550px;}
.yad{bottom:900.322800px;}
.y1e0{bottom:903.552300px;}
.y41{bottom:908.794800px;}
.y14d{bottom:910.492800px;}
.y13b{bottom:912.360300px;}
.y199{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.yac{bottom:917.763300px;}
.y1df{bottom:918.550800px;}
.y40{bottom:923.796300px;}
.y198{bottom:925.342050px;}
.y14c{bottom:925.492800px;}
.y33{bottom:926.409600px;}
.y13a{bottom:927.358800px;}
.y1de{bottom:933.549300px;}
.yab{bottom:935.203800px;}
.y14a{bottom:935.491500px;}
.y197{bottom:938.088300px;}
.y3f{bottom:938.794800px;}
.y149{bottom:940.491300px;}
.y139{bottom:942.357300px;}
.y1dd{bottom:948.547800px;}
.y196{bottom:950.834550px;}
.yaa{bottom:952.644300px;}
.y3e{bottom:953.796300px;}
.y138{bottom:957.355800px;}
.y143{bottom:961.801500px;}
.y1dc{bottom:963.546300px;}
.y195{bottom:963.580800px;}
.y3d{bottom:968.794800px;}
.ya9{bottom:970.084800px;}
.y148{bottom:974.761800px;}
.y142{bottom:975.625800px;}
.y194{bottom:976.327050px;}
.y145{bottom:978.217650px;}
.y1db{bottom:978.544800px;}
.y3c{bottom:983.796300px;}
.ya8{bottom:987.525300px;}
.y193{bottom:989.073300px;}
.y1da{bottom:993.543300px;}
.y3b{bottom:998.794800px;}
.y192{bottom:1001.819550px;}
.ya7{bottom:1004.965800px;}
.y3a{bottom:1013.794800px;}
.y141{bottom:1013.800800px;}
.y191{bottom:1014.565800px;}
.y1d9{bottom:1015.297800px;}
.ya6{bottom:1022.406300px;}
.y190{bottom:1027.312050px;}
.y39{bottom:1028.794800px;}
.y140{bottom:1028.799300px;}
.y1d8{bottom:1030.296300px;}
.ya5{bottom:1039.846800px;}
.y18f{bottom:1040.058300px;}
.y38{bottom:1043.794800px;}
.y13f{bottom:1043.797800px;}
.y1d7{bottom:1052.044800px;}
.y18e{bottom:1052.804550px;}
.ya4{bottom:1057.287300px;}
.y37{bottom:1058.794800px;}
.y13e{bottom:1058.796300px;}
.y18d{bottom:1065.550800px;}
.y1d6{bottom:1073.793300px;}
.y36{bottom:1073.794800px;}
.ya3{bottom:1074.727800px;}
.y18c{bottom:1078.297050px;}
.y35{bottom:1088.793300px;}
.y18b{bottom:1091.043300px;}
.ya2{bottom:1092.168300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h2f{height:11.230500px;}
.h30{height:14.688000px;}
.h29{height:15.552000px;}
.h1f{height:23.677056px;}
.hd{height:23.842749px;}
.h28{height:27.067392px;}
.h2e{height:28.359936px;}
.h2b{height:29.988000px;}
.h24{height:31.553280px;}
.h1c{height:33.772200px;}
.h3{height:34.523438px;}
.h1d{height:34.860000px;}
.h21{height:34.992000px;}
.h26{height:35.856000px;}
.hf{height:36.681152px;}
.h2d{height:37.152000px;}
.h31{height:37.350000px;}
.h22{height:38.140416px;}
.h32{height:38.692500px;}
.h7{height:38.838867px;}
.h20{height:39.961728px;}
.h10{height:41.134749px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h4{height:44.233154px;}
.h27{height:44.461440px;}
.h8{height:44.820000px;}
.h9{height:47.319000px;}
.h1b{height:47.438400px;}
.h16{height:47.444400px;}
.h13{height:47.445000px;}
.h12{height:47.451000px;}
.h1e{height:47.457000px;}
.h17{height:47.463000px;}
.h1a{height:47.468400px;}
.hc{height:47.469000px;}
.h15{height:47.469727px;}
.h14{height:47.475000px;}
.h18{height:47.480400px;}
.ha{height:47.481000px;}
.h19{height:47.486400px;}
.hb{height:47.487000px;}
.h2a{height:47.943360px;}
.h6{height:48.450293px;}
.h25{height:49.095936px;}
.h23{height:53.085888px;}
.h2c{height:54.141696px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:10.800000px;}
.w5{width:12.960000px;}
.w3{width:598.752000px;}
.w2{width:599.184000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:75.025350px;}
.x8{left:80.557350px;}
.x7{left:82.369350px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.143900px;}
.x1d{left:247.103700px;}
.x1b{left:250.127700px;}
.x5{left:251.454600px;}
.x1e{left:252.720564px;}
.x20{left:257.903700px;}
.x18{left:266.543700px;}
.xe{left:293.327700px;}
.x13{left:295.919700px;}
.x26{left:300.348600px;}
.xf{left:304.135044px;}
.x17{left:317.087700px;}
.x10{left:324.431700px;}
.x19{left:330.143250px;}
.x21{left:369.285000px;}
.x22{left:380.098800px;}
.x1c{left:443.498700px;}
.x12{left:474.170700px;}
.x1a{left:479.786700px;}
.xd{left:498.356652px;}
.x1f{left:504.842700px;}
.x11{left:510.458700px;}
.xc{left:514.346700px;}
.x14{left:526.874700px;}
.x16{left:553.226700px;}
.x15{left:583.199700px;}
.x3{left:584.586600px;}
.x23{left:788.473500px;}
.x24{left:801.448500px;}
.x25{left:816.003600px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.va{vertical-align:-12.288000pt;}
.v7{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.095040pt;}
.v6{vertical-align:7.666176pt;}
.v8{vertical-align:9.600000pt;}
.v5{vertical-align:12.693333pt;}
.v2{vertical-align:16.165333pt;}
.v1{vertical-align:18.133333pt;}
.ls86{letter-spacing:-6.672000pt;}
.ls68{letter-spacing:-3.808000pt;}
.ls66{letter-spacing:-3.584000pt;}
.ls8d{letter-spacing:-1.560000pt;}
.ls6b{letter-spacing:-1.536000pt;}
.ls9d{letter-spacing:-1.280000pt;}
.ls8c{letter-spacing:-1.160000pt;}
.ls47{letter-spacing:-1.152000pt;}
.ls83{letter-spacing:-1.056000pt;}
.ls9a{letter-spacing:-1.000000pt;}
.ls38{letter-spacing:-0.960000pt;}
.ls85{letter-spacing:-0.912000pt;}
.ls45{letter-spacing:-0.896000pt;}
.ls99{letter-spacing:-0.880000pt;}
.ls37{letter-spacing:-0.816000pt;}
.ls51{letter-spacing:-0.768000pt;}
.ls9b{letter-spacing:-0.760000pt;}
.ls4d{letter-spacing:-0.720000pt;}
.ls62{letter-spacing:-0.666624pt;}
.ls93{letter-spacing:-0.640000pt;}
.ls67{letter-spacing:-0.634667pt;}
.ls6a{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.576000pt;}
.ls9e{letter-spacing:-0.560000pt;}
.ls65{letter-spacing:-0.523776pt;}
.ls89{letter-spacing:-0.520000pt;}
.ls52{letter-spacing:-0.480000pt;}
.ls69{letter-spacing:-0.448000pt;}
.ls5c{letter-spacing:-0.428544pt;}
.ls84{letter-spacing:-0.405600pt;}
.ls5f{letter-spacing:-0.405504pt;}
.ls90{letter-spacing:-0.400000pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls44{letter-spacing:-0.373333pt;}
.ls9f{letter-spacing:-0.360000pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls53{letter-spacing:-0.312000pt;}
.ls87{letter-spacing:-0.280000pt;}
.ls60{letter-spacing:-0.249600pt;}
.ls3d{letter-spacing:-0.240000pt;}
.ls57{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.200000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.186667pt;}
.ls8e{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.156000pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.124800pt;}
.ls88{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls5a{letter-spacing:-0.095232pt;}
.ls8f{letter-spacing:-0.080000pt;}
.ls80{letter-spacing:-0.067584pt;}
.ls2f{letter-spacing:-0.062400pt;}
.ls30{letter-spacing:-0.048000pt;}
.ls9c{letter-spacing:-0.040000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.002667pt;}
.ls2{letter-spacing:0.011733pt;}
.ls5{letter-spacing:0.012267pt;}
.ls4{letter-spacing:0.019733pt;}
.ls3{letter-spacing:0.020267pt;}
.ls23{letter-spacing:0.031200pt;}
.ls74{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.042000pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls56{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.062400pt;}
.ls73{letter-spacing:0.080000pt;}
.ls70{letter-spacing:0.086933pt;}
.lsd{letter-spacing:0.090667pt;}
.ls3f{letter-spacing:0.093600pt;}
.ls58{letter-spacing:0.095232pt;}
.ls36{letter-spacing:0.096000pt;}
.ls7b{letter-spacing:0.120000pt;}
.ls34{letter-spacing:0.124800pt;}
.ls27{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.156000pt;}
.ls4a{letter-spacing:0.160000pt;}
.ls72{letter-spacing:0.168533pt;}
.ls6f{letter-spacing:0.171200pt;}
.ls24{letter-spacing:0.171600pt;}
.lsb{letter-spacing:0.187200pt;}
.ls19{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.199333pt;}
.ls14{letter-spacing:0.199867pt;}
.ls92{letter-spacing:0.200000pt;}
.ls40{letter-spacing:0.218400pt;}
.ls71{letter-spacing:0.221867pt;}
.lsf{letter-spacing:0.235600pt;}
.ls9{letter-spacing:0.240000pt;}
.ls6d{letter-spacing:0.245760pt;}
.ls2b{letter-spacing:0.249600pt;}
.ls11{letter-spacing:0.252133pt;}
.ls29{letter-spacing:0.264000pt;}
.ls94{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls82{letter-spacing:0.304128pt;}
.ls26{letter-spacing:0.312000pt;}
.ls13{letter-spacing:0.317333pt;}
.ls3e{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.343200pt;}
.lse{letter-spacing:0.362667pt;}
.ls3a{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.374400pt;}
.ls21{letter-spacing:0.384000pt;}
.ls7a{letter-spacing:0.400000pt;}
.ls10{letter-spacing:0.408000pt;}
.ls5b{letter-spacing:0.428544pt;}
.ls33{letter-spacing:0.432000pt;}
.ls48{letter-spacing:0.436800pt;}
.ls77{letter-spacing:0.440000pt;}
.ls7e{letter-spacing:0.476160pt;}
.ls22{letter-spacing:0.480000pt;}
.ls98{letter-spacing:0.520000pt;}
.lsa{letter-spacing:0.528000pt;}
.ls43{letter-spacing:0.530400pt;}
.ls41{letter-spacing:0.561600pt;}
.ls96{letter-spacing:0.572000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls79{letter-spacing:0.600000pt;}
.ls75{letter-spacing:0.612000pt;}
.ls32{letter-spacing:0.624000pt;}
.ls8a{letter-spacing:0.640000pt;}
.ls5e{letter-spacing:0.642048pt;}
.ls12{letter-spacing:0.654800pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls91{letter-spacing:0.680000pt;}
.ls5d{letter-spacing:0.761856pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls76{letter-spacing:0.800000pt;}
.ls42{letter-spacing:0.816000pt;}
.ls95{letter-spacing:0.840000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.859200pt;}
.ls39{letter-spacing:0.864000pt;}
.ls97{letter-spacing:1.008000pt;}
.ls1f{letter-spacing:1.042667pt;}
.ls4c{letter-spacing:1.056000pt;}
.ls78{letter-spacing:1.240000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.400000pt;}
.ls50{letter-spacing:2.448000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls4e{letter-spacing:2.592000pt;}
.ls4f{letter-spacing:2.640000pt;}
.ls6e{letter-spacing:3.223061pt;}
.ls6c{letter-spacing:4.823040pt;}
.lsa0{letter-spacing:5.440000pt;}
.ls3c{letter-spacing:13.104000pt;}
.ls59{letter-spacing:15.903744pt;}
.ls7f{letter-spacing:36.867072pt;}
.ls7d{letter-spacing:63.472128pt;}
.ls63{letter-spacing:66.995712pt;}
.ls64{letter-spacing:67.329024pt;}
.ls61{letter-spacing:88.899072pt;}
.ls81{letter-spacing:100.294656pt;}
.ls55{letter-spacing:156.490752pt;}
.ls7c{letter-spacing:176.464896pt;}
.ls54{letter-spacing:969.414144pt;}
.ws9f{word-spacing:-176.512512pt;}
.wsa4{word-spacing:-100.328448pt;}
.ws87{word-spacing:-88.946688pt;}
.ws8a{word-spacing:-67.376640pt;}
.ws89{word-spacing:-67.043328pt;}
.wsa0{word-spacing:-63.519744pt;}
.ws80{word-spacing:-15.951360pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2c{word-spacing:-12.085333pt;}
.ws61{word-spacing:-11.568000pt;}
.wsa5{word-spacing:-11.280000pt;}
.ws86{word-spacing:-11.136000pt;}
.ws4b{word-spacing:-11.088000pt;}
.wsa6{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws60{word-spacing:-10.944000pt;}
.ws3e{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws26{word-spacing:-10.800000pt;}
.ws5e{word-spacing:-10.656000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws6b{word-spacing:-10.416000pt;}
.ws28{word-spacing:-10.320000pt;}
.ws95{word-spacing:-10.272000pt;}
.wsce{word-spacing:-9.840000pt;}
.ws3f{word-spacing:-9.792000pt;}
.ws5f{word-spacing:-9.744000pt;}
.wsc9{word-spacing:-9.320000pt;}
.wsac{word-spacing:-9.280000pt;}
.wsaf{word-spacing:-9.240000pt;}
.wsca{word-spacing:-9.160000pt;}
.wsad{word-spacing:-9.080000pt;}
.wsc8{word-spacing:-9.000000pt;}
.wscd{word-spacing:-8.960000pt;}
.wsa8{word-spacing:-8.880000pt;}
.wscc{word-spacing:-8.760000pt;}
.wsa9{word-spacing:-8.720000pt;}
.wsaa{word-spacing:-8.680000pt;}
.wsab{word-spacing:-8.640000pt;}
.wscf{word-spacing:-8.600000pt;}
.wsb0{word-spacing:-8.520000pt;}
.ws5b{word-spacing:-8.474667pt;}
.wsd0{word-spacing:-8.280000pt;}
.wscb{word-spacing:-8.160000pt;}
.ws9d{word-spacing:-8.026667pt;}
.wsae{word-spacing:-8.000000pt;}
.ws49{word-spacing:-7.644000pt;}
.ws4a{word-spacing:-7.612800pt;}
.ws5a{word-spacing:-7.578667pt;}
.ws62{word-spacing:-7.519200pt;}
.ws4{word-spacing:-7.456800pt;}
.ws8{word-spacing:-7.425600pt;}
.ws23{word-spacing:-7.394400pt;}
.ws22{word-spacing:-7.332000pt;}
.ws48{word-spacing:-7.300800pt;}
.ws9{word-spacing:-7.269600pt;}
.ws29{word-spacing:-7.254000pt;}
.ws7{word-spacing:-7.238400pt;}
.ws2a{word-spacing:-7.207200pt;}
.ws47{word-spacing:-7.176000pt;}
.ws2b{word-spacing:-7.144800pt;}
.ws24{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws27{word-spacing:-7.020000pt;}
.ws25{word-spacing:-6.957600pt;}
.ws67{word-spacing:-6.926400pt;}
.ws85{word-spacing:-6.832800pt;}
.ws6c{word-spacing:-6.770400pt;}
.wsa7{word-spacing:-6.739200pt;}
.wsd1{word-spacing:-5.902000pt;}
.wsa{word-spacing:-5.893333pt;}
.wse0{word-spacing:-5.440000pt;}
.ws4e{word-spacing:-5.265867pt;}
.ws91{word-spacing:-4.293333pt;}
.wsb2{word-spacing:-3.984000pt;}
.ws6e{word-spacing:-2.976000pt;}
.ws76{word-spacing:-2.592000pt;}
.ws79{word-spacing:-2.496000pt;}
.ws21{word-spacing:-2.453333pt;}
.wsd{word-spacing:-2.400000pt;}
.ws7a{word-spacing:-2.352000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws7b{word-spacing:-2.160000pt;}
.wse{word-spacing:-2.133333pt;}
.wsde{word-spacing:-1.728000pt;}
.ws68{word-spacing:-1.680000pt;}
.wsf{word-spacing:-1.632000pt;}
.ws31{word-spacing:-1.536000pt;}
.ws63{word-spacing:-1.488000pt;}
.ws37{word-spacing:-1.440000pt;}
.wsb5{word-spacing:-1.400000pt;}
.wsb6{word-spacing:-1.360000pt;}
.ws43{word-spacing:-1.344000pt;}
.wsd4{word-spacing:-1.320000pt;}
.ws45{word-spacing:-1.296000pt;}
.ws7e{word-spacing:-1.248000pt;}
.ws46{word-spacing:-1.200000pt;}
.wsc{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.104000pt;}
.ws5d{word-spacing:-1.056000pt;}
.ws1e{word-spacing:-1.042667pt;}
.wsdb{word-spacing:-1.040000pt;}
.ws36{word-spacing:-1.008000pt;}
.ws3b{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.920000pt;}
.ws6f{word-spacing:-0.912000pt;}
.wsd5{word-spacing:-0.880000pt;}
.ws7c{word-spacing:-0.864000pt;}
.ws59{word-spacing:-0.858667pt;}
.ws69{word-spacing:-0.853333pt;}
.wsda{word-spacing:-0.840000pt;}
.ws58{word-spacing:-0.821333pt;}
.ws34{word-spacing:-0.816000pt;}
.ws82{word-spacing:-0.809472pt;}
.ws32{word-spacing:-0.768000pt;}
.wsc5{word-spacing:-0.760000pt;}
.ws41{word-spacing:-0.720000pt;}
.wsc2{word-spacing:-0.680000pt;}
.ws35{word-spacing:-0.672000pt;}
.ws9a{word-spacing:-0.642048pt;}
.ws13{word-spacing:-0.624000pt;}
.ws14{word-spacing:-0.576000pt;}
.wsbd{word-spacing:-0.560000pt;}
.ws15{word-spacing:-0.528000pt;}
.wsc6{word-spacing:-0.520000pt;}
.ws65{word-spacing:-0.480000pt;}
.ws81{word-spacing:-0.476160pt;}
.ws1b{word-spacing:-0.453333pt;}
.wsb3{word-spacing:-0.440000pt;}
.ws17{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.408000pt;}
.wsc1{word-spacing:-0.400000pt;}
.ws1a{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.373333pt;}
.ws1c{word-spacing:-0.362667pt;}
.ws12{word-spacing:-0.336000pt;}
.ws52{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.317333pt;}
.wsb1{word-spacing:-0.304128pt;}
.ws3d{word-spacing:-0.288000pt;}
.wsd3{word-spacing:-0.280000pt;}
.ws38{word-spacing:-0.240000pt;}
.wsd8{word-spacing:-0.200000pt;}
.ws33{word-spacing:-0.192000pt;}
.ws6d{word-spacing:-0.160000pt;}
.ws2e{word-spacing:-0.144000pt;}
.wsc4{word-spacing:-0.120000pt;}
.ws19{word-spacing:-0.096000pt;}
.ws97{word-spacing:-0.095232pt;}
.ws20{word-spacing:-0.090667pt;}
.ws9c{word-spacing:-0.053333pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws7f{word-spacing:-0.047616pt;}
.ws84{word-spacing:-0.031200pt;}
.wsb{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.033792pt;}
.ws9e{word-spacing:0.037333pt;}
.wsdc{word-spacing:0.040000pt;}
.ws39{word-spacing:0.048000pt;}
.wsbf{word-spacing:0.080000pt;}
.ws98{word-spacing:0.095232pt;}
.ws6a{word-spacing:0.096000pt;}
.wsc0{word-spacing:0.120000pt;}
.ws3c{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.186667pt;}
.ws30{word-spacing:0.192000pt;}
.ws96{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.240000pt;}
.wsb7{word-spacing:0.280000pt;}
.ws11{word-spacing:0.288000pt;}
.wsb8{word-spacing:0.320000pt;}
.ws56{word-spacing:0.336000pt;}
.wsd2{word-spacing:0.360000pt;}
.ws83{word-spacing:0.371712pt;}
.ws3a{word-spacing:0.384000pt;}
.wsdd{word-spacing:0.400000pt;}
.ws99{word-spacing:0.428544pt;}
.ws2f{word-spacing:0.432000pt;}
.ws57{word-spacing:0.480000pt;}
.ws18{word-spacing:0.576000pt;}
.ws88{word-spacing:0.619008pt;}
.ws66{word-spacing:0.624000pt;}
.wsbc{word-spacing:0.640000pt;}
.ws70{word-spacing:0.672000pt;}
.wsc7{word-spacing:0.720000pt;}
.wsd9{word-spacing:0.760000pt;}
.wsdf{word-spacing:0.768000pt;}
.ws42{word-spacing:0.816000pt;}
.ws10{word-spacing:0.864000pt;}
.wsd6{word-spacing:0.880000pt;}
.ws64{word-spacing:0.912000pt;}
.ws40{word-spacing:0.960000pt;}
.wsd7{word-spacing:1.000000pt;}
.ws9b{word-spacing:1.008000pt;}
.ws44{word-spacing:1.056000pt;}
.ws55{word-spacing:1.104000pt;}
.wsb9{word-spacing:1.120000pt;}
.ws54{word-spacing:1.152000pt;}
.wsba{word-spacing:1.280000pt;}
.ws74{word-spacing:1.296000pt;}
.wsbb{word-spacing:1.480000pt;}
.ws75{word-spacing:1.536000pt;}
.wsc3{word-spacing:1.560000pt;}
.ws72{word-spacing:1.584000pt;}
.ws71{word-spacing:1.632000pt;}
.ws73{word-spacing:2.256000pt;}
.ws77{word-spacing:5.424000pt;}
.ws78{word-spacing:5.616000pt;}
.ws7d{word-spacing:12.624000pt;}
.wsa2{word-spacing:24.499200pt;}
.ws8d{word-spacing:72.990400pt;}
.ws8e{word-spacing:77.466667pt;}
.ws50{word-spacing:86.613333pt;}
.ws8f{word-spacing:90.085333pt;}
.ws51{word-spacing:95.573333pt;}
.ws4f{word-spacing:105.429333pt;}
.ws90{word-spacing:121.408000pt;}
.ws8c{word-spacing:121.968000pt;}
.ws4c{word-spacing:124.170667pt;}
.ws93{word-spacing:133.130667pt;}
.ws4d{word-spacing:140.560000pt;}
.ws92{word-spacing:151.050667pt;}
.wsa1{word-spacing:167.798784pt;}
.ws94{word-spacing:190.698667pt;}
.ws8b{word-spacing:866.277888pt;}
._2b{margin-left:-359.405568pt;}
._43{margin-left:-161.275392pt;}
._42{margin-left:-141.086208pt;}
._29{margin-left:-112.326144pt;}
._45{margin-left:-99.956736pt;}
._2d{margin-left:-67.614720pt;}
._2c{margin-left:-66.209856pt;}
._44{margin-left:-48.282624pt;}
._2a{margin-left:-15.522816pt;}
._28{margin-left:-13.515733pt;}
._6{margin-left:-10.973333pt;}
._a{margin-left:-9.278400pt;}
._48{margin-left:-8.264533pt;}
._9{margin-left:-7.370133pt;}
._47{margin-left:-6.221333pt;}
._8{margin-left:-5.232000pt;}
._2{margin-left:-4.158933pt;}
._1{margin-left:-3.009067pt;}
._0{margin-left:-1.578667pt;}
._3{width:1.166400pt;}
._4{width:2.642933pt;}
._10{width:4.569600pt;}
._5{width:5.808533pt;}
._25{width:6.750400pt;}
._11{width:7.662933pt;}
._46{width:9.677333pt;}
._7{width:11.244267pt;}
._27{width:13.584000pt;}
._39{width:36.698667pt;}
._3a{width:41.216000pt;}
._b{width:42.667733pt;}
._26{width:43.834667pt;}
._38{width:45.696000pt;}
._3c{width:54.618667pt;}
._3e{width:59.136000pt;}
._3d{width:63.578667pt;}
._41{width:68.096000pt;}
._3f{width:80.006933pt;}
._40{width:81.536000pt;}
._37{width:92.250667pt;}
._3b{width:99.027200pt;}
._d{width:104.981333pt;}
._22{width:106.474667pt;}
._32{width:120.224533pt;}
._24{width:122.714667pt;}
._33{width:124.047467pt;}
._30{width:137.797333pt;}
._1b{width:140.634667pt;}
._31{width:142.314667pt;}
._13{width:144.032000pt;}
._1f{width:149.594667pt;}
._1d{width:152.992000pt;}
._14{width:154.755200pt;}
._12{width:156.090133pt;}
._15{width:158.554667pt;}
._16{width:164.975467pt;}
._18{width:167.514667pt;}
._21{width:174.272000pt;}
._2f{width:177.520000pt;}
._f{width:180.730667pt;}
._17{width:182.522133pt;}
._34{width:187.648000pt;}
._2e{width:189.898667pt;}
._36{width:203.690667pt;}
._35{width:217.130667pt;}
._23{width:235.557333pt;}
._20{width:264.954667pt;}
._1c{width:268.475733pt;}
._19{width:276.426667pt;}
._1a{width:286.022400pt;}
._c{width:289.697600pt;}
._e{width:291.509333pt;}
._1e{width:293.889067pt;}
.fsc{font-size:24.266667pt;}
.fs11{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fse{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsf{font-size:64.512000pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:1.920133pt;}
.y144{bottom:1.920267pt;}
.y110{bottom:1.924357pt;}
.y131{bottom:3.072000pt;}
.y11b{bottom:3.840133pt;}
.y146{bottom:3.840267pt;}
.y14b{bottom:4.223867pt;}
.y10f{bottom:18.816133pt;}
.y119{bottom:22.272133pt;}
.y1{bottom:24.175867pt;}
.y111{bottom:24.192133pt;}
.y2{bottom:24.225600pt;}
.y147{bottom:27.264267pt;}
.y2f{bottom:60.723467pt;}
.ya1{bottom:60.934667pt;}
.ye0{bottom:60.938667pt;}
.yff{bottom:60.949333pt;}
.y78{bottom:60.954667pt;}
.yc6{bottom:68.485600pt;}
.y1d5{bottom:71.152267pt;}
.y2e{bottom:74.051467pt;}
.y137{bottom:74.266667pt;}
.ya0{bottom:74.268000pt;}
.ydf{bottom:74.270667pt;}
.yfe{bottom:74.281333pt;}
.y77{bottom:74.286667pt;}
.y18a{bottom:78.152267pt;}
.yc5{bottom:81.817600pt;}
.y1d4{bottom:84.484267pt;}
.y2d{bottom:87.384800pt;}
.yde{bottom:87.602667pt;}
.y9f{bottom:87.612000pt;}
.yfd{bottom:87.613333pt;}
.y76{bottom:87.618667pt;}
.y189{bottom:89.482267pt;}
.yc4{bottom:95.152267pt;}
.y1d3{bottom:97.816267pt;}
.y2c{bottom:100.723467pt;}
.y188{bottom:100.812267pt;}
.ydd{bottom:100.934667pt;}
.y9e{bottom:100.944000pt;}
.yfc{bottom:100.945333pt;}
.y75{bottom:100.950667pt;}
.y136{bottom:102.344000pt;}
.yc3{bottom:108.484267pt;}
.y1d2{bottom:111.149600pt;}
.y187{bottom:112.142267pt;}
.y2b{bottom:114.051467pt;}
.ydc{bottom:114.269333pt;}
.y9d{bottom:114.276000pt;}
.yfb{bottom:114.277333pt;}
.y74{bottom:114.282667pt;}
.y135{bottom:115.676000pt;}
.yc2{bottom:121.820267pt;}
.y186{bottom:123.472267pt;}
.y2a{bottom:127.384800pt;}
.ydb{bottom:127.601333pt;}
.y9c{bottom:127.608000pt;}
.yfa{bottom:127.609333pt;}
.y73{bottom:127.614667pt;}
.y134{bottom:129.008000pt;}
.y185{bottom:134.802267pt;}
.yc1{bottom:135.152267pt;}
.y1d1{bottom:140.493600pt;}
.y29{bottom:140.718133pt;}
.yda{bottom:140.934667pt;}
.y9b{bottom:140.940000pt;}
.yf9{bottom:140.941333pt;}
.y72{bottom:140.946667pt;}
.y133{bottom:142.340000pt;}
.y184{bottom:146.132267pt;}
.yc0{bottom:148.484267pt;}
.y1d0{bottom:153.825600pt;}
.y28{bottom:154.051467pt;}
.yd9{bottom:154.268000pt;}
.y9a{bottom:154.272000pt;}
.yf8{bottom:154.273333pt;}
.y71{bottom:154.278667pt;}
.y132{bottom:155.672000pt;}
.y183{bottom:157.462267pt;}
.ybf{bottom:161.817600pt;}
.y1cf{bottom:167.157600pt;}
.yd8{bottom:167.602667pt;}
.y99{bottom:167.604000pt;}
.yf7{bottom:167.605333pt;}
.y70{bottom:167.610667pt;}
.y182{bottom:168.792267pt;}
.y27{bottom:171.232800pt;}
.y130{bottom:173.548000pt;}
.ybe{bottom:175.150933pt;}
.y181{bottom:180.122267pt;}
.y1ce{bottom:180.489600pt;}
.yd7{bottom:180.934667pt;}
.y98{bottom:180.936000pt;}
.yf6{bottom:180.937333pt;}
.y6f{bottom:180.942667pt;}
.ybd{bottom:188.490933pt;}
.y180{bottom:191.452267pt;}
.y1cd{bottom:193.821600pt;}
.yd6{bottom:194.266667pt;}
.y97{bottom:194.268000pt;}
.yf5{bottom:194.269333pt;}
.y6e{bottom:194.274667pt;}
.y12f{bottom:200.564133pt;}
.ybc{bottom:201.822933pt;}
.y26{bottom:201.942933pt;}
.y17f{bottom:202.782267pt;}
.y1cc{bottom:207.153600pt;}
.yf4{bottom:207.601333pt;}
.y96{bottom:207.605333pt;}
.y6d{bottom:207.606667pt;}
.y12e{bottom:213.898800pt;}
.y17e{bottom:214.112267pt;}
.ybb{bottom:215.154933pt;}
.y25{bottom:215.276267pt;}
.yd5{bottom:219.161600pt;}
.y1cb{bottom:220.485600pt;}
.yf3{bottom:220.936000pt;}
.y95{bottom:220.937333pt;}
.y6c{bottom:220.938667pt;}
.y17d{bottom:225.442267pt;}
.y12d{bottom:227.230800pt;}
.yba{bottom:228.486933pt;}
.y24{bottom:228.609600pt;}
.yd4{bottom:232.493600pt;}
.y1ca{bottom:233.817600pt;}
.yf2{bottom:234.268000pt;}
.y94{bottom:234.269333pt;}
.y6b{bottom:234.270667pt;}
.y17c{bottom:236.772267pt;}
.y12c{bottom:240.564133pt;}
.yb9{bottom:241.818933pt;}
.y23{bottom:241.946933pt;}
.yd3{bottom:245.825600pt;}
.y1c9{bottom:247.149600pt;}
.yf1{bottom:247.600000pt;}
.y93{bottom:247.601333pt;}
.y6a{bottom:247.602667pt;}
.y17b{bottom:248.102267pt;}
.y12b{bottom:253.896133pt;}
.yb8{bottom:255.150933pt;}
.y22{bottom:255.278933pt;}
.yd2{bottom:259.157600pt;}
.y17a{bottom:259.432267pt;}
.y1c8{bottom:260.482933pt;}
.yf0{bottom:260.933333pt;}
.y69{bottom:260.934667pt;}
.yb7{bottom:268.484267pt;}
.y21{bottom:268.610933pt;}
.y179{bottom:270.762267pt;}
.yd1{bottom:272.489600pt;}
.y92{bottom:274.268000pt;}
.y68{bottom:274.277333pt;}
.yb6{bottom:281.816267pt;}
.y20{bottom:281.942933pt;}
.y12a{bottom:281.970800pt;}
.y178{bottom:282.092267pt;}
.yd0{bottom:285.821600pt;}
.y91{bottom:287.602667pt;}
.y67{bottom:287.609333pt;}
.yef{bottom:287.828267pt;}
.y1c7{bottom:289.819600pt;}
.y177{bottom:293.422267pt;}
.y1f{bottom:295.276267pt;}
.y129{bottom:295.302800pt;}
.ycf{bottom:299.153600pt;}
.y90{bottom:300.934667pt;}
.y66{bottom:300.941333pt;}
.yee{bottom:301.160267pt;}
.y1c6{bottom:301.346267pt;}
.y176{bottom:304.752267pt;}
.y1e{bottom:308.610933pt;}
.y128{bottom:308.637467pt;}
.yce{bottom:312.485600pt;}
.y1c5{bottom:312.676267pt;}
.y8f{bottom:314.266667pt;}
.y65{bottom:314.273333pt;}
.yed{bottom:314.492267pt;}
.y175{bottom:316.082267pt;}
.y1d{bottom:321.942933pt;}
.y127{bottom:321.969467pt;}
.y1c4{bottom:324.006267pt;}
.ycd{bottom:325.817600pt;}
.y174{bottom:327.412267pt;}
.y64{bottom:327.605333pt;}
.yec{bottom:327.824267pt;}
.y1c{bottom:335.277600pt;}
.y126{bottom:335.312133pt;}
.y1c3{bottom:335.336267pt;}
.yc9{bottom:336.961733pt;}
.y173{bottom:338.742267pt;}
.y8e{bottom:339.045467pt;}
.ycc{bottom:339.152267pt;}
.y63{bottom:340.937333pt;}
.yeb{bottom:341.156267pt;}
.y1c2{bottom:346.666267pt;}
.y1b{bottom:348.609600pt;}
.y125{bottom:348.644133pt;}
.y172{bottom:350.072267pt;}
.yc8{bottom:350.293733pt;}
.y8d{bottom:352.377467pt;}
.ycb{bottom:352.484267pt;}
.y62{bottom:354.269333pt;}
.yea{bottom:354.488267pt;}
.y1c1{bottom:357.996267pt;}
.y171{bottom:361.402267pt;}
.y124{bottom:361.976133pt;}
.y1a{bottom:361.980267pt;}
.yc7{bottom:363.625733pt;}
.y8c{bottom:365.709467pt;}
.yca{bottom:365.816267pt;}
.y61{bottom:367.601333pt;}
.ye9{bottom:367.820267pt;}
.y1c0{bottom:369.326267pt;}
.y170{bottom:372.732267pt;}
.y123{bottom:375.308133pt;}
.y19{bottom:375.312267pt;}
.y8b{bottom:379.042800pt;}
.y1bf{bottom:380.656267pt;}
.y60{bottom:380.933333pt;}
.ye8{bottom:381.152267pt;}
.y16f{bottom:384.062267pt;}
.y122{bottom:388.640133pt;}
.y1be{bottom:391.986267pt;}
.y8a{bottom:392.378800pt;}
.y5f{bottom:394.266667pt;}
.ye7{bottom:394.484267pt;}
.y16e{bottom:395.392267pt;}
.y121{bottom:401.972133pt;}
.y1bd{bottom:403.316267pt;}
.y89{bottom:405.710800pt;}
.y16d{bottom:406.722267pt;}
.ye6{bottom:407.816267pt;}
.y1bc{bottom:414.646267pt;}
.y120{bottom:415.304133pt;}
.ye5{bottom:416.053733pt;}
.y18{bottom:417.312267pt;}
.y16c{bottom:418.052267pt;}
.y88{bottom:419.042800pt;}
.y5e{bottom:421.152267pt;}
.y1bb{bottom:425.976267pt;}
.y11f{bottom:428.636133pt;}
.y16b{bottom:429.382267pt;}
.ye4{bottom:429.387067pt;}
.y17{bottom:431.976267pt;}
.y87{bottom:432.376133pt;}
.y5d{bottom:434.484267pt;}
.y1ba{bottom:437.306267pt;}
.y16a{bottom:440.712267pt;}
.y11e{bottom:441.968133pt;}
.ye3{bottom:442.720400pt;}
.y86{bottom:445.710800pt;}
.y16{bottom:446.640267pt;}
.y5c{bottom:447.820267pt;}
.y1b9{bottom:448.636267pt;}
.y1ec{bottom:449.282933pt;}
.y169{bottom:452.042267pt;}
.ye2{bottom:456.053733pt;}
.y103{bottom:458.827067pt;}
.y85{bottom:459.042800pt;}
.y118{bottom:459.844000pt;}
.y1b8{bottom:459.966267pt;}
.y5b{bottom:461.152267pt;}
.y15{bottom:461.304267pt;}
.y1eb{bottom:462.614933pt;}
.y168{bottom:463.372267pt;}
.y11a{bottom:464.836133pt;}
.ye1{bottom:469.385733pt;}
.y1b7{bottom:471.296267pt;}
.y102{bottom:472.161733pt;}
.y84{bottom:472.377467pt;}
.y117{bottom:474.436133pt;}
.y5a{bottom:474.484267pt;}
.y167{bottom:474.702267pt;}
.y1ea{bottom:475.946933pt;}
.y14{bottom:475.968267pt;}
.y11c{bottom:479.044133pt;}
.y1b6{bottom:482.626267pt;}
.y101{bottom:485.493733pt;}
.y83{bottom:485.709467pt;}
.y166{bottom:486.032267pt;}
.y59{bottom:487.818933pt;}
.y1e9{bottom:489.278933pt;}
.y13{bottom:490.632267pt;}
.y1b5{bottom:493.956267pt;}
.y165{bottom:497.362267pt;}
.y100{bottom:498.825733pt;}
.y82{bottom:499.048133pt;}
.y58{bottom:501.150933pt;}
.y1e8{bottom:502.610933pt;}
.y116{bottom:504.908133pt;}
.y1b4{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.y164{bottom:508.692267pt;}
.y81{bottom:512.380133pt;}
.y57{bottom:514.493600pt;}
.y1e7{bottom:515.942933pt;}
.y1b3{bottom:516.616267pt;}
.y115{bottom:518.244133pt;}
.y11{bottom:519.960267pt;}
.y163{bottom:520.022267pt;}
.y80{bottom:525.712133pt;}
.y56{bottom:527.825600pt;}
.y1b2{bottom:527.946267pt;}
.y1e6{bottom:529.274933pt;}
.y162{bottom:531.352267pt;}
.y114{bottom:531.576133pt;}
.y10{bottom:534.624267pt;}
.y7f{bottom:539.044133pt;}
.y1b1{bottom:539.276267pt;}
.y55{bottom:541.157600pt;}
.y161{bottom:542.682267pt;}
.y113{bottom:544.908133pt;}
.yf{bottom:549.288267pt;}
.y1b0{bottom:550.606267pt;}
.y7e{bottom:552.376133pt;}
.y160{bottom:554.012267pt;}
.y54{bottom:554.489600pt;}
.y1e5{bottom:556.609600pt;}
.y112{bottom:558.240133pt;}
.y1af{bottom:561.936267pt;}
.ye{bottom:563.952267pt;}
.y15f{bottom:565.342267pt;}
.y7d{bottom:565.708133pt;}
.y53{bottom:567.821600pt;}
.y1e4{bottom:569.941600pt;}
.y1ae{bottom:573.266267pt;}
.y10e{bottom:576.116000pt;}
.y15e{bottom:576.672267pt;}
.yd{bottom:578.616267pt;}
.y7c{bottom:579.041467pt;}
.y52{bottom:581.153600pt;}
.y1e3{bottom:583.273600pt;}
.y1ad{bottom:584.596267pt;}
.y10d{bottom:587.634981pt;}
.y15d{bottom:588.002267pt;}
.yc{bottom:593.280267pt;}
.y51{bottom:594.485600pt;}
.y10c{bottom:594.932133pt;}
.y1ac{bottom:595.926267pt;}
.y15c{bottom:599.332267pt;}
.y7b{bottom:603.818933pt;}
.y1ab{bottom:607.256267pt;}
.y50{bottom:607.817600pt;}
.yb{bottom:607.944267pt;}
.y1e2{bottom:610.609600pt;}
.y15b{bottom:610.662267pt;}
.y7a{bottom:617.150933pt;}
.y1aa{bottom:618.586267pt;}
.y10b{bottom:620.413467pt;}
.y4f{bottom:621.158933pt;}
.y15a{bottom:621.992267pt;}
.ya{bottom:622.608267pt;}
.y1e1{bottom:623.941600pt;}
.y1a9{bottom:629.916267pt;}
.y79{bottom:630.482933pt;}
.y159{bottom:633.325600pt;}
.y10a{bottom:633.745467pt;}
.y4e{bottom:634.490933pt;}
.y1a8{bottom:641.246267pt;}
.y109{bottom:647.077467pt;}
.y4d{bottom:647.822933pt;}
.y9{bottom:649.274933pt;}
.y1a7{bottom:652.576267pt;}
.y4c{bottom:661.154933pt;}
.y158{bottom:662.660267pt;}
.y1a6{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y32{bottom:672.933333pt;}
.y4b{bottom:674.486933pt;}
.y108{bottom:675.154933pt;}
.y1a5{bottom:675.236267pt;}
.y157{bottom:675.993600pt;}
.yb5{bottom:680.150933pt;}
.y1a4{bottom:686.566267pt;}
.y4a{bottom:687.818933pt;}
.y107{bottom:688.486933pt;}
.y156{bottom:689.328267pt;}
.y31{bottom:691.600000pt;}
.yb4{bottom:693.484267pt;}
.y7{bottom:694.592267pt;}
.y1a3{bottom:697.896267pt;}
.y49{bottom:701.150933pt;}
.y106{bottom:701.818933pt;}
.y155{bottom:702.660267pt;}
.yb3{bottom:706.817600pt;}
.y1a2{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.y48{bottom:714.484267pt;}
.y105{bottom:715.150933pt;}
.y154{bottom:715.994933pt;}
.yb2{bottom:720.150933pt;}
.y1a1{bottom:720.556267pt;}
.y47{bottom:727.818933pt;}
.y104{bottom:728.482933pt;}
.y153{bottom:729.326933pt;}
.y1a0{bottom:731.886267pt;}
.yb1{bottom:733.484267pt;}
.y6{bottom:734.597600pt;}
.y46{bottom:741.150933pt;}
.y152{bottom:742.666933pt;}
.y19f{bottom:743.216267pt;}
.yb0{bottom:746.818933pt;}
.y45{bottom:754.484267pt;}
.y19e{bottom:754.546267pt;}
.y151{bottom:755.998933pt;}
.yaf{bottom:760.150933pt;}
.y19d{bottom:765.876267pt;}
.y44{bottom:767.818933pt;}
.y150{bottom:769.330933pt;}
.yae{bottom:773.482933pt;}
.y5{bottom:774.602933pt;}
.y19c{bottom:777.206267pt;}
.y43{bottom:781.150933pt;}
.y14f{bottom:782.662933pt;}
.y13d{bottom:784.322933pt;}
.y19b{bottom:788.536267pt;}
.y42{bottom:794.485600pt;}
.y14e{bottom:795.994933pt;}
.y13c{bottom:797.654933pt;}
.y19a{bottom:799.866267pt;}
.yad{bottom:800.286933pt;}
.y1e0{bottom:803.157600pt;}
.y41{bottom:807.817600pt;}
.y14d{bottom:809.326933pt;}
.y13b{bottom:810.986933pt;}
.y199{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.yac{bottom:815.789600pt;}
.y1df{bottom:816.489600pt;}
.y40{bottom:821.152267pt;}
.y198{bottom:822.526267pt;}
.y14c{bottom:822.660267pt;}
.y33{bottom:823.475200pt;}
.y13a{bottom:824.318933pt;}
.y1de{bottom:829.821600pt;}
.yab{bottom:831.292267pt;}
.y14a{bottom:831.548000pt;}
.y197{bottom:833.856267pt;}
.y3f{bottom:834.484267pt;}
.y149{bottom:835.992267pt;}
.y139{bottom:837.650933pt;}
.y1dd{bottom:843.153600pt;}
.y196{bottom:845.186267pt;}
.yaa{bottom:846.794933pt;}
.y3e{bottom:847.818933pt;}
.y138{bottom:850.982933pt;}
.y143{bottom:854.934667pt;}
.y1dc{bottom:856.485600pt;}
.y195{bottom:856.516267pt;}
.y3d{bottom:861.150933pt;}
.ya9{bottom:862.297600pt;}
.y148{bottom:866.454933pt;}
.y142{bottom:867.222933pt;}
.y194{bottom:867.846267pt;}
.y145{bottom:869.526800pt;}
.y1db{bottom:869.817600pt;}
.y3c{bottom:874.485600pt;}
.ya8{bottom:877.800267pt;}
.y193{bottom:879.176267pt;}
.y1da{bottom:883.149600pt;}
.y3b{bottom:887.817600pt;}
.y192{bottom:890.506267pt;}
.ya7{bottom:893.302933pt;}
.y3a{bottom:901.150933pt;}
.y141{bottom:901.156267pt;}
.y191{bottom:901.836267pt;}
.y1d9{bottom:902.486933pt;}
.ya6{bottom:908.805600pt;}
.y190{bottom:913.166267pt;}
.y39{bottom:914.484267pt;}
.y140{bottom:914.488267pt;}
.y1d8{bottom:915.818933pt;}
.ya5{bottom:924.308267pt;}
.y18f{bottom:924.496267pt;}
.y38{bottom:927.817600pt;}
.y13f{bottom:927.820267pt;}
.y1d7{bottom:935.150933pt;}
.y18e{bottom:935.826267pt;}
.ya4{bottom:939.810933pt;}
.y37{bottom:941.150933pt;}
.y13e{bottom:941.152267pt;}
.y18d{bottom:947.156267pt;}
.y1d6{bottom:954.482933pt;}
.y36{bottom:954.484267pt;}
.ya3{bottom:955.313600pt;}
.y18c{bottom:958.486267pt;}
.y35{bottom:967.816267pt;}
.y18b{bottom:969.816267pt;}
.ya2{bottom:970.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h2f{height:9.982667pt;}
.h30{height:13.056000pt;}
.h29{height:13.824000pt;}
.h1f{height:21.046272pt;}
.hd{height:21.193555pt;}
.h28{height:24.059904pt;}
.h2e{height:25.208832pt;}
.h2b{height:26.656000pt;}
.h24{height:28.047360pt;}
.h1c{height:30.019733pt;}
.h3{height:30.687500pt;}
.h1d{height:30.986667pt;}
.h21{height:31.104000pt;}
.h26{height:31.872000pt;}
.hf{height:32.605469pt;}
.h2d{height:33.024000pt;}
.h31{height:33.200000pt;}
.h22{height:33.902592pt;}
.h32{height:34.393333pt;}
.h7{height:34.523438pt;}
.h20{height:35.521536pt;}
.h10{height:36.564221pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h4{height:39.318359pt;}
.h27{height:39.521280pt;}
.h8{height:39.840000pt;}
.h9{height:42.061333pt;}
.h1b{height:42.167467pt;}
.h16{height:42.172800pt;}
.h13{height:42.173333pt;}
.h12{height:42.178667pt;}
.h1e{height:42.184000pt;}
.h17{height:42.189333pt;}
.h1a{height:42.194133pt;}
.hc{height:42.194667pt;}
.h15{height:42.195312pt;}
.h14{height:42.200000pt;}
.h18{height:42.204800pt;}
.ha{height:42.205333pt;}
.h19{height:42.210133pt;}
.hb{height:42.210667pt;}
.h2a{height:42.616320pt;}
.h6{height:43.066927pt;}
.h25{height:43.640832pt;}
.h23{height:47.187456pt;}
.h2c{height:48.125952pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:9.600000pt;}
.w5{width:11.520000pt;}
.w3{width:532.224000pt;}
.w2{width:532.608000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:66.689200pt;}
.x8{left:71.606533pt;}
.x7{left:73.217200pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:211.683467pt;}
.x1d{left:219.647733pt;}
.x1b{left:222.335733pt;}
.x5{left:223.515200pt;}
.x1e{left:224.640501pt;}
.x20{left:229.247733pt;}
.x18{left:236.927733pt;}
.xe{left:260.735733pt;}
.x13{left:263.039733pt;}
.x26{left:266.976533pt;}
.xf{left:270.342261pt;}
.x17{left:281.855733pt;}
.x10{left:288.383733pt;}
.x19{left:293.460667pt;}
.x21{left:328.253333pt;}
.x22{left:337.865600pt;}
.x1c{left:394.221067pt;}
.x12{left:421.485067pt;}
.x1a{left:426.477067pt;}
.xd{left:442.983691pt;}
.x1f{left:448.749067pt;}
.x11{left:453.741067pt;}
.xc{left:457.197067pt;}
.x14{left:468.333067pt;}
.x16{left:491.757067pt;}
.x15{left:518.399733pt;}
.x3{left:519.632533pt;}
.x23{left:700.865333pt;}
.x24{left:712.398667pt;}
.x25{left:725.336533pt;}
.xb{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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