
    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_5e584259e7e9dc2a85f27188.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052000;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_b32e05d31dee016ea47184a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55f7ce3f37602bcedb1115f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_f7a70ef0aaab6cccaa8f939c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_093b848a7ebdb963a4a9874e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_1fdf9d47acddc6a537a35286.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.669000;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_e175b573c00ad7e2587caec8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m20{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);}
.m9{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);}
.m13{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);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m19{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);}
.mc{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);}
.m8{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);}
.m17{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);}
.m1{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);}
.m22{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);}
.m1f{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);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m21{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);}
.m6{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);}
.m10{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);}
.m1c{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);}
.m24{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);}
.mb{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);}
.me{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);}
.m15{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);}
.m14{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);}
.m18{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);}
.m26{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);}
.m27{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);}
.m2{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);}
.m1d{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);}
.m7{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);}
.m23{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);}
.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);}
.m1b{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);}
.md{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);}
.m3{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);}
.ma{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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:37.482000px;}
.lsd{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.104887px;}
.ls1{letter-spacing:1.441969px;}
.ls9{letter-spacing:2.093675px;}
.lse{letter-spacing:2.989200px;}
.lsb{letter-spacing:2.993468px;}
.ls8{letter-spacing:3.584074px;}
.ls3{letter-spacing:5.123296px;}
.ls7{letter-spacing:5.161969px;}
.ls0{letter-spacing:5.162344px;}
.ls4{letter-spacing:5.162887px;}
.ls6{letter-spacing:5.163056px;}
.ls2{letter-spacing:5.168344px;}
.lsa{letter-spacing:14.942338px;}
.lsc{letter-spacing:23.644045px;}
.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;}
}
.ws4{word-spacing:-25.781746px;}
.ws43{word-spacing:-14.943900px;}
.ws5b{word-spacing:-13.449600px;}
.ws8{word-spacing:-2.588079px;}
.ws4a{word-spacing:-2.450800px;}
.ws3b{word-spacing:-2.211697px;}
.ws4b{word-spacing:-2.151922px;}
.ws61{word-spacing:-2.092146px;}
.ws23{word-spacing:-1.733492px;}
.ws22{word-spacing:-1.673717px;}
.ws51{word-spacing:-1.255288px;}
.ws12{word-spacing:-0.896634px;}
.ws10{word-spacing:-0.836858px;}
.ws29{word-spacing:-0.777083px;}
.ws44{word-spacing:-0.717307px;}
.ws3c{word-spacing:-0.657532px;}
.ws63{word-spacing:-0.537980px;}
.ws13{word-spacing:-0.478205px;}
.ws2a{word-spacing:-0.418429px;}
.ws41{word-spacing:-0.358654px;}
.ws1a{word-spacing:-0.298878px;}
.wse{word-spacing:-0.239102px;}
.ws24{word-spacing:-0.179327px;}
.ws28{word-spacing:-0.165546px;}
.ws2f{word-spacing:-0.139951px;}
.ws2e{word-spacing:-0.132270px;}
.ws2d{word-spacing:-0.119551px;}
.ws59{word-spacing:-0.074111px;}
.ws55{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.059776px;}
.wsc{word-spacing:-0.057385px;}
.ws3{word-spacing:-0.012351px;}
.ws15{word-spacing:-0.005749px;}
.ws16{word-spacing:-0.004441px;}
.wsa{word-spacing:0.000000px;}
.ws17{word-spacing:0.000059px;}
.ws2{word-spacing:0.015298px;}
.ws11{word-spacing:0.059776px;}
.wsd{word-spacing:0.119551px;}
.ws1c{word-spacing:0.179327px;}
.ws21{word-spacing:0.239102px;}
.ws1d{word-spacing:0.298878px;}
.ws4d{word-spacing:0.358654px;}
.ws36{word-spacing:0.418429px;}
.ws58{word-spacing:0.537980px;}
.ws37{word-spacing:0.595160px;}
.ws5c{word-spacing:0.896634px;}
.ws40{word-spacing:0.956410px;}
.ws33{word-spacing:1.016185px;}
.ws38{word-spacing:1.135736px;}
.ws53{word-spacing:1.195512px;}
.ws62{word-spacing:1.315063px;}
.ws4f{word-spacing:1.434614px;}
.ws4c{word-spacing:1.494390px;}
.ws5a{word-spacing:1.613941px;}
.ws1b{word-spacing:1.793268px;}
.ws54{word-spacing:1.853044px;}
.ws3f{word-spacing:2.211697px;}
.ws49{word-spacing:2.450800px;}
.ws32{word-spacing:2.510575px;}
.ws3a{word-spacing:2.630126px;}
.ws50{word-spacing:2.749498px;}
.ws52{word-spacing:2.809453px;}
.wsf{word-spacing:2.869229px;}
.ws57{word-spacing:2.988780px;}
.ws48{word-spacing:3.168107px;}
.ws35{word-spacing:3.227882px;}
.ws30{word-spacing:3.938360px;}
.ws3d{word-spacing:4.004965px;}
.ws4e{word-spacing:4.184292px;}
.ws2c{word-spacing:4.436258px;}
.ws2b{word-spacing:4.483170px;}
.ws42{word-spacing:4.542946px;}
.ws5f{word-spacing:4.841824px;}
.ws34{word-spacing:5.559131px;}
.ws26{word-spacing:5.738458px;}
.ws45{word-spacing:5.977560px;}
.ws5e{word-spacing:6.037336px;}
.ws39{word-spacing:6.097111px;}
.ws46{word-spacing:6.336214px;}
.ws31{word-spacing:6.814418px;}
.ws56{word-spacing:7.232848px;}
.ws60{word-spacing:7.412174px;}
.ws47{word-spacing:7.711052px;}
.ws25{word-spacing:8.069706px;}
.ws0{word-spacing:10.227399px;}
.ws1{word-spacing:10.241152px;}
.ws7{word-spacing:10.243195px;}
.ws6{word-spacing:10.246591px;}
.ws5{word-spacing:10.285891px;}
.ws19{word-spacing:10.640057px;}
.ws20{word-spacing:13.395802px;}
.ws1f{word-spacing:14.202778px;}
.ws9{word-spacing:14.884124px;}
.ws1e{word-spacing:16.785101px;}
.ws27{word-spacing:17.861069px;}
.ws5d{word-spacing:19.307519px;}
.ws14{word-spacing:29.823722px;}
.ws3e{word-spacing:59.715824px;}
.ws18{word-spacing:71.659469px;}
._2{margin-left:-9.254986px;}
._1{margin-left:-8.010040px;}
._18{margin-left:-6.645996px;}
._4{margin-left:-5.205929px;}
._6{margin-left:-4.131690px;}
._3{margin-left:-2.797198px;}
._7{margin-left:-1.673717px;}
._5{width:3.635887px;}
._0{width:5.123296px;}
._d{width:13.867939px;}
._14{width:14.943900px;}
._8{width:16.001873px;}
._c{width:17.346267px;}
._9{width:18.829314px;}
._13{width:20.562806px;}
._19{width:21.638767px;}
._15{width:22.899507px;}
._b{width:24.388445px;}
._e{width:25.411804px;}
._a{width:27.556552px;}
._12{width:32.278824px;}
._f{width:35.387155px;}
._16{width:37.115195px;}
._1a{width:39.153018px;}
._17{width:41.364715px;}
._1b{width:42.380900px;}
._1c{width:44.771924px;}
._11{width:59.775600px;}
._10{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:53.798400px;}
.fs4{font-size:57.384600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:82.633800px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5c{bottom:63.168000px;}
.y2b{bottom:108.000000px;}
.yd0{bottom:113.713500px;}
.y73{bottom:122.718000px;}
.y2a{bottom:122.944500px;}
.y5b{bottom:124.363500px;}
.y29{bottom:137.887500px;}
.ycf{bottom:139.306500px;}
.y5a{bottom:140.727000px;}
.y28{bottom:143.601000px;}
.yce{bottom:155.670000px;}
.ya3{bottom:157.090500px;}
.y27{bottom:163.900500px;}
.y59{bottom:170.728500px;}
.ycd{bottom:172.033500px;}
.ya2{bottom:173.454000px;}
.y26{bottom:180.264000px;}
.ya1{bottom:189.817500px;}
.ycc{bottom:195.789000px;}
.y25{bottom:204.846000px;}
.y58{bottom:207.514500px;}
.ycb{bottom:212.152500px;}
.ya0{bottom:214.401000px;}
.y24{bottom:221.209500px;}
.y57{bottom:223.878000px;}
.y9f{bottom:230.764500px;}
.yca{bottom:235.908000px;}
.y23{bottom:237.573000px;}
.y56{bottom:240.241500px;}
.y9e{bottom:247.128000px;}
.yc9{bottom:252.271500px;}
.y22{bottom:253.938000px;}
.y9d{bottom:263.491500px;}
.y55{bottom:264.825000px;}
.yc8{bottom:268.635000px;}
.y21{bottom:270.301500px;}
.y9c{bottom:279.855000px;}
.y54{bottom:281.188500px;}
.y20{bottom:286.665000px;}
.yc7{bottom:292.390500px;}
.y9b{bottom:296.218500px;}
.y53{bottom:297.552000px;}
.yc6{bottom:308.754000px;}
.y9a{bottom:312.583500px;}
.y52{bottom:313.915500px;}
.y1f{bottom:321.060000px;}
.yc5{bottom:325.117500px;}
.y99{bottom:328.947000px;}
.y51{bottom:330.279000px;}
.y50{bottom:346.642500px;}
.yc4{bottom:348.873000px;}
.y98{bottom:353.529000px;}
.y4f{bottom:363.006000px;}
.y1e{bottom:363.375000px;}
.yc3{bottom:365.236500px;}
.y97{bottom:369.892500px;}
.yc2{bottom:381.601500px;}
.y96{bottom:386.256000px;}
.y4e{bottom:387.589500px;}
.y1d{bottom:396.313500px;}
.yf2{bottom:398.256000px;}
.y95{bottom:402.619500px;}
.y4d{bottom:403.953000px;}
.yc1{bottom:405.357000px;}
.y1c{bottom:412.677000px;}
.yf1{bottom:414.621000px;}
.y94{bottom:418.983000px;}
.y4c{bottom:420.316500px;}
.yc0{bottom:421.720500px;}
.y1b{bottom:429.040500px;}
.yf0{bottom:430.984500px;}
.y93{bottom:435.348000px;}
.y4b{bottom:436.680000px;}
.ybf{bottom:438.084000px;}
.y1a{bottom:445.405500px;}
.yef{bottom:447.348000px;}
.y92{bottom:451.711500px;}
.y4a{bottom:453.043500px;}
.ybe{bottom:454.447500px;}
.y19{bottom:461.769000px;}
.y49{bottom:469.407000px;}
.yee{bottom:469.689000px;}
.y91{bottom:476.293500px;}
.y18{bottom:478.132500px;}
.yed{bottom:486.052500px;}
.ybd{bottom:490.072500px;}
.y90{bottom:492.657000px;}
.y17{bottom:494.496000px;}
.y48{bottom:499.408500px;}
.yec{bottom:508.393500px;}
.y8f{bottom:509.020500px;}
.y16{bottom:510.859500px;}
.y72{bottom:522.372000px;}
.yeb{bottom:524.757000px;}
.y8e{bottom:525.384000px;}
.y15{bottom:527.223000px;}
.ybc{bottom:534.253500px;}
.y47{bottom:536.194500px;}
.yea{bottom:541.120500px;}
.y14{bottom:543.586500px;}
.y8d{bottom:549.967500px;}
.yba{bottom:550.617000px;}
.y46{bottom:552.558000px;}
.ybb{bottom:556.039500px;}
.ye9{bottom:557.484000px;}
.y71{bottom:558.235500px;}
.y13{bottom:559.950000px;}
.y8c{bottom:566.331000px;}
.yb9{bottom:566.980500px;}
.y45{bottom:577.141500px;}
.ye8{bottom:579.826500px;}
.y8b{bottom:582.694500px;}
.y12{bottom:584.533500px;}
.y44{bottom:593.505000px;}
.ye7{bottom:596.190000px;}
.y8a{bottom:599.058000px;}
.yb8{bottom:602.605500px;}
.y70{bottom:602.817000px;}
.y43{bottom:609.868500px;}
.y89{bottom:615.421500px;}
.ye6{bottom:618.531000px;}
.y6f{bottom:619.180500px;}
.y42{bottom:626.232000px;}
.y88{bottom:631.785000px;}
.ye5{bottom:634.894500px;}
.y6e{bottom:635.544000px;}
.yb7{bottom:646.786500px;}
.y87{bottom:648.150000px;}
.y41{bottom:650.814000px;}
.ye4{bottom:657.235500px;}
.y6d{bottom:660.127500px;}
.y11{bottom:662.386500px;}
.yb6{bottom:663.150000px;}
.y86{bottom:664.513500px;}
.y40{bottom:667.177500px;}
.ye3{bottom:673.599000px;}
.y6c{bottom:676.491000px;}
.y10{bottom:678.750000px;}
.y3f{bottom:683.542500px;}
.ye2{bottom:689.962500px;}
.y6b{bottom:692.854500px;}
.yf{bottom:695.113500px;}
.yb5{bottom:698.775000px;}
.y3e{bottom:699.906000px;}
.y85{bottom:700.180500px;}
.y6a{bottom:709.218000px;}
.ye{bottom:711.477000px;}
.ye1{bottom:712.303500px;}
.y3d{bottom:716.269500px;}
.y84{bottom:716.544000px;}
.y69{bottom:725.581500px;}
.yd{bottom:727.840500px;}
.ye0{bottom:728.667000px;}
.y3c{bottom:732.633000px;}
.y68{bottom:741.945000px;}
.yb4{bottom:742.956000px;}
.yc{bottom:744.204000px;}
.ydf{bottom:745.030500px;}
.y67{bottom:758.308500px;}
.yb3{bottom:759.319500px;}
.yb{bottom:760.567500px;}
.y3b{bottom:762.634500px;}
.yde{bottom:767.373000px;}
.y83{bottom:767.496000px;}
.y66{bottom:774.672000px;}
.yb2{bottom:775.683000px;}
.ydd{bottom:783.736500px;}
.y82{bottom:783.859500px;}
.yb1{bottom:792.046500px;}
.y65{bottom:799.255500px;}
.y3a{bottom:799.420500px;}
.y81{bottom:800.223000px;}
.ya{bottom:802.836000px;}
.ydc{bottom:806.077500px;}
.y64{bottom:815.619000px;}
.y39{bottom:815.784000px;}
.y80{bottom:816.586500px;}
.yb0{bottom:816.630000px;}
.y9{bottom:819.199500px;}
.ydb{bottom:822.441000px;}
.y63{bottom:831.982500px;}
.y7f{bottom:832.950000px;}
.yaf{bottom:832.993500px;}
.y7{bottom:835.563000px;}
.yda{bottom:844.782000px;}
.y62{bottom:848.346000px;}
.yae{bottom:849.357000px;}
.y38{bottom:850.512000px;}
.y6{bottom:851.926500px;}
.y7e{bottom:857.532000px;}
.yd9{bottom:861.145500px;}
.y61{bottom:864.709500px;}
.yad{bottom:865.720500px;}
.y5{bottom:868.290000px;}
.y8{bottom:868.291500px;}
.y7d{bottom:873.897000px;}
.y60{bottom:881.073000px;}
.yac{bottom:882.084000px;}
.yd8{bottom:883.486500px;}
.y4{bottom:884.655000px;}
.y7c{bottom:890.260500px;}
.y37{bottom:893.200500px;}
.y5f{bottom:897.436500px;}
.yd7{bottom:899.850000px;}
.y3{bottom:901.018500px;}
.yab{bottom:906.667500px;}
.y36{bottom:909.564000px;}
.y7b{bottom:914.842500px;}
.yd6{bottom:916.213500px;}
.yaa{bottom:923.031000px;}
.y35{bottom:925.927500px;}
.y5e{bottom:928.195500px;}
.y7a{bottom:931.206000px;}
.yd5{bottom:938.556000px;}
.ya9{bottom:939.394500px;}
.y34{bottom:942.291000px;}
.y79{bottom:947.569500px;}
.yd4{bottom:954.919500px;}
.ya8{bottom:955.758000px;}
.y33{bottom:958.654500px;}
.y78{bottom:963.933000px;}
.y5d{bottom:966.874500px;}
.yd3{bottom:977.260500px;}
.y77{bottom:980.296500px;}
.ya7{bottom:980.340000px;}
.y32{bottom:983.238000px;}
.y2{bottom:991.944000px;}
.yd2{bottom:993.624000px;}
.y76{bottom:996.661500px;}
.ya6{bottom:996.703500px;}
.y31{bottom:999.601500px;}
.yd1{bottom:1009.987500px;}
.y75{bottom:1013.025000px;}
.ya5{bottom:1013.068500px;}
.y30{bottom:1015.965000px;}
.y1{bottom:1021.831500px;}
.y74{bottom:1029.388500px;}
.ya4{bottom:1029.432000px;}
.y2f{bottom:1032.328500px;}
.y2e{bottom:1048.692000px;}
.y2d{bottom:1065.055500px;}
.y2c{bottom:1122.739500px;}
.h6{height:16.677504px;}
.ha{height:29.911910px;}
.h9{height:34.896895px;}
.h4{height:36.941321px;}
.h8{height:37.336090px;}
.h2{height:41.484266px;}
.h7{height:44.867866px;}
.h5{height:49.781453px;}
.h3{height:49.852850px;}
.h1{height:86.145862px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:107.506500px;}
.x30{left:113.076000px;}
.x33{left:115.471500px;}
.x31{left:120.547500px;}
.x19{left:125.733000px;}
.x35{left:126.979500px;}
.x2d{left:129.690000px;}
.x4{left:133.297500px;}
.x1{left:135.169500px;}
.x34{left:140.368500px;}
.x2e{left:144.634500px;}
.x2{left:151.411500px;}
.x13{left:161.335500px;}
.x23{left:174.342000px;}
.x1a{left:176.310000px;}
.x6{left:178.231500px;}
.x24{left:181.813500px;}
.x25{left:196.513500px;}
.x26{left:211.458000px;}
.x3{left:216.774000px;}
.x5{left:225.277500px;}
.x10{left:285.532500px;}
.xe{left:323.863500px;}
.x27{left:347.371500px;}
.x28{left:354.843000px;}
.x12{left:364.876500px;}
.x15{left:366.627000px;}
.x16{left:374.098500px;}
.xf{left:376.278000px;}
.x17{left:387.616500px;}
.x18{left:395.088000px;}
.xd{left:399.613500px;}
.x32{left:410.401500px;}
.x11{left:415.842000px;}
.x1b{left:422.224500px;}
.x1c{left:429.697500px;}
.xa{left:437.835000px;}
.x1d{left:442.695000px;}
.x1e{left:450.166500px;}
.x2f{left:455.263500px;}
.x8{left:476.166000px;}
.xc{left:525.022500px;}
.x9{left:528.580500px;}
.x7{left:564.049500px;}
.xb{left:568.144500px;}
.x2b{left:593.326500px;}
.x2c{left:608.269500px;}
.x29{left:741.658500px;}
.x2a{left:749.130000px;}
.x1f{left:775.570500px;}
.x20{left:783.042000px;}
.x21{left:796.551000px;}
.x22{left:804.024000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.317333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.093233pt;}
.ls1{letter-spacing:1.281750pt;}
.ls9{letter-spacing:1.861044pt;}
.lse{letter-spacing:2.657067pt;}
.lsb{letter-spacing:2.660861pt;}
.ls8{letter-spacing:3.185843pt;}
.ls3{letter-spacing:4.554041pt;}
.ls7{letter-spacing:4.588417pt;}
.ls0{letter-spacing:4.588750pt;}
.ls4{letter-spacing:4.589233pt;}
.ls6{letter-spacing:4.589383pt;}
.ls2{letter-spacing:4.594083pt;}
.lsa{letter-spacing:13.282079pt;}
.lsc{letter-spacing:21.016929pt;}
.ws4{word-spacing:-22.917107pt;}
.ws43{word-spacing:-13.283467pt;}
.ws5b{word-spacing:-11.955200pt;}
.ws8{word-spacing:-2.300515pt;}
.ws4a{word-spacing:-2.178489pt;}
.ws3b{word-spacing:-1.965953pt;}
.ws4b{word-spacing:-1.912819pt;}
.ws61{word-spacing:-1.859685pt;}
.ws23{word-spacing:-1.540882pt;}
.ws22{word-spacing:-1.487748pt;}
.ws51{word-spacing:-1.115811pt;}
.ws12{word-spacing:-0.797008pt;}
.ws10{word-spacing:-0.743874pt;}
.ws29{word-spacing:-0.690740pt;}
.ws44{word-spacing:-0.637606pt;}
.ws3c{word-spacing:-0.584473pt;}
.ws63{word-spacing:-0.478205pt;}
.ws13{word-spacing:-0.425071pt;}
.ws2a{word-spacing:-0.371937pt;}
.ws41{word-spacing:-0.318803pt;}
.ws1a{word-spacing:-0.265669pt;}
.wse{word-spacing:-0.212535pt;}
.ws24{word-spacing:-0.159402pt;}
.ws28{word-spacing:-0.147152pt;}
.ws2f{word-spacing:-0.124400pt;}
.ws2e{word-spacing:-0.117573pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws59{word-spacing:-0.065876pt;}
.ws55{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.053134pt;}
.wsc{word-spacing:-0.051009pt;}
.ws3{word-spacing:-0.010979pt;}
.ws15{word-spacing:-0.005110pt;}
.ws16{word-spacing:-0.003948pt;}
.wsa{word-spacing:0.000000pt;}
.ws17{word-spacing:0.000052pt;}
.ws2{word-spacing:0.013598pt;}
.ws11{word-spacing:0.053134pt;}
.wsd{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.159402pt;}
.ws21{word-spacing:0.212535pt;}
.ws1d{word-spacing:0.265669pt;}
.ws4d{word-spacing:0.318803pt;}
.ws36{word-spacing:0.371937pt;}
.ws58{word-spacing:0.478205pt;}
.ws37{word-spacing:0.529032pt;}
.ws5c{word-spacing:0.797008pt;}
.ws40{word-spacing:0.850142pt;}
.ws33{word-spacing:0.903276pt;}
.ws38{word-spacing:1.009543pt;}
.ws53{word-spacing:1.062677pt;}
.ws62{word-spacing:1.168945pt;}
.ws4f{word-spacing:1.275213pt;}
.ws4c{word-spacing:1.328347pt;}
.ws5a{word-spacing:1.434614pt;}
.ws1b{word-spacing:1.594016pt;}
.ws54{word-spacing:1.647150pt;}
.ws3f{word-spacing:1.965953pt;}
.ws49{word-spacing:2.178489pt;}
.ws32{word-spacing:2.231622pt;}
.ws3a{word-spacing:2.337890pt;}
.ws50{word-spacing:2.443998pt;}
.ws52{word-spacing:2.497292pt;}
.wsf{word-spacing:2.550426pt;}
.ws57{word-spacing:2.656693pt;}
.ws48{word-spacing:2.816095pt;}
.ws35{word-spacing:2.869229pt;}
.ws30{word-spacing:3.500764pt;}
.ws3d{word-spacing:3.559969pt;}
.ws4e{word-spacing:3.719371pt;}
.ws2c{word-spacing:3.943340pt;}
.ws2b{word-spacing:3.985040pt;}
.ws42{word-spacing:4.038174pt;}
.ws5f{word-spacing:4.303843pt;}
.ws34{word-spacing:4.941450pt;}
.ws26{word-spacing:5.100851pt;}
.ws45{word-spacing:5.313387pt;}
.ws5e{word-spacing:5.366521pt;}
.ws39{word-spacing:5.419654pt;}
.ws46{word-spacing:5.632190pt;}
.ws31{word-spacing:6.057261pt;}
.ws56{word-spacing:6.429198pt;}
.ws60{word-spacing:6.588599pt;}
.ws47{word-spacing:6.854269pt;}
.ws25{word-spacing:7.173072pt;}
.ws0{word-spacing:9.091021pt;}
.ws1{word-spacing:9.103246pt;}
.ws7{word-spacing:9.105062pt;}
.ws6{word-spacing:9.108081pt;}
.ws5{word-spacing:9.143014pt;}
.ws19{word-spacing:9.457828pt;}
.ws20{word-spacing:11.907379pt;}
.ws1f{word-spacing:12.624691pt;}
.ws9{word-spacing:13.230333pt;}
.ws1e{word-spacing:14.920090pt;}
.ws27{word-spacing:15.876506pt;}
.ws5d{word-spacing:17.162239pt;}
.ws14{word-spacing:26.509975pt;}
.ws3e{word-spacing:53.080733pt;}
.ws18{word-spacing:63.697306pt;}
._2{margin-left:-8.226654pt;}
._1{margin-left:-7.120035pt;}
._18{margin-left:-5.907552pt;}
._4{margin-left:-4.627493pt;}
._6{margin-left:-3.672613pt;}
._3{margin-left:-2.486398pt;}
._7{margin-left:-1.487748pt;}
._5{width:3.231900pt;}
._0{width:4.554041pt;}
._d{width:12.327057pt;}
._14{width:13.283467pt;}
._8{width:14.223887pt;}
._c{width:15.418904pt;}
._9{width:16.737168pt;}
._13{width:18.278050pt;}
._19{width:19.234460pt;}
._15{width:20.355117pt;}
._b{width:21.678618pt;}
._e{width:22.588270pt;}
._a{width:24.494713pt;}
._12{width:28.692288pt;}
._f{width:31.455249pt;}
._16{width:32.991285pt;}
._1a{width:34.802683pt;}
._17{width:36.768636pt;}
._1b{width:37.671911pt;}
._1c{width:39.797266pt;}
._11{width:53.133867pt;}
._10{width:63.761067pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:47.820800pt;}
.fs4{font-size:51.008533pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:73.452267pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:56.149333pt;}
.y2b{bottom:96.000000pt;}
.yd0{bottom:101.078667pt;}
.y73{bottom:109.082667pt;}
.y2a{bottom:109.284000pt;}
.y5b{bottom:110.545333pt;}
.y29{bottom:122.566667pt;}
.ycf{bottom:123.828000pt;}
.y5a{bottom:125.090667pt;}
.y28{bottom:127.645333pt;}
.yce{bottom:138.373333pt;}
.ya3{bottom:139.636000pt;}
.y27{bottom:145.689333pt;}
.y59{bottom:151.758667pt;}
.ycd{bottom:152.918667pt;}
.ya2{bottom:154.181333pt;}
.y26{bottom:160.234667pt;}
.ya1{bottom:168.726667pt;}
.ycc{bottom:174.034667pt;}
.y25{bottom:182.085333pt;}
.y58{bottom:184.457333pt;}
.ycb{bottom:188.580000pt;}
.ya0{bottom:190.578667pt;}
.y24{bottom:196.630667pt;}
.y57{bottom:199.002667pt;}
.y9f{bottom:205.124000pt;}
.yca{bottom:209.696000pt;}
.y23{bottom:211.176000pt;}
.y56{bottom:213.548000pt;}
.y9e{bottom:219.669333pt;}
.yc9{bottom:224.241333pt;}
.y22{bottom:225.722667pt;}
.y9d{bottom:234.214667pt;}
.y55{bottom:235.400000pt;}
.yc8{bottom:238.786667pt;}
.y21{bottom:240.268000pt;}
.y9c{bottom:248.760000pt;}
.y54{bottom:249.945333pt;}
.y20{bottom:254.813333pt;}
.yc7{bottom:259.902667pt;}
.y9b{bottom:263.305333pt;}
.y53{bottom:264.490667pt;}
.yc6{bottom:274.448000pt;}
.y9a{bottom:277.852000pt;}
.y52{bottom:279.036000pt;}
.y1f{bottom:285.386667pt;}
.yc5{bottom:288.993333pt;}
.y99{bottom:292.397333pt;}
.y51{bottom:293.581333pt;}
.y50{bottom:308.126667pt;}
.yc4{bottom:310.109333pt;}
.y98{bottom:314.248000pt;}
.y4f{bottom:322.672000pt;}
.y1e{bottom:323.000000pt;}
.yc3{bottom:324.654667pt;}
.y97{bottom:328.793333pt;}
.yc2{bottom:339.201333pt;}
.y96{bottom:343.338667pt;}
.y4e{bottom:344.524000pt;}
.y1d{bottom:352.278667pt;}
.yf2{bottom:354.005333pt;}
.y95{bottom:357.884000pt;}
.y4d{bottom:359.069333pt;}
.yc1{bottom:360.317333pt;}
.y1c{bottom:366.824000pt;}
.yf1{bottom:368.552000pt;}
.y94{bottom:372.429333pt;}
.y4c{bottom:373.614667pt;}
.yc0{bottom:374.862667pt;}
.y1b{bottom:381.369333pt;}
.yf0{bottom:383.097333pt;}
.y93{bottom:386.976000pt;}
.y4b{bottom:388.160000pt;}
.ybf{bottom:389.408000pt;}
.y1a{bottom:395.916000pt;}
.yef{bottom:397.642667pt;}
.y92{bottom:401.521333pt;}
.y4a{bottom:402.705333pt;}
.ybe{bottom:403.953333pt;}
.y19{bottom:410.461333pt;}
.y49{bottom:417.250667pt;}
.yee{bottom:417.501333pt;}
.y91{bottom:423.372000pt;}
.y18{bottom:425.006667pt;}
.yed{bottom:432.046667pt;}
.ybd{bottom:435.620000pt;}
.y90{bottom:437.917333pt;}
.y17{bottom:439.552000pt;}
.y48{bottom:443.918667pt;}
.yec{bottom:451.905333pt;}
.y8f{bottom:452.462667pt;}
.y16{bottom:454.097333pt;}
.y72{bottom:464.330667pt;}
.yeb{bottom:466.450667pt;}
.y8e{bottom:467.008000pt;}
.y15{bottom:468.642667pt;}
.ybc{bottom:474.892000pt;}
.y47{bottom:476.617333pt;}
.yea{bottom:480.996000pt;}
.y14{bottom:483.188000pt;}
.y8d{bottom:488.860000pt;}
.yba{bottom:489.437333pt;}
.y46{bottom:491.162667pt;}
.ybb{bottom:494.257333pt;}
.ye9{bottom:495.541333pt;}
.y71{bottom:496.209333pt;}
.y13{bottom:497.733333pt;}
.y8c{bottom:503.405333pt;}
.yb9{bottom:503.982667pt;}
.y45{bottom:513.014667pt;}
.ye8{bottom:515.401333pt;}
.y8b{bottom:517.950667pt;}
.y12{bottom:519.585333pt;}
.y44{bottom:527.560000pt;}
.ye7{bottom:529.946667pt;}
.y8a{bottom:532.496000pt;}
.yb8{bottom:535.649333pt;}
.y70{bottom:535.837333pt;}
.y43{bottom:542.105333pt;}
.y89{bottom:547.041333pt;}
.ye6{bottom:549.805333pt;}
.y6f{bottom:550.382667pt;}
.y42{bottom:556.650667pt;}
.y88{bottom:561.586667pt;}
.ye5{bottom:564.350667pt;}
.y6e{bottom:564.928000pt;}
.yb7{bottom:574.921333pt;}
.y87{bottom:576.133333pt;}
.y41{bottom:578.501333pt;}
.ye4{bottom:584.209333pt;}
.y6d{bottom:586.780000pt;}
.y11{bottom:588.788000pt;}
.yb6{bottom:589.466667pt;}
.y86{bottom:590.678667pt;}
.y40{bottom:593.046667pt;}
.ye3{bottom:598.754667pt;}
.y6c{bottom:601.325333pt;}
.y10{bottom:603.333333pt;}
.y3f{bottom:607.593333pt;}
.ye2{bottom:613.300000pt;}
.y6b{bottom:615.870667pt;}
.yf{bottom:617.878667pt;}
.yb5{bottom:621.133333pt;}
.y3e{bottom:622.138667pt;}
.y85{bottom:622.382667pt;}
.y6a{bottom:630.416000pt;}
.ye{bottom:632.424000pt;}
.ye1{bottom:633.158667pt;}
.y3d{bottom:636.684000pt;}
.y84{bottom:636.928000pt;}
.y69{bottom:644.961333pt;}
.yd{bottom:646.969333pt;}
.ye0{bottom:647.704000pt;}
.y3c{bottom:651.229333pt;}
.y68{bottom:659.506667pt;}
.yb4{bottom:660.405333pt;}
.yc{bottom:661.514667pt;}
.ydf{bottom:662.249333pt;}
.y67{bottom:674.052000pt;}
.yb3{bottom:674.950667pt;}
.yb{bottom:676.060000pt;}
.y3b{bottom:677.897333pt;}
.yde{bottom:682.109333pt;}
.y83{bottom:682.218667pt;}
.y66{bottom:688.597333pt;}
.yb2{bottom:689.496000pt;}
.ydd{bottom:696.654667pt;}
.y82{bottom:696.764000pt;}
.yb1{bottom:704.041333pt;}
.y65{bottom:710.449333pt;}
.y3a{bottom:710.596000pt;}
.y81{bottom:711.309333pt;}
.ya{bottom:713.632000pt;}
.ydc{bottom:716.513333pt;}
.y64{bottom:724.994667pt;}
.y39{bottom:725.141333pt;}
.y80{bottom:725.854667pt;}
.yb0{bottom:725.893333pt;}
.y9{bottom:728.177333pt;}
.ydb{bottom:731.058667pt;}
.y63{bottom:739.540000pt;}
.y7f{bottom:740.400000pt;}
.yaf{bottom:740.438667pt;}
.y7{bottom:742.722667pt;}
.yda{bottom:750.917333pt;}
.y62{bottom:754.085333pt;}
.yae{bottom:754.984000pt;}
.y38{bottom:756.010667pt;}
.y6{bottom:757.268000pt;}
.y7e{bottom:762.250667pt;}
.yd9{bottom:765.462667pt;}
.y61{bottom:768.630667pt;}
.yad{bottom:769.529333pt;}
.y5{bottom:771.813333pt;}
.y8{bottom:771.814667pt;}
.y7d{bottom:776.797333pt;}
.y60{bottom:783.176000pt;}
.yac{bottom:784.074667pt;}
.yd8{bottom:785.321333pt;}
.y4{bottom:786.360000pt;}
.y7c{bottom:791.342667pt;}
.y37{bottom:793.956000pt;}
.y5f{bottom:797.721333pt;}
.yd7{bottom:799.866667pt;}
.y3{bottom:800.905333pt;}
.yab{bottom:805.926667pt;}
.y36{bottom:808.501333pt;}
.y7b{bottom:813.193333pt;}
.yd6{bottom:814.412000pt;}
.yaa{bottom:820.472000pt;}
.y35{bottom:823.046667pt;}
.y5e{bottom:825.062667pt;}
.y7a{bottom:827.738667pt;}
.yd5{bottom:834.272000pt;}
.ya9{bottom:835.017333pt;}
.y34{bottom:837.592000pt;}
.y79{bottom:842.284000pt;}
.yd4{bottom:848.817333pt;}
.ya8{bottom:849.562667pt;}
.y33{bottom:852.137333pt;}
.y78{bottom:856.829333pt;}
.y5d{bottom:859.444000pt;}
.yd3{bottom:868.676000pt;}
.y77{bottom:871.374667pt;}
.ya7{bottom:871.413333pt;}
.y32{bottom:873.989333pt;}
.y2{bottom:881.728000pt;}
.yd2{bottom:883.221333pt;}
.y76{bottom:885.921333pt;}
.ya6{bottom:885.958667pt;}
.y31{bottom:888.534667pt;}
.yd1{bottom:897.766667pt;}
.y75{bottom:900.466667pt;}
.ya5{bottom:900.505333pt;}
.y30{bottom:903.080000pt;}
.y1{bottom:908.294667pt;}
.y74{bottom:915.012000pt;}
.ya4{bottom:915.050667pt;}
.y2f{bottom:917.625333pt;}
.y2e{bottom:932.170667pt;}
.y2d{bottom:946.716000pt;}
.y2c{bottom:997.990667pt;}
.h6{height:14.824448pt;}
.ha{height:26.588365pt;}
.h9{height:31.019462pt;}
.h4{height:32.836730pt;}
.h8{height:33.187635pt;}
.h2{height:36.874903pt;}
.h7{height:39.882547pt;}
.h5{height:44.250180pt;}
.h3{height:44.313645pt;}
.h1{height:76.574099pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:95.561333pt;}
.x30{left:100.512000pt;}
.x33{left:102.641333pt;}
.x31{left:107.153333pt;}
.x19{left:111.762667pt;}
.x35{left:112.870667pt;}
.x2d{left:115.280000pt;}
.x4{left:118.486667pt;}
.x1{left:120.150667pt;}
.x34{left:124.772000pt;}
.x2e{left:128.564000pt;}
.x2{left:134.588000pt;}
.x13{left:143.409333pt;}
.x23{left:154.970667pt;}
.x1a{left:156.720000pt;}
.x6{left:158.428000pt;}
.x24{left:161.612000pt;}
.x25{left:174.678667pt;}
.x26{left:187.962667pt;}
.x3{left:192.688000pt;}
.x5{left:200.246667pt;}
.x10{left:253.806667pt;}
.xe{left:287.878667pt;}
.x27{left:308.774667pt;}
.x28{left:315.416000pt;}
.x12{left:324.334667pt;}
.x15{left:325.890667pt;}
.x16{left:332.532000pt;}
.xf{left:334.469333pt;}
.x17{left:344.548000pt;}
.x18{left:351.189333pt;}
.xd{left:355.212000pt;}
.x32{left:364.801333pt;}
.x11{left:369.637333pt;}
.x1b{left:375.310667pt;}
.x1c{left:381.953333pt;}
.xa{left:389.186667pt;}
.x1d{left:393.506667pt;}
.x1e{left:400.148000pt;}
.x2f{left:404.678667pt;}
.x8{left:423.258667pt;}
.xc{left:466.686667pt;}
.x9{left:469.849333pt;}
.x7{left:501.377333pt;}
.xb{left:505.017333pt;}
.x2b{left:527.401333pt;}
.x2c{left:540.684000pt;}
.x29{left:659.252000pt;}
.x2a{left:665.893333pt;}
.x1f{left:689.396000pt;}
.x20{left:696.037333pt;}
.x21{left:708.045333pt;}
.x22{left:714.688000pt;}
}




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