
    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_a89436549867a233e7f570c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969633;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_85178f4b4cec8687037b34e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_61f694e4aaa2cb82ab97f8ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_0ac94a2dcfeacdd83081fc0b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e020304c19150ffafcfd0f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.057000;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_973de8423192eee78ba04c08.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939000;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_3a8a3773f62aafb4839b1bb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125000;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_9edb4e982c63c3e8afeb6b94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125000;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_36c42b5f46d5c078960facbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.679000;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_fb6f299a4e78f94f250afc06.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003000;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_2984d910ecb9118a8c813144.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_45600f28a00ad83e857b4292.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_e83152fec5ac20553ff76b1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.125000;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_6048003d3fe4f84b70a4c4f3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b05f336824a7f6e2114a7d1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_a006726ad3d80232103983f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.057000;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_9b137e194dc777244d09f24f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.164000;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_e83152fec5ac20553ff76b1b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.125000;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_6048003d3fe4f84b70a4c4f3.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m11{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);}
.m1b{transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.243886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243886,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244014,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249291,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,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);}
.m10{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250328,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252927,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253267,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253573,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:180.000000px;}
.ls20{letter-spacing:-3.510000px;}
.ls1f{letter-spacing:-3.132000px;}
.ls1c{letter-spacing:-3.078000px;}
.ls11{letter-spacing:-2.916000px;}
.ls26{letter-spacing:-2.808000px;}
.ls1e{letter-spacing:-2.646000px;}
.lsd{letter-spacing:-2.538000px;}
.ls10{letter-spacing:-2.484000px;}
.ls3b{letter-spacing:-2.430000px;}
.ls45{letter-spacing:-2.376000px;}
.ls36{letter-spacing:-2.106000px;}
.ls14{letter-spacing:-2.052000px;}
.ls37{letter-spacing:-1.998000px;}
.ls12{letter-spacing:-1.944000px;}
.ls3a{letter-spacing:-1.890000px;}
.ls38{letter-spacing:-1.728000px;}
.ls15{letter-spacing:-1.296000px;}
.ls34{letter-spacing:-0.858000px;}
.ls18{letter-spacing:-0.810000px;}
.ls35{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.756000px;}
.ls1d{letter-spacing:-0.702000px;}
.ls32{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.528000px;}
.ls16{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.264000px;}
.ls17{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.132000px;}
.lse{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.066000px;}
.lsf{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000120px;}
.ls22{letter-spacing:0.000360px;}
.ls9{letter-spacing:0.000600px;}
.ls23{letter-spacing:0.001809px;}
.ls27{letter-spacing:0.004828px;}
.ls21{letter-spacing:0.026400px;}
.ls2c{letter-spacing:0.029896px;}
.ls39{letter-spacing:0.054000px;}
.ls40{letter-spacing:0.064532px;}
.ls3{letter-spacing:0.066000px;}
.ls2a{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.171000px;}
.ls43{letter-spacing:0.337800px;}
.ls44{letter-spacing:0.370200px;}
.ls2f{letter-spacing:0.741000px;}
.ls31{letter-spacing:0.811200px;}
.ls2e{letter-spacing:0.811800px;}
.ls30{letter-spacing:0.812400px;}
.ls8{letter-spacing:1.020600px;}
.ls7{letter-spacing:1.021200px;}
.ls1a{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.093200px;}
.ls6{letter-spacing:1.093800px;}
.ls42{letter-spacing:2.201466px;}
.ls24{letter-spacing:2.365677px;}
.ls28{letter-spacing:2.368399px;}
.ls3c{letter-spacing:2.372384px;}
.ls2b{letter-spacing:2.386162px;}
.ls2d{letter-spacing:2.386760px;}
.ls41{letter-spacing:2.410272px;}
.ls46{letter-spacing:2.430000px;}
.ls29{letter-spacing:2.436240px;}
.ls3e{letter-spacing:2.490707px;}
.ls3f{letter-spacing:2.491293px;}
.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;}
}
.ws3{word-spacing:-79.503570px;}
.ws48{word-spacing:-60.000000px;}
.ws36{word-spacing:-14.454000px;}
.ws5{word-spacing:-13.200000px;}
.ws35{word-spacing:-12.540000px;}
.ws31{word-spacing:-12.483000px;}
.ws49{word-spacing:-11.988000px;}
.ws37{word-spacing:-11.934000px;}
.ws3a{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.826000px;}
.ws38{word-spacing:-11.772000px;}
.ws9{word-spacing:-11.718000px;}
.ws8{word-spacing:-11.664000px;}
.wsf{word-spacing:-11.610000px;}
.ws13{word-spacing:-11.178000px;}
.ws15{word-spacing:-11.124000px;}
.ws4a{word-spacing:-10.854000px;}
.ws7{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.746000px;}
.ws10{word-spacing:-10.638000px;}
.ws12{word-spacing:-10.260000px;}
.ws14{word-spacing:-10.152000px;}
.ws17{word-spacing:-10.098000px;}
.ws11{word-spacing:-9.990000px;}
.ws3b{word-spacing:-9.936000px;}
.wsc{word-spacing:-9.882000px;}
.ws39{word-spacing:-9.828000px;}
.wsd{word-spacing:-9.774000px;}
.ws0{word-spacing:-9.600000px;}
.wse{word-spacing:-9.504000px;}
.ws16{word-spacing:-9.180000px;}
.ws32{word-spacing:-9.018000px;}
.wsb{word-spacing:-8.910000px;}
.ws4{word-spacing:-8.426682px;}
.ws3c{word-spacing:-8.370000px;}
.ws18{word-spacing:-8.316000px;}
.ws1e{word-spacing:-2.538000px;}
.ws25{word-spacing:-2.484000px;}
.ws2d{word-spacing:-2.430000px;}
.ws21{word-spacing:-2.376000px;}
.ws43{word-spacing:-1.836000px;}
.ws4b{word-spacing:-1.674000px;}
.ws2b{word-spacing:-1.080000px;}
.ws50{word-spacing:-0.855000px;}
.ws28{word-spacing:-0.270000px;}
.ws2{word-spacing:-0.144000px;}
.ws1a{word-spacing:-0.132000px;}
.ws41{word-spacing:-0.108000px;}
.ws1c{word-spacing:-0.066000px;}
.ws46{word-spacing:-0.054000px;}
.ws34{word-spacing:-0.039000px;}
.ws1{word-spacing:0.000000px;}
.ws45{word-spacing:0.054000px;}
.ws1b{word-spacing:0.066000px;}
.ws20{word-spacing:0.108000px;}
.ws4e{word-spacing:0.114000px;}
.ws19{word-spacing:0.132000px;}
.ws1d{word-spacing:0.162000px;}
.ws4d{word-spacing:0.171000px;}
.ws29{word-spacing:0.216000px;}
.ws33{word-spacing:0.264000px;}
.ws27{word-spacing:0.270000px;}
.ws3e{word-spacing:0.528000px;}
.ws2a{word-spacing:0.540000px;}
.ws2c{word-spacing:0.648000px;}
.ws3d{word-spacing:0.660000px;}
.ws2f{word-spacing:0.702000px;}
.ws24{word-spacing:0.756000px;}
.ws40{word-spacing:0.792000px;}
.ws44{word-spacing:0.810000px;}
.ws3f{word-spacing:0.858000px;}
.ws26{word-spacing:1.026000px;}
.ws23{word-spacing:1.080000px;}
.ws51{word-spacing:1.140000px;}
.ws52{word-spacing:1.824000px;}
.ws42{word-spacing:2.106000px;}
.ws47{word-spacing:2.322000px;}
.ws4c{word-spacing:2.376000px;}
.ws22{word-spacing:2.484000px;}
.ws4f{word-spacing:2.508000px;}
.ws1f{word-spacing:2.538000px;}
.ws2e{word-spacing:3.078000px;}
.ws30{word-spacing:3.132000px;}
._a{margin-left:-14.172000px;}
._b{margin-left:-12.483000px;}
._4{margin-left:-6.624000px;}
._9{margin-left:-4.860000px;}
._5{margin-left:-3.625740px;}
._3{margin-left:-2.193600px;}
._0{margin-left:-1.056000px;}
._1{width:1.593600px;}
._2{width:2.769600px;}
._6{width:3.850800px;}
._c{width:30.153000px;}
._7{width:42.636000px;}
._8{width:84.474000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:33.231000px;}
.fs4{font-size:38.478000px;}
.fs8{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:106.299150px;}
.y4e{bottom:106.299300px;}
.ybe{bottom:122.348100px;}
.y2b{bottom:125.799150px;}
.y4d{bottom:125.799300px;}
.y2a{bottom:145.299150px;}
.y4c{bottom:145.299300px;}
.y9e{bottom:148.962900px;}
.ybd{bottom:160.615800px;}
.y29{bottom:164.799150px;}
.y4b{bottom:164.799300px;}
.ybc{bottom:173.737200px;}
.y9d{bottom:176.966700px;}
.y28{bottom:184.299150px;}
.y4a{bottom:184.299300px;}
.ybb{bottom:193.987200px;}
.y9c{bottom:196.466700px;}
.y27{bottom:203.799150px;}
.y49{bottom:203.799300px;}
.yba{bottom:222.741150px;}
.y26{bottom:223.299150px;}
.y48{bottom:223.299300px;}
.y9b{bottom:224.470800px;}
.y25{bottom:242.799150px;}
.y67{bottom:242.799300px;}
.yb9{bottom:242.991150px;}
.y9a{bottom:243.970800px;}
.y24{bottom:262.299150px;}
.y66{bottom:262.299300px;}
.y47{bottom:264.740400px;}
.yb8{bottom:271.745100px;}
.y99{bottom:271.974600px;}
.y23{bottom:281.799150px;}
.y65{bottom:281.799300px;}
.y46{bottom:284.990400px;}
.y98{bottom:291.474600px;}
.yb7{bottom:291.995100px;}
.y22{bottom:301.299150px;}
.y64{bottom:301.299300px;}
.y80{bottom:302.513550px;}
.y45{bottom:313.744350px;}
.y97{bottom:319.478550px;}
.yb6{bottom:320.749050px;}
.y21{bottom:320.799150px;}
.y63{bottom:320.799300px;}
.y7f{bottom:322.313550px;}
.y44{bottom:333.994350px;}
.y96{bottom:338.978550px;}
.y20{bottom:340.299150px;}
.yb5{bottom:340.999050px;}
.y7e{bottom:350.617500px;}
.y1f{bottom:359.799150px;}
.y62{bottom:361.964100px;}
.y43{bottom:362.748300px;}
.y95{bottom:366.982500px;}
.yb4{bottom:369.753000px;}
.y7d{bottom:370.417500px;}
.y42{bottom:382.998300px;}
.y61{bottom:384.163950px;}
.y94{bottom:386.482500px;}
.yb3{bottom:390.003000px;}
.y1e{bottom:398.075400px;}
.y7c{bottom:398.721450px;}
.y60{bottom:406.364100px;}
.y41{bottom:411.752250px;}
.y93{bottom:414.486450px;}
.y1d{bottom:418.325400px;}
.y7b{bottom:418.521450px;}
.yb2{bottom:418.756950px;}
.y9{bottom:425.499450px;}
.y5f{bottom:428.564100px;}
.y92{bottom:433.986450px;}
.y40{bottom:434.252250px;}
.yb1{bottom:439.006950px;}
.y5{bottom:444.529350px;}
.y7a{bottom:446.825400px;}
.y1c{bottom:447.079350px;}
.y5e{bottom:450.763950px;}
.y3f{bottom:456.752250px;}
.y91{bottom:461.990400px;}
.y4{bottom:462.529350px;}
.y79{bottom:466.625400px;}
.y1b{bottom:467.329350px;}
.yb0{bottom:467.760750px;}
.y5d{bottom:472.964100px;}
.y3e{bottom:479.252250px;}
.y90{bottom:481.490400px;}
.yaf{bottom:488.010750px;}
.y78{bottom:494.929350px;}
.y5c{bottom:495.163950px;}
.y1a{bottom:496.083300px;}
.y3d{bottom:501.752250px;}
.y8f{bottom:509.494350px;}
.y3{bottom:513.648750px;}
.y77{bottom:514.729350px;}
.y19{bottom:516.333300px;}
.yae{bottom:516.764700px;}
.y5b{bottom:517.364100px;}
.y3c{bottom:524.252250px;}
.y8e{bottom:528.994350px;}
.y2{bottom:531.648750px;}
.y5a{bottom:539.564100px;}
.y76{bottom:543.033300px;}
.y18{bottom:545.087250px;}
.y3b{bottom:546.752250px;}
.yad{bottom:554.022600px;}
.y1{bottom:555.721050px;}
.y8d{bottom:556.998300px;}
.y59{bottom:561.763950px;}
.y17{bottom:567.587250px;}
.y3a{bottom:569.252250px;}
.y75{bottom:571.337250px;}
.yac{bottom:574.272600px;}
.y8c{bottom:576.498300px;}
.y58{bottom:583.963950px;}
.y16{bottom:590.087250px;}
.y39{bottom:591.752250px;}
.y74{bottom:593.537250px;}
.yab{bottom:594.522600px;}
.y8b{bottom:604.502250px;}
.y57{bottom:606.163950px;}
.y15{bottom:612.587250px;}
.y38{bottom:614.252250px;}
.y73{bottom:615.737250px;}
.yaa{bottom:619.024500px;}
.y8a{bottom:624.002250px;}
.y56{bottom:628.364100px;}
.y14{bottom:635.087250px;}
.y72{bottom:637.937250px;}
.ya9{bottom:639.274500px;}
.y37{bottom:645.256200px;}
.y55{bottom:650.564100px;}
.y89{bottom:652.006200px;}
.y13{bottom:657.587250px;}
.ya8{bottom:659.524500px;}
.y71{bottom:660.137250px;}
.y36{bottom:665.506200px;}
.y88{bottom:671.506200px;}
.y54{bottom:672.763950px;}
.ya7{bottom:679.774650px;}
.y12{bottom:680.087250px;}
.y70{bottom:682.337250px;}
.y35{bottom:694.260150px;}
.y53{bottom:694.964100px;}
.y87{bottom:699.510150px;}
.ya6{bottom:700.024650px;}
.y11{bottom:702.587250px;}
.y6f{bottom:704.537250px;}
.y34{bottom:714.510150px;}
.y52{bottom:717.163950px;}
.y86{bottom:719.010150px;}
.ya5{bottom:720.274650px;}
.y10{bottom:725.087250px;}
.y6e{bottom:726.737250px;}
.y51{bottom:739.364100px;}
.ya4{bottom:740.524650px;}
.y33{bottom:743.263950px;}
.y85{bottom:747.013950px;}
.yf{bottom:747.587250px;}
.y6d{bottom:748.937250px;}
.y50{bottom:761.564100px;}
.y32{bottom:763.513950px;}
.y84{bottom:766.513950px;}
.ya3{bottom:769.278600px;}
.ye{bottom:770.087250px;}
.y6c{bottom:771.137250px;}
.ya2{bottom:791.778600px;}
.y31{bottom:792.267900px;}
.yd{bottom:792.587250px;}
.y6b{bottom:793.337250px;}
.y83{bottom:794.517900px;}
.y8{bottom:806.984250px;}
.y30{bottom:812.517900px;}
.y82{bottom:814.017900px;}
.ya1{bottom:814.278600px;}
.yb{bottom:815.087250px;}
.y6a{bottom:815.537250px;}
.y7{bottom:832.484250px;}
.ya0{bottom:836.778600px;}
.yc{bottom:837.587250px;}
.y69{bottom:837.737250px;}
.y2f{bottom:841.271850px;}
.y81{bottom:842.021850px;}
.y6{bottom:857.984250px;}
.y9f{bottom:859.278600px;}
.y68{bottom:860.087250px;}
.y2e{bottom:861.521850px;}
.y4f{bottom:871.653600px;}
.y2d{bottom:930.708000px;}
.ya{bottom:946.686000px;}
.hd{height:33.618000px;}
.h6{height:34.080000px;}
.hb{height:38.914200px;}
.h4{height:41.376000px;}
.h3{height:43.584000px;}
.hf{height:44.160000px;}
.hc{height:44.601562px;}
.he{height:45.258000px;}
.ha{height:46.548000px;}
.h2{height:47.561800px;}
.h9{height:49.134000px;}
.h8{height:56.892000px;}
.h5{height:61.932000px;}
.h7{height:312.931860px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x6{left:40.783650px;}
.x3{left:105.210150px;}
.x1{left:106.291050px;}
.x5{left:136.063050px;}
.x2{left:137.359950px;}
.x4{left:164.928450px;}
.xe{left:266.877450px;}
.xf{left:297.345450px;}
.x7{left:346.662300px;}
.xb{left:419.957850px;}
.xc{left:530.566350px;}
.xd{left:561.802350px;}
.xa{left:636.653250px;}
.x8{left:637.733250px;}
.x9{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:160.000000pt;}
.ls20{letter-spacing:-3.120000pt;}
.ls1f{letter-spacing:-2.784000pt;}
.ls1c{letter-spacing:-2.736000pt;}
.ls11{letter-spacing:-2.592000pt;}
.ls26{letter-spacing:-2.496000pt;}
.ls1e{letter-spacing:-2.352000pt;}
.lsd{letter-spacing:-2.256000pt;}
.ls10{letter-spacing:-2.208000pt;}
.ls3b{letter-spacing:-2.160000pt;}
.ls45{letter-spacing:-2.112000pt;}
.ls36{letter-spacing:-1.872000pt;}
.ls14{letter-spacing:-1.824000pt;}
.ls37{letter-spacing:-1.776000pt;}
.ls12{letter-spacing:-1.728000pt;}
.ls3a{letter-spacing:-1.680000pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls15{letter-spacing:-1.152000pt;}
.ls34{letter-spacing:-0.762667pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls35{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.672000pt;}
.ls1d{letter-spacing:-0.624000pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.469333pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.234667pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.117333pt;}
.lse{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.058667pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000107pt;}
.ls22{letter-spacing:0.000320pt;}
.ls9{letter-spacing:0.000533pt;}
.ls23{letter-spacing:0.001608pt;}
.ls27{letter-spacing:0.004292pt;}
.ls21{letter-spacing:0.023467pt;}
.ls2c{letter-spacing:0.026574pt;}
.ls39{letter-spacing:0.048000pt;}
.ls40{letter-spacing:0.057362pt;}
.ls3{letter-spacing:0.058667pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.152000pt;}
.ls43{letter-spacing:0.300267pt;}
.ls44{letter-spacing:0.329067pt;}
.ls2f{letter-spacing:0.658667pt;}
.ls31{letter-spacing:0.721067pt;}
.ls2e{letter-spacing:0.721600pt;}
.ls30{letter-spacing:0.722133pt;}
.ls8{letter-spacing:0.907200pt;}
.ls7{letter-spacing:0.907733pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls5{letter-spacing:0.971733pt;}
.ls6{letter-spacing:0.972267pt;}
.ls42{letter-spacing:1.956858pt;}
.ls24{letter-spacing:2.102824pt;}
.ls28{letter-spacing:2.105243pt;}
.ls3c{letter-spacing:2.108786pt;}
.ls2b{letter-spacing:2.121033pt;}
.ls2d{letter-spacing:2.121564pt;}
.ls41{letter-spacing:2.142464pt;}
.ls46{letter-spacing:2.160000pt;}
.ls29{letter-spacing:2.165547pt;}
.ls3e{letter-spacing:2.213962pt;}
.ls3f{letter-spacing:2.214483pt;}
.ws3{word-spacing:-70.669840pt;}
.ws48{word-spacing:-53.333333pt;}
.ws36{word-spacing:-12.848000pt;}
.ws5{word-spacing:-11.733333pt;}
.ws35{word-spacing:-11.146667pt;}
.ws31{word-spacing:-11.096000pt;}
.ws49{word-spacing:-10.656000pt;}
.ws37{word-spacing:-10.608000pt;}
.ws3a{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.512000pt;}
.ws38{word-spacing:-10.464000pt;}
.ws9{word-spacing:-10.416000pt;}
.ws8{word-spacing:-10.368000pt;}
.wsf{word-spacing:-10.320000pt;}
.ws13{word-spacing:-9.936000pt;}
.ws15{word-spacing:-9.888000pt;}
.ws4a{word-spacing:-9.648000pt;}
.ws7{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.552000pt;}
.ws10{word-spacing:-9.456000pt;}
.ws12{word-spacing:-9.120000pt;}
.ws14{word-spacing:-9.024000pt;}
.ws17{word-spacing:-8.976000pt;}
.ws11{word-spacing:-8.880000pt;}
.ws3b{word-spacing:-8.832000pt;}
.wsc{word-spacing:-8.784000pt;}
.ws39{word-spacing:-8.736000pt;}
.wsd{word-spacing:-8.688000pt;}
.ws0{word-spacing:-8.533333pt;}
.wse{word-spacing:-8.448000pt;}
.ws16{word-spacing:-8.160000pt;}
.ws32{word-spacing:-8.016000pt;}
.wsb{word-spacing:-7.920000pt;}
.ws4{word-spacing:-7.490384pt;}
.ws3c{word-spacing:-7.440000pt;}
.ws18{word-spacing:-7.392000pt;}
.ws1e{word-spacing:-2.256000pt;}
.ws25{word-spacing:-2.208000pt;}
.ws2d{word-spacing:-2.160000pt;}
.ws21{word-spacing:-2.112000pt;}
.ws43{word-spacing:-1.632000pt;}
.ws4b{word-spacing:-1.488000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws50{word-spacing:-0.760000pt;}
.ws28{word-spacing:-0.240000pt;}
.ws2{word-spacing:-0.128000pt;}
.ws1a{word-spacing:-0.117333pt;}
.ws41{word-spacing:-0.096000pt;}
.ws1c{word-spacing:-0.058667pt;}
.ws46{word-spacing:-0.048000pt;}
.ws34{word-spacing:-0.034667pt;}
.ws1{word-spacing:0.000000pt;}
.ws45{word-spacing:0.048000pt;}
.ws1b{word-spacing:0.058667pt;}
.ws20{word-spacing:0.096000pt;}
.ws4e{word-spacing:0.101333pt;}
.ws19{word-spacing:0.117333pt;}
.ws1d{word-spacing:0.144000pt;}
.ws4d{word-spacing:0.152000pt;}
.ws29{word-spacing:0.192000pt;}
.ws33{word-spacing:0.234667pt;}
.ws27{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.469333pt;}
.ws2a{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.576000pt;}
.ws3d{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.624000pt;}
.ws24{word-spacing:0.672000pt;}
.ws40{word-spacing:0.704000pt;}
.ws44{word-spacing:0.720000pt;}
.ws3f{word-spacing:0.762667pt;}
.ws26{word-spacing:0.912000pt;}
.ws23{word-spacing:0.960000pt;}
.ws51{word-spacing:1.013333pt;}
.ws52{word-spacing:1.621333pt;}
.ws42{word-spacing:1.872000pt;}
.ws47{word-spacing:2.064000pt;}
.ws4c{word-spacing:2.112000pt;}
.ws22{word-spacing:2.208000pt;}
.ws4f{word-spacing:2.229333pt;}
.ws1f{word-spacing:2.256000pt;}
.ws2e{word-spacing:2.736000pt;}
.ws30{word-spacing:2.784000pt;}
._a{margin-left:-12.597333pt;}
._b{margin-left:-11.096000pt;}
._4{margin-left:-5.888000pt;}
._9{margin-left:-4.320000pt;}
._5{margin-left:-3.222880pt;}
._3{margin-left:-1.949867pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.416533pt;}
._2{width:2.461867pt;}
._6{width:3.422933pt;}
._c{width:26.802667pt;}
._7{width:37.898667pt;}
._8{width:75.088000pt;}
.fs6{font-size:29.538667pt;}
.fs4{font-size:34.202667pt;}
.fs8{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:94.488133pt;}
.y4e{bottom:94.488267pt;}
.ybe{bottom:108.753867pt;}
.y2b{bottom:111.821467pt;}
.y4d{bottom:111.821600pt;}
.y2a{bottom:129.154800pt;}
.y4c{bottom:129.154933pt;}
.y9e{bottom:132.411467pt;}
.ybd{bottom:142.769600pt;}
.y29{bottom:146.488133pt;}
.y4b{bottom:146.488267pt;}
.ybc{bottom:154.433067pt;}
.y9d{bottom:157.303733pt;}
.y28{bottom:163.821467pt;}
.y4a{bottom:163.821600pt;}
.ybb{bottom:172.433067pt;}
.y9c{bottom:174.637067pt;}
.y27{bottom:181.154800pt;}
.y49{bottom:181.154933pt;}
.yba{bottom:197.992133pt;}
.y26{bottom:198.488133pt;}
.y48{bottom:198.488267pt;}
.y9b{bottom:199.529600pt;}
.y25{bottom:215.821467pt;}
.y67{bottom:215.821600pt;}
.yb9{bottom:215.992133pt;}
.y9a{bottom:216.862933pt;}
.y24{bottom:233.154800pt;}
.y66{bottom:233.154933pt;}
.y47{bottom:235.324800pt;}
.yb8{bottom:241.551200pt;}
.y99{bottom:241.755200pt;}
.y23{bottom:250.488133pt;}
.y65{bottom:250.488267pt;}
.y46{bottom:253.324800pt;}
.y98{bottom:259.088533pt;}
.yb7{bottom:259.551200pt;}
.y22{bottom:267.821467pt;}
.y64{bottom:267.821600pt;}
.y80{bottom:268.900933pt;}
.y45{bottom:278.883867pt;}
.y97{bottom:283.980933pt;}
.yb6{bottom:285.110267pt;}
.y21{bottom:285.154800pt;}
.y63{bottom:285.154933pt;}
.y7f{bottom:286.500933pt;}
.y44{bottom:296.883867pt;}
.y96{bottom:301.314267pt;}
.y20{bottom:302.488133pt;}
.yb5{bottom:303.110267pt;}
.y7e{bottom:311.660000pt;}
.y1f{bottom:319.821467pt;}
.y62{bottom:321.745867pt;}
.y43{bottom:322.442933pt;}
.y95{bottom:326.206667pt;}
.yb4{bottom:328.669333pt;}
.y7d{bottom:329.260000pt;}
.y42{bottom:340.442933pt;}
.y61{bottom:341.479067pt;}
.y94{bottom:343.540000pt;}
.yb3{bottom:346.669333pt;}
.y1e{bottom:353.844800pt;}
.y7c{bottom:354.419067pt;}
.y60{bottom:361.212533pt;}
.y41{bottom:366.002000pt;}
.y93{bottom:368.432400pt;}
.y1d{bottom:371.844800pt;}
.y7b{bottom:372.019067pt;}
.yb2{bottom:372.228400pt;}
.y9{bottom:378.221733pt;}
.y5f{bottom:380.945867pt;}
.y92{bottom:385.765733pt;}
.y40{bottom:386.002000pt;}
.yb1{bottom:390.228400pt;}
.y5{bottom:395.137200pt;}
.y7a{bottom:397.178133pt;}
.y1c{bottom:397.403867pt;}
.y5e{bottom:400.679067pt;}
.y3f{bottom:406.002000pt;}
.y91{bottom:410.658133pt;}
.y4{bottom:411.137200pt;}
.y79{bottom:414.778133pt;}
.y1b{bottom:415.403867pt;}
.yb0{bottom:415.787333pt;}
.y5d{bottom:420.412533pt;}
.y3e{bottom:426.002000pt;}
.y90{bottom:427.991467pt;}
.yaf{bottom:433.787333pt;}
.y78{bottom:439.937200pt;}
.y5c{bottom:440.145733pt;}
.y1a{bottom:440.962933pt;}
.y3d{bottom:446.002000pt;}
.y8f{bottom:452.883867pt;}
.y3{bottom:456.576667pt;}
.y77{bottom:457.537200pt;}
.y19{bottom:458.962933pt;}
.yae{bottom:459.346400pt;}
.y5b{bottom:459.879200pt;}
.y3c{bottom:466.002000pt;}
.y8e{bottom:470.217200pt;}
.y2{bottom:472.576667pt;}
.y5a{bottom:479.612533pt;}
.y76{bottom:482.696267pt;}
.y18{bottom:484.522000pt;}
.y3b{bottom:486.002000pt;}
.yad{bottom:492.464533pt;}
.y1{bottom:493.974267pt;}
.y8d{bottom:495.109600pt;}
.y59{bottom:499.345733pt;}
.y17{bottom:504.522000pt;}
.y3a{bottom:506.002000pt;}
.y75{bottom:507.855333pt;}
.yac{bottom:510.464533pt;}
.y8c{bottom:512.442933pt;}
.y58{bottom:519.079067pt;}
.y16{bottom:524.522000pt;}
.y39{bottom:526.002000pt;}
.y74{bottom:527.588667pt;}
.yab{bottom:528.464533pt;}
.y8b{bottom:537.335333pt;}
.y57{bottom:538.812400pt;}
.y15{bottom:544.522000pt;}
.y38{bottom:546.002000pt;}
.y73{bottom:547.322000pt;}
.yaa{bottom:550.244000pt;}
.y8a{bottom:554.668667pt;}
.y56{bottom:558.545867pt;}
.y14{bottom:564.522000pt;}
.y72{bottom:567.055333pt;}
.ya9{bottom:568.244000pt;}
.y37{bottom:573.561067pt;}
.y55{bottom:578.279200pt;}
.y89{bottom:579.561067pt;}
.y13{bottom:584.522000pt;}
.ya8{bottom:586.244000pt;}
.y71{bottom:586.788667pt;}
.y36{bottom:591.561067pt;}
.y88{bottom:596.894400pt;}
.y54{bottom:598.012400pt;}
.ya7{bottom:604.244133pt;}
.y12{bottom:604.522000pt;}
.y70{bottom:606.522000pt;}
.y35{bottom:617.120133pt;}
.y53{bottom:617.745867pt;}
.y87{bottom:621.786800pt;}
.ya6{bottom:622.244133pt;}
.y11{bottom:624.522000pt;}
.y6f{bottom:626.255333pt;}
.y34{bottom:635.120133pt;}
.y52{bottom:637.479067pt;}
.y86{bottom:639.120133pt;}
.ya5{bottom:640.244133pt;}
.y10{bottom:644.522000pt;}
.y6e{bottom:645.988667pt;}
.y51{bottom:657.212533pt;}
.ya4{bottom:658.244133pt;}
.y33{bottom:660.679067pt;}
.y85{bottom:664.012400pt;}
.yf{bottom:664.522000pt;}
.y6d{bottom:665.722000pt;}
.y50{bottom:676.945867pt;}
.y32{bottom:678.679067pt;}
.y84{bottom:681.345733pt;}
.ya3{bottom:683.803200pt;}
.ye{bottom:684.522000pt;}
.y6c{bottom:685.455333pt;}
.ya2{bottom:703.803200pt;}
.y31{bottom:704.238133pt;}
.yd{bottom:704.522000pt;}
.y6b{bottom:705.188667pt;}
.y83{bottom:706.238133pt;}
.y8{bottom:717.319333pt;}
.y30{bottom:722.238133pt;}
.y82{bottom:723.571467pt;}
.ya1{bottom:723.803200pt;}
.yb{bottom:724.522000pt;}
.y6a{bottom:724.922000pt;}
.y7{bottom:739.986000pt;}
.ya0{bottom:743.803200pt;}
.yc{bottom:744.522000pt;}
.y69{bottom:744.655333pt;}
.y2f{bottom:747.797200pt;}
.y81{bottom:748.463867pt;}
.y6{bottom:762.652667pt;}
.y9f{bottom:763.803200pt;}
.y68{bottom:764.522000pt;}
.y2e{bottom:765.797200pt;}
.y4f{bottom:774.803200pt;}
.y2d{bottom:827.296000pt;}
.ya{bottom:841.498667pt;}
.hd{height:29.882667pt;}
.h6{height:30.293333pt;}
.hb{height:34.590400pt;}
.h4{height:36.778667pt;}
.h3{height:38.741333pt;}
.hf{height:39.253333pt;}
.hc{height:39.645833pt;}
.he{height:40.229333pt;}
.ha{height:41.376000pt;}
.h2{height:42.277156pt;}
.h9{height:43.674667pt;}
.h8{height:50.570667pt;}
.h5{height:55.050667pt;}
.h7{height:278.161653pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x6{left:36.252133pt;}
.x3{left:93.520133pt;}
.x1{left:94.480933pt;}
.x5{left:120.944933pt;}
.x2{left:122.097733pt;}
.x4{left:146.603067pt;}
.xe{left:237.224400pt;}
.xf{left:264.307067pt;}
.x7{left:308.144267pt;}
.xb{left:373.295867pt;}
.xc{left:471.614533pt;}
.xd{left:499.379867pt;}
.xa{left:565.914000pt;}
.x8{left:566.874000pt;}
.x9{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; }
  