
    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_8e29da6a09921a8e4ab3bc1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_421bd73a63cd131e769da97f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_5ebaec63d5729a56997bf12b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_70510dfb3fa04890a8565618.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_1ee1cb8a7065fdde0673d882.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3108921a184b5aaad19d22de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870000;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_97fced90596c6e5a2760083d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_c742972e12fb5388f15f41c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_99bc287a8d3db9f3264f66fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.723000;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_be39fd02358ec22c6ca717ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;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_ca40040e3e849123cbdf8ea6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8fc1c3cfaa6cab0cdad235f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_2e64c77c28bc7daa62ae1590.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b3f11eb1396aa75ee04aa3f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_9624abc99ed1d6a703a2a3f2.woff2')format("woff");}.fff{font-family:fff;line-height:0.482000;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_b3f11eb1396aa75ee04aa3f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;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_8e6233ff0ec827652b69e225.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.497000;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_322532e21fe54b303da5b99b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fcbaa28efa7d306833b873ed.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.647000;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_573e5d42c10271dc1f7fc58b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ea9a0611a8341f19f77405d1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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_cbe47eef4cab2167f5e76420.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.697000;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_37a4e34a18b6aff1d26fc116.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.656000;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_b5ea9fd07c25ffc6e80f5b56.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6e16f7340017a6c81d819cbb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1854cf9fa1cb9b0d20958853.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.727000;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_f13ea94bf90b193fa22c48e7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_18609bb662e7340b2d36f71a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6a8b451cc61824edd0d66948.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.441000;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_2d9c3d7b62ac295166840165.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.719000;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_35140a3a177dc0ec27459dbd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.698000;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_a7053e8d4ad2797ce8c31faa.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.247000;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_0945d2024eb910eb30a31690.woff2')format("woff");}.ff21{font-family:ff21;line-height:2.399000;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_045c9f0889434ad49036d42d.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_764172befa94c62da1c13f07.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.451000;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_e6f1c7ffc838326f160de833.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.450000;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_f68537c5dfc5d5d4e1348897.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.649000;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_8a6c109d1def0f02ebe38e15.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.947000;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_bfff3dd166cb2ee9b75ca733.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.429000;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_0fbc1e15b2d7b7a59bc6e1ee.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910000;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.243919,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.243919,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.243919,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256232,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);}
.v3{vertical-align:-26.034000px;}
.v7{vertical-align:-8.970000px;}
.v5{vertical-align:-7.800842px;}
.v6{vertical-align:-5.976000px;}
.va{vertical-align:-4.953096px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:15.108000px;}
.v2{vertical-align:18.132000px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:26.028000px;}
.vc{vertical-align:27.468072px;}
.v9{vertical-align:32.040000px;}
.v8{vertical-align:40.440000px;}
.vb{vertical-align:68.548464px;}
.vd{vertical-align:95.524704px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000031px;}
.ls38{letter-spacing:0.000538px;}
.ls18{letter-spacing:0.000557px;}
.ls31{letter-spacing:0.000762px;}
.ls1d{letter-spacing:0.000921px;}
.ls28{letter-spacing:0.000952px;}
.ls2c{letter-spacing:0.001218px;}
.ls29{letter-spacing:0.002215px;}
.ls22{letter-spacing:0.002685px;}
.ls2b{letter-spacing:0.002707px;}
.ls37{letter-spacing:0.003030px;}
.lsf{letter-spacing:0.003414px;}
.ls2a{letter-spacing:0.003478px;}
.ls13{letter-spacing:0.004200px;}
.lsd{letter-spacing:2.322365px;}
.ls30{letter-spacing:2.473170px;}
.ls6{letter-spacing:2.983500px;}
.ls0{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.985113px;}
.ls33{letter-spacing:2.985427px;}
.ls32{letter-spacing:2.987468px;}
.ls36{letter-spacing:2.989409px;}
.ls1{letter-spacing:2.989500px;}
.ls2{letter-spacing:2.990915px;}
.ls4{letter-spacing:2.991113px;}
.ls34{letter-spacing:4.491010px;}
.ls35{letter-spacing:5.064538px;}
.ls7{letter-spacing:6.192734px;}
.ls19{letter-spacing:9.217002px;}
.ls15{letter-spacing:9.964200px;}
.ls2e{letter-spacing:12.714403px;}
.ls1f{letter-spacing:13.284538px;}
.ls2d{letter-spacing:13.747737px;}
.ls1a{letter-spacing:13.896538px;}
.ls16{letter-spacing:14.509559px;}
.ls17{letter-spacing:15.357859px;}
.ls1e{letter-spacing:16.268525px;}
.ls14{letter-spacing:16.606893px;}
.ls5{letter-spacing:18.517114px;}
.ls26{letter-spacing:21.093010px;}
.ls1b{letter-spacing:21.099010px;}
.ls12{letter-spacing:21.432538px;}
.ls21{letter-spacing:22.120893px;}
.ls11{letter-spacing:23.034653px;}
.ls20{letter-spacing:23.778538px;}
.ls2f{letter-spacing:24.749283px;}
.ls25{letter-spacing:24.934893px;}
.lsb{letter-spacing:25.058525px;}
.lse{letter-spacing:28.503980px;}
.ls24{letter-spacing:33.235923px;}
.ls8{letter-spacing:33.296355px;}
.lsa{letter-spacing:34.922355px;}
.ls9{letter-spacing:34.922525px;}
.ls1c{letter-spacing:102.822538px;}
.ls23{letter-spacing:1050.770338px;}
.ls27{letter-spacing:1183.712338px;}
.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;}
}
.ws37{word-spacing:-38.937826px;}
.ws31{word-spacing:-36.071827px;}
.ws83{word-spacing:-32.240520px;}
.ws74{word-spacing:-31.633157px;}
.ws7d{word-spacing:-27.140844px;}
.ws67{word-spacing:-26.926312px;}
.ws3{word-spacing:-19.510886px;}
.ws5a{word-spacing:-17.180844px;}
.wsb{word-spacing:-16.605662px;}
.ws65{word-spacing:-14.858688px;}
.ws2c{word-spacing:-12.982159px;}
.ws69{word-spacing:-12.638688px;}
.ws6b{word-spacing:-10.918312px;}
.ws6d{word-spacing:-10.616688px;}
.ws38{word-spacing:-6.623606px;}
.ws46{word-spacing:-6.623136px;}
.ws95{word-spacing:-6.290688px;}
.ws35{word-spacing:-6.173224px;}
.ws32{word-spacing:-6.106118px;}
.wsc4{word-spacing:-3.275703px;}
.ws7b{word-spacing:-3.266688px;}
.ws66{word-spacing:-2.828108px;}
.ws64{word-spacing:-2.797498px;}
.ws5d{word-spacing:-2.210844px;}
.wsae{word-spacing:-2.139966px;}
.wsc6{word-spacing:-1.960640px;}
.ws3b{word-spacing:-1.781313px;}
.ws79{word-spacing:-1.552312px;}
.ws9b{word-spacing:-1.482435px;}
.wsc0{word-spacing:-1.243332px;}
.ws9{word-spacing:-1.183557px;}
.ws36{word-spacing:-1.123781px;}
.ws39{word-spacing:-1.064006px;}
.wsb6{word-spacing:-0.824903px;}
.ws99{word-spacing:-0.765128px;}
.ws3a{word-spacing:-0.705352px;}
.ws68{word-spacing:-0.626463px;}
.ws6a{word-spacing:-0.608108px;}
.ws6c{word-spacing:-0.585801px;}
.ws3d{word-spacing:-0.466250px;}
.ws4{word-spacing:-0.065455px;}
.ws71{word-spacing:-0.059776px;}
.ws7e{word-spacing:-0.059393px;}
.ws92{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.052012px;}
.ws97{word-spacing:-0.051892px;}
.ws80{word-spacing:-0.049494px;}
.ws85{word-spacing:-0.044545px;}
.ws72{word-spacing:-0.041843px;}
.ws2b{word-spacing:-0.036120px;}
.ws93{word-spacing:-0.035866px;}
.ws84{word-spacing:-0.034646px;}
.ws49{word-spacing:-0.026899px;}
.ws29{word-spacing:0.000000px;}
.ws1e{word-spacing:0.011955px;}
.ws10{word-spacing:0.609711px;}
.ws3c{word-spacing:0.669487px;}
.ws1d{word-spacing:0.789038px;}
.ws98{word-spacing:0.887674px;}
.ws9c{word-spacing:0.968365px;}
.ws44{word-spacing:1.147692px;}
.wsad{word-spacing:1.267243px;}
.ws6e{word-spacing:1.446570px;}
.ws2f{word-spacing:1.533254px;}
.ws22{word-spacing:1.625896px;}
.ws9d{word-spacing:1.745448px;}
.wsd1{word-spacing:1.864999px;}
.ws50{word-spacing:2.044326px;}
.ws8b{word-spacing:2.125037px;}
.ws40{word-spacing:2.223652px;}
.ws6f{word-spacing:2.402979px;}
.ws8{word-spacing:2.522530px;}
.ws53{word-spacing:2.582306px;}
.wsaf{word-spacing:2.642082px;}
.wsd2{word-spacing:2.821408px;}
.ws8e{word-spacing:2.948930px;}
.ws12{word-spacing:3.000735px;}
.ws27{word-spacing:3.039610px;}
.ws33{word-spacing:3.093408px;}
.ws59{word-spacing:3.180062px;}
.wsc8{word-spacing:3.289847px;}
.wsd0{word-spacing:3.292549px;}
.wsd{word-spacing:3.299613px;}
.wscb{word-spacing:3.314513px;}
.ws47{word-spacing:3.359389px;}
.ws9a{word-spacing:3.419164px;}
.ws19{word-spacing:3.538716px;}
.ws8a{word-spacing:3.631392px;}
.ws1c{word-spacing:3.837594px;}
.ws1{word-spacing:3.873485px;}
.ws70{word-spacing:3.897369px;}
.ws2{word-spacing:3.945216px;}
.ws73{word-spacing:3.957145px;}
.ws1f{word-spacing:4.196247px;}
.ws56{word-spacing:4.256023px;}
.ws8f{word-spacing:4.370408px;}
.ws8c{word-spacing:4.438368px;}
.ws3f{word-spacing:4.495125px;}
.ws13{word-spacing:4.554901px;}
.wsa4{word-spacing:4.614676px;}
.ws1b{word-spacing:4.674452px;}
.ws8d{word-spacing:4.761158px;}
.ws4e{word-spacing:4.794003px;}
.ws17{word-spacing:4.973330px;}
.ws1a{word-spacing:5.033106px;}
.wsc3{word-spacing:5.092881px;}
.wsb2{word-spacing:5.391759px;}
.wsb9{word-spacing:5.511310px;}
.ws43{word-spacing:5.675731px;}
.ws94{word-spacing:5.750413px;}
.wsf{word-spacing:5.810188px;}
.ws4c{word-spacing:5.869964px;}
.ws4d{word-spacing:5.929740px;}
.ws45{word-spacing:6.228618px;}
.ws48{word-spacing:6.375110px;}
.wsa{word-spacing:6.407944px;}
.wsca{word-spacing:6.467720px;}
.ws58{word-spacing:6.587271px;}
.ws5e{word-spacing:6.647047px;}
.ws23{word-spacing:6.826374px;}
.ws25{word-spacing:6.945925px;}
.ws21{word-spacing:7.065476px;}
.ws41{word-spacing:7.125252px;}
.wsa8{word-spacing:7.185027px;}
.ws57{word-spacing:7.304578px;}
.ws2e{word-spacing:7.343482px;}
.ws11{word-spacing:7.483905px;}
.wsb5{word-spacing:7.663232px;}
.ws4b{word-spacing:7.723008px;}
.ws42{word-spacing:7.881466px;}
.wsc2{word-spacing:7.962110px;}
.wscd{word-spacing:8.081661px;}
.wsa2{word-spacing:8.201212px;}
.ws5c{word-spacing:8.320764px;}
.ws30{word-spacing:8.365651px;}
.wsb8{word-spacing:8.440315px;}
.ws54{word-spacing:8.619642px;}
.ws7a{word-spacing:8.739193px;}
.ws78{word-spacing:8.762531px;}
.ws7c{word-spacing:8.763892px;}
.ws15{word-spacing:8.858744px;}
.wsbe{word-spacing:9.157622px;}
.ws28{word-spacing:9.226426px;}
.wscf{word-spacing:9.277173px;}
.ws60{word-spacing:9.396724px;}
.wsa6{word-spacing:9.456500px;}
.ws5b{word-spacing:9.580321px;}
.ws91{word-spacing:9.603014px;}
.ws6{word-spacing:9.635827px;}
.ws4a{word-spacing:9.815154px;}
.ws7f{word-spacing:9.834220px;}
.ws9e{word-spacing:9.874929px;}
.ws2d{word-spacing:9.925805px;}
.wsb3{word-spacing:10.054256px;}
.ws61{word-spacing:10.472685px;}
.ws63{word-spacing:10.532461px;}
.wsc7{word-spacing:10.652012px;}
.wsab{word-spacing:10.711788px;}
.wscc{word-spacing:10.891114px;}
.wsa5{word-spacing:11.010666px;}
.wsba{word-spacing:11.070441px;}
.ws7{word-spacing:11.488870px;}
.wsa0{word-spacing:11.548646px;}
.ws5{word-spacing:11.668197px;}
.ws5f{word-spacing:11.727973px;}
.wsaa{word-spacing:12.146402px;}
.ws75{word-spacing:12.265953px;}
.ws76{word-spacing:12.325729px;}
.ws14{word-spacing:12.923485px;}
.wsc5{word-spacing:13.276702px;}
.ws82{word-spacing:13.709893px;}
.ws96{word-spacing:14.024596px;}
.ws90{word-spacing:14.337274px;}
.wsa1{word-spacing:14.358099px;}
.ws86{word-spacing:15.162775px;}
.ws81{word-spacing:16.191894px;}
.wsc1{word-spacing:17.095822px;}
.ws34{word-spacing:18.293948px;}
.wsb0{word-spacing:19.207123px;}
.wsb7{word-spacing:19.839591px;}
.wsa3{word-spacing:19.843105px;}
.wsb1{word-spacing:19.845591px;}
.wsb4{word-spacing:19.853122px;}
.wsbd{word-spacing:19.856262px;}
.wsa7{word-spacing:19.884567px;}
.wsd3{word-spacing:19.890567px;}
.wsbf{word-spacing:19.921123px;}
.wsbb{word-spacing:20.634537px;}
.wsc9{word-spacing:21.339889px;}
.wse{word-spacing:22.516382px;}
.wsa9{word-spacing:22.994138px;}
.ws51{word-spacing:23.735208px;}
.ws52{word-spacing:23.951208px;}
.ws55{word-spacing:24.017208px;}
.wsce{word-spacing:24.605486px;}
.ws4f{word-spacing:24.713208px;}
.ws18{word-spacing:25.003657px;}
.ws77{word-spacing:26.313219px;}
.wsc{word-spacing:26.514310px;}
.ws89{word-spacing:27.195384px;}
.wsac{word-spacing:27.292948px;}
.ws9f{word-spacing:27.377225px;}
.ws26{word-spacing:27.407208px;}
.ws3e{word-spacing:28.241208px;}
.ws20{word-spacing:32.141208px;}
.ws0{word-spacing:35.769809px;}
.wsbc{word-spacing:37.240199px;}
.ws24{word-spacing:40.109208px;}
.ws16{word-spacing:46.108259px;}
.ws62{word-spacing:51.065208px;}
.ws88{word-spacing:65.614896px;}
.ws87{word-spacing:67.265510px;}
._2{margin-left:-36.980494px;}
._4{margin-left:-35.057603px;}
._9{margin-left:-32.216216px;}
._2a{margin-left:-30.886665px;}
._2b{margin-left:-29.203345px;}
._6{margin-left:-27.329587px;}
._29{margin-left:-23.582656px;}
._14{margin-left:-8.872222px;}
._5{margin-left:-7.818701px;}
._a{margin-left:-5.986495px;}
._8{margin-left:-4.898659px;}
._0{margin-left:-2.964877px;}
._3{margin-left:-1.954063px;}
._1{width:1.936742px;}
._25{width:3.770533px;}
._28{width:5.713116px;}
._1d{width:9.029326px;}
._1e{width:10.426636px;}
._2c{width:13.646761px;}
._1c{width:14.996150px;}
._f{width:16.599085px;}
._15{width:17.637981px;}
._17{width:19.323648px;}
._23{width:21.457017px;}
._13{width:22.581837px;}
._7{width:24.419658px;}
._10{width:25.989201px;}
._22{width:27.526026px;}
._12{width:28.929008px;}
._e{width:30.126902px;}
._b{width:31.201438px;}
._20{width:32.850402px;}
._1b{width:34.525380px;}
._24{width:36.332093px;}
._16{width:37.759647px;}
._11{width:39.331177px;}
._1a{width:41.433197px;}
._27{width:43.565527px;}
._19{width:44.645445px;}
._c{width:45.990148px;}
._d{width:50.599407px;}
._26{width:53.496222px;}
._21{width:56.380723px;}
._1f{width:62.298547px;}
._18{width:70.583501px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:29.696717px;}
.fsf{font-size:34.645838px;}
.fs9{font-size:35.865600px;}
.fs8{font-size:36.119528px;}
.fsd{font-size:39.595457px;}
.fs5{font-size:41.842800px;}
.fs10{font-size:44.545075px;}
.fs2{font-size:47.820600px;}
.fse{font-size:49.494197px;}
.fs12{font-size:50.630311px;}
.fs13{font-size:51.892466px;}
.fs7{font-size:52.011855px;}
.fs6{font-size:53.798400px;}
.fsa{font-size:54.405094px;}
.fsb{font-size:55.799545px;}
.fsc{font-size:59.393434px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y2e{bottom:0.755310px;}
.ya5{bottom:0.866234px;}
.ya0{bottom:1.074996px;}
.y87{bottom:1.242000px;}
.y8d{bottom:1.449414px;}
.y32{bottom:2.705520px;}
.y39{bottom:3.283333px;}
.y83{bottom:3.468906px;}
.y96{bottom:3.647754px;}
.ya2{bottom:3.682359px;}
.y7f{bottom:4.129650px;}
.y8a{bottom:4.335822px;}
.y4a{bottom:4.348820px;}
.y52{bottom:4.460284px;}
.y7c{bottom:4.954338px;}
.y81{bottom:6.026184px;}
.y93{bottom:6.562728px;}
.y92{bottom:13.306788px;}
.y2c{bottom:136.080000px;}
.ybe{bottom:137.985000px;}
.y50{bottom:145.899000px;}
.y2b{bottom:152.518500px;}
.y7a{bottom:154.012500px;}
.ybd{bottom:155.917500px;}
.yee{bottom:163.437000px;}
.y4f{bottom:163.831500px;}
.ybc{bottom:173.850000px;}
.y77{bottom:175.894500px;}
.y2a{bottom:176.268000px;}
.yed{bottom:181.369500px;}
.y4e{bottom:181.764000px;}
.y76{bottom:186.145500px;}
.ybb{bottom:191.784000px;}
.y79{bottom:192.561000px;}
.y29{bottom:194.200500px;}
.y78{bottom:196.255500px;}
.yec{bottom:199.302000px;}
.y28{bottom:212.133000px;}
.y75{bottom:212.820000px;}
.y4d{bottom:217.339500px;}
.yba{bottom:217.437000px;}
.yeb{bottom:218.707500px;}
.y27{bottom:230.067000px;}
.y74{bottom:230.752500px;}
.y4c{bottom:233.778000px;}
.yea{bottom:236.641500px;}
.y26{bottom:247.999500px;}
.y73{bottom:248.685000px;}
.y4b{bottom:250.216500px;}
.ye9{bottom:256.047000px;}
.yb9{bottom:257.889000px;}
.y25{bottom:265.932000px;}
.y72{bottom:266.617500px;}
.ye8{bottom:273.979500px;}
.yb8{bottom:275.823000px;}
.y24{bottom:283.864500px;}
.y71{bottom:284.550000px;}
.ye7{bottom:291.913500px;}
.yb7{bottom:293.755500px;}
.y23{bottom:301.797000px;}
.y70{bottom:302.482500px;}
.ye6{bottom:311.319000px;}
.yb6{bottom:311.688000px;}
.y22{bottom:319.731000px;}
.y6f{bottom:320.416500px;}
.ye5{bottom:329.251500px;}
.y21{bottom:337.663500px;}
.y6e{bottom:338.349000px;}
.ye4{bottom:347.185500px;}
.yb5{bottom:347.262000px;}
.y20{bottom:355.596000px;}
.y6d{bottom:356.281500px;}
.yb4{bottom:363.700500px;}
.ye3{bottom:366.591000px;}
.y1f{bottom:373.528500px;}
.y6c{bottom:374.214000px;}
.ye2{bottom:384.523500px;}
.ya1{bottom:395.280361px;}
.y1e{bottom:397.540500px;}
.y6b{bottom:397.708500px;}
.ye1{bottom:402.457500px;}
.y6a{bottom:415.641000px;}
.y9f{bottom:416.366367px;}
.ye0{bottom:421.863000px;}
.ya3{bottom:429.879474px;}
.y69{bottom:433.573500px;}
.y1d{bottom:433.614000px;}
.ydf{bottom:439.795500px;}
.y1c{bottom:451.546500px;}
.yac{bottom:457.599163px;}
.yde{bottom:457.729500px;}
.ya4{bottom:457.807592px;}
.y49{bottom:459.800236px;}
.y68{bottom:459.915000px;}
.y1b{bottom:469.479000px;}
.y67{bottom:470.166000px;}
.ydd{bottom:477.135000px;}
.yad{bottom:485.318853px;}
.ya6{bottom:485.527281px;}
.y1a{bottom:487.413000px;}
.ydc{bottom:495.067500px;}
.yb0{bottom:498.953254px;}
.y19{bottom:505.345500px;}
.y66{bottom:506.451000px;}
.yab{bottom:511.080699px;}
.ydb{bottom:513.001500px;}
.ya7{bottom:513.037255px;}
.y48{bottom:515.559000px;}
.y18{bottom:523.278000px;}
.y65{bottom:524.383500px;}
.yda{bottom:532.407000px;}
.y47{bottom:533.491500px;}
.yae{bottom:540.756945px;}
.ya8{bottom:540.965373px;}
.y17{bottom:541.210500px;}
.y64{bottom:542.316000px;}
.yb3{bottom:550.285467px;}
.yd9{bottom:550.339500px;}
.y46{bottom:551.424000px;}
.y16{bottom:559.143000px;}
.y63{bottom:560.250000px;}
.yb2{bottom:568.043051px;}
.yd8{bottom:568.273500px;}
.yaf{bottom:568.476634px;}
.ya9{bottom:568.685062px;}
.y45{bottom:569.356500px;}
.y15{bottom:577.077000px;}
.y62{bottom:578.182500px;}
.yb1{bottom:585.801922px;}
.y44{bottom:587.289000px;}
.yd7{bottom:587.679000px;}
.y61{bottom:596.115000px;}
.yaa{bottom:596.196323px;}
.y14{bottom:601.087500px;}
.y43{bottom:605.223000px;}
.yd6{bottom:605.611500px;}
.y60{bottom:614.047500px;}
.y42{bottom:623.155500px;}
.yd5{bottom:625.018500px;}
.y9e{bottom:628.296000px;}
.y5f{bottom:637.542000px;}
.y13{bottom:640.378500px;}
.y41{bottom:641.088000px;}
.yd4{bottom:642.951000px;}
.y9d{bottom:646.228500px;}
.y5e{bottom:655.474500px;}
.y40{bottom:659.020500px;}
.yd3{bottom:662.358000px;}
.y12{bottom:666.321000px;}
.y5d{bottom:673.407000px;}
.yd2{bottom:680.290500px;}
.y11{bottom:684.253500px;}
.y3f{bottom:684.675000px;}
.y9c{bottom:689.524500px;}
.y5c{bottom:691.339500px;}
.yd1{bottom:698.223000px;}
.y10{bottom:702.186000px;}
.y9b{bottom:705.963000px;}
.y5b{bottom:709.272000px;}
.yd0{bottom:717.630000px;}
.yf{bottom:720.120000px;}
.y9a{bottom:722.401500px;}
.y5a{bottom:727.204500px;}
.y3e{bottom:727.969500px;}
.y100{bottom:733.423500px;}
.ycf{bottom:735.562500px;}
.ye{bottom:738.052500px;}
.y99{bottom:738.840000px;}
.y3d{bottom:744.408000px;}
.yff{bottom:751.357500px;}
.y59{bottom:751.986000px;}
.yce{bottom:753.495000px;}
.y98{bottom:755.278500px;}
.yd{bottom:755.985000px;}
.y3c{bottom:760.846500px;}
.yfe{bottom:769.290000px;}
.y97{bottom:771.717000px;}
.ycd{bottom:772.902000px;}
.yc{bottom:773.917500px;}
.y3b{bottom:777.285000px;}
.yfd{bottom:788.695500px;}
.y58{bottom:790.110000px;}
.ycc{bottom:790.834500px;}
.y3a{bottom:793.723500px;}
.yb{bottom:797.929500px;}
.y89{bottom:803.622000px;}
.yfc{bottom:806.629500px;}
.y57{bottom:808.042500px;}
.y90{bottom:808.439718px;}
.ycb{bottom:810.241500px;}
.y56{bottom:825.975000px;}
.yfb{bottom:826.035000px;}
.yca{bottom:828.174000px;}
.y8e{bottom:839.734392px;}
.y55{bottom:843.907500px;}
.yfa{bottom:843.967500px;}
.yc9{bottom:846.106500px;}
.ya{bottom:849.099000px;}
.y31{bottom:852.473730px;}
.y91{bottom:855.911442px;}
.yf9{bottom:861.901500px;}
.y9{bottom:863.512500px;}
.y95{bottom:864.354558px;}
.yc8{bottom:865.512000px;}
.y8b{bottom:867.036036px;}
.yf8{bottom:881.307000px;}
.y54{bottom:882.837000px;}
.yc7{bottom:883.446000px;}
.y8c{bottom:889.414392px;}
.y8{bottom:890.941500px;}
.y34{bottom:896.558908px;}
.yf7{bottom:899.239500px;}
.y53{bottom:899.275500px;}
.yc6{bottom:901.378500px;}
.y7{bottom:905.356500px;}
.y8f{bottom:909.954588px;}
.y94{bottom:914.034558px;}
.y7d{bottom:916.870044px;}
.yf6{bottom:918.646500px;}
.yc5{bottom:920.784000px;}
.y6{bottom:932.785500px;}
.yf5{bottom:936.579000px;}
.yc4{bottom:938.718000px;}
.yf4{bottom:954.511500px;}
.y35{bottom:957.671796px;}
.y5{bottom:962.143500px;}
.yc3{bottom:963.084000px;}
.y86{bottom:964.448580px;}
.y7e{bottom:966.237060px;}
.y2d{bottom:967.277828px;}
.yf3{bottom:973.918500px;}
.y4{bottom:983.064000px;}
.y88{bottom:983.971578px;}
.yf2{bottom:991.851000px;}
.y85{bottom:993.525042px;}
.y33{bottom:995.561922px;}
.y82{bottom:996.333204px;}
.yc2{bottom:1003.537500px;}
.y3{bottom:1003.986000px;}
.y30{bottom:1006.732957px;}
.yf1{bottom:1011.258000px;}
.y2f{bottom:1019.719757px;}
.y80{bottom:1020.509976px;}
.yc1{bottom:1021.470000px;}
.y84{bottom:1022.397816px;}
.y2{bottom:1024.908000px;}
.yf0{bottom:1029.190500px;}
.y37{bottom:1033.413527px;}
.y36{bottom:1034.603896px;}
.yc0{bottom:1039.402500px;}
.y38{bottom:1046.911672px;}
.yef{bottom:1047.123000px;}
.y51{bottom:1051.181299px;}
.y7b{bottom:1062.683328px;}
.ybf{bottom:1065.055500px;}
.y1{bottom:1065.502500px;}
.h12{height:7.108978px;}
.h22{height:7.983576px;}
.h13{height:9.637756px;}
.he{height:10.393821px;}
.hc{height:10.396087px;}
.h28{height:10.457640px;}
.h33{height:10.624354px;}
.h30{height:10.649475px;}
.h2d{height:10.858237px;}
.h25{height:11.076156px;}
.h35{height:11.086057px;}
.h20{height:11.310894px;}
.h10{height:11.458808px;}
.h11{height:12.344787px;}
.h26{height:13.204944px;}
.h2c{height:13.483152px;}
.h2f{height:13.794769px;}
.h21{height:14.858046px;}
.h1d{height:15.097752px;}
.h31{height:15.480460px;}
.h14{height:15.497234px;}
.h16{height:15.894442px;}
.h1b{height:17.332110px;}
.h1f{height:17.415324px;}
.h1a{height:18.452675px;}
.h29{height:32.181462px;}
.h5{height:33.187496px;}
.h23{height:34.893409px;}
.hd{height:35.524097px;}
.hf{height:36.772382px;}
.h2e{height:36.909496px;}
.h24{height:37.120648px;}
.h32{height:37.829608px;}
.h34{height:39.275895px;}
.h1e{height:40.149961px;}
.hb{height:40.348800px;}
.h15{height:40.803821px;}
.h17{height:41.849659px;}
.h27{height:41.931764px;}
.h1c{height:44.545075px;}
.h8{height:44.831700px;}
.h7{height:45.687311px;}
.h9{height:49.975733px;}
.ha{height:49.981733px;}
.h6{height:51.216077px;}
.h2{height:59.215496px;}
.h4{height:59.221496px;}
.h36{height:59.939700px;}
.h1{height:66.948840px;}
.h3{height:69.348077px;}
.h2a{height:70.528232px;}
.h18{height:85.271700px;}
.h19{height:85.835700px;}
.h2b{height:97.504472px;}
.h0{height:1188.000000px;}
.w16{width:5.379102px;}
.w17{width:5.705748px;}
.w8{width:6.494155px;}
.wa{width:6.674674px;}
.w7{width:6.683738px;}
.w23{width:7.212713px;}
.w9{width:7.235114px;}
.w5{width:9.888519px;}
.w24{width:10.474633px;}
.w22{width:11.532882px;}
.w1a{width:11.700882px;}
.w19{width:11.858616px;}
.w1f{width:12.218796px;}
.w3{width:12.260947px;}
.w27{width:13.146955px;}
.wb{width:13.388715px;}
.wd{width:13.731880px;}
.w26{width:14.426313px;}
.wc{width:14.451507px;}
.we{width:14.821912px;}
.w1{width:15.479323px;}
.w12{width:15.769674px;}
.w14{width:17.220330px;}
.w2{width:17.713530px;}
.w13{width:17.769294px;}
.wf{width:18.620064px;}
.w15{width:18.690858px;}
.w25{width:18.745595px;}
.w10{width:19.780092px;}
.w6{width:24.046049px;}
.w1b{width:26.676918px;}
.w1c{width:28.064232px;}
.w4{width:28.420049px;}
.w1e{width:28.644246px;}
.w20{width:28.851738px;}
.w11{width:37.257516px;}
.w29{width:59.844029px;}
.w2a{width:69.210612px;}
.w28{width:72.817856px;}
.w18{width:84.037446px;}
.w1d{width:94.365918px;}
.w21{width:97.661052px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x41{left:9.372839px;}
.x35{left:46.125396px;}
.x1{left:95.304000px;}
.x3{left:100.689000px;}
.x2{left:110.814000px;}
.x7{left:112.725000px;}
.xf{left:114.600000px;}
.x1c{left:116.916000px;}
.x9{left:119.509500px;}
.x4{left:121.579500px;}
.x46{left:125.218500px;}
.x48{left:126.264000px;}
.xb{left:167.019000px;}
.x1b{left:179.214000px;}
.x1d{left:182.527500px;}
.xe{left:204.394500px;}
.x40{left:232.105757px;}
.x6{left:236.337000px;}
.x28{left:245.182500px;}
.x3e{left:248.582150px;}
.x3f{left:253.021289px;}
.x1f{left:268.269000px;}
.x37{left:275.749633px;}
.x2f{left:292.561074px;}
.x1a{left:306.519000px;}
.x2e{left:311.111586px;}
.x32{left:322.458498px;}
.x38{left:337.897060px;}
.x45{left:353.376000px;}
.x18{left:367.667052px;}
.x34{left:369.069516px;}
.xd{left:371.722500px;}
.x8{left:372.745500px;}
.x20{left:376.287000px;}
.x12{left:379.120572px;}
.x16{left:385.491612px;}
.x19{left:391.450253px;}
.xa{left:394.867500px;}
.x39{left:400.046032px;}
.xc{left:406.170000px;}
.x3d{left:407.591912px;}
.x23{left:409.524000px;}
.x17{left:415.308985px;}
.x2a{left:423.157374px;}
.x36{left:424.649016px;}
.x30{left:428.612238px;}
.x14{left:429.773172px;}
.x1e{left:431.455500px;}
.x13{left:435.213670px;}
.x44{left:437.334128px;}
.x10{left:444.615013px;}
.x2b{left:449.518824px;}
.x24{left:453.259500px;}
.x3a{left:462.193717px;}
.x11{left:468.205610px;}
.x21{left:470.809500px;}
.x25{left:477.409500px;}
.x47{left:480.423000px;}
.x15{left:485.330754px;}
.x26{left:486.379500px;}
.x22{left:492.112500px;}
.x27{left:504.325500px;}
.x2c{left:508.573440px;}
.x2d{left:510.466248px;}
.x3b{left:524.341402px;}
.x31{left:551.817396px;}
.x5{left:555.370500px;}
.x3c{left:586.489087px;}
.x29{left:594.625410px;}
.x33{left:619.511364px;}
.x42{left:656.272713px;}
.x43{left:672.750894px;}
@media print{
.v3{vertical-align:-23.141333pt;}
.v7{vertical-align:-7.973333pt;}
.v5{vertical-align:-6.934081pt;}
.v6{vertical-align:-5.312000pt;}
.va{vertical-align:-4.402752pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:13.429333pt;}
.v2{vertical-align:16.117333pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:23.136000pt;}
.vc{vertical-align:24.416064pt;}
.v9{vertical-align:28.480000pt;}
.v8{vertical-align:35.946667pt;}
.vb{vertical-align:60.931968pt;}
.vd{vertical-align:84.910848pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000027pt;}
.ls38{letter-spacing:0.000479pt;}
.ls18{letter-spacing:0.000495pt;}
.ls31{letter-spacing:0.000678pt;}
.ls1d{letter-spacing:0.000818pt;}
.ls28{letter-spacing:0.000846pt;}
.ls2c{letter-spacing:0.001083pt;}
.ls29{letter-spacing:0.001968pt;}
.ls22{letter-spacing:0.002387pt;}
.ls2b{letter-spacing:0.002406pt;}
.ls37{letter-spacing:0.002693pt;}
.lsf{letter-spacing:0.003034pt;}
.ls2a{letter-spacing:0.003091pt;}
.ls13{letter-spacing:0.003733pt;}
.lsd{letter-spacing:2.064324pt;}
.ls30{letter-spacing:2.198373pt;}
.ls6{letter-spacing:2.652000pt;}
.ls0{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.653433pt;}
.ls33{letter-spacing:2.653713pt;}
.ls32{letter-spacing:2.655527pt;}
.ls36{letter-spacing:2.657253pt;}
.ls1{letter-spacing:2.657333pt;}
.ls2{letter-spacing:2.658591pt;}
.ls4{letter-spacing:2.658767pt;}
.ls34{letter-spacing:3.992009pt;}
.ls35{letter-spacing:4.501812pt;}
.ls7{letter-spacing:5.504653pt;}
.ls19{letter-spacing:8.192891pt;}
.ls15{letter-spacing:8.857067pt;}
.ls2e{letter-spacing:11.301691pt;}
.ls1f{letter-spacing:11.808479pt;}
.ls2d{letter-spacing:12.220210pt;}
.ls1a{letter-spacing:12.352479pt;}
.ls16{letter-spacing:12.897386pt;}
.ls17{letter-spacing:13.651430pt;}
.ls1e{letter-spacing:14.460911pt;}
.ls14{letter-spacing:14.761682pt;}
.ls5{letter-spacing:16.459657pt;}
.ls26{letter-spacing:18.749342pt;}
.ls1b{letter-spacing:18.754675pt;}
.ls12{letter-spacing:19.051145pt;}
.ls21{letter-spacing:19.663016pt;}
.ls11{letter-spacing:20.475247pt;}
.ls20{letter-spacing:21.136479pt;}
.ls2f{letter-spacing:21.999363pt;}
.ls25{letter-spacing:22.164349pt;}
.lsb{letter-spacing:22.274245pt;}
.lse{letter-spacing:25.336871pt;}
.ls24{letter-spacing:29.543043pt;}
.ls8{letter-spacing:29.596760pt;}
.lsa{letter-spacing:31.042093pt;}
.ls9{letter-spacing:31.042245pt;}
.ls1c{letter-spacing:91.397812pt;}
.ls23{letter-spacing:934.018079pt;}
.ls27{letter-spacing:1052.188745pt;}
.ws37{word-spacing:-34.611401pt;}
.ws31{word-spacing:-32.063846pt;}
.ws83{word-spacing:-28.658240pt;}
.ws74{word-spacing:-28.118362pt;}
.ws7d{word-spacing:-24.125195pt;}
.ws67{word-spacing:-23.934500pt;}
.ws3{word-spacing:-17.343010pt;}
.ws5a{word-spacing:-15.271862pt;}
.wsb{word-spacing:-14.760588pt;}
.ws65{word-spacing:-13.207723pt;}
.ws2c{word-spacing:-11.539697pt;}
.ws69{word-spacing:-11.234390pt;}
.ws6b{word-spacing:-9.705166pt;}
.ws6d{word-spacing:-9.437056pt;}
.ws38{word-spacing:-5.887649pt;}
.ws46{word-spacing:-5.887232pt;}
.ws95{word-spacing:-5.591723pt;}
.ws35{word-spacing:-5.487311pt;}
.ws32{word-spacing:-5.427661pt;}
.wsc4{word-spacing:-2.911736pt;}
.ws7b{word-spacing:-2.903723pt;}
.ws66{word-spacing:-2.513874pt;}
.ws64{word-spacing:-2.486665pt;}
.ws5d{word-spacing:-1.965195pt;}
.wsae{word-spacing:-1.902192pt;}
.wsc6{word-spacing:-1.742791pt;}
.ws3b{word-spacing:-1.583389pt;}
.ws79{word-spacing:-1.379833pt;}
.ws9b{word-spacing:-1.317720pt;}
.wsc0{word-spacing:-1.105184pt;}
.ws9{word-spacing:-1.052051pt;}
.ws36{word-spacing:-0.998917pt;}
.ws39{word-spacing:-0.945783pt;}
.wsb6{word-spacing:-0.733247pt;}
.ws99{word-spacing:-0.680113pt;}
.ws3a{word-spacing:-0.626980pt;}
.ws68{word-spacing:-0.556856pt;}
.ws6a{word-spacing:-0.540541pt;}
.ws6c{word-spacing:-0.520712pt;}
.ws3d{word-spacing:-0.414444pt;}
.ws4{word-spacing:-0.058182pt;}
.ws71{word-spacing:-0.053134pt;}
.ws7e{word-spacing:-0.052794pt;}
.ws92{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.046233pt;}
.ws97{word-spacing:-0.046127pt;}
.ws80{word-spacing:-0.043995pt;}
.ws85{word-spacing:-0.039596pt;}
.ws72{word-spacing:-0.037194pt;}
.ws2b{word-spacing:-0.032106pt;}
.ws93{word-spacing:-0.031881pt;}
.ws84{word-spacing:-0.030796pt;}
.ws49{word-spacing:-0.023910pt;}
.ws29{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.010627pt;}
.ws10{word-spacing:0.541965pt;}
.ws3c{word-spacing:0.595099pt;}
.ws1d{word-spacing:0.701367pt;}
.ws98{word-spacing:0.789043pt;}
.ws9c{word-spacing:0.860769pt;}
.ws44{word-spacing:1.020170pt;}
.wsad{word-spacing:1.126438pt;}
.ws6e{word-spacing:1.285840pt;}
.ws2f{word-spacing:1.362893pt;}
.ws22{word-spacing:1.445241pt;}
.ws9d{word-spacing:1.551509pt;}
.wsd1{word-spacing:1.657777pt;}
.ws50{word-spacing:1.817178pt;}
.ws8b{word-spacing:1.888922pt;}
.ws40{word-spacing:1.976580pt;}
.ws6f{word-spacing:2.135981pt;}
.ws8{word-spacing:2.242249pt;}
.ws53{word-spacing:2.295383pt;}
.wsaf{word-spacing:2.348517pt;}
.wsd2{word-spacing:2.507919pt;}
.ws8e{word-spacing:2.621271pt;}
.ws12{word-spacing:2.667320pt;}
.ws27{word-spacing:2.701875pt;}
.ws33{word-spacing:2.749696pt;}
.ws59{word-spacing:2.826722pt;}
.wsc8{word-spacing:2.924309pt;}
.wsd0{word-spacing:2.926710pt;}
.wsd{word-spacing:2.932989pt;}
.wscb{word-spacing:2.946234pt;}
.ws47{word-spacing:2.986123pt;}
.ws9a{word-spacing:3.039257pt;}
.ws19{word-spacing:3.145525pt;}
.ws8a{word-spacing:3.227904pt;}
.ws1c{word-spacing:3.411194pt;}
.ws1{word-spacing:3.443098pt;}
.ws70{word-spacing:3.464328pt;}
.ws2{word-spacing:3.506859pt;}
.ws73{word-spacing:3.517462pt;}
.ws1f{word-spacing:3.729997pt;}
.ws56{word-spacing:3.783131pt;}
.ws8f{word-spacing:3.884807pt;}
.ws8c{word-spacing:3.945216pt;}
.ws3f{word-spacing:3.995667pt;}
.ws13{word-spacing:4.048801pt;}
.wsa4{word-spacing:4.101935pt;}
.ws1b{word-spacing:4.155068pt;}
.ws8d{word-spacing:4.232141pt;}
.ws4e{word-spacing:4.261336pt;}
.ws17{word-spacing:4.420738pt;}
.ws1a{word-spacing:4.473872pt;}
.wsc3{word-spacing:4.527005pt;}
.wsb2{word-spacing:4.792675pt;}
.wsb9{word-spacing:4.898943pt;}
.ws43{word-spacing:5.045094pt;}
.ws94{word-spacing:5.111478pt;}
.wsf{word-spacing:5.164612pt;}
.ws4c{word-spacing:5.217746pt;}
.ws4d{word-spacing:5.270880pt;}
.ws45{word-spacing:5.536549pt;}
.ws48{word-spacing:5.666765pt;}
.wsa{word-spacing:5.695951pt;}
.wsca{word-spacing:5.749084pt;}
.ws58{word-spacing:5.855352pt;}
.ws5e{word-spacing:5.908486pt;}
.ws23{word-spacing:6.067888pt;}
.ws25{word-spacing:6.174155pt;}
.ws21{word-spacing:6.280423pt;}
.ws41{word-spacing:6.333557pt;}
.wsa8{word-spacing:6.386691pt;}
.ws57{word-spacing:6.492959pt;}
.ws2e{word-spacing:6.527539pt;}
.ws11{word-spacing:6.652360pt;}
.wsb5{word-spacing:6.811762pt;}
.ws4b{word-spacing:6.864896pt;}
.ws42{word-spacing:7.005747pt;}
.wsc2{word-spacing:7.077431pt;}
.wscd{word-spacing:7.183699pt;}
.wsa2{word-spacing:7.289967pt;}
.ws5c{word-spacing:7.396234pt;}
.ws30{word-spacing:7.436134pt;}
.wsb8{word-spacing:7.502502pt;}
.ws54{word-spacing:7.661904pt;}
.ws7a{word-spacing:7.768171pt;}
.ws78{word-spacing:7.788916pt;}
.ws7c{word-spacing:7.790126pt;}
.ws15{word-spacing:7.874439pt;}
.wsbe{word-spacing:8.140108pt;}
.ws28{word-spacing:8.201267pt;}
.wscf{word-spacing:8.246376pt;}
.ws60{word-spacing:8.352644pt;}
.wsa6{word-spacing:8.405778pt;}
.ws5b{word-spacing:8.515841pt;}
.ws91{word-spacing:8.536013pt;}
.ws6{word-spacing:8.565179pt;}
.ws4a{word-spacing:8.724581pt;}
.ws7f{word-spacing:8.741529pt;}
.ws9e{word-spacing:8.777715pt;}
.ws2d{word-spacing:8.822938pt;}
.wsb3{word-spacing:8.937116pt;}
.ws61{word-spacing:9.309053pt;}
.ws63{word-spacing:9.362187pt;}
.wsc7{word-spacing:9.468455pt;}
.wsab{word-spacing:9.521589pt;}
.wscc{word-spacing:9.680991pt;}
.wsa5{word-spacing:9.787258pt;}
.wsba{word-spacing:9.840392pt;}
.ws7{word-spacing:10.212329pt;}
.wsa0{word-spacing:10.265463pt;}
.ws5{word-spacing:10.371731pt;}
.ws5f{word-spacing:10.424865pt;}
.wsaa{word-spacing:10.796802pt;}
.ws75{word-spacing:10.903069pt;}
.ws76{word-spacing:10.956203pt;}
.ws14{word-spacing:11.487542pt;}
.wsc5{word-spacing:11.801513pt;}
.ws82{word-spacing:12.186571pt;}
.ws96{word-spacing:12.466308pt;}
.ws90{word-spacing:12.744243pt;}
.wsa1{word-spacing:12.762755pt;}
.ws86{word-spacing:13.478022pt;}
.ws81{word-spacing:14.392794pt;}
.wsc1{word-spacing:15.196286pt;}
.ws34{word-spacing:16.261287pt;}
.wsb0{word-spacing:17.072998pt;}
.wsb7{word-spacing:17.635192pt;}
.wsa3{word-spacing:17.638316pt;}
.wsb1{word-spacing:17.640525pt;}
.wsb4{word-spacing:17.647219pt;}
.wsbd{word-spacing:17.650011pt;}
.wsa7{word-spacing:17.675170pt;}
.wsd3{word-spacing:17.680504pt;}
.wsbf{word-spacing:17.707665pt;}
.wsbb{word-spacing:18.341811pt;}
.wsc9{word-spacing:18.968790pt;}
.wse{word-spacing:20.014562pt;}
.wsa9{word-spacing:20.439234pt;}
.ws51{word-spacing:21.097963pt;}
.ws52{word-spacing:21.289963pt;}
.ws55{word-spacing:21.348629pt;}
.wsce{word-spacing:21.871543pt;}
.ws4f{word-spacing:21.967296pt;}
.ws18{word-spacing:22.225473pt;}
.ws77{word-spacing:23.389528pt;}
.wsc{word-spacing:23.568276pt;}
.ws89{word-spacing:24.173674pt;}
.wsac{word-spacing:24.260398pt;}
.ws9f{word-spacing:24.335311pt;}
.ws26{word-spacing:24.361963pt;}
.ws3e{word-spacing:25.103296pt;}
.ws20{word-spacing:28.569963pt;}
.ws0{word-spacing:31.795386pt;}
.wsbc{word-spacing:33.102399pt;}
.ws24{word-spacing:35.652629pt;}
.ws16{word-spacing:40.985119pt;}
.ws62{word-spacing:45.391296pt;}
.ws88{word-spacing:58.324352pt;}
.ws87{word-spacing:59.791565pt;}
._2{margin-left:-32.871550pt;}
._4{margin-left:-31.162313pt;}
._9{margin-left:-28.636636pt;}
._2a{margin-left:-27.454813pt;}
._2b{margin-left:-25.958529pt;}
._6{margin-left:-24.292966pt;}
._29{margin-left:-20.962361pt;}
._14{margin-left:-7.886420pt;}
._5{margin-left:-6.949956pt;}
._a{margin-left:-5.321329pt;}
._8{margin-left:-4.354364pt;}
._0{margin-left:-2.635446pt;}
._3{margin-left:-1.736945pt;}
._1{width:1.721549pt;}
._25{width:3.351585pt;}
._28{width:5.078325pt;}
._1d{width:8.026068pt;}
._1e{width:9.268121pt;}
._2c{width:12.130454pt;}
._1c{width:13.329911pt;}
._f{width:14.754742pt;}
._15{width:15.678206pt;}
._17{width:17.176576pt;}
._23{width:19.072904pt;}
._13{width:20.072744pt;}
._7{width:21.706363pt;}
._10{width:23.101512pt;}
._22{width:24.467578pt;}
._12{width:25.714673pt;}
._e{width:26.779469pt;}
._b{width:27.734612pt;}
._20{width:29.200358pt;}
._1b{width:30.689227pt;}
._24{width:32.295194pt;}
._16{width:33.564131pt;}
._11{width:34.961047pt;}
._1a{width:36.829508pt;}
._27{width:38.724913pt;}
._19{width:39.684840pt;}
._c{width:40.880131pt;}
._d{width:44.977251pt;}
._26{width:47.552198pt;}
._21{width:50.116198pt;}
._1f{width:55.376486pt;}
._18{width:62.740890pt;}
.fs11{font-size:26.397082pt;}
.fsf{font-size:30.796301pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:32.106248pt;}
.fsd{font-size:35.195962pt;}
.fs5{font-size:37.193600pt;}
.fs10{font-size:39.595622pt;}
.fs2{font-size:42.507200pt;}
.fse{font-size:43.994842pt;}
.fs12{font-size:45.004721pt;}
.fs13{font-size:46.126637pt;}
.fs7{font-size:46.232760pt;}
.fs6{font-size:47.820800pt;}
.fsa{font-size:48.360084pt;}
.fsb{font-size:49.599595pt;}
.fsc{font-size:52.794163pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:0.671387pt;}
.ya5{bottom:0.769985pt;}
.ya0{bottom:0.955552pt;}
.y87{bottom:1.104000pt;}
.y8d{bottom:1.288368pt;}
.y32{bottom:2.404907pt;}
.y39{bottom:2.918518pt;}
.y83{bottom:3.083472pt;}
.y96{bottom:3.242448pt;}
.ya2{bottom:3.273208pt;}
.y7f{bottom:3.670800pt;}
.y8a{bottom:3.854064pt;}
.y4a{bottom:3.865618pt;}
.y52{bottom:3.964697pt;}
.y7c{bottom:4.403856pt;}
.y81{bottom:5.356608pt;}
.y93{bottom:5.833536pt;}
.y92{bottom:11.828256pt;}
.y2c{bottom:120.960000pt;}
.ybe{bottom:122.653333pt;}
.y50{bottom:129.688000pt;}
.y2b{bottom:135.572000pt;}
.y7a{bottom:136.900000pt;}
.ybd{bottom:138.593333pt;}
.yee{bottom:145.277333pt;}
.y4f{bottom:145.628000pt;}
.ybc{bottom:154.533333pt;}
.y77{bottom:156.350667pt;}
.y2a{bottom:156.682667pt;}
.yed{bottom:161.217333pt;}
.y4e{bottom:161.568000pt;}
.y76{bottom:165.462667pt;}
.ybb{bottom:170.474667pt;}
.y79{bottom:171.165333pt;}
.y29{bottom:172.622667pt;}
.y78{bottom:174.449333pt;}
.yec{bottom:177.157333pt;}
.y28{bottom:188.562667pt;}
.y75{bottom:189.173333pt;}
.y4d{bottom:193.190667pt;}
.yba{bottom:193.277333pt;}
.yeb{bottom:194.406667pt;}
.y27{bottom:204.504000pt;}
.y74{bottom:205.113333pt;}
.y4c{bottom:207.802667pt;}
.yea{bottom:210.348000pt;}
.y26{bottom:220.444000pt;}
.y73{bottom:221.053333pt;}
.y4b{bottom:222.414667pt;}
.ye9{bottom:227.597333pt;}
.yb9{bottom:229.234667pt;}
.y25{bottom:236.384000pt;}
.y72{bottom:236.993333pt;}
.ye8{bottom:243.537333pt;}
.yb8{bottom:245.176000pt;}
.y24{bottom:252.324000pt;}
.y71{bottom:252.933333pt;}
.ye7{bottom:259.478667pt;}
.yb7{bottom:261.116000pt;}
.y23{bottom:268.264000pt;}
.y70{bottom:268.873333pt;}
.ye6{bottom:276.728000pt;}
.yb6{bottom:277.056000pt;}
.y22{bottom:284.205333pt;}
.y6f{bottom:284.814667pt;}
.ye5{bottom:292.668000pt;}
.y21{bottom:300.145333pt;}
.y6e{bottom:300.754667pt;}
.ye4{bottom:308.609333pt;}
.yb5{bottom:308.677333pt;}
.y20{bottom:316.085333pt;}
.y6d{bottom:316.694667pt;}
.yb4{bottom:323.289333pt;}
.ye3{bottom:325.858667pt;}
.y1f{bottom:332.025333pt;}
.y6c{bottom:332.634667pt;}
.ye2{bottom:341.798667pt;}
.ya1{bottom:351.360321pt;}
.y1e{bottom:353.369333pt;}
.y6b{bottom:353.518667pt;}
.ye1{bottom:357.740000pt;}
.y6a{bottom:369.458667pt;}
.y9f{bottom:370.103437pt;}
.ye0{bottom:374.989333pt;}
.ya3{bottom:382.115088pt;}
.y69{bottom:385.398667pt;}
.y1d{bottom:385.434667pt;}
.ydf{bottom:390.929333pt;}
.y1c{bottom:401.374667pt;}
.yac{bottom:406.754812pt;}
.yde{bottom:406.870667pt;}
.ya4{bottom:406.940082pt;}
.y49{bottom:408.711321pt;}
.y68{bottom:408.813333pt;}
.y1b{bottom:417.314667pt;}
.y67{bottom:417.925333pt;}
.ydd{bottom:424.120000pt;}
.yad{bottom:431.394536pt;}
.ya6{bottom:431.579805pt;}
.y1a{bottom:433.256000pt;}
.ydc{bottom:440.060000pt;}
.yb0{bottom:443.514004pt;}
.y19{bottom:449.196000pt;}
.y66{bottom:450.178667pt;}
.yab{bottom:454.293955pt;}
.ydb{bottom:456.001333pt;}
.ya7{bottom:456.033116pt;}
.y48{bottom:458.274667pt;}
.y18{bottom:465.136000pt;}
.y65{bottom:466.118667pt;}
.yda{bottom:473.250667pt;}
.y47{bottom:474.214667pt;}
.yae{bottom:480.672840pt;}
.ya8{bottom:480.858109pt;}
.y17{bottom:481.076000pt;}
.y64{bottom:482.058667pt;}
.yb3{bottom:489.142638pt;}
.yd9{bottom:489.190667pt;}
.y46{bottom:490.154667pt;}
.y16{bottom:497.016000pt;}
.y63{bottom:498.000000pt;}
.yb2{bottom:504.927157pt;}
.yd8{bottom:505.132000pt;}
.yaf{bottom:505.312564pt;}
.ya9{bottom:505.497833pt;}
.y45{bottom:506.094667pt;}
.y15{bottom:512.957333pt;}
.y62{bottom:513.940000pt;}
.yb1{bottom:520.712820pt;}
.y44{bottom:522.034667pt;}
.yd7{bottom:522.381333pt;}
.y61{bottom:529.880000pt;}
.yaa{bottom:529.952287pt;}
.y14{bottom:534.300000pt;}
.y43{bottom:537.976000pt;}
.yd6{bottom:538.321333pt;}
.y60{bottom:545.820000pt;}
.y42{bottom:553.916000pt;}
.yd5{bottom:555.572000pt;}
.y9e{bottom:558.485333pt;}
.y5f{bottom:566.704000pt;}
.y13{bottom:569.225333pt;}
.y41{bottom:569.856000pt;}
.yd4{bottom:571.512000pt;}
.y9d{bottom:574.425333pt;}
.y5e{bottom:582.644000pt;}
.y40{bottom:585.796000pt;}
.yd3{bottom:588.762667pt;}
.y12{bottom:592.285333pt;}
.y5d{bottom:598.584000pt;}
.yd2{bottom:604.702667pt;}
.y11{bottom:608.225333pt;}
.y3f{bottom:608.600000pt;}
.y9c{bottom:612.910667pt;}
.y5c{bottom:614.524000pt;}
.yd1{bottom:620.642667pt;}
.y10{bottom:624.165333pt;}
.y9b{bottom:627.522667pt;}
.y5b{bottom:630.464000pt;}
.yd0{bottom:637.893333pt;}
.yf{bottom:640.106667pt;}
.y9a{bottom:642.134667pt;}
.y5a{bottom:646.404000pt;}
.y3e{bottom:647.084000pt;}
.y100{bottom:651.932000pt;}
.ycf{bottom:653.833333pt;}
.ye{bottom:656.046667pt;}
.y99{bottom:656.746667pt;}
.y3d{bottom:661.696000pt;}
.yff{bottom:667.873333pt;}
.y59{bottom:668.432000pt;}
.yce{bottom:669.773333pt;}
.y98{bottom:671.358667pt;}
.yd{bottom:671.986667pt;}
.y3c{bottom:676.308000pt;}
.yfe{bottom:683.813333pt;}
.y97{bottom:685.970667pt;}
.ycd{bottom:687.024000pt;}
.yc{bottom:687.926667pt;}
.y3b{bottom:690.920000pt;}
.yfd{bottom:701.062667pt;}
.y58{bottom:702.320000pt;}
.ycc{bottom:702.964000pt;}
.y3a{bottom:705.532000pt;}
.yb{bottom:709.270667pt;}
.y89{bottom:714.330667pt;}
.yfc{bottom:717.004000pt;}
.y57{bottom:718.260000pt;}
.y90{bottom:718.613083pt;}
.ycb{bottom:720.214667pt;}
.y56{bottom:734.200000pt;}
.yfb{bottom:734.253333pt;}
.yca{bottom:736.154667pt;}
.y8e{bottom:746.430571pt;}
.y55{bottom:750.140000pt;}
.yfa{bottom:750.193333pt;}
.yc9{bottom:752.094667pt;}
.ya{bottom:754.754667pt;}
.y31{bottom:757.754426pt;}
.y91{bottom:760.810171pt;}
.yf9{bottom:766.134667pt;}
.y9{bottom:767.566667pt;}
.y95{bottom:768.315163pt;}
.yc8{bottom:769.344000pt;}
.y8b{bottom:770.698699pt;}
.yf8{bottom:783.384000pt;}
.y54{bottom:784.744000pt;}
.yc7{bottom:785.285333pt;}
.y8c{bottom:790.590571pt;}
.y8{bottom:791.948000pt;}
.y34{bottom:796.941252pt;}
.yf7{bottom:799.324000pt;}
.y53{bottom:799.356000pt;}
.yc6{bottom:801.225333pt;}
.y7{bottom:804.761333pt;}
.y8f{bottom:808.848523pt;}
.y94{bottom:812.475163pt;}
.y7d{bottom:814.995595pt;}
.yf6{bottom:816.574667pt;}
.yc5{bottom:818.474667pt;}
.y6{bottom:829.142667pt;}
.yf5{bottom:832.514667pt;}
.yc4{bottom:834.416000pt;}
.yf4{bottom:848.454667pt;}
.y35{bottom:851.263818pt;}
.y5{bottom:855.238667pt;}
.yc3{bottom:856.074667pt;}
.y86{bottom:857.287627pt;}
.y7e{bottom:858.877387pt;}
.y2d{bottom:859.802514pt;}
.yf3{bottom:865.705333pt;}
.y4{bottom:873.834667pt;}
.y88{bottom:874.641403pt;}
.yf2{bottom:881.645333pt;}
.y85{bottom:883.133371pt;}
.y33{bottom:884.943931pt;}
.y82{bottom:885.629515pt;}
.yc2{bottom:892.033333pt;}
.y3{bottom:892.432000pt;}
.y30{bottom:894.873739pt;}
.yf1{bottom:898.896000pt;}
.y2f{bottom:906.417562pt;}
.y80{bottom:907.119979pt;}
.yc1{bottom:907.973333pt;}
.y84{bottom:908.798059pt;}
.y2{bottom:911.029333pt;}
.yf0{bottom:914.836000pt;}
.y37{bottom:918.589802pt;}
.y36{bottom:919.647907pt;}
.yc0{bottom:923.913333pt;}
.y38{bottom:930.588153pt;}
.yef{bottom:930.776000pt;}
.y51{bottom:934.383377pt;}
.y7b{bottom:944.607403pt;}
.ybf{bottom:946.716000pt;}
.y1{bottom:947.113333pt;}
.h12{height:6.319091pt;}
.h22{height:7.096512pt;}
.h13{height:8.566894pt;}
.he{height:9.238952pt;}
.hc{height:9.240966pt;}
.h28{height:9.295680pt;}
.h33{height:9.443870pt;}
.h30{height:9.466200pt;}
.h2d{height:9.651767pt;}
.h25{height:9.845472pt;}
.h35{height:9.854273pt;}
.h20{height:10.054128pt;}
.h10{height:10.185607pt;}
.h11{height:10.973144pt;}
.h26{height:11.737728pt;}
.h2c{height:11.985024pt;}
.h2f{height:12.262017pt;}
.h21{height:13.207152pt;}
.h1d{height:13.420224pt;}
.h31{height:13.760409pt;}
.h14{height:13.775319pt;}
.h16{height:14.128393pt;}
.h1b{height:15.406320pt;}
.h1f{height:15.480288pt;}
.h1a{height:16.402378pt;}
.h29{height:28.605744pt;}
.h5{height:29.499997pt;}
.h23{height:31.016363pt;}
.hd{height:31.576975pt;}
.hf{height:32.686561pt;}
.h2e{height:32.808441pt;}
.h24{height:32.996131pt;}
.h32{height:33.626318pt;}
.h34{height:34.911907pt;}
.h1e{height:35.688854pt;}
.hb{height:35.865600pt;}
.h15{height:36.270063pt;}
.h17{height:37.199697pt;}
.h27{height:37.272679pt;}
.h1c{height:39.595622pt;}
.h8{height:39.850400pt;}
.h7{height:40.610943pt;}
.h9{height:44.422874pt;}
.ha{height:44.428207pt;}
.h6{height:45.525402pt;}
.h2{height:52.635997pt;}
.h4{height:52.641330pt;}
.h36{height:53.279733pt;}
.h1{height:59.510080pt;}
.h3{height:61.642735pt;}
.h2a{height:62.691762pt;}
.h18{height:75.797067pt;}
.h19{height:76.298400pt;}
.h2b{height:86.670642pt;}
.h0{height:1056.000000pt;}
.w16{width:4.781424pt;}
.w17{width:5.071776pt;}
.w8{width:5.772583pt;}
.wa{width:5.933044pt;}
.w7{width:5.941101pt;}
.w23{width:6.411300pt;}
.w9{width:6.431213pt;}
.w5{width:8.789794pt;}
.w24{width:9.310785pt;}
.w22{width:10.251451pt;}
.w1a{width:10.400784pt;}
.w19{width:10.540992pt;}
.w1f{width:10.861152pt;}
.w3{width:10.898620pt;}
.w27{width:11.686182pt;}
.wb{width:11.901080pt;}
.wd{width:12.206115pt;}
.w26{width:12.823389pt;}
.wc{width:12.845784pt;}
.we{width:13.175033pt;}
.w1{width:13.759398pt;}
.w12{width:14.017488pt;}
.w14{width:15.306960pt;}
.w2{width:15.745360pt;}
.w13{width:15.794928pt;}
.wf{width:16.551168pt;}
.w15{width:16.614096pt;}
.w25{width:16.662751pt;}
.w10{width:17.582304pt;}
.w6{width:21.374266pt;}
.w1b{width:23.712816pt;}
.w1c{width:24.945984pt;}
.w4{width:25.262266pt;}
.w1e{width:25.461552pt;}
.w20{width:25.645990pt;}
.w11{width:33.117792pt;}
.w29{width:53.194693pt;}
.w2a{width:61.520544pt;}
.w28{width:64.726983pt;}
.w18{width:74.699952pt;}
.w1d{width:83.880816pt;}
.w21{width:86.809824pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x41{left:8.331412pt;}
.x35{left:41.000352pt;}
.x1{left:84.714667pt;}
.x3{left:89.501333pt;}
.x2{left:98.501333pt;}
.x7{left:100.200000pt;}
.xf{left:101.866667pt;}
.x1c{left:103.925333pt;}
.x9{left:106.230667pt;}
.x4{left:108.070667pt;}
.x46{left:111.305333pt;}
.x48{left:112.234667pt;}
.xb{left:148.461333pt;}
.x1b{left:159.301333pt;}
.x1d{left:162.246667pt;}
.xe{left:181.684000pt;}
.x40{left:206.316229pt;}
.x6{left:210.077333pt;}
.x28{left:217.940000pt;}
.x3e{left:220.961911pt;}
.x3f{left:224.907812pt;}
.x1f{left:238.461333pt;}
.x37{left:245.110785pt;}
.x2f{left:260.054288pt;}
.x1a{left:272.461333pt;}
.x2e{left:276.543632pt;}
.x32{left:286.629776pt;}
.x38{left:300.352943pt;}
.x45{left:314.112000pt;}
.x18{left:326.815157pt;}
.x34{left:328.061792pt;}
.xd{left:330.420000pt;}
.x8{left:331.329333pt;}
.x20{left:334.477333pt;}
.x12{left:336.996064pt;}
.x16{left:342.659211pt;}
.x19{left:347.955780pt;}
.xa{left:350.993333pt;}
.x39{left:355.596473pt;}
.xc{left:361.040000pt;}
.x3d{left:362.303921pt;}
.x23{left:364.021333pt;}
.x17{left:369.163542pt;}
.x2a{left:376.139888pt;}
.x36{left:377.465792pt;}
.x30{left:380.988656pt;}
.x14{left:382.020597pt;}
.x1e{left:383.516000pt;}
.x13{left:386.856595pt;}
.x44{left:388.741447pt;}
.x10{left:395.213345pt;}
.x2b{left:399.572288pt;}
.x24{left:402.897333pt;}
.x3a{left:410.838859pt;}
.x11{left:416.182765pt;}
.x21{left:418.497333pt;}
.x25{left:424.364000pt;}
.x47{left:427.042667pt;}
.x15{left:431.405115pt;}
.x26{left:432.337333pt;}
.x22{left:437.433333pt;}
.x27{left:448.289333pt;}
.x2c{left:452.065280pt;}
.x2d{left:453.747776pt;}
.x3b{left:466.081246pt;}
.x31{left:490.504352pt;}
.x5{left:493.662667pt;}
.x3c{left:521.323633pt;}
.x29{left:528.555920pt;}
.x33{left:550.676768pt;}
.x42{left:583.353522pt;}
.x43{left:598.000795pt;}
}




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