
    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_6c3a0fecbb98768c50b35fba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_7839aa8a2813732120dd0c49.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_196e45b4c58229dec398afa5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b52532ca5fc2a764e5399e5f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_4ccbdbc3e4acd8e4efb6a1aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a415cf7f34fa65a101032d8e.woff')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_72f5faccf94e61b1033b43a4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3dd41ef7024f6d1c2542f59b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_75b702a7592b1b9cbe9de2dc.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_420e817a0913af18f6a1e5c8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ee2b9e01b7af4b885de48ba8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f16bd9056fa7c68ad1796f8b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5961dec77084854289dc825e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.991699;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:ffe;src:url('chunks/assets/font_b2be67fceef73b759369e38a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.180664;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:fff;src:url('chunks/assets/font_831f29a371b700e575bd5271.woff')format("woff");}.fff{font-family:fff;line-height:1.005371;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:ff10;src:url('chunks/assets/font_1f1ff5113d64c2561875e733.woff')format("woff");}.ff10{font-family:ff10;line-height:1.180664;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:ff11;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463200px;}
.ls7{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.334200px;}
.lsf{letter-spacing:-0.269400px;}
.lsd{letter-spacing:-0.051840px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.334200px;}
.lsb{letter-spacing:0.360000px;}
.lse{letter-spacing:0.900000px;}
.ls2{letter-spacing:3.240000px;}
.ls3{letter-spacing:6.480000px;}
.ls14{letter-spacing:8.640000px;}
.ls13{letter-spacing:32.065920px;}
.ls12{letter-spacing:63.025920px;}
.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;}
}
.ws8{word-spacing:-56.920429px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.174200px;}
.ws4{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.505800px;}
.wsa{word-spacing:-15.226440px;}
.wsf{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.wse{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.780000px;}
.ws6{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.wsd{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-4.630080px;}
._6{margin-left:-3.052320px;}
._1{margin-left:-1.188000px;}
._0{width:1.134000px;}
._3{width:3.126000px;}
._2{width:4.860000px;}
._c{width:6.538080px;}
._e{width:7.626720px;}
._11{width:8.633760px;}
._5{width:9.990000px;}
._4{width:11.340000px;}
._7{width:12.532320px;}
._12{width:13.546080px;}
._1e{width:14.554080px;}
._25{width:16.512480px;}
._b{width:17.535360px;}
._a{width:18.564480px;}
._1f{width:20.528640px;}
._18{width:21.716640px;}
._13{width:23.807520px;}
._14{width:25.407360px;}
._1b{width:27.181440px;}
._10{width:29.145600px;}
._f{width:30.222720px;}
._1c{width:31.299840px;}
._24{width:32.472000px;}
._1a{width:33.533280px;}
._19{width:34.958880px;}
._22{width:36.121680px;}
._d{width:37.366560px;}
._23{width:39.013920px;}
._2a{width:42.514560px;}
._17{width:43.528320px;}
._28{width:44.573760px;}
._8{width:46.949760px;}
._9{width:48.092160px;}
._29{width:51.495840px;}
._21{width:54.633600px;}
._20{width:56.121120px;}
._1d{width:86.359680px;}
._15{width:93.440160px;}
._27{width:101.059200px;}
._26{width:134.909280px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,102);}
.fc9{color:rgb(80,80,80);}
.fc8{color:rgb(46,46,46);}
.fc7{color:rgb(33,33,33);}
.fc6{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.920429px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs9{font-size:200.880000px;}
.y6c{bottom:-54.180000px;}
.y6b{bottom:-25.560000px;}
.y7{bottom:-25.380000px;}
.ya{bottom:-23.580000px;}
.yca{bottom:-16.920000px;}
.y0{bottom:0.000000px;}
.y126{bottom:2.520000px;}
.y150{bottom:2.565000px;}
.y1b{bottom:2.880000px;}
.y106{bottom:3.060000px;}
.y6a{bottom:3.240000px;}
.y6{bottom:3.420000px;}
.y133{bottom:3.780000px;}
.y12{bottom:4.500000px;}
.y67{bottom:4.710000px;}
.y9{bottom:5.220000px;}
.y10b{bottom:5.580000px;}
.y129{bottom:5.760000px;}
.y3b{bottom:6.120000px;}
.yc8{bottom:7.920000px;}
.y6f{bottom:8.280000px;}
.y10c{bottom:8.460000px;}
.y110{bottom:10.620000px;}
.y65{bottom:10.980000px;}
.y62{bottom:13.680000px;}
.y71{bottom:15.840000px;}
.y19{bottom:16.200000px;}
.y13e{bottom:16.380000px;}
.y140{bottom:16.410000px;}
.y104{bottom:18.360000px;}
.y61{bottom:26.280000px;}
.y3a{bottom:27.000000px;}
.y11{bottom:28.620000px;}
.y18{bottom:36.180000px;}
.y17{bottom:47.160000px;}
.y39{bottom:47.700000px;}
.y10{bottom:52.920000px;}
.y16{bottom:62.820000px;}
.y38{bottom:68.580000px;}
.y15{bottom:78.300000px;}
.y37{bottom:89.460000px;}
.y14{bottom:93.780000px;}
.y60{bottom:95.580000px;}
.y36{bottom:110.160000px;}
.y5f{bottom:111.240000px;}
.y4{bottom:114.840000px;}
.y6d{bottom:124.740000px;}
.y5e{bottom:126.540000px;}
.y8{bottom:127.620000px;}
.y69{bottom:129.240000px;}
.y5{bottom:129.780000px;}
.y35{bottom:131.040000px;}
.y3{bottom:135.000000px;}
.y5d{bottom:141.300000px;}
.y2{bottom:150.660000px;}
.y34{bottom:151.920000px;}
.y5c{bottom:155.880000px;}
.y5b{bottom:170.505000px;}
.y33{bottom:172.845000px;}
.y1cb{bottom:180.750000px;}
.y9a{bottom:182.190000px;}
.y172{bottom:183.270000px;}
.yc5{bottom:183.450000px;}
.y5a{bottom:185.265000px;}
.y123{bottom:186.510000px;}
.y1a8{bottom:191.550000px;}
.y32{bottom:193.545000px;}
.yf4{bottom:194.610000px;}
.yc{bottom:198.390000px;}
.y59{bottom:199.845000px;}
.y15b{bottom:201.450000px;}
.ye{bottom:201.630000px;}
.y99{bottom:203.070000px;}
.y171{bottom:203.970000px;}
.yc4{bottom:204.150000px;}
.y122{bottom:204.330000px;}
.y1a7{bottom:212.430000px;}
.y31{bottom:214.425000px;}
.y58{bottom:214.605000px;}
.yf3{bottom:215.310000px;}
.y192{bottom:221.250000px;}
.yb{bottom:222.150000px;}
.y1ca{bottom:222.330000px;}
.yd{bottom:223.410000px;}
.y98{bottom:223.950000px;}
.yc3{bottom:225.030000px;}
.y57{bottom:229.185000px;}
.y1a6{bottom:233.130000px;}
.y30{bottom:235.305000px;}
.y170{bottom:236.910000px;}
.y121{bottom:240.150000px;}
.y15a{bottom:243.030000px;}
.y1c9{bottom:243.210000px;}
.y56{bottom:244.125000px;}
.y97{bottom:244.650000px;}
.yc2{bottom:245.910000px;}
.yf2{bottom:248.250000px;}
.y191{bottom:254.010000px;}
.y2f{bottom:256.005000px;}
.y16f{bottom:257.610000px;}
.y120{bottom:257.970000px;}
.y55{bottom:259.605000px;}
.y1c{bottom:263.370000px;}
.y159{bottom:263.910000px;}
.y1c8{bottom:264.090000px;}
.y96{bottom:265.530000px;}
.yc1{bottom:266.790000px;}
.yf1{bottom:268.950000px;}
.y190{bottom:274.890000px;}
.y54{bottom:275.085000px;}
.y11f{bottom:275.790000px;}
.y2e{bottom:276.885000px;}
.y16e{bottom:278.490000px;}
.y158{bottom:284.610000px;}
.y1c7{bottom:284.790000px;}
.y95{bottom:286.410000px;}
.yc0{bottom:287.490000px;}
.yf0{bottom:289.830000px;}
.y53{bottom:290.565000px;}
.y11e{bottom:294.510000px;}
.y18f{bottom:295.770000px;}
.y2d{bottom:297.765000px;}
.y16d{bottom:299.370000px;}
.y157{bottom:305.490000px;}
.y1c6{bottom:305.670000px;}
.y52{bottom:306.225000px;}
.y94{bottom:307.110000px;}
.ybf{bottom:308.370000px;}
.yef{bottom:310.710000px;}
.y11d{bottom:315.210000px;}
.y18e{bottom:316.470000px;}
.y2c{bottom:318.465000px;}
.y16c{bottom:320.250000px;}
.y51{bottom:321.705000px;}
.y1c5{bottom:326.550000px;}
.y156{bottom:327.270000px;}
.y93{bottom:327.990000px;}
.ybe{bottom:329.250000px;}
.yee{bottom:331.410000px;}
.y11c{bottom:336.090000px;}
.y50{bottom:337.185000px;}
.y18d{bottom:337.350000px;}
.y2b{bottom:339.345000px;}
.y16b{bottom:340.950000px;}
.y1c4{bottom:347.430000px;}
.y92{bottom:348.870000px;}
.ybd{bottom:349.950000px;}
.y155{bottom:350.490000px;}
.y4f{bottom:352.665000px;}
.y1cc{bottom:356.250000px;}
.y11b{bottom:356.970000px;}
.y18c{bottom:358.230000px;}
.y2a{bottom:360.225000px;}
.y16a{bottom:361.830000px;}
.yed{bottom:364.350000px;}
.y154{bottom:366.690000px;}
.y1c3{bottom:368.130000px;}
.y4e{bottom:368.145000px;}
.ybc{bottom:370.830000px;}
.y11a{bottom:377.670000px;}
.y18b{bottom:378.930000px;}
.y153{bottom:379.650000px;}
.y29{bottom:381.105000px;}
.y91{bottom:381.630000px;}
.y169{bottom:382.710000px;}
.y4d{bottom:383.805000px;}
.yec{bottom:385.230000px;}
.y1c2{bottom:389.010000px;}
.ybb{bottom:391.710000px;}
.y152{bottom:392.430000px;}
.y119{bottom:398.550000px;}
.y4c{bottom:399.105000px;}
.y18a{bottom:399.810000px;}
.y28{bottom:401.835000px;}
.y90{bottom:402.510000px;}
.y168{bottom:403.410000px;}
.yeb{bottom:405.930000px;}
.y151{bottom:406.290000px;}
.y1c1{bottom:409.890000px;}
.yba{bottom:412.590000px;}
.y4b{bottom:413.895000px;}
.y118{bottom:419.430000px;}
.y14f{bottom:420.150000px;}
.y189{bottom:420.690000px;}
.y27{bottom:422.715000px;}
.y8f{bottom:423.435000px;}
.yea{bottom:426.855000px;}
.y4a{bottom:428.475000px;}
.y1c0{bottom:430.635000px;}
.yb9{bottom:433.335000px;}
.y14e{bottom:434.775000px;}
.y167{bottom:436.395000px;}
.y117{bottom:440.355000px;}
.y188{bottom:441.435000px;}
.y49{bottom:443.235000px;}
.y26{bottom:443.595000px;}
.y8e{bottom:444.135000px;}
.ye9{bottom:447.735000px;}
.y14d{bottom:449.175000px;}
.y1bf{bottom:451.515000px;}
.yb8{bottom:454.215000px;}
.y166{bottom:457.095000px;}
.y48{bottom:457.815000px;}
.y116{bottom:461.055000px;}
.y187{bottom:462.315000px;}
.y25{bottom:464.295000px;}
.y8d{bottom:465.015000px;}
.ye8{bottom:468.435000px;}
.y47{bottom:472.395000px;}
.yb7{bottom:475.995000px;}
.y165{bottom:477.975000px;}
.y14c{bottom:480.495000px;}
.y115{bottom:481.935000px;}
.y1a5{bottom:483.195000px;}
.y24{bottom:485.175000px;}
.y8c{bottom:485.895000px;}
.y46{bottom:487.155000px;}
.ye7{bottom:489.315000px;}
.y1be{bottom:493.095000px;}
.y186{bottom:495.255000px;}
.y14b{bottom:495.975000px;}
.y164{bottom:498.855000px;}
.y45{bottom:501.735000px;}
.y114{bottom:502.815000px;}
.y1a4{bottom:504.075000px;}
.y23{bottom:506.055000px;}
.y8b{bottom:506.595000px;}
.ye6{bottom:510.195000px;}
.yb6{bottom:510.915000px;}
.y14a{bottom:511.635000px;}
.y1bd{bottom:513.975000px;}
.y185{bottom:515.955000px;}
.y44{bottom:516.495000px;}
.y113{bottom:523.515000px;}
.y1a3{bottom:524.775000px;}
.y22{bottom:526.935000px;}
.y149{bottom:527.115000px;}
.y8a{bottom:527.475000px;}
.ye5{bottom:530.895000px;}
.y43{bottom:531.075000px;}
.yb5{bottom:531.615000px;}
.y1bc{bottom:534.855000px;}
.y184{bottom:536.835000px;}
.y148{bottom:542.595000px;}
.y112{bottom:544.395000px;}
.y1a2{bottom:545.655000px;}
.y42{bottom:545.835000px;}
.y21{bottom:547.635000px;}
.ye4{bottom:551.775000px;}
.yb4{bottom:552.495000px;}
.y1bb{bottom:555.735000px;}
.y183{bottom:557.715000px;}
.y147{bottom:558.075000px;}
.y111{bottom:559.875000px;}
.y41{bottom:560.415000px;}
.y1a1{bottom:566.535000px;}
.y20{bottom:568.515000px;}
.ye3{bottom:572.655000px;}
.yb3{bottom:573.375000px;}
.y146{bottom:573.735000px;}
.y40{bottom:575.175000px;}
.y10f{bottom:575.535000px;}
.y1ba{bottom:576.435000px;}
.y182{bottom:578.415000px;}
.y89{bottom:581.115000px;}
.y1a0{bottom:587.235000px;}
.y145{bottom:589.215000px;}
.y1f{bottom:589.395000px;}
.y3f{bottom:589.755000px;}
.yb2{bottom:594.075000px;}
.y1b9{bottom:597.315000px;}
.y181{bottom:599.295000px;}
.y88{bottom:601.995000px;}
.y3e{bottom:604.335000px;}
.y144{bottom:604.695000px;}
.ye2{bottom:605.415000px;}
.y10e{bottom:606.495000px;}
.y19f{bottom:608.115000px;}
.y1e{bottom:610.095000px;}
.yb1{bottom:614.955000px;}
.y143{bottom:618.015000px;}
.y1b8{bottom:618.195000px;}
.y3d{bottom:619.095000px;}
.y180{bottom:620.175000px;}
.y10d{bottom:621.975000px;}
.y87{bottom:622.875000px;}
.ye1{bottom:626.295000px;}
.y1d{bottom:628.815000px;}
.y19e{bottom:629.895000px;}
.y142{bottom:631.875000px;}
.y3c{bottom:633.675000px;}
.yb0{bottom:635.835000px;}
.y10a{bottom:637.635000px;}
.y1b7{bottom:638.895000px;}
.y17f{bottom:641.055000px;}
.y86{bottom:643.575000px;}
.y141{bottom:645.735000px;}
.ye0{bottom:647.175000px;}
.yaf{bottom:656.715000px;}
.y109{bottom:658.695000px;}
.y1b6{bottom:659.775000px;}
.y13f{bottom:660.135000px;}
.y17e{bottom:662.835000px;}
.y85{bottom:664.485000px;}
.y19d{bottom:664.845000px;}
.ydf{bottom:667.905000px;}
.y108{bottom:674.205000px;}
.yae{bottom:677.445000px;}
.y1b5{bottom:680.685000px;}
.y19c{bottom:685.545000px;}
.y13d{bottom:688.605000px;}
.yde{bottom:688.785000px;}
.y107{bottom:689.685000px;}
.y84{bottom:697.245000px;}
.y17d{bottom:697.605000px;}
.yad{bottom:698.325000px;}
.y1b4{bottom:701.565000px;}
.y105{bottom:705.885000px;}
.y19b{bottom:706.425000px;}
.ydd{bottom:709.665000px;}
.y83{bottom:718.125000px;}
.y17c{bottom:718.485000px;}
.y163{bottom:719.205000px;}
.y103{bottom:722.265000px;}
.y19a{bottom:727.305000px;}
.ydc{bottom:730.545000px;}
.yac{bottom:731.085000px;}
.y82{bottom:739.005000px;}
.y17b{bottom:739.365000px;}
.y162{bottom:739.905000px;}
.y13c{bottom:740.085000px;}
.y1b3{bottom:743.145000px;}
.y199{bottom:748.185000px;}
.ydb{bottom:751.245000px;}
.yab{bottom:751.965000px;}
.y13b{bottom:758.625000px;}
.y102{bottom:759.345000px;}
.y81{bottom:759.885000px;}
.y17a{bottom:760.065000px;}
.y161{bottom:760.785000px;}
.y1b2{bottom:764.025000px;}
.yda{bottom:772.125000px;}
.yaa{bottom:772.845000px;}
.y13a{bottom:779.505000px;}
.y80{bottom:780.585000px;}
.y179{bottom:780.945000px;}
.y160{bottom:781.665000px;}
.y1b1{bottom:784.725000px;}
.y101{bottom:789.945000px;}
.yd9{bottom:793.005000px;}
.ya9{bottom:793.545000px;}
.y139{bottom:800.385000px;}
.y178{bottom:801.825000px;}
.y15f{bottom:802.365000px;}
.y1b0{bottom:805.605000px;}
.y100{bottom:810.825000px;}
.y7f{bottom:813.525000px;}
.yd8{bottom:813.705000px;}
.ya8{bottom:814.425000px;}
.y138{bottom:821.265000px;}
.y177{bottom:822.525000px;}
.y1af{bottom:826.485000px;}
.yff{bottom:831.705000px;}
.y7e{bottom:834.225000px;}
.yd7{bottom:834.585000px;}
.ya7{bottom:835.305000px;}
.y137{bottom:841.965000px;}
.y176{bottom:843.405000px;}
.y1ae{bottom:847.365000px;}
.yfe{bottom:852.405000px;}
.y7d{bottom:855.105000px;}
.yd6{bottom:855.465000px;}
.ya6{bottom:856.185000px;}
.y136{bottom:862.845000px;}
.y175{bottom:864.285000px;}
.y198{bottom:867.345000px;}
.y1ad{bottom:868.065000px;}
.yfd{bottom:873.285000px;}
.y7c{bottom:875.985000px;}
.yd5{bottom:876.165000px;}
.ya5{bottom:876.885000px;}
.y135{bottom:880.485000px;}
.y174{bottom:885.165000px;}
.y197{bottom:888.225000px;}
.y1ac{bottom:888.945000px;}
.y134{bottom:893.805000px;}
.yfc{bottom:894.165000px;}
.y7b{bottom:896.685000px;}
.yd4{bottom:897.045000px;}
.ya4{bottom:897.765000px;}
.y173{bottom:905.865000px;}
.y132{bottom:907.710000px;}
.y196{bottom:909.150000px;}
.y1a{bottom:909.870000px;}
.yfb{bottom:914.910000px;}
.y7a{bottom:917.610000px;}
.yd3{bottom:917.970000px;}
.ya3{bottom:918.690000px;}
.y131{bottom:923.910000px;}
.y13{bottom:925.350000px;}
.y195{bottom:930.030000px;}
.y1ab{bottom:930.570000px;}
.yfa{bottom:935.790000px;}
.y130{bottom:937.590000px;}
.yd2{bottom:938.850000px;}
.ya2{bottom:939.390000px;}
.y79{bottom:950.550000px;}
.y194{bottom:950.730000px;}
.y12f{bottom:951.450000px;}
.yf9{bottom:957.570000px;}
.yd1{bottom:959.550000px;}
.ya1{bottom:960.270000px;}
.y12e{bottom:965.310000px;}
.y78{bottom:971.250000px;}
.y193{bottom:971.610000px;}
.y1aa{bottom:972.330000px;}
.y12d{bottom:978.990000px;}
.yd0{bottom:980.430000px;}
.ya0{bottom:981.150000px;}
.y77{bottom:992.130000px;}
.yf8{bottom:992.490000px;}
.y12c{bottom:992.850000px;}
.y1a9{bottom:993.030000px;}
.ycf{bottom:1001.310000px;}
.y15e{bottom:1002.030000px;}
.y12b{bottom:1006.710000px;}
.y76{bottom:1013.010000px;}
.yf7{bottom:1013.190000px;}
.y9f{bottom:1013.910000px;}
.yce{bottom:1022.010000px;}
.y15d{bottom:1022.730000px;}
.yf{bottom:1031.730000px;}
.y75{bottom:1033.710000px;}
.yf6{bottom:1034.070000px;}
.y12a{bottom:1034.250000px;}
.y9e{bottom:1034.790000px;}
.ycd{bottom:1042.890000px;}
.y15c{bottom:1043.610000px;}
.y128{bottom:1048.110000px;}
.yc6{bottom:1048.470000px;}
.y74{bottom:1054.590000px;}
.yf5{bottom:1054.950000px;}
.y9d{bottom:1055.670000px;}
.y127{bottom:1065.030000px;}
.y73{bottom:1075.470000px;}
.ycc{bottom:1075.830000px;}
.y9c{bottom:1076.370000px;}
.y125{bottom:1079.610000px;}
.y72{bottom:1096.530000px;}
.y9b{bottom:1097.250000px;}
.y124{bottom:1099.410000px;}
.y70{bottom:1114.890000px;}
.y68{bottom:1116.510000px;}
.y63{bottom:1116.690000px;}
.ycb{bottom:1117.410000px;}
.yc9{bottom:1124.430000px;}
.y6e{bottom:1125.690000px;}
.yc7{bottom:1132.890000px;}
.y1{bottom:1136.670000px;}
.y64{bottom:1137.570000px;}
.y66{bottom:1145.490000px;}
.h36{height:12.780000px;}
.h38{height:12.960000px;}
.h30{height:13.680000px;}
.h34{height:13.716000px;}
.h2b{height:13.860000px;}
.h35{height:13.860150px;}
.h31{height:13.896000px;}
.he{height:15.480000px;}
.h29{height:15.516000px;}
.h28{height:15.660000px;}
.h1c{height:16.020000px;}
.h4{height:16.200000px;}
.h2e{height:16.920000px;}
.h6{height:18.000000px;}
.h19{height:18.936000px;}
.h1b{height:20.160000px;}
.h1d{height:20.700000px;}
.h23{height:20.736000px;}
.h2a{height:21.060000px;}
.h2f{height:27.540000px;}
.h33{height:27.720000px;}
.h32{height:27.756000px;}
.h1e{height:28.620000px;}
.h17{height:28.656000px;}
.h16{height:28.800000px;}
.h3{height:28.836000px;}
.hd{height:29.671875px;}
.h27{height:30.960000px;}
.h37{height:32.801836px;}
.h2c{height:34.036523px;}
.h2d{height:34.884492px;}
.h14{height:36.068555px;}
.h26{height:38.100586px;}
.h15{height:39.049805px;}
.h12{height:41.485078px;}
.h21{height:41.760000px;}
.h13{height:42.134062px;}
.h5{height:44.507812px;}
.h11{height:45.818438px;}
.h3b{height:46.127812px;}
.h24{height:46.195312px;}
.h39{height:46.736719px;}
.hc{height:47.671875px;}
.h1a{height:48.693648px;}
.h7{height:50.800781px;}
.h1f{height:51.078516px;}
.h20{height:52.222500px;}
.h18{height:52.382812px;}
.h8{height:53.755312px;}
.h3a{height:58.179375px;}
.h10{height:58.429688px;}
.h25{height:59.343750px;}
.ha{height:59.436914px;}
.h2{height:65.884219px;}
.h9{height:90.540000px;}
.hb{height:106.380000px;}
.h22{height:145.265273px;}
.hf{height:645.585000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:30.780000px;}
.w1b{width:56.340000px;}
.w23{width:68.976000px;}
.w24{width:69.300000px;}
.w15{width:81.036000px;}
.w17{width:81.180000px;}
.w22{width:82.476000px;}
.w13{width:83.160000px;}
.w16{width:83.556000px;}
.w1d{width:83.916000px;}
.w1e{width:92.736000px;}
.w1f{width:95.940000px;}
.w19{width:97.056000px;}
.w20{width:108.180000px;}
.w1a{width:109.656000px;}
.w18{width:122.220000px;}
.w21{width:138.276000px;}
.we{width:139.896000px;}
.w11{width:148.320000px;}
.w9{width:157.890000px;}
.w14{width:164.730000px;}
.w8{width:181.110000px;}
.w1c{width:188.670000px;}
.w7{width:223.995000px;}
.w12{width:229.755000px;}
.w5{width:236.235000px;}
.wc{width:238.755000px;}
.w4{width:244.470000px;}
.wb{width:244.650000px;}
.wd{width:288.615000px;}
.w10{width:294.195000px;}
.w6{width:452.415000px;}
.wa{width:676.410000px;}
.w3{width:677.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x4{left:10.800000px;}
.xe{left:12.960000px;}
.xb{left:65.745000px;}
.x9{left:77.445000px;}
.x18{left:102.276000px;}
.x11{left:105.156000px;}
.xc{left:106.776000px;}
.x2{left:108.036000px;}
.x10{left:136.110000px;}
.x15{left:138.815987px;}
.x25{left:140.075987px;}
.xa{left:152.865000px;}
.x14{left:154.470000px;}
.x1e{left:164.370000px;}
.x21{left:216.210000px;}
.x1c{left:230.250000px;}
.x20{left:257.115000px;}
.x23{left:285.195000px;}
.x1d{left:327.315000px;}
.x1f{left:353.055000px;}
.x22{left:354.495000px;}
.x6{left:456.044987px;}
.x17{left:474.045000px;}
.x24{left:488.084987px;}
.x13{left:505.545000px;}
.x19{left:539.205000px;}
.x5{left:556.485000px;}
.x12{left:559.545000px;}
.x8{left:561.165000px;}
.x1b{left:622.770000px;}
.xf{left:633.210000px;}
.x3{left:674.604000px;}
.xd{left:693.504000px;}
.x1a{left:703.950000px;}
.x16{left:768.419987px;}
.x1{left:785.159987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.411733pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.297067pt;}
.lsf{letter-spacing:-0.239467pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.297067pt;}
.lsb{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.800000pt;}
.ls2{letter-spacing:2.880000pt;}
.ls3{letter-spacing:5.760000pt;}
.ls14{letter-spacing:7.680000pt;}
.ls13{letter-spacing:28.503040pt;}
.ls12{letter-spacing:56.023040pt;}
.ws8{word-spacing:-50.595937pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.377067pt;}
.ws4{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.782933pt;}
.wsa{word-spacing:-13.534613pt;}
.wsf{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.wse{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.360000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.wsd{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-4.115627pt;}
._6{margin-left:-2.713173pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.008000pt;}
._3{width:2.778667pt;}
._2{width:4.320000pt;}
._c{width:5.811627pt;}
._e{width:6.779307pt;}
._11{width:7.674453pt;}
._5{width:8.880000pt;}
._4{width:10.080000pt;}
._7{width:11.139840pt;}
._12{width:12.040960pt;}
._1e{width:12.936960pt;}
._25{width:14.677760pt;}
._b{width:15.586987pt;}
._a{width:16.501760pt;}
._1f{width:18.247680pt;}
._18{width:19.303680pt;}
._13{width:21.162240pt;}
._14{width:22.584320pt;}
._1b{width:24.161280pt;}
._10{width:25.907200pt;}
._f{width:26.864640pt;}
._1c{width:27.822080pt;}
._24{width:28.864000pt;}
._1a{width:29.807360pt;}
._19{width:31.074560pt;}
._22{width:32.108160pt;}
._d{width:33.214720pt;}
._23{width:34.679040pt;}
._2a{width:37.790720pt;}
._17{width:38.691840pt;}
._28{width:39.621120pt;}
._8{width:41.733120pt;}
._9{width:42.748587pt;}
._29{width:45.774080pt;}
._21{width:48.563200pt;}
._20{width:49.885440pt;}
._1d{width:76.764160pt;}
._15{width:83.057920pt;}
._27{width:89.830400pt;}
._26{width:119.919360pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.595937pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs9{font-size:178.560000pt;}
.y6c{bottom:-48.160000pt;}
.y6b{bottom:-22.720000pt;}
.y7{bottom:-22.560000pt;}
.ya{bottom:-20.960000pt;}
.yca{bottom:-15.040000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:2.240000pt;}
.y150{bottom:2.280000pt;}
.y1b{bottom:2.560000pt;}
.y106{bottom:2.720000pt;}
.y6a{bottom:2.880000pt;}
.y6{bottom:3.040000pt;}
.y133{bottom:3.360000pt;}
.y12{bottom:4.000000pt;}
.y67{bottom:4.186667pt;}
.y9{bottom:4.640000pt;}
.y10b{bottom:4.960000pt;}
.y129{bottom:5.120000pt;}
.y3b{bottom:5.440000pt;}
.yc8{bottom:7.040000pt;}
.y6f{bottom:7.360000pt;}
.y10c{bottom:7.520000pt;}
.y110{bottom:9.440000pt;}
.y65{bottom:9.760000pt;}
.y62{bottom:12.160000pt;}
.y71{bottom:14.080000pt;}
.y19{bottom:14.400000pt;}
.y13e{bottom:14.560000pt;}
.y140{bottom:14.586667pt;}
.y104{bottom:16.320000pt;}
.y61{bottom:23.360000pt;}
.y3a{bottom:24.000000pt;}
.y11{bottom:25.440000pt;}
.y18{bottom:32.160000pt;}
.y17{bottom:41.920000pt;}
.y39{bottom:42.400000pt;}
.y10{bottom:47.040000pt;}
.y16{bottom:55.840000pt;}
.y38{bottom:60.960000pt;}
.y15{bottom:69.600000pt;}
.y37{bottom:79.520000pt;}
.y14{bottom:83.360000pt;}
.y60{bottom:84.960000pt;}
.y36{bottom:97.920000pt;}
.y5f{bottom:98.880000pt;}
.y4{bottom:102.080000pt;}
.y6d{bottom:110.880000pt;}
.y5e{bottom:112.480000pt;}
.y8{bottom:113.440000pt;}
.y69{bottom:114.880000pt;}
.y5{bottom:115.360000pt;}
.y35{bottom:116.480000pt;}
.y3{bottom:120.000000pt;}
.y5d{bottom:125.600000pt;}
.y2{bottom:133.920000pt;}
.y34{bottom:135.040000pt;}
.y5c{bottom:138.560000pt;}
.y5b{bottom:151.560000pt;}
.y33{bottom:153.640000pt;}
.y1cb{bottom:160.666667pt;}
.y9a{bottom:161.946667pt;}
.y172{bottom:162.906667pt;}
.yc5{bottom:163.066667pt;}
.y5a{bottom:164.680000pt;}
.y123{bottom:165.786667pt;}
.y1a8{bottom:170.266667pt;}
.y32{bottom:172.040000pt;}
.yf4{bottom:172.986667pt;}
.yc{bottom:176.346667pt;}
.y59{bottom:177.640000pt;}
.y15b{bottom:179.066667pt;}
.ye{bottom:179.226667pt;}
.y99{bottom:180.506667pt;}
.y171{bottom:181.306667pt;}
.yc4{bottom:181.466667pt;}
.y122{bottom:181.626667pt;}
.y1a7{bottom:188.826667pt;}
.y31{bottom:190.600000pt;}
.y58{bottom:190.760000pt;}
.yf3{bottom:191.386667pt;}
.y192{bottom:196.666667pt;}
.yb{bottom:197.466667pt;}
.y1ca{bottom:197.626667pt;}
.yd{bottom:198.586667pt;}
.y98{bottom:199.066667pt;}
.yc3{bottom:200.026667pt;}
.y57{bottom:203.720000pt;}
.y1a6{bottom:207.226667pt;}
.y30{bottom:209.160000pt;}
.y170{bottom:210.586667pt;}
.y121{bottom:213.466667pt;}
.y15a{bottom:216.026667pt;}
.y1c9{bottom:216.186667pt;}
.y56{bottom:217.000000pt;}
.y97{bottom:217.466667pt;}
.yc2{bottom:218.586667pt;}
.yf2{bottom:220.666667pt;}
.y191{bottom:225.786667pt;}
.y2f{bottom:227.560000pt;}
.y16f{bottom:228.986667pt;}
.y120{bottom:229.306667pt;}
.y55{bottom:230.760000pt;}
.y1c{bottom:234.106667pt;}
.y159{bottom:234.586667pt;}
.y1c8{bottom:234.746667pt;}
.y96{bottom:236.026667pt;}
.yc1{bottom:237.146667pt;}
.yf1{bottom:239.066667pt;}
.y190{bottom:244.346667pt;}
.y54{bottom:244.520000pt;}
.y11f{bottom:245.146667pt;}
.y2e{bottom:246.120000pt;}
.y16e{bottom:247.546667pt;}
.y158{bottom:252.986667pt;}
.y1c7{bottom:253.146667pt;}
.y95{bottom:254.586667pt;}
.yc0{bottom:255.546667pt;}
.yf0{bottom:257.626667pt;}
.y53{bottom:258.280000pt;}
.y11e{bottom:261.786667pt;}
.y18f{bottom:262.906667pt;}
.y2d{bottom:264.680000pt;}
.y16d{bottom:266.106667pt;}
.y157{bottom:271.546667pt;}
.y1c6{bottom:271.706667pt;}
.y52{bottom:272.200000pt;}
.y94{bottom:272.986667pt;}
.ybf{bottom:274.106667pt;}
.yef{bottom:276.186667pt;}
.y11d{bottom:280.186667pt;}
.y18e{bottom:281.306667pt;}
.y2c{bottom:283.080000pt;}
.y16c{bottom:284.666667pt;}
.y51{bottom:285.960000pt;}
.y1c5{bottom:290.266667pt;}
.y156{bottom:290.906667pt;}
.y93{bottom:291.546667pt;}
.ybe{bottom:292.666667pt;}
.yee{bottom:294.586667pt;}
.y11c{bottom:298.746667pt;}
.y50{bottom:299.720000pt;}
.y18d{bottom:299.866667pt;}
.y2b{bottom:301.640000pt;}
.y16b{bottom:303.066667pt;}
.y1c4{bottom:308.826667pt;}
.y92{bottom:310.106667pt;}
.ybd{bottom:311.066667pt;}
.y155{bottom:311.546667pt;}
.y4f{bottom:313.480000pt;}
.y1cc{bottom:316.666667pt;}
.y11b{bottom:317.306667pt;}
.y18c{bottom:318.426667pt;}
.y2a{bottom:320.200000pt;}
.y16a{bottom:321.626667pt;}
.yed{bottom:323.866667pt;}
.y154{bottom:325.946667pt;}
.y1c3{bottom:327.226667pt;}
.y4e{bottom:327.240000pt;}
.ybc{bottom:329.626667pt;}
.y11a{bottom:335.706667pt;}
.y18b{bottom:336.826667pt;}
.y153{bottom:337.466667pt;}
.y29{bottom:338.760000pt;}
.y91{bottom:339.226667pt;}
.y169{bottom:340.186667pt;}
.y4d{bottom:341.160000pt;}
.yec{bottom:342.426667pt;}
.y1c2{bottom:345.786667pt;}
.ybb{bottom:348.186667pt;}
.y152{bottom:348.826667pt;}
.y119{bottom:354.266667pt;}
.y4c{bottom:354.760000pt;}
.y18a{bottom:355.386667pt;}
.y28{bottom:357.186667pt;}
.y90{bottom:357.786667pt;}
.y168{bottom:358.586667pt;}
.yeb{bottom:360.826667pt;}
.y151{bottom:361.146667pt;}
.y1c1{bottom:364.346667pt;}
.yba{bottom:366.746667pt;}
.y4b{bottom:367.906667pt;}
.y118{bottom:372.826667pt;}
.y14f{bottom:373.466667pt;}
.y189{bottom:373.946667pt;}
.y27{bottom:375.746667pt;}
.y8f{bottom:376.386667pt;}
.yea{bottom:379.426667pt;}
.y4a{bottom:380.866667pt;}
.y1c0{bottom:382.786667pt;}
.yb9{bottom:385.186667pt;}
.y14e{bottom:386.466667pt;}
.y167{bottom:387.906667pt;}
.y117{bottom:391.426667pt;}
.y188{bottom:392.386667pt;}
.y49{bottom:393.986667pt;}
.y26{bottom:394.306667pt;}
.y8e{bottom:394.786667pt;}
.ye9{bottom:397.986667pt;}
.y14d{bottom:399.266667pt;}
.y1bf{bottom:401.346667pt;}
.yb8{bottom:403.746667pt;}
.y166{bottom:406.306667pt;}
.y48{bottom:406.946667pt;}
.y116{bottom:409.826667pt;}
.y187{bottom:410.946667pt;}
.y25{bottom:412.706667pt;}
.y8d{bottom:413.346667pt;}
.ye8{bottom:416.386667pt;}
.y47{bottom:419.906667pt;}
.yb7{bottom:423.106667pt;}
.y165{bottom:424.866667pt;}
.y14c{bottom:427.106667pt;}
.y115{bottom:428.386667pt;}
.y1a5{bottom:429.506667pt;}
.y24{bottom:431.266667pt;}
.y8c{bottom:431.906667pt;}
.y46{bottom:433.026667pt;}
.ye7{bottom:434.946667pt;}
.y1be{bottom:438.306667pt;}
.y186{bottom:440.226667pt;}
.y14b{bottom:440.866667pt;}
.y164{bottom:443.426667pt;}
.y45{bottom:445.986667pt;}
.y114{bottom:446.946667pt;}
.y1a4{bottom:448.066667pt;}
.y23{bottom:449.826667pt;}
.y8b{bottom:450.306667pt;}
.ye6{bottom:453.506667pt;}
.yb6{bottom:454.146667pt;}
.y14a{bottom:454.786667pt;}
.y1bd{bottom:456.866667pt;}
.y185{bottom:458.626667pt;}
.y44{bottom:459.106667pt;}
.y113{bottom:465.346667pt;}
.y1a3{bottom:466.466667pt;}
.y22{bottom:468.386667pt;}
.y149{bottom:468.546667pt;}
.y8a{bottom:468.866667pt;}
.ye5{bottom:471.906667pt;}
.y43{bottom:472.066667pt;}
.yb5{bottom:472.546667pt;}
.y1bc{bottom:475.426667pt;}
.y184{bottom:477.186667pt;}
.y148{bottom:482.306667pt;}
.y112{bottom:483.906667pt;}
.y1a2{bottom:485.026667pt;}
.y42{bottom:485.186667pt;}
.y21{bottom:486.786667pt;}
.ye4{bottom:490.466667pt;}
.yb4{bottom:491.106667pt;}
.y1bb{bottom:493.986667pt;}
.y183{bottom:495.746667pt;}
.y147{bottom:496.066667pt;}
.y111{bottom:497.666667pt;}
.y41{bottom:498.146667pt;}
.y1a1{bottom:503.586667pt;}
.y20{bottom:505.346667pt;}
.ye3{bottom:509.026667pt;}
.yb3{bottom:509.666667pt;}
.y146{bottom:509.986667pt;}
.y40{bottom:511.266667pt;}
.y10f{bottom:511.586667pt;}
.y1ba{bottom:512.386667pt;}
.y182{bottom:514.146667pt;}
.y89{bottom:516.546667pt;}
.y1a0{bottom:521.986667pt;}
.y145{bottom:523.746667pt;}
.y1f{bottom:523.906667pt;}
.y3f{bottom:524.226667pt;}
.yb2{bottom:528.066667pt;}
.y1b9{bottom:530.946667pt;}
.y181{bottom:532.706667pt;}
.y88{bottom:535.106667pt;}
.y3e{bottom:537.186667pt;}
.y144{bottom:537.506667pt;}
.ye2{bottom:538.146667pt;}
.y10e{bottom:539.106667pt;}
.y19f{bottom:540.546667pt;}
.y1e{bottom:542.306667pt;}
.yb1{bottom:546.626667pt;}
.y143{bottom:549.346667pt;}
.y1b8{bottom:549.506667pt;}
.y3d{bottom:550.306667pt;}
.y180{bottom:551.266667pt;}
.y10d{bottom:552.866667pt;}
.y87{bottom:553.666667pt;}
.ye1{bottom:556.706667pt;}
.y1d{bottom:558.946667pt;}
.y19e{bottom:559.906667pt;}
.y142{bottom:561.666667pt;}
.y3c{bottom:563.266667pt;}
.yb0{bottom:565.186667pt;}
.y10a{bottom:566.786667pt;}
.y1b7{bottom:567.906667pt;}
.y17f{bottom:569.826667pt;}
.y86{bottom:572.066667pt;}
.y141{bottom:573.986667pt;}
.ye0{bottom:575.266667pt;}
.yaf{bottom:583.746667pt;}
.y109{bottom:585.506667pt;}
.y1b6{bottom:586.466667pt;}
.y13f{bottom:586.786667pt;}
.y17e{bottom:589.186667pt;}
.y85{bottom:590.653333pt;}
.y19d{bottom:590.973333pt;}
.ydf{bottom:593.693333pt;}
.y108{bottom:599.293333pt;}
.yae{bottom:602.173333pt;}
.y1b5{bottom:605.053333pt;}
.y19c{bottom:609.373333pt;}
.y13d{bottom:612.093333pt;}
.yde{bottom:612.253333pt;}
.y107{bottom:613.053333pt;}
.y84{bottom:619.773333pt;}
.y17d{bottom:620.093333pt;}
.yad{bottom:620.733333pt;}
.y1b4{bottom:623.613333pt;}
.y105{bottom:627.453333pt;}
.y19b{bottom:627.933333pt;}
.ydd{bottom:630.813333pt;}
.y83{bottom:638.333333pt;}
.y17c{bottom:638.653333pt;}
.y163{bottom:639.293333pt;}
.y103{bottom:642.013333pt;}
.y19a{bottom:646.493333pt;}
.ydc{bottom:649.373333pt;}
.yac{bottom:649.853333pt;}
.y82{bottom:656.893333pt;}
.y17b{bottom:657.213333pt;}
.y162{bottom:657.693333pt;}
.y13c{bottom:657.853333pt;}
.y1b3{bottom:660.573333pt;}
.y199{bottom:665.053333pt;}
.ydb{bottom:667.773333pt;}
.yab{bottom:668.413333pt;}
.y13b{bottom:674.333333pt;}
.y102{bottom:674.973333pt;}
.y81{bottom:675.453333pt;}
.y17a{bottom:675.613333pt;}
.y161{bottom:676.253333pt;}
.y1b2{bottom:679.133333pt;}
.yda{bottom:686.333333pt;}
.yaa{bottom:686.973333pt;}
.y13a{bottom:692.893333pt;}
.y80{bottom:693.853333pt;}
.y179{bottom:694.173333pt;}
.y160{bottom:694.813333pt;}
.y1b1{bottom:697.533333pt;}
.y101{bottom:702.173333pt;}
.yd9{bottom:704.893333pt;}
.ya9{bottom:705.373333pt;}
.y139{bottom:711.453333pt;}
.y178{bottom:712.733333pt;}
.y15f{bottom:713.213333pt;}
.y1b0{bottom:716.093333pt;}
.y100{bottom:720.733333pt;}
.y7f{bottom:723.133333pt;}
.yd8{bottom:723.293333pt;}
.ya8{bottom:723.933333pt;}
.y138{bottom:730.013333pt;}
.y177{bottom:731.133333pt;}
.y1af{bottom:734.653333pt;}
.yff{bottom:739.293333pt;}
.y7e{bottom:741.533333pt;}
.yd7{bottom:741.853333pt;}
.ya7{bottom:742.493333pt;}
.y137{bottom:748.413333pt;}
.y176{bottom:749.693333pt;}
.y1ae{bottom:753.213333pt;}
.yfe{bottom:757.693333pt;}
.y7d{bottom:760.093333pt;}
.yd6{bottom:760.413333pt;}
.ya6{bottom:761.053333pt;}
.y136{bottom:766.973333pt;}
.y175{bottom:768.253333pt;}
.y198{bottom:770.973333pt;}
.y1ad{bottom:771.613333pt;}
.yfd{bottom:776.253333pt;}
.y7c{bottom:778.653333pt;}
.yd5{bottom:778.813333pt;}
.ya5{bottom:779.453333pt;}
.y135{bottom:782.653333pt;}
.y174{bottom:786.813333pt;}
.y197{bottom:789.533333pt;}
.y1ac{bottom:790.173333pt;}
.y134{bottom:794.493333pt;}
.yfc{bottom:794.813333pt;}
.y7b{bottom:797.053333pt;}
.yd4{bottom:797.373333pt;}
.ya4{bottom:798.013333pt;}
.y173{bottom:805.213333pt;}
.y132{bottom:806.853333pt;}
.y196{bottom:808.133333pt;}
.y1a{bottom:808.773333pt;}
.yfb{bottom:813.253333pt;}
.y7a{bottom:815.653333pt;}
.yd3{bottom:815.973333pt;}
.ya3{bottom:816.613333pt;}
.y131{bottom:821.253333pt;}
.y13{bottom:822.533333pt;}
.y195{bottom:826.693333pt;}
.y1ab{bottom:827.173333pt;}
.yfa{bottom:831.813333pt;}
.y130{bottom:833.413333pt;}
.yd2{bottom:834.533333pt;}
.ya2{bottom:835.013333pt;}
.y79{bottom:844.933333pt;}
.y194{bottom:845.093333pt;}
.y12f{bottom:845.733333pt;}
.yf9{bottom:851.173333pt;}
.yd1{bottom:852.933333pt;}
.ya1{bottom:853.573333pt;}
.y12e{bottom:858.053333pt;}
.y78{bottom:863.333333pt;}
.y193{bottom:863.653333pt;}
.y1aa{bottom:864.293333pt;}
.y12d{bottom:870.213333pt;}
.yd0{bottom:871.493333pt;}
.ya0{bottom:872.133333pt;}
.y77{bottom:881.893333pt;}
.yf8{bottom:882.213333pt;}
.y12c{bottom:882.533333pt;}
.y1a9{bottom:882.693333pt;}
.ycf{bottom:890.053333pt;}
.y15e{bottom:890.693333pt;}
.y12b{bottom:894.853333pt;}
.y76{bottom:900.453333pt;}
.yf7{bottom:900.613333pt;}
.y9f{bottom:901.253333pt;}
.yce{bottom:908.453333pt;}
.y15d{bottom:909.093333pt;}
.yf{bottom:917.093333pt;}
.y75{bottom:918.853333pt;}
.yf6{bottom:919.173333pt;}
.y12a{bottom:919.333333pt;}
.y9e{bottom:919.813333pt;}
.ycd{bottom:927.013333pt;}
.y15c{bottom:927.653333pt;}
.y128{bottom:931.653333pt;}
.yc6{bottom:931.973333pt;}
.y74{bottom:937.413333pt;}
.yf5{bottom:937.733333pt;}
.y9d{bottom:938.373333pt;}
.y127{bottom:946.693333pt;}
.y73{bottom:955.973333pt;}
.ycc{bottom:956.293333pt;}
.y9c{bottom:956.773333pt;}
.y125{bottom:959.653333pt;}
.y72{bottom:974.693333pt;}
.y9b{bottom:975.333333pt;}
.y124{bottom:977.253333pt;}
.y70{bottom:991.013333pt;}
.y68{bottom:992.453333pt;}
.y63{bottom:992.613333pt;}
.ycb{bottom:993.253333pt;}
.yc9{bottom:999.493333pt;}
.y6e{bottom:1000.613333pt;}
.yc7{bottom:1007.013333pt;}
.y1{bottom:1010.373333pt;}
.y64{bottom:1011.173333pt;}
.y66{bottom:1018.213333pt;}
.h36{height:11.360000pt;}
.h38{height:11.520000pt;}
.h30{height:12.160000pt;}
.h34{height:12.192000pt;}
.h2b{height:12.320000pt;}
.h35{height:12.320133pt;}
.h31{height:12.352000pt;}
.he{height:13.760000pt;}
.h29{height:13.792000pt;}
.h28{height:13.920000pt;}
.h1c{height:14.240000pt;}
.h4{height:14.400000pt;}
.h2e{height:15.040000pt;}
.h6{height:16.000000pt;}
.h19{height:16.832000pt;}
.h1b{height:17.920000pt;}
.h1d{height:18.400000pt;}
.h23{height:18.432000pt;}
.h2a{height:18.720000pt;}
.h2f{height:24.480000pt;}
.h33{height:24.640000pt;}
.h32{height:24.672000pt;}
.h1e{height:25.440000pt;}
.h17{height:25.472000pt;}
.h16{height:25.600000pt;}
.h3{height:25.632000pt;}
.hd{height:26.375000pt;}
.h27{height:27.520000pt;}
.h37{height:29.157187pt;}
.h2c{height:30.254687pt;}
.h2d{height:31.008437pt;}
.h14{height:32.060937pt;}
.h26{height:33.867188pt;}
.h15{height:34.710938pt;}
.h12{height:36.875625pt;}
.h21{height:37.120000pt;}
.h13{height:37.452500pt;}
.h5{height:39.562500pt;}
.h11{height:40.727500pt;}
.h3b{height:41.002500pt;}
.h24{height:41.062500pt;}
.h39{height:41.543750pt;}
.hc{height:42.375000pt;}
.h1a{height:43.283243pt;}
.h7{height:45.156250pt;}
.h1f{height:45.403125pt;}
.h20{height:46.420000pt;}
.h18{height:46.562500pt;}
.h8{height:47.782500pt;}
.h3a{height:51.715000pt;}
.h10{height:51.937500pt;}
.h25{height:52.750000pt;}
.ha{height:52.832812pt;}
.h2{height:58.563750pt;}
.h9{height:80.480000pt;}
.hb{height:94.560000pt;}
.h22{height:129.124687pt;}
.hf{height:573.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:27.360000pt;}
.w1b{width:50.080000pt;}
.w23{width:61.312000pt;}
.w24{width:61.600000pt;}
.w15{width:72.032000pt;}
.w17{width:72.160000pt;}
.w22{width:73.312000pt;}
.w13{width:73.920000pt;}
.w16{width:74.272000pt;}
.w1d{width:74.592000pt;}
.w1e{width:82.432000pt;}
.w1f{width:85.280000pt;}
.w19{width:86.272000pt;}
.w20{width:96.160000pt;}
.w1a{width:97.472000pt;}
.w18{width:108.640000pt;}
.w21{width:122.912000pt;}
.we{width:124.352000pt;}
.w11{width:131.840000pt;}
.w9{width:140.346667pt;}
.w14{width:146.426667pt;}
.w8{width:160.986667pt;}
.w1c{width:167.706667pt;}
.w7{width:199.106667pt;}
.w12{width:204.226667pt;}
.w5{width:209.986667pt;}
.wc{width:212.226667pt;}
.w4{width:217.306667pt;}
.wb{width:217.466667pt;}
.wd{width:256.546667pt;}
.w10{width:261.506667pt;}
.w6{width:402.146667pt;}
.wa{width:601.253333pt;}
.w3{width:601.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x4{left:9.600000pt;}
.xe{left:11.520000pt;}
.xb{left:58.440000pt;}
.x9{left:68.840000pt;}
.x18{left:90.912000pt;}
.x11{left:93.472000pt;}
.xc{left:94.912000pt;}
.x2{left:96.032000pt;}
.x10{left:120.986667pt;}
.x15{left:123.391988pt;}
.x25{left:124.511988pt;}
.xa{left:135.880000pt;}
.x14{left:137.306667pt;}
.x1e{left:146.106667pt;}
.x21{left:192.186667pt;}
.x1c{left:204.666667pt;}
.x20{left:228.546667pt;}
.x23{left:253.506667pt;}
.x1d{left:290.946667pt;}
.x1f{left:313.826667pt;}
.x22{left:315.106667pt;}
.x6{left:405.373322pt;}
.x17{left:421.373333pt;}
.x24{left:433.853322pt;}
.x13{left:449.373333pt;}
.x19{left:479.293333pt;}
.x5{left:494.653333pt;}
.x12{left:497.373333pt;}
.x8{left:498.813333pt;}
.x1b{left:553.573333pt;}
.xf{left:562.853333pt;}
.x3{left:599.648000pt;}
.xd{left:616.448000pt;}
.x1a{left:625.733333pt;}
.x16{left:683.039988pt;}
.x1{left:697.919988pt;}
}




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