
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29a30947348af7b8b62fa946.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_846086ea5fe0f54c9f821fd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_5612c1bace68ff7872591f79.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a29fd9257579a48adb26db6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_51c5c7d1b17efa7724ffd179.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_26a1cdd1bf9f9213a5a86959.woff2')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_e3d7ac4cefb099942ce8a88b.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.444600px;}
.ls17{letter-spacing:-0.291600px;}
.ls22{letter-spacing:-0.246600px;}
.lsd{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.060600px;}
.ls16{letter-spacing:-0.056160px;}
.ls18{letter-spacing:-0.038880px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls19{letter-spacing:0.068400px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.113400px;}
.ls1c{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.173520px;}
.lsb{letter-spacing:0.174600px;}
.ls6{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.199200px;}
.ls11{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.369800px;}
.wsc{word-spacing:-13.342200px;}
.ws5{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.187520px;}
.ws8{word-spacing:-13.170240px;}
.wsf{word-spacing:-13.165800px;}
.wsb{word-spacing:-13.072800px;}
.ws3{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.979800px;}
.ws9{word-spacing:-12.934800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
._8e{margin-left:-4.435440px;}
._6{margin-left:-3.126000px;}
._c{margin-left:-2.118602px;}
._0{margin-left:-1.110000px;}
._1{width:1.230708px;}
._8{width:2.585400px;}
._a{width:3.607200px;}
._4{width:4.689600px;}
._d{width:5.951399px;}
._2{width:7.608600px;}
._3{width:8.689800px;}
._9{width:10.034280px;}
._e{width:11.073840px;}
._12{width:12.169079px;}
._7{width:14.849400px;}
._5{width:16.773600px;}
._f{width:18.532080px;}
._10{width:19.704240px;}
._11{width:21.462840px;}
._33{width:22.665240px;}
._b{width:23.928000px;}
._27{width:25.490880px;}
._28{width:26.693280px;}
._2b{width:28.376640px;}
._85{width:30.240360px;}
._20{width:31.623120px;}
._4a{width:32.945760px;}
._62{width:34.207200px;}
._59{width:35.410680px;}
._5a{width:36.793440px;}
._45{width:38.116080px;}
._5e{width:39.318480px;}
._69{width:41.314320px;}
._35{width:42.745320px;}
._25{width:43.947720px;}
._92{width:45.029880px;}
._7b{width:46.653120px;}
._84{width:48.456720px;}
._26{width:49.899600px;}
._6a{width:50.981760px;}
._52{width:52.965720px;}
._18{width:54.228240px;}
._19{width:55.851480px;}
._81{width:57.021600px;}
._77{width:59.699160px;}
._4d{width:61.442640px;}
._58{width:63.787320px;}
._3f{width:64.809360px;}
._1a{width:66.913560px;}
._6e{width:68.176080px;}
._71{width:69.679080px;}
._86{width:71.482680px;}
._5f{width:72.745200px;}
._49{width:74.488680px;}
._38{width:76.051800px;}
._91{width:78.544560px;}
._60{width:79.719120px;}
._7a{width:82.604880px;}
._57{width:84.168000px;}
._23{width:86.452560px;}
._40{width:87.775200px;}
._5d{width:88.857360px;}
._4b{width:90.781200px;}
._5c{width:92.584800px;}
._24{width:94.689000px;}
._2c{width:97.302000px;}
._70{width:98.717040px;}
._78{width:102.985560px;}
._7e{width:104.007600px;}
._8d{width:106.171920px;}
._64{width:107.193960px;}
._63{width:108.336240px;}
._41{width:110.981520px;}
._53{width:112.905360px;}
._72{width:115.370280px;}
._15{width:118.556640px;}
._22{width:120.480480px;}
._47{width:122.284080px;}
._67{width:123.935160px;}
._32{width:125.410320px;}
._6b{width:126.432360px;}
._75{width:128.055600px;}
._6f{width:130.640760px;}
._1b{width:131.843160px;}
._4e{width:133.767000px;}
._3e{width:135.209880px;}
._43{width:136.292040px;}
._30{width:137.795040px;}
._73{width:143.506440px;}
._80{width:145.069560px;}
._54{width:146.512440px;}
._8a{width:149.819040px;}
._90{width:151.349880px;}
._5b{width:152.945280px;}
._2d{width:154.448280px;}
._4c{width:157.514400px;}
._8f{width:158.775960px;}
._56{width:161.001360px;}
._36{width:163.526400px;}
._39{width:165.029400px;}
._76{width:167.915160px;}
._2e{width:170.500320px;}
._3a{width:172.003320px;}
._37{width:176.271840px;}
._1e{width:177.955200px;}
._42{width:180.059400px;}
._89{width:182.764800px;}
._6c{width:183.786840px;}
._83{width:187.754760px;}
._55{width:189.077400px;}
._2f{width:191.061360px;}
._87{width:192.804840px;}
._17{width:195.931080px;}
._16{width:197.794800px;}
._13{width:200.019240px;}
._1d{width:201.882960px;}
._4f{width:203.987160px;}
._82{width:205.430040px;}
._1f{width:207.293760px;}
._88{width:211.261680px;}
._66{width:213.125400px;}
._29{width:217.093320px;}
._7c{width:222.263640px;}
._1c{width:223.886880px;}
._3d{width:225.930960px;}
._14{width:227.073240px;}
._21{width:232.123320px;}
._7d{width:240.359760px;}
._8b{width:241.441920px;}
._79{width:242.704440px;}
._3b{width:245.770560px;}
._2a{width:257.073120px;}
._31{width:260.079120px;}
._46{width:261.882720px;}
._61{width:264.347640px;}
._3c{width:267.053040px;}
._68{width:270.900720px;}
._6d{width:274.928760px;}
._48{width:282.143160px;}
._50{width:290.920680px;}
._8c{width:306.972720px;}
._34{width:310.038840px;}
._44{width:332.042760px;}
._7f{width:339.377400px;}
._65{width:355.309200px;}
._51{width:361.982520px;}
._74{width:370.579680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.830000px;}
.y8d{bottom:7.920000px;}
.y8f{bottom:25.380000px;}
.yb6{bottom:25.410000px;}
.y88{bottom:25.470000px;}
.yba{bottom:25.500000px;}
.y8c{bottom:43.020000px;}
.yad{bottom:43.050000px;}
.ya2{bottom:43.110000px;}
.ya0{bottom:60.570000px;}
.y8b{bottom:60.660000px;}
.yd1{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y85{bottom:74.280000px;}
.yc6{bottom:78.210000px;}
.yd0{bottom:78.240000px;}
.y96{bottom:89.400000px;}
.yc8{bottom:95.850000px;}
.yf9{bottom:97.230000px;}
.ya5{bottom:99.480000px;}
.ycd{bottom:100.650000px;}
.y1{bottom:101.640000px;}
.y1a4{bottom:115.320000px;}
.yc1{bottom:118.920000px;}
.y19a{bottom:124.320000px;}
.y58{bottom:127.110000px;}
.y124{bottom:130.170000px;}
.y1a3{bottom:132.870000px;}
.y143{bottom:133.230000px;}
.yc0{bottom:136.470000px;}
.y199{bottom:141.870000px;}
.y16d{bottom:142.500000px;}
.ycc{bottom:145.560000px;}
.y123{bottom:147.720000px;}
.y95{bottom:151.860000px;}
.ybf{bottom:154.110000px;}
.y28{bottom:156.630000px;}
.y1a2{bottom:159.510000px;}
.y16c{bottom:160.140000px;}
.y57{bottom:162.750000px;}
.y122{bottom:165.270000px;}
.y198{bottom:168.510000px;}
.y142{bottom:170.310000px;}
.ybe{bottom:171.660000px;}
.yb4{bottom:173.190000px;}
.y27{bottom:174.180000px;}
.y1a1{bottom:177.060000px;}
.yf8{bottom:177.330000px;}
.ya4{bottom:179.580000px;}
.y121{bottom:182.910000px;}
.yf4{bottom:184.890000px;}
.y197{bottom:186.060000px;}
.y16b{bottom:186.690000px;}
.y141{bottom:187.860000px;}
.y26{bottom:191.730000px;}
.y56{bottom:198.300000px;}
.y120{bottom:200.460000px;}
.y1a0{bottom:203.610000px;}
.y16a{bottom:204.330000px;}
.ybd{bottom:204.600000px;}
.yb3{bottom:208.740000px;}
.y25{bottom:209.370000px;}
.y196{bottom:212.610000px;}
.y94{bottom:214.410000px;}
.y140{bottom:214.770000px;}
.y55{bottom:215.850000px;}
.ye5{bottom:219.270000px;}
.yf3{bottom:220.440000px;}
.y169{bottom:221.880000px;}
.yf7{bottom:222.240000px;}
.y24{bottom:226.920000px;}
.y195{bottom:230.250000px;}
.y54{bottom:233.490000px;}
.y11f{bottom:236.100000px;}
.ycb{bottom:243.210000px;}
.yb2{bottom:244.290000px;}
.y23{bottom:244.560000px;}
.y19f{bottom:247.800000px;}
.y168{bottom:248.430000px;}
.ybc{bottom:249.510000px;}
.y53{bottom:251.040000px;}
.y13f{bottom:251.760000px;}
.y11e{bottom:253.650000px;}
.ye4{bottom:254.910000px;}
.yf2{bottom:256.080000px;}
.y194{bottom:256.800000px;}
.ya3{bottom:259.590000px;}
.yb1{bottom:261.930000px;}
.y22{bottom:262.110000px;}
.yf6{bottom:267.150000px;}
.y52{bottom:268.680000px;}
.y11d{bottom:271.200000px;}
.yf1{bottom:273.630000px;}
.y193{bottom:274.440000px;}
.y167{bottom:275.070000px;}
.y93{bottom:276.870000px;}
.y13e{bottom:278.670000px;}
.yb0{bottom:279.480000px;}
.y21{bottom:279.660000px;}
.y11c{bottom:288.840000px;}
.ye3{bottom:290.460000px;}
.yf0{bottom:291.180000px;}
.y19e{bottom:291.990000px;}
.y166{bottom:292.620000px;}
.yaf{bottom:297.120000px;}
.y20{bottom:297.300000px;}
.y192{bottom:300.990000px;}
.y51{bottom:304.230000px;}
.y11b{bottom:306.390000px;}
.yef{bottom:308.820000px;}
.ybb{bottom:312.060000px;}
.yae{bottom:314.670000px;}
.y13d{bottom:316.020000px;}
.y191{bottom:318.540000px;}
.y165{bottom:319.260000px;}
.y50{bottom:321.780000px;}
.yca{bottom:323.310000px;}
.ye2{bottom:326.010000px;}
.yee{bottom:326.370000px;}
.y1f{bottom:332.850000px;}
.y19d{bottom:336.180000px;}
.y4f{bottom:339.420000px;}
.ya1{bottom:339.690000px;}
.y11a{bottom:341.940000px;}
.yed{bottom:344.010000px;}
.y190{bottom:345.180000px;}
.y164{bottom:345.810000px;}
.yac{bottom:347.610000px;}
.y1e{bottom:350.490000px;}
.y4e{bottom:356.970000px;}
.y119{bottom:359.580000px;}
.yec{bottom:361.560000px;}
.ye1{bottom:361.650000px;}
.y18f{bottom:362.730000px;}
.y163{bottom:363.360000px;}
.y7c{bottom:363.540000px;}
.y13c{bottom:364.350000px;}
.y1d{bottom:368.040000px;}
.yb9{bottom:374.520000px;}
.y4d{bottom:374.610000px;}
.y118{bottom:377.130000px;}
.yeb{bottom:379.110000px;}
.y19c{bottom:380.370000px;}
.y13b{bottom:381.900000px;}
.y1c{bottom:385.590000px;}
.y18e{bottom:389.370000px;}
.y162{bottom:390.000000px;}
.y117{bottom:394.770000px;}
.y83{bottom:395.760000px;}
.yea{bottom:396.750000px;}
.ye0{bottom:397.200000px;}
.y7b{bottom:399.090000px;}
.y13a{bottom:400.350000px;}
.y92{bottom:401.910000px;}
.y9f{bottom:402.270000px;}
.y1b{bottom:403.230000px;}
.yc9{bottom:403.440000px;}
.y18d{bottom:406.920000px;}
.y161{bottom:407.550000px;}
.y4c{bottom:410.160000px;}
.yab{bottom:410.190000px;}
.y116{bottom:412.320000px;}
.y82{bottom:413.400000px;}
.ye9{bottom:414.300000px;}
.ydf{bottom:414.750000px;}
.y7a{bottom:416.640000px;}
.y139{bottom:417.900000px;}
.yb8{bottom:419.550000px;}
.y1a{bottom:420.780000px;}
.y4b{bottom:427.710000px;}
.y115{bottom:429.870000px;}
.y81{bottom:430.950000px;}
.ye8{bottom:431.940000px;}
.yde{bottom:432.390000px;}
.y18c{bottom:433.470000px;}
.yd4{bottom:434.130000px;}
.y160{bottom:434.190000px;}
.y79{bottom:434.280000px;}
.y138{bottom:436.350000px;}
.y19{bottom:438.420000px;}
.y4a{bottom:445.350000px;}
.yf5{bottom:446.820000px;}
.ydd{bottom:449.940000px;}
.y19b{bottom:451.110000px;}
.y15f{bottom:451.740000px;}
.y78{bottom:451.830000px;}
.y137{bottom:453.900000px;}
.yaa{bottom:455.100000px;}
.y80{bottom:457.860000px;}
.y18b{bottom:460.110000px;}
.y91{bottom:464.460000px;}
.y114{bottom:465.510000px;}
.yc7{bottom:465.900000px;}
.ye7{bottom:467.490000px;}
.ydc{bottom:467.580000px;}
.y77{bottom:469.470000px;}
.y18{bottom:474.000000px;}
.y18a{bottom:477.690000px;}
.y15e{bottom:478.320000px;}
.y49{bottom:480.930000px;}
.y136{bottom:481.650000px;}
.yb7{bottom:482.010000px;}
.y9e{bottom:482.370000px;}
.y113{bottom:483.090000px;}
.ydb{bottom:485.160000px;}
.y17{bottom:491.550000px;}
.y189{bottom:495.330000px;}
.y15d{bottom:495.960000px;}
.y48{bottom:498.480000px;}
.ye6{bottom:499.740000px;}
.y112{bottom:500.730000px;}
.yda{bottom:502.710000px;}
.y1b4{bottom:504.330000px;}
.y76{bottom:505.050000px;}
.y7f{bottom:506.220000px;}
.y16{bottom:509.190000px;}
.yd3{bottom:514.230000px;}
.y47{bottom:516.120000px;}
.ya9{bottom:517.560000px;}
.y111{bottom:518.280000px;}
.y135{bottom:518.730000px;}
.yd9{bottom:520.350000px;}
.y188{bottom:521.880000px;}
.y15c{bottom:522.510000px;}
.y75{bottom:522.600000px;}
.y7e{bottom:523.770000px;}
.y15{bottom:526.740000px;}
.y90{bottom:526.920000px;}
.y110{bottom:535.830000px;}
.y134{bottom:536.280000px;}
.yd8{bottom:537.900000px;}
.y187{bottom:539.430000px;}
.y15b{bottom:540.150000px;}
.y74{bottom:540.240000px;}
.y14{bottom:544.380000px;}
.y1b3{bottom:548.430000px;}
.y9d{bottom:548.610000px;}
.y46{bottom:551.670000px;}
.y133{bottom:553.830000px;}
.y7d{bottom:555.990000px;}
.y73{bottom:557.790000px;}
.y13{bottom:561.930000px;}
.y186{bottom:566.070000px;}
.y15a{bottom:566.700000px;}
.y45{bottom:569.310000px;}
.y10f{bottom:571.470000px;}
.yd7{bottom:573.540000px;}
.ya8{bottom:580.110000px;}
.yc5{bottom:581.190000px;}
.y185{bottom:583.620000px;}
.y9c{bottom:584.250000px;}
.y44{bottom:586.860000px;}
.y10e{bottom:589.020000px;}
.y8e{bottom:589.470000px;}
.y1b2{bottom:592.620000px;}
.y72{bottom:593.340000px;}
.yd2{bottom:594.330000px;}
.y12{bottom:597.480000px;}
.y9b{bottom:601.800000px;}
.yd6{bottom:605.760000px;}
.y10d{bottom:606.660000px;}
.y184{bottom:610.260000px;}
.y159{bottom:610.890000px;}
.y71{bottom:610.980000px;}
.y11{bottom:615.120000px;}
.y1b1{bottom:619.260000px;}
.y9a{bottom:619.350000px;}
.y43{bottom:622.410000px;}
.y10c{bottom:624.210000px;}
.ya7{bottom:625.020000px;}
.y183{bottom:627.810000px;}
.y158{bottom:628.440000px;}
.y70{bottom:628.530000px;}
.y10{bottom:632.670000px;}
.y1b0{bottom:636.810000px;}
.y99{bottom:636.990000px;}
.y42{bottom:640.050000px;}
.y10b{bottom:641.760000px;}
.yf{bottom:650.310000px;}
.y8a{bottom:651.930000px;}
.y182{bottom:654.360000px;}
.y157{bottom:655.080000px;}
.y41{bottom:657.600000px;}
.y10a{bottom:659.400000px;}
.y1af{bottom:663.360000px;}
.y6f{bottom:664.170000px;}
.y98{bottom:669.930000px;}
.y181{bottom:672.000000px;}
.y156{bottom:672.630000px;}
.ycf{bottom:674.430000px;}
.y40{bottom:675.240000px;}
.y132{bottom:676.950000px;}
.ye{bottom:677.130000px;}
.yc4{bottom:678.840000px;}
.y1ae{bottom:681.000000px;}
.y6e{bottom:681.720000px;}
.ya6{bottom:687.570000px;}
.y3f{bottom:692.790000px;}
.y131{bottom:694.590000px;}
.y109{bottom:694.950000px;}
.y180{bottom:698.550000px;}
.y155{bottom:699.180000px;}
.y6d{bottom:699.270000px;}
.y1ad{bottom:707.550000px;}
.y3e{bottom:710.340000px;}
.y108{bottom:712.590000px;}
.yb5{bottom:714.480000px;}
.y17f{bottom:716.190000px;}
.y154{bottom:716.820000px;}
.y6c{bottom:716.910000px;}
.y130{bottom:721.500000px;}
.y1ac{bottom:725.190000px;}
.yd{bottom:725.460000px;}
.y107{bottom:730.140000px;}
.y87{bottom:732.060000px;}
.y17e{bottom:742.740000px;}
.y153{bottom:743.370000px;}
.yc3{bottom:745.200000px;}
.y3d{bottom:745.980000px;}
.y106{bottom:747.690000px;}
.y97{bottom:750.060000px;}
.y1ab{bottom:751.740000px;}
.y6b{bottom:752.460000px;}
.y17d{bottom:760.290000px;}
.y152{bottom:760.920000px;}
.yc{bottom:761.280000px;}
.y3c{bottom:763.530000px;}
.y105{bottom:765.330000px;}
.y1aa{bottom:769.290000px;}
.y12f{bottom:769.740000px;}
.y6a{bottom:770.100000px;}
.yce{bottom:772.110000px;}
.yc2{bottom:780.750000px;}
.y3b{bottom:781.170000px;}
.y104{bottom:782.880000px;}
.y17c{bottom:786.930000px;}
.y12e{bottom:787.290000px;}
.y151{bottom:787.560000px;}
.y69{bottom:787.650000px;}
.yb{bottom:797.280000px;}
.y86{bottom:798.390000px;}
.y3a{bottom:798.720000px;}
.y103{bottom:800.520000px;}
.y17b{bottom:804.480000px;}
.y12d{bottom:804.930000px;}
.y150{bottom:805.110000px;}
.y68{bottom:805.200000px;}
.y1a9{bottom:813.480000px;}
.y39{bottom:816.270000px;}
.y12c{bottom:822.480000px;}
.y67{bottom:822.840000px;}
.y84{bottom:824.940000px;}
.y17a{bottom:831.030000px;}
.y14f{bottom:831.750000px;}
.y38{bottom:833.910000px;}
.y102{bottom:836.070000px;}
.ya{bottom:837.060000px;}
.y12b{bottom:840.030000px;}
.y66{bottom:840.390000px;}
.y179{bottom:848.670000px;}
.y14e{bottom:849.300000px;}
.y37{bottom:851.460000px;}
.y101{bottom:853.620000px;}
.y9{bottom:855.060000px;}
.y1a8{bottom:857.670000px;}
.y100{bottom:871.260000px;}
.y8{bottom:873.060000px;}
.y178{bottom:875.220000px;}
.y12a{bottom:875.670000px;}
.y14d{bottom:875.850000px;}
.y65{bottom:876.030000px;}
.y36{bottom:887.100000px;}
.yff{bottom:888.810000px;}
.y177{bottom:892.860000px;}
.y129{bottom:893.220000px;}
.y64{bottom:893.580000px;}
.y1a7{bottom:901.860000px;}
.y14c{bottom:902.490000px;}
.y35{bottom:904.650000px;}
.y7{bottom:905.370000px;}
.yfe{bottom:906.450000px;}
.y128{bottom:910.860000px;}
.y63{bottom:911.130000px;}
.y176{bottom:919.410000px;}
.y14b{bottom:920.040000px;}
.y34{bottom:922.200000px;}
.y6{bottom:924.720000px;}
.y127{bottom:928.410000px;}
.y62{bottom:928.770000px;}
.yfd{bottom:933.270000px;}
.y175{bottom:936.960000px;}
.y33{bottom:939.840000px;}
.y1a6{bottom:945.960000px;}
.y61{bottom:946.320000px;}
.y14a{bottom:946.950000px;}
.y32{bottom:957.390000px;}
.y5{bottom:962.970000px;}
.y174{bottom:963.600000px;}
.y126{bottom:963.960000px;}
.y60{bottom:973.230000px;}
.y173{bottom:981.150000px;}
.yfc{bottom:981.600000px;}
.y31{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y1a5{bottom:990.150000px;}
.y149{bottom:995.280000px;}
.yfb{bottom:999.150000px;}
.y172{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yfa{bottom:1016.820000px;}
.y5f{bottom:1021.590000px;}
.y148{bottom:1022.130000px;}
.y171{bottom:1025.370000px;}
.y30{bottom:1032.930000px;}
.y125{bottom:1034.370000px;}
.y5e{bottom:1039.140000px;}
.y170{bottom:1051.920000px;}
.yd5{bottom:1052.370000px;}
.y5d{bottom:1057.500000px;}
.y147{bottom:1059.210000px;}
.y2f{bottom:1069.920000px;}
.y5c{bottom:1075.050000px;}
.y146{bottom:1076.760000px;}
.y16f{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5b{bottom:1093.500000px;}
.y145{bottom:1094.400000px;}
.y16e{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y5a{bottom:1111.050000px;}
.y144{bottom:1111.950000px;}
.y2c{bottom:1122.750000px;}
.y59{bottom:1138.860000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1b{height:39.690000px;}
.h1a{height:44.100000px;}
.he{height:44.190000px;}
.h16{height:44.220000px;}
.hb{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.740000px;}
.h11{height:61.770000px;}
.ha{height:61.793886px;}
.h15{height:61.830000px;}
.h13{height:61.860000px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h12{height:79.290000px;}
.h19{height:79.320000px;}
.h14{height:79.380000px;}
.hf{height:79.410000px;}
.h17{height:96.930000px;}
.h1c{height:96.960000px;}
.h18{height:114.570000px;}
.hc{height:893.160000px;}
.hd{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:103.680000px;}
.w11{width:104.490000px;}
.w1f{width:108.300000px;}
.w1c{width:127.170000px;}
.w17{width:152.190000px;}
.w1a{width:154.920000px;}
.w19{width:158.580000px;}
.w9{width:165.180000px;}
.w7{width:172.170000px;}
.wf{width:172.200000px;}
.w1d{width:172.560000px;}
.we{width:175.950000px;}
.w15{width:178.860000px;}
.wd{width:185.400000px;}
.w18{width:187.380000px;}
.w14{width:190.440000px;}
.w6{width:192.720000px;}
.w8{width:193.500000px;}
.wc{width:195.420000px;}
.w12{width:204.510000px;}
.w10{width:207.990000px;}
.wa{width:214.200000px;}
.w13{width:217.350000px;}
.w1b{width:222.930000px;}
.w16{width:250.920000px;}
.w20{width:311.130000px;}
.w1e{width:323.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x23{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x22{left:91.529987px;}
.x4{left:95.039987px;}
.x7{left:100.799987px;}
.x20{left:101.969987px;}
.xb{left:107.999981px;}
.x28{left:111.239987px;}
.x5{left:122.039987px;}
.x24{left:236.610000px;}
.x2{left:250.499987px;}
.x1a{left:274.710000px;}
.xd{left:302.160000px;}
.x12{left:304.950000px;}
.x16{left:313.950000px;}
.x8{left:370.739987px;}
.x25{left:409.890000px;}
.x1b{left:427.620000px;}
.x9{left:435.089981px;}
.xe{left:475.050000px;}
.x13{left:491.070000px;}
.x17{left:532.020000px;}
.x1c{left:615.810000px;}
.x6{left:634.559987px;}
.x14{left:667.740000px;}
.xf{left:669.360000px;}
.x18{left:723.270000px;}
.x26{left:733.710000px;}
.x1f{left:763.889987px;}
.x21{left:774.059987px;}
.x1d{left:775.200000px;}
.x3{left:800.339987px;}
.x10{left:835.260000px;}
.x15{left:840.660000px;}
.x27{left:842.730000px;}
.x19{left:902.940000px;}
.x1e{left:930.930000px;}
.x11{left:1050.180000px;}
.xa{left:1129.649981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.395200pt;}
.ls17{letter-spacing:-0.259200pt;}
.ls22{letter-spacing:-0.219200pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.053867pt;}
.ls16{letter-spacing:-0.049920pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls19{letter-spacing:0.060800pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.100800pt;}
.ls1c{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.154240pt;}
.lsb{letter-spacing:0.155200pt;}
.ls6{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.177067pt;}
.ls11{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.884267pt;}
.wsc{word-spacing:-11.859733pt;}
.ws5{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.722240pt;}
.ws8{word-spacing:-11.706880pt;}
.wsf{word-spacing:-11.702933pt;}
.wsb{word-spacing:-11.620267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.537600pt;}
.ws9{word-spacing:-11.497600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
._8e{margin-left:-3.942613pt;}
._6{margin-left:-2.778666pt;}
._c{margin-left:-1.883202pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.093963pt;}
._8{width:2.298134pt;}
._a{width:3.206400pt;}
._4{width:4.168534pt;}
._d{width:5.290132pt;}
._2{width:6.763200pt;}
._3{width:7.724266pt;}
._9{width:8.919360pt;}
._e{width:9.843414pt;}
._12{width:10.816959pt;}
._7{width:13.199466pt;}
._5{width:14.909867pt;}
._f{width:16.472960pt;}
._10{width:17.514880pt;}
._11{width:19.078080pt;}
._33{width:20.146880pt;}
._b{width:21.269334pt;}
._27{width:22.658560pt;}
._28{width:23.727360pt;}
._2b{width:25.223680pt;}
._85{width:26.880320pt;}
._20{width:28.109440pt;}
._4a{width:29.285120pt;}
._62{width:30.406400pt;}
._59{width:31.476160pt;}
._5a{width:32.705280pt;}
._45{width:33.880960pt;}
._5e{width:34.949760pt;}
._69{width:36.723840pt;}
._35{width:37.995840pt;}
._25{width:39.064640pt;}
._92{width:40.026560pt;}
._7b{width:41.469440pt;}
._84{width:43.072640pt;}
._26{width:44.355200pt;}
._6a{width:45.317120pt;}
._52{width:47.080640pt;}
._18{width:48.202880pt;}
._19{width:49.645760pt;}
._81{width:50.685867pt;}
._77{width:53.065920pt;}
._4d{width:54.615680pt;}
._58{width:56.699840pt;}
._3f{width:57.608320pt;}
._1a{width:59.478720pt;}
._6e{width:60.600960pt;}
._71{width:61.936960pt;}
._86{width:63.540160pt;}
._5f{width:64.662400pt;}
._49{width:66.212160pt;}
._38{width:67.601600pt;}
._91{width:69.817387pt;}
._60{width:70.861440pt;}
._7a{width:73.426560pt;}
._57{width:74.816000pt;}
._23{width:76.846720pt;}
._40{width:78.022400pt;}
._5d{width:78.984320pt;}
._4b{width:80.694400pt;}
._5c{width:82.297600pt;}
._24{width:84.168000pt;}
._2c{width:86.490667pt;}
._70{width:87.748480pt;}
._78{width:91.542720pt;}
._7e{width:92.451200pt;}
._8d{width:94.375040pt;}
._64{width:95.283520pt;}
._63{width:96.298880pt;}
._41{width:98.650240pt;}
._53{width:100.360320pt;}
._72{width:102.551360pt;}
._15{width:105.383680pt;}
._22{width:107.093760pt;}
._47{width:108.696960pt;}
._67{width:110.164587pt;}
._32{width:111.475840pt;}
._6b{width:112.384320pt;}
._75{width:113.827200pt;}
._6f{width:116.125120pt;}
._1b{width:117.193920pt;}
._4e{width:118.904000pt;}
._3e{width:120.186560pt;}
._43{width:121.148480pt;}
._30{width:122.484480pt;}
._73{width:127.561280pt;}
._80{width:128.950720pt;}
._54{width:130.233280pt;}
._8a{width:133.172480pt;}
._90{width:134.533227pt;}
._5b{width:135.951360pt;}
._2d{width:137.287360pt;}
._4c{width:140.012800pt;}
._8f{width:141.134187pt;}
._56{width:143.112320pt;}
._36{width:145.356800pt;}
._39{width:146.692800pt;}
._76{width:149.257920pt;}
._2e{width:151.555840pt;}
._3a{width:152.891840pt;}
._37{width:156.686080pt;}
._1e{width:158.182400pt;}
._42{width:160.052800pt;}
._89{width:162.457600pt;}
._6c{width:163.366080pt;}
._83{width:166.893120pt;}
._55{width:168.068800pt;}
._2f{width:169.832320pt;}
._87{width:171.382080pt;}
._17{width:174.160960pt;}
._16{width:175.817600pt;}
._13{width:177.794880pt;}
._1d{width:179.451520pt;}
._4f{width:181.321920pt;}
._82{width:182.604480pt;}
._1f{width:184.261120pt;}
._88{width:187.788160pt;}
._66{width:189.444800pt;}
._29{width:192.971840pt;}
._7c{width:197.567680pt;}
._1c{width:199.010560pt;}
._3d{width:200.827520pt;}
._14{width:201.842880pt;}
._21{width:206.331840pt;}
._7d{width:213.653120pt;}
._8b{width:214.615040pt;}
._79{width:215.737280pt;}
._3b{width:218.462720pt;}
._2a{width:228.509440pt;}
._31{width:231.181440pt;}
._46{width:232.784640pt;}
._61{width:234.975680pt;}
._3c{width:237.380480pt;}
._68{width:240.800640pt;}
._6d{width:244.381120pt;}
._48{width:250.793920pt;}
._50{width:258.596160pt;}
._8c{width:272.864640pt;}
._34{width:275.590080pt;}
._44{width:295.149120pt;}
._7f{width:301.668800pt;}
._65{width:315.830400pt;}
._51{width:321.762240pt;}
._74{width:329.404160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.960000pt;}
.y8d{bottom:7.040000pt;}
.y8f{bottom:22.560000pt;}
.yb6{bottom:22.586667pt;}
.y88{bottom:22.640000pt;}
.yba{bottom:22.666667pt;}
.y8c{bottom:38.240000pt;}
.yad{bottom:38.266667pt;}
.ya2{bottom:38.320000pt;}
.ya0{bottom:53.840000pt;}
.y8b{bottom:53.920000pt;}
.yd1{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y85{bottom:66.026667pt;}
.yc6{bottom:69.520000pt;}
.yd0{bottom:69.546667pt;}
.y96{bottom:79.466667pt;}
.yc8{bottom:85.200000pt;}
.yf9{bottom:86.426667pt;}
.ya5{bottom:88.426667pt;}
.ycd{bottom:89.466667pt;}
.y1{bottom:90.346667pt;}
.y1a4{bottom:102.506667pt;}
.yc1{bottom:105.706667pt;}
.y19a{bottom:110.506667pt;}
.y58{bottom:112.986667pt;}
.y124{bottom:115.706667pt;}
.y1a3{bottom:118.106667pt;}
.y143{bottom:118.426667pt;}
.yc0{bottom:121.306667pt;}
.y199{bottom:126.106667pt;}
.y16d{bottom:126.666667pt;}
.ycc{bottom:129.386667pt;}
.y123{bottom:131.306667pt;}
.y95{bottom:134.986667pt;}
.ybf{bottom:136.986667pt;}
.y28{bottom:139.226667pt;}
.y1a2{bottom:141.786667pt;}
.y16c{bottom:142.346667pt;}
.y57{bottom:144.666667pt;}
.y122{bottom:146.906667pt;}
.y198{bottom:149.786667pt;}
.y142{bottom:151.386667pt;}
.ybe{bottom:152.586667pt;}
.yb4{bottom:153.946667pt;}
.y27{bottom:154.826667pt;}
.y1a1{bottom:157.386667pt;}
.yf8{bottom:157.626667pt;}
.ya4{bottom:159.626667pt;}
.y121{bottom:162.586667pt;}
.yf4{bottom:164.346667pt;}
.y197{bottom:165.386667pt;}
.y16b{bottom:165.946667pt;}
.y141{bottom:166.986667pt;}
.y26{bottom:170.426667pt;}
.y56{bottom:176.266667pt;}
.y120{bottom:178.186667pt;}
.y1a0{bottom:180.986667pt;}
.y16a{bottom:181.626667pt;}
.ybd{bottom:181.866667pt;}
.yb3{bottom:185.546667pt;}
.y25{bottom:186.106667pt;}
.y196{bottom:188.986667pt;}
.y94{bottom:190.586667pt;}
.y140{bottom:190.906667pt;}
.y55{bottom:191.866667pt;}
.ye5{bottom:194.906667pt;}
.yf3{bottom:195.946667pt;}
.y169{bottom:197.226667pt;}
.yf7{bottom:197.546667pt;}
.y24{bottom:201.706667pt;}
.y195{bottom:204.666667pt;}
.y54{bottom:207.546667pt;}
.y11f{bottom:209.866667pt;}
.ycb{bottom:216.186667pt;}
.yb2{bottom:217.146667pt;}
.y23{bottom:217.386667pt;}
.y19f{bottom:220.266667pt;}
.y168{bottom:220.826667pt;}
.ybc{bottom:221.786667pt;}
.y53{bottom:223.146667pt;}
.y13f{bottom:223.786667pt;}
.y11e{bottom:225.466667pt;}
.ye4{bottom:226.586667pt;}
.yf2{bottom:227.626667pt;}
.y194{bottom:228.266667pt;}
.ya3{bottom:230.746667pt;}
.yb1{bottom:232.826667pt;}
.y22{bottom:232.986667pt;}
.yf6{bottom:237.466667pt;}
.y52{bottom:238.826667pt;}
.y11d{bottom:241.066667pt;}
.yf1{bottom:243.226667pt;}
.y193{bottom:243.946667pt;}
.y167{bottom:244.506667pt;}
.y93{bottom:246.106667pt;}
.y13e{bottom:247.706667pt;}
.yb0{bottom:248.426667pt;}
.y21{bottom:248.586667pt;}
.y11c{bottom:256.746667pt;}
.ye3{bottom:258.186667pt;}
.yf0{bottom:258.826667pt;}
.y19e{bottom:259.546667pt;}
.y166{bottom:260.106667pt;}
.yaf{bottom:264.106667pt;}
.y20{bottom:264.266667pt;}
.y192{bottom:267.546667pt;}
.y51{bottom:270.426667pt;}
.y11b{bottom:272.346667pt;}
.yef{bottom:274.506667pt;}
.ybb{bottom:277.386667pt;}
.yae{bottom:279.706667pt;}
.y13d{bottom:280.906667pt;}
.y191{bottom:283.146667pt;}
.y165{bottom:283.786667pt;}
.y50{bottom:286.026667pt;}
.yca{bottom:287.386667pt;}
.ye2{bottom:289.786667pt;}
.yee{bottom:290.106667pt;}
.y1f{bottom:295.866667pt;}
.y19d{bottom:298.826667pt;}
.y4f{bottom:301.706667pt;}
.ya1{bottom:301.946667pt;}
.y11a{bottom:303.946667pt;}
.yed{bottom:305.786667pt;}
.y190{bottom:306.826667pt;}
.y164{bottom:307.386667pt;}
.yac{bottom:308.986667pt;}
.y1e{bottom:311.546667pt;}
.y4e{bottom:317.306667pt;}
.y119{bottom:319.626667pt;}
.yec{bottom:321.386667pt;}
.ye1{bottom:321.466667pt;}
.y18f{bottom:322.426667pt;}
.y163{bottom:322.986667pt;}
.y7c{bottom:323.146667pt;}
.y13c{bottom:323.866667pt;}
.y1d{bottom:327.146667pt;}
.yb9{bottom:332.906667pt;}
.y4d{bottom:332.986667pt;}
.y118{bottom:335.226667pt;}
.yeb{bottom:336.986667pt;}
.y19c{bottom:338.106667pt;}
.y13b{bottom:339.466667pt;}
.y1c{bottom:342.746667pt;}
.y18e{bottom:346.106667pt;}
.y162{bottom:346.666667pt;}
.y117{bottom:350.906667pt;}
.y83{bottom:351.786667pt;}
.yea{bottom:352.666667pt;}
.ye0{bottom:353.066667pt;}
.y7b{bottom:354.746667pt;}
.y13a{bottom:355.866667pt;}
.y92{bottom:357.253333pt;}
.y9f{bottom:357.573333pt;}
.y1b{bottom:358.426667pt;}
.yc9{bottom:358.613333pt;}
.y18d{bottom:361.706667pt;}
.y161{bottom:362.266667pt;}
.y4c{bottom:364.586667pt;}
.yab{bottom:364.613333pt;}
.y116{bottom:366.506667pt;}
.y82{bottom:367.466667pt;}
.ye9{bottom:368.266667pt;}
.ydf{bottom:368.666667pt;}
.y7a{bottom:370.346667pt;}
.y139{bottom:371.466667pt;}
.yb8{bottom:372.933333pt;}
.y1a{bottom:374.026667pt;}
.y4b{bottom:380.186667pt;}
.y115{bottom:382.106667pt;}
.y81{bottom:383.066667pt;}
.ye8{bottom:383.946667pt;}
.yde{bottom:384.346667pt;}
.y18c{bottom:385.306667pt;}
.yd4{bottom:385.893333pt;}
.y160{bottom:385.946667pt;}
.y79{bottom:386.026667pt;}
.y138{bottom:387.866667pt;}
.y19{bottom:389.706667pt;}
.y4a{bottom:395.866667pt;}
.yf5{bottom:397.173333pt;}
.ydd{bottom:399.946667pt;}
.y19b{bottom:400.986667pt;}
.y15f{bottom:401.546667pt;}
.y78{bottom:401.626667pt;}
.y137{bottom:403.466667pt;}
.yaa{bottom:404.533333pt;}
.y80{bottom:406.986667pt;}
.y18b{bottom:408.986667pt;}
.y91{bottom:412.853333pt;}
.y114{bottom:413.786667pt;}
.yc7{bottom:414.133333pt;}
.ye7{bottom:415.546667pt;}
.ydc{bottom:415.626667pt;}
.y77{bottom:417.306667pt;}
.y18{bottom:421.333333pt;}
.y18a{bottom:424.613333pt;}
.y15e{bottom:425.173333pt;}
.y49{bottom:427.493333pt;}
.y136{bottom:428.133333pt;}
.yb7{bottom:428.453333pt;}
.y9e{bottom:428.773333pt;}
.y113{bottom:429.413333pt;}
.ydb{bottom:431.253333pt;}
.y17{bottom:436.933333pt;}
.y189{bottom:440.293333pt;}
.y15d{bottom:440.853333pt;}
.y48{bottom:443.093333pt;}
.ye6{bottom:444.213333pt;}
.y112{bottom:445.093333pt;}
.yda{bottom:446.853333pt;}
.y1b4{bottom:448.293333pt;}
.y76{bottom:448.933333pt;}
.y7f{bottom:449.973333pt;}
.y16{bottom:452.613333pt;}
.yd3{bottom:457.093333pt;}
.y47{bottom:458.773333pt;}
.ya9{bottom:460.053333pt;}
.y111{bottom:460.693333pt;}
.y135{bottom:461.093333pt;}
.yd9{bottom:462.533333pt;}
.y188{bottom:463.893333pt;}
.y15c{bottom:464.453333pt;}
.y75{bottom:464.533333pt;}
.y7e{bottom:465.573333pt;}
.y15{bottom:468.213333pt;}
.y90{bottom:468.373333pt;}
.y110{bottom:476.293333pt;}
.y134{bottom:476.693333pt;}
.yd8{bottom:478.133333pt;}
.y187{bottom:479.493333pt;}
.y15b{bottom:480.133333pt;}
.y74{bottom:480.213333pt;}
.y14{bottom:483.893333pt;}
.y1b3{bottom:487.493333pt;}
.y9d{bottom:487.653333pt;}
.y46{bottom:490.373333pt;}
.y133{bottom:492.293333pt;}
.y7d{bottom:494.213333pt;}
.y73{bottom:495.813333pt;}
.y13{bottom:499.493333pt;}
.y186{bottom:503.173333pt;}
.y15a{bottom:503.733333pt;}
.y45{bottom:506.053333pt;}
.y10f{bottom:507.973333pt;}
.yd7{bottom:509.813333pt;}
.ya8{bottom:515.653333pt;}
.yc5{bottom:516.613333pt;}
.y185{bottom:518.773333pt;}
.y9c{bottom:519.333333pt;}
.y44{bottom:521.653333pt;}
.y10e{bottom:523.573333pt;}
.y8e{bottom:523.973333pt;}
.y1b2{bottom:526.773333pt;}
.y72{bottom:527.413333pt;}
.yd2{bottom:528.293333pt;}
.y12{bottom:531.093333pt;}
.y9b{bottom:534.933333pt;}
.yd6{bottom:538.453333pt;}
.y10d{bottom:539.253333pt;}
.y184{bottom:542.453333pt;}
.y159{bottom:543.013333pt;}
.y71{bottom:543.093333pt;}
.y11{bottom:546.773333pt;}
.y1b1{bottom:550.453333pt;}
.y9a{bottom:550.533333pt;}
.y43{bottom:553.253333pt;}
.y10c{bottom:554.853333pt;}
.ya7{bottom:555.573333pt;}
.y183{bottom:558.053333pt;}
.y158{bottom:558.613333pt;}
.y70{bottom:558.693333pt;}
.y10{bottom:562.373333pt;}
.y1b0{bottom:566.053333pt;}
.y99{bottom:566.213333pt;}
.y42{bottom:568.933333pt;}
.y10b{bottom:570.453333pt;}
.yf{bottom:578.053333pt;}
.y8a{bottom:579.493333pt;}
.y182{bottom:581.653333pt;}
.y157{bottom:582.293333pt;}
.y41{bottom:584.533333pt;}
.y10a{bottom:586.133333pt;}
.y1af{bottom:589.653333pt;}
.y6f{bottom:590.373333pt;}
.y98{bottom:595.493333pt;}
.y181{bottom:597.333333pt;}
.y156{bottom:597.893333pt;}
.ycf{bottom:599.493333pt;}
.y40{bottom:600.213333pt;}
.y132{bottom:601.733333pt;}
.ye{bottom:601.893333pt;}
.yc4{bottom:603.413333pt;}
.y1ae{bottom:605.333333pt;}
.y6e{bottom:605.973333pt;}
.ya6{bottom:611.173333pt;}
.y3f{bottom:615.813333pt;}
.y131{bottom:617.413333pt;}
.y109{bottom:617.733333pt;}
.y180{bottom:620.933333pt;}
.y155{bottom:621.493333pt;}
.y6d{bottom:621.573333pt;}
.y1ad{bottom:628.933333pt;}
.y3e{bottom:631.413333pt;}
.y108{bottom:633.413333pt;}
.yb5{bottom:635.093333pt;}
.y17f{bottom:636.613333pt;}
.y154{bottom:637.173333pt;}
.y6c{bottom:637.253333pt;}
.y130{bottom:641.333333pt;}
.y1ac{bottom:644.613333pt;}
.yd{bottom:644.853333pt;}
.y107{bottom:649.013333pt;}
.y87{bottom:650.720000pt;}
.y17e{bottom:660.213333pt;}
.y153{bottom:660.773333pt;}
.yc3{bottom:662.400000pt;}
.y3d{bottom:663.093333pt;}
.y106{bottom:664.613333pt;}
.y97{bottom:666.720000pt;}
.y1ab{bottom:668.213333pt;}
.y6b{bottom:668.853333pt;}
.y17d{bottom:675.813333pt;}
.y152{bottom:676.373333pt;}
.yc{bottom:676.693333pt;}
.y3c{bottom:678.693333pt;}
.y105{bottom:680.293333pt;}
.y1aa{bottom:683.813333pt;}
.y12f{bottom:684.213333pt;}
.y6a{bottom:684.533333pt;}
.yce{bottom:686.320000pt;}
.yc2{bottom:694.000000pt;}
.y3b{bottom:694.373333pt;}
.y104{bottom:695.893333pt;}
.y17c{bottom:699.493333pt;}
.y12e{bottom:699.813333pt;}
.y151{bottom:700.053333pt;}
.y69{bottom:700.133333pt;}
.yb{bottom:708.693333pt;}
.y86{bottom:709.680000pt;}
.y3a{bottom:709.973333pt;}
.y103{bottom:711.573333pt;}
.y17b{bottom:715.093333pt;}
.y12d{bottom:715.493333pt;}
.y150{bottom:715.653333pt;}
.y68{bottom:715.733333pt;}
.y1a9{bottom:723.093333pt;}
.y39{bottom:725.573333pt;}
.y12c{bottom:731.093333pt;}
.y67{bottom:731.413333pt;}
.y84{bottom:733.280000pt;}
.y17a{bottom:738.693333pt;}
.y14f{bottom:739.333333pt;}
.y38{bottom:741.253333pt;}
.y102{bottom:743.173333pt;}
.ya{bottom:744.053333pt;}
.y12b{bottom:746.693333pt;}
.y66{bottom:747.013333pt;}
.y179{bottom:754.373333pt;}
.y14e{bottom:754.933333pt;}
.y37{bottom:756.853333pt;}
.y101{bottom:758.773333pt;}
.y9{bottom:760.053333pt;}
.y1a8{bottom:762.373333pt;}
.y100{bottom:774.453333pt;}
.y8{bottom:776.053333pt;}
.y178{bottom:777.973333pt;}
.y12a{bottom:778.373333pt;}
.y14d{bottom:778.533333pt;}
.y65{bottom:778.693333pt;}
.y36{bottom:788.533333pt;}
.yff{bottom:790.053333pt;}
.y177{bottom:793.653333pt;}
.y129{bottom:793.973333pt;}
.y64{bottom:794.293333pt;}
.y1a7{bottom:801.653333pt;}
.y14c{bottom:802.213333pt;}
.y35{bottom:804.133333pt;}
.y7{bottom:804.773333pt;}
.yfe{bottom:805.733333pt;}
.y128{bottom:809.653333pt;}
.y63{bottom:809.893333pt;}
.y176{bottom:817.253333pt;}
.y14b{bottom:817.813333pt;}
.y34{bottom:819.733333pt;}
.y6{bottom:821.973333pt;}
.y127{bottom:825.253333pt;}
.y62{bottom:825.573333pt;}
.yfd{bottom:829.573333pt;}
.y175{bottom:832.853333pt;}
.y33{bottom:835.413333pt;}
.y1a6{bottom:840.853333pt;}
.y61{bottom:841.173333pt;}
.y14a{bottom:841.733333pt;}
.y32{bottom:851.013333pt;}
.y5{bottom:855.973333pt;}
.y174{bottom:856.533333pt;}
.y126{bottom:856.853333pt;}
.y60{bottom:865.093333pt;}
.y173{bottom:872.133333pt;}
.yfc{bottom:872.533333pt;}
.y31{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y1a5{bottom:880.133333pt;}
.y149{bottom:884.693333pt;}
.yfb{bottom:888.133333pt;}
.y172{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yfa{bottom:903.840000pt;}
.y5f{bottom:908.080000pt;}
.y148{bottom:908.560000pt;}
.y171{bottom:911.440000pt;}
.y30{bottom:918.160000pt;}
.y125{bottom:919.440000pt;}
.y5e{bottom:923.680000pt;}
.y170{bottom:935.040000pt;}
.yd5{bottom:935.440000pt;}
.y5d{bottom:940.000000pt;}
.y147{bottom:941.520000pt;}
.y2f{bottom:951.040000pt;}
.y5c{bottom:955.600000pt;}
.y146{bottom:957.120000pt;}
.y16f{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5b{bottom:972.000000pt;}
.y145{bottom:972.800000pt;}
.y16e{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y5a{bottom:987.600000pt;}
.y144{bottom:988.400000pt;}
.y2c{bottom:998.000000pt;}
.y59{bottom:1012.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1b{height:35.280000pt;}
.h1a{height:39.200000pt;}
.he{height:39.280000pt;}
.h16{height:39.306667pt;}
.hb{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.880000pt;}
.h11{height:54.906667pt;}
.ha{height:54.927899pt;}
.h15{height:54.960000pt;}
.h13{height:54.986667pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h12{height:70.480000pt;}
.h19{height:70.506667pt;}
.h14{height:70.560000pt;}
.hf{height:70.586667pt;}
.h17{height:86.160000pt;}
.h1c{height:86.186667pt;}
.h18{height:101.840000pt;}
.hc{height:793.920000pt;}
.hd{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:92.160000pt;}
.w11{width:92.880000pt;}
.w1f{width:96.266667pt;}
.w1c{width:113.040000pt;}
.w17{width:135.280000pt;}
.w1a{width:137.706667pt;}
.w19{width:140.960000pt;}
.w9{width:146.826667pt;}
.w7{width:153.040000pt;}
.wf{width:153.066667pt;}
.w1d{width:153.386667pt;}
.we{width:156.400000pt;}
.w15{width:158.986667pt;}
.wd{width:164.800000pt;}
.w18{width:166.560000pt;}
.w14{width:169.280000pt;}
.w6{width:171.306667pt;}
.w8{width:172.000000pt;}
.wc{width:173.706667pt;}
.w12{width:181.786667pt;}
.w10{width:184.880000pt;}
.wa{width:190.400000pt;}
.w13{width:193.200000pt;}
.w1b{width:198.160000pt;}
.w16{width:223.040000pt;}
.w20{width:276.560000pt;}
.w1e{width:287.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x23{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x22{left:81.359988pt;}
.x4{left:84.479988pt;}
.x7{left:89.599988pt;}
.x20{left:90.639988pt;}
.xb{left:95.999983pt;}
.x28{left:98.879988pt;}
.x5{left:108.479988pt;}
.x24{left:210.320000pt;}
.x2{left:222.666655pt;}
.x1a{left:244.186667pt;}
.xd{left:268.586667pt;}
.x12{left:271.066667pt;}
.x16{left:279.066667pt;}
.x8{left:329.546655pt;}
.x25{left:364.346667pt;}
.x1b{left:380.106667pt;}
.x9{left:386.746650pt;}
.xe{left:422.266667pt;}
.x13{left:436.506667pt;}
.x17{left:472.906667pt;}
.x1c{left:547.386667pt;}
.x6{left:564.053322pt;}
.x14{left:593.546667pt;}
.xf{left:594.986667pt;}
.x18{left:642.906667pt;}
.x26{left:652.186667pt;}
.x1f{left:679.013322pt;}
.x21{left:688.053322pt;}
.x1d{left:689.066667pt;}
.x3{left:711.413322pt;}
.x10{left:742.453333pt;}
.x15{left:747.253333pt;}
.x27{left:749.093333pt;}
.x19{left:802.613333pt;}
.x1e{left:827.493333pt;}
.x11{left:933.493333pt;}
.xa{left:1004.133317pt;}
}




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