
    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_c37b7d18c09efa7ddc276580.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.714000;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_83d6e2cd19c404148db5c971.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_65ca06c5bc2b5999ccb24b33.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930022;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_65ca06c5bc2b5999ccb24b33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930022;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_45bcd7b3f6e3cddc8da923e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_a1291a30e4647b1537251127.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_5e0465389d6d3f702963127a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_65ca06c5bc2b5999ccb24b33.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930022;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_83d6e2cd19c404148db5c971.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_83d6e2cd19c404148db5c971.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;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_65ca06c5bc2b5999ccb24b33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930022;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_ca5c37dee7a1bef4b3c6dd5c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_233ae590836934983d16eb7b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.857910;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_8af6c589c8ccddb5357b130a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_20949b9bb8dd5cc26830e6be.woff2')format("woff");}.fff{font-family:fff;line-height:0.951172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_780a573a9c530a9d5643ffc8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.848145;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_a0289034623531f19c136be1.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_9dd8d2c04fef8f6668052989.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_0aba800b0ec4443d9d0fcf0c.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-40.635734px;}
.v4{vertical-align:-26.892749px;}
.v2{vertical-align:-4.300862px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.723187px;}
.v1{vertical-align:72.000000px;}
.lsd{letter-spacing:-0.819000px;}
.ls11{letter-spacing:-0.756000px;}
.lsa{letter-spacing:-0.693000px;}
.ls14{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.570000px;}
.lsf{letter-spacing:-0.567000px;}
.lsb{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.441000px;}
.ls13{letter-spacing:-0.399000px;}
.ls8{letter-spacing:-0.378000px;}
.ls2{letter-spacing:-0.342000px;}
.ls6{letter-spacing:-0.315000px;}
.lsc{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.189000px;}
.ls12{letter-spacing:-0.171000px;}
.lse{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.063000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:1480.231200px;}
.ls0{letter-spacing:1497.238800px;}
.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;}
}
.ws1{word-spacing:-42.940350px;}
.ws5e{word-spacing:-17.514000px;}
.ws28{word-spacing:-15.750000px;}
.ws0{word-spacing:-15.012000px;}
.ws79{word-spacing:-14.250000px;}
.ws20{word-spacing:-3.276000px;}
.ws81{word-spacing:-3.213000px;}
.ws3{word-spacing:-3.192000px;}
.ws5{word-spacing:-3.150000px;}
.ws4{word-spacing:-3.135000px;}
.ws42{word-spacing:-3.024000px;}
.ws9f{word-spacing:-2.970000px;}
.ws88{word-spacing:-2.961000px;}
.ws9b{word-spacing:-2.850000px;}
.ws38{word-spacing:-2.835000px;}
.ws2b{word-spacing:-2.709000px;}
.ws68{word-spacing:-2.457000px;}
.ws4e{word-spacing:-2.331000px;}
.ws5f{word-spacing:-2.268000px;}
.ws39{word-spacing:-2.142000px;}
.ws75{word-spacing:-2.109000px;}
.wse{word-spacing:-1.827000px;}
.ws31{word-spacing:-1.701000px;}
.ws24{word-spacing:-1.575000px;}
.ws43{word-spacing:-1.449000px;}
.ws96{word-spacing:-1.368000px;}
.ws80{word-spacing:-1.008000px;}
.ws33{word-spacing:-0.945000px;}
.ws4c{word-spacing:-0.882000px;}
.ws82{word-spacing:-0.819000px;}
.ws95{word-spacing:-0.798000px;}
.ws78{word-spacing:-0.741000px;}
.ws21{word-spacing:-0.693000px;}
.wsa2{word-spacing:-0.627000px;}
.ws1e{word-spacing:-0.567000px;}
.ws8d{word-spacing:-0.504000px;}
.ws52{word-spacing:-0.441000px;}
.ws3a{word-spacing:-0.252000px;}
.ws91{word-spacing:-0.228000px;}
.ws59{word-spacing:-0.189000px;}
.ws9e{word-spacing:-0.171000px;}
.wsb{word-spacing:-0.063000px;}
.ws99{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws71{word-spacing:0.063000px;}
.ws6{word-spacing:0.126000px;}
.ws34{word-spacing:0.315000px;}
.ws47{word-spacing:0.567000px;}
.ws9a{word-spacing:0.741000px;}
.ws94{word-spacing:0.798000px;}
.ws5a{word-spacing:0.819000px;}
.ws3b{word-spacing:0.882000px;}
.ws12{word-spacing:0.945000px;}
.ws48{word-spacing:1.008000px;}
.ws1a{word-spacing:1.071000px;}
.ws6a{word-spacing:1.134000px;}
.ws74{word-spacing:1.254000px;}
.ws15{word-spacing:1.323000px;}
.ws61{word-spacing:1.449000px;}
.ws2e{word-spacing:1.575000px;}
.ws16{word-spacing:1.638000px;}
.ws56{word-spacing:1.701000px;}
.ws8c{word-spacing:2.016000px;}
.ws27{word-spacing:2.079000px;}
.ws64{word-spacing:2.331000px;}
.ws1f{word-spacing:2.394000px;}
.ws30{word-spacing:2.457000px;}
.ws17{word-spacing:2.520000px;}
.ws90{word-spacing:2.565000px;}
.ws7c{word-spacing:2.583000px;}
.ws25{word-spacing:2.772000px;}
.ws72{word-spacing:2.907000px;}
.ws5b{word-spacing:2.961000px;}
.ws73{word-spacing:2.964000px;}
.ws85{word-spacing:3.024000px;}
.wsa1{word-spacing:3.306000px;}
.ws22{word-spacing:3.465000px;}
.ws97{word-spacing:3.477000px;}
.ws7a{word-spacing:3.591000px;}
.ws65{word-spacing:3.780000px;}
.ws77{word-spacing:3.876000px;}
.ws8e{word-spacing:4.095000px;}
.ws3f{word-spacing:4.221000px;}
.ws57{word-spacing:4.347000px;}
.ws35{word-spacing:4.536000px;}
.ws23{word-spacing:4.662000px;}
.ws10{word-spacing:4.725000px;}
.ws9c{word-spacing:4.731000px;}
.ws60{word-spacing:4.788000px;}
.ws37{word-spacing:4.851000px;}
.ws6f{word-spacing:4.977000px;}
.ws1d{word-spacing:5.040000px;}
.ws1c{word-spacing:5.292000px;}
.ws63{word-spacing:5.544000px;}
.ws9d{word-spacing:5.586000px;}
.ws89{word-spacing:5.607000px;}
.ws8a{word-spacing:5.670000px;}
.ws18{word-spacing:5.796000px;}
.ws7{word-spacing:5.859000px;}
.ws40{word-spacing:5.922000px;}
.ws76{word-spacing:5.928000px;}
.ws7e{word-spacing:5.985000px;}
.wsf{word-spacing:6.174000px;}
.ws50{word-spacing:6.300000px;}
.ws54{word-spacing:6.615000px;}
.ws13{word-spacing:6.804000px;}
.ws36{word-spacing:6.867000px;}
.ws7d{word-spacing:6.993000px;}
.wsd{word-spacing:7.371000px;}
.ws53{word-spacing:7.434000px;}
.ws2a{word-spacing:7.497000px;}
.ws62{word-spacing:7.623000px;}
.ws2f{word-spacing:7.749000px;}
.ws26{word-spacing:7.812000px;}
.ws6d{word-spacing:7.938000px;}
.ws3c{word-spacing:8.064000px;}
.ws4b{word-spacing:8.127000px;}
.ws4d{word-spacing:8.190000px;}
.ws5c{word-spacing:8.316000px;}
.ws92{word-spacing:8.379000px;}
.wsa0{word-spacing:8.607000px;}
.ws93{word-spacing:8.778000px;}
.ws6e{word-spacing:8.820000px;}
.ws8b{word-spacing:8.883000px;}
.ws87{word-spacing:8.946000px;}
.ws19{word-spacing:9.009000px;}
.ws4a{word-spacing:9.072000px;}
.ws2c{word-spacing:9.198000px;}
.ws67{word-spacing:9.387000px;}
.wsc{word-spacing:9.450000px;}
.ws9{word-spacing:9.576000px;}
.ws55{word-spacing:9.765000px;}
.ws44{word-spacing:9.891000px;}
.ws4f{word-spacing:10.080000px;}
.ws6b{word-spacing:10.269000px;}
.ws2d{word-spacing:10.458000px;}
.ws6c{word-spacing:10.962000px;}
.ws98{word-spacing:11.400000px;}
.ws83{word-spacing:11.403000px;}
.ws51{word-spacing:11.655000px;}
.ws1b{word-spacing:11.781000px;}
.ws14{word-spacing:11.907000px;}
.ws3d{word-spacing:11.970000px;}
.ws3e{word-spacing:12.285000px;}
.ws45{word-spacing:12.915000px;}
.ws29{word-spacing:12.978000px;}
.wsa{word-spacing:13.419000px;}
.ws49{word-spacing:13.608000px;}
.ws69{word-spacing:13.671000px;}
.ws70{word-spacing:14.049000px;}
.ws41{word-spacing:15.372000px;}
.ws86{word-spacing:15.876000px;}
.ws5d{word-spacing:16.128000px;}
.ws8f{word-spacing:16.317000px;}
.ws84{word-spacing:17.010000px;}
.ws58{word-spacing:18.459000px;}
.ws7b{word-spacing:20.412000px;}
.ws66{word-spacing:20.853000px;}
.ws8{word-spacing:21.420000px;}
.ws11{word-spacing:24.948000px;}
.ws46{word-spacing:26.145000px;}
.ws32{word-spacing:30.240000px;}
.ws7f{word-spacing:32.319000px;}
._5{margin-left:-9.450000px;}
._9{margin-left:-7.623000px;}
._0{margin-left:-6.492000px;}
._a{margin-left:-5.226000px;}
._1{margin-left:-3.780000px;}
._4{margin-left:-2.688000px;}
._2{margin-left:-1.407000px;}
._3{width:1.140000px;}
._11{width:28.504258px;}
._f{width:31.998601px;}
._15{width:37.076400px;}
._e{width:39.420000px;}
._10{width:61.389679px;}
._d{width:161.107864px;}
._b{width:170.455556px;}
._c{width:172.213241px;}
._8{width:179.902800px;}
._7{width:192.543120px;}
._6{width:206.403120px;}
._16{width:296.660635px;}
._13{width:351.187661px;}
._14{width:418.864450px;}
._12{width:428.949230px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,6,6);}
.fc2{color:rgb(227,181,77);}
.fc1{color:rgb(0,146,110);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:39.947400px;}
.fsc{font-size:44.941200px;}
.fsa{font-size:47.937000px;}
.fsd{font-size:49.435200px;}
.fs8{font-size:50.400000px;}
.fsb{font-size:53.929200px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:55.440000px;}
.fs5{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:171.761400px;}
.y0{bottom:0.000000px;}
.y104{bottom:5.234850px;}
.ye2{bottom:7.038420px;}
.ye8{bottom:11.289300px;}
.y101{bottom:16.526194px;}
.y2{bottom:18.744150px;}
.ydb{bottom:20.385600px;}
.yf6{bottom:26.543004px;}
.yee{bottom:27.571650px;}
.y103{bottom:40.238157px;}
.y10b{bottom:40.500900px;}
.yf7{bottom:47.525376px;}
.y10a{bottom:50.959950px;}
.ydc{bottom:55.964220px;}
.yef{bottom:57.542187px;}
.y109{bottom:61.418850px;}
.yf8{bottom:68.507748px;}
.y108{bottom:71.877750px;}
.y163{bottom:73.626300px;}
.y107{bottom:82.336650px;}
.yf0{bottom:87.512724px;}
.yf9{bottom:89.490120px;}
.ydd{bottom:91.542840px;}
.y106{bottom:92.794500px;}
.y1{bottom:106.719600px;}
.y102{bottom:108.138750px;}
.yfa{bottom:110.472492px;}
.yf1{bottom:117.483261px;}
.yde{bottom:127.121460px;}
.yfb{bottom:131.454864px;}
.ybb{bottom:140.984850px;}
.y5d{bottom:141.018450px;}
.y8b{bottom:141.095100px;}
.yd9{bottom:141.124350px;}
.y2d{bottom:141.128700px;}
.yd4{bottom:141.140100px;}
.y15a{bottom:144.203850px;}
.yf2{bottom:147.453797px;}
.yfc{bottom:152.437236px;}
.yba{bottom:158.987100px;}
.y5c{bottom:159.020700px;}
.y8a{bottom:159.097350px;}
.yd8{bottom:159.126600px;}
.y2c{bottom:159.130950px;}
.yd3{bottom:159.142350px;}
.y159{bottom:160.700850px;}
.ye7{bottom:162.120900px;}
.ydf{bottom:162.700080px;}
.yfd{bottom:173.419607px;}
.yb9{bottom:176.989350px;}
.y5b{bottom:177.022950px;}
.y89{bottom:177.099600px;}
.yd7{bottom:177.128850px;}
.y2b{bottom:177.133200px;}
.y12f{bottom:177.135600px;}
.yd2{bottom:177.144600px;}
.yf3{bottom:177.424334px;}
.ye6{bottom:177.537300px;}
.ye5{bottom:192.954000px;}
.yfe{bottom:194.401979px;}
.yb8{bottom:194.991600px;}
.y5a{bottom:195.025200px;}
.y88{bottom:195.101850px;}
.yd6{bottom:195.131100px;}
.y2a{bottom:195.135450px;}
.y12e{bottom:195.137850px;}
.yd1{bottom:195.146850px;}
.ye0{bottom:198.278700px;}
.yf4{bottom:207.394871px;}
.ye4{bottom:208.371750px;}
.yb7{bottom:212.993850px;}
.y59{bottom:213.027450px;}
.y87{bottom:213.104100px;}
.yd5{bottom:213.133350px;}
.y29{bottom:213.137700px;}
.y12d{bottom:213.140100px;}
.yd0{bottom:213.149100px;}
.y158{bottom:213.243600px;}
.yff{bottom:215.384351px;}
.ye3{bottom:223.788150px;}
.y105{bottom:226.135050px;}
.yb6{bottom:230.996100px;}
.y58{bottom:231.029700px;}
.y86{bottom:231.106350px;}
.y28{bottom:231.139950px;}
.y12c{bottom:231.142350px;}
.ycf{bottom:231.151350px;}
.y157{bottom:231.241350px;}
.ye1{bottom:233.857320px;}
.y100{bottom:236.366723px;}
.yf5{bottom:237.365408px;}
.yb5{bottom:248.998350px;}
.y57{bottom:249.031950px;}
.y85{bottom:249.108600px;}
.y27{bottom:249.142200px;}
.y12b{bottom:249.144600px;}
.yce{bottom:249.153600px;}
.y156{bottom:249.239100px;}
.yb4{bottom:267.000600px;}
.y56{bottom:267.034200px;}
.y84{bottom:267.110850px;}
.y26{bottom:267.144450px;}
.y12a{bottom:267.146850px;}
.ycd{bottom:267.155850px;}
.y155{bottom:267.236850px;}
.y111{bottom:277.305600px;}
.yb3{bottom:285.002850px;}
.y55{bottom:285.036450px;}
.y83{bottom:285.113100px;}
.y25{bottom:285.146700px;}
.y129{bottom:285.149100px;}
.ycc{bottom:285.158100px;}
.y154{bottom:285.234600px;}
.y110{bottom:293.807100px;}
.yb2{bottom:303.005100px;}
.y54{bottom:303.038700px;}
.y82{bottom:303.115350px;}
.y24{bottom:303.148950px;}
.y128{bottom:303.151350px;}
.ycb{bottom:303.160350px;}
.y153{bottom:303.232350px;}
.y10f{bottom:310.308600px;}
.yb1{bottom:321.007350px;}
.y53{bottom:321.040950px;}
.y81{bottom:321.117600px;}
.y23{bottom:321.151200px;}
.y127{bottom:321.153600px;}
.yca{bottom:321.162600px;}
.y152{bottom:321.230100px;}
.y10e{bottom:326.810100px;}
.yb0{bottom:339.009600px;}
.y52{bottom:339.043200px;}
.y80{bottom:339.119850px;}
.y22{bottom:339.153450px;}
.y126{bottom:339.155850px;}
.yc9{bottom:339.164850px;}
.y151{bottom:339.227850px;}
.y10d{bottom:343.311600px;}
.yaf{bottom:357.011850px;}
.y51{bottom:357.045450px;}
.y7f{bottom:357.122100px;}
.y21{bottom:357.155700px;}
.y125{bottom:357.158100px;}
.yc8{bottom:357.167100px;}
.y150{bottom:357.225600px;}
.y10c{bottom:359.813100px;}
.yae{bottom:375.014100px;}
.y50{bottom:375.047700px;}
.y7e{bottom:375.124350px;}
.y20{bottom:375.157950px;}
.y124{bottom:375.160350px;}
.yc7{bottom:375.169350px;}
.y14f{bottom:375.223350px;}
.yed{bottom:388.320000px;}
.yad{bottom:393.016350px;}
.y4f{bottom:393.049950px;}
.y7d{bottom:393.126600px;}
.y1f{bottom:393.160200px;}
.y123{bottom:393.162600px;}
.y14e{bottom:393.221100px;}
.yac{bottom:411.018600px;}
.y4e{bottom:411.052200px;}
.y7c{bottom:411.128850px;}
.y1e{bottom:411.162450px;}
.y122{bottom:411.164850px;}
.yc6{bottom:411.173850px;}
.y14d{bottom:411.218850px;}
.yab{bottom:429.020850px;}
.y4d{bottom:429.054450px;}
.y1d{bottom:429.164700px;}
.y121{bottom:429.167100px;}
.y14c{bottom:429.216600px;}
.yaa{bottom:447.023100px;}
.y4c{bottom:447.056700px;}
.y7b{bottom:447.133350px;}
.y1c{bottom:447.166950px;}
.y120{bottom:447.169350px;}
.y14b{bottom:447.214350px;}
.ya9{bottom:465.025350px;}
.y4b{bottom:465.058950px;}
.y1b{bottom:465.169200px;}
.y11f{bottom:465.171600px;}
.yc5{bottom:465.180600px;}
.y14a{bottom:465.212100px;}
.ya8{bottom:483.027600px;}
.y4a{bottom:483.061200px;}
.y1a{bottom:483.171450px;}
.y11e{bottom:483.173850px;}
.yc4{bottom:483.182850px;}
.y149{bottom:483.209850px;}
.ya7{bottom:501.029850px;}
.y49{bottom:501.063450px;}
.y7a{bottom:501.140100px;}
.y19{bottom:501.173700px;}
.y11d{bottom:501.176100px;}
.yc3{bottom:501.185100px;}
.y148{bottom:501.207600px;}
.ya6{bottom:519.032100px;}
.y48{bottom:519.065700px;}
.y79{bottom:519.142350px;}
.y18{bottom:519.175950px;}
.y11c{bottom:519.178350px;}
.yc2{bottom:519.187350px;}
.y147{bottom:519.205350px;}
.ya5{bottom:537.034350px;}
.y47{bottom:537.067950px;}
.y78{bottom:537.144600px;}
.y17{bottom:537.178200px;}
.y11b{bottom:537.180600px;}
.yc1{bottom:537.189600px;}
.y146{bottom:537.203100px;}
.ya4{bottom:555.036600px;}
.y46{bottom:555.070200px;}
.y77{bottom:555.146850px;}
.y16{bottom:555.180450px;}
.y11a{bottom:555.182850px;}
.yc0{bottom:555.191850px;}
.y145{bottom:555.200850px;}
.ya3{bottom:573.038850px;}
.y45{bottom:573.072450px;}
.y76{bottom:573.149100px;}
.y15{bottom:573.182700px;}
.y119{bottom:573.185100px;}
.ybf{bottom:573.194100px;}
.ya2{bottom:591.041100px;}
.y44{bottom:591.074700px;}
.y144{bottom:591.092850px;}
.y75{bottom:591.151350px;}
.y14{bottom:591.184950px;}
.y118{bottom:591.187350px;}
.ybe{bottom:591.196350px;}
.ya1{bottom:609.043350px;}
.y43{bottom:609.076950px;}
.y74{bottom:609.153600px;}
.y13{bottom:609.187200px;}
.y117{bottom:609.189600px;}
.ybd{bottom:609.198600px;}
.ya0{bottom:627.045600px;}
.y42{bottom:627.079200px;}
.y73{bottom:627.155850px;}
.y12{bottom:627.189450px;}
.y116{bottom:627.191850px;}
.ybc{bottom:627.200850px;}
.y9f{bottom:645.047850px;}
.y41{bottom:645.081450px;}
.y143{bottom:645.099600px;}
.y72{bottom:645.158100px;}
.y11{bottom:645.191700px;}
.y115{bottom:645.194100px;}
.y9e{bottom:663.050100px;}
.y40{bottom:663.083700px;}
.y142{bottom:663.101850px;}
.y71{bottom:663.160350px;}
.y10{bottom:663.193950px;}
.y114{bottom:663.196350px;}
.yec{bottom:677.040900px;}
.y9d{bottom:681.052350px;}
.y3f{bottom:681.085950px;}
.y141{bottom:681.104100px;}
.y70{bottom:681.162600px;}
.yf{bottom:681.196200px;}
.y113{bottom:681.198600px;}
.yeb{bottom:693.542400px;}
.y9c{bottom:699.054600px;}
.y3e{bottom:699.088200px;}
.y140{bottom:699.106350px;}
.y6f{bottom:699.164850px;}
.ye{bottom:699.198450px;}
.yd{bottom:699.200700px;}
.y112{bottom:699.200850px;}
.yea{bottom:710.043900px;}
.y9b{bottom:717.056850px;}
.y3d{bottom:717.090450px;}
.y13f{bottom:717.108600px;}
.y6e{bottom:717.167100px;}
.ye9{bottom:726.545400px;}
.y9a{bottom:735.059100px;}
.y3c{bottom:735.092700px;}
.y13e{bottom:735.110850px;}
.y6d{bottom:735.169350px;}
.yda{bottom:749.701500px;}
.y16d{bottom:753.019800px;}
.y99{bottom:753.061350px;}
.y3b{bottom:753.094950px;}
.y13d{bottom:753.113100px;}
.y6c{bottom:753.171600px;}
.yc{bottom:753.198450px;}
.y16c{bottom:769.521300px;}
.y98{bottom:771.063600px;}
.y3a{bottom:771.097200px;}
.y13c{bottom:771.115350px;}
.y6b{bottom:771.173850px;}
.yb{bottom:771.200700px;}
.y16b{bottom:786.022800px;}
.y97{bottom:789.065850px;}
.y39{bottom:789.099450px;}
.y13b{bottom:789.117600px;}
.y6a{bottom:789.176100px;}
.y16a{bottom:802.524300px;}
.y96{bottom:807.068100px;}
.y38{bottom:807.101700px;}
.y13a{bottom:807.119850px;}
.y69{bottom:807.178350px;}
.y169{bottom:819.025800px;}
.y95{bottom:825.070350px;}
.y37{bottom:825.103950px;}
.y139{bottom:825.122100px;}
.y68{bottom:825.180600px;}
.ya{bottom:830.949600px;}
.y162{bottom:842.953500px;}
.y94{bottom:843.072600px;}
.y36{bottom:843.106200px;}
.y138{bottom:843.124350px;}
.y67{bottom:843.182850px;}
.y9{bottom:847.451100px;}
.y15d{bottom:848.844600px;}
.y93{bottom:861.074850px;}
.y35{bottom:861.108450px;}
.y137{bottom:861.126600px;}
.y66{bottom:861.185100px;}
.y15e{bottom:863.541450px;}
.y8{bottom:863.952600px;}
.y92{bottom:879.077100px;}
.y34{bottom:879.110700px;}
.y136{bottom:879.128850px;}
.y65{bottom:879.187350px;}
.y7{bottom:880.454100px;}
.y91{bottom:897.079350px;}
.y33{bottom:897.112950px;}
.y135{bottom:897.131100px;}
.y64{bottom:897.189600px;}
.y6{bottom:914.954100px;}
.y90{bottom:915.081600px;}
.y32{bottom:915.115200px;}
.y134{bottom:915.133350px;}
.y63{bottom:915.191850px;}
.y164{bottom:922.183200px;}
.y160{bottom:926.806147px;}
.y161{bottom:930.254252px;}
.y8f{bottom:933.083850px;}
.y31{bottom:933.117450px;}
.y133{bottom:933.135600px;}
.y62{bottom:933.194100px;}
.y5{bottom:941.954100px;}
.y15f{bottom:944.639896px;}
.y168{bottom:944.792670px;}
.y8e{bottom:951.086100px;}
.y30{bottom:951.119700px;}
.y132{bottom:951.137850px;}
.y61{bottom:951.196350px;}
.y167{bottom:958.275030px;}
.y15c{bottom:968.676406px;}
.y8d{bottom:969.088350px;}
.y2f{bottom:969.121950px;}
.y131{bottom:969.140100px;}
.y60{bottom:969.198600px;}
.y166{bottom:971.757390px;}
.y15b{bottom:984.410250px;}
.y165{bottom:985.239750px;}
.y4{bottom:986.954100px;}
.y8c{bottom:987.090600px;}
.y2e{bottom:987.124200px;}
.y130{bottom:987.142350px;}
.y5f{bottom:987.200850px;}
.y3{bottom:1016.108850px;}
.y5e{bottom:1016.109000px;}
.he{height:29.082800px;}
.hf{height:29.589944px;}
.h15{height:32.718422px;}
.hc{height:34.280859px;}
.h10{height:34.899447px;}
.h14{height:35.944022px;}
.h16{height:35.990177px;}
.ha{height:36.950977px;}
.hb{height:37.708945px;}
.h13{height:39.261932px;}
.h12{height:39.366000px;}
.h11{height:39.900000px;}
.h7{height:41.553000px;}
.h2{height:42.000000px;}
.h4{height:44.100000px;}
.h5{height:58.800000px;}
.h6{height:78.732000px;}
.h8{height:120.232980px;}
.h17{height:157.996500px;}
.hd{height:246.960000px;}
.h9{height:251.248500px;}
.h3{height:1088.503350px;}
.h1{height:1125.750000px;}
.h0{height:1125.991500px;}
.w5{width:319.275000px;}
.w4{width:320.602500px;}
.w3{width:502.405500px;}
.w2{width:833.386350px;}
.w1{width:870.750000px;}
.w0{width:870.874500px;}
.x0{left:0.000000px;}
.x19{left:9.207577px;}
.x16{left:14.356775px;}
.x12{left:16.000950px;}
.x2{left:18.744150px;}
.x17{left:31.154657px;}
.x13{left:32.632950px;}
.xf{left:38.299500px;}
.x1c{left:74.844600px;}
.x8{left:85.039350px;}
.x3{left:89.291250px;}
.x1b{left:92.751300px;}
.x10{left:99.865620px;}
.xa{left:103.783500px;}
.x1{left:108.035400px;}
.xb{left:116.541000px;}
.x5{left:120.789750px;}
.x4{left:134.271750px;}
.x1a{left:138.294900px;}
.x1f{left:167.595019px;}
.x21{left:182.388503px;}
.xe{left:184.234500px;}
.x14{left:186.318900px;}
.x23{left:200.234250px;}
.x1d{left:211.515880px;}
.x20{left:261.200570px;}
.x15{left:295.336800px;}
.x22{left:310.491000px;}
.x18{left:317.681400px;}
.x24{left:360.615300px;}
.x11{left:368.647800px;}
.x1e{left:380.814000px;}
.xc{left:443.936250px;}
.x6{left:448.185000px;}
.xd{left:456.693750px;}
.x7{left:460.942500px;}
.x9{left:740.338650px;}
@media print{
.v3{vertical-align:-36.120653pt;}
.v4{vertical-align:-23.904666pt;}
.v2{vertical-align:-3.822989pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.976166pt;}
.v1{vertical-align:64.000000pt;}
.lsd{letter-spacing:-0.728000pt;}
.ls11{letter-spacing:-0.672000pt;}
.lsa{letter-spacing:-0.616000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.506667pt;}
.lsf{letter-spacing:-0.504000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.392000pt;}
.ls13{letter-spacing:-0.354667pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls2{letter-spacing:-0.304000pt;}
.ls6{letter-spacing:-0.280000pt;}
.lsc{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.168000pt;}
.ls12{letter-spacing:-0.152000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.056000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:1315.761067pt;}
.ls0{letter-spacing:1330.878933pt;}
.ws1{word-spacing:-38.169200pt;}
.ws5e{word-spacing:-15.568000pt;}
.ws28{word-spacing:-14.000000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws79{word-spacing:-12.666667pt;}
.ws20{word-spacing:-2.912000pt;}
.ws81{word-spacing:-2.856000pt;}
.ws3{word-spacing:-2.837333pt;}
.ws5{word-spacing:-2.800000pt;}
.ws4{word-spacing:-2.786667pt;}
.ws42{word-spacing:-2.688000pt;}
.ws9f{word-spacing:-2.640000pt;}
.ws88{word-spacing:-2.632000pt;}
.ws9b{word-spacing:-2.533333pt;}
.ws38{word-spacing:-2.520000pt;}
.ws2b{word-spacing:-2.408000pt;}
.ws68{word-spacing:-2.184000pt;}
.ws4e{word-spacing:-2.072000pt;}
.ws5f{word-spacing:-2.016000pt;}
.ws39{word-spacing:-1.904000pt;}
.ws75{word-spacing:-1.874667pt;}
.wse{word-spacing:-1.624000pt;}
.ws31{word-spacing:-1.512000pt;}
.ws24{word-spacing:-1.400000pt;}
.ws43{word-spacing:-1.288000pt;}
.ws96{word-spacing:-1.216000pt;}
.ws80{word-spacing:-0.896000pt;}
.ws33{word-spacing:-0.840000pt;}
.ws4c{word-spacing:-0.784000pt;}
.ws82{word-spacing:-0.728000pt;}
.ws95{word-spacing:-0.709333pt;}
.ws78{word-spacing:-0.658667pt;}
.ws21{word-spacing:-0.616000pt;}
.wsa2{word-spacing:-0.557333pt;}
.ws1e{word-spacing:-0.504000pt;}
.ws8d{word-spacing:-0.448000pt;}
.ws52{word-spacing:-0.392000pt;}
.ws3a{word-spacing:-0.224000pt;}
.ws91{word-spacing:-0.202667pt;}
.ws59{word-spacing:-0.168000pt;}
.ws9e{word-spacing:-0.152000pt;}
.wsb{word-spacing:-0.056000pt;}
.ws99{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws71{word-spacing:0.056000pt;}
.ws6{word-spacing:0.112000pt;}
.ws34{word-spacing:0.280000pt;}
.ws47{word-spacing:0.504000pt;}
.ws9a{word-spacing:0.658667pt;}
.ws94{word-spacing:0.709333pt;}
.ws5a{word-spacing:0.728000pt;}
.ws3b{word-spacing:0.784000pt;}
.ws12{word-spacing:0.840000pt;}
.ws48{word-spacing:0.896000pt;}
.ws1a{word-spacing:0.952000pt;}
.ws6a{word-spacing:1.008000pt;}
.ws74{word-spacing:1.114667pt;}
.ws15{word-spacing:1.176000pt;}
.ws61{word-spacing:1.288000pt;}
.ws2e{word-spacing:1.400000pt;}
.ws16{word-spacing:1.456000pt;}
.ws56{word-spacing:1.512000pt;}
.ws8c{word-spacing:1.792000pt;}
.ws27{word-spacing:1.848000pt;}
.ws64{word-spacing:2.072000pt;}
.ws1f{word-spacing:2.128000pt;}
.ws30{word-spacing:2.184000pt;}
.ws17{word-spacing:2.240000pt;}
.ws90{word-spacing:2.280000pt;}
.ws7c{word-spacing:2.296000pt;}
.ws25{word-spacing:2.464000pt;}
.ws72{word-spacing:2.584000pt;}
.ws5b{word-spacing:2.632000pt;}
.ws73{word-spacing:2.634667pt;}
.ws85{word-spacing:2.688000pt;}
.wsa1{word-spacing:2.938667pt;}
.ws22{word-spacing:3.080000pt;}
.ws97{word-spacing:3.090667pt;}
.ws7a{word-spacing:3.192000pt;}
.ws65{word-spacing:3.360000pt;}
.ws77{word-spacing:3.445333pt;}
.ws8e{word-spacing:3.640000pt;}
.ws3f{word-spacing:3.752000pt;}
.ws57{word-spacing:3.864000pt;}
.ws35{word-spacing:4.032000pt;}
.ws23{word-spacing:4.144000pt;}
.ws10{word-spacing:4.200000pt;}
.ws9c{word-spacing:4.205333pt;}
.ws60{word-spacing:4.256000pt;}
.ws37{word-spacing:4.312000pt;}
.ws6f{word-spacing:4.424000pt;}
.ws1d{word-spacing:4.480000pt;}
.ws1c{word-spacing:4.704000pt;}
.ws63{word-spacing:4.928000pt;}
.ws9d{word-spacing:4.965333pt;}
.ws89{word-spacing:4.984000pt;}
.ws8a{word-spacing:5.040000pt;}
.ws18{word-spacing:5.152000pt;}
.ws7{word-spacing:5.208000pt;}
.ws40{word-spacing:5.264000pt;}
.ws76{word-spacing:5.269333pt;}
.ws7e{word-spacing:5.320000pt;}
.wsf{word-spacing:5.488000pt;}
.ws50{word-spacing:5.600000pt;}
.ws54{word-spacing:5.880000pt;}
.ws13{word-spacing:6.048000pt;}
.ws36{word-spacing:6.104000pt;}
.ws7d{word-spacing:6.216000pt;}
.wsd{word-spacing:6.552000pt;}
.ws53{word-spacing:6.608000pt;}
.ws2a{word-spacing:6.664000pt;}
.ws62{word-spacing:6.776000pt;}
.ws2f{word-spacing:6.888000pt;}
.ws26{word-spacing:6.944000pt;}
.ws6d{word-spacing:7.056000pt;}
.ws3c{word-spacing:7.168000pt;}
.ws4b{word-spacing:7.224000pt;}
.ws4d{word-spacing:7.280000pt;}
.ws5c{word-spacing:7.392000pt;}
.ws92{word-spacing:7.448000pt;}
.wsa0{word-spacing:7.650667pt;}
.ws93{word-spacing:7.802667pt;}
.ws6e{word-spacing:7.840000pt;}
.ws8b{word-spacing:7.896000pt;}
.ws87{word-spacing:7.952000pt;}
.ws19{word-spacing:8.008000pt;}
.ws4a{word-spacing:8.064000pt;}
.ws2c{word-spacing:8.176000pt;}
.ws67{word-spacing:8.344000pt;}
.wsc{word-spacing:8.400000pt;}
.ws9{word-spacing:8.512000pt;}
.ws55{word-spacing:8.680000pt;}
.ws44{word-spacing:8.792000pt;}
.ws4f{word-spacing:8.960000pt;}
.ws6b{word-spacing:9.128000pt;}
.ws2d{word-spacing:9.296000pt;}
.ws6c{word-spacing:9.744000pt;}
.ws98{word-spacing:10.133333pt;}
.ws83{word-spacing:10.136000pt;}
.ws51{word-spacing:10.360000pt;}
.ws1b{word-spacing:10.472000pt;}
.ws14{word-spacing:10.584000pt;}
.ws3d{word-spacing:10.640000pt;}
.ws3e{word-spacing:10.920000pt;}
.ws45{word-spacing:11.480000pt;}
.ws29{word-spacing:11.536000pt;}
.wsa{word-spacing:11.928000pt;}
.ws49{word-spacing:12.096000pt;}
.ws69{word-spacing:12.152000pt;}
.ws70{word-spacing:12.488000pt;}
.ws41{word-spacing:13.664000pt;}
.ws86{word-spacing:14.112000pt;}
.ws5d{word-spacing:14.336000pt;}
.ws8f{word-spacing:14.504000pt;}
.ws84{word-spacing:15.120000pt;}
.ws58{word-spacing:16.408000pt;}
.ws7b{word-spacing:18.144000pt;}
.ws66{word-spacing:18.536000pt;}
.ws8{word-spacing:19.040000pt;}
.ws11{word-spacing:22.176000pt;}
.ws46{word-spacing:23.240000pt;}
.ws32{word-spacing:26.880000pt;}
.ws7f{word-spacing:28.728000pt;}
._5{margin-left:-8.400000pt;}
._9{margin-left:-6.776000pt;}
._0{margin-left:-5.770667pt;}
._a{margin-left:-4.645333pt;}
._1{margin-left:-3.360000pt;}
._4{margin-left:-2.389333pt;}
._2{margin-left:-1.250667pt;}
._3{width:1.013333pt;}
._11{width:25.337118pt;}
._f{width:28.443201pt;}
._15{width:32.956800pt;}
._e{width:35.040000pt;}
._10{width:54.568604pt;}
._d{width:143.206990pt;}
._b{width:151.516050pt;}
._c{width:153.078437pt;}
._8{width:159.913600pt;}
._7{width:171.149440pt;}
._6{width:183.469440pt;}
._16{width:263.698342pt;}
._13{width:312.166810pt;}
._14{width:372.323955pt;}
._12{width:381.288205pt;}
.fs9{font-size:35.508800pt;}
.fsc{font-size:39.947733pt;}
.fsa{font-size:42.610667pt;}
.fsd{font-size:43.942400pt;}
.fs8{font-size:44.800000pt;}
.fsb{font-size:47.937067pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:49.280000pt;}
.fs5{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:152.676800pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:4.653200pt;}
.ye2{bottom:6.256373pt;}
.ye8{bottom:10.034933pt;}
.y101{bottom:14.689950pt;}
.y2{bottom:16.661467pt;}
.ydb{bottom:18.120533pt;}
.yf6{bottom:23.593782pt;}
.yee{bottom:24.508133pt;}
.y103{bottom:35.767251pt;}
.y10b{bottom:36.000800pt;}
.yf7{bottom:42.244779pt;}
.y10a{bottom:45.297733pt;}
.ydc{bottom:49.745973pt;}
.yef{bottom:51.148611pt;}
.y109{bottom:54.594533pt;}
.yf8{bottom:60.895776pt;}
.y108{bottom:63.891333pt;}
.y163{bottom:65.445600pt;}
.y107{bottom:73.188133pt;}
.yf0{bottom:77.789088pt;}
.yf9{bottom:79.546773pt;}
.ydd{bottom:81.371413pt;}
.y106{bottom:82.484000pt;}
.y1{bottom:94.861867pt;}
.y102{bottom:96.123333pt;}
.yfa{bottom:98.197771pt;}
.yf1{bottom:104.429565pt;}
.yde{bottom:112.996853pt;}
.yfb{bottom:116.848768pt;}
.ybb{bottom:125.319867pt;}
.y5d{bottom:125.349733pt;}
.y8b{bottom:125.417867pt;}
.yd9{bottom:125.443867pt;}
.y2d{bottom:125.447733pt;}
.yd4{bottom:125.457867pt;}
.y15a{bottom:128.181200pt;}
.yf2{bottom:131.070042pt;}
.yfc{bottom:135.499765pt;}
.yba{bottom:141.321867pt;}
.y5c{bottom:141.351733pt;}
.y8a{bottom:141.419867pt;}
.yd8{bottom:141.445867pt;}
.y2c{bottom:141.449733pt;}
.yd3{bottom:141.459867pt;}
.y159{bottom:142.845200pt;}
.ye7{bottom:144.107467pt;}
.ydf{bottom:144.622293pt;}
.yfd{bottom:154.150762pt;}
.yb9{bottom:157.323867pt;}
.y5b{bottom:157.353733pt;}
.y89{bottom:157.421867pt;}
.yd7{bottom:157.447867pt;}
.y2b{bottom:157.451733pt;}
.y12f{bottom:157.453867pt;}
.yd2{bottom:157.461867pt;}
.yf3{bottom:157.710519pt;}
.ye6{bottom:157.810933pt;}
.ye5{bottom:171.514667pt;}
.yfe{bottom:172.801759pt;}
.yb8{bottom:173.325867pt;}
.y5a{bottom:173.355733pt;}
.y88{bottom:173.423867pt;}
.yd6{bottom:173.449867pt;}
.y2a{bottom:173.453733pt;}
.y12e{bottom:173.455867pt;}
.yd1{bottom:173.463867pt;}
.ye0{bottom:176.247733pt;}
.yf4{bottom:184.350997pt;}
.ye4{bottom:185.219333pt;}
.yb7{bottom:189.327867pt;}
.y59{bottom:189.357733pt;}
.y87{bottom:189.425867pt;}
.yd5{bottom:189.451867pt;}
.y29{bottom:189.455733pt;}
.y12d{bottom:189.457867pt;}
.yd0{bottom:189.465867pt;}
.y158{bottom:189.549867pt;}
.yff{bottom:191.452757pt;}
.ye3{bottom:198.922800pt;}
.y105{bottom:201.008933pt;}
.yb6{bottom:205.329867pt;}
.y58{bottom:205.359733pt;}
.y86{bottom:205.427867pt;}
.y28{bottom:205.457733pt;}
.y12c{bottom:205.459867pt;}
.ycf{bottom:205.467867pt;}
.y157{bottom:205.547867pt;}
.ye1{bottom:207.873173pt;}
.y100{bottom:210.103754pt;}
.yf5{bottom:210.991474pt;}
.yb5{bottom:221.331867pt;}
.y57{bottom:221.361733pt;}
.y85{bottom:221.429867pt;}
.y27{bottom:221.459733pt;}
.y12b{bottom:221.461867pt;}
.yce{bottom:221.469867pt;}
.y156{bottom:221.545867pt;}
.yb4{bottom:237.333867pt;}
.y56{bottom:237.363733pt;}
.y84{bottom:237.431867pt;}
.y26{bottom:237.461733pt;}
.y12a{bottom:237.463867pt;}
.ycd{bottom:237.471867pt;}
.y155{bottom:237.543867pt;}
.y111{bottom:246.493867pt;}
.yb3{bottom:253.335867pt;}
.y55{bottom:253.365733pt;}
.y83{bottom:253.433867pt;}
.y25{bottom:253.463733pt;}
.y129{bottom:253.465867pt;}
.ycc{bottom:253.473867pt;}
.y154{bottom:253.541867pt;}
.y110{bottom:261.161867pt;}
.yb2{bottom:269.337867pt;}
.y54{bottom:269.367733pt;}
.y82{bottom:269.435867pt;}
.y24{bottom:269.465733pt;}
.y128{bottom:269.467867pt;}
.ycb{bottom:269.475867pt;}
.y153{bottom:269.539867pt;}
.y10f{bottom:275.829867pt;}
.yb1{bottom:285.339867pt;}
.y53{bottom:285.369733pt;}
.y81{bottom:285.437867pt;}
.y23{bottom:285.467733pt;}
.y127{bottom:285.469867pt;}
.yca{bottom:285.477867pt;}
.y152{bottom:285.537867pt;}
.y10e{bottom:290.497867pt;}
.yb0{bottom:301.341867pt;}
.y52{bottom:301.371733pt;}
.y80{bottom:301.439867pt;}
.y22{bottom:301.469733pt;}
.y126{bottom:301.471867pt;}
.yc9{bottom:301.479867pt;}
.y151{bottom:301.535867pt;}
.y10d{bottom:305.165867pt;}
.yaf{bottom:317.343867pt;}
.y51{bottom:317.373733pt;}
.y7f{bottom:317.441867pt;}
.y21{bottom:317.471733pt;}
.y125{bottom:317.473867pt;}
.yc8{bottom:317.481867pt;}
.y150{bottom:317.533867pt;}
.y10c{bottom:319.833867pt;}
.yae{bottom:333.345867pt;}
.y50{bottom:333.375733pt;}
.y7e{bottom:333.443867pt;}
.y20{bottom:333.473733pt;}
.y124{bottom:333.475867pt;}
.yc7{bottom:333.483867pt;}
.y14f{bottom:333.531867pt;}
.yed{bottom:345.173333pt;}
.yad{bottom:349.347867pt;}
.y4f{bottom:349.377733pt;}
.y7d{bottom:349.445867pt;}
.y1f{bottom:349.475733pt;}
.y123{bottom:349.477867pt;}
.y14e{bottom:349.529867pt;}
.yac{bottom:365.349867pt;}
.y4e{bottom:365.379733pt;}
.y7c{bottom:365.447867pt;}
.y1e{bottom:365.477733pt;}
.y122{bottom:365.479867pt;}
.yc6{bottom:365.487867pt;}
.y14d{bottom:365.527867pt;}
.yab{bottom:381.351867pt;}
.y4d{bottom:381.381733pt;}
.y1d{bottom:381.479733pt;}
.y121{bottom:381.481867pt;}
.y14c{bottom:381.525867pt;}
.yaa{bottom:397.353867pt;}
.y4c{bottom:397.383733pt;}
.y7b{bottom:397.451867pt;}
.y1c{bottom:397.481733pt;}
.y120{bottom:397.483867pt;}
.y14b{bottom:397.523867pt;}
.ya9{bottom:413.355867pt;}
.y4b{bottom:413.385733pt;}
.y1b{bottom:413.483733pt;}
.y11f{bottom:413.485867pt;}
.yc5{bottom:413.493867pt;}
.y14a{bottom:413.521867pt;}
.ya8{bottom:429.357867pt;}
.y4a{bottom:429.387733pt;}
.y1a{bottom:429.485733pt;}
.y11e{bottom:429.487867pt;}
.yc4{bottom:429.495867pt;}
.y149{bottom:429.519867pt;}
.ya7{bottom:445.359867pt;}
.y49{bottom:445.389733pt;}
.y7a{bottom:445.457867pt;}
.y19{bottom:445.487733pt;}
.y11d{bottom:445.489867pt;}
.yc3{bottom:445.497867pt;}
.y148{bottom:445.517867pt;}
.ya6{bottom:461.361867pt;}
.y48{bottom:461.391733pt;}
.y79{bottom:461.459867pt;}
.y18{bottom:461.489733pt;}
.y11c{bottom:461.491867pt;}
.yc2{bottom:461.499867pt;}
.y147{bottom:461.515867pt;}
.ya5{bottom:477.363867pt;}
.y47{bottom:477.393733pt;}
.y78{bottom:477.461867pt;}
.y17{bottom:477.491733pt;}
.y11b{bottom:477.493867pt;}
.yc1{bottom:477.501867pt;}
.y146{bottom:477.513867pt;}
.ya4{bottom:493.365867pt;}
.y46{bottom:493.395733pt;}
.y77{bottom:493.463867pt;}
.y16{bottom:493.493733pt;}
.y11a{bottom:493.495867pt;}
.yc0{bottom:493.503867pt;}
.y145{bottom:493.511867pt;}
.ya3{bottom:509.367867pt;}
.y45{bottom:509.397733pt;}
.y76{bottom:509.465867pt;}
.y15{bottom:509.495733pt;}
.y119{bottom:509.497867pt;}
.ybf{bottom:509.505867pt;}
.ya2{bottom:525.369867pt;}
.y44{bottom:525.399733pt;}
.y144{bottom:525.415867pt;}
.y75{bottom:525.467867pt;}
.y14{bottom:525.497733pt;}
.y118{bottom:525.499867pt;}
.ybe{bottom:525.507867pt;}
.ya1{bottom:541.371867pt;}
.y43{bottom:541.401733pt;}
.y74{bottom:541.469867pt;}
.y13{bottom:541.499733pt;}
.y117{bottom:541.501867pt;}
.ybd{bottom:541.509867pt;}
.ya0{bottom:557.373867pt;}
.y42{bottom:557.403733pt;}
.y73{bottom:557.471867pt;}
.y12{bottom:557.501733pt;}
.y116{bottom:557.503867pt;}
.ybc{bottom:557.511867pt;}
.y9f{bottom:573.375867pt;}
.y41{bottom:573.405733pt;}
.y143{bottom:573.421867pt;}
.y72{bottom:573.473867pt;}
.y11{bottom:573.503733pt;}
.y115{bottom:573.505867pt;}
.y9e{bottom:589.377867pt;}
.y40{bottom:589.407733pt;}
.y142{bottom:589.423867pt;}
.y71{bottom:589.475867pt;}
.y10{bottom:589.505733pt;}
.y114{bottom:589.507867pt;}
.yec{bottom:601.814133pt;}
.y9d{bottom:605.379867pt;}
.y3f{bottom:605.409733pt;}
.y141{bottom:605.425867pt;}
.y70{bottom:605.477867pt;}
.yf{bottom:605.507733pt;}
.y113{bottom:605.509867pt;}
.yeb{bottom:616.482133pt;}
.y9c{bottom:621.381867pt;}
.y3e{bottom:621.411733pt;}
.y140{bottom:621.427867pt;}
.y6f{bottom:621.479867pt;}
.ye{bottom:621.509733pt;}
.yd{bottom:621.511733pt;}
.y112{bottom:621.511867pt;}
.yea{bottom:631.150133pt;}
.y9b{bottom:637.383867pt;}
.y3d{bottom:637.413733pt;}
.y13f{bottom:637.429867pt;}
.y6e{bottom:637.481867pt;}
.ye9{bottom:645.818133pt;}
.y9a{bottom:653.385867pt;}
.y3c{bottom:653.415733pt;}
.y13e{bottom:653.431867pt;}
.y6d{bottom:653.483867pt;}
.yda{bottom:666.401333pt;}
.y16d{bottom:669.350933pt;}
.y99{bottom:669.387867pt;}
.y3b{bottom:669.417733pt;}
.y13d{bottom:669.433867pt;}
.y6c{bottom:669.485867pt;}
.yc{bottom:669.509733pt;}
.y16c{bottom:684.018933pt;}
.y98{bottom:685.389867pt;}
.y3a{bottom:685.419733pt;}
.y13c{bottom:685.435867pt;}
.y6b{bottom:685.487867pt;}
.yb{bottom:685.511733pt;}
.y16b{bottom:698.686933pt;}
.y97{bottom:701.391867pt;}
.y39{bottom:701.421733pt;}
.y13b{bottom:701.437867pt;}
.y6a{bottom:701.489867pt;}
.y16a{bottom:713.354933pt;}
.y96{bottom:717.393867pt;}
.y38{bottom:717.423733pt;}
.y13a{bottom:717.439867pt;}
.y69{bottom:717.491867pt;}
.y169{bottom:728.022933pt;}
.y95{bottom:733.395867pt;}
.y37{bottom:733.425733pt;}
.y139{bottom:733.441867pt;}
.y68{bottom:733.493867pt;}
.ya{bottom:738.621867pt;}
.y162{bottom:749.292000pt;}
.y94{bottom:749.397867pt;}
.y36{bottom:749.427733pt;}
.y138{bottom:749.443867pt;}
.y67{bottom:749.495867pt;}
.y9{bottom:753.289867pt;}
.y15d{bottom:754.528533pt;}
.y93{bottom:765.399867pt;}
.y35{bottom:765.429733pt;}
.y137{bottom:765.445867pt;}
.y66{bottom:765.497867pt;}
.y15e{bottom:767.592400pt;}
.y8{bottom:767.957867pt;}
.y92{bottom:781.401867pt;}
.y34{bottom:781.431733pt;}
.y136{bottom:781.447867pt;}
.y65{bottom:781.499867pt;}
.y7{bottom:782.625867pt;}
.y91{bottom:797.403867pt;}
.y33{bottom:797.433733pt;}
.y135{bottom:797.449867pt;}
.y64{bottom:797.501867pt;}
.y6{bottom:813.292533pt;}
.y90{bottom:813.405867pt;}
.y32{bottom:813.435733pt;}
.y134{bottom:813.451867pt;}
.y63{bottom:813.503867pt;}
.y164{bottom:819.718400pt;}
.y160{bottom:823.827686pt;}
.y161{bottom:826.892669pt;}
.y8f{bottom:829.407867pt;}
.y31{bottom:829.437733pt;}
.y133{bottom:829.453867pt;}
.y62{bottom:829.505867pt;}
.y5{bottom:837.292533pt;}
.y15f{bottom:839.679907pt;}
.y168{bottom:839.815707pt;}
.y8e{bottom:845.409867pt;}
.y30{bottom:845.439733pt;}
.y132{bottom:845.455867pt;}
.y61{bottom:845.507867pt;}
.y167{bottom:851.800027pt;}
.y15c{bottom:861.045694pt;}
.y8d{bottom:861.411867pt;}
.y2f{bottom:861.441733pt;}
.y131{bottom:861.457867pt;}
.y60{bottom:861.509867pt;}
.y166{bottom:863.784347pt;}
.y15b{bottom:875.031333pt;}
.y165{bottom:875.768667pt;}
.y4{bottom:877.292533pt;}
.y8c{bottom:877.413867pt;}
.y2e{bottom:877.443733pt;}
.y130{bottom:877.459867pt;}
.y5f{bottom:877.511867pt;}
.y3{bottom:903.207867pt;}
.y5e{bottom:903.208000pt;}
.he{height:25.851377pt;}
.hf{height:26.302173pt;}
.h15{height:29.083042pt;}
.hc{height:30.471875pt;}
.h10{height:31.021730pt;}
.h14{height:31.950242pt;}
.h16{height:31.991269pt;}
.ha{height:32.845312pt;}
.hb{height:33.519062pt;}
.h13{height:34.899495pt;}
.h12{height:34.992000pt;}
.h11{height:35.466667pt;}
.h7{height:36.936000pt;}
.h2{height:37.333333pt;}
.h4{height:39.200000pt;}
.h5{height:52.266667pt;}
.h6{height:69.984000pt;}
.h8{height:106.873760pt;}
.h17{height:140.441333pt;}
.hd{height:219.520000pt;}
.h9{height:223.332000pt;}
.h3{height:967.558533pt;}
.h1{height:1000.666667pt;}
.h0{height:1000.881333pt;}
.w5{width:283.800000pt;}
.w4{width:284.980000pt;}
.w3{width:446.582667pt;}
.w2{width:740.787867pt;}
.w1{width:774.000000pt;}
.w0{width:774.110667pt;}
.x0{left:0.000000pt;}
.x19{left:8.184513pt;}
.x16{left:12.761578pt;}
.x12{left:14.223067pt;}
.x2{left:16.661467pt;}
.x17{left:27.693028pt;}
.x13{left:29.007067pt;}
.xf{left:34.044000pt;}
.x1c{left:66.528533pt;}
.x8{left:75.590533pt;}
.x3{left:79.370000pt;}
.x1b{left:82.445600pt;}
.x10{left:88.769440pt;}
.xa{left:92.252000pt;}
.x1{left:96.031467pt;}
.xb{left:103.592000pt;}
.x5{left:107.368667pt;}
.x4{left:119.352667pt;}
.x1a{left:122.928800pt;}
.x1f{left:148.973350pt;}
.x21{left:162.123114pt;}
.xe{left:163.764000pt;}
.x14{left:165.616800pt;}
.x23{left:177.986000pt;}
.x1d{left:188.014116pt;}
.x20{left:232.178285pt;}
.x15{left:262.521600pt;}
.x22{left:275.992000pt;}
.x18{left:282.383467pt;}
.x24{left:320.546933pt;}
.x11{left:327.686933pt;}
.x1e{left:338.501333pt;}
.xc{left:394.610000pt;}
.x6{left:398.386667pt;}
.xd{left:405.950000pt;}
.x7{left:409.726667pt;}
.x9{left:658.078800pt;}
}




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