
    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_c89e52d2c568d1b6ebfbbbfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9bc45ed556d6ba18eb40b991.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_d56acab33b3f83741aaf6698.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8904a1b39bf494229a426e84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_35a7e2bd76681162bfa76edb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095215;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3cd6ef00d59f1cc988b67556.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_9d4171ff12d8577eeddf215b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_fe3b7e09ea1a6b33c9cde2f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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_6cd4501c6c98b3598b8af0bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056108;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls11{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.100200px;}
.ls4{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.173529px;}
.lsd{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.216051px;}
.lse{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259832px;}
.lsa{letter-spacing:0.269273px;}
.ls12{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.774000px;}
.ls2{letter-spacing:0.979986px;}
.ls13{letter-spacing:1.386720px;}
.ls17{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.026731px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws9{word-spacing:-39.888000px;}
.wsd{word-spacing:-17.387280px;}
.wsb{word-spacing:-16.873080px;}
.wsa{word-spacing:-16.819680px;}
.ws4{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.513080px;}
.ws3{word-spacing:-16.506480px;}
.ws5{word-spacing:-16.353480px;}
.wsc{word-spacing:-13.229520px;}
.ws0{word-spacing:-11.698680px;}
.wsf{word-spacing:-10.800000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:354.263927px;}
._b{margin-left:-15.581410px;}
._5{margin-left:-14.442916px;}
._a{margin-left:-11.316290px;}
._7{margin-left:-9.966451px;}
._1{margin-left:-7.800036px;}
._6{margin-left:-6.418364px;}
._8{margin-left:-3.672401px;}
._d{margin-left:-2.634063px;}
._3{margin-left:-1.583300px;}
._0{width:1.343302px;}
._4{width:2.454365px;}
._c{width:4.183200px;}
._13{width:5.763609px;}
._18{width:6.839316px;}
._15{width:8.035534px;}
._14{width:9.158353px;}
._12{width:10.910094px;}
._11{width:11.952000px;}
._10{width:13.804560px;}
._17{width:15.011802px;}
._1b{width:21.513600px;}
._e{width:22.708800px;}
._f{width:23.849432px;}
._1c{width:25.457760px;}
._1d{width:26.646237px;}
._1a{width:27.787890px;}
._19{width:28.998003px;}
._16{width:41.760480px;}
._9{width:63.321139px;}
._2{width:1043.526689px;}
.fc5{color:rgb(4,70,52);}
.fc4{color:rgb(80,146,89);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(5,70,52);}
.fs0{font-size:5.760000px;}
.fsb{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fsf{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fsa{font-size:144.000000px;}
.fs5{font-size:216.000000px;}
.y10{bottom:-26.093995px;}
.y18{bottom:-25.919999px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.240000px;}
.y6{bottom:4.319997px;}
.ye4{bottom:6.660002px;}
.yda{bottom:6.660004px;}
.y143{bottom:6.690033px;}
.ye8{bottom:6.705002px;}
.y9{bottom:7.379998px;}
.y1b1{bottom:7.380009px;}
.yb{bottom:8.279995px;}
.yd{bottom:13.535997px;}
.y4{bottom:14.939999px;}
.y40{bottom:15.479965px;}
.y23{bottom:15.480011px;}
.y1b{bottom:15.660004px;}
.y2a{bottom:15.689987px;}
.y21{bottom:15.704956px;}
.yd3{bottom:17.459976px;}
.y8{bottom:19.439999px;}
.yd6{bottom:22.500000px;}
.y13e{bottom:22.679993px;}
.y116{bottom:24.224991px;}
.y1af{bottom:24.660003px;}
.yc{bottom:25.595998px;}
.yde{bottom:27.359985px;}
.ye3{bottom:27.359997px;}
.ye0{bottom:27.360008px;}
.yd9{bottom:27.360031px;}
.y142{bottom:27.390015px;}
.ye7{bottom:27.405029px;}
.y1e1{bottom:27.719971px;}
.y172{bottom:27.719994px;}
.y1d7{bottom:27.720005px;}
.y1c7{bottom:27.720016px;}
.ye{bottom:28.260000px;}
.y7{bottom:31.500000px;}
.y139{bottom:36.225037px;}
.y1f{bottom:36.359985px;}
.yd2{bottom:38.205002px;}
.yd5{bottom:43.199982px;}
.y13d{bottom:43.379974px;}
.y34{bottom:45.360008px;}
.ydd{bottom:48.059990px;}
.ye2{bottom:48.060001px;}
.yd8{bottom:48.060013px;}
.yec{bottom:48.090042px;}
.ye6{bottom:48.105011px;}
.y14a{bottom:48.240005px;}
.y171{bottom:48.413990px;}
.y1d6{bottom:48.420010px;}
.y177{bottom:48.420044px;}
.y1c6{bottom:48.449982px;}
.y1e0{bottom:48.464996px;}
.y148{bottom:48.600037px;}
.y115{bottom:49.859985px;}
.ya{bottom:57.600002px;}
.y38{bottom:60.120003px;}
.ycf{bottom:60.156000px;}
.y36{bottom:63.209930px;}
.ycd{bottom:63.209976px;}
.y13c{bottom:64.080002px;}
.y1ae{bottom:64.440010px;}
.y114{bottom:67.109985px;}
.ydc{bottom:68.760017px;}
.y141{bottom:68.790024px;}
.y1e5{bottom:68.939987px;}
.y149{bottom:68.940033px;}
.y170{bottom:69.113995px;}
.y1d5{bottom:69.119991px;}
.y176{bottom:69.120026px;}
.y147{bottom:69.300018px;}
.y1c5{bottom:70.050018px;}
.y1df{bottom:70.245026px;}
.y33{bottom:75.060013px;}
.y15{bottom:82.476002px;}
.y13b{bottom:84.779984px;}
.y140{bottom:89.490005px;}
.y1e4{bottom:89.640015px;}
.y16f{bottom:89.813988px;}
.y1d4{bottom:89.819996px;}
.y175{bottom:89.820007px;}
.y146{bottom:90.000000px;}
.y1de{bottom:90.765015px;}
.y1c4{bottom:91.830002px;}
.y8a{bottom:92.555998px;}
.y113{bottom:92.729965px;}
.y17{bottom:96.875999px;}
.y89{bottom:97.056004px;}
.y12c{bottom:103.355999px;}
.y5{bottom:104.436000px;}
.y32{bottom:104.804993px;}
.y1ad{bottom:105.299995px;}
.y88{bottom:109.835999px;}
.y16e{bottom:110.513992px;}
.y174{bottom:110.519989px;}
.y1d3{bottom:110.520000px;}
.y145{bottom:110.700027px;}
.yb0{bottom:111.096005px;}
.y1dd{bottom:112.545044px;}
.y1c3{bottom:113.609985px;}
.y152{bottom:113.616005px;}
.y12b{bottom:124.056004px;}
.y1ac{bottom:126.000000px;}
.y112{bottom:127.004974px;}
.y16d{bottom:131.213997px;}
.y1d2{bottom:131.220005px;}
.y1e3{bottom:132.120026px;}
.y194{bottom:133.416000px;}
.y1dc{bottom:134.144989px;}
.y1c2{bottom:134.310013px;}
.y31{bottom:134.504997px;}
.y1b0{bottom:137.195995px;}
.y1d8{bottom:139.715996px;}
.y12a{bottom:144.755997px;}
.yaf{bottom:149.795998px;}
.y3{bottom:151.230000px;}
.y16c{bottom:151.914001px;}
.y1d1{bottom:151.920010px;}
.yf{bottom:153.029995px;}
.y1c1{bottom:155.009995px;}
.ye1{bottom:159.149998px;}
.y111{bottom:161.250000px;}
.y4f{bottom:163.830002px;}
.y30{bottom:164.205025px;}
.y1ab{bottom:165.825005px;}
.y193{bottom:172.109997px;}
.y16b{bottom:172.614006px;}
.y1d0{bottom:172.665012px;}
.y1c0{bottom:175.709976px;}
.y1db{bottom:176.984985px;}
.y19a{bottom:179.129997px;}
.y1c8{bottom:181.649998px;}
.y129{bottom:183.450005px;}
.y4e{bottom:185.609997px;}
.yae{bottom:188.490005px;}
.y87{bottom:190.649998px;}
.y192{bottom:192.809990px;}
.y1cf{bottom:193.364994px;}
.y151{bottom:194.969994px;}
.y110{bottom:195.509949px;}
.y1bf{bottom:196.410004px;}
.y1da{bottom:197.684967px;}
.y1aa{bottom:206.684990px;}
.y4d{bottom:207.389992px;}
.yad{bottom:209.190010px;}
.y86{bottom:211.349991px;}
.y1ce{bottom:214.064999px;}
.y16a{bottom:214.193985px;}
.y1be{bottom:217.110031px;}
.y128{bottom:222.150009px;}
.y1a9{bottom:227.385017px;}
.y10f{bottom:229.785004px;}
.yac{bottom:229.889992px;}
.y191{bottom:231.509995px;}
.y150{bottom:233.669998px;}
.y1cd{bottom:234.764980px;}
.y1bd{bottom:237.810013px;}
.ydf{bottom:241.634995px;}
.y2f{bottom:242.129997px;}
.y127{bottom:242.849991px;}
.y4c{bottom:246.089996px;}
.y1a8{bottom:248.084999px;}
.y85{bottom:250.049995px;}
.y190{bottom:252.209999px;}
.y1cc{bottom:255.465008px;}
.y169{bottom:255.999001px;}
.y1bc{bottom:258.509995px;}
.y10e{bottom:264.029938px;}
.yab{bottom:268.589996px;}
.y14f{bottom:272.370003px;}
.y18f{bottom:272.910004px;}
.y168{bottom:276.698982px;}
.y4b{bottom:277.410004px;}
.y1bb{bottom:279.209976px;}
.y126{bottom:281.549995px;}
.yee{bottom:283.214996px;}
.y1a7{bottom:287.864983px;}
.y84{bottom:288.750000px;}
.yaa{bottom:289.290000px;}
.y14e{bottom:293.070007px;}
.y1cb{bottom:298.125011px;}
.y10d{bottom:298.289978px;}
.y1ba{bottom:299.909958px;}
.y83{bottom:309.450005px;}
.ya9{bottom:309.990005px;}
.y18e{bottom:311.610008px;}
.y14d{bottom:313.769989px;}
.y167{bottom:318.458977px;}
.y1ca{bottom:318.824993px;}
.y125{bottom:320.250000px;}
.y1b9{bottom:320.474991px;}
.ydb{bottom:324.075005px;}
.yed{bottom:324.254997px;}
.y1a6{bottom:328.725014px;}
.y82{bottom:330.150009px;}
.ya8{bottom:330.690010px;}
.y18d{bottom:332.309990px;}
.y10c{bottom:332.564941px;}
.y14c{bottom:334.469994px;}
.y1c9{bottom:340.244991px;}
.y124{bottom:340.995003px;}
.y1b8{bottom:342.255020px;}
.y4a{bottom:345.315010px;}
.y1a5{bottom:349.424995px;}
.y81{bottom:350.894989px;}
.ya7{bottom:351.434990px;}
.y18c{bottom:353.054993px;}
.y166{bottom:360.038979px;}
.y123{bottom:361.695007px;}
.y1b7{bottom:364.034958px;}
.y10b{bottom:366.119934px;}
.y14b{bottom:373.214996px;}
.y18b{bottom:373.754997px;}
.yb6{bottom:378.794998px;}
.y165{bottom:380.739006px;}
.y122{bottom:382.394989px;}
.y49{bottom:384.015015px;}
.y117{bottom:384.629974px;}
.y1b6{bottom:385.634995px;}
.yeb{bottom:385.994980px;}
.y1a4{bottom:389.205025px;}
.y80{bottom:389.595016px;}
.ya6{bottom:390.134995px;}
.y164{bottom:401.438988px;}
.y121{bottom:403.095016px;}
.y1b5{bottom:407.415024px;}
.y1a3{bottom:409.905006px;}
.ya5{bottom:410.835022px;}
.ycb{bottom:411.914978px;}
.y18a{bottom:412.455002px;}
.yb5{bottom:417.494980px;}
.y163{bottom:422.139015px;}
.y48{bottom:422.714996px;}
.y120{bottom:423.794998px;}
.yd7{bottom:427.244980px;}
.y7f{bottom:428.115005px;}
.y1b4{bottom:429.014969px;}
.y2e{bottom:430.095016px;}
.ya4{bottom:431.535004px;}
.yca{bottom:432.615005px;}
.y109{bottom:439.994980px;}
.y162{bottom:442.838997px;}
.y11f{bottom:444.494980px;}
.y7e{bottom:448.814987px;}
.y1a2{bottom:449.715019px;}
.y189{bottom:451.154984px;}
.ya3{bottom:452.234985px;}
.y144{bottom:452.414978px;}
.yb4{bottom:452.775009px;}
.yc9{bottom:453.314987px;}
.y101{bottom:454.935013px;}
.y47{bottom:460.335022px;}
.y108{bottom:460.695007px;}
.y11e{bottom:465.195007px;}
.yea{bottom:468.464996px;}
.y2d{bottom:469.515015px;}
.y1a1{bottom:470.235008px;}
.y1b3{bottom:471.854965px;}
.y188{bottom:471.855011px;}
.yc8{bottom:474.015015px;}
.y100{bottom:475.634995px;}
.y107{bottom:481.394989px;}
.y161{bottom:484.598991px;}
.y11d{bottom:485.894989px;}
.yb3{bottom:488.054993px;}
.y7d{bottom:490.214996px;}
.ya2{bottom:490.935013px;}
.y187{bottom:492.554993px;}
.yc7{bottom:494.714996px;}
.yff{bottom:496.335022px;}
.y106{bottom:502.095016px;}
.y160{bottom:505.329002px;}
.y2c{bottom:508.935013px;}
.yd4{bottom:509.685013px;}
.y1a0{bottom:510.014992px;}
.y7c{bottom:510.914978px;}
.yfe{bottom:517.035004px;}
.y105{bottom:522.794998px;}
.y11c{bottom:524.595016px;}
.y15f{bottom:526.028984px;}
.y46{bottom:528.375000px;}
.y75{bottom:528.914978px;}
.ya1{bottom:529.634995px;}
.ye9{bottom:530.205002px;}
.y19f{bottom:530.715019px;}
.y186{bottom:531.255020px;}
.y7b{bottom:531.615005px;}
.yc6{bottom:533.414978px;}
.yfd{bottom:537.734985px;}
.y104{bottom:543.494980px;}
.y11b{bottom:545.294998px;}
.y15e{bottom:546.729012px;}
.y2b{bottom:548.355011px;}
.y74{bottom:549.615005px;}
.ya0{bottom:550.335022px;}
.y185{bottom:551.955002px;}
.y7a{bottom:552.314987px;}
.yc5{bottom:554.115005px;}
.y1b2{bottom:556.455002px;}
.yfc{bottom:558.435013px;}
.y45{bottom:567.074982px;}
.y73{bottom:570.314987px;}
.y19e{bottom:571.575005px;}
.y184{bottom:572.654984px;}
.yc4{bottom:574.814987px;}
.y103{bottom:578.775009px;}
.yfb{bottom:579.134995px;}
.y11a{bottom:583.994980px;}
.yd1{bottom:587.265015px;}
.y29{bottom:587.955002px;}
.y15d{bottom:588.489006px;}
.y9f{bottom:589.035004px;}
.y72{bottom:591.015015px;}
.y183{bottom:593.355011px;}
.y62{bottom:594.615005px;}
.yc3{bottom:595.515015px;}
.y13f{bottom:597.494980px;}
.yfa{bottom:599.835022px;}
.y44{bottom:605.804993px;}
.y15c{bottom:609.188988px;}
.y9e{bottom:609.765015px;}
.y71{bottom:611.744980px;}
.y19d{bottom:612.435036px;}
.ye5{bottom:612.644989px;}
.y182{bottom:614.085022px;}
.y102{bottom:614.265015px;}
.y10a{bottom:615.960022px;}
.y137{bottom:617.865005px;}
.y119{bottom:619.304993px;}
.y1e6{bottom:621.105011px;}
.y43{bottom:626.505020px;}
.y28{bottom:627.404984px;}
.y15b{bottom:629.889015px;}
.y9d{bottom:630.464996px;}
.y79{bottom:632.445007px;}
.y19c{bottom:633.135017px;}
.y61{bottom:633.345016px;}
.yc2{bottom:634.244980px;}
.y181{bottom:634.785004px;}
.yf9{bottom:638.564987px;}
.y12{bottom:647.205002px;}
.y70{bottom:650.445007px;}
.y15a{bottom:650.588997px;}
.y9c{bottom:651.164978px;}
.y78{bottom:653.144989px;}
.y19b{bottom:653.834999px;}
.y118{bottom:654.765015px;}
.yc1{bottom:654.945007px;}
.yf8{bottom:659.265015px;}
.y60{bottom:663.044998px;}
.y1e2{bottom:663.945007px;}
.y42{bottom:665.205002px;}
.y27{bottom:666.824982px;}
.yd0{bottom:669.210022px;}
.y6f{bottom:671.144989px;}
.y159{bottom:671.289024px;}
.y9b{bottom:671.865005px;}
.y180{bottom:673.484985px;}
.yc0{bottom:675.644989px;}
.yf7{bottom:679.964996px;}
.y6e{bottom:691.845016px;}
.y158{bottom:691.989006px;}
.y9a{bottom:692.564987px;}
.y5f{bottom:692.744980px;}
.y17f{bottom:694.185013px;}
.ybf{bottom:696.345016px;}
.y136{bottom:700.664978px;}
.y41{bottom:703.005020px;}
.y26{bottom:706.244980px;}
.y11{bottom:709.304993px;}
.y6d{bottom:712.544998px;}
.y157{bottom:712.688988px;}
.y17e{bottom:714.884995px;}
.ybe{bottom:717.044998px;}
.yf6{bottom:718.664978px;}
.y13a{bottom:721.365005px;}
.y5e{bottom:722.445007px;}
.y99{bottom:731.265015px;}
.y6c{bottom:733.244980px;}
.y77{bottom:737.744980px;}
.y135{bottom:739.365005px;}
.y25{bottom:745.664978px;}
.yce{bottom:746.429993px;}
.y5d{bottom:752.144989px;}
.y17d{bottom:753.585022px;}
.y6b{bottom:753.945007px;}
.y156{bottom:754.269035px;}
.yf5{bottom:757.365005px;}
.ybd{bottom:758.445007px;}
.y134{bottom:760.064987px;}
.ycc{bottom:760.470016px;}
.y3f{bottom:764.384995px;}
.y98{bottom:769.964996px;}
.y76{bottom:774.644989px;}
.y133{bottom:780.765015px;}
.y5c{bottom:781.844971px;}
.y24{bottom:785.085022px;}
.y97{bottom:790.664978px;}
.y17c{bottom:792.285004px;}
.y6a{bottom:792.644989px;}
.y197{bottom:795.344971px;}
.yf4{bottom:796.065033px;}
.y155{bottom:796.074028px;}
.ybc{bottom:797.144989px;}
.y3e{bottom:803.804993px;}
.y5b{bottom:808.125000px;}
.y96{bottom:811.364960px;}
.y17b{bottom:812.984985px;}
.y69{bottom:813.344971px;}
.y196{bottom:816.045044px;}
.yf3{bottom:816.765015px;}
.ybb{bottom:817.844971px;}
.y132{bottom:819.464996px;}
.y22{bottom:824.684967px;}
.y1d9{bottom:830.625000px;}
.y95{bottom:832.065033px;}
.y17a{bottom:833.684967px;}
.y68{bottom:834.045044px;}
.y5a{bottom:834.405029px;}
.yf2{bottom:837.464996px;}
.y154{bottom:837.833977px;}
.yba{bottom:838.545044px;}
.y138{bottom:840.524963px;}
.y3d{bottom:843.225037px;}
.yb2{bottom:850.605011px;}
.y94{bottom:852.765015px;}
.y179{bottom:854.385040px;}
.y67{bottom:854.745026px;}
.y131{bottom:858.164978px;}
.y59{bottom:860.684967px;}
.y20{bottom:864.105011px;}
.yb1{bottom:872.429993px;}
.y93{bottom:873.510040px;}
.y178{bottom:875.129974px;}
.y66{bottom:875.489960px;}
.yf1{bottom:876.210022px;}
.yb9{bottom:877.289978px;}
.y130{bottom:878.910004px;}
.y153{bottom:879.414024px;}
.y3c{bottom:882.690033px;}
.y58{bottom:887.010040px;}
.y92{bottom:894.210022px;}
.y65{bottom:896.190033px;}
.yf0{bottom:896.910004px;}
.yb8{bottom:897.809967px;}
.y12f{bottom:899.609985px;}
.y199{bottom:903.030029px;}
.y1e{bottom:903.570007px;}
.y54{bottom:907.170044px;}
.y57{bottom:913.109985px;}
.y91{bottom:914.910004px;}
.y195{bottom:916.890015px;}
.yef{bottom:917.609985px;}
.y173{bottom:917.789978px;}
.y12e{bottom:920.309967px;}
.y3b{bottom:922.109985px;}
.y53{bottom:927.870026px;}
.y198{bottom:932.010040px;}
.y90{bottom:935.609985px;}
.yb7{bottom:937.589996px;}
.y56{bottom:939.390015px;}
.y52{bottom:948.570007px;}
.y8f{bottom:956.309967px;}
.y12d{bottom:959.010040px;}
.y3a{bottom:961.530029px;}
.y1d{bottom:963.690033px;}
.y51{bottom:969.269989px;}
.y8e{bottom:977.010040px;}
.y64{bottom:977.910004px;}
.y50{bottom:989.969971px;}
.y8d{bottom:997.710022px;}
.y1c{bottom:1003.109985px;}
.y8c{bottom:1018.410004px;}
.y63{bottom:1019.309967px;}
.y39{bottom:1027.769989px;}
.y55{bottom:1030.649963px;}
.y8b{bottom:1039.109985px;}
.y1a{bottom:1042.530029px;}
.y19{bottom:1104.989960px;}
.y37{bottom:1116.329956px;}
.y35{bottom:1130.370026px;}
.y2{bottom:1159.379974px;}
.y14{bottom:1193.579956px;}
.y13{bottom:1200.299100px;}
.y1{bottom:1206.179993px;}
.h3{height:6.007500px;}
.h25{height:20.700000px;}
.h31{height:22.860000px;}
.h15{height:38.520000px;}
.h12{height:38.699999px;}
.h14{height:38.735999px;}
.h1b{height:40.550625px;}
.h24{height:41.400000px;}
.he{height:42.335156px;}
.h8{height:43.554375px;}
.hb{height:45.180000px;}
.h10{height:45.360000px;}
.h6{height:46.800000px;}
.h9{height:46.836000px;}
.h5{height:47.309062px;}
.h2a{height:50.256002px;}
.ha{height:50.312812px;}
.h1f{height:52.236002px;}
.h1c{height:52.873594px;}
.h27{height:56.320312px;}
.h20{height:57.240000px;}
.h13{height:59.399998px;}
.h21{height:62.100002px;}
.h23{height:62.136000px;}
.h7{height:62.327813px;}
.h28{height:62.478000px;}
.h32{height:69.086250px;}
.h18{height:75.093750px;}
.h4{height:77.040000px;}
.h17{height:77.256002px;}
.h22{height:82.800000px;}
.h29{height:87.859687px;}
.h2b{height:98.819996px;}
.h19{height:99.874688px;}
.h2c{height:103.536003px;}
.h11{height:112.640625px;}
.hf{height:114.516003px;}
.h2f{height:124.560000px;}
.h2d{height:124.740005px;}
.h36{height:147.600002px;}
.h1a{height:150.187500px;}
.hc{height:162.421875px;}
.h16{height:187.230000px;}
.h35{height:211.709999px;}
.hd{height:225.281250px;}
.h34{height:355.709999px;}
.h26{height:437.220016px;}
.h33{height:485.894989px;}
.h30{height:685.875000px;}
.h1d{height:892.980000px;}
.h1e{height:893.250000px;}
.h2e{height:893.445007px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:41.040000px;}
.we{width:138.096005px;}
.w19{width:146.916000px;}
.w1c{width:152.819996px;}
.w15{width:201.990005px;}
.w4{width:212.610008px;}
.w8{width:215.669998px;}
.w1b{width:221.655006px;}
.w1a{width:236.730011px;}
.w13{width:254.910004px;}
.wc{width:254.955002px;}
.wd{width:255.089996px;}
.wa{width:255.134995px;}
.w9{width:255.990005px;}
.w7{width:293.834999px;}
.w16{width:435.855011px;}
.w17{width:448.769989px;}
.wb{width:510.375000px;}
.w5{width:542.265015px;}
.wf{width:624.705002px;}
.w1e{width:751.650009px;}
.w3{width:754.890015px;}
.w1d{width:761.009995px;}
.w18{width:766.439987px;}
.w10{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:1262.879974px;}
.w11{width:1262.880000px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:8.100002px;}
.x5{left:12.825005px;}
.x35{left:15.839998px;}
.x23{left:16.920004px;}
.x21{left:20.700027px;}
.x2b{left:24.731998px;}
.x1e{left:26.280001px;}
.x36{left:42.876000px;}
.x2d{left:56.376005px;}
.x1{left:63.899984px;}
.x34{left:66.060000px;}
.x1a{left:69.299987px;}
.x15{left:74.519987px;}
.x28{left:77.256002px;}
.x14{left:79.199986px;}
.x7{left:85.859989px;}
.x18{left:90.935987px;}
.x37{left:96.870004px;}
.x8{left:104.615992px;}
.x1b{left:117.935987px;}
.x10{left:127.439987px;}
.x2c{left:145.230005px;}
.x29{left:154.004992px;}
.xa{left:169.949993px;}
.x16{left:180.569969px;}
.x17{left:185.969992px;}
.x13{left:201.990005px;}
.x2a{left:204.044992px;}
.x22{left:206.459976px;}
.x31{left:210.809990px;}
.x3{left:212.609997px;}
.x27{left:220.709993px;}
.xd{left:247.724991px;}
.x11{left:255.644989px;}
.x1f{left:265.889992px;}
.x30{left:267.149996px;}
.x4{left:276.509995px;}
.x19{left:279.974978px;}
.xf{left:319.035004px;}
.x26{left:344.910021px;}
.xb{left:357.735008px;}
.x2e{left:389.670015px;}
.x32{left:447.554993px;}
.x2{left:462.525021px;}
.xc{left:573.404984px;}
.x33{left:669.210022px;}
.x9{left:675.356415px;}
.x2f{left:699.269976px;}
.x20{left:701.744980px;}
.x6{left:730.230011px;}
.x1c{left:795.390001px;}
.x24{left:816.089983px;}
.x12{left:822.749987px;}
.x25{left:831.210009px;}
.x1d{left:1185.989941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.089067pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.154248pt;}
.lsd{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.192046pt;}
.lse{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.230962pt;}
.lsa{letter-spacing:0.239353pt;}
.ls12{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.688000pt;}
.ls2{letter-spacing:0.871099pt;}
.ls13{letter-spacing:1.232640pt;}
.ls17{letter-spacing:49.232640pt;}
.lsc{letter-spacing:56.912650pt;}
.ws7{word-spacing:-53.120000pt;}
.ws9{word-spacing:-35.456000pt;}
.wsd{word-spacing:-15.455360pt;}
.wsb{word-spacing:-14.998293pt;}
.wsa{word-spacing:-14.950827pt;}
.ws4{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.678293pt;}
.ws3{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.536427pt;}
.wsc{word-spacing:-11.759573pt;}
.ws0{word-spacing:-10.398827pt;}
.wsf{word-spacing:-9.600000pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:314.901268pt;}
._b{margin-left:-13.850142pt;}
._5{margin-left:-12.838148pt;}
._a{margin-left:-10.058925pt;}
._7{margin-left:-8.859067pt;}
._1{margin-left:-6.933365pt;}
._6{margin-left:-5.705212pt;}
._8{margin-left:-3.264357pt;}
._d{margin-left:-2.341389pt;}
._3{margin-left:-1.407378pt;}
._0{width:1.194046pt;}
._4{width:2.181657pt;}
._c{width:3.718400pt;}
._13{width:5.123208pt;}
._18{width:6.079392pt;}
._15{width:7.142696pt;}
._14{width:8.140758pt;}
._12{width:9.697861pt;}
._11{width:10.624000pt;}
._10{width:12.270720pt;}
._17{width:13.343824pt;}
._1b{width:19.123200pt;}
._e{width:20.185600pt;}
._f{width:21.199495pt;}
._1c{width:22.629120pt;}
._1d{width:23.685544pt;}
._1a{width:24.700347pt;}
._19{width:25.776003pt;}
._16{width:37.120427pt;}
._9{width:56.285457pt;}
._2{width:927.579279pt;}
.fs0{font-size:5.120000pt;}
.fsb{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fsf{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fsa{font-size:128.000000pt;}
.fs5{font-size:192.000000pt;}
.y10{bottom:-23.194662pt;}
.y18{bottom:-23.040000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.880000pt;}
.y6{bottom:3.839997pt;}
.ye4{bottom:5.920002pt;}
.yda{bottom:5.920003pt;}
.y143{bottom:5.946696pt;}
.ye8{bottom:5.960002pt;}
.y9{bottom:6.559998pt;}
.y1b1{bottom:6.560008pt;}
.yb{bottom:7.359996pt;}
.yd{bottom:12.031998pt;}
.y4{bottom:13.279999pt;}
.y40{bottom:13.759969pt;}
.y23{bottom:13.760010pt;}
.y1b{bottom:13.920003pt;}
.y2a{bottom:13.946655pt;}
.y21{bottom:13.959961pt;}
.yd3{bottom:15.519979pt;}
.y8{bottom:17.280000pt;}
.yd6{bottom:20.000000pt;}
.y13e{bottom:20.159993pt;}
.y116{bottom:21.533325pt;}
.y1af{bottom:21.920002pt;}
.yc{bottom:22.751998pt;}
.yde{bottom:24.319987pt;}
.ye3{bottom:24.319997pt;}
.ye0{bottom:24.320007pt;}
.yd9{bottom:24.320028pt;}
.y142{bottom:24.346680pt;}
.ye7{bottom:24.360026pt;}
.y1e1{bottom:24.639974pt;}
.y172{bottom:24.639994pt;}
.y1d7{bottom:24.640004pt;}
.y1c7{bottom:24.640015pt;}
.ye{bottom:25.120000pt;}
.y7{bottom:28.000000pt;}
.y139{bottom:32.200033pt;}
.y1f{bottom:32.319987pt;}
.yd2{bottom:33.960002pt;}
.yd5{bottom:38.399984pt;}
.y13d{bottom:38.559977pt;}
.y34{bottom:40.320007pt;}
.ydd{bottom:42.719991pt;}
.ye2{bottom:42.720001pt;}
.yd8{bottom:42.720011pt;}
.yec{bottom:42.746704pt;}
.ye6{bottom:42.760010pt;}
.y14a{bottom:42.880005pt;}
.y171{bottom:43.034658pt;}
.y1d6{bottom:43.040009pt;}
.y177{bottom:43.040039pt;}
.y1c6{bottom:43.066650pt;}
.y1e0{bottom:43.079997pt;}
.y148{bottom:43.200033pt;}
.y115{bottom:44.319987pt;}
.ya{bottom:51.200002pt;}
.y38{bottom:53.440002pt;}
.ycf{bottom:53.472000pt;}
.y36{bottom:56.186605pt;}
.ycd{bottom:56.186646pt;}
.y13c{bottom:56.960002pt;}
.y1ae{bottom:57.280009pt;}
.y114{bottom:59.653320pt;}
.ydc{bottom:61.120015pt;}
.y141{bottom:61.146688pt;}
.y1e5{bottom:61.279989pt;}
.y149{bottom:61.280029pt;}
.y170{bottom:61.434662pt;}
.y1d5{bottom:61.439992pt;}
.y176{bottom:61.440023pt;}
.y147{bottom:61.600016pt;}
.y1c5{bottom:62.266683pt;}
.y1df{bottom:62.440023pt;}
.y33{bottom:66.720011pt;}
.y15{bottom:73.312002pt;}
.y13b{bottom:75.359985pt;}
.y140{bottom:79.546672pt;}
.y1e4{bottom:79.680013pt;}
.y16f{bottom:79.834656pt;}
.y1d4{bottom:79.839996pt;}
.y175{bottom:79.840007pt;}
.y146{bottom:80.000000pt;}
.y1de{bottom:80.680013pt;}
.y1c4{bottom:81.626668pt;}
.y8a{bottom:82.271998pt;}
.y113{bottom:82.426636pt;}
.y17{bottom:86.112000pt;}
.y89{bottom:86.272003pt;}
.y12c{bottom:91.871999pt;}
.y5{bottom:92.832000pt;}
.y32{bottom:93.159993pt;}
.y1ad{bottom:93.599996pt;}
.y88{bottom:97.631999pt;}
.y16e{bottom:98.234660pt;}
.y174{bottom:98.239990pt;}
.y1d3{bottom:98.240000pt;}
.y145{bottom:98.400024pt;}
.yb0{bottom:98.752004pt;}
.y1dd{bottom:100.040039pt;}
.y1c3{bottom:100.986654pt;}
.y152{bottom:100.992004pt;}
.y12b{bottom:110.272003pt;}
.y1ac{bottom:112.000000pt;}
.y112{bottom:112.893311pt;}
.y16d{bottom:116.634664pt;}
.y1d2{bottom:116.640004pt;}
.y1e3{bottom:117.440023pt;}
.y194{bottom:118.592000pt;}
.y1dc{bottom:119.239990pt;}
.y1c2{bottom:119.386678pt;}
.y31{bottom:119.559998pt;}
.y1b0{bottom:121.951996pt;}
.y1d8{bottom:124.191996pt;}
.y12a{bottom:128.671997pt;}
.yaf{bottom:133.151998pt;}
.y3{bottom:134.426666pt;}
.y16c{bottom:135.034668pt;}
.y1d1{bottom:135.040009pt;}
.yf{bottom:136.026662pt;}
.y1c1{bottom:137.786662pt;}
.ye1{bottom:141.466665pt;}
.y111{bottom:143.333333pt;}
.y4f{bottom:145.626668pt;}
.y30{bottom:145.960022pt;}
.y1ab{bottom:147.400004pt;}
.y193{bottom:152.986664pt;}
.y16b{bottom:153.434672pt;}
.y1d0{bottom:153.480011pt;}
.y1c0{bottom:156.186646pt;}
.y1db{bottom:157.319987pt;}
.y19a{bottom:159.226664pt;}
.y1c8{bottom:161.466665pt;}
.y129{bottom:163.066671pt;}
.y4e{bottom:164.986664pt;}
.yae{bottom:167.546672pt;}
.y87{bottom:169.466665pt;}
.y192{bottom:171.386658pt;}
.y1cf{bottom:171.879995pt;}
.y151{bottom:173.306661pt;}
.y110{bottom:173.786621pt;}
.y1bf{bottom:174.586670pt;}
.y1da{bottom:175.719971pt;}
.y1aa{bottom:183.719991pt;}
.y4d{bottom:184.346659pt;}
.yad{bottom:185.946676pt;}
.y86{bottom:187.866659pt;}
.y1ce{bottom:190.279999pt;}
.y16a{bottom:190.394653pt;}
.y1be{bottom:192.986694pt;}
.y128{bottom:197.466675pt;}
.y1a9{bottom:202.120015pt;}
.y10f{bottom:204.253337pt;}
.yac{bottom:204.346659pt;}
.y191{bottom:205.786662pt;}
.y150{bottom:207.706665pt;}
.y1cd{bottom:208.679983pt;}
.y1bd{bottom:211.386678pt;}
.ydf{bottom:214.786662pt;}
.y2f{bottom:215.226664pt;}
.y127{bottom:215.866659pt;}
.y4c{bottom:218.746663pt;}
.y1a8{bottom:220.519999pt;}
.y85{bottom:222.266663pt;}
.y190{bottom:224.186666pt;}
.y1cc{bottom:227.080007pt;}
.y169{bottom:227.554667pt;}
.y1bc{bottom:229.786662pt;}
.y10e{bottom:234.693278pt;}
.yab{bottom:238.746663pt;}
.y14f{bottom:242.106669pt;}
.y18f{bottom:242.586670pt;}
.y168{bottom:245.954651pt;}
.y4b{bottom:246.586670pt;}
.y1bb{bottom:248.186646pt;}
.y126{bottom:250.266663pt;}
.yee{bottom:251.746663pt;}
.y1a7{bottom:255.879985pt;}
.y84{bottom:256.666667pt;}
.yaa{bottom:257.146667pt;}
.y14e{bottom:260.506673pt;}
.y1cb{bottom:265.000010pt;}
.y10d{bottom:265.146647pt;}
.y1ba{bottom:266.586629pt;}
.y83{bottom:275.066671pt;}
.ya9{bottom:275.546672pt;}
.y18e{bottom:276.986674pt;}
.y14d{bottom:278.906657pt;}
.y167{bottom:283.074646pt;}
.y1ca{bottom:283.399994pt;}
.y125{bottom:284.666667pt;}
.y1b9{bottom:284.866659pt;}
.ydb{bottom:288.066671pt;}
.yed{bottom:288.226664pt;}
.y1a6{bottom:292.200012pt;}
.y82{bottom:293.466675pt;}
.ya8{bottom:293.946676pt;}
.y18d{bottom:295.386658pt;}
.y10c{bottom:295.613281pt;}
.y14c{bottom:297.306661pt;}
.y1c9{bottom:302.439992pt;}
.y124{bottom:303.106669pt;}
.y1b8{bottom:304.226685pt;}
.y4a{bottom:306.946676pt;}
.y1a5{bottom:310.599996pt;}
.y81{bottom:311.906657pt;}
.ya7{bottom:312.386658pt;}
.y18c{bottom:313.826660pt;}
.y166{bottom:320.034648pt;}
.y123{bottom:321.506673pt;}
.y1b7{bottom:323.586629pt;}
.y10b{bottom:325.439941pt;}
.y14b{bottom:331.746663pt;}
.y18b{bottom:332.226664pt;}
.yb6{bottom:336.706665pt;}
.y165{bottom:338.434672pt;}
.y122{bottom:339.906657pt;}
.y49{bottom:341.346680pt;}
.y117{bottom:341.893311pt;}
.y1b6{bottom:342.786662pt;}
.yeb{bottom:343.106649pt;}
.y1a4{bottom:345.960022pt;}
.y80{bottom:346.306681pt;}
.ya6{bottom:346.786662pt;}
.y164{bottom:356.834656pt;}
.y121{bottom:358.306681pt;}
.y1b5{bottom:362.146688pt;}
.y1a3{bottom:364.360006pt;}
.ya5{bottom:365.186686pt;}
.ycb{bottom:366.146647pt;}
.y18a{bottom:366.626668pt;}
.yb5{bottom:371.106649pt;}
.y163{bottom:375.234680pt;}
.y48{bottom:375.746663pt;}
.y120{bottom:376.706665pt;}
.yd7{bottom:379.773315pt;}
.y7f{bottom:380.546672pt;}
.y1b4{bottom:381.346639pt;}
.y2e{bottom:382.306681pt;}
.ya4{bottom:383.586670pt;}
.yca{bottom:384.546672pt;}
.y109{bottom:391.106649pt;}
.y162{bottom:393.634664pt;}
.y11f{bottom:395.106649pt;}
.y7e{bottom:398.946655pt;}
.y1a2{bottom:399.746684pt;}
.y189{bottom:401.026652pt;}
.ya3{bottom:401.986654pt;}
.y144{bottom:402.146647pt;}
.yb4{bottom:402.466675pt;}
.yc9{bottom:402.946655pt;}
.y101{bottom:404.386678pt;}
.y47{bottom:409.186686pt;}
.y108{bottom:409.506673pt;}
.y11e{bottom:413.506673pt;}
.yea{bottom:416.413330pt;}
.y2d{bottom:417.346680pt;}
.y1a1{bottom:417.986674pt;}
.y1b3{bottom:419.426636pt;}
.y188{bottom:419.426676pt;}
.yc8{bottom:421.346680pt;}
.y100{bottom:422.786662pt;}
.y107{bottom:427.906657pt;}
.y161{bottom:430.754659pt;}
.y11d{bottom:431.906657pt;}
.yb3{bottom:433.826660pt;}
.y7d{bottom:435.746663pt;}
.ya2{bottom:436.386678pt;}
.y187{bottom:437.826660pt;}
.yc7{bottom:439.746663pt;}
.yff{bottom:441.186686pt;}
.y106{bottom:446.306681pt;}
.y160{bottom:449.181335pt;}
.y2c{bottom:452.386678pt;}
.yd4{bottom:453.053345pt;}
.y1a0{bottom:453.346659pt;}
.y7c{bottom:454.146647pt;}
.yfe{bottom:459.586670pt;}
.y105{bottom:464.706665pt;}
.y11c{bottom:466.306681pt;}
.y15f{bottom:467.581319pt;}
.y46{bottom:469.666667pt;}
.y75{bottom:470.146647pt;}
.ya1{bottom:470.786662pt;}
.ye9{bottom:471.293335pt;}
.y19f{bottom:471.746684pt;}
.y186{bottom:472.226685pt;}
.y7b{bottom:472.546672pt;}
.yc6{bottom:474.146647pt;}
.yfd{bottom:477.986654pt;}
.y104{bottom:483.106649pt;}
.y11b{bottom:484.706665pt;}
.y15e{bottom:485.981344pt;}
.y2b{bottom:487.426676pt;}
.y74{bottom:488.546672pt;}
.ya0{bottom:489.186686pt;}
.y185{bottom:490.626668pt;}
.y7a{bottom:490.946655pt;}
.yc5{bottom:492.546672pt;}
.y1b2{bottom:494.626668pt;}
.yfc{bottom:496.386678pt;}
.y45{bottom:504.066650pt;}
.y73{bottom:506.946655pt;}
.y19e{bottom:508.066671pt;}
.y184{bottom:509.026652pt;}
.yc4{bottom:510.946655pt;}
.y103{bottom:514.466675pt;}
.yfb{bottom:514.786662pt;}
.y11a{bottom:519.106649pt;}
.yd1{bottom:522.013346pt;}
.y29{bottom:522.626668pt;}
.y15d{bottom:523.101339pt;}
.y9f{bottom:523.586670pt;}
.y72{bottom:525.346680pt;}
.y183{bottom:527.426676pt;}
.y62{bottom:528.546672pt;}
.yc3{bottom:529.346680pt;}
.y13f{bottom:531.106649pt;}
.yfa{bottom:533.186686pt;}
.y44{bottom:538.493327pt;}
.y15c{bottom:541.501322pt;}
.y9e{bottom:542.013346pt;}
.y71{bottom:543.773315pt;}
.y19d{bottom:544.386698pt;}
.ye5{bottom:544.573324pt;}
.y182{bottom:545.853353pt;}
.y102{bottom:546.013346pt;}
.y10a{bottom:547.520020pt;}
.y137{bottom:549.213338pt;}
.y119{bottom:550.493327pt;}
.y1e6{bottom:552.093343pt;}
.y43{bottom:556.893351pt;}
.y28{bottom:557.693319pt;}
.y15b{bottom:559.901347pt;}
.y9d{bottom:560.413330pt;}
.y79{bottom:562.173340pt;}
.y19c{bottom:562.786682pt;}
.y61{bottom:562.973348pt;}
.yc2{bottom:563.773315pt;}
.y181{bottom:564.253337pt;}
.yf9{bottom:567.613322pt;}
.y12{bottom:575.293335pt;}
.y70{bottom:578.173340pt;}
.y15a{bottom:578.301331pt;}
.y9c{bottom:578.813314pt;}
.y78{bottom:580.573324pt;}
.y19b{bottom:581.186666pt;}
.y118{bottom:582.013346pt;}
.yc1{bottom:582.173340pt;}
.yf8{bottom:586.013346pt;}
.y60{bottom:589.373332pt;}
.y1e2{bottom:590.173340pt;}
.y42{bottom:591.293335pt;}
.y27{bottom:592.733317pt;}
.yd0{bottom:594.853353pt;}
.y6f{bottom:596.573324pt;}
.y159{bottom:596.701355pt;}
.y9b{bottom:597.213338pt;}
.y180{bottom:598.653320pt;}
.yc0{bottom:600.573324pt;}
.yf7{bottom:604.413330pt;}
.y6e{bottom:614.973348pt;}
.y158{bottom:615.101339pt;}
.y9a{bottom:615.613322pt;}
.y5f{bottom:615.773315pt;}
.y17f{bottom:617.053345pt;}
.ybf{bottom:618.973348pt;}
.y136{bottom:622.813314pt;}
.y41{bottom:624.893351pt;}
.y26{bottom:627.773315pt;}
.y11{bottom:630.493327pt;}
.y6d{bottom:633.373332pt;}
.y157{bottom:633.501322pt;}
.y17e{bottom:635.453328pt;}
.ybe{bottom:637.373332pt;}
.yf6{bottom:638.813314pt;}
.y13a{bottom:641.213338pt;}
.y5e{bottom:642.173340pt;}
.y99{bottom:650.013346pt;}
.y6c{bottom:651.773315pt;}
.y77{bottom:655.773315pt;}
.y135{bottom:657.213338pt;}
.y25{bottom:662.813314pt;}
.yce{bottom:663.493327pt;}
.y5d{bottom:668.573324pt;}
.y17d{bottom:669.853353pt;}
.y6b{bottom:670.173340pt;}
.y156{bottom:670.461365pt;}
.yf5{bottom:673.213338pt;}
.ybd{bottom:674.173340pt;}
.y134{bottom:675.613322pt;}
.ycc{bottom:675.973348pt;}
.y3f{bottom:679.453328pt;}
.y98{bottom:684.413330pt;}
.y76{bottom:688.573324pt;}
.y133{bottom:694.013346pt;}
.y5c{bottom:694.973307pt;}
.y24{bottom:697.853353pt;}
.y97{bottom:702.813314pt;}
.y17c{bottom:704.253337pt;}
.y6a{bottom:704.573324pt;}
.y197{bottom:706.973307pt;}
.yf4{bottom:707.613363pt;}
.y155{bottom:707.621358pt;}
.ybc{bottom:708.573324pt;}
.y3e{bottom:714.493327pt;}
.y5b{bottom:718.333333pt;}
.y96{bottom:721.213298pt;}
.y17b{bottom:722.653320pt;}
.y69{bottom:722.973307pt;}
.y196{bottom:725.373372pt;}
.yf3{bottom:726.013346pt;}
.ybb{bottom:726.973307pt;}
.y132{bottom:728.413330pt;}
.y22{bottom:733.053304pt;}
.y1d9{bottom:738.333333pt;}
.y95{bottom:739.613363pt;}
.y17a{bottom:741.053304pt;}
.y68{bottom:741.373372pt;}
.y5a{bottom:741.693359pt;}
.yf2{bottom:744.413330pt;}
.y154{bottom:744.741313pt;}
.yba{bottom:745.373372pt;}
.y138{bottom:747.133301pt;}
.y3d{bottom:749.533366pt;}
.yb2{bottom:756.093343pt;}
.y94{bottom:758.013346pt;}
.y179{bottom:759.453369pt;}
.y67{bottom:759.773356pt;}
.y131{bottom:762.813314pt;}
.y59{bottom:765.053304pt;}
.y20{bottom:768.093343pt;}
.yb1{bottom:775.493327pt;}
.y93{bottom:776.453369pt;}
.y178{bottom:777.893311pt;}
.y66{bottom:778.213298pt;}
.yf1{bottom:778.853353pt;}
.yb9{bottom:779.813314pt;}
.y130{bottom:781.253337pt;}
.y153{bottom:781.701355pt;}
.y3c{bottom:784.613363pt;}
.y58{bottom:788.453369pt;}
.y92{bottom:794.853353pt;}
.y65{bottom:796.613363pt;}
.yf0{bottom:797.253337pt;}
.yb8{bottom:798.053304pt;}
.y12f{bottom:799.653320pt;}
.y199{bottom:802.693359pt;}
.y1e{bottom:803.173340pt;}
.y54{bottom:806.373372pt;}
.y57{bottom:811.653320pt;}
.y91{bottom:813.253337pt;}
.y195{bottom:815.013346pt;}
.yef{bottom:815.653320pt;}
.y173{bottom:815.813314pt;}
.y12e{bottom:818.053304pt;}
.y3b{bottom:819.653320pt;}
.y53{bottom:824.773356pt;}
.y198{bottom:828.453369pt;}
.y90{bottom:831.653320pt;}
.yb7{bottom:833.413330pt;}
.y56{bottom:835.013346pt;}
.y52{bottom:843.173340pt;}
.y8f{bottom:850.053304pt;}
.y12d{bottom:852.453369pt;}
.y3a{bottom:854.693359pt;}
.y1d{bottom:856.613363pt;}
.y51{bottom:861.573324pt;}
.y8e{bottom:868.453369pt;}
.y64{bottom:869.253337pt;}
.y50{bottom:879.973307pt;}
.y8d{bottom:886.853353pt;}
.y1c{bottom:891.653320pt;}
.y8c{bottom:905.253337pt;}
.y63{bottom:906.053304pt;}
.y39{bottom:913.573324pt;}
.y55{bottom:916.133301pt;}
.y8b{bottom:923.653320pt;}
.y1a{bottom:926.693359pt;}
.y19{bottom:982.213298pt;}
.y37{bottom:992.293294pt;}
.y35{bottom:1004.773356pt;}
.y2{bottom:1030.559977pt;}
.y14{bottom:1060.959961pt;}
.y13{bottom:1066.932533pt;}
.y1{bottom:1072.159993pt;}
.h3{height:5.340000pt;}
.h25{height:18.400000pt;}
.h31{height:20.320000pt;}
.h15{height:34.240000pt;}
.h12{height:34.399999pt;}
.h14{height:34.431999pt;}
.h1b{height:36.045000pt;}
.h24{height:36.800000pt;}
.he{height:37.631250pt;}
.h8{height:38.715000pt;}
.hb{height:40.160000pt;}
.h10{height:40.320000pt;}
.h6{height:41.600000pt;}
.h9{height:41.632000pt;}
.h5{height:42.052500pt;}
.h2a{height:44.672002pt;}
.ha{height:44.722500pt;}
.h1f{height:46.432002pt;}
.h1c{height:46.998750pt;}
.h27{height:50.062500pt;}
.h20{height:50.880000pt;}
.h13{height:52.799998pt;}
.h21{height:55.200002pt;}
.h23{height:55.232000pt;}
.h7{height:55.402500pt;}
.h28{height:55.536000pt;}
.h32{height:61.410000pt;}
.h18{height:66.750000pt;}
.h4{height:68.480000pt;}
.h17{height:68.672002pt;}
.h22{height:73.600000pt;}
.h29{height:78.097500pt;}
.h2b{height:87.839996pt;}
.h19{height:88.777500pt;}
.h2c{height:92.032003pt;}
.h11{height:100.125000pt;}
.hf{height:101.792002pt;}
.h2f{height:110.720000pt;}
.h2d{height:110.880005pt;}
.h36{height:131.200002pt;}
.h1a{height:133.500000pt;}
.hc{height:144.375000pt;}
.h16{height:166.426666pt;}
.h35{height:188.186666pt;}
.hd{height:200.250000pt;}
.h34{height:316.186666pt;}
.h26{height:388.640015pt;}
.h33{height:431.906657pt;}
.h30{height:609.666667pt;}
.h1d{height:793.760000pt;}
.h1e{height:794.000000pt;}
.h2e{height:794.173340pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:36.480000pt;}
.we{width:122.752004pt;}
.w19{width:130.592000pt;}
.w1c{width:135.839996pt;}
.w15{width:179.546672pt;}
.w4{width:188.986674pt;}
.w8{width:191.706665pt;}
.w1b{width:197.026672pt;}
.w1a{width:210.426676pt;}
.w13{width:226.586670pt;}
.wc{width:226.626668pt;}
.wd{width:226.746663pt;}
.wa{width:226.786662pt;}
.w9{width:227.546672pt;}
.w7{width:261.186666pt;}
.w16{width:387.426676pt;}
.w17{width:398.906657pt;}
.wb{width:453.666667pt;}
.w5{width:482.013346pt;}
.wf{width:555.293335pt;}
.w1e{width:668.133341pt;}
.w3{width:671.013346pt;}
.w1d{width:676.453328pt;}
.w18{width:681.279989pt;}
.w10{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:1122.559977pt;}
.w11{width:1122.560000pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:7.200002pt;}
.x5{left:11.400004pt;}
.x35{left:14.079998pt;}
.x23{left:15.040003pt;}
.x21{left:18.400024pt;}
.x2b{left:21.983999pt;}
.x1e{left:23.360001pt;}
.x36{left:38.112000pt;}
.x2d{left:50.112005pt;}
.x1{left:56.799986pt;}
.x34{left:58.720000pt;}
.x1a{left:61.599988pt;}
.x15{left:66.239988pt;}
.x28{left:68.672002pt;}
.x14{left:70.399987pt;}
.x7{left:76.319990pt;}
.x18{left:80.831988pt;}
.x37{left:86.106670pt;}
.x8{left:92.991993pt;}
.x1b{left:104.831988pt;}
.x10{left:113.279989pt;}
.x2c{left:129.093338pt;}
.x29{left:136.893326pt;}
.xa{left:151.066661pt;}
.x16{left:160.506639pt;}
.x17{left:165.306659pt;}
.x13{left:179.546672pt;}
.x2a{left:181.373327pt;}
.x22{left:183.519979pt;}
.x31{left:187.386658pt;}
.x3{left:188.986664pt;}
.x27{left:196.186661pt;}
.xd{left:220.199992pt;}
.x11{left:227.239990pt;}
.x1f{left:236.346659pt;}
.x30{left:237.466663pt;}
.x4{left:245.786662pt;}
.x19{left:248.866647pt;}
.xf{left:283.586670pt;}
.x26{left:306.586685pt;}
.xb{left:317.986674pt;}
.x2e{left:346.373347pt;}
.x32{left:397.826660pt;}
.x2{left:411.133352pt;}
.xc{left:509.693319pt;}
.x33{left:594.853353pt;}
.x9{left:600.316813pt;}
.x2f{left:621.573312pt;}
.x20{left:623.773315pt;}
.x6{left:649.093343pt;}
.x1c{left:707.013335pt;}
.x24{left:725.413318pt;}
.x12{left:731.333322pt;}
.x25{left:738.853341pt;}
.x1d{left:1054.213281pt;}
}




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