
    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_30a8768a5f99222333cbefa3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.055176;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_2d04e8d48dc865a3b3faf442.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_267fcb15aa14c066ce32f215.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_fd696edbbff113272d9d6040.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246303,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,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);}
.m38{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253507,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253592,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253670,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253827,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254057,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254090,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254890,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.092000px;}
.ls16{letter-spacing:-1.020000px;}
.ls13{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.234000px;}
.lse{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.lsc{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.900000px;}
.ls3{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.020000px;}
.ls22{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.140000px;}
.ls8{letter-spacing:1.200000px;}
.ls21{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.404000px;}
.ls23{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.542000px;}
.ls24{letter-spacing:1.920000px;}
.ls20{letter-spacing:2.760000px;}
.ls1e{letter-spacing:3.378000px;}
.ls1f{letter-spacing:36.214800px;}
.lsa{letter-spacing:36.215400px;}
.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;}
}
.ws24{word-spacing:-12.960000px;}
.ws31{word-spacing:-12.780000px;}
.ws30{word-spacing:-12.420000px;}
.ws23{word-spacing:-12.360000px;}
.ws25{word-spacing:-12.120000px;}
.ws0{word-spacing:-7.392000px;}
.ws28{word-spacing:-3.978000px;}
.ws1f{word-spacing:-3.480000px;}
.ws32{word-spacing:-3.180000px;}
.wsb{word-spacing:-3.120000px;}
.wsd{word-spacing:-3.060000px;}
.ws5{word-spacing:-3.000000px;}
.ws3f{word-spacing:-2.580000px;}
.ws29{word-spacing:-2.340000px;}
.ws21{word-spacing:-2.280000px;}
.ws11{word-spacing:-2.220000px;}
.ws18{word-spacing:-2.160000px;}
.wsc{word-spacing:-2.040000px;}
.ws27{word-spacing:-1.980000px;}
.wsf{word-spacing:-1.860000px;}
.wsa{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.740000px;}
.ws2e{word-spacing:-1.680000px;}
.ws12{word-spacing:-1.620000px;}
.ws1c{word-spacing:-1.560000px;}
.ws45{word-spacing:-1.488000px;}
.ws26{word-spacing:-1.440000px;}
.ws2{word-spacing:-1.302000px;}
.ws17{word-spacing:-1.260000px;}
.ws19{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.780000px;}
.ws13{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.480000px;}
.ws16{word-spacing:-0.420000px;}
.ws37{word-spacing:-0.300000px;}
.ws33{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.060000px;}
.ws2c{word-spacing:0.120000px;}
.ws3d{word-spacing:0.240000px;}
.ws1b{word-spacing:0.300000px;}
.ws2d{word-spacing:0.420000px;}
.ws42{word-spacing:0.600000px;}
.ws41{word-spacing:0.720000px;}
.ws34{word-spacing:0.960000px;}
.ws2a{word-spacing:1.080000px;}
.ws4{word-spacing:1.140000px;}
.ws8{word-spacing:1.200000px;}
.ws6{word-spacing:1.260000px;}
.ws43{word-spacing:1.380000px;}
.ws3{word-spacing:1.500000px;}
.ws7{word-spacing:1.560000px;}
.ws20{word-spacing:2.100000px;}
.ws36{word-spacing:2.160000px;}
.ws3e{word-spacing:2.280000px;}
.ws40{word-spacing:2.460000px;}
.ws35{word-spacing:2.700000px;}
.ws1a{word-spacing:2.760000px;}
.ws1d{word-spacing:3.540000px;}
.ws3c{word-spacing:3.780000px;}
.ws3b{word-spacing:3.900000px;}
.ws9{word-spacing:4.200000px;}
.ws10{word-spacing:4.440000px;}
.ws38{word-spacing:4.800000px;}
.ws2b{word-spacing:5.220000px;}
.ws1e{word-spacing:5.700000px;}
.ws39{word-spacing:6.180000px;}
.ws3a{word-spacing:6.960000px;}
.ws44{word-spacing:9.960000px;}
._3{margin-left:-50.040000px;}
._2{margin-left:-5.040000px;}
._6{margin-left:-3.696000px;}
._1{margin-left:-1.932000px;}
._0{width:1.050000px;}
._5{width:339.096000px;}
._4{width:651.552000px;}
.fc3{color:rgb(250,196,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(37,86,153);}
.fc0{color:rgb(18,17,12);}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:11.521350px;}
.ya8{bottom:62.309100px;}
.yc1{bottom:66.995400px;}
.y3b{bottom:75.302400px;}
.ya7{bottom:80.309100px;}
.y3a{bottom:93.302400px;}
.ya6{bottom:98.309100px;}
.ybe{bottom:107.445750px;}
.ya5{bottom:116.309100px;}
.ybd{bottom:125.445750px;}
.ya4{bottom:134.309100px;}
.y48{bottom:141.272700px;}
.ybc{bottom:143.445750px;}
.ya3{bottom:152.309100px;}
.ybb{bottom:161.445750px;}
.ya2{bottom:170.309100px;}
.y31{bottom:182.682450px;}
.ya1{bottom:188.309100px;}
.yba{bottom:189.945750px;}
.ya0{bottom:206.309100px;}
.yb9{bottom:207.945750px;}
.y30{bottom:208.182450px;}
.y9f{bottom:224.309100px;}
.yb8{bottom:225.945750px;}
.y2f{bottom:233.682450px;}
.yb7{bottom:243.945750px;}
.y2e{bottom:248.682450px;}
.y9e{bottom:252.939000px;}
.yb6{bottom:261.945750px;}
.y2d{bottom:263.682450px;}
.y64{bottom:277.911000px;}
.y9d{bottom:287.450850px;}
.y2c{bottom:291.355800px;}
.yb5{bottom:291.945750px;}
.y9c{bottom:305.450850px;}
.y63{bottom:306.411000px;}
.yb4{bottom:320.445750px;}
.y9b{bottom:323.450850px;}
.y62{bottom:334.911000px;}
.yb3{bottom:338.445750px;}
.y9a{bottom:341.450850px;}
.y39{bottom:344.327700px;}
.yb2{bottom:356.445750px;}
.y99{bottom:359.450850px;}
.y61{bottom:363.411000px;}
.yb1{bottom:374.445750px;}
.y98{bottom:377.450850px;}
.y60{bottom:391.911000px;}
.yb0{bottom:392.445750px;}
.y97{bottom:395.450850px;}
.y1f{bottom:397.595400px;}
.y5f{bottom:409.911000px;}
.yaf{bottom:410.445750px;}
.y96{bottom:413.450850px;}
.y1e{bottom:415.595400px;}
.y5e{bottom:427.911000px;}
.yae{bottom:428.445750px;}
.y95{bottom:431.450850px;}
.y1d{bottom:433.595400px;}
.y94{bottom:449.450850px;}
.y1c{bottom:451.595400px;}
.y5d{bottom:456.411000px;}
.yad{bottom:456.945750px;}
.y93{bottom:467.450850px;}
.y1b{bottom:469.595400px;}
.yac{bottom:474.945750px;}
.y5c{bottom:479.811000px;}
.y92{bottom:485.450850px;}
.y1a{bottom:487.595400px;}
.yab{bottom:492.945750px;}
.y19{bottom:505.595400px;}
.y5b{bottom:513.711000px;}
.y91{bottom:514.080750px;}
.yaa{bottom:522.945750px;}
.y18{bottom:523.595400px;}
.y5a{bottom:531.711000px;}
.y90{bottom:537.480750px;}
.ya9{bottom:540.945750px;}
.y27{bottom:541.595400px;}
.y17{bottom:552.095400px;}
.y26{bottom:559.595400px;}
.y59{bottom:560.211000px;}
.y76{bottom:562.100700px;}
.y38{bottom:564.294750px;}
.y16{bottom:570.095400px;}
.yc0{bottom:572.472300px;}
.y75{bottom:580.100700px;}
.y15{bottom:588.095400px;}
.y37{bottom:588.769650px;}
.y58{bottom:588.840750px;}
.ybf{bottom:594.972300px;}
.y74{bottom:598.100700px;}
.y14{bottom:606.095400px;}
.y73{bottom:616.100700px;}
.y57{bottom:617.340750px;}
.y8f{bottom:617.386650px;}
.y13{bottom:624.095400px;}
.y72{bottom:634.100700px;}
.y45{bottom:635.218200px;}
.y56{bottom:635.340750px;}
.y8e{bottom:635.386650px;}
.y12{bottom:642.095400px;}
.y44{bottom:656.218200px;}
.y11{bottom:660.095400px;}
.y71{bottom:662.600700px;}
.y55{bottom:663.840750px;}
.y8d{bottom:663.886650px;}
.y3f{bottom:666.568200px;}
.y10{bottom:678.095400px;}
.y70{bottom:680.600700px;}
.y43{bottom:681.718200px;}
.y54{bottom:681.840750px;}
.y8c{bottom:681.886650px;}
.y3e{bottom:684.568200px;}
.y25{bottom:696.095400px;}
.y42{bottom:697.918050px;}
.y6f{bottom:698.600700px;}
.yf{bottom:706.595400px;}
.y8b{bottom:710.386650px;}
.y53{bottom:710.470800px;}
.y24{bottom:714.095400px;}
.y41{bottom:715.918050px;}
.y6e{bottom:716.600700px;}
.y83{bottom:717.886650px;}
.y3d{bottom:720.568200px;}
.ye{bottom:724.595400px;}
.y8a{bottom:728.386650px;}
.y6d{bottom:734.600700px;}
.y82{bottom:735.886650px;}
.y52{bottom:738.970800px;}
.yd{bottom:742.595400px;}
.y89{bottom:746.386650px;}
.y40{bottom:751.918050px;}
.y6c{bottom:752.600700px;}
.y51{bottom:756.970800px;}
.yc{bottom:760.595400px;}
.y81{bottom:764.386650px;}
.y6b{bottom:770.600700px;}
.y88{bottom:774.886650px;}
.yb{bottom:778.595400px;}
.y80{bottom:782.386650px;}
.y50{bottom:785.470800px;}
.y6a{bottom:788.600700px;}
.y87{bottom:792.886650px;}
.ya{bottom:796.595400px;}
.y47{bottom:796.937850px;}
.y4f{bottom:803.470800px;}
.y69{bottom:806.600700px;}
.y7f{bottom:810.886650px;}
.y23{bottom:814.595400px;}
.y46{bottom:818.370450px;}
.y86{bottom:821.386650px;}
.y4e{bottom:821.470800px;}
.y68{bottom:824.600700px;}
.y9{bottom:825.095400px;}
.y7e{bottom:828.886650px;}
.y22{bottom:832.595400px;}
.y85{bottom:839.386650px;}
.y67{bottom:842.600700px;}
.y8{bottom:843.095400px;}
.y4d{bottom:849.970800px;}
.y21{bottom:850.595400px;}
.y7d{bottom:857.386650px;}
.y66{bottom:860.600700px;}
.y7{bottom:861.095400px;}
.y4c{bottom:867.970800px;}
.y20{bottom:868.595400px;}
.y35{bottom:873.320100px;}
.y7c{bottom:875.386650px;}
.y65{bottom:878.600700px;}
.y6{bottom:879.095400px;}
.y84{bottom:885.886650px;}
.y34{bottom:891.320100px;}
.y4b{bottom:896.600700px;}
.y5{bottom:897.095400px;}
.y7b{bottom:903.886650px;}
.y4{bottom:915.095400px;}
.y4a{bottom:925.230600px;}
.y33{bottom:927.320100px;}
.y7a{bottom:932.386650px;}
.y3{bottom:933.095400px;}
.y49{bottom:948.630600px;}
.y2{bottom:951.095400px;}
.y79{bottom:962.220600px;}
.y3c{bottom:974.906400px;}
.y78{bottom:990.708600px;}
.y77{bottom:990.953100px;}
.y36{bottom:998.016150px;}
.y2b{bottom:1059.996300px;}
.y32{bottom:1086.210750px;}
.y28{bottom:1090.651950px;}
.y2a{bottom:1200.819300px;}
.y29{bottom:1221.825300px;}
.h2{height:34.022461px;}
.hb{height:38.882812px;}
.h6{height:43.743164px;}
.h4{height:46.201172px;}
.h3{height:48.603516px;}
.h7{height:58.324219px;}
.ha{height:63.184570px;}
.h9{height:72.905273px;}
.h8{height:77.765625px;}
.h5{height:82.625977px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:61.572600px;}
.x2{left:63.779550px;}
.x6{left:71.758650px;}
.x7{left:80.812500px;}
.xc{left:123.765900px;}
.x15{left:144.302850px;}
.xd{left:147.525900px;}
.xb{left:165.493200px;}
.xe{left:186.358950px;}
.xa{left:188.173950px;}
.x9{left:197.248950px;}
.x8{left:204.283950px;}
.x3{left:459.209550px;}
.x17{left:467.166750px;}
.x18{left:476.220450px;}
.x12{left:487.184400px;}
.x13{left:556.284300px;}
.x11{left:572.755200px;}
.xf{left:574.525200px;}
.x14{left:595.809300px;}
.x10{left:606.940200px;}
.x4{left:652.831200px;}
.x16{left:767.041200px;}
.x5{left:770.038200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.970667pt;}
.ls16{letter-spacing:-0.906667pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.208000pt;}
.lse{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls3{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.906667pt;}
.ls22{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls8{letter-spacing:1.066667pt;}
.ls21{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.248000pt;}
.ls23{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.370667pt;}
.ls24{letter-spacing:1.706667pt;}
.ls20{letter-spacing:2.453333pt;}
.ls1e{letter-spacing:3.002667pt;}
.ls1f{letter-spacing:32.190933pt;}
.lsa{letter-spacing:32.191467pt;}
.ws24{word-spacing:-11.520000pt;}
.ws31{word-spacing:-11.360000pt;}
.ws30{word-spacing:-11.040000pt;}
.ws23{word-spacing:-10.986667pt;}
.ws25{word-spacing:-10.773333pt;}
.ws0{word-spacing:-6.570667pt;}
.ws28{word-spacing:-3.536000pt;}
.ws1f{word-spacing:-3.093333pt;}
.ws32{word-spacing:-2.826667pt;}
.wsb{word-spacing:-2.773333pt;}
.wsd{word-spacing:-2.720000pt;}
.ws5{word-spacing:-2.666667pt;}
.ws3f{word-spacing:-2.293333pt;}
.ws29{word-spacing:-2.080000pt;}
.ws21{word-spacing:-2.026667pt;}
.ws11{word-spacing:-1.973333pt;}
.ws18{word-spacing:-1.920000pt;}
.wsc{word-spacing:-1.813333pt;}
.ws27{word-spacing:-1.760000pt;}
.wsf{word-spacing:-1.653333pt;}
.wsa{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.546667pt;}
.ws2e{word-spacing:-1.493333pt;}
.ws12{word-spacing:-1.440000pt;}
.ws1c{word-spacing:-1.386667pt;}
.ws45{word-spacing:-1.322667pt;}
.ws26{word-spacing:-1.280000pt;}
.ws2{word-spacing:-1.157333pt;}
.ws17{word-spacing:-1.120000pt;}
.ws19{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.693333pt;}
.ws13{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.426667pt;}
.ws16{word-spacing:-0.373333pt;}
.ws37{word-spacing:-0.266667pt;}
.ws33{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.053333pt;}
.ws2c{word-spacing:0.106667pt;}
.ws3d{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.266667pt;}
.ws2d{word-spacing:0.373333pt;}
.ws42{word-spacing:0.533333pt;}
.ws41{word-spacing:0.640000pt;}
.ws34{word-spacing:0.853333pt;}
.ws2a{word-spacing:0.960000pt;}
.ws4{word-spacing:1.013333pt;}
.ws8{word-spacing:1.066667pt;}
.ws6{word-spacing:1.120000pt;}
.ws43{word-spacing:1.226667pt;}
.ws3{word-spacing:1.333333pt;}
.ws7{word-spacing:1.386667pt;}
.ws20{word-spacing:1.866667pt;}
.ws36{word-spacing:1.920000pt;}
.ws3e{word-spacing:2.026667pt;}
.ws40{word-spacing:2.186667pt;}
.ws35{word-spacing:2.400000pt;}
.ws1a{word-spacing:2.453333pt;}
.ws1d{word-spacing:3.146667pt;}
.ws3c{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.466667pt;}
.ws9{word-spacing:3.733333pt;}
.ws10{word-spacing:3.946667pt;}
.ws38{word-spacing:4.266667pt;}
.ws2b{word-spacing:4.640000pt;}
.ws1e{word-spacing:5.066667pt;}
.ws39{word-spacing:5.493333pt;}
.ws3a{word-spacing:6.186667pt;}
.ws44{word-spacing:8.853333pt;}
._3{margin-left:-44.480000pt;}
._2{margin-left:-4.480000pt;}
._6{margin-left:-3.285333pt;}
._1{margin-left:-1.717333pt;}
._0{width:0.933333pt;}
._5{width:301.418667pt;}
._4{width:579.157333pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:10.241200pt;}
.ya8{bottom:55.385867pt;}
.yc1{bottom:59.551467pt;}
.y3b{bottom:66.935467pt;}
.ya7{bottom:71.385867pt;}
.y3a{bottom:82.935467pt;}
.ya6{bottom:87.385867pt;}
.ybe{bottom:95.507333pt;}
.ya5{bottom:103.385867pt;}
.ybd{bottom:111.507333pt;}
.ya4{bottom:119.385867pt;}
.y48{bottom:125.575733pt;}
.ybc{bottom:127.507333pt;}
.ya3{bottom:135.385867pt;}
.ybb{bottom:143.507333pt;}
.ya2{bottom:151.385867pt;}
.y31{bottom:162.384400pt;}
.ya1{bottom:167.385867pt;}
.yba{bottom:168.840667pt;}
.ya0{bottom:183.385867pt;}
.yb9{bottom:184.840667pt;}
.y30{bottom:185.051067pt;}
.y9f{bottom:199.385867pt;}
.yb8{bottom:200.840667pt;}
.y2f{bottom:207.717733pt;}
.yb7{bottom:216.840667pt;}
.y2e{bottom:221.051067pt;}
.y9e{bottom:224.834667pt;}
.yb6{bottom:232.840667pt;}
.y2d{bottom:234.384400pt;}
.y64{bottom:247.032000pt;}
.y9d{bottom:255.511867pt;}
.y2c{bottom:258.982933pt;}
.yb5{bottom:259.507333pt;}
.y9c{bottom:271.511867pt;}
.y63{bottom:272.365333pt;}
.yb4{bottom:284.840667pt;}
.y9b{bottom:287.511867pt;}
.y62{bottom:297.698667pt;}
.yb3{bottom:300.840667pt;}
.y9a{bottom:303.511867pt;}
.y39{bottom:306.069067pt;}
.yb2{bottom:316.840667pt;}
.y99{bottom:319.511867pt;}
.y61{bottom:323.032000pt;}
.yb1{bottom:332.840667pt;}
.y98{bottom:335.511867pt;}
.y60{bottom:348.365333pt;}
.yb0{bottom:348.840667pt;}
.y97{bottom:351.511867pt;}
.y1f{bottom:353.418133pt;}
.y5f{bottom:364.365333pt;}
.yaf{bottom:364.840667pt;}
.y96{bottom:367.511867pt;}
.y1e{bottom:369.418133pt;}
.y5e{bottom:380.365333pt;}
.yae{bottom:380.840667pt;}
.y95{bottom:383.511867pt;}
.y1d{bottom:385.418133pt;}
.y94{bottom:399.511867pt;}
.y1c{bottom:401.418133pt;}
.y5d{bottom:405.698667pt;}
.yad{bottom:406.174000pt;}
.y93{bottom:415.511867pt;}
.y1b{bottom:417.418133pt;}
.yac{bottom:422.174000pt;}
.y5c{bottom:426.498667pt;}
.y92{bottom:431.511867pt;}
.y1a{bottom:433.418133pt;}
.yab{bottom:438.174000pt;}
.y19{bottom:449.418133pt;}
.y5b{bottom:456.632000pt;}
.y91{bottom:456.960667pt;}
.yaa{bottom:464.840667pt;}
.y18{bottom:465.418133pt;}
.y5a{bottom:472.632000pt;}
.y90{bottom:477.760667pt;}
.ya9{bottom:480.840667pt;}
.y27{bottom:481.418133pt;}
.y17{bottom:490.751467pt;}
.y26{bottom:497.418133pt;}
.y59{bottom:497.965333pt;}
.y76{bottom:499.645067pt;}
.y38{bottom:501.595333pt;}
.y16{bottom:506.751467pt;}
.yc0{bottom:508.864267pt;}
.y75{bottom:515.645067pt;}
.y15{bottom:522.751467pt;}
.y37{bottom:523.350800pt;}
.y58{bottom:523.414000pt;}
.ybf{bottom:528.864267pt;}
.y74{bottom:531.645067pt;}
.y14{bottom:538.751467pt;}
.y73{bottom:547.645067pt;}
.y57{bottom:548.747333pt;}
.y8f{bottom:548.788133pt;}
.y13{bottom:554.751467pt;}
.y72{bottom:563.645067pt;}
.y45{bottom:564.638400pt;}
.y56{bottom:564.747333pt;}
.y8e{bottom:564.788133pt;}
.y12{bottom:570.751467pt;}
.y44{bottom:583.305067pt;}
.y11{bottom:586.751467pt;}
.y71{bottom:588.978400pt;}
.y55{bottom:590.080667pt;}
.y8d{bottom:590.121467pt;}
.y3f{bottom:592.505067pt;}
.y10{bottom:602.751467pt;}
.y70{bottom:604.978400pt;}
.y43{bottom:605.971733pt;}
.y54{bottom:606.080667pt;}
.y8c{bottom:606.121467pt;}
.y3e{bottom:608.505067pt;}
.y25{bottom:618.751467pt;}
.y42{bottom:620.371600pt;}
.y6f{bottom:620.978400pt;}
.yf{bottom:628.084800pt;}
.y8b{bottom:631.454800pt;}
.y53{bottom:631.529600pt;}
.y24{bottom:634.751467pt;}
.y41{bottom:636.371600pt;}
.y6e{bottom:636.978400pt;}
.y83{bottom:638.121467pt;}
.y3d{bottom:640.505067pt;}
.ye{bottom:644.084800pt;}
.y8a{bottom:647.454800pt;}
.y6d{bottom:652.978400pt;}
.y82{bottom:654.121467pt;}
.y52{bottom:656.862933pt;}
.yd{bottom:660.084800pt;}
.y89{bottom:663.454800pt;}
.y40{bottom:668.371600pt;}
.y6c{bottom:668.978400pt;}
.y51{bottom:672.862933pt;}
.yc{bottom:676.084800pt;}
.y81{bottom:679.454800pt;}
.y6b{bottom:684.978400pt;}
.y88{bottom:688.788133pt;}
.yb{bottom:692.084800pt;}
.y80{bottom:695.454800pt;}
.y50{bottom:698.196267pt;}
.y6a{bottom:700.978400pt;}
.y87{bottom:704.788133pt;}
.ya{bottom:708.084800pt;}
.y47{bottom:708.389200pt;}
.y4f{bottom:714.196267pt;}
.y69{bottom:716.978400pt;}
.y7f{bottom:720.788133pt;}
.y23{bottom:724.084800pt;}
.y46{bottom:727.440400pt;}
.y86{bottom:730.121467pt;}
.y4e{bottom:730.196267pt;}
.y68{bottom:732.978400pt;}
.y9{bottom:733.418133pt;}
.y7e{bottom:736.788133pt;}
.y22{bottom:740.084800pt;}
.y85{bottom:746.121467pt;}
.y67{bottom:748.978400pt;}
.y8{bottom:749.418133pt;}
.y4d{bottom:755.529600pt;}
.y21{bottom:756.084800pt;}
.y7d{bottom:762.121467pt;}
.y66{bottom:764.978400pt;}
.y7{bottom:765.418133pt;}
.y4c{bottom:771.529600pt;}
.y20{bottom:772.084800pt;}
.y35{bottom:776.284533pt;}
.y7c{bottom:778.121467pt;}
.y65{bottom:780.978400pt;}
.y6{bottom:781.418133pt;}
.y84{bottom:787.454800pt;}
.y34{bottom:792.284533pt;}
.y4b{bottom:796.978400pt;}
.y5{bottom:797.418133pt;}
.y7b{bottom:803.454800pt;}
.y4{bottom:813.418133pt;}
.y4a{bottom:822.427200pt;}
.y33{bottom:824.284533pt;}
.y7a{bottom:828.788133pt;}
.y3{bottom:829.418133pt;}
.y49{bottom:843.227200pt;}
.y2{bottom:845.418133pt;}
.y79{bottom:855.307200pt;}
.y3c{bottom:866.583467pt;}
.y78{bottom:880.629867pt;}
.y77{bottom:880.847200pt;}
.y36{bottom:887.125467pt;}
.y2b{bottom:942.218933pt;}
.y32{bottom:965.520667pt;}
.y28{bottom:969.468400pt;}
.y2a{bottom:1067.394933pt;}
.y29{bottom:1086.066933pt;}
.h2{height:30.242188pt;}
.hb{height:34.562500pt;}
.h6{height:38.882812pt;}
.h4{height:41.067708pt;}
.h3{height:43.203125pt;}
.h7{height:51.843750pt;}
.ha{height:56.164062pt;}
.h9{height:64.804688pt;}
.h8{height:69.125000pt;}
.h5{height:73.445312pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:54.731200pt;}
.x2{left:56.692933pt;}
.x6{left:63.785467pt;}
.x7{left:71.833333pt;}
.xc{left:110.014133pt;}
.x15{left:128.269200pt;}
.xd{left:131.134133pt;}
.xb{left:147.105067pt;}
.xe{left:165.652400pt;}
.xa{left:167.265733pt;}
.x9{left:175.332400pt;}
.x8{left:181.585733pt;}
.x3{left:408.186267pt;}
.x17{left:415.259333pt;}
.x18{left:423.307067pt;}
.x12{left:433.052800pt;}
.x13{left:494.474933pt;}
.x11{left:509.115733pt;}
.xf{left:510.689067pt;}
.x14{left:529.608267pt;}
.x10{left:539.502400pt;}
.x4{left:580.294400pt;}
.x16{left:681.814400pt;}
.x5{left:684.478400pt;}
}




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