
    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_8a3d2e4c08f4f00418624939.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_1f1263a0cabcfe199655804a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_886b71aa9852e2647e072279.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a867206f27945004884a212f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_ccb7a87d8d0481e55123a274.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929000;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_8eeccbe3f2b2409a7e81d22d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_6a4b0035fb647811fc61fc74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_3e06af17dbeaf7c8fd38a0b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916000;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_740d56d369697c15a7223d3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.869000;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;}
.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);}
.m7{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);}
.ma{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);}
.m3{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);}
.mf{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);}
.m1{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m8{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);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1b{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);}
.m15{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);}
.m2{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);}
.m10{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);}
.me{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);}
.m1c{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);}
.m4{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);}
.m14{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);}
.m12{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);}
.mc{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);}
.m11{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);}
.m1e{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);}
.m16{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);}
.m18{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000240px;}
.ls13{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000583px;}
.ls10{letter-spacing:0.001193px;}
.lsf{letter-spacing:0.001298px;}
.lse{letter-spacing:0.001331px;}
.ls7{letter-spacing:0.002239px;}
.ls1c{letter-spacing:0.002338px;}
.ls6{letter-spacing:0.002472px;}
.ls14{letter-spacing:0.002573px;}
.lsd{letter-spacing:0.002958px;}
.ls9{letter-spacing:0.003488px;}
.ls12{letter-spacing:0.003494px;}
.ls11{letter-spacing:0.003741px;}
.lsc{letter-spacing:0.003851px;}
.ls1d{letter-spacing:0.004290px;}
.ls24{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.533885px;}
.ls1b{letter-spacing:0.537859px;}
.ls22{letter-spacing:0.539759px;}
.ls1a{letter-spacing:0.539879px;}
.lsb{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls20{letter-spacing:10.409584px;}
.ls1e{letter-spacing:11.334073px;}
.ls8{letter-spacing:11.954850px;}
.ls15{letter-spacing:13.448400px;}
.ls18{letter-spacing:13.454400px;}
.ls16{letter-spacing:13.493228px;}
.ls21{letter-spacing:13.550400px;}
.ls1f{letter-spacing:13.581012px;}
.ls23{letter-spacing:13.926693px;}
.ls17{letter-spacing:15.979812px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.wsc{word-spacing:-17.394700px;}
.ws4a{word-spacing:-15.655334px;}
.ws33{word-spacing:-14.943900px;}
.ws1d{word-spacing:-13.915795px;}
.ws3f{word-spacing:-13.449600px;}
.ws1a{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws2b{word-spacing:-5.499355px;}
.ws2d{word-spacing:-4.722272px;}
.ws5a{word-spacing:-4.519066px;}
.wsa{word-spacing:-4.184292px;}
.ws2e{word-spacing:-3.885414px;}
.ws5b{word-spacing:-3.873485px;}
.ws2f{word-spacing:-3.825638px;}
.ws1f{word-spacing:-3.227882px;}
.ws36{word-spacing:-3.168107px;}
.ws5c{word-spacing:-3.066509px;}
.ws13{word-spacing:-2.929004px;}
.ws53{word-spacing:-2.098138px;}
.ws5{word-spacing:-1.908367px;}
.ws55{word-spacing:-1.721549px;}
.ws11{word-spacing:-1.673717px;}
.ws5d{word-spacing:-1.613952px;}
.ws57{word-spacing:-1.452557px;}
.ws4{word-spacing:-1.322630px;}
.wsf{word-spacing:-1.135736px;}
.ws22{word-spacing:-1.016185px;}
.wsb{word-spacing:-0.896634px;}
.ws34{word-spacing:-0.597756px;}
.ws2c{word-spacing:-0.358654px;}
.ws56{word-spacing:-0.322790px;}
.ws16{word-spacing:-0.298878px;}
.ws41{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.239102px;}
.ws38{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.179327px;}
.ws6{word-spacing:-0.119551px;}
.ws39{word-spacing:-0.107597px;}
.ws8{word-spacing:-0.059776px;}
.ws40{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws50{word-spacing:-0.003715px;}
.ws2{word-spacing:-0.001483px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws58{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.ws3b{word-spacing:0.161395px;}
.ws7{word-spacing:0.179327px;}
.ws4b{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws4c{word-spacing:0.430387px;}
.ws20{word-spacing:0.478205px;}
.ws43{word-spacing:0.484186px;}
.ws14{word-spacing:0.597756px;}
.ws51{word-spacing:0.699379px;}
.ws10{word-spacing:1.135736px;}
.ws27{word-spacing:1.434614px;}
.ws45{word-spacing:1.452557px;}
.ws4f{word-spacing:1.775347px;}
.ws4e{word-spacing:1.829146px;}
.ws3c{word-spacing:1.990541px;}
.ws24{word-spacing:2.092146px;}
.ws23{word-spacing:2.271473px;}
.ws1e{word-spacing:2.331248px;}
.ws12{word-spacing:2.510575px;}
.ws42{word-spacing:2.528525px;}
.ws46{word-spacing:2.582323px;}
.wsd{word-spacing:2.749678px;}
.ws21{word-spacing:3.287658px;}
.ws17{word-spacing:3.347434px;}
.ws35{word-spacing:3.407209px;}
.ws26{word-spacing:3.466985px;}
.ws49{word-spacing:4.142477px;}
.ws9{word-spacing:4.303843px;}
.ws37{word-spacing:4.542946px;}
.ws31{word-spacing:4.901599px;}
.ws5e{word-spacing:5.218445px;}
.ws47{word-spacing:5.377459px;}
.ws3a{word-spacing:5.378822px;}
.ws44{word-spacing:5.379734px;}
.ws52{word-spacing:5.379840px;}
.ws30{word-spacing:5.618906px;}
.ws15{word-spacing:6.037336px;}
.ws32{word-spacing:6.336214px;}
.ws25{word-spacing:7.113296px;}
.ws54{word-spacing:11.243866px;}
.ws19{word-spacing:11.909891px;}
.ws4d{word-spacing:13.391059px;}
.ws3e{word-spacing:13.395802px;}
.ws59{word-spacing:13.503398px;}
.ws3d{word-spacing:15.386342px;}
.ws48{word-spacing:18.775642px;}
.ws1c{word-spacing:936.805554px;}
._17{margin-left:-7.708094px;}
._2{margin-left:-6.632066px;}
._5{margin-left:-4.949453px;}
._a{margin-left:-3.735962px;}
._3{margin-left:-1.882944px;}
._7{width:1.091170px;}
._0{width:2.997529px;}
._12{width:4.154417px;}
._16{width:10.675956px;}
._13{width:12.528159px;}
._11{width:14.174568px;}
._c{width:15.990021px;}
._4{width:17.861069px;}
._6{width:19.797811px;}
._8{width:20.849762px;}
._b{width:21.907770px;}
._f{width:23.491811px;}
._14{width:24.717223px;}
._10{width:26.570267px;}
._15{width:27.813773px;}
._9{width:29.529146px;}
._e{width:32.252622px;}
._1{width:54.388292px;}
._d{width:2051.739000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(43,79,113);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:124.175159px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.425340px;}
.y3{bottom:3.695543px;}
.y12{bottom:14.151273px;}
.y2{bottom:27.214164px;}
.y30{bottom:63.780000px;}
.y63{bottom:123.121500px;}
.y62{bottom:143.386500px;}
.y61{bottom:163.650000px;}
.y2f{bottom:164.617500px;}
.y60{bottom:183.913500px;}
.y2e{bottom:184.881000px;}
.y8d{bottom:191.632500px;}
.y5f{bottom:204.178500px;}
.y2d{bottom:205.146000px;}
.y8c{bottom:211.000500px;}
.y5e{bottom:224.442000px;}
.y2c{bottom:225.409500px;}
.y8b{bottom:230.367000px;}
.y5d{bottom:244.707000px;}
.y2b{bottom:245.674500px;}
.y8a{bottom:249.735000px;}
.y5c{bottom:264.970500px;}
.y2a{bottom:265.938000px;}
.y89{bottom:269.103000px;}
.y5b{bottom:285.234000px;}
.y29{bottom:286.201500px;}
.y88{bottom:288.469500px;}
.y5a{bottom:305.499000px;}
.y28{bottom:306.466500px;}
.y87{bottom:307.837500px;}
.y59{bottom:325.762500px;}
.y27{bottom:326.730000px;}
.y86{bottom:327.204000px;}
.y58{bottom:346.027500px;}
.y85{bottom:346.572000px;}
.y26{bottom:346.995000px;}
.y84{bottom:365.940000px;}
.y57{bottom:366.291000px;}
.y25{bottom:367.258500px;}
.y83{bottom:385.306500px;}
.y56{bottom:386.554500px;}
.y24{bottom:387.522000px;}
.y82{bottom:404.674500px;}
.y55{bottom:406.819500px;}
.y23{bottom:407.787000px;}
.y81{bottom:424.041000px;}
.y54{bottom:427.083000px;}
.y80{bottom:443.409000px;}
.y53{bottom:447.348000px;}
.y7f{bottom:462.777000px;}
.y52{bottom:467.611500px;}
.y7e{bottom:482.143500px;}
.y22{bottom:483.000000px;}
.y51{bottom:487.875000px;}
.y7d{bottom:501.511500px;}
.y21{bottom:503.263500px;}
.y50{bottom:508.140000px;}
.y7c{bottom:520.878000px;}
.y4f{bottom:528.403500px;}
.y7b{bottom:540.246000px;}
.y20{bottom:541.461000px;}
.y4e{bottom:548.667000px;}
.y7a{bottom:559.614000px;}
.y1f{bottom:561.724500px;}
.y4d{bottom:568.932000px;}
.y79{bottom:578.980500px;}
.y1e{bottom:581.988000px;}
.y4c{bottom:589.195500px;}
.y78{bottom:598.348500px;}
.y1d{bottom:602.253000px;}
.y4b{bottom:609.460500px;}
.y77{bottom:617.715000px;}
.y1c{bottom:622.516500px;}
.y4a{bottom:629.724000px;}
.y76{bottom:637.083000px;}
.y1b{bottom:642.781500px;}
.y49{bottom:649.987500px;}
.y75{bottom:656.451000px;}
.y1a{bottom:663.045000px;}
.y48{bottom:670.252500px;}
.y74{bottom:675.817500px;}
.y19{bottom:683.308500px;}
.y47{bottom:690.516000px;}
.y73{bottom:695.185500px;}
.y18{bottom:703.573500px;}
.y46{bottom:710.781000px;}
.y72{bottom:714.552000px;}
.y17{bottom:723.837000px;}
.y45{bottom:731.044500px;}
.y71{bottom:733.920000px;}
.y16{bottom:744.102000px;}
.y44{bottom:751.308000px;}
.y70{bottom:753.288000px;}
.y15{bottom:764.365500px;}
.y43{bottom:771.573000px;}
.y6f{bottom:772.654500px;}
.y14{bottom:784.629000px;}
.y42{bottom:791.836500px;}
.y6e{bottom:792.022500px;}
.y6d{bottom:811.389000px;}
.y41{bottom:812.101500px;}
.y11{bottom:820.061964px;}
.y10{bottom:820.828500px;}
.y6c{bottom:830.757000px;}
.y40{bottom:832.365000px;}
.y3f{bottom:852.628500px;}
.y6b{bottom:859.090500px;}
.yf{bottom:859.834500px;}
.y3e{bottom:872.893500px;}
.ye{bottom:877.990500px;}
.y3d{bottom:893.157000px;}
.y6a{bottom:898.543500px;}
.yd{bottom:901.030500px;}
.y3c{bottom:913.422000px;}
.yc{bottom:914.305500px;}
.y69{bottom:922.707000px;}
.yb{bottom:932.461500px;}
.y3b{bottom:933.685500px;}
.ya{bottom:937.344000px;}
.y68{bottom:937.905000px;}
.y95{bottom:941.550000px;}
.y3a{bottom:953.949000px;}
.y9{bottom:955.501500px;}
.y94{bottom:960.918000px;}
.y67{bottom:962.070000px;}
.y8{bottom:973.659000px;}
.y39{bottom:974.214000px;}
.y93{bottom:980.284500px;}
.y66{bottom:986.235000px;}
.y38{bottom:994.477500px;}
.y7{bottom:995.899500px;}
.y65{bottom:1001.433000px;}
.y92{bottom:1009.632000px;}
.y37{bottom:1014.742500px;}
.y64{bottom:1019.173500px;}
.y91{bottom:1024.830000px;}
.y36{bottom:1035.006000px;}
.y6{bottom:1040.848500px;}
.y35{bottom:1055.269500px;}
.y90{bottom:1057.960500px;}
.y5{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y8f{bottom:1077.327000px;}
.y33{bottom:1095.798000px;}
.y8e{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h7{height:30.461558px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.he{height:35.052500px;}
.h12{height:37.927872px;}
.hf{height:38.734848px;}
.h8{height:39.165235px;}
.h11{height:39.434227px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h4{height:43.815515px;}
.h10{height:49.117939px;}
.h2{height:50.931027px;}
.h6{height:55.352206px;}
.h5{height:77.469696px;}
.h3{height:84.190758px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.799011px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4{left:146.079000px;}
.x2a{left:147.082500px;}
.x8{left:188.944500px;}
.x9{left:200.145000px;}
.x2f{left:225.619500px;}
.x23{left:238.134000px;}
.x30{left:251.667000px;}
.x32{left:254.101500px;}
.x1f{left:256.479000px;}
.x31{left:267.238500px;}
.x1c{left:299.694000px;}
.x1e{left:308.154000px;}
.x1d{left:314.637000px;}
.xc{left:366.409500px;}
.xd{left:373.881000px;}
.x12{left:389.869500px;}
.x13{left:404.814000px;}
.x14{left:408.579000px;}
.x18{left:411.406500px;}
.x15{left:423.523500px;}
.x19{left:426.351000px;}
.x1a{left:430.161000px;}
.x1b{left:445.105500px;}
.xe{left:453.249000px;}
.xf{left:460.722000px;}
.x10{left:464.424000px;}
.xa{left:470.724000px;}
.x11{left:471.895500px;}
.xb{left:478.195500px;}
.x20{left:482.580000px;}
.x16{left:488.265000px;}
.x17{left:503.209500px;}
.x2b{left:547.567500px;}
.x2c{left:574.467000px;}
.x26{left:601.153500px;}
.x2d{left:604.986000px;}
.x27{left:628.053000px;}
.x2e{left:631.885500px;}
.x24{left:663.033000px;}
.x28{left:686.092500px;}
.x25{left:689.931000px;}
.x6{left:701.339982px;}
.x29{left:712.722000px;}
.x21{left:766.573500px;}
.x22{left:777.037500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000213pt;}
.ls13{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000518pt;}
.ls10{letter-spacing:0.001061pt;}
.lsf{letter-spacing:0.001154pt;}
.lse{letter-spacing:0.001183pt;}
.ls7{letter-spacing:0.001990pt;}
.ls1c{letter-spacing:0.002078pt;}
.ls6{letter-spacing:0.002198pt;}
.ls14{letter-spacing:0.002287pt;}
.lsd{letter-spacing:0.002630pt;}
.ls9{letter-spacing:0.003100pt;}
.ls12{letter-spacing:0.003106pt;}
.ls11{letter-spacing:0.003325pt;}
.lsc{letter-spacing:0.003423pt;}
.ls1d{letter-spacing:0.003814pt;}
.ls24{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.474565pt;}
.ls1b{letter-spacing:0.478097pt;}
.ls22{letter-spacing:0.479786pt;}
.ls1a{letter-spacing:0.479893pt;}
.lsb{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls20{letter-spacing:9.252963pt;}
.ls1e{letter-spacing:10.074732pt;}
.ls8{letter-spacing:10.626533pt;}
.ls15{letter-spacing:11.954133pt;}
.ls18{letter-spacing:11.959467pt;}
.ls16{letter-spacing:11.993981pt;}
.ls21{letter-spacing:12.044800pt;}
.ls1f{letter-spacing:12.072011pt;}
.ls23{letter-spacing:12.379283pt;}
.ls17{letter-spacing:14.204277pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls2{letter-spacing:64.321067pt;}
.wsc{word-spacing:-15.461955pt;}
.ws4a{word-spacing:-13.915853pt;}
.ws33{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-12.369595pt;}
.ws3f{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws2b{word-spacing:-4.888316pt;}
.ws2d{word-spacing:-4.197575pt;}
.ws5a{word-spacing:-4.016947pt;}
.wsa{word-spacing:-3.719371pt;}
.ws2e{word-spacing:-3.453701pt;}
.ws5b{word-spacing:-3.443098pt;}
.ws2f{word-spacing:-3.400567pt;}
.ws1f{word-spacing:-2.869229pt;}
.ws36{word-spacing:-2.816095pt;}
.ws5c{word-spacing:-2.725786pt;}
.ws13{word-spacing:-2.603559pt;}
.ws53{word-spacing:-1.865011pt;}
.ws5{word-spacing:-1.696326pt;}
.ws55{word-spacing:-1.530266pt;}
.ws11{word-spacing:-1.487748pt;}
.ws5d{word-spacing:-1.434624pt;}
.ws57{word-spacing:-1.291162pt;}
.ws4{word-spacing:-1.175671pt;}
.wsf{word-spacing:-1.009543pt;}
.ws22{word-spacing:-0.903276pt;}
.wsb{word-spacing:-0.797008pt;}
.ws34{word-spacing:-0.531339pt;}
.ws2c{word-spacing:-0.318803pt;}
.ws56{word-spacing:-0.286925pt;}
.ws16{word-spacing:-0.265669pt;}
.ws41{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.212535pt;}
.ws38{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.159402pt;}
.ws6{word-spacing:-0.106268pt;}
.ws39{word-spacing:-0.095642pt;}
.ws8{word-spacing:-0.053134pt;}
.ws40{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws50{word-spacing:-0.003302pt;}
.ws2{word-spacing:-0.001318pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws58{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.ws3b{word-spacing:0.143462pt;}
.ws7{word-spacing:0.159402pt;}
.ws4b{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws4c{word-spacing:0.382566pt;}
.ws20{word-spacing:0.425071pt;}
.ws43{word-spacing:0.430387pt;}
.ws14{word-spacing:0.531339pt;}
.ws51{word-spacing:0.621670pt;}
.ws10{word-spacing:1.009543pt;}
.ws27{word-spacing:1.275213pt;}
.ws45{word-spacing:1.291162pt;}
.ws4f{word-spacing:1.578086pt;}
.ws4e{word-spacing:1.625907pt;}
.ws3c{word-spacing:1.769370pt;}
.ws24{word-spacing:1.859685pt;}
.ws23{word-spacing:2.019087pt;}
.ws1e{word-spacing:2.072221pt;}
.ws12{word-spacing:2.231622pt;}
.ws42{word-spacing:2.247578pt;}
.ws46{word-spacing:2.295398pt;}
.wsd{word-spacing:2.444158pt;}
.ws21{word-spacing:2.922363pt;}
.ws17{word-spacing:2.975497pt;}
.ws35{word-spacing:3.028630pt;}
.ws26{word-spacing:3.081764pt;}
.ws49{word-spacing:3.682202pt;}
.ws9{word-spacing:3.825638pt;}
.ws37{word-spacing:4.038174pt;}
.ws31{word-spacing:4.356977pt;}
.ws5e{word-spacing:4.638618pt;}
.ws47{word-spacing:4.779964pt;}
.ws3a{word-spacing:4.781175pt;}
.ws44{word-spacing:4.781986pt;}
.ws52{word-spacing:4.782080pt;}
.ws30{word-spacing:4.994583pt;}
.ws15{word-spacing:5.366521pt;}
.ws32{word-spacing:5.632190pt;}
.ws25{word-spacing:6.322930pt;}
.ws54{word-spacing:9.994547pt;}
.ws19{word-spacing:10.586570pt;}
.ws4d{word-spacing:11.903164pt;}
.ws3e{word-spacing:11.907379pt;}
.ws59{word-spacing:12.003021pt;}
.ws3d{word-spacing:13.676749pt;}
.ws48{word-spacing:16.689459pt;}
.ws1c{word-spacing:832.716048pt;}
._17{margin-left:-6.851639pt;}
._2{margin-left:-5.895170pt;}
._5{margin-left:-4.399514pt;}
._a{margin-left:-3.320855pt;}
._3{margin-left:-1.673728pt;}
._7{width:0.969929pt;}
._0{width:2.664470pt;}
._12{width:3.692815pt;}
._16{width:9.489739pt;}
._13{width:11.136141pt;}
._11{width:12.599616pt;}
._c{width:14.213352pt;}
._4{width:15.876506pt;}
._6{width:17.598054pt;}
._8{width:18.533122pt;}
._b{width:19.473573pt;}
._f{width:20.881610pt;}
._14{width:21.970865pt;}
._10{width:23.618015pt;}
._15{width:24.723354pt;}
._9{width:26.248130pt;}
._e{width:28.668997pt;}
._1{width:48.345149pt;}
._d{width:1823.768000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:110.377919pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.044747pt;}
.y3{bottom:3.284927pt;}
.y12{bottom:12.578910pt;}
.y2{bottom:24.190368pt;}
.y30{bottom:56.693333pt;}
.y63{bottom:109.441333pt;}
.y62{bottom:127.454667pt;}
.y61{bottom:145.466667pt;}
.y2f{bottom:146.326667pt;}
.y60{bottom:163.478667pt;}
.y2e{bottom:164.338667pt;}
.y8d{bottom:170.340000pt;}
.y5f{bottom:181.492000pt;}
.y2d{bottom:182.352000pt;}
.y8c{bottom:187.556000pt;}
.y5e{bottom:199.504000pt;}
.y2c{bottom:200.364000pt;}
.y8b{bottom:204.770667pt;}
.y5d{bottom:217.517333pt;}
.y2b{bottom:218.377333pt;}
.y8a{bottom:221.986667pt;}
.y5c{bottom:235.529333pt;}
.y2a{bottom:236.389333pt;}
.y89{bottom:239.202667pt;}
.y5b{bottom:253.541333pt;}
.y29{bottom:254.401333pt;}
.y88{bottom:256.417333pt;}
.y5a{bottom:271.554667pt;}
.y28{bottom:272.414667pt;}
.y87{bottom:273.633333pt;}
.y59{bottom:289.566667pt;}
.y27{bottom:290.426667pt;}
.y86{bottom:290.848000pt;}
.y58{bottom:307.580000pt;}
.y85{bottom:308.064000pt;}
.y26{bottom:308.440000pt;}
.y84{bottom:325.280000pt;}
.y57{bottom:325.592000pt;}
.y25{bottom:326.452000pt;}
.y83{bottom:342.494667pt;}
.y56{bottom:343.604000pt;}
.y24{bottom:344.464000pt;}
.y82{bottom:359.710667pt;}
.y55{bottom:361.617333pt;}
.y23{bottom:362.477333pt;}
.y81{bottom:376.925333pt;}
.y54{bottom:379.629333pt;}
.y80{bottom:394.141333pt;}
.y53{bottom:397.642667pt;}
.y7f{bottom:411.357333pt;}
.y52{bottom:415.654667pt;}
.y7e{bottom:428.572000pt;}
.y22{bottom:429.333333pt;}
.y51{bottom:433.666667pt;}
.y7d{bottom:445.788000pt;}
.y21{bottom:447.345333pt;}
.y50{bottom:451.680000pt;}
.y7c{bottom:463.002667pt;}
.y4f{bottom:469.692000pt;}
.y7b{bottom:480.218667pt;}
.y20{bottom:481.298667pt;}
.y4e{bottom:487.704000pt;}
.y7a{bottom:497.434667pt;}
.y1f{bottom:499.310667pt;}
.y4d{bottom:505.717333pt;}
.y79{bottom:514.649333pt;}
.y1e{bottom:517.322667pt;}
.y4c{bottom:523.729333pt;}
.y78{bottom:531.865333pt;}
.y1d{bottom:535.336000pt;}
.y4b{bottom:541.742667pt;}
.y77{bottom:549.080000pt;}
.y1c{bottom:553.348000pt;}
.y4a{bottom:559.754667pt;}
.y76{bottom:566.296000pt;}
.y1b{bottom:571.361333pt;}
.y49{bottom:577.766667pt;}
.y75{bottom:583.512000pt;}
.y1a{bottom:589.373333pt;}
.y48{bottom:595.780000pt;}
.y74{bottom:600.726667pt;}
.y19{bottom:607.385333pt;}
.y47{bottom:613.792000pt;}
.y73{bottom:617.942667pt;}
.y18{bottom:625.398667pt;}
.y46{bottom:631.805333pt;}
.y72{bottom:635.157333pt;}
.y17{bottom:643.410667pt;}
.y45{bottom:649.817333pt;}
.y71{bottom:652.373333pt;}
.y16{bottom:661.424000pt;}
.y44{bottom:667.829333pt;}
.y70{bottom:669.589333pt;}
.y15{bottom:679.436000pt;}
.y43{bottom:685.842667pt;}
.y6f{bottom:686.804000pt;}
.y14{bottom:697.448000pt;}
.y42{bottom:703.854667pt;}
.y6e{bottom:704.020000pt;}
.y6d{bottom:721.234667pt;}
.y41{bottom:721.868000pt;}
.y11{bottom:728.943968pt;}
.y10{bottom:729.625333pt;}
.y6c{bottom:738.450667pt;}
.y40{bottom:739.880000pt;}
.y3f{bottom:757.892000pt;}
.y6b{bottom:763.636000pt;}
.yf{bottom:764.297333pt;}
.y3e{bottom:775.905333pt;}
.ye{bottom:780.436000pt;}
.y3d{bottom:793.917333pt;}
.y6a{bottom:798.705333pt;}
.yd{bottom:800.916000pt;}
.y3c{bottom:811.930667pt;}
.yc{bottom:812.716000pt;}
.y69{bottom:820.184000pt;}
.yb{bottom:828.854667pt;}
.y3b{bottom:829.942667pt;}
.ya{bottom:833.194667pt;}
.y68{bottom:833.693333pt;}
.y95{bottom:836.933333pt;}
.y3a{bottom:847.954667pt;}
.y9{bottom:849.334667pt;}
.y94{bottom:854.149333pt;}
.y67{bottom:855.173333pt;}
.y8{bottom:865.474667pt;}
.y39{bottom:865.968000pt;}
.y93{bottom:871.364000pt;}
.y66{bottom:876.653333pt;}
.y38{bottom:883.980000pt;}
.y7{bottom:885.244000pt;}
.y65{bottom:890.162667pt;}
.y92{bottom:897.450667pt;}
.y37{bottom:901.993333pt;}
.y64{bottom:905.932000pt;}
.y91{bottom:910.960000pt;}
.y36{bottom:920.005333pt;}
.y6{bottom:925.198667pt;}
.y35{bottom:938.017333pt;}
.y90{bottom:940.409333pt;}
.y5{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y8f{bottom:957.624000pt;}
.y33{bottom:974.042667pt;}
.y8e{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h7{height:27.076941pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.he{height:31.157778pt;}
.h12{height:33.713664pt;}
.hf{height:34.430976pt;}
.h8{height:34.813542pt;}
.h11{height:35.052646pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h4{height:38.947124pt;}
.h10{height:43.660390pt;}
.h2{height:45.272024pt;}
.h6{height:49.201961pt;}
.h5{height:68.861952pt;}
.h3{height:74.836229pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.376898pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4{left:129.848000pt;}
.x2a{left:130.740000pt;}
.x8{left:167.950667pt;}
.x9{left:177.906667pt;}
.x2f{left:200.550667pt;}
.x23{left:211.674667pt;}
.x30{left:223.704000pt;}
.x32{left:225.868000pt;}
.x1f{left:227.981333pt;}
.x31{left:237.545333pt;}
.x1c{left:266.394667pt;}
.x1e{left:273.914667pt;}
.x1d{left:279.677333pt;}
.xc{left:325.697333pt;}
.xd{left:332.338667pt;}
.x12{left:346.550667pt;}
.x13{left:359.834667pt;}
.x14{left:363.181333pt;}
.x18{left:365.694667pt;}
.x15{left:376.465333pt;}
.x19{left:378.978667pt;}
.x1a{left:382.365333pt;}
.x1b{left:395.649333pt;}
.xe{left:402.888000pt;}
.xf{left:409.530667pt;}
.x10{left:412.821333pt;}
.xa{left:418.421333pt;}
.x11{left:419.462667pt;}
.xb{left:425.062667pt;}
.x20{left:428.960000pt;}
.x16{left:434.013333pt;}
.x17{left:447.297333pt;}
.x2b{left:486.726667pt;}
.x2c{left:510.637333pt;}
.x26{left:534.358667pt;}
.x2d{left:537.765333pt;}
.x27{left:558.269333pt;}
.x2e{left:561.676000pt;}
.x24{left:589.362667pt;}
.x28{left:609.860000pt;}
.x25{left:613.272000pt;}
.x6{left:623.413317pt;}
.x29{left:633.530667pt;}
.x21{left:681.398667pt;}
.x22{left:690.700000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  