
    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_278802cfbe9f9d93fab73b6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886737;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_7fde36882556b00c12ffc5b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_1e417e6734727ef351b3328a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_208f117f1ac5132965c3a87e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136230;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_d5cbfa015aade79af9387ad2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aa5df2f6a9a577de201d7458.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_223ecf001b8d8b62d2bfa32d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_ee217aeb83be2b117ddfbde1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.863770;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_993738ea19281cf463e021d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.642000px;}
.ls9{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000001px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.075000px;}
.ls14{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.109440px;}
.lsc{letter-spacing:0.144000px;}
.lse{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.lsa{letter-spacing:183.036000px;}
.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;}
}
.wse{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000001px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsd{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.635000px;}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-1.192320px;}
._4{width:1.264320px;}
._11{width:2.450880px;}
._1f{width:3.456000px;}
._1a{width:4.570560px;}
._7{width:5.762880px;}
._10{width:7.087680px;}
._6{width:8.743680px;}
._5{width:10.002240px;}
._8{width:11.128320px;}
._b{width:12.386880px;}
._f{width:13.446720px;}
._e{width:15.036480px;}
._2e{width:16.344000px;}
._14{width:18.077760px;}
._2c{width:19.264320px;}
._a{width:20.269440px;}
._9{width:21.461760px;}
._35{width:22.775040px;}
._d{width:23.912640px;}
._13{width:25.303680px;}
._26{width:27.000000px;}
._27{width:28.048320px;}
._12{width:29.940480px;}
._1d{width:31.331520px;}
._1e{width:32.892480px;}
._16{width:34.704000px;}
._3c{width:35.896320px;}
._20{width:37.224000px;}
._21{width:38.232000px;}
._28{width:39.384000px;}
._31{width:40.824000px;}
._c{width:42.592320px;}
._3d{width:43.695360px;}
._1b{width:44.712000px;}
._17{width:45.720000px;}
._34{width:47.064000px;}
._38{width:48.468000px;}
._2f{width:49.824000px;}
._32{width:50.832000px;}
._15{width:52.272000px;}
._23{width:53.496000px;}
._24{width:54.504000px;}
._30{width:55.520640px;}
._19{width:56.839680px;}
._18{width:58.144320px;}
._2b{width:59.719680px;}
._41{width:60.768000px;}
._25{width:61.848000px;}
._2d{width:63.360000px;}
._1c{width:64.584000px;}
._33{width:67.896000px;}
._3a{width:69.192000px;}
._22{width:70.776000px;}
._47{width:72.000000px;}
._3b{width:73.080000px;}
._40{width:74.767680px;}
._4c{width:76.824000px;}
._43{width:77.976000px;}
._68{width:79.344000px;}
._39{width:80.496000px;}
._54{width:82.224000px;}
._3e{width:84.600000px;}
._44{width:85.824000px;}
._4a{width:86.832000px;}
._4b{width:88.200000px;}
._4f{width:89.208000px;}
._52{width:91.368000px;}
._48{width:92.808000px;}
._49{width:94.104000px;}
._29{width:95.976000px;}
._2a{width:97.488000px;}
._46{width:99.504000px;}
._60{width:101.016000px;}
._61{width:102.096000px;}
._59{width:105.264000px;}
._5a{width:106.488000px;}
._3f{width:108.144000px;}
._4d{width:113.446560px;}
._42{width:121.824000px;}
._5d{width:134.424000px;}
._64{width:136.296000px;}
._63{width:137.880000px;}
._37{width:140.112000px;}
._36{width:141.192000px;}
._67{width:142.416000px;}
._5c{width:151.704000px;}
._57{width:164.736000px;}
._58{width:166.392000px;}
._45{width:167.688000px;}
._55{width:177.552000px;}
._4e{width:185.453280px;}
._51{width:203.544000px;}
._56{width:204.624000px;}
._53{width:206.784000px;}
._50{width:208.224000px;}
._66{width:218.736000px;}
._65{width:223.200000px;}
._5e{width:247.248000px;}
._0{width:365.915996px;}
._5f{width:553.680000px;}
._5b{width:583.128000px;}
._62{width:635.328000px;}
._3{width:1045.296960px;}
._1{width:1386.300000px;}
.fc8{color:rgb(31,55,99);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,63,119);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:0.360000px;}
.y76{bottom:1.260000px;}
.y7f{bottom:1.620000px;}
.y3e{bottom:3.240000px;}
.y116{bottom:3.600000px;}
.y9e{bottom:3.780000px;}
.y96{bottom:3.954000px;}
.y7{bottom:3.960000px;}
.y135{bottom:4.005000px;}
.y82{bottom:4.500000px;}
.ya0{bottom:5.400000px;}
.y40{bottom:5.580000px;}
.y7a{bottom:6.480000px;}
.y8b{bottom:6.660000px;}
.yc4{bottom:6.840000px;}
.ye9{bottom:8.460000px;}
.yb5{bottom:14.220000px;}
.y8d{bottom:17.820000px;}
.y8c{bottom:20.520000px;}
.y9f{bottom:21.240000px;}
.y7c{bottom:22.320000px;}
.y122{bottom:22.500000px;}
.y9d{bottom:22.680000px;}
.y3d{bottom:23.040000px;}
.y49{bottom:23.394000px;}
.y97{bottom:24.654000px;}
.y21{bottom:24.660000px;}
.yd3{bottom:24.690000px;}
.y107{bottom:24.705000px;}
.y38{bottom:24.834000px;}
.y78{bottom:24.840000px;}
.y85{bottom:25.380000px;}
.y81{bottom:26.280000px;}
.yb4{bottom:27.360000px;}
.yb3{bottom:34.920000px;}
.yaf{bottom:35.100000px;}
.yb2{bottom:37.620000px;}
.yae{bottom:37.800000px;}
.y133{bottom:41.574000px;}
.y115{bottom:41.580000px;}
.y118{bottom:41.754000px;}
.y89{bottom:41.940000px;}
.y48{bottom:42.474000px;}
.y9b{bottom:42.660000px;}
.y3c{bottom:42.840000px;}
.y37{bottom:43.734000px;}
.y84{bottom:45.225000px;}
.y98{bottom:45.354000px;}
.y20{bottom:45.360000px;}
.ya9{bottom:45.405000px;}
.y6{bottom:53.460000px;}
.y5{bottom:57.780000px;}
.y121{bottom:60.480000px;}
.y132{bottom:60.654000px;}
.y47{bottom:61.374000px;}
.y36{bottom:62.814000px;}
.y3b{bottom:63.360000px;}
.y10a{bottom:66.054000px;}
.y1f{bottom:66.060000px;}
.ya8{bottom:66.105000px;}
.y131{bottom:79.554000px;}
.y120{bottom:79.560000px;}
.y46{bottom:80.454000px;}
.y35{bottom:81.714000px;}
.y3a{bottom:83.160000px;}
.y14d{bottom:86.754000px;}
.y1e{bottom:86.760000px;}
.y10d{bottom:86.805000px;}
.y130{bottom:98.454000px;}
.y11f{bottom:98.460000px;}
.y45{bottom:99.354000px;}
.y34{bottom:100.794000px;}
.y1d{bottom:106.590000px;}
.y14c{bottom:107.454000px;}
.y105{bottom:107.460000px;}
.y117{bottom:116.676000px;}
.y11e{bottom:117.360000px;}
.y12f{bottom:117.534000px;}
.y129{bottom:117.540000px;}
.ye7{bottom:118.116000px;}
.y44{bottom:118.614000px;}
.y109{bottom:119.376000px;}
.y33{bottom:119.694000px;}
.y12a{bottom:122.616000px;}
.y146{bottom:123.336000px;}
.y99{bottom:126.576000px;}
.y14b{bottom:128.154000px;}
.y145{bottom:128.160000px;}
.yca{bottom:129.096000px;}
.y74{bottom:129.636000px;}
.y12e{bottom:136.434000px;}
.y11d{bottom:136.440000px;}
.y32{bottom:138.594000px;}
.y22{bottom:139.176000px;}
.y43{bottom:139.314000px;}
.ye6{bottom:141.336000px;}
.y95{bottom:147.996000px;}
.y14a{bottom:148.854000px;}
.y144{bottom:148.860000px;}
.yc9{bottom:149.796000px;}
.y73{bottom:150.330000px;}
.y11c{bottom:155.340000px;}
.y12d{bottom:155.514000px;}
.y31{bottom:157.674000px;}
.y42{bottom:160.014000px;}
.yac{bottom:161.460000px;}
.ye5{bottom:164.550000px;}
.y149{bottom:169.554000px;}
.y143{bottom:169.560000px;}
.yc8{bottom:170.490000px;}
.y72{bottom:171.030000px;}
.y12c{bottom:174.414000px;}
.y11b{bottom:174.420000px;}
.y114{bottom:174.450000px;}
.y30{bottom:176.619000px;}
.y41{bottom:179.859000px;}
.yab{bottom:182.160000px;}
.y142{bottom:190.260000px;}
.y150{bottom:190.290000px;}
.y148{bottom:190.299000px;}
.yc7{bottom:191.190000px;}
.y71{bottom:191.730000px;}
.y11a{bottom:193.320000px;}
.y12b{bottom:193.539000px;}
.y2f{bottom:195.699000px;}
.y108{bottom:202.890000px;}
.ye4{bottom:203.790000px;}
.y94{bottom:210.810000px;}
.y141{bottom:210.990000px;}
.y147{bottom:210.999000px;}
.yc6{bottom:211.890000px;}
.y124{bottom:212.220000px;}
.y128{bottom:212.400000px;}
.y70{bottom:212.430000px;}
.y2e{bottom:214.599000px;}
.ye3{bottom:224.490000px;}
.yc5{bottom:229.350000px;}
.y127{bottom:231.330000px;}
.y140{bottom:231.690000px;}
.y151{bottom:231.699000px;}
.y6f{bottom:233.130000px;}
.y2d{bottom:233.499000px;}
.y113{bottom:236.010000px;}
.y93{bottom:236.190000px;}
.ye2{bottom:245.190000px;}
.y126{bottom:250.230000px;}
.yc3{bottom:250.770000px;}
.y13f{bottom:252.390000px;}
.y165{bottom:252.399000px;}
.y2c{bottom:252.579000px;}
.y6e{bottom:253.830000px;}
.y112{bottom:256.710000px;}
.y92{bottom:256.890000px;}
.y170{bottom:263.730000px;}
.ye1{bottom:265.890000px;}
.y2b{bottom:271.479000px;}
.yc2{bottom:272.370000px;}
.y13e{bottom:273.090000px;}
.y164{bottom:273.099000px;}
.y111{bottom:273.450000px;}
.y6d{bottom:274.530000px;}
.y91{bottom:277.590000px;}
.y106{bottom:286.410000px;}
.ye0{bottom:286.590000px;}
.y2a{bottom:290.559000px;}
.yc1{bottom:293.790000px;}
.y163{bottom:293.799000px;}
.y6c{bottom:295.230000px;}
.y90{bottom:298.290000px;}
.y16f{bottom:302.970000px;}
.ydf{bottom:307.290000px;}
.y29{bottom:309.459000px;}
.y13d{bottom:314.490000px;}
.y162{bottom:314.499000px;}
.yc0{bottom:315.255000px;}
.y6b{bottom:315.975000px;}
.y8f{bottom:319.035000px;}
.yde{bottom:328.035000px;}
.y28{bottom:328.359000px;}
.y104{bottom:328.575000px;}
.y125{bottom:332.175000px;}
.y3f{bottom:334.875000px;}
.y13c{bottom:335.190000px;}
.y161{bottom:335.199000px;}
.y6a{bottom:336.675000px;}
.y8e{bottom:339.735000px;}
.y16e{bottom:341.895000px;}
.y27{bottom:347.439000px;}
.ydd{bottom:348.735000px;}
.y136{bottom:351.795000px;}
.y13b{bottom:355.890000px;}
.y160{bottom:355.899000px;}
.y39{bottom:356.295000px;}
.y88{bottom:357.195000px;}
.y69{bottom:357.375000px;}
.ybf{bottom:358.095000px;}
.y26{bottom:366.339000px;}
.ydc{bottom:369.435000px;}
.y14f{bottom:372.495000px;}
.y13a{bottom:376.590000px;}
.y15f{bottom:376.599000px;}
.y68{bottom:378.075000px;}
.ybe{bottom:379.515000px;}
.y16d{bottom:380.595000px;}
.y25{bottom:385.419000px;}
.ydb{bottom:390.135000px;}
.y8a{bottom:392.475000px;}
.y139{bottom:397.290000px;}
.y15e{bottom:397.299000px;}
.y67{bottom:398.775000px;}
.y24{bottom:404.319000px;}
.ybd{bottom:405.075000px;}
.yda{bottom:410.835000px;}
.y87{bottom:413.895000px;}
.y138{bottom:417.990000px;}
.y15d{bottom:417.999000px;}
.y66{bottom:419.475000px;}
.y23{bottom:423.249000px;}
.ybc{bottom:425.775000px;}
.yd9{bottom:431.535000px;}
.y137{bottom:438.690000px;}
.y15c{bottom:438.729000px;}
.y65{bottom:440.175000px;}
.ybb{bottom:446.475000px;}
.yd8{bottom:452.235000px;}
.y1c{bottom:455.295000px;}
.y103{bottom:457.455000px;}
.y16c{bottom:458.175000px;}
.y15b{bottom:459.429000px;}
.y64{bottom:460.875000px;}
.yba{bottom:467.175000px;}
.yd7{bottom:472.935000px;}
.y102{bottom:478.155000px;}
.y63{bottom:481.575000px;}
.yb9{bottom:487.875000px;}
.yd6{bottom:493.635000px;}
.y16b{bottom:497.055000px;}
.y86{bottom:497.415000px;}
.y101{bottom:498.855000px;}
.y62{bottom:502.275000px;}
.yb8{bottom:508.575000px;}
.yd5{bottom:514.335000px;}
.y100{bottom:519.555000px;}
.y61{bottom:522.975000px;}
.yb7{bottom:529.275000px;}
.yd4{bottom:535.035000px;}
.y16a{bottom:535.935000px;}
.yff{bottom:540.255000px;}
.y60{bottom:543.495000px;}
.yb6{bottom:549.795000px;}
.yd2{bottom:552.495000px;}
.yfe{bottom:560.985000px;}
.y5f{bottom:564.225000px;}
.yaa{bottom:567.465000px;}
.y169{bottom:574.665000px;}
.y110{bottom:581.325000px;}
.y1b{bottom:581.685000px;}
.y5e{bottom:584.925000px;}
.y75{bottom:587.085000px;}
.yd1{bottom:594.645000px;}
.y7b{bottom:594.825000px;}
.y123{bottom:598.605000px;}
.y10f{bottom:598.785000px;}
.y15a{bottom:599.505000px;}
.y1a{bottom:602.025000px;}
.yfd{bottom:602.385000px;}
.y5d{bottom:605.625000px;}
.yb1{bottom:609.585000px;}
.y168{bottom:613.545000px;}
.yfc{bottom:623.085000px;}
.y5c{bottom:626.325000px;}
.yd0{bottom:636.765000px;}
.y19{bottom:642.345000px;}
.yfb{bottom:643.785000px;}
.y5b{bottom:647.025000px;}
.y167{bottom:652.245000px;}
.ycf{bottom:660.165000px;}
.yb0{bottom:661.965000px;}
.yfa{bottom:664.485000px;}
.y159{bottom:666.285000px;}
.y18{bottom:667.725000px;}
.y80{bottom:670.965000px;}
.y77{bottom:674.745000px;}
.yf9{bottom:685.185000px;}
.y158{bottom:686.985000px;}
.y5a{bottom:688.425000px;}
.y17{bottom:689.685000px;}
.y166{bottom:691.125000px;}
.y10e{bottom:703.005000px;}
.yf8{bottom:705.885000px;}
.y157{bottom:707.685000px;}
.y59{bottom:709.125000px;}
.y16{bottom:710.745000px;}
.yad{bottom:714.525000px;}
.yf7{bottom:726.585000px;}
.y156{bottom:728.385000px;}
.y58{bottom:729.825000px;}
.y15{bottom:738.285000px;}
.yce{bottom:743.685000px;}
.y79{bottom:746.745000px;}
.yf6{bottom:747.285000px;}
.y155{bottom:749.085000px;}
.y57{bottom:750.525000px;}
.y14{bottom:752.145000px;}
.ya7{bottom:767.085000px;}
.yf5{bottom:767.985000px;}
.y83{bottom:769.065000px;}
.y154{bottom:769.785000px;}
.y56{bottom:771.225000px;}
.y13{bottom:779.685000px;}
.ycd{bottom:785.805000px;}
.yf4{bottom:788.685000px;}
.y153{bottom:790.485000px;}
.y55{bottom:791.925000px;}
.y12{bottom:793.545000px;}
.y7e{bottom:799.305000px;}
.y10c{bottom:807.225000px;}
.y134{bottom:807.945000px;}
.yf3{bottom:809.385000px;}
.y152{bottom:811.185000px;}
.y54{bottom:812.670000px;}
.y11{bottom:821.130000px;}
.y119{bottom:827.070000px;}
.y14e{bottom:828.690000px;}
.yf2{bottom:830.130000px;}
.y53{bottom:833.370000px;}
.y10{bottom:834.990000px;}
.ycc{bottom:848.670000px;}
.ya6{bottom:850.650000px;}
.yf1{bottom:850.830000px;}
.y52{bottom:854.070000px;}
.yf{bottom:862.530000px;}
.yf0{bottom:871.530000px;}
.y51{bottom:874.770000px;}
.ya5{bottom:876.030000px;}
.ye{bottom:883.410000px;}
.ycb{bottom:890.790000px;}
.yef{bottom:892.230000px;}
.y50{bottom:895.470000px;}
.ya4{bottom:896.730000px;}
.yd{bottom:897.990000px;}
.y10b{bottom:911.490000px;}
.yee{bottom:912.930000px;}
.y4f{bottom:916.170000px;}
.ya3{bottom:917.430000px;}
.yc{bottom:919.770000px;}
.yed{bottom:933.630000px;}
.y4e{bottom:936.870000px;}
.ya2{bottom:938.130000px;}
.yb{bottom:944.430000px;}
.yec{bottom:954.330000px;}
.y4d{bottom:957.570000px;}
.ya1{bottom:958.830000px;}
.ya{bottom:968.550000px;}
.yeb{bottom:975.030000px;}
.y9a{bottom:976.290000px;}
.y4c{bottom:978.270000px;}
.y9{bottom:992.670000px;}
.yea{bottom:995.730000px;}
.y9c{bottom:997.710000px;}
.y4b{bottom:998.970000px;}
.ye8{bottom:1013.190000px;}
.y8{bottom:1016.790000px;}
.y4a{bottom:1019.670000px;}
.y4{bottom:1058.910000px;}
.y3{bottom:1077.480000px;}
.y2{bottom:1094.220000px;}
.y1{bottom:1116.720000px;}
.h20{height:17.136000px;}
.h6{height:19.836000px;}
.h24{height:20.700000px;}
.h31{height:20.736000px;}
.h18{height:21.420000px;}
.h1e{height:21.960000px;}
.h33{height:22.500000px;}
.hb{height:28.954687px;}
.h3{height:34.414263px;}
.h28{height:34.560000px;}
.hc{height:34.884492px;}
.h1f{height:37.800000px;}
.h2b{height:37.980000px;}
.h1d{height:38.100586px;}
.h1b{height:38.520000px;}
.h30{height:41.400000px;}
.h34{height:41.436000px;}
.h21{height:41.760000px;}
.h23{height:42.164648px;}
.h27{height:43.215117px;}
.h16{height:45.928125px;}
.h13{height:46.736719px;}
.h10{height:47.255406px;}
.h14{height:47.901094px;}
.h5{height:48.030469px;}
.h17{height:49.811073px;}
.h1a{height:50.800781px;}
.h44{height:51.364571px;}
.h2f{height:51.660000px;}
.h2e{height:51.840000px;}
.he{height:52.066406px;}
.hf{height:52.207031px;}
.h26{height:55.980000px;}
.h38{height:56.880000px;}
.h39{height:57.060000px;}
.h2{height:57.656250px;}
.ha{height:57.796523px;}
.h22{height:59.256000px;}
.h2a{height:59.400000px;}
.h7{height:59.436914px;}
.h1c{height:59.940000px;}
.h9{height:60.096549px;}
.h8{height:60.917695px;}
.h29{height:62.100000px;}
.h32{height:62.136000px;}
.h4{height:65.884219px;}
.h1{height:68.314880px;}
.hd{height:71.613281px;}
.h25{height:82.800000px;}
.h2c{height:82.836000px;}
.h15{height:99.000000px;}
.h37{height:103.500000px;}
.h36{height:103.536000px;}
.h11{height:122.436000px;}
.h35{height:124.200000px;}
.h19{height:195.690000px;}
.h2d{height:198.900000px;}
.h40{height:207.000000px;}
.h3a{height:208.620000px;}
.h3d{height:208.830000px;}
.h3b{height:227.550000px;}
.h3f{height:227.730000px;}
.h42{height:248.430000px;}
.h3c{height:265.530000px;}
.h12{height:438.555000px;}
.h3e{height:455.430000px;}
.h41{height:455.475000px;}
.h43{height:476.175000px;}
.h0{height:1188.000000px;}
.w10{width:14.796000px;}
.w34{width:25.920000px;}
.w3a{width:25.956000px;}
.w3b{width:30.600000px;}
.w35{width:30.780000px;}
.w24{width:35.100000px;}
.w36{width:38.520000px;}
.w31{width:38.880000px;}
.w19{width:39.960000px;}
.w17{width:40.176000px;}
.w11{width:42.480000px;}
.w37{width:43.740000px;}
.w3c{width:43.920000px;}
.w21{width:45.036000px;}
.w22{width:45.180000px;}
.w18{width:46.980000px;}
.w1a{width:47.160000px;}
.w39{width:49.320000px;}
.w33{width:49.356000px;}
.w3f{width:50.940000px;}
.w15{width:51.300000px;}
.w1b{width:51.336000px;}
.w1c{width:51.480000px;}
.w14{width:51.516000px;}
.w32{width:56.340000px;}
.wd{width:57.276000px;}
.w45{width:60.120000px;}
.w20{width:60.840000px;}
.w29{width:62.820000px;}
.w40{width:63.180000px;}
.w2d{width:64.656000px;}
.w23{width:66.420000px;}
.w30{width:67.680000px;}
.w38{width:67.716000px;}
.w48{width:69.120000px;}
.w13{width:69.300000px;}
.we{width:69.480000px;}
.wf{width:69.516000px;}
.w41{width:69.660000px;}
.w3d{width:69.696000px;}
.w46{width:73.980000px;}
.w43{width:74.196000px;}
.w49{width:74.736000px;}
.w1d{width:75.780000px;}
.w16{width:75.960000px;}
.w25{width:82.440000px;}
.w6{width:84.456000px;}
.w12{width:87.156000px;}
.w28{width:89.136000px;}
.w2a{width:92.376000px;}
.wa{width:96.300000px;}
.w7{width:98.640000px;}
.w8{width:99.540000px;}
.w2b{width:107.100000px;}
.w2e{width:112.860000px;}
.w9{width:114.480000px;}
.w5{width:114.516000px;}
.w1f{width:117.540000px;}
.wb{width:120.096000px;}
.w4a{width:147.456000px;}
.w44{width:147.816000px;}
.w47{width:147.996000px;}
.w42{width:167.430000px;}
.w3e{width:167.610000px;}
.w2f{width:173.700000px;}
.w2c{width:173.910000px;}
.w27{width:174.810000px;}
.w26{width:176.400000px;}
.w3{width:232.950000px;}
.w1e{width:335.010000px;}
.wc{width:335.235000px;}
.w4{width:532.155000px;}
.w2{width:777.930000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:4.500000px;}
.x12{left:8.100000px;}
.x17{left:11.880000px;}
.x19{left:18.225000px;}
.x1b{left:19.980000px;}
.x1d{left:21.240000px;}
.x16{left:24.300000px;}
.x1e{left:25.920000px;}
.x20{left:29.700000px;}
.x37{left:62.145000px;}
.x11{left:99.936000px;}
.x49{left:105.345000px;}
.x1{left:108.035986px;}
.xc{left:111.635986px;}
.x9{left:112.715986px;}
.x5a{left:114.875986px;}
.x3{left:136.295986px;}
.x35{left:143.136000px;}
.x2d{left:147.996000px;}
.x5{left:152.309986px;}
.x4{left:154.649986px;}
.x3e{left:167.610000px;}
.x50{left:169.590000px;}
.x13{left:171.174000px;}
.x56{left:173.910000px;}
.xa{left:183.809986px;}
.x8{left:195.689986px;}
.x3f{left:206.490000px;}
.xd{left:209.009986px;}
.xb{left:218.009986px;}
.x31{left:225.570000px;}
.x10{left:227.729986px;}
.xf{left:231.149986px;}
.x40{left:262.830000px;}
.x2e{left:264.450000px;}
.x36{left:276.330000px;}
.x32{left:286.410000px;}
.x41{left:312.195000px;}
.x2f{left:315.795000px;}
.x57{left:321.915000px;}
.x33{left:331.455000px;}
.xe{left:333.614986px;}
.x51{left:337.035000px;}
.x42{left:338.115000px;}
.x6{left:354.314986px;}
.x30{left:367.275000px;}
.x43{left:368.895000px;}
.x34{left:376.635000px;}
.x58{left:382.035000px;}
.x52{left:387.975000px;}
.x44{left:407.415000px;}
.x7{left:459.074986px;}
.x38{left:466.815000px;}
.x14{left:474.914986px;}
.x59{left:481.754986px;}
.x27{left:489.705000px;}
.x1c{left:493.125000px;}
.x1a{left:497.445000px;}
.x1f{left:500.865000px;}
.x2c{left:515.085000px;}
.x23{left:532.185000px;}
.x45{left:534.525000px;}
.x4d{left:536.505000px;}
.x53{left:541.005000px;}
.x39{left:555.945000px;}
.x28{left:562.065000px;}
.x46{left:573.405000px;}
.x24{left:601.665000px;}
.x3a{left:618.765000px;}
.x47{left:629.745000px;}
.x29{left:631.365000px;}
.x3c{left:640.725000px;}
.x25{left:671.145000px;}
.x18{left:672.225000px;}
.x48{left:679.245000px;}
.x2a{left:682.890000px;}
.x54{left:688.830000px;}
.x4e{left:704.130000px;}
.x3d{left:705.390000px;}
.x3b{left:711.150000px;}
.x2b{left:734.190000px;}
.x4a{left:735.810000px;}
.x26{left:740.670000px;}
.x55{left:748.950000px;}
.x4f{left:755.070000px;}
.x15{left:761.910000px;}
.x21{left:767.490000px;}
.x4b{left:774.330000px;}
.x2{left:785.129986px;}
.x4c{left:803.489986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.570667pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.066667pt;}
.ls14{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.097280pt;}
.lsc{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.lsa{letter-spacing:162.698667pt;}
.wse{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000001pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsd{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.786667pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-1.059840pt;}
._4{width:1.123840pt;}
._11{width:2.178560pt;}
._1f{width:3.072000pt;}
._1a{width:4.062720pt;}
._7{width:5.122560pt;}
._10{width:6.300160pt;}
._6{width:7.772160pt;}
._5{width:8.890880pt;}
._8{width:9.891840pt;}
._b{width:11.010560pt;}
._f{width:11.952640pt;}
._e{width:13.365760pt;}
._2e{width:14.528000pt;}
._14{width:16.069120pt;}
._2c{width:17.123840pt;}
._a{width:18.017280pt;}
._9{width:19.077120pt;}
._35{width:20.244480pt;}
._d{width:21.255680pt;}
._13{width:22.492160pt;}
._26{width:24.000000pt;}
._27{width:24.931840pt;}
._12{width:26.613760pt;}
._1d{width:27.850240pt;}
._1e{width:29.237760pt;}
._16{width:30.848000pt;}
._3c{width:31.907840pt;}
._20{width:33.088000pt;}
._21{width:33.984000pt;}
._28{width:35.008000pt;}
._31{width:36.288000pt;}
._c{width:37.859840pt;}
._3d{width:38.840320pt;}
._1b{width:39.744000pt;}
._17{width:40.640000pt;}
._34{width:41.834667pt;}
._38{width:43.082667pt;}
._2f{width:44.288000pt;}
._32{width:45.184000pt;}
._15{width:46.464000pt;}
._23{width:47.552000pt;}
._24{width:48.448000pt;}
._30{width:49.351680pt;}
._19{width:50.524160pt;}
._18{width:51.683840pt;}
._2b{width:53.084160pt;}
._41{width:54.016000pt;}
._25{width:54.976000pt;}
._2d{width:56.320000pt;}
._1c{width:57.408000pt;}
._33{width:60.352000pt;}
._3a{width:61.504000pt;}
._22{width:62.912000pt;}
._47{width:64.000000pt;}
._3b{width:64.960000pt;}
._40{width:66.460160pt;}
._4c{width:68.288000pt;}
._43{width:69.312000pt;}
._68{width:70.528000pt;}
._39{width:71.552000pt;}
._54{width:73.088000pt;}
._3e{width:75.200000pt;}
._44{width:76.288000pt;}
._4a{width:77.184000pt;}
._4b{width:78.400000pt;}
._4f{width:79.296000pt;}
._52{width:81.216000pt;}
._48{width:82.496000pt;}
._49{width:83.648000pt;}
._29{width:85.312000pt;}
._2a{width:86.656000pt;}
._46{width:88.448000pt;}
._60{width:89.792000pt;}
._61{width:90.752000pt;}
._59{width:93.568000pt;}
._5a{width:94.656000pt;}
._3f{width:96.128000pt;}
._4d{width:100.841387pt;}
._42{width:108.288000pt;}
._5d{width:119.488000pt;}
._64{width:121.152000pt;}
._63{width:122.560000pt;}
._37{width:124.544000pt;}
._36{width:125.504000pt;}
._67{width:126.592000pt;}
._5c{width:134.848000pt;}
._57{width:146.432000pt;}
._58{width:147.904000pt;}
._45{width:149.056000pt;}
._55{width:157.824000pt;}
._4e{width:164.847360pt;}
._51{width:180.928000pt;}
._56{width:181.888000pt;}
._53{width:183.808000pt;}
._50{width:185.088000pt;}
._66{width:194.432000pt;}
._65{width:198.400000pt;}
._5e{width:219.776000pt;}
._0{width:325.258663pt;}
._5f{width:492.160000pt;}
._5b{width:518.336000pt;}
._62{width:564.736000pt;}
._3{width:929.152853pt;}
._1{width:1232.266667pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:0.320000pt;}
.y76{bottom:1.120000pt;}
.y7f{bottom:1.440000pt;}
.y3e{bottom:2.880000pt;}
.y116{bottom:3.200000pt;}
.y9e{bottom:3.360000pt;}
.y96{bottom:3.514667pt;}
.y7{bottom:3.520000pt;}
.y135{bottom:3.560000pt;}
.y82{bottom:4.000000pt;}
.ya0{bottom:4.800000pt;}
.y40{bottom:4.960000pt;}
.y7a{bottom:5.760000pt;}
.y8b{bottom:5.920000pt;}
.yc4{bottom:6.080000pt;}
.ye9{bottom:7.520000pt;}
.yb5{bottom:12.640000pt;}
.y8d{bottom:15.840000pt;}
.y8c{bottom:18.240000pt;}
.y9f{bottom:18.880000pt;}
.y7c{bottom:19.840000pt;}
.y122{bottom:20.000000pt;}
.y9d{bottom:20.160000pt;}
.y3d{bottom:20.480000pt;}
.y49{bottom:20.794667pt;}
.y97{bottom:21.914667pt;}
.y21{bottom:21.920000pt;}
.yd3{bottom:21.946667pt;}
.y107{bottom:21.960000pt;}
.y38{bottom:22.074667pt;}
.y78{bottom:22.080000pt;}
.y85{bottom:22.560000pt;}
.y81{bottom:23.360000pt;}
.yb4{bottom:24.320000pt;}
.yb3{bottom:31.040000pt;}
.yaf{bottom:31.200000pt;}
.yb2{bottom:33.440000pt;}
.yae{bottom:33.600000pt;}
.y133{bottom:36.954667pt;}
.y115{bottom:36.960000pt;}
.y118{bottom:37.114667pt;}
.y89{bottom:37.280000pt;}
.y48{bottom:37.754667pt;}
.y9b{bottom:37.920000pt;}
.y3c{bottom:38.080000pt;}
.y37{bottom:38.874667pt;}
.y84{bottom:40.200000pt;}
.y98{bottom:40.314667pt;}
.y20{bottom:40.320000pt;}
.ya9{bottom:40.360000pt;}
.y6{bottom:47.520000pt;}
.y5{bottom:51.360000pt;}
.y121{bottom:53.760000pt;}
.y132{bottom:53.914667pt;}
.y47{bottom:54.554667pt;}
.y36{bottom:55.834667pt;}
.y3b{bottom:56.320000pt;}
.y10a{bottom:58.714667pt;}
.y1f{bottom:58.720000pt;}
.ya8{bottom:58.760000pt;}
.y131{bottom:70.714667pt;}
.y120{bottom:70.720000pt;}
.y46{bottom:71.514667pt;}
.y35{bottom:72.634667pt;}
.y3a{bottom:73.920000pt;}
.y14d{bottom:77.114667pt;}
.y1e{bottom:77.120000pt;}
.y10d{bottom:77.160000pt;}
.y130{bottom:87.514667pt;}
.y11f{bottom:87.520000pt;}
.y45{bottom:88.314667pt;}
.y34{bottom:89.594667pt;}
.y1d{bottom:94.746667pt;}
.y14c{bottom:95.514667pt;}
.y105{bottom:95.520000pt;}
.y117{bottom:103.712000pt;}
.y11e{bottom:104.320000pt;}
.y12f{bottom:104.474667pt;}
.y129{bottom:104.480000pt;}
.ye7{bottom:104.992000pt;}
.y44{bottom:105.434667pt;}
.y109{bottom:106.112000pt;}
.y33{bottom:106.394667pt;}
.y12a{bottom:108.992000pt;}
.y146{bottom:109.632000pt;}
.y99{bottom:112.512000pt;}
.y14b{bottom:113.914667pt;}
.y145{bottom:113.920000pt;}
.yca{bottom:114.752000pt;}
.y74{bottom:115.232000pt;}
.y12e{bottom:121.274667pt;}
.y11d{bottom:121.280000pt;}
.y32{bottom:123.194667pt;}
.y22{bottom:123.712000pt;}
.y43{bottom:123.834667pt;}
.ye6{bottom:125.632000pt;}
.y95{bottom:131.552000pt;}
.y14a{bottom:132.314667pt;}
.y144{bottom:132.320000pt;}
.yc9{bottom:133.152000pt;}
.y73{bottom:133.626667pt;}
.y11c{bottom:138.080000pt;}
.y12d{bottom:138.234667pt;}
.y31{bottom:140.154667pt;}
.y42{bottom:142.234667pt;}
.yac{bottom:143.520000pt;}
.ye5{bottom:146.266667pt;}
.y149{bottom:150.714667pt;}
.y143{bottom:150.720000pt;}
.yc8{bottom:151.546667pt;}
.y72{bottom:152.026667pt;}
.y12c{bottom:155.034667pt;}
.y11b{bottom:155.040000pt;}
.y114{bottom:155.066667pt;}
.y30{bottom:156.994667pt;}
.y41{bottom:159.874667pt;}
.yab{bottom:161.920000pt;}
.y142{bottom:169.120000pt;}
.y150{bottom:169.146667pt;}
.y148{bottom:169.154667pt;}
.yc7{bottom:169.946667pt;}
.y71{bottom:170.426667pt;}
.y11a{bottom:171.840000pt;}
.y12b{bottom:172.034667pt;}
.y2f{bottom:173.954667pt;}
.y108{bottom:180.346667pt;}
.ye4{bottom:181.146667pt;}
.y94{bottom:187.386667pt;}
.y141{bottom:187.546667pt;}
.y147{bottom:187.554667pt;}
.yc6{bottom:188.346667pt;}
.y124{bottom:188.640000pt;}
.y128{bottom:188.800000pt;}
.y70{bottom:188.826667pt;}
.y2e{bottom:190.754667pt;}
.ye3{bottom:199.546667pt;}
.yc5{bottom:203.866667pt;}
.y127{bottom:205.626667pt;}
.y140{bottom:205.946667pt;}
.y151{bottom:205.954667pt;}
.y6f{bottom:207.226667pt;}
.y2d{bottom:207.554667pt;}
.y113{bottom:209.786667pt;}
.y93{bottom:209.946667pt;}
.ye2{bottom:217.946667pt;}
.y126{bottom:222.426667pt;}
.yc3{bottom:222.906667pt;}
.y13f{bottom:224.346667pt;}
.y165{bottom:224.354667pt;}
.y2c{bottom:224.514667pt;}
.y6e{bottom:225.626667pt;}
.y112{bottom:228.186667pt;}
.y92{bottom:228.346667pt;}
.y170{bottom:234.426667pt;}
.ye1{bottom:236.346667pt;}
.y2b{bottom:241.314667pt;}
.yc2{bottom:242.106667pt;}
.y13e{bottom:242.746667pt;}
.y164{bottom:242.754667pt;}
.y111{bottom:243.066667pt;}
.y6d{bottom:244.026667pt;}
.y91{bottom:246.746667pt;}
.y106{bottom:254.586667pt;}
.ye0{bottom:254.746667pt;}
.y2a{bottom:258.274667pt;}
.yc1{bottom:261.146667pt;}
.y163{bottom:261.154667pt;}
.y6c{bottom:262.426667pt;}
.y90{bottom:265.146667pt;}
.y16f{bottom:269.306667pt;}
.ydf{bottom:273.146667pt;}
.y29{bottom:275.074667pt;}
.y13d{bottom:279.546667pt;}
.y162{bottom:279.554667pt;}
.yc0{bottom:280.226667pt;}
.y6b{bottom:280.866667pt;}
.y8f{bottom:283.586667pt;}
.yde{bottom:291.586667pt;}
.y28{bottom:291.874667pt;}
.y104{bottom:292.066667pt;}
.y125{bottom:295.266667pt;}
.y3f{bottom:297.666667pt;}
.y13c{bottom:297.946667pt;}
.y161{bottom:297.954667pt;}
.y6a{bottom:299.266667pt;}
.y8e{bottom:301.986667pt;}
.y16e{bottom:303.906667pt;}
.y27{bottom:308.834667pt;}
.ydd{bottom:309.986667pt;}
.y136{bottom:312.706667pt;}
.y13b{bottom:316.346667pt;}
.y160{bottom:316.354667pt;}
.y39{bottom:316.706667pt;}
.y88{bottom:317.506667pt;}
.y69{bottom:317.666667pt;}
.ybf{bottom:318.306667pt;}
.y26{bottom:325.634667pt;}
.ydc{bottom:328.386667pt;}
.y14f{bottom:331.106667pt;}
.y13a{bottom:334.746667pt;}
.y15f{bottom:334.754667pt;}
.y68{bottom:336.066667pt;}
.ybe{bottom:337.346667pt;}
.y16d{bottom:338.306667pt;}
.y25{bottom:342.594667pt;}
.ydb{bottom:346.786667pt;}
.y8a{bottom:348.866667pt;}
.y139{bottom:353.146667pt;}
.y15e{bottom:353.154667pt;}
.y67{bottom:354.466667pt;}
.y24{bottom:359.394667pt;}
.ybd{bottom:360.066667pt;}
.yda{bottom:365.186667pt;}
.y87{bottom:367.906667pt;}
.y138{bottom:371.546667pt;}
.y15d{bottom:371.554667pt;}
.y66{bottom:372.866667pt;}
.y23{bottom:376.221333pt;}
.ybc{bottom:378.466667pt;}
.yd9{bottom:383.586667pt;}
.y137{bottom:389.946667pt;}
.y15c{bottom:389.981333pt;}
.y65{bottom:391.266667pt;}
.ybb{bottom:396.866667pt;}
.yd8{bottom:401.986667pt;}
.y1c{bottom:404.706667pt;}
.y103{bottom:406.626667pt;}
.y16c{bottom:407.266667pt;}
.y15b{bottom:408.381333pt;}
.y64{bottom:409.666667pt;}
.yba{bottom:415.266667pt;}
.yd7{bottom:420.386667pt;}
.y102{bottom:425.026667pt;}
.y63{bottom:428.066667pt;}
.yb9{bottom:433.666667pt;}
.yd6{bottom:438.786667pt;}
.y16b{bottom:441.826667pt;}
.y86{bottom:442.146667pt;}
.y101{bottom:443.426667pt;}
.y62{bottom:446.466667pt;}
.yb8{bottom:452.066667pt;}
.yd5{bottom:457.186667pt;}
.y100{bottom:461.826667pt;}
.y61{bottom:464.866667pt;}
.yb7{bottom:470.466667pt;}
.yd4{bottom:475.586667pt;}
.y16a{bottom:476.386667pt;}
.yff{bottom:480.226667pt;}
.y60{bottom:483.106667pt;}
.yb6{bottom:488.706667pt;}
.yd2{bottom:491.106667pt;}
.yfe{bottom:498.653333pt;}
.y5f{bottom:501.533333pt;}
.yaa{bottom:504.413333pt;}
.y169{bottom:510.813333pt;}
.y110{bottom:516.733333pt;}
.y1b{bottom:517.053333pt;}
.y5e{bottom:519.933333pt;}
.y75{bottom:521.853333pt;}
.yd1{bottom:528.573333pt;}
.y7b{bottom:528.733333pt;}
.y123{bottom:532.093333pt;}
.y10f{bottom:532.253333pt;}
.y15a{bottom:532.893333pt;}
.y1a{bottom:535.133333pt;}
.yfd{bottom:535.453333pt;}
.y5d{bottom:538.333333pt;}
.yb1{bottom:541.853333pt;}
.y168{bottom:545.373333pt;}
.yfc{bottom:553.853333pt;}
.y5c{bottom:556.733333pt;}
.yd0{bottom:566.013333pt;}
.y19{bottom:570.973333pt;}
.yfb{bottom:572.253333pt;}
.y5b{bottom:575.133333pt;}
.y167{bottom:579.773333pt;}
.ycf{bottom:586.813333pt;}
.yb0{bottom:588.413333pt;}
.yfa{bottom:590.653333pt;}
.y159{bottom:592.253333pt;}
.y18{bottom:593.533333pt;}
.y80{bottom:596.413333pt;}
.y77{bottom:599.773333pt;}
.yf9{bottom:609.053333pt;}
.y158{bottom:610.653333pt;}
.y5a{bottom:611.933333pt;}
.y17{bottom:613.053333pt;}
.y166{bottom:614.333333pt;}
.y10e{bottom:624.893333pt;}
.yf8{bottom:627.453333pt;}
.y157{bottom:629.053333pt;}
.y59{bottom:630.333333pt;}
.y16{bottom:631.773333pt;}
.yad{bottom:635.133333pt;}
.yf7{bottom:645.853333pt;}
.y156{bottom:647.453333pt;}
.y58{bottom:648.733333pt;}
.y15{bottom:656.253333pt;}
.yce{bottom:661.053333pt;}
.y79{bottom:663.773333pt;}
.yf6{bottom:664.253333pt;}
.y155{bottom:665.853333pt;}
.y57{bottom:667.133333pt;}
.y14{bottom:668.573333pt;}
.ya7{bottom:681.853333pt;}
.yf5{bottom:682.653333pt;}
.y83{bottom:683.613333pt;}
.y154{bottom:684.253333pt;}
.y56{bottom:685.533333pt;}
.y13{bottom:693.053333pt;}
.ycd{bottom:698.493333pt;}
.yf4{bottom:701.053333pt;}
.y153{bottom:702.653333pt;}
.y55{bottom:703.933333pt;}
.y12{bottom:705.373333pt;}
.y7e{bottom:710.493333pt;}
.y10c{bottom:717.533333pt;}
.y134{bottom:718.173333pt;}
.yf3{bottom:719.453333pt;}
.y152{bottom:721.053333pt;}
.y54{bottom:722.373333pt;}
.y11{bottom:729.893333pt;}
.y119{bottom:735.173333pt;}
.y14e{bottom:736.613333pt;}
.yf2{bottom:737.893333pt;}
.y53{bottom:740.773333pt;}
.y10{bottom:742.213333pt;}
.ycc{bottom:754.373333pt;}
.ya6{bottom:756.133333pt;}
.yf1{bottom:756.293333pt;}
.y52{bottom:759.173333pt;}
.yf{bottom:766.693333pt;}
.yf0{bottom:774.693333pt;}
.y51{bottom:777.573333pt;}
.ya5{bottom:778.693333pt;}
.ye{bottom:785.253333pt;}
.ycb{bottom:791.813333pt;}
.yef{bottom:793.093333pt;}
.y50{bottom:795.973333pt;}
.ya4{bottom:797.093333pt;}
.yd{bottom:798.213333pt;}
.y10b{bottom:810.213333pt;}
.yee{bottom:811.493333pt;}
.y4f{bottom:814.373333pt;}
.ya3{bottom:815.493333pt;}
.yc{bottom:817.573333pt;}
.yed{bottom:829.893333pt;}
.y4e{bottom:832.773333pt;}
.ya2{bottom:833.893333pt;}
.yb{bottom:839.493333pt;}
.yec{bottom:848.293333pt;}
.y4d{bottom:851.173333pt;}
.ya1{bottom:852.293333pt;}
.ya{bottom:860.933333pt;}
.yeb{bottom:866.693333pt;}
.y9a{bottom:867.813333pt;}
.y4c{bottom:869.573333pt;}
.y9{bottom:882.373333pt;}
.yea{bottom:885.093333pt;}
.y9c{bottom:886.853333pt;}
.y4b{bottom:887.973333pt;}
.ye8{bottom:900.613333pt;}
.y8{bottom:903.813333pt;}
.y4a{bottom:906.373333pt;}
.y4{bottom:941.253333pt;}
.y3{bottom:957.760000pt;}
.y2{bottom:972.640000pt;}
.y1{bottom:992.640000pt;}
.h20{height:15.232000pt;}
.h6{height:17.632000pt;}
.h24{height:18.400000pt;}
.h31{height:18.432000pt;}
.h18{height:19.040000pt;}
.h1e{height:19.520000pt;}
.h33{height:20.000000pt;}
.hb{height:25.737500pt;}
.h3{height:30.590456pt;}
.h28{height:30.720000pt;}
.hc{height:31.008437pt;}
.h1f{height:33.600000pt;}
.h2b{height:33.760000pt;}
.h1d{height:33.867188pt;}
.h1b{height:34.240000pt;}
.h30{height:36.800000pt;}
.h34{height:36.832000pt;}
.h21{height:37.120000pt;}
.h23{height:37.479688pt;}
.h27{height:38.413438pt;}
.h16{height:40.825000pt;}
.h13{height:41.543750pt;}
.h10{height:42.004805pt;}
.h14{height:42.578750pt;}
.h5{height:42.693750pt;}
.h17{height:44.276509pt;}
.h1a{height:45.156250pt;}
.h44{height:45.657397pt;}
.h2f{height:45.920000pt;}
.h2e{height:46.080000pt;}
.he{height:46.281250pt;}
.hf{height:46.406250pt;}
.h26{height:49.760000pt;}
.h38{height:50.560000pt;}
.h39{height:50.720000pt;}
.h2{height:51.250000pt;}
.ha{height:51.374688pt;}
.h22{height:52.672000pt;}
.h2a{height:52.800000pt;}
.h7{height:52.832812pt;}
.h1c{height:53.280000pt;}
.h9{height:53.419154pt;}
.h8{height:54.149062pt;}
.h29{height:55.200000pt;}
.h32{height:55.232000pt;}
.h4{height:58.563750pt;}
.h1{height:60.724338pt;}
.hd{height:63.656250pt;}
.h25{height:73.600000pt;}
.h2c{height:73.632000pt;}
.h15{height:88.000000pt;}
.h37{height:92.000000pt;}
.h36{height:92.032000pt;}
.h11{height:108.832000pt;}
.h35{height:110.400000pt;}
.h19{height:173.946667pt;}
.h2d{height:176.800000pt;}
.h40{height:184.000000pt;}
.h3a{height:185.440000pt;}
.h3d{height:185.626667pt;}
.h3b{height:202.266667pt;}
.h3f{height:202.426667pt;}
.h42{height:220.826667pt;}
.h3c{height:236.026667pt;}
.h12{height:389.826667pt;}
.h3e{height:404.826667pt;}
.h41{height:404.866667pt;}
.h43{height:423.266667pt;}
.h0{height:1056.000000pt;}
.w10{width:13.152000pt;}
.w34{width:23.040000pt;}
.w3a{width:23.072000pt;}
.w3b{width:27.200000pt;}
.w35{width:27.360000pt;}
.w24{width:31.200000pt;}
.w36{width:34.240000pt;}
.w31{width:34.560000pt;}
.w19{width:35.520000pt;}
.w17{width:35.712000pt;}
.w11{width:37.760000pt;}
.w37{width:38.880000pt;}
.w3c{width:39.040000pt;}
.w21{width:40.032000pt;}
.w22{width:40.160000pt;}
.w18{width:41.760000pt;}
.w1a{width:41.920000pt;}
.w39{width:43.840000pt;}
.w33{width:43.872000pt;}
.w3f{width:45.280000pt;}
.w15{width:45.600000pt;}
.w1b{width:45.632000pt;}
.w1c{width:45.760000pt;}
.w14{width:45.792000pt;}
.w32{width:50.080000pt;}
.wd{width:50.912000pt;}
.w45{width:53.440000pt;}
.w20{width:54.080000pt;}
.w29{width:55.840000pt;}
.w40{width:56.160000pt;}
.w2d{width:57.472000pt;}
.w23{width:59.040000pt;}
.w30{width:60.160000pt;}
.w38{width:60.192000pt;}
.w48{width:61.440000pt;}
.w13{width:61.600000pt;}
.we{width:61.760000pt;}
.wf{width:61.792000pt;}
.w41{width:61.920000pt;}
.w3d{width:61.952000pt;}
.w46{width:65.760000pt;}
.w43{width:65.952000pt;}
.w49{width:66.432000pt;}
.w1d{width:67.360000pt;}
.w16{width:67.520000pt;}
.w25{width:73.280000pt;}
.w6{width:75.072000pt;}
.w12{width:77.472000pt;}
.w28{width:79.232000pt;}
.w2a{width:82.112000pt;}
.wa{width:85.600000pt;}
.w7{width:87.680000pt;}
.w8{width:88.480000pt;}
.w2b{width:95.200000pt;}
.w2e{width:100.320000pt;}
.w9{width:101.760000pt;}
.w5{width:101.792000pt;}
.w1f{width:104.480000pt;}
.wb{width:106.752000pt;}
.w4a{width:131.072000pt;}
.w44{width:131.392000pt;}
.w47{width:131.552000pt;}
.w42{width:148.826667pt;}
.w3e{width:148.986667pt;}
.w2f{width:154.400000pt;}
.w2c{width:154.586667pt;}
.w27{width:155.386667pt;}
.w26{width:156.800000pt;}
.w3{width:207.066667pt;}
.w1e{width:297.786667pt;}
.wc{width:297.986667pt;}
.w4{width:473.026667pt;}
.w2{width:691.493333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:4.000000pt;}
.x12{left:7.200000pt;}
.x17{left:10.560000pt;}
.x19{left:16.200000pt;}
.x1b{left:17.760000pt;}
.x1d{left:18.880000pt;}
.x16{left:21.600000pt;}
.x1e{left:23.040000pt;}
.x20{left:26.400000pt;}
.x37{left:55.240000pt;}
.x11{left:88.832000pt;}
.x49{left:93.640000pt;}
.x1{left:96.031988pt;}
.xc{left:99.231988pt;}
.x9{left:100.191988pt;}
.x5a{left:102.111988pt;}
.x3{left:121.151988pt;}
.x35{left:127.232000pt;}
.x2d{left:131.552000pt;}
.x5{left:135.386655pt;}
.x4{left:137.466655pt;}
.x3e{left:148.986667pt;}
.x50{left:150.746667pt;}
.x13{left:152.154667pt;}
.x56{left:154.586667pt;}
.xa{left:163.386655pt;}
.x8{left:173.946655pt;}
.x3f{left:183.546667pt;}
.xd{left:185.786655pt;}
.xb{left:193.786655pt;}
.x31{left:200.506667pt;}
.x10{left:202.426655pt;}
.xf{left:205.466655pt;}
.x40{left:233.626667pt;}
.x2e{left:235.066667pt;}
.x36{left:245.626667pt;}
.x32{left:254.586667pt;}
.x41{left:277.506667pt;}
.x2f{left:280.706667pt;}
.x57{left:286.146667pt;}
.x33{left:294.626667pt;}
.xe{left:296.546655pt;}
.x51{left:299.586667pt;}
.x42{left:300.546667pt;}
.x6{left:314.946655pt;}
.x30{left:326.466667pt;}
.x43{left:327.906667pt;}
.x34{left:334.786667pt;}
.x58{left:339.586667pt;}
.x52{left:344.866667pt;}
.x44{left:362.146667pt;}
.x7{left:408.066655pt;}
.x38{left:414.946667pt;}
.x14{left:422.146655pt;}
.x59{left:428.226655pt;}
.x27{left:435.293333pt;}
.x1c{left:438.333333pt;}
.x1a{left:442.173333pt;}
.x1f{left:445.213333pt;}
.x2c{left:457.853333pt;}
.x23{left:473.053333pt;}
.x45{left:475.133333pt;}
.x4d{left:476.893333pt;}
.x53{left:480.893333pt;}
.x39{left:494.173333pt;}
.x28{left:499.613333pt;}
.x46{left:509.693333pt;}
.x24{left:534.813333pt;}
.x3a{left:550.013333pt;}
.x47{left:559.773333pt;}
.x29{left:561.213333pt;}
.x3c{left:569.533333pt;}
.x25{left:596.573333pt;}
.x18{left:597.533333pt;}
.x48{left:603.773333pt;}
.x2a{left:607.013333pt;}
.x54{left:612.293333pt;}
.x4e{left:625.893333pt;}
.x3d{left:627.013333pt;}
.x3b{left:632.133333pt;}
.x2b{left:652.613333pt;}
.x4a{left:654.053333pt;}
.x26{left:658.373333pt;}
.x55{left:665.733333pt;}
.x4f{left:671.173333pt;}
.x15{left:677.253333pt;}
.x21{left:682.213333pt;}
.x4b{left:688.293333pt;}
.x2{left:697.893321pt;}
.x4c{left:714.213321pt;}
}




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