
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_cba6735045e50e78e4227b9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a0df26e7bc5ac60b8c09dfec.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_98571fcb1b6bcc82495d2829.woff')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_7db249d4b46ea0a4de27cc72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_9bca19da4e047b594abc5aa7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082520;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_2db73e7595903e49a2b9b91d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_223dc64db0cb5bcd2861f9a0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.058594;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_d70bc4f974cd129c99ad0771.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_f2da7697a62d1d187ab71ffb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.045000;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);}
.v3{vertical-align:-16.830000px;}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-9.960000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls4f{letter-spacing:-7.992000px;}
.ls1e{letter-spacing:-7.200000px;}
.ls53{letter-spacing:-7.056000px;}
.ls3e{letter-spacing:-6.480000px;}
.lsd{letter-spacing:-6.336000px;}
.ls37{letter-spacing:-5.976000px;}
.ls48{letter-spacing:-3.528000px;}
.ls4c{letter-spacing:-2.808000px;}
.ls2c{letter-spacing:-2.448000px;}
.ls3a{letter-spacing:-2.160000px;}
.ls55{letter-spacing:-1.800000px;}
.ls54{letter-spacing:-1.656000px;}
.ls40{letter-spacing:-1.584000px;}
.ls50{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.368000px;}
.ls47{letter-spacing:-1.296000px;}
.ls41{letter-spacing:-1.152000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls30{letter-spacing:-0.864000px;}
.ls4b{letter-spacing:-0.792000px;}
.ls36{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.648000px;}
.ls2e{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls5a{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.288000px;}
.ls5b{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000600px;}
.ls59{letter-spacing:0.009000px;}
.ls4a{letter-spacing:0.013200px;}
.ls52{letter-spacing:0.063000px;}
.ls1d{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.399000px;}
.ls22{letter-spacing:0.415800px;}
.ls18{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.771000px;}
.ls4{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.854400px;}
.ls42{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.ls17{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.152000px;}
.ls11{letter-spacing:1.224000px;}
.ls33{letter-spacing:1.296000px;}
.ls4e{letter-spacing:1.368000px;}
.ls31{letter-spacing:1.512000px;}
.ls35{letter-spacing:1.584000px;}
.ls14{letter-spacing:1.656000px;}
.ls23{letter-spacing:1.728000px;}
.ls43{letter-spacing:2.232000px;}
.ls44{letter-spacing:2.592000px;}
.ls58{letter-spacing:3.408000px;}
.ls25{letter-spacing:3.600000px;}
.ls57{letter-spacing:4.752000px;}
.ls2{letter-spacing:7.380000px;}
.ls0{letter-spacing:8.460000px;}
.ls49{letter-spacing:9.144000px;}
.ls45{letter-spacing:10.296000px;}
.ls56{letter-spacing:10.368000px;}
.ls26{letter-spacing:10.584000px;}
.ls46{letter-spacing:10.656000px;}
.ls1{letter-spacing:10.740000px;}
.ls51{letter-spacing:11.088000px;}
.ls2f{letter-spacing:11.592000px;}
.ls4d{letter-spacing:11.880000px;}
.ls5{letter-spacing:11.952000px;}
.ls38{letter-spacing:12.096000px;}
.ls28{letter-spacing:12.168000px;}
.ls10{letter-spacing:12.312000px;}
.ls39{letter-spacing:12.384000px;}
.ls3c{letter-spacing:12.456000px;}
.ls3f{letter-spacing:12.672000px;}
.ls3d{letter-spacing:12.744000px;}
.ls2d{letter-spacing:12.888000px;}
.ls1c{letter-spacing:13.104000px;}
.ls15{letter-spacing:13.392000px;}
.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;}
}
.ws18{word-spacing:-61.920000px;}
.ws13{word-spacing:-61.632000px;}
.ws27{word-spacing:-61.416000px;}
.ws3b{word-spacing:-61.272000px;}
.ws3c{word-spacing:-61.200000px;}
.ws38{word-spacing:-60.984000px;}
.ws30{word-spacing:-60.912000px;}
.ws12{word-spacing:-60.840000px;}
.ws48{word-spacing:-60.696000px;}
.ws31{word-spacing:-60.624000px;}
.ws10{word-spacing:-60.480000px;}
.ws4b{word-spacing:-60.408000px;}
.ws24{word-spacing:-60.120000px;}
.ws4e{word-spacing:-59.616000px;}
.ws51{word-spacing:-58.896000px;}
.ws41{word-spacing:-50.760000px;}
.ws2c{word-spacing:-50.112000px;}
.ws2b{word-spacing:-50.040000px;}
.ws2e{word-spacing:-49.824000px;}
.ws14{word-spacing:-49.680000px;}
.ws21{word-spacing:-49.608000px;}
.ws1a{word-spacing:-49.464000px;}
.ws47{word-spacing:-49.392000px;}
.ws8{word-spacing:-49.320000px;}
.wsc{word-spacing:-49.248000px;}
.ws16{word-spacing:-49.176000px;}
.ws28{word-spacing:-49.104000px;}
.ws1c{word-spacing:-49.032000px;}
.ws1e{word-spacing:-48.960000px;}
.ws11{word-spacing:-48.888000px;}
.ws9{word-spacing:-48.816000px;}
.ws22{word-spacing:-48.744000px;}
.ws2f{word-spacing:-48.672000px;}
.ws20{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws6{word-spacing:-48.456000px;}
.ws25{word-spacing:-48.384000px;}
.ws4{word-spacing:-48.312000px;}
.ws29{word-spacing:-48.168000px;}
.ws1d{word-spacing:-48.096000px;}
.ws1f{word-spacing:-48.024000px;}
.ws42{word-spacing:-47.952000px;}
.ws45{word-spacing:-47.880000px;}
.ws2{word-spacing:-47.820000px;}
.ws2d{word-spacing:-47.808000px;}
.ws2a{word-spacing:-47.664000px;}
.wsd{word-spacing:-47.448000px;}
.ws50{word-spacing:-46.872000px;}
.ws1{word-spacing:-40.440000px;}
.ws34{word-spacing:-37.800000px;}
.ws40{word-spacing:-37.728000px;}
.ws37{word-spacing:-37.512000px;}
.ws3f{word-spacing:-37.296000px;}
.ws36{word-spacing:-37.080000px;}
.ws49{word-spacing:-37.008000px;}
.ws39{word-spacing:-36.936000px;}
.ws4a{word-spacing:-36.864000px;}
.ws3a{word-spacing:-36.720000px;}
.ws15{word-spacing:-36.648000px;}
.ws17{word-spacing:-36.576000px;}
.ws23{word-spacing:-36.504000px;}
.ws33{word-spacing:-36.432000px;}
.ws26{word-spacing:-36.360000px;}
.ws3d{word-spacing:-36.216000px;}
.ws32{word-spacing:-36.144000px;}
.ws46{word-spacing:-36.072000px;}
.ws4c{word-spacing:-36.000000px;}
.ws35{word-spacing:-35.928000px;}
.ws44{word-spacing:-35.784000px;}
.wsf{word-spacing:-35.640000px;}
.wse{word-spacing:-35.496000px;}
.ws43{word-spacing:-35.280000px;}
.ws19{word-spacing:-35.208000px;}
.ws4d{word-spacing:-35.136000px;}
.ws3e{word-spacing:-34.992000px;}
.ws4f{word-spacing:-34.488000px;}
.ws55{word-spacing:-32.352000px;}
.ws5{word-spacing:-32.184000px;}
.ws58{word-spacing:-32.112000px;}
.ws57{word-spacing:-31.872000px;}
.ws5a{word-spacing:-31.632000px;}
.ws52{word-spacing:-25.320000px;}
.ws1b{word-spacing:-20.592000px;}
.ws53{word-spacing:-20.232000px;}
.ws7{word-spacing:-14.162400px;}
.ws56{word-spacing:-13.488000px;}
.ws54{word-spacing:-12.336000px;}
.ws59{word-spacing:-9.441600px;}
.wsb{word-spacing:-8.520000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:146.100000px;}
._10{margin-left:-948.900000px;}
._1b{margin-left:-20.232000px;}
._17{margin-left:-18.576000px;}
._18{margin-left:-15.648000px;}
._e{margin-left:-14.616000px;}
._15{margin-left:-12.936000px;}
._4{margin-left:-11.880000px;}
._14{margin-left:-9.792000px;}
._12{margin-left:-8.712000px;}
._b{margin-left:-7.488000px;}
._2{margin-left:-6.420000px;}
._9{margin-left:-4.560000px;}
._d{margin-left:-3.168000px;}
._0{margin-left:-1.800000px;}
._6{width:1.200000px;}
._3{width:3.120000px;}
._1{width:4.320000px;}
._c{width:5.400000px;}
._7{width:7.344000px;}
._5{width:9.120000px;}
._8{width:10.608000px;}
._a{width:11.640000px;}
._11{width:12.960000px;}
._19{width:14.256000px;}
._13{width:15.336000px;}
._f{width:17.352000px;}
._16{width:19.064400px;}
._4c{width:23.496000px;}
._1a{width:31.646100px;}
._1f{width:37.536000px;}
._43{width:39.984000px;}
._48{width:47.592000px;}
._29{width:54.786000px;}
._4b{width:62.640000px;}
._2e{width:67.152000px;}
._21{width:75.288000px;}
._24{width:88.800000px;}
._2d{width:92.904000px;}
._4a{width:95.952000px;}
._49{width:98.568000px;}
._23{width:109.344000px;}
._4f{width:117.888000px;}
._20{width:122.352000px;}
._4e{width:125.712000px;}
._46{width:127.008000px;}
._3b{width:151.728000px;}
._38{width:154.464000px;}
._37{width:158.125800px;}
._28{width:159.792000px;}
._44{width:162.816000px;}
._1c{width:173.040000px;}
._39{width:175.392000px;}
._3c{width:177.024000px;}
._3a{width:183.504000px;}
._2b{width:185.280000px;}
._1d{width:200.784000px;}
._35{width:203.760000px;}
._32{width:206.880000px;}
._25{width:208.224000px;}
._27{width:216.579000px;}
._33{width:222.720000px;}
._26{width:231.216000px;}
._50{width:233.616000px;}
._47{width:236.688000px;}
._45{width:240.768000px;}
._2f{width:243.072000px;}
._4d{width:249.888000px;}
._2a{width:256.272000px;}
._3d{width:274.992000px;}
._36{width:278.640000px;}
._41{width:280.224000px;}
._3e{width:287.280000px;}
._34{width:296.064000px;}
._42{width:310.128000px;}
._22{width:313.200000px;}
._3f{width:326.280000px;}
._2c{width:344.400000px;}
._31{width:348.192000px;}
._40{width:353.568000px;}
._30{width:358.896000px;}
._1e{width:411.696000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.600000px;}
.fs4{font-size:35.700000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.yfb{bottom:116.999850px;}
.y67{bottom:117.000000px;}
.yb3{bottom:117.006000px;}
.y43{bottom:117.174000px;}
.y123{bottom:117.192000px;}
.yaa{bottom:117.210000px;}
.y8d{bottom:117.216000px;}
.y1f{bottom:117.354300px;}
.y156{bottom:117.372000px;}
.y113{bottom:117.923700px;}
.yd7{bottom:118.110000px;}
.y18a{bottom:122.700000px;}
.yfa{bottom:131.999850px;}
.y155{bottom:133.416000px;}
.y189{bottom:138.600000px;}
.y66{bottom:139.500000px;}
.yb2{bottom:139.506000px;}
.y8c{bottom:139.716000px;}
.y1e{bottom:139.854300px;}
.y42{bottom:140.268000px;}
.y122{bottom:140.286000px;}
.ya9{bottom:140.304000px;}
.y112{bottom:141.017700px;}
.yd6{bottom:141.204000px;}
.y154{bottom:149.460000px;}
.yf9{bottom:151.207350px;}
.y188{bottom:154.500000px;}
.yb1{bottom:161.442000px;}
.y8b{bottom:161.460000px;}
.y65{bottom:162.000000px;}
.y1d{bottom:162.354300px;}
.y41{bottom:163.362000px;}
.y121{bottom:163.380000px;}
.ya8{bottom:163.398000px;}
.y111{bottom:164.111700px;}
.yd5{bottom:164.298000px;}
.y153{bottom:165.504000px;}
.y187{bottom:170.400000px;}
.y152{bottom:181.548000px;}
.yb0{bottom:183.186000px;}
.y8a{bottom:183.204000px;}
.y64{bottom:184.500000px;}
.y1c{bottom:184.854300px;}
.y186{bottom:186.300000px;}
.y40{bottom:186.456000px;}
.y120{bottom:186.474000px;}
.ya7{bottom:186.492000px;}
.y110{bottom:187.205700px;}
.yd4{bottom:187.392000px;}
.yf8{bottom:196.715850px;}
.y151{bottom:197.592000px;}
.y185{bottom:202.200000px;}
.yaf{bottom:204.930000px;}
.y89{bottom:204.948000px;}
.y63{bottom:207.000000px;}
.y1b{bottom:207.354300px;}
.y3f{bottom:209.550000px;}
.y11f{bottom:209.568000px;}
.ya6{bottom:209.586000px;}
.y10f{bottom:210.383700px;}
.yd3{bottom:210.486000px;}
.y150{bottom:213.636000px;}
.y184{bottom:218.100000px;}
.yf7{bottom:219.809850px;}
.yae{bottom:226.674000px;}
.y88{bottom:226.692000px;}
.y62{bottom:229.500000px;}
.y14f{bottom:229.680000px;}
.y1a{bottom:229.854300px;}
.y3e{bottom:232.644000px;}
.y11e{bottom:232.662000px;}
.ya5{bottom:232.680000px;}
.y10e{bottom:233.477700px;}
.yd2{bottom:233.580000px;}
.y183{bottom:234.000000px;}
.yf6{bottom:242.615850px;}
.y14e{bottom:245.724000px;}
.yad{bottom:248.418000px;}
.y87{bottom:248.436000px;}
.y182{bottom:249.900000px;}
.y61{bottom:252.000000px;}
.y19{bottom:252.354300px;}
.y3d{bottom:255.738000px;}
.y11d{bottom:255.756000px;}
.ya4{bottom:255.774000px;}
.y10d{bottom:256.571700px;}
.yd1{bottom:256.674000px;}
.y14d{bottom:261.768000px;}
.yf5{bottom:265.421850px;}
.y181{bottom:265.800000px;}
.yac{bottom:270.162000px;}
.y86{bottom:270.180000px;}
.y60{bottom:274.500000px;}
.y18{bottom:274.854300px;}
.y14c{bottom:277.812000px;}
.y3c{bottom:278.832000px;}
.y11c{bottom:278.850000px;}
.ya3{bottom:278.868000px;}
.y10c{bottom:279.665700px;}
.yd0{bottom:279.768000px;}
.y180{bottom:281.700000px;}
.yf4{bottom:288.227850px;}
.yab{bottom:291.906000px;}
.y85{bottom:291.924000px;}
.y14b{bottom:293.856000px;}
.y5f{bottom:297.000000px;}
.y17{bottom:297.354300px;}
.y17f{bottom:297.600000px;}
.y3b{bottom:301.926000px;}
.y11b{bottom:301.944000px;}
.ya2{bottom:301.962000px;}
.y10b{bottom:302.759700px;}
.ycf{bottom:302.862000px;}
.y14a{bottom:309.900000px;}
.yf3{bottom:311.033850px;}
.y17e{bottom:313.500000px;}
.y84{bottom:313.668000px;}
.y5e{bottom:319.500000px;}
.y16{bottom:319.854300px;}
.y3a{bottom:325.020000px;}
.y11a{bottom:325.038000px;}
.ya1{bottom:325.056000px;}
.y10a{bottom:325.853700px;}
.y149{bottom:325.944000px;}
.yce{bottom:325.956000px;}
.y17d{bottom:329.400000px;}
.yf2{bottom:333.839850px;}
.y83{bottom:335.412000px;}
.y148{bottom:341.988000px;}
.y5d{bottom:342.000000px;}
.y15{bottom:342.354300px;}
.y17c{bottom:345.300000px;}
.y39{bottom:348.114000px;}
.y119{bottom:348.132000px;}
.ya0{bottom:348.150000px;}
.y109{bottom:348.947700px;}
.ycd{bottom:349.050000px;}
.yf1{bottom:356.645850px;}
.y82{bottom:357.156000px;}
.y147{bottom:358.032000px;}
.y17b{bottom:361.200000px;}
.y5c{bottom:364.500000px;}
.y14{bottom:364.854300px;}
.y38{bottom:371.208000px;}
.y118{bottom:371.226000px;}
.y9f{bottom:371.244000px;}
.y108{bottom:372.041700px;}
.ycc{bottom:372.144000px;}
.y146{bottom:374.076000px;}
.y17a{bottom:377.100000px;}
.y81{bottom:378.900000px;}
.yf0{bottom:379.451850px;}
.y5b{bottom:387.000000px;}
.y13{bottom:387.354300px;}
.y145{bottom:390.120000px;}
.y179{bottom:393.000000px;}
.y37{bottom:394.302000px;}
.y117{bottom:394.320000px;}
.y9e{bottom:394.338000px;}
.y107{bottom:395.135700px;}
.ycb{bottom:395.238000px;}
.y80{bottom:400.644000px;}
.yef{bottom:402.257850px;}
.y144{bottom:406.164000px;}
.y178{bottom:408.900000px;}
.y5a{bottom:409.500000px;}
.y36{bottom:417.396000px;}
.y116{bottom:417.414000px;}
.y9d{bottom:417.432000px;}
.y106{bottom:418.229700px;}
.yca{bottom:418.332000px;}
.y143{bottom:422.208000px;}
.y7f{bottom:422.388000px;}
.y177{bottom:424.800000px;}
.yee{bottom:425.063850px;}
.y59{bottom:432.000000px;}
.y12{bottom:432.354300px;}
.y142{bottom:438.252000px;}
.y35{bottom:440.490000px;}
.y115{bottom:440.508000px;}
.y9c{bottom:440.526000px;}
.y176{bottom:440.700000px;}
.y105{bottom:441.323700px;}
.yc9{bottom:441.426000px;}
.y7e{bottom:444.132000px;}
.yed{bottom:447.869850px;}
.y141{bottom:454.296000px;}
.y58{bottom:454.500000px;}
.y11{bottom:454.854300px;}
.y175{bottom:456.600000px;}
.y34{bottom:463.584000px;}
.y114{bottom:463.602000px;}
.y9b{bottom:463.620000px;}
.y104{bottom:464.417700px;}
.yc8{bottom:464.520000px;}
.y7d{bottom:465.876000px;}
.y140{bottom:470.340000px;}
.yec{bottom:470.675850px;}
.y174{bottom:472.500000px;}
.y57{bottom:477.000000px;}
.y10{bottom:477.354300px;}
.y13f{bottom:486.384000px;}
.y33{bottom:486.678000px;}
.y9a{bottom:486.714000px;}
.y103{bottom:487.511700px;}
.yc7{bottom:487.614000px;}
.y7c{bottom:487.620000px;}
.y173{bottom:488.400000px;}
.yeb{bottom:493.481850px;}
.y56{bottom:499.500000px;}
.yf{bottom:499.854300px;}
.y13e{bottom:502.428000px;}
.y172{bottom:504.300000px;}
.y7b{bottom:509.364000px;}
.y32{bottom:509.772000px;}
.y99{bottom:509.808000px;}
.y102{bottom:510.605700px;}
.yc6{bottom:510.708000px;}
.yea{bottom:516.287850px;}
.y13d{bottom:518.478000px;}
.y171{bottom:520.200000px;}
.y55{bottom:522.000000px;}
.ye{bottom:522.354300px;}
.y7a{bottom:531.108000px;}
.y31{bottom:532.866000px;}
.y98{bottom:532.902000px;}
.y101{bottom:533.735700px;}
.yc5{bottom:533.802000px;}
.y13c{bottom:534.534000px;}
.y170{bottom:536.100000px;}
.ye9{bottom:539.093850px;}
.y54{bottom:544.500000px;}
.yd{bottom:544.854300px;}
.y13b{bottom:550.578000px;}
.y16f{bottom:552.000000px;}
.y79{bottom:552.852000px;}
.y30{bottom:555.960000px;}
.y97{bottom:555.996000px;}
.y100{bottom:556.829700px;}
.yc4{bottom:556.896000px;}
.ye8{bottom:561.804000px;}
.y13a{bottom:566.712000px;}
.y53{bottom:567.000000px;}
.yc{bottom:567.354300px;}
.y16e{bottom:567.900000px;}
.y78{bottom:574.596000px;}
.y2f{bottom:579.054000px;}
.y96{bottom:579.090000px;}
.yff{bottom:579.923700px;}
.yc3{bottom:579.990000px;}
.y139{bottom:582.756000px;}
.y16d{bottom:583.800000px;}
.ye7{bottom:584.610000px;}
.y52{bottom:589.500000px;}
.yb{bottom:589.854300px;}
.y77{bottom:596.340000px;}
.y138{bottom:598.800000px;}
.y16c{bottom:599.700000px;}
.y2e{bottom:602.148000px;}
.y95{bottom:602.184000px;}
.yfe{bottom:603.017700px;}
.yc2{bottom:603.084000px;}
.ye6{bottom:607.416000px;}
.y51{bottom:612.000000px;}
.ya{bottom:612.354300px;}
.y137{bottom:614.844000px;}
.y16b{bottom:615.600000px;}
.y76{bottom:618.084000px;}
.y2d{bottom:625.242000px;}
.y94{bottom:625.278000px;}
.yfd{bottom:626.111700px;}
.yc1{bottom:626.178000px;}
.ye5{bottom:630.222000px;}
.y136{bottom:630.888000px;}
.y16a{bottom:631.500000px;}
.y50{bottom:634.500000px;}
.y9{bottom:634.854300px;}
.y75{bottom:639.828000px;}
.y135{bottom:646.944000px;}
.y169{bottom:647.400000px;}
.y2c{bottom:648.336000px;}
.y93{bottom:648.372000px;}
.yfc{bottom:649.205700px;}
.yc0{bottom:649.272000px;}
.ye4{bottom:653.028000px;}
.y4f{bottom:657.000000px;}
.y8{bottom:657.354300px;}
.y74{bottom:661.572000px;}
.y134{bottom:662.988000px;}
.y168{bottom:663.300000px;}
.y2b{bottom:671.430000px;}
.y92{bottom:671.466000px;}
.ybf{bottom:672.366000px;}
.ye3{bottom:675.834000px;}
.y133{bottom:679.032000px;}
.y167{bottom:679.200000px;}
.y4e{bottom:679.500000px;}
.y7{bottom:679.854300px;}
.y73{bottom:683.316000px;}
.y2a{bottom:694.524000px;}
.y91{bottom:694.560000px;}
.y132{bottom:695.076000px;}
.y166{bottom:695.100000px;}
.ybe{bottom:695.460000px;}
.ye2{bottom:698.640000px;}
.y4d{bottom:702.000000px;}
.y6{bottom:702.354300px;}
.y72{bottom:705.060000px;}
.y165{bottom:711.000000px;}
.y131{bottom:711.120000px;}
.y29{bottom:717.618000px;}
.y90{bottom:717.654000px;}
.ybd{bottom:718.554000px;}
.ye1{bottom:721.446000px;}
.y194{bottom:721.872000px;}
.y4c{bottom:724.500000px;}
.y5{bottom:724.854300px;}
.y71{bottom:726.804000px;}
.y164{bottom:726.900000px;}
.y130{bottom:727.176000px;}
.y193{bottom:740.622000px;}
.y28{bottom:740.712000px;}
.y8f{bottom:740.748000px;}
.ybc{bottom:741.648000px;}
.y163{bottom:742.800000px;}
.y12f{bottom:743.220000px;}
.ye0{bottom:744.252000px;}
.y4b{bottom:747.000000px;}
.y4{bottom:747.354300px;}
.y70{bottom:748.548000px;}
.y162{bottom:758.700000px;}
.y12e{bottom:759.264000px;}
.y192{bottom:759.372000px;}
.y27{bottom:763.806000px;}
.y8e{bottom:763.842000px;}
.ybb{bottom:764.742000px;}
.ydf{bottom:767.058000px;}
.y4a{bottom:769.500000px;}
.y6f{bottom:770.292000px;}
.y161{bottom:774.600000px;}
.y12d{bottom:775.308000px;}
.y26{bottom:786.936000px;}
.yba{bottom:787.836000px;}
.y191{bottom:789.372000px;}
.yde{bottom:789.864000px;}
.y160{bottom:790.500000px;}
.y12c{bottom:791.352000px;}
.y49{bottom:792.000000px;}
.y6e{bottom:792.036000px;}
.y3{bottom:792.354300px;}
.y15f{bottom:806.400000px;}
.y12b{bottom:807.408000px;}
.y25{bottom:810.030000px;}
.yb9{bottom:810.930000px;}
.ydd{bottom:812.670000px;}
.y6d{bottom:813.780000px;}
.y48{bottom:814.500000px;}
.y15e{bottom:822.300000px;}
.y12a{bottom:823.452000px;}
.y190{bottom:830.628000px;}
.y24{bottom:833.124000px;}
.yb8{bottom:834.024000px;}
.ydc{bottom:835.476000px;}
.y6c{bottom:835.524000px;}
.y47{bottom:837.000000px;}
.y15d{bottom:838.200000px;}
.y129{bottom:839.496000px;}
.y18f{bottom:845.628000px;}
.y15c{bottom:854.100000px;}
.y128{bottom:855.540000px;}
.y23{bottom:856.218000px;}
.yb7{bottom:857.118000px;}
.y6b{bottom:857.268000px;}
.ydb{bottom:858.282000px;}
.y2{bottom:859.500000px;}
.y18e{bottom:860.628000px;}
.y15b{bottom:870.000000px;}
.y127{bottom:871.584000px;}
.y18d{bottom:875.628000px;}
.y6a{bottom:879.012000px;}
.y22{bottom:879.312000px;}
.yb6{bottom:880.212000px;}
.yda{bottom:881.088000px;}
.y46{bottom:882.000000px;}
.y15a{bottom:885.900000px;}
.y126{bottom:887.628000px;}
.y18c{bottom:890.628000px;}
.y69{bottom:900.756000px;}
.y159{bottom:901.800000px;}
.y21{bottom:902.406000px;}
.yb5{bottom:903.306000px;}
.y125{bottom:903.672000px;}
.yd9{bottom:903.894000px;}
.y45{bottom:904.500000px;}
.y18b{bottom:905.628000px;}
.y158{bottom:917.700000px;}
.y68{bottom:922.500000px;}
.y20{bottom:925.500000px;}
.y124{bottom:926.100000px;}
.yb4{bottom:926.400000px;}
.yd8{bottom:926.700000px;}
.y44{bottom:927.000000px;}
.y157{bottom:933.600000px;}
.h6{height:24.630908px;}
.h8{height:39.888000px;}
.h7{height:40.757812px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h5{height:61.520119px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x2{left:82.381950px;}
.x4{left:112.500000px;}
.x5{left:127.361100px;}
.x8{left:135.531450px;}
.x6{left:186.564000px;}
.x7{left:231.531450px;}
.x3{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-8.853333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls4f{letter-spacing:-7.104000pt;}
.ls1e{letter-spacing:-6.400000pt;}
.ls53{letter-spacing:-6.272000pt;}
.ls3e{letter-spacing:-5.760000pt;}
.lsd{letter-spacing:-5.632000pt;}
.ls37{letter-spacing:-5.312000pt;}
.ls48{letter-spacing:-3.136000pt;}
.ls4c{letter-spacing:-2.496000pt;}
.ls2c{letter-spacing:-2.176000pt;}
.ls3a{letter-spacing:-1.920000pt;}
.ls55{letter-spacing:-1.600000pt;}
.ls54{letter-spacing:-1.472000pt;}
.ls40{letter-spacing:-1.408000pt;}
.ls50{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.216000pt;}
.ls47{letter-spacing:-1.152000pt;}
.ls41{letter-spacing:-1.024000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls30{letter-spacing:-0.768000pt;}
.ls4b{letter-spacing:-0.704000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.576000pt;}
.ls2e{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls5a{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls5b{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000533pt;}
.ls59{letter-spacing:0.008000pt;}
.ls4a{letter-spacing:0.011733pt;}
.ls52{letter-spacing:0.056000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.354667pt;}
.ls22{letter-spacing:0.369600pt;}
.ls18{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.685333pt;}
.ls4{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.759467pt;}
.ls42{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls11{letter-spacing:1.088000pt;}
.ls33{letter-spacing:1.152000pt;}
.ls4e{letter-spacing:1.216000pt;}
.ls31{letter-spacing:1.344000pt;}
.ls35{letter-spacing:1.408000pt;}
.ls14{letter-spacing:1.472000pt;}
.ls23{letter-spacing:1.536000pt;}
.ls43{letter-spacing:1.984000pt;}
.ls44{letter-spacing:2.304000pt;}
.ls58{letter-spacing:3.029333pt;}
.ls25{letter-spacing:3.200000pt;}
.ls57{letter-spacing:4.224000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls49{letter-spacing:8.128000pt;}
.ls45{letter-spacing:9.152000pt;}
.ls56{letter-spacing:9.216000pt;}
.ls26{letter-spacing:9.408000pt;}
.ls46{letter-spacing:9.472000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls51{letter-spacing:9.856000pt;}
.ls2f{letter-spacing:10.304000pt;}
.ls4d{letter-spacing:10.560000pt;}
.ls5{letter-spacing:10.624000pt;}
.ls38{letter-spacing:10.752000pt;}
.ls28{letter-spacing:10.816000pt;}
.ls10{letter-spacing:10.944000pt;}
.ls39{letter-spacing:11.008000pt;}
.ls3c{letter-spacing:11.072000pt;}
.ls3f{letter-spacing:11.264000pt;}
.ls3d{letter-spacing:11.328000pt;}
.ls2d{letter-spacing:11.456000pt;}
.ls1c{letter-spacing:11.648000pt;}
.ls15{letter-spacing:11.904000pt;}
.ws18{word-spacing:-55.040000pt;}
.ws13{word-spacing:-54.784000pt;}
.ws27{word-spacing:-54.592000pt;}
.ws3b{word-spacing:-54.464000pt;}
.ws3c{word-spacing:-54.400000pt;}
.ws38{word-spacing:-54.208000pt;}
.ws30{word-spacing:-54.144000pt;}
.ws12{word-spacing:-54.080000pt;}
.ws48{word-spacing:-53.952000pt;}
.ws31{word-spacing:-53.888000pt;}
.ws10{word-spacing:-53.760000pt;}
.ws4b{word-spacing:-53.696000pt;}
.ws24{word-spacing:-53.440000pt;}
.ws4e{word-spacing:-52.992000pt;}
.ws51{word-spacing:-52.352000pt;}
.ws41{word-spacing:-45.120000pt;}
.ws2c{word-spacing:-44.544000pt;}
.ws2b{word-spacing:-44.480000pt;}
.ws2e{word-spacing:-44.288000pt;}
.ws14{word-spacing:-44.160000pt;}
.ws21{word-spacing:-44.096000pt;}
.ws1a{word-spacing:-43.968000pt;}
.ws47{word-spacing:-43.904000pt;}
.ws8{word-spacing:-43.840000pt;}
.wsc{word-spacing:-43.776000pt;}
.ws16{word-spacing:-43.712000pt;}
.ws28{word-spacing:-43.648000pt;}
.ws1c{word-spacing:-43.584000pt;}
.ws1e{word-spacing:-43.520000pt;}
.ws11{word-spacing:-43.456000pt;}
.ws9{word-spacing:-43.392000pt;}
.ws22{word-spacing:-43.328000pt;}
.ws2f{word-spacing:-43.264000pt;}
.ws20{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws6{word-spacing:-43.072000pt;}
.ws25{word-spacing:-43.008000pt;}
.ws4{word-spacing:-42.944000pt;}
.ws29{word-spacing:-42.816000pt;}
.ws1d{word-spacing:-42.752000pt;}
.ws1f{word-spacing:-42.688000pt;}
.ws42{word-spacing:-42.624000pt;}
.ws45{word-spacing:-42.560000pt;}
.ws2{word-spacing:-42.506667pt;}
.ws2d{word-spacing:-42.496000pt;}
.ws2a{word-spacing:-42.368000pt;}
.wsd{word-spacing:-42.176000pt;}
.ws50{word-spacing:-41.664000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws34{word-spacing:-33.600000pt;}
.ws40{word-spacing:-33.536000pt;}
.ws37{word-spacing:-33.344000pt;}
.ws3f{word-spacing:-33.152000pt;}
.ws36{word-spacing:-32.960000pt;}
.ws49{word-spacing:-32.896000pt;}
.ws39{word-spacing:-32.832000pt;}
.ws4a{word-spacing:-32.768000pt;}
.ws3a{word-spacing:-32.640000pt;}
.ws15{word-spacing:-32.576000pt;}
.ws17{word-spacing:-32.512000pt;}
.ws23{word-spacing:-32.448000pt;}
.ws33{word-spacing:-32.384000pt;}
.ws26{word-spacing:-32.320000pt;}
.ws3d{word-spacing:-32.192000pt;}
.ws32{word-spacing:-32.128000pt;}
.ws46{word-spacing:-32.064000pt;}
.ws4c{word-spacing:-32.000000pt;}
.ws35{word-spacing:-31.936000pt;}
.ws44{word-spacing:-31.808000pt;}
.wsf{word-spacing:-31.680000pt;}
.wse{word-spacing:-31.552000pt;}
.ws43{word-spacing:-31.360000pt;}
.ws19{word-spacing:-31.296000pt;}
.ws4d{word-spacing:-31.232000pt;}
.ws3e{word-spacing:-31.104000pt;}
.ws4f{word-spacing:-30.656000pt;}
.ws55{word-spacing:-28.757333pt;}
.ws5{word-spacing:-28.608000pt;}
.ws58{word-spacing:-28.544000pt;}
.ws57{word-spacing:-28.330667pt;}
.ws5a{word-spacing:-28.117333pt;}
.ws52{word-spacing:-22.506667pt;}
.ws1b{word-spacing:-18.304000pt;}
.ws53{word-spacing:-17.984000pt;}
.ws7{word-spacing:-12.588800pt;}
.ws56{word-spacing:-11.989333pt;}
.ws54{word-spacing:-10.965333pt;}
.ws59{word-spacing:-8.392533pt;}
.wsb{word-spacing:-7.573333pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:129.866667pt;}
._10{margin-left:-843.466667pt;}
._1b{margin-left:-17.984000pt;}
._17{margin-left:-16.512000pt;}
._18{margin-left:-13.909333pt;}
._e{margin-left:-12.992000pt;}
._15{margin-left:-11.498667pt;}
._4{margin-left:-10.560000pt;}
._14{margin-left:-8.704000pt;}
._12{margin-left:-7.744000pt;}
._b{margin-left:-6.656000pt;}
._2{margin-left:-5.706667pt;}
._9{margin-left:-4.053333pt;}
._d{margin-left:-2.816000pt;}
._0{margin-left:-1.600000pt;}
._6{width:1.066667pt;}
._3{width:2.773333pt;}
._1{width:3.840000pt;}
._c{width:4.800000pt;}
._7{width:6.528000pt;}
._5{width:8.106667pt;}
._8{width:9.429333pt;}
._a{width:10.346667pt;}
._11{width:11.520000pt;}
._19{width:12.672000pt;}
._13{width:13.632000pt;}
._f{width:15.424000pt;}
._16{width:16.946133pt;}
._4c{width:20.885333pt;}
._1a{width:28.129867pt;}
._1f{width:33.365333pt;}
._43{width:35.541333pt;}
._48{width:42.304000pt;}
._29{width:48.698667pt;}
._4b{width:55.680000pt;}
._2e{width:59.690667pt;}
._21{width:66.922667pt;}
._24{width:78.933333pt;}
._2d{width:82.581333pt;}
._4a{width:85.290667pt;}
._49{width:87.616000pt;}
._23{width:97.194667pt;}
._4f{width:104.789333pt;}
._20{width:108.757333pt;}
._4e{width:111.744000pt;}
._46{width:112.896000pt;}
._3b{width:134.869333pt;}
._38{width:137.301333pt;}
._37{width:140.556267pt;}
._28{width:142.037333pt;}
._44{width:144.725333pt;}
._1c{width:153.813333pt;}
._39{width:155.904000pt;}
._3c{width:157.354667pt;}
._3a{width:163.114667pt;}
._2b{width:164.693333pt;}
._1d{width:178.474667pt;}
._35{width:181.120000pt;}
._32{width:183.893333pt;}
._25{width:185.088000pt;}
._27{width:192.514667pt;}
._33{width:197.973333pt;}
._26{width:205.525333pt;}
._50{width:207.658667pt;}
._47{width:210.389333pt;}
._45{width:214.016000pt;}
._2f{width:216.064000pt;}
._4d{width:222.122667pt;}
._2a{width:227.797333pt;}
._3d{width:244.437333pt;}
._36{width:247.680000pt;}
._41{width:249.088000pt;}
._3e{width:255.360000pt;}
._34{width:263.168000pt;}
._42{width:275.669333pt;}
._22{width:278.400000pt;}
._3f{width:290.026667pt;}
._2c{width:306.133333pt;}
._31{width:309.504000pt;}
._40{width:314.282667pt;}
._30{width:319.018667pt;}
._1e{width:365.952000pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:31.733333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.yfb{bottom:103.999867pt;}
.y67{bottom:104.000000pt;}
.yb3{bottom:104.005333pt;}
.y43{bottom:104.154667pt;}
.y123{bottom:104.170667pt;}
.yaa{bottom:104.186667pt;}
.y8d{bottom:104.192000pt;}
.y1f{bottom:104.314933pt;}
.y156{bottom:104.330667pt;}
.y113{bottom:104.821067pt;}
.yd7{bottom:104.986667pt;}
.y18a{bottom:109.066667pt;}
.yfa{bottom:117.333200pt;}
.y155{bottom:118.592000pt;}
.y189{bottom:123.200000pt;}
.y66{bottom:124.000000pt;}
.yb2{bottom:124.005333pt;}
.y8c{bottom:124.192000pt;}
.y1e{bottom:124.314933pt;}
.y42{bottom:124.682667pt;}
.y122{bottom:124.698667pt;}
.ya9{bottom:124.714667pt;}
.y112{bottom:125.349067pt;}
.yd6{bottom:125.514667pt;}
.y154{bottom:132.853333pt;}
.yf9{bottom:134.406533pt;}
.y188{bottom:137.333333pt;}
.yb1{bottom:143.504000pt;}
.y8b{bottom:143.520000pt;}
.y65{bottom:144.000000pt;}
.y1d{bottom:144.314933pt;}
.y41{bottom:145.210667pt;}
.y121{bottom:145.226667pt;}
.ya8{bottom:145.242667pt;}
.y111{bottom:145.877067pt;}
.yd5{bottom:146.042667pt;}
.y153{bottom:147.114667pt;}
.y187{bottom:151.466667pt;}
.y152{bottom:161.376000pt;}
.yb0{bottom:162.832000pt;}
.y8a{bottom:162.848000pt;}
.y64{bottom:164.000000pt;}
.y1c{bottom:164.314933pt;}
.y186{bottom:165.600000pt;}
.y40{bottom:165.738667pt;}
.y120{bottom:165.754667pt;}
.ya7{bottom:165.770667pt;}
.y110{bottom:166.405067pt;}
.yd4{bottom:166.570667pt;}
.yf8{bottom:174.858533pt;}
.y151{bottom:175.637333pt;}
.y185{bottom:179.733333pt;}
.yaf{bottom:182.160000pt;}
.y89{bottom:182.176000pt;}
.y63{bottom:184.000000pt;}
.y1b{bottom:184.314933pt;}
.y3f{bottom:186.266667pt;}
.y11f{bottom:186.282667pt;}
.ya6{bottom:186.298667pt;}
.y10f{bottom:187.007733pt;}
.yd3{bottom:187.098667pt;}
.y150{bottom:189.898667pt;}
.y184{bottom:193.866667pt;}
.yf7{bottom:195.386533pt;}
.yae{bottom:201.488000pt;}
.y88{bottom:201.504000pt;}
.y62{bottom:204.000000pt;}
.y14f{bottom:204.160000pt;}
.y1a{bottom:204.314933pt;}
.y3e{bottom:206.794667pt;}
.y11e{bottom:206.810667pt;}
.ya5{bottom:206.826667pt;}
.y10e{bottom:207.535733pt;}
.yd2{bottom:207.626667pt;}
.y183{bottom:208.000000pt;}
.yf6{bottom:215.658533pt;}
.y14e{bottom:218.421333pt;}
.yad{bottom:220.816000pt;}
.y87{bottom:220.832000pt;}
.y182{bottom:222.133333pt;}
.y61{bottom:224.000000pt;}
.y19{bottom:224.314933pt;}
.y3d{bottom:227.322667pt;}
.y11d{bottom:227.338667pt;}
.ya4{bottom:227.354667pt;}
.y10d{bottom:228.063733pt;}
.yd1{bottom:228.154667pt;}
.y14d{bottom:232.682667pt;}
.yf5{bottom:235.930533pt;}
.y181{bottom:236.266667pt;}
.yac{bottom:240.144000pt;}
.y86{bottom:240.160000pt;}
.y60{bottom:244.000000pt;}
.y18{bottom:244.314933pt;}
.y14c{bottom:246.944000pt;}
.y3c{bottom:247.850667pt;}
.y11c{bottom:247.866667pt;}
.ya3{bottom:247.882667pt;}
.y10c{bottom:248.591733pt;}
.yd0{bottom:248.682667pt;}
.y180{bottom:250.400000pt;}
.yf4{bottom:256.202533pt;}
.yab{bottom:259.472000pt;}
.y85{bottom:259.488000pt;}
.y14b{bottom:261.205333pt;}
.y5f{bottom:264.000000pt;}
.y17{bottom:264.314933pt;}
.y17f{bottom:264.533333pt;}
.y3b{bottom:268.378667pt;}
.y11b{bottom:268.394667pt;}
.ya2{bottom:268.410667pt;}
.y10b{bottom:269.119733pt;}
.ycf{bottom:269.210667pt;}
.y14a{bottom:275.466667pt;}
.yf3{bottom:276.474533pt;}
.y17e{bottom:278.666667pt;}
.y84{bottom:278.816000pt;}
.y5e{bottom:284.000000pt;}
.y16{bottom:284.314933pt;}
.y3a{bottom:288.906667pt;}
.y11a{bottom:288.922667pt;}
.ya1{bottom:288.938667pt;}
.y10a{bottom:289.647733pt;}
.y149{bottom:289.728000pt;}
.yce{bottom:289.738667pt;}
.y17d{bottom:292.800000pt;}
.yf2{bottom:296.746533pt;}
.y83{bottom:298.144000pt;}
.y148{bottom:303.989333pt;}
.y5d{bottom:304.000000pt;}
.y15{bottom:304.314933pt;}
.y17c{bottom:306.933333pt;}
.y39{bottom:309.434667pt;}
.y119{bottom:309.450667pt;}
.ya0{bottom:309.466667pt;}
.y109{bottom:310.175733pt;}
.ycd{bottom:310.266667pt;}
.yf1{bottom:317.018533pt;}
.y82{bottom:317.472000pt;}
.y147{bottom:318.250667pt;}
.y17b{bottom:321.066667pt;}
.y5c{bottom:324.000000pt;}
.y14{bottom:324.314933pt;}
.y38{bottom:329.962667pt;}
.y118{bottom:329.978667pt;}
.y9f{bottom:329.994667pt;}
.y108{bottom:330.703733pt;}
.ycc{bottom:330.794667pt;}
.y146{bottom:332.512000pt;}
.y17a{bottom:335.200000pt;}
.y81{bottom:336.800000pt;}
.yf0{bottom:337.290533pt;}
.y5b{bottom:344.000000pt;}
.y13{bottom:344.314933pt;}
.y145{bottom:346.773333pt;}
.y179{bottom:349.333333pt;}
.y37{bottom:350.490667pt;}
.y117{bottom:350.506667pt;}
.y9e{bottom:350.522667pt;}
.y107{bottom:351.231733pt;}
.ycb{bottom:351.322667pt;}
.y80{bottom:356.128000pt;}
.yef{bottom:357.562533pt;}
.y144{bottom:361.034667pt;}
.y178{bottom:363.466667pt;}
.y5a{bottom:364.000000pt;}
.y36{bottom:371.018667pt;}
.y116{bottom:371.034667pt;}
.y9d{bottom:371.050667pt;}
.y106{bottom:371.759733pt;}
.yca{bottom:371.850667pt;}
.y143{bottom:375.296000pt;}
.y7f{bottom:375.456000pt;}
.y177{bottom:377.600000pt;}
.yee{bottom:377.834533pt;}
.y59{bottom:384.000000pt;}
.y12{bottom:384.314933pt;}
.y142{bottom:389.557333pt;}
.y35{bottom:391.546667pt;}
.y115{bottom:391.562667pt;}
.y9c{bottom:391.578667pt;}
.y176{bottom:391.733333pt;}
.y105{bottom:392.287733pt;}
.yc9{bottom:392.378667pt;}
.y7e{bottom:394.784000pt;}
.yed{bottom:398.106533pt;}
.y141{bottom:403.818667pt;}
.y58{bottom:404.000000pt;}
.y11{bottom:404.314933pt;}
.y175{bottom:405.866667pt;}
.y34{bottom:412.074667pt;}
.y114{bottom:412.090667pt;}
.y9b{bottom:412.106667pt;}
.y104{bottom:412.815733pt;}
.yc8{bottom:412.906667pt;}
.y7d{bottom:414.112000pt;}
.y140{bottom:418.080000pt;}
.yec{bottom:418.378533pt;}
.y174{bottom:420.000000pt;}
.y57{bottom:424.000000pt;}
.y10{bottom:424.314933pt;}
.y13f{bottom:432.341333pt;}
.y33{bottom:432.602667pt;}
.y9a{bottom:432.634667pt;}
.y103{bottom:433.343733pt;}
.yc7{bottom:433.434667pt;}
.y7c{bottom:433.440000pt;}
.y173{bottom:434.133333pt;}
.yeb{bottom:438.650533pt;}
.y56{bottom:444.000000pt;}
.yf{bottom:444.314933pt;}
.y13e{bottom:446.602667pt;}
.y172{bottom:448.266667pt;}
.y7b{bottom:452.768000pt;}
.y32{bottom:453.130667pt;}
.y99{bottom:453.162667pt;}
.y102{bottom:453.871733pt;}
.yc6{bottom:453.962667pt;}
.yea{bottom:458.922533pt;}
.y13d{bottom:460.869333pt;}
.y171{bottom:462.400000pt;}
.y55{bottom:464.000000pt;}
.ye{bottom:464.314933pt;}
.y7a{bottom:472.096000pt;}
.y31{bottom:473.658667pt;}
.y98{bottom:473.690667pt;}
.y101{bottom:474.431733pt;}
.yc5{bottom:474.490667pt;}
.y13c{bottom:475.141333pt;}
.y170{bottom:476.533333pt;}
.ye9{bottom:479.194533pt;}
.y54{bottom:484.000000pt;}
.yd{bottom:484.314933pt;}
.y13b{bottom:489.402667pt;}
.y16f{bottom:490.666667pt;}
.y79{bottom:491.424000pt;}
.y30{bottom:494.186667pt;}
.y97{bottom:494.218667pt;}
.y100{bottom:494.959733pt;}
.yc4{bottom:495.018667pt;}
.ye8{bottom:499.381333pt;}
.y13a{bottom:503.744000pt;}
.y53{bottom:504.000000pt;}
.yc{bottom:504.314933pt;}
.y16e{bottom:504.800000pt;}
.y78{bottom:510.752000pt;}
.y2f{bottom:514.714667pt;}
.y96{bottom:514.746667pt;}
.yff{bottom:515.487733pt;}
.yc3{bottom:515.546667pt;}
.y139{bottom:518.005333pt;}
.y16d{bottom:518.933333pt;}
.ye7{bottom:519.653333pt;}
.y52{bottom:524.000000pt;}
.yb{bottom:524.314933pt;}
.y77{bottom:530.080000pt;}
.y138{bottom:532.266667pt;}
.y16c{bottom:533.066667pt;}
.y2e{bottom:535.242667pt;}
.y95{bottom:535.274667pt;}
.yfe{bottom:536.015733pt;}
.yc2{bottom:536.074667pt;}
.ye6{bottom:539.925333pt;}
.y51{bottom:544.000000pt;}
.ya{bottom:544.314933pt;}
.y137{bottom:546.528000pt;}
.y16b{bottom:547.200000pt;}
.y76{bottom:549.408000pt;}
.y2d{bottom:555.770667pt;}
.y94{bottom:555.802667pt;}
.yfd{bottom:556.543733pt;}
.yc1{bottom:556.602667pt;}
.ye5{bottom:560.197333pt;}
.y136{bottom:560.789333pt;}
.y16a{bottom:561.333333pt;}
.y50{bottom:564.000000pt;}
.y9{bottom:564.314933pt;}
.y75{bottom:568.736000pt;}
.y135{bottom:575.061333pt;}
.y169{bottom:575.466667pt;}
.y2c{bottom:576.298667pt;}
.y93{bottom:576.330667pt;}
.yfc{bottom:577.071733pt;}
.yc0{bottom:577.130667pt;}
.ye4{bottom:580.469333pt;}
.y4f{bottom:584.000000pt;}
.y8{bottom:584.314933pt;}
.y74{bottom:588.064000pt;}
.y134{bottom:589.322667pt;}
.y168{bottom:589.600000pt;}
.y2b{bottom:596.826667pt;}
.y92{bottom:596.858667pt;}
.ybf{bottom:597.658667pt;}
.ye3{bottom:600.741333pt;}
.y133{bottom:603.584000pt;}
.y167{bottom:603.733333pt;}
.y4e{bottom:604.000000pt;}
.y7{bottom:604.314933pt;}
.y73{bottom:607.392000pt;}
.y2a{bottom:617.354667pt;}
.y91{bottom:617.386667pt;}
.y132{bottom:617.845333pt;}
.y166{bottom:617.866667pt;}
.ybe{bottom:618.186667pt;}
.ye2{bottom:621.013333pt;}
.y4d{bottom:624.000000pt;}
.y6{bottom:624.314933pt;}
.y72{bottom:626.720000pt;}
.y165{bottom:632.000000pt;}
.y131{bottom:632.106667pt;}
.y29{bottom:637.882667pt;}
.y90{bottom:637.914667pt;}
.ybd{bottom:638.714667pt;}
.ye1{bottom:641.285333pt;}
.y194{bottom:641.664000pt;}
.y4c{bottom:644.000000pt;}
.y5{bottom:644.314933pt;}
.y71{bottom:646.048000pt;}
.y164{bottom:646.133333pt;}
.y130{bottom:646.378667pt;}
.y193{bottom:658.330667pt;}
.y28{bottom:658.410667pt;}
.y8f{bottom:658.442667pt;}
.ybc{bottom:659.242667pt;}
.y163{bottom:660.266667pt;}
.y12f{bottom:660.640000pt;}
.ye0{bottom:661.557333pt;}
.y4b{bottom:664.000000pt;}
.y4{bottom:664.314933pt;}
.y70{bottom:665.376000pt;}
.y162{bottom:674.400000pt;}
.y12e{bottom:674.901333pt;}
.y192{bottom:674.997333pt;}
.y27{bottom:678.938667pt;}
.y8e{bottom:678.970667pt;}
.ybb{bottom:679.770667pt;}
.ydf{bottom:681.829333pt;}
.y4a{bottom:684.000000pt;}
.y6f{bottom:684.704000pt;}
.y161{bottom:688.533333pt;}
.y12d{bottom:689.162667pt;}
.y26{bottom:699.498667pt;}
.yba{bottom:700.298667pt;}
.y191{bottom:701.664000pt;}
.yde{bottom:702.101333pt;}
.y160{bottom:702.666667pt;}
.y12c{bottom:703.424000pt;}
.y49{bottom:704.000000pt;}
.y6e{bottom:704.032000pt;}
.y3{bottom:704.314933pt;}
.y15f{bottom:716.800000pt;}
.y12b{bottom:717.696000pt;}
.y25{bottom:720.026667pt;}
.yb9{bottom:720.826667pt;}
.ydd{bottom:722.373333pt;}
.y6d{bottom:723.360000pt;}
.y48{bottom:724.000000pt;}
.y15e{bottom:730.933333pt;}
.y12a{bottom:731.957333pt;}
.y190{bottom:738.336000pt;}
.y24{bottom:740.554667pt;}
.yb8{bottom:741.354667pt;}
.ydc{bottom:742.645333pt;}
.y6c{bottom:742.688000pt;}
.y47{bottom:744.000000pt;}
.y15d{bottom:745.066667pt;}
.y129{bottom:746.218667pt;}
.y18f{bottom:751.669333pt;}
.y15c{bottom:759.200000pt;}
.y128{bottom:760.480000pt;}
.y23{bottom:761.082667pt;}
.yb7{bottom:761.882667pt;}
.y6b{bottom:762.016000pt;}
.ydb{bottom:762.917333pt;}
.y2{bottom:764.000000pt;}
.y18e{bottom:765.002667pt;}
.y15b{bottom:773.333333pt;}
.y127{bottom:774.741333pt;}
.y18d{bottom:778.336000pt;}
.y6a{bottom:781.344000pt;}
.y22{bottom:781.610667pt;}
.yb6{bottom:782.410667pt;}
.yda{bottom:783.189333pt;}
.y46{bottom:784.000000pt;}
.y15a{bottom:787.466667pt;}
.y126{bottom:789.002667pt;}
.y18c{bottom:791.669333pt;}
.y69{bottom:800.672000pt;}
.y159{bottom:801.600000pt;}
.y21{bottom:802.138667pt;}
.yb5{bottom:802.938667pt;}
.y125{bottom:803.264000pt;}
.yd9{bottom:803.461333pt;}
.y45{bottom:804.000000pt;}
.y18b{bottom:805.002667pt;}
.y158{bottom:815.733333pt;}
.y68{bottom:820.000000pt;}
.y20{bottom:822.666667pt;}
.y124{bottom:823.200000pt;}
.yb4{bottom:823.466667pt;}
.yd8{bottom:823.733333pt;}
.y44{bottom:824.000000pt;}
.y157{bottom:829.866667pt;}
.h6{height:21.894141pt;}
.h8{height:35.456000pt;}
.h7{height:36.229167pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h5{height:54.684550pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x2{left:73.228400pt;}
.x4{left:100.000000pt;}
.x5{left:113.209867pt;}
.x8{left:120.472400pt;}
.x6{left:165.834667pt;}
.x7{left:205.805733pt;}
.x3{left:556.250000pt;}
}




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