
    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_b33a8d59247abe53e0203a19.woff')format("woff");}.ff1{font-family:ff1;line-height:0.765236;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_39fc159bde2f90e7a485b3ed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.966952;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_77ed940a20f6bd87650d1505.woff')format("woff");}.ff3{font-family:ff3;line-height:0.950684;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_2c540a388b870f03f151a141.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_705e989257c48d608252c747.woff')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_f329cc78bf2e1dee6a2ed6dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.968750;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_95a534d195499865f355535e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_83d1ce3ab4d67c5c43a2c9ad.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4002f1c2769bc3bafcf03825.woff')format("woff");}.ff9{font-family:ff9;line-height:0.954000;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_b2b28ee26136176bf6dae492.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942560;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_7b4382da7d1a476538f48d33.woff')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_c23e86b6cdc0edc66812548e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.763000;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_0688bd981d419b64b3b392bc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.722000;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_afa8724cb475f3b00ebbd850.woff')format("woff");}.ffe{font-family:ffe;line-height:0.762000;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_c3aa0582fbcdd0c1fec1a9ca.woff')format("woff");}.fff{font-family:fff;line-height:0.972000;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_c75a3b840bc991b76a7e1086.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959636;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_5931b5cb9341cbf6d233868c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.958000;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_8d185bc982d32828fb845976.woff')format("woff");}.ff12{font-family:ff12;line-height:0.700000;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_0332a8e66d793da9e2c57d17.woff')format("woff");}.ff13{font-family:ff13;line-height:0.972000;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_e71d77a156e2b25208c06df7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.762000;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_1e83901fe9070a383be366d0.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666016;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m7{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,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);}
.m4{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:22.977000px;}
.lsb{letter-spacing:-5.916072px;}
.lsf{letter-spacing:-2.160000px;}
.ls9{letter-spacing:-1.380000px;}
.lsa{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.270000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000008px;}
.ls0{letter-spacing:0.004920px;}
.ls12{letter-spacing:0.025800px;}
.ls10{letter-spacing:0.032400px;}
.ls4{letter-spacing:0.690000px;}
.lsd{letter-spacing:1.695600px;}
.lse{letter-spacing:2.124600px;}
.ls11{letter-spacing:10.683600px;}
.ls3{letter-spacing:24.533449px;}
.ls2{letter-spacing:27.391800px;}
.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;}
}
.ws3{word-spacing:-69.000000px;}
.ws7{word-spacing:-20.016000px;}
.ws4e{word-spacing:-16.077000px;}
.ws4f{word-spacing:-15.387000px;}
.ws48{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.697000px;}
.ws4{word-spacing:-14.007000px;}
.ws1{word-spacing:-13.419000px;}
.ws6{word-spacing:-13.380000px;}
.ws5{word-spacing:-12.696000px;}
.ws0{word-spacing:-12.222000px;}
.ws49{word-spacing:-11.988000px;}
.ws50{word-spacing:-9.010848px;}
.ws45{word-spacing:-8.280000px;}
.ws23{word-spacing:-7.200000px;}
.ws6e{word-spacing:-6.348000px;}
.ws6f{word-spacing:-4.347000px;}
.ws8d{word-spacing:-3.840000px;}
.ws75{word-spacing:-3.726000px;}
.ws8b{word-spacing:-3.600000px;}
.ws2f{word-spacing:-3.213000px;}
.ws33{word-spacing:-3.036000px;}
.ws2d{word-spacing:-2.961000px;}
.ws6a{word-spacing:-2.760000px;}
.ws65{word-spacing:-2.622000px;}
.ws26{word-spacing:-2.277000px;}
.ws46{word-spacing:-2.139000px;}
.ws63{word-spacing:-1.932000px;}
.ws41{word-spacing:-1.863000px;}
.ws25{word-spacing:-0.897000px;}
.ws24{word-spacing:-0.828000px;}
.ws22{word-spacing:-0.759000px;}
.ws5f{word-spacing:-0.690000px;}
.ws1c{word-spacing:-0.621000px;}
.ws1d{word-spacing:-0.552000px;}
.ws1a{word-spacing:-0.414000px;}
.ws14{word-spacing:-0.315000px;}
.ws62{word-spacing:-0.276000px;}
.ws47{word-spacing:-0.034957px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:0.483000px;}
.ws69{word-spacing:0.621000px;}
.wsd{word-spacing:0.630000px;}
.ws18{word-spacing:0.690000px;}
.ws85{word-spacing:0.720000px;}
.ws61{word-spacing:0.828000px;}
.ws59{word-spacing:0.966000px;}
.ws27{word-spacing:1.080000px;}
.ws88{word-spacing:1.320000px;}
.ws60{word-spacing:1.449000px;}
.ws4b{word-spacing:1.674000px;}
.ws4c{word-spacing:1.836000px;}
.ws4a{word-spacing:1.890000px;}
.ws4d{word-spacing:2.160000px;}
.ws72{word-spacing:2.277000px;}
.ws5c{word-spacing:2.415000px;}
.ws43{word-spacing:2.484000px;}
.ws86{word-spacing:2.520000px;}
.ws15{word-spacing:2.898000px;}
.ws79{word-spacing:3.243000px;}
.ws67{word-spacing:3.381000px;}
.ws1f{word-spacing:3.519000px;}
.ws64{word-spacing:3.726000px;}
.ws87{word-spacing:3.840000px;}
.ws30{word-spacing:3.906000px;}
.ws54{word-spacing:4.485000px;}
.ws1e{word-spacing:4.554000px;}
.ws21{word-spacing:4.899000px;}
.ws76{word-spacing:5.037000px;}
.ws3d{word-spacing:5.520000px;}
.ws73{word-spacing:5.658000px;}
.ws13{word-spacing:5.670000px;}
.ws8{word-spacing:5.768170px;}
.ws12{word-spacing:5.985000px;}
.ws19{word-spacing:6.003000px;}
.ws2a{word-spacing:6.615000px;}
.ws2b{word-spacing:6.678000px;}
.ws34{word-spacing:7.038000px;}
.ws39{word-spacing:7.383000px;}
.ws83{word-spacing:7.620000px;}
.ws82{word-spacing:7.680000px;}
.ws7a{word-spacing:7.728000px;}
.ws7b{word-spacing:8.487000px;}
.ws8c{word-spacing:8.520000px;}
.ws31{word-spacing:8.568000px;}
.ws89{word-spacing:8.700000px;}
.ws8a{word-spacing:8.760000px;}
.ws91{word-spacing:8.880000px;}
.ws42{word-spacing:9.384000px;}
.ws3e{word-spacing:9.660000px;}
.ws2e{word-spacing:9.891000px;}
.wsb{word-spacing:9.954000px;}
.wsc{word-spacing:10.017000px;}
.ws6b{word-spacing:10.764000px;}
.ws92{word-spacing:10.980000px;}
.ws32{word-spacing:11.277000px;}
.ws55{word-spacing:11.523000px;}
.ws3b{word-spacing:11.730000px;}
.ws36{word-spacing:11.868000px;}
.ws6d{word-spacing:11.937000px;}
.ws5d{word-spacing:12.006000px;}
.ws90{word-spacing:12.360000px;}
.ws93{word-spacing:12.540000px;}
.ws44{word-spacing:13.800000px;}
.ws5e{word-spacing:14.283000px;}
.ws56{word-spacing:14.559000px;}
.ws58{word-spacing:15.042000px;}
.ws6c{word-spacing:15.111000px;}
.ws40{word-spacing:15.249000px;}
.ws3f{word-spacing:15.318000px;}
.ws11{word-spacing:15.876000px;}
.ws10{word-spacing:15.939000px;}
.ws2c{word-spacing:16.380000px;}
.wsa{word-spacing:17.577000px;}
.ws68{word-spacing:17.733000px;}
.ws7e{word-spacing:18.216000px;}
.ws5b{word-spacing:18.699000px;}
.ws74{word-spacing:18.837000px;}
.ws3c{word-spacing:19.872000px;}
.ws78{word-spacing:20.700000px;}
.ws66{word-spacing:20.838000px;}
.ws7c{word-spacing:20.976000px;}
.ws20{word-spacing:23.046000px;}
.ws35{word-spacing:23.943000px;}
.ws7f{word-spacing:24.288000px;}
.ws3a{word-spacing:24.495000px;}
.ws16{word-spacing:25.137000px;}
.ws29{word-spacing:25.326000px;}
.ws37{word-spacing:26.565000px;}
.wse{word-spacing:26.700000px;}
.ws17{word-spacing:27.594000px;}
.ws28{word-spacing:27.600000px;}
.wsf{word-spacing:28.161000px;}
.ws81{word-spacing:30.180000px;}
.ws8e{word-spacing:32.940000px;}
.ws8f{word-spacing:33.060000px;}
.ws57{word-spacing:33.948000px;}
.ws5a{word-spacing:34.086000px;}
.ws70{word-spacing:35.811000px;}
.ws71{word-spacing:36.018000px;}
.ws7d{word-spacing:39.537000px;}
.ws80{word-spacing:42.090000px;}
.ws53{word-spacing:51.888000px;}
.ws38{word-spacing:62.307000px;}
.ws77{word-spacing:64.791000px;}
.ws84{word-spacing:78.840000px;}
.ws51{word-spacing:143.289000px;}
.ws52{word-spacing:281.211000px;}
._b{margin-left:-13.175400px;}
._1{margin-left:-10.818000px;}
._c{margin-left:-6.985200px;}
._3{margin-left:-4.968000px;}
._7{margin-left:-3.672000px;}
._0{margin-left:-2.646000px;}
._2{margin-left:-1.233000px;}
._4{width:1.674000px;}
._a{width:2.779112px;}
._6{width:5.276204px;}
._8{width:9.075612px;}
._9{width:11.832144px;}
._19{width:18.121200px;}
._d{width:21.445800px;}
._1a{width:24.212400px;}
._5{width:27.429600px;}
._1b{width:32.940000px;}
._f{width:74.694000px;}
._14{width:101.190000px;}
._16{width:229.047000px;}
._11{width:244.986000px;}
._13{width:248.091000px;}
._18{width:269.136000px;}
._10{width:354.480600px;}
._17{width:563.343600px;}
._12{width:765.099600px;}
._15{width:877.293600px;}
._e{width:935.460600px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(42,93,42);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fsa{font-size:34.956600px;}
.fs2{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs8{font-size:43.200000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.fs9{font-size:147.901800px;}
.y0{bottom:0.000000px;}
.y6a{bottom:80.787450px;}
.y4f{bottom:81.122100px;}
.y31{bottom:85.039350px;}
.y33{bottom:88.603350px;}
.y4e{bottom:97.622100px;}
.y81{bottom:103.170750px;}
.y69{bottom:103.790550px;}
.y30{bottom:108.046500px;}
.y32{bottom:111.103350px;}
.y4d{bottom:114.122100px;}
.y80{bottom:125.554200px;}
.y68{bottom:126.793500px;}
.y2f{bottom:131.053500px;}
.y47{bottom:145.639200px;}
.y7f{bottom:147.937650px;}
.y67{bottom:149.796600px;}
.y2e{bottom:154.060800px;}
.y46{bottom:168.139200px;}
.y7e{bottom:170.321100px;}
.y66{bottom:172.799550px;}
.y2d{bottom:185.571750px;}
.y65{bottom:195.802650px;}
.y45{bottom:199.143150px;}
.y7d{bottom:201.208350px;}
.y2c{bottom:208.578900px;}
.y64{bottom:218.805750px;}
.y44{bottom:221.643150px;}
.y2b{bottom:231.586050px;}
.y7c{bottom:231.945750px;}
.y63{bottom:241.808700px;}
.y43{bottom:244.143150px;}
.y7b{bottom:255.079050px;}
.y2a{bottom:263.097000px;}
.y62{bottom:264.811800px;}
.y42{bottom:266.643150px;}
.y7a{bottom:277.462500px;}
.y29{bottom:283.104150px;}
.y61{bottom:287.814900px;}
.y41{bottom:289.143150px;}
.y79{bottom:299.845800px;}
.y28{bottom:303.111300px;}
.y60{bottom:310.817850px;}
.y40{bottom:311.643150px;}
.y78{bottom:322.229250px;}
.y27{bottom:323.118450px;}
.y5f{bottom:333.820950px;}
.y3f{bottom:334.143150px;}
.y26{bottom:343.125600px;}
.y77{bottom:344.612700px;}
.y3e{bottom:356.643150px;}
.y5e{bottom:356.823900px;}
.y25{bottom:363.132750px;}
.y76{bottom:375.499950px;}
.y3d{bottom:379.143150px;}
.y5d{bottom:379.827000px;}
.y24{bottom:383.139750px;}
.y75{bottom:397.883400px;}
.y3c{bottom:401.643150px;}
.y5c{bottom:402.829950px;}
.y23{bottom:403.146900px;}
.y22{bottom:423.154050px;}
.y3b{bottom:424.143150px;}
.y5b{bottom:425.833050px;}
.y74{bottom:428.770800px;}
.y21{bottom:443.161200px;}
.y3a{bottom:446.643150px;}
.y5a{bottom:448.836150px;}
.y73{bottom:451.154100px;}
.y39{bottom:469.143150px;}
.y20{bottom:471.672300px;}
.y59{bottom:471.839100px;}
.y72{bottom:482.041500px;}
.y58{bottom:494.842200px;}
.y38{bottom:500.147100px;}
.y1f{bottom:503.183250px;}
.y71{bottom:504.424950px;}
.y57{bottom:517.845300px;}
.y70{bottom:526.808250px;}
.y1e{bottom:533.794350px;}
.y56{bottom:540.848250px;}
.y13{bottom:549.068700px;}
.y6f{bottom:549.191700px;}
.y1d{bottom:556.801500px;}
.y55{bottom:563.851350px;}
.y12{bottom:568.568700px;}
.y6e{bottom:571.575000px;}
.y1c{bottom:579.808650px;}
.y54{bottom:586.854450px;}
.y11{bottom:596.572650px;}
.y6d{bottom:602.462400px;}
.y1b{bottom:602.815650px;}
.y53{bottom:609.857550px;}
.y10{bottom:616.072650px;}
.y6c{bottom:624.845850px;}
.y1a{bottom:625.822800px;}
.y52{bottom:632.860500px;}
.yf{bottom:635.572650px;}
.y19{bottom:648.829950px;}
.ye{bottom:655.072650px;}
.y6b{bottom:655.733100px;}
.y51{bottom:655.863600px;}
.y18{bottom:671.837100px;}
.yd{bottom:674.572650px;}
.y50{bottom:678.866550px;}
.yc{bottom:694.072650px;}
.y17{bottom:694.844250px;}
.y8f{bottom:713.501700px;}
.yb{bottom:713.572650px;}
.y16{bottom:717.851400px;}
.ya{bottom:733.072650px;}
.y8e{bottom:736.001700px;}
.y15{bottom:740.858400px;}
.y9{bottom:752.572650px;}
.y8d{bottom:758.501700px;}
.y14{bottom:763.865550px;}
.y8c{bottom:787.588050px;}
.y8{bottom:807.523050px;}
.y8b{bottom:816.674250px;}
.y9c{bottom:821.312550px;}
.y7{bottom:827.974950px;}
.y9b{bottom:839.312550px;}
.ya6{bottom:843.154650px;}
.y8a{bottom:845.760450px;}
.y6{bottom:848.427000px;}
.y9a{bottom:857.312550px;}
.ya5{bottom:864.996600px;}
.y89{bottom:868.260450px;}
.y5{bottom:869.122500px;}
.y99{bottom:875.312550px;}
.y4{bottom:889.574400px;}
.y88{bottom:890.760450px;}
.ya4{bottom:895.342650px;}
.y98{bottom:901.816500px;}
.y3{bottom:905.530950px;}
.ya3{bottom:917.184750px;}
.y97{bottom:919.816500px;}
.y87{bottom:919.846650px;}
.y96{bottom:937.816500px;}
.ya2{bottom:947.530800px;}
.y86{bottom:948.933000px;}
.y95{bottom:955.816500px;}
.y2{bottom:955.930950px;}
.ya1{bottom:969.372900px;}
.y94{bottom:973.816500px;}
.y85{bottom:978.019200px;}
.y1{bottom:988.330950px;}
.ya0{bottom:991.215000px;}
.y93{bottom:1000.320300px;}
.y84{bottom:1007.105400px;}
.y9f{bottom:1013.057100px;}
.y92{bottom:1018.320300px;}
.y83{bottom:1029.605400px;}
.y91{bottom:1036.320300px;}
.y9e{bottom:1043.403150px;}
.y37{bottom:1057.885350px;}
.y49{bottom:1058.664750px;}
.y90{bottom:1062.824400px;}
.y82{bottom:1064.879250px;}
.y9d{bottom:1065.245250px;}
.y36{bottom:1069.885350px;}
.y48{bottom:1071.322050px;}
.y4a{bottom:1071.558150px;}
.y35{bottom:1081.885350px;}
.y34{bottom:1093.885350px;}
.y4b{bottom:1094.745150px;}
.y4c{bottom:1095.386850px;}
.h4{height:22.950378px;}
.h10{height:26.636929px;}
.he{height:32.918400px;}
.h11{height:38.340000px;}
.h5{height:39.366000px;}
.ha{height:40.500000px;}
.h13{height:41.148000px;}
.h14{height:41.472000px;}
.hb{height:43.004883px;}
.h12{height:44.208984px;}
.hd{height:44.589844px;}
.h3{height:45.753838px;}
.h6{height:46.819336px;}
.hc{height:47.100586px;}
.h7{height:51.278320px;}
.h15{height:52.872261px;}
.h8{height:53.064000px;}
.h9{height:53.507812px;}
.h2{height:81.210774px;}
.hf{height:111.370055px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x9{left:89.291400px;}
.x2c{left:90.403950px;}
.x32{left:93.543300px;}
.x2f{left:98.691450px;}
.x5{left:107.185350px;}
.x25{left:109.669650px;}
.x33{left:114.803100px;}
.x4{left:119.462400px;}
.x13{left:135.407700px;}
.x30{left:210.118200px;}
.x1c{left:212.433150px;}
.x1d{left:218.508150px;}
.x1{left:242.950500px;}
.x26{left:247.621800px;}
.x27{left:253.016100px;}
.x2{left:261.268500px;}
.x6{left:289.433550px;}
.x1e{left:294.410550px;}
.x1f{left:297.788250px;}
.x3{left:308.302500px;}
.x2d{left:311.480250px;}
.x28{left:319.218600px;}
.x29{left:322.596300px;}
.x14{left:324.759000px;}
.x15{left:330.834000px;}
.x7{left:355.807950px;}
.x16{left:369.170400px;}
.x12{left:372.160800px;}
.x17{left:375.245400px;}
.x8{left:430.323150px;}
.x20{left:439.090350px;}
.xa{left:444.330750px;}
.x34{left:448.582650px;}
.x35{left:469.842600px;}
.x31{left:490.748100px;}
.xc{left:518.097000px;}
.x2e{left:529.850850px;}
.x18{left:538.259700px;}
.x19{left:543.654150px;}
.x11{left:559.347450px;}
.xd{left:582.265800px;}
.x21{left:595.920900px;}
.x22{left:601.995900px;}
.x10{left:636.550650px;}
.xf{left:645.779400px;}
.x23{left:665.140950px;}
.x24{left:668.518650px;}
.xe{left:674.364000px;}
.x2b{left:689.903550px;}
.x1a{left:705.912300px;}
.x1b{left:711.987300px;}
.xb{left:753.433500px;}
.x2a{left:761.425650px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:20.424000pt;}
.lsb{letter-spacing:-5.258731pt;}
.lsf{letter-spacing:-1.920000pt;}
.ls9{letter-spacing:-1.226667pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000007pt;}
.ls0{letter-spacing:0.004373pt;}
.ls12{letter-spacing:0.022933pt;}
.ls10{letter-spacing:0.028800pt;}
.ls4{letter-spacing:0.613333pt;}
.lsd{letter-spacing:1.507200pt;}
.lse{letter-spacing:1.888533pt;}
.ls11{letter-spacing:9.496533pt;}
.ls3{letter-spacing:21.807510pt;}
.ls2{letter-spacing:24.348267pt;}
.ws3{word-spacing:-61.333333pt;}
.ws7{word-spacing:-17.792000pt;}
.ws4e{word-spacing:-14.290667pt;}
.ws4f{word-spacing:-13.677333pt;}
.ws48{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.064000pt;}
.ws4{word-spacing:-12.450667pt;}
.ws1{word-spacing:-11.928000pt;}
.ws6{word-spacing:-11.893333pt;}
.ws5{word-spacing:-11.285333pt;}
.ws0{word-spacing:-10.864000pt;}
.ws49{word-spacing:-10.656000pt;}
.ws50{word-spacing:-8.009643pt;}
.ws45{word-spacing:-7.360000pt;}
.ws23{word-spacing:-6.400000pt;}
.ws6e{word-spacing:-5.642667pt;}
.ws6f{word-spacing:-3.864000pt;}
.ws8d{word-spacing:-3.413333pt;}
.ws75{word-spacing:-3.312000pt;}
.ws8b{word-spacing:-3.200000pt;}
.ws2f{word-spacing:-2.856000pt;}
.ws33{word-spacing:-2.698667pt;}
.ws2d{word-spacing:-2.632000pt;}
.ws6a{word-spacing:-2.453333pt;}
.ws65{word-spacing:-2.330667pt;}
.ws26{word-spacing:-2.024000pt;}
.ws46{word-spacing:-1.901333pt;}
.ws63{word-spacing:-1.717333pt;}
.ws41{word-spacing:-1.656000pt;}
.ws25{word-spacing:-0.797333pt;}
.ws24{word-spacing:-0.736000pt;}
.ws22{word-spacing:-0.674667pt;}
.ws5f{word-spacing:-0.613333pt;}
.ws1c{word-spacing:-0.552000pt;}
.ws1d{word-spacing:-0.490667pt;}
.ws1a{word-spacing:-0.368000pt;}
.ws14{word-spacing:-0.280000pt;}
.ws62{word-spacing:-0.245333pt;}
.ws47{word-spacing:-0.031073pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.429333pt;}
.ws69{word-spacing:0.552000pt;}
.wsd{word-spacing:0.560000pt;}
.ws18{word-spacing:0.613333pt;}
.ws85{word-spacing:0.640000pt;}
.ws61{word-spacing:0.736000pt;}
.ws59{word-spacing:0.858667pt;}
.ws27{word-spacing:0.960000pt;}
.ws88{word-spacing:1.173333pt;}
.ws60{word-spacing:1.288000pt;}
.ws4b{word-spacing:1.488000pt;}
.ws4c{word-spacing:1.632000pt;}
.ws4a{word-spacing:1.680000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws72{word-spacing:2.024000pt;}
.ws5c{word-spacing:2.146667pt;}
.ws43{word-spacing:2.208000pt;}
.ws86{word-spacing:2.240000pt;}
.ws15{word-spacing:2.576000pt;}
.ws79{word-spacing:2.882667pt;}
.ws67{word-spacing:3.005333pt;}
.ws1f{word-spacing:3.128000pt;}
.ws64{word-spacing:3.312000pt;}
.ws87{word-spacing:3.413333pt;}
.ws30{word-spacing:3.472000pt;}
.ws54{word-spacing:3.986667pt;}
.ws1e{word-spacing:4.048000pt;}
.ws21{word-spacing:4.354667pt;}
.ws76{word-spacing:4.477333pt;}
.ws3d{word-spacing:4.906667pt;}
.ws73{word-spacing:5.029333pt;}
.ws13{word-spacing:5.040000pt;}
.ws8{word-spacing:5.127262pt;}
.ws12{word-spacing:5.320000pt;}
.ws19{word-spacing:5.336000pt;}
.ws2a{word-spacing:5.880000pt;}
.ws2b{word-spacing:5.936000pt;}
.ws34{word-spacing:6.256000pt;}
.ws39{word-spacing:6.562667pt;}
.ws83{word-spacing:6.773333pt;}
.ws82{word-spacing:6.826667pt;}
.ws7a{word-spacing:6.869333pt;}
.ws7b{word-spacing:7.544000pt;}
.ws8c{word-spacing:7.573333pt;}
.ws31{word-spacing:7.616000pt;}
.ws89{word-spacing:7.733333pt;}
.ws8a{word-spacing:7.786667pt;}
.ws91{word-spacing:7.893333pt;}
.ws42{word-spacing:8.341333pt;}
.ws3e{word-spacing:8.586667pt;}
.ws2e{word-spacing:8.792000pt;}
.wsb{word-spacing:8.848000pt;}
.wsc{word-spacing:8.904000pt;}
.ws6b{word-spacing:9.568000pt;}
.ws92{word-spacing:9.760000pt;}
.ws32{word-spacing:10.024000pt;}
.ws55{word-spacing:10.242667pt;}
.ws3b{word-spacing:10.426667pt;}
.ws36{word-spacing:10.549333pt;}
.ws6d{word-spacing:10.610667pt;}
.ws5d{word-spacing:10.672000pt;}
.ws90{word-spacing:10.986667pt;}
.ws93{word-spacing:11.146667pt;}
.ws44{word-spacing:12.266667pt;}
.ws5e{word-spacing:12.696000pt;}
.ws56{word-spacing:12.941333pt;}
.ws58{word-spacing:13.370667pt;}
.ws6c{word-spacing:13.432000pt;}
.ws40{word-spacing:13.554667pt;}
.ws3f{word-spacing:13.616000pt;}
.ws11{word-spacing:14.112000pt;}
.ws10{word-spacing:14.168000pt;}
.ws2c{word-spacing:14.560000pt;}
.wsa{word-spacing:15.624000pt;}
.ws68{word-spacing:15.762667pt;}
.ws7e{word-spacing:16.192000pt;}
.ws5b{word-spacing:16.621333pt;}
.ws74{word-spacing:16.744000pt;}
.ws3c{word-spacing:17.664000pt;}
.ws78{word-spacing:18.400000pt;}
.ws66{word-spacing:18.522667pt;}
.ws7c{word-spacing:18.645333pt;}
.ws20{word-spacing:20.485333pt;}
.ws35{word-spacing:21.282667pt;}
.ws7f{word-spacing:21.589333pt;}
.ws3a{word-spacing:21.773333pt;}
.ws16{word-spacing:22.344000pt;}
.ws29{word-spacing:22.512000pt;}
.ws37{word-spacing:23.613333pt;}
.wse{word-spacing:23.733333pt;}
.ws17{word-spacing:24.528000pt;}
.ws28{word-spacing:24.533333pt;}
.wsf{word-spacing:25.032000pt;}
.ws81{word-spacing:26.826667pt;}
.ws8e{word-spacing:29.280000pt;}
.ws8f{word-spacing:29.386667pt;}
.ws57{word-spacing:30.176000pt;}
.ws5a{word-spacing:30.298667pt;}
.ws70{word-spacing:31.832000pt;}
.ws71{word-spacing:32.016000pt;}
.ws7d{word-spacing:35.144000pt;}
.ws80{word-spacing:37.413333pt;}
.ws53{word-spacing:46.122667pt;}
.ws38{word-spacing:55.384000pt;}
.ws77{word-spacing:57.592000pt;}
.ws84{word-spacing:70.080000pt;}
.ws51{word-spacing:127.368000pt;}
.ws52{word-spacing:249.965333pt;}
._b{margin-left:-11.711467pt;}
._1{margin-left:-9.616000pt;}
._c{margin-left:-6.209067pt;}
._3{margin-left:-4.416000pt;}
._7{margin-left:-3.264000pt;}
._0{margin-left:-2.352000pt;}
._2{margin-left:-1.096000pt;}
._4{width:1.488000pt;}
._a{width:2.470321pt;}
._6{width:4.689959pt;}
._8{width:8.067211pt;}
._9{width:10.517461pt;}
._19{width:16.107733pt;}
._d{width:19.062933pt;}
._1a{width:21.522133pt;}
._5{width:24.381867pt;}
._1b{width:29.280000pt;}
._f{width:66.394667pt;}
._14{width:89.946667pt;}
._16{width:203.597333pt;}
._11{width:217.765333pt;}
._13{width:220.525333pt;}
._18{width:239.232000pt;}
._10{width:315.093867pt;}
._17{width:500.749867pt;}
._12{width:680.088533pt;}
._15{width:779.816533pt;}
._e{width:831.520533pt;}
.fs3{font-size:27.984000pt;}
.fsa{font-size:31.072533pt;}
.fs2{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs8{font-size:38.400000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.fs9{font-size:131.468267pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:71.811067pt;}
.y4f{bottom:72.108533pt;}
.y31{bottom:75.590533pt;}
.y33{bottom:78.758533pt;}
.y4e{bottom:86.775200pt;}
.y81{bottom:91.707333pt;}
.y69{bottom:92.258267pt;}
.y30{bottom:96.041333pt;}
.y32{bottom:98.758533pt;}
.y4d{bottom:101.441867pt;}
.y80{bottom:111.603733pt;}
.y68{bottom:112.705333pt;}
.y2f{bottom:116.492000pt;}
.y47{bottom:129.457067pt;}
.y7f{bottom:131.500133pt;}
.y67{bottom:133.152533pt;}
.y2e{bottom:136.942933pt;}
.y46{bottom:149.457067pt;}
.y7e{bottom:151.396533pt;}
.y66{bottom:153.599600pt;}
.y2d{bottom:164.952667pt;}
.y65{bottom:174.046800pt;}
.y45{bottom:177.016133pt;}
.y7d{bottom:178.851867pt;}
.y2c{bottom:185.403467pt;}
.y64{bottom:194.494000pt;}
.y44{bottom:197.016133pt;}
.y2b{bottom:205.854267pt;}
.y7c{bottom:206.174000pt;}
.y63{bottom:214.941067pt;}
.y43{bottom:217.016133pt;}
.y7b{bottom:226.736933pt;}
.y2a{bottom:233.864000pt;}
.y62{bottom:235.388267pt;}
.y42{bottom:237.016133pt;}
.y7a{bottom:246.633333pt;}
.y29{bottom:251.648133pt;}
.y61{bottom:255.835467pt;}
.y41{bottom:257.016133pt;}
.y79{bottom:266.529600pt;}
.y28{bottom:269.432267pt;}
.y60{bottom:276.282533pt;}
.y40{bottom:277.016133pt;}
.y78{bottom:286.426000pt;}
.y27{bottom:287.216400pt;}
.y5f{bottom:296.729733pt;}
.y3f{bottom:297.016133pt;}
.y26{bottom:305.000533pt;}
.y77{bottom:306.322400pt;}
.y3e{bottom:317.016133pt;}
.y5e{bottom:317.176800pt;}
.y25{bottom:322.784667pt;}
.y76{bottom:333.777733pt;}
.y3d{bottom:337.016133pt;}
.y5d{bottom:337.624000pt;}
.y24{bottom:340.568667pt;}
.y75{bottom:353.674133pt;}
.y3c{bottom:357.016133pt;}
.y5c{bottom:358.071067pt;}
.y23{bottom:358.352800pt;}
.y22{bottom:376.136933pt;}
.y3b{bottom:377.016133pt;}
.y5b{bottom:378.518267pt;}
.y74{bottom:381.129600pt;}
.y21{bottom:393.921067pt;}
.y3a{bottom:397.016133pt;}
.y5a{bottom:398.965467pt;}
.y73{bottom:401.025867pt;}
.y39{bottom:417.016133pt;}
.y20{bottom:419.264267pt;}
.y59{bottom:419.412533pt;}
.y72{bottom:428.481333pt;}
.y58{bottom:439.859733pt;}
.y38{bottom:444.575200pt;}
.y1f{bottom:447.274000pt;}
.y71{bottom:448.377733pt;}
.y57{bottom:460.306933pt;}
.y70{bottom:468.274000pt;}
.y1e{bottom:474.483867pt;}
.y56{bottom:480.754000pt;}
.y13{bottom:488.061067pt;}
.y6f{bottom:488.170400pt;}
.y1d{bottom:494.934667pt;}
.y55{bottom:501.201200pt;}
.y12{bottom:505.394400pt;}
.y6e{bottom:508.066667pt;}
.y1c{bottom:515.385467pt;}
.y54{bottom:521.648400pt;}
.y11{bottom:530.286800pt;}
.y6d{bottom:535.522133pt;}
.y1b{bottom:535.836133pt;}
.y53{bottom:542.095600pt;}
.y10{bottom:547.620133pt;}
.y6c{bottom:555.418533pt;}
.y1a{bottom:556.286933pt;}
.y52{bottom:562.542667pt;}
.yf{bottom:564.953467pt;}
.y19{bottom:576.737733pt;}
.ye{bottom:582.286800pt;}
.y6b{bottom:582.873867pt;}
.y51{bottom:582.989867pt;}
.y18{bottom:597.188533pt;}
.yd{bottom:599.620133pt;}
.y50{bottom:603.436933pt;}
.yc{bottom:616.953467pt;}
.y17{bottom:617.639333pt;}
.y8f{bottom:634.223733pt;}
.yb{bottom:634.286800pt;}
.y16{bottom:638.090133pt;}
.ya{bottom:651.620133pt;}
.y8e{bottom:654.223733pt;}
.y15{bottom:658.540800pt;}
.y9{bottom:668.953467pt;}
.y8d{bottom:674.223733pt;}
.y14{bottom:678.991600pt;}
.y8c{bottom:700.078267pt;}
.y8{bottom:717.798267pt;}
.y8b{bottom:725.932667pt;}
.y9c{bottom:730.055600pt;}
.y7{bottom:735.977733pt;}
.y9b{bottom:746.055600pt;}
.ya6{bottom:749.470800pt;}
.y8a{bottom:751.787067pt;}
.y6{bottom:754.157333pt;}
.y9a{bottom:762.055600pt;}
.ya5{bottom:768.885867pt;}
.y89{bottom:771.787067pt;}
.y5{bottom:772.553333pt;}
.y99{bottom:778.055600pt;}
.y4{bottom:790.732800pt;}
.y88{bottom:791.787067pt;}
.ya4{bottom:795.860133pt;}
.y98{bottom:801.614667pt;}
.y3{bottom:804.916400pt;}
.ya3{bottom:815.275333pt;}
.y97{bottom:817.614667pt;}
.y87{bottom:817.641467pt;}
.y96{bottom:833.614667pt;}
.ya2{bottom:842.249600pt;}
.y86{bottom:843.496000pt;}
.y95{bottom:849.614667pt;}
.y2{bottom:849.716400pt;}
.ya1{bottom:861.664800pt;}
.y94{bottom:865.614667pt;}
.y85{bottom:869.350400pt;}
.y1{bottom:878.516400pt;}
.ya0{bottom:881.080000pt;}
.y93{bottom:889.173600pt;}
.y84{bottom:895.204800pt;}
.y9f{bottom:900.495200pt;}
.y92{bottom:905.173600pt;}
.y83{bottom:915.204800pt;}
.y91{bottom:921.173600pt;}
.y9e{bottom:927.469467pt;}
.y37{bottom:940.342533pt;}
.y49{bottom:941.035333pt;}
.y90{bottom:944.732800pt;}
.y82{bottom:946.559333pt;}
.y9d{bottom:946.884667pt;}
.y36{bottom:951.009200pt;}
.y48{bottom:952.286267pt;}
.y4a{bottom:952.496133pt;}
.y35{bottom:961.675867pt;}
.y34{bottom:972.342533pt;}
.y4b{bottom:973.106800pt;}
.y4c{bottom:973.677200pt;}
.h4{height:20.400336pt;}
.h10{height:23.677270pt;}
.he{height:29.260800pt;}
.h11{height:34.080000pt;}
.h5{height:34.992000pt;}
.ha{height:36.000000pt;}
.h13{height:36.576000pt;}
.h14{height:36.864000pt;}
.hb{height:38.226562pt;}
.h12{height:39.296875pt;}
.hd{height:39.635417pt;}
.h3{height:40.670078pt;}
.h6{height:41.617188pt;}
.hc{height:41.867188pt;}
.h7{height:45.580729pt;}
.h15{height:46.997565pt;}
.h8{height:47.168000pt;}
.h9{height:47.562500pt;}
.h2{height:72.187355pt;}
.hf{height:98.995605pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x9{left:79.370133pt;}
.x2c{left:80.359067pt;}
.x32{left:83.149600pt;}
.x2f{left:87.725733pt;}
.x5{left:95.275867pt;}
.x25{left:97.484133pt;}
.x33{left:102.047200pt;}
.x4{left:106.188800pt;}
.x13{left:120.362400pt;}
.x30{left:186.771733pt;}
.x1c{left:188.829467pt;}
.x1d{left:194.229467pt;}
.x1{left:215.956000pt;}
.x26{left:220.108267pt;}
.x27{left:224.903200pt;}
.x2{left:232.238667pt;}
.x6{left:257.274267pt;}
.x1e{left:261.698267pt;}
.x1f{left:264.700667pt;}
.x3{left:274.046667pt;}
.x2d{left:276.871333pt;}
.x28{left:283.749867pt;}
.x29{left:286.752267pt;}
.x14{left:288.674667pt;}
.x15{left:294.074667pt;}
.x7{left:316.273733pt;}
.x16{left:328.151467pt;}
.x12{left:330.809600pt;}
.x17{left:333.551467pt;}
.x8{left:382.509467pt;}
.x20{left:390.302533pt;}
.xa{left:394.960667pt;}
.x34{left:398.740133pt;}
.x35{left:417.637867pt;}
.x31{left:436.220533pt;}
.xc{left:460.530667pt;}
.x2e{left:470.978533pt;}
.x18{left:478.453067pt;}
.x19{left:483.248133pt;}
.x11{left:497.197733pt;}
.xd{left:517.569600pt;}
.x21{left:529.707467pt;}
.x22{left:535.107467pt;}
.x10{left:565.822800pt;}
.xf{left:574.026133pt;}
.x23{left:591.236400pt;}
.x24{left:594.238800pt;}
.xe{left:599.434667pt;}
.x2b{left:613.247600pt;}
.x1a{left:627.477600pt;}
.x1b{left:632.877600pt;}
.xb{left:669.718667pt;}
.x2a{left:676.822800pt;}
}




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