
    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_ff8e8eb9def98b207bce4904.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_cd762329bd7e68ee95e47b83.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_576424c28133cc31ab78cd18.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6748750d5e80e1d9ebd28726.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_17be514036c1c572ad4b1a58.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b2ada7c6de3a9d23c93b254a.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.960000px;}
.v4{vertical-align:15.840000px;}
.v8{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.v7{vertical-align:65.520000px;}
.ls16{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.ls2{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.227400px;}
.ls15{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.263400px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.512000px;}
.lsb{letter-spacing:9.349200px;}
.ls14{letter-spacing:16.506720px;}
.lsa{letter-spacing:17.279280px;}
.ls12{letter-spacing:46.026720px;}
.ls13{letter-spacing:51.066720px;}
.ls8{letter-spacing:116.712000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.680200px;}
.wsa{word-spacing:-13.410600px;}
.wsf{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.414600px;}
.ws6{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:31.625640px;}
.ws8{word-spacing:93.545640px;}
._12{margin-left:-3.510960px;}
._4{margin-left:-2.414400px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._5{width:2.398560px;}
._e{width:3.784560px;}
._7{width:5.079600px;}
._8{width:6.083040px;}
._9{width:7.828560px;}
._15{width:8.904240px;}
._c{width:10.039680px;}
._1b{width:11.533680px;}
._6{width:13.529760px;}
._d{width:16.434000px;}
._1d{width:17.629200px;}
._b{width:18.649440px;}
._a{width:20.437920px;}
._20{width:21.931920px;}
._1a{width:22.947840px;}
._1c{width:23.963760px;}
._14{width:25.583040px;}
._13{width:26.826480px;}
._17{width:27.967680px;}
._16{width:28.983600px;}
._18{width:30.298320px;}
._19{width:32.010480px;}
._1e{width:33.465600px;}
._24{width:34.840080px;}
._22{width:36.692640px;}
._21{width:38.425680px;}
._11{width:40.039200px;}
._10{width:41.297040px;}
._2e{width:44.542080px;}
._1f{width:46.194480px;}
._2b{width:50.042160px;}
._2d{width:51.251040px;}
._36{width:61.851600px;}
._29{width:63.166320px;}
._2{width:64.800000px;}
._38{width:66.165120px;}
._26{width:67.289760px;}
._34{width:72.156000px;}
._35{width:74.700000px;}
._30{width:76.463760px;}
._2f{width:77.807520px;}
._28{width:80.922960px;}
._27{width:82.049760px;}
._2c{width:91.671840px;}
._2a{width:100.874880px;}
._23{width:129.798720px;}
._25{width:147.247680px;}
._32{width:153.287760px;}
._31{width:154.658880px;}
._f{width:260.244000px;}
._33{width:299.576880px;}
._37{width:599.739840px;}
._3{width:674.100000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(38,74,96);}
.fc3{color:rgb(24,23,23);}
.fc4{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y64{bottom:5.805000px;}
.y61{bottom:5.940000px;}
.y178{bottom:6.120000px;}
.y60{bottom:6.300000px;}
.y11{bottom:6.480000px;}
.y11c{bottom:6.660000px;}
.y114{bottom:6.840000px;}
.y43{bottom:7.020000px;}
.y123{bottom:7.065000px;}
.y128{bottom:7.380000px;}
.y113{bottom:7.560000px;}
.y11d{bottom:7.740000px;}
.y8{bottom:7.920000px;}
.y121{bottom:8.460000px;}
.y124{bottom:8.505000px;}
.y1b{bottom:8.820000px;}
.y111{bottom:9.000000px;}
.y129{bottom:9.180000px;}
.y12d{bottom:9.360000px;}
.y118{bottom:9.900000px;}
.y17e{bottom:10.080000px;}
.y160{bottom:10.260000px;}
.y162{bottom:10.440000px;}
.y10f{bottom:18.900000px;}
.yd{bottom:25.560000px;}
.y15b{bottom:25.605000px;}
.y2b{bottom:25.740000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y110{bottom:28.800000px;}
.y2a{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.y147{bottom:53.130000px;}
.yc{bottom:54.360000px;}
.y17b{bottom:55.980000px;}
.y13{bottom:56.160000px;}
.y149{bottom:63.030000px;}
.y29{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.y10{bottom:70.200000px;}
.y146{bottom:72.930000px;}
.yb{bottom:74.340000px;}
.y13f{bottom:79.380000px;}
.y28{bottom:85.140000px;}
.y136{bottom:85.500000px;}
.y4{bottom:97.590000px;}
.y88{bottom:97.740000px;}
.y10d{bottom:99.900000px;}
.y183{bottom:100.260000px;}
.y12b{bottom:100.470000px;}
.ya{bottom:103.170000px;}
.y27{bottom:104.970000px;}
.y119{bottom:107.640000px;}
.y1b0{bottom:110.520000px;}
.y52{bottom:111.600000px;}
.y116{bottom:111.825000px;}
.y87{bottom:117.540000px;}
.y41{bottom:117.720000px;}
.y10c{bottom:119.700000px;}
.y182{bottom:120.060000px;}
.y9{bottom:122.970000px;}
.y26{bottom:124.950000px;}
.yb1{bottom:126.180000px;}
.y14d{bottom:130.140000px;}
.y1af{bottom:130.320000px;}
.y51{bottom:131.400000px;}
.y3{bottom:131.970000px;}
.y1cf{bottom:133.200000px;}
.yd9{bottom:135.180000px;}
.y86{bottom:137.340000px;}
.y40{bottom:137.520000px;}
.y15d{bottom:138.600000px;}
.y10b{bottom:139.500000px;}
.y181{bottom:139.860000px;}
.y25{bottom:144.750000px;}
.yb0{bottom:145.980000px;}
.y1ae{bottom:150.120000px;}
.y50{bottom:151.200000px;}
.y14c{bottom:152.670000px;}
.y1ce{bottom:153.210000px;}
.yd8{bottom:155.010000px;}
.y85{bottom:157.170000px;}
.y3f{bottom:157.350000px;}
.y10a{bottom:159.330000px;}
.y24{bottom:164.550000px;}
.yaf{bottom:165.810000px;}
.y1ad{bottom:169.950000px;}
.y4f{bottom:171.030000px;}
.y1cd{bottom:173.010000px;}
.y180{bottom:173.730000px;}
.yd7{bottom:174.810000px;}
.y14b{bottom:175.170000px;}
.y3e{bottom:177.150000px;}
.y109{bottom:179.310000px;}
.y23{bottom:184.350000px;}
.yae{bottom:185.610000px;}
.y1ac{bottom:189.750000px;}
.y4e{bottom:191.010000px;}
.y1cc{bottom:192.810000px;}
.y17f{bottom:193.530000px;}
.yd6{bottom:194.610000px;}
.y84{bottom:196.950000px;}
.y3d{bottom:197.130000px;}
.y14a{bottom:197.670000px;}
.y108{bottom:199.110000px;}
.y22{bottom:204.150000px;}
.yad{bottom:205.410000px;}
.y1ab{bottom:209.730000px;}
.y4d{bottom:210.810000px;}
.y1cb{bottom:212.610000px;}
.yd5{bottom:214.410000px;}
.y17a{bottom:214.950000px;}
.y83{bottom:216.750000px;}
.y3c{bottom:216.930000px;}
.y107{bottom:218.910000px;}
.y148{bottom:220.170000px;}
.y21{bottom:224.130000px;}
.yac{bottom:225.390000px;}
.y4c{bottom:225.570000px;}
.y1aa{bottom:229.530000px;}
.y1ca{bottom:232.410000px;}
.yd4{bottom:234.390000px;}
.y82{bottom:236.550000px;}
.y3b{bottom:236.730000px;}
.y106{bottom:238.710000px;}
.y17d{bottom:239.610000px;}
.y13e{bottom:242.670000px;}
.y20{bottom:243.930000px;}
.yab{bottom:245.190000px;}
.y4b{bottom:247.710000px;}
.y1a9{bottom:249.330000px;}
.y1c9{bottom:252.390000px;}
.yd3{bottom:254.190000px;}
.y81{bottom:256.350000px;}
.y3a{bottom:256.530000px;}
.y105{bottom:258.510000px;}
.y1f{bottom:263.730000px;}
.yaa{bottom:264.990000px;}
.y17c{bottom:265.170000px;}
.y145{bottom:266.610000px;}
.y1a8{bottom:269.130000px;}
.y4a{bottom:269.670000px;}
.y1c8{bottom:272.190000px;}
.yd2{bottom:273.990000px;}
.y39{bottom:276.330000px;}
.y104{bottom:278.490000px;}
.y1e{bottom:283.530000px;}
.y179{bottom:286.590000px;}
.y1a7{bottom:288.930000px;}
.y144{bottom:290.550000px;}
.y49{bottom:291.810000px;}
.y1c7{bottom:291.990000px;}
.ya9{bottom:293.790000px;}
.y80{bottom:296.130000px;}
.y38{bottom:296.310000px;}
.y103{bottom:298.290000px;}
.y1d{bottom:303.330000px;}
.y177{bottom:306.390000px;}
.y1a6{bottom:308.910000px;}
.y1c6{bottom:311.790000px;}
.ya8{bottom:313.590000px;}
.y48{bottom:313.770000px;}
.y143{bottom:314.670000px;}
.y7f{bottom:315.930000px;}
.y37{bottom:316.110000px;}
.y102{bottom:318.090000px;}
.y1a5{bottom:328.710000px;}
.y1c5{bottom:331.590000px;}
.y176{bottom:332.670000px;}
.ya7{bottom:333.570000px;}
.y7e{bottom:335.730000px;}
.y36{bottom:335.910000px;}
.y101{bottom:337.890000px;}
.y142{bottom:338.610000px;}
.y1a4{bottom:348.510000px;}
.y1c4{bottom:351.570000px;}
.y175{bottom:352.470000px;}
.ya6{bottom:353.370000px;}
.y7d{bottom:355.530000px;}
.y35{bottom:355.710000px;}
.y100{bottom:357.690000px;}
.y47{bottom:357.870000px;}
.y141{bottom:362.550000px;}
.y1a3{bottom:368.310000px;}
.y1c3{bottom:371.370000px;}
.y174{bottom:372.270000px;}
.ya5{bottom:373.170000px;}
.y34{bottom:375.510000px;}
.yff{bottom:377.670000px;}
.y46{bottom:380.010000px;}
.y140{bottom:386.670000px;}
.y1a2{bottom:388.110000px;}
.y1c2{bottom:391.170000px;}
.y173{bottom:392.070000px;}
.ya4{bottom:392.970000px;}
.y7c{bottom:395.310000px;}
.y33{bottom:395.490000px;}
.yfe{bottom:397.470000px;}
.y45{bottom:402.015000px;}
.y1a1{bottom:408.135000px;}
.y135{bottom:410.655000px;}
.y1c1{bottom:411.015000px;}
.y172{bottom:411.915000px;}
.ya3{bottom:412.815000px;}
.y7b{bottom:415.155000px;}
.y32{bottom:415.335000px;}
.yfd{bottom:417.315000px;}
.y44{bottom:424.155000px;}
.y1a0{bottom:427.935000px;}
.y1c0{bottom:430.815000px;}
.y171{bottom:431.895000px;}
.ya2{bottom:432.795000px;}
.y13d{bottom:433.155000px;}
.y7a{bottom:434.955000px;}
.y31{bottom:435.135000px;}
.yfc{bottom:437.115000px;}
.y42{bottom:446.115000px;}
.y19f{bottom:447.735000px;}
.y1bf{bottom:450.795000px;}
.y170{bottom:451.695000px;}
.ya1{bottom:452.595000px;}
.y79{bottom:454.755000px;}
.y30{bottom:454.935000px;}
.y13c{bottom:455.655000px;}
.yfb{bottom:456.915000px;}
.y11a{bottom:458.355000px;}
.y19e{bottom:467.535000px;}
.y1be{bottom:470.595000px;}
.y16f{bottom:471.495000px;}
.ya0{bottom:472.395000px;}
.y2f{bottom:474.735000px;}
.yfa{bottom:476.895000px;}
.y13b{bottom:478.155000px;}
.y19d{bottom:487.335000px;}
.y1bd{bottom:490.395000px;}
.y16e{bottom:491.295000px;}
.yd1{bottom:492.195000px;}
.y78{bottom:494.535000px;}
.y2e{bottom:494.715000px;}
.yf9{bottom:496.695000px;}
.y13a{bottom:500.655000px;}
.y9f{bottom:501.195000px;}
.y19c{bottom:507.315000px;}
.y1bc{bottom:510.195000px;}
.y16d{bottom:511.095000px;}
.yd0{bottom:511.995000px;}
.y77{bottom:514.335000px;}
.y2d{bottom:514.515000px;}
.yf8{bottom:516.495000px;}
.y9e{bottom:520.995000px;}
.y139{bottom:523.155000px;}
.y19b{bottom:527.115000px;}
.y2c{bottom:529.275000px;}
.y1bb{bottom:529.995000px;}
.y16c{bottom:531.075000px;}
.ycf{bottom:531.975000px;}
.y76{bottom:534.135000px;}
.yf7{bottom:536.295000px;}
.y9d{bottom:540.975000px;}
.y138{bottom:545.655000px;}
.y19a{bottom:546.915000px;}
.y1c{bottom:549.795000px;}
.y1ba{bottom:549.975000px;}
.y16b{bottom:550.875000px;}
.yce{bottom:551.775000px;}
.y75{bottom:553.935000px;}
.yf6{bottom:556.095000px;}
.y9c{bottom:560.775000px;}
.y199{bottom:566.715000px;}
.y137{bottom:568.155000px;}
.y1b9{bottom:569.775000px;}
.y16a{bottom:570.675000px;}
.ycd{bottom:571.575000px;}
.y74{bottom:573.915000px;}
.yf5{bottom:576.075000px;}
.y9b{bottom:580.575000px;}
.y198{bottom:586.515000px;}
.y1b8{bottom:589.575000px;}
.y169{bottom:590.475000px;}
.y12a{bottom:590.655000px;}
.ycc{bottom:591.375000px;}
.y73{bottom:593.715000px;}
.yf4{bottom:595.875000px;}
.y9a{bottom:600.375000px;}
.y197{bottom:606.495000px;}
.y1b7{bottom:609.375000px;}
.y168{bottom:610.275000px;}
.ycb{bottom:611.175000px;}
.y134{bottom:613.155000px;}
.y72{bottom:613.515000px;}
.yf3{bottom:615.675000px;}
.y99{bottom:620.175000px;}
.y196{bottom:626.295000px;}
.y1b6{bottom:629.175000px;}
.y167{bottom:630.255000px;}
.yca{bottom:631.155000px;}
.y71{bottom:633.315000px;}
.yf2{bottom:635.475000px;}
.y133{bottom:635.655000px;}
.y98{bottom:640.155000px;}
.y195{bottom:646.095000px;}
.y1b5{bottom:649.185000px;}
.y166{bottom:650.085000px;}
.yc9{bottom:650.985000px;}
.y70{bottom:653.145000px;}
.yf1{bottom:655.305000px;}
.y132{bottom:658.185000px;}
.y97{bottom:659.985000px;}
.y194{bottom:665.925000px;}
.y1b4{bottom:668.985000px;}
.yc8{bottom:670.785000px;}
.y6f{bottom:673.125000px;}
.yf0{bottom:675.285000px;}
.y96{bottom:679.785000px;}
.y131{bottom:680.685000px;}
.y165{bottom:683.925000px;}
.y193{bottom:685.725000px;}
.y6e{bottom:687.885000px;}
.y1b3{bottom:688.785000px;}
.yc7{bottom:690.585000px;}
.yef{bottom:695.085000px;}
.y95{bottom:699.585000px;}
.y130{bottom:704.625000px;}
.y192{bottom:705.705000px;}
.y15c{bottom:708.405000px;}
.y1b2{bottom:708.585000px;}
.y6d{bottom:709.305000px;}
.yc6{bottom:710.385000px;}
.yee{bottom:714.885000px;}
.y94{bottom:719.385000px;}
.y191{bottom:725.505000px;}
.y1b1{bottom:728.385000px;}
.y12f{bottom:728.745000px;}
.yc5{bottom:730.365000px;}
.y6c{bottom:730.725000px;}
.y164{bottom:734.325000px;}
.yed{bottom:734.685000px;}
.y190{bottom:745.305000px;}
.y93{bottom:748.365000px;}
.yc4{bottom:750.165000px;}
.y6b{bottom:751.605000px;}
.y12e{bottom:752.685000px;}
.yec{bottom:754.485000px;}
.y163{bottom:760.245000px;}
.y18f{bottom:765.105000px;}
.y92{bottom:768.165000px;}
.yc3{bottom:769.965000px;}
.y6a{bottom:772.485000px;}
.yeb{bottom:774.465000px;}
.y12c{bottom:776.625000px;}
.y18e{bottom:784.905000px;}
.y161{bottom:786.165000px;}
.y91{bottom:787.965000px;}
.yc2{bottom:789.765000px;}
.y69{bottom:793.365000px;}
.yea{bottom:794.265000px;}
.y115{bottom:800.745000px;}
.y18d{bottom:804.885000px;}
.y90{bottom:807.765000px;}
.yc1{bottom:809.565000px;}
.y15f{bottom:812.265000px;}
.y68{bottom:814.065000px;}
.y127{bottom:824.685000px;}
.y8f{bottom:827.565000px;}
.yc0{bottom:829.545000px;}
.ye9{bottom:833.865000px;}
.y67{bottom:834.945000px;}
.y15e{bottom:838.185000px;}
.y18c{bottom:844.485000px;}
.y8e{bottom:847.545000px;}
.ybf{bottom:849.345000px;}
.y126{bottom:849.525000px;}
.ye8{bottom:853.665000px;}
.y66{bottom:855.825000px;}
.y159{bottom:862.665000px;}
.y18b{bottom:864.285000px;}
.y8d{bottom:867.345000px;}
.y1a{bottom:868.065000px;}
.ybe{bottom:869.145000px;}
.y125{bottom:872.025000px;}
.ye7{bottom:873.645000px;}
.y65{bottom:876.705000px;}
.y18a{bottom:884.085000px;}
.y15a{bottom:885.525000px;}
.y8c{bottom:887.145000px;}
.ybd{bottom:888.945000px;}
.ye6{bottom:893.445000px;}
.y122{bottom:894.525000px;}
.y19{bottom:897.405000px;}
.y63{bottom:897.585000px;}
.y189{bottom:904.110000px;}
.y8b{bottom:906.990000px;}
.ybc{bottom:908.790000px;}
.ye5{bottom:913.290000px;}
.y120{bottom:917.790000px;}
.y62{bottom:918.510000px;}
.y18{bottom:922.470000px;}
.y188{bottom:923.910000px;}
.y8a{bottom:926.790000px;}
.ybb{bottom:928.770000px;}
.y158{bottom:931.650000px;}
.ye4{bottom:933.090000px;}
.y17{bottom:937.590000px;}
.y187{bottom:937.950000px;}
.y5f{bottom:939.210000px;}
.y11f{bottom:941.010000px;}
.y89{bottom:946.770000px;}
.ye3{bottom:952.890000px;}
.yba{bottom:957.570000px;}
.y16{bottom:959.010000px;}
.y157{bottom:960.450000px;}
.y11e{bottom:963.510000px;}
.y5e{bottom:966.570000px;}
.ye2{bottom:972.870000px;}
.yb9{bottom:977.370000px;}
.y186{bottom:978.990000px;}
.y156{bottom:980.250000px;}
.y15{bottom:982.410000px;}
.y11b{bottom:986.010000px;}
.y5d{bottom:986.370000px;}
.ye1{bottom:992.670000px;}
.yb8{bottom:997.170000px;}
.y155{bottom:1000.050000px;}
.y185{bottom:1000.410000px;}
.y5c{bottom:1006.170000px;}
.y117{bottom:1008.510000px;}
.ye0{bottom:1012.470000px;}
.y14{bottom:1014.090000px;}
.yb7{bottom:1016.970000px;}
.y154{bottom:1020.030000px;}
.y5b{bottom:1025.970000px;}
.ydf{bottom:1032.270000px;}
.y10e{bottom:1033.170000px;}
.yb6{bottom:1036.950000px;}
.y153{bottom:1039.830000px;}
.y184{bottom:1040.010000px;}
.yf{bottom:1040.910000px;}
.y5a{bottom:1045.950000px;}
.yde{bottom:1052.070000px;}
.y112{bottom:1055.670000px;}
.yb5{bottom:1056.750000px;}
.y152{bottom:1059.630000px;}
.y1{bottom:1063.410000px;}
.y59{bottom:1065.750000px;}
.ydd{bottom:1072.050000px;}
.yb4{bottom:1076.550000px;}
.y151{bottom:1079.430000px;}
.y58{bottom:1085.550000px;}
.ydc{bottom:1091.850000px;}
.yb3{bottom:1096.350000px;}
.y150{bottom:1099.230000px;}
.y57{bottom:1105.350000px;}
.ydb{bottom:1110.750000px;}
.yb2{bottom:1116.150000px;}
.yda{bottom:1118.310000px;}
.y56{bottom:1125.150000px;}
.y14f{bottom:1133.970000px;}
.y55{bottom:1145.130000px;}
.y14e{bottom:1156.500000px;}
.y54{bottom:1164.960000px;}
.y53{bottom:1194.300000px;}
.h3{height:2.067188px;}
.h10{height:19.800000px;}
.h15{height:19.980000px;}
.h16{height:20.016000px;}
.h17{height:20.160000px;}
.h32{height:20.340000px;}
.h14{height:20.700000px;}
.h12{height:21.240000px;}
.h13{height:21.276000px;}
.h23{height:21.600000px;}
.h1d{height:21.780000px;}
.h26{height:21.816000px;}
.ha{height:21.960000px;}
.h11{height:22.140000px;}
.h21{height:22.500000px;}
.h22{height:22.536000px;}
.he{height:22.860000px;}
.h2b{height:23.040000px;}
.h24{height:23.220000px;}
.h29{height:23.256000px;}
.h1c{height:23.400000px;}
.h1f{height:23.940000px;}
.h35{height:24.120000px;}
.h30{height:24.300000px;}
.h31{height:24.480000px;}
.hd{height:27.907031px;}
.h36{height:39.600000px;}
.h4{height:42.164648px;}
.h7{height:42.894141px;}
.h38{height:43.506914px;}
.h1b{height:45.900000px;}
.h2e{height:46.116000px;}
.h6{height:46.736719px;}
.h8{height:47.545312px;}
.h2c{height:48.312422px;}
.h34{height:48.787031px;}
.h37{height:49.255313px;}
.hb{height:53.224453px;}
.h5{height:59.436914px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h2d{height:68.976000px;}
.h33{height:70.020000px;}
.h1a{height:80.604141px;}
.h18{height:81.459844px;}
.h19{height:100.714219px;}
.h2a{height:134.316000px;}
.h2{height:146.016000px;}
.h2f{height:152.640000px;}
.h28{height:167.250000px;}
.h27{height:179.280000px;}
.h25{height:209.370000px;}
.h1e{height:231.690000px;}
.hf{height:317.370000px;}
.h20{height:924.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:47.880000px;}
.w2d{width:52.020000px;}
.w6{width:52.056000px;}
.w30{width:59.976000px;}
.w21{width:65.376000px;}
.w22{width:67.140000px;}
.w2a{width:71.136000px;}
.w10{width:71.280000px;}
.w11{width:71.316000px;}
.w18{width:71.640000px;}
.w19{width:71.676000px;}
.w2c{width:72.180000px;}
.w1b{width:73.656000px;}
.w17{width:74.016000px;}
.w31{width:76.500000px;}
.w32{width:80.460000px;}
.w1a{width:84.420000px;}
.w16{width:84.780000px;}
.w24{width:85.716000px;}
.w23{width:86.040000px;}
.w2e{width:91.116000px;}
.w20{width:94.500000px;}
.w12{width:97.020000px;}
.w2b{width:98.100000px;}
.w29{width:103.320000px;}
.w33{width:109.296000px;}
.wf{width:109.476000px;}
.w34{width:110.016000px;}
.w13{width:114.696000px;}
.w1c{width:124.596000px;}
.w15{width:124.956000px;}
.w26{width:125.136000px;}
.wb{width:139.896000px;}
.w4{width:141.876000px;}
.w28{width:143.136000px;}
.we{width:144.540000px;}
.w2{width:155.730000px;}
.w14{width:159.150000px;}
.w1e{width:173.010000px;}
.w1f{width:173.370000px;}
.wc{width:177.150000px;}
.w8{width:192.270000px;}
.wd{width:211.395000px;}
.w2f{width:440.565000px;}
.w3{width:499.065000px;}
.w27{width:565.125000px;}
.w1d{width:577.725000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.500000px;}
.x5{left:8.640000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xc{left:57.600000px;}
.x13{left:58.680000px;}
.x19{left:70.740000px;}
.x36{left:80.999987px;}
.x21{left:102.275987px;}
.xb{left:106.776000px;}
.x35{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:135.585000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x22{left:157.710000px;}
.x29{left:164.010000px;}
.x12{left:168.509987px;}
.x1a{left:180.930000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x2f{left:216.030000px;}
.x30{left:226.290000px;}
.xd{left:249.870000px;}
.x1b{left:252.930000px;}
.x14{left:270.795000px;}
.x31{left:286.275000px;}
.x2a{left:307.155000px;}
.x1c{left:324.975000px;}
.x24{left:330.735000px;}
.x32{left:364.215000px;}
.x2b{left:411.915000px;}
.x28{left:418.395000px;}
.x1d{left:422.715000px;}
.x33{left:446.115000px;}
.xe{left:473.144987px;}
.x2c{left:484.665000px;}
.xf{left:497.445000px;}
.x15{left:499.244987px;}
.x25{left:505.545000px;}
.x11{left:527.144987px;}
.x1e{left:537.765000px;}
.x16{left:548.384987px;}
.x34{left:556.845000px;}
.x2d{left:584.385000px;}
.x26{left:601.485000px;}
.x20{left:622.905000px;}
.x10{left:637.710000px;}
.x17{left:652.829987px;}
.x2e{left:656.970000px;}
.x27{left:668.310000px;}
.x1f{left:697.470000px;}
.x9{left:703.050000px;}
.x18{left:724.649987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.520000pt;}
.v4{vertical-align:14.080000pt;}
.v8{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.v7{vertical-align:58.240000pt;}
.ls16{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.ls2{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.202133pt;}
.ls15{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.234133pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.344000pt;}
.lsb{letter-spacing:8.310400pt;}
.ls14{letter-spacing:14.672640pt;}
.lsa{letter-spacing:15.359360pt;}
.ls12{letter-spacing:40.912640pt;}
.ls13{letter-spacing:45.392640pt;}
.ls8{letter-spacing:103.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.049067pt;}
.wsa{word-spacing:-11.920533pt;}
.wsf{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.368533pt;}
.ws6{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:28.111680pt;}
.ws8{word-spacing:83.151680pt;}
._12{margin-left:-3.120853pt;}
._4{margin-left:-2.146133pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._5{width:2.132053pt;}
._e{width:3.364053pt;}
._7{width:4.515200pt;}
._8{width:5.407147pt;}
._9{width:6.958720pt;}
._15{width:7.914880pt;}
._c{width:8.924160pt;}
._1b{width:10.252160pt;}
._6{width:12.026453pt;}
._d{width:14.608000pt;}
._1d{width:15.670400pt;}
._b{width:16.577280pt;}
._a{width:18.167040pt;}
._20{width:19.495040pt;}
._1a{width:20.398080pt;}
._1c{width:21.301120pt;}
._14{width:22.740480pt;}
._13{width:23.845760pt;}
._17{width:24.860160pt;}
._16{width:25.763200pt;}
._18{width:26.931840pt;}
._19{width:28.453760pt;}
._1e{width:29.747200pt;}
._24{width:30.968960pt;}
._22{width:32.615680pt;}
._21{width:34.156160pt;}
._11{width:35.590400pt;}
._10{width:36.708480pt;}
._2e{width:39.592960pt;}
._1f{width:41.061760pt;}
._2b{width:44.481920pt;}
._2d{width:45.556480pt;}
._36{width:54.979200pt;}
._29{width:56.147840pt;}
._2{width:57.600000pt;}
._38{width:58.813440pt;}
._26{width:59.813120pt;}
._34{width:64.138667pt;}
._35{width:66.400000pt;}
._30{width:67.967787pt;}
._2f{width:69.162240pt;}
._28{width:71.931520pt;}
._27{width:72.933120pt;}
._2c{width:81.486080pt;}
._2a{width:89.666560pt;}
._23{width:115.376640pt;}
._25{width:130.886827pt;}
._32{width:136.255787pt;}
._31{width:137.474560pt;}
._f{width:231.328000pt;}
._33{width:266.290560pt;}
._37{width:533.102080pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y64{bottom:5.160000pt;}
.y61{bottom:5.280000pt;}
.y178{bottom:5.440000pt;}
.y60{bottom:5.600000pt;}
.y11{bottom:5.760000pt;}
.y11c{bottom:5.920000pt;}
.y114{bottom:6.080000pt;}
.y43{bottom:6.240000pt;}
.y123{bottom:6.280000pt;}
.y128{bottom:6.560000pt;}
.y113{bottom:6.720000pt;}
.y11d{bottom:6.880000pt;}
.y8{bottom:7.040000pt;}
.y121{bottom:7.520000pt;}
.y124{bottom:7.560000pt;}
.y1b{bottom:7.840000pt;}
.y111{bottom:8.000000pt;}
.y129{bottom:8.160000pt;}
.y12d{bottom:8.320000pt;}
.y118{bottom:8.800000pt;}
.y17e{bottom:8.960000pt;}
.y160{bottom:9.120000pt;}
.y162{bottom:9.280000pt;}
.y10f{bottom:16.800000pt;}
.yd{bottom:22.720000pt;}
.y15b{bottom:22.760000pt;}
.y2b{bottom:22.880000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y110{bottom:25.600000pt;}
.y2a{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.y147{bottom:47.226667pt;}
.yc{bottom:48.320000pt;}
.y17b{bottom:49.760000pt;}
.y13{bottom:49.920000pt;}
.y149{bottom:56.026667pt;}
.y29{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.y10{bottom:62.400000pt;}
.y146{bottom:64.826667pt;}
.yb{bottom:66.080000pt;}
.y13f{bottom:70.560000pt;}
.y28{bottom:75.680000pt;}
.y136{bottom:76.000000pt;}
.y4{bottom:86.746667pt;}
.y88{bottom:86.880000pt;}
.y10d{bottom:88.800000pt;}
.y183{bottom:89.120000pt;}
.y12b{bottom:89.306667pt;}
.ya{bottom:91.706667pt;}
.y27{bottom:93.306667pt;}
.y119{bottom:95.680000pt;}
.y1b0{bottom:98.240000pt;}
.y52{bottom:99.200000pt;}
.y116{bottom:99.400000pt;}
.y87{bottom:104.480000pt;}
.y41{bottom:104.640000pt;}
.y10c{bottom:106.400000pt;}
.y182{bottom:106.720000pt;}
.y9{bottom:109.306667pt;}
.y26{bottom:111.066667pt;}
.yb1{bottom:112.160000pt;}
.y14d{bottom:115.680000pt;}
.y1af{bottom:115.840000pt;}
.y51{bottom:116.800000pt;}
.y3{bottom:117.306667pt;}
.y1cf{bottom:118.400000pt;}
.yd9{bottom:120.160000pt;}
.y86{bottom:122.080000pt;}
.y40{bottom:122.240000pt;}
.y15d{bottom:123.200000pt;}
.y10b{bottom:124.000000pt;}
.y181{bottom:124.320000pt;}
.y25{bottom:128.666667pt;}
.yb0{bottom:129.760000pt;}
.y1ae{bottom:133.440000pt;}
.y50{bottom:134.400000pt;}
.y14c{bottom:135.706667pt;}
.y1ce{bottom:136.186667pt;}
.yd8{bottom:137.786667pt;}
.y85{bottom:139.706667pt;}
.y3f{bottom:139.866667pt;}
.y10a{bottom:141.626667pt;}
.y24{bottom:146.266667pt;}
.yaf{bottom:147.386667pt;}
.y1ad{bottom:151.066667pt;}
.y4f{bottom:152.026667pt;}
.y1cd{bottom:153.786667pt;}
.y180{bottom:154.426667pt;}
.yd7{bottom:155.386667pt;}
.y14b{bottom:155.706667pt;}
.y3e{bottom:157.466667pt;}
.y109{bottom:159.386667pt;}
.y23{bottom:163.866667pt;}
.yae{bottom:164.986667pt;}
.y1ac{bottom:168.666667pt;}
.y4e{bottom:169.786667pt;}
.y1cc{bottom:171.386667pt;}
.y17f{bottom:172.026667pt;}
.yd6{bottom:172.986667pt;}
.y84{bottom:175.066667pt;}
.y3d{bottom:175.226667pt;}
.y14a{bottom:175.706667pt;}
.y108{bottom:176.986667pt;}
.y22{bottom:181.466667pt;}
.yad{bottom:182.586667pt;}
.y1ab{bottom:186.426667pt;}
.y4d{bottom:187.386667pt;}
.y1cb{bottom:188.986667pt;}
.yd5{bottom:190.586667pt;}
.y17a{bottom:191.066667pt;}
.y83{bottom:192.666667pt;}
.y3c{bottom:192.826667pt;}
.y107{bottom:194.586667pt;}
.y148{bottom:195.706667pt;}
.y21{bottom:199.226667pt;}
.yac{bottom:200.346667pt;}
.y4c{bottom:200.506667pt;}
.y1aa{bottom:204.026667pt;}
.y1ca{bottom:206.586667pt;}
.yd4{bottom:208.346667pt;}
.y82{bottom:210.266667pt;}
.y3b{bottom:210.426667pt;}
.y106{bottom:212.186667pt;}
.y17d{bottom:212.986667pt;}
.y13e{bottom:215.706667pt;}
.y20{bottom:216.826667pt;}
.yab{bottom:217.946667pt;}
.y4b{bottom:220.186667pt;}
.y1a9{bottom:221.626667pt;}
.y1c9{bottom:224.346667pt;}
.yd3{bottom:225.946667pt;}
.y81{bottom:227.866667pt;}
.y3a{bottom:228.026667pt;}
.y105{bottom:229.786667pt;}
.y1f{bottom:234.426667pt;}
.yaa{bottom:235.546667pt;}
.y17c{bottom:235.706667pt;}
.y145{bottom:236.986667pt;}
.y1a8{bottom:239.226667pt;}
.y4a{bottom:239.706667pt;}
.y1c8{bottom:241.946667pt;}
.yd2{bottom:243.546667pt;}
.y39{bottom:245.626667pt;}
.y104{bottom:247.546667pt;}
.y1e{bottom:252.026667pt;}
.y179{bottom:254.746667pt;}
.y1a7{bottom:256.826667pt;}
.y144{bottom:258.266667pt;}
.y49{bottom:259.386667pt;}
.y1c7{bottom:259.546667pt;}
.ya9{bottom:261.146667pt;}
.y80{bottom:263.226667pt;}
.y38{bottom:263.386667pt;}
.y103{bottom:265.146667pt;}
.y1d{bottom:269.626667pt;}
.y177{bottom:272.346667pt;}
.y1a6{bottom:274.586667pt;}
.y1c6{bottom:277.146667pt;}
.ya8{bottom:278.746667pt;}
.y48{bottom:278.906667pt;}
.y143{bottom:279.706667pt;}
.y7f{bottom:280.826667pt;}
.y37{bottom:280.986667pt;}
.y102{bottom:282.746667pt;}
.y1a5{bottom:292.186667pt;}
.y1c5{bottom:294.746667pt;}
.y176{bottom:295.706667pt;}
.ya7{bottom:296.506667pt;}
.y7e{bottom:298.426667pt;}
.y36{bottom:298.586667pt;}
.y101{bottom:300.346667pt;}
.y142{bottom:300.986667pt;}
.y1a4{bottom:309.786667pt;}
.y1c4{bottom:312.506667pt;}
.y175{bottom:313.306667pt;}
.ya6{bottom:314.106667pt;}
.y7d{bottom:316.026667pt;}
.y35{bottom:316.186667pt;}
.y100{bottom:317.946667pt;}
.y47{bottom:318.106667pt;}
.y141{bottom:322.266667pt;}
.y1a3{bottom:327.386667pt;}
.y1c3{bottom:330.106667pt;}
.y174{bottom:330.906667pt;}
.ya5{bottom:331.706667pt;}
.y34{bottom:333.786667pt;}
.yff{bottom:335.706667pt;}
.y46{bottom:337.786667pt;}
.y140{bottom:343.706667pt;}
.y1a2{bottom:344.986667pt;}
.y1c2{bottom:347.706667pt;}
.y173{bottom:348.506667pt;}
.ya4{bottom:349.306667pt;}
.y7c{bottom:351.386667pt;}
.y33{bottom:351.546667pt;}
.yfe{bottom:353.306667pt;}
.y45{bottom:357.346667pt;}
.y1a1{bottom:362.786667pt;}
.y135{bottom:365.026667pt;}
.y1c1{bottom:365.346667pt;}
.y172{bottom:366.146667pt;}
.ya3{bottom:366.946667pt;}
.y7b{bottom:369.026667pt;}
.y32{bottom:369.186667pt;}
.yfd{bottom:370.946667pt;}
.y44{bottom:377.026667pt;}
.y1a0{bottom:380.386667pt;}
.y1c0{bottom:382.946667pt;}
.y171{bottom:383.906667pt;}
.ya2{bottom:384.706667pt;}
.y13d{bottom:385.026667pt;}
.y7a{bottom:386.626667pt;}
.y31{bottom:386.786667pt;}
.yfc{bottom:388.546667pt;}
.y42{bottom:396.546667pt;}
.y19f{bottom:397.986667pt;}
.y1bf{bottom:400.706667pt;}
.y170{bottom:401.506667pt;}
.ya1{bottom:402.306667pt;}
.y79{bottom:404.226667pt;}
.y30{bottom:404.386667pt;}
.y13c{bottom:405.026667pt;}
.yfb{bottom:406.146667pt;}
.y11a{bottom:407.426667pt;}
.y19e{bottom:415.586667pt;}
.y1be{bottom:418.306667pt;}
.y16f{bottom:419.106667pt;}
.ya0{bottom:419.906667pt;}
.y2f{bottom:421.986667pt;}
.yfa{bottom:423.906667pt;}
.y13b{bottom:425.026667pt;}
.y19d{bottom:433.186667pt;}
.y1bd{bottom:435.906667pt;}
.y16e{bottom:436.706667pt;}
.yd1{bottom:437.506667pt;}
.y78{bottom:439.586667pt;}
.y2e{bottom:439.746667pt;}
.yf9{bottom:441.506667pt;}
.y13a{bottom:445.026667pt;}
.y9f{bottom:445.506667pt;}
.y19c{bottom:450.946667pt;}
.y1bc{bottom:453.506667pt;}
.y16d{bottom:454.306667pt;}
.yd0{bottom:455.106667pt;}
.y77{bottom:457.186667pt;}
.y2d{bottom:457.346667pt;}
.yf8{bottom:459.106667pt;}
.y9e{bottom:463.106667pt;}
.y139{bottom:465.026667pt;}
.y19b{bottom:468.546667pt;}
.y2c{bottom:470.466667pt;}
.y1bb{bottom:471.106667pt;}
.y16c{bottom:472.066667pt;}
.ycf{bottom:472.866667pt;}
.y76{bottom:474.786667pt;}
.yf7{bottom:476.706667pt;}
.y9d{bottom:480.866667pt;}
.y138{bottom:485.026667pt;}
.y19a{bottom:486.146667pt;}
.y1c{bottom:488.706667pt;}
.y1ba{bottom:488.866667pt;}
.y16b{bottom:489.666667pt;}
.yce{bottom:490.466667pt;}
.y75{bottom:492.386667pt;}
.yf6{bottom:494.306667pt;}
.y9c{bottom:498.466667pt;}
.y199{bottom:503.746667pt;}
.y137{bottom:505.026667pt;}
.y1b9{bottom:506.466667pt;}
.y16a{bottom:507.266667pt;}
.ycd{bottom:508.066667pt;}
.y74{bottom:510.146667pt;}
.yf5{bottom:512.066667pt;}
.y9b{bottom:516.066667pt;}
.y198{bottom:521.346667pt;}
.y1b8{bottom:524.066667pt;}
.y169{bottom:524.866667pt;}
.y12a{bottom:525.026667pt;}
.ycc{bottom:525.666667pt;}
.y73{bottom:527.746667pt;}
.yf4{bottom:529.666667pt;}
.y9a{bottom:533.666667pt;}
.y197{bottom:539.106667pt;}
.y1b7{bottom:541.666667pt;}
.y168{bottom:542.466667pt;}
.ycb{bottom:543.266667pt;}
.y134{bottom:545.026667pt;}
.y72{bottom:545.346667pt;}
.yf3{bottom:547.266667pt;}
.y99{bottom:551.266667pt;}
.y196{bottom:556.706667pt;}
.y1b6{bottom:559.266667pt;}
.y167{bottom:560.226667pt;}
.yca{bottom:561.026667pt;}
.y71{bottom:562.946667pt;}
.yf2{bottom:564.866667pt;}
.y133{bottom:565.026667pt;}
.y98{bottom:569.026667pt;}
.y195{bottom:574.306667pt;}
.y1b5{bottom:577.053333pt;}
.y166{bottom:577.853333pt;}
.yc9{bottom:578.653333pt;}
.y70{bottom:580.573333pt;}
.yf1{bottom:582.493333pt;}
.y132{bottom:585.053333pt;}
.y97{bottom:586.653333pt;}
.y194{bottom:591.933333pt;}
.y1b4{bottom:594.653333pt;}
.yc8{bottom:596.253333pt;}
.y6f{bottom:598.333333pt;}
.yf0{bottom:600.253333pt;}
.y96{bottom:604.253333pt;}
.y131{bottom:605.053333pt;}
.y165{bottom:607.933333pt;}
.y193{bottom:609.533333pt;}
.y6e{bottom:611.453333pt;}
.y1b3{bottom:612.253333pt;}
.yc7{bottom:613.853333pt;}
.yef{bottom:617.853333pt;}
.y95{bottom:621.853333pt;}
.y130{bottom:626.333333pt;}
.y192{bottom:627.293333pt;}
.y15c{bottom:629.693333pt;}
.y1b2{bottom:629.853333pt;}
.y6d{bottom:630.493333pt;}
.yc6{bottom:631.453333pt;}
.yee{bottom:635.453333pt;}
.y94{bottom:639.453333pt;}
.y191{bottom:644.893333pt;}
.y1b1{bottom:647.453333pt;}
.y12f{bottom:647.773333pt;}
.yc5{bottom:649.213333pt;}
.y6c{bottom:649.533333pt;}
.y164{bottom:652.733333pt;}
.yed{bottom:653.053333pt;}
.y190{bottom:662.493333pt;}
.y93{bottom:665.213333pt;}
.yc4{bottom:666.813333pt;}
.y6b{bottom:668.093333pt;}
.y12e{bottom:669.053333pt;}
.yec{bottom:670.653333pt;}
.y163{bottom:675.773333pt;}
.y18f{bottom:680.093333pt;}
.y92{bottom:682.813333pt;}
.yc3{bottom:684.413333pt;}
.y6a{bottom:686.653333pt;}
.yeb{bottom:688.413333pt;}
.y12c{bottom:690.333333pt;}
.y18e{bottom:697.693333pt;}
.y161{bottom:698.813333pt;}
.y91{bottom:700.413333pt;}
.yc2{bottom:702.013333pt;}
.y69{bottom:705.213333pt;}
.yea{bottom:706.013333pt;}
.y115{bottom:711.773333pt;}
.y18d{bottom:715.453333pt;}
.y90{bottom:718.013333pt;}
.yc1{bottom:719.613333pt;}
.y15f{bottom:722.013333pt;}
.y68{bottom:723.613333pt;}
.y127{bottom:733.053333pt;}
.y8f{bottom:735.613333pt;}
.yc0{bottom:737.373333pt;}
.ye9{bottom:741.213333pt;}
.y67{bottom:742.173333pt;}
.y15e{bottom:745.053333pt;}
.y18c{bottom:750.653333pt;}
.y8e{bottom:753.373333pt;}
.ybf{bottom:754.973333pt;}
.y126{bottom:755.133333pt;}
.ye8{bottom:758.813333pt;}
.y66{bottom:760.733333pt;}
.y159{bottom:766.813333pt;}
.y18b{bottom:768.253333pt;}
.y8d{bottom:770.973333pt;}
.y1a{bottom:771.613333pt;}
.ybe{bottom:772.573333pt;}
.y125{bottom:775.133333pt;}
.ye7{bottom:776.573333pt;}
.y65{bottom:779.293333pt;}
.y18a{bottom:785.853333pt;}
.y15a{bottom:787.133333pt;}
.y8c{bottom:788.573333pt;}
.ybd{bottom:790.173333pt;}
.ye6{bottom:794.173333pt;}
.y122{bottom:795.133333pt;}
.y19{bottom:797.693333pt;}
.y63{bottom:797.853333pt;}
.y189{bottom:803.653333pt;}
.y8b{bottom:806.213333pt;}
.ybc{bottom:807.813333pt;}
.ye5{bottom:811.813333pt;}
.y120{bottom:815.813333pt;}
.y62{bottom:816.453333pt;}
.y18{bottom:819.973333pt;}
.y188{bottom:821.253333pt;}
.y8a{bottom:823.813333pt;}
.ybb{bottom:825.573333pt;}
.y158{bottom:828.133333pt;}
.ye4{bottom:829.413333pt;}
.y17{bottom:833.413333pt;}
.y187{bottom:833.733333pt;}
.y5f{bottom:834.853333pt;}
.y11f{bottom:836.453333pt;}
.y89{bottom:841.573333pt;}
.ye3{bottom:847.013333pt;}
.yba{bottom:851.173333pt;}
.y16{bottom:852.453333pt;}
.y157{bottom:853.733333pt;}
.y11e{bottom:856.453333pt;}
.y5e{bottom:859.173333pt;}
.ye2{bottom:864.773333pt;}
.yb9{bottom:868.773333pt;}
.y186{bottom:870.213333pt;}
.y156{bottom:871.333333pt;}
.y15{bottom:873.253333pt;}
.y11b{bottom:876.453333pt;}
.y5d{bottom:876.773333pt;}
.ye1{bottom:882.373333pt;}
.yb8{bottom:886.373333pt;}
.y155{bottom:888.933333pt;}
.y185{bottom:889.253333pt;}
.y5c{bottom:894.373333pt;}
.y117{bottom:896.453333pt;}
.ye0{bottom:899.973333pt;}
.y14{bottom:901.413333pt;}
.yb7{bottom:903.973333pt;}
.y154{bottom:906.693333pt;}
.y5b{bottom:911.973333pt;}
.ydf{bottom:917.573333pt;}
.y10e{bottom:918.373333pt;}
.yb6{bottom:921.733333pt;}
.y153{bottom:924.293333pt;}
.y184{bottom:924.453333pt;}
.yf{bottom:925.253333pt;}
.y5a{bottom:929.733333pt;}
.yde{bottom:935.173333pt;}
.y112{bottom:938.373333pt;}
.yb5{bottom:939.333333pt;}
.y152{bottom:941.893333pt;}
.y1{bottom:945.253333pt;}
.y59{bottom:947.333333pt;}
.ydd{bottom:952.933333pt;}
.yb4{bottom:956.933333pt;}
.y151{bottom:959.493333pt;}
.y58{bottom:964.933333pt;}
.ydc{bottom:970.533333pt;}
.yb3{bottom:974.533333pt;}
.y150{bottom:977.093333pt;}
.y57{bottom:982.533333pt;}
.ydb{bottom:987.333333pt;}
.yb2{bottom:992.133333pt;}
.yda{bottom:994.053333pt;}
.y56{bottom:1000.133333pt;}
.y14f{bottom:1007.973333pt;}
.y55{bottom:1017.893333pt;}
.y14e{bottom:1028.000000pt;}
.y54{bottom:1035.520000pt;}
.y53{bottom:1061.600000pt;}
.h3{height:1.837500pt;}
.h10{height:17.600000pt;}
.h15{height:17.760000pt;}
.h16{height:17.792000pt;}
.h17{height:17.920000pt;}
.h32{height:18.080000pt;}
.h14{height:18.400000pt;}
.h12{height:18.880000pt;}
.h13{height:18.912000pt;}
.h23{height:19.200000pt;}
.h1d{height:19.360000pt;}
.h26{height:19.392000pt;}
.ha{height:19.520000pt;}
.h11{height:19.680000pt;}
.h21{height:20.000000pt;}
.h22{height:20.032000pt;}
.he{height:20.320000pt;}
.h2b{height:20.480000pt;}
.h24{height:20.640000pt;}
.h29{height:20.672000pt;}
.h1c{height:20.800000pt;}
.h1f{height:21.280000pt;}
.h35{height:21.440000pt;}
.h30{height:21.600000pt;}
.h31{height:21.760000pt;}
.hd{height:24.806250pt;}
.h36{height:35.200000pt;}
.h4{height:37.479688pt;}
.h7{height:38.128125pt;}
.h38{height:38.672812pt;}
.h1b{height:40.800000pt;}
.h2e{height:40.992000pt;}
.h6{height:41.543750pt;}
.h8{height:42.262500pt;}
.h2c{height:42.944375pt;}
.h34{height:43.366250pt;}
.h37{height:43.782500pt;}
.hb{height:47.310625pt;}
.h5{height:52.832812pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h2d{height:61.312000pt;}
.h33{height:62.240000pt;}
.h1a{height:71.648125pt;}
.h18{height:72.408750pt;}
.h19{height:89.523750pt;}
.h2a{height:119.392000pt;}
.h2{height:129.792000pt;}
.h2f{height:135.680000pt;}
.h28{height:148.666667pt;}
.h27{height:159.360000pt;}
.h25{height:186.106667pt;}
.h1e{height:205.946667pt;}
.hf{height:282.106667pt;}
.h20{height:822.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:42.560000pt;}
.w2d{width:46.240000pt;}
.w6{width:46.272000pt;}
.w30{width:53.312000pt;}
.w21{width:58.112000pt;}
.w22{width:59.680000pt;}
.w2a{width:63.232000pt;}
.w10{width:63.360000pt;}
.w11{width:63.392000pt;}
.w18{width:63.680000pt;}
.w19{width:63.712000pt;}
.w2c{width:64.160000pt;}
.w1b{width:65.472000pt;}
.w17{width:65.792000pt;}
.w31{width:68.000000pt;}
.w32{width:71.520000pt;}
.w1a{width:75.040000pt;}
.w16{width:75.360000pt;}
.w24{width:76.192000pt;}
.w23{width:76.480000pt;}
.w2e{width:80.992000pt;}
.w20{width:84.000000pt;}
.w12{width:86.240000pt;}
.w2b{width:87.200000pt;}
.w29{width:91.840000pt;}
.w33{width:97.152000pt;}
.wf{width:97.312000pt;}
.w34{width:97.792000pt;}
.w13{width:101.952000pt;}
.w1c{width:110.752000pt;}
.w15{width:111.072000pt;}
.w26{width:111.232000pt;}
.wb{width:124.352000pt;}
.w4{width:126.112000pt;}
.w28{width:127.232000pt;}
.we{width:128.480000pt;}
.w2{width:138.426667pt;}
.w14{width:141.466667pt;}
.w1e{width:153.786667pt;}
.w1f{width:154.106667pt;}
.wc{width:157.466667pt;}
.w8{width:170.906667pt;}
.wd{width:187.906667pt;}
.w2f{width:391.613333pt;}
.w3{width:443.613333pt;}
.w27{width:502.333333pt;}
.w1d{width:513.533333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.000000pt;}
.x5{left:7.680000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xc{left:51.200000pt;}
.x13{left:52.160000pt;}
.x19{left:62.880000pt;}
.x36{left:71.999988pt;}
.x21{left:90.911988pt;}
.xb{left:94.912000pt;}
.x35{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:120.520000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x22{left:140.186667pt;}
.x29{left:145.786667pt;}
.x12{left:149.786655pt;}
.x1a{left:160.826667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x2f{left:192.026667pt;}
.x30{left:201.146667pt;}
.xd{left:222.106667pt;}
.x1b{left:224.826667pt;}
.x14{left:240.706667pt;}
.x31{left:254.466667pt;}
.x2a{left:273.026667pt;}
.x1c{left:288.866667pt;}
.x24{left:293.986667pt;}
.x32{left:323.746667pt;}
.x2b{left:366.146667pt;}
.x28{left:371.906667pt;}
.x1d{left:375.746667pt;}
.x33{left:396.546667pt;}
.xe{left:420.573322pt;}
.x2c{left:430.813333pt;}
.xf{left:442.173333pt;}
.x15{left:443.773322pt;}
.x25{left:449.373333pt;}
.x11{left:468.573322pt;}
.x1e{left:478.013333pt;}
.x16{left:487.453322pt;}
.x34{left:494.973333pt;}
.x2d{left:519.453333pt;}
.x26{left:534.653333pt;}
.x20{left:553.693333pt;}
.x10{left:566.853333pt;}
.x17{left:580.293322pt;}
.x2e{left:583.973333pt;}
.x27{left:594.053333pt;}
.x1f{left:619.973333pt;}
.x9{left:624.933333pt;}
.x18{left:644.133322pt;}
}




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