
    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_9790dbcc4d660e4d7116939b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50c5dfc3a94ad8595f85d88a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_5ef4e90492fe2848af8bae77.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_12b5516c819b907098b7d29a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_93728a93d743cd6769fd10a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_bc1b49ad38fef51a4e3638ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_42b68a652b023a5079d95670.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_115c28312289f5b03bf6d50a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_b34a35c0241c4fb604ccbbba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_2fbc339075351e5088d28f00.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_08da96a0e4edad26c228f60c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.820000;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_7a7b1fab42cba99a117f86ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.645000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4607519a3a95097740b07bd9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.628000;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);}
.m15{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);}
.m10{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);}
.ma{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);}
.mc{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);}
.m5{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);}
.m4{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);}
.m13{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);}
.m8{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);}
.mf{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);}
.m11{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);}
.m2{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);}
.mb{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);}
.m7{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);}
.m16{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);}
.md{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m3{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);}
.m14{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);}
.me{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);}
.m12{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);}
.m17{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);}
.m1{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);}
.v5{vertical-align:-13.974000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:44.232000px;}
.v4{vertical-align:58.206000px;}
.v7{vertical-align:79.362000px;}
.v6{vertical-align:89.178000px;}
.v2{vertical-align:121.572000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000937px;}
.ls2c{letter-spacing:0.001050px;}
.ls20{letter-spacing:0.001520px;}
.lse{letter-spacing:0.001526px;}
.ls19{letter-spacing:0.001597px;}
.ls34{letter-spacing:0.002147px;}
.ls31{letter-spacing:0.002393px;}
.ls2b{letter-spacing:0.002605px;}
.lsd{letter-spacing:0.003162px;}
.ls16{letter-spacing:0.003710px;}
.lsf{letter-spacing:0.004249px;}
.ls39{letter-spacing:0.004259px;}
.ls15{letter-spacing:0.006298px;}
.ls36{letter-spacing:0.014490px;}
.lsb{letter-spacing:0.018369px;}
.ls5{letter-spacing:0.024352px;}
.ls8{letter-spacing:0.024873px;}
.ls37{letter-spacing:0.025440px;}
.ls1b{letter-spacing:0.026354px;}
.ls2e{letter-spacing:0.027108px;}
.ls38{letter-spacing:0.029825px;}
.ls7{letter-spacing:0.031894px;}
.ls30{letter-spacing:0.327273px;}
.ls25{letter-spacing:1.721542px;}
.ls2f{letter-spacing:1.767274px;}
.ls33{letter-spacing:1.832729px;}
.ls2{letter-spacing:2.356366px;}
.ls1{letter-spacing:2.984915px;}
.ls2d{letter-spacing:2.986059px;}
.ls9{letter-spacing:2.990915px;}
.ls1d{letter-spacing:3.796367px;}
.ls1f{letter-spacing:7.003642px;}
.ls14{letter-spacing:7.069097px;}
.ls28{letter-spacing:9.098189px;}
.ls1a{letter-spacing:10.865464px;}
.ls32{letter-spacing:10.930918px;}
.lsa{letter-spacing:14.530921px;}
.ls26{letter-spacing:14.532370px;}
.ls29{letter-spacing:17.534915px;}
.ls4{letter-spacing:18.130924px;}
.ls27{letter-spacing:18.184350px;}
.ls3{letter-spacing:18.196379px;}
.ls24{letter-spacing:18.208671px;}
.ls17{letter-spacing:20.749108px;}
.ls35{letter-spacing:21.163682px;}
.ls2a{letter-spacing:21.164915px;}
.ls10{letter-spacing:21.207290px;}
.ls18{letter-spacing:21.730927px;}
.ls6{letter-spacing:21.796382px;}
.ls11{letter-spacing:21.861836px;}
.ls1e{letter-spacing:21.992746px;}
.ls13{letter-spacing:22.058200px;}
.ls3a{letter-spacing:24.799682px;}
.ls22{letter-spacing:24.800915px;}
.ls23{letter-spacing:24.806915px;}
.ls21{letter-spacing:25.592749px;}
.ls12{letter-spacing:26.967295px;}
.ls3b{letter-spacing:28.930933px;}
.lsc{letter-spacing:32.727300px;}
.ls3c{letter-spacing:83.520445px;}
.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;}
}
.ws38{word-spacing:-79.985521px;}
.ws41{word-spacing:-50.923679px;}
.ws34{word-spacing:-47.323676px;}
.ws42{word-spacing:-47.258221px;}
.ws47{word-spacing:-36.379667px;}
.wsf{word-spacing:-32.727300px;}
.ws3e{word-spacing:-18.183288px;}
.ws24{word-spacing:-17.869106px;}
.ws1b{word-spacing:-16.429105px;}
.ws4b{word-spacing:-15.316376px;}
.ws45{word-spacing:-14.661830px;}
.ws14{word-spacing:-14.269103px;}
.ws1f{word-spacing:-13.614557px;}
.ws21{word-spacing:-13.483648px;}
.ws2c{word-spacing:-13.156375px;}
.ws18{word-spacing:-12.894556px;}
.ws19{word-spacing:-12.305465px;}
.ws31{word-spacing:-12.174556px;}
.ws35{word-spacing:-12.043646px;}
.wse{word-spacing:-11.978192px;}
.ws2b{word-spacing:-11.585464px;}
.ws2f{word-spacing:-11.454555px;}
.ws36{word-spacing:-11.323646px;}
.ws11{word-spacing:-11.258191px;}
.ws9{word-spacing:-11.192737px;}
.ws17{word-spacing:-11.127282px;}
.ws15{word-spacing:-11.061827px;}
.ws7{word-spacing:-10.996373px;}
.ws12{word-spacing:-10.930918px;}
.ws8{word-spacing:-10.865464px;}
.ws32{word-spacing:-10.800009px;}
.wsb{word-spacing:-10.734554px;}
.wsc{word-spacing:-10.669100px;}
.ws1a{word-spacing:-10.603645px;}
.ws1e{word-spacing:-10.538191px;}
.ws33{word-spacing:-10.472736px;}
.ws1d{word-spacing:-9.621826px;}
.ws20{word-spacing:-9.556372px;}
.ws3f{word-spacing:-9.294553px;}
.ws3a{word-spacing:-9.163644px;}
.ws4a{word-spacing:-9.098189px;}
.ws10{word-spacing:-8.901826px;}
.ws6{word-spacing:-8.640007px;}
.wsa{word-spacing:-7.592734px;}
.ws43{word-spacing:-7.527279px;}
.ws46{word-spacing:-6.938188px;}
.ws1c{word-spacing:-6.676369px;}
.wsd{word-spacing:-6.414551px;}
.ws4{word-spacing:-6.152732px;}
.ws30{word-spacing:-5.760005px;}
.ws23{word-spacing:-5.629096px;}
.ws3{word-spacing:-5.563641px;}
.ws22{word-spacing:-5.498186px;}
.ws5{word-spacing:-4.647277px;}
.ws3b{word-spacing:-3.665458px;}
.ws39{word-spacing:-3.600003px;}
.ws28{word-spacing:-0.065455px;}
.ws3d{word-spacing:-0.059776px;}
.ws27{word-spacing:-0.052364px;}
.ws16{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws29{word-spacing:3.613094px;}
.ws40{word-spacing:9.032735px;}
.ws26{word-spacing:10.800009px;}
.ws2d{word-spacing:10.865464px;}
.ws2{word-spacing:23.312640px;}
.ws1{word-spacing:23.384371px;}
.ws44{word-spacing:25.003657px;}
.ws25{word-spacing:25.069112px;}
.ws2a{word-spacing:29.061842px;}
.ws13{word-spacing:32.192873px;}
.ws37{word-spacing:32.727300px;}
.ws0{word-spacing:38.631358px;}
.ws48{word-spacing:73.887550px;}
.ws49{word-spacing:74.127550px;}
.ws3c{word-spacing:76.320064px;}
._19{margin-left:-17.639511px;}
._14{margin-left:-14.530921px;}
._2{margin-left:-9.709486px;}
._10{margin-left:-6.283642px;}
._9{margin-left:-5.224705px;}
._0{margin-left:-3.202064px;}
._3{margin-left:-1.936742px;}
._4{width:1.936742px;}
._12{width:3.730912px;}
._13{width:4.976641px;}
._11{width:7.225897px;}
._1a{width:10.903129px;}
._18{width:14.530921px;}
._17{width:18.114408px;}
._c{width:19.374562px;}
._b{width:20.421835px;}
._e{width:22.870551px;}
._16{width:24.688048px;}
._f{width:27.202218px;}
._6{width:28.249492px;}
._7{width:29.558584px;}
._15{width:35.214575px;}
._8{width:36.654576px;}
._a{width:40.242916px;}
._5{width:44.116400px;}
._d{width:46.725805px;}
._1{width:51.646200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.y64{bottom:108.000000px;}
.y63{bottom:128.323500px;}
.y43{bottom:131.634000px;}
.y85{bottom:140.521500px;}
.y42{bottom:151.957500px;}
.ybc{bottom:153.450000px;}
.y62{bottom:161.329500px;}
.y84{bottom:173.043000px;}
.ybb{bottom:173.773500px;}
.y1f{bottom:176.044500px;}
.y41{bottom:181.248000px;}
.y61{bottom:181.654500px;}
.yba{bottom:194.098500px;}
.y1e{bottom:196.368000px;}
.y40{bottom:201.571500px;}
.y83{bottom:205.564500px;}
.yb9{bottom:214.422000px;}
.y60{bottom:214.660500px;}
.y1d{bottom:216.691500px;}
.yb8{bottom:234.745500px;}
.y1c{bottom:237.015000px;}
.y82{bottom:238.086000px;}
.y3f{bottom:241.429500px;}
.y5f{bottom:247.666500px;}
.yb7{bottom:255.069000px;}
.y9f{bottom:256.008000px;}
.y1b{bottom:257.338500px;}
.y81{bottom:270.607500px;}
.y3e{bottom:287.521500px;}
.y5e{bottom:288.105000px;}
.yb6{bottom:289.698000px;}
.y1a{bottom:302.833500px;}
.y80{bottom:303.129000px;}
.y9e{bottom:303.231000px;}
.yb5{bottom:311.992500px;}
.y5d{bottom:322.566000px;}
.y7f{bottom:335.650500px;}
.y9d{bottom:337.005000px;}
.yb4{bottom:338.655000px;}
.y3d{bottom:348.046500px;}
.y5c{bottom:351.474000px;}
.y19{bottom:363.358500px;}
.y7e{bottom:368.172000px;}
.y3c{bottom:368.370000px;}
.y9c{bottom:370.777500px;}
.y5b{bottom:371.797500px;}
.y18{bottom:383.682000px;}
.yb3{bottom:388.269000px;}
.y5a{bottom:392.121000px;}
.y17{bottom:404.005500px;}
.yb2{bottom:408.592500px;}
.y7d{bottom:410.554500px;}
.y59{bottom:412.444500px;}
.y3b{bottom:413.865000px;}
.y9b{bottom:418.000500px;}
.y16{bottom:424.329000px;}
.yb1{bottom:428.916000px;}
.y7c{bottom:435.361500px;}
.y9a{bottom:438.324000px;}
.yb0{bottom:449.241000px;}
.y58{bottom:451.920000px;}
.y7b{bottom:460.168500px;}
.y99{bottom:467.614500px;}
.yaf{bottom:469.564500px;}
.y15{bottom:469.824000px;}
.y3a{bottom:474.388500px;}
.y7a{bottom:484.975500px;}
.yae{bottom:489.888000px;}
.y39{bottom:494.712000px;}
.y57{bottom:503.959500px;}
.y98{bottom:504.376500px;}
.y79{bottom:509.782500px;}
.y38{bottom:515.035500px;}
.y56{bottom:524.283000px;}
.y14{bottom:530.347500px;}
.y78{bottom:534.589500px;}
.y37{bottom:535.360500px;}
.yad{bottom:535.383000px;}
.y97{bottom:541.138500px;}
.y13{bottom:550.671000px;}
.y36{bottom:555.684000px;}
.y55{bottom:557.290500px;}
.y77{bottom:559.396500px;}
.y96{bottom:570.429000px;}
.y12{bottom:570.996000px;}
.y35{bottom:576.007500px;}
.y54{bottom:577.614000px;}
.y95{bottom:590.752500px;}
.y11{bottom:591.319500px;}
.y76{bottom:591.891000px;}
.yac{bottom:595.906500px;}
.y53{bottom:610.620000px;}
.y10{bottom:611.643000px;}
.yab{bottom:616.230000px;}
.y94{bottom:620.043000px;}
.y75{bottom:620.554500px;}
.y34{bottom:621.502500px;}
.yf{bottom:631.966500px;}
.yaa{bottom:636.553500px;}
.y74{bottom:640.878000px;}
.y52{bottom:643.626000px;}
.ye{bottom:652.290000px;}
.ya9{bottom:656.878500px;}
.y93{bottom:659.901000px;}
.y73{bottom:661.203000px;}
.yd{bottom:672.615000px;}
.y51{bottom:676.632000px;}
.y33{bottom:682.026000px;}
.yc{bottom:692.938500px;}
.y50{bottom:696.957000px;}
.y72{bottom:700.435500px;}
.y32{bottom:702.349500px;}
.ya8{bottom:702.372000px;}
.y92{bottom:712.089000px;}
.yb{bottom:713.262000px;}
.y31{bottom:722.674500px;}
.y4f{bottom:729.963000px;}
.ya{bottom:733.585500px;}
.y30{bottom:742.998000px;}
.y91{bottom:745.863000px;}
.y71{bottom:752.004000px;}
.y9{bottom:753.909000px;}
.ya7{bottom:762.897000px;}
.y4e{bottom:762.969000px;}
.y2f{bottom:763.321500px;}
.y8{bottom:774.234000px;}
.y2e{bottom:783.645000px;}
.y70{bottom:784.525500px;}
.y90{bottom:788.602500px;}
.ya6{bottom:796.669500px;}
.y4d{bottom:803.407500px;}
.y2d{bottom:803.968500px;}
.y6f{bottom:817.047000px;}
.y7{bottom:819.727500px;}
.y2c{bottom:824.293500px;}
.ya5{bottom:830.443500px;}
.y4c{bottom:837.870000px;}
.y8f{bottom:838.216500px;}
.y2b{bottom:844.617000px;}
.y6e{bottom:849.568500px;}
.y8e{bottom:858.540000px;}
.ya4{bottom:864.216000px;}
.y2a{bottom:864.940500px;}
.y4b{bottom:866.776500px;}
.y6d{bottom:882.090000px;}
.y29{bottom:885.264000px;}
.y4a{bottom:887.100000px;}
.y8d{bottom:887.830500px;}
.ya3{bottom:897.990000px;}
.y6{bottom:898.185000px;}
.y28{bottom:905.587500px;}
.y6c{bottom:914.611500px;}
.y49{bottom:926.574000px;}
.y8c{bottom:927.688500px;}
.ya2{bottom:931.764000px;}
.y5{bottom:943.639500px;}
.y27{bottom:951.082500px;}
.y6b{bottom:953.136000px;}
.y4{bottom:964.560000px;}
.ya1{bottom:965.536500px;}
.y6a{bottom:977.943000px;}
.y48{bottom:978.615000px;}
.y8b{bottom:979.029000px;}
.y3{bottom:985.482000px;}
.y89{bottom:996.115500px;}
.y47{bottom:998.938500px;}
.y8a{bottom:999.609000px;}
.ya0{bottom:1008.276000px;}
.y69{bottom:1009.528500px;}
.y26{bottom:1011.606000px;}
.y25{bottom:1031.931000px;}
.y68{bottom:1038.192000px;}
.y46{bottom:1039.377000px;}
.y2{bottom:1039.915500px;}
.y24{bottom:1052.254500px;}
.y88{bottom:1057.890000px;}
.y67{bottom:1058.517000px;}
.y45{bottom:1072.383000px;}
.y23{bottom:1072.578000px;}
.y1{bottom:1072.792500px;}
.y87{bottom:1078.215000px;}
.y66{bottom:1078.840500px;}
.y22{bottom:1092.901500px;}
.y86{bottom:1098.538500px;}
.y65{bottom:1099.164000px;}
.y44{bottom:1105.390500px;}
.y21{bottom:1138.396500px;}
.hc{height:26.970818px;}
.he{height:35.116950px;}
.h4{height:44.258150px;}
.h8{height:45.687311px;}
.h9{height:46.865494px;}
.hb{height:47.220780px;}
.h6{height:49.090950px;}
.h7{height:50.211840px;}
.h3{height:51.216077px;}
.h5{height:60.254040px;}
.hd{height:61.194780px;}
.h2{height:72.304680px;}
.h10{height:93.988950px;}
.ha{height:124.560780px;}
.hf{height:136.043494px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.086000px;}
.x7{left:108.000000px;}
.x1{left:125.868000px;}
.xb{left:127.999500px;}
.x1b{left:146.994000px;}
.xf{left:148.909500px;}
.x15{left:169.555500px;}
.x16{left:175.792500px;}
.x17{left:184.401000px;}
.x1c{left:199.023000px;}
.x1f{left:201.415500px;}
.x13{left:205.131000px;}
.x14{left:211.368000px;}
.x18{left:223.068000px;}
.x10{left:225.231000px;}
.x19{left:229.425000px;}
.x11{left:231.721500px;}
.xc{left:234.858000px;}
.xd{left:241.095000px;}
.xe{left:248.766000px;}
.x1a{left:252.978000px;}
.x12{left:255.315000px;}
.xa{left:264.930000px;}
.x2a{left:266.395500px;}
.x1d{left:276.780000px;}
.x20{left:298.264500px;}
.x2{left:300.420000px;}
.x2b{left:304.039500px;}
.x30{left:310.186500px;}
.x21{left:311.608500px;}
.x5{left:312.652500px;}
.x26{left:316.861500px;}
.x22{left:335.653500px;}
.x27{left:351.547500px;}
.x4{left:353.494500px;}
.x6{left:381.073500px;}
.x3{left:393.538500px;}
.x1e{left:432.348000px;}
.x8{left:442.366500px;}
.x2e{left:447.987000px;}
.x31{left:471.628500px;}
.x23{left:493.572000px;}
.x24{left:517.617000px;}
.x2f{left:542.668500px;}
.x28{left:559.507500px;}
.x29{left:572.464500px;}
.x2c{left:647.199000px;}
.x25{left:648.421500px;}
.x2d{left:741.763500px;}
@media print{
.v5{vertical-align:-12.421333pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:39.317333pt;}
.v4{vertical-align:51.738667pt;}
.v7{vertical-align:70.544000pt;}
.v6{vertical-align:79.269333pt;}
.v2{vertical-align:108.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000833pt;}
.ls2c{letter-spacing:0.000933pt;}
.ls20{letter-spacing:0.001351pt;}
.lse{letter-spacing:0.001357pt;}
.ls19{letter-spacing:0.001420pt;}
.ls34{letter-spacing:0.001908pt;}
.ls31{letter-spacing:0.002127pt;}
.ls2b{letter-spacing:0.002315pt;}
.lsd{letter-spacing:0.002811pt;}
.ls16{letter-spacing:0.003297pt;}
.lsf{letter-spacing:0.003777pt;}
.ls39{letter-spacing:0.003786pt;}
.ls15{letter-spacing:0.005598pt;}
.ls36{letter-spacing:0.012880pt;}
.lsb{letter-spacing:0.016328pt;}
.ls5{letter-spacing:0.021647pt;}
.ls8{letter-spacing:0.022110pt;}
.ls37{letter-spacing:0.022614pt;}
.ls1b{letter-spacing:0.023426pt;}
.ls2e{letter-spacing:0.024096pt;}
.ls38{letter-spacing:0.026511pt;}
.ls7{letter-spacing:0.028350pt;}
.ls30{letter-spacing:0.290909pt;}
.ls25{letter-spacing:1.530259pt;}
.ls2f{letter-spacing:1.570910pt;}
.ls33{letter-spacing:1.629092pt;}
.ls2{letter-spacing:2.094547pt;}
.ls1{letter-spacing:2.653258pt;}
.ls2d{letter-spacing:2.654275pt;}
.ls9{letter-spacing:2.658591pt;}
.ls1d{letter-spacing:3.374548pt;}
.ls1f{letter-spacing:6.225460pt;}
.ls14{letter-spacing:6.283642pt;}
.ls28{letter-spacing:8.087279pt;}
.ls1a{letter-spacing:9.658190pt;}
.ls32{letter-spacing:9.716372pt;}
.lsa{letter-spacing:12.916374pt;}
.ls26{letter-spacing:12.917662pt;}
.ls29{letter-spacing:15.586591pt;}
.ls4{letter-spacing:16.116377pt;}
.ls27{letter-spacing:16.163867pt;}
.ls3{letter-spacing:16.174559pt;}
.ls24{letter-spacing:16.185486pt;}
.ls17{letter-spacing:18.443652pt;}
.ls35{letter-spacing:18.812162pt;}
.ls2a{letter-spacing:18.813258pt;}
.ls10{letter-spacing:18.850925pt;}
.ls18{letter-spacing:19.316380pt;}
.ls6{letter-spacing:19.374562pt;}
.ls11{letter-spacing:19.432743pt;}
.ls1e{letter-spacing:19.549107pt;}
.ls13{letter-spacing:19.607289pt;}
.ls3a{letter-spacing:22.044162pt;}
.ls22{letter-spacing:22.045258pt;}
.ls23{letter-spacing:22.050591pt;}
.ls21{letter-spacing:22.749110pt;}
.ls12{letter-spacing:23.970929pt;}
.ls3b{letter-spacing:25.716385pt;}
.lsc{letter-spacing:29.090933pt;}
.ls3c{letter-spacing:74.240396pt;}
.ws38{word-spacing:-71.098241pt;}
.ws41{word-spacing:-45.265492pt;}
.ws34{word-spacing:-42.065490pt;}
.ws42{word-spacing:-42.007308pt;}
.ws47{word-spacing:-32.337481pt;}
.wsf{word-spacing:-29.090933pt;}
.ws3e{word-spacing:-16.162923pt;}
.ws24{word-spacing:-15.883650pt;}
.ws1b{word-spacing:-14.603649pt;}
.ws4b{word-spacing:-13.614557pt;}
.ws45{word-spacing:-13.032738pt;}
.ws14{word-spacing:-12.683647pt;}
.ws1f{word-spacing:-12.101828pt;}
.ws21{word-spacing:-11.985465pt;}
.ws2c{word-spacing:-11.694555pt;}
.ws18{word-spacing:-11.461828pt;}
.ws19{word-spacing:-10.938191pt;}
.ws31{word-spacing:-10.821827pt;}
.ws35{word-spacing:-10.705463pt;}
.wse{word-spacing:-10.647282pt;}
.ws2b{word-spacing:-10.298190pt;}
.ws2f{word-spacing:-10.181827pt;}
.ws36{word-spacing:-10.065463pt;}
.ws11{word-spacing:-10.007281pt;}
.ws9{word-spacing:-9.949099pt;}
.ws17{word-spacing:-9.890917pt;}
.ws15{word-spacing:-9.832735pt;}
.ws7{word-spacing:-9.774554pt;}
.ws12{word-spacing:-9.716372pt;}
.ws8{word-spacing:-9.658190pt;}
.ws32{word-spacing:-9.600008pt;}
.wsb{word-spacing:-9.541826pt;}
.wsc{word-spacing:-9.483644pt;}
.ws1a{word-spacing:-9.425462pt;}
.ws1e{word-spacing:-9.367281pt;}
.ws33{word-spacing:-9.309099pt;}
.ws1d{word-spacing:-8.552734pt;}
.ws20{word-spacing:-8.494553pt;}
.ws3f{word-spacing:-8.261825pt;}
.ws3a{word-spacing:-8.145461pt;}
.ws4a{word-spacing:-8.087279pt;}
.ws10{word-spacing:-7.912734pt;}
.ws6{word-spacing:-7.680006pt;}
.wsa{word-spacing:-6.749097pt;}
.ws43{word-spacing:-6.690915pt;}
.ws46{word-spacing:-6.167278pt;}
.ws1c{word-spacing:-5.934550pt;}
.wsd{word-spacing:-5.701823pt;}
.ws4{word-spacing:-5.469095pt;}
.ws30{word-spacing:-5.120004pt;}
.ws23{word-spacing:-5.003641pt;}
.ws3{word-spacing:-4.945459pt;}
.ws22{word-spacing:-4.887277pt;}
.ws5{word-spacing:-4.130913pt;}
.ws3b{word-spacing:-3.258185pt;}
.ws39{word-spacing:-3.200003pt;}
.ws28{word-spacing:-0.058182pt;}
.ws3d{word-spacing:-0.053134pt;}
.ws27{word-spacing:-0.046545pt;}
.ws16{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws29{word-spacing:3.211639pt;}
.ws40{word-spacing:8.029098pt;}
.ws26{word-spacing:9.600008pt;}
.ws2d{word-spacing:9.658190pt;}
.ws2{word-spacing:20.722347pt;}
.ws1{word-spacing:20.786108pt;}
.ws44{word-spacing:22.225473pt;}
.ws25{word-spacing:22.283655pt;}
.ws2a{word-spacing:25.832749pt;}
.ws13{word-spacing:28.615887pt;}
.ws37{word-spacing:29.090933pt;}
.ws0{word-spacing:34.338985pt;}
.ws48{word-spacing:65.677822pt;}
.ws49{word-spacing:65.891156pt;}
.ws3c{word-spacing:67.840057pt;}
._19{margin-left:-15.679565pt;}
._14{margin-left:-12.916374pt;}
._2{margin-left:-8.630654pt;}
._10{margin-left:-5.585459pt;}
._9{margin-left:-4.644182pt;}
._0{margin-left:-2.846279pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._12{width:3.316366pt;}
._13{width:4.423681pt;}
._11{width:6.423020pt;}
._1a{width:9.691670pt;}
._18{width:12.916374pt;}
._17{width:16.101696pt;}
._c{width:17.221833pt;}
._b{width:18.152742pt;}
._e{width:20.329379pt;}
._16{width:21.944931pt;}
._f{width:24.179749pt;}
._6{width:25.110659pt;}
._7{width:26.274297pt;}
._15{width:31.301844pt;}
._8{width:32.581845pt;}
._a{width:35.771481pt;}
._5{width:39.214578pt;}
._d{width:41.534049pt;}
._1{width:45.907733pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.y64{bottom:96.000000pt;}
.y63{bottom:114.065333pt;}
.y43{bottom:117.008000pt;}
.y85{bottom:124.908000pt;}
.y42{bottom:135.073333pt;}
.ybc{bottom:136.400000pt;}
.y62{bottom:143.404000pt;}
.y84{bottom:153.816000pt;}
.ybb{bottom:154.465333pt;}
.y1f{bottom:156.484000pt;}
.y41{bottom:161.109333pt;}
.y61{bottom:161.470667pt;}
.yba{bottom:172.532000pt;}
.y1e{bottom:174.549333pt;}
.y40{bottom:179.174667pt;}
.y83{bottom:182.724000pt;}
.yb9{bottom:190.597333pt;}
.y60{bottom:190.809333pt;}
.y1d{bottom:192.614667pt;}
.yb8{bottom:208.662667pt;}
.y1c{bottom:210.680000pt;}
.y82{bottom:211.632000pt;}
.y3f{bottom:214.604000pt;}
.y5f{bottom:220.148000pt;}
.yb7{bottom:226.728000pt;}
.y9f{bottom:227.562667pt;}
.y1b{bottom:228.745333pt;}
.y81{bottom:240.540000pt;}
.y3e{bottom:255.574667pt;}
.y5e{bottom:256.093333pt;}
.yb6{bottom:257.509333pt;}
.y1a{bottom:269.185333pt;}
.y80{bottom:269.448000pt;}
.y9e{bottom:269.538667pt;}
.yb5{bottom:277.326667pt;}
.y5d{bottom:286.725333pt;}
.y7f{bottom:298.356000pt;}
.y9d{bottom:299.560000pt;}
.yb4{bottom:301.026667pt;}
.y3d{bottom:309.374667pt;}
.y5c{bottom:312.421333pt;}
.y19{bottom:322.985333pt;}
.y7e{bottom:327.264000pt;}
.y3c{bottom:327.440000pt;}
.y9c{bottom:329.580000pt;}
.y5b{bottom:330.486667pt;}
.y18{bottom:341.050667pt;}
.yb3{bottom:345.128000pt;}
.y5a{bottom:348.552000pt;}
.y17{bottom:359.116000pt;}
.yb2{bottom:363.193333pt;}
.y7d{bottom:364.937333pt;}
.y59{bottom:366.617333pt;}
.y3b{bottom:367.880000pt;}
.y9b{bottom:371.556000pt;}
.y16{bottom:377.181333pt;}
.yb1{bottom:381.258667pt;}
.y7c{bottom:386.988000pt;}
.y9a{bottom:389.621333pt;}
.yb0{bottom:399.325333pt;}
.y58{bottom:401.706667pt;}
.y7b{bottom:409.038667pt;}
.y99{bottom:415.657333pt;}
.yaf{bottom:417.390667pt;}
.y15{bottom:417.621333pt;}
.y3a{bottom:421.678667pt;}
.y7a{bottom:431.089333pt;}
.yae{bottom:435.456000pt;}
.y39{bottom:439.744000pt;}
.y57{bottom:447.964000pt;}
.y98{bottom:448.334667pt;}
.y79{bottom:453.140000pt;}
.y38{bottom:457.809333pt;}
.y56{bottom:466.029333pt;}
.y14{bottom:471.420000pt;}
.y78{bottom:475.190667pt;}
.y37{bottom:475.876000pt;}
.yad{bottom:475.896000pt;}
.y97{bottom:481.012000pt;}
.y13{bottom:489.485333pt;}
.y36{bottom:493.941333pt;}
.y55{bottom:495.369333pt;}
.y77{bottom:497.241333pt;}
.y96{bottom:507.048000pt;}
.y12{bottom:507.552000pt;}
.y35{bottom:512.006667pt;}
.y54{bottom:513.434667pt;}
.y95{bottom:525.113333pt;}
.y11{bottom:525.617333pt;}
.y76{bottom:526.125333pt;}
.yac{bottom:529.694667pt;}
.y53{bottom:542.773333pt;}
.y10{bottom:543.682667pt;}
.yab{bottom:547.760000pt;}
.y94{bottom:551.149333pt;}
.y75{bottom:551.604000pt;}
.y34{bottom:552.446667pt;}
.yf{bottom:561.748000pt;}
.yaa{bottom:565.825333pt;}
.y74{bottom:569.669333pt;}
.y52{bottom:572.112000pt;}
.ye{bottom:579.813333pt;}
.ya9{bottom:583.892000pt;}
.y93{bottom:586.578667pt;}
.y73{bottom:587.736000pt;}
.yd{bottom:597.880000pt;}
.y51{bottom:601.450667pt;}
.y33{bottom:606.245333pt;}
.yc{bottom:615.945333pt;}
.y50{bottom:619.517333pt;}
.y72{bottom:622.609333pt;}
.y32{bottom:624.310667pt;}
.ya8{bottom:624.330667pt;}
.y92{bottom:632.968000pt;}
.yb{bottom:634.010667pt;}
.y31{bottom:642.377333pt;}
.y4f{bottom:648.856000pt;}
.ya{bottom:652.076000pt;}
.y30{bottom:660.442667pt;}
.y91{bottom:662.989333pt;}
.y71{bottom:668.448000pt;}
.y9{bottom:670.141333pt;}
.ya7{bottom:678.130667pt;}
.y4e{bottom:678.194667pt;}
.y2f{bottom:678.508000pt;}
.y8{bottom:688.208000pt;}
.y2e{bottom:696.573333pt;}
.y70{bottom:697.356000pt;}
.y90{bottom:700.980000pt;}
.ya6{bottom:708.150667pt;}
.y4d{bottom:714.140000pt;}
.y2d{bottom:714.638667pt;}
.y6f{bottom:726.264000pt;}
.y7{bottom:728.646667pt;}
.y2c{bottom:732.705333pt;}
.ya5{bottom:738.172000pt;}
.y4c{bottom:744.773333pt;}
.y8f{bottom:745.081333pt;}
.y2b{bottom:750.770667pt;}
.y6e{bottom:755.172000pt;}
.y8e{bottom:763.146667pt;}
.ya4{bottom:768.192000pt;}
.y2a{bottom:768.836000pt;}
.y4b{bottom:770.468000pt;}
.y6d{bottom:784.080000pt;}
.y29{bottom:786.901333pt;}
.y4a{bottom:788.533333pt;}
.y8d{bottom:789.182667pt;}
.ya3{bottom:798.213333pt;}
.y6{bottom:798.386667pt;}
.y28{bottom:804.966667pt;}
.y6c{bottom:812.988000pt;}
.y49{bottom:823.621333pt;}
.y8c{bottom:824.612000pt;}
.ya2{bottom:828.234667pt;}
.y5{bottom:838.790667pt;}
.y27{bottom:845.406667pt;}
.y6b{bottom:847.232000pt;}
.y4{bottom:857.386667pt;}
.ya1{bottom:858.254667pt;}
.y6a{bottom:869.282667pt;}
.y48{bottom:869.880000pt;}
.y8b{bottom:870.248000pt;}
.y3{bottom:875.984000pt;}
.y89{bottom:885.436000pt;}
.y47{bottom:887.945333pt;}
.y8a{bottom:888.541333pt;}
.ya0{bottom:896.245333pt;}
.y69{bottom:897.358667pt;}
.y26{bottom:899.205333pt;}
.y25{bottom:917.272000pt;}
.y68{bottom:922.837333pt;}
.y46{bottom:923.890667pt;}
.y2{bottom:924.369333pt;}
.y24{bottom:935.337333pt;}
.y88{bottom:940.346667pt;}
.y67{bottom:940.904000pt;}
.y45{bottom:953.229333pt;}
.y23{bottom:953.402667pt;}
.y1{bottom:953.593333pt;}
.y87{bottom:958.413333pt;}
.y66{bottom:958.969333pt;}
.y22{bottom:971.468000pt;}
.y86{bottom:976.478667pt;}
.y65{bottom:977.034667pt;}
.y44{bottom:982.569333pt;}
.y21{bottom:1011.908000pt;}
.hc{height:23.974061pt;}
.he{height:31.215067pt;}
.h4{height:39.340578pt;}
.h8{height:40.610943pt;}
.h9{height:41.658217pt;}
.hb{height:41.974027pt;}
.h6{height:43.636400pt;}
.h7{height:44.632747pt;}
.h3{height:45.525402pt;}
.h5{height:53.559147pt;}
.hd{height:54.395360pt;}
.h2{height:64.270827pt;}
.h10{height:83.545733pt;}
.ha{height:110.720693pt;}
.hf{height:120.927550pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.298667pt;}
.x7{left:96.000000pt;}
.x1{left:111.882667pt;}
.xb{left:113.777333pt;}
.x1b{left:130.661333pt;}
.xf{left:132.364000pt;}
.x15{left:150.716000pt;}
.x16{left:156.260000pt;}
.x17{left:163.912000pt;}
.x1c{left:176.909333pt;}
.x1f{left:179.036000pt;}
.x13{left:182.338667pt;}
.x14{left:187.882667pt;}
.x18{left:198.282667pt;}
.x10{left:200.205333pt;}
.x19{left:203.933333pt;}
.x11{left:205.974667pt;}
.xc{left:208.762667pt;}
.xd{left:214.306667pt;}
.xe{left:221.125333pt;}
.x1a{left:224.869333pt;}
.x12{left:226.946667pt;}
.xa{left:235.493333pt;}
.x2a{left:236.796000pt;}
.x1d{left:246.026667pt;}
.x20{left:265.124000pt;}
.x2{left:267.040000pt;}
.x2b{left:270.257333pt;}
.x30{left:275.721333pt;}
.x21{left:276.985333pt;}
.x5{left:277.913333pt;}
.x26{left:281.654667pt;}
.x22{left:298.358667pt;}
.x27{left:312.486667pt;}
.x4{left:314.217333pt;}
.x6{left:338.732000pt;}
.x3{left:349.812000pt;}
.x1e{left:384.309333pt;}
.x8{left:393.214667pt;}
.x2e{left:398.210667pt;}
.x31{left:419.225333pt;}
.x23{left:438.730667pt;}
.x24{left:460.104000pt;}
.x2f{left:482.372000pt;}
.x28{left:497.340000pt;}
.x29{left:508.857333pt;}
.x2c{left:575.288000pt;}
.x25{left:576.374667pt;}
.x2d{left:659.345333pt;}
}




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