
    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_51f9bb683dd44ec3538434ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_0a209ac468e4f0b89179512a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_f75e10cfcb016ec1577092e2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_a87969be20f245384a0b87b4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_c4a27392e643e1d197089e1e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_6d0aaabab29057c571f7a372.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_6a4c2c5b811e7e83ad58ce67.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_2130f96a519431360127d7c5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae9835d6ac06bd8ff0143e82.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f4d20ff3d3c50538652fa1b9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-20.880000px;}
.v7{vertical-align:-6.480000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.600000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.lsd{letter-spacing:-2.520000px;}
.ls29{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.041040px;}
.lsc{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.037440px;}
.ls1d{letter-spacing:0.053280px;}
.ls2c{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.152400px;}
.ls1e{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.900000px;}
.ls18{letter-spacing:2.160000px;}
.ls15{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.600000px;}
.lsa{letter-spacing:4.320000px;}
.ls22{letter-spacing:5.040000px;}
.lsb{letter-spacing:6.480000px;}
.ls27{letter-spacing:6.785280px;}
.ls16{letter-spacing:10.980000px;}
.ls1a{letter-spacing:12.420000px;}
.ls28{letter-spacing:16.506720px;}
.ls25{letter-spacing:39.905280px;}
.ls26{letter-spacing:46.026720px;}
.ls4{letter-spacing:71.460000px;}
.ls9{letter-spacing:72.174240px;}
.ls8{letter-spacing:72.900000px;}
.ls6{letter-spacing:92.802240px;}
.ls5{letter-spacing:93.060000px;}
.ls7{letter-spacing:93.702240px;}
.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;}
}
.wsb{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws1b{word-spacing:-16.712400px;}
.ws1d{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws1c{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.534000px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws15{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.464720px;}
.ws13{word-spacing:-13.396560px;}
.ws1{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:38.086560px;}
.ws10{word-spacing:38.687760px;}
.ws14{word-spacing:60.287760px;}
.ws16{word-spacing:224.335920px;}
.ws18{word-spacing:340.698000px;}
._11{margin-left:-5.256000px;}
._10{margin-left:-4.176000px;}
._e{margin-left:-2.952000px;}
._1{margin-left:-1.513680px;}
._0{width:1.135440px;}
._6{width:2.137920px;}
._4{width:3.262080px;}
._5{width:4.373760px;}
._2{width:6.207840px;}
._7{width:7.254960px;}
._f{width:9.181920px;}
._d{width:10.746240px;}
._8{width:12.456000px;}
._9{width:13.536000px;}
._a{width:14.544000px;}
._b{width:16.240560px;}
._c{width:19.341120px;}
._12{width:20.664000px;}
._13{width:21.691440px;}
._17{width:23.832000px;}
._18{width:25.365120px;}
._1a{width:27.887040px;}
._1b{width:29.125920px;}
._19{width:31.536000px;}
._3{width:144.200400px;}
._14{width:237.158640px;}
._15{width:269.110560px;}
._16{width:355.987440px;}
.fca{color:rgb(62,61,64);}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fc6{color:rgb(29,33,37);}
.fc3{color:rgb(28,30,41);}
.fc2{color:rgb(255,0,0);}
.fc9{color:rgb(33,33,33);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,240);}
.fs6{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs8{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y1ae{bottom:-87.330000px;}
.y1ad{bottom:-49.140000px;}
.y36{bottom:-32.580000px;}
.y35{bottom:-14.580000px;}
.y1ac{bottom:-11.700000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.060000px;}
.y70{bottom:3.240000px;}
.y6c{bottom:5.580000px;}
.y1ab{bottom:5.760000px;}
.y101{bottom:6.225000px;}
.y6e{bottom:6.840000px;}
.y9f{bottom:7.740000px;}
.y9d{bottom:8.640000px;}
.ya1{bottom:9.000000px;}
.y10c{bottom:9.075000px;}
.y9a{bottom:11.550000px;}
.ya3{bottom:15.660000px;}
.yfa{bottom:17.280000px;}
.y124{bottom:19.692000px;}
.y33{bottom:20.340000px;}
.y9b{bottom:20.550000px;}
.yce{bottom:22.650000px;}
.y1aa{bottom:23.040000px;}
.y5{bottom:24.300000px;}
.yd3{bottom:30.030000px;}
.y10d{bottom:34.125000px;}
.yc7{bottom:34.890000px;}
.yff{bottom:35.895000px;}
.y10a{bottom:37.290000px;}
.y114{bottom:39.705000px;}
.y1a9{bottom:40.320000px;}
.y120{bottom:41.148000px;}
.yfb{bottom:55.230000px;}
.y109{bottom:55.590000px;}
.y1a8{bottom:57.420000px;}
.yb4{bottom:57.960000px;}
.y10e{bottom:59.220000px;}
.y11b{bottom:59.325000px;}
.yc5{bottom:61.200000px;}
.y166{bottom:64.440000px;}
.y87{bottom:67.680000px;}
.yf8{bottom:67.860000px;}
.y108{bottom:69.270000px;}
.y11d{bottom:70.740000px;}
.y31{bottom:70.920000px;}
.y121{bottom:71.460000px;}
.y1a7{bottom:74.700000px;}
.y11a{bottom:77.655000px;}
.yda{bottom:77.685000px;}
.y60{bottom:79.920000px;}
.yb3{bottom:81.720000px;}
.y165{bottom:83.520000px;}
.y10f{bottom:84.270000px;}
.yc4{bottom:84.960000px;}
.yc8{bottom:86.250000px;}
.yf7{bottom:86.940000px;}
.y107{bottom:87.585000px;}
.y86{bottom:91.476000px;}
.y1a6{bottom:91.980000px;}
.yfc{bottom:93.165000px;}
.y30{bottom:94.716000px;}
.y11e{bottom:96.270000px;}
.y122{bottom:97.020000px;}
.y198{bottom:98.676000px;}
.ye3{bottom:100.545000px;}
.yf6{bottom:102.276000px;}
.y11c{bottom:102.420000px;}
.y164{bottom:102.456000px;}
.y100{bottom:103.530000px;}
.y5f{bottom:103.716000px;}
.yb2{bottom:105.516000px;}
.y106{bottom:105.870000px;}
.y119{bottom:105.945000px;}
.yc3{bottom:108.756000px;}
.y1a5{bottom:109.260000px;}
.y110{bottom:109.365000px;}
.y85{bottom:115.236000px;}
.y197{bottom:117.756000px;}
.ycc{bottom:118.290000px;}
.y2f{bottom:118.476000px;}
.y13f{bottom:118.656000px;}
.y105{bottom:119.550000px;}
.y163{bottom:121.536000px;}
.y11f{bottom:121.830000px;}
.y123{bottom:122.580000px;}
.y118{bottom:124.275000px;}
.yd1{bottom:126.330000px;}
.y1a4{bottom:126.540000px;}
.y5e{bottom:127.656000px;}
.yb1{bottom:129.456000px;}
.yfd{bottom:131.115000px;}
.yc2{bottom:132.516000px;}
.y111{bottom:134.460000px;}
.y196{bottom:136.656000px;}
.ycd{bottom:136.800000px;}
.yc9{bottom:137.625000px;}
.y104{bottom:137.880000px;}
.y84{bottom:138.996000px;}
.y162{bottom:140.436000px;}
.y13e{bottom:142.416000px;}
.y1a3{bottom:143.640000px;}
.y2e{bottom:151.230000px;}
.y117{bottom:152.610000px;}
.yb0{bottom:153.210000px;}
.yd0{bottom:153.435000px;}
.yc1{bottom:155.550000px;}
.y103{bottom:156.165000px;}
.y161{bottom:159.330000px;}
.y112{bottom:159.510000px;}
.y5d{bottom:160.410000px;}
.y1a2{bottom:160.920000px;}
.y13d{bottom:166.170000px;}
.y126{bottom:168.765000px;}
.yfe{bottom:169.050000px;}
.y116{bottom:170.895000px;}
.yc0{bottom:171.030000px;}
.yc6{bottom:171.900000px;}
.y83{bottom:171.930000px;}
.y102{bottom:174.495000px;}
.y195{bottom:174.630000px;}
.y2d{bottom:175.170000px;}
.yaf{bottom:176.970000px;}
.y1a1{bottom:178.200000px;}
.y160{bottom:178.410000px;}
.y5c{bottom:184.170000px;}
.y113{bottom:184.605000px;}
.ydb{bottom:188.430000px;}
.y125{bottom:188.925000px;}
.yca{bottom:189.000000px;}
.y13c{bottom:189.930000px;}
.y194{bottom:193.530000px;}
.y1a0{bottom:195.525000px;}
.y82{bottom:195.690000px;}
.y15f{bottom:197.310000px;}
.y2c{bottom:198.930000px;}
.y115{bottom:202.710000px;}
.y5b{bottom:207.930000px;}
.yae{bottom:209.730000px;}
.y193{bottom:212.610000px;}
.y19f{bottom:212.805000px;}
.y13b{bottom:213.870000px;}
.y15e{bottom:216.390000px;}
.y81{bottom:219.450000px;}
.y2b{bottom:222.690000px;}
.y192{bottom:231.510000px;}
.y5a{bottom:231.870000px;}
.yad{bottom:233.670000px;}
.y15d{bottom:235.290000px;}
.y13a{bottom:237.630000px;}
.ycb{bottom:240.375000px;}
.y80{bottom:243.210000px;}
.y2a{bottom:246.450000px;}
.y191{bottom:250.410000px;}
.y15c{bottom:254.190000px;}
.y59{bottom:255.630000px;}
.y139{bottom:261.390000px;}
.yac{bottom:266.430000px;}
.y7f{bottom:267.150000px;}
.ycf{bottom:267.810000px;}
.y190{bottom:269.490000px;}
.y29{bottom:270.390000px;}
.y15b{bottom:273.270000px;}
.y58{bottom:279.390000px;}
.y138{bottom:285.150000px;}
.y18f{bottom:288.390000px;}
.yab{bottom:290.190000px;}
.y7e{bottom:290.910000px;}
.y15a{bottom:292.170000px;}
.y28{bottom:294.150000px;}
.y57{bottom:303.150000px;}
.y18e{bottom:307.470000px;}
.y137{bottom:309.090000px;}
.y159{bottom:311.250000px;}
.yaa{bottom:313.950000px;}
.y7d{bottom:314.670000px;}
.y27{bottom:317.910000px;}
.yf5{bottom:324.030000px;}
.y18d{bottom:326.370000px;}
.y56{bottom:327.090000px;}
.y158{bottom:330.150000px;}
.y136{bottom:332.850000px;}
.ya9{bottom:337.935000px;}
.y7c{bottom:338.475000px;}
.y26{bottom:341.715000px;}
.yf4{bottom:345.135000px;}
.y18c{bottom:345.315000px;}
.y157{bottom:349.275000px;}
.y55{bottom:350.895000px;}
.y135{bottom:356.655000px;}
.ya8{bottom:361.695000px;}
.y7b{bottom:362.415000px;}
.y18b{bottom:364.395000px;}
.y25{bottom:365.655000px;}
.y156{bottom:368.175000px;}
.yf3{bottom:368.895000px;}
.y54{bottom:374.655000px;}
.y134{bottom:380.415000px;}
.y18a{bottom:383.295000px;}
.ya7{bottom:385.455000px;}
.y7a{bottom:386.175000px;}
.y155{bottom:387.075000px;}
.y24{bottom:389.415000px;}
.yf2{bottom:392.835000px;}
.y53{bottom:398.415000px;}
.y189{bottom:402.375000px;}
.y133{bottom:404.175000px;}
.y154{bottom:406.155000px;}
.ya6{bottom:409.215000px;}
.y79{bottom:409.935000px;}
.y23{bottom:413.175000px;}
.yf1{bottom:416.595000px;}
.y188{bottom:421.275000px;}
.y52{bottom:422.175000px;}
.y153{bottom:425.055000px;}
.y132{bottom:428.115000px;}
.ya5{bottom:432.975000px;}
.y78{bottom:433.695000px;}
.y22{bottom:436.935000px;}
.y187{bottom:440.175000px;}
.yf0{bottom:440.355000px;}
.y152{bottom:444.135000px;}
.y51{bottom:446.115000px;}
.y131{bottom:451.875000px;}
.ya4{bottom:456.915000px;}
.y77{bottom:457.635000px;}
.y186{bottom:459.255000px;}
.y21{bottom:460.875000px;}
.yef{bottom:462.855000px;}
.y151{bottom:463.035000px;}
.y50{bottom:469.875000px;}
.ybf{bottom:472.935000px;}
.ya2{bottom:474.375000px;}
.y130{bottom:475.635000px;}
.y185{bottom:478.155000px;}
.y76{bottom:481.395000px;}
.y150{bottom:481.935000px;}
.yee{bottom:483.375000px;}
.y20{bottom:484.635000px;}
.y4f{bottom:493.635000px;}
.ybe{bottom:496.695000px;}
.y184{bottom:497.235000px;}
.y12f{bottom:499.395000px;}
.y14f{bottom:501.015000px;}
.ya0{bottom:504.075000px;}
.y75{bottom:505.155000px;}
.yed{bottom:507.855000px;}
.y1f{bottom:508.395000px;}
.y10b{bottom:508.500000px;}
.y183{bottom:516.135000px;}
.y4e{bottom:517.395000px;}
.y14e{bottom:519.915000px;}
.ybd{bottom:520.635000px;}
.y12e{bottom:523.335000px;}
.y9e{bottom:526.935000px;}
.y74{bottom:528.915000px;}
.y1e{bottom:532.155000px;}
.y182{bottom:535.215000px;}
.y14d{bottom:538.995000px;}
.y4d{bottom:541.335000px;}
.ybc{bottom:544.395000px;}
.y12d{bottom:547.095000px;}
.y9c{bottom:548.535000px;}
.y19d{bottom:552.675000px;}
.y73{bottom:552.855000px;}
.y181{bottom:554.115000px;}
.y1d{bottom:556.095000px;}
.y14c{bottom:557.895000px;}
.y4c{bottom:565.095000px;}
.y19c{bottom:569.955000px;}
.y72{bottom:570.315000px;}
.y99{bottom:571.935000px;}
.y180{bottom:573.015000px;}
.y14b{bottom:576.795000px;}
.ybb{bottom:577.155000px;}
.y1c{bottom:579.855000px;}
.y71{bottom:587.625000px;}
.y19b{bottom:587.985000px;}
.y4b{bottom:588.885000px;}
.y17f{bottom:592.125000px;}
.y14a{bottom:595.905000px;}
.yba{bottom:600.945000px;}
.y1b{bottom:603.645000px;}
.y6f{bottom:604.725000px;}
.y19a{bottom:608.685000px;}
.y17e{bottom:611.025000px;}
.y4a{bottom:612.645000px;}
.y149{bottom:614.805000px;}
.y98{bottom:619.845000px;}
.yb9{bottom:620.925000px;}
.y6d{bottom:622.005000px;}
.y1a{bottom:627.405000px;}
.y12c{bottom:627.585000px;}
.y17d{bottom:630.105000px;}
.y148{bottom:633.885000px;}
.y49{bottom:636.585000px;}
.yb8{bottom:638.205000px;}
.y19e{bottom:638.925000px;}
.y97{bottom:642.345000px;}
.y6b{bottom:643.605000px;}
.y19{bottom:647.385000px;}
.y17c{bottom:649.005000px;}
.y12b{bottom:651.345000px;}
.y147{bottom:652.785000px;}
.yb7{bottom:655.845000px;}
.y48{bottom:660.345000px;}
.y96{bottom:666.105000px;}
.y18{bottom:667.185000px;}
.y17b{bottom:667.905000px;}
.yb6{bottom:671.145000px;}
.y146{bottom:671.685000px;}
.y12a{bottom:675.105000px;}
.y6a{bottom:676.365000px;}
.yd9{bottom:680.940000px;}
.y47{bottom:684.105000px;}
.ye2{bottom:685.800000px;}
.y17{bottom:686.985000px;}
.y95{bottom:689.865000px;}
.y145{bottom:690.765000px;}
.y69{bottom:698.865000px;}
.y17a{bottom:705.885000px;}
.y16{bottom:706.965000px;}
.y46{bottom:707.865000px;}
.y144{bottom:709.665000px;}
.y94{bottom:713.805000px;}
.ydf{bottom:713.985000px;}
.ye1{bottom:714.705000px;}
.y15{bottom:722.625000px;}
.y68{bottom:722.805000px;}
.y179{bottom:724.965000px;}
.y143{bottom:728.745000px;}
.y45{bottom:731.805000px;}
.yde{bottom:732.345000px;}
.y93{bottom:737.565000px;}
.yd8{bottom:742.965000px;}
.y178{bottom:743.865000px;}
.y32{bottom:744.225000px;}
.yec{bottom:745.305000px;}
.y67{bottom:746.565000px;}
.y142{bottom:747.645000px;}
.ye5{bottom:749.625000px;}
.y44{bottom:755.565000px;}
.yd7{bottom:761.145000px;}
.y92{bottom:761.325000px;}
.y177{bottom:762.765000px;}
.yeb{bottom:766.545000px;}
.ye4{bottom:767.985000px;}
.y66{bottom:770.325000px;}
.y43{bottom:779.325000px;}
.yd6{bottom:779.505000px;}
.y176{bottom:781.845000px;}
.y91{bottom:785.085000px;}
.y141{bottom:785.625000px;}
.yea{bottom:790.305000px;}
.y65{bottom:794.085000px;}
.yd5{bottom:797.685000px;}
.y175{bottom:800.745000px;}
.y14{bottom:801.465000px;}
.y42{bottom:803.085000px;}
.y140{bottom:804.525000px;}
.y90{bottom:809.025000px;}
.ye9{bottom:814.065000px;}
.ydd{bottom:815.685000px;}
.y64{bottom:818.025000px;}
.y174{bottom:819.825000px;}
.y13{bottom:820.365000px;}
.ye0{bottom:822.705000px;}
.y41{bottom:827.025000px;}
.y8f{bottom:832.830000px;}
.ydc{bottom:834.090000px;}
.ye8{bottom:836.610000px;}
.y173{bottom:838.770000px;}
.y63{bottom:841.830000px;}
.y12{bottom:844.170000px;}
.y40{bottom:850.830000px;}
.y11{bottom:856.230000px;}
.y8e{bottom:856.590000px;}
.ye7{bottom:856.950000px;}
.y172{bottom:857.670000px;}
.y62{bottom:865.590000px;}
.y3f{bottom:874.590000px;}
.y171{bottom:876.750000px;}
.y10{bottom:878.730000px;}
.y8d{bottom:880.350000px;}
.ye6{bottom:881.430000px;}
.yf9{bottom:881.820000px;}
.y61{bottom:889.350000px;}
.y199{bottom:895.290000px;}
.y170{bottom:895.650000px;}
.yf{bottom:896.010000px;}
.yd2{bottom:898.020000px;}
.y3e{bottom:898.350000px;}
.y8c{bottom:904.110000px;}
.ye{bottom:913.110000px;}
.y16f{bottom:914.730000px;}
.y3d{bottom:922.110000px;}
.yd4{bottom:927.690000px;}
.y8b{bottom:928.050000px;}
.yd{bottom:930.390000px;}
.y16e{bottom:933.630000px;}
.y129{bottom:937.050000px;}
.yc{bottom:942.450000px;}
.y3c{bottom:946.050000px;}
.y8a{bottom:951.810000px;}
.y16d{bottom:952.530000px;}
.y128{bottom:960.810000px;}
.yb{bottom:963.690000px;}
.y3b{bottom:969.810000px;}
.y16c{bottom:971.610000px;}
.y89{bottom:984.570000px;}
.ya{bottom:984.930000px;}
.y16b{bottom:990.510000px;}
.y3a{bottom:993.570000px;}
.yb5{bottom:994.830000px;}
.y9{bottom:1003.470000px;}
.y88{bottom:1008.330000px;}
.y16a{bottom:1009.590000px;}
.y39{bottom:1017.330000px;}
.y8{bottom:1027.590000px;}
.y169{bottom:1028.490000px;}
.y127{bottom:1032.270000px;}
.y38{bottom:1041.270000px;}
.y168{bottom:1047.570000px;}
.y7{bottom:1050.450000px;}
.y37{bottom:1065.030000px;}
.y167{bottom:1066.470000px;}
.y6{bottom:1067.730000px;}
.y4{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1136.700000px;}
.h12{height:17.100000px;}
.h11{height:17.280000px;}
.h13{height:17.316000px;}
.hf{height:19.620000px;}
.h10{height:20.880000px;}
.h8{height:21.336328px;}
.h17{height:21.600000px;}
.h16{height:22.680000px;}
.h18{height:22.860000px;}
.h4{height:27.432422px;}
.h19{height:29.700000px;}
.hc{height:34.380000px;}
.h15{height:34.596000px;}
.h5{height:34.855313px;}
.h9{height:42.164648px;}
.he{height:43.506914px;}
.h1a{height:46.736719px;}
.hb{height:50.800781px;}
.h1{height:53.573906px;}
.h29{height:55.291992px;}
.h6{height:55.735313px;}
.h7{height:59.383125px;}
.h2{height:59.436914px;}
.hd{height:59.439023px;}
.h1e{height:59.582250px;}
.h1c{height:61.189805px;}
.h25{height:61.337250px;}
.h20{height:63.039023px;}
.ha{height:64.546875px;}
.h1d{height:64.875938px;}
.h2b{height:65.884219px;}
.h3{height:66.519141px;}
.h2a{height:67.824844px;}
.h1f{height:70.380000px;}
.h14{height:70.606406px;}
.h22{height:71.613281px;}
.h27{height:73.722656px;}
.h23{height:174.780000px;}
.h21{height:199.260000px;}
.h24{height:199.980000px;}
.h28{height:216.000000px;}
.h2c{height:226.830000px;}
.h26{height:231.120000px;}
.h1b{height:294.120000px;}
.h0{height:1188.000000px;}
.wb{width:28.980000px;}
.w8{width:85.896000px;}
.w7{width:107.640000px;}
.wc{width:128.520000px;}
.wa{width:135.720000px;}
.w4{width:152.130000px;}
.w6{width:247.395000px;}
.w3{width:283.710000px;}
.w5{width:333.615000px;}
.we{width:602.820000px;}
.wd{width:693.720000px;}
.wf{width:742.140000px;}
.w9{width:779.760000px;}
.w2{width:806.040000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x58{left:2.376000px;}
.x28{left:8.100000px;}
.x12{left:10.800000px;}
.x42{left:12.210000px;}
.x27{left:14.220000px;}
.x19{left:15.660000px;}
.x24{left:19.080000px;}
.x29{left:21.960000px;}
.x25{left:24.660000px;}
.x17{left:32.940000px;}
.x3b{left:39.135000px;}
.x1b{left:40.320000px;}
.x1d{left:42.840000px;}
.x1c{left:47.340000px;}
.x1{left:53.999986px;}
.x2c{left:59.939986px;}
.x18{left:67.500000px;}
.x1e{left:69.300000px;}
.x20{left:71.820000px;}
.x1a{left:79.020000px;}
.x5c{left:80.999986px;}
.x6{left:84.959986px;}
.x53{left:87.660000px;}
.x5a{left:91.080000px;}
.x38{left:102.815986px;}
.x5d{left:108.035986px;}
.x8{left:109.115986px;}
.xa{left:110.195986px;}
.x4b{left:111.240000px;}
.x39{left:113.255986px;}
.x37{left:114.875986px;}
.x10{left:119.195986px;}
.x49{left:120.815986px;}
.xd{left:122.615986px;}
.x4{left:124.055986px;}
.xf{left:128.915986px;}
.xb{left:130.715986px;}
.x11{left:133.415986px;}
.x21{left:138.810000px;}
.x57{left:141.090000px;}
.x9{left:142.775986px;}
.x4c{left:153.645000px;}
.x2f{left:155.880000px;}
.x7{left:157.169986px;}
.x33{left:161.565000px;}
.x30{left:163.470000px;}
.x32{left:169.200000px;}
.x47{left:170.489986px;}
.x4d{left:200.850000px;}
.x1f{left:211.709986px;}
.x31{left:218.595000px;}
.x36{left:236.189986px;}
.x51{left:247.215000px;}
.x14{left:262.109986px;}
.x3a{left:264.060000px;}
.x4f{left:274.605000px;}
.x15{left:277.275000px;}
.x4e{left:286.350000px;}
.x34{left:291.960000px;}
.xc{left:294.554986px;}
.x2a{left:313.814986px;}
.x4a{left:316.694986px;}
.x5b{left:321.150000px;}
.x2e{left:338.294986px;}
.x46{left:346.754986px;}
.x59{left:357.690000px;}
.x3{left:361.154986px;}
.x3e{left:370.334986px;}
.x3c{left:372.134986px;}
.x5{left:376.814986px;}
.xe{left:387.074986px;}
.x3d{left:400.934986px;}
.x13{left:402.945000px;}
.x22{left:405.435000px;}
.x56{left:438.735000px;}
.x2{left:459.104986px;}
.x52{left:503.250000px;}
.x55{left:533.775000px;}
.x50{left:553.965000px;}
.x16{left:560.985000px;}
.x35{left:575.025000px;}
.x3f{left:597.884986px;}
.x40{left:602.924986px;}
.x54{left:628.920000px;}
.x23{left:652.830000px;}
.x41{left:712.080000px;}
.x43{left:729.689986px;}
.x44{left:741.209986px;}
.x26{left:760.470000px;}
.x45{left:806.729986px;}
.x48{left:830.339986px;}
.x2d{left:849.419986px;}
.x2b{left:850.679986px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v7{vertical-align:-5.760000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.200000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.lsd{letter-spacing:-2.240000pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.036480pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.033280pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls2c{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.135467pt;}
.ls1e{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls15{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.840000pt;}
.ls22{letter-spacing:4.480000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls27{letter-spacing:6.031360pt;}
.ls16{letter-spacing:9.760000pt;}
.ls1a{letter-spacing:11.040000pt;}
.ls28{letter-spacing:14.672640pt;}
.ls25{letter-spacing:35.471360pt;}
.ls26{letter-spacing:40.912640pt;}
.ls4{letter-spacing:63.520000pt;}
.ls9{letter-spacing:64.154880pt;}
.ls8{letter-spacing:64.800000pt;}
.ls6{letter-spacing:82.490880pt;}
.ls5{letter-spacing:82.720000pt;}
.ls7{letter-spacing:83.290880pt;}
.wsb{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-14.855467pt;}
.ws1d{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-13.808000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.968640pt;}
.ws13{word-spacing:-11.908053pt;}
.ws1{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:33.854720pt;}
.ws10{word-spacing:34.389120pt;}
.ws14{word-spacing:53.589120pt;}
.ws16{word-spacing:199.409707pt;}
.ws18{word-spacing:302.842667pt;}
._11{margin-left:-4.672000pt;}
._10{margin-left:-3.712000pt;}
._e{margin-left:-2.624000pt;}
._1{margin-left:-1.345493pt;}
._0{width:1.009280pt;}
._6{width:1.900373pt;}
._4{width:2.899627pt;}
._5{width:3.887787pt;}
._2{width:5.518080pt;}
._7{width:6.448853pt;}
._f{width:8.161707pt;}
._d{width:9.552213pt;}
._8{width:11.072000pt;}
._9{width:12.032000pt;}
._a{width:12.928000pt;}
._b{width:14.436053pt;}
._c{width:17.192107pt;}
._12{width:18.368000pt;}
._13{width:19.281280pt;}
._17{width:21.184000pt;}
._18{width:22.546773pt;}
._1a{width:24.788480pt;}
._1b{width:25.889707pt;}
._19{width:28.032000pt;}
._3{width:128.178133pt;}
._14{width:210.807680pt;}
._15{width:239.209387pt;}
._16{width:316.433280pt;}
.fs6{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs8{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y1ae{bottom:-77.626667pt;}
.y1ad{bottom:-43.680000pt;}
.y36{bottom:-28.960000pt;}
.y35{bottom:-12.960000pt;}
.y1ac{bottom:-10.400000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.720000pt;}
.y70{bottom:2.880000pt;}
.y6c{bottom:4.960000pt;}
.y1ab{bottom:5.120000pt;}
.y101{bottom:5.533333pt;}
.y6e{bottom:6.080000pt;}
.y9f{bottom:6.880000pt;}
.y9d{bottom:7.680000pt;}
.ya1{bottom:8.000000pt;}
.y10c{bottom:8.066667pt;}
.y9a{bottom:10.266667pt;}
.ya3{bottom:13.920000pt;}
.yfa{bottom:15.360000pt;}
.y124{bottom:17.504000pt;}
.y33{bottom:18.080000pt;}
.y9b{bottom:18.266667pt;}
.yce{bottom:20.133333pt;}
.y1aa{bottom:20.480000pt;}
.y5{bottom:21.600000pt;}
.yd3{bottom:26.693333pt;}
.y10d{bottom:30.333333pt;}
.yc7{bottom:31.013333pt;}
.yff{bottom:31.906667pt;}
.y10a{bottom:33.146667pt;}
.y114{bottom:35.293333pt;}
.y1a9{bottom:35.840000pt;}
.y120{bottom:36.576000pt;}
.yfb{bottom:49.093333pt;}
.y109{bottom:49.413333pt;}
.y1a8{bottom:51.040000pt;}
.yb4{bottom:51.520000pt;}
.y10e{bottom:52.640000pt;}
.y11b{bottom:52.733333pt;}
.yc5{bottom:54.400000pt;}
.y166{bottom:57.280000pt;}
.y87{bottom:60.160000pt;}
.yf8{bottom:60.320000pt;}
.y108{bottom:61.573333pt;}
.y11d{bottom:62.880000pt;}
.y31{bottom:63.040000pt;}
.y121{bottom:63.520000pt;}
.y1a7{bottom:66.400000pt;}
.y11a{bottom:69.026667pt;}
.yda{bottom:69.053333pt;}
.y60{bottom:71.040000pt;}
.yb3{bottom:72.640000pt;}
.y165{bottom:74.240000pt;}
.y10f{bottom:74.906667pt;}
.yc4{bottom:75.520000pt;}
.yc8{bottom:76.666667pt;}
.yf7{bottom:77.280000pt;}
.y107{bottom:77.853333pt;}
.y86{bottom:81.312000pt;}
.y1a6{bottom:81.760000pt;}
.yfc{bottom:82.813333pt;}
.y30{bottom:84.192000pt;}
.y11e{bottom:85.573333pt;}
.y122{bottom:86.240000pt;}
.y198{bottom:87.712000pt;}
.ye3{bottom:89.373333pt;}
.yf6{bottom:90.912000pt;}
.y11c{bottom:91.040000pt;}
.y164{bottom:91.072000pt;}
.y100{bottom:92.026667pt;}
.y5f{bottom:92.192000pt;}
.yb2{bottom:93.792000pt;}
.y106{bottom:94.106667pt;}
.y119{bottom:94.173333pt;}
.yc3{bottom:96.672000pt;}
.y1a5{bottom:97.120000pt;}
.y110{bottom:97.213333pt;}
.y85{bottom:102.432000pt;}
.y197{bottom:104.672000pt;}
.ycc{bottom:105.146667pt;}
.y2f{bottom:105.312000pt;}
.y13f{bottom:105.472000pt;}
.y105{bottom:106.266667pt;}
.y163{bottom:108.032000pt;}
.y11f{bottom:108.293333pt;}
.y123{bottom:108.960000pt;}
.y118{bottom:110.466667pt;}
.yd1{bottom:112.293333pt;}
.y1a4{bottom:112.480000pt;}
.y5e{bottom:113.472000pt;}
.yb1{bottom:115.072000pt;}
.yfd{bottom:116.546667pt;}
.yc2{bottom:117.792000pt;}
.y111{bottom:119.520000pt;}
.y196{bottom:121.472000pt;}
.ycd{bottom:121.600000pt;}
.yc9{bottom:122.333333pt;}
.y104{bottom:122.560000pt;}
.y84{bottom:123.552000pt;}
.y162{bottom:124.832000pt;}
.y13e{bottom:126.592000pt;}
.y1a3{bottom:127.680000pt;}
.y2e{bottom:134.426667pt;}
.y117{bottom:135.653333pt;}
.yb0{bottom:136.186667pt;}
.yd0{bottom:136.386667pt;}
.yc1{bottom:138.266667pt;}
.y103{bottom:138.813333pt;}
.y161{bottom:141.626667pt;}
.y112{bottom:141.786667pt;}
.y5d{bottom:142.586667pt;}
.y1a2{bottom:143.040000pt;}
.y13d{bottom:147.706667pt;}
.y126{bottom:150.013333pt;}
.yfe{bottom:150.266667pt;}
.y116{bottom:151.906667pt;}
.yc0{bottom:152.026667pt;}
.yc6{bottom:152.800000pt;}
.y83{bottom:152.826667pt;}
.y102{bottom:155.106667pt;}
.y195{bottom:155.226667pt;}
.y2d{bottom:155.706667pt;}
.yaf{bottom:157.306667pt;}
.y1a1{bottom:158.400000pt;}
.y160{bottom:158.586667pt;}
.y5c{bottom:163.706667pt;}
.y113{bottom:164.093333pt;}
.ydb{bottom:167.493333pt;}
.y125{bottom:167.933333pt;}
.yca{bottom:168.000000pt;}
.y13c{bottom:168.826667pt;}
.y194{bottom:172.026667pt;}
.y1a0{bottom:173.800000pt;}
.y82{bottom:173.946667pt;}
.y15f{bottom:175.386667pt;}
.y2c{bottom:176.826667pt;}
.y115{bottom:180.186667pt;}
.y5b{bottom:184.826667pt;}
.yae{bottom:186.426667pt;}
.y193{bottom:188.986667pt;}
.y19f{bottom:189.160000pt;}
.y13b{bottom:190.106667pt;}
.y15e{bottom:192.346667pt;}
.y81{bottom:195.066667pt;}
.y2b{bottom:197.946667pt;}
.y192{bottom:205.786667pt;}
.y5a{bottom:206.106667pt;}
.yad{bottom:207.706667pt;}
.y15d{bottom:209.146667pt;}
.y13a{bottom:211.226667pt;}
.ycb{bottom:213.666667pt;}
.y80{bottom:216.186667pt;}
.y2a{bottom:219.066667pt;}
.y191{bottom:222.586667pt;}
.y15c{bottom:225.946667pt;}
.y59{bottom:227.226667pt;}
.y139{bottom:232.346667pt;}
.yac{bottom:236.826667pt;}
.y7f{bottom:237.466667pt;}
.ycf{bottom:238.053333pt;}
.y190{bottom:239.546667pt;}
.y29{bottom:240.346667pt;}
.y15b{bottom:242.906667pt;}
.y58{bottom:248.346667pt;}
.y138{bottom:253.466667pt;}
.y18f{bottom:256.346667pt;}
.yab{bottom:257.946667pt;}
.y7e{bottom:258.586667pt;}
.y15a{bottom:259.706667pt;}
.y28{bottom:261.466667pt;}
.y57{bottom:269.466667pt;}
.y18e{bottom:273.306667pt;}
.y137{bottom:274.746667pt;}
.y159{bottom:276.666667pt;}
.yaa{bottom:279.066667pt;}
.y7d{bottom:279.706667pt;}
.y27{bottom:282.586667pt;}
.yf5{bottom:288.026667pt;}
.y18d{bottom:290.106667pt;}
.y56{bottom:290.746667pt;}
.y158{bottom:293.466667pt;}
.y136{bottom:295.866667pt;}
.ya9{bottom:300.386667pt;}
.y7c{bottom:300.866667pt;}
.y26{bottom:303.746667pt;}
.yf4{bottom:306.786667pt;}
.y18c{bottom:306.946667pt;}
.y157{bottom:310.466667pt;}
.y55{bottom:311.906667pt;}
.y135{bottom:317.026667pt;}
.ya8{bottom:321.506667pt;}
.y7b{bottom:322.146667pt;}
.y18b{bottom:323.906667pt;}
.y25{bottom:325.026667pt;}
.y156{bottom:327.266667pt;}
.yf3{bottom:327.906667pt;}
.y54{bottom:333.026667pt;}
.y134{bottom:338.146667pt;}
.y18a{bottom:340.706667pt;}
.ya7{bottom:342.626667pt;}
.y7a{bottom:343.266667pt;}
.y155{bottom:344.066667pt;}
.y24{bottom:346.146667pt;}
.yf2{bottom:349.186667pt;}
.y53{bottom:354.146667pt;}
.y189{bottom:357.666667pt;}
.y133{bottom:359.266667pt;}
.y154{bottom:361.026667pt;}
.ya6{bottom:363.746667pt;}
.y79{bottom:364.386667pt;}
.y23{bottom:367.266667pt;}
.yf1{bottom:370.306667pt;}
.y188{bottom:374.466667pt;}
.y52{bottom:375.266667pt;}
.y153{bottom:377.826667pt;}
.y132{bottom:380.546667pt;}
.ya5{bottom:384.866667pt;}
.y78{bottom:385.506667pt;}
.y22{bottom:388.386667pt;}
.y187{bottom:391.266667pt;}
.yf0{bottom:391.426667pt;}
.y152{bottom:394.786667pt;}
.y51{bottom:396.546667pt;}
.y131{bottom:401.666667pt;}
.ya4{bottom:406.146667pt;}
.y77{bottom:406.786667pt;}
.y186{bottom:408.226667pt;}
.y21{bottom:409.666667pt;}
.yef{bottom:411.426667pt;}
.y151{bottom:411.586667pt;}
.y50{bottom:417.666667pt;}
.ybf{bottom:420.386667pt;}
.ya2{bottom:421.666667pt;}
.y130{bottom:422.786667pt;}
.y185{bottom:425.026667pt;}
.y76{bottom:427.906667pt;}
.y150{bottom:428.386667pt;}
.yee{bottom:429.666667pt;}
.y20{bottom:430.786667pt;}
.y4f{bottom:438.786667pt;}
.ybe{bottom:441.506667pt;}
.y184{bottom:441.986667pt;}
.y12f{bottom:443.906667pt;}
.y14f{bottom:445.346667pt;}
.ya0{bottom:448.066667pt;}
.y75{bottom:449.026667pt;}
.yed{bottom:451.426667pt;}
.y1f{bottom:451.906667pt;}
.y10b{bottom:452.000000pt;}
.y183{bottom:458.786667pt;}
.y4e{bottom:459.906667pt;}
.y14e{bottom:462.146667pt;}
.ybd{bottom:462.786667pt;}
.y12e{bottom:465.186667pt;}
.y9e{bottom:468.386667pt;}
.y74{bottom:470.146667pt;}
.y1e{bottom:473.026667pt;}
.y182{bottom:475.746667pt;}
.y14d{bottom:479.106667pt;}
.y4d{bottom:481.186667pt;}
.ybc{bottom:483.906667pt;}
.y12d{bottom:486.306667pt;}
.y9c{bottom:487.586667pt;}
.y19d{bottom:491.266667pt;}
.y73{bottom:491.426667pt;}
.y181{bottom:492.546667pt;}
.y1d{bottom:494.306667pt;}
.y14c{bottom:495.906667pt;}
.y4c{bottom:502.306667pt;}
.y19c{bottom:506.626667pt;}
.y72{bottom:506.946667pt;}
.y99{bottom:508.386667pt;}
.y180{bottom:509.346667pt;}
.y14b{bottom:512.706667pt;}
.ybb{bottom:513.026667pt;}
.y1c{bottom:515.426667pt;}
.y71{bottom:522.333333pt;}
.y19b{bottom:522.653333pt;}
.y4b{bottom:523.453333pt;}
.y17f{bottom:526.333333pt;}
.y14a{bottom:529.693333pt;}
.yba{bottom:534.173333pt;}
.y1b{bottom:536.573333pt;}
.y6f{bottom:537.533333pt;}
.y19a{bottom:541.053333pt;}
.y17e{bottom:543.133333pt;}
.y4a{bottom:544.573333pt;}
.y149{bottom:546.493333pt;}
.y98{bottom:550.973333pt;}
.yb9{bottom:551.933333pt;}
.y6d{bottom:552.893333pt;}
.y1a{bottom:557.693333pt;}
.y12c{bottom:557.853333pt;}
.y17d{bottom:560.093333pt;}
.y148{bottom:563.453333pt;}
.y49{bottom:565.853333pt;}
.yb8{bottom:567.293333pt;}
.y19e{bottom:567.933333pt;}
.y97{bottom:570.973333pt;}
.y6b{bottom:572.093333pt;}
.y19{bottom:575.453333pt;}
.y17c{bottom:576.893333pt;}
.y12b{bottom:578.973333pt;}
.y147{bottom:580.253333pt;}
.yb7{bottom:582.973333pt;}
.y48{bottom:586.973333pt;}
.y96{bottom:592.093333pt;}
.y18{bottom:593.053333pt;}
.y17b{bottom:593.693333pt;}
.yb6{bottom:596.573333pt;}
.y146{bottom:597.053333pt;}
.y12a{bottom:600.093333pt;}
.y6a{bottom:601.213333pt;}
.yd9{bottom:605.280000pt;}
.y47{bottom:608.093333pt;}
.ye2{bottom:609.600000pt;}
.y17{bottom:610.653333pt;}
.y95{bottom:613.213333pt;}
.y145{bottom:614.013333pt;}
.y69{bottom:621.213333pt;}
.y17a{bottom:627.453333pt;}
.y16{bottom:628.413333pt;}
.y46{bottom:629.213333pt;}
.y144{bottom:630.813333pt;}
.y94{bottom:634.493333pt;}
.ydf{bottom:634.653333pt;}
.ye1{bottom:635.293333pt;}
.y15{bottom:642.333333pt;}
.y68{bottom:642.493333pt;}
.y179{bottom:644.413333pt;}
.y143{bottom:647.773333pt;}
.y45{bottom:650.493333pt;}
.yde{bottom:650.973333pt;}
.y93{bottom:655.613333pt;}
.yd8{bottom:660.413333pt;}
.y178{bottom:661.213333pt;}
.y32{bottom:661.533333pt;}
.yec{bottom:662.493333pt;}
.y67{bottom:663.613333pt;}
.y142{bottom:664.573333pt;}
.ye5{bottom:666.333333pt;}
.y44{bottom:671.613333pt;}
.yd7{bottom:676.573333pt;}
.y92{bottom:676.733333pt;}
.y177{bottom:678.013333pt;}
.yeb{bottom:681.373333pt;}
.ye4{bottom:682.653333pt;}
.y66{bottom:684.733333pt;}
.y43{bottom:692.733333pt;}
.yd6{bottom:692.893333pt;}
.y176{bottom:694.973333pt;}
.y91{bottom:697.853333pt;}
.y141{bottom:698.333333pt;}
.yea{bottom:702.493333pt;}
.y65{bottom:705.853333pt;}
.yd5{bottom:709.053333pt;}
.y175{bottom:711.773333pt;}
.y14{bottom:712.413333pt;}
.y42{bottom:713.853333pt;}
.y140{bottom:715.133333pt;}
.y90{bottom:719.133333pt;}
.ye9{bottom:723.613333pt;}
.ydd{bottom:725.053333pt;}
.y64{bottom:727.133333pt;}
.y174{bottom:728.733333pt;}
.y13{bottom:729.213333pt;}
.ye0{bottom:731.293333pt;}
.y41{bottom:735.133333pt;}
.y8f{bottom:740.293333pt;}
.ydc{bottom:741.413333pt;}
.ye8{bottom:743.653333pt;}
.y173{bottom:745.573333pt;}
.y63{bottom:748.293333pt;}
.y12{bottom:750.373333pt;}
.y40{bottom:756.293333pt;}
.y11{bottom:761.093333pt;}
.y8e{bottom:761.413333pt;}
.ye7{bottom:761.733333pt;}
.y172{bottom:762.373333pt;}
.y62{bottom:769.413333pt;}
.y3f{bottom:777.413333pt;}
.y171{bottom:779.333333pt;}
.y10{bottom:781.093333pt;}
.y8d{bottom:782.533333pt;}
.ye6{bottom:783.493333pt;}
.yf9{bottom:783.840000pt;}
.y61{bottom:790.533333pt;}
.y199{bottom:795.813333pt;}
.y170{bottom:796.133333pt;}
.yf{bottom:796.453333pt;}
.yd2{bottom:798.240000pt;}
.y3e{bottom:798.533333pt;}
.y8c{bottom:803.653333pt;}
.ye{bottom:811.653333pt;}
.y16f{bottom:813.093333pt;}
.y3d{bottom:819.653333pt;}
.yd4{bottom:824.613333pt;}
.y8b{bottom:824.933333pt;}
.yd{bottom:827.013333pt;}
.y16e{bottom:829.893333pt;}
.y129{bottom:832.933333pt;}
.yc{bottom:837.733333pt;}
.y3c{bottom:840.933333pt;}
.y8a{bottom:846.053333pt;}
.y16d{bottom:846.693333pt;}
.y128{bottom:854.053333pt;}
.yb{bottom:856.613333pt;}
.y3b{bottom:862.053333pt;}
.y16c{bottom:863.653333pt;}
.y89{bottom:875.173333pt;}
.ya{bottom:875.493333pt;}
.y16b{bottom:880.453333pt;}
.y3a{bottom:883.173333pt;}
.yb5{bottom:884.293333pt;}
.y9{bottom:891.973333pt;}
.y88{bottom:896.293333pt;}
.y16a{bottom:897.413333pt;}
.y39{bottom:904.293333pt;}
.y8{bottom:913.413333pt;}
.y169{bottom:914.213333pt;}
.y127{bottom:917.573333pt;}
.y38{bottom:925.573333pt;}
.y168{bottom:931.173333pt;}
.y7{bottom:933.733333pt;}
.y37{bottom:946.693333pt;}
.y167{bottom:947.973333pt;}
.y6{bottom:949.093333pt;}
.y4{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1010.400000pt;}
.h12{height:15.200000pt;}
.h11{height:15.360000pt;}
.h13{height:15.392000pt;}
.hf{height:17.440000pt;}
.h10{height:18.560000pt;}
.h8{height:18.965625pt;}
.h17{height:19.200000pt;}
.h16{height:20.160000pt;}
.h18{height:20.320000pt;}
.h4{height:24.384375pt;}
.h19{height:26.400000pt;}
.hc{height:30.560000pt;}
.h15{height:30.752000pt;}
.h5{height:30.982500pt;}
.h9{height:37.479688pt;}
.he{height:38.672812pt;}
.h1a{height:41.543750pt;}
.hb{height:45.156250pt;}
.h1{height:47.621250pt;}
.h29{height:49.148438pt;}
.h6{height:49.542500pt;}
.h7{height:52.785000pt;}
.h2{height:52.832812pt;}
.hd{height:52.834688pt;}
.h1e{height:52.962000pt;}
.h1c{height:54.390938pt;}
.h25{height:54.522000pt;}
.h20{height:56.034688pt;}
.ha{height:57.375000pt;}
.h1d{height:57.667500pt;}
.h2b{height:58.563750pt;}
.h3{height:59.128125pt;}
.h2a{height:60.288750pt;}
.h1f{height:62.560000pt;}
.h14{height:62.761250pt;}
.h22{height:63.656250pt;}
.h27{height:65.531250pt;}
.h23{height:155.360000pt;}
.h21{height:177.120000pt;}
.h24{height:177.760000pt;}
.h28{height:192.000000pt;}
.h2c{height:201.626667pt;}
.h26{height:205.440000pt;}
.h1b{height:261.440000pt;}
.h0{height:1056.000000pt;}
.wb{width:25.760000pt;}
.w8{width:76.352000pt;}
.w7{width:95.680000pt;}
.wc{width:114.240000pt;}
.wa{width:120.640000pt;}
.w4{width:135.226667pt;}
.w6{width:219.906667pt;}
.w3{width:252.186667pt;}
.w5{width:296.546667pt;}
.we{width:535.840000pt;}
.wd{width:616.640000pt;}
.wf{width:659.680000pt;}
.w9{width:693.120000pt;}
.w2{width:716.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x58{left:2.112000pt;}
.x28{left:7.200000pt;}
.x12{left:9.600000pt;}
.x42{left:10.853333pt;}
.x27{left:12.640000pt;}
.x19{left:13.920000pt;}
.x24{left:16.960000pt;}
.x29{left:19.520000pt;}
.x25{left:21.920000pt;}
.x17{left:29.280000pt;}
.x3b{left:34.786667pt;}
.x1b{left:35.840000pt;}
.x1d{left:38.080000pt;}
.x1c{left:42.080000pt;}
.x1{left:47.999988pt;}
.x2c{left:53.279988pt;}
.x18{left:60.000000pt;}
.x1e{left:61.600000pt;}
.x20{left:63.840000pt;}
.x1a{left:70.240000pt;}
.x5c{left:71.999988pt;}
.x6{left:75.519988pt;}
.x53{left:77.920000pt;}
.x5a{left:80.960000pt;}
.x38{left:91.391988pt;}
.x5d{left:96.031988pt;}
.x8{left:96.991988pt;}
.xa{left:97.951988pt;}
.x4b{left:98.880000pt;}
.x39{left:100.671988pt;}
.x37{left:102.111988pt;}
.x10{left:105.951988pt;}
.x49{left:107.391988pt;}
.xd{left:108.991988pt;}
.x4{left:110.271988pt;}
.xf{left:114.591988pt;}
.xb{left:116.191988pt;}
.x11{left:118.591988pt;}
.x21{left:123.386667pt;}
.x57{left:125.413333pt;}
.x9{left:126.911988pt;}
.x4c{left:136.573333pt;}
.x2f{left:138.560000pt;}
.x7{left:139.706655pt;}
.x33{left:143.613333pt;}
.x30{left:145.306667pt;}
.x32{left:150.400000pt;}
.x47{left:151.546655pt;}
.x4d{left:178.533333pt;}
.x1f{left:188.186655pt;}
.x31{left:194.306667pt;}
.x36{left:209.946655pt;}
.x51{left:219.746667pt;}
.x14{left:232.986655pt;}
.x3a{left:234.720000pt;}
.x4f{left:244.093333pt;}
.x15{left:246.466667pt;}
.x4e{left:254.533333pt;}
.x34{left:259.520000pt;}
.xc{left:261.826655pt;}
.x2a{left:278.946655pt;}
.x4a{left:281.506655pt;}
.x5b{left:285.466667pt;}
.x2e{left:300.706655pt;}
.x46{left:308.226655pt;}
.x59{left:317.946667pt;}
.x3{left:321.026655pt;}
.x3e{left:329.186655pt;}
.x3c{left:330.786655pt;}
.x5{left:334.946655pt;}
.xe{left:344.066655pt;}
.x3d{left:356.386655pt;}
.x13{left:358.173333pt;}
.x22{left:360.386667pt;}
.x56{left:389.986667pt;}
.x2{left:408.093321pt;}
.x52{left:447.333333pt;}
.x55{left:474.466667pt;}
.x50{left:492.413333pt;}
.x16{left:498.653333pt;}
.x35{left:511.133333pt;}
.x3f{left:531.453321pt;}
.x40{left:535.933321pt;}
.x54{left:559.040000pt;}
.x23{left:580.293333pt;}
.x41{left:632.960000pt;}
.x43{left:648.613321pt;}
.x44{left:658.853321pt;}
.x26{left:675.973333pt;}
.x45{left:717.093321pt;}
.x48{left:738.079988pt;}
.x2d{left:755.039988pt;}
.x2b{left:756.159988pt;}
}




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