
    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_0f0df5c87750d430dc2db7f8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2c0e2e84485ef527e9ce3af0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a5b9cdb75fad3948dcad4418.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_ede00f209883c37a3f51bb51.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_9cd322a9beef241aa953ac74.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a807c215ad4f874d08b4da07.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3a0afb914791c5ffcc1dae9e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_195c8ba4b89d1d648a4a8805.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_644726e70130c4b29713af95.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_2ceda5a5abb4568d2cf1857c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_28c8c52e21b9ff99305e1d19.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_09e9d45df1fe24ce06cac1e9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.612000px;}
.ls3{letter-spacing:1.049760px;}
.lsf{letter-spacing:25.308000px;}
.lsc{letter-spacing:28.062720px;}
.ls15{letter-spacing:48.348000px;}
.ls16{letter-spacing:51.228000px;}
.ls1a{letter-spacing:52.668000px;}
.lse{letter-spacing:63.468000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-54.000000px;}
.ws7{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.431360px;}
.ws2{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.112000px;}
.wse{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.374000px;}
.ws12{word-spacing:-13.284000px;}
.ws13{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.906000px;}
.wsd{word-spacing:-12.672000px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._7{width:2.482080px;}
._6{width:3.764880px;}
._5{width:5.199120px;}
._3{width:6.573600px;}
._b{width:7.969200px;}
._4{width:9.688800px;}
._8{width:11.658000px;}
._d{width:14.850000px;}
._13{width:16.686000px;}
._11{width:18.252000px;}
._a{width:19.602000px;}
._9{width:20.628000px;}
._f{width:22.302000px;}
._c{width:23.922000px;}
._17{width:25.218000px;}
._1a{width:26.598000px;}
._1c{width:27.828000px;}
._1b{width:29.376000px;}
._12{width:30.564000px;}
._10{width:31.752000px;}
._16{width:34.308000px;}
._e{width:35.856000px;}
._14{width:38.178000px;}
._15{width:39.852000px;}
._18{width:42.120000px;}
._19{width:43.146000px;}
._1f{width:44.412000px;}
._1d{width:46.062000px;}
._1e{width:47.196000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:0.930000px;}
.y3{bottom:3.060000px;}
.yd9{bottom:7.560000px;}
.ydd{bottom:7.920000px;}
.ydb{bottom:8.100000px;}
.ye6{bottom:9.705000px;}
.yae{bottom:9.720000px;}
.yad{bottom:9.900000px;}
.ycc{bottom:10.065000px;}
.yb0{bottom:10.080000px;}
.yc4{bottom:10.110000px;}
.ye8{bottom:10.245000px;}
.yb2{bottom:10.260000px;}
.yb9{bottom:10.305000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yce{bottom:21.225000px;}
.yc2{bottom:21.270000px;}
.ye4{bottom:23.565000px;}
.yee{bottom:23.580000px;}
.yab{bottom:23.610000px;}
.ycf{bottom:32.385000px;}
.yc8{bottom:32.400000px;}
.yc3{bottom:32.430000px;}
.yca{bottom:32.565000px;}
.ybf{bottom:32.580000px;}
.y5{bottom:39.780000px;}
.yd2{bottom:54.720000px;}
.yc0{bottom:54.900000px;}
.ycb{bottom:54.930000px;}
.y1{bottom:60.660000px;}
.y36{bottom:76.890000px;}
.y35{bottom:96.690000px;}
.yec{bottom:100.620000px;}
.y2b{bottom:101.880000px;}
.y1a9{bottom:112.320000px;}
.y34{bottom:116.670000px;}
.y123{bottom:117.180000px;}
.y14c{bottom:119.700000px;}
.ya8{bottom:124.740000px;}
.yeb{bottom:128.160000px;}
.y2a{bottom:128.700000px;}
.y1a8{bottom:130.320000px;}
.y173{bottom:130.680000px;}
.y122{bottom:135.000000px;}
.y33{bottom:136.470000px;}
.ya7{bottom:142.560000px;}
.y14b{bottom:146.520000px;}
.y1a7{bottom:148.140000px;}
.y71{bottom:148.500000px;}
.y121{bottom:153.000000px;}
.y29{bottom:155.700000px;}
.y32{bottom:156.270000px;}
.ya6{bottom:160.380000px;}
.y14a{bottom:164.340000px;}
.y1a6{bottom:165.960000px;}
.y172{bottom:166.500000px;}
.y120{bottom:171.720000px;}
.y70{bottom:175.680000px;}
.y31{bottom:176.070000px;}
.ya5{bottom:178.200000px;}
.y149{bottom:182.160000px;}
.y28{bottom:182.520000px;}
.yea{bottom:183.420000px;}
.y1a5{bottom:183.780000px;}
.y171{bottom:185.220000px;}
.y11f{bottom:189.540000px;}
.y6f{bottom:193.680000px;}
.y30{bottom:195.870000px;}
.ya4{bottom:196.020000px;}
.y148{bottom:199.980000px;}
.y1a4{bottom:201.600000px;}
.y170{bottom:203.040000px;}
.y11e{bottom:207.390000px;}
.y27{bottom:209.370000px;}
.ye9{bottom:211.005000px;}
.y6e{bottom:211.530000px;}
.ya3{bottom:214.050000px;}
.y2f{bottom:215.895000px;}
.y147{bottom:218.010000px;}
.y1a3{bottom:219.450000px;}
.y16f{bottom:221.070000px;}
.y11d{bottom:225.210000px;}
.y6d{bottom:229.350000px;}
.ya2{bottom:231.870000px;}
.y2c{bottom:232.920000px;}
.y1db{bottom:235.290000px;}
.y2e{bottom:235.695000px;}
.y26{bottom:236.190000px;}
.y1a2{bottom:237.450000px;}
.ye7{bottom:238.545000px;}
.y16e{bottom:239.790000px;}
.y11c{bottom:243.210000px;}
.y146{bottom:244.830000px;}
.y6c{bottom:247.170000px;}
.ya1{bottom:249.690000px;}
.y1a1{bottom:257.250000px;}
.y16d{bottom:257.610000px;}
.y11b{bottom:261.030000px;}
.y37{bottom:261.210000px;}
.y1da{bottom:261.390000px;}
.y25{bottom:263.010000px;}
.y6b{bottom:264.990000px;}
.y2d{bottom:265.935000px;}
.ye3{bottom:266.265000px;}
.ya0{bottom:267.510000px;}
.y145{bottom:271.650000px;}
.y16c{bottom:275.610000px;}
.y11a{bottom:278.850000px;}
.y1d9{bottom:282.090000px;}
.y6a{bottom:282.990000px;}
.y9f{bottom:285.330000px;}
.y144{bottom:289.470000px;}
.y24{bottom:290.010000px;}
.ye5{bottom:293.805000px;}
.y119{bottom:297.750000px;}
.y69{bottom:300.810000px;}
.y9e{bottom:303.150000px;}
.y16b{bottom:303.330000px;}
.y1d8{bottom:303.870000px;}
.y143{bottom:307.290000px;}
.y1a0{bottom:307.830000px;}
.y118{bottom:315.570000px;}
.y23{bottom:316.830000px;}
.y68{bottom:318.630000px;}
.y9d{bottom:321.150000px;}
.y1d7{bottom:321.690000px;}
.y142{bottom:325.110000px;}
.y19f{bottom:325.650000px;}
.ye2{bottom:326.730000px;}
.y117{bottom:333.390000px;}
.y67{bottom:336.450000px;}
.y9c{bottom:338.970000px;}
.y1d6{bottom:339.510000px;}
.y141{bottom:343.110000px;}
.y22{bottom:343.650000px;}
.y16a{bottom:347.610000px;}
.ycd{bottom:349.065000px;}
.y66{bottom:354.270000px;}
.y9b{bottom:356.790000px;}
.y1d5{bottom:357.510000px;}
.y140{bottom:360.930000px;}
.y116{bottom:361.110000px;}
.y19e{bottom:361.470000px;}
.y169{bottom:365.430000px;}
.y21{bottom:370.470000px;}
.y65{bottom:372.090000px;}
.y9a{bottom:374.610000px;}
.y1d4{bottom:375.330000px;}
.y19d{bottom:379.290000px;}
.y13f{bottom:387.750000px;}
.y115{bottom:388.110000px;}
.y64{bottom:390.090000px;}
.y168{bottom:392.610000px;}
.y1d3{bottom:393.150000px;}
.y19c{bottom:397.110000px;}
.y20{bottom:397.290000px;}
.yc9{bottom:398.925000px;}
.y99{bottom:401.430000px;}
.y114{bottom:405.930000px;}
.y63{bottom:408.810000px;}
.y167{bottom:410.610000px;}
.y1d2{bottom:410.970000px;}
.y13e{bottom:414.570000px;}
.y19b{bottom:414.930000px;}
.y98{bottom:419.430000px;}
.y113{bottom:423.750000px;}
.ye1{bottom:425.190000px;}
.y62{bottom:426.630000px;}
.y166{bottom:428.430000px;}
.y1d1{bottom:428.790000px;}
.y13d{bottom:432.390000px;}
.y19a{bottom:432.930000px;}
.y1f{bottom:433.110000px;}
.y97{bottom:437.790000px;}
.y112{bottom:441.615000px;}
.y61{bottom:444.675000px;}
.y165{bottom:446.295000px;}
.y1d0{bottom:446.655000px;}
.ye0{bottom:447.195000px;}
.y13c{bottom:450.435000px;}
.y199{bottom:450.795000px;}
.y1e{bottom:450.975000px;}
.y96{bottom:455.655000px;}
.y111{bottom:459.435000px;}
.y60{bottom:462.495000px;}
.y164{bottom:464.115000px;}
.y1cf{bottom:464.655000px;}
.y13b{bottom:468.255000px;}
.y198{bottom:468.615000px;}
.y1d{bottom:470.595000px;}
.yc7{bottom:471.315000px;}
.ydf{bottom:472.755000px;}
.y110{bottom:477.075000px;}
.y5f{bottom:480.315000px;}
.y163{bottom:481.935000px;}
.y1ce{bottom:482.475000px;}
.y95{bottom:482.835000px;}
.y13a{bottom:486.075000px;}
.y197{bottom:486.435000px;}
.y1c{bottom:494.355000px;}
.y10f{bottom:494.895000px;}
.y5e{bottom:498.135000px;}
.y162{bottom:499.935000px;}
.y1cd{bottom:500.295000px;}
.y94{bottom:500.835000px;}
.y139{bottom:503.895000px;}
.y196{bottom:504.255000px;}
.y5d{bottom:517.035000px;}
.y1cc{bottom:518.115000px;}
.y1b{bottom:518.295000px;}
.y93{bottom:518.655000px;}
.yc6{bottom:521.175000px;}
.y138{bottom:521.715000px;}
.y10e{bottom:522.075000px;}
.yde{bottom:523.695000px;}
.y161{bottom:526.755000px;}
.y5c{bottom:534.855000px;}
.y1cb{bottom:535.935000px;}
.y137{bottom:539.535000px;}
.y10d{bottom:539.895000px;}
.y195{bottom:540.075000px;}
.y1a{bottom:542.055000px;}
.y160{bottom:544.575000px;}
.y92{bottom:545.475000px;}
.ydc{bottom:549.255000px;}
.y5b{bottom:552.675000px;}
.y1ca{bottom:553.935000px;}
.y10c{bottom:557.715000px;}
.y15f{bottom:562.395000px;}
.y91{bottom:563.295000px;}
.y19{bottom:565.635000px;}
.y136{bottom:566.535000px;}
.y194{bottom:566.895000px;}
.y5a{bottom:570.495000px;}
.y1c9{bottom:571.755000px;}
.yda{bottom:574.635000px;}
.y10b{bottom:575.535000px;}
.y15e{bottom:580.215000px;}
.y90{bottom:581.115000px;}
.y193{bottom:584.715000px;}
.y59{bottom:588.315000px;}
.y1c8{bottom:589.575000px;}
.y135{bottom:593.355000px;}
.yc5{bottom:593.535000px;}
.y18{bottom:596.415000px;}
.y15d{bottom:598.035000px;}
.y8f{bottom:599.115000px;}
.yd8{bottom:600.195000px;}
.y192{bottom:602.535000px;}
.y58{bottom:606.315000px;}
.y1c7{bottom:607.395000px;}
.y134{bottom:611.175000px;}
.y10a{bottom:611.355000px;}
.y15c{bottom:616.035000px;}
.y8e{bottom:616.935000px;}
.y191{bottom:620.355000px;}
.y57{bottom:624.135000px;}
.y1c6{bottom:625.215000px;}
.y17{bottom:627.195000px;}
.y133{bottom:628.995000px;}
.y109{bottom:629.175000px;}
.yd7{bottom:630.975000px;}
.y8d{bottom:634.755000px;}
.y190{bottom:638.355000px;}
.y56{bottom:641.955000px;}
.y15b{bottom:642.855000px;}
.y1c5{bottom:643.035000px;}
.y132{bottom:646.815000px;}
.y108{bottom:646.995000px;}
.yd6{bottom:648.795000px;}
.y8c{bottom:652.575000px;}
.y18f{bottom:656.175000px;}
.y55{bottom:660.675000px;}
.y1c4{bottom:661.035000px;}
.y131{bottom:664.635000px;}
.y107{bottom:664.815000px;}
.yc1{bottom:665.895000px;}
.y8b{bottom:670.395000px;}
.y18e{bottom:673.995000px;}
.yd5{bottom:676.005000px;}
.y15a{bottom:678.525000px;}
.y54{bottom:678.705000px;}
.y1c3{bottom:678.885000px;}
.y106{bottom:682.665000px;}
.y16{bottom:683.745000px;}
.y8a{bottom:688.245000px;}
.yd4{bottom:693.825000px;}
.y159{bottom:696.345000px;}
.y53{bottom:696.525000px;}
.y1c2{bottom:696.705000px;}
.y130{bottom:700.485000px;}
.y105{bottom:700.665000px;}
.yd3{bottom:711.645000px;}
.y158{bottom:714.165000px;}
.y52{bottom:714.345000px;}
.y1c1{bottom:714.525000px;}
.y18d{bottom:715.065000px;}
.y89{bottom:715.245000px;}
.ybe{bottom:715.785000px;}
.y12f{bottom:718.305000px;}
.y104{bottom:718.485000px;}
.y15{bottom:724.605000px;}
.y18c{bottom:727.485000px;}
.y51{bottom:732.165000px;}
.y1c0{bottom:732.345000px;}
.y88{bottom:733.065000px;}
.yd1{bottom:733.785000px;}
.y12e{bottom:736.125000px;}
.y103{bottom:736.305000px;}
.y18b{bottom:745.485000px;}
.y50{bottom:749.985000px;}
.y1bf{bottom:750.165000px;}
.y87{bottom:750.885000px;}
.y12d{bottom:753.945000px;}
.y102{bottom:754.125000px;}
.y18a{bottom:763.305000px;}
.y4f{bottom:767.985000px;}
.y1be{bottom:768.165000px;}
.y86{bottom:768.705000px;}
.y14{bottom:771.045000px;}
.y101{bottom:771.945000px;}
.y157{bottom:776.805000px;}
.y189{bottom:782.025000px;}
.y1bd{bottom:785.985000px;}
.y85{bottom:786.525000px;}
.ybd{bottom:788.145000px;}
.y12c{bottom:789.765000px;}
.y100{bottom:789.945000px;}
.y156{bottom:794.625000px;}
.y4e{bottom:795.705000px;}
.y13{bottom:799.665000px;}
.y188{bottom:800.025000px;}
.y1bc{bottom:803.805000px;}
.yd0{bottom:805.965000px;}
.y84{bottom:806.505000px;}
.y12b{bottom:807.585000px;}
.yff{bottom:807.765000px;}
.y155{bottom:812.445000px;}
.y4d{bottom:813.525000px;}
.y187{bottom:817.845000px;}
.ybc{bottom:821.085000px;}
.y1bb{bottom:821.625000px;}
.y12a{bottom:825.405000px;}
.yfe{bottom:825.585000px;}
.y12{bottom:828.465000px;}
.y154{bottom:830.445000px;}
.y186{bottom:835.665000px;}
.ybb{bottom:838.905000px;}
.y83{bottom:839.265000px;}
.y1ba{bottom:839.445000px;}
.y4c{bottom:840.345000px;}
.y129{bottom:843.225000px;}
.yfd{bottom:843.405000px;}
.y153{bottom:848.265000px;}
.y185{bottom:853.485000px;}
.yba{bottom:856.725000px;}
.y82{bottom:857.085000px;}
.y1b9{bottom:857.445000px;}
.y4b{bottom:858.345000px;}
.y128{bottom:861.045000px;}
.yfc{bottom:861.225000px;}
.y152{bottom:866.085000px;}
.y11{bottom:866.445000px;}
.y184{bottom:871.485000px;}
.y1b8{bottom:875.265000px;}
.y4a{bottom:876.165000px;}
.yfb{bottom:879.045000px;}
.y81{bottom:883.905000px;}
.y10{bottom:889.125000px;}
.y183{bottom:890.205000px;}
.y1b7{bottom:893.085000px;}
.y49{bottom:893.985000px;}
.yfa{bottom:897.045000px;}
.y80{bottom:901.725000px;}
.yb8{bottom:905.865000px;}
.y182{bottom:908.025000px;}
.yf{bottom:910.950000px;}
.y48{bottom:911.850000px;}
.yf9{bottom:914.910000px;}
.y7f{bottom:919.590000px;}
.y181{bottom:925.890000px;}
.y1b6{bottom:928.770000px;}
.y47{bottom:929.670000px;}
.ye{bottom:932.730000px;}
.yb7{bottom:933.630000px;}
.y7e{bottom:937.590000px;}
.y180{bottom:943.710000px;}
.y1b5{bottom:946.590000px;}
.y46{bottom:947.670000px;}
.yf8{bottom:950.550000px;}
.yd{bottom:954.150000px;}
.y7d{bottom:955.410000px;}
.yb6{bottom:961.170000px;}
.y17f{bottom:961.710000px;}
.y1b4{bottom:964.590000px;}
.y45{bottom:965.490000px;}
.yf7{bottom:968.370000px;}
.y151{bottom:973.230000px;}
.yc{bottom:976.290000px;}
.y127{bottom:977.370000px;}
.y17e{bottom:979.530000px;}
.y7c{bottom:982.230000px;}
.y1b3{bottom:982.410000px;}
.y44{bottom:983.310000px;}
.yf6{bottom:986.370000px;}
.yb5{bottom:988.710000px;}
.y150{bottom:991.050000px;}
.y126{bottom:995.370000px;}
.y17d{bottom:997.350000px;}
.y7b{bottom:1000.050000px;}
.y1b2{bottom:1000.230000px;}
.y43{bottom:1001.130000px;}
.yf5{bottom:1004.190000px;}
.y125{bottom:1013.190000px;}
.y17c{bottom:1016.070000px;}
.yb4{bottom:1016.430000px;}
.yb{bottom:1017.510000px;}
.y7a{bottom:1017.870000px;}
.y1b1{bottom:1018.050000px;}
.yf4{bottom:1022.010000px;}
.y42{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.y124{bottom:1031.010000px;}
.y17b{bottom:1034.070000px;}
.y79{bottom:1035.870000px;}
.y9{bottom:1041.630000px;}
.yb3{bottom:1043.970000px;}
.y41{bottom:1045.770000px;}
.yf3{bottom:1048.830000px;}
.y17a{bottom:1051.890000px;}
.y8{bottom:1053.690000px;}
.y1b0{bottom:1053.870000px;}
.y40{bottom:1063.770000px;}
.y7{bottom:1068.270000px;}
.y179{bottom:1069.710000px;}
.yf2{bottom:1070.790000px;}
.y14f{bottom:1071.150000px;}
.yb1{bottom:1071.510000px;}
.y1af{bottom:1071.690000px;}
.y78{bottom:1080.510000px;}
.y3f{bottom:1081.590000px;}
.y178{bottom:1087.710000px;}
.y14e{bottom:1088.970000px;}
.y1ae{bottom:1089.510000px;}
.y6{bottom:1093.830000px;}
.y77{bottom:1098.330000px;}
.yf1{bottom:1098.510000px;}
.yaf{bottom:1099.230000px;}
.y3e{bottom:1099.410000px;}
.y177{bottom:1106.430000px;}
.y1ad{bottom:1107.330000px;}
.y76{bottom:1116.150000px;}
.y3d{bottom:1117.230000px;}
.y176{bottom:1124.250000px;}
.y1ac{bottom:1125.150000px;}
.yf0{bottom:1126.050000px;}
.yaa{bottom:1126.770000px;}
.y75{bottom:1133.970000px;}
.y3c{bottom:1135.050000px;}
.y175{bottom:1142.070000px;}
.y1ab{bottom:1142.970000px;}
.y74{bottom:1152.000000px;}
.y3b{bottom:1153.080000px;}
.yed{bottom:1153.620000px;}
.yac{bottom:1154.340000px;}
.y174{bottom:1160.100000px;}
.y1aa{bottom:1161.000000px;}
.y14d{bottom:1169.820000px;}
.y3a{bottom:1170.900000px;}
.y73{bottom:1178.820000px;}
.yef{bottom:1181.340000px;}
.ya9{bottom:1187.280000px;}
.y39{bottom:1190.700000px;}
.y72{bottom:1196.640000px;}
.h23{height:24.645000px;}
.h24{height:24.825000px;}
.h26{height:26.805000px;}
.h29{height:26.815500px;}
.h1b{height:26.820000px;}
.h1a{height:26.842500px;}
.h28{height:26.856000px;}
.h27{height:26.985000px;}
.h19{height:27.000000px;}
.h1c{height:27.036000px;}
.h2c{height:29.678906px;}
.h2{height:31.135500px;}
.h17{height:37.705078px;}
.h7{height:40.985156px;}
.h20{height:49.125000px;}
.h1e{height:49.170000px;}
.h14{height:52.971680px;}
.h3{height:52.998047px;}
.h2b{height:53.868164px;}
.h25{height:54.345000px;}
.hf{height:54.421875px;}
.h2a{height:54.540000px;}
.h18{height:54.562500px;}
.h16{height:55.503491px;}
.h12{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h9{height:60.226875px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.h2d{height:70.664062px;}
.h22{height:71.460000px;}
.h1f{height:71.625000px;}
.h1d{height:71.640000px;}
.h21{height:71.661000px;}
.hc{height:72.326250px;}
.he{height:72.562500px;}
.h11{height:78.367500px;}
.h15{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h10{height:293.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:54.345000px;}
.w18{width:75.600000px;}
.w3{width:80.310000px;}
.w1c{width:83.865000px;}
.w7{width:83.880000px;}
.wb{width:84.225000px;}
.w8{width:84.456000px;}
.w19{width:86.796000px;}
.wd{width:87.322500px;}
.wc{width:87.330000px;}
.w10{width:87.465000px;}
.w9{width:88.545000px;}
.wa{width:89.301000px;}
.w1d{width:93.450000px;}
.w1b{width:93.621000px;}
.w1a{width:95.025000px;}
.wf{width:126.180000px;}
.w12{width:126.210000px;}
.w14{width:135.561000px;}
.w11{width:150.315000px;}
.we{width:150.330000px;}
.w15{width:169.050000px;}
.w16{width:247.750500px;}
.w5{width:262.330500px;}
.w6{width:521.745000px;}
.w17{width:532.005000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.560000px;}
.x5{left:8.640000px;}
.x28{left:9.714000px;}
.x16{left:10.800000px;}
.x2e{left:16.545000px;}
.x32{left:28.440000px;}
.x3d{left:32.040000px;}
.x22{left:34.020000px;}
.x23{left:36.165000px;}
.x21{left:37.440000px;}
.x15{left:39.240000px;}
.x27{left:41.431500px;}
.x3f{left:43.020000px;}
.x1{left:45.364500px;}
.x3e{left:48.585000px;}
.x17{left:50.040000px;}
.x36{left:51.120000px;}
.x30{left:52.725000px;}
.x6{left:54.000000px;}
.x3a{left:55.290000px;}
.x35{left:56.344500px;}
.x29{left:57.420000px;}
.x33{left:59.580000px;}
.x2a{left:60.660000px;}
.xc{left:80.640000px;}
.x40{left:86.040000px;}
.x18{left:108.036000px;}
.xd{left:137.736000px;}
.x24{left:142.236000px;}
.x19{left:148.536000px;}
.x2{left:222.370500px;}
.xf{left:226.290000px;}
.x1b{left:251.490000px;}
.x3{left:271.330500px;}
.x10{left:276.195000px;}
.x9{left:283.575000px;}
.x26{left:293.295000px;}
.x34{left:295.635000px;}
.xa{left:297.075000px;}
.x7{left:300.495000px;}
.xe{left:305.535000px;}
.x11{left:314.355000px;}
.x1a{left:317.235000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x37{left:381.135000px;}
.x1c{left:401.835000px;}
.x38{left:468.660000px;}
.x12{left:473.505000px;}
.x2d{left:476.220000px;}
.x1d{left:487.020000px;}
.x13{left:500.505000px;}
.x14{left:527.505000px;}
.x2f{left:531.300000px;}
.x2b{left:561.720000px;}
.x39{left:564.420000px;}
.x1e{left:576.480000px;}
.x3b{left:658.770000px;}
.x1f{left:666.510000px;}
.x31{left:667.590000px;}
.x2c{left:712.950000px;}
.x3c{left:743.370000px;}
.x20{left:751.650000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.933120pt;}
.lsf{letter-spacing:22.496000pt;}
.lsc{letter-spacing:24.944640pt;}
.ls15{letter-spacing:42.976000pt;}
.ls16{letter-spacing:45.536000pt;}
.ls1a{letter-spacing:46.816000pt;}
.lse{letter-spacing:56.416000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.272320pt;}
.ws2{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.544000pt;}
.wse{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.888000pt;}
.ws12{word-spacing:-11.808000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.472000pt;}
.wsd{word-spacing:-11.264000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._7{width:2.206293pt;}
._6{width:3.346560pt;}
._5{width:4.621440pt;}
._3{width:5.843200pt;}
._b{width:7.083733pt;}
._4{width:8.612267pt;}
._8{width:10.362667pt;}
._d{width:13.200000pt;}
._13{width:14.832000pt;}
._11{width:16.224000pt;}
._a{width:17.424000pt;}
._9{width:18.336000pt;}
._f{width:19.824000pt;}
._c{width:21.264000pt;}
._17{width:22.416000pt;}
._1a{width:23.642667pt;}
._1c{width:24.736000pt;}
._1b{width:26.112000pt;}
._12{width:27.168000pt;}
._10{width:28.224000pt;}
._16{width:30.496000pt;}
._e{width:31.872000pt;}
._14{width:33.936000pt;}
._15{width:35.424000pt;}
._18{width:37.440000pt;}
._19{width:38.352000pt;}
._1f{width:39.477333pt;}
._1d{width:40.944000pt;}
._1e{width:41.952000pt;}
._2{width:1088.266667pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:0.826667pt;}
.y3{bottom:2.720000pt;}
.yd9{bottom:6.720000pt;}
.ydd{bottom:7.040000pt;}
.ydb{bottom:7.200000pt;}
.ye6{bottom:8.626667pt;}
.yae{bottom:8.640000pt;}
.yad{bottom:8.800000pt;}
.ycc{bottom:8.946667pt;}
.yb0{bottom:8.960000pt;}
.yc4{bottom:8.986667pt;}
.ye8{bottom:9.106667pt;}
.yb2{bottom:9.120000pt;}
.yb9{bottom:9.160000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yce{bottom:18.866667pt;}
.yc2{bottom:18.906667pt;}
.ye4{bottom:20.946667pt;}
.yee{bottom:20.960000pt;}
.yab{bottom:20.986667pt;}
.ycf{bottom:28.786667pt;}
.yc8{bottom:28.800000pt;}
.yc3{bottom:28.826667pt;}
.yca{bottom:28.946667pt;}
.ybf{bottom:28.960000pt;}
.y5{bottom:35.360000pt;}
.yd2{bottom:48.640000pt;}
.yc0{bottom:48.800000pt;}
.ycb{bottom:48.826667pt;}
.y1{bottom:53.920000pt;}
.y36{bottom:68.346667pt;}
.y35{bottom:85.946667pt;}
.yec{bottom:89.440000pt;}
.y2b{bottom:90.560000pt;}
.y1a9{bottom:99.840000pt;}
.y34{bottom:103.706667pt;}
.y123{bottom:104.160000pt;}
.y14c{bottom:106.400000pt;}
.ya8{bottom:110.880000pt;}
.yeb{bottom:113.920000pt;}
.y2a{bottom:114.400000pt;}
.y1a8{bottom:115.840000pt;}
.y173{bottom:116.160000pt;}
.y122{bottom:120.000000pt;}
.y33{bottom:121.306667pt;}
.ya7{bottom:126.720000pt;}
.y14b{bottom:130.240000pt;}
.y1a7{bottom:131.680000pt;}
.y71{bottom:132.000000pt;}
.y121{bottom:136.000000pt;}
.y29{bottom:138.400000pt;}
.y32{bottom:138.906667pt;}
.ya6{bottom:142.560000pt;}
.y14a{bottom:146.080000pt;}
.y1a6{bottom:147.520000pt;}
.y172{bottom:148.000000pt;}
.y120{bottom:152.640000pt;}
.y70{bottom:156.160000pt;}
.y31{bottom:156.506667pt;}
.ya5{bottom:158.400000pt;}
.y149{bottom:161.920000pt;}
.y28{bottom:162.240000pt;}
.yea{bottom:163.040000pt;}
.y1a5{bottom:163.360000pt;}
.y171{bottom:164.640000pt;}
.y11f{bottom:168.480000pt;}
.y6f{bottom:172.160000pt;}
.y30{bottom:174.106667pt;}
.ya4{bottom:174.240000pt;}
.y148{bottom:177.760000pt;}
.y1a4{bottom:179.200000pt;}
.y170{bottom:180.480000pt;}
.y11e{bottom:184.346667pt;}
.y27{bottom:186.106667pt;}
.ye9{bottom:187.560000pt;}
.y6e{bottom:188.026667pt;}
.ya3{bottom:190.266667pt;}
.y2f{bottom:191.906667pt;}
.y147{bottom:193.786667pt;}
.y1a3{bottom:195.066667pt;}
.y16f{bottom:196.506667pt;}
.y11d{bottom:200.186667pt;}
.y6d{bottom:203.866667pt;}
.ya2{bottom:206.106667pt;}
.y2c{bottom:207.040000pt;}
.y1db{bottom:209.146667pt;}
.y2e{bottom:209.506667pt;}
.y26{bottom:209.946667pt;}
.y1a2{bottom:211.066667pt;}
.ye7{bottom:212.040000pt;}
.y16e{bottom:213.146667pt;}
.y11c{bottom:216.186667pt;}
.y146{bottom:217.626667pt;}
.y6c{bottom:219.706667pt;}
.ya1{bottom:221.946667pt;}
.y1a1{bottom:228.666667pt;}
.y16d{bottom:228.986667pt;}
.y11b{bottom:232.026667pt;}
.y37{bottom:232.186667pt;}
.y1da{bottom:232.346667pt;}
.y25{bottom:233.786667pt;}
.y6b{bottom:235.546667pt;}
.y2d{bottom:236.386667pt;}
.ye3{bottom:236.680000pt;}
.ya0{bottom:237.786667pt;}
.y145{bottom:241.466667pt;}
.y16c{bottom:244.986667pt;}
.y11a{bottom:247.866667pt;}
.y1d9{bottom:250.746667pt;}
.y6a{bottom:251.546667pt;}
.y9f{bottom:253.626667pt;}
.y144{bottom:257.306667pt;}
.y24{bottom:257.786667pt;}
.ye5{bottom:261.160000pt;}
.y119{bottom:264.666667pt;}
.y69{bottom:267.386667pt;}
.y9e{bottom:269.466667pt;}
.y16b{bottom:269.626667pt;}
.y1d8{bottom:270.106667pt;}
.y143{bottom:273.146667pt;}
.y1a0{bottom:273.626667pt;}
.y118{bottom:280.506667pt;}
.y23{bottom:281.626667pt;}
.y68{bottom:283.226667pt;}
.y9d{bottom:285.466667pt;}
.y1d7{bottom:285.946667pt;}
.y142{bottom:288.986667pt;}
.y19f{bottom:289.466667pt;}
.ye2{bottom:290.426667pt;}
.y117{bottom:296.346667pt;}
.y67{bottom:299.066667pt;}
.y9c{bottom:301.306667pt;}
.y1d6{bottom:301.786667pt;}
.y141{bottom:304.986667pt;}
.y22{bottom:305.466667pt;}
.y16a{bottom:308.986667pt;}
.ycd{bottom:310.280000pt;}
.y66{bottom:314.906667pt;}
.y9b{bottom:317.146667pt;}
.y1d5{bottom:317.786667pt;}
.y140{bottom:320.826667pt;}
.y116{bottom:320.986667pt;}
.y19e{bottom:321.306667pt;}
.y169{bottom:324.826667pt;}
.y21{bottom:329.306667pt;}
.y65{bottom:330.746667pt;}
.y9a{bottom:332.986667pt;}
.y1d4{bottom:333.626667pt;}
.y19d{bottom:337.146667pt;}
.y13f{bottom:344.666667pt;}
.y115{bottom:344.986667pt;}
.y64{bottom:346.746667pt;}
.y168{bottom:348.986667pt;}
.y1d3{bottom:349.466667pt;}
.y19c{bottom:352.986667pt;}
.y20{bottom:353.146667pt;}
.yc9{bottom:354.600000pt;}
.y99{bottom:356.826667pt;}
.y114{bottom:360.826667pt;}
.y63{bottom:363.386667pt;}
.y167{bottom:364.986667pt;}
.y1d2{bottom:365.306667pt;}
.y13e{bottom:368.506667pt;}
.y19b{bottom:368.826667pt;}
.y98{bottom:372.826667pt;}
.y113{bottom:376.666667pt;}
.ye1{bottom:377.946667pt;}
.y62{bottom:379.226667pt;}
.y166{bottom:380.826667pt;}
.y1d1{bottom:381.146667pt;}
.y13d{bottom:384.346667pt;}
.y19a{bottom:384.826667pt;}
.y1f{bottom:384.986667pt;}
.y97{bottom:389.146667pt;}
.y112{bottom:392.546667pt;}
.y61{bottom:395.266667pt;}
.y165{bottom:396.706667pt;}
.y1d0{bottom:397.026667pt;}
.ye0{bottom:397.506667pt;}
.y13c{bottom:400.386667pt;}
.y199{bottom:400.706667pt;}
.y1e{bottom:400.866667pt;}
.y96{bottom:405.026667pt;}
.y111{bottom:408.386667pt;}
.y60{bottom:411.106667pt;}
.y164{bottom:412.546667pt;}
.y1cf{bottom:413.026667pt;}
.y13b{bottom:416.226667pt;}
.y198{bottom:416.546667pt;}
.y1d{bottom:418.306667pt;}
.yc7{bottom:418.946667pt;}
.ydf{bottom:420.226667pt;}
.y110{bottom:424.066667pt;}
.y5f{bottom:426.946667pt;}
.y163{bottom:428.386667pt;}
.y1ce{bottom:428.866667pt;}
.y95{bottom:429.186667pt;}
.y13a{bottom:432.066667pt;}
.y197{bottom:432.386667pt;}
.y1c{bottom:439.426667pt;}
.y10f{bottom:439.906667pt;}
.y5e{bottom:442.786667pt;}
.y162{bottom:444.386667pt;}
.y1cd{bottom:444.706667pt;}
.y94{bottom:445.186667pt;}
.y139{bottom:447.906667pt;}
.y196{bottom:448.226667pt;}
.y5d{bottom:459.586667pt;}
.y1cc{bottom:460.546667pt;}
.y1b{bottom:460.706667pt;}
.y93{bottom:461.026667pt;}
.yc6{bottom:463.266667pt;}
.y138{bottom:463.746667pt;}
.y10e{bottom:464.066667pt;}
.yde{bottom:465.506667pt;}
.y161{bottom:468.226667pt;}
.y5c{bottom:475.426667pt;}
.y1cb{bottom:476.386667pt;}
.y137{bottom:479.586667pt;}
.y10d{bottom:479.906667pt;}
.y195{bottom:480.066667pt;}
.y1a{bottom:481.826667pt;}
.y160{bottom:484.066667pt;}
.y92{bottom:484.866667pt;}
.ydc{bottom:488.226667pt;}
.y5b{bottom:491.266667pt;}
.y1ca{bottom:492.386667pt;}
.y10c{bottom:495.746667pt;}
.y15f{bottom:499.906667pt;}
.y91{bottom:500.706667pt;}
.y19{bottom:502.786667pt;}
.y136{bottom:503.586667pt;}
.y194{bottom:503.906667pt;}
.y5a{bottom:507.106667pt;}
.y1c9{bottom:508.226667pt;}
.yda{bottom:510.786667pt;}
.y10b{bottom:511.586667pt;}
.y15e{bottom:515.746667pt;}
.y90{bottom:516.546667pt;}
.y193{bottom:519.746667pt;}
.y59{bottom:522.946667pt;}
.y1c8{bottom:524.066667pt;}
.y135{bottom:527.426667pt;}
.yc5{bottom:527.586667pt;}
.y18{bottom:530.146667pt;}
.y15d{bottom:531.586667pt;}
.y8f{bottom:532.546667pt;}
.yd8{bottom:533.506667pt;}
.y192{bottom:535.586667pt;}
.y58{bottom:538.946667pt;}
.y1c7{bottom:539.906667pt;}
.y134{bottom:543.266667pt;}
.y10a{bottom:543.426667pt;}
.y15c{bottom:547.586667pt;}
.y8e{bottom:548.386667pt;}
.y191{bottom:551.426667pt;}
.y57{bottom:554.786667pt;}
.y1c6{bottom:555.746667pt;}
.y17{bottom:557.506667pt;}
.y133{bottom:559.106667pt;}
.y109{bottom:559.266667pt;}
.yd7{bottom:560.866667pt;}
.y8d{bottom:564.226667pt;}
.y190{bottom:567.426667pt;}
.y56{bottom:570.626667pt;}
.y15b{bottom:571.426667pt;}
.y1c5{bottom:571.586667pt;}
.y132{bottom:574.946667pt;}
.y108{bottom:575.106667pt;}
.yd6{bottom:576.706667pt;}
.y8c{bottom:580.066667pt;}
.y18f{bottom:583.266667pt;}
.y55{bottom:587.266667pt;}
.y1c4{bottom:587.586667pt;}
.y131{bottom:590.786667pt;}
.y107{bottom:590.946667pt;}
.yc1{bottom:591.906667pt;}
.y8b{bottom:595.906667pt;}
.y18e{bottom:599.106667pt;}
.yd5{bottom:600.893333pt;}
.y15a{bottom:603.133333pt;}
.y54{bottom:603.293333pt;}
.y1c3{bottom:603.453333pt;}
.y106{bottom:606.813333pt;}
.y16{bottom:607.773333pt;}
.y8a{bottom:611.773333pt;}
.yd4{bottom:616.733333pt;}
.y159{bottom:618.973333pt;}
.y53{bottom:619.133333pt;}
.y1c2{bottom:619.293333pt;}
.y130{bottom:622.653333pt;}
.y105{bottom:622.813333pt;}
.yd3{bottom:632.573333pt;}
.y158{bottom:634.813333pt;}
.y52{bottom:634.973333pt;}
.y1c1{bottom:635.133333pt;}
.y18d{bottom:635.613333pt;}
.y89{bottom:635.773333pt;}
.ybe{bottom:636.253333pt;}
.y12f{bottom:638.493333pt;}
.y104{bottom:638.653333pt;}
.y15{bottom:644.093333pt;}
.y18c{bottom:646.653333pt;}
.y51{bottom:650.813333pt;}
.y1c0{bottom:650.973333pt;}
.y88{bottom:651.613333pt;}
.yd1{bottom:652.253333pt;}
.y12e{bottom:654.333333pt;}
.y103{bottom:654.493333pt;}
.y18b{bottom:662.653333pt;}
.y50{bottom:666.653333pt;}
.y1bf{bottom:666.813333pt;}
.y87{bottom:667.453333pt;}
.y12d{bottom:670.173333pt;}
.y102{bottom:670.333333pt;}
.y18a{bottom:678.493333pt;}
.y4f{bottom:682.653333pt;}
.y1be{bottom:682.813333pt;}
.y86{bottom:683.293333pt;}
.y14{bottom:685.373333pt;}
.y101{bottom:686.173333pt;}
.y157{bottom:690.493333pt;}
.y189{bottom:695.133333pt;}
.y1bd{bottom:698.653333pt;}
.y85{bottom:699.133333pt;}
.ybd{bottom:700.573333pt;}
.y12c{bottom:702.013333pt;}
.y100{bottom:702.173333pt;}
.y156{bottom:706.333333pt;}
.y4e{bottom:707.293333pt;}
.y13{bottom:710.813333pt;}
.y188{bottom:711.133333pt;}
.y1bc{bottom:714.493333pt;}
.yd0{bottom:716.413333pt;}
.y84{bottom:716.893333pt;}
.y12b{bottom:717.853333pt;}
.yff{bottom:718.013333pt;}
.y155{bottom:722.173333pt;}
.y4d{bottom:723.133333pt;}
.y187{bottom:726.973333pt;}
.ybc{bottom:729.853333pt;}
.y1bb{bottom:730.333333pt;}
.y12a{bottom:733.693333pt;}
.yfe{bottom:733.853333pt;}
.y12{bottom:736.413333pt;}
.y154{bottom:738.173333pt;}
.y186{bottom:742.813333pt;}
.ybb{bottom:745.693333pt;}
.y83{bottom:746.013333pt;}
.y1ba{bottom:746.173333pt;}
.y4c{bottom:746.973333pt;}
.y129{bottom:749.533333pt;}
.yfd{bottom:749.693333pt;}
.y153{bottom:754.013333pt;}
.y185{bottom:758.653333pt;}
.yba{bottom:761.533333pt;}
.y82{bottom:761.853333pt;}
.y1b9{bottom:762.173333pt;}
.y4b{bottom:762.973333pt;}
.y128{bottom:765.373333pt;}
.yfc{bottom:765.533333pt;}
.y152{bottom:769.853333pt;}
.y11{bottom:770.173333pt;}
.y184{bottom:774.653333pt;}
.y1b8{bottom:778.013333pt;}
.y4a{bottom:778.813333pt;}
.yfb{bottom:781.373333pt;}
.y81{bottom:785.693333pt;}
.y10{bottom:790.333333pt;}
.y183{bottom:791.293333pt;}
.y1b7{bottom:793.853333pt;}
.y49{bottom:794.653333pt;}
.yfa{bottom:797.373333pt;}
.y80{bottom:801.533333pt;}
.yb8{bottom:805.213333pt;}
.y182{bottom:807.133333pt;}
.yf{bottom:809.733333pt;}
.y48{bottom:810.533333pt;}
.yf9{bottom:813.253333pt;}
.y7f{bottom:817.413333pt;}
.y181{bottom:823.013333pt;}
.y1b6{bottom:825.573333pt;}
.y47{bottom:826.373333pt;}
.ye{bottom:829.093333pt;}
.yb7{bottom:829.893333pt;}
.y7e{bottom:833.413333pt;}
.y180{bottom:838.853333pt;}
.y1b5{bottom:841.413333pt;}
.y46{bottom:842.373333pt;}
.yf8{bottom:844.933333pt;}
.yd{bottom:848.133333pt;}
.y7d{bottom:849.253333pt;}
.yb6{bottom:854.373333pt;}
.y17f{bottom:854.853333pt;}
.y1b4{bottom:857.413333pt;}
.y45{bottom:858.213333pt;}
.yf7{bottom:860.773333pt;}
.y151{bottom:865.093333pt;}
.yc{bottom:867.813333pt;}
.y127{bottom:868.773333pt;}
.y17e{bottom:870.693333pt;}
.y7c{bottom:873.093333pt;}
.y1b3{bottom:873.253333pt;}
.y44{bottom:874.053333pt;}
.yf6{bottom:876.773333pt;}
.yb5{bottom:878.853333pt;}
.y150{bottom:880.933333pt;}
.y126{bottom:884.773333pt;}
.y17d{bottom:886.533333pt;}
.y7b{bottom:888.933333pt;}
.y1b2{bottom:889.093333pt;}
.y43{bottom:889.893333pt;}
.yf5{bottom:892.613333pt;}
.y125{bottom:900.613333pt;}
.y17c{bottom:903.173333pt;}
.yb4{bottom:903.493333pt;}
.yb{bottom:904.453333pt;}
.y7a{bottom:904.773333pt;}
.y1b1{bottom:904.933333pt;}
.yf4{bottom:908.453333pt;}
.y42{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.y124{bottom:916.453333pt;}
.y17b{bottom:919.173333pt;}
.y79{bottom:920.773333pt;}
.y9{bottom:925.893333pt;}
.yb3{bottom:927.973333pt;}
.y41{bottom:929.573333pt;}
.yf3{bottom:932.293333pt;}
.y17a{bottom:935.013333pt;}
.y8{bottom:936.613333pt;}
.y1b0{bottom:936.773333pt;}
.y40{bottom:945.573333pt;}
.y7{bottom:949.573333pt;}
.y179{bottom:950.853333pt;}
.yf2{bottom:951.813333pt;}
.y14f{bottom:952.133333pt;}
.yb1{bottom:952.453333pt;}
.y1af{bottom:952.613333pt;}
.y78{bottom:960.453333pt;}
.y3f{bottom:961.413333pt;}
.y178{bottom:966.853333pt;}
.y14e{bottom:967.973333pt;}
.y1ae{bottom:968.453333pt;}
.y6{bottom:972.293333pt;}
.y77{bottom:976.293333pt;}
.yf1{bottom:976.453333pt;}
.yaf{bottom:977.093333pt;}
.y3e{bottom:977.253333pt;}
.y177{bottom:983.493333pt;}
.y1ad{bottom:984.293333pt;}
.y76{bottom:992.133333pt;}
.y3d{bottom:993.093333pt;}
.y176{bottom:999.333333pt;}
.y1ac{bottom:1000.133333pt;}
.yf0{bottom:1000.933333pt;}
.yaa{bottom:1001.573333pt;}
.y75{bottom:1007.973333pt;}
.y3c{bottom:1008.933333pt;}
.y175{bottom:1015.173333pt;}
.y1ab{bottom:1015.973333pt;}
.y74{bottom:1024.000000pt;}
.y3b{bottom:1024.960000pt;}
.yed{bottom:1025.440000pt;}
.yac{bottom:1026.080000pt;}
.y174{bottom:1031.200000pt;}
.y1aa{bottom:1032.000000pt;}
.y14d{bottom:1039.840000pt;}
.y3a{bottom:1040.800000pt;}
.y73{bottom:1047.840000pt;}
.yef{bottom:1050.080000pt;}
.ya9{bottom:1055.360000pt;}
.y39{bottom:1058.400000pt;}
.y72{bottom:1063.680000pt;}
.h23{height:21.906667pt;}
.h24{height:22.066667pt;}
.h26{height:23.826667pt;}
.h29{height:23.836000pt;}
.h1b{height:23.840000pt;}
.h1a{height:23.860000pt;}
.h28{height:23.872000pt;}
.h27{height:23.986667pt;}
.h19{height:24.000000pt;}
.h1c{height:24.032000pt;}
.h2c{height:26.381250pt;}
.h2{height:27.676000pt;}
.h17{height:33.515625pt;}
.h7{height:36.431250pt;}
.h20{height:43.666667pt;}
.h1e{height:43.706667pt;}
.h14{height:47.085938pt;}
.h3{height:47.109375pt;}
.h2b{height:47.882812pt;}
.h25{height:48.306667pt;}
.hf{height:48.375000pt;}
.h2a{height:48.480000pt;}
.h18{height:48.500000pt;}
.h16{height:49.336436pt;}
.h12{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h9{height:53.535000pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.h2d{height:62.812500pt;}
.h22{height:63.520000pt;}
.h1f{height:63.666667pt;}
.h1d{height:63.680000pt;}
.h21{height:63.698667pt;}
.hc{height:64.290000pt;}
.he{height:64.500000pt;}
.h11{height:69.660000pt;}
.h15{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h10{height:260.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:48.306667pt;}
.w18{width:67.200000pt;}
.w3{width:71.386667pt;}
.w1c{width:74.546667pt;}
.w7{width:74.560000pt;}
.wb{width:74.866667pt;}
.w8{width:75.072000pt;}
.w19{width:77.152000pt;}
.wd{width:77.620000pt;}
.wc{width:77.626667pt;}
.w10{width:77.746667pt;}
.w9{width:78.706667pt;}
.wa{width:79.378667pt;}
.w1d{width:83.066667pt;}
.w1b{width:83.218667pt;}
.w1a{width:84.466667pt;}
.wf{width:112.160000pt;}
.w12{width:112.186667pt;}
.w14{width:120.498667pt;}
.w11{width:133.613333pt;}
.we{width:133.626667pt;}
.w15{width:150.266667pt;}
.w16{width:220.222667pt;}
.w5{width:233.182667pt;}
.w6{width:463.773333pt;}
.w17{width:472.893333pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.720000pt;}
.x5{left:7.680000pt;}
.x28{left:8.634667pt;}
.x16{left:9.600000pt;}
.x2e{left:14.706667pt;}
.x32{left:25.280000pt;}
.x3d{left:28.480000pt;}
.x22{left:30.240000pt;}
.x23{left:32.146667pt;}
.x21{left:33.280000pt;}
.x15{left:34.880000pt;}
.x27{left:36.828000pt;}
.x3f{left:38.240000pt;}
.x1{left:40.324000pt;}
.x3e{left:43.186667pt;}
.x17{left:44.480000pt;}
.x36{left:45.440000pt;}
.x30{left:46.866667pt;}
.x6{left:48.000000pt;}
.x3a{left:49.146667pt;}
.x35{left:50.084000pt;}
.x29{left:51.040000pt;}
.x33{left:52.960000pt;}
.x2a{left:53.920000pt;}
.xc{left:71.680000pt;}
.x40{left:76.480000pt;}
.x18{left:96.032000pt;}
.xd{left:122.432000pt;}
.x24{left:126.432000pt;}
.x19{left:132.032000pt;}
.x2{left:197.662667pt;}
.xf{left:201.146667pt;}
.x1b{left:223.546667pt;}
.x3{left:241.182667pt;}
.x10{left:245.506667pt;}
.x9{left:252.066667pt;}
.x26{left:260.706667pt;}
.x34{left:262.786667pt;}
.xa{left:264.066667pt;}
.x7{left:267.106667pt;}
.xe{left:271.586667pt;}
.x11{left:279.426667pt;}
.x1a{left:281.986667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x37{left:338.786667pt;}
.x1c{left:357.186667pt;}
.x38{left:416.586667pt;}
.x12{left:420.893333pt;}
.x2d{left:423.306667pt;}
.x1d{left:432.906667pt;}
.x13{left:444.893333pt;}
.x14{left:468.893333pt;}
.x2f{left:472.266667pt;}
.x2b{left:499.306667pt;}
.x39{left:501.706667pt;}
.x1e{left:512.426667pt;}
.x3b{left:585.573333pt;}
.x1f{left:592.453333pt;}
.x31{left:593.413333pt;}
.x2c{left:633.733333pt;}
.x3c{left:660.773333pt;}
.x20{left:668.133333pt;}
.x4{left:682.213333pt;}
}




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