
    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_c14f9e6850b0b2091996b760.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_80a4bb9bf1c83d8b23e0f3fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_43b6befeedb28ab62bfdb98d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_cbd34301aefed9d1e3abaf1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_6ea908a63e03ae6f3e266d8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_1345a991ea5da657fdaec353.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_50ce3c19b08a8e18858f9602.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_526d6de1c240d2774bec9472.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_0ee13df9bea065e20b99fcf8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_17e802d93adfb62ebb7e2ca3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_1345a991ea5da657fdaec353.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_57c1179d4115fe5287ead642.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939941;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_e07c5fdc0292c1c8d7ac8874.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939941;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_0c8d616521a21054d1e79b33.woff2')format("woff");}.fff{font-family:fff;line-height:0.936035;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_45a036f6ac0f92f502ca10b1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c04e0c4264b6c45d2b485efb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.063477;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ad4d506fd4ffda2ab39d0d40.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_90ac2c42965789ce6a5a93ff.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.063477;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:ff15;src:url('chunks/assets/font_45a036f6ac0f92f502ca10b1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_3574999b2086a89073ac12b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.063477;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:ff17;src:url('chunks/assets/font_af97d3506b8f8833ec134a84.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.435059;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:ff18;src:url('chunks/assets/font_4a8090a85f55b7b11e37a184.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.063477;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:ff19;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;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:ff1a;src:url('chunks/assets/font_ad4d506fd4ffda2ab39d0d40.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_45a036f6ac0f92f502ca10b1.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b2c7f6abd330fa3c645865fa.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.063477;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:ff1d;src:url('chunks/assets/font_af97d3506b8f8833ec134a84.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.435059;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:ff1e;src:url('chunks/assets/font_af3a2198962a8329676315fc.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_02e0414d1a9f56038e64ba6c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.063477;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:ff20;src:url('chunks/assets/font_5095a503ad2e8954a73babe8.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.435059;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:ff21;src:url('chunks/assets/font_6235ee1cc9dacaf1ec983ac1.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.063477;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.308400px;}
.ls10{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.092400px;}
.ls1b{letter-spacing:0.129600px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.216600px;}
.ls7{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.296400px;}
.ls1a{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.331200px;}
.lsb{letter-spacing:0.360000px;}
.ls1c{letter-spacing:1.781280px;}
.lsa{letter-spacing:3.600000px;}
.ls1d{letter-spacing:3.941280px;}
.ls1f{letter-spacing:6.264000px;}
.ls12{letter-spacing:6.840000px;}
.ls9{letter-spacing:8.064000px;}
.ls11{letter-spacing:8.640000px;}
.ls8{letter-spacing:8.784000px;}
.ls13{letter-spacing:9.665280px;}
.ls14{letter-spacing:15.425280px;}
.ls16{letter-spacing:17.585280px;}
.ls1{letter-spacing:27.504000px;}
.lsf{letter-spacing:54.864000px;}
.lse{letter-spacing:74.304000px;}
.lsd{letter-spacing:94.464000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(5,146,176),0 0.015em rgb(5,146,176),0.015em 0 rgb(5,146,176),0 -0.015em  rgb(5,146,176);}
.sc1{text-shadow:-0.015em 0 rgb(58,4,139),0 0.015em rgb(58,4,139),0.015em 0 rgb(58,4,139),0 -0.015em  rgb(58,4,139);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(5,146,176);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(58,4,139);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.wsc{word-spacing:-66.240000px;}
.ws13{word-spacing:-26.856000px;}
.ws10{word-spacing:-21.276600px;}
.ws11{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.891200px;}
.wsf{word-spacing:-16.856400px;}
.wsb{word-spacing:-16.560000px;}
.wse{word-spacing:-16.251600px;}
.ws12{word-spacing:-15.264000px;}
.wsa{word-spacing:-2.736000px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-15.120000px;}
._0{margin-left:-1.434240px;}
._5{width:1.085040px;}
._6{width:2.482800px;}
._9{width:3.709200px;}
._3{width:5.652000px;}
._2{width:6.660000px;}
._4{width:7.896000px;}
._a{width:9.144000px;}
._e{width:10.728000px;}
._d{width:11.808000px;}
._b{width:13.320000px;}
._c{width:14.628000px;}
._13{width:15.792000px;}
._12{width:16.980480px;}
._11{width:19.770240px;}
._1d{width:21.576000px;}
._8{width:22.962960px;}
._7{width:24.048000px;}
._f{width:25.200000px;}
._10{width:26.545920px;}
._1a{width:27.576000px;}
._1b{width:28.578960px;}
._1e{width:30.732480px;}
._14{width:31.968000px;}
._15{width:33.120000px;}
._1c{width:34.416000px;}
._18{width:35.496000px;}
._19{width:37.074960px;}
._25{width:48.606480px;}
._26{width:50.147280px;}
._27{width:51.217920px;}
._16{width:53.400000px;}
._1f{width:55.851120px;}
._22{width:57.285360px;}
._23{width:62.337600px;}
._24{width:63.437040px;}
._21{width:64.949040px;}
._20{width:65.959920px;}
._1{width:521.533920px;}
.fc2{color:rgb(5,146,176);}
.fc1{color:rgb(58,4,139);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y129{bottom:5.040000px;}
.y115{bottom:6.465000px;}
.yfd{bottom:6.480000px;}
.y131{bottom:8.100000px;}
.yef{bottom:8.640000px;}
.y15a{bottom:10.065000px;}
.y13f{bottom:10.080000px;}
.y153{bottom:10.245000px;}
.y148{bottom:10.260000px;}
.y166{bottom:12.960000px;}
.y16a{bottom:13.005000px;}
.y164{bottom:13.140000px;}
.y128{bottom:23.760000px;}
.y6{bottom:25.740000px;}
.y15f{bottom:25.776000px;}
.yfc{bottom:26.640000px;}
.y125{bottom:26.820000px;}
.y10c{bottom:28.080000px;}
.y114{bottom:28.110000px;}
.y121{bottom:28.245000px;}
.y123{bottom:36.180000px;}
.y159{bottom:37.425000px;}
.y13e{bottom:37.620000px;}
.y157{bottom:39.225000px;}
.y152{bottom:39.405000px;}
.y147{bottom:39.420000px;}
.y5{bottom:42.120000px;}
.y15e{bottom:42.156000px;}
.y127{bottom:45.390000px;}
.y124{bottom:45.570000px;}
.yfb{bottom:46.800000px;}
.y120{bottom:48.405000px;}
.y10b{bottom:48.450000px;}
.y155{bottom:51.105000px;}
.y4{bottom:52.200000px;}
.y15d{bottom:52.236000px;}
.y3{bottom:62.460000px;}
.y15c{bottom:62.496000px;}
.y156{bottom:63.165000px;}
.y158{bottom:64.785000px;}
.y126{bottom:65.550000px;}
.y13d{bottom:66.780000px;}
.yfa{bottom:68.445000px;}
.y151{bottom:68.565000px;}
.y11f{bottom:70.005000px;}
.y10a{bottom:70.050000px;}
.y119{bottom:80.265000px;}
.y14c{bottom:82.245000px;}
.y137{bottom:84.960000px;}
.yf9{bottom:88.785000px;}
.y117{bottom:89.625000px;}
.y11e{bottom:91.605000px;}
.y109{bottom:91.650000px;}
.yf3{bottom:91.845000px;}
.y10f{bottom:92.550000px;}
.y102{bottom:93.270000px;}
.y14a{bottom:94.125000px;}
.y13c{bottom:94.140000px;}
.y146{bottom:94.320000px;}
.y150{bottom:95.925000px;}
.y142{bottom:96.120000px;}
.y134{bottom:96.840000px;}
.y118{bottom:98.985000px;}
.yf1{bottom:101.205000px;}
.yff{bottom:102.630000px;}
.y14b{bottom:106.005000px;}
.y12a{bottom:107.640000px;}
.y136{bottom:108.900000px;}
.yf8{bottom:110.385000px;}
.yf2{bottom:110.565000px;}
.y10e{bottom:111.270000px;}
.y101{bottom:111.990000px;}
.y108{bottom:113.250000px;}
.y11d{bottom:113.385000px;}
.y113{bottom:113.430000px;}
.y141{bottom:119.880000px;}
.y133{bottom:120.780000px;}
.yfe{bottom:121.350000px;}
.y13b{bottom:121.500000px;}
.y122{bottom:122.040000px;}
.y145{bottom:123.480000px;}
.y14f{bottom:123.510000px;}
.y5e{bottom:128.880000px;}
.y8a{bottom:129.960000px;}
.y100{bottom:130.710000px;}
.yf7{bottom:131.985000px;}
.y135{bottom:132.660000px;}
.yb1{bottom:133.200000px;}
.y195{bottom:133.236000px;}
.y107{bottom:133.410000px;}
.y112{bottom:133.590000px;}
.y11c{bottom:133.725000px;}
.yeb{bottom:136.440000px;}
.y89{bottom:150.300000px;}
.y13a{bottom:150.840000px;}
.y5d{bottom:151.020000px;}
.yf6{bottom:152.145000px;}
.y11b{bottom:152.265000px;}
.y14e{bottom:152.670000px;}
.y33{bottom:153.540000px;}
.y106{bottom:153.750000px;}
.y111{bottom:155.190000px;}
.y194{bottom:157.350000px;}
.yea{bottom:159.840000px;}
.y15b{bottom:163.650000px;}
.y11a{bottom:172.425000px;}
.y88{bottom:172.470000px;}
.y5c{bottom:173.010000px;}
.yf5{bottom:173.925000px;}
.y32{bottom:174.090000px;}
.y105{bottom:175.350000px;}
.yb0{bottom:177.330000px;}
.y154{bottom:178.065000px;}
.y144{bottom:178.230000px;}
.y14d{bottom:180.030000px;}
.y139{bottom:180.045000px;}
.y193{bottom:181.650000px;}
.ye9{bottom:183.270000px;}
.y87{bottom:192.810000px;}
.y5b{bottom:193.350000px;}
.y31{bottom:194.430000px;}
.yf4{bottom:195.525000px;}
.y104{bottom:196.950000px;}
.y110{bottom:197.130000px;}
.yaf{bottom:199.290000px;}
.y116{bottom:203.445000px;}
.y192{bottom:205.770000px;}
.ye8{bottom:206.850000px;}
.y143{bottom:207.570000px;}
.y138{bottom:209.385000px;}
.y86{bottom:213.150000px;}
.y5a{bottom:213.870000px;}
.y30{bottom:214.770000px;}
.y103{bottom:217.110000px;}
.yae{bottom:221.250000px;}
.y191{bottom:229.890000px;}
.ye7{bottom:230.250000px;}
.y2f{bottom:235.290000px;}
.y85{bottom:236.910000px;}
.yad{bottom:243.210000px;}
.y59{bottom:252.210000px;}
.ye6{bottom:253.650000px;}
.y190{bottom:254.010000px;}
.y2e{bottom:255.630000px;}
.y84{bottom:258.870000px;}
.yac{bottom:265.350000px;}
.y58{bottom:272.730000px;}
.y2d{bottom:276.150000px;}
.ye5{bottom:277.230000px;}
.y18f{bottom:278.130000px;}
.y83{bottom:282.450000px;}
.yab{bottom:287.310000px;}
.y149{bottom:292.005000px;}
.y57{bottom:293.070000px;}
.y2c{bottom:296.490000px;}
.ye4{bottom:300.630000px;}
.y18e{bottom:302.295000px;}
.y82{bottom:306.030000px;}
.yaa{bottom:309.270000px;}
.y56{bottom:313.410000px;}
.y2b{bottom:316.830000px;}
.y182{bottom:320.475000px;}
.ye3{bottom:324.210000px;}
.y18d{bottom:325.515000px;}
.y81{bottom:328.170000px;}
.ya9{bottom:331.410000px;}
.y55{bottom:333.930000px;}
.y2a{bottom:337.350000px;}
.y18c{bottom:344.415000px;}
.y181{bottom:344.595000px;}
.ye2{bottom:347.610000px;}
.y80{bottom:351.750000px;}
.y54{bottom:354.270000px;}
.y29{bottom:357.690000px;}
.y18b{bottom:364.575000px;}
.y180{bottom:368.715000px;}
.ye1{bottom:371.010000px;}
.y7f{bottom:373.710000px;}
.y53{bottom:374.790000px;}
.y28{bottom:378.030000px;}
.y18a{bottom:383.295000px;}
.y10d{bottom:391.725000px;}
.y17f{bottom:392.835000px;}
.ye0{bottom:394.590000px;}
.y52{bottom:395.130000px;}
.ya8{bottom:395.850000px;}
.y7e{bottom:397.290000px;}
.y27{bottom:398.550000px;}
.y189{bottom:402.015000px;}
.y51{bottom:415.515000px;}
.ya7{bottom:416.235000px;}
.y17e{bottom:416.955000px;}
.ydf{bottom:418.035000px;}
.y26{bottom:418.935000px;}
.y188{bottom:420.735000px;}
.y7d{bottom:421.095000px;}
.ya6{bottom:438.195000px;}
.yde{bottom:438.555000px;}
.y25{bottom:439.455000px;}
.y17d{bottom:441.075000px;}
.y7c{bottom:443.055000px;}
.y50{bottom:454.035000px;}
.y187{bottom:458.175000px;}
.y24{bottom:459.795000px;}
.ya5{bottom:460.155000px;}
.ydd{bottom:461.955000px;}
.y7b{bottom:465.015000px;}
.y17c{bottom:465.195000px;}
.y4f{bottom:474.375000px;}
.y186{bottom:476.895000px;}
.y23{bottom:480.135000px;}
.ya4{bottom:480.675000px;}
.ydc{bottom:485.355000px;}
.y7a{bottom:485.535000px;}
.y17b{bottom:489.495000px;}
.y140{bottom:491.835000px;}
.y4e{bottom:494.715000px;}
.y185{bottom:495.615000px;}
.y22{bottom:500.655000px;}
.ya3{bottom:501.015000px;}
.ydb{bottom:505.875000px;}
.y79{bottom:507.495000px;}
.y17a{bottom:512.535000px;}
.y184{bottom:514.335000px;}
.y4d{bottom:515.235000px;}
.y21{bottom:520.995000px;}
.ya2{bottom:521.535000px;}
.y78{bottom:527.835000px;}
.yda{bottom:529.275000px;}
.y179{bottom:531.435000px;}
.y183{bottom:532.875000px;}
.y4c{bottom:535.575000px;}
.y20{bottom:541.335000px;}
.ya1{bottom:541.875000px;}
.y77{bottom:549.975000px;}
.y178{bottom:551.595000px;}
.yd9{bottom:552.675000px;}
.y4b{bottom:556.095000px;}
.y1f{bottom:561.855000px;}
.ya0{bottom:562.215000px;}
.y76{bottom:570.315000px;}
.y177{bottom:570.345000px;}
.yd8{bottom:576.255000px;}
.y4a{bottom:576.435000px;}
.y1e{bottom:582.195000px;}
.y9f{bottom:584.355000px;}
.y176{bottom:589.065000px;}
.y75{bottom:590.655000px;}
.yd7{bottom:596.595000px;}
.y49{bottom:596.775000px;}
.yc1{bottom:601.995000px;}
.y1d{bottom:602.715000px;}
.y9e{bottom:604.695000px;}
.y175{bottom:607.785000px;}
.y74{bottom:612.795000px;}
.y48{bottom:617.295000px;}
.yd6{bottom:620.175000px;}
.yc0{bottom:622.515000px;}
.y1c{bottom:623.055000px;}
.y9d{bottom:625.035000px;}
.y174{bottom:626.505000px;}
.y73{bottom:633.135000px;}
.y47{bottom:637.635000px;}
.ybf{bottom:642.855000px;}
.yd5{bottom:643.575000px;}
.y173{bottom:645.225000px;}
.y9c{bottom:648.795000px;}
.y72{bottom:653.505000px;}
.y46{bottom:658.005000px;}
.y1b{bottom:661.425000px;}
.y172{bottom:663.945000px;}
.ybe{bottom:664.845000px;}
.yd4{bottom:667.005000px;}
.y9b{bottom:670.785000px;}
.y71{bottom:674.025000px;}
.y45{bottom:678.525000px;}
.y1a{bottom:681.945000px;}
.y171{bottom:682.665000px;}
.ybd{bottom:685.185000px;}
.yd3{bottom:690.585000px;}
.y70{bottom:694.365000px;}
.y44{bottom:698.865000px;}
.y170{bottom:701.385000px;}
.y19{bottom:702.285000px;}
.ybc{bottom:707.325000px;}
.yd2{bottom:713.985000px;}
.y6f{bottom:714.885000px;}
.y9a{bottom:717.945000px;}
.y132{bottom:719.205000px;}
.y43{bottom:719.385000px;}
.y16f{bottom:720.105000px;}
.y18{bottom:722.625000px;}
.ybb{bottom:727.665000px;}
.y6e{bottom:735.225000px;}
.yd1{bottom:737.565000px;}
.y16e{bottom:738.105000px;}
.y42{bottom:739.725000px;}
.y99{bottom:741.705000px;}
.y17{bottom:743.145000px;}
.yba{bottom:749.805000px;}
.y16d{bottom:755.205000px;}
.y6d{bottom:755.565000px;}
.y41{bottom:760.065000px;}
.yd0{bottom:760.965000px;}
.y16{bottom:763.485000px;}
.y98{bottom:763.665000px;}
.y16c{bottom:768.345000px;}
.yb9{bottom:770.145000px;}
.y6c{bottom:776.085000px;}
.y40{bottom:780.585000px;}
.y15{bottom:784.005000px;}
.ycf{bottom:784.365000px;}
.y97{bottom:787.245000px;}
.yb8{bottom:790.485000px;}
.y6b{bottom:796.425000px;}
.y3f{bottom:800.925000px;}
.y16b{bottom:803.085000px;}
.yce{bottom:807.945000px;}
.y96{bottom:809.385000px;}
.yb7{bottom:811.005000px;}
.y6a{bottom:818.385000px;}
.y3e{bottom:821.265000px;}
.y14{bottom:822.345000px;}
.yb6{bottom:831.345000px;}
.y95{bottom:832.965000px;}
.yf0{bottom:837.825000px;}
.y169{bottom:838.005000px;}
.y69{bottom:838.905000px;}
.y3d{bottom:841.785000px;}
.y13{bottom:842.685000px;}
.yb5{bottom:851.685000px;}
.ycd{bottom:854.745000px;}
.y94{bottom:854.925000px;}
.y68{bottom:860.865000px;}
.y3c{bottom:862.125000px;}
.y12{bottom:863.205000px;}
.yb4{bottom:872.205000px;}
.y168{bottom:872.790000px;}
.y93{bottom:875.445000px;}
.ycc{bottom:878.325000px;}
.y3b{bottom:882.645000px;}
.y67{bottom:882.825000px;}
.y11{bottom:883.545000px;}
.yb3{bottom:894.165000px;}
.y92{bottom:895.830000px;}
.ycb{bottom:901.770000px;}
.y3a{bottom:903.030000px;}
.y66{bottom:903.390000px;}
.y10{bottom:903.930000px;}
.y167{bottom:907.530000px;}
.yb2{bottom:916.170000px;}
.y91{bottom:917.790000px;}
.y39{bottom:923.370000px;}
.y65{bottom:923.730000px;}
.yf{bottom:924.450000px;}
.yca{bottom:925.350000px;}
.y90{bottom:938.310000px;}
.y165{bottom:942.450000px;}
.y38{bottom:943.890000px;}
.ye{bottom:944.790000px;}
.yc9{bottom:945.690000px;}
.y64{bottom:947.310000px;}
.y130{bottom:948.390000px;}
.y8f{bottom:958.650000px;}
.yd{bottom:965.310000px;}
.yc8{bottom:966.030000px;}
.y63{bottom:969.450000px;}
.y163{bottom:978.630000px;}
.y8e{bottom:978.990000px;}
.y12f{bottom:980.250000px;}
.y37{bottom:982.230000px;}
.yc{bottom:985.650000px;}
.yc7{bottom:986.550000px;}
.y62{bottom:993.030000px;}
.y8d{bottom:999.510000px;}
.y12e{bottom:1000.770000px;}
.y36{bottom:1002.570000px;}
.yb{bottom:1005.990000px;}
.yc6{bottom:1006.890000px;}
.y61{bottom:1016.610000px;}
.y162{bottom:1018.410000px;}
.y8c{bottom:1019.850000px;}
.y12d{bottom:1022.010000px;}
.y35{bottom:1023.090000px;}
.yc5{bottom:1026.330000px;}
.ya{bottom:1026.510000px;}
.y60{bottom:1038.570000px;}
.y161{bottom:1040.550000px;}
.y8b{bottom:1041.810000px;}
.yc4{bottom:1042.890000px;}
.y34{bottom:1043.430000px;}
.y12c{bottom:1044.870000px;}
.y9{bottom:1045.770000px;}
.yee{bottom:1049.190000px;}
.y5f{bottom:1062.330000px;}
.yc3{bottom:1063.590000px;}
.y8{bottom:1063.950000px;}
.y12b{bottom:1065.390000px;}
.y160{bottom:1066.290000px;}
.yed{bottom:1081.050000px;}
.y7{bottom:1084.290000px;}
.yc2{bottom:1096.890000px;}
.yec{bottom:1101.570000px;}
.y2{bottom:1102.830000px;}
.y1{bottom:1116.510000px;}
.hc{height:25.545000px;}
.h8{height:27.000000px;}
.h3{height:31.587891px;}
.h1c{height:34.005000px;}
.h1e{height:34.020000px;}
.h1d{height:34.042500px;}
.hb{height:44.820000px;}
.h5{height:52.435898px;}
.h7{height:54.000000px;}
.hd{height:58.121719px;}
.h2{height:61.423863px;}
.h1a{height:62.211094px;}
.h4{height:63.175781px;}
.hf{height:68.084282px;}
.h14{height:73.915664px;}
.h6{height:74.004654px;}
.ha{height:75.093750px;}
.h13{height:80.676000px;}
.h16{height:86.585445px;}
.h9{height:87.695156px;}
.h1b{height:94.763672px;}
.h19{height:113.205000px;}
.h12{height:187.545000px;}
.h18{height:199.095000px;}
.he{height:210.630000px;}
.h11{height:212.235000px;}
.h17{height:226.650000px;}
.h15{height:228.450000px;}
.h10{height:232.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:81.934500px;}
.wd{width:83.361000px;}
.w5{width:93.814500px;}
.w3{width:94.849500px;}
.w6{width:100.065000px;}
.w9{width:120.945000px;}
.we{width:129.585000px;}
.wf{width:140.076000px;}
.w10{width:145.281000px;}
.w8{width:167.415000px;}
.wc{width:201.990000px;}
.wa{width:230.599500px;}
.wb{width:416.415000px;}
.w7{width:588.150000px;}
.w4{width:605.250000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.738500px;}
.x15{left:10.245000px;}
.x1e{left:12.058500px;}
.x17{left:13.498500px;}
.x18{left:14.578500px;}
.x19{left:17.638500px;}
.x30{left:18.885000px;}
.x14{left:24.838500px;}
.x16{left:40.894500px;}
.x1d{left:46.834500px;}
.x10{left:57.420000px;}
.x12{left:59.941500px;}
.x2b{left:64.800000px;}
.x5{left:67.680000px;}
.x4{left:69.120000px;}
.xb{left:70.200000px;}
.x22{left:82.245000px;}
.x31{left:85.860000px;}
.xe{left:88.920000px;}
.x8{left:94.680000px;}
.xd{left:99.756000px;}
.x28{left:101.010000px;}
.x1f{left:103.356000px;}
.x24{left:110.566500px;}
.x9{left:121.716000px;}
.xc{left:131.616000px;}
.x27{left:137.503500px;}
.xa{left:142.236000px;}
.x1b{left:154.485000px;}
.x26{left:179.488500px;}
.x2e{left:180.748500px;}
.x2d{left:190.288500px;}
.x1a{left:199.830000px;}
.x2c{left:205.230000px;}
.x6{left:208.110000px;}
.x11{left:237.990000px;}
.x20{left:239.250000px;}
.x1c{left:255.285000px;}
.xf{left:269.490000px;}
.x7{left:270.570000px;}
.x1{left:299.415000px;}
.x25{left:342.075000px;}
.x3{left:428.655000px;}
.x2{left:445.755000px;}
.x21{left:467.220000px;}
.x2f{left:482.880000px;}
.x29{left:544.800000px;}
.x2a{left:628.890000px;}
.x23{left:636.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.274133pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.082133pt;}
.ls1b{letter-spacing:0.115200pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.192533pt;}
.ls7{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.263467pt;}
.ls1a{letter-spacing:0.280320pt;}
.ls17{letter-spacing:0.294400pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:1.583360pt;}
.lsa{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.503360pt;}
.ls1f{letter-spacing:5.568000pt;}
.ls12{letter-spacing:6.080000pt;}
.ls9{letter-spacing:7.168000pt;}
.ls11{letter-spacing:7.680000pt;}
.ls8{letter-spacing:7.808000pt;}
.ls13{letter-spacing:8.591360pt;}
.ls14{letter-spacing:13.711360pt;}
.ls16{letter-spacing:15.631360pt;}
.ls1{letter-spacing:24.448000pt;}
.lsf{letter-spacing:48.768000pt;}
.lse{letter-spacing:66.048000pt;}
.lsd{letter-spacing:83.968000pt;}
.ws7{word-spacing:-64.000000pt;}
.wsc{word-spacing:-58.880000pt;}
.ws13{word-spacing:-23.872000pt;}
.ws10{word-spacing:-18.912533pt;}
.ws11{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.014400pt;}
.wsf{word-spacing:-14.983467pt;}
.wsb{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.445867pt;}
.ws12{word-spacing:-13.568000pt;}
.wsa{word-spacing:-2.432000pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-13.440000pt;}
._0{margin-left:-1.274880pt;}
._5{width:0.964480pt;}
._6{width:2.206933pt;}
._9{width:3.297067pt;}
._3{width:5.024000pt;}
._2{width:5.920000pt;}
._4{width:7.018667pt;}
._a{width:8.128000pt;}
._e{width:9.536000pt;}
._d{width:10.496000pt;}
._b{width:11.840000pt;}
._c{width:13.002667pt;}
._13{width:14.037333pt;}
._12{width:15.093760pt;}
._11{width:17.573547pt;}
._1d{width:19.178667pt;}
._8{width:20.411520pt;}
._7{width:21.376000pt;}
._f{width:22.400000pt;}
._10{width:23.596373pt;}
._1a{width:24.512000pt;}
._1b{width:25.403520pt;}
._1e{width:27.317760pt;}
._14{width:28.416000pt;}
._15{width:29.440000pt;}
._1c{width:30.592000pt;}
._18{width:31.552000pt;}
._19{width:32.955520pt;}
._25{width:43.205760pt;}
._26{width:44.575360pt;}
._27{width:45.527040pt;}
._16{width:47.466667pt;}
._1f{width:49.645440pt;}
._22{width:50.920320pt;}
._23{width:55.411200pt;}
._24{width:56.388480pt;}
._21{width:57.732480pt;}
._20{width:58.631040pt;}
._1{width:463.585707pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:4.480000pt;}
.y115{bottom:5.746667pt;}
.yfd{bottom:5.760000pt;}
.y131{bottom:7.200000pt;}
.yef{bottom:7.680000pt;}
.y15a{bottom:8.946667pt;}
.y13f{bottom:8.960000pt;}
.y153{bottom:9.106667pt;}
.y148{bottom:9.120000pt;}
.y166{bottom:11.520000pt;}
.y16a{bottom:11.560000pt;}
.y164{bottom:11.680000pt;}
.y128{bottom:21.120000pt;}
.y6{bottom:22.880000pt;}
.y15f{bottom:22.912000pt;}
.yfc{bottom:23.680000pt;}
.y125{bottom:23.840000pt;}
.y10c{bottom:24.960000pt;}
.y114{bottom:24.986667pt;}
.y121{bottom:25.106667pt;}
.y123{bottom:32.160000pt;}
.y159{bottom:33.266667pt;}
.y13e{bottom:33.440000pt;}
.y157{bottom:34.866667pt;}
.y152{bottom:35.026667pt;}
.y147{bottom:35.040000pt;}
.y5{bottom:37.440000pt;}
.y15e{bottom:37.472000pt;}
.y127{bottom:40.346667pt;}
.y124{bottom:40.506667pt;}
.yfb{bottom:41.600000pt;}
.y120{bottom:43.026667pt;}
.y10b{bottom:43.066667pt;}
.y155{bottom:45.426667pt;}
.y4{bottom:46.400000pt;}
.y15d{bottom:46.432000pt;}
.y3{bottom:55.520000pt;}
.y15c{bottom:55.552000pt;}
.y156{bottom:56.146667pt;}
.y158{bottom:57.586667pt;}
.y126{bottom:58.266667pt;}
.y13d{bottom:59.360000pt;}
.yfa{bottom:60.840000pt;}
.y151{bottom:60.946667pt;}
.y11f{bottom:62.226667pt;}
.y10a{bottom:62.266667pt;}
.y119{bottom:71.346667pt;}
.y14c{bottom:73.106667pt;}
.y137{bottom:75.520000pt;}
.yf9{bottom:78.920000pt;}
.y117{bottom:79.666667pt;}
.y11e{bottom:81.426667pt;}
.y109{bottom:81.466667pt;}
.yf3{bottom:81.640000pt;}
.y10f{bottom:82.266667pt;}
.y102{bottom:82.906667pt;}
.y14a{bottom:83.666667pt;}
.y13c{bottom:83.680000pt;}
.y146{bottom:83.840000pt;}
.y150{bottom:85.266667pt;}
.y142{bottom:85.440000pt;}
.y134{bottom:86.080000pt;}
.y118{bottom:87.986667pt;}
.yf1{bottom:89.960000pt;}
.yff{bottom:91.226667pt;}
.y14b{bottom:94.226667pt;}
.y12a{bottom:95.680000pt;}
.y136{bottom:96.800000pt;}
.yf8{bottom:98.120000pt;}
.yf2{bottom:98.280000pt;}
.y10e{bottom:98.906667pt;}
.y101{bottom:99.546667pt;}
.y108{bottom:100.666667pt;}
.y11d{bottom:100.786667pt;}
.y113{bottom:100.826667pt;}
.y141{bottom:106.560000pt;}
.y133{bottom:107.360000pt;}
.yfe{bottom:107.866667pt;}
.y13b{bottom:108.000000pt;}
.y122{bottom:108.480000pt;}
.y145{bottom:109.760000pt;}
.y14f{bottom:109.786667pt;}
.y5e{bottom:114.560000pt;}
.y8a{bottom:115.520000pt;}
.y100{bottom:116.186667pt;}
.yf7{bottom:117.320000pt;}
.y135{bottom:117.920000pt;}
.yb1{bottom:118.400000pt;}
.y195{bottom:118.432000pt;}
.y107{bottom:118.586667pt;}
.y112{bottom:118.746667pt;}
.y11c{bottom:118.866667pt;}
.yeb{bottom:121.280000pt;}
.y89{bottom:133.600000pt;}
.y13a{bottom:134.080000pt;}
.y5d{bottom:134.240000pt;}
.yf6{bottom:135.240000pt;}
.y11b{bottom:135.346667pt;}
.y14e{bottom:135.706667pt;}
.y33{bottom:136.480000pt;}
.y106{bottom:136.666667pt;}
.y111{bottom:137.946667pt;}
.y194{bottom:139.866667pt;}
.yea{bottom:142.080000pt;}
.y15b{bottom:145.466667pt;}
.y11a{bottom:153.266667pt;}
.y88{bottom:153.306667pt;}
.y5c{bottom:153.786667pt;}
.yf5{bottom:154.600000pt;}
.y32{bottom:154.746667pt;}
.y105{bottom:155.866667pt;}
.yb0{bottom:157.626667pt;}
.y154{bottom:158.280000pt;}
.y144{bottom:158.426667pt;}
.y14d{bottom:160.026667pt;}
.y139{bottom:160.040000pt;}
.y193{bottom:161.466667pt;}
.ye9{bottom:162.906667pt;}
.y87{bottom:171.386667pt;}
.y5b{bottom:171.866667pt;}
.y31{bottom:172.826667pt;}
.yf4{bottom:173.800000pt;}
.y104{bottom:175.066667pt;}
.y110{bottom:175.226667pt;}
.yaf{bottom:177.146667pt;}
.y116{bottom:180.840000pt;}
.y192{bottom:182.906667pt;}
.ye8{bottom:183.866667pt;}
.y143{bottom:184.506667pt;}
.y138{bottom:186.120000pt;}
.y86{bottom:189.466667pt;}
.y5a{bottom:190.106667pt;}
.y30{bottom:190.906667pt;}
.y103{bottom:192.986667pt;}
.yae{bottom:196.666667pt;}
.y191{bottom:204.346667pt;}
.ye7{bottom:204.666667pt;}
.y2f{bottom:209.146667pt;}
.y85{bottom:210.586667pt;}
.yad{bottom:216.186667pt;}
.y59{bottom:224.186667pt;}
.ye6{bottom:225.466667pt;}
.y190{bottom:225.786667pt;}
.y2e{bottom:227.226667pt;}
.y84{bottom:230.106667pt;}
.yac{bottom:235.866667pt;}
.y58{bottom:242.426667pt;}
.y2d{bottom:245.466667pt;}
.ye5{bottom:246.426667pt;}
.y18f{bottom:247.226667pt;}
.y83{bottom:251.066667pt;}
.yab{bottom:255.386667pt;}
.y149{bottom:259.560000pt;}
.y57{bottom:260.506667pt;}
.y2c{bottom:263.546667pt;}
.ye4{bottom:267.226667pt;}
.y18e{bottom:268.706667pt;}
.y82{bottom:272.026667pt;}
.yaa{bottom:274.906667pt;}
.y56{bottom:278.586667pt;}
.y2b{bottom:281.626667pt;}
.y182{bottom:284.866667pt;}
.ye3{bottom:288.186667pt;}
.y18d{bottom:289.346667pt;}
.y81{bottom:291.706667pt;}
.ya9{bottom:294.586667pt;}
.y55{bottom:296.826667pt;}
.y2a{bottom:299.866667pt;}
.y18c{bottom:306.146667pt;}
.y181{bottom:306.306667pt;}
.ye2{bottom:308.986667pt;}
.y80{bottom:312.666667pt;}
.y54{bottom:314.906667pt;}
.y29{bottom:317.946667pt;}
.y18b{bottom:324.066667pt;}
.y180{bottom:327.746667pt;}
.ye1{bottom:329.786667pt;}
.y7f{bottom:332.186667pt;}
.y53{bottom:333.146667pt;}
.y28{bottom:336.026667pt;}
.y18a{bottom:340.706667pt;}
.y10d{bottom:348.200000pt;}
.y17f{bottom:349.186667pt;}
.ye0{bottom:350.746667pt;}
.y52{bottom:351.226667pt;}
.ya8{bottom:351.866667pt;}
.y7e{bottom:353.146667pt;}
.y27{bottom:354.266667pt;}
.y189{bottom:357.346667pt;}
.y51{bottom:369.346667pt;}
.ya7{bottom:369.986667pt;}
.y17e{bottom:370.626667pt;}
.ydf{bottom:371.586667pt;}
.y26{bottom:372.386667pt;}
.y188{bottom:373.986667pt;}
.y7d{bottom:374.306667pt;}
.ya6{bottom:389.506667pt;}
.yde{bottom:389.826667pt;}
.y25{bottom:390.626667pt;}
.y17d{bottom:392.066667pt;}
.y7c{bottom:393.826667pt;}
.y50{bottom:403.586667pt;}
.y187{bottom:407.266667pt;}
.y24{bottom:408.706667pt;}
.ya5{bottom:409.026667pt;}
.ydd{bottom:410.626667pt;}
.y7b{bottom:413.346667pt;}
.y17c{bottom:413.506667pt;}
.y4f{bottom:421.666667pt;}
.y186{bottom:423.906667pt;}
.y23{bottom:426.786667pt;}
.ya4{bottom:427.266667pt;}
.ydc{bottom:431.426667pt;}
.y7a{bottom:431.586667pt;}
.y17b{bottom:435.106667pt;}
.y140{bottom:437.186667pt;}
.y4e{bottom:439.746667pt;}
.y185{bottom:440.546667pt;}
.y22{bottom:445.026667pt;}
.ya3{bottom:445.346667pt;}
.ydb{bottom:449.666667pt;}
.y79{bottom:451.106667pt;}
.y17a{bottom:455.586667pt;}
.y184{bottom:457.186667pt;}
.y4d{bottom:457.986667pt;}
.y21{bottom:463.106667pt;}
.ya2{bottom:463.586667pt;}
.y78{bottom:469.186667pt;}
.yda{bottom:470.466667pt;}
.y179{bottom:472.386667pt;}
.y183{bottom:473.666667pt;}
.y4c{bottom:476.066667pt;}
.y20{bottom:481.186667pt;}
.ya1{bottom:481.666667pt;}
.y77{bottom:488.866667pt;}
.y178{bottom:490.306667pt;}
.yd9{bottom:491.266667pt;}
.y4b{bottom:494.306667pt;}
.y1f{bottom:499.426667pt;}
.ya0{bottom:499.746667pt;}
.y76{bottom:506.946667pt;}
.y177{bottom:506.973333pt;}
.yd8{bottom:512.226667pt;}
.y4a{bottom:512.386667pt;}
.y1e{bottom:517.506667pt;}
.y9f{bottom:519.426667pt;}
.y176{bottom:523.613333pt;}
.y75{bottom:525.026667pt;}
.yd7{bottom:530.306667pt;}
.y49{bottom:530.466667pt;}
.yc1{bottom:535.106667pt;}
.y1d{bottom:535.746667pt;}
.y9e{bottom:537.506667pt;}
.y175{bottom:540.253333pt;}
.y74{bottom:544.706667pt;}
.y48{bottom:548.706667pt;}
.yd6{bottom:551.266667pt;}
.yc0{bottom:553.346667pt;}
.y1c{bottom:553.826667pt;}
.y9d{bottom:555.586667pt;}
.y174{bottom:556.893333pt;}
.y73{bottom:562.786667pt;}
.y47{bottom:566.786667pt;}
.ybf{bottom:571.426667pt;}
.yd5{bottom:572.066667pt;}
.y173{bottom:573.533333pt;}
.y9c{bottom:576.706667pt;}
.y72{bottom:580.893333pt;}
.y46{bottom:584.893333pt;}
.y1b{bottom:587.933333pt;}
.y172{bottom:590.173333pt;}
.ybe{bottom:590.973333pt;}
.yd4{bottom:592.893333pt;}
.y9b{bottom:596.253333pt;}
.y71{bottom:599.133333pt;}
.y45{bottom:603.133333pt;}
.y1a{bottom:606.173333pt;}
.y171{bottom:606.813333pt;}
.ybd{bottom:609.053333pt;}
.yd3{bottom:613.853333pt;}
.y70{bottom:617.213333pt;}
.y44{bottom:621.213333pt;}
.y170{bottom:623.453333pt;}
.y19{bottom:624.253333pt;}
.ybc{bottom:628.733333pt;}
.yd2{bottom:634.653333pt;}
.y6f{bottom:635.453333pt;}
.y9a{bottom:638.173333pt;}
.y132{bottom:639.293333pt;}
.y43{bottom:639.453333pt;}
.y16f{bottom:640.093333pt;}
.y18{bottom:642.333333pt;}
.ybb{bottom:646.813333pt;}
.y6e{bottom:653.533333pt;}
.yd1{bottom:655.613333pt;}
.y16e{bottom:656.093333pt;}
.y42{bottom:657.533333pt;}
.y99{bottom:659.293333pt;}
.y17{bottom:660.573333pt;}
.yba{bottom:666.493333pt;}
.y16d{bottom:671.293333pt;}
.y6d{bottom:671.613333pt;}
.y41{bottom:675.613333pt;}
.yd0{bottom:676.413333pt;}
.y16{bottom:678.653333pt;}
.y98{bottom:678.813333pt;}
.y16c{bottom:682.973333pt;}
.yb9{bottom:684.573333pt;}
.y6c{bottom:689.853333pt;}
.y40{bottom:693.853333pt;}
.y15{bottom:696.893333pt;}
.ycf{bottom:697.213333pt;}
.y97{bottom:699.773333pt;}
.yb8{bottom:702.653333pt;}
.y6b{bottom:707.933333pt;}
.y3f{bottom:711.933333pt;}
.y16b{bottom:713.853333pt;}
.yce{bottom:718.173333pt;}
.y96{bottom:719.453333pt;}
.yb7{bottom:720.893333pt;}
.y6a{bottom:727.453333pt;}
.y3e{bottom:730.013333pt;}
.y14{bottom:730.973333pt;}
.yb6{bottom:738.973333pt;}
.y95{bottom:740.413333pt;}
.yf0{bottom:744.733333pt;}
.y169{bottom:744.893333pt;}
.y69{bottom:745.693333pt;}
.y3d{bottom:748.253333pt;}
.y13{bottom:749.053333pt;}
.yb5{bottom:757.053333pt;}
.ycd{bottom:759.773333pt;}
.y94{bottom:759.933333pt;}
.y68{bottom:765.213333pt;}
.y3c{bottom:766.333333pt;}
.y12{bottom:767.293333pt;}
.yb4{bottom:775.293333pt;}
.y168{bottom:775.813333pt;}
.y93{bottom:778.173333pt;}
.ycc{bottom:780.733333pt;}
.y3b{bottom:784.573333pt;}
.y67{bottom:784.733333pt;}
.y11{bottom:785.373333pt;}
.yb3{bottom:794.813333pt;}
.y92{bottom:796.293333pt;}
.ycb{bottom:801.573333pt;}
.y3a{bottom:802.693333pt;}
.y66{bottom:803.013333pt;}
.y10{bottom:803.493333pt;}
.y167{bottom:806.693333pt;}
.yb2{bottom:814.373333pt;}
.y91{bottom:815.813333pt;}
.y39{bottom:820.773333pt;}
.y65{bottom:821.093333pt;}
.yf{bottom:821.733333pt;}
.yca{bottom:822.533333pt;}
.y90{bottom:834.053333pt;}
.y165{bottom:837.733333pt;}
.y38{bottom:839.013333pt;}
.ye{bottom:839.813333pt;}
.yc9{bottom:840.613333pt;}
.y64{bottom:842.053333pt;}
.y130{bottom:843.013333pt;}
.y8f{bottom:852.133333pt;}
.yd{bottom:858.053333pt;}
.yc8{bottom:858.693333pt;}
.y63{bottom:861.733333pt;}
.y163{bottom:869.893333pt;}
.y8e{bottom:870.213333pt;}
.y12f{bottom:871.333333pt;}
.y37{bottom:873.093333pt;}
.yc{bottom:876.133333pt;}
.yc7{bottom:876.933333pt;}
.y62{bottom:882.693333pt;}
.y8d{bottom:888.453333pt;}
.y12e{bottom:889.573333pt;}
.y36{bottom:891.173333pt;}
.yb{bottom:894.213333pt;}
.yc6{bottom:895.013333pt;}
.y61{bottom:903.653333pt;}
.y162{bottom:905.253333pt;}
.y8c{bottom:906.533333pt;}
.y12d{bottom:908.453333pt;}
.y35{bottom:909.413333pt;}
.yc5{bottom:912.293333pt;}
.ya{bottom:912.453333pt;}
.y60{bottom:923.173333pt;}
.y161{bottom:924.933333pt;}
.y8b{bottom:926.053333pt;}
.yc4{bottom:927.013333pt;}
.y34{bottom:927.493333pt;}
.y12c{bottom:928.773333pt;}
.y9{bottom:929.573333pt;}
.yee{bottom:932.613333pt;}
.y5f{bottom:944.293333pt;}
.yc3{bottom:945.413333pt;}
.y8{bottom:945.733333pt;}
.y12b{bottom:947.013333pt;}
.y160{bottom:947.813333pt;}
.yed{bottom:960.933333pt;}
.y7{bottom:963.813333pt;}
.yc2{bottom:975.013333pt;}
.yec{bottom:979.173333pt;}
.y2{bottom:980.293333pt;}
.y1{bottom:992.453333pt;}
.hc{height:22.706667pt;}
.h8{height:24.000000pt;}
.h3{height:28.078125pt;}
.h1c{height:30.226667pt;}
.h1e{height:30.240000pt;}
.h1d{height:30.260000pt;}
.hb{height:39.840000pt;}
.h5{height:46.609688pt;}
.h7{height:48.000000pt;}
.hd{height:51.663750pt;}
.h2{height:54.598989pt;}
.h1a{height:55.298750pt;}
.h4{height:56.156250pt;}
.hf{height:60.519362pt;}
.h14{height:65.702812pt;}
.h6{height:65.781915pt;}
.ha{height:66.750000pt;}
.h13{height:71.712000pt;}
.h16{height:76.964840pt;}
.h9{height:77.951250pt;}
.h1b{height:84.234375pt;}
.h19{height:100.626667pt;}
.h12{height:166.706667pt;}
.h18{height:176.973333pt;}
.he{height:187.226667pt;}
.h11{height:188.653333pt;}
.h17{height:201.466667pt;}
.h15{height:203.066667pt;}
.h10{height:206.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:72.830667pt;}
.wd{width:74.098667pt;}
.w5{width:83.390667pt;}
.w3{width:84.310667pt;}
.w6{width:88.946667pt;}
.w9{width:107.506667pt;}
.we{width:115.186667pt;}
.wf{width:124.512000pt;}
.w10{width:129.138667pt;}
.w8{width:148.813333pt;}
.wc{width:179.546667pt;}
.wa{width:204.977333pt;}
.wb{width:370.146667pt;}
.w7{width:522.800000pt;}
.w4{width:538.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.878667pt;}
.x15{left:9.106667pt;}
.x1e{left:10.718667pt;}
.x17{left:11.998667pt;}
.x18{left:12.958667pt;}
.x19{left:15.678667pt;}
.x30{left:16.786667pt;}
.x14{left:22.078667pt;}
.x16{left:36.350667pt;}
.x1d{left:41.630667pt;}
.x10{left:51.040000pt;}
.x12{left:53.281333pt;}
.x2b{left:57.600000pt;}
.x5{left:60.160000pt;}
.x4{left:61.440000pt;}
.xb{left:62.400000pt;}
.x22{left:73.106667pt;}
.x31{left:76.320000pt;}
.xe{left:79.040000pt;}
.x8{left:84.160000pt;}
.xd{left:88.672000pt;}
.x28{left:89.786667pt;}
.x1f{left:91.872000pt;}
.x24{left:98.281333pt;}
.x9{left:108.192000pt;}
.xc{left:116.992000pt;}
.x27{left:122.225333pt;}
.xa{left:126.432000pt;}
.x1b{left:137.320000pt;}
.x26{left:159.545333pt;}
.x2e{left:160.665333pt;}
.x2d{left:169.145333pt;}
.x1a{left:177.626667pt;}
.x2c{left:182.426667pt;}
.x6{left:184.986667pt;}
.x11{left:211.546667pt;}
.x20{left:212.666667pt;}
.x1c{left:226.920000pt;}
.xf{left:239.546667pt;}
.x7{left:240.506667pt;}
.x1{left:266.146667pt;}
.x25{left:304.066667pt;}
.x3{left:381.026667pt;}
.x2{left:396.226667pt;}
.x21{left:415.306667pt;}
.x2f{left:429.226667pt;}
.x29{left:484.266667pt;}
.x2a{left:559.013333pt;}
.x23{left:566.053333pt;}
}




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