
    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_5204877f06c8881a03748924.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_3e03b40f3bab630fcba7ab86.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_91460f93fd10426c14a9cefd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_0f1cb2fcaa6f72fd09240d4d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.213379;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_fb4a0206a50e4a4191047f9f.woff')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_711a53d51fc820e94c15293e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952637;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_86eba274b64f1bb42745dacb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952637;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dcc1a040308484ce191de312.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.666000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.630000px;}
.ls34{letter-spacing:-0.624000px;}
.ls33{letter-spacing:-0.274800px;}
.ls11{letter-spacing:-0.262200px;}
.ls2a{letter-spacing:-0.253200px;}
.lsf{letter-spacing:-0.241800px;}
.ls1d{letter-spacing:-0.237600px;}
.ls1b{letter-spacing:-0.234600px;}
.ls37{letter-spacing:-0.204600px;}
.ls1c{letter-spacing:-0.169800px;}
.ls1a{letter-spacing:-0.145200px;}
.ls16{letter-spacing:-0.127200px;}
.ls4{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.057600px;}
.ls28{letter-spacing:-0.048960px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.028906px;}
.ls3a{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.091200px;}
.lsb{letter-spacing:0.097800px;}
.ls36{letter-spacing:0.125400px;}
.ls38{letter-spacing:0.146880px;}
.lse{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.195120px;}
.ls2d{letter-spacing:0.204600px;}
.ls13{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.271200px;}
.ls2{letter-spacing:0.272880px;}
.ls19{letter-spacing:0.280080px;}
.ls15{letter-spacing:0.280200px;}
.ls2e{letter-spacing:0.302400px;}
.ls39{letter-spacing:0.310800px;}
.ls18{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.457800px;}
.ls25{letter-spacing:0.592560px;}
.ls23{letter-spacing:0.592800px;}
.lsa{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.953135px;}
.ls14{letter-spacing:1.002000px;}
.ls26{letter-spacing:1.118960px;}
.ls2c{letter-spacing:2.160000px;}
.ls27{letter-spacing:6.583626px;}
.ls2f{letter-spacing:10.260000px;}
.ls1e{letter-spacing:10.800000px;}
.ls30{letter-spacing:12.420000px;}
.ls32{letter-spacing:21.185280px;}
.ls20{letter-spacing:41.345280px;}
.ls22{letter-spacing:42.065280px;}
.ls21{letter-spacing:47.825280px;}
.ls1f{letter-spacing:48.545280px;}
.ls2b{letter-spacing:53.585280px;}
.ls17{letter-spacing:61.380000px;}
.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;}
}
.ws4{word-spacing:-21.151200px;}
.ws3{word-spacing:-20.430000px;}
.ws5{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.017800px;}
.ws1b{word-spacing:-16.870800px;}
.ws17{word-spacing:-16.862400px;}
.wsb{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.764600px;}
.ws9{word-spacing:-16.657800px;}
.ws10{word-spacing:-16.617600px;}
.ws1{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.511040px;}
.ws14{word-spacing:-16.502400px;}
.ws2{word-spacing:-16.453200px;}
.ws1a{word-spacing:-16.355400px;}
.ws15{word-spacing:-16.306800px;}
.ws8{word-spacing:-16.297800px;}
.wsc{word-spacing:-15.942000px;}
.ws19{word-spacing:-15.936000px;}
.ws1c{word-spacing:-15.900000px;}
.wsa{word-spacing:-15.792000px;}
.wsd{word-spacing:-15.220200px;}
.wse{word-spacing:-14.992560px;}
.wsf{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.770200px;}
.ws12{word-spacing:-14.702400px;}
.ws18{word-spacing:-14.665200px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._2f{margin-left:-13.059716px;}
._2e{margin-left:-11.881738px;}
._c{margin-left:-4.774080px;}
._5{margin-left:-3.546240px;}
._6{margin-left:-2.341440px;}
._1{margin-left:-1.126080px;}
._0{width:1.399680px;}
._19{width:2.439840px;}
._7{width:3.444480px;}
._3{width:4.703040px;}
._2{width:5.762880px;}
._4{width:6.923040px;}
._a{width:8.389440px;}
._b{width:9.731520px;}
._9{width:10.834560px;}
._8{width:12.254400px;}
._10{width:13.512960px;}
._11{width:14.639040px;}
._14{width:16.740000px;}
._d{width:18.202080px;}
._1a{width:19.545360px;}
._43{width:20.966640px;}
._e{width:22.057920px;}
._f{width:23.484000px;}
._17{width:31.264800px;}
._21{width:32.269440px;}
._12{width:33.764400px;}
._13{width:34.840080px;}
._33{width:38.352960px;}
._20{width:40.397760px;}
._1e{width:41.772240px;}
._1f{width:43.127760px;}
._2d{width:44.430000px;}
._39{width:45.873120px;}
._38{width:47.012880px;}
._2a{width:53.460000px;}
._36{width:63.426480px;}
._37{width:64.706400px;}
._3f{width:92.352000px;}
._25{width:94.181760px;}
._22{width:96.213600px;}
._24{width:109.394400px;}
._23{width:110.957520px;}
._4a{width:117.973440px;}
._4b{width:118.993440px;}
._35{width:123.537600px;}
._34{width:125.282880px;}
._30{width:152.484480px;}
._29{width:157.168800px;}
._1c{width:161.625600px;}
._1d{width:162.666720px;}
._31{width:164.672640px;}
._32{width:166.055520px;}
._15{width:179.673120px;}
._1b{width:181.491120px;}
._41{width:182.563920px;}
._3a{width:186.200640px;}
._3b{width:187.226400px;}
._47{width:188.811840px;}
._16{width:192.785760px;}
._18{width:201.180000px;}
._28{width:206.411040px;}
._46{width:241.577760px;}
._45{width:242.703360px;}
._3c{width:245.419200px;}
._3d{width:247.207680px;}
._27{width:248.234160px;}
._26{width:250.392720px;}
._2b{width:267.996000px;}
._44{width:301.392000px;}
._42{width:309.496320px;}
._40{width:325.306560px;}
._49{width:441.820800px;}
._48{width:442.879680px;}
._3e{width:538.133760px;}
._2c{width:835.026480px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y12{bottom:4.320000px;}
.y3b{bottom:11.700000px;}
.y3a{bottom:34.020000px;}
.y39{bottom:57.600000px;}
.y38{bottom:83.550000px;}
.y8a{bottom:88.920000px;}
.y118{bottom:92.700000px;}
.y169{bottom:94.500000px;}
.y171{bottom:96.660000px;}
.y34{bottom:99.360000px;}
.y17b{bottom:99.540000px;}
.y89{bottom:105.840000px;}
.yf1{bottom:109.620000px;}
.y168{bottom:113.040000px;}
.y170{bottom:115.200000px;}
.y37{bottom:116.310000px;}
.y17a{bottom:118.080000px;}
.y88{bottom:122.580000px;}
.y36{bottom:124.230000px;}
.y87{bottom:126.360000px;}
.y167{bottom:131.580000px;}
.y16f{bottom:133.740000px;}
.y179{bottom:136.656000px;}
.y33{bottom:137.916000px;}
.y86{bottom:139.536000px;}
.y10b{bottom:143.316000px;}
.y166{bottom:150.150000px;}
.y16e{bottom:152.310000px;}
.y178{bottom:155.190000px;}
.y32{bottom:155.550000px;}
.y85{bottom:156.450000px;}
.y84{bottom:160.230000px;}
.y165{bottom:168.690000px;}
.y16d{bottom:171.030000px;}
.y83{bottom:173.370000px;}
.y177{bottom:173.730000px;}
.y31{bottom:175.890000px;}
.yc0{bottom:177.150000px;}
.y164{bottom:187.230000px;}
.y16c{bottom:189.570000px;}
.y82{bottom:190.110000px;}
.y176{bottom:192.270000px;}
.y10a{bottom:193.890000px;}
.y30{bottom:196.050000px;}
.y163{bottom:205.770000px;}
.y81{bottom:207.030000px;}
.y134{bottom:207.570000px;}
.y16b{bottom:208.110000px;}
.y80{bottom:210.810000px;}
.y175{bottom:210.990000px;}
.y2f{bottom:216.030000px;}
.y7f{bottom:223.950000px;}
.y162{bottom:224.490000px;}
.y16a{bottom:226.650000px;}
.y117{bottom:227.730000px;}
.y174{bottom:229.530000px;}
.y2e{bottom:234.570000px;}
.y7e{bottom:240.870000px;}
.y161{bottom:243.030000px;}
.ybf{bottom:244.650000px;}
.y133{bottom:245.190000px;}
.y173{bottom:248.070000px;}
.y2d{bottom:253.110000px;}
.y7d{bottom:257.610000px;}
.y126{bottom:258.150000px;}
.y7c{bottom:261.390000px;}
.y160{bottom:261.570000px;}
.y132{bottom:263.730000px;}
.y172{bottom:266.610000px;}
.y2c{bottom:271.650000px;}
.y7b{bottom:274.530000px;}
.y109{bottom:278.310000px;}
.y15f{bottom:280.110000px;}
.y131{bottom:282.270000px;}
.y125{bottom:285.150000px;}
.y2b{bottom:290.190000px;}
.y7a{bottom:291.450000px;}
.y79{bottom:295.230000px;}
.y15e{bottom:298.650000px;}
.y130{bottom:300.810000px;}
.y124{bottom:303.690000px;}
.y78{bottom:308.370000px;}
.y2a{bottom:308.730000px;}
.ybe{bottom:312.150000px;}
.y15d{bottom:317.190000px;}
.y12f{bottom:319.530000px;}
.y123{bottom:322.230000px;}
.y77{bottom:325.110000px;}
.y29{bottom:327.270000px;}
.y76{bottom:328.890000px;}
.y15c{bottom:335.730000px;}
.y12e{bottom:338.070000px;}
.y122{bottom:340.770000px;}
.y75{bottom:342.030000px;}
.y108{bottom:345.810000px;}
.y28{bottom:345.990000px;}
.y15b{bottom:354.270000px;}
.y12d{bottom:356.610000px;}
.y74{bottom:358.950000px;}
.y121{bottom:359.490000px;}
.ybd{bottom:362.730000px;}
.y27{bottom:364.530000px;}
.y15a{bottom:372.990000px;}
.y12c{bottom:375.150000px;}
.y73{bottom:375.870000px;}
.ybc{bottom:376.410000px;}
.y120{bottom:378.030000px;}
.y72{bottom:379.650000px;}
.y26{bottom:383.070000px;}
.y159{bottom:391.575000px;}
.y71{bottom:392.655000px;}
.y12b{bottom:393.735000px;}
.y70{bottom:396.435000px;}
.y11f{bottom:396.615000px;}
.y25{bottom:401.655000px;}
.y6f{bottom:409.575000px;}
.y158{bottom:410.115000px;}
.yf0{bottom:412.275000px;}
.y116{bottom:413.355000px;}
.yba{bottom:413.535000px;}
.y11e{bottom:415.155000px;}
.ybb{bottom:417.315000px;}
.y24{bottom:420.195000px;}
.y6e{bottom:426.495000px;}
.y157{bottom:428.655000px;}
.y6d{bottom:430.275000px;}
.yef{bottom:430.815000px;}
.yb9{bottom:432.075000px;}
.y11d{bottom:433.695000px;}
.y23{bottom:438.735000px;}
.y107{bottom:443.415000px;}
.y6c{bottom:443.955000px;}
.y156{bottom:447.195000px;}
.yee{bottom:449.355000px;}
.yb8{bottom:450.975000px;}
.y11c{bottom:452.235000px;}
.y22{bottom:457.275000px;}
.y106{bottom:460.155000px;}
.y115{bottom:463.935000px;}
.y155{bottom:465.735000px;}
.y6b{bottom:466.275000px;}
.yed{bottom:468.075000px;}
.yb7{bottom:470.775000px;}
.y21{bottom:475.815000px;}
.y105{bottom:477.075000px;}
.y104{bottom:480.855000px;}
.y154{bottom:484.275000px;}
.y6a{bottom:484.815000px;}
.yec{bottom:486.615000px;}
.yb6{bottom:489.315000px;}
.y103{bottom:493.995000px;}
.y20{bottom:494.535000px;}
.y153{bottom:502.815000px;}
.y68{bottom:503.355000px;}
.yea{bottom:505.155000px;}
.y69{bottom:507.135000px;}
.yb5{bottom:508.035000px;}
.yeb{bottom:508.935000px;}
.y102{bottom:510.915000px;}
.y1f{bottom:513.075000px;}
.y152{bottom:521.535000px;}
.y67{bottom:522.075000px;}
.ye9{bottom:523.695000px;}
.y114{bottom:525.855000px;}
.yb4{bottom:526.575000px;}
.y101{bottom:527.655000px;}
.y100{bottom:531.435000px;}
.y1e{bottom:531.615000px;}
.y151{bottom:540.075000px;}
.y65{bottom:540.615000px;}
.ye8{bottom:542.235000px;}
.y66{bottom:544.395000px;}
.yff{bottom:544.575000px;}
.yb3{bottom:545.115000px;}
.y11b{bottom:548.895000px;}
.y1d{bottom:550.155000px;}
.y150{bottom:558.615000px;}
.y64{bottom:559.155000px;}
.ye7{bottom:560.775000px;}
.yfe{bottom:561.495000px;}
.yb2{bottom:563.655000px;}
.y1c{bottom:568.695000px;}
.y14f{bottom:577.155000px;}
.y63{bottom:577.695000px;}
.yfd{bottom:578.415000px;}
.ye6{bottom:579.315000px;}
.yb1{bottom:582.195000px;}
.y12a{bottom:583.095000px;}
.y1b{bottom:587.235000px;}
.yfc{bottom:595.695000px;}
.y14e{bottom:596.055000px;}
.y61{bottom:596.235000px;}
.ye5{bottom:597.855000px;}
.y62{bottom:600.015000px;}
.yaf{bottom:600.735000px;}
.yb0{bottom:604.515000px;}
.y1a{bottom:605.775000px;}
.y60{bottom:614.775000px;}
.y14d{bottom:616.215000px;}
.ye4{bottom:616.575000px;}
.yfa{bottom:617.655000px;}
.yae{bottom:619.275000px;}
.y129{bottom:620.355000px;}
.yfb{bottom:621.435000px;}
.y19{bottom:624.315000px;}
.y5e{bottom:633.315000px;}
.ye3{bottom:635.115000px;}
.yf8{bottom:636.195000px;}
.y5f{bottom:637.095000px;}
.yad{bottom:637.815000px;}
.yf9{bottom:640.005000px;}
.y18{bottom:643.065000px;}
.y5d{bottom:651.885000px;}
.ye2{bottom:653.685000px;}
.yf6{bottom:654.765000px;}
.yac{bottom:656.565000px;}
.yf7{bottom:658.545000px;}
.y11a{bottom:660.345000px;}
.y17{bottom:661.605000px;}
.y5b{bottom:670.605000px;}
.ye1{bottom:672.225000px;}
.yf4{bottom:673.305000px;}
.y5c{bottom:674.385000px;}
.yab{bottom:675.105000px;}
.yf5{bottom:677.085000px;}
.y16{bottom:680.145000px;}
.y5a{bottom:689.145000px;}
.ye0{bottom:690.765000px;}
.y14c{bottom:691.845000px;}
.yf3{bottom:692.205000px;}
.y113{bottom:692.925000px;}
.yaa{bottom:693.645000px;}
.y15{bottom:698.685000px;}
.y59{bottom:707.685000px;}
.yde{bottom:709.305000px;}
.y14b{bottom:710.565000px;}
.y112{bottom:711.465000px;}
.ya9{bottom:712.185000px;}
.ydf{bottom:713.085000px;}
.y14{bottom:717.225000px;}
.y58{bottom:726.225000px;}
.ydd{bottom:727.845000px;}
.y14a{bottom:729.105000px;}
.ya8{bottom:730.725000px;}
.yf2{bottom:734.505000px;}
.y13{bottom:735.765000px;}
.y57{bottom:744.765000px;}
.ydc{bottom:746.385000px;}
.y149{bottom:747.645000px;}
.ya7{bottom:749.265000px;}
.y11{bottom:749.985000px;}
.y56{bottom:763.305000px;}
.yda{bottom:765.105000px;}
.y148{bottom:766.185000px;}
.ya6{bottom:767.805000px;}
.ydb{bottom:768.885000px;}
.y10{bottom:772.845000px;}
.y54{bottom:781.845000px;}
.yd9{bottom:783.645000px;}
.y147{bottom:784.725000px;}
.y55{bottom:785.625000px;}
.ya5{bottom:786.345000px;}
.y128{bottom:787.425000px;}
.yf{bottom:791.565000px;}
.y53{bottom:800.385000px;}
.yd7{bottom:802.185000px;}
.y146{bottom:803.265000px;}
.ya4{bottom:805.065000px;}
.yd8{bottom:805.965000px;}
.ye{bottom:810.105000px;}
.y52{bottom:819.105000px;}
.yd6{bottom:820.725000px;}
.y145{bottom:821.805000px;}
.ya3{bottom:823.605000px;}
.y127{bottom:824.505000px;}
.y119{bottom:827.385000px;}
.yd{bottom:828.645000px;}
.y51{bottom:837.645000px;}
.yd4{bottom:839.265000px;}
.y144{bottom:840.345000px;}
.ya1{bottom:842.145000px;}
.yd5{bottom:843.045000px;}
.ya2{bottom:845.925000px;}
.yc{bottom:847.185000px;}
.y50{bottom:856.185000px;}
.yd3{bottom:857.805000px;}
.y143{bottom:859.065000px;}
.ya0{bottom:860.685000px;}
.yb{bottom:865.725000px;}
.y4f{bottom:874.725000px;}
.yd2{bottom:876.345000px;}
.y142{bottom:877.605000px;}
.y111{bottom:878.505000px;}
.y9f{bottom:879.225000px;}
.ya{bottom:884.265000px;}
.y4d{bottom:893.310000px;}
.yd1{bottom:894.930000px;}
.y141{bottom:896.190000px;}
.y4e{bottom:897.090000px;}
.y9e{bottom:897.810000px;}
.y9{bottom:906.630000px;}
.y4c{bottom:911.850000px;}
.ycf{bottom:913.650000px;}
.y140{bottom:914.730000px;}
.y9c{bottom:916.350000px;}
.yd0{bottom:917.430000px;}
.y9d{bottom:920.130000px;}
.y8{bottom:925.170000px;}
.y4b{bottom:930.390000px;}
.yce{bottom:932.190000px;}
.y13f{bottom:933.270000px;}
.y9a{bottom:934.890000px;}
.y9b{bottom:938.670000px;}
.y7{bottom:940.110000px;}
.y4a{bottom:948.930000px;}
.ycc{bottom:950.730000px;}
.y13e{bottom:951.810000px;}
.y99{bottom:953.610000px;}
.ycd{bottom:954.510000px;}
.y6{bottom:958.650000px;}
.y49{bottom:967.650000px;}
.ycb{bottom:969.270000px;}
.y13d{bottom:970.350000px;}
.y110{bottom:971.430000px;}
.y98{bottom:972.150000px;}
.y5{bottom:977.190000px;}
.y47{bottom:986.190000px;}
.yca{bottom:987.810000px;}
.y13c{bottom:988.890000px;}
.y48{bottom:989.970000px;}
.y97{bottom:990.690000px;}
.y4{bottom:996.630000px;}
.y46{bottom:1004.730000px;}
.yc9{bottom:1006.350000px;}
.y13b{bottom:1007.610000px;}
.y96{bottom:1009.230000px;}
.y3{bottom:1018.590000px;}
.y45{bottom:1023.270000px;}
.yc8{bottom:1024.890000px;}
.y13a{bottom:1026.150000px;}
.y95{bottom:1027.770000px;}
.y2{bottom:1040.550000px;}
.y43{bottom:1041.810000px;}
.yc7{bottom:1043.430000px;}
.y139{bottom:1044.690000px;}
.y44{bottom:1045.590000px;}
.y94{bottom:1046.310000px;}
.y42{bottom:1060.350000px;}
.y17c{bottom:1060.710000px;}
.yc6{bottom:1062.150000px;}
.y1{bottom:1062.330000px;}
.y138{bottom:1063.230000px;}
.y10f{bottom:1064.130000px;}
.y92{bottom:1064.850000px;}
.y93{bottom:1068.630000px;}
.y41{bottom:1078.890000px;}
.y35{bottom:1079.070000px;}
.y10e{bottom:1079.250000px;}
.yc4{bottom:1080.690000px;}
.y137{bottom:1081.770000px;}
.y91{bottom:1083.390000px;}
.yc5{bottom:1084.470000px;}
.y40{bottom:1097.430000px;}
.yc3{bottom:1099.230000px;}
.y136{bottom:1100.310000px;}
.y8f{bottom:1102.110000px;}
.y90{bottom:1105.890000px;}
.y3f{bottom:1116.150000px;}
.yc2{bottom:1117.770000px;}
.y135{bottom:1119.210000px;}
.y8e{bottom:1120.650000px;}
.y10d{bottom:1121.550000px;}
.y3e{bottom:1135.050000px;}
.yc1{bottom:1136.310000px;}
.y8d{bottom:1138.830000px;}
.y10c{bottom:1140.090000px;}
.y3d{bottom:1150.560000px;}
.y8c{bottom:1157.040000px;}
.y3c{bottom:1173.060000px;}
.y8b{bottom:1174.320000px;}
.h7{height:18.540000px;}
.h16{height:29.077031px;}
.h12{height:35.386875px;}
.h4{height:38.008125px;}
.h15{height:41.610234px;}
.h3{height:44.860781px;}
.h5{height:45.168750px;}
.h8{height:46.122187px;}
.h9{height:48.761719px;}
.h2{height:52.662656px;}
.ha{height:54.390938px;}
.h13{height:59.439023px;}
.h6{height:60.288750px;}
.h10{height:65.531250px;}
.h11{height:65.884219px;}
.h14{height:68.084282px;}
.hf{height:70.773750px;}
.hc{height:73.142578px;}
.he{height:76.671562px;}
.hd{height:81.432070px;}
.hb{height:139.716000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:166.170000px;}
.w3{width:166.710000px;}
.w6{width:187.770000px;}
.w5{width:194.790000px;}
.w7{width:233.715000px;}
.w8{width:513.435000px;}
.w9{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.056000px;}
.x13{left:8.136000px;}
.x12{left:82.080000px;}
.x10{left:84.959987px;}
.x7{left:86.039987px;}
.xb{left:87.300000px;}
.x29{left:89.495987px;}
.x2{left:90.935987px;}
.x5e{left:93.995987px;}
.x4{left:104.615987px;}
.x28{left:106.235973px;}
.x19{left:110.555987px;}
.x42{left:111.995987px;}
.x36{left:115.235987px;}
.x2a{left:119.735987px;}
.x66{left:127.475987px;}
.x33{left:128.555987px;}
.x7a{left:138.995987px;}
.x20{left:151.409973px;}
.x21{left:156.269987px;}
.x37{left:157.529973px;}
.x1c{left:161.309973px;}
.x1d{left:166.169987px;}
.x8{left:168.149987px;}
.x77{left:170.309973px;}
.x70{left:180.209973px;}
.x57{left:182.369973px;}
.x11{left:184.349987px;}
.x7c{left:185.969987px;}
.x2d{left:190.109973px;}
.x58{left:192.089987px;}
.x45{left:195.149987px;}
.x2e{left:199.829987px;}
.x69{left:202.889973px;}
.x71{left:204.869973px;}
.x78{left:209.729987px;}
.x6a{left:212.609987px;}
.x72{left:214.589987px;}
.x48{left:216.569987px;}
.x64{left:250.049973px;}
.xd{left:256.170000px;}
.x65{left:259.769987px;}
.x6{left:266.969987px;}
.xa{left:270.389987px;}
.x6d{left:273.089973px;}
.x6e{left:282.854987px;}
.x59{left:286.454973px;}
.x26{left:295.634973px;}
.x5f{left:296.894973px;}
.x27{left:300.494987px;}
.x5{left:301.574987px;}
.x60{left:306.614987px;}
.x39{left:311.294987px;}
.x14{left:315.795000px;}
.x3{left:318.854987px;}
.x4b{left:334.334973px;}
.x40{left:335.774973px;}
.x4c{left:344.054987px;}
.x41{left:345.494987px;}
.x9{left:347.474987px;}
.x4a{left:360.074987px;}
.x34{left:365.654973px;}
.x35{left:375.374987px;}
.x7e{left:404.714987px;}
.x46{left:409.754987px;}
.x1a{left:420.734973px;}
.xe{left:424.515000px;}
.x1b{left:425.594987px;}
.x22{left:429.374987px;}
.x1{left:446.474987px;}
.x4d{left:457.814973px;}
.x4e{left:467.564987px;}
.x53{left:475.664973px;}
.x3e{left:478.004973px;}
.x54{left:485.384987px;}
.x3f{left:487.724987px;}
.x7b{left:492.944987px;}
.x61{left:497.444987px;}
.x67{left:507.344973px;}
.x68{left:517.064987px;}
.x4f{left:529.124973px;}
.x73{left:530.564973px;}
.x50{left:538.844987px;}
.x74{left:540.284987px;}
.x6f{left:548.564987px;}
.x2b{left:555.404973px;}
.x2c{left:565.124987px;}
.x15{left:578.264987px;}
.x1e{left:581.144973px;}
.x1f{left:586.004987px;}
.x62{left:587.984973px;}
.x7d{left:595.724987px;}
.x63{left:597.704987px;}
.x49{left:604.184987px;}
.x5c{left:612.464973px;}
.x47{left:617.864987px;}
.xf{left:620.385000px;}
.x5d{left:622.184987px;}
.x2f{left:623.804973px;}
.x55{left:630.104987px;}
.x30{left:633.524987px;}
.x5a{left:656.069973px;}
.x5b{left:665.789987px;}
.x3c{left:668.309973px;}
.x3d{left:678.029987px;}
.x3a{left:679.109973px;}
.x3b{left:688.829987px;}
.x38{left:691.889973px;}
.x24{left:695.849973px;}
.x25{left:700.709987px;}
.x51{left:705.209973px;}
.x52{left:714.929987px;}
.x31{left:740.489973px;}
.x32{left:750.209987px;}
.x75{left:769.109973px;}
.x79{left:772.889987px;}
.x16{left:777.209987px;}
.x76{left:778.829987px;}
.x43{left:783.329973px;}
.x17{left:791.069987px;}
.x44{left:793.049987px;}
.x6b{left:795.209973px;}
.x56{left:798.269973px;}
.x23{left:803.129973px;}
.x6c{left:804.929987px;}
.x18{left:807.989987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.592000pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls34{letter-spacing:-0.554667pt;}
.ls33{letter-spacing:-0.244267pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls2a{letter-spacing:-0.225067pt;}
.lsf{letter-spacing:-0.214933pt;}
.ls1d{letter-spacing:-0.211200pt;}
.ls1b{letter-spacing:-0.208533pt;}
.ls37{letter-spacing:-0.181867pt;}
.ls1c{letter-spacing:-0.150933pt;}
.ls1a{letter-spacing:-0.129067pt;}
.ls16{letter-spacing:-0.113067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.051200pt;}
.ls28{letter-spacing:-0.043520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.025694pt;}
.ls3a{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.081067pt;}
.lsb{letter-spacing:0.086933pt;}
.ls36{letter-spacing:0.111467pt;}
.ls38{letter-spacing:0.130560pt;}
.lse{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.173440pt;}
.ls2d{letter-spacing:0.181867pt;}
.ls13{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.241067pt;}
.ls2{letter-spacing:0.242560pt;}
.ls19{letter-spacing:0.248960pt;}
.ls15{letter-spacing:0.249067pt;}
.ls2e{letter-spacing:0.268800pt;}
.ls39{letter-spacing:0.276267pt;}
.ls18{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.406933pt;}
.ls25{letter-spacing:0.526720pt;}
.ls23{letter-spacing:0.526933pt;}
.lsa{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.847231pt;}
.ls14{letter-spacing:0.890667pt;}
.ls26{letter-spacing:0.994631pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls27{letter-spacing:5.852112pt;}
.ls2f{letter-spacing:9.120000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls30{letter-spacing:11.040000pt;}
.ls32{letter-spacing:18.831360pt;}
.ls20{letter-spacing:36.751360pt;}
.ls22{letter-spacing:37.391360pt;}
.ls21{letter-spacing:42.511360pt;}
.ls1f{letter-spacing:43.151360pt;}
.ls2b{letter-spacing:47.631360pt;}
.ls17{letter-spacing:54.560000pt;}
.ws4{word-spacing:-18.801067pt;}
.ws3{word-spacing:-18.160000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.126933pt;}
.ws1b{word-spacing:-14.996267pt;}
.ws17{word-spacing:-14.988800pt;}
.wsb{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.901867pt;}
.ws9{word-spacing:-14.806933pt;}
.ws10{word-spacing:-14.771200pt;}
.ws1{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.676480pt;}
.ws14{word-spacing:-14.668800pt;}
.ws2{word-spacing:-14.625067pt;}
.ws1a{word-spacing:-14.538133pt;}
.ws15{word-spacing:-14.494933pt;}
.ws8{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.170667pt;}
.ws19{word-spacing:-14.165333pt;}
.ws1c{word-spacing:-14.133333pt;}
.wsa{word-spacing:-14.037333pt;}
.wsd{word-spacing:-13.529067pt;}
.wse{word-spacing:-13.326720pt;}
.wsf{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.129067pt;}
.ws12{word-spacing:-13.068800pt;}
.ws18{word-spacing:-13.035733pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._2f{margin-left:-11.608636pt;}
._2e{margin-left:-10.561545pt;}
._c{margin-left:-4.243627pt;}
._5{margin-left:-3.152213pt;}
._6{margin-left:-2.081280pt;}
._1{margin-left:-1.000960pt;}
._0{width:1.244160pt;}
._19{width:2.168747pt;}
._7{width:3.061760pt;}
._3{width:4.180480pt;}
._2{width:5.122560pt;}
._4{width:6.153813pt;}
._a{width:7.457280pt;}
._b{width:8.650240pt;}
._9{width:9.630720pt;}
._8{width:10.892800pt;}
._10{width:12.011520pt;}
._11{width:13.012480pt;}
._14{width:14.880000pt;}
._d{width:16.179627pt;}
._1a{width:17.373653pt;}
._43{width:18.637013pt;}
._e{width:19.607040pt;}
._f{width:20.874667pt;}
._17{width:27.790933pt;}
._21{width:28.683947pt;}
._12{width:30.012800pt;}
._13{width:30.968960pt;}
._33{width:34.091520pt;}
._20{width:35.909120pt;}
._1e{width:37.130880pt;}
._1f{width:38.335787pt;}
._2d{width:39.493333pt;}
._39{width:40.776107pt;}
._38{width:41.789227pt;}
._2a{width:47.520000pt;}
._36{width:56.379093pt;}
._37{width:57.516800pt;}
._3f{width:82.090667pt;}
._25{width:83.717120pt;}
._22{width:85.523200pt;}
._24{width:97.239467pt;}
._23{width:98.628907pt;}
._4a{width:104.865280pt;}
._4b{width:105.771947pt;}
._35{width:109.811200pt;}
._34{width:111.362560pt;}
._30{width:135.541760pt;}
._29{width:139.705600pt;}
._1c{width:143.667200pt;}
._1d{width:144.592640pt;}
._31{width:146.375680pt;}
._32{width:147.604907pt;}
._15{width:159.709440pt;}
._1b{width:161.325440pt;}
._41{width:162.279040pt;}
._3a{width:165.511680pt;}
._3b{width:166.423467pt;}
._47{width:167.832747pt;}
._16{width:171.365120pt;}
._18{width:178.826667pt;}
._28{width:183.476480pt;}
._46{width:214.735787pt;}
._45{width:215.736320pt;}
._3c{width:218.150400pt;}
._3d{width:219.740160pt;}
._27{width:220.652587pt;}
._26{width:222.571307pt;}
._2b{width:238.218667pt;}
._44{width:267.904000pt;}
._42{width:275.107840pt;}
._40{width:289.161387pt;}
._49{width:392.729600pt;}
._48{width:393.670827pt;}
._3e{width:478.341120pt;}
._2c{width:742.245760pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.840000pt;}
.y3b{bottom:10.400000pt;}
.y3a{bottom:30.240000pt;}
.y39{bottom:51.200000pt;}
.y38{bottom:74.266667pt;}
.y8a{bottom:79.040000pt;}
.y118{bottom:82.400000pt;}
.y169{bottom:84.000000pt;}
.y171{bottom:85.920000pt;}
.y34{bottom:88.320000pt;}
.y17b{bottom:88.480000pt;}
.y89{bottom:94.080000pt;}
.yf1{bottom:97.440000pt;}
.y168{bottom:100.480000pt;}
.y170{bottom:102.400000pt;}
.y37{bottom:103.386667pt;}
.y17a{bottom:104.960000pt;}
.y88{bottom:108.960000pt;}
.y36{bottom:110.426667pt;}
.y87{bottom:112.320000pt;}
.y167{bottom:116.960000pt;}
.y16f{bottom:118.880000pt;}
.y179{bottom:121.472000pt;}
.y33{bottom:122.592000pt;}
.y86{bottom:124.032000pt;}
.y10b{bottom:127.392000pt;}
.y166{bottom:133.466667pt;}
.y16e{bottom:135.386667pt;}
.y178{bottom:137.946667pt;}
.y32{bottom:138.266667pt;}
.y85{bottom:139.066667pt;}
.y84{bottom:142.426667pt;}
.y165{bottom:149.946667pt;}
.y16d{bottom:152.026667pt;}
.y83{bottom:154.106667pt;}
.y177{bottom:154.426667pt;}
.y31{bottom:156.346667pt;}
.yc0{bottom:157.466667pt;}
.y164{bottom:166.426667pt;}
.y16c{bottom:168.506667pt;}
.y82{bottom:168.986667pt;}
.y176{bottom:170.906667pt;}
.y10a{bottom:172.346667pt;}
.y30{bottom:174.266667pt;}
.y163{bottom:182.906667pt;}
.y81{bottom:184.026667pt;}
.y134{bottom:184.506667pt;}
.y16b{bottom:184.986667pt;}
.y80{bottom:187.386667pt;}
.y175{bottom:187.546667pt;}
.y2f{bottom:192.026667pt;}
.y7f{bottom:199.066667pt;}
.y162{bottom:199.546667pt;}
.y16a{bottom:201.466667pt;}
.y117{bottom:202.426667pt;}
.y174{bottom:204.026667pt;}
.y2e{bottom:208.506667pt;}
.y7e{bottom:214.106667pt;}
.y161{bottom:216.026667pt;}
.ybf{bottom:217.466667pt;}
.y133{bottom:217.946667pt;}
.y173{bottom:220.506667pt;}
.y2d{bottom:224.986667pt;}
.y7d{bottom:228.986667pt;}
.y126{bottom:229.466667pt;}
.y7c{bottom:232.346667pt;}
.y160{bottom:232.506667pt;}
.y132{bottom:234.426667pt;}
.y172{bottom:236.986667pt;}
.y2c{bottom:241.466667pt;}
.y7b{bottom:244.026667pt;}
.y109{bottom:247.386667pt;}
.y15f{bottom:248.986667pt;}
.y131{bottom:250.906667pt;}
.y125{bottom:253.466667pt;}
.y2b{bottom:257.946667pt;}
.y7a{bottom:259.066667pt;}
.y79{bottom:262.426667pt;}
.y15e{bottom:265.466667pt;}
.y130{bottom:267.386667pt;}
.y124{bottom:269.946667pt;}
.y78{bottom:274.106667pt;}
.y2a{bottom:274.426667pt;}
.ybe{bottom:277.466667pt;}
.y15d{bottom:281.946667pt;}
.y12f{bottom:284.026667pt;}
.y123{bottom:286.426667pt;}
.y77{bottom:288.986667pt;}
.y29{bottom:290.906667pt;}
.y76{bottom:292.346667pt;}
.y15c{bottom:298.426667pt;}
.y12e{bottom:300.506667pt;}
.y122{bottom:302.906667pt;}
.y75{bottom:304.026667pt;}
.y108{bottom:307.386667pt;}
.y28{bottom:307.546667pt;}
.y15b{bottom:314.906667pt;}
.y12d{bottom:316.986667pt;}
.y74{bottom:319.066667pt;}
.y121{bottom:319.546667pt;}
.ybd{bottom:322.426667pt;}
.y27{bottom:324.026667pt;}
.y15a{bottom:331.546667pt;}
.y12c{bottom:333.466667pt;}
.y73{bottom:334.106667pt;}
.ybc{bottom:334.586667pt;}
.y120{bottom:336.026667pt;}
.y72{bottom:337.466667pt;}
.y26{bottom:340.506667pt;}
.y159{bottom:348.066667pt;}
.y71{bottom:349.026667pt;}
.y12b{bottom:349.986667pt;}
.y70{bottom:352.386667pt;}
.y11f{bottom:352.546667pt;}
.y25{bottom:357.026667pt;}
.y6f{bottom:364.066667pt;}
.y158{bottom:364.546667pt;}
.yf0{bottom:366.466667pt;}
.y116{bottom:367.426667pt;}
.yba{bottom:367.586667pt;}
.y11e{bottom:369.026667pt;}
.ybb{bottom:370.946667pt;}
.y24{bottom:373.506667pt;}
.y6e{bottom:379.106667pt;}
.y157{bottom:381.026667pt;}
.y6d{bottom:382.466667pt;}
.yef{bottom:382.946667pt;}
.yb9{bottom:384.066667pt;}
.y11d{bottom:385.506667pt;}
.y23{bottom:389.986667pt;}
.y107{bottom:394.146667pt;}
.y6c{bottom:394.626667pt;}
.y156{bottom:397.506667pt;}
.yee{bottom:399.426667pt;}
.yb8{bottom:400.866667pt;}
.y11c{bottom:401.986667pt;}
.y22{bottom:406.466667pt;}
.y106{bottom:409.026667pt;}
.y115{bottom:412.386667pt;}
.y155{bottom:413.986667pt;}
.y6b{bottom:414.466667pt;}
.yed{bottom:416.066667pt;}
.yb7{bottom:418.466667pt;}
.y21{bottom:422.946667pt;}
.y105{bottom:424.066667pt;}
.y104{bottom:427.426667pt;}
.y154{bottom:430.466667pt;}
.y6a{bottom:430.946667pt;}
.yec{bottom:432.546667pt;}
.yb6{bottom:434.946667pt;}
.y103{bottom:439.106667pt;}
.y20{bottom:439.586667pt;}
.y153{bottom:446.946667pt;}
.y68{bottom:447.426667pt;}
.yea{bottom:449.026667pt;}
.y69{bottom:450.786667pt;}
.yb5{bottom:451.586667pt;}
.yeb{bottom:452.386667pt;}
.y102{bottom:454.146667pt;}
.y1f{bottom:456.066667pt;}
.y152{bottom:463.586667pt;}
.y67{bottom:464.066667pt;}
.ye9{bottom:465.506667pt;}
.y114{bottom:467.426667pt;}
.yb4{bottom:468.066667pt;}
.y101{bottom:469.026667pt;}
.y100{bottom:472.386667pt;}
.y1e{bottom:472.546667pt;}
.y151{bottom:480.066667pt;}
.y65{bottom:480.546667pt;}
.ye8{bottom:481.986667pt;}
.y66{bottom:483.906667pt;}
.yff{bottom:484.066667pt;}
.yb3{bottom:484.546667pt;}
.y11b{bottom:487.906667pt;}
.y1d{bottom:489.026667pt;}
.y150{bottom:496.546667pt;}
.y64{bottom:497.026667pt;}
.ye7{bottom:498.466667pt;}
.yfe{bottom:499.106667pt;}
.yb2{bottom:501.026667pt;}
.y1c{bottom:505.506667pt;}
.y14f{bottom:513.026667pt;}
.y63{bottom:513.506667pt;}
.yfd{bottom:514.146667pt;}
.ye6{bottom:514.946667pt;}
.yb1{bottom:517.506667pt;}
.y12a{bottom:518.306667pt;}
.y1b{bottom:521.986667pt;}
.yfc{bottom:529.506667pt;}
.y14e{bottom:529.826667pt;}
.y61{bottom:529.986667pt;}
.ye5{bottom:531.426667pt;}
.y62{bottom:533.346667pt;}
.yaf{bottom:533.986667pt;}
.yb0{bottom:537.346667pt;}
.y1a{bottom:538.466667pt;}
.y60{bottom:546.466667pt;}
.y14d{bottom:547.746667pt;}
.ye4{bottom:548.066667pt;}
.yfa{bottom:549.026667pt;}
.yae{bottom:550.466667pt;}
.y129{bottom:551.426667pt;}
.yfb{bottom:552.386667pt;}
.y19{bottom:554.946667pt;}
.y5e{bottom:562.946667pt;}
.ye3{bottom:564.546667pt;}
.yf8{bottom:565.506667pt;}
.y5f{bottom:566.306667pt;}
.yad{bottom:566.946667pt;}
.yf9{bottom:568.893333pt;}
.y18{bottom:571.613333pt;}
.y5d{bottom:579.453333pt;}
.ye2{bottom:581.053333pt;}
.yf6{bottom:582.013333pt;}
.yac{bottom:583.613333pt;}
.yf7{bottom:585.373333pt;}
.y11a{bottom:586.973333pt;}
.y17{bottom:588.093333pt;}
.y5b{bottom:596.093333pt;}
.ye1{bottom:597.533333pt;}
.yf4{bottom:598.493333pt;}
.y5c{bottom:599.453333pt;}
.yab{bottom:600.093333pt;}
.yf5{bottom:601.853333pt;}
.y16{bottom:604.573333pt;}
.y5a{bottom:612.573333pt;}
.ye0{bottom:614.013333pt;}
.y14c{bottom:614.973333pt;}
.yf3{bottom:615.293333pt;}
.y113{bottom:615.933333pt;}
.yaa{bottom:616.573333pt;}
.y15{bottom:621.053333pt;}
.y59{bottom:629.053333pt;}
.yde{bottom:630.493333pt;}
.y14b{bottom:631.613333pt;}
.y112{bottom:632.413333pt;}
.ya9{bottom:633.053333pt;}
.ydf{bottom:633.853333pt;}
.y14{bottom:637.533333pt;}
.y58{bottom:645.533333pt;}
.ydd{bottom:646.973333pt;}
.y14a{bottom:648.093333pt;}
.ya8{bottom:649.533333pt;}
.yf2{bottom:652.893333pt;}
.y13{bottom:654.013333pt;}
.y57{bottom:662.013333pt;}
.ydc{bottom:663.453333pt;}
.y149{bottom:664.573333pt;}
.ya7{bottom:666.013333pt;}
.y11{bottom:666.653333pt;}
.y56{bottom:678.493333pt;}
.yda{bottom:680.093333pt;}
.y148{bottom:681.053333pt;}
.ya6{bottom:682.493333pt;}
.ydb{bottom:683.453333pt;}
.y10{bottom:686.973333pt;}
.y54{bottom:694.973333pt;}
.yd9{bottom:696.573333pt;}
.y147{bottom:697.533333pt;}
.y55{bottom:698.333333pt;}
.ya5{bottom:698.973333pt;}
.y128{bottom:699.933333pt;}
.yf{bottom:703.613333pt;}
.y53{bottom:711.453333pt;}
.yd7{bottom:713.053333pt;}
.y146{bottom:714.013333pt;}
.ya4{bottom:715.613333pt;}
.yd8{bottom:716.413333pt;}
.ye{bottom:720.093333pt;}
.y52{bottom:728.093333pt;}
.yd6{bottom:729.533333pt;}
.y145{bottom:730.493333pt;}
.ya3{bottom:732.093333pt;}
.y127{bottom:732.893333pt;}
.y119{bottom:735.453333pt;}
.yd{bottom:736.573333pt;}
.y51{bottom:744.573333pt;}
.yd4{bottom:746.013333pt;}
.y144{bottom:746.973333pt;}
.ya1{bottom:748.573333pt;}
.yd5{bottom:749.373333pt;}
.ya2{bottom:751.933333pt;}
.yc{bottom:753.053333pt;}
.y50{bottom:761.053333pt;}
.yd3{bottom:762.493333pt;}
.y143{bottom:763.613333pt;}
.ya0{bottom:765.053333pt;}
.yb{bottom:769.533333pt;}
.y4f{bottom:777.533333pt;}
.yd2{bottom:778.973333pt;}
.y142{bottom:780.093333pt;}
.y111{bottom:780.893333pt;}
.y9f{bottom:781.533333pt;}
.ya{bottom:786.013333pt;}
.y4d{bottom:794.053333pt;}
.yd1{bottom:795.493333pt;}
.y141{bottom:796.613333pt;}
.y4e{bottom:797.413333pt;}
.y9e{bottom:798.053333pt;}
.y9{bottom:805.893333pt;}
.y4c{bottom:810.533333pt;}
.ycf{bottom:812.133333pt;}
.y140{bottom:813.093333pt;}
.y9c{bottom:814.533333pt;}
.yd0{bottom:815.493333pt;}
.y9d{bottom:817.893333pt;}
.y8{bottom:822.373333pt;}
.y4b{bottom:827.013333pt;}
.yce{bottom:828.613333pt;}
.y13f{bottom:829.573333pt;}
.y9a{bottom:831.013333pt;}
.y9b{bottom:834.373333pt;}
.y7{bottom:835.653333pt;}
.y4a{bottom:843.493333pt;}
.ycc{bottom:845.093333pt;}
.y13e{bottom:846.053333pt;}
.y99{bottom:847.653333pt;}
.ycd{bottom:848.453333pt;}
.y6{bottom:852.133333pt;}
.y49{bottom:860.133333pt;}
.ycb{bottom:861.573333pt;}
.y13d{bottom:862.533333pt;}
.y110{bottom:863.493333pt;}
.y98{bottom:864.133333pt;}
.y5{bottom:868.613333pt;}
.y47{bottom:876.613333pt;}
.yca{bottom:878.053333pt;}
.y13c{bottom:879.013333pt;}
.y48{bottom:879.973333pt;}
.y97{bottom:880.613333pt;}
.y4{bottom:885.893333pt;}
.y46{bottom:893.093333pt;}
.yc9{bottom:894.533333pt;}
.y13b{bottom:895.653333pt;}
.y96{bottom:897.093333pt;}
.y3{bottom:905.413333pt;}
.y45{bottom:909.573333pt;}
.yc8{bottom:911.013333pt;}
.y13a{bottom:912.133333pt;}
.y95{bottom:913.573333pt;}
.y2{bottom:924.933333pt;}
.y43{bottom:926.053333pt;}
.yc7{bottom:927.493333pt;}
.y139{bottom:928.613333pt;}
.y44{bottom:929.413333pt;}
.y94{bottom:930.053333pt;}
.y42{bottom:942.533333pt;}
.y17c{bottom:942.853333pt;}
.yc6{bottom:944.133333pt;}
.y1{bottom:944.293333pt;}
.y138{bottom:945.093333pt;}
.y10f{bottom:945.893333pt;}
.y92{bottom:946.533333pt;}
.y93{bottom:949.893333pt;}
.y41{bottom:959.013333pt;}
.y35{bottom:959.173333pt;}
.y10e{bottom:959.333333pt;}
.yc4{bottom:960.613333pt;}
.y137{bottom:961.573333pt;}
.y91{bottom:963.013333pt;}
.yc5{bottom:963.973333pt;}
.y40{bottom:975.493333pt;}
.yc3{bottom:977.093333pt;}
.y136{bottom:978.053333pt;}
.y8f{bottom:979.653333pt;}
.y90{bottom:983.013333pt;}
.y3f{bottom:992.133333pt;}
.yc2{bottom:993.573333pt;}
.y135{bottom:994.853333pt;}
.y8e{bottom:996.133333pt;}
.y10d{bottom:996.933333pt;}
.y3e{bottom:1008.933333pt;}
.yc1{bottom:1010.053333pt;}
.y8d{bottom:1012.293333pt;}
.y10c{bottom:1013.413333pt;}
.y3d{bottom:1022.720000pt;}
.y8c{bottom:1028.480000pt;}
.y3c{bottom:1042.720000pt;}
.y8b{bottom:1043.840000pt;}
.h7{height:16.480000pt;}
.h16{height:25.846250pt;}
.h12{height:31.455000pt;}
.h4{height:33.785000pt;}
.h15{height:36.986875pt;}
.h3{height:39.876250pt;}
.h5{height:40.150000pt;}
.h8{height:40.997500pt;}
.h9{height:43.343750pt;}
.h2{height:46.811250pt;}
.ha{height:48.347500pt;}
.h13{height:52.834688pt;}
.h6{height:53.590000pt;}
.h10{height:58.250000pt;}
.h11{height:58.563750pt;}
.h14{height:60.519362pt;}
.hf{height:62.910000pt;}
.hc{height:65.015625pt;}
.he{height:68.152500pt;}
.hd{height:72.384062pt;}
.hb{height:124.192000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:147.706667pt;}
.w3{width:148.186667pt;}
.w6{width:166.906667pt;}
.w5{width:173.146667pt;}
.w7{width:207.746667pt;}
.w8{width:456.386667pt;}
.w9{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.272000pt;}
.x13{left:7.232000pt;}
.x12{left:72.960000pt;}
.x10{left:75.519988pt;}
.x7{left:76.479988pt;}
.xb{left:77.600000pt;}
.x29{left:79.551988pt;}
.x2{left:80.831988pt;}
.x5e{left:83.551988pt;}
.x4{left:92.991988pt;}
.x28{left:94.431976pt;}
.x19{left:98.271988pt;}
.x42{left:99.551988pt;}
.x36{left:102.431988pt;}
.x2a{left:106.431988pt;}
.x66{left:113.311988pt;}
.x33{left:114.271988pt;}
.x7a{left:123.551988pt;}
.x20{left:134.586643pt;}
.x21{left:138.906655pt;}
.x37{left:140.026643pt;}
.x1c{left:143.386643pt;}
.x1d{left:147.706655pt;}
.x8{left:149.466655pt;}
.x77{left:151.386643pt;}
.x70{left:160.186643pt;}
.x57{left:162.106643pt;}
.x11{left:163.866655pt;}
.x7c{left:165.306655pt;}
.x2d{left:168.986643pt;}
.x58{left:170.746655pt;}
.x45{left:173.466655pt;}
.x2e{left:177.626655pt;}
.x69{left:180.346643pt;}
.x71{left:182.106643pt;}
.x78{left:186.426655pt;}
.x6a{left:188.986655pt;}
.x72{left:190.746655pt;}
.x48{left:192.506655pt;}
.x64{left:222.266643pt;}
.xd{left:227.706667pt;}
.x65{left:230.906655pt;}
.x6{left:237.306655pt;}
.xa{left:240.346655pt;}
.x6d{left:242.746643pt;}
.x6e{left:251.426655pt;}
.x59{left:254.626643pt;}
.x26{left:262.786643pt;}
.x5f{left:263.906643pt;}
.x27{left:267.106655pt;}
.x5{left:268.066655pt;}
.x60{left:272.546655pt;}
.x39{left:276.706655pt;}
.x14{left:280.706667pt;}
.x3{left:283.426655pt;}
.x4b{left:297.186643pt;}
.x40{left:298.466643pt;}
.x4c{left:305.826655pt;}
.x41{left:307.106655pt;}
.x9{left:308.866655pt;}
.x4a{left:320.066655pt;}
.x34{left:325.026643pt;}
.x35{left:333.666655pt;}
.x7e{left:359.746655pt;}
.x46{left:364.226655pt;}
.x1a{left:373.986643pt;}
.xe{left:377.346667pt;}
.x1b{left:378.306655pt;}
.x22{left:381.666655pt;}
.x1{left:396.866655pt;}
.x4d{left:406.946643pt;}
.x4e{left:415.613322pt;}
.x53{left:422.813310pt;}
.x3e{left:424.893310pt;}
.x54{left:431.453322pt;}
.x3f{left:433.533322pt;}
.x7b{left:438.173322pt;}
.x61{left:442.173322pt;}
.x67{left:450.973310pt;}
.x68{left:459.613322pt;}
.x4f{left:470.333310pt;}
.x73{left:471.613310pt;}
.x50{left:478.973322pt;}
.x74{left:480.253322pt;}
.x6f{left:487.613322pt;}
.x2b{left:493.693310pt;}
.x2c{left:502.333322pt;}
.x15{left:514.013322pt;}
.x1e{left:516.573310pt;}
.x1f{left:520.893322pt;}
.x62{left:522.653310pt;}
.x7d{left:529.533322pt;}
.x63{left:531.293322pt;}
.x49{left:537.053322pt;}
.x5c{left:544.413310pt;}
.x47{left:549.213322pt;}
.xf{left:551.453333pt;}
.x5d{left:553.053322pt;}
.x2f{left:554.493310pt;}
.x55{left:560.093322pt;}
.x30{left:563.133322pt;}
.x5a{left:583.173310pt;}
.x5b{left:591.813322pt;}
.x3c{left:594.053310pt;}
.x3d{left:602.693322pt;}
.x3a{left:603.653310pt;}
.x3b{left:612.293322pt;}
.x38{left:615.013310pt;}
.x24{left:618.533310pt;}
.x25{left:622.853322pt;}
.x51{left:626.853310pt;}
.x52{left:635.493322pt;}
.x31{left:658.213310pt;}
.x32{left:666.853322pt;}
.x75{left:683.653310pt;}
.x79{left:687.013322pt;}
.x16{left:690.853322pt;}
.x76{left:692.293322pt;}
.x43{left:696.293310pt;}
.x17{left:703.173322pt;}
.x44{left:704.933322pt;}
.x6b{left:706.853310pt;}
.x56{left:709.573310pt;}
.x23{left:713.893310pt;}
.x6c{left:715.493322pt;}
.x18{left:718.213322pt;}
}




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