
    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_7af4f096d0ff7ed8ead30c61.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_828cf26c16597267c78db496.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_63e68475472793e6ca87d3a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_825b916e0393e6d81b2a026e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_9f33e0b6599fab09e8fc1fac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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;}
.m1{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m25{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(4.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.062500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-36.000000px;}
.v3{vertical-align:-30.000000px;}
.v6{vertical-align:-24.000000px;}
.v2{vertical-align:-18.000000px;}
.v8{vertical-align:-12.000000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v7{vertical-align:12.000000px;}
.v5{vertical-align:30.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:2.880000px;}
.ls6{letter-spacing:6.000000px;}
.ls4{letter-spacing:11.666667px;}
.ls3{letter-spacing:12.000000px;}
.ls7{letter-spacing:36.000000px;}
.lsb{letter-spacing:42.000000px;}
.ls1{letter-spacing:72.000000px;}
.lsa{letter-spacing:78.000000px;}
.ls0{letter-spacing:125.333333px;}
.ls5{letter-spacing:132.000000px;}
.ls8{letter-spacing:264.000000px;}
.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;}
}
.ws0{word-spacing:-24.000000px;}
.ws3{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.520000px;}
.ws7{word-spacing:-10.666667px;}
.wsc{word-spacing:-10.560000px;}
.wsb{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.760000px;}
.ws2{word-spacing:-2.880000px;}
.wse{word-spacing:-2.361474px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:2.097503px;}
.wsf{word-spacing:4.530612px;}
.ws11{word-spacing:6.720000px;}
.ws9{word-spacing:12.000000px;}
.ws5{word-spacing:18.000000px;}
.ws1{word-spacing:24.000000px;}
.wsd{word-spacing:48.000000px;}
.ws10{word-spacing:144.000000px;}
._d{margin-left:-42.822427px;}
._b{margin-left:-33.719635px;}
._c{margin-left:-30.867187px;}
._2{margin-left:-24.239568px;}
._9{margin-left:-19.928375px;}
._3{margin-left:-15.119598px;}
._6{margin-left:-13.333333px;}
._1{margin-left:-10.529297px;}
._a{margin-left:-6.989003px;}
._7{margin-left:-1.920000px;}
._0{width:2.880000px;}
._5{width:6.000000px;}
._4{width:7.680000px;}
._8{width:18.240000px;}
.fc0{color:transparent;}
.fs3{font-size:24.000000px;}
.fs2{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:18.992100px;}
.yc7{bottom:51.992100px;}
.yc6{bottom:53.492100px;}
.yc5{bottom:54.992100px;}
.y2a{bottom:61.996050px;}
.y2b{bottom:67.996050px;}
.y29{bottom:69.496050px;}
.yc4{bottom:69.992100px;}
.yc3{bottom:75.992100px;}
.yc2{bottom:77.492100px;}
.yc1{bottom:78.992100px;}
.yc0{bottom:80.492100px;}
.ybf{bottom:81.992100px;}
.y28{bottom:94.996050px;}
.y2c{bottom:96.496050px;}
.ybd{bottom:108.992100px;}
.ybe{bottom:110.492100px;}
.y27{bottom:123.496050px;}
.y26{bottom:135.496050px;}
.ybb{bottom:135.992100px;}
.y24{bottom:136.996050px;}
.ybc{bottom:137.492100px;}
.y25{bottom:138.496050px;}
.y57{bottom:144.992100px;}
.y23{bottom:150.496050px;}
.y55{bottom:156.992100px;}
.y56{bottom:162.992100px;}
.y88{bottom:163.996050px;}
.y87{bottom:165.496050px;}
.y5c{bottom:168.992100px;}
.y5a{bottom:170.492100px;}
.yba{bottom:171.992100px;}
.y5b{bottom:176.492100px;}
.y58{bottom:183.992100px;}
.y2f{bottom:185.492100px;}
.y22{bottom:190.996050px;}
.y2e{bottom:191.492100px;}
.y86{bottom:192.496050px;}
.yb8{bottom:197.492100px;}
.yb9{bottom:198.992100px;}
.y20{bottom:201.496050px;}
.y59{bottom:203.492100px;}
.y1d{bottom:204.496050px;}
.y52{bottom:204.992100px;}
.y1f{bottom:205.996050px;}
.y85{bottom:207.496050px;}
.y21{bottom:210.496050px;}
.y53{bottom:210.992100px;}
.yb7{bottom:216.992100px;}
.y1c{bottom:217.996050px;}
.y54{bottom:218.492100px;}
.y50{bottom:224.492100px;}
.y51{bottom:225.992100px;}
.y4f{bottom:231.992100px;}
.yb6{bottom:245.492100px;}
.yb4{bottom:251.492100px;}
.yb3{bottom:252.992100px;}
.yb5{bottom:254.492100px;}
.y1b{bottom:258.496050px;}
.y1a{bottom:259.996050px;}
.y84{bottom:261.496050px;}
.y4b{bottom:264.992100px;}
.y4a{bottom:266.492100px;}
.yb1{bottom:285.992100px;}
.y19{bottom:286.996050px;}
.yb2{bottom:287.492100px;}
.y18{bottom:298.996050px;}
.y49{bottom:299.492100px;}
.y17{bottom:300.496050px;}
.y83{bottom:301.996050px;}
.ye0{bottom:303.496050px;}
.ye1{bottom:304.996050px;}
.y48{bottom:306.992100px;}
.yaf{bottom:309.992100px;}
.yae{bottom:312.992100px;}
.y16{bottom:313.996050px;}
.yb0{bottom:314.492100px;}
.y82{bottom:319.996050px;}
.y81{bottom:321.496050px;}
.y80{bottom:327.496050px;}
.y7f{bottom:328.996050px;}
.ydf{bottom:330.496050px;}
.yde{bottom:331.996050px;}
.y4e{bottom:333.992100px;}
.y4d{bottom:335.492100px;}
.y7e{bottom:346.996050px;}
.y15{bottom:352.996050px;}
.yab{bottom:353.492100px;}
.y7d{bottom:354.496050px;}
.yac{bottom:354.992100px;}
.ydd{bottom:358.996050px;}
.yad{bottom:360.992100px;}
.y2d{bottom:362.492100px;}
.y14{bottom:366.496050px;}
.y13{bottom:367.996050px;}
.y12{bottom:372.496050px;}
.y11{bottom:381.496050px;}
.y7c{bottom:382.996050px;}
.ydc{bottom:385.996050px;}
.ydb{bottom:387.496050px;}
.y4c{bottom:387.992100px;}
.ya9{bottom:393.992100px;}
.yaa{bottom:395.492100px;}
.y7a{bottom:402.496050px;}
.y7b{bottom:408.496050px;}
.y79{bottom:409.996050px;}
.yda{bottom:412.996050px;}
.y6{bottom:421.996050px;}
.y47{bottom:422.492100px;}
.ya8{bottom:435.992100px;}
.yd9{bottom:439.996050px;}
.yd8{bottom:441.496050px;}
.y78{bottom:442.996050px;}
.ya7{bottom:446.492100px;}
.y10{bottom:447.496050px;}
.ya3{bottom:447.992100px;}
.yf{bottom:448.996050px;}
.ya6{bottom:449.492100px;}
.y77{bottom:450.496050px;}
.ya5{bottom:453.992100px;}
.ya4{bottom:455.492100px;}
.ya2{bottom:461.492100px;}
.ya1{bottom:462.992100px;}
.yd7{bottom:468.496050px;}
.ye{bottom:474.496050px;}
.yd{bottom:475.996050px;}
.y46{bottom:476.492100px;}
.y76{bottom:477.496050px;}
.y9f{bottom:489.992100px;}
.ya0{bottom:491.492100px;}
.yd5{bottom:495.496050px;}
.yd6{bottom:496.996050px;}
.y45{bottom:501.992100px;}
.yc{bottom:502.996050px;}
.y44{bottom:503.492100px;}
.y75{bottom:514.996050px;}
.y9e{bottom:515.492100px;}
.y74{bottom:516.496050px;}
.y9d{bottom:516.992100px;}
.y73{bottom:517.996050px;}
.yd3{bottom:522.496050px;}
.yd4{bottom:523.996050px;}
.yb{bottom:529.996050px;}
.y43{bottom:530.492100px;}
.y72{bottom:543.496050px;}
.y9b{bottom:543.992100px;}
.y71{bottom:544.996050px;}
.y9c{bottom:545.492100px;}
.yd2{bottom:550.996050px;}
.ya{bottom:556.996050px;}
.y42{bottom:557.492100px;}
.y70{bottom:570.496050px;}
.y98{bottom:570.992100px;}
.y6e{bottom:571.996050px;}
.y99{bottom:572.492100px;}
.y6f{bottom:573.496050px;}
.y9a{bottom:573.992100px;}
.yd1{bottom:577.996050px;}
.y9{bottom:583.996050px;}
.y41{bottom:584.492100px;}
.y6d{bottom:591.496050px;}
.y96{bottom:597.992100px;}
.y6c{bottom:598.996050px;}
.y97{bottom:599.492100px;}
.yd0{bottom:604.996050px;}
.y40{bottom:611.492100px;}
.y68{bottom:621.496050px;}
.y69{bottom:624.496050px;}
.y6a{bottom:625.996050px;}
.y94{bottom:626.492100px;}
.y95{bottom:627.992100px;}
.y3f{bottom:630.992100px;}
.y6b{bottom:631.996050px;}
.y3c{bottom:638.492100px;}
.y67{bottom:639.496050px;}
.y3e{bottom:639.992100px;}
.y8{bottom:645.496050px;}
.y92{bottom:651.992100px;}
.y93{bottom:653.492100px;}
.ycf{bottom:658.996050px;}
.y65{bottom:663.496050px;}
.y39{bottom:665.492100px;}
.y64{bottom:666.496050px;}
.y3a{bottom:666.992100px;}
.y66{bottom:667.996050px;}
.y3b{bottom:672.992100px;}
.y38{bottom:677.492100px;}
.y8f{bottom:678.992100px;}
.y5{bottom:679.996050px;}
.y90{bottom:680.492100px;}
.y91{bottom:681.992100px;}
.yce{bottom:685.996050px;}
.y62{bottom:693.496050px;}
.y63{bottom:694.996050px;}
.y8c{bottom:699.992100px;}
.y8e{bottom:701.492100px;}
.y3{bottom:705.496050px;}
.y36{bottom:705.992100px;}
.y4{bottom:706.996050px;}
.y37{bottom:707.492100px;}
.y8d{bottom:708.992100px;}
.ycc{bottom:712.996050px;}
.ycd{bottom:714.496050px;}
.y5f{bottom:720.496050px;}
.y60{bottom:721.996050px;}
.y61{bottom:723.496050px;}
.y7{bottom:732.496050px;}
.y34{bottom:732.992100px;}
.y35{bottom:734.492100px;}
.yca{bottom:739.996050px;}
.y89{bottom:740.492100px;}
.ycb{bottom:741.496050px;}
.y8a{bottom:741.992100px;}
.y8b{bottom:743.492100px;}
.y5d{bottom:754.996050px;}
.y5e{bottom:756.496050px;}
.yc9{bottom:766.996050px;}
.y32{bottom:767.492100px;}
.y33{bottom:768.992100px;}
.y2{bottom:786.496050px;}
.y30{bottom:794.492100px;}
.y31{bottom:795.992100px;}
.y1{bottom:810.496050px;}
.y3d{bottom:857.492100px;}
.y1e{bottom:865.996050px;}
.h8{height:24.668218px;}
.h5{height:30.835273px;}
.h6{height:36.835273px;}
.h2{height:49.336436px;}
.h9{height:55.336436px;}
.h4{height:55.503491px;}
.ha{height:61.336436px;}
.h7{height:79.336436px;}
.hb{height:141.842254px;}
.h3{height:853.239600px;}
.h0{height:853.240050px;}
.h1{height:853.500000px;}
.w2{width:583.239540px;}
.w0{width:583.240590px;}
.w1{width:583.500000px;}
.w6{width:584.740590px;}
.w7{width:585.000000px;}
.w5{width:587.739540px;}
.w3{width:587.740590px;}
.w4{width:588.000000px;}
.x3e{left:-12.755910px;}
.x6b{left:-4.251960px;}
.x0{left:0.000000px;}
.x5{left:30.744090px;}
.x1{left:32.244090px;}
.xe0{left:43.748040px;}
.x55{left:45.248040px;}
.x5e{left:46.748040px;}
.x78{left:48.248040px;}
.xef{left:49.748040px;}
.xf6{left:51.744090px;}
.x100{left:53.244090px;}
.x56{left:54.248040px;}
.x6{left:56.244090px;}
.x2{left:57.744090px;}
.xf0{left:59.244090px;}
.x9d{left:60.744090px;}
.xc3{left:62.244090px;}
.x29{left:63.744090px;}
.x16{left:65.244090px;}
.xf7{left:68.244090px;}
.x3{left:69.744090px;}
.xe3{left:70.748040px;}
.xf4{left:74.244090px;}
.x102{left:75.744090px;}
.xa5{left:77.244090px;}
.x7d{left:78.248040px;}
.x53{left:80.244090px;}
.xfc{left:83.244090px;}
.xad{left:84.744090px;}
.x7{left:86.244090px;}
.x21{left:87.744090px;}
.x3a{left:89.244090px;}
.x3f{left:90.744090px;}
.x94{left:92.244090px;}
.x92{left:93.744090px;}
.x74{left:94.748040px;}
.x4{left:96.744090px;}
.x45{left:98.244090px;}
.x84{left:102.248040px;}
.x9{left:104.244090px;}
.x2d{left:105.744090px;}
.xa6{left:108.744090px;}
.x104{left:110.244090px;}
.xe9{left:111.248040px;}
.x22{left:113.244090px;}
.x40{left:114.744090px;}
.xa2{left:117.744090px;}
.x87{left:118.748040px;}
.x57{left:120.248040px;}
.x2a{left:122.244090px;}
.x46{left:123.744090px;}
.xb6{left:125.244090px;}
.xc0{left:126.744090px;}
.xa{left:128.244090px;}
.x1d{left:129.744090px;}
.xf1{left:132.744090px;}
.xb1{left:134.244090px;}
.x7b{left:135.248040px;}
.x2e{left:137.244090px;}
.x3b{left:138.744090px;}
.x37{left:140.244090px;}
.x93{left:141.744090px;}
.x7e{left:142.748040px;}
.xc9{left:144.744090px;}
.x47{left:146.244090px;}
.x32{left:147.744090px;}
.xae{left:149.244090px;}
.xb2{left:150.744090px;}
.x6a{left:151.748040px;}
.x38{left:153.744090px;}
.x41{left:156.744090px;}
.x95{left:158.244090px;}
.x83{left:159.248040px;}
.x8{left:161.244090px;}
.x17{left:162.744090px;}
.x48{left:164.244090px;}
.xe6{left:166.748040px;}
.x27{left:168.744090px;}
.x44{left:170.244090px;}
.x3c{left:171.744090px;}
.x96{left:174.744090px;}
.xb{left:176.244090px;}
.x14{left:177.744090px;}
.x9e{left:182.244090px;}
.x7f{left:183.248040px;}
.x4e{left:185.244090px;}
.x10{left:186.744090px;}
.x2f{left:188.244090px;}
.xa3{left:191.244090px;}
.xc{left:192.744090px;}
.x18{left:194.244090px;}
.xcf{left:196.748040px;}
.xa4{left:198.744090px;}
.x68{left:199.748040px;}
.x70{left:201.248040px;}
.x36{left:203.244090px;}
.x42{left:204.744090px;}
.xaf{left:206.244090px;}
.xed{left:207.248040px;}
.x2b{left:209.244090px;}
.x11{left:210.744090px;}
.x49{left:213.744090px;}
.xbd{left:215.244090px;}
.x6c{left:216.248040px;}
.x12{left:218.244090px;}
.x97{left:222.744090px;}
.x65{left:223.748040px;}
.x23{left:225.744090px;}
.x85{left:226.748040px;}
.xfd{left:228.744090px;}
.x98{left:230.244090px;}
.xbe{left:231.744090px;}
.x19{left:233.244090px;}
.x33{left:234.744090px;}
.x4a{left:237.744090px;}
.xb9{left:239.244090px;}
.x80{left:240.248040px;}
.xea{left:241.748040px;}
.x15{left:243.744090px;}
.xfa{left:245.244090px;}
.xd9{left:246.248040px;}
.x88{left:247.748040px;}
.x24{left:249.744090px;}
.x34{left:251.244090px;}
.xf5{left:252.744090px;}
.xd7{left:253.748040px;}
.xdd{left:255.248040px;}
.x5f{left:256.748040px;}
.x13{left:258.744090px;}
.x9f{left:261.744090px;}
.xb3{left:263.244090px;}
.x60{left:264.248040px;}
.x1e{left:266.244090px;}
.x4b{left:267.744090px;}
.xd0{left:268.748040px;}
.x103{left:270.744090px;}
.x58{left:271.748040px;}
.xd{left:273.744090px;}
.x35{left:275.244090px;}
.x39{left:278.244090px;}
.xc4{left:279.744090px;}
.x61{left:280.748040px;}
.x31{left:282.744090px;}
.x43{left:284.244090px;}
.xd1{left:285.248040px;}
.xb4{left:287.244090px;}
.xb7{left:288.744090px;}
.x71{left:289.748040px;}
.x1f{left:291.744090px;}
.xfe{left:294.744090px;}
.xba{left:296.244090px;}
.x79{left:297.248040px;}
.x3d{left:299.244090px;}
.x4f{left:300.744090px;}
.xa7{left:302.244090px;}
.xe2{left:303.248040px;}
.x6d{left:304.748040px;}
.x89{left:306.248040px;}
.xcc{left:309.248040px;}
.x99{left:311.244090px;}
.x66{left:312.248040px;}
.x86{left:313.748040px;}
.x50{left:317.244090px;}
.x9a{left:318.744090px;}
.xa8{left:320.244090px;}
.x6e{left:321.248040px;}
.x62{left:322.748040px;}
.xf8{left:324.744090px;}
.xda{left:325.748040px;}
.x8a{left:327.248040px;}
.x67{left:328.748040px;}
.x25{left:330.744090px;}
.x54{left:332.244090px;}
.xd8{left:334.748040px;}
.xbf{left:336.744090px;}
.x63{left:337.748040px;}
.x51{left:341.244090px;}
.xa9{left:342.744090px;}
.xdb{left:343.748040px;}
.x4c{left:345.744090px;}
.xca{left:347.244090px;}
.xf9{left:350.244090px;}
.x101{left:351.744090px;}
.x59{left:352.748040px;}
.x75{left:354.248040px;}
.x81{left:355.748040px;}
.xf2{left:357.744090px;}
.xa0{left:359.244090px;}
.xb8{left:360.744090px;}
.x28{left:362.244090px;}
.x69{left:363.248040px;}
.xdc{left:366.248040px;}
.xc1{left:368.244090px;}
.x1a{left:369.744090px;}
.x8b{left:370.748040px;}
.x4d{left:372.744090px;}
.xd2{left:373.748040px;}
.xaa{left:375.744090px;}
.x5a{left:376.748040px;}
.x7a{left:378.248040px;}
.xd6{left:381.248040px;}
.xb0{left:383.244090px;}
.x76{left:384.248040px;}
.xe{left:386.244090px;}
.xe8{left:387.248040px;}
.xeb{left:388.748040px;}
.x9b{left:392.244090px;}
.x77{left:393.248040px;}
.x26{left:395.244090px;}
.xcd{left:397.748040px;}
.xde{left:399.248040px;}
.xbb{left:401.244090px;}
.x1b{left:402.744090px;}
.x8f{left:403.748040px;}
.xd3{left:406.748040px;}
.xc8{left:410.244090px;}
.xcb{left:411.744090px;}
.xd4{left:414.248040px;}
.x9c{left:416.244090px;}
.xf{left:417.744090px;}
.xe5{left:418.748040px;}
.x90{left:420.248040px;}
.xd5{left:423.248040px;}
.x1c{left:425.244090px;}
.x7c{left:426.248040px;}
.xec{left:427.748040px;}
.x8c{left:429.248040px;}
.xce{left:430.748040px;}
.xc2{left:432.744090px;}
.x6f{left:433.748040px;}
.x72{left:435.248040px;}
.xa1{left:438.744090px;}
.xdf{left:439.748040px;}
.x30{left:443.244090px;}
.xbc{left:447.744090px;}
.x64{left:448.748040px;}
.xe4{left:450.248040px;}
.x2c{left:452.244090px;}
.x82{left:453.248040px;}
.xab{left:455.244090px;}
.x5b{left:456.248040px;}
.x20{left:458.244090px;}
.x73{left:459.248040px;}
.xe7{left:460.748040px;}
.xc5{left:464.244090px;}
.xe1{left:465.248040px;}
.x52{left:467.244090px;}
.xee{left:468.248040px;}
.xb5{left:471.744090px;}
.x5c{left:472.748040px;}
.x8d{left:475.748040px;}
.xff{left:479.244090px;}
.x5d{left:480.248040px;}
.x8e{left:484.748040px;}
.xac{left:488.244090px;}
.xc6{left:489.744090px;}
.xc7{left:498.744090px;}
.xf3{left:503.244090px;}
.x91{left:507.248040px;}
.xfb{left:512.244090px;}
@media print{
.v9{vertical-align:-32.000000pt;}
.v3{vertical-align:-26.666667pt;}
.v6{vertical-align:-21.333333pt;}
.v2{vertical-align:-16.000000pt;}
.v8{vertical-align:-10.666667pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v7{vertical-align:10.666667pt;}
.v5{vertical-align:26.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls6{letter-spacing:5.333333pt;}
.ls4{letter-spacing:10.370370pt;}
.ls3{letter-spacing:10.666667pt;}
.ls7{letter-spacing:32.000000pt;}
.lsb{letter-spacing:37.333333pt;}
.ls1{letter-spacing:64.000000pt;}
.lsa{letter-spacing:69.333333pt;}
.ls0{letter-spacing:111.407407pt;}
.ls5{letter-spacing:117.333333pt;}
.ls8{letter-spacing:234.666667pt;}
.ws0{word-spacing:-21.333333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws7{word-spacing:-9.481481pt;}
.wsc{word-spacing:-9.386667pt;}
.wsb{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.120000pt;}
.ws2{word-spacing:-2.560000pt;}
.wse{word-spacing:-2.099088pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:1.864447pt;}
.wsf{word-spacing:4.027211pt;}
.ws11{word-spacing:5.973333pt;}
.ws9{word-spacing:10.666667pt;}
.ws5{word-spacing:16.000000pt;}
.ws1{word-spacing:21.333333pt;}
.wsd{word-spacing:42.666667pt;}
.ws10{word-spacing:128.000000pt;}
._d{margin-left:-38.064379pt;}
._b{margin-left:-29.973009pt;}
._c{margin-left:-27.437500pt;}
._2{margin-left:-21.546283pt;}
._9{margin-left:-17.714111pt;}
._3{margin-left:-13.439643pt;}
._6{margin-left:-11.851852pt;}
._1{margin-left:-9.359375pt;}
._a{margin-left:-6.212447pt;}
._7{margin-left:-1.706667pt;}
._0{width:2.560000pt;}
._5{width:5.333333pt;}
._4{width:6.826667pt;}
._8{width:16.213333pt;}
.fs3{font-size:21.333333pt;}
.fs2{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:16.881867pt;}
.yc7{bottom:46.215200pt;}
.yc6{bottom:47.548533pt;}
.yc5{bottom:48.881867pt;}
.y2a{bottom:55.107600pt;}
.y2b{bottom:60.440933pt;}
.y29{bottom:61.774267pt;}
.yc4{bottom:62.215200pt;}
.yc3{bottom:67.548533pt;}
.yc2{bottom:68.881867pt;}
.yc1{bottom:70.215200pt;}
.yc0{bottom:71.548533pt;}
.ybf{bottom:72.881867pt;}
.y28{bottom:84.440933pt;}
.y2c{bottom:85.774267pt;}
.ybd{bottom:96.881867pt;}
.ybe{bottom:98.215200pt;}
.y27{bottom:109.774267pt;}
.y26{bottom:120.440933pt;}
.ybb{bottom:120.881867pt;}
.y24{bottom:121.774267pt;}
.ybc{bottom:122.215200pt;}
.y25{bottom:123.107600pt;}
.y57{bottom:128.881867pt;}
.y23{bottom:133.774267pt;}
.y55{bottom:139.548533pt;}
.y56{bottom:144.881867pt;}
.y88{bottom:145.774267pt;}
.y87{bottom:147.107600pt;}
.y5c{bottom:150.215200pt;}
.y5a{bottom:151.548533pt;}
.yba{bottom:152.881867pt;}
.y5b{bottom:156.881867pt;}
.y58{bottom:163.548533pt;}
.y2f{bottom:164.881867pt;}
.y22{bottom:169.774267pt;}
.y2e{bottom:170.215200pt;}
.y86{bottom:171.107600pt;}
.yb8{bottom:175.548533pt;}
.yb9{bottom:176.881867pt;}
.y20{bottom:179.107600pt;}
.y59{bottom:180.881867pt;}
.y1d{bottom:181.774267pt;}
.y52{bottom:182.215200pt;}
.y1f{bottom:183.107600pt;}
.y85{bottom:184.440933pt;}
.y21{bottom:187.107600pt;}
.y53{bottom:187.548533pt;}
.yb7{bottom:192.881867pt;}
.y1c{bottom:193.774267pt;}
.y54{bottom:194.215200pt;}
.y50{bottom:199.548533pt;}
.y51{bottom:200.881867pt;}
.y4f{bottom:206.215200pt;}
.yb6{bottom:218.215200pt;}
.yb4{bottom:223.548533pt;}
.yb3{bottom:224.881867pt;}
.yb5{bottom:226.215200pt;}
.y1b{bottom:229.774267pt;}
.y1a{bottom:231.107600pt;}
.y84{bottom:232.440933pt;}
.y4b{bottom:235.548533pt;}
.y4a{bottom:236.881867pt;}
.yb1{bottom:254.215200pt;}
.y19{bottom:255.107600pt;}
.yb2{bottom:255.548533pt;}
.y18{bottom:265.774267pt;}
.y49{bottom:266.215200pt;}
.y17{bottom:267.107600pt;}
.y83{bottom:268.440933pt;}
.ye0{bottom:269.774267pt;}
.ye1{bottom:271.107600pt;}
.y48{bottom:272.881867pt;}
.yaf{bottom:275.548533pt;}
.yae{bottom:278.215200pt;}
.y16{bottom:279.107600pt;}
.yb0{bottom:279.548533pt;}
.y82{bottom:284.440933pt;}
.y81{bottom:285.774267pt;}
.y80{bottom:291.107600pt;}
.y7f{bottom:292.440933pt;}
.ydf{bottom:293.774267pt;}
.yde{bottom:295.107600pt;}
.y4e{bottom:296.881867pt;}
.y4d{bottom:298.215200pt;}
.y7e{bottom:308.440933pt;}
.y15{bottom:313.774267pt;}
.yab{bottom:314.215200pt;}
.y7d{bottom:315.107600pt;}
.yac{bottom:315.548533pt;}
.ydd{bottom:319.107600pt;}
.yad{bottom:320.881867pt;}
.y2d{bottom:322.215200pt;}
.y14{bottom:325.774267pt;}
.y13{bottom:327.107600pt;}
.y12{bottom:331.107600pt;}
.y11{bottom:339.107600pt;}
.y7c{bottom:340.440933pt;}
.ydc{bottom:343.107600pt;}
.ydb{bottom:344.440933pt;}
.y4c{bottom:344.881867pt;}
.ya9{bottom:350.215200pt;}
.yaa{bottom:351.548533pt;}
.y7a{bottom:357.774267pt;}
.y7b{bottom:363.107600pt;}
.y79{bottom:364.440933pt;}
.yda{bottom:367.107600pt;}
.y6{bottom:375.107600pt;}
.y47{bottom:375.548533pt;}
.ya8{bottom:387.548533pt;}
.yd9{bottom:391.107600pt;}
.yd8{bottom:392.440933pt;}
.y78{bottom:393.774267pt;}
.ya7{bottom:396.881867pt;}
.y10{bottom:397.774267pt;}
.ya3{bottom:398.215200pt;}
.yf{bottom:399.107600pt;}
.ya6{bottom:399.548533pt;}
.y77{bottom:400.440933pt;}
.ya5{bottom:403.548533pt;}
.ya4{bottom:404.881867pt;}
.ya2{bottom:410.215200pt;}
.ya1{bottom:411.548533pt;}
.yd7{bottom:416.440933pt;}
.ye{bottom:421.774267pt;}
.yd{bottom:423.107600pt;}
.y46{bottom:423.548533pt;}
.y76{bottom:424.440933pt;}
.y9f{bottom:435.548533pt;}
.ya0{bottom:436.881867pt;}
.yd5{bottom:440.440933pt;}
.yd6{bottom:441.774267pt;}
.y45{bottom:446.215200pt;}
.yc{bottom:447.107600pt;}
.y44{bottom:447.548533pt;}
.y75{bottom:457.774267pt;}
.y9e{bottom:458.215200pt;}
.y74{bottom:459.107600pt;}
.y9d{bottom:459.548533pt;}
.y73{bottom:460.440933pt;}
.yd3{bottom:464.440933pt;}
.yd4{bottom:465.774267pt;}
.yb{bottom:471.107600pt;}
.y43{bottom:471.548533pt;}
.y72{bottom:483.107600pt;}
.y9b{bottom:483.548533pt;}
.y71{bottom:484.440933pt;}
.y9c{bottom:484.881867pt;}
.yd2{bottom:489.774267pt;}
.ya{bottom:495.107600pt;}
.y42{bottom:495.548533pt;}
.y70{bottom:507.107600pt;}
.y98{bottom:507.548533pt;}
.y6e{bottom:508.440933pt;}
.y99{bottom:508.881867pt;}
.y6f{bottom:509.774267pt;}
.y9a{bottom:510.215200pt;}
.yd1{bottom:513.774267pt;}
.y9{bottom:519.107600pt;}
.y41{bottom:519.548533pt;}
.y6d{bottom:525.774267pt;}
.y96{bottom:531.548533pt;}
.y6c{bottom:532.440933pt;}
.y97{bottom:532.881867pt;}
.yd0{bottom:537.774267pt;}
.y40{bottom:543.548533pt;}
.y68{bottom:552.440933pt;}
.y69{bottom:555.107600pt;}
.y6a{bottom:556.440933pt;}
.y94{bottom:556.881867pt;}
.y95{bottom:558.215200pt;}
.y3f{bottom:560.881867pt;}
.y6b{bottom:561.774267pt;}
.y3c{bottom:567.548533pt;}
.y67{bottom:568.440933pt;}
.y3e{bottom:568.881867pt;}
.y8{bottom:573.774267pt;}
.y92{bottom:579.548533pt;}
.y93{bottom:580.881867pt;}
.ycf{bottom:585.774267pt;}
.y65{bottom:589.774267pt;}
.y39{bottom:591.548533pt;}
.y64{bottom:592.440933pt;}
.y3a{bottom:592.881867pt;}
.y66{bottom:593.774267pt;}
.y3b{bottom:598.215200pt;}
.y38{bottom:602.215200pt;}
.y8f{bottom:603.548533pt;}
.y5{bottom:604.440933pt;}
.y90{bottom:604.881867pt;}
.y91{bottom:606.215200pt;}
.yce{bottom:609.774267pt;}
.y62{bottom:616.440933pt;}
.y63{bottom:617.774267pt;}
.y8c{bottom:622.215200pt;}
.y8e{bottom:623.548533pt;}
.y3{bottom:627.107600pt;}
.y36{bottom:627.548533pt;}
.y4{bottom:628.440933pt;}
.y37{bottom:628.881867pt;}
.y8d{bottom:630.215200pt;}
.ycc{bottom:633.774267pt;}
.ycd{bottom:635.107600pt;}
.y5f{bottom:640.440933pt;}
.y60{bottom:641.774267pt;}
.y61{bottom:643.107600pt;}
.y7{bottom:651.107600pt;}
.y34{bottom:651.548533pt;}
.y35{bottom:652.881867pt;}
.yca{bottom:657.774267pt;}
.y89{bottom:658.215200pt;}
.ycb{bottom:659.107600pt;}
.y8a{bottom:659.548533pt;}
.y8b{bottom:660.881867pt;}
.y5d{bottom:671.107600pt;}
.y5e{bottom:672.440933pt;}
.yc9{bottom:681.774267pt;}
.y32{bottom:682.215200pt;}
.y33{bottom:683.548533pt;}
.y2{bottom:699.107600pt;}
.y30{bottom:706.215200pt;}
.y31{bottom:707.548533pt;}
.y1{bottom:720.440933pt;}
.y3d{bottom:762.215200pt;}
.y1e{bottom:769.774267pt;}
.h8{height:21.927305pt;}
.h5{height:27.409131pt;}
.h6{height:32.742465pt;}
.h2{height:43.854610pt;}
.h9{height:49.187943pt;}
.h4{height:49.336436pt;}
.ha{height:54.521277pt;}
.h7{height:70.521277pt;}
.hb{height:126.082004pt;}
.h3{height:758.435200pt;}
.h0{height:758.435600pt;}
.h1{height:758.666667pt;}
.w2{width:518.435147pt;}
.w0{width:518.436080pt;}
.w1{width:518.666667pt;}
.w6{width:519.769413pt;}
.w7{width:520.000000pt;}
.w5{width:522.435147pt;}
.w3{width:522.436080pt;}
.w4{width:522.666667pt;}
.x3e{left:-11.338587pt;}
.x6b{left:-3.779520pt;}
.x0{left:0.000000pt;}
.x5{left:27.328080pt;}
.x1{left:28.661413pt;}
.xe0{left:38.887147pt;}
.x55{left:40.220480pt;}
.x5e{left:41.553813pt;}
.x78{left:42.887147pt;}
.xef{left:44.220480pt;}
.xf6{left:45.994747pt;}
.x100{left:47.328080pt;}
.x56{left:48.220480pt;}
.x6{left:49.994747pt;}
.x2{left:51.328080pt;}
.xf0{left:52.661413pt;}
.x9d{left:53.994747pt;}
.xc3{left:55.328080pt;}
.x29{left:56.661413pt;}
.x16{left:57.994747pt;}
.xf7{left:60.661413pt;}
.x3{left:61.994747pt;}
.xe3{left:62.887147pt;}
.xf4{left:65.994747pt;}
.x102{left:67.328080pt;}
.xa5{left:68.661413pt;}
.x7d{left:69.553813pt;}
.x53{left:71.328080pt;}
.xfc{left:73.994747pt;}
.xad{left:75.328080pt;}
.x7{left:76.661413pt;}
.x21{left:77.994747pt;}
.x3a{left:79.328080pt;}
.x3f{left:80.661413pt;}
.x94{left:81.994747pt;}
.x92{left:83.328080pt;}
.x74{left:84.220480pt;}
.x4{left:85.994747pt;}
.x45{left:87.328080pt;}
.x84{left:90.887147pt;}
.x9{left:92.661413pt;}
.x2d{left:93.994747pt;}
.xa6{left:96.661413pt;}
.x104{left:97.994747pt;}
.xe9{left:98.887147pt;}
.x22{left:100.661413pt;}
.x40{left:101.994747pt;}
.xa2{left:104.661413pt;}
.x87{left:105.553813pt;}
.x57{left:106.887147pt;}
.x2a{left:108.661413pt;}
.x46{left:109.994747pt;}
.xb6{left:111.328080pt;}
.xc0{left:112.661413pt;}
.xa{left:113.994747pt;}
.x1d{left:115.328080pt;}
.xf1{left:117.994747pt;}
.xb1{left:119.328080pt;}
.x7b{left:120.220480pt;}
.x2e{left:121.994747pt;}
.x3b{left:123.328080pt;}
.x37{left:124.661413pt;}
.x93{left:125.994747pt;}
.x7e{left:126.887147pt;}
.xc9{left:128.661413pt;}
.x47{left:129.994747pt;}
.x32{left:131.328080pt;}
.xae{left:132.661413pt;}
.xb2{left:133.994747pt;}
.x6a{left:134.887147pt;}
.x38{left:136.661413pt;}
.x41{left:139.328080pt;}
.x95{left:140.661413pt;}
.x83{left:141.553813pt;}
.x8{left:143.328080pt;}
.x17{left:144.661413pt;}
.x48{left:145.994747pt;}
.xe6{left:148.220480pt;}
.x27{left:149.994747pt;}
.x44{left:151.328080pt;}
.x3c{left:152.661413pt;}
.x96{left:155.328080pt;}
.xb{left:156.661413pt;}
.x14{left:157.994747pt;}
.x9e{left:161.994747pt;}
.x7f{left:162.887147pt;}
.x4e{left:164.661413pt;}
.x10{left:165.994747pt;}
.x2f{left:167.328080pt;}
.xa3{left:169.994747pt;}
.xc{left:171.328080pt;}
.x18{left:172.661413pt;}
.xcf{left:174.887147pt;}
.xa4{left:176.661413pt;}
.x68{left:177.553813pt;}
.x70{left:178.887147pt;}
.x36{left:180.661413pt;}
.x42{left:181.994747pt;}
.xaf{left:183.328080pt;}
.xed{left:184.220480pt;}
.x2b{left:185.994747pt;}
.x11{left:187.328080pt;}
.x49{left:189.994747pt;}
.xbd{left:191.328080pt;}
.x6c{left:192.220480pt;}
.x12{left:193.994747pt;}
.x97{left:197.994747pt;}
.x65{left:198.887147pt;}
.x23{left:200.661413pt;}
.x85{left:201.553813pt;}
.xfd{left:203.328080pt;}
.x98{left:204.661413pt;}
.xbe{left:205.994747pt;}
.x19{left:207.328080pt;}
.x33{left:208.661413pt;}
.x4a{left:211.328080pt;}
.xb9{left:212.661413pt;}
.x80{left:213.553813pt;}
.xea{left:214.887147pt;}
.x15{left:216.661413pt;}
.xfa{left:217.994747pt;}
.xd9{left:218.887147pt;}
.x88{left:220.220480pt;}
.x24{left:221.994747pt;}
.x34{left:223.328080pt;}
.xf5{left:224.661413pt;}
.xd7{left:225.553813pt;}
.xdd{left:226.887147pt;}
.x5f{left:228.220480pt;}
.x13{left:229.994747pt;}
.x9f{left:232.661413pt;}
.xb3{left:233.994747pt;}
.x60{left:234.887147pt;}
.x1e{left:236.661413pt;}
.x4b{left:237.994747pt;}
.xd0{left:238.887147pt;}
.x103{left:240.661413pt;}
.x58{left:241.553813pt;}
.xd{left:243.328080pt;}
.x35{left:244.661413pt;}
.x39{left:247.328080pt;}
.xc4{left:248.661413pt;}
.x61{left:249.553813pt;}
.x31{left:251.328080pt;}
.x43{left:252.661413pt;}
.xd1{left:253.553813pt;}
.xb4{left:255.328080pt;}
.xb7{left:256.661413pt;}
.x71{left:257.553813pt;}
.x1f{left:259.328080pt;}
.xfe{left:261.994747pt;}
.xba{left:263.328080pt;}
.x79{left:264.220480pt;}
.x3d{left:265.994747pt;}
.x4f{left:267.328080pt;}
.xa7{left:268.661413pt;}
.xe2{left:269.553813pt;}
.x6d{left:270.887147pt;}
.x89{left:272.220480pt;}
.xcc{left:274.887147pt;}
.x99{left:276.661413pt;}
.x66{left:277.553813pt;}
.x86{left:278.887147pt;}
.x50{left:281.994747pt;}
.x9a{left:283.328080pt;}
.xa8{left:284.661413pt;}
.x6e{left:285.553813pt;}
.x62{left:286.887147pt;}
.xf8{left:288.661413pt;}
.xda{left:289.553813pt;}
.x8a{left:290.887147pt;}
.x67{left:292.220480pt;}
.x25{left:293.994747pt;}
.x54{left:295.328080pt;}
.xd8{left:297.553813pt;}
.xbf{left:299.328080pt;}
.x63{left:300.220480pt;}
.x51{left:303.328080pt;}
.xa9{left:304.661413pt;}
.xdb{left:305.553813pt;}
.x4c{left:307.328080pt;}
.xca{left:308.661413pt;}
.xf9{left:311.328080pt;}
.x101{left:312.661413pt;}
.x59{left:313.553813pt;}
.x75{left:314.887147pt;}
.x81{left:316.220480pt;}
.xf2{left:317.994747pt;}
.xa0{left:319.328080pt;}
.xb8{left:320.661413pt;}
.x28{left:321.994747pt;}
.x69{left:322.887147pt;}
.xdc{left:325.553813pt;}
.xc1{left:327.328080pt;}
.x1a{left:328.661413pt;}
.x8b{left:329.553813pt;}
.x4d{left:331.328080pt;}
.xd2{left:332.220480pt;}
.xaa{left:333.994747pt;}
.x5a{left:334.887147pt;}
.x7a{left:336.220480pt;}
.xd6{left:338.887147pt;}
.xb0{left:340.661413pt;}
.x76{left:341.553813pt;}
.xe{left:343.328080pt;}
.xe8{left:344.220480pt;}
.xeb{left:345.553813pt;}
.x9b{left:348.661413pt;}
.x77{left:349.553813pt;}
.x26{left:351.328080pt;}
.xcd{left:353.553813pt;}
.xde{left:354.887147pt;}
.xbb{left:356.661413pt;}
.x1b{left:357.994747pt;}
.x8f{left:358.887147pt;}
.xd3{left:361.553813pt;}
.xc8{left:364.661413pt;}
.xcb{left:365.994747pt;}
.xd4{left:368.220480pt;}
.x9c{left:369.994747pt;}
.xf{left:371.328080pt;}
.xe5{left:372.220480pt;}
.x90{left:373.553813pt;}
.xd5{left:376.220480pt;}
.x1c{left:377.994747pt;}
.x7c{left:378.887147pt;}
.xec{left:380.220480pt;}
.x8c{left:381.553813pt;}
.xce{left:382.887147pt;}
.xc2{left:384.661413pt;}
.x6f{left:385.553813pt;}
.x72{left:386.887147pt;}
.xa1{left:389.994747pt;}
.xdf{left:390.887147pt;}
.x30{left:393.994747pt;}
.xbc{left:397.994747pt;}
.x64{left:398.887147pt;}
.xe4{left:400.220480pt;}
.x2c{left:401.994747pt;}
.x82{left:402.887147pt;}
.xab{left:404.661413pt;}
.x5b{left:405.553813pt;}
.x20{left:407.328080pt;}
.x73{left:408.220480pt;}
.xe7{left:409.553813pt;}
.xc5{left:412.661413pt;}
.xe1{left:413.553813pt;}
.x52{left:415.328080pt;}
.xee{left:416.220480pt;}
.xb5{left:419.328080pt;}
.x5c{left:420.220480pt;}
.x8d{left:422.887147pt;}
.xff{left:425.994747pt;}
.x5d{left:426.887147pt;}
.x8e{left:430.887147pt;}
.xac{left:433.994747pt;}
.xc6{left:435.328080pt;}
.xc7{left:443.328080pt;}
.xf3{left:447.328080pt;}
.x91{left:450.887147pt;}
.xfb{left:455.328080pt;}
}




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