
    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_a1c1cd5f0b62270a05c4ca09.woff')format("woff");}.ff1{font-family:ff1;line-height:0.894531;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_4d62198ff0c511bf317d8e5f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.951660;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_f30cfc2e3bca712b2041b907.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_4d91885b59d5b9e999b23a1a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_184d100186b756c294ccb1da.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_865f77617345d83b1cd8d0b6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_f30cfeda57372f848a4593b3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_598c86f5a040c0fae02a38a9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_7b34769b26bb45437635fdec.woff')format("woff");}.ff9{font-family:ff9;line-height:0.791992;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_05a3ad071c1446a35a8ea279.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_34e7bb5c726815458ce2f1de.woff')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_2fdb71659aedadd131bd407c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.896973;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_cbf9036b777931fae537e5dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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_f25a2caaf7160c3412a554c6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_dfa37639f0508af86399a229.woff')format("woff");}.fff{font-family:fff;line-height:0.894531;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_501a68106da3cc7625f0bb25.woff')format("woff");}.ff10{font-family:ff10;line-height:0.824219;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_6ece27d7bceedf1446e49f01.woff')format("woff");}.ff11{font-family:ff11;line-height:1.072754;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_dfa37639f0508af86399a229.woff')format("woff");}.ff12{font-family:ff12;line-height:0.894531;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_a1c1cd5f0b62270a05c4ca09.woff')format("woff");}.ff13{font-family:ff13;line-height:0.894531;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_4d62198ff0c511bf317d8e5f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.951660;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_bfd407e9b89bb7a4f057d50e.woff')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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_501a68106da3cc7625f0bb25.woff')format("woff");}.ff16{font-family:ff16;line-height:0.824219;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_17faaeb7cd6e05f9d282d8d1.woff')format("woff");}.ff17{font-family:ff17;line-height:1.093262;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:ff18;src:url('chunks/assets/font_589353d7834248638290e219.woff')format("woff");}.ff18{font-family:ff18;line-height:1.093262;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:ff19;src:url('chunks/assets/font_71b38e360db940053b0eac5d.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938965;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:ff1a;src:url('chunks/assets/font_bd66252edf089c6bd40b1d4a.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.095703;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:ff1b;src:url('chunks/assets/font_7cafc7c0a4fc0f310a226a72.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.072754;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-24.120000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v4{vertical-align:24.120000px;}
.v1{vertical-align:27.000000px;}
.ls23{letter-spacing:-2.070000px;}
.ls29{letter-spacing:-2.004000px;}
.ls1e{letter-spacing:-1.980000px;}
.ls1a{letter-spacing:-1.956000px;}
.ls4{letter-spacing:-1.944000px;}
.ls28{letter-spacing:-1.806000px;}
.ls3{letter-spacing:-1.800000px;}
.ls1f{letter-spacing:-1.710000px;}
.ls2a{letter-spacing:-1.572000px;}
.ls2d{letter-spacing:-1.488000px;}
.ls2b{letter-spacing:-1.464000px;}
.lsb{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.392000px;}
.ls9{letter-spacing:-1.368000px;}
.ls19{letter-spacing:-1.356000px;}
.ls2c{letter-spacing:-1.350000px;}
.ls5{letter-spacing:-1.314000px;}
.lsc{letter-spacing:-1.296000px;}
.ls6{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.188000px;}
.ls7{letter-spacing:-1.098000px;}
.lsd{letter-spacing:-1.056000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.118800px;}
.ls1{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.450000px;}
.ls13{letter-spacing:0.810000px;}
.lsa{letter-spacing:1.530000px;}
.ls14{letter-spacing:1.800000px;}
.ls11{letter-spacing:1.890000px;}
.ls20{letter-spacing:2.520000px;}
.ls27{letter-spacing:2.610000px;}
.ls10{letter-spacing:2.880000px;}
.ls1d{letter-spacing:2.970000px;}
.ls25{letter-spacing:4.050000px;}
.lsf{letter-spacing:4.410000px;}
.ls26{letter-spacing:5.130000px;}
.ls16{letter-spacing:7.770000px;}
.ls22{letter-spacing:8.130000px;}
.ls1c{letter-spacing:9.720000px;}
.ls21{letter-spacing:9.930000px;}
.ls12{letter-spacing:10.290000px;}
.ls18{letter-spacing:10.890000px;}
.ls17{letter-spacing:11.010000px;}
.lse{letter-spacing:15.120000px;}
.ls1b{letter-spacing:18.360000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.970000px;}
.ws9{word-spacing:-19.530000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.852320px;}
.ws13{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.632000px;}
.ws5{word-spacing:-16.470000px;}
.ws2{word-spacing:-16.200000px;}
.ws0{word-spacing:-16.056000px;}
.ws15{word-spacing:-15.750000px;}
.ws1c{word-spacing:-15.210000px;}
.ws1e{word-spacing:-15.078000px;}
.ws8{word-spacing:-15.030000px;}
.ws1f{word-spacing:-14.982000px;}
.ws17{word-spacing:-13.074000px;}
.ws19{word-spacing:-13.050000px;}
.ws1a{word-spacing:-13.026000px;}
.ws7{word-spacing:-12.312000px;}
.ws6{word-spacing:-12.186000px;}
.ws18{word-spacing:-12.150000px;}
.wsb{word-spacing:-9.720000px;}
.ws14{word-spacing:-4.128720px;}
.ws16{word-spacing:-3.171480px;}
.ws1b{word-spacing:-2.811480px;}
.ws1d{word-spacing:-2.768040px;}
.ws10{word-spacing:-2.220000px;}
.wse{word-spacing:-1.548000px;}
.ws11{word-spacing:-1.278000px;}
.wsf{word-spacing:-0.990000px;}
.ws12{word-spacing:-0.126000px;}
.wsd{word-spacing:-0.108000px;}
.wsc{word-spacing:0.000000px;}
._e{margin-left:-5.664000px;}
._9{margin-left:-4.608000px;}
._a{margin-left:-3.456000px;}
._1{margin-left:-2.448000px;}
._0{margin-left:-1.152000px;}
._2{width:1.723440px;}
._f{width:2.879988px;}
._c{width:4.020006px;}
._b{width:5.411994px;}
._4{width:6.546001px;}
._3{width:7.714200px;}
._8{width:9.473641px;}
._7{width:10.482000px;}
._10{width:11.908802px;}
._5{width:12.946800px;}
._6{width:13.974722px;}
._16{width:15.264000px;}
._d{width:16.848000px;}
._13{width:19.872000px;}
._15{width:21.024000px;}
._14{width:22.680000px;}
._17{width:27.210000px;}
._11{width:31.032000px;}
._12{width:32.760000px;}
.fc4{color:rgb(128,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs3{font-size:83.880000px;}
.fs2{font-size:114.120000px;}
.fsa{font-size:335.880000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y31{bottom:4.230000px;}
.y2{bottom:88.860000px;}
.y2f{bottom:130.800000px;}
.y11e{bottom:133.230000px;}
.y98{bottom:136.020000px;}
.y83{bottom:147.990000px;}
.y11d{bottom:152.220000px;}
.y2e{bottom:153.210000px;}
.y2d{bottom:165.270000px;}
.y82{bottom:170.490000px;}
.y14f{bottom:170.940000px;}
.y11c{bottom:171.210000px;}
.y2c{bottom:182.550000px;}
.y5b{bottom:187.770000px;}
.y14e{bottom:189.930000px;}
.y11b{bottom:190.200000px;}
.y5a{bottom:199.740000px;}
.y2b{bottom:204.960000px;}
.y14d{bottom:208.920000px;}
.y11a{bottom:209.190000px;}
.y2a{bottom:217.020000px;}
.y59{bottom:222.240000px;}
.y14c{bottom:227.910000px;}
.y119{bottom:228.090000px;}
.y58{bottom:234.300000px;}
.y29{bottom:239.520000px;}
.y14b{bottom:246.810000px;}
.y118{bottom:247.080000px;}
.ya3{bottom:251.490000px;}
.y57{bottom:256.710000px;}
.y14a{bottom:265.800000px;}
.y117{bottom:266.070000px;}
.y56{bottom:268.770000px;}
.ya2{bottom:273.990000px;}
.y149{bottom:284.790000px;}
.y116{bottom:285.060000px;}
.y81{bottom:286.050000px;}
.y55{bottom:291.270000px;}
.y28{bottom:295.590000px;}
.y97{bottom:303.240000px;}
.y148{bottom:303.780000px;}
.y115{bottom:304.050000px;}
.y54{bottom:308.460000px;}
.y27{bottom:316.290000px;}
.ya1{bottom:320.520000px;}
.y147{bottom:322.770000px;}
.y114{bottom:322.950000px;}
.y80{bottom:325.740000px;}
.y26{bottom:336.990000px;}
.y7f{bottom:337.800000px;}
.yec{bottom:339.240000px;}
.y146{bottom:341.760000px;}
.y113{bottom:341.940000px;}
.ya5{bottom:343.020000px;}
.y7e{bottom:354.990000px;}
.y53{bottom:355.800000px;}
.yca{bottom:357.060000px;}
.y25{bottom:357.690000px;}
.yeb{bottom:358.230000px;}
.y96{bottom:360.210000px;}
.y145{bottom:360.660000px;}
.y112{bottom:360.930000px;}
.y95{bottom:372.270000px;}
.y52{bottom:376.500000px;}
.yea{bottom:377.220000px;}
.y7d{bottom:377.490000px;}
.yc9{bottom:377.760000px;}
.y24{bottom:378.390000px;}
.y144{bottom:379.650000px;}
.y111{bottom:379.920000px;}
.y7c{bottom:389.550000px;}
.y94{bottom:394.770000px;}
.ye9{bottom:396.210000px;}
.y51{bottom:397.200000px;}
.yad{bottom:398.190000px;}
.yc8{bottom:398.460000px;}
.y143{bottom:398.640000px;}
.y110{bottom:398.910000px;}
.y23{bottom:399.090000px;}
.yb4{bottom:406.740000px;}
.y7b{bottom:411.960000px;}
.yae{bottom:414.660000px;}
.ye8{bottom:415.200000px;}
.y142{bottom:417.630000px;}
.y50{bottom:417.900000px;}
.yac{bottom:418.890000px;}
.yc7{bottom:419.160000px;}
.y22{bottom:419.790000px;}
.ya0{bottom:429.240000px;}
.ye7{bottom:434.190000px;}
.ya4{bottom:435.360000px;}
.y141{bottom:436.620000px;}
.y10f{bottom:436.800000px;}
.y4f{bottom:438.600000px;}
.yab{bottom:439.590000px;}
.yc6{bottom:439.860000px;}
.y21{bottom:440.490000px;}
.y9f{bottom:441.300000px;}
.yb3{bottom:446.520000px;}
.ye6{bottom:453.090000px;}
.y140{bottom:455.520000px;}
.y10e{bottom:455.790000px;}
.y93{bottom:456.060000px;}
.yb2{bottom:458.490000px;}
.y4e{bottom:459.300000px;}
.yaa{bottom:460.290000px;}
.yc5{bottom:460.560000px;}
.y20{bottom:461.190000px;}
.y9e{bottom:463.710000px;}
.ye5{bottom:472.080000px;}
.y13f{bottom:474.510000px;}
.y10d{bottom:474.780000px;}
.y7a{bottom:476.490000px;}
.y92{bottom:476.760000px;}
.y4d{bottom:480.000000px;}
.y9d{bottom:480.990000px;}
.yc4{bottom:481.260000px;}
.y1f{bottom:481.890000px;}
.ye4{bottom:491.070000px;}
.y13e{bottom:493.500000px;}
.y10c{bottom:493.770000px;}
.y79{bottom:497.190000px;}
.y91{bottom:497.460000px;}
.yb1{bottom:498.180000px;}
.y4c{bottom:500.700000px;}
.ya9{bottom:501.690000px;}
.yc3{bottom:501.960000px;}
.y1e{bottom:502.590000px;}
.ye3{bottom:510.060000px;}
.yb0{bottom:510.240000px;}
.y13d{bottom:512.490000px;}
.y10b{bottom:512.760000px;}
.y78{bottom:517.890000px;}
.y90{bottom:518.160000px;}
.y4b{bottom:521.400000px;}
.y9c{bottom:522.390000px;}
.yc2{bottom:522.660000px;}
.y1d{bottom:523.290000px;}
.ye2{bottom:529.050000px;}
.y13c{bottom:531.480000px;}
.y10a{bottom:531.660000px;}
.yaf{bottom:532.740000px;}
.y77{bottom:538.590000px;}
.y8f{bottom:538.860000px;}
.y4a{bottom:542.100000px;}
.y9b{bottom:543.090000px;}
.yc1{bottom:543.360000px;}
.y1c{bottom:543.990000px;}
.ye1{bottom:547.950000px;}
.y13b{bottom:550.470000px;}
.y109{bottom:550.650000px;}
.y76{bottom:559.320000px;}
.y8e{bottom:559.590000px;}
.y49{bottom:562.830000px;}
.ya8{bottom:563.820000px;}
.yc0{bottom:564.090000px;}
.y1b{bottom:564.720000px;}
.ye0{bottom:566.970000px;}
.y13a{bottom:569.400000px;}
.y108{bottom:569.670000px;}
.y9a{bottom:572.550000px;}
.y75{bottom:580.020000px;}
.y8d{bottom:580.290000px;}
.y48{bottom:583.530000px;}
.ya7{bottom:584.520000px;}
.ybf{bottom:584.790000px;}
.y1a{bottom:585.420000px;}
.ydf{bottom:585.960000px;}
.y139{bottom:588.390000px;}
.y107{bottom:588.660000px;}
.y74{bottom:600.720000px;}
.y8c{bottom:600.990000px;}
.y47{bottom:604.230000px;}
.ybe{bottom:605.490000px;}
.y19{bottom:606.120000px;}
.y138{bottom:607.380000px;}
.y106{bottom:607.650000px;}
.ya6{bottom:613.950000px;}
.y73{bottom:621.420000px;}
.y8b{bottom:621.690000px;}
.y46{bottom:624.930000px;}
.yde{bottom:625.920000px;}
.ybd{bottom:626.190000px;}
.y137{bottom:626.370000px;}
.y105{bottom:626.550000px;}
.y18{bottom:626.820000px;}
.y72{bottom:642.120000px;}
.y8a{bottom:642.390000px;}
.y136{bottom:645.360000px;}
.y104{bottom:645.540000px;}
.y45{bottom:645.630000px;}
.ydd{bottom:646.620000px;}
.ybc{bottom:646.890000px;}
.y17{bottom:647.520000px;}
.y71{bottom:662.820000px;}
.y89{bottom:663.090000px;}
.y30{bottom:664.350000px;}
.y103{bottom:664.530000px;}
.y44{bottom:666.330000px;}
.ydc{bottom:667.320000px;}
.ybb{bottom:667.500000px;}
.y16{bottom:668.220000px;}
.y135{bottom:683.250000px;}
.y70{bottom:683.520000px;}
.y88{bottom:683.790000px;}
.y43{bottom:687.030000px;}
.ydb{bottom:688.020000px;}
.yba{bottom:688.200000px;}
.y15{bottom:688.920000px;}
.y134{bottom:702.240000px;}
.y102{bottom:702.510000px;}
.y6f{bottom:704.220000px;}
.y87{bottom:704.490000px;}
.yda{bottom:708.720000px;}
.yb9{bottom:708.900000px;}
.y14{bottom:709.620000px;}
.y42{bottom:716.460000px;}
.y133{bottom:721.230000px;}
.y101{bottom:721.500000px;}
.y6e{bottom:724.920000px;}
.y86{bottom:725.190000px;}
.yd9{bottom:729.420000px;}
.yb8{bottom:729.600000px;}
.y41{bottom:738.420000px;}
.y13{bottom:739.050000px;}
.y132{bottom:740.220000px;}
.y100{bottom:740.400000px;}
.y99{bottom:745.620000px;}
.y85{bottom:745.890000px;}
.yd8{bottom:750.120000px;}
.yb7{bottom:750.300000px;}
.yff{bottom:759.390000px;}
.y6d{bottom:766.320000px;}
.y84{bottom:766.590000px;}
.yd7{bottom:770.820000px;}
.yb6{bottom:771.000000px;}
.y131{bottom:778.110000px;}
.yfe{bottom:778.380000px;}
.y6c{bottom:787.020000px;}
.y40{bottom:787.290000px;}
.yd6{bottom:791.520000px;}
.y130{bottom:797.100000px;}
.yfd{bottom:797.370000px;}
.yb5{bottom:800.520000px;}
.y6b{bottom:807.720000px;}
.y12{bottom:807.990000px;}
.yd5{bottom:812.220000px;}
.y12f{bottom:816.090000px;}
.yfc{bottom:816.360000px;}
.y11{bottom:825.270000px;}
.y6a{bottom:828.420000px;}
.y3f{bottom:828.690000px;}
.yd4{bottom:832.920000px;}
.y12e{bottom:835.080000px;}
.yfb{bottom:835.260000px;}
.y10{bottom:842.460000px;}
.y69{bottom:849.120000px;}
.y3e{bottom:849.390000px;}
.yd3{bottom:853.620000px;}
.y12d{bottom:854.070000px;}
.yfa{bottom:854.250000px;}
.yf{bottom:859.740000px;}
.y68{bottom:869.820000px;}
.y3d{bottom:870.090000px;}
.y12c{bottom:872.970000px;}
.yf9{bottom:873.240000px;}
.yd2{bottom:874.320000px;}
.ye{bottom:877.020000px;}
.y67{bottom:890.520000px;}
.y3c{bottom:890.790000px;}
.y12b{bottom:891.960000px;}
.yf8{bottom:892.230000px;}
.yd{bottom:894.210000px;}
.yd1{bottom:895.020000px;}
.y12a{bottom:910.950000px;}
.y66{bottom:911.220000px;}
.yc{bottom:911.490000px;}
.yd0{bottom:915.720000px;}
.y129{bottom:929.940000px;}
.yf7{bottom:930.210000px;}
.y65{bottom:931.920000px;}
.y3b{bottom:932.190000px;}
.ycf{bottom:936.420000px;}
.y128{bottom:948.930000px;}
.yf6{bottom:949.110000px;}
.yb{bottom:949.830000px;}
.y64{bottom:952.620000px;}
.y3a{bottom:952.890000px;}
.yce{bottom:957.120000px;}
.y127{bottom:967.830000px;}
.yf5{bottom:968.100000px;}
.ya{bottom:968.790000px;}
.y63{bottom:973.320000px;}
.y39{bottom:973.590000px;}
.ycd{bottom:977.820000px;}
.y126{bottom:986.820000px;}
.yf4{bottom:987.090000px;}
.y9{bottom:987.750000px;}
.y62{bottom:994.020000px;}
.y38{bottom:994.290000px;}
.ycc{bottom:998.430000px;}
.y125{bottom:1005.810000px;}
.yf3{bottom:1006.080000px;}
.y8{bottom:1006.710000px;}
.y61{bottom:1014.720000px;}
.y37{bottom:1014.990000px;}
.y124{bottom:1024.800000px;}
.yf2{bottom:1025.070000px;}
.y7{bottom:1027.620000px;}
.ycb{bottom:1027.980000px;}
.y60{bottom:1035.450000px;}
.y36{bottom:1035.720000px;}
.y123{bottom:1043.820000px;}
.yf1{bottom:1044.000000px;}
.y5f{bottom:1056.150000px;}
.y35{bottom:1056.420000px;}
.y122{bottom:1062.810000px;}
.yf0{bottom:1062.990000px;}
.y6{bottom:1076.220000px;}
.y5e{bottom:1076.850000px;}
.y34{bottom:1077.120000px;}
.y121{bottom:1081.710000px;}
.yef{bottom:1081.980000px;}
.y5d{bottom:1097.550000px;}
.y33{bottom:1097.820000px;}
.y120{bottom:1100.700000px;}
.yee{bottom:1100.970000px;}
.y5{bottom:1108.260000px;}
.y5c{bottom:1118.250000px;}
.y32{bottom:1118.520000px;}
.y11f{bottom:1119.690000px;}
.yed{bottom:1119.960000px;}
.y3{bottom:1159.020000px;}
.y1{bottom:1160.550000px;}
.h3{height:18.720000px;}
.hb{height:34.114922px;}
.h4{height:49.796016px;}
.hc{height:52.751777px;}
.h10{height:52.787109px;}
.h8{height:52.898555px;}
.h14{height:54.994922px;}
.h16{height:56.454785px;}
.h15{height:57.805840px;}
.h7{height:57.966680px;}
.hf{height:60.257812px;}
.h12{height:61.699219px;}
.hd{height:62.100000px;}
.h2{height:63.175781px;}
.h11{height:63.351562px;}
.h9{height:65.456016px;}
.h13{height:66.248789px;}
.ha{height:69.011895px;}
.h6{height:70.282266px;}
.h5{height:95.620078px;}
.he{height:294.715020px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:26.100000px;}
.wd{width:27.900000px;}
.w6{width:27.990000px;}
.wb{width:28.350000px;}
.wa{width:28.380000px;}
.w5{width:28.710000px;}
.wc{width:28.740000px;}
.w2{width:29.160000px;}
.w8{width:29.520000px;}
.w4{width:29.550000px;}
.w7{width:30.000000px;}
.w3{width:46.380000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.xd{left:127.740000px;}
.x9{left:148.980000px;}
.x2{left:153.570000px;}
.xa{left:412.800000px;}
.x4{left:507.930000px;}
.x8{left:521.619000px;}
.x5{left:536.613000px;}
.x7{left:571.932000px;}
.x6{left:638.401500px;}
.x3{left:757.530000px;}
.xb{left:758.700000px;}
.xc{left:760.590000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-21.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v4{vertical-align:21.440000pt;}
.v1{vertical-align:24.000000pt;}
.ls23{letter-spacing:-1.840000pt;}
.ls29{letter-spacing:-1.781333pt;}
.ls1e{letter-spacing:-1.760000pt;}
.ls1a{letter-spacing:-1.738667pt;}
.ls4{letter-spacing:-1.728000pt;}
.ls28{letter-spacing:-1.605333pt;}
.ls3{letter-spacing:-1.600000pt;}
.ls1f{letter-spacing:-1.520000pt;}
.ls2a{letter-spacing:-1.397333pt;}
.ls2d{letter-spacing:-1.322667pt;}
.ls2b{letter-spacing:-1.301333pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.237333pt;}
.ls9{letter-spacing:-1.216000pt;}
.ls19{letter-spacing:-1.205333pt;}
.ls2c{letter-spacing:-1.200000pt;}
.ls5{letter-spacing:-1.168000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-1.056000pt;}
.ls7{letter-spacing:-0.976000pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.105600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.400000pt;}
.ls13{letter-spacing:0.720000pt;}
.lsa{letter-spacing:1.360000pt;}
.ls14{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.680000pt;}
.ls20{letter-spacing:2.240000pt;}
.ls27{letter-spacing:2.320000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:2.640000pt;}
.ls25{letter-spacing:3.600000pt;}
.lsf{letter-spacing:3.920000pt;}
.ls26{letter-spacing:4.560000pt;}
.ls16{letter-spacing:6.906667pt;}
.ls22{letter-spacing:7.226667pt;}
.ls1c{letter-spacing:8.640000pt;}
.ls21{letter-spacing:8.826667pt;}
.ls12{letter-spacing:9.146667pt;}
.ls18{letter-spacing:9.680000pt;}
.ls17{letter-spacing:9.786667pt;}
.lse{letter-spacing:13.440000pt;}
.ls1b{letter-spacing:16.320000pt;}
.ws4{word-spacing:-18.640000pt;}
.ws9{word-spacing:-17.360000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.979840pt;}
.ws13{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.784000pt;}
.ws5{word-spacing:-14.640000pt;}
.ws2{word-spacing:-14.400000pt;}
.ws0{word-spacing:-14.272000pt;}
.ws15{word-spacing:-14.000000pt;}
.ws1c{word-spacing:-13.520000pt;}
.ws1e{word-spacing:-13.402667pt;}
.ws8{word-spacing:-13.360000pt;}
.ws1f{word-spacing:-13.317333pt;}
.ws17{word-spacing:-11.621333pt;}
.ws19{word-spacing:-11.600000pt;}
.ws1a{word-spacing:-11.578667pt;}
.ws7{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.832000pt;}
.ws18{word-spacing:-10.800000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws14{word-spacing:-3.669973pt;}
.ws16{word-spacing:-2.819093pt;}
.ws1b{word-spacing:-2.499093pt;}
.ws1d{word-spacing:-2.460480pt;}
.ws10{word-spacing:-1.973333pt;}
.wse{word-spacing:-1.376000pt;}
.ws11{word-spacing:-1.136000pt;}
.wsf{word-spacing:-0.880000pt;}
.ws12{word-spacing:-0.112000pt;}
.wsd{word-spacing:-0.096000pt;}
.wsc{word-spacing:0.000000pt;}
._e{margin-left:-5.034667pt;}
._9{margin-left:-4.096000pt;}
._a{margin-left:-3.072000pt;}
._1{margin-left:-2.176000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.531947pt;}
._f{width:2.559990pt;}
._c{width:3.573338pt;}
._b{width:4.810662pt;}
._4{width:5.818668pt;}
._3{width:6.857066pt;}
._8{width:8.421014pt;}
._7{width:9.317333pt;}
._10{width:10.585602pt;}
._5{width:11.508266pt;}
._6{width:12.421975pt;}
._16{width:13.568000pt;}
._d{width:14.976000pt;}
._13{width:17.664000pt;}
._15{width:18.688000pt;}
._14{width:20.160000pt;}
._17{width:24.186667pt;}
._11{width:27.584000pt;}
._12{width:29.120000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs3{font-size:74.560000pt;}
.fs2{font-size:101.440000pt;}
.fsa{font-size:298.560000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y31{bottom:3.760000pt;}
.y2{bottom:78.986667pt;}
.y2f{bottom:116.266667pt;}
.y11e{bottom:118.426667pt;}
.y98{bottom:120.906667pt;}
.y83{bottom:131.546667pt;}
.y11d{bottom:135.306667pt;}
.y2e{bottom:136.186667pt;}
.y2d{bottom:146.906667pt;}
.y82{bottom:151.546667pt;}
.y14f{bottom:151.946667pt;}
.y11c{bottom:152.186667pt;}
.y2c{bottom:162.266667pt;}
.y5b{bottom:166.906667pt;}
.y14e{bottom:168.826667pt;}
.y11b{bottom:169.066667pt;}
.y5a{bottom:177.546667pt;}
.y2b{bottom:182.186667pt;}
.y14d{bottom:185.706667pt;}
.y11a{bottom:185.946667pt;}
.y2a{bottom:192.906667pt;}
.y59{bottom:197.546667pt;}
.y14c{bottom:202.586667pt;}
.y119{bottom:202.746667pt;}
.y58{bottom:208.266667pt;}
.y29{bottom:212.906667pt;}
.y14b{bottom:219.386667pt;}
.y118{bottom:219.626667pt;}
.ya3{bottom:223.546667pt;}
.y57{bottom:228.186667pt;}
.y14a{bottom:236.266667pt;}
.y117{bottom:236.506667pt;}
.y56{bottom:238.906667pt;}
.ya2{bottom:243.546667pt;}
.y149{bottom:253.146667pt;}
.y116{bottom:253.386667pt;}
.y81{bottom:254.266667pt;}
.y55{bottom:258.906667pt;}
.y28{bottom:262.746667pt;}
.y97{bottom:269.546667pt;}
.y148{bottom:270.026667pt;}
.y115{bottom:270.266667pt;}
.y54{bottom:274.186667pt;}
.y27{bottom:281.146667pt;}
.ya1{bottom:284.906667pt;}
.y147{bottom:286.906667pt;}
.y114{bottom:287.066667pt;}
.y80{bottom:289.546667pt;}
.y26{bottom:299.546667pt;}
.y7f{bottom:300.266667pt;}
.yec{bottom:301.546667pt;}
.y146{bottom:303.786667pt;}
.y113{bottom:303.946667pt;}
.ya5{bottom:304.906667pt;}
.y7e{bottom:315.546667pt;}
.y53{bottom:316.266667pt;}
.yca{bottom:317.386667pt;}
.y25{bottom:317.946667pt;}
.yeb{bottom:318.426667pt;}
.y96{bottom:320.186667pt;}
.y145{bottom:320.586667pt;}
.y112{bottom:320.826667pt;}
.y95{bottom:330.906667pt;}
.y52{bottom:334.666667pt;}
.yea{bottom:335.306667pt;}
.y7d{bottom:335.546667pt;}
.yc9{bottom:335.786667pt;}
.y24{bottom:336.346667pt;}
.y144{bottom:337.466667pt;}
.y111{bottom:337.706667pt;}
.y7c{bottom:346.266667pt;}
.y94{bottom:350.906667pt;}
.ye9{bottom:352.186667pt;}
.y51{bottom:353.066667pt;}
.yad{bottom:353.946667pt;}
.yc8{bottom:354.186667pt;}
.y143{bottom:354.346667pt;}
.y110{bottom:354.586667pt;}
.y23{bottom:354.746667pt;}
.yb4{bottom:361.546667pt;}
.y7b{bottom:366.186667pt;}
.yae{bottom:368.586667pt;}
.ye8{bottom:369.066667pt;}
.y142{bottom:371.226667pt;}
.y50{bottom:371.466667pt;}
.yac{bottom:372.346667pt;}
.yc7{bottom:372.586667pt;}
.y22{bottom:373.146667pt;}
.ya0{bottom:381.546667pt;}
.ye7{bottom:385.946667pt;}
.ya4{bottom:386.986667pt;}
.y141{bottom:388.106667pt;}
.y10f{bottom:388.266667pt;}
.y4f{bottom:389.866667pt;}
.yab{bottom:390.746667pt;}
.yc6{bottom:390.986667pt;}
.y21{bottom:391.546667pt;}
.y9f{bottom:392.266667pt;}
.yb3{bottom:396.906667pt;}
.ye6{bottom:402.746667pt;}
.y140{bottom:404.906667pt;}
.y10e{bottom:405.146667pt;}
.y93{bottom:405.386667pt;}
.yb2{bottom:407.546667pt;}
.y4e{bottom:408.266667pt;}
.yaa{bottom:409.146667pt;}
.yc5{bottom:409.386667pt;}
.y20{bottom:409.946667pt;}
.y9e{bottom:412.186667pt;}
.ye5{bottom:419.626667pt;}
.y13f{bottom:421.786667pt;}
.y10d{bottom:422.026667pt;}
.y7a{bottom:423.546667pt;}
.y92{bottom:423.786667pt;}
.y4d{bottom:426.666667pt;}
.y9d{bottom:427.546667pt;}
.yc4{bottom:427.786667pt;}
.y1f{bottom:428.346667pt;}
.ye4{bottom:436.506667pt;}
.y13e{bottom:438.666667pt;}
.y10c{bottom:438.906667pt;}
.y79{bottom:441.946667pt;}
.y91{bottom:442.186667pt;}
.yb1{bottom:442.826667pt;}
.y4c{bottom:445.066667pt;}
.ya9{bottom:445.946667pt;}
.yc3{bottom:446.186667pt;}
.y1e{bottom:446.746667pt;}
.ye3{bottom:453.386667pt;}
.yb0{bottom:453.546667pt;}
.y13d{bottom:455.546667pt;}
.y10b{bottom:455.786667pt;}
.y78{bottom:460.346667pt;}
.y90{bottom:460.586667pt;}
.y4b{bottom:463.466667pt;}
.y9c{bottom:464.346667pt;}
.yc2{bottom:464.586667pt;}
.y1d{bottom:465.146667pt;}
.ye2{bottom:470.266667pt;}
.y13c{bottom:472.426667pt;}
.y10a{bottom:472.586667pt;}
.yaf{bottom:473.546667pt;}
.y77{bottom:478.746667pt;}
.y8f{bottom:478.986667pt;}
.y4a{bottom:481.866667pt;}
.y9b{bottom:482.746667pt;}
.yc1{bottom:482.986667pt;}
.y1c{bottom:483.546667pt;}
.ye1{bottom:487.066667pt;}
.y13b{bottom:489.306667pt;}
.y109{bottom:489.466667pt;}
.y76{bottom:497.173333pt;}
.y8e{bottom:497.413333pt;}
.y49{bottom:500.293333pt;}
.ya8{bottom:501.173333pt;}
.yc0{bottom:501.413333pt;}
.y1b{bottom:501.973333pt;}
.ye0{bottom:503.973333pt;}
.y13a{bottom:506.133333pt;}
.y108{bottom:506.373333pt;}
.y9a{bottom:508.933333pt;}
.y75{bottom:515.573333pt;}
.y8d{bottom:515.813333pt;}
.y48{bottom:518.693333pt;}
.ya7{bottom:519.573333pt;}
.ybf{bottom:519.813333pt;}
.y1a{bottom:520.373333pt;}
.ydf{bottom:520.853333pt;}
.y139{bottom:523.013333pt;}
.y107{bottom:523.253333pt;}
.y74{bottom:533.973333pt;}
.y8c{bottom:534.213333pt;}
.y47{bottom:537.093333pt;}
.ybe{bottom:538.213333pt;}
.y19{bottom:538.773333pt;}
.y138{bottom:539.893333pt;}
.y106{bottom:540.133333pt;}
.ya6{bottom:545.733333pt;}
.y73{bottom:552.373333pt;}
.y8b{bottom:552.613333pt;}
.y46{bottom:555.493333pt;}
.yde{bottom:556.373333pt;}
.ybd{bottom:556.613333pt;}
.y137{bottom:556.773333pt;}
.y105{bottom:556.933333pt;}
.y18{bottom:557.173333pt;}
.y72{bottom:570.773333pt;}
.y8a{bottom:571.013333pt;}
.y136{bottom:573.653333pt;}
.y104{bottom:573.813333pt;}
.y45{bottom:573.893333pt;}
.ydd{bottom:574.773333pt;}
.ybc{bottom:575.013333pt;}
.y17{bottom:575.573333pt;}
.y71{bottom:589.173333pt;}
.y89{bottom:589.413333pt;}
.y30{bottom:590.533333pt;}
.y103{bottom:590.693333pt;}
.y44{bottom:592.293333pt;}
.ydc{bottom:593.173333pt;}
.ybb{bottom:593.333333pt;}
.y16{bottom:593.973333pt;}
.y135{bottom:607.333333pt;}
.y70{bottom:607.573333pt;}
.y88{bottom:607.813333pt;}
.y43{bottom:610.693333pt;}
.ydb{bottom:611.573333pt;}
.yba{bottom:611.733333pt;}
.y15{bottom:612.373333pt;}
.y134{bottom:624.213333pt;}
.y102{bottom:624.453333pt;}
.y6f{bottom:625.973333pt;}
.y87{bottom:626.213333pt;}
.yda{bottom:629.973333pt;}
.yb9{bottom:630.133333pt;}
.y14{bottom:630.773333pt;}
.y42{bottom:636.853333pt;}
.y133{bottom:641.093333pt;}
.y101{bottom:641.333333pt;}
.y6e{bottom:644.373333pt;}
.y86{bottom:644.613333pt;}
.yd9{bottom:648.373333pt;}
.yb8{bottom:648.533333pt;}
.y41{bottom:656.373333pt;}
.y13{bottom:656.933333pt;}
.y132{bottom:657.973333pt;}
.y100{bottom:658.133333pt;}
.y99{bottom:662.773333pt;}
.y85{bottom:663.013333pt;}
.yd8{bottom:666.773333pt;}
.yb7{bottom:666.933333pt;}
.yff{bottom:675.013333pt;}
.y6d{bottom:681.173333pt;}
.y84{bottom:681.413333pt;}
.yd7{bottom:685.173333pt;}
.yb6{bottom:685.333333pt;}
.y131{bottom:691.653333pt;}
.yfe{bottom:691.893333pt;}
.y6c{bottom:699.573333pt;}
.y40{bottom:699.813333pt;}
.yd6{bottom:703.573333pt;}
.y130{bottom:708.533333pt;}
.yfd{bottom:708.773333pt;}
.yb5{bottom:711.573333pt;}
.y6b{bottom:717.973333pt;}
.y12{bottom:718.213333pt;}
.yd5{bottom:721.973333pt;}
.y12f{bottom:725.413333pt;}
.yfc{bottom:725.653333pt;}
.y11{bottom:733.573333pt;}
.y6a{bottom:736.373333pt;}
.y3f{bottom:736.613333pt;}
.yd4{bottom:740.373333pt;}
.y12e{bottom:742.293333pt;}
.yfb{bottom:742.453333pt;}
.y10{bottom:748.853333pt;}
.y69{bottom:754.773333pt;}
.y3e{bottom:755.013333pt;}
.yd3{bottom:758.773333pt;}
.y12d{bottom:759.173333pt;}
.yfa{bottom:759.333333pt;}
.yf{bottom:764.213333pt;}
.y68{bottom:773.173333pt;}
.y3d{bottom:773.413333pt;}
.y12c{bottom:775.973333pt;}
.yf9{bottom:776.213333pt;}
.yd2{bottom:777.173333pt;}
.ye{bottom:779.573333pt;}
.y67{bottom:791.573333pt;}
.y3c{bottom:791.813333pt;}
.y12b{bottom:792.853333pt;}
.yf8{bottom:793.093333pt;}
.yd{bottom:794.853333pt;}
.yd1{bottom:795.573333pt;}
.y12a{bottom:809.733333pt;}
.y66{bottom:809.973333pt;}
.yc{bottom:810.213333pt;}
.yd0{bottom:813.973333pt;}
.y129{bottom:826.613333pt;}
.yf7{bottom:826.853333pt;}
.y65{bottom:828.373333pt;}
.y3b{bottom:828.613333pt;}
.ycf{bottom:832.373333pt;}
.y128{bottom:843.493333pt;}
.yf6{bottom:843.653333pt;}
.yb{bottom:844.293333pt;}
.y64{bottom:846.773333pt;}
.y3a{bottom:847.013333pt;}
.yce{bottom:850.773333pt;}
.y127{bottom:860.293333pt;}
.yf5{bottom:860.533333pt;}
.ya{bottom:861.146667pt;}
.y63{bottom:865.173333pt;}
.y39{bottom:865.413333pt;}
.ycd{bottom:869.173333pt;}
.y126{bottom:877.173333pt;}
.yf4{bottom:877.413333pt;}
.y9{bottom:878.000000pt;}
.y62{bottom:883.573333pt;}
.y38{bottom:883.813333pt;}
.ycc{bottom:887.493333pt;}
.y125{bottom:894.053333pt;}
.yf3{bottom:894.293333pt;}
.y8{bottom:894.853333pt;}
.y61{bottom:901.973333pt;}
.y37{bottom:902.213333pt;}
.y124{bottom:910.933333pt;}
.yf2{bottom:911.173333pt;}
.y7{bottom:913.440000pt;}
.ycb{bottom:913.760000pt;}
.y60{bottom:920.400000pt;}
.y36{bottom:920.640000pt;}
.y123{bottom:927.840000pt;}
.yf1{bottom:928.000000pt;}
.y5f{bottom:938.800000pt;}
.y35{bottom:939.040000pt;}
.y122{bottom:944.720000pt;}
.yf0{bottom:944.880000pt;}
.y6{bottom:956.640000pt;}
.y5e{bottom:957.200000pt;}
.y34{bottom:957.440000pt;}
.y121{bottom:961.520000pt;}
.yef{bottom:961.760000pt;}
.y5d{bottom:975.600000pt;}
.y33{bottom:975.840000pt;}
.y120{bottom:978.400000pt;}
.yee{bottom:978.640000pt;}
.y5{bottom:985.120000pt;}
.y5c{bottom:994.000000pt;}
.y32{bottom:994.240000pt;}
.y11f{bottom:995.280000pt;}
.yed{bottom:995.520000pt;}
.y3{bottom:1030.240000pt;}
.y1{bottom:1031.600000pt;}
.h3{height:16.640000pt;}
.hb{height:30.324375pt;}
.h4{height:44.263125pt;}
.hc{height:46.890469pt;}
.h10{height:46.921875pt;}
.h8{height:47.020937pt;}
.h14{height:48.884375pt;}
.h16{height:50.182031pt;}
.h15{height:51.382969pt;}
.h7{height:51.525937pt;}
.hf{height:53.562500pt;}
.h12{height:54.843750pt;}
.hd{height:55.200000pt;}
.h2{height:56.156250pt;}
.h11{height:56.312500pt;}
.h9{height:58.183125pt;}
.h13{height:58.887812pt;}
.ha{height:61.343906pt;}
.h6{height:62.473125pt;}
.h5{height:84.995625pt;}
.he{height:261.968906pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:23.200000pt;}
.wd{width:24.800000pt;}
.w6{width:24.880000pt;}
.wb{width:25.200000pt;}
.wa{width:25.226667pt;}
.w5{width:25.520000pt;}
.wc{width:25.546667pt;}
.w2{width:25.920000pt;}
.w8{width:26.240000pt;}
.w4{width:26.266667pt;}
.w7{width:26.666667pt;}
.w3{width:41.226667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.xd{left:113.546667pt;}
.x9{left:132.426667pt;}
.x2{left:136.506667pt;}
.xa{left:366.933333pt;}
.x4{left:451.493333pt;}
.x8{left:463.661333pt;}
.x5{left:476.989333pt;}
.x7{left:508.384000pt;}
.x6{left:567.468000pt;}
.x3{left:673.360000pt;}
.xb{left:674.400000pt;}
.xc{left:676.080000pt;}
}




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