
    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_1bfa4097d404bc3d514fdd64.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4a609f4973702452a02bc88e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_43f0deb1657591dfd870599c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c62b6633827f9de6ebce6aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.753516;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_86b71e8ac96cf81d2169b41c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_264b6aa2f4006a2867ec7f0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906738;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_8eac780f10b24023d243e665.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.753516;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_6bac609002acd48e9658e40d.woff2')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_705bc6b59c5671325dd24463.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_23e4977f4deee9a424cbc1be.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_416ac03eeeb8750d7b44bba1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a2139b2a3997735a58dbd18.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_17d8449e6b0866a883cd366a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.768555;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_94da93f71abf31c94376f190.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.753516;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_9665ec0c330c713a75488e63.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_40052693fbcdae493229300e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1d548d6e014970750af0aad7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.753516;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_2f3161f8fbcc839a0904a4d6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_eafc1356e9560b00c02b30b0.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_450954c0a001be26fe10e3f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.928711;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_a07ab409d4c55a31e5f8239f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.804443;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_e230cdd9d0570dedb0373cc2.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_5fbc8c412a81d870656bf623.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.718262;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_95f4174f7991bbebe03a9622.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a90fd1c40418d50858a63bf6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.928711;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(0.250001,0.000000,-0.079055,0.237171,0,0);-ms-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);-webkit-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);}
.m7{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255525,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.500000px;}
.ls2{letter-spacing:-6.000000px;}
.ls1{letter-spacing:-3.000000px;}
.ls3{letter-spacing:-2.999983px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:3.000000px;}
.ls4{letter-spacing:8.856000px;}
.ls6{letter-spacing:18.000000px;}
.ls5{letter-spacing:26.760000px;}
.ls8{letter-spacing:1307.400000px;}
.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;}
}
.ws6{word-spacing:-43.908000px;}
.ws7{word-spacing:-39.162000px;}
.ws8{word-spacing:-32.718000px;}
.ws2{word-spacing:-18.480000px;}
.ws9{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.200000px;}
.wsa{word-spacing:-12.146400px;}
.wsc{word-spacing:-11.568000px;}
.ws1{word-spacing:-8.580000px;}
.wsb{word-spacing:-6.045000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:8.219954px;}
.ws3{word-spacing:18.162000px;}
._3c{margin-left:-23.040000px;}
._1e{margin-left:-19.377000px;}
._1c{margin-left:-14.892000px;}
._22{margin-left:-13.422000px;}
._1b{margin-left:-12.348000px;}
._36{margin-left:-10.680000px;}
._1a{margin-left:-9.384000px;}
._1d{margin-left:-7.854000px;}
._25{margin-left:-6.216000px;}
._20{margin-left:-5.100000px;}
._15{margin-left:-3.252000px;}
._0{margin-left:-2.106000px;}
._16{margin-left:-1.014000px;}
._5{width:1.680000px;}
._7{width:2.688000px;}
._1{width:4.116000px;}
._14{width:5.148000px;}
._4{width:6.216000px;}
._3{width:8.064000px;}
._f{width:9.324000px;}
._8{width:10.686000px;}
._a{width:12.027000px;}
._9{width:13.449000px;}
._b{width:14.970000px;}
._c{width:16.962000px;}
._d{width:18.864000px;}
._19{width:19.956000px;}
._12{width:21.000000px;}
._10{width:22.131000px;}
._13{width:23.640000px;}
._18{width:24.747000px;}
._17{width:26.364000px;}
._6{width:27.720000px;}
._21{width:29.256000px;}
._2{width:31.248000px;}
._23{width:32.877000px;}
._11{width:34.563000px;}
._24{width:35.808000px;}
._46{width:38.685000px;}
._26{width:50.280000px;}
._30{width:53.352000px;}
._31{width:54.852000px;}
._34{width:56.352000px;}
._35{width:57.852000px;}
._38{width:59.004000px;}
._39{width:60.582000px;}
._3a{width:61.800000px;}
._3d{width:63.582000px;}
._3f{width:64.704000px;}
._40{width:66.204000px;}
._e{width:73.506000px;}
._1f{width:78.744000px;}
._2a{width:81.108000px;}
._2c{width:82.152000px;}
._2e{width:85.152000px;}
._28{width:116.400000px;}
._48{width:118.104000px;}
._44{width:119.466000px;}
._49{width:137.718000px;}
._43{width:141.453000px;}
._3e{width:143.700000px;}
._32{width:146.808000px;}
._2b{width:147.900000px;}
._2d{width:149.388000px;}
._45{width:172.320000px;}
._42{width:176.700000px;}
._37{width:193.164000px;}
._33{width:194.400000px;}
._3b{width:195.564000px;}
._2f{width:197.976000px;}
._29{width:199.230000px;}
._47{width:222.906000px;}
._27{width:233.931000px;}
._41{width:315.744000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs5{font-size:44.999749px;}
.fsd{font-size:48.000000px;}
.fsb{font-size:50.400000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.fsc{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.fs2{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:0.375030px;}
.y1{bottom:0.750030px;}
.y2e{bottom:34.950000px;}
.y18{bottom:36.015000px;}
.y53{bottom:139.069500px;}
.y2c{bottom:141.913500px;}
.y17{bottom:141.915000px;}
.yd4{bottom:143.325000px;}
.y77{bottom:144.018000px;}
.yd6{bottom:147.975000px;}
.yb0{bottom:158.103000px;}
.y52{bottom:158.494500px;}
.y2b{bottom:160.962000px;}
.y16{bottom:160.963500px;}
.y76{bottom:163.818000px;}
.yd3{bottom:169.575000px;}
.yd5{bottom:173.550000px;}
.y51{bottom:177.919500px;}
.y2a{bottom:181.135500px;}
.y15{bottom:181.137000px;}
.y75{bottom:182.568000px;}
.yd1{bottom:190.800000px;}
.y50{bottom:197.344500px;}
.y29{bottom:199.135500px;}
.y14{bottom:199.137000px;}
.yaf{bottom:199.503000px;}
.y74{bottom:201.616500px;}
.yd2{bottom:211.348500px;}
.y4f{bottom:216.393000px;}
.y28{bottom:218.184000px;}
.y13{bottom:218.185500px;}
.yae{bottom:218.551500px;}
.y73{bottom:220.366500px;}
.y4e{bottom:235.143000px;}
.y27{bottom:236.934000px;}
.y12{bottom:236.935500px;}
.yad{bottom:238.350000px;}
.yac{bottom:238.351500px;}
.yd0{bottom:238.354500px;}
.y72{bottom:238.741500px;}
.y4d{bottom:255.316500px;}
.y26{bottom:257.107500px;}
.y11{bottom:257.109000px;}
.yab{bottom:257.400000px;}
.ycf{bottom:257.778000px;}
.y71{bottom:258.915000px;}
.y4c{bottom:274.740000px;}
.y25{bottom:275.107500px;}
.y10{bottom:275.109000px;}
.yaa{bottom:276.900000px;}
.yce{bottom:277.203000px;}
.y70{bottom:277.965000px;}
.y4b{bottom:293.788500px;}
.y24{bottom:294.156000px;}
.yf{bottom:294.157500px;}
.ya9{bottom:295.200000px;}
.ya8{bottom:295.203000px;}
.ycd{bottom:296.703000px;}
.y6f{bottom:297.388500px;}
.y4a{bottom:313.213500px;}
.y23{bottom:313.581000px;}
.ye{bottom:313.582500px;}
.ya7{bottom:315.751500px;}
.y6e{bottom:316.138500px;}
.ycc{bottom:317.176500px;}
.yd{bottom:332.707500px;}
.y49{bottom:332.713500px;}
.y22{bottom:333.004500px;}
.ya6{bottom:334.725000px;}
.y6d{bottom:335.562000px;}
.y48{bottom:351.762000px;}
.y21{bottom:352.129500px;}
.yc{bottom:352.131000px;}
.ya5{bottom:353.850000px;}
.y6c{bottom:354.610500px;}
.ycb{bottom:356.100000px;}
.yca{bottom:356.101500px;}
.y20{bottom:371.178000px;}
.yb{bottom:371.179500px;}
.y47{bottom:371.185500px;}
.ya4{bottom:372.975000px;}
.y6b{bottom:374.109000px;}
.yc9{bottom:374.775000px;}
.yc8{bottom:374.781000px;}
.y46{bottom:389.185500px;}
.y1f{bottom:390.603000px;}
.ya{bottom:390.604500px;}
.ya3{bottom:392.100000px;}
.ya2{bottom:392.101500px;}
.y6a{bottom:393.159000px;}
.yc6{bottom:402.531000px;}
.y1e{bottom:409.353000px;}
.y9{bottom:409.354500px;}
.y45{bottom:410.110500px;}
.ya1{bottom:411.525000px;}
.y69{bottom:412.209000px;}
.yc7{bottom:419.106000px;}
.y44{bottom:429.159000px;}
.ya0{bottom:430.200000px;}
.y9f{bottom:430.201500px;}
.y68{bottom:431.334000px;}
.y8{bottom:448.203000px;}
.y43{bottom:449.334000px;}
.y9e{bottom:449.701500px;}
.y67{bottom:451.507500px;}
.yc5{bottom:452.556000px;}
.y2d{bottom:465.900000px;}
.y1d{bottom:466.576500px;}
.y9d{bottom:467.326500px;}
.y42{bottom:468.757500px;}
.y66{bottom:470.182500px;}
.yc4{bottom:471.606000px;}
.y9c{bottom:487.800000px;}
.y9b{bottom:487.803000px;}
.y41{bottom:487.807500px;}
.y65{bottom:489.982500px;}
.yc3{bottom:491.779500px;}
.y89{bottom:505.131000px;}
.y40{bottom:506.932500px;}
.y9a{bottom:508.353000px;}
.y64{bottom:509.107500px;}
.yc2{bottom:510.154500px;}
.y88{bottom:524.931000px;}
.y3f{bottom:525.982500px;}
.y99{bottom:527.103000px;}
.y63{bottom:528.531000px;}
.yc1{bottom:529.579500px;}
.y1c{bottom:529.951500px;}
.y7{bottom:529.953000px;}
.y87{bottom:544.356000px;}
.y3e{bottom:545.406000px;}
.y98{bottom:546.526500px;}
.y62{bottom:547.581000px;}
.yc0{bottom:548.704500px;}
.y6{bottom:549.376500px;}
.y1b{bottom:549.750000px;}
.y86{bottom:563.404500px;}
.y3d{bottom:564.531000px;}
.y97{bottom:565.201500px;}
.y61{bottom:567.079500px;}
.ybf{bottom:567.753000px;}
.y1a{bottom:568.800000px;}
.y5{bottom:568.801500px;}
.y85{bottom:582.529500px;}
.y3c{bottom:583.206000px;}
.y96{bottom:585.000000px;}
.y60{bottom:586.129500px;}
.ybe{bottom:587.553000px;}
.y19{bottom:596.925000px;}
.y4{bottom:596.926500px;}
.y84{bottom:602.329500px;}
.y3b{bottom:603.754500px;}
.y95{bottom:604.500000px;}
.y5f{bottom:605.179500px;}
.ybd{bottom:606.603000px;}
.yd9{bottom:621.000000px;}
.y83{bottom:621.303000px;}
.y3a{bottom:623.179500px;}
.y94{bottom:623.925000px;}
.y93{bottom:623.926500px;}
.y5e{bottom:624.604500px;}
.ybc{bottom:625.728000px;}
.y82{bottom:640.803000px;}
.y39{bottom:642.304500px;}
.y5d{bottom:643.729500px;}
.y92{bottom:644.400000px;}
.ybb{bottom:645.151500px;}
.y3{bottom:657.376500px;}
.y81{bottom:660.303000px;}
.y38{bottom:662.104500px;}
.y5c{bottom:663.153000px;}
.y91{bottom:663.525000px;}
.y90{bottom:663.528000px;}
.yba{bottom:664.201500px;}
.y80{bottom:679.353000px;}
.y37{bottom:681.153000px;}
.y5b{bottom:681.903000px;}
.y8f{bottom:682.953000px;}
.yb9{bottom:683.701500px;}
.y2{bottom:686.925000px;}
.y7f{bottom:698.776500px;}
.y36{bottom:700.578000px;}
.y5a{bottom:700.953000px;}
.y8e{bottom:702.378000px;}
.yb8{bottom:703.126500px;}
.y7e{bottom:718.201500px;}
.y35{bottom:720.003000px;}
.y59{bottom:720.378000px;}
.y8d{bottom:721.503000px;}
.yb7{bottom:722.175000px;}
.y7d{bottom:737.326500px;}
.y34{bottom:739.128000px;}
.y58{bottom:739.503000px;}
.y8c{bottom:740.926500px;}
.yb6{bottom:741.300000px;}
.y7c{bottom:756.376500px;}
.y33{bottom:758.176500px;}
.y57{bottom:758.551500px;}
.yb5{bottom:760.350000px;}
.yb4{bottom:760.353000px;}
.y8b{bottom:762.150000px;}
.yd8{bottom:764.325000px;}
.y7b{bottom:774.751500px;}
.y32{bottom:775.801500px;}
.y56{bottom:777.600000px;}
.yb3{bottom:779.776500px;}
.y7a{bottom:794.926500px;}
.y31{bottom:796.350000px;}
.y55{bottom:797.100000px;}
.yb2{bottom:798.151500px;}
.y8a{bottom:808.200000px;}
.yb1{bottom:813.600000px;}
.y79{bottom:813.975000px;}
.y30{bottom:815.400000px;}
.y54{bottom:815.775000px;}
.y78{bottom:840.300000px;}
.y2f{bottom:841.350000px;}
.h5{height:28.663477px;}
.hd{height:31.324219px;}
.h2{height:33.934570px;}
.h12{height:34.476562px;}
.h8{height:36.254680px;}
.hf{height:41.892773px;}
.h13{height:43.781250px;}
.hc{height:46.302539px;}
.h6{height:52.207031px;}
.he{height:54.817383px;}
.h10{height:57.462891px;}
.ha{height:59.985352px;}
.h11{height:63.984375px;}
.h9{height:66.146484px;}
.h3{height:73.089844px;}
.hb{height:76.500000px;}
.h4{height:80.267578px;}
.h7{height:88.751953px;}
.h0{height:931.350000px;}
.h1{height:931.500000px;}
.w2{width:650.175000px;}
.w3{width:650.250000px;}
.w1{width:660.000000px;}
.w0{width:660.225000px;}
.x0{left:0.000000px;}
.x1{left:9.375000px;}
.x36{left:62.610000px;}
.x3b{left:63.750000px;}
.x3e{left:65.172000px;}
.x37{left:78.808500px;}
.x3a{left:79.948500px;}
.x45{left:81.361500px;}
.x41{left:90.375000px;}
.xb{left:97.186515px;}
.xa{left:98.236500px;}
.x17{left:99.750000px;}
.x19{left:101.175000px;}
.xc{left:111.961365px;}
.x9{left:114.436500px;}
.x18{left:115.950000px;}
.x47{left:123.451500px;}
.x6{left:135.000000px;}
.x1b{left:142.950000px;}
.x1d{left:144.374970px;}
.x1f{left:145.798470px;}
.x14{left:147.598500px;}
.x11{left:149.023500px;}
.x15{left:150.148485px;}
.x16{left:151.573485px;}
.x44{left:154.036500px;}
.x1c{left:159.449985px;}
.x1e{left:160.573470px;}
.x32{left:162.375000px;}
.x13{left:163.798500px;}
.x12{left:165.223500px;}
.x29{left:166.350015px;}
.x3{left:167.400000px;}
.x8{left:174.585000px;}
.x3c{left:176.383500px;}
.x42{left:184.635000px;}
.x3f{left:188.625000px;}
.x7{left:191.550000px;}
.xe{left:207.373500px;}
.x5{left:213.450000px;}
.x2a{left:222.900000px;}
.x27{left:226.410000px;}
.x2e{left:230.775000px;}
.x34{left:235.785000px;}
.x2c{left:240.075000px;}
.x4a{left:245.160000px;}
.x26{left:247.350000px;}
.x46{left:255.225000px;}
.x4{left:257.775000px;}
.x30{left:261.750000px;}
.x20{left:284.025000px;}
.x43{left:290.910000px;}
.x40{left:292.350000px;}
.x2{left:301.350000px;}
.x49{left:306.376500px;}
.x38{left:315.750000px;}
.x21{left:327.225000px;}
.x23{left:339.150000px;}
.x1a{left:347.025000px;}
.x10{left:353.535000px;}
.x48{left:355.351500px;}
.xf{left:374.400000px;}
.x24{left:383.400000px;}
.x39{left:394.575000px;}
.x3d{left:417.957000px;}
.x35{left:435.195000px;}
.x2f{left:470.550000px;}
.x28{left:472.275000px;}
.x31{left:481.650000px;}
.x2d{left:482.775000px;}
.x2b{left:483.900000px;}
.x25{left:486.375000px;}
.x33{left:501.150000px;}
.xd{left:512.237865px;}
.x22{left:531.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.333333pt;}
.ls2{letter-spacing:-5.333333pt;}
.ls1{letter-spacing:-2.666667pt;}
.ls3{letter-spacing:-2.666652pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.666667pt;}
.ls4{letter-spacing:7.872000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls5{letter-spacing:23.786667pt;}
.ls8{letter-spacing:1162.133333pt;}
.ws6{word-spacing:-39.029333pt;}
.ws7{word-spacing:-34.810667pt;}
.ws8{word-spacing:-29.082667pt;}
.ws2{word-spacing:-16.426667pt;}
.ws9{word-spacing:-12.320000pt;}
.ws5{word-spacing:-11.733333pt;}
.wsa{word-spacing:-10.796800pt;}
.wsc{word-spacing:-10.282667pt;}
.ws1{word-spacing:-7.626667pt;}
.wsb{word-spacing:-5.373333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:7.306626pt;}
.ws3{word-spacing:16.144000pt;}
._3c{margin-left:-20.480000pt;}
._1e{margin-left:-17.224000pt;}
._1c{margin-left:-13.237333pt;}
._22{margin-left:-11.930667pt;}
._1b{margin-left:-10.976000pt;}
._36{margin-left:-9.493333pt;}
._1a{margin-left:-8.341333pt;}
._1d{margin-left:-6.981333pt;}
._25{margin-left:-5.525333pt;}
._20{margin-left:-4.533333pt;}
._15{margin-left:-2.890667pt;}
._0{margin-left:-1.872000pt;}
._16{margin-left:-0.901333pt;}
._5{width:1.493333pt;}
._7{width:2.389333pt;}
._1{width:3.658667pt;}
._14{width:4.576000pt;}
._4{width:5.525333pt;}
._3{width:7.168000pt;}
._f{width:8.288000pt;}
._8{width:9.498667pt;}
._a{width:10.690667pt;}
._9{width:11.954667pt;}
._b{width:13.306667pt;}
._c{width:15.077333pt;}
._d{width:16.768000pt;}
._19{width:17.738667pt;}
._12{width:18.666667pt;}
._10{width:19.672000pt;}
._13{width:21.013333pt;}
._18{width:21.997333pt;}
._17{width:23.434667pt;}
._6{width:24.640000pt;}
._21{width:26.005333pt;}
._2{width:27.776000pt;}
._23{width:29.224000pt;}
._11{width:30.722667pt;}
._24{width:31.829333pt;}
._46{width:34.386667pt;}
._26{width:44.693333pt;}
._30{width:47.424000pt;}
._31{width:48.757333pt;}
._34{width:50.090667pt;}
._35{width:51.424000pt;}
._38{width:52.448000pt;}
._39{width:53.850667pt;}
._3a{width:54.933333pt;}
._3d{width:56.517333pt;}
._3f{width:57.514667pt;}
._40{width:58.848000pt;}
._e{width:65.338667pt;}
._1f{width:69.994667pt;}
._2a{width:72.096000pt;}
._2c{width:73.024000pt;}
._2e{width:75.690667pt;}
._28{width:103.466667pt;}
._48{width:104.981333pt;}
._44{width:106.192000pt;}
._49{width:122.416000pt;}
._43{width:125.736000pt;}
._3e{width:127.733333pt;}
._32{width:130.496000pt;}
._2b{width:131.466667pt;}
._2d{width:132.789333pt;}
._45{width:153.173333pt;}
._42{width:157.066667pt;}
._37{width:171.701333pt;}
._33{width:172.800000pt;}
._3b{width:173.834667pt;}
._2f{width:175.978667pt;}
._29{width:177.093333pt;}
._47{width:198.138667pt;}
._27{width:207.938667pt;}
._41{width:280.661333pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs5{font-size:39.999777pt;}
.fsd{font-size:42.666667pt;}
.fsb{font-size:44.800000pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.fsc{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.fs2{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:0.333360pt;}
.y1{bottom:0.666693pt;}
.y2e{bottom:31.066667pt;}
.y18{bottom:32.013333pt;}
.y53{bottom:123.617333pt;}
.y2c{bottom:126.145333pt;}
.y17{bottom:126.146667pt;}
.yd4{bottom:127.400000pt;}
.y77{bottom:128.016000pt;}
.yd6{bottom:131.533333pt;}
.yb0{bottom:140.536000pt;}
.y52{bottom:140.884000pt;}
.y2b{bottom:143.077333pt;}
.y16{bottom:143.078667pt;}
.y76{bottom:145.616000pt;}
.yd3{bottom:150.733333pt;}
.yd5{bottom:154.266667pt;}
.y51{bottom:158.150667pt;}
.y2a{bottom:161.009333pt;}
.y15{bottom:161.010667pt;}
.y75{bottom:162.282667pt;}
.yd1{bottom:169.600000pt;}
.y50{bottom:175.417333pt;}
.y29{bottom:177.009333pt;}
.y14{bottom:177.010667pt;}
.yaf{bottom:177.336000pt;}
.y74{bottom:179.214667pt;}
.yd2{bottom:187.865333pt;}
.y4f{bottom:192.349333pt;}
.y28{bottom:193.941333pt;}
.y13{bottom:193.942667pt;}
.yae{bottom:194.268000pt;}
.y73{bottom:195.881333pt;}
.y4e{bottom:209.016000pt;}
.y27{bottom:210.608000pt;}
.y12{bottom:210.609333pt;}
.yad{bottom:211.866667pt;}
.yac{bottom:211.868000pt;}
.yd0{bottom:211.870667pt;}
.y72{bottom:212.214667pt;}
.y4d{bottom:226.948000pt;}
.y26{bottom:228.540000pt;}
.y11{bottom:228.541333pt;}
.yab{bottom:228.800000pt;}
.ycf{bottom:229.136000pt;}
.y71{bottom:230.146667pt;}
.y4c{bottom:244.213333pt;}
.y25{bottom:244.540000pt;}
.y10{bottom:244.541333pt;}
.yaa{bottom:246.133333pt;}
.yce{bottom:246.402667pt;}
.y70{bottom:247.080000pt;}
.y4b{bottom:261.145333pt;}
.y24{bottom:261.472000pt;}
.yf{bottom:261.473333pt;}
.ya9{bottom:262.400000pt;}
.ya8{bottom:262.402667pt;}
.ycd{bottom:263.736000pt;}
.y6f{bottom:264.345333pt;}
.y4a{bottom:278.412000pt;}
.y23{bottom:278.738667pt;}
.ye{bottom:278.740000pt;}
.ya7{bottom:280.668000pt;}
.y6e{bottom:281.012000pt;}
.ycc{bottom:281.934667pt;}
.yd{bottom:295.740000pt;}
.y49{bottom:295.745333pt;}
.y22{bottom:296.004000pt;}
.ya6{bottom:297.533333pt;}
.y6d{bottom:298.277333pt;}
.y48{bottom:312.677333pt;}
.y21{bottom:313.004000pt;}
.yc{bottom:313.005333pt;}
.ya5{bottom:314.533333pt;}
.y6c{bottom:315.209333pt;}
.ycb{bottom:316.533333pt;}
.yca{bottom:316.534667pt;}
.y20{bottom:329.936000pt;}
.yb{bottom:329.937333pt;}
.y47{bottom:329.942667pt;}
.ya4{bottom:331.533333pt;}
.y6b{bottom:332.541333pt;}
.yc9{bottom:333.133333pt;}
.yc8{bottom:333.138667pt;}
.y46{bottom:345.942667pt;}
.y1f{bottom:347.202667pt;}
.ya{bottom:347.204000pt;}
.ya3{bottom:348.533333pt;}
.ya2{bottom:348.534667pt;}
.y6a{bottom:349.474667pt;}
.yc6{bottom:357.805333pt;}
.y1e{bottom:363.869333pt;}
.y9{bottom:363.870667pt;}
.y45{bottom:364.542667pt;}
.ya1{bottom:365.800000pt;}
.y69{bottom:366.408000pt;}
.yc7{bottom:372.538667pt;}
.y44{bottom:381.474667pt;}
.ya0{bottom:382.400000pt;}
.y9f{bottom:382.401333pt;}
.y68{bottom:383.408000pt;}
.y8{bottom:398.402667pt;}
.y43{bottom:399.408000pt;}
.y9e{bottom:399.734667pt;}
.y67{bottom:401.340000pt;}
.yc5{bottom:402.272000pt;}
.y2d{bottom:414.133333pt;}
.y1d{bottom:414.734667pt;}
.y9d{bottom:415.401333pt;}
.y42{bottom:416.673333pt;}
.y66{bottom:417.940000pt;}
.yc4{bottom:419.205333pt;}
.y9c{bottom:433.600000pt;}
.y9b{bottom:433.602667pt;}
.y41{bottom:433.606667pt;}
.y65{bottom:435.540000pt;}
.yc3{bottom:437.137333pt;}
.y89{bottom:449.005333pt;}
.y40{bottom:450.606667pt;}
.y9a{bottom:451.869333pt;}
.y64{bottom:452.540000pt;}
.yc2{bottom:453.470667pt;}
.y88{bottom:466.605333pt;}
.y3f{bottom:467.540000pt;}
.y99{bottom:468.536000pt;}
.y63{bottom:469.805333pt;}
.yc1{bottom:470.737333pt;}
.y1c{bottom:471.068000pt;}
.y7{bottom:471.069333pt;}
.y87{bottom:483.872000pt;}
.y3e{bottom:484.805333pt;}
.y98{bottom:485.801333pt;}
.y62{bottom:486.738667pt;}
.yc0{bottom:487.737333pt;}
.y6{bottom:488.334667pt;}
.y1b{bottom:488.666667pt;}
.y86{bottom:500.804000pt;}
.y3d{bottom:501.805333pt;}
.y97{bottom:502.401333pt;}
.y61{bottom:504.070667pt;}
.ybf{bottom:504.669333pt;}
.y1a{bottom:505.600000pt;}
.y5{bottom:505.601333pt;}
.y85{bottom:517.804000pt;}
.y3c{bottom:518.405333pt;}
.y96{bottom:520.000000pt;}
.y60{bottom:521.004000pt;}
.ybe{bottom:522.269333pt;}
.y19{bottom:530.600000pt;}
.y4{bottom:530.601333pt;}
.y84{bottom:535.404000pt;}
.y3b{bottom:536.670667pt;}
.y95{bottom:537.333333pt;}
.y5f{bottom:537.937333pt;}
.ybd{bottom:539.202667pt;}
.yd9{bottom:552.000000pt;}
.y83{bottom:552.269333pt;}
.y3a{bottom:553.937333pt;}
.y94{bottom:554.600000pt;}
.y93{bottom:554.601333pt;}
.y5e{bottom:555.204000pt;}
.ybc{bottom:556.202667pt;}
.y82{bottom:569.602667pt;}
.y39{bottom:570.937333pt;}
.y5d{bottom:572.204000pt;}
.y92{bottom:572.800000pt;}
.ybb{bottom:573.468000pt;}
.y3{bottom:584.334667pt;}
.y81{bottom:586.936000pt;}
.y38{bottom:588.537333pt;}
.y5c{bottom:589.469333pt;}
.y91{bottom:589.800000pt;}
.y90{bottom:589.802667pt;}
.yba{bottom:590.401333pt;}
.y80{bottom:603.869333pt;}
.y37{bottom:605.469333pt;}
.y5b{bottom:606.136000pt;}
.y8f{bottom:607.069333pt;}
.yb9{bottom:607.734667pt;}
.y2{bottom:610.600000pt;}
.y7f{bottom:621.134667pt;}
.y36{bottom:622.736000pt;}
.y5a{bottom:623.069333pt;}
.y8e{bottom:624.336000pt;}
.yb8{bottom:625.001333pt;}
.y7e{bottom:638.401333pt;}
.y35{bottom:640.002667pt;}
.y59{bottom:640.336000pt;}
.y8d{bottom:641.336000pt;}
.yb7{bottom:641.933333pt;}
.y7d{bottom:655.401333pt;}
.y34{bottom:657.002667pt;}
.y58{bottom:657.336000pt;}
.y8c{bottom:658.601333pt;}
.yb6{bottom:658.933333pt;}
.y7c{bottom:672.334667pt;}
.y33{bottom:673.934667pt;}
.y57{bottom:674.268000pt;}
.yb5{bottom:675.866667pt;}
.yb4{bottom:675.869333pt;}
.y8b{bottom:677.466667pt;}
.yd8{bottom:679.400000pt;}
.y7b{bottom:688.668000pt;}
.y32{bottom:689.601333pt;}
.y56{bottom:691.200000pt;}
.yb3{bottom:693.134667pt;}
.y7a{bottom:706.601333pt;}
.y31{bottom:707.866667pt;}
.y55{bottom:708.533333pt;}
.yb2{bottom:709.468000pt;}
.y8a{bottom:718.400000pt;}
.yb1{bottom:723.200000pt;}
.y79{bottom:723.533333pt;}
.y30{bottom:724.800000pt;}
.y54{bottom:725.133333pt;}
.y78{bottom:746.933333pt;}
.y2f{bottom:747.866667pt;}
.h5{height:25.478646pt;}
.hd{height:27.843750pt;}
.h2{height:30.164062pt;}
.h12{height:30.645833pt;}
.h8{height:32.226383pt;}
.hf{height:37.238021pt;}
.h13{height:38.916667pt;}
.hc{height:41.157812pt;}
.h6{height:46.406250pt;}
.he{height:48.726562pt;}
.h10{height:51.078125pt;}
.ha{height:53.320312pt;}
.h11{height:56.875000pt;}
.h9{height:58.796875pt;}
.h3{height:64.968750pt;}
.hb{height:68.000000pt;}
.h4{height:71.348958pt;}
.h7{height:78.890625pt;}
.h0{height:827.866667pt;}
.h1{height:828.000000pt;}
.w2{width:577.933333pt;}
.w3{width:578.000000pt;}
.w1{width:586.666667pt;}
.w0{width:586.866667pt;}
.x0{left:0.000000pt;}
.x1{left:8.333333pt;}
.x36{left:55.653333pt;}
.x3b{left:56.666667pt;}
.x3e{left:57.930667pt;}
.x37{left:70.052000pt;}
.x3a{left:71.065333pt;}
.x45{left:72.321333pt;}
.x41{left:80.333333pt;}
.xb{left:86.388013pt;}
.xa{left:87.321333pt;}
.x17{left:88.666667pt;}
.x19{left:89.933333pt;}
.xc{left:99.521213pt;}
.x9{left:101.721333pt;}
.x18{left:103.066667pt;}
.x47{left:109.734667pt;}
.x6{left:120.000000pt;}
.x1b{left:127.066667pt;}
.x1d{left:128.333307pt;}
.x1f{left:129.598640pt;}
.x14{left:131.198667pt;}
.x11{left:132.465333pt;}
.x15{left:133.465320pt;}
.x16{left:134.731987pt;}
.x44{left:136.921333pt;}
.x1c{left:141.733320pt;}
.x1e{left:142.731973pt;}
.x32{left:144.333333pt;}
.x13{left:145.598667pt;}
.x12{left:146.865333pt;}
.x29{left:147.866680pt;}
.x3{left:148.800000pt;}
.x8{left:155.186667pt;}
.x3c{left:156.785333pt;}
.x42{left:164.120000pt;}
.x3f{left:167.666667pt;}
.x7{left:170.266667pt;}
.xe{left:184.332000pt;}
.x5{left:189.733333pt;}
.x2a{left:198.133333pt;}
.x27{left:201.253333pt;}
.x2e{left:205.133333pt;}
.x34{left:209.586667pt;}
.x2c{left:213.400000pt;}
.x4a{left:217.920000pt;}
.x26{left:219.866667pt;}
.x46{left:226.866667pt;}
.x4{left:229.133333pt;}
.x30{left:232.666667pt;}
.x20{left:252.466667pt;}
.x43{left:258.586667pt;}
.x40{left:259.866667pt;}
.x2{left:267.866667pt;}
.x49{left:272.334667pt;}
.x38{left:280.666667pt;}
.x21{left:290.866667pt;}
.x23{left:301.466667pt;}
.x1a{left:308.466667pt;}
.x10{left:314.253333pt;}
.x48{left:315.868000pt;}
.xf{left:332.800000pt;}
.x24{left:340.800000pt;}
.x39{left:350.733333pt;}
.x3d{left:371.517333pt;}
.x35{left:386.840000pt;}
.x2f{left:418.266667pt;}
.x28{left:419.800000pt;}
.x31{left:428.133333pt;}
.x2d{left:429.133333pt;}
.x2b{left:430.133333pt;}
.x25{left:432.333333pt;}
.x33{left:445.466667pt;}
.xd{left:455.322547pt;}
.x22{left:472.320000pt;}
}




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