
    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_db14f651d35a6bb1dc64cdd5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_e65042fbfd5420ffc0e13d82.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_773523bbfa05c7b017af9a10.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_8888381d87aa052346a90aca.woff')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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_7f3db336ebee2fc617f16eb0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_771c6b7b8d4d15e06e8a3748.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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);}
.v4{vertical-align:-16.977000px;}
.v7{vertical-align:-14.979600px;}
.v2{vertical-align:-13.979400px;}
.v5{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.982000px;}
.v1{vertical-align:13.984800px;}
.v3{vertical-align:17.108400px;}
.ls5{letter-spacing:-10.800000px;}
.ls65{letter-spacing:-10.395000px;}
.ls46{letter-spacing:-4.830000px;}
.ls74{letter-spacing:-4.221000px;}
.ls21{letter-spacing:-4.140000px;}
.ls68{letter-spacing:-3.024000px;}
.ls6f{letter-spacing:-2.961000px;}
.ls7{letter-spacing:-2.484000px;}
.ls14{letter-spacing:-2.160000px;}
.ls72{letter-spacing:-2.142000px;}
.ls8{letter-spacing:-2.100000px;}
.ls30{letter-spacing:-2.025000px;}
.ls6e{letter-spacing:-2.016000px;}
.ls23{letter-spacing:-1.794000px;}
.ls59{letter-spacing:-1.782000px;}
.ls9{letter-spacing:-1.764000px;}
.ls55{letter-spacing:-1.725000px;}
.ls22{letter-spacing:-1.656000px;}
.ls2d{letter-spacing:-1.587000px;}
.ls6c{letter-spacing:-1.575000px;}
.ls7c{letter-spacing:-1.560000px;}
.ls29{letter-spacing:-1.518000px;}
.ls45{letter-spacing:-1.449000px;}
.ls2c{letter-spacing:-1.380000px;}
.ls67{letter-spacing:-1.323000px;}
.ls28{letter-spacing:-1.311000px;}
.ls38{letter-spacing:-1.296000px;}
.ls79{letter-spacing:-1.260000px;}
.ls1f{letter-spacing:-1.215000px;}
.ls1c{letter-spacing:-1.200000px;}
.ls3c{letter-spacing:-1.173000px;}
.ls76{letter-spacing:-1.134000px;}
.ls40{letter-spacing:-1.104000px;}
.ls17{letter-spacing:-1.080000px;}
.ls5c{letter-spacing:-1.035000px;}
.ls61{letter-spacing:-0.972000px;}
.ls26{letter-spacing:-0.966000px;}
.ls78{letter-spacing:-0.945000px;}
.ls24{letter-spacing:-0.897000px;}
.ls1e{letter-spacing:-0.855000px;}
.ls64{letter-spacing:-0.819000px;}
.ls13{letter-spacing:-0.780000px;}
.ls20{letter-spacing:-0.759000px;}
.ls31{letter-spacing:-0.690000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.627000px;}
.ls53{letter-spacing:-0.621000px;}
.ls60{letter-spacing:-0.570000px;}
.ls6d{letter-spacing:-0.567000px;}
.ls12{letter-spacing:-0.480000px;}
.ls69{letter-spacing:-0.441000px;}
.ls49{letter-spacing:-0.414000px;}
.ls6a{letter-spacing:-0.378000px;}
.ls33{letter-spacing:-0.345000px;}
.ls73{letter-spacing:-0.315000px;}
.ls37{letter-spacing:-0.276000px;}
.lsb{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.207000px;}
.ls19{letter-spacing:-0.180000px;}
.ls57{letter-spacing:-0.171000px;}
.ls27{letter-spacing:-0.138000px;}
.ls7f{letter-spacing:-0.120000px;}
.ls3e{letter-spacing:-0.069000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000018px;}
.ls4f{letter-spacing:0.000300px;}
.ls4b{letter-spacing:0.000618px;}
.ls7a{letter-spacing:0.126000px;}
.ls44{letter-spacing:0.134958px;}
.ls47{letter-spacing:0.138000px;}
.ls80{letter-spacing:0.240000px;}
.ls32{letter-spacing:0.276000px;}
.ls82{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.402270px;}
.ls81{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.432000px;}
.ls7e{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.489720px;}
.lse{letter-spacing:0.600000px;}
.ls43{letter-spacing:0.607800px;}
.ls36{letter-spacing:0.621000px;}
.ls3f{letter-spacing:0.759000px;}
.ls5e{letter-spacing:0.800100px;}
.ls42{letter-spacing:0.806199px;}
.ls51{letter-spacing:0.825000px;}
.ls1{letter-spacing:0.900000px;}
.ls5f{letter-spacing:1.026300px;}
.ls35{letter-spacing:1.104000px;}
.ls77{letter-spacing:1.197000px;}
.ls15{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.260000px;}
.ls3{letter-spacing:1.344000px;}
.ls39{letter-spacing:1.350000px;}
.ls5a{letter-spacing:1.404000px;}
.ls3b{letter-spacing:1.425000px;}
.ls4d{letter-spacing:1.525218px;}
.ls4e{letter-spacing:1.525818px;}
.ls58{letter-spacing:1.587000px;}
.ls50{letter-spacing:1.696188px;}
.ls48{letter-spacing:1.725000px;}
.lsf{letter-spacing:1.740000px;}
.ls2f{letter-spacing:2.400000px;}
.ls66{letter-spacing:3.276000px;}
.ls10{letter-spacing:3.696000px;}
.ls7b{letter-spacing:3.720000px;}
.ls70{letter-spacing:3.780000px;}
.ls1d{letter-spacing:4.200000px;}
.ls52{letter-spacing:4.485000px;}
.ls2a{letter-spacing:4.692000px;}
.ls56{letter-spacing:4.761000px;}
.ls11{letter-spacing:5.760000px;}
.ls75{letter-spacing:5.859000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsc{letter-spacing:6.120000px;}
.ls6b{letter-spacing:6.300000px;}
.ls62{letter-spacing:6.867000px;}
.ls63{letter-spacing:7.497000px;}
.ls54{letter-spacing:8.211000px;}
.ls3a{letter-spacing:501.005400px;}
.ls0{letter-spacing:501.530400px;}
.ls4a{letter-spacing:501.605400px;}
.ls5d{letter-spacing:501.792600px;}
.ls7d{letter-spacing:502.314000px;}
.ls2e{letter-spacing:504.447600px;}
.ls71{letter-spacing:990.022800px;}
.ls34{letter-spacing:990.517800px;}
.ls41{letter-spacing:993.142800px;}
.ls5b{letter-spacing:997.192800px;}
.ls18{letter-spacing:999.172800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-27.108000px;}
.ws58{word-spacing:-24.570000px;}
.ws5{word-spacing:-22.740000px;}
.ws8{word-spacing:-22.620000px;}
.ws37{word-spacing:-22.500000px;}
.ws0{word-spacing:-21.975000px;}
.ws45{word-spacing:-21.900000px;}
.ws55{word-spacing:-21.789000px;}
.ws54{word-spacing:-21.675000px;}
.ws19{word-spacing:-21.546000px;}
.ws76{word-spacing:-21.525000px;}
.ws32{word-spacing:-21.465000px;}
.ws6f{word-spacing:-20.580000px;}
.ws47{word-spacing:-20.493000px;}
.ws2d{word-spacing:-19.050000px;}
.ws6c{word-spacing:-18.900000px;}
.ws4{word-spacing:-18.648000px;}
.ws59{word-spacing:-17.325000px;}
.ws56{word-spacing:-16.629000px;}
.ws46{word-spacing:-16.422000px;}
.ws3d{word-spacing:-16.353000px;}
.ws5a{word-spacing:-16.128000px;}
.ws38{word-spacing:-15.939000px;}
.ws2{word-spacing:-15.876000px;}
.ws49{word-spacing:-15.870000px;}
.ws57{word-spacing:-15.732000px;}
.ws3f{word-spacing:-15.663000px;}
.ws6a{word-spacing:-15.561000px;}
.ws1b{word-spacing:-15.525000px;}
.ws1d{word-spacing:-15.456000px;}
.ws48{word-spacing:-15.318000px;}
.ws4b{word-spacing:-15.174000px;}
.ws6{word-spacing:-14.580000px;}
.ws6d{word-spacing:-14.301000px;}
.ws6e{word-spacing:-13.986000px;}
.ws9{word-spacing:-13.740000px;}
.ws18{word-spacing:-13.620000px;}
.ws5b{word-spacing:-13.545000px;}
.ws6b{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.146000px;}
.ws1c{word-spacing:-11.706057px;}
.ws4a{word-spacing:-11.556000px;}
.ws1a{word-spacing:-11.303787px;}
.ws7{word-spacing:-10.319100px;}
.ws3e{word-spacing:-9.936069px;}
.ws4d{word-spacing:-8.211000px;}
.ws5d{word-spacing:-7.497000px;}
.ws64{word-spacing:-6.300000px;}
.wse{word-spacing:-6.120000px;}
.wsb{word-spacing:-6.000000px;}
.ws71{word-spacing:-5.859000px;}
.ws4e{word-spacing:-4.761000px;}
.ws2b{word-spacing:-4.692000px;}
.ws4c{word-spacing:-4.485000px;}
.ws20{word-spacing:-4.200000px;}
.ws69{word-spacing:-3.780000px;}
.ws11{word-spacing:-3.696000px;}
.ws60{word-spacing:-3.276000px;}
.ws2e{word-spacing:-2.400000px;}
.ws10{word-spacing:-1.740000px;}
.ws43{word-spacing:-1.725000px;}
.ws50{word-spacing:-1.587000px;}
.ws52{word-spacing:-1.404000px;}
.ws36{word-spacing:-1.350000px;}
.ws16{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.200000px;}
.ws33{word-spacing:-1.104000px;}
.ws3c{word-spacing:-0.759000px;}
.ws34{word-spacing:-0.621000px;}
.wsf{word-spacing:-0.600000px;}
.ws79{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.360000px;}
.ws30{word-spacing:-0.276000px;}
.ws78{word-spacing:-0.240000px;}
.ws42{word-spacing:-0.138000px;}
.ws74{word-spacing:-0.126000px;}
.wsa{word-spacing:0.000000px;}
.ws3b{word-spacing:0.069000px;}
.ws77{word-spacing:0.120000px;}
.ws29{word-spacing:0.138000px;}
.ws4f{word-spacing:0.171000px;}
.ws1e{word-spacing:0.180000px;}
.ws27{word-spacing:0.207000px;}
.ws35{word-spacing:0.276000px;}
.ws70{word-spacing:0.315000px;}
.ws31{word-spacing:0.345000px;}
.ws66{word-spacing:0.378000px;}
.ws44{word-spacing:0.414000px;}
.ws63{word-spacing:0.441000px;}
.ws12{word-spacing:0.480000px;}
.ws65{word-spacing:0.567000px;}
.ws5c{word-spacing:0.570000px;}
.ws3a{word-spacing:0.627000px;}
.ws1f{word-spacing:0.660000px;}
.ws2f{word-spacing:0.690000px;}
.ws17{word-spacing:0.720000px;}
.ws22{word-spacing:0.759000px;}
.ws13{word-spacing:0.780000px;}
.ws5e{word-spacing:0.819000px;}
.ws21{word-spacing:0.855000px;}
.ws26{word-spacing:0.897000px;}
.ws73{word-spacing:0.945000px;}
.ws28{word-spacing:0.966000px;}
.ws53{word-spacing:1.035000px;}
.ws72{word-spacing:1.134000px;}
.ws39{word-spacing:1.173000px;}
.ws2a{word-spacing:1.311000px;}
.ws61{word-spacing:1.323000px;}
.ws2c{word-spacing:1.380000px;}
.ws40{word-spacing:1.449000px;}
.ws75{word-spacing:1.560000px;}
.ws24{word-spacing:1.656000px;}
.wsd{word-spacing:1.764000px;}
.ws25{word-spacing:1.794000px;}
.ws67{word-spacing:2.016000px;}
.ws14{word-spacing:2.160000px;}
.wsc{word-spacing:2.484000px;}
.ws68{word-spacing:2.961000px;}
.ws62{word-spacing:3.024000px;}
.ws23{word-spacing:4.140000px;}
.ws41{word-spacing:4.830000px;}
.ws51{word-spacing:8.153838px;}
.ws5f{word-spacing:10.395000px;}
._18{margin-left:-16.818300px;}
._19{margin-left:-14.148600px;}
._1c{margin-left:-10.138800px;}
._8{margin-left:-8.799000px;}
._1b{margin-left:-7.426800px;}
._7{margin-left:-6.375000px;}
._9{margin-left:-4.501800px;}
._6{margin-left:-2.874000px;}
._0{margin-left:-1.099800px;}
._1{width:1.248000px;}
._3{width:2.985000px;}
._4{width:4.842000px;}
._2{width:6.126000px;}
._5{width:7.920000px;}
._b{width:9.054000px;}
._a{width:10.864800px;}
._16{width:12.599400px;}
._12{width:14.352000px;}
._10{width:15.972600px;}
._13{width:18.299400px;}
._1d{width:19.687800px;}
._1f{width:20.919900px;}
._14{width:22.638300px;}
._f{width:23.854200px;}
._17{width:25.140600px;}
._1e{width:29.641500px;}
._1a{width:35.291322px;}
._15{width:43.445160px;}
._e{width:71.400000px;}
._11{width:87.561000px;}
._c{width:253.008000px;}
._d{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsf{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y13c{bottom:106.261200px;}
.y6a{bottom:106.268850px;}
.y8c{bottom:106.284300px;}
.y20{bottom:106.287600px;}
.yac{bottom:106.290300px;}
.y45{bottom:106.293300px;}
.yd2{bottom:106.296300px;}
.y11f{bottom:106.314750px;}
.yf6{bottom:109.294800px;}
.y8b{bottom:123.537300px;}
.yab{bottom:123.543300px;}
.y44{bottom:123.546300px;}
.y1f{bottom:125.817600px;}
.y13b{bottom:126.271200px;}
.yd1{bottom:126.544800px;}
.y11e{bottom:127.057500px;}
.y69{bottom:127.227600px;}
.yf5{bottom:127.795200px;}
.y8a{bottom:140.790300px;}
.yaa{bottom:140.796300px;}
.y43{bottom:143.794800px;}
.yf4{bottom:145.048200px;}
.y1e{bottom:145.347600px;}
.y13a{bottom:146.281200px;}
.y68{bottom:148.186350px;}
.y11d{bottom:156.305250px;}
.y89{bottom:158.043300px;}
.ya9{bottom:161.044800px;}
.y1d{bottom:164.877600px;}
.yf3{bottom:165.296700px;}
.y139{bottom:166.291200px;}
.y67{bottom:169.145100px;}
.yd0{bottom:170.557350px;}
.y101{bottom:170.560800px;}
.y88{bottom:175.296300px;}
.y11c{bottom:177.048000px;}
.ya8{bottom:179.548200px;}
.yf2{bottom:183.800250px;}
.y1c{bottom:184.407600px;}
.y138{bottom:186.286200px;}
.y42{bottom:187.780200px;}
.y66{bottom:190.103850px;}
.ycf{bottom:190.895100px;}
.y100{bottom:190.898550px;}
.y87{bottom:195.544800px;}
.ya7{bottom:196.801200px;}
.y11b{bottom:197.790750px;}
.y1b{bottom:203.937600px;}
.yf1{bottom:204.048750px;}
.y137{bottom:206.296200px;}
.y41{bottom:208.221450px;}
.y65{bottom:211.062600px;}
.yce{bottom:211.232850px;}
.yff{bottom:211.236300px;}
.yf0{bottom:222.552150px;}
.y1a{bottom:223.467600px;}
.y136{bottom:226.306200px;}
.y11a{bottom:227.038500px;}
.y40{bottom:228.662700px;}
.ycd{bottom:231.570600px;}
.yfe{bottom:231.574050px;}
.y64{bottom:232.021350px;}
.y86{bottom:239.620200px;}
.yef{bottom:239.805150px;}
.yee{bottom:242.800650px;}
.ya6{bottom:243.815400px;}
.y135{bottom:246.301200px;}
.y119{bottom:247.781250px;}
.y3f{bottom:249.103950px;}
.yfd{bottom:251.893350px;}
.ycc{bottom:251.908350px;}
.y63{bottom:252.980100px;}
.y19{bottom:255.747600px;}
.y85{bottom:260.906700px;}
.y134{bottom:266.311200px;}
.ya5{bottom:266.723400px;}
.y118{bottom:268.524000px;}
.y3e{bottom:269.422800px;}
.yfc{bottom:272.231100px;}
.ycb{bottom:272.246100px;}
.y84{bottom:282.193200px;}
.y133{bottom:286.321200px;}
.yed{bottom:286.856250px;}
.ya4{bottom:289.631400px;}
.y3d{bottom:289.864050px;}
.yfb{bottom:292.568850px;}
.yca{bottom:292.583850px;}
.y62{bottom:294.897600px;}
.y117{bottom:297.771750px;}
.y83{bottom:303.479700px;}
.y18{bottom:305.037600px;}
.yec{bottom:307.176750px;}
.ya3{bottom:312.539400px;}
.yfa{bottom:312.906600px;}
.yc9{bottom:312.921600px;}
.y61{bottom:315.856350px;}
.y116{bottom:318.514500px;}
.y132{bottom:319.081200px;}
.y82{bottom:324.766200px;}
.y17{bottom:326.067600px;}
.yeb{bottom:327.497250px;}
.y3c{bottom:330.729300px;}
.yf9{bottom:333.244350px;}
.yc8{bottom:333.259350px;}
.ya2{bottom:335.447400px;}
.y60{bottom:336.815100px;}
.y115{bottom:339.266100px;}
.y81{bottom:346.052700px;}
.y16{bottom:347.076300px;}
.yea{bottom:347.817750px;}
.y3b{bottom:351.170550px;}
.yf8{bottom:353.582100px;}
.yc7{bottom:353.597100px;}
.y5f{bottom:357.773850px;}
.ya1{bottom:358.355400px;}
.y156{bottom:358.692750px;}
.y15{bottom:366.606300px;}
.y80{bottom:367.339200px;}
.ye9{bottom:368.138250px;}
.y114{bottom:368.513850px;}
.y3a{bottom:371.611800px;}
.yf7{bottom:373.919850px;}
.yc6{bottom:373.934250px;}
.y131{bottom:377.344200px;}
.y5e{bottom:378.732600px;}
.y155{bottom:378.942750px;}
.ya0{bottom:381.263400px;}
.y14{bottom:386.136300px;}
.ye8{bottom:388.458750px;}
.y7f{bottom:388.625700px;}
.y113{bottom:389.256600px;}
.y39{bottom:392.053050px;}
.yc5{bottom:394.257600px;}
.y154{bottom:399.192750px;}
.y5d{bottom:399.691350px;}
.y9f{bottom:404.171400px;}
.y130{bottom:404.854200px;}
.y13{bottom:405.666300px;}
.ye7{bottom:408.823950px;}
.y7e{bottom:409.912200px;}
.y112{bottom:409.999350px;}
.y38{bottom:412.494300px;}
.yc4{bottom:414.595350px;}
.y153{bottom:419.442750px;}
.y5c{bottom:420.650100px;}
.y12{bottom:425.196300px;}
.y9e{bottom:427.079400px;}
.ye6{bottom:429.144450px;}
.y7d{bottom:431.198700px;}
.y37{bottom:432.935550px;}
.yc3{bottom:434.933100px;}
.y111{bottom:439.247100px;}
.y152{bottom:439.692750px;}
.y5b{bottom:441.608850px;}
.y11{bottom:444.726300px;}
.ye5{bottom:449.464950px;}
.y9d{bottom:449.987400px;}
.y7c{bottom:452.485200px;}
.y36{bottom:453.376800px;}
.yc2{bottom:455.270850px;}
.y5a{bottom:462.567600px;}
.y10{bottom:464.256300px;}
.y110{bottom:468.494850px;}
.ye4{bottom:469.785450px;}
.y151{bottom:472.692750px;}
.y9c{bottom:472.895400px;}
.y7b{bottom:473.771700px;}
.y35{bottom:473.818050px;}
.yc1{bottom:475.608600px;}
.y59{bottom:483.526350px;}
.yf{bottom:483.786300px;}
.y10f{bottom:489.237600px;}
.ye3{bottom:490.105950px;}
.y34{bottom:494.259300px;}
.y12f{bottom:495.017850px;}
.y7a{bottom:495.058200px;}
.y9b{bottom:495.803400px;}
.yc0{bottom:495.946350px;}
.ye{bottom:503.314950px;}
.y58{bottom:504.485100px;}
.ye2{bottom:510.426450px;}
.y150{bottom:514.197750px;}
.y33{bottom:514.700550px;}
.y12e{bottom:515.776350px;}
.ybf{bottom:516.284100px;}
.y79{bottom:516.344700px;}
.y10e{bottom:518.485350px;}
.y9a{bottom:518.711400px;}
.yd{bottom:522.844950px;}
.y57{bottom:525.443850px;}
.y14f{bottom:533.697750px;}
.y32{bottom:535.141800px;}
.ybe{bottom:536.621850px;}
.y78{bottom:537.631200px;}
.y99{bottom:541.619400px;}
.yc{bottom:542.374950px;}
.y12d{bottom:545.039850px;}
.y56{bottom:546.402600px;}
.ye1{bottom:552.015000px;}
.y14e{bottom:553.197750px;}
.y31{bottom:555.583050px;}
.ybd{bottom:556.959600px;}
.y77{bottom:558.917700px;}
.y55{bottom:567.361350px;}
.y14d{bottom:572.697750px;}
.y12c{bottom:574.303350px;}
.yb{bottom:574.654950px;}
.y30{bottom:576.024300px;}
.ye0{bottom:576.092250px;}
.ybc{bottom:577.297350px;}
.y76{bottom:580.204200px;}
.y98{bottom:585.787200px;}
.y54{bottom:588.320100px;}
.y10d{bottom:590.431350px;}
.y14c{bottom:592.197750px;}
.y12b{bottom:595.061850px;}
.y2f{bottom:596.465550px;}
.ybb{bottom:597.635100px;}
.y75{bottom:601.490700px;}
.y53{bottom:609.278850px;}
.y10c{bottom:611.183100px;}
.y14b{bottom:611.697750px;}
.y12a{bottom:615.820350px;}
.y2e{bottom:616.873950px;}
.yba{bottom:617.972850px;}
.y74{bottom:622.777200px;}
.y52{bottom:630.237600px;}
.y14a{bottom:631.197750px;}
.y10b{bottom:631.934850px;}
.ya{bottom:632.451000px;}
.y2d{bottom:637.315200px;}
.yb9{bottom:638.310600px;}
.ydf{bottom:638.452800px;}
.y129{bottom:645.083850px;}
.y149{bottom:650.697750px;}
.y97{bottom:650.713350px;}
.y51{bottom:651.196350px;}
.y10a{bottom:652.686600px;}
.y2c{bottom:657.756450px;}
.yb8{bottom:658.648350px;}
.yde{bottom:658.773300px;}
.y9{bottom:659.478000px;}
.y73{bottom:665.317050px;}
.y128{bottom:665.842350px;}
.y148{bottom:670.197750px;}
.y109{bottom:673.438350px;}
.y96{bottom:673.621350px;}
.y2b{bottom:678.197700px;}
.yb7{bottom:678.986100px;}
.ydd{bottom:679.108800px;}
.y147{bottom:689.697750px;}
.y72{bottom:690.366300px;}
.y50{bottom:693.113850px;}
.y108{bottom:694.190100px;}
.y127{bottom:695.105850px;}
.y95{bottom:696.529350px;}
.y2a{bottom:698.638950px;}
.yb6{bottom:699.323850px;}
.ydc{bottom:699.429300px;}
.y8{bottom:707.748750px;}
.y146{bottom:709.197750px;}
.y4f{bottom:714.072600px;}
.y107{bottom:714.941850px;}
.y126{bottom:715.864350px;}
.y94{bottom:719.437350px;}
.yb5{bottom:719.661600px;}
.ydb{bottom:719.757150px;}
.y145{bottom:728.697750px;}
.y4e{bottom:735.031350px;}
.y106{bottom:735.693600px;}
.y7{bottom:739.284750px;}
.yb4{bottom:739.999350px;}
.yda{bottom:740.100000px;}
.y29{bottom:740.331750px;}
.y93{bottom:742.345350px;}
.y125{bottom:745.127850px;}
.y144{bottom:748.197750px;}
.y71{bottom:753.695850px;}
.y4d{bottom:755.990100px;}
.y105{bottom:756.445350px;}
.yb3{bottom:760.337100px;}
.yd9{bottom:760.420500px;}
.y92{bottom:765.253350px;}
.y124{bottom:765.886350px;}
.y143{bottom:767.697750px;}
.y6{bottom:770.820750px;}
.y70{bottom:774.982350px;}
.y4c{bottom:776.948850px;}
.yb2{bottom:780.674850px;}
.yd8{bottom:780.741000px;}
.y142{bottom:787.197750px;}
.y91{bottom:788.161350px;}
.y123{bottom:795.149850px;}
.y6f{bottom:796.268850px;}
.y4b{bottom:797.907600px;}
.y104{bottom:798.449850px;}
.yb1{bottom:801.012600px;}
.yd7{bottom:801.069000px;}
.y28{bottom:802.785600px;}
.y141{bottom:806.697750px;}
.y90{bottom:811.069350px;}
.y6e{bottom:817.555350px;}
.y4a{bottom:818.866350px;}
.yb0{bottom:821.350350px;}
.yd6{bottom:821.419350px;}
.y27{bottom:823.965600px;}
.y122{bottom:824.413350px;}
.y140{bottom:826.197750px;}
.y5{bottom:832.106250px;}
.y8f{bottom:833.977350px;}
.y6d{bottom:838.841850px;}
.y49{bottom:839.825100px;}
.yaf{bottom:841.688100px;}
.yd5{bottom:841.739850px;}
.y26{bottom:845.157750px;}
.y13f{bottom:845.697750px;}
.y4{bottom:853.136250px;}
.y121{bottom:853.676850px;}
.y8e{bottom:856.885350px;}
.y6c{bottom:860.128350px;}
.y48{bottom:860.783850px;}
.y103{bottom:861.197850px;}
.yae{bottom:862.025850px;}
.yd4{bottom:862.060350px;}
.y25{bottom:864.837750px;}
.y13e{bottom:865.197750px;}
.y120{bottom:874.435350px;}
.y8d{bottom:879.793350px;}
.y6b{bottom:881.414850px;}
.y47{bottom:881.742600px;}
.y102{bottom:881.949600px;}
.yad{bottom:882.363600px;}
.yd3{bottom:882.380850px;}
.y3{bottom:882.671250px;}
.y24{bottom:884.517750px;}
.y13d{bottom:884.697750px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:904.197750px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.h16{height:24.964242px;}
.h10{height:33.870539px;}
.h12{height:40.757812px;}
.h11{height:45.852539px;}
.ha{height:47.578125px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h17{height:55.924805px;}
.hc{height:58.589355px;}
.h14{height:58.591755px;}
.h18{height:58.663155px;}
.hd{height:58.720755px;}
.h9{height:62.138672px;}
.h2{height:63.684082px;}
.h1a{height:65.210205px;}
.h19{height:65.245605px;}
.hb{height:68.778809px;}
.h7{height:71.326172px;}
.h15{height:71.429473px;}
.he{height:71.459473px;}
.h13{height:71.517073px;}
.hf{height:71.949073px;}
.h8{height:86.994141px;}
.h5{height:91.705078px;}
.h6{height:111.849609px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:81.096450px;}
.xb{left:82.396500px;}
.x7{left:83.405250px;}
.x1{left:84.444600px;}
.x5{left:85.455600px;}
.x4{left:105.165600px;}
.x9{left:106.344750px;}
.xc{left:108.706200px;}
.xd{left:126.930150px;}
.xe{left:127.965150px;}
.xa{left:150.413250px;}
.x8{left:212.664000px;}
.x3{left:230.462400px;}
.x2{left:233.439750px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v7{vertical-align:-13.315200pt;}
.v2{vertical-align:-12.426133pt;}
.v5{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.650667pt;}
.v1{vertical-align:12.430933pt;}
.v3{vertical-align:15.207467pt;}
.ls5{letter-spacing:-9.600000pt;}
.ls65{letter-spacing:-9.240000pt;}
.ls46{letter-spacing:-4.293333pt;}
.ls74{letter-spacing:-3.752000pt;}
.ls21{letter-spacing:-3.680000pt;}
.ls68{letter-spacing:-2.688000pt;}
.ls6f{letter-spacing:-2.632000pt;}
.ls7{letter-spacing:-2.208000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls72{letter-spacing:-1.904000pt;}
.ls8{letter-spacing:-1.866667pt;}
.ls30{letter-spacing:-1.800000pt;}
.ls6e{letter-spacing:-1.792000pt;}
.ls23{letter-spacing:-1.594667pt;}
.ls59{letter-spacing:-1.584000pt;}
.ls9{letter-spacing:-1.568000pt;}
.ls55{letter-spacing:-1.533333pt;}
.ls22{letter-spacing:-1.472000pt;}
.ls2d{letter-spacing:-1.410667pt;}
.ls6c{letter-spacing:-1.400000pt;}
.ls7c{letter-spacing:-1.386667pt;}
.ls29{letter-spacing:-1.349333pt;}
.ls45{letter-spacing:-1.288000pt;}
.ls2c{letter-spacing:-1.226667pt;}
.ls67{letter-spacing:-1.176000pt;}
.ls28{letter-spacing:-1.165333pt;}
.ls38{letter-spacing:-1.152000pt;}
.ls79{letter-spacing:-1.120000pt;}
.ls1f{letter-spacing:-1.080000pt;}
.ls1c{letter-spacing:-1.066667pt;}
.ls3c{letter-spacing:-1.042667pt;}
.ls76{letter-spacing:-1.008000pt;}
.ls40{letter-spacing:-0.981333pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls5c{letter-spacing:-0.920000pt;}
.ls61{letter-spacing:-0.864000pt;}
.ls26{letter-spacing:-0.858667pt;}
.ls78{letter-spacing:-0.840000pt;}
.ls24{letter-spacing:-0.797333pt;}
.ls1e{letter-spacing:-0.760000pt;}
.ls64{letter-spacing:-0.728000pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls20{letter-spacing:-0.674667pt;}
.ls31{letter-spacing:-0.613333pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.557333pt;}
.ls53{letter-spacing:-0.552000pt;}
.ls60{letter-spacing:-0.506667pt;}
.ls6d{letter-spacing:-0.504000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls69{letter-spacing:-0.392000pt;}
.ls49{letter-spacing:-0.368000pt;}
.ls6a{letter-spacing:-0.336000pt;}
.ls33{letter-spacing:-0.306667pt;}
.ls73{letter-spacing:-0.280000pt;}
.ls37{letter-spacing:-0.245333pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.184000pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls57{letter-spacing:-0.152000pt;}
.ls27{letter-spacing:-0.122667pt;}
.ls7f{letter-spacing:-0.106667pt;}
.ls3e{letter-spacing:-0.061333pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000016pt;}
.ls4f{letter-spacing:0.000267pt;}
.ls4b{letter-spacing:0.000549pt;}
.ls7a{letter-spacing:0.112000pt;}
.ls44{letter-spacing:0.119963pt;}
.ls47{letter-spacing:0.122667pt;}
.ls80{letter-spacing:0.213333pt;}
.ls32{letter-spacing:0.245333pt;}
.ls82{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.357573pt;}
.ls81{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls7e{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.435307pt;}
.lse{letter-spacing:0.533333pt;}
.ls43{letter-spacing:0.540267pt;}
.ls36{letter-spacing:0.552000pt;}
.ls3f{letter-spacing:0.674667pt;}
.ls5e{letter-spacing:0.711200pt;}
.ls42{letter-spacing:0.716621pt;}
.ls51{letter-spacing:0.733333pt;}
.ls1{letter-spacing:0.800000pt;}
.ls5f{letter-spacing:0.912267pt;}
.ls35{letter-spacing:0.981333pt;}
.ls77{letter-spacing:1.064000pt;}
.ls15{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.120000pt;}
.ls3{letter-spacing:1.194667pt;}
.ls39{letter-spacing:1.200000pt;}
.ls5a{letter-spacing:1.248000pt;}
.ls3b{letter-spacing:1.266667pt;}
.ls4d{letter-spacing:1.355749pt;}
.ls4e{letter-spacing:1.356283pt;}
.ls58{letter-spacing:1.410667pt;}
.ls50{letter-spacing:1.507723pt;}
.ls48{letter-spacing:1.533333pt;}
.lsf{letter-spacing:1.546667pt;}
.ls2f{letter-spacing:2.133333pt;}
.ls66{letter-spacing:2.912000pt;}
.ls10{letter-spacing:3.285333pt;}
.ls7b{letter-spacing:3.306667pt;}
.ls70{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:3.733333pt;}
.ls52{letter-spacing:3.986667pt;}
.ls2a{letter-spacing:4.170667pt;}
.ls56{letter-spacing:4.232000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls75{letter-spacing:5.208000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsc{letter-spacing:5.440000pt;}
.ls6b{letter-spacing:5.600000pt;}
.ls62{letter-spacing:6.104000pt;}
.ls63{letter-spacing:6.664000pt;}
.ls54{letter-spacing:7.298667pt;}
.ls3a{letter-spacing:445.338133pt;}
.ls0{letter-spacing:445.804800pt;}
.ls4a{letter-spacing:445.871467pt;}
.ls5d{letter-spacing:446.037867pt;}
.ls7d{letter-spacing:446.501333pt;}
.ls2e{letter-spacing:448.397867pt;}
.ls71{letter-spacing:880.020267pt;}
.ls34{letter-spacing:880.460267pt;}
.ls41{letter-spacing:882.793600pt;}
.ls5b{letter-spacing:886.393600pt;}
.ls18{letter-spacing:888.153600pt;}
.ws3{word-spacing:-24.096000pt;}
.ws58{word-spacing:-21.840000pt;}
.ws5{word-spacing:-20.213333pt;}
.ws8{word-spacing:-20.106667pt;}
.ws37{word-spacing:-20.000000pt;}
.ws0{word-spacing:-19.533333pt;}
.ws45{word-spacing:-19.466667pt;}
.ws55{word-spacing:-19.368000pt;}
.ws54{word-spacing:-19.266667pt;}
.ws19{word-spacing:-19.152000pt;}
.ws76{word-spacing:-19.133333pt;}
.ws32{word-spacing:-19.080000pt;}
.ws6f{word-spacing:-18.293333pt;}
.ws47{word-spacing:-18.216000pt;}
.ws2d{word-spacing:-16.933333pt;}
.ws6c{word-spacing:-16.800000pt;}
.ws4{word-spacing:-16.576000pt;}
.ws59{word-spacing:-15.400000pt;}
.ws56{word-spacing:-14.781333pt;}
.ws46{word-spacing:-14.597333pt;}
.ws3d{word-spacing:-14.536000pt;}
.ws5a{word-spacing:-14.336000pt;}
.ws38{word-spacing:-14.168000pt;}
.ws2{word-spacing:-14.112000pt;}
.ws49{word-spacing:-14.106667pt;}
.ws57{word-spacing:-13.984000pt;}
.ws3f{word-spacing:-13.922667pt;}
.ws6a{word-spacing:-13.832000pt;}
.ws1b{word-spacing:-13.800000pt;}
.ws1d{word-spacing:-13.738667pt;}
.ws48{word-spacing:-13.616000pt;}
.ws4b{word-spacing:-13.488000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws6d{word-spacing:-12.712000pt;}
.ws6e{word-spacing:-12.432000pt;}
.ws9{word-spacing:-12.213333pt;}
.ws18{word-spacing:-12.106667pt;}
.ws5b{word-spacing:-12.040000pt;}
.ws6b{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws1c{word-spacing:-10.405384pt;}
.ws4a{word-spacing:-10.272000pt;}
.ws1a{word-spacing:-10.047811pt;}
.ws7{word-spacing:-9.172533pt;}
.ws3e{word-spacing:-8.832061pt;}
.ws4d{word-spacing:-7.298667pt;}
.ws5d{word-spacing:-6.664000pt;}
.ws64{word-spacing:-5.600000pt;}
.wse{word-spacing:-5.440000pt;}
.wsb{word-spacing:-5.333333pt;}
.ws71{word-spacing:-5.208000pt;}
.ws4e{word-spacing:-4.232000pt;}
.ws2b{word-spacing:-4.170667pt;}
.ws4c{word-spacing:-3.986667pt;}
.ws20{word-spacing:-3.733333pt;}
.ws69{word-spacing:-3.360000pt;}
.ws11{word-spacing:-3.285333pt;}
.ws60{word-spacing:-2.912000pt;}
.ws2e{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.546667pt;}
.ws43{word-spacing:-1.533333pt;}
.ws50{word-spacing:-1.410667pt;}
.ws52{word-spacing:-1.248000pt;}
.ws36{word-spacing:-1.200000pt;}
.ws16{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.066667pt;}
.ws33{word-spacing:-0.981333pt;}
.ws3c{word-spacing:-0.674667pt;}
.ws34{word-spacing:-0.552000pt;}
.wsf{word-spacing:-0.533333pt;}
.ws79{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.320000pt;}
.ws30{word-spacing:-0.245333pt;}
.ws78{word-spacing:-0.213333pt;}
.ws42{word-spacing:-0.122667pt;}
.ws74{word-spacing:-0.112000pt;}
.wsa{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.061333pt;}
.ws77{word-spacing:0.106667pt;}
.ws29{word-spacing:0.122667pt;}
.ws4f{word-spacing:0.152000pt;}
.ws1e{word-spacing:0.160000pt;}
.ws27{word-spacing:0.184000pt;}
.ws35{word-spacing:0.245333pt;}
.ws70{word-spacing:0.280000pt;}
.ws31{word-spacing:0.306667pt;}
.ws66{word-spacing:0.336000pt;}
.ws44{word-spacing:0.368000pt;}
.ws63{word-spacing:0.392000pt;}
.ws12{word-spacing:0.426667pt;}
.ws65{word-spacing:0.504000pt;}
.ws5c{word-spacing:0.506667pt;}
.ws3a{word-spacing:0.557333pt;}
.ws1f{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.613333pt;}
.ws17{word-spacing:0.640000pt;}
.ws22{word-spacing:0.674667pt;}
.ws13{word-spacing:0.693333pt;}
.ws5e{word-spacing:0.728000pt;}
.ws21{word-spacing:0.760000pt;}
.ws26{word-spacing:0.797333pt;}
.ws73{word-spacing:0.840000pt;}
.ws28{word-spacing:0.858667pt;}
.ws53{word-spacing:0.920000pt;}
.ws72{word-spacing:1.008000pt;}
.ws39{word-spacing:1.042667pt;}
.ws2a{word-spacing:1.165333pt;}
.ws61{word-spacing:1.176000pt;}
.ws2c{word-spacing:1.226667pt;}
.ws40{word-spacing:1.288000pt;}
.ws75{word-spacing:1.386667pt;}
.ws24{word-spacing:1.472000pt;}
.wsd{word-spacing:1.568000pt;}
.ws25{word-spacing:1.594667pt;}
.ws67{word-spacing:1.792000pt;}
.ws14{word-spacing:1.920000pt;}
.wsc{word-spacing:2.208000pt;}
.ws68{word-spacing:2.632000pt;}
.ws62{word-spacing:2.688000pt;}
.ws23{word-spacing:3.680000pt;}
.ws41{word-spacing:4.293333pt;}
.ws51{word-spacing:7.247856pt;}
.ws5f{word-spacing:9.240000pt;}
._18{margin-left:-14.949600pt;}
._19{margin-left:-12.576533pt;}
._1c{margin-left:-9.012267pt;}
._8{margin-left:-7.821333pt;}
._1b{margin-left:-6.601600pt;}
._7{margin-left:-5.666667pt;}
._9{margin-left:-4.001600pt;}
._6{margin-left:-2.554667pt;}
._0{margin-left:-0.977600pt;}
._1{width:1.109333pt;}
._3{width:2.653333pt;}
._4{width:4.304000pt;}
._2{width:5.445333pt;}
._5{width:7.040000pt;}
._b{width:8.048000pt;}
._a{width:9.657600pt;}
._16{width:11.199467pt;}
._12{width:12.757333pt;}
._10{width:14.197867pt;}
._13{width:16.266133pt;}
._1d{width:17.500267pt;}
._1f{width:18.595467pt;}
._14{width:20.122933pt;}
._f{width:21.203733pt;}
._17{width:22.347200pt;}
._1e{width:26.348000pt;}
._1a{width:31.370064pt;}
._15{width:38.617920pt;}
._e{width:63.466667pt;}
._11{width:77.832000pt;}
._c{width:224.896000pt;}
._d{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsf{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y13c{bottom:94.454400pt;}
.y6a{bottom:94.461200pt;}
.y8c{bottom:94.474933pt;}
.y20{bottom:94.477867pt;}
.yac{bottom:94.480267pt;}
.y45{bottom:94.482933pt;}
.yd2{bottom:94.485600pt;}
.y11f{bottom:94.502000pt;}
.yf6{bottom:97.150933pt;}
.y8b{bottom:109.810933pt;}
.yab{bottom:109.816267pt;}
.y44{bottom:109.818933pt;}
.y1f{bottom:111.837867pt;}
.y13b{bottom:112.241067pt;}
.yd1{bottom:112.484267pt;}
.y11e{bottom:112.940000pt;}
.y69{bottom:113.091200pt;}
.yf5{bottom:113.595733pt;}
.y8a{bottom:125.146933pt;}
.yaa{bottom:125.152267pt;}
.y43{bottom:127.817600pt;}
.yf4{bottom:128.931733pt;}
.y1e{bottom:129.197867pt;}
.y13a{bottom:130.027733pt;}
.y68{bottom:131.721200pt;}
.y11d{bottom:138.938000pt;}
.y89{bottom:140.482933pt;}
.ya9{bottom:143.150933pt;}
.y1d{bottom:146.557867pt;}
.yf3{bottom:146.930400pt;}
.y139{bottom:147.814400pt;}
.y67{bottom:150.351200pt;}
.yd0{bottom:151.606533pt;}
.y101{bottom:151.609600pt;}
.y88{bottom:155.818933pt;}
.y11c{bottom:157.376000pt;}
.ya8{bottom:159.598400pt;}
.yf2{bottom:163.378000pt;}
.y1c{bottom:163.917867pt;}
.y138{bottom:165.587733pt;}
.y42{bottom:166.915733pt;}
.y66{bottom:168.981200pt;}
.ycf{bottom:169.684533pt;}
.y100{bottom:169.687600pt;}
.y87{bottom:173.817600pt;}
.ya7{bottom:174.934400pt;}
.y11b{bottom:175.814000pt;}
.y1b{bottom:181.277867pt;}
.yf1{bottom:181.376667pt;}
.y137{bottom:183.374400pt;}
.y41{bottom:185.085733pt;}
.y65{bottom:187.611200pt;}
.yce{bottom:187.762533pt;}
.yff{bottom:187.765600pt;}
.yf0{bottom:197.824133pt;}
.y1a{bottom:198.637867pt;}
.y136{bottom:201.161067pt;}
.y11a{bottom:201.812000pt;}
.y40{bottom:203.255733pt;}
.ycd{bottom:205.840533pt;}
.yfe{bottom:205.843600pt;}
.y64{bottom:206.241200pt;}
.y86{bottom:212.995733pt;}
.yef{bottom:213.160133pt;}
.yee{bottom:215.822800pt;}
.ya6{bottom:216.724800pt;}
.y135{bottom:218.934400pt;}
.y119{bottom:220.250000pt;}
.y3f{bottom:221.425733pt;}
.yfd{bottom:223.905200pt;}
.ycc{bottom:223.918533pt;}
.y63{bottom:224.871200pt;}
.y19{bottom:227.331200pt;}
.y85{bottom:231.917067pt;}
.y134{bottom:236.721067pt;}
.ya5{bottom:237.087467pt;}
.y118{bottom:238.688000pt;}
.y3e{bottom:239.486933pt;}
.yfc{bottom:241.983200pt;}
.ycb{bottom:241.996533pt;}
.y84{bottom:250.838400pt;}
.y133{bottom:254.507733pt;}
.yed{bottom:254.983333pt;}
.ya4{bottom:257.450133pt;}
.y3d{bottom:257.656933pt;}
.yfb{bottom:260.061200pt;}
.yca{bottom:260.074533pt;}
.y62{bottom:262.131200pt;}
.y117{bottom:264.686000pt;}
.y83{bottom:269.759733pt;}
.y18{bottom:271.144533pt;}
.yec{bottom:273.046000pt;}
.ya3{bottom:277.812800pt;}
.yfa{bottom:278.139200pt;}
.yc9{bottom:278.152533pt;}
.y61{bottom:280.761200pt;}
.y116{bottom:283.124000pt;}
.y132{bottom:283.627733pt;}
.y82{bottom:288.681067pt;}
.y17{bottom:289.837867pt;}
.yeb{bottom:291.108667pt;}
.y3c{bottom:293.981600pt;}
.yf9{bottom:296.217200pt;}
.yc8{bottom:296.230533pt;}
.ya2{bottom:298.175467pt;}
.y60{bottom:299.391200pt;}
.y115{bottom:301.569867pt;}
.y81{bottom:307.602400pt;}
.y16{bottom:308.512267pt;}
.yea{bottom:309.171333pt;}
.y3b{bottom:312.151600pt;}
.yf8{bottom:314.295200pt;}
.yc7{bottom:314.308533pt;}
.y5f{bottom:318.021200pt;}
.ya1{bottom:318.538133pt;}
.y156{bottom:318.838000pt;}
.y15{bottom:325.872267pt;}
.y80{bottom:326.523733pt;}
.ye9{bottom:327.234000pt;}
.y114{bottom:327.567867pt;}
.y3a{bottom:330.321600pt;}
.yf7{bottom:332.373200pt;}
.yc6{bottom:332.386000pt;}
.y131{bottom:335.417067pt;}
.y5e{bottom:336.651200pt;}
.y155{bottom:336.838000pt;}
.ya0{bottom:338.900800pt;}
.y14{bottom:343.232267pt;}
.ye8{bottom:345.296667pt;}
.y7f{bottom:345.445067pt;}
.y113{bottom:346.005867pt;}
.y39{bottom:348.491600pt;}
.yc5{bottom:350.451200pt;}
.y154{bottom:354.838000pt;}
.y5d{bottom:355.281200pt;}
.y9f{bottom:359.263467pt;}
.y130{bottom:359.870400pt;}
.y13{bottom:360.592267pt;}
.ye7{bottom:363.399067pt;}
.y7e{bottom:364.366400pt;}
.y112{bottom:364.443867pt;}
.y38{bottom:366.661600pt;}
.yc4{bottom:368.529200pt;}
.y153{bottom:372.838000pt;}
.y5c{bottom:373.911200pt;}
.y12{bottom:377.952267pt;}
.y9e{bottom:379.626133pt;}
.ye6{bottom:381.461733pt;}
.y7d{bottom:383.287733pt;}
.y37{bottom:384.831600pt;}
.yc3{bottom:386.607200pt;}
.y111{bottom:390.441867pt;}
.y152{bottom:390.838000pt;}
.y5b{bottom:392.541200pt;}
.y11{bottom:395.312267pt;}
.ye5{bottom:399.524400pt;}
.y9d{bottom:399.988800pt;}
.y7c{bottom:402.209067pt;}
.y36{bottom:403.001600pt;}
.yc2{bottom:404.685200pt;}
.y5a{bottom:411.171200pt;}
.y10{bottom:412.672267pt;}
.y110{bottom:416.439867pt;}
.ye4{bottom:417.587067pt;}
.y151{bottom:420.171333pt;}
.y9c{bottom:420.351467pt;}
.y7b{bottom:421.130400pt;}
.y35{bottom:421.171600pt;}
.yc1{bottom:422.763200pt;}
.y59{bottom:429.801200pt;}
.yf{bottom:430.032267pt;}
.y10f{bottom:434.877867pt;}
.ye3{bottom:435.649733pt;}
.y34{bottom:439.341600pt;}
.y12f{bottom:440.015867pt;}
.y7a{bottom:440.051733pt;}
.y9b{bottom:440.714133pt;}
.yc0{bottom:440.841200pt;}
.ye{bottom:447.391067pt;}
.y58{bottom:448.431200pt;}
.ye2{bottom:453.712400pt;}
.y150{bottom:457.064667pt;}
.y33{bottom:457.511600pt;}
.y12e{bottom:458.467867pt;}
.ybf{bottom:458.919200pt;}
.y79{bottom:458.973067pt;}
.y10e{bottom:460.875867pt;}
.y9a{bottom:461.076800pt;}
.yd{bottom:464.751067pt;}
.y57{bottom:467.061200pt;}
.y14f{bottom:474.398000pt;}
.y32{bottom:475.681600pt;}
.ybe{bottom:476.997200pt;}
.y78{bottom:477.894400pt;}
.y99{bottom:481.439467pt;}
.yc{bottom:482.111067pt;}
.y12d{bottom:484.479867pt;}
.y56{bottom:485.691200pt;}
.ye1{bottom:490.680000pt;}
.y14e{bottom:491.731333pt;}
.y31{bottom:493.851600pt;}
.ybd{bottom:495.075200pt;}
.y77{bottom:496.815733pt;}
.y55{bottom:504.321200pt;}
.y14d{bottom:509.064667pt;}
.y12c{bottom:510.491867pt;}
.yb{bottom:510.804400pt;}
.y30{bottom:512.021600pt;}
.ye0{bottom:512.082000pt;}
.ybc{bottom:513.153200pt;}
.y76{bottom:515.737067pt;}
.y98{bottom:520.699733pt;}
.y54{bottom:522.951200pt;}
.y10d{bottom:524.827867pt;}
.y14c{bottom:526.398000pt;}
.y12b{bottom:528.943867pt;}
.y2f{bottom:530.191600pt;}
.ybb{bottom:531.231200pt;}
.y75{bottom:534.658400pt;}
.y53{bottom:541.581200pt;}
.y10c{bottom:543.273867pt;}
.y14b{bottom:543.731333pt;}
.y12a{bottom:547.395867pt;}
.y2e{bottom:548.332400pt;}
.yba{bottom:549.309200pt;}
.y74{bottom:553.579733pt;}
.y52{bottom:560.211200pt;}
.y14a{bottom:561.064667pt;}
.y10b{bottom:561.719867pt;}
.ya{bottom:562.178667pt;}
.y2d{bottom:566.502400pt;}
.yb9{bottom:567.387200pt;}
.ydf{bottom:567.513600pt;}
.y129{bottom:573.407867pt;}
.y149{bottom:578.398000pt;}
.y97{bottom:578.411867pt;}
.y51{bottom:578.841200pt;}
.y10a{bottom:580.165867pt;}
.y2c{bottom:584.672400pt;}
.yb8{bottom:585.465200pt;}
.yde{bottom:585.576267pt;}
.y9{bottom:586.202667pt;}
.y73{bottom:591.392933pt;}
.y128{bottom:591.859867pt;}
.y148{bottom:595.731333pt;}
.y109{bottom:598.611867pt;}
.y96{bottom:598.774533pt;}
.y2b{bottom:602.842400pt;}
.yb7{bottom:603.543200pt;}
.ydd{bottom:603.652267pt;}
.y147{bottom:613.064667pt;}
.y72{bottom:613.658933pt;}
.y50{bottom:616.101200pt;}
.y108{bottom:617.057867pt;}
.y127{bottom:617.871867pt;}
.y95{bottom:619.137200pt;}
.y2a{bottom:621.012400pt;}
.yb6{bottom:621.621200pt;}
.ydc{bottom:621.714933pt;}
.y8{bottom:629.110000pt;}
.y146{bottom:630.398000pt;}
.y4f{bottom:634.731200pt;}
.y107{bottom:635.503867pt;}
.y126{bottom:636.323867pt;}
.y94{bottom:639.499867pt;}
.yb5{bottom:639.699200pt;}
.ydb{bottom:639.784133pt;}
.y145{bottom:647.731333pt;}
.y4e{bottom:653.361200pt;}
.y106{bottom:653.949867pt;}
.y7{bottom:657.142000pt;}
.yb4{bottom:657.777200pt;}
.yda{bottom:657.866667pt;}
.y29{bottom:658.072667pt;}
.y93{bottom:659.862533pt;}
.y125{bottom:662.335867pt;}
.y144{bottom:665.064667pt;}
.y71{bottom:669.951867pt;}
.y4d{bottom:671.991200pt;}
.y105{bottom:672.395867pt;}
.yb3{bottom:675.855200pt;}
.yd9{bottom:675.929333pt;}
.y92{bottom:680.225200pt;}
.y124{bottom:680.787867pt;}
.y143{bottom:682.398000pt;}
.y6{bottom:685.174000pt;}
.y70{bottom:688.873200pt;}
.y4c{bottom:690.621200pt;}
.yb2{bottom:693.933200pt;}
.yd8{bottom:693.992000pt;}
.y142{bottom:699.731333pt;}
.y91{bottom:700.587867pt;}
.y123{bottom:706.799867pt;}
.y6f{bottom:707.794533pt;}
.y4b{bottom:709.251200pt;}
.y104{bottom:709.733200pt;}
.yb1{bottom:712.011200pt;}
.yd7{bottom:712.061333pt;}
.y28{bottom:713.587200pt;}
.y141{bottom:717.064667pt;}
.y90{bottom:720.950533pt;}
.y6e{bottom:726.715867pt;}
.y4a{bottom:727.881200pt;}
.yb0{bottom:730.089200pt;}
.yd6{bottom:730.150533pt;}
.y27{bottom:732.413867pt;}
.y122{bottom:732.811867pt;}
.y140{bottom:734.398000pt;}
.y5{bottom:739.650000pt;}
.y8f{bottom:741.313200pt;}
.y6d{bottom:745.637200pt;}
.y49{bottom:746.511200pt;}
.yaf{bottom:748.167200pt;}
.yd5{bottom:748.213200pt;}
.y26{bottom:751.251333pt;}
.y13f{bottom:751.731333pt;}
.y4{bottom:758.343333pt;}
.y121{bottom:758.823867pt;}
.y8e{bottom:761.675867pt;}
.y6c{bottom:764.558533pt;}
.y48{bottom:765.141200pt;}
.y103{bottom:765.509200pt;}
.yae{bottom:766.245200pt;}
.yd4{bottom:766.275867pt;}
.y25{bottom:768.744667pt;}
.y13e{bottom:769.064667pt;}
.y120{bottom:777.275867pt;}
.y8d{bottom:782.038533pt;}
.y6b{bottom:783.479867pt;}
.y47{bottom:783.771200pt;}
.y102{bottom:783.955200pt;}
.yad{bottom:784.323200pt;}
.yd3{bottom:784.338533pt;}
.y3{bottom:784.596667pt;}
.y24{bottom:786.238000pt;}
.y13d{bottom:786.398000pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:803.731333pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.h16{height:22.190437pt;}
.h10{height:30.107146pt;}
.h12{height:36.229167pt;}
.h11{height:40.757812pt;}
.ha{height:42.291667pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h17{height:49.710938pt;}
.hc{height:52.079427pt;}
.h14{height:52.081560pt;}
.h18{height:52.145027pt;}
.hd{height:52.196227pt;}
.h9{height:55.234375pt;}
.h2{height:56.608073pt;}
.h1a{height:57.964627pt;}
.h19{height:57.996094pt;}
.hb{height:61.136719pt;}
.h7{height:63.401042pt;}
.h15{height:63.492865pt;}
.he{height:63.519531pt;}
.h13{height:63.570731pt;}
.hf{height:63.954731pt;}
.h8{height:77.328125pt;}
.h5{height:81.515625pt;}
.h6{height:99.421875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:72.085733pt;}
.xb{left:73.241333pt;}
.x7{left:74.138000pt;}
.x1{left:75.061867pt;}
.x5{left:75.960533pt;}
.x4{left:93.480533pt;}
.x9{left:94.528667pt;}
.xc{left:96.627733pt;}
.xd{left:112.826800pt;}
.xe{left:113.746800pt;}
.xa{left:133.700667pt;}
.x8{left:189.034667pt;}
.x3{left:204.855467pt;}
.x2{left:207.502000pt;}
}




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