
    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_7e06f03cb7d107dba8f32250.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_de3a66af65a521336c53066f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.465000;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_c343b49e96aea4750e614179.woff')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_183b55b805baa51d3711745f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_fa660514cbc12066c9b87bde.woff')format("woff");}.ff5{font-family:ff5;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4013bfbf26dee7d2e8d17a3c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0f9eb963a2c864dc65ebf00c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_80b626815589987a88d9d2bf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d4e5f503fc9e44f2f745a23a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2c8f2bfa234f62ee43b74afe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.974000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fbce980212eedb9258d3befc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5bead5a4a09032f9de0223a9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2e23735497fe82d2d5ab8d35.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_430bc3a8241da5798e11b7d2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2481a946cd544c6f26487178.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0b3f6e1cb94cb7b6147562d5.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b5b06840a44f8f4da907a128.woff')format("woff");}.ff11{font-family:ff11;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8c0890c2cee68f28f5211ef3.woff')format("woff");}.ff12{font-family:ff12;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.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);}
.m12{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,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);}
.me{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);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.854000px;}
.v5{vertical-align:-10.998000px;}
.v6{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.184000px;}
.vd{vertical-align:6.366000px;}
.v8{vertical-align:8.514000px;}
.vb{vertical-align:16.182000px;}
.v7{vertical-align:18.330000px;}
.v9{vertical-align:20.268000px;}
.v4{vertical-align:23.754000px;}
.v2{vertical-align:26.028000px;}
.v1{vertical-align:37.482000px;}
.va{vertical-align:44.022000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.004344px;}
.lsa{letter-spacing:0.006485px;}
.lsc{letter-spacing:0.035306px;}
.lsf{letter-spacing:2.773595px;}
.ls1{letter-spacing:2.987468px;}
.ls5{letter-spacing:2.990496px;}
.ls6{letter-spacing:2.993421px;}
.ls0{letter-spacing:2.993674px;}
.lsb{letter-spacing:2.995289px;}
.ls19{letter-spacing:7.139901px;}
.ls17{letter-spacing:7.151877px;}
.ls3{letter-spacing:8.966400px;}
.ls10{letter-spacing:10.865464px;}
.lse{letter-spacing:10.930918px;}
.ls2{letter-spacing:13.449600px;}
.ls18{letter-spacing:14.792740px;}
.ls1a{letter-spacing:16.357219px;}
.ls9{letter-spacing:18.196379px;}
.ls8{letter-spacing:19.963653px;}
.ls11{letter-spacing:21.167236px;}
.lsd{letter-spacing:23.923488px;}
.ls16{letter-spacing:26.247295px;}
.ls15{letter-spacing:29.215289px;}
.ls7{letter-spacing:32.727300px;}
.ls14{letter-spacing:47.389130px;}
.ls13{letter-spacing:50.371289px;}
.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;}
}
.ws3e{word-spacing:-65.454600px;}
.ws42{word-spacing:-47.323676px;}
.ws3d{word-spacing:-47.258221px;}
.ws3b{word-spacing:-42.637126px;}
.ws41{word-spacing:-31.771663px;}
.ws40{word-spacing:-31.706208px;}
.ws45{word-spacing:-18.065470px;}
.ws2{word-spacing:-17.932800px;}
.ws66{word-spacing:-16.363650px;}
.ws33{word-spacing:-13.449600px;}
.ws3a{word-spacing:-11.955150px;}
.ws89{word-spacing:-4.909095px;}
.ws4d{word-spacing:-4.647277px;}
.ws75{word-spacing:-4.581822px;}
.ws4a{word-spacing:-3.665458px;}
.wsc{word-spacing:-3.443098px;}
.ws6e{word-spacing:-3.272730px;}
.ws62{word-spacing:-3.207275px;}
.ws73{word-spacing:-3.076366px;}
.ws83{word-spacing:-2.880002px;}
.ws81{word-spacing:-2.814548px;}
.ws4c{word-spacing:-2.618184px;}
.ws4e{word-spacing:-2.552729px;}
.ws23{word-spacing:-2.487275px;}
.ws2e{word-spacing:-2.356366px;}
.ws64{word-spacing:-2.225456px;}
.ws71{word-spacing:-2.160002px;}
.ws7{word-spacing:-1.775347px;}
.ws76{word-spacing:-1.767274px;}
.ws77{word-spacing:-1.701820px;}
.ws1e{word-spacing:-1.440001px;}
.wsb{word-spacing:-1.344960px;}
.ws16{word-spacing:-1.243637px;}
.ws79{word-spacing:-1.112728px;}
.ws87{word-spacing:-0.720001px;}
.ws74{word-spacing:-0.392728px;}
.ws15{word-spacing:-0.327273px;}
.ws8{word-spacing:-0.322790px;}
.ws1c{word-spacing:-0.261818px;}
.ws2c{word-spacing:-0.196364px;}
.wsf{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.130909px;}
.ws9{word-spacing:-0.107597px;}
.ws80{word-spacing:-0.086077px;}
.ws12{word-spacing:-0.065455px;}
.ws88{word-spacing:-0.055637px;}
.ws3f{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.053798px;}
.ws22{word-spacing:0.065455px;}
.wse{word-spacing:0.107597px;}
.ws1d{word-spacing:0.130909px;}
.ws11{word-spacing:0.161395px;}
.ws55{word-spacing:0.196364px;}
.wsd{word-spacing:0.215194px;}
.ws28{word-spacing:0.261818px;}
.ws21{word-spacing:0.327273px;}
.ws30{word-spacing:0.392728px;}
.ws6a{word-spacing:0.458182px;}
.ws6b{word-spacing:0.589091px;}
.ws7b{word-spacing:0.916364px;}
.ws2b{word-spacing:1.178183px;}
.ws48{word-spacing:1.374547px;}
.ws6{word-spacing:1.398758px;}
.ws1b{word-spacing:1.570910px;}
.ws4f{word-spacing:1.963638px;}
.ws5f{word-spacing:2.029093px;}
.ws60{word-spacing:2.094547px;}
.ws4b{word-spacing:2.160002px;}
.ws47{word-spacing:2.225456px;}
.ws49{word-spacing:2.290911px;}
.ws7c{word-spacing:2.356366px;}
.ws14{word-spacing:2.421820px;}
.ws6c{word-spacing:2.487275px;}
.ws85{word-spacing:2.618184px;}
.ws5a{word-spacing:2.683639px;}
.ws65{word-spacing:2.749093px;}
.ws20{word-spacing:2.814548px;}
.ws8b{word-spacing:2.880002px;}
.ws50{word-spacing:2.945457px;}
.wsa{word-spacing:3.012710px;}
.ws69{word-spacing:3.338185px;}
.ws34{word-spacing:3.534548px;}
.ws8a{word-spacing:3.861821px;}
.ws70{word-spacing:4.058185px;}
.ws7e{word-spacing:4.189094px;}
.ws7d{word-spacing:4.450913px;}
.ws1f{word-spacing:4.465267px;}
.ws2d{word-spacing:4.516367px;}
.ws10{word-spacing:4.572864px;}
.ws61{word-spacing:4.581822px;}
.ws5b{word-spacing:4.647277px;}
.ws7a{word-spacing:4.778186px;}
.ws63{word-spacing:4.909095px;}
.ws72{word-spacing:5.170913px;}
.ws86{word-spacing:5.367277px;}
.ws2f{word-spacing:5.629096px;}
.ws68{word-spacing:5.760005px;}
.ws58{word-spacing:5.827291px;}
.ws32{word-spacing:6.087278px;}
.ws17{word-spacing:6.545460px;}
.ws29{word-spacing:6.610915px;}
.ws1a{word-spacing:6.741824px;}
.ws19{word-spacing:6.807278px;}
.ws6f{word-spacing:7.003642px;}
.ws24{word-spacing:7.134551px;}
.ws18{word-spacing:8.247280px;}
.ws27{word-spacing:9.032735px;}
.ws59{word-spacing:9.214422px;}
.ws56{word-spacing:9.844422px;}
.ws6d{word-spacing:13.025465px;}
.ws82{word-spacing:13.090920px;}
.ws7f{word-spacing:13.352738px;}
.ws3{word-spacing:13.395802px;}
.ws5{word-spacing:13.449600px;}
.ws31{word-spacing:13.680011px;}
.ws51{word-spacing:14.645022px;}
.ws36{word-spacing:14.704798px;}
.ws35{word-spacing:14.764573px;}
.ws37{word-spacing:14.884124px;}
.ws52{word-spacing:15.123227px;}
.ws53{word-spacing:15.183002px;}
.ws78{word-spacing:15.185467px;}
.ws54{word-spacing:16.036377px;}
.ws5e{word-spacing:16.167286px;}
.ws39{word-spacing:16.298195px;}
.ws38{word-spacing:17.861069px;}
.ws3c{word-spacing:18.065470px;}
.ws43{word-spacing:18.130924px;}
.ws46{word-spacing:18.523652px;}
.ws57{word-spacing:18.720016px;}
.ws84{word-spacing:19.505471px;}
.ws5c{word-spacing:20.428422px;}
.ws67{word-spacing:22.058200px;}
.ws26{word-spacing:23.432747px;}
.ws25{word-spacing:23.498201px;}
.ws0{word-spacing:25.719808px;}
.ws44{word-spacing:28.865479px;}
.ws5d{word-spacing:29.323661px;}
.ws13{word-spacing:42.952523px;}
._1{margin-left:-12.395088px;}
._20{margin-left:-8.705462px;}
._10{margin-left:-7.213447px;}
._2{margin-left:-5.738496px;}
._d{margin-left:-4.734259px;}
._3{margin-left:-3.604493px;}
._c{margin-left:-2.552729px;}
._5{margin-left:-1.291162px;}
._9{width:1.775347px;}
._16{width:3.066509px;}
._1a{width:5.498186px;}
._19{width:6.738081px;}
._18{width:9.373448px;}
._e{width:10.472755px;}
._1d{width:12.742138px;}
._8{width:14.740762px;}
._6{width:15.870528px;}
._11{width:17.738197px;}
._a{width:18.837484px;}
._15{width:20.356381px;}
._21{width:21.861836px;}
._13{width:23.156495px;}
._4{width:24.478272px;}
._7{width:25.661837px;}
._f{width:28.080023px;}
._14{width:29.109367px;}
._0{width:30.161381px;}
._24{width:31.243372px;}
._1f{width:32.478922px;}
._12{width:33.710867px;}
._17{width:35.865600px;}
._b{width:38.876449px;}
._1b{width:49.914555px;}
._1c{width:51.507790px;}
._1e{width:64.224403px;}
._22{width:66.240055px;}
._23{width:67.287329px;}
._25{width:76.385518px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs8{font-size:55.636800px;}
.fs7{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:247.488000px;}
.y6e{bottom:251.916000px;}
.y52{bottom:251.962500px;}
.yd9{bottom:259.680000px;}
.ybe{bottom:261.034500px;}
.y9b{bottom:261.318000px;}
.y27{bottom:262.725000px;}
.y51{bottom:268.401000px;}
.y26{bottom:279.163500px;}
.yd8{bottom:280.003500px;}
.ybd{bottom:281.358000px;}
.y9a{bottom:281.643000px;}
.y6d{bottom:282.216000px;}
.y80{bottom:295.095000px;}
.y25{bottom:295.648500px;}
.yd7{bottom:300.327000px;}
.ybc{bottom:301.681500px;}
.y99{bottom:301.966500px;}
.y6c{bottom:302.539500px;}
.y7f{bottom:313.027500px;}
.y24{bottom:318.061500px;}
.y50{bottom:320.652000px;}
.ybb{bottom:322.006500px;}
.y98{bottom:322.290000px;}
.y6b{bottom:322.863000px;}
.y23{bottom:328.786500px;}
.y7e{bottom:330.960000px;}
.y4f{bottom:340.975500px;}
.yba{bottom:342.330000px;}
.y97{bottom:342.613500px;}
.y6a{bottom:343.188000px;}
.y7d{bottom:348.892500px;}
.y4e{bottom:361.299000px;}
.yb9{bottom:362.653500px;}
.y96{bottom:362.937000px;}
.y69{bottom:363.511500px;}
.y7c{bottom:366.826500px;}
.y22{bottom:369.598500px;}
.y4d{bottom:381.622500px;}
.y95{bottom:383.262000px;}
.y68{bottom:383.835000px;}
.y21{bottom:389.923500px;}
.yb8{bottom:399.198000px;}
.y4c{bottom:401.946000px;}
.y94{bottom:403.585500px;}
.y67{bottom:404.158500px;}
.y20{bottom:410.247000px;}
.y4b{bottom:422.271000px;}
.y93{bottom:423.909000px;}
.y66{bottom:424.482000px;}
.y1f{bottom:430.570500px;}
.y4a{bottom:442.594500px;}
.y92{bottom:444.232500px;}
.y65{bottom:444.807000px;}
.yb7{bottom:450.781500px;}
.y1e{bottom:450.894000px;}
.yd6{bottom:462.918000px;}
.yb6{bottom:471.106500px;}
.y1d{bottom:471.217500px;}
.y64{bottom:475.710000px;}
.y49{bottom:479.139000px;}
.yd5{bottom:483.241500px;}
.y91{bottom:487.477500px;}
.yb5{bottom:491.430000px;}
.y1c{bottom:491.542500px;}
.yd4{bottom:503.565000px;}
.y90{bottom:507.801000px;}
.yb4{bottom:511.753500px;}
.y1b{bottom:511.866000px;}
.y63{bottom:519.552000px;}
.yd3{bottom:523.890000px;}
.y8f{bottom:528.126000px;}
.y48{bottom:530.722500px;}
.yb3{bottom:532.077000px;}
.y1a{bottom:532.189500px;}
.y62{bottom:539.875500px;}
.yd2{bottom:544.213500px;}
.y8e{bottom:548.449500px;}
.y47{bottom:551.046000px;}
.yb2{bottom:552.400500px;}
.y19{bottom:552.513000px;}
.y61{bottom:562.231500px;}
.yd1{bottom:564.537000px;}
.y8d{bottom:568.773000px;}
.y46{bottom:571.371000px;}
.yb1{bottom:572.725500px;}
.y60{bottom:577.972500px;}
.y5f{bottom:582.556500px;}
.yd0{bottom:584.860500px;}
.y18{bottom:589.059000px;}
.y8c{bottom:589.096500px;}
.y45{bottom:591.694500px;}
.yb0{bottom:593.049000px;}
.y5e{bottom:604.912500px;}
.ycf{bottom:605.184000px;}
.y8b{bottom:609.420000px;}
.y7b{bottom:611.734500px;}
.y44{bottom:612.018000px;}
.yaf{bottom:613.372500px;}
.y5d{bottom:622.686000px;}
.yce{bottom:625.509000px;}
.y5c{bottom:627.268500px;}
.y8a{bottom:629.745000px;}
.y7a{bottom:632.058000px;}
.y43{bottom:632.341500px;}
.yae{bottom:633.696000px;}
.ycd{bottom:645.832500px;}
.y5b{bottom:649.624500px;}
.y89{bottom:650.068500px;}
.y79{bottom:652.381500px;}
.y42{bottom:652.665000px;}
.yad{bottom:654.019500px;}
.y17{bottom:660.192000px;}
.ycc{bottom:666.156000px;}
.y88{bottom:670.392000px;}
.y78{bottom:672.705000px;}
.y41{bottom:672.990000px;}
.y16{bottom:676.630500px;}
.y5a{bottom:683.398500px;}
.ycb{bottom:686.479500px;}
.y87{bottom:690.715500px;}
.y77{bottom:693.030000px;}
.y15{bottom:693.069000px;}
.y40{bottom:693.313500px;}
.yac{bottom:697.266000px;}
.y59{bottom:703.722000px;}
.yca{bottom:706.803000px;}
.y86{bottom:711.039000px;}
.y76{bottom:713.353500px;}
.y3f{bottom:713.637000px;}
.yab{bottom:717.589500px;}
.y14{bottom:720.847500px;}
.y58{bottom:724.045500px;}
.yc9{bottom:727.128000px;}
.y85{bottom:731.364000px;}
.y75{bottom:733.677000px;}
.y3e{bottom:733.960500px;}
.y13{bottom:737.286000px;}
.yaa{bottom:737.913000px;}
.y57{bottom:744.369000px;}
.yc8{bottom:747.451500px;}
.y84{bottom:751.687500px;}
.y12{bottom:753.724500px;}
.y3d{bottom:754.284000px;}
.ya9{bottom:758.236500px;}
.y74{bottom:764.580000px;}
.y56{bottom:764.694000px;}
.yc7{bottom:767.775000px;}
.y11{bottom:770.163000px;}
.y83{bottom:772.011000px;}
.y3c{bottom:774.609000px;}
.ya8{bottom:778.560000px;}
.y10{bottom:786.601500px;}
.yc6{bottom:788.098500px;}
.y3b{bottom:794.932500px;}
.y55{bottom:795.595500px;}
.yf{bottom:803.040000px;}
.y73{bottom:808.422000px;}
.ya7{bottom:809.463000px;}
.y3a{bottom:815.256000px;}
.ye{bottom:819.478500px;}
.y72{bottom:828.747000px;}
.y39{bottom:835.579500px;}
.yd{bottom:835.915500px;}
.y71{bottom:849.070500px;}
.yc{bottom:852.354000px;}
.ya6{bottom:853.306500px;}
.y38{bottom:855.903000px;}
.y54{bottom:865.980000px;}
.yb{bottom:868.792500px;}
.y70{bottom:869.394000px;}
.ya5{bottom:873.630000px;}
.y37{bottom:876.228000px;}
.y53{bottom:883.914000px;}
.ya{bottom:885.231000px;}
.yc5{bottom:889.717500px;}
.ya4{bottom:893.953500px;}
.y36{bottom:896.551500px;}
.y9{bottom:901.669500px;}
.y6f{bottom:905.938500px;}
.yc4{bottom:910.041000px;}
.y81{bottom:911.808000px;}
.y82{bottom:912.829500px;}
.ya3{bottom:914.277000px;}
.y35{bottom:916.875000px;}
.y8{bottom:918.108000px;}
.yc3{bottom:930.366000px;}
.y7{bottom:934.546500px;}
.ya2{bottom:934.602000px;}
.y34{bottom:937.198500px;}
.yc2{bottom:950.689500px;}
.y6{bottom:950.985000px;}
.ya1{bottom:954.925500px;}
.y33{bottom:957.522000px;}
.y5{bottom:967.423500px;}
.yc1{bottom:971.013000px;}
.ya0{bottom:975.249000px;}
.y32{bottom:977.847000px;}
.yc0{bottom:991.336500px;}
.y9f{bottom:995.572500px;}
.y30{bottom:998.170500px;}
.y31{bottom:1004.109000px;}
.y9e{bottom:1015.896000px;}
.y4{bottom:1018.267500px;}
.y2f{bottom:1018.494000px;}
.ybf{bottom:1027.882500px;}
.y9d{bottom:1036.221000px;}
.y2e{bottom:1038.817500px;}
.y3{bottom:1046.925000px;}
.y9c{bottom:1056.544500px;}
.y2d{bottom:1059.141000px;}
.y2c{bottom:1079.466000px;}
.y2{bottom:1085.779500px;}
.y2b{bottom:1099.789500px;}
.y1{bottom:1118.656500px;}
.y29{bottom:1120.113000px;}
.y2a{bottom:1126.051500px;}
.ha{height:16.741622px;}
.h4{height:25.105920px;}
.hd{height:26.397082px;}
.he{height:35.195962px;}
.h9{height:37.658880px;}
.h6{height:39.595622px;}
.h13{height:40.447954px;}
.h11{height:42.321125px;}
.h10{height:43.935066px;}
.h17{height:45.818220px;}
.hc{height:46.212826px;}
.hb{height:47.073600px;}
.h7{height:48.109131px;}
.h5{height:48.174586px;}
.h14{height:49.090950px;}
.h18{height:50.479715px;}
.h1a{height:50.485715px;}
.h12{height:52.722432px;}
.h15{height:56.941496px;}
.hf{height:58.949962px;}
.h3{height:61.223962px;}
.h8{height:63.266742px;}
.h1c{height:65.272950px;}
.h16{height:67.420950px;}
.h19{height:67.426950px;}
.h1b{height:70.753715px;}
.h2{height:75.919914px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:133.936500px;}
.x34{left:141.546000px;}
.x1b{left:150.300000px;}
.x24{left:160.920000px;}
.x35{left:168.988500px;}
.x26{left:174.306000px;}
.x1c{left:187.455000px;}
.x31{left:192.651000px;}
.x3{left:194.433000px;}
.x2{left:195.871500px;}
.x4{left:202.041000px;}
.x5{left:209.280000px;}
.x6{left:216.889500px;}
.x7{left:224.127000px;}
.x8{left:231.736500px;}
.x17{left:234.783000px;}
.x18{left:250.002000px;}
.x23{left:282.229500px;}
.x2e{left:297.679500px;}
.x21{left:314.908500px;}
.x22{left:330.126000px;}
.x19{left:350.544000px;}
.x32{left:353.323500px;}
.x2f{left:355.585500px;}
.x9{left:362.209500px;}
.x1a{left:365.761500px;}
.xa{left:369.817500px;}
.x27{left:374.055000px;}
.xb{left:377.056500px;}
.x28{left:379.965000px;}
.xc{left:384.666000px;}
.xd{left:391.903500px;}
.xe{left:399.513000px;}
.xf{left:406.752000px;}
.x10{left:414.361500px;}
.x33{left:418.909500px;}
.x1f{left:436.575000px;}
.x2c{left:447.768000px;}
.x20{left:448.878000px;}
.x30{left:480.036000px;}
.x25{left:522.829500px;}
.x2d{left:590.197500px;}
.x11{left:613.405500px;}
.x29{left:615.978000px;}
.x12{left:621.015000px;}
.x2a{left:628.935000px;}
.x1d{left:633.669000px;}
.x2b{left:637.452000px;}
.x1e{left:644.862000px;}
.x13{left:679.389000px;}
.x36{left:680.640000px;}
.x14{left:686.998500px;}
.x15{left:735.945000px;}
.x16{left:751.162500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v5{vertical-align:-9.776000pt;}
.v6{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:4.608000pt;}
.vd{vertical-align:5.658667pt;}
.v8{vertical-align:7.568000pt;}
.vb{vertical-align:14.384000pt;}
.v7{vertical-align:16.293333pt;}
.v9{vertical-align:18.016000pt;}
.v4{vertical-align:21.114667pt;}
.v2{vertical-align:23.136000pt;}
.v1{vertical-align:33.317333pt;}
.va{vertical-align:39.130667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.003861pt;}
.lsa{letter-spacing:0.005764pt;}
.lsc{letter-spacing:0.031383pt;}
.lsf{letter-spacing:2.465418pt;}
.ls1{letter-spacing:2.655527pt;}
.ls5{letter-spacing:2.658219pt;}
.ls6{letter-spacing:2.660819pt;}
.ls0{letter-spacing:2.661043pt;}
.lsb{letter-spacing:2.662479pt;}
.ls19{letter-spacing:6.346579pt;}
.ls17{letter-spacing:6.357224pt;}
.ls3{letter-spacing:7.970133pt;}
.ls10{letter-spacing:9.658190pt;}
.lse{letter-spacing:9.716372pt;}
.ls2{letter-spacing:11.955200pt;}
.ls18{letter-spacing:13.149102pt;}
.ls1a{letter-spacing:14.539750pt;}
.ls9{letter-spacing:16.174559pt;}
.ls8{letter-spacing:17.745469pt;}
.ls11{letter-spacing:18.815321pt;}
.lsd{letter-spacing:21.265323pt;}
.ls16{letter-spacing:23.330929pt;}
.ls15{letter-spacing:25.969146pt;}
.ls7{letter-spacing:29.090933pt;}
.ls14{letter-spacing:42.123671pt;}
.ls13{letter-spacing:44.774479pt;}
.ws3e{word-spacing:-58.181867pt;}
.ws42{word-spacing:-42.065490pt;}
.ws3d{word-spacing:-42.007308pt;}
.ws3b{word-spacing:-37.899668pt;}
.ws41{word-spacing:-28.241478pt;}
.ws40{word-spacing:-28.183296pt;}
.ws45{word-spacing:-16.058195pt;}
.ws2{word-spacing:-15.940267pt;}
.ws66{word-spacing:-14.545467pt;}
.ws33{word-spacing:-11.955200pt;}
.ws3a{word-spacing:-10.626800pt;}
.ws89{word-spacing:-4.363640pt;}
.ws4d{word-spacing:-4.130913pt;}
.ws75{word-spacing:-4.072731pt;}
.ws4a{word-spacing:-3.258185pt;}
.wsc{word-spacing:-3.060531pt;}
.ws6e{word-spacing:-2.909093pt;}
.ws62{word-spacing:-2.850911pt;}
.ws73{word-spacing:-2.734548pt;}
.ws83{word-spacing:-2.560002pt;}
.ws81{word-spacing:-2.501820pt;}
.ws4c{word-spacing:-2.327275pt;}
.ws4e{word-spacing:-2.269093pt;}
.ws23{word-spacing:-2.210911pt;}
.ws2e{word-spacing:-2.094547pt;}
.ws64{word-spacing:-1.978183pt;}
.ws71{word-spacing:-1.920002pt;}
.ws7{word-spacing:-1.578086pt;}
.ws76{word-spacing:-1.570910pt;}
.ws77{word-spacing:-1.512729pt;}
.ws1e{word-spacing:-1.280001pt;}
.wsb{word-spacing:-1.195520pt;}
.ws16{word-spacing:-1.105455pt;}
.ws79{word-spacing:-0.989092pt;}
.ws87{word-spacing:-0.640001pt;}
.ws74{word-spacing:-0.349091pt;}
.ws15{word-spacing:-0.290909pt;}
.ws8{word-spacing:-0.286925pt;}
.ws1c{word-spacing:-0.232727pt;}
.ws2c{word-spacing:-0.174546pt;}
.wsf{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.116364pt;}
.ws9{word-spacing:-0.095642pt;}
.ws80{word-spacing:-0.076513pt;}
.ws12{word-spacing:-0.058182pt;}
.ws88{word-spacing:-0.049455pt;}
.ws3f{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.047821pt;}
.ws22{word-spacing:0.058182pt;}
.wse{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.116364pt;}
.ws11{word-spacing:0.143462pt;}
.ws55{word-spacing:0.174546pt;}
.wsd{word-spacing:0.191283pt;}
.ws28{word-spacing:0.232727pt;}
.ws21{word-spacing:0.290909pt;}
.ws30{word-spacing:0.349091pt;}
.ws6a{word-spacing:0.407273pt;}
.ws6b{word-spacing:0.523637pt;}
.ws7b{word-spacing:0.814546pt;}
.ws2b{word-spacing:1.047274pt;}
.ws48{word-spacing:1.221819pt;}
.ws6{word-spacing:1.243341pt;}
.ws1b{word-spacing:1.396365pt;}
.ws4f{word-spacing:1.745456pt;}
.ws5f{word-spacing:1.803638pt;}
.ws60{word-spacing:1.861820pt;}
.ws4b{word-spacing:1.920002pt;}
.ws47{word-spacing:1.978183pt;}
.ws49{word-spacing:2.036365pt;}
.ws7c{word-spacing:2.094547pt;}
.ws14{word-spacing:2.152729pt;}
.ws6c{word-spacing:2.210911pt;}
.ws85{word-spacing:2.327275pt;}
.ws5a{word-spacing:2.385457pt;}
.ws65{word-spacing:2.443638pt;}
.ws20{word-spacing:2.501820pt;}
.ws8b{word-spacing:2.560002pt;}
.ws50{word-spacing:2.618184pt;}
.wsa{word-spacing:2.677965pt;}
.ws69{word-spacing:2.967275pt;}
.ws34{word-spacing:3.141821pt;}
.ws8a{word-spacing:3.432730pt;}
.ws70{word-spacing:3.607276pt;}
.ws7e{word-spacing:3.723639pt;}
.ws7d{word-spacing:3.956367pt;}
.ws1f{word-spacing:3.969126pt;}
.ws2d{word-spacing:4.014549pt;}
.ws10{word-spacing:4.064768pt;}
.ws61{word-spacing:4.072731pt;}
.ws5b{word-spacing:4.130913pt;}
.ws7a{word-spacing:4.247276pt;}
.ws63{word-spacing:4.363640pt;}
.ws72{word-spacing:4.596367pt;}
.ws86{word-spacing:4.770913pt;}
.ws2f{word-spacing:5.003641pt;}
.ws68{word-spacing:5.120004pt;}
.ws58{word-spacing:5.179814pt;}
.ws32{word-spacing:5.410914pt;}
.ws17{word-spacing:5.818187pt;}
.ws29{word-spacing:5.876369pt;}
.ws1a{word-spacing:5.992732pt;}
.ws19{word-spacing:6.050914pt;}
.ws6f{word-spacing:6.225460pt;}
.ws24{word-spacing:6.341823pt;}
.ws18{word-spacing:7.330915pt;}
.ws27{word-spacing:8.029098pt;}
.ws59{word-spacing:8.190597pt;}
.ws56{word-spacing:8.750597pt;}
.ws6d{word-spacing:11.578191pt;}
.ws82{word-spacing:11.636373pt;}
.ws7f{word-spacing:11.869101pt;}
.ws3{word-spacing:11.907379pt;}
.ws5{word-spacing:11.955200pt;}
.ws31{word-spacing:12.160010pt;}
.ws51{word-spacing:13.017797pt;}
.ws36{word-spacing:13.070931pt;}
.ws35{word-spacing:13.124065pt;}
.ws37{word-spacing:13.230333pt;}
.ws52{word-spacing:13.442868pt;}
.ws53{word-spacing:13.496002pt;}
.ws78{word-spacing:13.498193pt;}
.ws54{word-spacing:14.254557pt;}
.ws5e{word-spacing:14.370921pt;}
.ws39{word-spacing:14.487285pt;}
.ws38{word-spacing:15.876506pt;}
.ws3c{word-spacing:16.058195pt;}
.ws43{word-spacing:16.116377pt;}
.ws46{word-spacing:16.465468pt;}
.ws57{word-spacing:16.640014pt;}
.ws84{word-spacing:17.338196pt;}
.ws5c{word-spacing:18.158597pt;}
.ws67{word-spacing:19.607289pt;}
.ws26{word-spacing:20.829108pt;}
.ws25{word-spacing:20.887290pt;}
.ws0{word-spacing:22.862051pt;}
.ws44{word-spacing:25.658203pt;}
.ws5d{word-spacing:26.065476pt;}
.ws13{word-spacing:38.180020pt;}
._1{margin-left:-11.017856pt;}
._20{margin-left:-7.738188pt;}
._10{margin-left:-6.411953pt;}
._2{margin-left:-5.100885pt;}
._d{margin-left:-4.208230pt;}
._3{margin-left:-3.203994pt;}
._c{margin-left:-2.269093pt;}
._5{margin-left:-1.147699pt;}
._9{width:1.578086pt;}
._16{width:2.725786pt;}
._1a{width:4.887277pt;}
._19{width:5.989405pt;}
._18{width:8.331954pt;}
._e{width:9.309116pt;}
._1d{width:11.326345pt;}
._8{width:13.102899pt;}
._6{width:14.107136pt;}
._11{width:15.767286pt;}
._a{width:16.744430pt;}
._15{width:18.094561pt;}
._21{width:19.432743pt;}
._13{width:20.583551pt;}
._4{width:21.758464pt;}
._7{width:22.810522pt;}
._f{width:24.960021pt;}
._14{width:25.874993pt;}
._0{width:26.810116pt;}
._24{width:27.771886pt;}
._1f{width:28.870153pt;}
._12{width:29.965215pt;}
._17{width:31.880533pt;}
._b{width:34.556844pt;}
._1b{width:44.368493pt;}
._1c{width:45.784702pt;}
._1e{width:57.088358pt;}
._22{width:58.880049pt;}
._23{width:59.810959pt;}
._25{width:67.898238pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs8{font-size:49.454933pt;}
.fs7{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:219.989333pt;}
.y6e{bottom:223.925333pt;}
.y52{bottom:223.966667pt;}
.yd9{bottom:230.826667pt;}
.ybe{bottom:232.030667pt;}
.y9b{bottom:232.282667pt;}
.y27{bottom:233.533333pt;}
.y51{bottom:238.578667pt;}
.y26{bottom:248.145333pt;}
.yd8{bottom:248.892000pt;}
.ybd{bottom:250.096000pt;}
.y9a{bottom:250.349333pt;}
.y6d{bottom:250.858667pt;}
.y80{bottom:262.306667pt;}
.y25{bottom:262.798667pt;}
.yd7{bottom:266.957333pt;}
.ybc{bottom:268.161333pt;}
.y99{bottom:268.414667pt;}
.y6c{bottom:268.924000pt;}
.y7f{bottom:278.246667pt;}
.y24{bottom:282.721333pt;}
.y50{bottom:285.024000pt;}
.ybb{bottom:286.228000pt;}
.y98{bottom:286.480000pt;}
.y6b{bottom:286.989333pt;}
.y23{bottom:292.254667pt;}
.y7e{bottom:294.186667pt;}
.y4f{bottom:303.089333pt;}
.yba{bottom:304.293333pt;}
.y97{bottom:304.545333pt;}
.y6a{bottom:305.056000pt;}
.y7d{bottom:310.126667pt;}
.y4e{bottom:321.154667pt;}
.yb9{bottom:322.358667pt;}
.y96{bottom:322.610667pt;}
.y69{bottom:323.121333pt;}
.y7c{bottom:326.068000pt;}
.y22{bottom:328.532000pt;}
.y4d{bottom:339.220000pt;}
.y95{bottom:340.677333pt;}
.y68{bottom:341.186667pt;}
.y21{bottom:346.598667pt;}
.yb8{bottom:354.842667pt;}
.y4c{bottom:357.285333pt;}
.y94{bottom:358.742667pt;}
.y67{bottom:359.252000pt;}
.y20{bottom:364.664000pt;}
.y4b{bottom:375.352000pt;}
.y93{bottom:376.808000pt;}
.y66{bottom:377.317333pt;}
.y1f{bottom:382.729333pt;}
.y4a{bottom:393.417333pt;}
.y92{bottom:394.873333pt;}
.y65{bottom:395.384000pt;}
.yb7{bottom:400.694667pt;}
.y1e{bottom:400.794667pt;}
.yd6{bottom:411.482667pt;}
.yb6{bottom:418.761333pt;}
.y1d{bottom:418.860000pt;}
.y64{bottom:422.853333pt;}
.y49{bottom:425.901333pt;}
.yd5{bottom:429.548000pt;}
.y91{bottom:433.313333pt;}
.yb5{bottom:436.826667pt;}
.y1c{bottom:436.926667pt;}
.yd4{bottom:447.613333pt;}
.y90{bottom:451.378667pt;}
.yb4{bottom:454.892000pt;}
.y1b{bottom:454.992000pt;}
.y63{bottom:461.824000pt;}
.yd3{bottom:465.680000pt;}
.y8f{bottom:469.445333pt;}
.y48{bottom:471.753333pt;}
.yb3{bottom:472.957333pt;}
.y1a{bottom:473.057333pt;}
.y62{bottom:479.889333pt;}
.yd2{bottom:483.745333pt;}
.y8e{bottom:487.510667pt;}
.y47{bottom:489.818667pt;}
.yb2{bottom:491.022667pt;}
.y19{bottom:491.122667pt;}
.y61{bottom:499.761333pt;}
.yd1{bottom:501.810667pt;}
.y8d{bottom:505.576000pt;}
.y46{bottom:507.885333pt;}
.yb1{bottom:509.089333pt;}
.y60{bottom:513.753333pt;}
.y5f{bottom:517.828000pt;}
.yd0{bottom:519.876000pt;}
.y18{bottom:523.608000pt;}
.y8c{bottom:523.641333pt;}
.y45{bottom:525.950667pt;}
.yb0{bottom:527.154667pt;}
.y5e{bottom:537.700000pt;}
.ycf{bottom:537.941333pt;}
.y8b{bottom:541.706667pt;}
.y7b{bottom:543.764000pt;}
.y44{bottom:544.016000pt;}
.yaf{bottom:545.220000pt;}
.y5d{bottom:553.498667pt;}
.yce{bottom:556.008000pt;}
.y5c{bottom:557.572000pt;}
.y8a{bottom:559.773333pt;}
.y7a{bottom:561.829333pt;}
.y43{bottom:562.081333pt;}
.yae{bottom:563.285333pt;}
.ycd{bottom:574.073333pt;}
.y5b{bottom:577.444000pt;}
.y89{bottom:577.838667pt;}
.y79{bottom:579.894667pt;}
.y42{bottom:580.146667pt;}
.yad{bottom:581.350667pt;}
.y17{bottom:586.837333pt;}
.ycc{bottom:592.138667pt;}
.y88{bottom:595.904000pt;}
.y78{bottom:597.960000pt;}
.y41{bottom:598.213333pt;}
.y16{bottom:601.449333pt;}
.y5a{bottom:607.465333pt;}
.ycb{bottom:610.204000pt;}
.y87{bottom:613.969333pt;}
.y77{bottom:616.026667pt;}
.y15{bottom:616.061333pt;}
.y40{bottom:616.278667pt;}
.yac{bottom:619.792000pt;}
.y59{bottom:625.530667pt;}
.yca{bottom:628.269333pt;}
.y86{bottom:632.034667pt;}
.y76{bottom:634.092000pt;}
.y3f{bottom:634.344000pt;}
.yab{bottom:637.857333pt;}
.y14{bottom:640.753333pt;}
.y58{bottom:643.596000pt;}
.yc9{bottom:646.336000pt;}
.y85{bottom:650.101333pt;}
.y75{bottom:652.157333pt;}
.y3e{bottom:652.409333pt;}
.y13{bottom:655.365333pt;}
.yaa{bottom:655.922667pt;}
.y57{bottom:661.661333pt;}
.yc8{bottom:664.401333pt;}
.y84{bottom:668.166667pt;}
.y12{bottom:669.977333pt;}
.y3d{bottom:670.474667pt;}
.ya9{bottom:673.988000pt;}
.y74{bottom:679.626667pt;}
.y56{bottom:679.728000pt;}
.yc7{bottom:682.466667pt;}
.y11{bottom:684.589333pt;}
.y83{bottom:686.232000pt;}
.y3c{bottom:688.541333pt;}
.ya8{bottom:692.053333pt;}
.y10{bottom:699.201333pt;}
.yc6{bottom:700.532000pt;}
.y3b{bottom:706.606667pt;}
.y55{bottom:707.196000pt;}
.yf{bottom:713.813333pt;}
.y73{bottom:718.597333pt;}
.ya7{bottom:719.522667pt;}
.y3a{bottom:724.672000pt;}
.ye{bottom:728.425333pt;}
.y72{bottom:736.664000pt;}
.y39{bottom:742.737333pt;}
.yd{bottom:743.036000pt;}
.y71{bottom:754.729333pt;}
.yc{bottom:757.648000pt;}
.ya6{bottom:758.494667pt;}
.y38{bottom:760.802667pt;}
.y54{bottom:769.760000pt;}
.yb{bottom:772.260000pt;}
.y70{bottom:772.794667pt;}
.ya5{bottom:776.560000pt;}
.y37{bottom:778.869333pt;}
.y53{bottom:785.701333pt;}
.ya{bottom:786.872000pt;}
.yc5{bottom:790.860000pt;}
.ya4{bottom:794.625333pt;}
.y36{bottom:796.934667pt;}
.y9{bottom:801.484000pt;}
.y6f{bottom:805.278667pt;}
.yc4{bottom:808.925333pt;}
.y81{bottom:810.496000pt;}
.y82{bottom:811.404000pt;}
.ya3{bottom:812.690667pt;}
.y35{bottom:815.000000pt;}
.y8{bottom:816.096000pt;}
.yc3{bottom:826.992000pt;}
.y7{bottom:830.708000pt;}
.ya2{bottom:830.757333pt;}
.y34{bottom:833.065333pt;}
.yc2{bottom:845.057333pt;}
.y6{bottom:845.320000pt;}
.ya1{bottom:848.822667pt;}
.y33{bottom:851.130667pt;}
.y5{bottom:859.932000pt;}
.yc1{bottom:863.122667pt;}
.ya0{bottom:866.888000pt;}
.y32{bottom:869.197333pt;}
.yc0{bottom:881.188000pt;}
.y9f{bottom:884.953333pt;}
.y30{bottom:887.262667pt;}
.y31{bottom:892.541333pt;}
.y9e{bottom:903.018667pt;}
.y4{bottom:905.126667pt;}
.y2f{bottom:905.328000pt;}
.ybf{bottom:913.673333pt;}
.y9d{bottom:921.085333pt;}
.y2e{bottom:923.393333pt;}
.y3{bottom:930.600000pt;}
.y9c{bottom:939.150667pt;}
.y2d{bottom:941.458667pt;}
.y2c{bottom:959.525333pt;}
.y2{bottom:965.137333pt;}
.y2b{bottom:977.590667pt;}
.y1{bottom:994.361333pt;}
.y29{bottom:995.656000pt;}
.y2a{bottom:1000.934667pt;}
.ha{height:14.881442pt;}
.h4{height:22.316373pt;}
.hd{height:23.464073pt;}
.he{height:31.285299pt;}
.h9{height:33.474560pt;}
.h6{height:35.196109pt;}
.h13{height:35.953737pt;}
.h11{height:37.618778pt;}
.h10{height:39.053392pt;}
.h17{height:40.727307pt;}
.hc{height:41.078067pt;}
.hb{height:41.843200pt;}
.h7{height:42.763672pt;}
.h5{height:42.821854pt;}
.h14{height:43.636400pt;}
.h18{height:44.870858pt;}
.h1a{height:44.876191pt;}
.h12{height:46.864384pt;}
.h15{height:50.614663pt;}
.hf{height:52.399966pt;}
.h3{height:54.421299pt;}
.h8{height:56.237104pt;}
.h1c{height:58.020400pt;}
.h16{height:59.929733pt;}
.h19{height:59.935067pt;}
.h1b{height:62.892191pt;}
.h2{height:67.484368pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:119.054667pt;}
.x34{left:125.818667pt;}
.x1b{left:133.600000pt;}
.x24{left:143.040000pt;}
.x35{left:150.212000pt;}
.x26{left:154.938667pt;}
.x1c{left:166.626667pt;}
.x31{left:171.245333pt;}
.x3{left:172.829333pt;}
.x2{left:174.108000pt;}
.x4{left:179.592000pt;}
.x5{left:186.026667pt;}
.x6{left:192.790667pt;}
.x7{left:199.224000pt;}
.x8{left:205.988000pt;}
.x17{left:208.696000pt;}
.x18{left:222.224000pt;}
.x23{left:250.870667pt;}
.x2e{left:264.604000pt;}
.x21{left:279.918667pt;}
.x22{left:293.445333pt;}
.x19{left:311.594667pt;}
.x32{left:314.065333pt;}
.x2f{left:316.076000pt;}
.x9{left:321.964000pt;}
.x1a{left:325.121333pt;}
.xa{left:328.726667pt;}
.x27{left:332.493333pt;}
.xb{left:335.161333pt;}
.x28{left:337.746667pt;}
.xc{left:341.925333pt;}
.xd{left:348.358667pt;}
.xe{left:355.122667pt;}
.xf{left:361.557333pt;}
.x10{left:368.321333pt;}
.x33{left:372.364000pt;}
.x1f{left:388.066667pt;}
.x2c{left:398.016000pt;}
.x20{left:399.002667pt;}
.x30{left:426.698667pt;}
.x25{left:464.737333pt;}
.x2d{left:524.620000pt;}
.x11{left:545.249333pt;}
.x29{left:547.536000pt;}
.x12{left:552.013333pt;}
.x2a{left:559.053333pt;}
.x1d{left:563.261333pt;}
.x2b{left:566.624000pt;}
.x1e{left:573.210667pt;}
.x13{left:603.901333pt;}
.x36{left:605.013333pt;}
.x14{left:610.665333pt;}
.x15{left:654.173333pt;}
.x16{left:667.700000pt;}
}




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