
    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_631b253197f110f749d6abf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_757d66ffc068639c9d8d27a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.754395;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_71ffb456278f183a98cfe376.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_4fa5222f4ff20abccc744d21.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4cb508f2d33a12b66ac240a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_a4bd9535f3cc98e58305995d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_81c8d7d92efdcd247fb457c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_1a5f309415ae2d46d2786056.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_089d18007de5eeca26d01ece.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964844;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_dab82d186a064b8dbe706045.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.044000;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_9ad732d29351650b40d761b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_c336909f45ef4345e8c26d63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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_c86d7eeae509dc3b8e9f8f15.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ff97cf829cf26e2e16fae5ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.044000;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_31c88f61f00b342677cec146.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_657b2d3378ea47dfb69bca22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_bb9fb13165a984ee66255fa4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_1100806283be54c4a8e3ace5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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_2b6b1f7a449132008402f412.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;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_04718fcae49b1574ec4e95b0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;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_1054a02813be4ff4eb490732.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;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_b6f8631dbb297d18bc11c313.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938965;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_6e8290a6d53487d6db91ab56.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938965;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_65eb43f1e0d66e13a108c171.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;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_f01936c9e151a9bdb1cd4821.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938965;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_a8400550f682bf22c69e1844.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_e24025a563512288ec75a70f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;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_2b1ecbb39c6e9645d39340b1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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_56d663a5e9d76e1a3c59bf67.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;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_69731d0478d53d623b76db58.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;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_386d9f25e300dc15e8e41f81.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938965;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_3aeb52e77669e7031754ff03.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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_7cc134ffb5666df6511779fd.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938965;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_e1b96686906e216dc1021432.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938965;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_1c56d0b89edcab57ce655809.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938965;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_ed4a704373f3dfccad5902f5.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938965;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_b2923cd11f7fb80ea80e3e42.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;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_633af8fbca110ac3500c9ac1.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;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_bf094eb9767a652eb7c45f38.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;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_e2463a8d8ac76693c9472eb6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;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_55da8e528e92ece9444995c1.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938965;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_d71bd0a0660a92c8a2f154db.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;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_1060985d714962f9b19c6e52.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938965;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_bcf72f4b7a2f11565de7c2b2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;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_624930c5612d5539d6ce2972.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938965;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_97c7fd73688cda94bba353bc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938965;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_73ccb635b8756587a0a269d1.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;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_5dc6a161658408ed93a729c7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;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_7adfff78b085dad94a2a3d77.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938965;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_5696c5f7603f0f5862be160b.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;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_cbdca375ca608811ceb617f9.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938965;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:ff34;src:url('chunks/assets/font_121032c90cd2116969f00c54.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938965;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:ff35;src:url('chunks/assets/font_9939e52a26ab1bb2fc4f6129.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938965;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:ff36;src:url('chunks/assets/font_69731d0478d53d623b76db58.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.938965;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:ff37;src:url('chunks/assets/font_03bea2d0729afd9f61ff3274.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938965;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:ff38;src:url('chunks/assets/font_2d2e5851f8f0108ff508b93b.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938965;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:ff39;src:url('chunks/assets/font_fe0f58992ece0968da03074f.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938965;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:ff3a;src:url('chunks/assets/font_ce24652cfea21c876c655de7.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938965;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:ff3b;src:url('chunks/assets/font_519170f12412ba3ab54482ca.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938965;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:ff3c;src:url('chunks/assets/font_c648b1a0320e528cf7cdeb7c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.938965;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:ff3d;src:url('chunks/assets/font_fe0f58992ece0968da03074f.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938965;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:ff3e;src:url('chunks/assets/font_9de00ab4c984fb2a42987889.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.938965;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:ff3f;src:url('chunks/assets/font_b16aad3078ac6ea562cb8a56.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.938965;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:ff40;src:url('chunks/assets/font_b139ef85a6ce76fad32da1c3.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.938965;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:ff41;src:url('chunks/assets/font_6df23fccda0bb1ce4a7e6784.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.914551;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:ff42;src:url('chunks/assets/font_20609a3d64c8211f10c4e619.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.938965;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:ff43;src:url('chunks/assets/font_0c1bd0a2a91fa8b14b224a23.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938965;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:ff44;src:url('chunks/assets/font_271f76cd1822b4735f183c48.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.914551;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:ff45;src:url('chunks/assets/font_b3a75b5f4218f55ba8912a36.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.938965;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:ff46;src:url('chunks/assets/font_01683020112620f019b5aea9.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.914551;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:ff47;src:url('chunks/assets/font_6cc4923e5057a8c3420d3a6e.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.938965;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:ff48;src:url('chunks/assets/font_51e467ece97d1a97ce9a774d.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.914551;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:ff49;src:url('chunks/assets/font_0e06719206babdcf86b31530.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.938965;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:ff4a;src:url('chunks/assets/font_3b7402632a737631fb973b32.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.914551;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:ff4b;src:url('chunks/assets/font_f97b37791703aef4439016f5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938965;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:ff4c;src:url('chunks/assets/font_6df23fccda0bb1ce4a7e6784.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.914551;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:ff4d;src:url('chunks/assets/font_8ec049047f9a898cc4b1dac3.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.938965;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:ff4e;src:url('chunks/assets/font_9c5dc7698910515d2c72e336.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.914551;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:ff4f;src:url('chunks/assets/font_bef470baf541f2c933d8f6a9.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.938965;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:ff50;src:url('chunks/assets/font_dbc682925088f2e4382f0986.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.914551;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:ff51;src:url('chunks/assets/font_38c87a4bf123aec260dc741f.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.938965;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:ff52;src:url('chunks/assets/font_5edab0965ec3a0233963113a.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.914551;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:ff53;src:url('chunks/assets/font_314ff0d2efb7c973b9d41475.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.938965;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:ff54;src:url('chunks/assets/font_b4f876776c0cb852e38aca69.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.938965;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:ff55;src:url('chunks/assets/font_b7b8854d60ec81767ffdc996.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.938965;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:ff56;src:url('chunks/assets/font_8306e5c6de72ed5f83ec6830.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.938965;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:ff57;src:url('chunks/assets/font_da1281fa5e3108777c59371f.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.938965;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:ff58;src:url('chunks/assets/font_13d47858e4a202b66d0743e9.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.938965;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:ff59;src:url('chunks/assets/font_5594b7eac52cbbecffc89abb.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.926270;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:ff5a;src:url('chunks/assets/font_7e1039c9ba2aefe51f2de99a.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.893066;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls18{letter-spacing:-4.968000px;}
.ls2{letter-spacing:-3.264000px;}
.ls6{letter-spacing:-1.242000px;}
.ls17{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.192000px;}
.ls8{letter-spacing:-0.162000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.009000px;}
.lsa{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.475200px;}
.lsc{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.480600px;}
.ls16{letter-spacing:1.020000px;}
.ls13{letter-spacing:1.568400px;}
.ls1{letter-spacing:1.648800px;}
.lse{letter-spacing:1.889400px;}
.ls0{letter-spacing:2.305200px;}
.ls1b{letter-spacing:5.052000px;}
.ls10{letter-spacing:6.130200px;}
.ls11{letter-spacing:9.262800px;}
.lsb{letter-spacing:9.567000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws61{word-spacing:-16.020000px;}
.ws29{word-spacing:-15.480000px;}
.ws60{word-spacing:-15.300000px;}
.ws26{word-spacing:-15.240000px;}
.ws9{word-spacing:-15.000000px;}
.ws74{word-spacing:-13.800000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.338000px;}
.ws46{word-spacing:-13.068000px;}
.ws3{word-spacing:-12.960000px;}
.ws8c{word-spacing:-12.852000px;}
.ws1{word-spacing:-12.096000px;}
.ws2{word-spacing:-12.000000px;}
.ws9d{word-spacing:-11.808000px;}
.ws9e{word-spacing:-11.472000px;}
.ws7e{word-spacing:-8.532000px;}
.ws73{word-spacing:-5.460000px;}
.ws71{word-spacing:-4.740000px;}
.ws80{word-spacing:-3.294000px;}
.ws6c{word-spacing:-2.940000px;}
.wsc{word-spacing:-2.664000px;}
.ws18{word-spacing:-2.640000px;}
.ws68{word-spacing:-2.580000px;}
.ws51{word-spacing:-2.460000px;}
.ws81{word-spacing:-2.430000px;}
.ws7f{word-spacing:-2.322000px;}
.ws79{word-spacing:-2.280000px;}
.wsa9{word-spacing:-2.160000px;}
.ws85{word-spacing:-2.052000px;}
.ws1a{word-spacing:-2.040000px;}
.ws67{word-spacing:-1.980000px;}
.ws97{word-spacing:-1.920000px;}
.ws62{word-spacing:-1.836000px;}
.ws83{word-spacing:-1.800000px;}
.ws9c{word-spacing:-1.782000px;}
.ws8b{word-spacing:-1.740000px;}
.ws94{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.512000px;}
.wsae{word-spacing:-1.488000px;}
.ws1e{word-spacing:-1.380000px;}
.ws15{word-spacing:-1.296000px;}
.ws58{word-spacing:-1.200000px;}
.ws6a{word-spacing:-1.140000px;}
.ws72{word-spacing:-1.020000px;}
.ws47{word-spacing:-0.972000px;}
.wsa8{word-spacing:-0.900000px;}
.wsb4{word-spacing:-0.816000px;}
.ws8f{word-spacing:-0.780000px;}
.ws8a{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.702000px;}
.ws76{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.594000px;}
.ws82{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.480000px;}
.ws35{word-spacing:-0.360000px;}
.ws64{word-spacing:-0.300000px;}
.ws2a{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.204000px;}
.wsaf{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.060000px;}
.ws28{word-spacing:-0.042000px;}
.ws0{word-spacing:-0.041976px;}
.ws84{word-spacing:-0.041468px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.162000px;}
.ws78{word-spacing:0.180000px;}
.wsb1{word-spacing:0.192000px;}
.wsf{word-spacing:0.252000px;}
.ws7c{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.wsaa{word-spacing:0.420000px;}
.ws48{word-spacing:0.432000px;}
.ws57{word-spacing:0.480000px;}
.wsb3{word-spacing:0.528000px;}
.ws23{word-spacing:0.540000px;}
.ws5{word-spacing:0.648000px;}
.ws39{word-spacing:0.660000px;}
.wse{word-spacing:0.702000px;}
.ws8d{word-spacing:0.720000px;}
.ws4e{word-spacing:0.840000px;}
.ws50{word-spacing:1.080000px;}
.wsa7{word-spacing:1.140000px;}
.ws6{word-spacing:1.188000px;}
.ws7b{word-spacing:1.200000px;}
.wsac{word-spacing:1.260000px;}
.ws24{word-spacing:1.285200px;}
.wsb9{word-spacing:1.296000px;}
.ws98{word-spacing:1.320000px;}
.ws42{word-spacing:1.440000px;}
.ws25{word-spacing:1.474200px;}
.ws53{word-spacing:1.560000px;}
.ws5b{word-spacing:1.566000px;}
.ws33{word-spacing:1.620000px;}
.ws13{word-spacing:1.836000px;}
.ws1d{word-spacing:1.860000px;}
.ws2f{word-spacing:1.920000px;}
.ws63{word-spacing:1.980000px;}
.ws59{word-spacing:2.040000px;}
.ws34{word-spacing:2.160000px;}
.ws3c{word-spacing:2.280000px;}
.ws6b{word-spacing:2.400000px;}
.ws11{word-spacing:2.484000px;}
.wsbf{word-spacing:2.580000px;}
.ws5e{word-spacing:2.640000px;}
.ws99{word-spacing:2.760000px;}
.ws5c{word-spacing:2.820000px;}
.ws22{word-spacing:2.880000px;}
.ws12{word-spacing:2.916000px;}
.ws7d{word-spacing:3.000000px;}
.ws5a{word-spacing:3.060000px;}
.ws6f{word-spacing:3.120000px;}
.wsa5{word-spacing:3.240000px;}
.wsa3{word-spacing:3.360000px;}
.ws8e{word-spacing:3.600000px;}
.ws87{word-spacing:3.660000px;}
.ws21{word-spacing:3.720000px;}
.wsb5{word-spacing:3.744000px;}
.ws30{word-spacing:3.780000px;}
.ws7a{word-spacing:3.840000px;}
.wsad{word-spacing:3.900000px;}
.wsa4{word-spacing:3.960000px;}
.ws5d{word-spacing:4.020000px;}
.wsb2{word-spacing:4.032000px;}
.ws3b{word-spacing:4.080000px;}
.ws52{word-spacing:4.380000px;}
.ws44{word-spacing:4.440000px;}
.wsa0{word-spacing:4.500000px;}
.ws9b{word-spacing:4.560000px;}
.wsb6{word-spacing:4.992000px;}
.wsbd{word-spacing:5.040000px;}
.ws91{word-spacing:5.160000px;}
.ws93{word-spacing:5.280000px;}
.ws66{word-spacing:5.340000px;}
.ws19{word-spacing:5.400000px;}
.ws49{word-spacing:5.580000px;}
.ws4d{word-spacing:5.640000px;}
.ws32{word-spacing:5.760000px;}
.ws1b{word-spacing:6.120000px;}
.ws96{word-spacing:6.360000px;}
.wsa6{word-spacing:6.420000px;}
.ws20{word-spacing:6.540000px;}
.ws3e{word-spacing:6.600000px;}
.ws9f{word-spacing:6.660000px;}
.ws86{word-spacing:6.780000px;}
.ws69{word-spacing:6.900000px;}
.ws3d{word-spacing:6.960000px;}
.ws3f{word-spacing:7.020000px;}
.ws41{word-spacing:7.320000px;}
.ws6d{word-spacing:7.380000px;}
.wsc0{word-spacing:7.440000px;}
.ws5f{word-spacing:7.620000px;}
.ws88{word-spacing:7.740000px;}
.wsb8{word-spacing:7.824000px;}
.ws2d{word-spacing:8.100000px;}
.ws38{word-spacing:8.160000px;}
.ws2c{word-spacing:8.460000px;}
.ws4f{word-spacing:8.520000px;}
.ws2b{word-spacing:8.640000px;}
.ws36{word-spacing:8.820000px;}
.wsbb{word-spacing:8.880000px;}
.ws90{word-spacing:9.120000px;}
.ws4a{word-spacing:9.240000px;}
.wsab{word-spacing:9.360000px;}
.ws77{word-spacing:9.540000px;}
.ws40{word-spacing:9.600000px;}
.ws31{word-spacing:9.720000px;}
.ws4c{word-spacing:9.780000px;}
.ws3a{word-spacing:9.900000px;}
.ws65{word-spacing:9.960000px;}
.ws95{word-spacing:10.020000px;}
.ws70{word-spacing:10.080000px;}
.wsa1{word-spacing:10.440000px;}
.ws45{word-spacing:11.340000px;}
.wsb0{word-spacing:11.376000px;}
.ws4b{word-spacing:11.400000px;}
.ws37{word-spacing:11.460000px;}
.wsbc{word-spacing:11.640000px;}
.ws75{word-spacing:12.060000px;}
.wsba{word-spacing:12.360000px;}
.ws89{word-spacing:12.420000px;}
.ws55{word-spacing:12.660000px;}
.wsbe{word-spacing:13.260000px;}
.ws2e{word-spacing:13.860000px;}
.wsa2{word-spacing:14.220000px;}
.ws92{word-spacing:14.460000px;}
.ws1c{word-spacing:14.880000px;}
.ws9a{word-spacing:15.120000px;}
.wsb7{word-spacing:15.456000px;}
.ws17{word-spacing:15.720000px;}
.ws56{word-spacing:15.900000px;}
.ws54{word-spacing:16.080000px;}
.ws6e{word-spacing:18.960000px;}
._f{margin-left:-2823.415200px;}
._8{margin-left:-7.993200px;}
._4{margin-left:-6.069000px;}
._7{margin-left:-5.061600px;}
._0{margin-left:-3.743400px;}
._3{margin-left:-2.254200px;}
._2{margin-left:-1.030200px;}
._1{width:1.499400px;}
._5{width:2.590800px;}
._6{width:3.723000px;}
._a{width:5.250600px;}
._b{width:6.317400px;}
._c{width:7.771200px;}
._e{width:9.295800px;}
._10{width:10.350000px;}
._d{width:11.507400px;}
._12{width:13.200000px;}
._18{width:14.236800px;}
._13{width:16.020000px;}
._16{width:17.448000px;}
._1a{width:18.638400px;}
._19{width:19.839600px;}
._15{width:21.036000px;}
._17{width:22.504200px;}
._14{width:23.770200px;}
._9{width:32.015400px;}
._11{width:34.966200px;}
.fca{color:rgb(81,82,84);}
.fc8{color:rgb(237,31,36);}
.fc7{color:transparent;}
.fc6{color:rgb(220,18,147);}
.fc5{color:rgb(44,157,64);}
.fc9{color:rgb(122,124,125);}
.fc3{color:rgb(143,24,143);}
.fc2{color:rgb(17,15,13);}
.fc1{color:rgb(32,59,28);}
.fc4{color:rgb(43,50,136);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.557000px;}
.fs9{font-size:37.800000px;}
.fsb{font-size:41.468400px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:42.030000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:48.379800px;}
.fsf{font-size:53.493000px;}
.fs10{font-size:53.614200px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs12{font-size:71.207400px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:82.936800px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.fs11{font-size:125.784600px;}
.y0{bottom:0.000000px;}
.y73{bottom:2.804700px;}
.y75{bottom:2.805000px;}
.y71{bottom:2.805150px;}
.y82{bottom:3.364950px;}
.y7b{bottom:3.365100px;}
.y86{bottom:3.365250px;}
.y8e{bottom:3.365400px;}
.y8b{bottom:3.365550px;}
.y9a{bottom:3.365700px;}
.y94{bottom:3.365850px;}
.y84{bottom:3.366000px;}
.y7d{bottom:3.366150px;}
.y7f{bottom:3.366300px;}
.y9f{bottom:3.366450px;}
.y91{bottom:3.366900px;}
.ye3{bottom:3.411450px;}
.ye5{bottom:3.412350px;}
.ye1{bottom:3.412500px;}
.yd1{bottom:3.412650px;}
.ye7{bottom:3.413550px;}
.yae{bottom:3.926700px;}
.yb1{bottom:3.926850px;}
.yb4{bottom:3.927000px;}
.yab{bottom:3.928050px;}
.yd5{bottom:4.341750px;}
.yd3{bottom:4.342200px;}
.ydf{bottom:4.342350px;}
.ydd{bottom:4.342650px;}
.yd8{bottom:4.342950px;}
.yda{bottom:4.354050px;}
.yb8{bottom:6.732000px;}
.yb6{bottom:6.732300px;}
.y29{bottom:64.631700px;}
.y2a{bottom:76.648200px;}
.y28{bottom:77.231700px;}
.ybd{bottom:113.811000px;}
.yce{bottom:113.811150px;}
.y25{bottom:131.811000px;}
.ycd{bottom:131.811150px;}
.y24{bottom:149.811000px;}
.ycc{bottom:149.811150px;}
.y23{bottom:167.811000px;}
.ycb{bottom:167.811150px;}
.y22{bottom:185.811000px;}
.yca{bottom:185.811150px;}
.y4f{bottom:188.447250px;}
.y6f{bottom:199.350600px;}
.yf0{bottom:202.847250px;}
.y21{bottom:203.811000px;}
.yc9{bottom:203.811150px;}
.y6e{bottom:217.350600px;}
.y20{bottom:221.811000px;}
.yc8{bottom:221.811150px;}
.y6d{bottom:235.350600px;}
.y1f{bottom:239.811000px;}
.yc7{bottom:239.811150px;}
.y6c{bottom:253.350600px;}
.y1e{bottom:257.811000px;}
.yc6{bottom:257.811150px;}
.ybc{bottom:260.447250px;}
.y6b{bottom:271.350600px;}
.y1d{bottom:275.811000px;}
.yc5{bottom:275.811150px;}
.y68{bottom:278.447250px;}
.y1c{bottom:293.811000px;}
.yc4{bottom:293.811150px;}
.y1b{bottom:311.811000px;}
.yc3{bottom:311.811150px;}
.y5a{bottom:316.091400px;}
.y1a{bottom:329.811000px;}
.yc2{bottom:329.811150px;}
.y59{bottom:334.091400px;}
.y6a{bottom:346.055550px;}
.y19{bottom:347.811000px;}
.yc1{bottom:347.811150px;}
.y65{bottom:359.398500px;}
.y69{bottom:364.055550px;}
.y58{bottom:364.847250px;}
.y26{bottom:365.811000px;}
.yc0{bottom:365.811150px;}
.y64{bottom:377.398500px;}
.y18{bottom:383.811000px;}
.ybf{bottom:383.811150px;}
.y63{bottom:401.811000px;}
.y4e{bottom:401.811150px;}
.y62{bottom:419.811000px;}
.y4d{bottom:419.811150px;}
.ybb{bottom:428.968800px;}
.y61{bottom:437.811000px;}
.y4c{bottom:437.811150px;}
.yba{bottom:446.968800px;}
.y17{bottom:455.811000px;}
.y4b{bottom:455.811150px;}
.yb9{bottom:464.968800px;}
.y60{bottom:473.811000px;}
.y4a{bottom:473.811150px;}
.yb3{bottom:484.972500px;}
.y16{bottom:491.811000px;}
.y57{bottom:491.811150px;}
.y9c{bottom:495.004500px;}
.y9d{bottom:501.619500px;}
.yb2{bottom:503.115000px;}
.y9b{bottom:506.908500px;}
.y5f{bottom:509.811000px;}
.y56{bottom:509.811150px;}
.y49{bottom:512.447250px;}
.y99{bottom:518.988000px;}
.yb0{bottom:521.257500px;}
.y5e{bottom:527.811000px;}
.y55{bottom:527.811150px;}
.y98{bottom:531.094500px;}
.y9e{bottom:532.368000px;}
.yaf{bottom:539.400000px;}
.y97{bottom:543.199500px;}
.y5d{bottom:545.811000px;}
.y54{bottom:545.811150px;}
.y67{bottom:548.459250px;}
.y96{bottom:555.330000px;}
.yad{bottom:557.542500px;}
.ybe{bottom:559.768200px;}
.y15{bottom:563.811000px;}
.y48{bottom:563.811150px;}
.y66{bottom:566.459250px;}
.y95{bottom:567.354000px;}
.yac{bottom:575.683500px;}
.y93{bottom:579.483000px;}
.y14{bottom:581.811000px;}
.y47{bottom:581.811150px;}
.ycf{bottom:590.334600px;}
.y92{bottom:591.619500px;}
.yaa{bottom:593.826000px;}
.ya0{bottom:595.300500px;}
.y13{bottom:599.811000px;}
.y46{bottom:599.811150px;}
.yd0{bottom:610.338000px;}
.ya1{bottom:612.322500px;}
.y12{bottom:617.811000px;}
.y45{bottom:617.811150px;}
.ya2{bottom:624.417000px;}
.y90{bottom:630.010500px;}
.y5c{bottom:632.124000px;}
.y11{bottom:635.811000px;}
.y44{bottom:635.811150px;}
.yde{bottom:638.112000px;}
.yea{bottom:642.810600px;}
.ya3{bottom:647.677500px;}
.y5b{bottom:650.124000px;}
.y76{bottom:653.703000px;}
.y10{bottom:653.811000px;}
.y43{bottom:653.811150px;}
.yf{bottom:671.811000px;}
.y42{bottom:671.811150px;}
.ye{bottom:689.811000px;}
.y41{bottom:689.811150px;}
.y74{bottom:692.146500px;}
.yb7{bottom:694.083000px;}
.yd{bottom:707.811000px;}
.y40{bottom:707.811150px;}
.yd4{bottom:711.528000px;}
.y8f{bottom:713.863500px;}
.y77{bottom:719.604000px;}
.yb5{bottom:725.184000px;}
.yc{bottom:725.811000px;}
.y3f{bottom:725.811150px;}
.ye8{bottom:739.135500px;}
.yb{bottom:743.811000px;}
.y3e{bottom:743.811150px;}
.ya4{bottom:746.541000px;}
.y3d{bottom:761.811150px;}
.y8d{bottom:767.746500px;}
.y8c{bottom:779.784000px;}
.ya{bottom:779.811000px;}
.yf5{bottom:780.491400px;}
.yd2{bottom:784.944000px;}
.y8a{bottom:791.875500px;}
.y3c{bottom:797.811000px;}
.y72{bottom:806.535000px;}
.yf4{bottom:814.847250px;}
.yef{bottom:815.811000px;}
.y3b{bottom:830.891400px;}
.y53{bottom:832.847250px;}
.yee{bottom:833.811000px;}
.y9{bottom:834.304650px;}
.y89{bottom:839.502000px;}
.y78{bottom:844.249500px;}
.yed{bottom:851.811000px;}
.y3a{bottom:852.491400px;}
.y52{bottom:854.447250px;}
.yd6{bottom:858.360000px;}
.yec{bottom:869.811000px;}
.ya5{bottom:879.708000px;}
.y8{bottom:882.068400px;}
.y88{bottom:886.461000px;}
.y39{bottom:886.847250px;}
.yeb{bottom:887.811000px;}
.y51{bottom:905.811000px;}
.y7{bottom:909.067800px;}
.y50{bottom:923.811000px;}
.y70{bottom:926.826000px;}
.ydb{bottom:931.776000px;}
.y6{bottom:936.067050px;}
.y38{bottom:941.811000px;}
.ye6{bottom:946.368000px;}
.y79{bottom:951.174000px;}
.y5{bottom:954.067050px;}
.ya6{bottom:955.107000px;}
.y37{bottom:959.811000px;}
.y4{bottom:972.067050px;}
.y36{bottom:977.811000px;}
.y87{bottom:986.545500px;}
.y35{bottom:995.811000px;}
.ydc{bottom:1005.192000px;}
.y3{bottom:1008.065550px;}
.y34{bottom:1013.811000px;}
.ye0{bottom:1024.374000px;}
.ya7{bottom:1028.263500px;}
.y33{bottom:1031.811000px;}
.ye2{bottom:1043.356500px;}
.y2{bottom:1047.664050px;}
.y32{bottom:1049.811000px;}
.ye9{bottom:1054.323150px;}
.y85{bottom:1058.421000px;}
.yf1{bottom:1066.847250px;}
.y31{bottom:1067.811000px;}
.y83{bottom:1070.490000px;}
.y1{bottom:1078.264200px;}
.yd7{bottom:1078.608000px;}
.y81{bottom:1082.559000px;}
.y30{bottom:1085.811000px;}
.y2f{bottom:1103.811000px;}
.y80{bottom:1106.392500px;}
.ye4{bottom:1106.967000px;}
.ya8{bottom:1108.470000px;}
.y7e{bottom:1118.518500px;}
.yf3{bottom:1120.374900px;}
.y2e{bottom:1121.811000px;}
.y7a{bottom:1135.983000px;}
.y2d{bottom:1139.811000px;}
.yd9{bottom:1152.013500px;}
.y7c{bottom:1152.709500px;}
.yf2{bottom:1154.730900px;}
.ya9{bottom:1157.029500px;}
.y2c{bottom:1157.811000px;}
.y2b{bottom:1193.653500px;}
.y27{bottom:1193.816550px;}
.h15{height:10.218000px;}
.h13{height:10.219500px;}
.h16{height:12.262500px;}
.h18{height:12.264000px;}
.h26{height:12.427500px;}
.h20{height:12.429000px;}
.h1b{height:14.305500px;}
.h19{height:14.307000px;}
.h22{height:15.817500px;}
.h24{height:15.855000px;}
.h1c{height:24.520500px;}
.h1e{height:24.525000px;}
.h14{height:25.175314px;}
.hd{height:30.013200px;}
.h17{height:30.210377px;}
.h21{height:30.619512px;}
.h5{height:33.328125px;}
.h4{height:33.348000px;}
.h29{height:33.351562px;}
.h1a{height:35.245440px;}
.h6{height:35.730000px;}
.h7{height:37.520508px;}
.h23{height:38.970486px;}
.h25{height:39.058782px;}
.h8{height:39.258000px;}
.h12{height:40.031250px;}
.h11{height:40.664062px;}
.hb{height:41.689453px;}
.ha{height:45.035156px;}
.h2b{height:48.761719px;}
.h2a{height:48.796875px;}
.hf{height:50.027344px;}
.hc{height:50.039062px;}
.h28{height:50.971703px;}
.h3{height:55.642465px;}
.h9{height:58.365234px;}
.h1d{height:59.367846px;}
.h10{height:60.046875px;}
.h1f{height:60.420755px;}
.he{height:70.054688px;}
.h2{height:70.872070px;}
.h27{height:90.039172px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w30{width:20.449500px;}
.w27{width:20.451000px;}
.w8{width:20.739000px;}
.w2{width:21.133500px;}
.w11{width:25.174500px;}
.w1e{width:25.535550px;}
.w4{width:25.938000px;}
.w3{width:25.939500px;}
.w18{width:26.130000px;}
.w1a{width:27.649050px;}
.wc{width:28.230000px;}
.we{width:28.231500px;}
.w1f{width:28.919550px;}
.w20{width:29.587050px;}
.w5{width:39.169500px;}
.wb{width:42.762000px;}
.w17{width:43.194000px;}
.w13{width:43.204500px;}
.w9{width:43.387500px;}
.w12{width:43.771500px;}
.w19{width:43.915500px;}
.wf{width:43.969500px;}
.w6{width:44.353500px;}
.w15{width:44.499000px;}
.w7{width:45.502500px;}
.wd{width:45.517500px;}
.wa{width:46.074000px;}
.w10{width:46.083000px;}
.w14{width:46.084500px;}
.w16{width:46.668000px;}
.w24{width:55.106550px;}
.w23{width:58.141050px;}
.w1d{width:62.815500px;}
.w22{width:63.865050px;}
.w21{width:73.283550px;}
.w1b{width:91.055550px;}
.w1c{width:91.056000px;}
.w26{width:92.239500px;}
.w2c{width:165.616500px;}
.w2e{width:168.000000px;}
.w2b{width:168.001500px;}
.w25{width:180.771000px;}
.w2d{width:182.106000px;}
.w28{width:194.022000px;}
.w29{width:200.715000px;}
.w2f{width:202.513500px;}
.w2a{width:216.322500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x2{left:93.543300px;}
.xa{left:110.551200px;}
.x32{left:116.688150px;}
.x33{left:120.304500px;}
.x36{left:125.629950px;}
.xb{left:127.558950px;}
.x31{left:147.604500px;}
.x30{left:157.579500px;}
.x39{left:181.453500px;}
.x2f{left:191.514000px;}
.x34{left:221.931000px;}
.x2e{left:277.542000px;}
.x3{left:282.277950px;}
.x16{left:287.301000px;}
.x43{left:304.644000px;}
.x41{left:317.196000px;}
.x15{left:318.492000px;}
.x40{left:329.730000px;}
.x4{left:332.694000px;}
.x3b{left:343.872000px;}
.x3c{left:347.139000px;}
.x2d{left:354.831000px;}
.x17{left:359.617500px;}
.x42{left:364.057500px;}
.x37{left:365.844000px;}
.x35{left:369.226500px;}
.x3f{left:384.570000px;}
.x3d{left:397.426500px;}
.x38{left:409.615500px;}
.x3a{left:413.337000px;}
.x14{left:422.556000px;}
.x3e{left:429.192000px;}
.x9{left:440.078700px;}
.x5{left:441.732300px;}
.x10{left:457.086600px;}
.x18{left:468.082500px;}
.xc{left:474.094350px;}
.x2c{left:480.240000px;}
.xd{left:491.102250px;}
.x19{left:493.185000px;}
.x6{left:495.562800px;}
.x13{left:538.450500px;}
.x2b{left:546.519000px;}
.x11{left:552.151500px;}
.x2a{left:579.087000px;}
.x1a{left:590.886000px;}
.x12{left:597.726000px;}
.x29{left:603.931500px;}
.x45{left:614.707200px;}
.x7{left:622.970700px;}
.x28{left:624.384000px;}
.x1b{left:631.971000px;}
.x27{left:641.908500px;}
.x44{left:643.794150px;}
.x1c{left:648.430500px;}
.x26{left:657.102000px;}
.x1d{left:662.922000px;}
.x25{left:670.690500px;}
.x8{left:678.234000px;}
.x24{left:682.851000px;}
.xe{left:708.979500px;}
.x23{left:713.986500px;}
.x1e{left:723.249000px;}
.x22{left:755.086500px;}
.xf{left:762.922650px;}
.x21{left:766.461000px;}
.x20{left:768.070500px;}
.x1f{left:769.156500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls18{letter-spacing:-4.416000pt;}
.ls2{letter-spacing:-2.901333pt;}
.ls6{letter-spacing:-1.104000pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.170667pt;}
.ls8{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.008000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.422400pt;}
.lsc{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.427200pt;}
.ls16{letter-spacing:0.906667pt;}
.ls13{letter-spacing:1.394133pt;}
.ls1{letter-spacing:1.465600pt;}
.lse{letter-spacing:1.679467pt;}
.ls0{letter-spacing:2.049067pt;}
.ls1b{letter-spacing:4.490667pt;}
.ls10{letter-spacing:5.449067pt;}
.ls11{letter-spacing:8.233600pt;}
.lsb{letter-spacing:8.504000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws61{word-spacing:-14.240000pt;}
.ws29{word-spacing:-13.760000pt;}
.ws60{word-spacing:-13.600000pt;}
.ws26{word-spacing:-13.546667pt;}
.ws9{word-spacing:-13.333333pt;}
.ws74{word-spacing:-12.266667pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.856000pt;}
.ws46{word-spacing:-11.616000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws8c{word-spacing:-11.424000pt;}
.ws1{word-spacing:-10.752000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws9d{word-spacing:-10.496000pt;}
.ws9e{word-spacing:-10.197333pt;}
.ws7e{word-spacing:-7.584000pt;}
.ws73{word-spacing:-4.853333pt;}
.ws71{word-spacing:-4.213333pt;}
.ws80{word-spacing:-2.928000pt;}
.ws6c{word-spacing:-2.613333pt;}
.wsc{word-spacing:-2.368000pt;}
.ws18{word-spacing:-2.346667pt;}
.ws68{word-spacing:-2.293333pt;}
.ws51{word-spacing:-2.186667pt;}
.ws81{word-spacing:-2.160000pt;}
.ws7f{word-spacing:-2.064000pt;}
.ws79{word-spacing:-2.026667pt;}
.wsa9{word-spacing:-1.920000pt;}
.ws85{word-spacing:-1.824000pt;}
.ws1a{word-spacing:-1.813333pt;}
.ws67{word-spacing:-1.760000pt;}
.ws97{word-spacing:-1.706667pt;}
.ws62{word-spacing:-1.632000pt;}
.ws83{word-spacing:-1.600000pt;}
.ws9c{word-spacing:-1.584000pt;}
.ws8b{word-spacing:-1.546667pt;}
.ws94{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.344000pt;}
.wsae{word-spacing:-1.322667pt;}
.ws1e{word-spacing:-1.226667pt;}
.ws15{word-spacing:-1.152000pt;}
.ws58{word-spacing:-1.066667pt;}
.ws6a{word-spacing:-1.013333pt;}
.ws72{word-spacing:-0.906667pt;}
.ws47{word-spacing:-0.864000pt;}
.wsa8{word-spacing:-0.800000pt;}
.wsb4{word-spacing:-0.725333pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws8a{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.624000pt;}
.ws76{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.528000pt;}
.ws82{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.426667pt;}
.ws35{word-spacing:-0.320000pt;}
.ws64{word-spacing:-0.266667pt;}
.ws2a{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.181333pt;}
.wsaf{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.053333pt;}
.ws28{word-spacing:-0.037333pt;}
.ws0{word-spacing:-0.037312pt;}
.ws84{word-spacing:-0.036861pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.144000pt;}
.ws78{word-spacing:0.160000pt;}
.wsb1{word-spacing:0.170667pt;}
.wsf{word-spacing:0.224000pt;}
.ws7c{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.wsaa{word-spacing:0.373333pt;}
.ws48{word-spacing:0.384000pt;}
.ws57{word-spacing:0.426667pt;}
.wsb3{word-spacing:0.469333pt;}
.ws23{word-spacing:0.480000pt;}
.ws5{word-spacing:0.576000pt;}
.ws39{word-spacing:0.586667pt;}
.wse{word-spacing:0.624000pt;}
.ws8d{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.746667pt;}
.ws50{word-spacing:0.960000pt;}
.wsa7{word-spacing:1.013333pt;}
.ws6{word-spacing:1.056000pt;}
.ws7b{word-spacing:1.066667pt;}
.wsac{word-spacing:1.120000pt;}
.ws24{word-spacing:1.142400pt;}
.wsb9{word-spacing:1.152000pt;}
.ws98{word-spacing:1.173333pt;}
.ws42{word-spacing:1.280000pt;}
.ws25{word-spacing:1.310400pt;}
.ws53{word-spacing:1.386667pt;}
.ws5b{word-spacing:1.392000pt;}
.ws33{word-spacing:1.440000pt;}
.ws13{word-spacing:1.632000pt;}
.ws1d{word-spacing:1.653333pt;}
.ws2f{word-spacing:1.706667pt;}
.ws63{word-spacing:1.760000pt;}
.ws59{word-spacing:1.813333pt;}
.ws34{word-spacing:1.920000pt;}
.ws3c{word-spacing:2.026667pt;}
.ws6b{word-spacing:2.133333pt;}
.ws11{word-spacing:2.208000pt;}
.wsbf{word-spacing:2.293333pt;}
.ws5e{word-spacing:2.346667pt;}
.ws99{word-spacing:2.453333pt;}
.ws5c{word-spacing:2.506667pt;}
.ws22{word-spacing:2.560000pt;}
.ws12{word-spacing:2.592000pt;}
.ws7d{word-spacing:2.666667pt;}
.ws5a{word-spacing:2.720000pt;}
.ws6f{word-spacing:2.773333pt;}
.wsa5{word-spacing:2.880000pt;}
.wsa3{word-spacing:2.986667pt;}
.ws8e{word-spacing:3.200000pt;}
.ws87{word-spacing:3.253333pt;}
.ws21{word-spacing:3.306667pt;}
.wsb5{word-spacing:3.328000pt;}
.ws30{word-spacing:3.360000pt;}
.ws7a{word-spacing:3.413333pt;}
.wsad{word-spacing:3.466667pt;}
.wsa4{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.573333pt;}
.wsb2{word-spacing:3.584000pt;}
.ws3b{word-spacing:3.626667pt;}
.ws52{word-spacing:3.893333pt;}
.ws44{word-spacing:3.946667pt;}
.wsa0{word-spacing:4.000000pt;}
.ws9b{word-spacing:4.053333pt;}
.wsb6{word-spacing:4.437333pt;}
.wsbd{word-spacing:4.480000pt;}
.ws91{word-spacing:4.586667pt;}
.ws93{word-spacing:4.693333pt;}
.ws66{word-spacing:4.746667pt;}
.ws19{word-spacing:4.800000pt;}
.ws49{word-spacing:4.960000pt;}
.ws4d{word-spacing:5.013333pt;}
.ws32{word-spacing:5.120000pt;}
.ws1b{word-spacing:5.440000pt;}
.ws96{word-spacing:5.653333pt;}
.wsa6{word-spacing:5.706667pt;}
.ws20{word-spacing:5.813333pt;}
.ws3e{word-spacing:5.866667pt;}
.ws9f{word-spacing:5.920000pt;}
.ws86{word-spacing:6.026667pt;}
.ws69{word-spacing:6.133333pt;}
.ws3d{word-spacing:6.186667pt;}
.ws3f{word-spacing:6.240000pt;}
.ws41{word-spacing:6.506667pt;}
.ws6d{word-spacing:6.560000pt;}
.wsc0{word-spacing:6.613333pt;}
.ws5f{word-spacing:6.773333pt;}
.ws88{word-spacing:6.880000pt;}
.wsb8{word-spacing:6.954667pt;}
.ws2d{word-spacing:7.200000pt;}
.ws38{word-spacing:7.253333pt;}
.ws2c{word-spacing:7.520000pt;}
.ws4f{word-spacing:7.573333pt;}
.ws2b{word-spacing:7.680000pt;}
.ws36{word-spacing:7.840000pt;}
.wsbb{word-spacing:7.893333pt;}
.ws90{word-spacing:8.106667pt;}
.ws4a{word-spacing:8.213333pt;}
.wsab{word-spacing:8.320000pt;}
.ws77{word-spacing:8.480000pt;}
.ws40{word-spacing:8.533333pt;}
.ws31{word-spacing:8.640000pt;}
.ws4c{word-spacing:8.693333pt;}
.ws3a{word-spacing:8.800000pt;}
.ws65{word-spacing:8.853333pt;}
.ws95{word-spacing:8.906667pt;}
.ws70{word-spacing:8.960000pt;}
.wsa1{word-spacing:9.280000pt;}
.ws45{word-spacing:10.080000pt;}
.wsb0{word-spacing:10.112000pt;}
.ws4b{word-spacing:10.133333pt;}
.ws37{word-spacing:10.186667pt;}
.wsbc{word-spacing:10.346667pt;}
.ws75{word-spacing:10.720000pt;}
.wsba{word-spacing:10.986667pt;}
.ws89{word-spacing:11.040000pt;}
.ws55{word-spacing:11.253333pt;}
.wsbe{word-spacing:11.786667pt;}
.ws2e{word-spacing:12.320000pt;}
.wsa2{word-spacing:12.640000pt;}
.ws92{word-spacing:12.853333pt;}
.ws1c{word-spacing:13.226667pt;}
.ws9a{word-spacing:13.440000pt;}
.wsb7{word-spacing:13.738667pt;}
.ws17{word-spacing:13.973333pt;}
.ws56{word-spacing:14.133333pt;}
.ws54{word-spacing:14.293333pt;}
.ws6e{word-spacing:16.853333pt;}
._f{margin-left:-2509.702400pt;}
._8{margin-left:-7.105067pt;}
._4{margin-left:-5.394667pt;}
._7{margin-left:-4.499200pt;}
._0{margin-left:-3.327467pt;}
._3{margin-left:-2.003733pt;}
._2{margin-left:-0.915733pt;}
._1{width:1.332800pt;}
._5{width:2.302933pt;}
._6{width:3.309333pt;}
._a{width:4.667200pt;}
._b{width:5.615467pt;}
._c{width:6.907733pt;}
._e{width:8.262933pt;}
._10{width:9.200000pt;}
._d{width:10.228800pt;}
._12{width:11.733333pt;}
._18{width:12.654933pt;}
._13{width:14.240000pt;}
._16{width:15.509333pt;}
._1a{width:16.567467pt;}
._19{width:17.635200pt;}
._15{width:18.698667pt;}
._17{width:20.003733pt;}
._14{width:21.129067pt;}
._9{width:28.458133pt;}
._11{width:31.081067pt;}
.fsa{font-size:30.717333pt;}
.fs9{font-size:33.600000pt;}
.fsb{font-size:36.860800pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:37.360000pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:43.004267pt;}
.fsf{font-size:47.549333pt;}
.fs10{font-size:47.657067pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs12{font-size:63.295467pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:73.721600pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.fs11{font-size:111.808533pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:2.493067pt;}
.y75{bottom:2.493333pt;}
.y71{bottom:2.493467pt;}
.y82{bottom:2.991067pt;}
.y7b{bottom:2.991200pt;}
.y86{bottom:2.991333pt;}
.y8e{bottom:2.991467pt;}
.y8b{bottom:2.991600pt;}
.y9a{bottom:2.991733pt;}
.y94{bottom:2.991867pt;}
.y84{bottom:2.992000pt;}
.y7d{bottom:2.992133pt;}
.y7f{bottom:2.992267pt;}
.y9f{bottom:2.992400pt;}
.y91{bottom:2.992800pt;}
.ye3{bottom:3.032400pt;}
.ye5{bottom:3.033200pt;}
.ye1{bottom:3.033333pt;}
.yd1{bottom:3.033467pt;}
.ye7{bottom:3.034267pt;}
.yae{bottom:3.490400pt;}
.yb1{bottom:3.490533pt;}
.yb4{bottom:3.490667pt;}
.yab{bottom:3.491600pt;}
.yd5{bottom:3.859333pt;}
.yd3{bottom:3.859733pt;}
.ydf{bottom:3.859867pt;}
.ydd{bottom:3.860133pt;}
.yd8{bottom:3.860400pt;}
.yda{bottom:3.870267pt;}
.yb8{bottom:5.984000pt;}
.yb6{bottom:5.984267pt;}
.y29{bottom:57.450400pt;}
.y2a{bottom:68.131733pt;}
.y28{bottom:68.650400pt;}
.ybd{bottom:101.165333pt;}
.yce{bottom:101.165467pt;}
.y25{bottom:117.165333pt;}
.ycd{bottom:117.165467pt;}
.y24{bottom:133.165333pt;}
.ycc{bottom:133.165467pt;}
.y23{bottom:149.165333pt;}
.ycb{bottom:149.165467pt;}
.y22{bottom:165.165333pt;}
.yca{bottom:165.165467pt;}
.y4f{bottom:167.508667pt;}
.y6f{bottom:177.200533pt;}
.yf0{bottom:180.308667pt;}
.y21{bottom:181.165333pt;}
.yc9{bottom:181.165467pt;}
.y6e{bottom:193.200533pt;}
.y20{bottom:197.165333pt;}
.yc8{bottom:197.165467pt;}
.y6d{bottom:209.200533pt;}
.y1f{bottom:213.165333pt;}
.yc7{bottom:213.165467pt;}
.y6c{bottom:225.200533pt;}
.y1e{bottom:229.165333pt;}
.yc6{bottom:229.165467pt;}
.ybc{bottom:231.508667pt;}
.y6b{bottom:241.200533pt;}
.y1d{bottom:245.165333pt;}
.yc5{bottom:245.165467pt;}
.y68{bottom:247.508667pt;}
.y1c{bottom:261.165333pt;}
.yc4{bottom:261.165467pt;}
.y1b{bottom:277.165333pt;}
.yc3{bottom:277.165467pt;}
.y5a{bottom:280.970133pt;}
.y1a{bottom:293.165333pt;}
.yc2{bottom:293.165467pt;}
.y59{bottom:296.970133pt;}
.y6a{bottom:307.604933pt;}
.y19{bottom:309.165333pt;}
.yc1{bottom:309.165467pt;}
.y65{bottom:319.465333pt;}
.y69{bottom:323.604933pt;}
.y58{bottom:324.308667pt;}
.y26{bottom:325.165333pt;}
.yc0{bottom:325.165467pt;}
.y64{bottom:335.465333pt;}
.y18{bottom:341.165333pt;}
.ybf{bottom:341.165467pt;}
.y63{bottom:357.165333pt;}
.y4e{bottom:357.165467pt;}
.y62{bottom:373.165333pt;}
.y4d{bottom:373.165467pt;}
.ybb{bottom:381.305600pt;}
.y61{bottom:389.165333pt;}
.y4c{bottom:389.165467pt;}
.yba{bottom:397.305600pt;}
.y17{bottom:405.165333pt;}
.y4b{bottom:405.165467pt;}
.yb9{bottom:413.305600pt;}
.y60{bottom:421.165333pt;}
.y4a{bottom:421.165467pt;}
.yb3{bottom:431.086667pt;}
.y16{bottom:437.165333pt;}
.y57{bottom:437.165467pt;}
.y9c{bottom:440.004000pt;}
.y9d{bottom:445.884000pt;}
.yb2{bottom:447.213333pt;}
.y9b{bottom:450.585333pt;}
.y5f{bottom:453.165333pt;}
.y56{bottom:453.165467pt;}
.y49{bottom:455.508667pt;}
.y99{bottom:461.322667pt;}
.yb0{bottom:463.340000pt;}
.y5e{bottom:469.165333pt;}
.y55{bottom:469.165467pt;}
.y98{bottom:472.084000pt;}
.y9e{bottom:473.216000pt;}
.yaf{bottom:479.466667pt;}
.y97{bottom:482.844000pt;}
.y5d{bottom:485.165333pt;}
.y54{bottom:485.165467pt;}
.y67{bottom:487.519333pt;}
.y96{bottom:493.626667pt;}
.yad{bottom:495.593333pt;}
.ybe{bottom:497.571733pt;}
.y15{bottom:501.165333pt;}
.y48{bottom:501.165467pt;}
.y66{bottom:503.519333pt;}
.y95{bottom:504.314667pt;}
.yac{bottom:511.718667pt;}
.y93{bottom:515.096000pt;}
.y14{bottom:517.165333pt;}
.y47{bottom:517.165467pt;}
.ycf{bottom:524.741867pt;}
.y92{bottom:525.884000pt;}
.yaa{bottom:527.845333pt;}
.ya0{bottom:529.156000pt;}
.y13{bottom:533.165333pt;}
.y46{bottom:533.165467pt;}
.yd0{bottom:542.522667pt;}
.ya1{bottom:544.286667pt;}
.y12{bottom:549.165333pt;}
.y45{bottom:549.165467pt;}
.ya2{bottom:555.037333pt;}
.y90{bottom:560.009333pt;}
.y5c{bottom:561.888000pt;}
.y11{bottom:565.165333pt;}
.y44{bottom:565.165467pt;}
.yde{bottom:567.210667pt;}
.yea{bottom:571.387200pt;}
.ya3{bottom:575.713333pt;}
.y5b{bottom:577.888000pt;}
.y76{bottom:581.069333pt;}
.y10{bottom:581.165333pt;}
.y43{bottom:581.165467pt;}
.yf{bottom:597.165333pt;}
.y42{bottom:597.165467pt;}
.ye{bottom:613.165333pt;}
.y41{bottom:613.165467pt;}
.y74{bottom:615.241333pt;}
.yb7{bottom:616.962667pt;}
.yd{bottom:629.165333pt;}
.y40{bottom:629.165467pt;}
.yd4{bottom:632.469333pt;}
.y8f{bottom:634.545333pt;}
.y77{bottom:639.648000pt;}
.yb5{bottom:644.608000pt;}
.yc{bottom:645.165333pt;}
.y3f{bottom:645.165467pt;}
.ye8{bottom:657.009333pt;}
.yb{bottom:661.165333pt;}
.y3e{bottom:661.165467pt;}
.ya4{bottom:663.592000pt;}
.y3d{bottom:677.165467pt;}
.y8d{bottom:682.441333pt;}
.y8c{bottom:693.141333pt;}
.ya{bottom:693.165333pt;}
.yf5{bottom:693.770133pt;}
.yd2{bottom:697.728000pt;}
.y8a{bottom:703.889333pt;}
.y3c{bottom:709.165333pt;}
.y72{bottom:716.920000pt;}
.yf4{bottom:724.308667pt;}
.yef{bottom:725.165333pt;}
.y3b{bottom:738.570133pt;}
.y53{bottom:740.308667pt;}
.yee{bottom:741.165333pt;}
.y9{bottom:741.604133pt;}
.y89{bottom:746.224000pt;}
.y78{bottom:750.444000pt;}
.yed{bottom:757.165333pt;}
.y3a{bottom:757.770133pt;}
.y52{bottom:759.508667pt;}
.yd6{bottom:762.986667pt;}
.yec{bottom:773.165333pt;}
.ya5{bottom:781.962667pt;}
.y8{bottom:784.060800pt;}
.y88{bottom:787.965333pt;}
.y39{bottom:788.308667pt;}
.yeb{bottom:789.165333pt;}
.y51{bottom:805.165333pt;}
.y7{bottom:808.060267pt;}
.y50{bottom:821.165333pt;}
.y70{bottom:823.845333pt;}
.ydb{bottom:828.245333pt;}
.y6{bottom:832.059600pt;}
.y38{bottom:837.165333pt;}
.ye6{bottom:841.216000pt;}
.y79{bottom:845.488000pt;}
.y5{bottom:848.059600pt;}
.ya6{bottom:848.984000pt;}
.y37{bottom:853.165333pt;}
.y4{bottom:864.059600pt;}
.y36{bottom:869.165333pt;}
.y87{bottom:876.929333pt;}
.y35{bottom:885.165333pt;}
.ydc{bottom:893.504000pt;}
.y3{bottom:896.058267pt;}
.y34{bottom:901.165333pt;}
.ye0{bottom:910.554667pt;}
.ya7{bottom:914.012000pt;}
.y33{bottom:917.165333pt;}
.ye2{bottom:927.428000pt;}
.y2{bottom:931.256933pt;}
.y32{bottom:933.165333pt;}
.ye9{bottom:937.176133pt;}
.y85{bottom:940.818667pt;}
.yf1{bottom:948.308667pt;}
.y31{bottom:949.165333pt;}
.y83{bottom:951.546667pt;}
.y1{bottom:958.457067pt;}
.yd7{bottom:958.762667pt;}
.y81{bottom:962.274667pt;}
.y30{bottom:965.165333pt;}
.y2f{bottom:981.165333pt;}
.y80{bottom:983.460000pt;}
.ye4{bottom:983.970667pt;}
.ya8{bottom:985.306667pt;}
.y7e{bottom:994.238667pt;}
.yf3{bottom:995.888800pt;}
.y2e{bottom:997.165333pt;}
.y7a{bottom:1009.762667pt;}
.y2d{bottom:1013.165333pt;}
.yd9{bottom:1024.012000pt;}
.y7c{bottom:1024.630667pt;}
.yf2{bottom:1026.427467pt;}
.ya9{bottom:1028.470667pt;}
.y2c{bottom:1029.165333pt;}
.y2b{bottom:1061.025333pt;}
.y27{bottom:1061.170267pt;}
.h15{height:9.082667pt;}
.h13{height:9.084000pt;}
.h16{height:10.900000pt;}
.h18{height:10.901333pt;}
.h26{height:11.046667pt;}
.h20{height:11.048000pt;}
.h1b{height:12.716000pt;}
.h19{height:12.717333pt;}
.h22{height:14.060000pt;}
.h24{height:14.093333pt;}
.h1c{height:21.796000pt;}
.h1e{height:21.800000pt;}
.h14{height:22.378057pt;}
.hd{height:26.678400pt;}
.h17{height:26.853669pt;}
.h21{height:27.217344pt;}
.h5{height:29.625000pt;}
.h4{height:29.642667pt;}
.h29{height:29.645833pt;}
.h1a{height:31.329280pt;}
.h6{height:31.760000pt;}
.h7{height:33.351562pt;}
.h23{height:34.640432pt;}
.h25{height:34.718918pt;}
.h8{height:34.896000pt;}
.h12{height:35.583333pt;}
.h11{height:36.145833pt;}
.hb{height:37.057292pt;}
.ha{height:40.031250pt;}
.h2b{height:43.343750pt;}
.h2a{height:43.375000pt;}
.hf{height:44.468750pt;}
.hc{height:44.479167pt;}
.h28{height:45.308181pt;}
.h3{height:49.459969pt;}
.h9{height:51.880208pt;}
.h1d{height:52.771419pt;}
.h10{height:53.375000pt;}
.h1f{height:53.707337pt;}
.he{height:62.270833pt;}
.h2{height:62.997396pt;}
.h27{height:80.034819pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w30{width:18.177333pt;}
.w27{width:18.178667pt;}
.w8{width:18.434667pt;}
.w2{width:18.785333pt;}
.w11{width:22.377333pt;}
.w1e{width:22.698267pt;}
.w4{width:23.056000pt;}
.w3{width:23.057333pt;}
.w18{width:23.226667pt;}
.w1a{width:24.576933pt;}
.wc{width:25.093333pt;}
.we{width:25.094667pt;}
.w1f{width:25.706267pt;}
.w20{width:26.299600pt;}
.w5{width:34.817333pt;}
.wb{width:38.010667pt;}
.w17{width:38.394667pt;}
.w13{width:38.404000pt;}
.w9{width:38.566667pt;}
.w12{width:38.908000pt;}
.w19{width:39.036000pt;}
.wf{width:39.084000pt;}
.w6{width:39.425333pt;}
.w15{width:39.554667pt;}
.w7{width:40.446667pt;}
.wd{width:40.460000pt;}
.wa{width:40.954667pt;}
.w10{width:40.962667pt;}
.w14{width:40.964000pt;}
.w16{width:41.482667pt;}
.w24{width:48.983600pt;}
.w23{width:51.680933pt;}
.w1d{width:55.836000pt;}
.w22{width:56.768933pt;}
.w21{width:65.140933pt;}
.w1b{width:80.938267pt;}
.w1c{width:80.938667pt;}
.w26{width:81.990667pt;}
.w2c{width:147.214667pt;}
.w2e{width:149.333333pt;}
.w2b{width:149.334667pt;}
.w25{width:160.685333pt;}
.w2d{width:161.872000pt;}
.w28{width:172.464000pt;}
.w29{width:178.413333pt;}
.w2f{width:180.012000pt;}
.w2a{width:192.286667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x2{left:83.149600pt;}
.xa{left:98.267733pt;}
.x32{left:103.722800pt;}
.x33{left:106.937333pt;}
.x36{left:111.671067pt;}
.xb{left:113.385733pt;}
.x31{left:131.204000pt;}
.x30{left:140.070667pt;}
.x39{left:161.292000pt;}
.x2f{left:170.234667pt;}
.x34{left:197.272000pt;}
.x2e{left:246.704000pt;}
.x3{left:250.913733pt;}
.x16{left:255.378667pt;}
.x43{left:270.794667pt;}
.x41{left:281.952000pt;}
.x15{left:283.104000pt;}
.x40{left:293.093333pt;}
.x4{left:295.728000pt;}
.x3b{left:305.664000pt;}
.x3c{left:308.568000pt;}
.x2d{left:315.405333pt;}
.x17{left:319.660000pt;}
.x42{left:323.606667pt;}
.x37{left:325.194667pt;}
.x35{left:328.201333pt;}
.x3f{left:341.840000pt;}
.x3d{left:353.268000pt;}
.x38{left:364.102667pt;}
.x3a{left:367.410667pt;}
.x14{left:375.605333pt;}
.x3e{left:381.504000pt;}
.x9{left:391.181067pt;}
.x5{left:392.650933pt;}
.x10{left:406.299200pt;}
.x18{left:416.073333pt;}
.xc{left:421.417200pt;}
.x2c{left:426.880000pt;}
.xd{left:436.535333pt;}
.x19{left:438.386667pt;}
.x6{left:440.500267pt;}
.x13{left:478.622667pt;}
.x2b{left:485.794667pt;}
.x11{left:490.801333pt;}
.x2a{left:514.744000pt;}
.x1a{left:525.232000pt;}
.x12{left:531.312000pt;}
.x29{left:536.828000pt;}
.x45{left:546.406400pt;}
.x7{left:553.751733pt;}
.x28{left:555.008000pt;}
.x1b{left:561.752000pt;}
.x27{left:570.585333pt;}
.x44{left:572.261467pt;}
.x1c{left:576.382667pt;}
.x26{left:584.090667pt;}
.x1d{left:589.264000pt;}
.x25{left:596.169333pt;}
.x8{left:602.874667pt;}
.x24{left:606.978667pt;}
.xe{left:630.204000pt;}
.x23{left:634.654667pt;}
.x1e{left:642.888000pt;}
.x22{left:671.188000pt;}
.xf{left:678.153467pt;}
.x21{left:681.298667pt;}
.x20{left:682.729333pt;}
.x1f{left:683.694667pt;}
}




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