
    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_a230bf3d36015501708b510a.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_41ac6226423722c28e3d33d2.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_9dd77a7a385fd721d25019e2.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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ff34401f98fd5d5b6e71cb6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0730e9192c0e206dff43cf0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_45ffe154f949a510103b39cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.514000;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_f02d84f09762135f14803410.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.488000;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;}
.m4{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);}
.m9{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);}
.md{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.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);}
.m11{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);}
.m14{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);}
.me{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);}
.ma{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);}
.m1c{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);}
.m6{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);}
.m5{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);}
.m3{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);}
.m1b{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);}
.mb{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);}
.m13{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);}
.m1f{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);}
.m8{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);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m1e{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);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m18{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);}
.m15{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);}
.mc{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);}
.m1{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);}
.m10{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:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000800px;}
.ls5{letter-spacing:0.001952px;}
.ls9{letter-spacing:1.275394px;}
.lsf{letter-spacing:1.398845px;}
.ls2{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.998354px;}
.lsb{letter-spacing:3.531945px;}
.ls3{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lsc{letter-spacing:13.134471px;}
.lsa{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.ls11{letter-spacing:15.826871px;}
.lsd{letter-spacing:16.944518px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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:-14.355754px;}
.ws47{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws34{word-spacing:-2.749678px;}
.ws5{word-spacing:-1.908367px;}
.ws4{word-spacing:-1.322630px;}
.ws51{word-spacing:-1.129766px;}
.ws66{word-spacing:-1.075968px;}
.ws1a{word-spacing:-1.016185px;}
.ws2d{word-spacing:-0.956410px;}
.ws35{word-spacing:-0.896634px;}
.ws4f{word-spacing:-0.860774px;}
.ws52{word-spacing:-0.645581px;}
.ws25{word-spacing:-0.478205px;}
.ws56{word-spacing:-0.322790px;}
.ws14{word-spacing:-0.298878px;}
.ws20{word-spacing:-0.239102px;}
.ws44{word-spacing:-0.215194px;}
.ws2f{word-spacing:-0.179327px;}
.ws63{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.059776px;}
.ws45{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.001682px;}
.ws0{word-spacing:0.000000px;}
.ws43{word-spacing:0.053798px;}
.ws17{word-spacing:0.059776px;}
.ws5a{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.ws48{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws4a{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws54{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws21{word-spacing:0.298878px;}
.ws4d{word-spacing:0.322790px;}
.ws4b{word-spacing:0.376589px;}
.ws3a{word-spacing:0.537980px;}
.ws1c{word-spacing:0.717307px;}
.ws30{word-spacing:0.836858px;}
.ws61{word-spacing:0.968371px;}
.ws38{word-spacing:1.075961px;}
.ws3c{word-spacing:1.494390px;}
.ws3d{word-spacing:1.554166px;}
.ws5f{word-spacing:1.667750px;}
.ws2e{word-spacing:1.673717px;}
.ws1e{word-spacing:1.733492px;}
.ws64{word-spacing:1.829146px;}
.ws32{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws5e{word-spacing:2.151936px;}
.ws39{word-spacing:2.689902px;}
.ws57{word-spacing:2.743718px;}
.ws2b{word-spacing:2.809453px;}
.ws53{word-spacing:3.205584px;}
.ws5c{word-spacing:3.222307px;}
.ws42{word-spacing:3.224822px;}
.ws59{word-spacing:3.227904px;}
.ws1d{word-spacing:3.347434px;}
.ws27{word-spacing:3.706087px;}
.ws33{word-spacing:3.885414px;}
.ws26{word-spacing:4.124516px;}
.ws41{word-spacing:4.519066px;}
.ws28{word-spacing:4.602721px;}
.ws3b{word-spacing:4.722272px;}
.ws3e{word-spacing:4.782048px;}
.ws31{word-spacing:4.841824px;}
.ws2c{word-spacing:4.961375px;}
.ws18{word-spacing:5.499355px;}
.ws15{word-spacing:5.559131px;}
.ws11{word-spacing:6.067206px;}
.ws36{word-spacing:6.097111px;}
.ws12{word-spacing:6.150892px;}
.ws68{word-spacing:6.455808px;}
.ws37{word-spacing:6.515540px;}
.wsf{word-spacing:8.661460px;}
.ws3f{word-spacing:10.006502px;}
.ws29{word-spacing:11.903055px;}
.ws40{word-spacing:11.997043px;}
.ws50{word-spacing:12.259659px;}
.ws5d{word-spacing:13.387459px;}
.ws5b{word-spacing:13.390550px;}
.ws60{word-spacing:13.390906px;}
.ws46{word-spacing:13.395504px;}
.ws67{word-spacing:13.395802px;}
.ws62{word-spacing:13.397558px;}
.ws4c{word-spacing:13.765781px;}
.ws19{word-spacing:14.612223px;}
.ws65{word-spacing:15.224947px;}
.ws6{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.ws55{word-spacing:16.618810px;}
.ws69{word-spacing:16.621373px;}
.ws49{word-spacing:16.622218px;}
.ws4e{word-spacing:16.623706px;}
.wse{word-spacing:17.699504px;}
.ws16{word-spacing:20.455606px;}
.ws58{word-spacing:25.285248px;}
.ws10{word-spacing:27.448877px;}
._d{margin-left:-19.941190px;}
._0{margin-left:-11.943245px;}
._19{margin-left:-7.854566px;}
._1{margin-left:-6.660461px;}
._6{margin-left:-5.397721px;}
._7{margin-left:-3.849538px;}
._1a{margin-left:-2.597054px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._2{width:2.992595px;}
._c{width:4.008589px;}
._8{width:12.968429px;}
._a{width:14.277565px;}
._16{width:15.800030px;}
._15{width:17.435203px;}
._e{width:18.649987px;}
._11{width:20.204153px;}
._f{width:21.937645px;}
._1c{width:23.213187px;}
._17{width:24.388445px;}
._9{width:25.946136px;}
._10{width:28.042324px;}
._18{width:30.724658px;}
._b{width:32.637384px;}
._1b{width:61.868160px;}
._3{width:69.349096px;}
._14{width:107.596080px;}
._12{width:718.338227px;}
._13{width:2532.194700px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(56,126,127);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:15.335228px;}
.y50{bottom:31.890000px;}
.y87{bottom:100.401000px;}
.y25{bottom:102.823500px;}
.y4f{bottom:103.621500px;}
.y86{bottom:119.230500px;}
.y24{bottom:120.711000px;}
.yba{bottom:122.386500px;}
.y4e{bottom:122.449500px;}
.y85{bottom:138.060000px;}
.y23{bottom:138.600000px;}
.yb9{bottom:139.647000px;}
.y4d{bottom:141.279000px;}
.y22{bottom:156.487500px;}
.y84{bottom:156.889500px;}
.yb8{bottom:156.907500px;}
.y4c{bottom:160.108500px;}
.yb7{bottom:174.168000px;}
.y21{bottom:174.375000px;}
.y83{bottom:175.719000px;}
.y4b{bottom:178.938000px;}
.yb6{bottom:191.428500px;}
.y20{bottom:192.264000px;}
.y82{bottom:194.548500px;}
.y4a{bottom:197.767500px;}
.yb5{bottom:208.689000px;}
.y1f{bottom:210.151500px;}
.y81{bottom:213.378000px;}
.y49{bottom:216.597000px;}
.yb4{bottom:225.949500px;}
.y1e{bottom:228.039000px;}
.y80{bottom:232.207500px;}
.y48{bottom:235.426500px;}
.yb3{bottom:243.208500px;}
.y7f{bottom:251.037000px;}
.y47{bottom:254.256000px;}
.yb2{bottom:260.469000px;}
.y7e{bottom:269.866500px;}
.y46{bottom:273.085500px;}
.yb1{bottom:277.729500px;}
.y7d{bottom:288.694500px;}
.y45{bottom:291.915000px;}
.yb0{bottom:294.990000px;}
.y1d{bottom:307.299000px;}
.y7c{bottom:307.524000px;}
.y44{bottom:310.744500px;}
.yaf{bottom:312.250500px;}
.y1c{bottom:325.186500px;}
.y7b{bottom:326.353500px;}
.yae{bottom:329.511000px;}
.y43{bottom:329.574000px;}
.y1b{bottom:343.074000px;}
.y7a{bottom:345.183000px;}
.yad{bottom:346.771500px;}
.y42{bottom:348.403500px;}
.y1a{bottom:360.963000px;}
.y79{bottom:364.012500px;}
.yac{bottom:364.032000px;}
.y41{bottom:367.233000px;}
.yab{bottom:381.291000px;}
.y78{bottom:382.842000px;}
.y40{bottom:386.062500px;}
.yaa{bottom:398.551500px;}
.y19{bottom:399.024000px;}
.y77{bottom:401.671500px;}
.y3f{bottom:404.892000px;}
.ya9{bottom:415.812000px;}
.y18{bottom:416.913000px;}
.y76{bottom:420.501000px;}
.y3e{bottom:423.721500px;}
.ya8{bottom:433.072500px;}
.y17{bottom:434.800500px;}
.y75{bottom:439.330500px;}
.y3d{bottom:442.551000px;}
.ya7{bottom:450.333000px;}
.y74{bottom:458.160000px;}
.y3c{bottom:461.380500px;}
.ya6{bottom:467.593500px;}
.y16{bottom:470.622000px;}
.y73{bottom:476.989500px;}
.y3b{bottom:480.210000px;}
.ya5{bottom:484.854000px;}
.y15{bottom:488.509500px;}
.y72{bottom:495.819000px;}
.y3a{bottom:499.039500px;}
.ya4{bottom:502.114500px;}
.y14{bottom:506.397000px;}
.y71{bottom:514.648500px;}
.y39{bottom:517.869000px;}
.ya3{bottom:519.375000px;}
.y13{bottom:524.286000px;}
.y70{bottom:533.478000px;}
.y38{bottom:536.698500px;}
.ya2{bottom:541.117500px;}
.y12{bottom:542.173500px;}
.y6f{bottom:552.307500px;}
.y37{bottom:555.528000px;}
.y11{bottom:560.061000px;}
.y6e{bottom:571.137000px;}
.y36{bottom:574.357500px;}
.ya1{bottom:574.741500px;}
.y10{bottom:577.950000px;}
.y6d{bottom:589.966500px;}
.y35{bottom:593.187000px;}
.yf{bottom:595.837500px;}
.ya0{bottom:601.282500px;}
.y6c{bottom:608.796000px;}
.y34{bottom:612.016500px;}
.ye{bottom:613.725000px;}
.y9f{bottom:618.856500px;}
.y6b{bottom:627.625500px;}
.y33{bottom:630.844500px;}
.yd{bottom:631.614000px;}
.y9e{bottom:645.397500px;}
.y6a{bottom:646.455000px;}
.yc{bottom:649.501500px;}
.y69{bottom:665.284500px;}
.y9{bottom:671.872464px;}
.y9d{bottom:671.937000px;}
.y68{bottom:684.114000px;}
.y9c{bottom:698.478000px;}
.y67{bottom:702.943500px;}
.y32{bottom:703.602000px;}
.y31{bottom:719.742000px;}
.y66{bottom:721.773000px;}
.y9b{bottom:725.019000px;}
.y30{bottom:740.221500px;}
.y65{bottom:740.602500px;}
.y9a{bottom:751.558500px;}
.y2f{bottom:756.360000px;}
.y64{bottom:759.432000px;}
.y2e{bottom:768.160500px;}
.y99{bottom:769.132500px;}
.y63{bottom:778.261500px;}
.y98{bottom:786.708000px;}
.y2d{bottom:788.640000px;}
.y62{bottom:797.089500px;}
.y2c{bottom:800.439000px;}
.y61{bottom:815.919000px;}
.y2b{bottom:820.918500px;}
.y97{bottom:822.214500px;}
.y2a{bottom:832.719000px;}
.y60{bottom:834.748500px;}
.y96{bottom:841.044000px;}
.y29{bottom:853.197000px;}
.y5f{bottom:858.061500px;}
.y95{bottom:859.873500px;}
.y28{bottom:864.997500px;}
.y5e{bottom:876.891000px;}
.y94{bottom:878.703000px;}
.yc6{bottom:880.272000px;}
.y27{bottom:881.137500px;}
.y5d{bottom:895.720500px;}
.y93{bottom:897.532500px;}
.y26{bottom:901.617000px;}
.y5c{bottom:914.550000px;}
.yc5{bottom:914.793000px;}
.y92{bottom:916.362000px;}
.yc4{bottom:932.052000px;}
.y5b{bottom:933.379500px;}
.y91{bottom:935.191500px;}
.y8{bottom:938.814000px;}
.yc3{bottom:949.312500px;}
.y5a{bottom:952.209000px;}
.y90{bottom:954.021000px;}
.yc2{bottom:966.573000px;}
.y59{bottom:971.038500px;}
.y8f{bottom:972.849000px;}
.yc1{bottom:983.833500px;}
.y7{bottom:984.711000px;}
.y8e{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.yc0{bottom:1001.094000px;}
.y8d{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.ybf{bottom:1018.354500px;}
.y8c{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.ybe{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y8b{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.ybd{bottom:1052.875500px;}
.y8a{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y54{bottom:1069.669500px;}
.ybc{bottom:1070.134500px;}
.y89{bottom:1085.826000px;}
.ybb{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y88{bottom:1104.655500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.hf{height:35.052500px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h13{height:39.434227px;}
.h12{height:43.038432px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h14{height:43.902512px;}
.h2{height:50.930649px;}
.h6{height:54.405312px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:213.066811px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.710756px;}
.x47{left:86.272500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x1f{left:251.898000px;}
.x6{left:271.221000px;}
.x20{left:275.181000px;}
.x8{left:282.786000px;}
.x3b{left:286.770000px;}
.x3c{left:294.241500px;}
.x15{left:296.556000px;}
.x3d{left:298.053000px;}
.x9{left:299.962500px;}
.x16{left:304.029000px;}
.xa{left:307.434000px;}
.x3e{left:312.996000px;}
.x25{left:315.087000px;}
.x26{left:322.558500px;}
.x27{left:326.280000px;}
.x41{left:339.772500px;}
.x28{left:341.224500px;}
.x29{left:344.944500px;}
.x42{left:354.715500px;}
.x2a{left:359.889000px;}
.x46{left:373.732500px;}
.x2d{left:387.522000px;}
.x45{left:399.517500px;}
.x2e{left:402.466500px;}
.x17{left:415.353000px;}
.x2b{left:420.457500px;}
.x18{left:422.826000px;}
.x2c{left:427.929000px;}
.xf{left:448.044000px;}
.x10{left:455.515500px;}
.x3f{left:514.060500px;}
.x35{left:517.252500px;}
.x36{left:524.724000px;}
.x37{left:528.534000px;}
.x38{left:536.007000px;}
.x19{left:547.855500px;}
.x40{left:551.569500px;}
.x1a{left:555.328500px;}
.x21{left:557.233500px;}
.x1b{left:559.138500px;}
.x22{left:564.705000px;}
.x1c{left:566.611500px;}
.x23{left:568.366500px;}
.x24{left:575.838000px;}
.x11{left:584.095500px;}
.xb{left:587.166000px;}
.x12{left:591.567000px;}
.xc{left:594.637500px;}
.xd{left:598.449000px;}
.xe{left:605.920500px;}
.x2f{left:623.179500px;}
.x30{left:630.652500px;}
.x31{left:634.417500px;}
.x32{left:641.890500px;}
.x33{left:645.655500px;}
.x34{left:653.127000px;}
.x39{left:662.487000px;}
.x43{left:666.531000px;}
.x3a{left:669.958500px;}
.x44{left:674.002500px;}
.x4a{left:686.601000px;}
.x4b{left:713.500500px;}
.x13{left:732.886500px;}
.x14{left:740.358000px;}
.x1d{left:769.276500px;}
.x1e{left:776.749500px;}
.x4c{left:788.797500px;}
.x48{left:810.390000px;}
.x4d{left:815.695500px;}
.x49{left:837.289500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000711pt;}
.ls5{letter-spacing:0.001735pt;}
.ls9{letter-spacing:1.133683pt;}
.lsf{letter-spacing:1.243418pt;}
.ls2{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.665203pt;}
.lsb{letter-spacing:3.139507pt;}
.ls3{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lsc{letter-spacing:11.675085pt;}
.lsa{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.ls11{letter-spacing:14.068329pt;}
.lsd{letter-spacing:15.061793pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws2{word-spacing:-12.760670pt;}
.ws47{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws34{word-spacing:-2.444158pt;}
.ws5{word-spacing:-1.696326pt;}
.ws4{word-spacing:-1.175671pt;}
.ws51{word-spacing:-1.004237pt;}
.ws66{word-spacing:-0.956416pt;}
.ws1a{word-spacing:-0.903276pt;}
.ws2d{word-spacing:-0.850142pt;}
.ws35{word-spacing:-0.797008pt;}
.ws4f{word-spacing:-0.765133pt;}
.ws52{word-spacing:-0.573850pt;}
.ws25{word-spacing:-0.425071pt;}
.ws56{word-spacing:-0.286925pt;}
.ws14{word-spacing:-0.265669pt;}
.ws20{word-spacing:-0.212535pt;}
.ws44{word-spacing:-0.191283pt;}
.ws2f{word-spacing:-0.159402pt;}
.ws63{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws45{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.001495pt;}
.ws0{word-spacing:0.000000pt;}
.ws43{word-spacing:0.047821pt;}
.ws17{word-spacing:0.053134pt;}
.ws5a{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.ws48{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws4a{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws54{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws21{word-spacing:0.265669pt;}
.ws4d{word-spacing:0.286925pt;}
.ws4b{word-spacing:0.334746pt;}
.ws3a{word-spacing:0.478205pt;}
.ws1c{word-spacing:0.637606pt;}
.ws30{word-spacing:0.743874pt;}
.ws61{word-spacing:0.860774pt;}
.ws38{word-spacing:0.956410pt;}
.ws3c{word-spacing:1.328347pt;}
.ws3d{word-spacing:1.381481pt;}
.ws5f{word-spacing:1.482445pt;}
.ws2e{word-spacing:1.487748pt;}
.ws1e{word-spacing:1.540882pt;}
.ws64{word-spacing:1.625907pt;}
.ws32{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws5e{word-spacing:1.912832pt;}
.ws39{word-spacing:2.391024pt;}
.ws57{word-spacing:2.438861pt;}
.ws2b{word-spacing:2.497292pt;}
.ws53{word-spacing:2.849408pt;}
.ws5c{word-spacing:2.864273pt;}
.ws42{word-spacing:2.866509pt;}
.ws59{word-spacing:2.869248pt;}
.ws1d{word-spacing:2.975497pt;}
.ws27{word-spacing:3.294300pt;}
.ws33{word-spacing:3.453701pt;}
.ws26{word-spacing:3.666237pt;}
.ws41{word-spacing:4.016947pt;}
.ws28{word-spacing:4.091308pt;}
.ws3b{word-spacing:4.197575pt;}
.ws3e{word-spacing:4.250709pt;}
.ws31{word-spacing:4.303843pt;}
.ws2c{word-spacing:4.410111pt;}
.ws18{word-spacing:4.888316pt;}
.ws15{word-spacing:4.941450pt;}
.ws11{word-spacing:5.393072pt;}
.ws36{word-spacing:5.419654pt;}
.ws12{word-spacing:5.467459pt;}
.ws68{word-spacing:5.738496pt;}
.ws37{word-spacing:5.791591pt;}
.wsf{word-spacing:7.699075pt;}
.ws3f{word-spacing:8.894669pt;}
.ws29{word-spacing:10.580493pt;}
.ws40{word-spacing:10.664038pt;}
.ws50{word-spacing:10.897475pt;}
.ws5d{word-spacing:11.899964pt;}
.ws5b{word-spacing:11.902711pt;}
.ws60{word-spacing:11.903027pt;}
.ws46{word-spacing:11.907115pt;}
.ws67{word-spacing:11.907379pt;}
.ws62{word-spacing:11.908941pt;}
.ws4c{word-spacing:12.236250pt;}
.ws19{word-spacing:12.988643pt;}
.ws65{word-spacing:13.533286pt;}
.ws6{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.ws55{word-spacing:14.772275pt;}
.ws69{word-spacing:14.774554pt;}
.ws49{word-spacing:14.775305pt;}
.ws4e{word-spacing:14.776627pt;}
.wse{word-spacing:15.732893pt;}
.ws16{word-spacing:18.182761pt;}
.ws58{word-spacing:22.475776pt;}
.ws10{word-spacing:24.399002pt;}
._d{margin-left:-17.725502pt;}
._0{margin-left:-10.616218pt;}
._19{margin-left:-6.981837pt;}
._1{margin-left:-5.920410pt;}
._6{margin-left:-4.797974pt;}
._7{margin-left:-3.421811pt;}
._1a{margin-left:-2.308493pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._2{width:2.660084pt;}
._c{width:3.563190pt;}
._8{width:11.527492pt;}
._a{width:12.691169pt;}
._16{width:14.044471pt;}
._15{width:15.497958pt;}
._e{width:16.577766pt;}
._11{width:17.959247pt;}
._f{width:19.500129pt;}
._1c{width:20.633944pt;}
._17{width:21.678618pt;}
._9{width:23.063232pt;}
._10{width:24.926510pt;}
._18{width:27.310807pt;}
._b{width:29.011008pt;}
._1b{width:54.993920pt;}
._3{width:61.643641pt;}
._14{width:95.640960pt;}
._12{width:638.522868pt;}
._13{width:2250.839733pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:13.631314pt;}
.y50{bottom:28.346667pt;}
.y87{bottom:89.245333pt;}
.y25{bottom:91.398667pt;}
.y4f{bottom:92.108000pt;}
.y86{bottom:105.982667pt;}
.y24{bottom:107.298667pt;}
.yba{bottom:108.788000pt;}
.y4e{bottom:108.844000pt;}
.y85{bottom:122.720000pt;}
.y23{bottom:123.200000pt;}
.yb9{bottom:124.130667pt;}
.y4d{bottom:125.581333pt;}
.y22{bottom:139.100000pt;}
.y84{bottom:139.457333pt;}
.yb8{bottom:139.473333pt;}
.y4c{bottom:142.318667pt;}
.yb7{bottom:154.816000pt;}
.y21{bottom:155.000000pt;}
.y83{bottom:156.194667pt;}
.y4b{bottom:159.056000pt;}
.yb6{bottom:170.158667pt;}
.y20{bottom:170.901333pt;}
.y82{bottom:172.932000pt;}
.y4a{bottom:175.793333pt;}
.yb5{bottom:185.501333pt;}
.y1f{bottom:186.801333pt;}
.y81{bottom:189.669333pt;}
.y49{bottom:192.530667pt;}
.yb4{bottom:200.844000pt;}
.y1e{bottom:202.701333pt;}
.y80{bottom:206.406667pt;}
.y48{bottom:209.268000pt;}
.yb3{bottom:216.185333pt;}
.y7f{bottom:223.144000pt;}
.y47{bottom:226.005333pt;}
.yb2{bottom:231.528000pt;}
.y7e{bottom:239.881333pt;}
.y46{bottom:242.742667pt;}
.yb1{bottom:246.870667pt;}
.y7d{bottom:256.617333pt;}
.y45{bottom:259.480000pt;}
.yb0{bottom:262.213333pt;}
.y1d{bottom:273.154667pt;}
.y7c{bottom:273.354667pt;}
.y44{bottom:276.217333pt;}
.yaf{bottom:277.556000pt;}
.y1c{bottom:289.054667pt;}
.y7b{bottom:290.092000pt;}
.yae{bottom:292.898667pt;}
.y43{bottom:292.954667pt;}
.y1b{bottom:304.954667pt;}
.y7a{bottom:306.829333pt;}
.yad{bottom:308.241333pt;}
.y42{bottom:309.692000pt;}
.y1a{bottom:320.856000pt;}
.y79{bottom:323.566667pt;}
.yac{bottom:323.584000pt;}
.y41{bottom:326.429333pt;}
.yab{bottom:338.925333pt;}
.y78{bottom:340.304000pt;}
.y40{bottom:343.166667pt;}
.yaa{bottom:354.268000pt;}
.y19{bottom:354.688000pt;}
.y77{bottom:357.041333pt;}
.y3f{bottom:359.904000pt;}
.ya9{bottom:369.610667pt;}
.y18{bottom:370.589333pt;}
.y76{bottom:373.778667pt;}
.y3e{bottom:376.641333pt;}
.ya8{bottom:384.953333pt;}
.y17{bottom:386.489333pt;}
.y75{bottom:390.516000pt;}
.y3d{bottom:393.378667pt;}
.ya7{bottom:400.296000pt;}
.y74{bottom:407.253333pt;}
.y3c{bottom:410.116000pt;}
.ya6{bottom:415.638667pt;}
.y16{bottom:418.330667pt;}
.y73{bottom:423.990667pt;}
.y3b{bottom:426.853333pt;}
.ya5{bottom:430.981333pt;}
.y15{bottom:434.230667pt;}
.y72{bottom:440.728000pt;}
.y3a{bottom:443.590667pt;}
.ya4{bottom:446.324000pt;}
.y14{bottom:450.130667pt;}
.y71{bottom:457.465333pt;}
.y39{bottom:460.328000pt;}
.ya3{bottom:461.666667pt;}
.y13{bottom:466.032000pt;}
.y70{bottom:474.202667pt;}
.y38{bottom:477.065333pt;}
.ya2{bottom:480.993333pt;}
.y12{bottom:481.932000pt;}
.y6f{bottom:490.940000pt;}
.y37{bottom:493.802667pt;}
.y11{bottom:497.832000pt;}
.y6e{bottom:507.677333pt;}
.y36{bottom:510.540000pt;}
.ya1{bottom:510.881333pt;}
.y10{bottom:513.733333pt;}
.y6d{bottom:524.414667pt;}
.y35{bottom:527.277333pt;}
.yf{bottom:529.633333pt;}
.ya0{bottom:534.473333pt;}
.y6c{bottom:541.152000pt;}
.y34{bottom:544.014667pt;}
.ye{bottom:545.533333pt;}
.y9f{bottom:550.094667pt;}
.y6b{bottom:557.889333pt;}
.y33{bottom:560.750667pt;}
.yd{bottom:561.434667pt;}
.y9e{bottom:573.686667pt;}
.y6a{bottom:574.626667pt;}
.yc{bottom:577.334667pt;}
.y69{bottom:591.364000pt;}
.y9{bottom:597.219968pt;}
.y9d{bottom:597.277333pt;}
.y68{bottom:608.101333pt;}
.y9c{bottom:620.869333pt;}
.y67{bottom:624.838667pt;}
.y32{bottom:625.424000pt;}
.y31{bottom:639.770667pt;}
.y66{bottom:641.576000pt;}
.y9b{bottom:644.461333pt;}
.y30{bottom:657.974667pt;}
.y65{bottom:658.313333pt;}
.y9a{bottom:668.052000pt;}
.y2f{bottom:672.320000pt;}
.y64{bottom:675.050667pt;}
.y2e{bottom:682.809333pt;}
.y99{bottom:683.673333pt;}
.y63{bottom:691.788000pt;}
.y98{bottom:699.296000pt;}
.y2d{bottom:701.013333pt;}
.y62{bottom:708.524000pt;}
.y2c{bottom:711.501333pt;}
.y61{bottom:725.261333pt;}
.y2b{bottom:729.705333pt;}
.y97{bottom:730.857333pt;}
.y2a{bottom:740.194667pt;}
.y60{bottom:741.998667pt;}
.y96{bottom:747.594667pt;}
.y29{bottom:758.397333pt;}
.y5f{bottom:762.721333pt;}
.y95{bottom:764.332000pt;}
.y28{bottom:768.886667pt;}
.y5e{bottom:779.458667pt;}
.y94{bottom:781.069333pt;}
.yc6{bottom:782.464000pt;}
.y27{bottom:783.233333pt;}
.y5d{bottom:796.196000pt;}
.y93{bottom:797.806667pt;}
.y26{bottom:801.437333pt;}
.y5c{bottom:812.933333pt;}
.yc5{bottom:813.149333pt;}
.y92{bottom:814.544000pt;}
.yc4{bottom:828.490667pt;}
.y5b{bottom:829.670667pt;}
.y91{bottom:831.281333pt;}
.y8{bottom:834.501333pt;}
.yc3{bottom:843.833333pt;}
.y5a{bottom:846.408000pt;}
.y90{bottom:848.018667pt;}
.yc2{bottom:859.176000pt;}
.y59{bottom:863.145333pt;}
.y8f{bottom:864.754667pt;}
.yc1{bottom:874.518667pt;}
.y7{bottom:875.298667pt;}
.y8e{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.yc0{bottom:889.861333pt;}
.y8d{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.ybf{bottom:905.204000pt;}
.y8c{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.ybe{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y8b{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.ybd{bottom:935.889333pt;}
.y8a{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y54{bottom:950.817333pt;}
.ybc{bottom:951.230667pt;}
.y89{bottom:965.178667pt;}
.ybb{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y88{bottom:981.916000pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.hf{height:31.157778pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h13{height:35.052646pt;}
.h12{height:38.256384pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h14{height:39.024455pt;}
.h2{height:45.271688pt;}
.h6{height:48.360277pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:189.392721pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.298450pt;}
.x47{left:76.686667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x1f{left:223.909333pt;}
.x6{left:241.085333pt;}
.x20{left:244.605333pt;}
.x8{left:251.365333pt;}
.x3b{left:254.906667pt;}
.x3c{left:261.548000pt;}
.x15{left:263.605333pt;}
.x3d{left:264.936000pt;}
.x9{left:266.633333pt;}
.x16{left:270.248000pt;}
.xa{left:273.274667pt;}
.x3e{left:278.218667pt;}
.x25{left:280.077333pt;}
.x26{left:286.718667pt;}
.x27{left:290.026667pt;}
.x41{left:302.020000pt;}
.x28{left:303.310667pt;}
.x29{left:306.617333pt;}
.x42{left:315.302667pt;}
.x2a{left:319.901333pt;}
.x46{left:332.206667pt;}
.x2d{left:344.464000pt;}
.x45{left:355.126667pt;}
.x2e{left:357.748000pt;}
.x17{left:369.202667pt;}
.x2b{left:373.740000pt;}
.x18{left:375.845333pt;}
.x2c{left:380.381333pt;}
.xf{left:398.261333pt;}
.x10{left:404.902667pt;}
.x3f{left:456.942667pt;}
.x35{left:459.780000pt;}
.x36{left:466.421333pt;}
.x37{left:469.808000pt;}
.x38{left:476.450667pt;}
.x19{left:486.982667pt;}
.x40{left:490.284000pt;}
.x1a{left:493.625333pt;}
.x21{left:495.318667pt;}
.x1b{left:497.012000pt;}
.x22{left:501.960000pt;}
.x1c{left:503.654667pt;}
.x23{left:505.214667pt;}
.x24{left:511.856000pt;}
.x11{left:519.196000pt;}
.xb{left:521.925333pt;}
.x12{left:525.837333pt;}
.xc{left:528.566667pt;}
.xd{left:531.954667pt;}
.xe{left:538.596000pt;}
.x2f{left:553.937333pt;}
.x30{left:560.580000pt;}
.x31{left:563.926667pt;}
.x32{left:570.569333pt;}
.x33{left:573.916000pt;}
.x34{left:580.557333pt;}
.x39{left:588.877333pt;}
.x43{left:592.472000pt;}
.x3a{left:595.518667pt;}
.x44{left:599.113333pt;}
.x4a{left:610.312000pt;}
.x4b{left:634.222667pt;}
.x13{left:651.454667pt;}
.x14{left:658.096000pt;}
.x1d{left:683.801333pt;}
.x1e{left:690.444000pt;}
.x4c{left:701.153333pt;}
.x48{left:720.346667pt;}
.x4d{left:725.062667pt;}
.x49{left:744.257333pt;}
}




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