
    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_3d994a787463eb2fdcc96fdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_1a9fb6bc01de386af66505cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020020;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_180cac8f06aafd4a4f4d76d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c2a9357a02a5be857b8dc30d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls21{letter-spacing:-4.371840px;}
.ls2e{letter-spacing:-3.709440px;}
.ls10{letter-spacing:-2.980800px;}
.ls12{letter-spacing:-2.252160px;}
.lsd{letter-spacing:-1.523520px;}
.ls19{letter-spacing:-0.993600px;}
.ls37{letter-spacing:-0.927360px;}
.ls1a{letter-spacing:-0.794880px;}
.ls18{letter-spacing:-0.728640px;}
.ls36{letter-spacing:-0.662400px;}
.lsa{letter-spacing:-0.596160px;}
.ls16{letter-spacing:-0.529920px;}
.ls20{letter-spacing:-0.463680px;}
.ls11{letter-spacing:-0.397440px;}
.ls32{letter-spacing:-0.331200px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.272160px;}
.ls23{letter-spacing:-0.264960px;}
.ls1{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.198720px;}
.ls31{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.026496px;}
.ls3{letter-spacing:0.066240px;}
.ls9{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.198720px;}
.ls7{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.331200px;}
.ls2a{letter-spacing:0.397440px;}
.lse{letter-spacing:0.662400px;}
.ls1b{letter-spacing:0.715392px;}
.ls13{letter-spacing:1.324800px;}
.ls30{letter-spacing:1.391040px;}
.ls1d{letter-spacing:2.053440px;}
.ls38{letter-spacing:2.782080px;}
.lsc{letter-spacing:3.510720px;}
.ls24{letter-spacing:4.239360px;}
.ls2f{letter-spacing:4.968000px;}
.lsf{letter-spacing:5.696640px;}
.ls14{letter-spacing:6.425280px;}
.ls33{letter-spacing:7.087680px;}
.ls34{letter-spacing:7.816320px;}
.ls1f{letter-spacing:10.002240px;}
.ls1e{letter-spacing:10.764000px;}
.ls28{letter-spacing:12.188160px;}
.ls17{letter-spacing:12.850560px;}
.ls2b{letter-spacing:14.307840px;}
.ls25{letter-spacing:15.036480px;}
.ls26{letter-spacing:17.222400px;}
.ls1c{letter-spacing:20.799360px;}
.ls2d{letter-spacing:21.528000px;}
.ls29{letter-spacing:32.325120px;}
.ls2c{letter-spacing:39.545280px;}
.ls0{letter-spacing:42.062400px;}
.ls27{letter-spacing:42.393600px;}
.ls22{letter-spacing:62.928000px;}
.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;}
}
.ws2c{word-spacing:-42.393600px;}
.ws31{word-spacing:-39.545280px;}
.ws2e{word-spacing:-32.325120px;}
.ws33{word-spacing:-21.528000px;}
.ws3{word-spacing:-19.656000px;}
.ws1{word-spacing:-18.414720px;}
.ws23{word-spacing:-18.348480px;}
.ws2{word-spacing:-18.282240px;}
.ws1e{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.149760px;}
.ws3b{word-spacing:-18.110016px;}
.ws4{word-spacing:-18.083520px;}
.ws22{word-spacing:-17.884800px;}
.ws2b{word-spacing:-17.818560px;}
.ws37{word-spacing:-17.752320px;}
.ws1f{word-spacing:-17.686080px;}
.ws21{word-spacing:-17.619840px;}
.ws16{word-spacing:-17.553600px;}
.ws5{word-spacing:-17.487360px;}
.ws3c{word-spacing:-17.421120px;}
.ws29{word-spacing:-17.222400px;}
.ws27{word-spacing:-15.036480px;}
.ws30{word-spacing:-14.307840px;}
.ws1a{word-spacing:-12.850560px;}
.ws2d{word-spacing:-12.188160px;}
.ws3a{word-spacing:-7.816320px;}
.ws1b{word-spacing:-6.425280px;}
.ws12{word-spacing:-5.696640px;}
.ws36{word-spacing:-4.968000px;}
.ws26{word-spacing:-4.239360px;}
.ws28{word-spacing:-3.510720px;}
.ws3e{word-spacing:-2.782080px;}
.ws32{word-spacing:-2.053440px;}
.ws38{word-spacing:-1.391040px;}
.ws11{word-spacing:-0.662400px;}
.ws34{word-spacing:-0.529920px;}
.ws2f{word-spacing:-0.397440px;}
.ws8{word-spacing:-0.331200px;}
.wsa{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.198720px;}
.wsc{word-spacing:-0.132480px;}
.ws17{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.066240px;}
.wsb{word-spacing:0.072000px;}
.ws39{word-spacing:0.132480px;}
.ws7{word-spacing:0.198720px;}
.ws2a{word-spacing:0.264960px;}
.ws18{word-spacing:0.272160px;}
.ws14{word-spacing:0.397440px;}
.ws25{word-spacing:0.463680px;}
.ws19{word-spacing:0.529920px;}
.wsd{word-spacing:0.596160px;}
.ws3f{word-spacing:0.662400px;}
.ws1c{word-spacing:0.728640px;}
.ws20{word-spacing:0.794880px;}
.ws3d{word-spacing:0.927360px;}
.ws1d{word-spacing:0.993600px;}
.ws10{word-spacing:1.523520px;}
.ws15{word-spacing:2.252160px;}
.ws13{word-spacing:2.980800px;}
.ws35{word-spacing:3.709440px;}
.ws24{word-spacing:4.371840px;}
._25{margin-left:-42.645312px;}
._26{margin-left:-41.585472px;}
._2f{margin-left:-40.260672px;}
._2d{margin-left:-39.147840px;}
._2a{margin-left:-33.312096px;}
._28{margin-left:-31.927680px;}
._32{margin-left:-22.548096px;}
._31{margin-left:-21.375648px;}
._24{margin-left:-18.181152px;}
._23{margin-left:-16.316640px;}
._22{margin-left:-15.195456px;}
._12{margin-left:-13.248000px;}
._11{margin-left:-12.171168px;}
._1d{margin-left:-10.822176px;}
._34{margin-left:-9.546624px;}
._33{margin-left:-8.466912px;}
._9{margin-left:-6.518016px;}
._8{margin-left:-5.511168px;}
._7{margin-left:-3.722688px;}
._2{margin-left:-2.219040px;}
._1{margin-left:-1.159200px;}
._0{width:1.224000px;}
._3{width:2.321280px;}
._4{width:4.014144px;}
._5{width:5.391936px;}
._6{width:6.545088px;}
._a{width:7.713504px;}
._16{width:8.748576px;}
._e{width:9.995616px;}
._f{width:11.333664px;}
._10{width:12.706272px;}
._19{width:14.175360px;}
._1a{width:15.302016px;}
._b{width:17.010432px;}
._21{width:19.275840px;}
._1c{width:20.302560px;}
._d{width:21.607488px;}
._c{width:23.276736px;}
._18{width:24.303456px;}
._17{width:25.522272px;}
._30{width:27.184896px;}
._20{width:29.324448px;}
._1f{width:30.741984px;}
._29{width:32.020416px;}
._2b{width:33.245856px;}
._15{width:37.657440px;}
._2e{width:39.419424px;}
._1e{width:41.143104px;}
._14{width:42.353856px;}
._13{width:43.970112px;}
._1b{width:48.836448px;}
._27{width:51.541344px;}
._2c{width:54.065088px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:45.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y193{bottom:4.680000px;}
.y1c1{bottom:6.840000px;}
.y91{bottom:115.926480px;}
.y1a{bottom:117.540000px;}
.y162{bottom:120.518640px;}
.yc2{bottom:128.370960px;}
.y1dd{bottom:130.860000px;}
.y34{bottom:131.368320px;}
.y1a0{bottom:134.626320px;}
.y111{bottom:135.145440px;}
.y103{bottom:135.707760px;}
.y12b{bottom:135.838080px;}
.y90{bottom:138.431520px;}
.y113{bottom:140.754960px;}
.ydc{bottom:141.598800px;}
.y161{bottom:143.023680px;}
.y1be{bottom:143.094960px;}
.y59{bottom:147.295440px;}
.yf8{bottom:152.144640px;}
.y180{bottom:153.970560px;}
.y19f{bottom:157.131360px;}
.y102{bottom:158.212800px;}
.y143{bottom:159.660000px;}
.y8f{bottom:161.118720px;}
.y33{bottom:161.242560px;}
.yc1{bottom:162.931680px;}
.y6b{bottom:163.143360px;}
.y1dc{bottom:163.980000px;}
.y1bd{bottom:165.600000px;}
.y19{bottom:167.400000px;}
.y160{bottom:177.584400px;}
.y19e{bottom:179.818560px;}
.y101{bottom:180.900000px;}
.y12a{bottom:182.636640px;}
.y8e{bottom:183.623760px;}
.ydb{bottom:183.710880px;}
.yf7{bottom:184.552560px;}
.yc0{bottom:185.436720px;}
.y6a{bottom:185.648400px;}
.y17f{bottom:188.531280px;}
.y58{bottom:193.911840px;}
.y1db{bottom:196.920000px;}
.y15f{bottom:200.089440px;}
.y1bc{bottom:204.840000px;}
.y8d{bottom:206.128800px;}
.yf6{bottom:207.239760px;}
.y69{bottom:208.153440px;}
.y132{bottom:208.915200px;}
.y142{bottom:209.520000px;}
.y19d{bottom:214.379280px;}
.y100{bottom:215.460000px;}
.y18{bottom:217.440000px;}
.yda{bottom:218.271600px;}
.ybf{bottom:219.997440px;}
.y15e{bottom:222.594480px;}
.y17e{bottom:223.092000px;}
.y129{bottom:229.435200px;}
.yf5{bottom:229.744800px;}
.y1da{bottom:229.860000px;}
.y57{bottom:236.023920px;}
.y8c{bottom:240.689520px;}
.yd9{bottom:240.776640px;}
.ybe{bottom:242.502480px;}
.y68{bottom:242.714160px;}
.y15d{bottom:245.281680px;}
.yff{bottom:246.782160px;}
.y1bb{bottom:246.954960px;}
.y19c{bottom:248.940000px;}
.yf4{bottom:252.249840px;}
.y17d{bottom:257.652720px;}
.y56{bottom:258.711120px;}
.y141{bottom:259.380000px;}
.y1d9{bottom:262.800000px;}
.y8b{bottom:263.194560px;}
.ybd{bottom:265.007520px;}
.y67{bottom:265.401360px;}
.y17{bottom:267.300000px;}
.y19b{bottom:267.480000px;}
.y15c{bottom:267.786720px;}
.y1ba{bottom:269.460000px;}
.yf3{bottom:274.937040px;}
.yd8{bottom:275.337360px;}
.y128{bottom:276.233760px;}
.y8a{bottom:285.881760px;}
.ybc{bottom:287.694720px;}
.y66{bottom:287.906400px;}
.y15b{bottom:290.291760px;}
.y19a{bottom:290.700000px;}
.y17c{bottom:292.213440px;}
.y55{bottom:293.271840px;}
.y1d8{bottom:295.740000px;}
.yf2{bottom:297.442080px;}
.yd7{bottom:297.842400px;}
.y89{bottom:308.386800px;}
.y1b9{bottom:308.700000px;}
.y140{bottom:309.420000px;}
.y65{bottom:310.411440px;}
.y15a{bottom:312.978960px;}
.y199{bottom:314.100000px;}
.y16{bottom:317.340000px;}
.yf1{bottom:319.947120px;}
.yd6{bottom:320.529600px;}
.ybb{bottom:322.255440px;}
.y127{bottom:323.032320px;}
.y110{bottom:326.131920px;}
.y17b{bottom:326.774160px;}
.y54{bottom:327.832560px;}
.y1d7{bottom:328.680000px;}
.y88{bottom:330.891840px;}
.y64{bottom:332.916480px;}
.y159{bottom:335.484000px;}
.y198{bottom:337.320000px;}
.yd5{bottom:343.034640px;}
.yba{bottom:344.760480px;}
.y10f{bottom:348.636960px;}
.y53{bottom:350.337600px;}
.y1b8{bottom:350.807040px;}
.y87{bottom:353.579040px;}
.yf0{bottom:354.507840px;}
.y158{bottom:357.989040px;}
.y13f{bottom:359.280000px;}
.y197{bottom:360.720000px;}
.y17a{bottom:361.334880px;}
.y1d6{bottom:361.800000px;}
.y63{bottom:362.790720px;}
.y126{bottom:365.144400px;}
.yd4{bottom:365.539680px;}
.y15{bottom:366.300000px;}
.yb9{bottom:367.265520px;}
.y10e{bottom:371.142000px;}
.y52{bottom:372.842640px;}
.y1b7{bottom:373.494240px;}
.yef{bottom:377.012880px;}
.y157{bottom:380.494080px;}
.y196{bottom:383.940000px;}
.y86{bottom:388.139760px;}
.yd3{bottom:388.226880px;}
.yb8{bottom:389.952720px;}
.y1d5{bottom:394.740000px;}
.y125{bottom:395.018640px;}
.y51{bottom:395.347680px;}
.y179{bottom:395.895600px;}
.yee{bottom:399.700080px;}
.y14{bottom:401.040000px;}
.y10d{bottom:405.702720px;}
.y195{bottom:407.340000px;}
.y1b6{bottom:408.054960px;}
.y13e{bottom:409.140000px;}
.y85{bottom:410.644800px;}
.yd2{bottom:410.731920px;}
.yb7{bottom:412.457760px;}
.y32{bottom:414.858960px;}
.y156{bottom:415.054800px;}
.yed{bottom:422.205120px;}
.y1d4{bottom:427.680000px;}
.y10c{bottom:428.389920px;}
.y50{bottom:429.908400px;}
.y178{bottom:430.456320px;}
.y192{bottom:430.560000px;}
.y84{bottom:433.149840px;}
.yd1{bottom:433.236960px;}
.yb6{bottom:434.962800px;}
.y13{bottom:435.960000px;}
.y155{bottom:437.742000px;}
.y194{bottom:442.080000px;}
.yec{bottom:444.710160px;}
.y31{bottom:449.419680px;}
.y10b{bottom:450.894960px;}
.y4f{bottom:452.595600px;}
.y83{bottom:455.654880px;}
.y13d{bottom:459.180000px;}
.y1d3{bottom:460.620000px;}
.y177{bottom:465.017040px;}
.yeb{bottom:467.397360px;}
.yd0{bottom:467.797680px;}
.yb5{bottom:469.523520px;}
.y1b5{bottom:469.800000px;}
.y191{bottom:470.507760px;}
.y12{bottom:470.700000px;}
.y30{bottom:471.924720px;}
.y154{bottom:472.302720px;}
.y10a{bottom:473.400000px;}
.y82{bottom:478.342080px;}
.y4e{bottom:487.156320px;}
.yea{bottom:489.902400px;}
.y9c{bottom:489.911040px;}
.ycf{bottom:490.302720px;}
.yb4{bottom:492.028560px;}
.y190{bottom:493.194960px;}
.y1d2{bottom:493.560000px;}
.y2f{bottom:494.611920px;}
.y153{bottom:494.807760px;}
.y176{bottom:499.577760px;}
.y1b4{bottom:499.819680px;}
.y81{bottom:500.847120px;}
.y11{bottom:505.440000px;}
.y109{bottom:507.960000px;}
.y13c{bottom:509.040000px;}
.y4d{bottom:509.661360px;}
.y9b{bottom:512.416080px;}
.yce{bottom:512.989920px;}
.yb3{bottom:514.715760px;}
.y18f{bottom:515.700000px;}
.y2e{bottom:517.116960px;}
.y152{bottom:517.312800px;}
.y1b3{bottom:522.324720px;}
.ye9{bottom:524.463120px;}
.y1d1{bottom:526.500000px;}
.y4c{bottom:532.166400px;}
.y175{bottom:534.138480px;}
.y9a{bottom:535.103280px;}
.y80{bottom:535.407840px;}
.ycd{bottom:535.494960px;}
.yb2{bottom:537.220800px;}
.y108{bottom:539.238960px;}
.y2d{bottom:539.622000px;}
.y151{bottom:540.000000px;}
.y10{bottom:540.180000px;}
.y1b2{bottom:545.011920px;}
.ye8{bottom:546.968160px;}
.y4b{bottom:554.853600px;}
.y18e{bottom:554.940000px;}
.y99{bottom:557.608320px;}
.y7f{bottom:557.912880px;}
.ycc{bottom:558.000000px;}
.y13b{bottom:559.080000px;}
.y1d0{bottom:559.620000px;}
.yb1{bottom:559.725840px;}
.y2c{bottom:562.309200px;}
.y1b1{bottom:567.516960px;}
.y174{bottom:568.699200px;}
.ye7{bottom:569.473200px;}
.yf{bottom:574.920000px;}
.y4a{bottom:577.358640px;}
.y150{bottom:579.060000px;}
.y131{bottom:579.180240px;}
.y98{bottom:580.113360px;}
.y7e{bottom:580.600080px;}
.y62{bottom:580.952160px;}
.yb0{bottom:582.413040px;}
.y1b0{bottom:590.022000px;}
.y173{bottom:591.204240px;}
.ye6{bottom:592.160400px;}
.ycb{bottom:592.560000px;}
.y2b{bottom:596.869920px;}
.y18d{bottom:597.031920px;}
.y97{bottom:602.800560px;}
.y7d{bottom:603.105120px;}
.yaf{bottom:604.918080px;}
.y13a{bottom:608.940000px;}
.y49{bottom:611.919360px;}
.y1af{bottom:612.527040px;}
.y172{bottom:613.709280px;}
.ye5{bottom:614.665440px;}
.y61{bottom:615.512880px;}
.y2a{bottom:619.374960px;}
.y18c{bottom:619.536960px;}
.y14f{bottom:621.114480px;}
.yca{bottom:622.403280px;}
.ye{bottom:622.620000px;}
.y96{bottom:625.305600px;}
.y1cf{bottom:625.500000px;}
.y7c{bottom:625.610160px;}
.y130{bottom:625.978800px;}
.yae{bottom:627.423120px;}
.y48{bottom:634.424400px;}
.y1ae{bottom:635.214240px;}
.y171{bottom:636.396480px;}
.ye4{bottom:637.170480px;}
.y60{bottom:638.017920px;}
.y29{bottom:641.880000px;}
.y18b{bottom:642.042000px;}
.y14e{bottom:643.801680px;}
.y95{bottom:647.810640px;}
.yad{bottom:649.928160px;}
.y47{bottom:656.929440px;}
.y1ad{bottom:657.719280px;}
.y1ce{bottom:658.440000px;}
.y139{bottom:658.800000px;}
.ye3{bottom:659.857680px;}
.y7b{bottom:660.170880px;}
.y5f{bottom:660.705120px;}
.y12f{bottom:663.420960px;}
.y94{bottom:670.497840px;}
.y170{bottom:670.957200px;}
.yd{bottom:671.760000px;}
.yac{bottom:672.615360px;}
.y18a{bottom:676.602720px;}
.y14d{bottom:678.362400px;}
.y28{bottom:681.120000px;}
.ye2{bottom:682.362720px;}
.y7a{bottom:682.675920px;}
.y5e{bottom:683.210160px;}
.y46{bottom:689.867280px;}
.y1cd{bottom:691.380000px;}
.y1ac{bottom:692.280000px;}
.y93{bottom:693.002880px;}
.y16f{bottom:693.462240px;}
.yab{bottom:695.120400px;}
.y189{bottom:699.289920px;}
.y14c{bottom:700.867440px;}
.yfe{bottom:703.987200px;}
.ye1{bottom:704.867760px;}
.y79{bottom:705.363120px;}
.yc{bottom:706.500000px;}
.y138{bottom:708.840000px;}
.y16e{bottom:715.967280px;}
.y45{bottom:717.588720px;}
.yaa{bottom:717.625440px;}
.y5d{bottom:717.770880px;}
.y124{bottom:719.379360px;}
.y188{bottom:721.794960px;}
.y27{bottom:723.217680px;}
.y1cc{bottom:724.320000px;}
.y92{bottom:724.500000px;}
.ye0{bottom:727.554960px;}
.y78{bottom:727.868160px;}
.y1ab{bottom:731.520000px;}
.y14b{bottom:735.428160px;}
.y16d{bottom:738.472320px;}
.y44{bottom:740.275920px;}
.ya9{bottom:740.312640px;}
.yb{bottom:741.240000px;}
.y123{bottom:741.884400px;}
.y187{bottom:744.300000px;}
.y26{bottom:745.722720px;}
.ydf{bottom:750.060000px;}
.y77{bottom:750.373200px;}
.yfd{bottom:750.785760px;}
.y1cb{bottom:757.260000px;}
.y14a{bottom:757.933200px;}
.y137{bottom:757.983600px;}
.y16c{bottom:761.159520px;}
.y5c{bottom:762.780960px;}
.ya8{bottom:762.817680px;}
.y122{bottom:764.389440px;}
.y25{bottom:768.409920px;}
.y76{bottom:773.060400px;}
.y1aa{bottom:773.596080px;}
.y43{bottom:774.836640px;}
.ya{bottom:775.979850px;}
.y186{bottom:783.540000px;}
.yde{bottom:784.620000px;}
.ya7{bottom:785.322720px;}
.y121{bottom:786.894480px;}
.y136{bottom:789.298560px;}
.y1ca{bottom:790.380000px;}
.y24{bottom:790.914960px;}
.y149{bottom:792.493920px;}
.y75{bottom:795.565440px;}
.y1a9{bottom:796.101120px;}
.y42{bottom:797.341680px;}
.yfc{bottom:797.584320px;}
.y16b{bottom:800.406720px;}
.ya6{bottom:808.009920px;}
.y5b{bottom:809.397360px;}
.y135{bottom:811.074960px;}
.y23{bottom:813.420000px;}
.y148{bottom:814.998960px;}
.y74{bottom:818.070480px;}
.ydd{bottom:819.180000px;}
.y41{bottom:819.846720px;}
.y120{bottom:821.455200px;}
.y1c9{bottom:823.320000px;}
.y9{bottom:823.500000px;}
.y185{bottom:825.630480px;}
.ya5{bottom:830.514960px;}
.y1a8{bottom:830.661840px;}
.y5a{bottom:831.902400px;}
.y134{bottom:836.097120px;}
.y147{bottom:837.686160px;}
.y73{bottom:840.575520px;}
.y16a{bottom:842.353200px;}
.y11f{bottom:844.142400px;}
.yfb{bottom:844.382880px;}
.y184{bottom:848.135520px;}
.y22{bottom:852.660000px;}
.ya4{bottom:853.020000px;}
.y1a7{bottom:853.166880px;}
.y40{bottom:854.407440px;}
.y1c8{bottom:856.260000px;}
.y72{bottom:863.262720px;}
.y169{bottom:865.040400px;}
.y11e{bottom:866.647440px;}
.y183{bottom:870.822720px;}
.y133{bottom:870.840000px;}
.y146{bottom:872.246880px;}
.y8{bottom:872.640000px;}
.y3f{bottom:876.912480px;}
.ya3{bottom:887.580000px;}
.y1a6{bottom:887.727600px;}
.y12e{bottom:888.968160px;}
.y11d{bottom:889.152480px;}
.y1c7{bottom:889.200000px;}
.yfa{bottom:891.181440px;}
.y21{bottom:894.751920px;}
.y71{bottom:897.823440px;}
.y3e{bottom:899.599680px;}
.y168{bottom:899.601120px;}
.y112{bottom:900.180000px;}
.y182{bottom:905.383440px;}
.y7{bottom:907.380000px;}
.y1a5{bottom:910.414800px;}
.y12d{bottom:911.473200px;}
.y11c{bottom:911.839680px;}
.y20{bottom:917.256960px;}
.y70{bottom:920.328480px;}
.y3d{bottom:922.104720px;}
.y167{bottom:922.106160px;}
.y1c6{bottom:922.140000px;}
.y107{bottom:923.712480px;}
.y181{bottom:927.888480px;}
.y12c{bottom:934.160400px;}
.yf9{bottom:937.980000px;}
.y1f{bottom:939.944160px;}
.y6{bottom:942.300000px;}
.y6f{bottom:942.833520px;}
.ya2{bottom:944.609760px;}
.y166{bottom:944.611200px;}
.y1a4{bottom:944.975520px;}
.y106{bottom:946.399680px;}
.y11b{bottom:946.400400px;}
.y145{bottom:951.817680px;}
.y1c5{bottom:955.080000px;}
.y3c{bottom:956.665440px;}
.y1e{bottom:962.449200px;}
.y6e{bottom:965.520720px;}
.ya1{bottom:967.296960px;}
.y165{bottom:967.298400px;}
.y1a3{bottom:967.480560px;}
.y105{bottom:968.904720px;}
.y11a{bottom:968.905440px;}
.y144{bottom:974.322720px;}
.y5{bottom:977.040000px;}
.y3b{bottom:979.170480px;}
.y6d{bottom:988.025760px;}
.y1c4{bottom:988.200000px;}
.ya0{bottom:989.802000px;}
.y164{bottom:989.803440px;}
.yc9{bottom:991.409760px;}
.y119{bottom:991.410480px;}
.y1d{bottom:997.009920px;}
.y3a{bottom:1001.857680px;}
.y1a2{bottom:1002.041280px;}
.y4{bottom:1011.780000px;}
.y9f{bottom:1012.307040px;}
.yc8{bottom:1013.914800px;}
.y118{bottom:1013.915520px;}
.y6c{bottom:1017.900000px;}
.y1c{bottom:1019.514960px;}
.y1c3{bottom:1021.140000px;}
.y39{bottom:1024.362720px;}
.y1a1{bottom:1024.546320px;}
.y163{bottom:1029.050640px;}
.y9e{bottom:1034.812080px;}
.yc7{bottom:1036.602000px;}
.y117{bottom:1036.602720px;}
.y1b{bottom:1042.020000px;}
.y3{bottom:1046.520000px;}
.y38{bottom:1046.867760px;}
.y1c2{bottom:1054.080000px;}
.y9d{bottom:1057.499280px;}
.yc6{bottom:1059.107040px;}
.y116{bottom:1059.107760px;}
.y37{bottom:1069.372800px;}
.y104{bottom:1071.162720px;}
.y2{bottom:1081.260000px;}
.y115{bottom:1081.612800px;}
.y1c0{bottom:1087.020000px;}
.y36{bottom:1092.060000px;}
.yc5{bottom:1093.667760px;}
.y114{bottom:1104.300000px;}
.yc4{bottom:1116.172800px;}
.y1{bottom:1128.960000px;}
.y35{bottom:1131.300000px;}
.y1bf{bottom:1137.240000px;}
.yc3{bottom:1138.860000px;}
.ha{height:22.498500px;}
.h8{height:22.500000px;}
.h9{height:28.267734px;}
.hc{height:32.218500px;}
.hb{height:32.220000px;}
.h6{height:44.149219px;}
.h7{height:48.159844px;}
.h4{height:49.485937px;}
.h3{height:52.347656px;}
.h5{height:67.007109px;}
.h0{height:1262.835000px;}
.h2{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:73.258500px;}
.w4{width:123.120000px;}
.w5{width:126.000000px;}
.w7{width:126.540000px;}
.w6{width:133.020000px;}
.w3{width:156.958500px;}
.wb{width:158.580000px;}
.wa{width:243.540000px;}
.wc{width:317.700000px;}
.w8{width:636.300000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x23{left:10.440000px;}
.x20{left:19.980000px;}
.x2b{left:23.220000px;}
.x24{left:28.800000px;}
.x1e{left:30.060000px;}
.x2d{left:33.840000px;}
.x29{left:35.460000px;}
.x28{left:37.620000px;}
.x31{left:39.240000px;}
.x25{left:41.580000px;}
.x35{left:43.020000px;}
.x1c{left:48.420000px;}
.x27{left:51.840000px;}
.x2c{left:55.620000px;}
.x2a{left:58.860000px;}
.x26{left:62.640000px;}
.x19{left:95.940000px;}
.x34{left:101.160000px;}
.x33{left:108.900000px;}
.x22{left:113.220000px;}
.x1{left:127.620000px;}
.x36{left:150.840000px;}
.x2{left:154.620000px;}
.xd{left:180.545760px;}
.x18{left:181.620000px;}
.x2f{left:202.140000px;}
.x2e{left:207.522000px;}
.x1b{left:253.620000px;}
.x5{left:267.301440px;}
.xb{left:276.647040px;}
.x4{left:303.302880px;}
.x8{left:317.182320px;}
.xe{left:357.853680px;}
.x10{left:362.340000px;}
.x16{left:366.117120px;}
.x1d{left:377.460000px;}
.x7{left:433.996560px;}
.x15{left:439.726320px;}
.x30{left:446.760000px;}
.x3{left:449.993520px;}
.xf{left:456.849360px;}
.x12{left:472.500000px;}
.x1f{left:504.180000px;}
.xa{left:530.280000px;}
.x13{left:577.440720px;}
.x32{left:606.060000px;}
.x21{left:613.080000px;}
.x6{left:637.930800px;}
.x11{left:723.250080px;}
.x17{left:739.627920px;}
.xc{left:765.360000px;}
.x14{left:781.011360px;}
.x9{left:802.638720px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls21{letter-spacing:-3.886080pt;}
.ls2e{letter-spacing:-3.297280pt;}
.ls10{letter-spacing:-2.649600pt;}
.ls12{letter-spacing:-2.001920pt;}
.lsd{letter-spacing:-1.354240pt;}
.ls19{letter-spacing:-0.883200pt;}
.ls37{letter-spacing:-0.824320pt;}
.ls1a{letter-spacing:-0.706560pt;}
.ls18{letter-spacing:-0.647680pt;}
.ls36{letter-spacing:-0.588800pt;}
.lsa{letter-spacing:-0.529920pt;}
.ls16{letter-spacing:-0.471040pt;}
.ls20{letter-spacing:-0.412160pt;}
.ls11{letter-spacing:-0.353280pt;}
.ls32{letter-spacing:-0.294400pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.241920pt;}
.ls23{letter-spacing:-0.235520pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.176640pt;}
.ls31{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.023552pt;}
.ls3{letter-spacing:0.058880pt;}
.ls9{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.176640pt;}
.ls7{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.294400pt;}
.ls2a{letter-spacing:0.353280pt;}
.lse{letter-spacing:0.588800pt;}
.ls1b{letter-spacing:0.635904pt;}
.ls13{letter-spacing:1.177600pt;}
.ls30{letter-spacing:1.236480pt;}
.ls1d{letter-spacing:1.825280pt;}
.ls38{letter-spacing:2.472960pt;}
.lsc{letter-spacing:3.120640pt;}
.ls24{letter-spacing:3.768320pt;}
.ls2f{letter-spacing:4.416000pt;}
.lsf{letter-spacing:5.063680pt;}
.ls14{letter-spacing:5.711360pt;}
.ls33{letter-spacing:6.300160pt;}
.ls34{letter-spacing:6.947840pt;}
.ls1f{letter-spacing:8.890880pt;}
.ls1e{letter-spacing:9.568000pt;}
.ls28{letter-spacing:10.833920pt;}
.ls17{letter-spacing:11.422720pt;}
.ls2b{letter-spacing:12.718080pt;}
.ls25{letter-spacing:13.365760pt;}
.ls26{letter-spacing:15.308800pt;}
.ls1c{letter-spacing:18.488320pt;}
.ls2d{letter-spacing:19.136000pt;}
.ls29{letter-spacing:28.733440pt;}
.ls2c{letter-spacing:35.151360pt;}
.ls0{letter-spacing:37.388800pt;}
.ls27{letter-spacing:37.683200pt;}
.ls22{letter-spacing:55.936000pt;}
.ws2c{word-spacing:-37.683200pt;}
.ws31{word-spacing:-35.151360pt;}
.ws2e{word-spacing:-28.733440pt;}
.ws33{word-spacing:-19.136000pt;}
.ws3{word-spacing:-17.472000pt;}
.ws1{word-spacing:-16.368640pt;}
.ws23{word-spacing:-16.309760pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1e{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.133120pt;}
.ws3b{word-spacing:-16.097792pt;}
.ws4{word-spacing:-16.074240pt;}
.ws22{word-spacing:-15.897600pt;}
.ws2b{word-spacing:-15.838720pt;}
.ws37{word-spacing:-15.779840pt;}
.ws1f{word-spacing:-15.720960pt;}
.ws21{word-spacing:-15.662080pt;}
.ws16{word-spacing:-15.603200pt;}
.ws5{word-spacing:-15.544320pt;}
.ws3c{word-spacing:-15.485440pt;}
.ws29{word-spacing:-15.308800pt;}
.ws27{word-spacing:-13.365760pt;}
.ws30{word-spacing:-12.718080pt;}
.ws1a{word-spacing:-11.422720pt;}
.ws2d{word-spacing:-10.833920pt;}
.ws3a{word-spacing:-6.947840pt;}
.ws1b{word-spacing:-5.711360pt;}
.ws12{word-spacing:-5.063680pt;}
.ws36{word-spacing:-4.416000pt;}
.ws26{word-spacing:-3.768320pt;}
.ws28{word-spacing:-3.120640pt;}
.ws3e{word-spacing:-2.472960pt;}
.ws32{word-spacing:-1.825280pt;}
.ws38{word-spacing:-1.236480pt;}
.ws11{word-spacing:-0.588800pt;}
.ws34{word-spacing:-0.471040pt;}
.ws2f{word-spacing:-0.353280pt;}
.ws8{word-spacing:-0.294400pt;}
.wsa{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.176640pt;}
.wsc{word-spacing:-0.117760pt;}
.ws17{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.058880pt;}
.wsb{word-spacing:0.064000pt;}
.ws39{word-spacing:0.117760pt;}
.ws7{word-spacing:0.176640pt;}
.ws2a{word-spacing:0.235520pt;}
.ws18{word-spacing:0.241920pt;}
.ws14{word-spacing:0.353280pt;}
.ws25{word-spacing:0.412160pt;}
.ws19{word-spacing:0.471040pt;}
.wsd{word-spacing:0.529920pt;}
.ws3f{word-spacing:0.588800pt;}
.ws1c{word-spacing:0.647680pt;}
.ws20{word-spacing:0.706560pt;}
.ws3d{word-spacing:0.824320pt;}
.ws1d{word-spacing:0.883200pt;}
.ws10{word-spacing:1.354240pt;}
.ws15{word-spacing:2.001920pt;}
.ws13{word-spacing:2.649600pt;}
.ws35{word-spacing:3.297280pt;}
.ws24{word-spacing:3.886080pt;}
._25{margin-left:-37.906944pt;}
._26{margin-left:-36.964864pt;}
._2f{margin-left:-35.787264pt;}
._2d{margin-left:-34.798080pt;}
._2a{margin-left:-29.610752pt;}
._28{margin-left:-28.380160pt;}
._32{margin-left:-20.042752pt;}
._31{margin-left:-19.000576pt;}
._24{margin-left:-16.161024pt;}
._23{margin-left:-14.503680pt;}
._22{margin-left:-13.507072pt;}
._12{margin-left:-11.776000pt;}
._11{margin-left:-10.818816pt;}
._1d{margin-left:-9.619712pt;}
._34{margin-left:-8.485888pt;}
._33{margin-left:-7.526144pt;}
._9{margin-left:-5.793792pt;}
._8{margin-left:-4.898816pt;}
._7{margin-left:-3.309056pt;}
._2{margin-left:-1.972480pt;}
._1{margin-left:-1.030400pt;}
._0{width:1.088000pt;}
._3{width:2.063360pt;}
._4{width:3.568128pt;}
._5{width:4.792832pt;}
._6{width:5.817856pt;}
._a{width:6.856448pt;}
._16{width:7.776512pt;}
._e{width:8.884992pt;}
._f{width:10.074368pt;}
._10{width:11.294464pt;}
._19{width:12.600320pt;}
._1a{width:13.601792pt;}
._b{width:15.120384pt;}
._21{width:17.134080pt;}
._1c{width:18.046720pt;}
._d{width:19.206656pt;}
._c{width:20.690432pt;}
._18{width:21.603072pt;}
._17{width:22.686464pt;}
._30{width:24.164352pt;}
._20{width:26.066176pt;}
._1f{width:27.326208pt;}
._29{width:28.462592pt;}
._2b{width:29.551872pt;}
._15{width:33.473280pt;}
._2e{width:35.039488pt;}
._1e{width:36.571648pt;}
._14{width:37.647872pt;}
._13{width:39.084544pt;}
._1b{width:43.410176pt;}
._27{width:45.814528pt;}
._2c{width:48.057856pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:40.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:4.160000pt;}
.y1c1{bottom:6.080000pt;}
.y91{bottom:103.045760pt;}
.y1a{bottom:104.480000pt;}
.y162{bottom:107.127680pt;}
.yc2{bottom:114.107520pt;}
.y1dd{bottom:116.320000pt;}
.y34{bottom:116.771840pt;}
.y1a0{bottom:119.667840pt;}
.y111{bottom:120.129280pt;}
.y103{bottom:120.629120pt;}
.y12b{bottom:120.744960pt;}
.y90{bottom:123.050240pt;}
.y113{bottom:125.115520pt;}
.ydc{bottom:125.865600pt;}
.y161{bottom:127.132160pt;}
.y1be{bottom:127.195520pt;}
.y59{bottom:130.929280pt;}
.yf8{bottom:135.239680pt;}
.y180{bottom:136.862720pt;}
.y19f{bottom:139.672320pt;}
.y102{bottom:140.633600pt;}
.y143{bottom:141.920000pt;}
.y8f{bottom:143.216640pt;}
.y33{bottom:143.326720pt;}
.yc1{bottom:144.828160pt;}
.y6b{bottom:145.016320pt;}
.y1dc{bottom:145.760000pt;}
.y1bd{bottom:147.200000pt;}
.y19{bottom:148.800000pt;}
.y160{bottom:157.852800pt;}
.y19e{bottom:159.838720pt;}
.y101{bottom:160.800000pt;}
.y12a{bottom:162.343680pt;}
.y8e{bottom:163.221120pt;}
.ydb{bottom:163.298560pt;}
.yf7{bottom:164.046720pt;}
.yc0{bottom:164.832640pt;}
.y6a{bottom:165.020800pt;}
.y17f{bottom:167.583360pt;}
.y58{bottom:172.366080pt;}
.y1db{bottom:175.040000pt;}
.y15f{bottom:177.857280pt;}
.y1bc{bottom:182.080000pt;}
.y8d{bottom:183.225600pt;}
.yf6{bottom:184.213120pt;}
.y69{bottom:185.025280pt;}
.y132{bottom:185.702400pt;}
.y142{bottom:186.240000pt;}
.y19d{bottom:190.559360pt;}
.y100{bottom:191.520000pt;}
.y18{bottom:193.280000pt;}
.yda{bottom:194.019200pt;}
.ybf{bottom:195.553280pt;}
.y15e{bottom:197.861760pt;}
.y17e{bottom:198.304000pt;}
.y129{bottom:203.942400pt;}
.yf5{bottom:204.217600pt;}
.y1da{bottom:204.320000pt;}
.y57{bottom:209.799040pt;}
.y8c{bottom:213.946240pt;}
.yd9{bottom:214.023680pt;}
.ybe{bottom:215.557760pt;}
.y68{bottom:215.745920pt;}
.y15d{bottom:218.028160pt;}
.yff{bottom:219.361920pt;}
.y1bb{bottom:219.515520pt;}
.y19c{bottom:221.280000pt;}
.yf4{bottom:224.222080pt;}
.y17d{bottom:229.024640pt;}
.y56{bottom:229.965440pt;}
.y141{bottom:230.560000pt;}
.y1d9{bottom:233.600000pt;}
.y8b{bottom:233.950720pt;}
.ybd{bottom:235.562240pt;}
.y67{bottom:235.912320pt;}
.y17{bottom:237.600000pt;}
.y19b{bottom:237.760000pt;}
.y15c{bottom:238.032640pt;}
.y1ba{bottom:239.520000pt;}
.yf3{bottom:244.388480pt;}
.yd8{bottom:244.744320pt;}
.y128{bottom:245.541120pt;}
.y8a{bottom:254.117120pt;}
.ybc{bottom:255.728640pt;}
.y66{bottom:255.916800pt;}
.y15b{bottom:258.037120pt;}
.y19a{bottom:258.400000pt;}
.y17c{bottom:259.745280pt;}
.y55{bottom:260.686080pt;}
.y1d8{bottom:262.880000pt;}
.yf2{bottom:264.392960pt;}
.yd7{bottom:264.748800pt;}
.y89{bottom:274.121600pt;}
.y1b9{bottom:274.400000pt;}
.y140{bottom:275.040000pt;}
.y65{bottom:275.921280pt;}
.y15a{bottom:278.203520pt;}
.y199{bottom:279.200000pt;}
.y16{bottom:282.080000pt;}
.yf1{bottom:284.397440pt;}
.yd6{bottom:284.915200pt;}
.ybb{bottom:286.449280pt;}
.y127{bottom:287.139840pt;}
.y110{bottom:289.895040pt;}
.y17b{bottom:290.465920pt;}
.y54{bottom:291.406720pt;}
.y1d7{bottom:292.160000pt;}
.y88{bottom:294.126080pt;}
.y64{bottom:295.925760pt;}
.y159{bottom:298.208000pt;}
.y198{bottom:299.840000pt;}
.yd5{bottom:304.919680pt;}
.yba{bottom:306.453760pt;}
.y10f{bottom:309.899520pt;}
.y53{bottom:311.411200pt;}
.y1b8{bottom:311.828480pt;}
.y87{bottom:314.292480pt;}
.yf0{bottom:315.118080pt;}
.y158{bottom:318.212480pt;}
.y13f{bottom:319.360000pt;}
.y197{bottom:320.640000pt;}
.y17a{bottom:321.186560pt;}
.y1d6{bottom:321.600000pt;}
.y63{bottom:322.480640pt;}
.y126{bottom:324.572800pt;}
.yd4{bottom:324.924160pt;}
.y15{bottom:325.600000pt;}
.yb9{bottom:326.458240pt;}
.y10e{bottom:329.904000pt;}
.y52{bottom:331.415680pt;}
.y1b7{bottom:331.994880pt;}
.yef{bottom:335.122560pt;}
.y157{bottom:338.216960pt;}
.y196{bottom:341.280000pt;}
.y86{bottom:345.013120pt;}
.yd3{bottom:345.090560pt;}
.yb8{bottom:346.624640pt;}
.y1d5{bottom:350.880000pt;}
.y125{bottom:351.127680pt;}
.y51{bottom:351.420160pt;}
.y179{bottom:351.907200pt;}
.yee{bottom:355.288960pt;}
.y14{bottom:356.480000pt;}
.y10d{bottom:360.624640pt;}
.y195{bottom:362.080000pt;}
.y1b6{bottom:362.715520pt;}
.y13e{bottom:363.680000pt;}
.y85{bottom:365.017600pt;}
.yd2{bottom:365.095040pt;}
.yb7{bottom:366.629120pt;}
.y32{bottom:368.763520pt;}
.y156{bottom:368.937600pt;}
.yed{bottom:375.293440pt;}
.y1d4{bottom:380.160000pt;}
.y10c{bottom:380.791040pt;}
.y50{bottom:382.140800pt;}
.y178{bottom:382.627840pt;}
.y192{bottom:382.720000pt;}
.y84{bottom:385.022080pt;}
.yd1{bottom:385.099520pt;}
.yb6{bottom:386.633600pt;}
.y13{bottom:387.520000pt;}
.y155{bottom:389.104000pt;}
.y194{bottom:392.960000pt;}
.yec{bottom:395.297920pt;}
.y31{bottom:399.484160pt;}
.y10b{bottom:400.795520pt;}
.y4f{bottom:402.307200pt;}
.y83{bottom:405.026560pt;}
.y13d{bottom:408.160000pt;}
.y1d3{bottom:409.440000pt;}
.y177{bottom:413.348480pt;}
.yeb{bottom:415.464320pt;}
.yd0{bottom:415.820160pt;}
.yb5{bottom:417.354240pt;}
.y1b5{bottom:417.600000pt;}
.y191{bottom:418.229120pt;}
.y12{bottom:418.400000pt;}
.y30{bottom:419.488640pt;}
.y154{bottom:419.824640pt;}
.y10a{bottom:420.800000pt;}
.y82{bottom:425.192960pt;}
.y4e{bottom:433.027840pt;}
.yea{bottom:435.468800pt;}
.y9c{bottom:435.476480pt;}
.ycf{bottom:435.824640pt;}
.yb4{bottom:437.358720pt;}
.y190{bottom:438.395520pt;}
.y1d2{bottom:438.720000pt;}
.y2f{bottom:439.655040pt;}
.y153{bottom:439.829120pt;}
.y176{bottom:444.069120pt;}
.y1b4{bottom:444.284160pt;}
.y81{bottom:445.197440pt;}
.y11{bottom:449.280000pt;}
.y109{bottom:451.520000pt;}
.y13c{bottom:452.480000pt;}
.y4d{bottom:453.032320pt;}
.y9b{bottom:455.480960pt;}
.yce{bottom:455.991040pt;}
.yb3{bottom:457.525120pt;}
.y18f{bottom:458.400000pt;}
.y2e{bottom:459.659520pt;}
.y152{bottom:459.833600pt;}
.y1b3{bottom:464.288640pt;}
.ye9{bottom:466.189440pt;}
.y1d1{bottom:468.000000pt;}
.y4c{bottom:473.036800pt;}
.y175{bottom:474.789760pt;}
.y9a{bottom:475.647360pt;}
.y80{bottom:475.918080pt;}
.ycd{bottom:475.995520pt;}
.yb2{bottom:477.529600pt;}
.y108{bottom:479.323520pt;}
.y2d{bottom:479.664000pt;}
.y151{bottom:480.000000pt;}
.y10{bottom:480.160000pt;}
.y1b2{bottom:484.455040pt;}
.ye8{bottom:486.193920pt;}
.y4b{bottom:493.203200pt;}
.y18e{bottom:493.280000pt;}
.y99{bottom:495.651840pt;}
.y7f{bottom:495.922560pt;}
.ycc{bottom:496.000000pt;}
.y13b{bottom:496.960000pt;}
.y1d0{bottom:497.440000pt;}
.yb1{bottom:497.534080pt;}
.y2c{bottom:499.830400pt;}
.y1b1{bottom:504.459520pt;}
.y174{bottom:505.510400pt;}
.ye7{bottom:506.198400pt;}
.yf{bottom:511.040000pt;}
.y4a{bottom:513.207680pt;}
.y150{bottom:514.720000pt;}
.y131{bottom:514.826880pt;}
.y98{bottom:515.656320pt;}
.y7e{bottom:516.088960pt;}
.y62{bottom:516.401920pt;}
.yb0{bottom:517.700480pt;}
.y1b0{bottom:524.464000pt;}
.y173{bottom:525.514880pt;}
.ye6{bottom:526.364800pt;}
.ycb{bottom:526.720000pt;}
.y2b{bottom:530.551040pt;}
.y18d{bottom:530.695040pt;}
.y97{bottom:535.822720pt;}
.y7d{bottom:536.093440pt;}
.yaf{bottom:537.704960pt;}
.y13a{bottom:541.280000pt;}
.y49{bottom:543.928320pt;}
.y1af{bottom:544.468480pt;}
.y172{bottom:545.519360pt;}
.ye5{bottom:546.369280pt;}
.y61{bottom:547.122560pt;}
.y2a{bottom:550.555520pt;}
.y18c{bottom:550.699520pt;}
.y14f{bottom:552.101760pt;}
.yca{bottom:553.247360pt;}
.ye{bottom:553.440000pt;}
.y96{bottom:555.827200pt;}
.y1cf{bottom:556.000000pt;}
.y7c{bottom:556.097920pt;}
.y130{bottom:556.425600pt;}
.yae{bottom:557.709440pt;}
.y48{bottom:563.932800pt;}
.y1ae{bottom:564.634880pt;}
.y171{bottom:565.685760pt;}
.ye4{bottom:566.373760pt;}
.y60{bottom:567.127040pt;}
.y29{bottom:570.560000pt;}
.y18b{bottom:570.704000pt;}
.y14e{bottom:572.268160pt;}
.y95{bottom:575.831680pt;}
.yad{bottom:577.713920pt;}
.y47{bottom:583.937280pt;}
.y1ad{bottom:584.639360pt;}
.y1ce{bottom:585.280000pt;}
.y139{bottom:585.600000pt;}
.ye3{bottom:586.540160pt;}
.y7b{bottom:586.818560pt;}
.y5f{bottom:587.293440pt;}
.y12f{bottom:589.707520pt;}
.y94{bottom:595.998080pt;}
.y170{bottom:596.406400pt;}
.yd{bottom:597.120000pt;}
.yac{bottom:597.880320pt;}
.y18a{bottom:601.424640pt;}
.y14d{bottom:602.988800pt;}
.y28{bottom:605.440000pt;}
.ye2{bottom:606.544640pt;}
.y7a{bottom:606.823040pt;}
.y5e{bottom:607.297920pt;}
.y46{bottom:613.215360pt;}
.y1cd{bottom:614.560000pt;}
.y1ac{bottom:615.360000pt;}
.y93{bottom:616.002560pt;}
.y16f{bottom:616.410880pt;}
.yab{bottom:617.884800pt;}
.y189{bottom:621.591040pt;}
.y14c{bottom:622.993280pt;}
.yfe{bottom:625.766400pt;}
.ye1{bottom:626.549120pt;}
.y79{bottom:626.989440pt;}
.yc{bottom:628.000000pt;}
.y138{bottom:630.080000pt;}
.y16e{bottom:636.415360pt;}
.y45{bottom:637.856640pt;}
.yaa{bottom:637.889280pt;}
.y5d{bottom:638.018560pt;}
.y124{bottom:639.448320pt;}
.y188{bottom:641.595520pt;}
.y27{bottom:642.860160pt;}
.y1cc{bottom:643.840000pt;}
.y92{bottom:644.000000pt;}
.ye0{bottom:646.715520pt;}
.y78{bottom:646.993920pt;}
.y1ab{bottom:650.240000pt;}
.y14b{bottom:653.713920pt;}
.y16d{bottom:656.419840pt;}
.y44{bottom:658.023040pt;}
.ya9{bottom:658.055680pt;}
.yb{bottom:658.880000pt;}
.y123{bottom:659.452800pt;}
.y187{bottom:661.600000pt;}
.y26{bottom:662.864640pt;}
.ydf{bottom:666.720000pt;}
.y77{bottom:666.998400pt;}
.yfd{bottom:667.365120pt;}
.y1cb{bottom:673.120000pt;}
.y14a{bottom:673.718400pt;}
.y137{bottom:673.763200pt;}
.y16c{bottom:676.586240pt;}
.y5c{bottom:678.027520pt;}
.ya8{bottom:678.060160pt;}
.y122{bottom:679.457280pt;}
.y25{bottom:683.031040pt;}
.y76{bottom:687.164800pt;}
.y1aa{bottom:687.640960pt;}
.y43{bottom:688.743680pt;}
.ya{bottom:689.759867pt;}
.y186{bottom:696.480000pt;}
.yde{bottom:697.440000pt;}
.ya7{bottom:698.064640pt;}
.y121{bottom:699.461760pt;}
.y136{bottom:701.598720pt;}
.y1ca{bottom:702.560000pt;}
.y24{bottom:703.035520pt;}
.y149{bottom:704.439040pt;}
.y75{bottom:707.169280pt;}
.y1a9{bottom:707.645440pt;}
.y42{bottom:708.748160pt;}
.yfc{bottom:708.963840pt;}
.y16b{bottom:711.472640pt;}
.ya6{bottom:718.231040pt;}
.y5b{bottom:719.464320pt;}
.y135{bottom:720.955520pt;}
.y23{bottom:723.040000pt;}
.y148{bottom:724.443520pt;}
.y74{bottom:727.173760pt;}
.ydd{bottom:728.160000pt;}
.y41{bottom:728.752640pt;}
.y120{bottom:730.182400pt;}
.y1c9{bottom:731.840000pt;}
.y9{bottom:732.000000pt;}
.y185{bottom:733.893760pt;}
.ya5{bottom:738.235520pt;}
.y1a8{bottom:738.366080pt;}
.y5a{bottom:739.468800pt;}
.y134{bottom:743.197440pt;}
.y147{bottom:744.609920pt;}
.y73{bottom:747.178240pt;}
.y16a{bottom:748.758400pt;}
.y11f{bottom:750.348800pt;}
.yfb{bottom:750.562560pt;}
.y184{bottom:753.898240pt;}
.y22{bottom:757.920000pt;}
.ya4{bottom:758.240000pt;}
.y1a7{bottom:758.370560pt;}
.y40{bottom:759.473280pt;}
.y1c8{bottom:761.120000pt;}
.y72{bottom:767.344640pt;}
.y169{bottom:768.924800pt;}
.y11e{bottom:770.353280pt;}
.y183{bottom:774.064640pt;}
.y133{bottom:774.080000pt;}
.y146{bottom:775.330560pt;}
.y8{bottom:775.680000pt;}
.y3f{bottom:779.477760pt;}
.ya3{bottom:788.960000pt;}
.y1a6{bottom:789.091200pt;}
.y12e{bottom:790.193920pt;}
.y11d{bottom:790.357760pt;}
.y1c7{bottom:790.400000pt;}
.yfa{bottom:792.161280pt;}
.y21{bottom:795.335040pt;}
.y71{bottom:798.065280pt;}
.y3e{bottom:799.644160pt;}
.y168{bottom:799.645440pt;}
.y112{bottom:800.160000pt;}
.y182{bottom:804.785280pt;}
.y7{bottom:806.560000pt;}
.y1a5{bottom:809.257600pt;}
.y12d{bottom:810.198400pt;}
.y11c{bottom:810.524160pt;}
.y20{bottom:815.339520pt;}
.y70{bottom:818.069760pt;}
.y3d{bottom:819.648640pt;}
.y167{bottom:819.649920pt;}
.y1c6{bottom:819.680000pt;}
.y107{bottom:821.077760pt;}
.y181{bottom:824.789760pt;}
.y12c{bottom:830.364800pt;}
.yf9{bottom:833.760000pt;}
.y1f{bottom:835.505920pt;}
.y6{bottom:837.600000pt;}
.y6f{bottom:838.074240pt;}
.ya2{bottom:839.653120pt;}
.y166{bottom:839.654400pt;}
.y1a4{bottom:839.978240pt;}
.y106{bottom:841.244160pt;}
.y11b{bottom:841.244800pt;}
.y145{bottom:846.060160pt;}
.y1c5{bottom:848.960000pt;}
.y3c{bottom:850.369280pt;}
.y1e{bottom:855.510400pt;}
.y6e{bottom:858.240640pt;}
.ya1{bottom:859.819520pt;}
.y165{bottom:859.820800pt;}
.y1a3{bottom:859.982720pt;}
.y105{bottom:861.248640pt;}
.y11a{bottom:861.249280pt;}
.y144{bottom:866.064640pt;}
.y5{bottom:868.480000pt;}
.y3b{bottom:870.373760pt;}
.y6d{bottom:878.245120pt;}
.y1c4{bottom:878.400000pt;}
.ya0{bottom:879.824000pt;}
.y164{bottom:879.825280pt;}
.yc9{bottom:881.253120pt;}
.y119{bottom:881.253760pt;}
.y1d{bottom:886.231040pt;}
.y3a{bottom:890.540160pt;}
.y1a2{bottom:890.703360pt;}
.y4{bottom:899.360000pt;}
.y9f{bottom:899.828480pt;}
.yc8{bottom:901.257600pt;}
.y118{bottom:901.258240pt;}
.y6c{bottom:904.800000pt;}
.y1c{bottom:906.235520pt;}
.y1c3{bottom:907.680000pt;}
.y39{bottom:910.544640pt;}
.y1a1{bottom:910.707840pt;}
.y163{bottom:914.711680pt;}
.y9e{bottom:919.832960pt;}
.yc7{bottom:921.424000pt;}
.y117{bottom:921.424640pt;}
.y1b{bottom:926.240000pt;}
.y3{bottom:930.240000pt;}
.y38{bottom:930.549120pt;}
.y1c2{bottom:936.960000pt;}
.y9d{bottom:939.999360pt;}
.yc6{bottom:941.428480pt;}
.y116{bottom:941.429120pt;}
.y37{bottom:950.553600pt;}
.y104{bottom:952.144640pt;}
.y2{bottom:961.120000pt;}
.y115{bottom:961.433600pt;}
.y1c0{bottom:966.240000pt;}
.y36{bottom:970.720000pt;}
.yc5{bottom:972.149120pt;}
.y114{bottom:981.600000pt;}
.yc4{bottom:992.153600pt;}
.y1{bottom:1003.520000pt;}
.y35{bottom:1005.600000pt;}
.y1bf{bottom:1010.880000pt;}
.yc3{bottom:1012.320000pt;}
.ha{height:19.998667pt;}
.h8{height:20.000000pt;}
.h9{height:25.126875pt;}
.hc{height:28.638667pt;}
.hb{height:28.640000pt;}
.h6{height:39.243750pt;}
.h7{height:42.808750pt;}
.h4{height:43.987500pt;}
.h3{height:46.531250pt;}
.h5{height:59.561875pt;}
.h0{height:1122.520000pt;}
.h2{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:65.118667pt;}
.w4{width:109.440000pt;}
.w5{width:112.000000pt;}
.w7{width:112.480000pt;}
.w6{width:118.240000pt;}
.w3{width:139.518667pt;}
.wb{width:140.960000pt;}
.wa{width:216.480000pt;}
.wc{width:282.400000pt;}
.w8{width:565.600000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x23{left:9.280000pt;}
.x20{left:17.760000pt;}
.x2b{left:20.640000pt;}
.x24{left:25.600000pt;}
.x1e{left:26.720000pt;}
.x2d{left:30.080000pt;}
.x29{left:31.520000pt;}
.x28{left:33.440000pt;}
.x31{left:34.880000pt;}
.x25{left:36.960000pt;}
.x35{left:38.240000pt;}
.x1c{left:43.040000pt;}
.x27{left:46.080000pt;}
.x2c{left:49.440000pt;}
.x2a{left:52.320000pt;}
.x26{left:55.680000pt;}
.x19{left:85.280000pt;}
.x34{left:89.920000pt;}
.x33{left:96.800000pt;}
.x22{left:100.640000pt;}
.x1{left:113.440000pt;}
.x36{left:134.080000pt;}
.x2{left:137.440000pt;}
.xd{left:160.485120pt;}
.x18{left:161.440000pt;}
.x2f{left:179.680000pt;}
.x2e{left:184.464000pt;}
.x1b{left:225.440000pt;}
.x5{left:237.601280pt;}
.xb{left:245.908480pt;}
.x4{left:269.602560pt;}
.x8{left:281.939840pt;}
.xe{left:318.092160pt;}
.x10{left:322.080000pt;}
.x16{left:325.437440pt;}
.x1d{left:335.520000pt;}
.x7{left:385.774720pt;}
.x15{left:390.867840pt;}
.x30{left:397.120000pt;}
.x3{left:399.994240pt;}
.xf{left:406.088320pt;}
.x12{left:420.000000pt;}
.x1f{left:448.160000pt;}
.xa{left:471.360000pt;}
.x13{left:513.280640pt;}
.x32{left:538.720000pt;}
.x21{left:544.960000pt;}
.x6{left:567.049600pt;}
.x11{left:642.888960pt;}
.x17{left:657.447040pt;}
.xc{left:680.320000pt;}
.x14{left:694.232320pt;}
.x9{left:713.456640pt;}
}




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