
    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_6a945f289f9afb0a8a88ad3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_b1dadd0ff290f25f727277f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_0c2508c83b01c369ff1fdc38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_d8b4171757d7a09bc4876c6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_54fac3b7d628c874338f1de7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_9ed8126856b531b0b3a05fe5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_9b2383d878253bf6bb54d619.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_ec34571bef74c4b8e17c7252.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_699e5478d04944dbf378b771.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7ba34b3c5b9a07306fca7c5c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3a130b7a89fdcc6c361dc586.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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:ff12;src:url('chunks/assets/font_a35fa1065ad6cebb36796536.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.954102;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:ff13;src:url('chunks/assets/font_17b4c86a6a1119a0b9b96c1d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.758789;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:ff14;src:url('chunks/assets/font_de26031f1f14eeec14c5eb4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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:ff15;src:url('chunks/assets/font_bd159c4397264dc7ce7ecdcc.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.401855;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:ff16;src:url('chunks/assets/font_d3a9715c3918c0a10b6fea89.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.973633;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:ff17;src:url('chunks/assets/font_3f80b66ade9305e7393eb448.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:18.180000px;}
.ls30{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.137400px;}
.lsc{letter-spacing:-0.127200px;}
.ls13{letter-spacing:-0.097800px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015120px;}
.lse{letter-spacing:0.020880px;}
.ls5{letter-spacing:0.031680px;}
.ls7{letter-spacing:0.052560px;}
.ls20{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.234000px;}
.ls25{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.302400px;}
.ls6{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.385800px;}
.ls15{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.532800px;}
.ls27{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.558000px;}
.ls12{letter-spacing:0.624000px;}
.ls10{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.670320px;}
.ls2c{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.116000px;}
.ls17{letter-spacing:1.152000px;}
.ls11{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.278000px;}
.ls14{letter-spacing:1.314000px;}
.ls28{letter-spacing:1.386000px;}
.ls16{letter-spacing:1.458000px;}
.ls1e{letter-spacing:5.868000px;}
.ls1d{letter-spacing:20.268000px;}
.ls1a{letter-spacing:21.708000px;}
.ls19{letter-spacing:22.428000px;}
.ls1b{letter-spacing:23.868000px;}
.ls1c{letter-spacing:25.308000px;}
.ls18{letter-spacing:29.628000px;}
.ls2f{letter-spacing:55.386000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws7{word-spacing:-14.992560px;}
.ws9{word-spacing:-14.958600px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.802600px;}
.ws1c{word-spacing:-14.724000px;}
.ws10{word-spacing:-14.472000px;}
.wse{word-spacing:-14.328000px;}
.ws11{word-spacing:-14.166000px;}
.ws1f{word-spacing:-14.130000px;}
.ws1e{word-spacing:-14.004000px;}
.ws21{word-spacing:-13.932000px;}
.ws22{word-spacing:-13.896000px;}
.wsb{word-spacing:-13.771200px;}
.ws1d{word-spacing:-13.716000px;}
.wsf{word-spacing:-13.446000px;}
.ws17{word-spacing:-13.302000px;}
.ws19{word-spacing:-13.266000px;}
.ws1a{word-spacing:-13.230000px;}
.ws15{word-spacing:-13.194000px;}
.ws0{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.068000px;}
.wsc{word-spacing:-13.049400px;}
.ws1b{word-spacing:-13.014000px;}
.ws12{word-spacing:-12.834000px;}
.ws16{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.726000px;}
.ws18{word-spacing:-12.690000px;}
.ws5{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws20{word-spacing:-8.496000px;}
.wsa{word-spacing:0.000000px;}
._23{margin-left:-3.888000px;}
._2{margin-left:-2.182800px;}
._1{margin-left:-1.167120px;}
._0{width:1.169040px;}
._4{width:2.254800px;}
._8{width:3.553680px;}
._3{width:4.789920px;}
._5{width:5.802720px;}
._b{width:6.938640px;}
._9{width:7.958400px;}
._10{width:9.890640px;}
._7{width:10.945920px;}
._19{width:11.961600px;}
._1a{width:14.121600px;}
._a{width:15.252720px;}
._17{width:16.834800px;}
._20{width:17.898720px;}
._d{width:19.035600px;}
._6{width:20.417760px;}
._24{width:21.424800px;}
._1b{width:22.639920px;}
._16{width:23.749680px;}
._13{width:24.832560px;}
._26{width:25.998000px;}
._f{width:27.286560px;}
._e{width:28.301760px;}
._c{width:29.864880px;}
._1e{width:31.052880px;}
._25{width:32.076000px;}
._21{width:33.337920px;}
._18{width:34.530720px;}
._11{width:35.556720px;}
._14{width:37.478880px;}
._2d{width:39.373440px;}
._12{width:40.613760px;}
._27{width:42.606000px;}
._28{width:43.794000px;}
._29{width:46.170000px;}
._2a{width:47.322960px;}
._31{width:48.816000px;}
._15{width:50.503440px;}
._22{width:54.132720px;}
._1f{width:55.393680px;}
._2e{width:57.626640px;}
._32{width:61.956000px;}
._30{width:63.879120px;}
._2f{width:64.967760px;}
._2b{width:69.589920px;}
._2c{width:70.614720px;}
._33{width:71.621280px;}
._1c{width:72.708720px;}
._1d{width:99.981600px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsa{font-size:2.880000px;}
.fs3{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fsd{font-size:45.360000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.y50{bottom:-10.830000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:1.605000px;}
.y14{bottom:1.620000px;}
.yf{bottom:1.800000px;}
.y1a{bottom:1.980000px;}
.y26{bottom:2.340000px;}
.y1c{bottom:3.060000px;}
.y21{bottom:3.240000px;}
.y23{bottom:3.420000px;}
.y20{bottom:4.500000px;}
.y1e{bottom:4.680000px;}
.y3f{bottom:6.465000px;}
.y41{bottom:6.645000px;}
.y46{bottom:6.660000px;}
.y44{bottom:6.690000px;}
.y4f{bottom:10.230000px;}
.y3e{bottom:10.245000px;}
.y3c{bottom:10.425000px;}
.y38{bottom:10.965000px;}
.y54{bottom:11.700000px;}
.y55{bottom:13.680000px;}
.y12{bottom:13.860000px;}
.y18{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y56{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.y17{bottom:19.260000px;}
.y87{bottom:21.600000px;}
.y37{bottom:34.005000px;}
.y4e{bottom:34.710000px;}
.y86{bottom:36.900000px;}
.y11{bottom:41.940000px;}
.y8{bottom:45.540000px;}
.y16{bottom:47.340000px;}
.y57{bottom:47.520000px;}
.yc{bottom:53.280000px;}
.y36{bottom:57.045000px;}
.y4d{bottom:58.110000px;}
.y3{bottom:58.320000px;}
.y53{bottom:63.720000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y35{bottom:80.085000px;}
.y4c{bottom:81.150000px;}
.y34{bottom:103.125000px;}
.y4b{bottom:104.730000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.yac{bottom:122.040000px;}
.y49{bottom:125.100000px;}
.y33{bottom:125.985000px;}
.y84{bottom:130.320000px;}
.yab{bottom:145.080000px;}
.y48{bottom:148.140000px;}
.y32{bottom:149.070000px;}
.y83{bottom:153.180000px;}
.yaa{bottom:167.940000px;}
.y47{bottom:171.000000px;}
.y31{bottom:172.110000px;}
.y82{bottom:176.220000px;}
.y45{bottom:183.060000px;}
.ya9{bottom:190.980000px;}
.y30{bottom:195.150000px;}
.y81{bottom:199.260000px;}
.y43{bottom:202.500000px;}
.ya8{bottom:214.050000px;}
.y2f{bottom:218.190000px;}
.y42{bottom:221.985000px;}
.y80{bottom:222.330000px;}
.ya7{bottom:237.090000px;}
.y2e{bottom:241.230000px;}
.y40{bottom:241.425000px;}
.y7f{bottom:245.370000px;}
.ya6{bottom:260.130000px;}
.y3d{bottom:260.865000px;}
.y2d{bottom:264.090000px;}
.y7e{bottom:268.410000px;}
.y3b{bottom:280.125000px;}
.ya5{bottom:283.170000px;}
.y2c{bottom:287.130000px;}
.y7d{bottom:291.270000px;}
.y39{bottom:300.105000px;}
.ya4{bottom:306.030000px;}
.y27{bottom:306.765000px;}
.y2b{bottom:310.170000px;}
.y7c{bottom:314.310000px;}
.ya3{bottom:329.070000px;}
.y2a{bottom:333.210000px;}
.y7b{bottom:337.350000px;}
.ya2{bottom:352.110000px;}
.y29{bottom:356.250000px;}
.y7a{bottom:360.390000px;}
.ya1{bottom:375.150000px;}
.y28{bottom:379.140000px;}
.y79{bottom:383.430000px;}
.ya0{bottom:398.190000px;}
.y78{bottom:406.470000px;}
.y9f{bottom:421.230000px;}
.y77{bottom:429.330000px;}
.y9e{bottom:444.135000px;}
.y76{bottom:452.415000px;}
.y9d{bottom:467.175000px;}
.y75{bottom:475.455000px;}
.y9c{bottom:490.215000px;}
.y74{bottom:498.495000px;}
.y9b{bottom:513.255000px;}
.y73{bottom:521.535000px;}
.y9a{bottom:527.475000px;}
.y99{bottom:542.955000px;}
.y72{bottom:544.575000px;}
.y98{bottom:558.255000px;}
.y71{bottom:567.435000px;}
.y97{bottom:573.555000px;}
.ybf{bottom:587.955000px;}
.y96{bottom:588.855000px;}
.y70{bottom:590.475000px;}
.y95{bottom:604.155000px;}
.ybe{bottom:610.995000px;}
.y6f{bottom:613.515000px;}
.y94{bottom:619.635000px;}
.ybd{bottom:634.035000px;}
.y93{bottom:634.935000px;}
.y6e{bottom:636.555000px;}
.y92{bottom:650.235000px;}
.ybc{bottom:656.895000px;}
.y6d{bottom:659.595000px;}
.y91{bottom:665.535000px;}
.ybb{bottom:677.445000px;}
.y90{bottom:681.045000px;}
.y6c{bottom:682.485000px;}
.y8f{bottom:696.345000px;}
.y25{bottom:697.965000px;}
.y6b{bottom:705.525000px;}
.y24{bottom:708.225000px;}
.y8e{bottom:711.645000px;}
.yba{bottom:721.005000px;}
.y22{bottom:723.705000px;}
.y8d{bottom:726.945000px;}
.y6a{bottom:728.565000px;}
.y1f{bottom:740.625000px;}
.y8c{bottom:742.245000px;}
.yb9{bottom:743.865000px;}
.y69{bottom:751.605000px;}
.y8b{bottom:757.725000px;}
.y1d{bottom:758.985000px;}
.yb8{bottom:766.905000px;}
.y8a{bottom:773.025000px;}
.y68{bottom:774.645000px;}
.y1b{bottom:776.085000px;}
.y89{bottom:788.325000px;}
.yb7{bottom:789.945000px;}
.y19{bottom:791.385000px;}
.y67{bottom:797.685000px;}
.y15{bottom:799.665000px;}
.y85{bottom:804.345000px;}
.yb6{bottom:812.985000px;}
.y66{bottom:820.545000px;}
.yb5{bottom:833.325000px;}
.y88{bottom:838.185000px;}
.y65{bottom:843.585000px;}
.yb4{bottom:853.845000px;}
.y13{bottom:855.825000px;}
.y10{bottom:865.005000px;}
.y64{bottom:866.625000px;}
.yb3{bottom:876.885000px;}
.y63{bottom:889.665000px;}
.yb2{bottom:899.925000px;}
.y62{bottom:912.750000px;}
.ye{bottom:921.030000px;}
.yb1{bottom:923.010000px;}
.yb{bottom:927.870000px;}
.y61{bottom:935.790000px;}
.yb0{bottom:945.870000px;}
.y60{bottom:958.650000px;}
.yaf{bottom:966.390000px;}
.y5f{bottom:981.690000px;}
.yae{bottom:986.910000px;}
.y5e{bottom:1004.730000px;}
.yad{bottom:1009.770000px;}
.ya{bottom:1013.550000px;}
.y5d{bottom:1027.770000px;}
.y4{bottom:1030.290000px;}
.y4a{bottom:1035.000000px;}
.y5c{bottom:1050.810000px;}
.y5b{bottom:1073.850000px;}
.y5a{bottom:1096.710000px;}
.y59{bottom:1119.750000px;}
.y58{bottom:1142.790000px;}
.y52{bottom:1161.000000px;}
.y51{bottom:1185.840000px;}
.h2f{height:2.005313px;}
.h23{height:6.645000px;}
.ha{height:6.825000px;}
.h13{height:8.280000px;}
.he{height:9.180000px;}
.h1f{height:10.260000px;}
.h3c{height:15.285000px;}
.h15{height:15.300000px;}
.h3d{height:15.465000px;}
.h1d{height:15.480000px;}
.h3b{height:15.510000px;}
.hb{height:16.091367px;}
.h24{height:16.543828px;}
.h1b{height:16.920000px;}
.h17{height:17.100000px;}
.h34{height:17.640000px;}
.h18{height:18.360000px;}
.h27{height:19.245000px;}
.h2a{height:19.425000px;}
.h2d{height:19.440000px;}
.h2c{height:19.476000px;}
.h25{height:19.965000px;}
.h14{height:21.055781px;}
.hf{height:22.975313px;}
.h11{height:23.980781px;}
.h28{height:27.071719px;}
.h20{height:27.228516px;}
.h35{height:27.898500px;}
.h2{height:28.798500px;}
.h26{height:29.145586px;}
.h3a{height:31.500000px;}
.h3f{height:31.585078px;}
.h37{height:34.684453px;}
.h2b{height:40.472227px;}
.h1e{height:40.842773px;}
.h22{height:40.869141px;}
.h29{height:41.610234px;}
.h3e{height:42.366094px;}
.h16{height:44.820000px;}
.hd{height:44.860781px;}
.h1c{height:45.199336px;}
.h1a{height:45.695391px;}
.h12{height:47.286943px;}
.h39{height:49.140000px;}
.h19{height:50.100469px;}
.h4{height:50.597578px;}
.h32{height:54.000000px;}
.h7{height:54.457031px;}
.h38{height:55.503491px;}
.hc{height:56.002500px;}
.h33{height:56.084062px;}
.h10{height:56.160000px;}
.h9{height:57.051211px;}
.h3{height:58.651172px;}
.h31{height:63.180000px;}
.h5{height:70.664062px;}
.h8{height:71.265000px;}
.h36{height:72.562500px;}
.h2e{height:97.056000px;}
.h30{height:122.040000px;}
.h6{height:124.590000px;}
.h21{height:391.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w15{width:53.805000px;}
.w17{width:94.500000px;}
.w1b{width:94.521000px;}
.w16{width:101.181000px;}
.w4{width:101.329500px;}
.w1a{width:108.036000px;}
.w19{width:108.165000px;}
.w13{width:114.829500px;}
.w9{width:154.429500px;}
.w18{width:202.575000px;}
.w8{width:230.415000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:444.664500px;}
.w14{width:506.430000px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x17{left:6.465000px;}
.x24{left:10.080000px;}
.x1e{left:11.340000px;}
.xa{left:17.085000px;}
.x2b{left:19.260000px;}
.x1f{left:20.325000px;}
.x2d{left:22.860000px;}
.x25{left:26.850000px;}
.x19{left:32.565000px;}
.xe{left:38.370000px;}
.x2a{left:39.585000px;}
.x2e{left:41.385000px;}
.x2c{left:43.020000px;}
.x28{left:44.280000px;}
.x27{left:46.830000px;}
.x29{left:50.250000px;}
.x22{left:65.370000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x1c{left:117.750000px;}
.x15{left:122.025000px;}
.x1a{left:143.445000px;}
.x16{left:164.385000px;}
.x4{left:173.370000px;}
.x6{left:209.385000px;}
.xf{left:221.115000px;}
.x1b{left:222.885000px;}
.xb{left:263.385000px;}
.x10{left:273.705000px;}
.x11{left:293.685000px;}
.x20{left:324.075000px;}
.x12{left:341.025000px;}
.x21{left:418.575000px;}
.x18{left:444.720000px;}
.x14{left:450.480000px;}
.xc{left:458.220000px;}
.xd{left:462.705000px;}
.x3{left:521.220000px;}
.x26{left:526.620000px;}
.x9{left:553.620000px;}
.x13{left:573.990000px;}
.x7{left:617.143500px;}
.x23{left:621.150000px;}
.x8{left:675.103500px;}
.x1d{left:729.330000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:16.160000pt;}
.ls30{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.122133pt;}
.lsc{letter-spacing:-0.113067pt;}
.ls13{letter-spacing:-0.086933pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013440pt;}
.lse{letter-spacing:0.018560pt;}
.ls5{letter-spacing:0.028160pt;}
.ls7{letter-spacing:0.046720pt;}
.ls20{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.208000pt;}
.ls25{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.268800pt;}
.ls6{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls15{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.473600pt;}
.ls27{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.496000pt;}
.ls12{letter-spacing:0.554667pt;}
.ls10{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.595840pt;}
.ls2c{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:0.992000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls11{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.136000pt;}
.ls14{letter-spacing:1.168000pt;}
.ls28{letter-spacing:1.232000pt;}
.ls16{letter-spacing:1.296000pt;}
.ls1e{letter-spacing:5.216000pt;}
.ls1d{letter-spacing:18.016000pt;}
.ls1a{letter-spacing:19.296000pt;}
.ls19{letter-spacing:19.936000pt;}
.ls1b{letter-spacing:21.216000pt;}
.ls1c{letter-spacing:22.496000pt;}
.ls18{letter-spacing:26.336000pt;}
.ls2f{letter-spacing:49.232000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.326720pt;}
.ws9{word-spacing:-13.296533pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.157867pt;}
.ws1c{word-spacing:-13.088000pt;}
.ws10{word-spacing:-12.864000pt;}
.wse{word-spacing:-12.736000pt;}
.ws11{word-spacing:-12.592000pt;}
.ws1f{word-spacing:-12.560000pt;}
.ws1e{word-spacing:-12.448000pt;}
.ws21{word-spacing:-12.384000pt;}
.ws22{word-spacing:-12.352000pt;}
.wsb{word-spacing:-12.241067pt;}
.ws1d{word-spacing:-12.192000pt;}
.wsf{word-spacing:-11.952000pt;}
.ws17{word-spacing:-11.824000pt;}
.ws19{word-spacing:-11.792000pt;}
.ws1a{word-spacing:-11.760000pt;}
.ws15{word-spacing:-11.728000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.599467pt;}
.ws1b{word-spacing:-11.568000pt;}
.ws12{word-spacing:-11.408000pt;}
.ws16{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.312000pt;}
.ws18{word-spacing:-11.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws20{word-spacing:-7.552000pt;}
.wsa{word-spacing:0.000000pt;}
._23{margin-left:-3.456000pt;}
._2{margin-left:-1.940267pt;}
._1{margin-left:-1.037440pt;}
._0{width:1.039147pt;}
._4{width:2.004267pt;}
._8{width:3.158827pt;}
._3{width:4.257707pt;}
._5{width:5.157973pt;}
._b{width:6.167680pt;}
._9{width:7.074133pt;}
._10{width:8.791680pt;}
._7{width:9.729707pt;}
._19{width:10.632533pt;}
._1a{width:12.552533pt;}
._a{width:13.557973pt;}
._17{width:14.964267pt;}
._20{width:15.909973pt;}
._d{width:16.920533pt;}
._6{width:18.149120pt;}
._24{width:19.044267pt;}
._1b{width:20.124373pt;}
._16{width:21.110827pt;}
._13{width:22.073387pt;}
._26{width:23.109333pt;}
._f{width:24.254720pt;}
._e{width:25.157120pt;}
._c{width:26.546560pt;}
._1e{width:27.602560pt;}
._25{width:28.512000pt;}
._21{width:29.633707pt;}
._18{width:30.693973pt;}
._11{width:31.605973pt;}
._14{width:33.314560pt;}
._2d{width:34.998613pt;}
._12{width:36.101120pt;}
._27{width:37.872000pt;}
._28{width:38.928000pt;}
._29{width:41.040000pt;}
._2a{width:42.064853pt;}
._31{width:43.392000pt;}
._15{width:44.891947pt;}
._22{width:48.117973pt;}
._1f{width:49.238827pt;}
._2e{width:51.223680pt;}
._32{width:55.072000pt;}
._30{width:56.781440pt;}
._2f{width:57.749120pt;}
._2b{width:61.857707pt;}
._2c{width:62.768640pt;}
._33{width:63.663360pt;}
._1c{width:64.629973pt;}
._1d{width:88.872533pt;}
.fsa{font-size:2.560000pt;}
.fs3{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fsd{font-size:40.320000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.y50{bottom:-9.626667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:1.426667pt;}
.y14{bottom:1.440000pt;}
.yf{bottom:1.600000pt;}
.y1a{bottom:1.760000pt;}
.y26{bottom:2.080000pt;}
.y1c{bottom:2.720000pt;}
.y21{bottom:2.880000pt;}
.y23{bottom:3.040000pt;}
.y20{bottom:4.000000pt;}
.y1e{bottom:4.160000pt;}
.y3f{bottom:5.746667pt;}
.y41{bottom:5.906667pt;}
.y46{bottom:5.920000pt;}
.y44{bottom:5.946667pt;}
.y4f{bottom:9.093333pt;}
.y3e{bottom:9.106667pt;}
.y3c{bottom:9.266667pt;}
.y38{bottom:9.746667pt;}
.y54{bottom:10.400000pt;}
.y55{bottom:12.160000pt;}
.y12{bottom:12.320000pt;}
.y18{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y56{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.y17{bottom:17.120000pt;}
.y87{bottom:19.200000pt;}
.y37{bottom:30.226667pt;}
.y4e{bottom:30.853333pt;}
.y86{bottom:32.800000pt;}
.y11{bottom:37.280000pt;}
.y8{bottom:40.480000pt;}
.y16{bottom:42.080000pt;}
.y57{bottom:42.240000pt;}
.yc{bottom:47.360000pt;}
.y36{bottom:50.706667pt;}
.y4d{bottom:51.653333pt;}
.y3{bottom:51.840000pt;}
.y53{bottom:56.640000pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y35{bottom:71.186667pt;}
.y4c{bottom:72.133333pt;}
.y34{bottom:91.666667pt;}
.y4b{bottom:93.093333pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.yac{bottom:108.480000pt;}
.y49{bottom:111.200000pt;}
.y33{bottom:111.986667pt;}
.y84{bottom:115.840000pt;}
.yab{bottom:128.960000pt;}
.y48{bottom:131.680000pt;}
.y32{bottom:132.506667pt;}
.y83{bottom:136.160000pt;}
.yaa{bottom:149.280000pt;}
.y47{bottom:152.000000pt;}
.y31{bottom:152.986667pt;}
.y82{bottom:156.640000pt;}
.y45{bottom:162.720000pt;}
.ya9{bottom:169.760000pt;}
.y30{bottom:173.466667pt;}
.y81{bottom:177.120000pt;}
.y43{bottom:180.000000pt;}
.ya8{bottom:190.266667pt;}
.y2f{bottom:193.946667pt;}
.y42{bottom:197.320000pt;}
.y80{bottom:197.626667pt;}
.ya7{bottom:210.746667pt;}
.y2e{bottom:214.426667pt;}
.y40{bottom:214.600000pt;}
.y7f{bottom:218.106667pt;}
.ya6{bottom:231.226667pt;}
.y3d{bottom:231.880000pt;}
.y2d{bottom:234.746667pt;}
.y7e{bottom:238.586667pt;}
.y3b{bottom:249.000000pt;}
.ya5{bottom:251.706667pt;}
.y2c{bottom:255.226667pt;}
.y7d{bottom:258.906667pt;}
.y39{bottom:266.760000pt;}
.ya4{bottom:272.026667pt;}
.y27{bottom:272.680000pt;}
.y2b{bottom:275.706667pt;}
.y7c{bottom:279.386667pt;}
.ya3{bottom:292.506667pt;}
.y2a{bottom:296.186667pt;}
.y7b{bottom:299.866667pt;}
.ya2{bottom:312.986667pt;}
.y29{bottom:316.666667pt;}
.y7a{bottom:320.346667pt;}
.ya1{bottom:333.466667pt;}
.y28{bottom:337.013333pt;}
.y79{bottom:340.826667pt;}
.ya0{bottom:353.946667pt;}
.y78{bottom:361.306667pt;}
.y9f{bottom:374.426667pt;}
.y77{bottom:381.626667pt;}
.y9e{bottom:394.786667pt;}
.y76{bottom:402.146667pt;}
.y9d{bottom:415.266667pt;}
.y75{bottom:422.626667pt;}
.y9c{bottom:435.746667pt;}
.y74{bottom:443.106667pt;}
.y9b{bottom:456.226667pt;}
.y73{bottom:463.586667pt;}
.y9a{bottom:468.866667pt;}
.y99{bottom:482.626667pt;}
.y72{bottom:484.066667pt;}
.y98{bottom:496.226667pt;}
.y71{bottom:504.386667pt;}
.y97{bottom:509.826667pt;}
.ybf{bottom:522.626667pt;}
.y96{bottom:523.426667pt;}
.y70{bottom:524.866667pt;}
.y95{bottom:537.026667pt;}
.ybe{bottom:543.106667pt;}
.y6f{bottom:545.346667pt;}
.y94{bottom:550.786667pt;}
.ybd{bottom:563.586667pt;}
.y93{bottom:564.386667pt;}
.y6e{bottom:565.826667pt;}
.y92{bottom:577.986667pt;}
.ybc{bottom:583.906667pt;}
.y6d{bottom:586.306667pt;}
.y91{bottom:591.586667pt;}
.ybb{bottom:602.173333pt;}
.y90{bottom:605.373333pt;}
.y6c{bottom:606.653333pt;}
.y8f{bottom:618.973333pt;}
.y25{bottom:620.413333pt;}
.y6b{bottom:627.133333pt;}
.y24{bottom:629.533333pt;}
.y8e{bottom:632.573333pt;}
.yba{bottom:640.893333pt;}
.y22{bottom:643.293333pt;}
.y8d{bottom:646.173333pt;}
.y6a{bottom:647.613333pt;}
.y1f{bottom:658.333333pt;}
.y8c{bottom:659.773333pt;}
.yb9{bottom:661.213333pt;}
.y69{bottom:668.093333pt;}
.y8b{bottom:673.533333pt;}
.y1d{bottom:674.653333pt;}
.yb8{bottom:681.693333pt;}
.y8a{bottom:687.133333pt;}
.y68{bottom:688.573333pt;}
.y1b{bottom:689.853333pt;}
.y89{bottom:700.733333pt;}
.yb7{bottom:702.173333pt;}
.y19{bottom:703.453333pt;}
.y67{bottom:709.053333pt;}
.y15{bottom:710.813333pt;}
.y85{bottom:714.973333pt;}
.yb6{bottom:722.653333pt;}
.y66{bottom:729.373333pt;}
.yb5{bottom:740.733333pt;}
.y88{bottom:745.053333pt;}
.y65{bottom:749.853333pt;}
.yb4{bottom:758.973333pt;}
.y13{bottom:760.733333pt;}
.y10{bottom:768.893333pt;}
.y64{bottom:770.333333pt;}
.yb3{bottom:779.453333pt;}
.y63{bottom:790.813333pt;}
.yb2{bottom:799.933333pt;}
.y62{bottom:811.333333pt;}
.ye{bottom:818.693333pt;}
.yb1{bottom:820.453333pt;}
.yb{bottom:824.773333pt;}
.y61{bottom:831.813333pt;}
.yb0{bottom:840.773333pt;}
.y60{bottom:852.133333pt;}
.yaf{bottom:859.013333pt;}
.y5f{bottom:872.613333pt;}
.yae{bottom:877.253333pt;}
.y5e{bottom:893.093333pt;}
.yad{bottom:897.573333pt;}
.ya{bottom:900.933333pt;}
.y5d{bottom:913.573333pt;}
.y4{bottom:915.813333pt;}
.y4a{bottom:920.000000pt;}
.y5c{bottom:934.053333pt;}
.y5b{bottom:954.533333pt;}
.y5a{bottom:974.853333pt;}
.y59{bottom:995.333333pt;}
.y58{bottom:1015.813333pt;}
.y52{bottom:1032.000000pt;}
.y51{bottom:1054.080000pt;}
.h2f{height:1.782500pt;}
.h23{height:5.906667pt;}
.ha{height:6.066667pt;}
.h13{height:7.360000pt;}
.he{height:8.160000pt;}
.h1f{height:9.120000pt;}
.h3c{height:13.586667pt;}
.h15{height:13.600000pt;}
.h3d{height:13.746667pt;}
.h1d{height:13.760000pt;}
.h3b{height:13.786667pt;}
.hb{height:14.303437pt;}
.h24{height:14.705625pt;}
.h1b{height:15.040000pt;}
.h17{height:15.200000pt;}
.h34{height:15.680000pt;}
.h18{height:16.320000pt;}
.h27{height:17.106667pt;}
.h2a{height:17.266667pt;}
.h2d{height:17.280000pt;}
.h2c{height:17.312000pt;}
.h25{height:17.746667pt;}
.h14{height:18.716250pt;}
.hf{height:20.422500pt;}
.h11{height:21.316250pt;}
.h28{height:24.063750pt;}
.h20{height:24.203125pt;}
.h35{height:24.798667pt;}
.h2{height:25.598667pt;}
.h26{height:25.907188pt;}
.h3a{height:28.000000pt;}
.h3f{height:28.075625pt;}
.h37{height:30.830625pt;}
.h2b{height:35.975313pt;}
.h1e{height:36.304688pt;}
.h22{height:36.328125pt;}
.h29{height:36.986875pt;}
.h3e{height:37.658750pt;}
.h16{height:39.840000pt;}
.hd{height:39.876250pt;}
.h1c{height:40.177188pt;}
.h1a{height:40.618125pt;}
.h12{height:42.032838pt;}
.h39{height:43.680000pt;}
.h19{height:44.533750pt;}
.h4{height:44.975625pt;}
.h32{height:48.000000pt;}
.h7{height:48.406250pt;}
.h38{height:49.336436pt;}
.hc{height:49.780000pt;}
.h33{height:49.852500pt;}
.h10{height:49.920000pt;}
.h9{height:50.712187pt;}
.h3{height:52.134375pt;}
.h31{height:56.160000pt;}
.h5{height:62.812500pt;}
.h8{height:63.346667pt;}
.h36{height:64.500000pt;}
.h2e{height:86.272000pt;}
.h30{height:108.480000pt;}
.h6{height:110.746667pt;}
.h21{height:347.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w15{width:47.826667pt;}
.w17{width:84.000000pt;}
.w1b{width:84.018667pt;}
.w16{width:89.938667pt;}
.w4{width:90.070667pt;}
.w1a{width:96.032000pt;}
.w19{width:96.146667pt;}
.w13{width:102.070667pt;}
.w9{width:137.270667pt;}
.w18{width:180.066667pt;}
.w8{width:204.813333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:395.257333pt;}
.w14{width:450.160000pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x17{left:5.746667pt;}
.x24{left:8.960000pt;}
.x1e{left:10.080000pt;}
.xa{left:15.186667pt;}
.x2b{left:17.120000pt;}
.x1f{left:18.066667pt;}
.x2d{left:20.320000pt;}
.x25{left:23.866667pt;}
.x19{left:28.946667pt;}
.xe{left:34.106667pt;}
.x2a{left:35.186667pt;}
.x2e{left:36.786667pt;}
.x2c{left:38.240000pt;}
.x28{left:39.360000pt;}
.x27{left:41.626667pt;}
.x29{left:44.666667pt;}
.x22{left:58.106667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x1c{left:104.666667pt;}
.x15{left:108.466667pt;}
.x1a{left:127.506667pt;}
.x16{left:146.120000pt;}
.x4{left:154.106667pt;}
.x6{left:186.120000pt;}
.xf{left:196.546667pt;}
.x1b{left:198.120000pt;}
.xb{left:234.120000pt;}
.x10{left:243.293333pt;}
.x11{left:261.053333pt;}
.x20{left:288.066667pt;}
.x12{left:303.133333pt;}
.x21{left:372.066667pt;}
.x18{left:395.306667pt;}
.x14{left:400.426667pt;}
.xc{left:407.306667pt;}
.xd{left:411.293333pt;}
.x3{left:463.306667pt;}
.x26{left:468.106667pt;}
.x9{left:492.106667pt;}
.x13{left:510.213333pt;}
.x7{left:548.572000pt;}
.x23{left:552.133333pt;}
.x8{left:600.092000pt;}
.x1d{left:648.293333pt;}
}




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