
    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_dca6823df021c2c2ba5c180b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_1cc6519c1540edd5d304e53b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_60bcc33571eb39f42aa260c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.189000;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_d122525b85f5a724a2060eeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958636;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_65d2123fb2b234991c3d0345.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091000;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_40f837d712faf4d486ebf134.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_047a063927477a50ee92d378.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_c6eefb9fb0e9e93f8586155e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0d0fcd0687cec78f9f853c19.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.133000;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_1d43e03d62dc8ac694c7e2e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_774330d72a37d1cb8440d5ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091000;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_e67a5f6c151bcb1fd828beb0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964000;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_1286be10130961b93ff9a2bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;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_6b695b4370a31b93a1972049.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.929000;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_daa28c1940ef5a913aca8789.woff2')format("woff");}.fff{font-family:fff;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;}
.m21{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);}
.m54{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243098,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244895,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246016,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246191,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247284,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m31{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.255898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255898,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256159,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.256161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256161,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.256186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256186,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.977400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.983000px;}
.v3{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.ls27{letter-spacing:-0.627000px;}
.ls19{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.513000px;}
.ls22{letter-spacing:-0.342000px;}
.ls1a{letter-spacing:-0.332310px;}
.ls18{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.198000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.171000px;}
.ls15{letter-spacing:-0.162000px;}
.ls39{letter-spacing:-0.139920px;}
.ls10{letter-spacing:-0.132000px;}
.ls35{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.114000px;}
.ls12{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.102000px;}
.ls36{letter-spacing:-0.069960px;}
.lsc{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.054000px;}
.ls4{letter-spacing:-0.051000px;}
.lse{letter-spacing:-0.031482px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000042px;}
.ls7{letter-spacing:0.000360px;}
.ls1b{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.020055px;}
.ls14{letter-spacing:0.020653px;}
.ls32{letter-spacing:0.030000px;}
.ls28{letter-spacing:0.033000px;}
.ls3{letter-spacing:0.051000px;}
.lsb{letter-spacing:0.054000px;}
.ls2f{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls8{letter-spacing:0.076599px;}
.ls29{letter-spacing:0.076956px;}
.ls9{letter-spacing:0.077190px;}
.ls2d{letter-spacing:0.099000px;}
.ls2c{letter-spacing:0.099672px;}
.ls2{letter-spacing:0.102000px;}
.lsa{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.153000px;}
.ls2a{letter-spacing:0.153912px;}
.ls17{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.165000px;}
.ls33{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.198000px;}
.ls23{letter-spacing:0.231000px;}
.ls3c{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.502800px;}
.ls1d{letter-spacing:0.885000px;}
.ls2b{letter-spacing:0.985200px;}
.ls34{letter-spacing:1.950600px;}
.ls16{letter-spacing:2.478040px;}
.ls25{letter-spacing:84.461400px;}
.ls30{letter-spacing:104.055000px;}
.ls31{letter-spacing:107.346110px;}
.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;}
}
.ws15{word-spacing:-14.586000px;}
.ws11{word-spacing:-14.454000px;}
.ws54{word-spacing:-13.398000px;}
.ws38{word-spacing:-13.332000px;}
.ws2f{word-spacing:-13.266000px;}
.ws13{word-spacing:-13.200000px;}
.ws5f{word-spacing:-13.140000px;}
.ws39{word-spacing:-13.134000px;}
.ws25{word-spacing:-13.068000px;}
.ws37{word-spacing:-12.936000px;}
.ws46{word-spacing:-12.483000px;}
.ws5e{word-spacing:-12.000000px;}
.ws3a{word-spacing:-11.988000px;}
.ws3f{word-spacing:-11.913000px;}
.ws16{word-spacing:-11.826000px;}
.ws31{word-spacing:-11.772000px;}
.ws30{word-spacing:-11.718000px;}
.ws32{word-spacing:-11.664000px;}
.ws42{word-spacing:-11.400000px;}
.ws4e{word-spacing:-11.286000px;}
.ws7{word-spacing:-11.067000px;}
.ws41{word-spacing:-10.830000px;}
.ws19{word-spacing:-10.800000px;}
.ws6{word-spacing:-10.353000px;}
.ws5{word-spacing:-10.200000px;}
.ws3{word-spacing:-10.149000px;}
.ws58{word-spacing:-8.580594px;}
.ws57{word-spacing:-8.503638px;}
.ws14{word-spacing:-8.426682px;}
.ws5d{word-spacing:-7.660620px;}
.ws49{word-spacing:-7.277589px;}
.ws40{word-spacing:-6.945279px;}
.ws18{word-spacing:-6.894558px;}
.ws1b{word-spacing:-6.863076px;}
.ws4{word-spacing:-6.511527px;}
.ws3c{word-spacing:-2.970000px;}
.ws33{word-spacing:-2.904000px;}
.ws60{word-spacing:-2.640000px;}
.ws48{word-spacing:-2.574000px;}
.ws1e{word-spacing:-2.442000px;}
.ws22{word-spacing:-2.376000px;}
.ws2d{word-spacing:-2.322000px;}
.ws9{word-spacing:-2.244000px;}
.ws4a{word-spacing:-2.214000px;}
.ws68{word-spacing:-2.160000px;}
.wsc{word-spacing:-2.091000px;}
.ws66{word-spacing:-2.040000px;}
.ws52{word-spacing:-1.998000px;}
.ws28{word-spacing:-1.782000px;}
.ws43{word-spacing:-1.767000px;}
.ws35{word-spacing:-1.386000px;}
.ws45{word-spacing:-1.350000px;}
.wsd{word-spacing:-1.275000px;}
.ws27{word-spacing:-1.122000px;}
.ws21{word-spacing:-1.080000px;}
.ws67{word-spacing:-0.660000px;}
.ws51{word-spacing:-0.540000px;}
.ws5b{word-spacing:-0.462000px;}
.ws6e{word-spacing:-0.300000px;}
.ws3d{word-spacing:-0.264000px;}
.ws6f{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.198000px;}
.ws6c{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.162000px;}
.wse{word-spacing:-0.153000px;}
.ws1c{word-spacing:-0.132000px;}
.ws62{word-spacing:-0.120000px;}
.ws17{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.102000px;}
.ws12{word-spacing:-0.066000px;}
.ws64{word-spacing:-0.060000px;}
.ws47{word-spacing:-0.057000px;}
.ws1a{word-spacing:-0.054000px;}
.ws2{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws24{word-spacing:-0.039000px;}
.ws26{word-spacing:-0.031482px;}
.ws1{word-spacing:0.000000px;}
.ws5c{word-spacing:0.034980px;}
.wsa{word-spacing:0.051000px;}
.ws23{word-spacing:0.054000px;}
.ws65{word-spacing:0.060000px;}
.ws1f{word-spacing:0.066000px;}
.wsf{word-spacing:0.102000px;}
.ws2e{word-spacing:0.108000px;}
.ws50{word-spacing:0.114000px;}
.ws61{word-spacing:0.120000px;}
.ws29{word-spacing:0.132000px;}
.ws6a{word-spacing:0.139920px;}
.ws36{word-spacing:0.162000px;}
.ws4f{word-spacing:0.171000px;}
.ws6b{word-spacing:0.180000px;}
.ws2b{word-spacing:0.198000px;}
.ws69{word-spacing:0.240000px;}
.ws3b{word-spacing:0.264000px;}
.ws53{word-spacing:0.342000px;}
.ws2a{word-spacing:0.462000px;}
.ws4d{word-spacing:0.513000px;}
.ws4c{word-spacing:0.528000px;}
.ws20{word-spacing:0.540000px;}
.ws44{word-spacing:0.570000px;}
.ws4b{word-spacing:0.594000px;}
.ws34{word-spacing:0.990000px;}
.wsb{word-spacing:1.428000px;}
.ws55{word-spacing:1.584000px;}
.ws59{word-spacing:1.650000px;}
.ws5a{word-spacing:2.046000px;}
.ws63{word-spacing:2.580000px;}
.ws6d{word-spacing:2.640000px;}
.ws56{word-spacing:2.772000px;}
.ws1d{word-spacing:2.838000px;}
.ws2c{word-spacing:2.904000px;}
._12{margin-left:-13.700700px;}
._7{margin-left:-11.691000px;}
._5{margin-left:-6.624000px;}
._e{margin-left:-5.443500px;}
._1{margin-left:-4.368000px;}
._9{margin-left:-3.360659px;}
._3{margin-left:-2.340000px;}
._0{margin-left:-1.014000px;}
._6{width:1.412700px;}
._4{width:2.473200px;}
._8{width:3.480000px;}
._2{width:4.836000px;}
._f{width:44.631000px;}
._10{width:53.808000px;}
._a{width:57.101400px;}
._c{width:58.197000px;}
._11{width:74.145600px;}
._d{width:84.462600px;}
._b{width:85.557000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:29.733000px;}
.fs8{font-size:31.482000px;}
.fsb{font-size:33.231000px;}
.fsd{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs6{font-size:365.010000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:106.299150px;}
.yfc{bottom:106.299300px;}
.yc1{bottom:106.299450px;}
.y39{bottom:125.460000px;}
.y5d{bottom:125.799150px;}
.yfb{bottom:125.799300px;}
.y121{bottom:125.799450px;}
.yc0{bottom:125.799600px;}
.y228{bottom:125.833050px;}
.y38{bottom:142.710000px;}
.y5c{bottom:145.299150px;}
.yfa{bottom:145.299300px;}
.y14e{bottom:145.299450px;}
.y120{bottom:145.299600px;}
.ybf{bottom:145.299750px;}
.y227{bottom:145.366800px;}
.y202{bottom:151.887000px;}
.y19b{bottom:153.813300px;}
.y37{bottom:159.960000px;}
.y5b{bottom:164.799150px;}
.yf9{bottom:164.799300px;}
.y14d{bottom:164.799450px;}
.ybe{bottom:164.799750px;}
.ydf{bottom:164.799900px;}
.y226{bottom:164.900550px;}
.y19a{bottom:173.613300px;}
.y201{bottom:174.387000px;}
.y36{bottom:177.210000px;}
.y180{bottom:184.113300px;}
.y5a{bottom:184.299150px;}
.yf8{bottom:184.299300px;}
.y14c{bottom:184.299450px;}
.ybd{bottom:184.299900px;}
.yde{bottom:184.300050px;}
.y225{bottom:184.434300px;}
.y1ec{bottom:187.263300px;}
.y1b6{bottom:187.517250px;}
.y35{bottom:194.460000px;}
.y200{bottom:196.887000px;}
.y199{bottom:201.917250px;}
.y59{bottom:203.799150px;}
.yf7{bottom:203.799300px;}
.y14b{bottom:203.799450px;}
.y13b{bottom:203.799900px;}
.ybc{bottom:203.800050px;}
.ydd{bottom:203.800200px;}
.y224{bottom:203.968200px;}
.y17f{bottom:204.363300px;}
.y1eb{bottom:207.513300px;}
.y1b5{bottom:210.017250px;}
.y34{bottom:211.710000px;}
.y179{bottom:215.559750px;}
.y1ff{bottom:219.387000px;}
.y198{bottom:221.717250px;}
.y58{bottom:223.299150px;}
.y14a{bottom:223.299600px;}
.y13a{bottom:223.299900px;}
.ybb{bottom:223.300200px;}
.ydc{bottom:223.300350px;}
.y223{bottom:223.501950px;}
.y33{bottom:228.960000px;}
.y17e{bottom:233.117250px;}
.y1ea{bottom:236.267250px;}
.y178{bottom:238.059750px;}
.y1b4{bottom:241.021200px;}
.y1fe{bottom:241.887000px;}
.y57{bottom:242.799150px;}
.y139{bottom:242.799900px;}
.yba{bottom:242.800350px;}
.ydb{bottom:242.800500px;}
.y222{bottom:243.035700px;}
.y162{bottom:246.121200px;}
.y32{bottom:246.210000px;}
.y197{bottom:250.021200px;}
.y114{bottom:252.375150px;}
.y17d{bottom:253.367250px;}
.y1e9{bottom:256.517250px;}
.y177{bottom:260.559750px;}
.y1b3{bottom:261.721200px;}
.y56{bottom:262.299150px;}
.yb9{bottom:262.300500px;}
.yda{bottom:262.300650px;}
.y221{bottom:262.569600px;}
.y31{bottom:263.460000px;}
.y1fd{bottom:264.387000px;}
.y8c{bottom:267.159600px;}
.y161{bottom:268.621200px;}
.y196{bottom:269.821200px;}
.yf6{bottom:279.871200px;}
.y30{bottom:280.710000px;}
.y55{bottom:281.799150px;}
.yb8{bottom:281.800500px;}
.y220{bottom:282.103350px;}
.y17c{bottom:282.121200px;}
.y176{bottom:283.059750px;}
.y113{bottom:283.379100px;}
.y1d0{bottom:284.721450px;}
.y1e8{bottom:285.271200px;}
.y8b{bottom:286.659600px;}
.y1fc{bottom:286.887000px;}
.y1b2{bottom:290.925150px;}
.y160{bottom:291.121200px;}
.y2f{bottom:297.960000px;}
.y195{bottom:298.125150px;}
.y54{bottom:301.299150px;}
.y21f{bottom:301.637100px;}
.y17b{bottom:302.371200px;}
.y112{bottom:303.629100px;}
.y1cf{bottom:304.971450px;}
.y1e7{bottom:305.521200px;}
.y138{bottom:305.559750px;}
.y8a{bottom:306.159600px;}
.yd9{bottom:308.729100px;}
.y1fb{bottom:309.387000px;}
.yf5{bottom:310.875150px;}
.y1b1{bottom:311.625150px;}
.y15f{bottom:313.621200px;}
.y2e{bottom:315.210000px;}
.y194{bottom:317.925150px;}
.y53{bottom:320.799150px;}
.y21e{bottom:321.171000px;}
.y149{bottom:321.629100px;}
.y89{bottom:325.659600px;}
.y137{bottom:328.059750px;}
.yd8{bottom:328.529100px;}
.yf4{bottom:331.125150px;}
.y1fa{bottom:331.887000px;}
.y111{bottom:332.383050px;}
.y2d{bottom:332.460000px;}
.y1ce{bottom:333.725400px;}
.y1e6{bottom:334.275150px;}
.y15e{bottom:336.121200px;}
.y52{bottom:340.299150px;}
.y21d{bottom:340.704750px;}
.y1b0{bottom:340.829100px;}
.y193{bottom:346.229100px;}
.yd7{bottom:348.329100px;}
.y2c{bottom:349.710000px;}
.y136{bottom:350.559750px;}
.y17a{bottom:351.375150px;}
.y110{bottom:352.633050px;}
.y88{bottom:353.663550px;}
.y1cd{bottom:353.975400px;}
.ya1{bottom:354.067500px;}
.y1f9{bottom:354.387000px;}
.y1e5{bottom:354.525150px;}
.yf3{bottom:359.879100px;}
.y21c{bottom:360.238500px;}
.y1af{bottom:361.529100px;}
.y192{bottom:366.029100px;}
.y2b{bottom:366.960000px;}
.yb7{bottom:367.390950px;}
.y10f{bottom:372.883050px;}
.y175{bottom:373.059750px;}
.y1e4{bottom:374.775150px;}
.y15d{bottom:375.629100px;}
.y87{bottom:375.713550px;}
.ya0{bottom:376.567500px;}
.yd6{bottom:376.633050px;}
.y1f8{bottom:376.887000px;}
.y21b{bottom:379.772250px;}
.yf2{bottom:380.129100px;}
.y135{bottom:381.563550px;}
.y1cc{bottom:382.729350px;}
.y2a{bottom:384.210000px;}
.y51{bottom:384.437250px;}
.y73{bottom:385.579350px;}
.yb6{bottom:389.890950px;}
.y1ae{bottom:390.733050px;}
.y191{bottom:394.333050px;}
.y174{bottom:395.559750px;}
.y15c{bottom:395.879100px;}
.yd5{bottom:396.433050px;}
.y9f{bottom:399.067500px;}
.y21a{bottom:399.306000px;}
.y1f7{bottom:399.387000px;}
.yf1{bottom:400.379100px;}
.y29{bottom:401.460000px;}
.y10e{bottom:401.637000px;}
.y134{bottom:401.813550px;}
.y1cb{bottom:402.979350px;}
.y1e3{bottom:403.529100px;}
.y86{bottom:406.267500px;}
.y50{bottom:407.087250px;}
.y72{bottom:408.454350px;}
.yc{bottom:409.846350px;}
.y1ad{bottom:411.433050px;}
.y190{bottom:414.133050px;}
.y173{bottom:418.059750px;}
.y28{bottom:418.710000px;}
.y219{bottom:418.839900px;}
.yb5{bottom:420.894900px;}
.y9e{bottom:421.567500px;}
.y148{bottom:421.887000px;}
.y10d{bottom:424.137000px;}
.y15b{bottom:424.633050px;}
.yd4{bottom:424.737000px;}
.y1e2{bottom:426.029100px;}
.y9{bottom:428.876250px;}
.yf0{bottom:429.133050px;}
.y4f{bottom:429.737250px;}
.y133{bottom:430.567500px;}
.y71{bottom:431.329350px;}
.y1ca{bottom:431.733300px;}
.y1ac{bottom:432.133050px;}
.y85{bottom:434.271450px;}
.y27{bottom:435.960000px;}
.y217{bottom:438.373650px;}
.y172{bottom:440.559750px;}
.yb4{bottom:441.144900px;}
.y147{bottom:442.137000px;}
.y18f{bottom:442.437000px;}
.y218{bottom:443.368650px;}
.y9d{bottom:444.067500px;}
.y1f6{bottom:444.387000px;}
.yd3{bottom:444.537000px;}
.y15a{bottom:444.883050px;}
.y8{bottom:446.876250px;}
.y11f{bottom:449.383050px;}
.y132{bottom:450.817500px;}
.y4d{bottom:452.387250px;}
.y26{bottom:453.210000px;}
.y70{bottom:454.204350px;}
.y10c{bottom:455.140950px;}
.y84{bottom:456.321450px;}
.y1e1{bottom:457.033050px;}
.y4e{bottom:457.881750px;}
.y216{bottom:457.907400px;}
.yef{bottom:460.137000px;}
.y1c9{bottom:460.487250px;}
.y1ab{bottom:461.337000px;}
.y18e{bottom:462.237000px;}
.y171{bottom:463.059750px;}
.yd2{bottom:464.337000px;}
.y9c{bottom:466.567500px;}
.y1f5{bottom:466.887000px;}
.yb3{bottom:469.898850px;}
.y146{bottom:470.890950px;}
.y131{bottom:471.067500px;}
.y159{bottom:473.637000px;}
.y4c{bottom:475.037250px;}
.y10b{bottom:475.390950px;}
.y1e0{bottom:476.833050px;}
.y6f{bottom:477.079350px;}
.y215{bottom:477.441300px;}
.y11e{bottom:478.137000px;}
.y83{bottom:478.371450px;}
.yee{bottom:480.387000px;}
.y1c8{bottom:482.687250px;}
.y25{bottom:483.215850px;}
.y1aa{bottom:483.837000px;}
.y9b{bottom:489.067500px;}
.y1f4{bottom:489.387000px;}
.yb2{bottom:490.148850px;}
.y18d{bottom:490.540950px;}
.yd1{bottom:492.640950px;}
.y145{bottom:493.390950px;}
.y158{bottom:493.887000px;}
.y214{bottom:496.975050px;}
.y4b{bottom:497.687250px;}
.yb{bottom:497.995350px;}
.y11d{bottom:498.387000px;}
.y130{bottom:499.821450px;}
.y6e{bottom:499.954350px;}
.y82{bottom:500.421450px;}
.y24{bottom:500.465850px;}
.y170{bottom:502.567500px;}
.y10a{bottom:504.144900px;}
.y1c7{bottom:504.887250px;}
.y1df{bottom:505.137000px;}
.yed{bottom:509.140950px;}
.y18c{bottom:510.340950px;}
.yb1{bottom:510.398850px;}
.y9a{bottom:511.567500px;}
.y1f3{bottom:511.887000px;}
.y1a9{bottom:514.840950px;}
.yd0{bottom:515.140950px;}
.y144{bottom:515.890950px;}
.y213{bottom:516.508800px;}
.y23{bottom:517.715850px;}
.y4a{bottom:520.337250px;}
.y12f{bottom:522.321450px;}
.y81{bottom:522.471450px;}
.y157{bottom:522.640950px;}
.y16f{bottom:522.817500px;}
.y6d{bottom:522.829350px;}
.y109{bottom:524.394900px;}
.y1de{bottom:524.937000px;}
.y1c6{bottom:527.087250px;}
.y11c{bottom:527.140950px;}
.y7{bottom:527.655150px;}
.yec{bottom:531.640950px;}
.y99{bottom:534.067500px;}
.y1f2{bottom:534.387000px;}
.y22{bottom:534.965850px;}
.y1a8{bottom:535.540950px;}
.y212{bottom:536.042700px;}
.y18b{bottom:538.644900px;}
.yb0{bottom:539.152800px;}
.y156{bottom:542.890950px;}
.y49{bottom:542.987250px;}
.y80{bottom:544.521450px;}
.y108{bottom:544.644900px;}
.y12e{bottom:544.821450px;}
.y6{bottom:545.655150px;}
.y6c{bottom:545.704350px;}
.ycf{bottom:546.144900px;}
.y11b{bottom:547.390950px;}
.y1c5{bottom:549.287250px;}
.y16e{bottom:551.571450px;}
.y21{bottom:552.215850px;}
.y1dd{bottom:553.240950px;}
.y143{bottom:555.398850px;}
.y211{bottom:555.576450px;}
.y98{bottom:556.567500px;}
.y1f1{bottom:556.887000px;}
.y18a{bottom:558.444900px;}
.yaf{bottom:561.652800px;}
.yeb{bottom:562.644900px;}
.y155{bottom:563.140950px;}
.y1a7{bottom:564.744900px;}
.y48{bottom:565.637250px;}
.yce{bottom:565.644900px;}
.y7f{bottom:566.571450px;}
.y12d{bottom:567.321450px;}
.y5{bottom:568.151250px;}
.y6b{bottom:568.579350px;}
.y20{bottom:569.465850px;}
.y1c4{bottom:571.487250px;}
.y16d{bottom:571.821450px;}
.y1dc{bottom:573.040950px;}
.y107{bottom:573.398850px;}
.y210{bottom:575.110200px;}
.y142{bottom:575.648850px;}
.y11a{bottom:576.144900px;}
.y189{bottom:578.244900px;}
.y97{bottom:579.067500px;}
.yea{bottom:582.894900px;}
.yae{bottom:584.152800px;}
.y1a6{bottom:585.444900px;}
.y1f{bottom:586.715850px;}
.y47{bottom:588.287250px;}
.y12c{bottom:589.821450px;}
.y6a{bottom:591.454350px;}
.y154{bottom:591.894900px;}
.y16c{bottom:592.071450px;}
.ycd{bottom:593.648850px;}
.y1c3{bottom:593.687250px;}
.y20f{bottom:594.643950px;}
.y106{bottom:595.898850px;}
.y119{bottom:596.394900px;}
.y7e{bottom:597.125400px;}
.y188{bottom:598.044900px;}
.y1db{bottom:601.344750px;}
.y96{bottom:601.567500px;}
.y1e{bottom:603.965850px;}
.y141{bottom:604.402800px;}
.y1a5{bottom:606.144900px;}
.yad{bottom:606.652800px;}
.y46{bottom:610.937250px;}
.ye9{bottom:611.648850px;}
.ycc{bottom:613.148850px;}
.y69{bottom:614.329350px;}
.y1c2{bottom:615.887250px;}
.y7d{bottom:616.625400px;}
.y1f0{bottom:616.644900px;}
.y187{bottom:617.844750px;}
.y105{bottom:618.398850px;}
.y12b{bottom:620.825400px;}
.y1da{bottom:621.144900px;}
.y1d{bottom:621.215850px;}
.y153{bottom:622.898850px;}
.y95{bottom:624.067500px;}
.y140{bottom:624.652800px;}
.y118{bottom:625.148850px;}
.y20e{bottom:625.681800px;}
.yac{bottom:629.152800px;}
.ycb{bottom:632.648850px;}
.y45{bottom:633.587250px;}
.ye8{bottom:634.148850px;}
.y1a4{bottom:635.348850px;}
.y68{bottom:637.204350px;}
.y1c1{bottom:638.087250px;}
.y1c{bottom:638.465850px;}
.y12a{bottom:641.075400px;}
.y152{bottom:643.148850px;}
.y7c{bottom:644.629350px;}
.y13f{bottom:644.902800px;}
.y20d{bottom:645.215550px;}
.y117{bottom:645.398850px;}
.y186{bottom:646.148850px;}
.y94{bottom:646.567500px;}
.y104{bottom:649.402800px;}
.y1d9{bottom:649.448850px;}
.yab{bottom:651.652800px;}
.y16b{bottom:651.829350px;}
.y1b{bottom:655.715850px;}
.y44{bottom:656.237250px;}
.ye7{bottom:656.648850px;}
.y67{bottom:660.079350px;}
.y1bf{bottom:660.287250px;}
.yca{bottom:660.652800px;}
.y20c{bottom:664.749300px;}
.y1ef{bottom:665.648850px;}
.y1c0{bottom:665.781750px;}
.y7b{bottom:666.679350px;}
.y1a3{bottom:667.852800px;}
.y185{bottom:668.648850px;}
.y93{bottom:669.067500px;}
.y1d8{bottom:669.248850px;}
.y103{bottom:669.652800px;}
.y129{bottom:669.829350px;}
.y151{bottom:671.902800px;}
.y16a{bottom:672.079350px;}
.y1a{bottom:672.965850px;}
.y13e{bottom:673.656600px;}
.y116{bottom:674.152800px;}
.y43{bottom:678.887250px;}
.yc9{bottom:680.152800px;}
.y1be{bottom:682.487250px;}
.yaa{bottom:682.656600px;}
.y66{bottom:682.954350px;}
.y20b{bottom:684.283050px;}
.y232{bottom:685.638750px;}
.ye6{bottom:687.652800px;}
.y1a2{bottom:688.102800px;}
.y7a{bottom:688.729350px;}
.y128{bottom:690.079350px;}
.y19{bottom:690.215850px;}
.y150{bottom:692.152800px;}
.y115{bottom:694.402800px;}
.y13d{bottom:696.156600px;}
.y1d7{bottom:697.552800px;}
.y102{bottom:698.406600px;}
.y184{bottom:699.652800px;}
.y92{bottom:700.071450px;}
.y169{bottom:700.833300px;}
.y42{bottom:701.537250px;}
.ya9{bottom:702.906600px;}
.y20a{bottom:703.816800px;}
.y1bd{bottom:704.687250px;}
.y231{bottom:705.138750px;}
.y65{bottom:705.829350px;}
.y18{bottom:707.465850px;}
.ye5{bottom:707.902800px;}
.yc8{bottom:708.156600px;}
.y127{bottom:710.329350px;}
.y79{bottom:710.779350px;}
.y14f{bottom:712.402800px;}
.y1ee{bottom:714.652800px;}
.y1a1{bottom:716.856600px;}
.y1d6{bottom:717.352800px;}
.y101{bottom:718.656600px;}
.y183{bottom:719.152800px;}
.y168{bottom:721.083300px;}
.ya8{bottom:723.156600px;}
.y209{bottom:723.350700px;}
.y41{bottom:724.187250px;}
.y230{bottom:724.638750px;}
.y16{bottom:724.715850px;}
.y1bc{bottom:726.887250px;}
.yc7{bottom:727.656600px;}
.ye4{bottom:728.152800px;}
.y17{bottom:728.961600px;}
.y91{bottom:731.075400px;}
.y78{bottom:732.829350px;}
.y100{bottom:738.906600px;}
.y126{bottom:739.083300px;}
.y1a0{bottom:739.356600px;}
.y13c{bottom:741.156600px;}
.y167{bottom:741.333300px;}
.y15{bottom:741.965850px;}
.y208{bottom:742.884450px;}
.ya7{bottom:743.406600px;}
.y22f{bottom:744.138750px;}
.y1d5{bottom:745.656600px;}
.y64{bottom:745.712250px;}
.y40{bottom:746.837250px;}
.yc6{bottom:747.156600px;}
.y1bb{bottom:749.087250px;}
.ye3{bottom:756.906600px;}
.y14{bottom:759.215850px;}
.y125{bottom:761.583300px;}
.y207{bottom:762.418200px;}
.y22e{bottom:763.638750px;}
.y1ed{bottom:763.656600px;}
.y1d4{bottom:765.456600px;}
.y4{bottom:766.622250px;}
.y182{bottom:766.656600px;}
.yff{bottom:767.660550px;}
.y63{bottom:768.587250px;}
.y3f{bottom:769.487250px;}
.y166{bottom:770.087250px;}
.y19f{bottom:770.360550px;}
.y90{bottom:770.583300px;}
.y1ba{bottom:771.287250px;}
.y77{bottom:771.887250px;}
.ya6{bottom:772.160550px;}
.yc5{bottom:775.160550px;}
.y12{bottom:776.465850px;}
.ye2{bottom:779.406600px;}
.y13{bottom:780.711600px;}
.y206{bottom:781.952100px;}
.y22d{bottom:783.138750px;}
.y124{bottom:784.083300px;}
.y3{bottom:789.122250px;}
.yfe{bottom:790.160550px;}
.y8f{bottom:790.833300px;}
.y19e{bottom:791.060550px;}
.y62{bottom:791.462250px;}
.y3e{bottom:792.137250px;}
.ya5{bottom:792.410550px;}
.y165{bottom:792.587250px;}
.y1b9{bottom:793.487250px;}
.y11{bottom:793.715850px;}
.y1d3{bottom:793.760550px;}
.y76{bottom:793.937250px;}
.yc4{bottom:794.660550px;}
.y205{bottom:801.485850px;}
.ye1{bottom:801.906600px;}
.y22c{bottom:802.638750px;}
.y123{bottom:806.583300px;}
.y10{bottom:810.965850px;}
.y8e{bottom:811.083300px;}
.y19d{bottom:811.760550px;}
.ya4{bottom:812.660550px;}
.y1d2{bottom:813.560550px;}
.y181{bottom:814.160550px;}
.y61{bottom:814.337250px;}
.y3b{bottom:814.787250px;}
.y164{bottom:815.087250px;}
.y1b8{bottom:815.687250px;}
.y75{bottom:815.987250px;}
.y204{bottom:821.019600px;}
.yfd{bottom:821.164500px;}
.y22b{bottom:822.138750px;}
.yc3{bottom:822.664500px;}
.yf{bottom:828.215850px;}
.y122{bottom:829.083300px;}
.y8d{bottom:831.333300px;}
.y2{bottom:832.484250px;}
.ya3{bottom:832.910550px;}
.y60{bottom:837.212250px;}
.y3d{bottom:837.437250px;}
.y163{bottom:837.587250px;}
.y1b7{bottom:837.887250px;}
.y74{bottom:838.037250px;}
.y203{bottom:840.553500px;}
.y19c{bottom:840.964500px;}
.ye0{bottom:841.414500px;}
.y22a{bottom:841.638750px;}
.y1d1{bottom:841.864500px;}
.yc2{bottom:842.164500px;}
.ye{bottom:845.465850px;}
.y1{bottom:857.984250px;}
.y3c{bottom:860.087250px;}
.y229{bottom:861.138750px;}
.ya2{bottom:861.664500px;}
.yd{bottom:862.715850px;}
.y5f{bottom:871.653600px;}
.y3a{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.hc{height:20.842833px;}
.h1e{height:24.520980px;}
.h11{height:26.973078px;}
.h1a{height:31.859784px;}
.h15{height:32.292000px;}
.h8{height:33.648000px;}
.h9{height:34.080000px;}
.h6{height:34.494545px;}
.h14{height:37.854000px;}
.h7{height:39.744000px;}
.h19{height:39.957000px;}
.ha{height:42.228000px;}
.hb{height:44.268000px;}
.h12{height:44.712000px;}
.h16{height:46.266000px;}
.h13{height:46.872000px;}
.h18{height:47.196000px;}
.h1b{height:47.700000px;}
.h17{height:49.476000px;}
.h1d{height:49.680000px;}
.hd{height:50.760000px;}
.h1c{height:52.080000px;}
.h4{height:52.470000px;}
.hf{height:54.648000px;}
.h2{height:54.678000px;}
.h10{height:57.288000px;}
.h3{height:62.010000px;}
.h5{height:62.040000px;}
.he{height:255.872010px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x12{left:41.384550px;}
.x9{left:42.869550px;}
.xa{left:102.192900px;}
.x1{left:106.299150px;}
.xc{left:122.111100px;}
.x10{left:127.559100px;}
.xd{left:129.917400px;}
.x2{left:136.569750px;}
.x11{left:140.314950px;}
.xb{left:172.731000px;}
.x5{left:242.646450px;}
.x6{left:248.710950px;}
.x7{left:304.396650px;}
.x8{left:310.461150px;}
.x14{left:330.173850px;}
.x15{left:339.705300px;}
.x16{left:348.364650px;}
.x17{left:355.214400px;}
.x3{left:468.406200px;}
.x4{left:474.449250px;}
.x13{left:637.254000px;}
.xe{left:638.523000px;}
.xf{left:645.842550px;}
@media print{
.v4{vertical-align:-19.535467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.096000pt;}
.v3{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.ls27{letter-spacing:-0.557333pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.456000pt;}
.ls22{letter-spacing:-0.304000pt;}
.ls1a{letter-spacing:-0.295387pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.176000pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.152000pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls39{letter-spacing:-0.124373pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.101333pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.090667pt;}
.ls36{letter-spacing:-0.062187pt;}
.lsc{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:-0.045333pt;}
.lse{letter-spacing:-0.027984pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000037pt;}
.ls7{letter-spacing:0.000320pt;}
.ls1b{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.017826pt;}
.ls14{letter-spacing:0.018358pt;}
.ls32{letter-spacing:0.026667pt;}
.ls28{letter-spacing:0.029333pt;}
.ls3{letter-spacing:0.045333pt;}
.lsb{letter-spacing:0.048000pt;}
.ls2f{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls8{letter-spacing:0.068088pt;}
.ls29{letter-spacing:0.068405pt;}
.ls9{letter-spacing:0.068614pt;}
.ls2d{letter-spacing:0.088000pt;}
.ls2c{letter-spacing:0.088598pt;}
.ls2{letter-spacing:0.090667pt;}
.lsa{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.136000pt;}
.ls2a{letter-spacing:0.136811pt;}
.ls17{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.146667pt;}
.ls33{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.176000pt;}
.ls23{letter-spacing:0.205333pt;}
.ls3c{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.446933pt;}
.ls1d{letter-spacing:0.786667pt;}
.ls2b{letter-spacing:0.875733pt;}
.ls34{letter-spacing:1.733867pt;}
.ls16{letter-spacing:2.202702pt;}
.ls25{letter-spacing:75.076800pt;}
.ls30{letter-spacing:92.493333pt;}
.ls31{letter-spacing:95.418765pt;}
.ws15{word-spacing:-12.965333pt;}
.ws11{word-spacing:-12.848000pt;}
.ws54{word-spacing:-11.909333pt;}
.ws38{word-spacing:-11.850667pt;}
.ws2f{word-spacing:-11.792000pt;}
.ws13{word-spacing:-11.733333pt;}
.ws5f{word-spacing:-11.680000pt;}
.ws39{word-spacing:-11.674667pt;}
.ws25{word-spacing:-11.616000pt;}
.ws37{word-spacing:-11.498667pt;}
.ws46{word-spacing:-11.096000pt;}
.ws5e{word-spacing:-10.666667pt;}
.ws3a{word-spacing:-10.656000pt;}
.ws3f{word-spacing:-10.589333pt;}
.ws16{word-spacing:-10.512000pt;}
.ws31{word-spacing:-10.464000pt;}
.ws30{word-spacing:-10.416000pt;}
.ws32{word-spacing:-10.368000pt;}
.ws42{word-spacing:-10.133333pt;}
.ws4e{word-spacing:-10.032000pt;}
.ws7{word-spacing:-9.837333pt;}
.ws41{word-spacing:-9.626667pt;}
.ws19{word-spacing:-9.600000pt;}
.ws6{word-spacing:-9.202667pt;}
.ws5{word-spacing:-9.066667pt;}
.ws3{word-spacing:-9.021333pt;}
.ws58{word-spacing:-7.627195pt;}
.ws57{word-spacing:-7.558789pt;}
.ws14{word-spacing:-7.490384pt;}
.ws5d{word-spacing:-6.809440pt;}
.ws49{word-spacing:-6.468968pt;}
.ws40{word-spacing:-6.173581pt;}
.ws18{word-spacing:-6.128496pt;}
.ws1b{word-spacing:-6.100512pt;}
.ws4{word-spacing:-5.788024pt;}
.ws3c{word-spacing:-2.640000pt;}
.ws33{word-spacing:-2.581333pt;}
.ws60{word-spacing:-2.346667pt;}
.ws48{word-spacing:-2.288000pt;}
.ws1e{word-spacing:-2.170667pt;}
.ws22{word-spacing:-2.112000pt;}
.ws2d{word-spacing:-2.064000pt;}
.ws9{word-spacing:-1.994667pt;}
.ws4a{word-spacing:-1.968000pt;}
.ws68{word-spacing:-1.920000pt;}
.wsc{word-spacing:-1.858667pt;}
.ws66{word-spacing:-1.813333pt;}
.ws52{word-spacing:-1.776000pt;}
.ws28{word-spacing:-1.584000pt;}
.ws43{word-spacing:-1.570667pt;}
.ws35{word-spacing:-1.232000pt;}
.ws45{word-spacing:-1.200000pt;}
.wsd{word-spacing:-1.133333pt;}
.ws27{word-spacing:-0.997333pt;}
.ws21{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.586667pt;}
.ws51{word-spacing:-0.480000pt;}
.ws5b{word-spacing:-0.410667pt;}
.ws6e{word-spacing:-0.266667pt;}
.ws3d{word-spacing:-0.234667pt;}
.ws6f{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.176000pt;}
.ws6c{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.144000pt;}
.wse{word-spacing:-0.136000pt;}
.ws1c{word-spacing:-0.117333pt;}
.ws62{word-spacing:-0.106667pt;}
.ws17{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.090667pt;}
.ws12{word-spacing:-0.058667pt;}
.ws64{word-spacing:-0.053333pt;}
.ws47{word-spacing:-0.050667pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws2{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws24{word-spacing:-0.034667pt;}
.ws26{word-spacing:-0.027984pt;}
.ws1{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.031093pt;}
.wsa{word-spacing:0.045333pt;}
.ws23{word-spacing:0.048000pt;}
.ws65{word-spacing:0.053333pt;}
.ws1f{word-spacing:0.058667pt;}
.wsf{word-spacing:0.090667pt;}
.ws2e{word-spacing:0.096000pt;}
.ws50{word-spacing:0.101333pt;}
.ws61{word-spacing:0.106667pt;}
.ws29{word-spacing:0.117333pt;}
.ws6a{word-spacing:0.124373pt;}
.ws36{word-spacing:0.144000pt;}
.ws4f{word-spacing:0.152000pt;}
.ws6b{word-spacing:0.160000pt;}
.ws2b{word-spacing:0.176000pt;}
.ws69{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.234667pt;}
.ws53{word-spacing:0.304000pt;}
.ws2a{word-spacing:0.410667pt;}
.ws4d{word-spacing:0.456000pt;}
.ws4c{word-spacing:0.469333pt;}
.ws20{word-spacing:0.480000pt;}
.ws44{word-spacing:0.506667pt;}
.ws4b{word-spacing:0.528000pt;}
.ws34{word-spacing:0.880000pt;}
.wsb{word-spacing:1.269333pt;}
.ws55{word-spacing:1.408000pt;}
.ws59{word-spacing:1.466667pt;}
.ws5a{word-spacing:1.818667pt;}
.ws63{word-spacing:2.293333pt;}
.ws6d{word-spacing:2.346667pt;}
.ws56{word-spacing:2.464000pt;}
.ws1d{word-spacing:2.522667pt;}
.ws2c{word-spacing:2.581333pt;}
._12{margin-left:-12.178400pt;}
._7{margin-left:-10.392000pt;}
._5{margin-left:-5.888000pt;}
._e{margin-left:-4.838667pt;}
._1{margin-left:-3.882667pt;}
._9{margin-left:-2.987252pt;}
._3{margin-left:-2.080000pt;}
._0{margin-left:-0.901333pt;}
._6{width:1.255733pt;}
._4{width:2.198400pt;}
._8{width:3.093333pt;}
._2{width:4.298667pt;}
._f{width:39.672000pt;}
._10{width:47.829333pt;}
._a{width:50.756800pt;}
._c{width:51.730667pt;}
._11{width:65.907200pt;}
._d{width:75.077867pt;}
._b{width:76.050667pt;}
.fs4{font-size:26.429333pt;}
.fs8{font-size:27.984000pt;}
.fsb{font-size:29.538667pt;}
.fsd{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs6{font-size:324.453333pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:94.488133pt;}
.yfc{bottom:94.488267pt;}
.yc1{bottom:94.488400pt;}
.y39{bottom:111.520000pt;}
.y5d{bottom:111.821467pt;}
.yfb{bottom:111.821600pt;}
.y121{bottom:111.821733pt;}
.yc0{bottom:111.821867pt;}
.y228{bottom:111.851600pt;}
.y38{bottom:126.853333pt;}
.y5c{bottom:129.154800pt;}
.yfa{bottom:129.154933pt;}
.y14e{bottom:129.155067pt;}
.y120{bottom:129.155200pt;}
.ybf{bottom:129.155333pt;}
.y227{bottom:129.214933pt;}
.y202{bottom:135.010667pt;}
.y19b{bottom:136.722933pt;}
.y37{bottom:142.186667pt;}
.y5b{bottom:146.488133pt;}
.yf9{bottom:146.488267pt;}
.y14d{bottom:146.488400pt;}
.ybe{bottom:146.488667pt;}
.ydf{bottom:146.488800pt;}
.y226{bottom:146.578267pt;}
.y19a{bottom:154.322933pt;}
.y201{bottom:155.010667pt;}
.y36{bottom:157.520000pt;}
.y180{bottom:163.656267pt;}
.y5a{bottom:163.821467pt;}
.yf8{bottom:163.821600pt;}
.y14c{bottom:163.821733pt;}
.ybd{bottom:163.822133pt;}
.yde{bottom:163.822267pt;}
.y225{bottom:163.941600pt;}
.y1ec{bottom:166.456267pt;}
.y1b6{bottom:166.682000pt;}
.y35{bottom:172.853333pt;}
.y200{bottom:175.010667pt;}
.y199{bottom:179.482000pt;}
.y59{bottom:181.154800pt;}
.yf7{bottom:181.154933pt;}
.y14b{bottom:181.155067pt;}
.y13b{bottom:181.155467pt;}
.ybc{bottom:181.155600pt;}
.ydd{bottom:181.155733pt;}
.y224{bottom:181.305067pt;}
.y17f{bottom:181.656267pt;}
.y1eb{bottom:184.456267pt;}
.y1b5{bottom:186.682000pt;}
.y34{bottom:188.186667pt;}
.y179{bottom:191.608667pt;}
.y1ff{bottom:195.010667pt;}
.y198{bottom:197.082000pt;}
.y58{bottom:198.488133pt;}
.y14a{bottom:198.488533pt;}
.y13a{bottom:198.488800pt;}
.ybb{bottom:198.489067pt;}
.ydc{bottom:198.489200pt;}
.y223{bottom:198.668400pt;}
.y33{bottom:203.520000pt;}
.y17e{bottom:207.215333pt;}
.y1ea{bottom:210.015333pt;}
.y178{bottom:211.608667pt;}
.y1b4{bottom:214.241067pt;}
.y1fe{bottom:215.010667pt;}
.y57{bottom:215.821467pt;}
.y139{bottom:215.822133pt;}
.yba{bottom:215.822533pt;}
.ydb{bottom:215.822667pt;}
.y222{bottom:216.031733pt;}
.y162{bottom:218.774400pt;}
.y32{bottom:218.853333pt;}
.y197{bottom:222.241067pt;}
.y114{bottom:224.333467pt;}
.y17d{bottom:225.215333pt;}
.y1e9{bottom:228.015333pt;}
.y177{bottom:231.608667pt;}
.y1b3{bottom:232.641067pt;}
.y56{bottom:233.154800pt;}
.yb9{bottom:233.156000pt;}
.yda{bottom:233.156133pt;}
.y221{bottom:233.395200pt;}
.y31{bottom:234.186667pt;}
.y1fd{bottom:235.010667pt;}
.y8c{bottom:237.475200pt;}
.y161{bottom:238.774400pt;}
.y196{bottom:239.841067pt;}
.yf6{bottom:248.774400pt;}
.y30{bottom:249.520000pt;}
.y55{bottom:250.488133pt;}
.yb8{bottom:250.489333pt;}
.y220{bottom:250.758533pt;}
.y17c{bottom:250.774400pt;}
.y176{bottom:251.608667pt;}
.y113{bottom:251.892533pt;}
.y1d0{bottom:253.085733pt;}
.y1e8{bottom:253.574400pt;}
.y8b{bottom:254.808533pt;}
.y1fc{bottom:255.010667pt;}
.y1b2{bottom:258.600133pt;}
.y160{bottom:258.774400pt;}
.y2f{bottom:264.853333pt;}
.y195{bottom:265.000133pt;}
.y54{bottom:267.821467pt;}
.y21f{bottom:268.121867pt;}
.y17b{bottom:268.774400pt;}
.y112{bottom:269.892533pt;}
.y1cf{bottom:271.085733pt;}
.y1e7{bottom:271.574400pt;}
.y138{bottom:271.608667pt;}
.y8a{bottom:272.141867pt;}
.yd9{bottom:274.425867pt;}
.y1fb{bottom:275.010667pt;}
.yf5{bottom:276.333467pt;}
.y1b1{bottom:277.000133pt;}
.y15f{bottom:278.774400pt;}
.y2e{bottom:280.186667pt;}
.y194{bottom:282.600133pt;}
.y53{bottom:285.154800pt;}
.y21e{bottom:285.485333pt;}
.y149{bottom:285.892533pt;}
.y89{bottom:289.475200pt;}
.y137{bottom:291.608667pt;}
.yd8{bottom:292.025867pt;}
.yf4{bottom:294.333467pt;}
.y1fa{bottom:295.010667pt;}
.y111{bottom:295.451600pt;}
.y2d{bottom:295.520000pt;}
.y1ce{bottom:296.644800pt;}
.y1e6{bottom:297.133467pt;}
.y15e{bottom:298.774400pt;}
.y52{bottom:302.488133pt;}
.y21d{bottom:302.848667pt;}
.y1b0{bottom:302.959200pt;}
.y193{bottom:307.759200pt;}
.yd7{bottom:309.625867pt;}
.y2c{bottom:310.853333pt;}
.y136{bottom:311.608667pt;}
.y17a{bottom:312.333467pt;}
.y110{bottom:313.451600pt;}
.y88{bottom:314.367600pt;}
.y1cd{bottom:314.644800pt;}
.ya1{bottom:314.726667pt;}
.y1f9{bottom:315.010667pt;}
.y1e5{bottom:315.133467pt;}
.yf3{bottom:319.892533pt;}
.y21c{bottom:320.212000pt;}
.y1af{bottom:321.359200pt;}
.y192{bottom:325.359200pt;}
.y2b{bottom:326.186667pt;}
.yb7{bottom:326.569733pt;}
.y10f{bottom:331.451600pt;}
.y175{bottom:331.608667pt;}
.y1e4{bottom:333.133467pt;}
.y15d{bottom:333.892533pt;}
.y87{bottom:333.967600pt;}
.ya0{bottom:334.726667pt;}
.yd6{bottom:334.784933pt;}
.y1f8{bottom:335.010667pt;}
.y21b{bottom:337.575333pt;}
.yf2{bottom:337.892533pt;}
.y135{bottom:339.167600pt;}
.y1cc{bottom:340.203867pt;}
.y2a{bottom:341.520000pt;}
.y51{bottom:341.722000pt;}
.y73{bottom:342.737200pt;}
.yb6{bottom:346.569733pt;}
.y1ae{bottom:347.318267pt;}
.y191{bottom:350.518267pt;}
.y174{bottom:351.608667pt;}
.y15c{bottom:351.892533pt;}
.yd5{bottom:352.384933pt;}
.y9f{bottom:354.726667pt;}
.y21a{bottom:354.938667pt;}
.y1f7{bottom:355.010667pt;}
.yf1{bottom:355.892533pt;}
.y29{bottom:356.853333pt;}
.y10e{bottom:357.010667pt;}
.y134{bottom:357.167600pt;}
.y1cb{bottom:358.203867pt;}
.y1e3{bottom:358.692533pt;}
.y86{bottom:361.126667pt;}
.y50{bottom:361.855333pt;}
.y72{bottom:363.070533pt;}
.yc{bottom:364.307867pt;}
.y1ad{bottom:365.718267pt;}
.y190{bottom:368.118267pt;}
.y173{bottom:371.608667pt;}
.y28{bottom:372.186667pt;}
.y219{bottom:372.302133pt;}
.yb5{bottom:374.128800pt;}
.y9e{bottom:374.726667pt;}
.y148{bottom:375.010667pt;}
.y10d{bottom:377.010667pt;}
.y15b{bottom:377.451600pt;}
.yd4{bottom:377.544000pt;}
.y1e2{bottom:378.692533pt;}
.y9{bottom:381.223333pt;}
.yf0{bottom:381.451600pt;}
.y4f{bottom:381.988667pt;}
.y133{bottom:382.726667pt;}
.y71{bottom:383.403867pt;}
.y1ca{bottom:383.762933pt;}
.y1ac{bottom:384.118267pt;}
.y85{bottom:386.019067pt;}
.y27{bottom:387.520000pt;}
.y217{bottom:389.665467pt;}
.y172{bottom:391.608667pt;}
.yb4{bottom:392.128800pt;}
.y147{bottom:393.010667pt;}
.y18f{bottom:393.277333pt;}
.y218{bottom:394.105467pt;}
.y9d{bottom:394.726667pt;}
.y1f6{bottom:395.010667pt;}
.yd3{bottom:395.144000pt;}
.y15a{bottom:395.451600pt;}
.y8{bottom:397.223333pt;}
.y11f{bottom:399.451600pt;}
.y132{bottom:400.726667pt;}
.y4d{bottom:402.122000pt;}
.y26{bottom:402.853333pt;}
.y70{bottom:403.737200pt;}
.y10c{bottom:404.569733pt;}
.y84{bottom:405.619067pt;}
.y1e1{bottom:406.251600pt;}
.y4e{bottom:407.006000pt;}
.y216{bottom:407.028800pt;}
.yef{bottom:409.010667pt;}
.y1c9{bottom:409.322000pt;}
.y1ab{bottom:410.077333pt;}
.y18e{bottom:410.877333pt;}
.y171{bottom:411.608667pt;}
.yd2{bottom:412.744000pt;}
.y9c{bottom:414.726667pt;}
.y1f5{bottom:415.010667pt;}
.yb3{bottom:417.687867pt;}
.y146{bottom:418.569733pt;}
.y131{bottom:418.726667pt;}
.y159{bottom:421.010667pt;}
.y4c{bottom:422.255333pt;}
.y10b{bottom:422.569733pt;}
.y1e0{bottom:423.851600pt;}
.y6f{bottom:424.070533pt;}
.y215{bottom:424.392267pt;}
.y11e{bottom:425.010667pt;}
.y83{bottom:425.219067pt;}
.yee{bottom:427.010667pt;}
.y1c8{bottom:429.055333pt;}
.y25{bottom:429.525200pt;}
.y1aa{bottom:430.077333pt;}
.y9b{bottom:434.726667pt;}
.y1f4{bottom:435.010667pt;}
.yb2{bottom:435.687867pt;}
.y18d{bottom:436.036400pt;}
.yd1{bottom:437.903067pt;}
.y145{bottom:438.569733pt;}
.y158{bottom:439.010667pt;}
.y214{bottom:441.755600pt;}
.y4b{bottom:442.388667pt;}
.yb{bottom:442.662533pt;}
.y11d{bottom:443.010667pt;}
.y130{bottom:444.285733pt;}
.y6e{bottom:444.403867pt;}
.y82{bottom:444.819067pt;}
.y24{bottom:444.858533pt;}
.y170{bottom:446.726667pt;}
.y10a{bottom:448.128800pt;}
.y1c7{bottom:448.788667pt;}
.y1df{bottom:449.010667pt;}
.yed{bottom:452.569733pt;}
.y18c{bottom:453.636400pt;}
.yb1{bottom:453.687867pt;}
.y9a{bottom:454.726667pt;}
.y1f3{bottom:455.010667pt;}
.y1a9{bottom:457.636400pt;}
.yd0{bottom:457.903067pt;}
.y144{bottom:458.569733pt;}
.y213{bottom:459.118933pt;}
.y23{bottom:460.191867pt;}
.y4a{bottom:462.522000pt;}
.y12f{bottom:464.285733pt;}
.y81{bottom:464.419067pt;}
.y157{bottom:464.569733pt;}
.y16f{bottom:464.726667pt;}
.y6d{bottom:464.737200pt;}
.y109{bottom:466.128800pt;}
.y1de{bottom:466.610667pt;}
.y1c6{bottom:468.522000pt;}
.y11c{bottom:468.569733pt;}
.y7{bottom:469.026800pt;}
.yec{bottom:472.569733pt;}
.y99{bottom:474.726667pt;}
.y1f2{bottom:475.010667pt;}
.y22{bottom:475.525200pt;}
.y1a8{bottom:476.036400pt;}
.y212{bottom:476.482400pt;}
.y18b{bottom:478.795467pt;}
.yb0{bottom:479.246933pt;}
.y156{bottom:482.569733pt;}
.y49{bottom:482.655333pt;}
.y80{bottom:484.019067pt;}
.y108{bottom:484.128800pt;}
.y12e{bottom:484.285733pt;}
.y6{bottom:485.026800pt;}
.y6c{bottom:485.070533pt;}
.ycf{bottom:485.462133pt;}
.y11b{bottom:486.569733pt;}
.y1c5{bottom:488.255333pt;}
.y16e{bottom:490.285733pt;}
.y21{bottom:490.858533pt;}
.y1dd{bottom:491.769733pt;}
.y143{bottom:493.687867pt;}
.y211{bottom:493.845733pt;}
.y98{bottom:494.726667pt;}
.y1f1{bottom:495.010667pt;}
.y18a{bottom:496.395467pt;}
.yaf{bottom:499.246933pt;}
.yeb{bottom:500.128800pt;}
.y155{bottom:500.569733pt;}
.y1a7{bottom:501.995467pt;}
.y48{bottom:502.788667pt;}
.yce{bottom:502.795467pt;}
.y7f{bottom:503.619067pt;}
.y12d{bottom:504.285733pt;}
.y5{bottom:505.023333pt;}
.y6b{bottom:505.403867pt;}
.y20{bottom:506.191867pt;}
.y1c4{bottom:507.988667pt;}
.y16d{bottom:508.285733pt;}
.y1dc{bottom:509.369733pt;}
.y107{bottom:509.687867pt;}
.y210{bottom:511.209067pt;}
.y142{bottom:511.687867pt;}
.y11a{bottom:512.128800pt;}
.y189{bottom:513.995467pt;}
.y97{bottom:514.726667pt;}
.yea{bottom:518.128800pt;}
.yae{bottom:519.246933pt;}
.y1a6{bottom:520.395467pt;}
.y1f{bottom:521.525200pt;}
.y47{bottom:522.922000pt;}
.y12c{bottom:524.285733pt;}
.y6a{bottom:525.737200pt;}
.y154{bottom:526.128800pt;}
.y16c{bottom:526.285733pt;}
.ycd{bottom:527.687867pt;}
.y1c3{bottom:527.722000pt;}
.y20f{bottom:528.572400pt;}
.y106{bottom:529.687867pt;}
.y119{bottom:530.128800pt;}
.y7e{bottom:530.778133pt;}
.y188{bottom:531.595467pt;}
.y1db{bottom:534.528667pt;}
.y96{bottom:534.726667pt;}
.y1e{bottom:536.858533pt;}
.y141{bottom:537.246933pt;}
.y1a5{bottom:538.795467pt;}
.yad{bottom:539.246933pt;}
.y46{bottom:543.055333pt;}
.ye9{bottom:543.687867pt;}
.ycc{bottom:545.021200pt;}
.y69{bottom:546.070533pt;}
.y1c2{bottom:547.455333pt;}
.y7d{bottom:548.111467pt;}
.y1f0{bottom:548.128800pt;}
.y187{bottom:549.195333pt;}
.y105{bottom:549.687867pt;}
.y12b{bottom:551.844800pt;}
.y1da{bottom:552.128800pt;}
.y1d{bottom:552.191867pt;}
.y153{bottom:553.687867pt;}
.y95{bottom:554.726667pt;}
.y140{bottom:555.246933pt;}
.y118{bottom:555.687867pt;}
.y20e{bottom:556.161600pt;}
.yac{bottom:559.246933pt;}
.ycb{bottom:562.354533pt;}
.y45{bottom:563.188667pt;}
.ye8{bottom:563.687867pt;}
.y1a4{bottom:564.754533pt;}
.y68{bottom:566.403867pt;}
.y1c1{bottom:567.188667pt;}
.y1c{bottom:567.525200pt;}
.y12a{bottom:569.844800pt;}
.y152{bottom:571.687867pt;}
.y7c{bottom:573.003867pt;}
.y13f{bottom:573.246933pt;}
.y20d{bottom:573.524933pt;}
.y117{bottom:573.687867pt;}
.y186{bottom:574.354533pt;}
.y94{bottom:574.726667pt;}
.y104{bottom:577.246933pt;}
.y1d9{bottom:577.287867pt;}
.yab{bottom:579.246933pt;}
.y16b{bottom:579.403867pt;}
.y1b{bottom:582.858533pt;}
.y44{bottom:583.322000pt;}
.ye7{bottom:583.687867pt;}
.y67{bottom:586.737200pt;}
.y1bf{bottom:586.922000pt;}
.yca{bottom:587.246933pt;}
.y20c{bottom:590.888267pt;}
.y1ef{bottom:591.687867pt;}
.y1c0{bottom:591.806000pt;}
.y7b{bottom:592.603867pt;}
.y1a3{bottom:593.646933pt;}
.y185{bottom:594.354533pt;}
.y93{bottom:594.726667pt;}
.y1d8{bottom:594.887867pt;}
.y103{bottom:595.246933pt;}
.y129{bottom:595.403867pt;}
.y151{bottom:597.246933pt;}
.y16a{bottom:597.403867pt;}
.y1a{bottom:598.191867pt;}
.y13e{bottom:598.805867pt;}
.y116{bottom:599.246933pt;}
.y43{bottom:603.455333pt;}
.yc9{bottom:604.580267pt;}
.y1be{bottom:606.655333pt;}
.yaa{bottom:606.805867pt;}
.y66{bottom:607.070533pt;}
.y20b{bottom:608.251600pt;}
.y232{bottom:609.456667pt;}
.ye6{bottom:611.246933pt;}
.y1a2{bottom:611.646933pt;}
.y7a{bottom:612.203867pt;}
.y128{bottom:613.403867pt;}
.y19{bottom:613.525200pt;}
.y150{bottom:615.246933pt;}
.y115{bottom:617.246933pt;}
.y13d{bottom:618.805867pt;}
.y1d7{bottom:620.046933pt;}
.y102{bottom:620.805867pt;}
.y184{bottom:621.913600pt;}
.y92{bottom:622.285733pt;}
.y169{bottom:622.962933pt;}
.y42{bottom:623.588667pt;}
.ya9{bottom:624.805867pt;}
.y20a{bottom:625.614933pt;}
.y1bd{bottom:626.388667pt;}
.y231{bottom:626.790000pt;}
.y65{bottom:627.403867pt;}
.y18{bottom:628.858533pt;}
.ye5{bottom:629.246933pt;}
.yc8{bottom:629.472533pt;}
.y127{bottom:631.403867pt;}
.y79{bottom:631.803867pt;}
.y14f{bottom:633.246933pt;}
.y1ee{bottom:635.246933pt;}
.y1a1{bottom:637.205867pt;}
.y1d6{bottom:637.646933pt;}
.y101{bottom:638.805867pt;}
.y183{bottom:639.246933pt;}
.y168{bottom:640.962933pt;}
.ya8{bottom:642.805867pt;}
.y209{bottom:642.978400pt;}
.y41{bottom:643.722000pt;}
.y230{bottom:644.123333pt;}
.y16{bottom:644.191867pt;}
.y1bc{bottom:646.122000pt;}
.yc7{bottom:646.805867pt;}
.ye4{bottom:647.246933pt;}
.y17{bottom:647.965867pt;}
.y91{bottom:649.844800pt;}
.y78{bottom:651.403867pt;}
.y100{bottom:656.805867pt;}
.y126{bottom:656.962933pt;}
.y1a0{bottom:657.205867pt;}
.y13c{bottom:658.805867pt;}
.y167{bottom:658.962933pt;}
.y15{bottom:659.525200pt;}
.y208{bottom:660.341733pt;}
.ya7{bottom:660.805867pt;}
.y22f{bottom:661.456667pt;}
.y1d5{bottom:662.805867pt;}
.y64{bottom:662.855333pt;}
.y40{bottom:663.855333pt;}
.yc6{bottom:664.139200pt;}
.y1bb{bottom:665.855333pt;}
.ye3{bottom:672.805867pt;}
.y14{bottom:674.858533pt;}
.y125{bottom:676.962933pt;}
.y207{bottom:677.705067pt;}
.y22e{bottom:678.790000pt;}
.y1ed{bottom:678.805867pt;}
.y1d4{bottom:680.405867pt;}
.y4{bottom:681.442000pt;}
.y182{bottom:681.472533pt;}
.yff{bottom:682.364933pt;}
.y63{bottom:683.188667pt;}
.y3f{bottom:683.988667pt;}
.y166{bottom:684.522000pt;}
.y19f{bottom:684.764933pt;}
.y90{bottom:684.962933pt;}
.y1ba{bottom:685.588667pt;}
.y77{bottom:686.122000pt;}
.ya6{bottom:686.364933pt;}
.yc5{bottom:689.031600pt;}
.y12{bottom:690.191867pt;}
.ye2{bottom:692.805867pt;}
.y13{bottom:693.965867pt;}
.y206{bottom:695.068533pt;}
.y22d{bottom:696.123333pt;}
.y124{bottom:696.962933pt;}
.y3{bottom:701.442000pt;}
.yfe{bottom:702.364933pt;}
.y8f{bottom:702.962933pt;}
.y19e{bottom:703.164933pt;}
.y62{bottom:703.522000pt;}
.y3e{bottom:704.122000pt;}
.ya5{bottom:704.364933pt;}
.y165{bottom:704.522000pt;}
.y1b9{bottom:705.322000pt;}
.y11{bottom:705.525200pt;}
.y1d3{bottom:705.564933pt;}
.y76{bottom:705.722000pt;}
.yc4{bottom:706.364933pt;}
.y205{bottom:712.431867pt;}
.ye1{bottom:712.805867pt;}
.y22c{bottom:713.456667pt;}
.y123{bottom:716.962933pt;}
.y10{bottom:720.858533pt;}
.y8e{bottom:720.962933pt;}
.y19d{bottom:721.564933pt;}
.ya4{bottom:722.364933pt;}
.y1d2{bottom:723.164933pt;}
.y181{bottom:723.698267pt;}
.y61{bottom:723.855333pt;}
.y3b{bottom:724.255333pt;}
.y164{bottom:724.522000pt;}
.y1b8{bottom:725.055333pt;}
.y75{bottom:725.322000pt;}
.y204{bottom:729.795200pt;}
.yfd{bottom:729.924000pt;}
.y22b{bottom:730.790000pt;}
.yc3{bottom:731.257333pt;}
.yf{bottom:736.191867pt;}
.y122{bottom:736.962933pt;}
.y8d{bottom:738.962933pt;}
.y2{bottom:739.986000pt;}
.ya3{bottom:740.364933pt;}
.y60{bottom:744.188667pt;}
.y3d{bottom:744.388667pt;}
.y163{bottom:744.522000pt;}
.y1b7{bottom:744.788667pt;}
.y74{bottom:744.922000pt;}
.y203{bottom:747.158667pt;}
.y19c{bottom:747.524000pt;}
.ye0{bottom:747.924000pt;}
.y22a{bottom:748.123333pt;}
.y1d1{bottom:748.324000pt;}
.yc2{bottom:748.590667pt;}
.ye{bottom:751.525200pt;}
.y1{bottom:762.652667pt;}
.y3c{bottom:764.522000pt;}
.y229{bottom:765.456667pt;}
.ya2{bottom:765.924000pt;}
.yd{bottom:766.858533pt;}
.y5f{bottom:774.803200pt;}
.y3a{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.hc{height:18.526963pt;}
.h1e{height:21.796427pt;}
.h11{height:23.976069pt;}
.h1a{height:28.319808pt;}
.h15{height:28.704000pt;}
.h8{height:29.909333pt;}
.h9{height:30.293333pt;}
.h6{height:30.661818pt;}
.h14{height:33.648000pt;}
.h7{height:35.328000pt;}
.h19{height:35.517333pt;}
.ha{height:37.536000pt;}
.hb{height:39.349333pt;}
.h12{height:39.744000pt;}
.h16{height:41.125333pt;}
.h13{height:41.664000pt;}
.h18{height:41.952000pt;}
.h1b{height:42.400000pt;}
.h17{height:43.978667pt;}
.h1d{height:44.160000pt;}
.hd{height:45.120000pt;}
.h1c{height:46.293333pt;}
.h4{height:46.640000pt;}
.hf{height:48.576000pt;}
.h2{height:48.602667pt;}
.h10{height:50.922667pt;}
.h3{height:55.120000pt;}
.h5{height:55.146667pt;}
.he{height:227.441787pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x12{left:36.786267pt;}
.x9{left:38.106267pt;}
.xa{left:90.838133pt;}
.x1{left:94.488133pt;}
.xc{left:108.543200pt;}
.x10{left:113.385867pt;}
.xd{left:115.482133pt;}
.x2{left:121.395333pt;}
.x11{left:124.724400pt;}
.xb{left:153.538667pt;}
.x5{left:215.685733pt;}
.x6{left:221.076400pt;}
.x7{left:270.574800pt;}
.x8{left:275.965467pt;}
.x14{left:293.487867pt;}
.x15{left:301.960267pt;}
.x16{left:309.657467pt;}
.x17{left:315.746133pt;}
.x3{left:416.361067pt;}
.x4{left:421.732667pt;}
.x13{left:566.448000pt;}
.xe{left:567.576000pt;}
.xf{left:574.082267pt;}
}




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