
    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_e9115c8b1327f8c46da51d11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_4fd8d72a52e28a8aef5c6c82.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_35f58d4df273a1cf06c62678.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ec97e631248272f5eddf31d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_cf92be81e675042555559cc5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.499000;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_48df48d4d281fd145f3c63fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_e20d9138c9bad918680b5445.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_347b6b52d7f3531e9be4087e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_2c6b5065dc9741f510e43aec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_d7b13c74f403e0dff6c80287.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677734;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_e150303bf1460f4afd206be9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.669434;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_cbf7f44bd604f7d6f523ce18.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677734;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_a9a820a3cb718cef892563e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.707000;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_347b6b52d7f3531e9be4087e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_1adb5c2185b0cdb401bf027c.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_d7b13c74f403e0dff6c80287.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677734;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_e150303bf1460f4afd206be9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.669434;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;}
.m1b{transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226111,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1e{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);}
.mc{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);}
.m9{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);}
.m20{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);}
.m11{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);}
.mb{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);}
.m14{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);}
.m18{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);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1a{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);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mf{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);}
.m8{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);}
.m5{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);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m13{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);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m21{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);}
.m22{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);}
.m10{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);}
.m1d{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);}
.m4{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);}
.m1c{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);}
.m17{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);}
.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);}
.m16{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);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.530000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.988195px;}
.ls6{letter-spacing:2.989167px;}
.ls5{letter-spacing:10.459254px;}
.ls2{letter-spacing:10.660720px;}
.ls0{letter-spacing:13.451090px;}
.ls1{letter-spacing:13.452831px;}
.ls4{letter-spacing:13.630357px;}
.ls3{letter-spacing:13.635904px;}
.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;}
}
.ws2{word-spacing:-11.955150px;}
.ws30{word-spacing:-10.460700px;}
.ws4a{word-spacing:-4.303872px;}
.ws31{word-spacing:-3.819686px;}
.ws3c{word-spacing:-3.604493px;}
.ws80{word-spacing:-3.138210px;}
.ws4d{word-spacing:-2.928996px;}
.ws47{word-spacing:-2.905114px;}
.ws6e{word-spacing:-2.677939px;}
.ws28{word-spacing:-2.420928px;}
.ws7a{word-spacing:-2.301354px;}
.ws2e{word-spacing:-2.259533px;}
.ws4e{word-spacing:-2.259511px;}
.ws6a{word-spacing:-2.175826px;}
.ws46{word-spacing:-1.882944px;}
.ws48{word-spacing:-1.829146px;}
.ws32{word-spacing:-1.775347px;}
.ws45{word-spacing:-1.560154px;}
.ws76{word-spacing:-1.548184px;}
.ws3a{word-spacing:-1.506355px;}
.ws66{word-spacing:-1.338970px;}
.ws5d{word-spacing:-1.297127px;}
.ws1e{word-spacing:-1.213441px;}
.ws1d{word-spacing:-1.087913px;}
.ws65{word-spacing:-1.004227px;}
.ws35{word-spacing:-0.968371px;}
.ws23{word-spacing:-0.806976px;}
.ws7b{word-spacing:-0.669485px;}
.ws3d{word-spacing:-0.484186px;}
.ws21{word-spacing:-0.430387px;}
.ws3e{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.268992px;}
.ws8{word-spacing:-0.215194px;}
.ws5a{word-spacing:-0.209214px;}
.ws18{word-spacing:-0.191282px;}
.ws6{word-spacing:-0.161395px;}
.ws4b{word-spacing:-0.143462px;}
.ws53{word-spacing:-0.125528px;}
.ws9{word-spacing:-0.107597px;}
.ws4c{word-spacing:-0.095641px;}
.ws77{word-spacing:-0.083686px;}
.ws3{word-spacing:-0.065455px;}
.wsd{word-spacing:-0.053798px;}
.ws51{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws4f{word-spacing:0.041843px;}
.ws14{word-spacing:0.047821px;}
.wsb{word-spacing:0.053798px;}
.ws5e{word-spacing:0.083686px;}
.ws4{word-spacing:0.107597px;}
.ws7d{word-spacing:0.125528px;}
.ws29{word-spacing:0.161395px;}
.ws1c{word-spacing:0.167371px;}
.ws40{word-spacing:0.191282px;}
.ws6c{word-spacing:0.209214px;}
.ws20{word-spacing:0.215194px;}
.ws24{word-spacing:0.268992px;}
.ws1a{word-spacing:0.322790px;}
.ws27{word-spacing:0.376589px;}
.ws39{word-spacing:0.430387px;}
.ws7c{word-spacing:0.502114px;}
.ws1b{word-spacing:0.537984px;}
.ws62{word-spacing:0.543956px;}
.ws74{word-spacing:0.711328px;}
.ws52{word-spacing:0.795013px;}
.ws68{word-spacing:0.836856px;}
.ws2a{word-spacing:0.914573px;}
.ws61{word-spacing:1.213441px;}
.ws2c{word-spacing:1.237363px;}
.ws44{word-spacing:1.344960px;}
.ws49{word-spacing:1.398758px;}
.ws43{word-spacing:1.452557px;}
.ws22{word-spacing:1.560154px;}
.ws54{word-spacing:1.566453px;}
.ws58{word-spacing:1.757398px;}
.ws38{word-spacing:1.882944px;}
.ws37{word-spacing:2.044339px;}
.ws7{word-spacing:2.098138px;}
.ws5b{word-spacing:2.385040px;}
.wsc{word-spacing:2.582323px;}
.ws75{word-spacing:2.594254px;}
.ws3f{word-spacing:2.725774px;}
.ws41{word-spacing:2.917057px;}
.ws2b{word-spacing:2.958912px;}
.ws67{word-spacing:3.096367px;}
.ws73{word-spacing:3.138210px;}
.wsa{word-spacing:3.227904px;}
.ws5{word-spacing:3.550694px;}
.ws42{word-spacing:3.765888px;}
.ws25{word-spacing:4.034880px;}
.ws26{word-spacing:4.088678px;}
.ws36{word-spacing:4.196275px;}
.ws57{word-spacing:4.811922px;}
.ws6b{word-spacing:4.853765px;}
.ws2d{word-spacing:5.326042px;}
.ws13{word-spacing:5.355907px;}
.ws2f{word-spacing:5.971622px;}
.ws33{word-spacing:6.240614px;}
.ws7f{word-spacing:7.280647px;}
.ws79{word-spacing:8.117503px;}
.ws64{word-spacing:9.414630px;}
.ws3b{word-spacing:9.791309px;}
.ws78{word-spacing:10.335172px;}
.ws59{word-spacing:10.377014px;}
.ws1f{word-spacing:10.418857px;}
.ws50{word-spacing:10.460700px;}
.ws5f{word-spacing:10.502543px;}
.ws7e{word-spacing:10.544386px;}
.ws10{word-spacing:10.598285px;}
.ws6d{word-spacing:10.628071px;}
.ws63{word-spacing:11.404012px;}
.ws60{word-spacing:11.632298px;}
.ws17{word-spacing:11.668226px;}
.ws12{word-spacing:11.907329px;}
.ws15{word-spacing:11.955150px;}
.ws55{word-spacing:12.008884px;}
.ws6f{word-spacing:12.134412px;}
.ws69{word-spacing:12.201835px;}
.ws5c{word-spacing:12.762054px;}
.wsf{word-spacing:13.395802px;}
.ws11{word-spacing:13.557197px;}
.ws72{word-spacing:14.512217px;}
.ws56{word-spacing:15.230779px;}
.ws16{word-spacing:15.732977px;}
.wse{word-spacing:16.298195px;}
.ws71{word-spacing:16.432042px;}
.ws70{word-spacing:18.201618px;}
.ws0{word-spacing:25.719808px;}
.ws19{word-spacing:65.389145px;}
._1{margin-left:-7.333760px;}
._4{margin-left:-4.340505px;}
._2{margin-left:-3.012698px;}
._0{margin-left:-1.652678px;}
._3{width:1.222291px;}
._5{width:2.677954px;}
._c{width:10.377031px;}
._16{width:11.506562px;}
._8{width:12.642624px;}
._d{width:14.893846px;}
._e{width:18.201618px;}
._12{width:19.748171px;}
._11{width:20.921400px;}
._10{width:23.309900px;}
._15{width:25.565967px;}
._13{width:26.779392px;}
._f{width:31.176756px;}
._14{width:33.139498px;}
._6{width:65.454600px;}
._a{width:96.689359px;}
._9{width:211.821130px;}
._b{width:274.247078px;}
._7{width:974.396621px;}
.fc2{color:rgb(0,5,156);}
.fc1{color:rgb(0,156,10);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.877000px;}
.fs5{font-size:41.842800px;}
.fs6{font-size:43.636200px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:53.079407px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y76{bottom:6.237025px;}
.y73{bottom:6.282423px;}
.y7a{bottom:6.311777px;}
.y81{bottom:6.385963px;}
.y33{bottom:127.216500px;}
.y54{bottom:131.209500px;}
.y80{bottom:132.640350px;}
.yb7{bottom:133.611000px;}
.yb9{bottom:134.541000px;}
.y32{bottom:139.171500px;}
.y82{bottom:140.376000px;}
.yb8{bottom:149.485500px;}
.y31{bottom:151.126500px;}
.y53{bottom:152.899500px;}
.y7d{bottom:159.094500px;}
.y7f{bottom:160.024500px;}
.yb5{bottom:160.543500px;}
.y30{bottom:164.277000px;}
.yb6{bottom:168.778500px;}
.y52{bottom:169.338000px;}
.y7e{bottom:174.969000px;}
.y2f{bottom:177.427500px;}
.y51{bottom:185.776500px;}
.yb4{bottom:186.006000px;}
.y2e{bottom:189.382500px;}
.y79{bottom:189.580500px;}
.y7c{bottom:190.510500px;}
.yb1{bottom:192.082500px;}
.yb3{bottom:200.950500px;}
.y2d{bottom:201.337500px;}
.y50{bottom:202.215000px;}
.y7b{bottom:205.455000px;}
.y2c{bottom:213.292500px;}
.yb2{bottom:215.895000px;}
.y4f{bottom:218.653500px;}
.y75{bottom:220.065000px;}
.y78{bottom:220.996500px;}
.y2b{bottom:225.249000px;}
.yb0{bottom:231.436500px;}
.y4e{bottom:235.092000px;}
.y77{bottom:235.939500px;}
.yad{bottom:237.513000px;}
.yaf{bottom:246.381000px;}
.y72{bottom:250.012350px;}
.y2a{bottom:250.509000px;}
.y4d{bottom:255.639000px;}
.y74{bottom:257.638500px;}
.yae{bottom:261.324000px;}
.y29{bottom:266.947500px;}
.yac{bottom:282.490500px;}
.y71{bottom:283.021500px;}
.y28{bottom:283.386000px;}
.y4c{bottom:287.937000px;}
.y27{bottom:299.824500px;}
.y4b{bottom:304.375500px;}
.y26{bottom:316.261500px;}
.y4a{bottom:320.814000px;}
.y70{bottom:324.562500px;}
.yab{bottom:331.855500px;}
.y25{bottom:336.810000px;}
.y49{bottom:337.252500px;}
.y6f{bottom:341.001000px;}
.y48{bottom:353.691000px;}
.y6e{bottom:357.439500px;}
.yaa{bottom:361.416000px;}
.y24{bottom:369.568500px;}
.y47{bottom:370.129500px;}
.y6d{bottom:373.878000px;}
.ya9{bottom:377.854500px;}
.y23{bottom:384.513000px;}
.y46{bottom:386.568000px;}
.y6c{bottom:390.316500px;}
.ya8{bottom:394.293000px;}
.y22{bottom:399.456000px;}
.y45{bottom:403.006500px;}
.y6b{bottom:406.755000px;}
.ya7{bottom:412.944000px;}
.y21{bottom:414.400500px;}
.y44{bottom:419.445000px;}
.y6a{bottom:423.193500px;}
.y20{bottom:429.345000px;}
.ya6{bottom:429.382500px;}
.y43{bottom:435.883500px;}
.y69{bottom:439.632000px;}
.y1f{bottom:444.288000px;}
.ya5{bottom:449.931000px;}
.y42{bottom:452.320500px;}
.y68{bottom:456.070500px;}
.y1e{bottom:459.232500px;}
.y41{bottom:468.759000px;}
.y67{bottom:472.509000px;}
.y1d{bottom:480.841500px;}
.ya4{bottom:483.660000px;}
.y40{bottom:485.197500px;}
.y66{bottom:488.947500px;}
.y1c{bottom:497.280000px;}
.ya3{bottom:500.098500px;}
.y3f{bottom:501.636000px;}
.y65{bottom:505.384500px;}
.ya2{bottom:516.537000px;}
.y1b{bottom:517.828500px;}
.y3e{bottom:518.074500px;}
.y64{bottom:521.823000px;}
.ya1{bottom:532.975500px;}
.y3d{bottom:534.513000px;}
.y63{bottom:538.261500px;}
.ya0{bottom:549.414000px;}
.y1a{bottom:550.059000px;}
.y3c{bottom:550.951500px;}
.y62{bottom:554.700000px;}
.y9f{bottom:565.852500px;}
.y19{bottom:566.496000px;}
.y3b{bottom:567.390000px;}
.y61{bottom:571.138500px;}
.y9e{bottom:582.291000px;}
.y18{bottom:582.934500px;}
.y3a{bottom:583.828500px;}
.y60{bottom:587.577000px;}
.y9d{bottom:598.728000px;}
.y17{bottom:599.373000px;}
.y39{bottom:600.267000px;}
.y5f{bottom:604.015500px;}
.y9c{bottom:615.166500px;}
.y38{bottom:616.704000px;}
.y16{bottom:619.921500px;}
.y5e{bottom:620.454000px;}
.y9b{bottom:631.605000px;}
.y37{bottom:633.142500px;}
.y5d{bottom:636.892500px;}
.y9a{bottom:648.043500px;}
.y36{bottom:649.581000px;}
.y15{bottom:652.150500px;}
.y5c{bottom:653.331000px;}
.y99{bottom:664.482000px;}
.y35{bottom:666.019500px;}
.y14{bottom:668.589000px;}
.y5b{bottom:669.768000px;}
.yda{bottom:672.807000px;}
.y98{bottom:680.920500px;}
.yd9{bottom:684.762000px;}
.y13{bottom:685.027500px;}
.y5a{bottom:686.206500px;}
.yf7{bottom:688.872000px;}
.y34{bottom:693.474000px;}
.yd8{bottom:696.717000px;}
.y97{bottom:697.359000px;}
.yf6{bottom:700.827000px;}
.y12{bottom:701.466000px;}
.y59{bottom:702.645000px;}
.yd7{bottom:708.672000px;}
.yf5{bottom:712.782000px;}
.y96{bottom:713.797500px;}
.y11{bottom:717.904500px;}
.y58{bottom:719.083500px;}
.yd6{bottom:720.627000px;}
.yf4{bottom:724.737000px;}
.y95{bottom:730.236000px;}
.yd5{bottom:732.583500px;}
.y10{bottom:734.343000px;}
.y57{bottom:735.522000px;}
.yf3{bottom:736.692000px;}
.yd4{bottom:744.538500px;}
.y94{bottom:746.674500px;}
.yf2{bottom:748.647000px;}
.yf{bottom:750.781500px;}
.yd3{bottom:756.493500px;}
.yf1{bottom:760.602000px;}
.y93{bottom:763.113000px;}
.y56{bottom:765.250500px;}
.ye{bottom:767.220000px;}
.yd2{bottom:768.448500px;}
.yf0{bottom:772.558500px;}
.y92{bottom:779.550000px;}
.yd1{bottom:780.403500px;}
.yd{bottom:783.658500px;}
.yef{bottom:784.513500px;}
.yd0{bottom:792.358500px;}
.y91{bottom:795.988500px;}
.yee{bottom:796.468500px;}
.yc{bottom:800.097000px;}
.ycf{bottom:804.313500px;}
.yed{bottom:808.423500px;}
.yce{bottom:816.268500px;}
.yb{bottom:816.534000px;}
.y90{bottom:816.537000px;}
.yec{bottom:820.378500px;}
.ycd{bottom:828.223500px;}
.yeb{bottom:832.333500px;}
.ya{bottom:832.972500px;}
.ycc{bottom:840.180000px;}
.yea{bottom:844.288500px;}
.y8f{bottom:850.266000px;}
.ycb{bottom:852.135000px;}
.y9{bottom:853.521000px;}
.ye9{bottom:856.243500px;}
.yca{bottom:864.090000px;}
.y8e{bottom:866.704500px;}
.ye8{bottom:868.198500px;}
.yc9{bottom:876.045000px;}
.ye7{bottom:880.155000px;}
.y8{bottom:882.387000px;}
.y8d{bottom:883.143000px;}
.yc8{bottom:888.000000px;}
.ye6{bottom:892.110000px;}
.y7{bottom:897.330000px;}
.y8c{bottom:899.581500px;}
.yc7{bottom:899.955000px;}
.ye5{bottom:904.065000px;}
.yc6{bottom:911.910000px;}
.y6{bottom:912.274500px;}
.y8b{bottom:916.020000px;}
.yc5{bottom:923.865000px;}
.ye4{bottom:927.975000px;}
.y8a{bottom:932.458500px;}
.yc4{bottom:935.820000px;}
.ye3{bottom:939.930000px;}
.y5{bottom:944.941500px;}
.yc3{bottom:947.776500px;}
.y89{bottom:948.897000px;}
.ye2{bottom:951.885000px;}
.yc2{bottom:959.731500px;}
.y4{bottom:959.886000px;}
.ye1{bottom:963.840000px;}
.y88{bottom:965.335500px;}
.yc1{bottom:971.686500px;}
.y3{bottom:974.830500px;}
.ye0{bottom:975.795000px;}
.y87{bottom:981.774000px;}
.yc0{bottom:983.641500px;}
.ydf{bottom:987.751500px;}
.ybf{bottom:995.596500px;}
.y86{bottom:998.211000px;}
.yde{bottom:999.706500px;}
.ybe{bottom:1007.551500px;}
.ydd{bottom:1011.661500px;}
.y85{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.ybd{bottom:1019.506500px;}
.ydc{bottom:1023.616500px;}
.y84{bottom:1031.088000px;}
.ybc{bottom:1031.461500px;}
.ydb{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y83{bottom:1047.526500px;}
.ybb{bottom:1077.162000px;}
.y55{bottom:1088.323500px;}
.yba{bottom:1093.599000px;}
.hd{height:19.843320px;}
.hb{height:23.276916px;}
.h6{height:26.899200px;}
.h9{height:29.624702px;}
.h8{height:33.474420px;}
.h3{height:33.856985px;}
.he{height:35.377632px;}
.hf{height:35.775936px;}
.h7{height:37.658880px;}
.hc{height:37.927872px;}
.h5{height:38.089267px;}
.h4{height:45.818220px;}
.ha{height:50.424430px;}
.h2{height:50.785690px;}
.h1{height:72.098095px;}
.h0{height:1188.000000px;}
.w1{width:21.260700px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:6.747508px;}
.x10{left:80.697000px;}
.x35{left:85.561500px;}
.x2e{left:88.767000px;}
.x2c{left:95.641500px;}
.x36{left:103.851000px;}
.x4{left:126.178500px;}
.x2d{left:133.320000px;}
.x3{left:141.147000px;}
.x11{left:151.338000px;}
.x13{left:154.959000px;}
.x2b{left:159.096000px;}
.x12{left:168.537000px;}
.x14{left:171.390000px;}
.x2{left:181.092000px;}
.x5{left:183.898500px;}
.x1{left:185.391000px;}
.xb{left:267.027000px;}
.xc{left:287.218500px;}
.x7{left:372.403500px;}
.x6{left:383.560500px;}
.x15{left:391.503000px;}
.x16{left:408.706500px;}
.x8{left:430.122000px;}
.x18{left:476.932500px;}
.x38{left:481.797000px;}
.x33{left:485.002500px;}
.x17{left:491.877000px;}
.xe{left:494.767500px;}
.x37{left:500.086500px;}
.xd{left:503.127000px;}
.x34{left:521.803500px;}
.x32{left:528.613500px;}
.x27{left:537.486000px;}
.x28{left:549.994500px;}
.xf{left:552.487500px;}
.x30{left:557.629500px;}
.x19{left:567.952500px;}
.x1a{left:580.461000px;}
.xa{left:602.607000px;}
.x1b{left:639.375000px;}
.x1c{left:645.628500px;}
.x9{left:653.841000px;}
.x21{left:672.571500px;}
.x22{left:678.825000px;}
.x23{left:686.311500px;}
.x29{left:687.498000px;}
.x2a{left:693.753000px;}
.x24{left:698.818500px;}
.x1d{left:702.744000px;}
.x25{left:706.305000px;}
.x1e{left:715.252500px;}
.x26{left:718.813500px;}
.x31{left:755.230500px;}
.x1f{left:795.043500px;}
.x20{left:801.297000px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.360000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.656173pt;}
.ls6{letter-spacing:2.657037pt;}
.ls5{letter-spacing:9.297115pt;}
.ls2{letter-spacing:9.476196pt;}
.ls0{letter-spacing:11.956524pt;}
.ls1{letter-spacing:11.958072pt;}
.ls4{letter-spacing:12.115873pt;}
.ls3{letter-spacing:12.120803pt;}
.ws2{word-spacing:-10.626800pt;}
.ws30{word-spacing:-9.298400pt;}
.ws4a{word-spacing:-3.825664pt;}
.ws31{word-spacing:-3.395277pt;}
.ws3c{word-spacing:-3.203994pt;}
.ws80{word-spacing:-2.789520pt;}
.ws4d{word-spacing:-2.603552pt;}
.ws47{word-spacing:-2.582323pt;}
.ws6e{word-spacing:-2.380390pt;}
.ws28{word-spacing:-2.151936pt;}
.ws7a{word-spacing:-2.045648pt;}
.ws2e{word-spacing:-2.008474pt;}
.ws4e{word-spacing:-2.008454pt;}
.ws6a{word-spacing:-1.934067pt;}
.ws46{word-spacing:-1.673728pt;}
.ws48{word-spacing:-1.625907pt;}
.ws32{word-spacing:-1.578086pt;}
.ws45{word-spacing:-1.386803pt;}
.ws76{word-spacing:-1.376163pt;}
.ws3a{word-spacing:-1.338982pt;}
.ws66{word-spacing:-1.190195pt;}
.ws5d{word-spacing:-1.153002pt;}
.ws1e{word-spacing:-1.078614pt;}
.ws1d{word-spacing:-0.967034pt;}
.ws65{word-spacing:-0.892646pt;}
.ws35{word-spacing:-0.860774pt;}
.ws23{word-spacing:-0.717312pt;}
.ws7b{word-spacing:-0.595098pt;}
.ws3d{word-spacing:-0.430387pt;}
.ws21{word-spacing:-0.382566pt;}
.ws3e{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.239104pt;}
.ws8{word-spacing:-0.191283pt;}
.ws5a{word-spacing:-0.185968pt;}
.ws18{word-spacing:-0.170029pt;}
.ws6{word-spacing:-0.143462pt;}
.ws4b{word-spacing:-0.127522pt;}
.ws53{word-spacing:-0.111581pt;}
.ws9{word-spacing:-0.095642pt;}
.ws4c{word-spacing:-0.085014pt;}
.ws77{word-spacing:-0.074387pt;}
.ws3{word-spacing:-0.058182pt;}
.wsd{word-spacing:-0.047821pt;}
.ws51{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.037194pt;}
.ws14{word-spacing:0.042507pt;}
.wsb{word-spacing:0.047821pt;}
.ws5e{word-spacing:0.074387pt;}
.ws4{word-spacing:0.095642pt;}
.ws7d{word-spacing:0.111581pt;}
.ws29{word-spacing:0.143462pt;}
.ws1c{word-spacing:0.148774pt;}
.ws40{word-spacing:0.170029pt;}
.ws6c{word-spacing:0.185968pt;}
.ws20{word-spacing:0.191283pt;}
.ws24{word-spacing:0.239104pt;}
.ws1a{word-spacing:0.286925pt;}
.ws27{word-spacing:0.334746pt;}
.ws39{word-spacing:0.382566pt;}
.ws7c{word-spacing:0.446323pt;}
.ws1b{word-spacing:0.478208pt;}
.ws62{word-spacing:0.483517pt;}
.ws74{word-spacing:0.632291pt;}
.ws52{word-spacing:0.706678pt;}
.ws68{word-spacing:0.743872pt;}
.ws2a{word-spacing:0.812954pt;}
.ws61{word-spacing:1.078614pt;}
.ws2c{word-spacing:1.099878pt;}
.ws44{word-spacing:1.195520pt;}
.ws49{word-spacing:1.243341pt;}
.ws43{word-spacing:1.291162pt;}
.ws22{word-spacing:1.386803pt;}
.ws54{word-spacing:1.392402pt;}
.ws58{word-spacing:1.562131pt;}
.ws38{word-spacing:1.673728pt;}
.ws37{word-spacing:1.817190pt;}
.ws7{word-spacing:1.865011pt;}
.ws5b{word-spacing:2.120035pt;}
.wsc{word-spacing:2.295398pt;}
.ws75{word-spacing:2.306003pt;}
.ws3f{word-spacing:2.422910pt;}
.ws41{word-spacing:2.592939pt;}
.ws2b{word-spacing:2.630144pt;}
.ws67{word-spacing:2.752326pt;}
.ws73{word-spacing:2.789520pt;}
.wsa{word-spacing:2.869248pt;}
.ws5{word-spacing:3.156173pt;}
.ws42{word-spacing:3.347456pt;}
.ws25{word-spacing:3.586560pt;}
.ws26{word-spacing:3.634381pt;}
.ws36{word-spacing:3.730022pt;}
.ws57{word-spacing:4.277264pt;}
.ws6b{word-spacing:4.314458pt;}
.ws2d{word-spacing:4.734259pt;}
.ws13{word-spacing:4.760806pt;}
.ws2f{word-spacing:5.308109pt;}
.ws33{word-spacing:5.547213pt;}
.ws7f{word-spacing:6.471686pt;}
.ws79{word-spacing:7.215558pt;}
.ws64{word-spacing:8.368560pt;}
.ws3b{word-spacing:8.703386pt;}
.ws78{word-spacing:9.186819pt;}
.ws59{word-spacing:9.224013pt;}
.ws1f{word-spacing:9.261206pt;}
.ws50{word-spacing:9.298400pt;}
.ws5f{word-spacing:9.335594pt;}
.ws7e{word-spacing:9.372787pt;}
.ws10{word-spacing:9.420698pt;}
.ws6d{word-spacing:9.447174pt;}
.ws63{word-spacing:10.136899pt;}
.ws60{word-spacing:10.339821pt;}
.ws17{word-spacing:10.371757pt;}
.ws12{word-spacing:10.584293pt;}
.ws15{word-spacing:10.626800pt;}
.ws55{word-spacing:10.674563pt;}
.ws6f{word-spacing:10.786144pt;}
.ws69{word-spacing:10.846076pt;}
.ws5c{word-spacing:11.344048pt;}
.wsf{word-spacing:11.907379pt;}
.ws11{word-spacing:12.050842pt;}
.ws72{word-spacing:12.899748pt;}
.ws56{word-spacing:13.538470pt;}
.ws16{word-spacing:13.984869pt;}
.wse{word-spacing:14.487285pt;}
.ws71{word-spacing:14.606259pt;}
.ws70{word-spacing:16.179216pt;}
.ws0{word-spacing:22.862051pt;}
.ws19{word-spacing:58.123685pt;}
._1{margin-left:-6.518898pt;}
._4{margin-left:-3.858227pt;}
._2{margin-left:-2.677954pt;}
._0{margin-left:-1.469047pt;}
._3{width:1.086481pt;}
._5{width:2.380403pt;}
._c{width:9.224027pt;}
._16{width:10.228055pt;}
._8{width:11.237888pt;}
._d{width:13.238974pt;}
._e{width:16.179216pt;}
._12{width:17.553929pt;}
._11{width:18.596800pt;}
._10{width:20.719911pt;}
._15{width:22.725304pt;}
._13{width:23.803904pt;}
._f{width:27.712672pt;}
._14{width:29.457331pt;}
._6{width:58.181867pt;}
._a{width:85.946097pt;}
._9{width:188.285449pt;}
._b{width:243.775180pt;}
._7{width:866.130330pt;}
.fs7{font-size:29.224000pt;}
.fs5{font-size:37.193600pt;}
.fs6{font-size:38.787733pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:47.181695pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:5.544022pt;}
.y73{bottom:5.584376pt;}
.y7a{bottom:5.610469pt;}
.y81{bottom:5.676412pt;}
.y33{bottom:113.081333pt;}
.y54{bottom:116.630667pt;}
.y80{bottom:117.902533pt;}
.yb7{bottom:118.765333pt;}
.yb9{bottom:119.592000pt;}
.y32{bottom:123.708000pt;}
.y82{bottom:124.778667pt;}
.yb8{bottom:132.876000pt;}
.y31{bottom:134.334667pt;}
.y53{bottom:135.910667pt;}
.y7d{bottom:141.417333pt;}
.y7f{bottom:142.244000pt;}
.yb5{bottom:142.705333pt;}
.y30{bottom:146.024000pt;}
.yb6{bottom:150.025333pt;}
.y52{bottom:150.522667pt;}
.y7e{bottom:155.528000pt;}
.y2f{bottom:157.713333pt;}
.y51{bottom:165.134667pt;}
.yb4{bottom:165.338667pt;}
.y2e{bottom:168.340000pt;}
.y79{bottom:168.516000pt;}
.y7c{bottom:169.342667pt;}
.yb1{bottom:170.740000pt;}
.yb3{bottom:178.622667pt;}
.y2d{bottom:178.966667pt;}
.y50{bottom:179.746667pt;}
.y7b{bottom:182.626667pt;}
.y2c{bottom:189.593333pt;}
.yb2{bottom:191.906667pt;}
.y4f{bottom:194.358667pt;}
.y75{bottom:195.613333pt;}
.y78{bottom:196.441333pt;}
.y2b{bottom:200.221333pt;}
.yb0{bottom:205.721333pt;}
.y4e{bottom:208.970667pt;}
.y77{bottom:209.724000pt;}
.yad{bottom:211.122667pt;}
.yaf{bottom:219.005333pt;}
.y72{bottom:222.233200pt;}
.y2a{bottom:222.674667pt;}
.y4d{bottom:227.234667pt;}
.y74{bottom:229.012000pt;}
.yae{bottom:232.288000pt;}
.y29{bottom:237.286667pt;}
.yac{bottom:251.102667pt;}
.y71{bottom:251.574667pt;}
.y28{bottom:251.898667pt;}
.y4c{bottom:255.944000pt;}
.y27{bottom:266.510667pt;}
.y4b{bottom:270.556000pt;}
.y26{bottom:281.121333pt;}
.y4a{bottom:285.168000pt;}
.y70{bottom:288.500000pt;}
.yab{bottom:294.982667pt;}
.y25{bottom:299.386667pt;}
.y49{bottom:299.780000pt;}
.y6f{bottom:303.112000pt;}
.y48{bottom:314.392000pt;}
.y6e{bottom:317.724000pt;}
.yaa{bottom:321.258667pt;}
.y24{bottom:328.505333pt;}
.y47{bottom:329.004000pt;}
.y6d{bottom:332.336000pt;}
.ya9{bottom:335.870667pt;}
.y23{bottom:341.789333pt;}
.y46{bottom:343.616000pt;}
.y6c{bottom:346.948000pt;}
.ya8{bottom:350.482667pt;}
.y22{bottom:355.072000pt;}
.y45{bottom:358.228000pt;}
.y6b{bottom:361.560000pt;}
.ya7{bottom:367.061333pt;}
.y21{bottom:368.356000pt;}
.y44{bottom:372.840000pt;}
.y6a{bottom:376.172000pt;}
.y20{bottom:381.640000pt;}
.ya6{bottom:381.673333pt;}
.y43{bottom:387.452000pt;}
.y69{bottom:390.784000pt;}
.y1f{bottom:394.922667pt;}
.ya5{bottom:399.938667pt;}
.y42{bottom:402.062667pt;}
.y68{bottom:405.396000pt;}
.y1e{bottom:408.206667pt;}
.y41{bottom:416.674667pt;}
.y67{bottom:420.008000pt;}
.y1d{bottom:427.414667pt;}
.ya4{bottom:429.920000pt;}
.y40{bottom:431.286667pt;}
.y66{bottom:434.620000pt;}
.y1c{bottom:442.026667pt;}
.ya3{bottom:444.532000pt;}
.y3f{bottom:445.898667pt;}
.y65{bottom:449.230667pt;}
.ya2{bottom:459.144000pt;}
.y1b{bottom:460.292000pt;}
.y3e{bottom:460.510667pt;}
.y64{bottom:463.842667pt;}
.ya1{bottom:473.756000pt;}
.y3d{bottom:475.122667pt;}
.y63{bottom:478.454667pt;}
.ya0{bottom:488.368000pt;}
.y1a{bottom:488.941333pt;}
.y3c{bottom:489.734667pt;}
.y62{bottom:493.066667pt;}
.y9f{bottom:502.980000pt;}
.y19{bottom:503.552000pt;}
.y3b{bottom:504.346667pt;}
.y61{bottom:507.678667pt;}
.y9e{bottom:517.592000pt;}
.y18{bottom:518.164000pt;}
.y3a{bottom:518.958667pt;}
.y60{bottom:522.290667pt;}
.y9d{bottom:532.202667pt;}
.y17{bottom:532.776000pt;}
.y39{bottom:533.570667pt;}
.y5f{bottom:536.902667pt;}
.y9c{bottom:546.814667pt;}
.y38{bottom:548.181333pt;}
.y16{bottom:551.041333pt;}
.y5e{bottom:551.514667pt;}
.y9b{bottom:561.426667pt;}
.y37{bottom:562.793333pt;}
.y5d{bottom:566.126667pt;}
.y9a{bottom:576.038667pt;}
.y36{bottom:577.405333pt;}
.y15{bottom:579.689333pt;}
.y5c{bottom:580.738667pt;}
.y99{bottom:590.650667pt;}
.y35{bottom:592.017333pt;}
.y14{bottom:594.301333pt;}
.y5b{bottom:595.349333pt;}
.yda{bottom:598.050667pt;}
.y98{bottom:605.262667pt;}
.yd9{bottom:608.677333pt;}
.y13{bottom:608.913333pt;}
.y5a{bottom:609.961333pt;}
.yf7{bottom:612.330667pt;}
.y34{bottom:616.421333pt;}
.yd8{bottom:619.304000pt;}
.y97{bottom:619.874667pt;}
.yf6{bottom:622.957333pt;}
.y12{bottom:623.525333pt;}
.y59{bottom:624.573333pt;}
.yd7{bottom:629.930667pt;}
.yf5{bottom:633.584000pt;}
.y96{bottom:634.486667pt;}
.y11{bottom:638.137333pt;}
.y58{bottom:639.185333pt;}
.yd6{bottom:640.557333pt;}
.yf4{bottom:644.210667pt;}
.y95{bottom:649.098667pt;}
.yd5{bottom:651.185333pt;}
.y10{bottom:652.749333pt;}
.y57{bottom:653.797333pt;}
.yf3{bottom:654.837333pt;}
.yd4{bottom:661.812000pt;}
.y94{bottom:663.710667pt;}
.yf2{bottom:665.464000pt;}
.yf{bottom:667.361333pt;}
.yd3{bottom:672.438667pt;}
.yf1{bottom:676.090667pt;}
.y93{bottom:678.322667pt;}
.y56{bottom:680.222667pt;}
.ye{bottom:681.973333pt;}
.yd2{bottom:683.065333pt;}
.yf0{bottom:686.718667pt;}
.y92{bottom:692.933333pt;}
.yd1{bottom:693.692000pt;}
.yd{bottom:696.585333pt;}
.yef{bottom:697.345333pt;}
.yd0{bottom:704.318667pt;}
.y91{bottom:707.545333pt;}
.yee{bottom:707.972000pt;}
.yc{bottom:711.197333pt;}
.ycf{bottom:714.945333pt;}
.yed{bottom:718.598667pt;}
.yce{bottom:725.572000pt;}
.yb{bottom:725.808000pt;}
.y90{bottom:725.810667pt;}
.yec{bottom:729.225333pt;}
.ycd{bottom:736.198667pt;}
.yeb{bottom:739.852000pt;}
.ya{bottom:740.420000pt;}
.ycc{bottom:746.826667pt;}
.yea{bottom:750.478667pt;}
.y8f{bottom:755.792000pt;}
.ycb{bottom:757.453333pt;}
.y9{bottom:758.685333pt;}
.ye9{bottom:761.105333pt;}
.yca{bottom:768.080000pt;}
.y8e{bottom:770.404000pt;}
.ye8{bottom:771.732000pt;}
.yc9{bottom:778.706667pt;}
.ye7{bottom:782.360000pt;}
.y8{bottom:784.344000pt;}
.y8d{bottom:785.016000pt;}
.yc8{bottom:789.333333pt;}
.ye6{bottom:792.986667pt;}
.y7{bottom:797.626667pt;}
.y8c{bottom:799.628000pt;}
.yc7{bottom:799.960000pt;}
.ye5{bottom:803.613333pt;}
.yc6{bottom:810.586667pt;}
.y6{bottom:810.910667pt;}
.y8b{bottom:814.240000pt;}
.yc5{bottom:821.213333pt;}
.ye4{bottom:824.866667pt;}
.y8a{bottom:828.852000pt;}
.yc4{bottom:831.840000pt;}
.ye3{bottom:835.493333pt;}
.y5{bottom:839.948000pt;}
.yc3{bottom:842.468000pt;}
.y89{bottom:843.464000pt;}
.ye2{bottom:846.120000pt;}
.yc2{bottom:853.094667pt;}
.y4{bottom:853.232000pt;}
.ye1{bottom:856.746667pt;}
.y88{bottom:858.076000pt;}
.yc1{bottom:863.721333pt;}
.y3{bottom:866.516000pt;}
.ye0{bottom:867.373333pt;}
.y87{bottom:872.688000pt;}
.yc0{bottom:874.348000pt;}
.ydf{bottom:878.001333pt;}
.ybf{bottom:884.974667pt;}
.y86{bottom:887.298667pt;}
.yde{bottom:888.628000pt;}
.ybe{bottom:895.601333pt;}
.ydd{bottom:899.254667pt;}
.y85{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.ybd{bottom:906.228000pt;}
.ydc{bottom:909.881333pt;}
.y84{bottom:916.522667pt;}
.ybc{bottom:916.854667pt;}
.ydb{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y83{bottom:931.134667pt;}
.ybb{bottom:957.477333pt;}
.y55{bottom:967.398667pt;}
.yba{bottom:972.088000pt;}
.hd{height:17.638507pt;}
.hb{height:20.690592pt;}
.h6{height:23.910400pt;}
.h9{height:26.333069pt;}
.h8{height:29.755040pt;}
.h3{height:30.095098pt;}
.he{height:31.446784pt;}
.hf{height:31.800832pt;}
.h7{height:33.474560pt;}
.hc{height:33.713664pt;}
.h5{height:33.857126pt;}
.h4{height:40.727307pt;}
.ha{height:44.821715pt;}
.h2{height:45.142835pt;}
.h1{height:64.087196pt;}
.h0{height:1056.000000pt;}
.w1{width:18.898400pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:5.997785pt;}
.x10{left:71.730667pt;}
.x35{left:76.054667pt;}
.x2e{left:78.904000pt;}
.x2c{left:85.014667pt;}
.x36{left:92.312000pt;}
.x4{left:112.158667pt;}
.x2d{left:118.506667pt;}
.x3{left:125.464000pt;}
.x11{left:134.522667pt;}
.x13{left:137.741333pt;}
.x2b{left:141.418667pt;}
.x12{left:149.810667pt;}
.x14{left:152.346667pt;}
.x2{left:160.970667pt;}
.x5{left:163.465333pt;}
.x1{left:164.792000pt;}
.xb{left:237.357333pt;}
.xc{left:255.305333pt;}
.x7{left:331.025333pt;}
.x6{left:340.942667pt;}
.x15{left:348.002667pt;}
.x16{left:363.294667pt;}
.x8{left:382.330667pt;}
.x18{left:423.940000pt;}
.x38{left:428.264000pt;}
.x33{left:431.113333pt;}
.x17{left:437.224000pt;}
.xe{left:439.793333pt;}
.x37{left:444.521333pt;}
.xd{left:447.224000pt;}
.x34{left:463.825333pt;}
.x32{left:469.878667pt;}
.x27{left:477.765333pt;}
.x28{left:488.884000pt;}
.xf{left:491.100000pt;}
.x30{left:495.670667pt;}
.x19{left:504.846667pt;}
.x1a{left:515.965333pt;}
.xa{left:535.650667pt;}
.x1b{left:568.333333pt;}
.x1c{left:573.892000pt;}
.x9{left:581.192000pt;}
.x21{left:597.841333pt;}
.x22{left:603.400000pt;}
.x23{left:610.054667pt;}
.x29{left:611.109333pt;}
.x2a{left:616.669333pt;}
.x24{left:621.172000pt;}
.x1d{left:624.661333pt;}
.x25{left:627.826667pt;}
.x1e{left:635.780000pt;}
.x26{left:638.945333pt;}
.x31{left:671.316000pt;}
.x1f{left:706.705333pt;}
.x20{left:712.264000pt;}
}




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