
    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_ed14a9a4aedab8c933021506.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061035;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_14b9c283fe8b2056790faf37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2aedc65081bcd40aaa3715db.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e5d420daf0742fc71e440ecf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d7074176f30a5bba2d354f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e11af3770c780e309176ea4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3003e8b13f89e7df17feaf99.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_022067b1c6665eb6c0165cfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls19{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.566400px;}
.ls9{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.413400px;}
.lsc{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.ls39{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls40{letter-spacing:0.017280px;}
.ls23{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.109440px;}
.ls22{letter-spacing:0.119520px;}
.ls45{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.206400px;}
.ls42{letter-spacing:0.206640px;}
.ls44{letter-spacing:0.226080px;}
.ls3a{letter-spacing:0.235920px;}
.ls10{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.460200px;}
.ls2c{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.532800px;}
.ls3b{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.720000px;}
.ls49{letter-spacing:0.826560px;}
.ls18{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.924000px;}
.ls46{letter-spacing:0.978000px;}
.ls1{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.620000px;}
.ls21{letter-spacing:3.780000px;}
.ls14{letter-spacing:4.500000px;}
.ls2a{letter-spacing:5.220000px;}
.ls33{letter-spacing:5.940000px;}
.ls6{letter-spacing:7.560000px;}
.ls20{letter-spacing:8.100000px;}
.ls48{letter-spacing:8.820000px;}
.ls16{letter-spacing:10.980000px;}
.ls5{letter-spacing:13.140000px;}
.ls32{letter-spacing:15.300000px;}
.ls28{letter-spacing:16.740000px;}
.ls24{letter-spacing:17.460000px;}
.ls30{letter-spacing:18.180000px;}
.ls47{letter-spacing:18.900000px;}
.ls2f{letter-spacing:21.780000px;}
.ls43{letter-spacing:28.260000px;}
.ls29{letter-spacing:29.700000px;}
.ls31{letter-spacing:30.420000px;}
.ls2b{letter-spacing:31.140000px;}
.ls2e{letter-spacing:32.580000px;}
.ls27{letter-spacing:34.020000px;}
.ls3f{letter-spacing:44.100000px;}
.ls41{letter-spacing:49.140000px;}
.ls1f{letter-spacing:75.060000px;}
.ls3d{letter-spacing:98.100000px;}
.ls3e{letter-spacing:114.660000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-16.822200px;}
.wse{word-spacing:-16.669200px;}
.wsf{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.254600px;}
.ws1a{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.768000px;}
.ws21{word-spacing:-15.606000px;}
.ws1b{word-spacing:-15.400200px;}
.ws4{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.120000px;}
.ws1f{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.ws1c{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.526600px;}
.ws14{word-spacing:-14.426400px;}
.ws1{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.147200px;}
.ws1d{word-spacing:-12.420000px;}
.ws1e{word-spacing:-11.836200px;}
.ws2{word-spacing:-9.720000px;}
.ws15{word-spacing:-0.179280px;}
.wsd{word-spacing:-0.166560px;}
.wsc{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-2.021280px;}
._1{margin-left:-1.011120px;}
._0{width:1.000080px;}
._9{width:2.346240px;}
._e{width:3.347040px;}
._d{width:4.422240px;}
._c{width:5.730480px;}
._6{width:6.872400px;}
._10{width:8.306640px;}
._f{width:9.755520px;}
._5{width:10.762080px;}
._4{width:11.946720px;}
._3{width:13.390560px;}
._b{width:14.968080px;}
._a{width:16.188960px;}
._8{width:18.143760px;}
._7{width:19.541520px;}
._12{width:20.824800px;}
._11{width:21.869040px;}
._13{width:23.787840px;}
._22{width:25.398000px;}
._25{width:26.649360px;}
._14{width:27.892080px;}
._15{width:28.917360px;}
._1a{width:30.493440px;}
._19{width:31.963680px;}
._1c{width:33.348960px;}
._30{width:34.431840px;}
._1e{width:36.365760px;}
._1f{width:37.583520px;}
._35{width:38.604960px;}
._27{width:39.800160px;}
._36{width:40.808160px;}
._28{width:42.046560px;}
._18{width:43.923600px;}
._20{width:45.838080px;}
._21{width:46.871280px;}
._34{width:48.117360px;}
._40{width:49.608960px;}
._2e{width:50.613120px;}
._2f{width:51.826320px;}
._23{width:53.074800px;}
._17{width:54.855360px;}
._26{width:56.039760px;}
._16{width:57.787920px;}
._1b{width:59.076000px;}
._49{width:61.449120px;}
._1d{width:62.663040px;}
._3c{width:63.704160px;}
._38{width:65.676240px;}
._32{width:67.248720px;}
._31{width:68.713200px;}
._2d{width:73.336320px;}
._24{width:75.479760px;}
._29{width:76.731840px;}
._2a{width:78.106320px;}
._33{width:93.823200px;}
._3a{width:95.354160px;}
._2b{width:97.155360px;}
._2c{width:98.321040px;}
._48{width:104.682720px;}
._39{width:115.773120px;}
._44{width:121.551840px;}
._37{width:126.093600px;}
._43{width:146.061360px;}
._47{width:161.886240px;}
._3f{width:163.742400px;}
._3e{width:165.504240px;}
._4a{width:168.453360px;}
._41{width:203.073120px;}
._46{width:276.390000px;}
._45{width:277.581600px;}
._3b{width:297.855840px;}
._3d{width:675.168480px;}
._42{width:709.179840px;}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(112,173,71);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(36,32,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y142{bottom:3.060000px;}
.y141{bottom:16.740000px;}
.y140{bottom:30.600000px;}
.y5{bottom:57.060000px;}
.y39{bottom:57.240000px;}
.y38{bottom:74.736000px;}
.y4{bottom:75.636000px;}
.y37{bottom:93.096000px;}
.y3{bottom:93.636000px;}
.y36{bottom:111.276000px;}
.y165{bottom:113.976000px;}
.y120{bottom:126.216000px;}
.y1a8{bottom:129.276000px;}
.y164{bottom:131.256000px;}
.y188{bottom:133.236000px;}
.y8b{bottom:136.656000px;}
.y1dc{bottom:142.056000px;}
.y11f{bottom:143.496000px;}
.y13e{bottom:146.556000px;}
.y163{bottom:148.356000px;}
.y187{bottom:150.510000px;}
.y6e{bottom:151.230000px;}
.y8a{bottom:153.930000px;}
.y35{bottom:158.610000px;}
.y1db{bottom:159.150000px;}
.y11e{bottom:160.770000px;}
.y13d{bottom:163.830000px;}
.y162{bottom:165.630000px;}
.y186{bottom:167.790000px;}
.y6d{bottom:170.130000px;}
.y89{bottom:171.030000px;}
.y1da{bottom:176.430000px;}
.y11d{bottom:178.050000px;}
.ybb{bottom:180.750000px;}
.y1a7{bottom:180.930000px;}
.y13c{bottom:181.110000px;}
.y185{bottom:185.070000px;}
.y88{bottom:188.310000px;}
.y6c{bottom:189.030000px;}
.y1d9{bottom:193.710000px;}
.y34{bottom:195.150000px;}
.yba{bottom:198.030000px;}
.y13b{bottom:198.210000px;}
.y161{bottom:201.810000px;}
.y184{bottom:202.350000px;}
.y87{bottom:205.590000px;}
.yea{bottom:207.930000px;}
.y6b{bottom:208.110000px;}
.y1d8{bottom:210.990000px;}
.y11c{bottom:213.330000px;}
.y13a{bottom:215.490000px;}
.y33{bottom:219.270000px;}
.y183{bottom:219.450000px;}
.y86{bottom:222.870000px;}
.yb9{bottom:224.310000px;}
.ye9{bottom:225.210000px;}
.y6a{bottom:227.010000px;}
.y1d7{bottom:228.270000px;}
.y11b{bottom:230.430000px;}
.y139{bottom:232.770000px;}
.y182{bottom:236.730000px;}
.y85{bottom:240.150000px;}
.yb8{bottom:241.590000px;}
.ye8{bottom:242.490000px;}
.y160{bottom:243.030000px;}
.y1d6{bottom:245.550000px;}
.y69{bottom:245.910000px;}
.y11a{bottom:247.710000px;}
.y138{bottom:250.050000px;}
.y181{bottom:254.010000px;}
.y84{bottom:257.430000px;}
.ye7{bottom:259.770000px;}
.y15f{bottom:260.310000px;}
.y32{bottom:260.490000px;}
.y1d5{bottom:262.650000px;}
.y68{bottom:264.990000px;}
.y137{bottom:267.330000px;}
.yb7{bottom:267.870000px;}
.y180{bottom:271.290000px;}
.y83{bottom:274.530000px;}
.ye6{bottom:277.050000px;}
.y15e{bottom:277.590000px;}
.y1d4{bottom:279.930000px;}
.y119{bottom:282.270000px;}
.y67{bottom:283.890000px;}
.y1a6{bottom:284.430000px;}
.y136{bottom:284.610000px;}
.y31{bottom:286.770000px;}
.y17f{bottom:288.570000px;}
.y82{bottom:291.810000px;}
.yb6{bottom:293.970000px;}
.ye5{bottom:294.150000px;}
.y15d{bottom:294.870000px;}
.y1d3{bottom:297.210000px;}
.y118{bottom:299.550000px;}
.y135{bottom:301.710000px;}
.y30{bottom:303.690000px;}
.y17e{bottom:305.670000px;}
.y81{bottom:309.090000px;}
.ye4{bottom:311.430000px;}
.y15c{bottom:311.970000px;}
.y1d2{bottom:314.490000px;}
.y117{bottom:316.830000px;}
.y134{bottom:318.990000px;}
.y66{bottom:320.790000px;}
.y2f{bottom:321.330000px;}
.y17d{bottom:322.950000px;}
.y80{bottom:326.370000px;}
.ye3{bottom:328.755000px;}
.yb5{bottom:328.935000px;}
.y15b{bottom:329.295000px;}
.y1d1{bottom:331.815000px;}
.y116{bottom:333.975000px;}
.y133{bottom:336.315000px;}
.y2e{bottom:338.655000px;}
.y65{bottom:339.915000px;}
.y17c{bottom:340.275000px;}
.y7f{bottom:343.695000px;}
.yb4{bottom:346.215000px;}
.y15a{bottom:346.575000px;}
.y1d0{bottom:349.095000px;}
.y115{bottom:351.255000px;}
.y132{bottom:353.595000px;}
.y2d{bottom:355.755000px;}
.y17b{bottom:357.555000px;}
.y64{bottom:358.815000px;}
.y7e{bottom:360.975000px;}
.yb3{bottom:363.495000px;}
.y159{bottom:363.855000px;}
.ye2{bottom:364.035000px;}
.y1cf{bottom:366.195000px;}
.y114{bottom:368.535000px;}
.y1a5{bottom:370.875000px;}
.y2c{bottom:373.035000px;}
.y17a{bottom:374.835000px;}
.y63{bottom:377.715000px;}
.y7d{bottom:378.075000px;}
.y158{bottom:381.135000px;}
.ye1{bottom:381.315000px;}
.y1ce{bottom:383.475000px;}
.y113{bottom:385.815000px;}
.y1a4{bottom:387.975000px;}
.y131{bottom:388.875000px;}
.y2b{bottom:390.315000px;}
.y179{bottom:392.115000px;}
.y62{bottom:396.795000px;}
.ye0{bottom:398.415000px;}
.yb2{bottom:399.135000px;}
.y1cd{bottom:400.755000px;}
.y112{bottom:403.095000px;}
.y1a3{bottom:405.255000px;}
.y130{bottom:406.155000px;}
.y2a{bottom:407.595000px;}
.y178{bottom:409.215000px;}
.y7c{bottom:413.355000px;}
.y157{bottom:415.515000px;}
.y61{bottom:415.695000px;}
.yb1{bottom:416.415000px;}
.y1cc{bottom:418.035000px;}
.y111{bottom:420.195000px;}
.y1a2{bottom:422.535000px;}
.y12f{bottom:423.255000px;}
.y29{bottom:424.875000px;}
.y177{bottom:426.495000px;}
.y7b{bottom:430.635000px;}
.y156{bottom:432.795000px;}
.ydf{bottom:432.975000px;}
.yb0{bottom:433.515000px;}
.y60{bottom:434.595000px;}
.y1cb{bottom:435.315000px;}
.y110{bottom:437.475000px;}
.y1a1{bottom:439.815000px;}
.y12e{bottom:440.535000px;}
.y28{bottom:442.155000px;}
.y176{bottom:443.775000px;}
.y7a{bottom:447.915000px;}
.y155{bottom:450.075000px;}
.yde{bottom:450.255000px;}
.yaf{bottom:450.795000px;}
.y1ca{bottom:452.415000px;}
.y5f{bottom:453.675000px;}
.y10f{bottom:454.755000px;}
.y1a0{bottom:457.095000px;}
.y12d{bottom:457.815000px;}
.y27{bottom:459.255000px;}
.y175{bottom:461.055000px;}
.y79{bottom:465.195000px;}
.ydd{bottom:467.535000px;}
.yae{bottom:468.075000px;}
.y1c9{bottom:469.695000px;}
.y10e{bottom:472.035000px;}
.y5e{bottom:472.575000px;}
.y19f{bottom:474.195000px;}
.y12c{bottom:475.095000px;}
.y26{bottom:476.535000px;}
.y154{bottom:477.255000px;}
.y174{bottom:478.335000px;}
.y78{bottom:482.295000px;}
.ydc{bottom:484.815000px;}
.yad{bottom:485.355000px;}
.y1c8{bottom:486.975000px;}
.y10d{bottom:489.315000px;}
.y5d{bottom:491.475000px;}
.y12b{bottom:492.375000px;}
.y25{bottom:493.815000px;}
.y173{bottom:495.615000px;}
.y77{bottom:499.575000px;}
.ydb{bottom:501.915000px;}
.yac{bottom:502.635000px;}
.y1c7{bottom:504.255000px;}
.y10c{bottom:506.595000px;}
.y19e{bottom:508.755000px;}
.y12a{bottom:509.475000px;}
.y5c{bottom:510.555000px;}
.y24{bottom:511.095000px;}
.y172{bottom:512.715000px;}
.y76{bottom:516.855000px;}
.y153{bottom:518.475000px;}
.yda{bottom:519.195000px;}
.yab{bottom:519.915000px;}
.y1c6{bottom:521.535000px;}
.y10b{bottom:523.695000px;}
.y19d{bottom:526.035000px;}
.y129{bottom:526.755000px;}
.y23{bottom:528.375000px;}
.y5b{bottom:529.455000px;}
.y171{bottom:529.995000px;}
.y75{bottom:534.135000px;}
.y152{bottom:535.755000px;}
.yd9{bottom:536.475000px;}
.y1c5{bottom:538.815000px;}
.y10a{bottom:540.975000px;}
.y19c{bottom:543.315000px;}
.y128{bottom:544.035000px;}
.y22{bottom:545.475000px;}
.y170{bottom:547.275000px;}
.y5a{bottom:548.355000px;}
.y74{bottom:551.415000px;}
.y151{bottom:553.035000px;}
.yd8{bottom:553.755000px;}
.yaa{bottom:555.015000px;}
.y1c4{bottom:555.915000px;}
.y109{bottom:558.255000px;}
.y19b{bottom:560.595000px;}
.y127{bottom:561.315000px;}
.y21{bottom:562.755000px;}
.y16f{bottom:565.455000px;}
.y59{bottom:567.255000px;}
.y73{bottom:568.695000px;}
.y150{bottom:570.315000px;}
.yd7{bottom:571.035000px;}
.ya9{bottom:572.295000px;}
.y1c3{bottom:573.195000px;}
.y108{bottom:575.535000px;}
.y19a{bottom:577.695000px;}
.y20{bottom:580.035000px;}
.y72{bottom:585.795000px;}
.y14f{bottom:587.415000px;}
.yd6{bottom:588.315000px;}
.ya8{bottom:589.575000px;}
.y1c2{bottom:590.475000px;}
.y107{bottom:592.815000px;}
.y199{bottom:595.005000px;}
.y126{bottom:596.625000px;}
.y1f{bottom:597.345000px;}
.y71{bottom:603.105000px;}
.y58{bottom:604.005000px;}
.y14e{bottom:604.725000px;}
.yd5{bottom:605.445000px;}
.y16e{bottom:606.705000px;}
.ya7{bottom:606.885000px;}
.y1c1{bottom:607.785000px;}
.y106{bottom:610.125000px;}
.y198{bottom:612.285000px;}
.y125{bottom:613.905000px;}
.y1e{bottom:614.625000px;}
.y70{bottom:620.385000px;}
.y57{bottom:621.285000px;}
.y14d{bottom:622.005000px;}
.yd4{bottom:622.725000px;}
.y16d{bottom:623.985000px;}
.ya6{bottom:624.165000px;}
.y1c0{bottom:625.065000px;}
.y105{bottom:627.225000px;}
.y197{bottom:629.565000px;}
.y124{bottom:631.005000px;}
.y1d{bottom:631.905000px;}
.y56{bottom:638.565000px;}
.y14c{bottom:639.285000px;}
.yd3{bottom:640.005000px;}
.y16c{bottom:641.265000px;}
.ya5{bottom:641.445000px;}
.y1bf{bottom:642.345000px;}
.y104{bottom:644.505000px;}
.y196{bottom:646.845000px;}
.y123{bottom:648.285000px;}
.y55{bottom:655.665000px;}
.y14b{bottom:656.565000px;}
.yd2{bottom:657.285000px;}
.y1c{bottom:657.645000px;}
.y16b{bottom:658.365000px;}
.y1be{bottom:659.445000px;}
.y103{bottom:661.785000px;}
.y195{bottom:664.125000px;}
.y122{bottom:665.565000px;}
.ya4{bottom:668.625000px;}
.y54{bottom:672.945000px;}
.y14a{bottom:673.665000px;}
.yd1{bottom:674.565000px;}
.y16a{bottom:675.645000px;}
.y1bd{bottom:676.725000px;}
.y102{bottom:679.065000px;}
.y194{bottom:681.225000px;}
.y121{bottom:682.845000px;}
.y1b{bottom:684.285000px;}
.y53{bottom:690.225000px;}
.y149{bottom:690.945000px;}
.yd0{bottom:691.665000px;}
.y1bc{bottom:694.005000px;}
.y193{bottom:698.505000px;}
.y13f{bottom:701.745000px;}
.y169{bottom:702.825000px;}
.y6f{bottom:707.325000px;}
.y52{bottom:707.505000px;}
.y148{bottom:708.225000px;}
.ycf{bottom:708.945000px;}
.ya3{bottom:709.665000px;}
.y1a{bottom:710.565000px;}
.y1bb{bottom:711.285000px;}
.y101{bottom:714.345000px;}
.y192{bottom:715.785000px;}
.y51{bottom:724.605000px;}
.yce{bottom:726.225000px;}
.ya2{bottom:726.945000px;}
.y1ba{bottom:728.565000px;}
.y100{bottom:731.625000px;}
.y191{bottom:733.065000px;}
.y19{bottom:736.845000px;}
.y50{bottom:741.885000px;}
.ycd{bottom:743.505000px;}
.y168{bottom:744.045000px;}
.ya1{bottom:744.225000px;}
.y1b9{bottom:745.665000px;}
.yff{bottom:748.725000px;}
.y190{bottom:750.345000px;}
.y18{bottom:754.125000px;}
.y4f{bottom:759.165000px;}
.ycc{bottom:760.785000px;}
.ya0{bottom:761.505000px;}
.y1b8{bottom:762.945000px;}
.yfe{bottom:766.005000px;}
.y18f{bottom:767.625000px;}
.y167{bottom:771.225000px;}
.y17{bottom:771.405000px;}
.y4e{bottom:776.445000px;}
.ycb{bottom:778.065000px;}
.y9f{bottom:778.785000px;}
.y1b7{bottom:780.225000px;}
.yfd{bottom:783.285000px;}
.y18e{bottom:784.725000px;}
.y4d{bottom:793.545000px;}
.yca{bottom:795.165000px;}
.y16{bottom:797.505000px;}
.yfc{bottom:800.565000px;}
.y18d{bottom:802.005000px;}
.yc9{bottom:812.445000px;}
.y9e{bottom:814.065000px;}
.y1b6{bottom:814.785000px;}
.yfb{bottom:817.845000px;}
.y18c{bottom:819.285000px;}
.y4c{bottom:820.905000px;}
.y15{bottom:823.785000px;}
.yc8{bottom:829.725000px;}
.y9d{bottom:831.165000px;}
.y1b5{bottom:832.065000px;}
.yfa{bottom:834.945000px;}
.y18b{bottom:836.565000px;}
.y14{bottom:841.065000px;}
.yc7{bottom:847.005000px;}
.y9c{bottom:848.445000px;}
.y1b4{bottom:849.165000px;}
.yf9{bottom:852.225000px;}
.y18a{bottom:853.845000px;}
.y13{bottom:858.345000px;}
.y4b{bottom:861.990000px;}
.yc6{bottom:864.330000px;}
.y147{bottom:865.050000px;}
.y9b{bottom:865.770000px;}
.y1b3{bottom:866.490000px;}
.yf8{bottom:869.550000px;}
.y189{bottom:870.990000px;}
.yc5{bottom:881.610000px;}
.y146{bottom:882.330000px;}
.y9a{bottom:883.050000px;}
.y1b2{bottom:883.770000px;}
.y12{bottom:884.670000px;}
.yf7{bottom:886.830000px;}
.y4a{bottom:888.270000px;}
.yc4{bottom:898.710000px;}
.y145{bottom:899.610000px;}
.y99{bottom:900.330000px;}
.y1b1{bottom:901.050000px;}
.y11{bottom:901.770000px;}
.yf6{bottom:904.110000px;}
.y49{bottom:905.550000px;}
.y144{bottom:916.710000px;}
.y98{bottom:917.610000px;}
.y1b0{bottom:918.330000px;}
.y10{bottom:919.050000px;}
.yf5{bottom:921.390000px;}
.y48{bottom:922.830000px;}
.yc3{bottom:924.990000px;}
.y166{bottom:933.990000px;}
.y97{bottom:934.710000px;}
.y1af{bottom:935.610000px;}
.yf{bottom:936.330000px;}
.yf4{bottom:938.490000px;}
.y47{bottom:940.110000px;}
.yc2{bottom:942.270000px;}
.y96{bottom:951.990000px;}
.y1ae{bottom:952.710000px;}
.ye{bottom:953.610000px;}
.yf3{bottom:955.770000px;}
.y46{bottom:957.390000px;}
.yc1{bottom:968.550000px;}
.y95{bottom:969.270000px;}
.y1ad{bottom:969.990000px;}
.yd{bottom:970.890000px;}
.yf2{bottom:973.050000px;}
.y45{bottom:974.490000px;}
.y94{bottom:986.550000px;}
.y1ac{bottom:987.270000px;}
.yf1{bottom:990.330000px;}
.y44{bottom:991.770000px;}
.yc0{bottom:994.830000px;}
.yc{bottom:995.010000px;}
.y93{bottom:1003.830000px;}
.y1ab{bottom:1004.550000px;}
.yf0{bottom:1007.610000px;}
.y43{bottom:1009.050000px;}
.ybf{bottom:1012.110000px;}
.yb{bottom:1014.270000px;}
.y92{bottom:1021.110000px;}
.y1aa{bottom:1021.830000px;}
.y42{bottom:1026.330000px;}
.ya{bottom:1031.550000px;}
.y91{bottom:1038.210000px;}
.y1a9{bottom:1039.110000px;}
.yef{bottom:1042.890000px;}
.y41{bottom:1043.610000px;}
.ybe{bottom:1055.490000px;}
.y143{bottom:1056.210000px;}
.y9{bottom:1058.730000px;}
.yee{bottom:1059.990000px;}
.y40{bottom:1060.890000px;}
.ybd{bottom:1072.770000px;}
.y90{bottom:1073.490000px;}
.yed{bottom:1077.270000px;}
.y3f{bottom:1077.990000px;}
.y8{bottom:1083.030000px;}
.y8f{bottom:1090.770000px;}
.yec{bottom:1094.550000px;}
.y3e{bottom:1095.270000px;}
.ybc{bottom:1099.050000px;}
.y8e{bottom:1108.050000px;}
.yeb{bottom:1111.830000px;}
.y3d{bottom:1112.550000px;}
.y7{bottom:1115.070000px;}
.y8d{bottom:1125.330000px;}
.y3c{bottom:1129.860000px;}
.y6{bottom:1141.200000px;}
.y8c{bottom:1142.460000px;}
.y3b{bottom:1147.140000px;}
.y3a{bottom:1164.420000px;}
.y2{bottom:1168.740000px;}
.y1{bottom:1194.660000px;}
.h9{height:38.158594px;}
.h4{height:47.344922px;}
.h5{height:50.364141px;}
.hb{height:50.400000px;}
.hc{height:58.621992px;}
.h3{height:58.651172px;}
.h6{height:60.226875px;}
.ha{height:65.010937px;}
.h8{height:65.518594px;}
.h2{height:70.664062px;}
.h7{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:312.495000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:10.785000px;}
.x2{left:84.960000px;}
.x6{left:89.460000px;}
.x8{left:114.696000px;}
.x9{left:116.856000px;}
.xf{left:127.656000px;}
.x12{left:148.896000px;}
.x18{left:170.130000px;}
.xa{left:174.810000px;}
.x17{left:180.750000px;}
.x4{left:223.410000px;}
.xd{left:320.295000px;}
.xb{left:325.695000px;}
.x7{left:421.995000px;}
.x3{left:443.415000px;}
.x11{left:464.835000px;}
.x10{left:483.765000px;}
.x14{left:494.040000px;}
.x13{left:505.005000px;}
.xe{left:529.305000px;}
.x5{left:532.545000px;}
.x16{left:536.865000px;}
.x1{left:741.750000px;}
.xc{left:754.890000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.503467pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.367467pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls39{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls40{letter-spacing:0.015360pt;}
.ls23{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.097280pt;}
.ls22{letter-spacing:0.106240pt;}
.ls45{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.183467pt;}
.ls42{letter-spacing:0.183680pt;}
.ls44{letter-spacing:0.200960pt;}
.ls3a{letter-spacing:0.209707pt;}
.ls10{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.409067pt;}
.ls2c{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.473600pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls49{letter-spacing:0.734720pt;}
.ls18{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.821333pt;}
.ls46{letter-spacing:0.869333pt;}
.ls1{letter-spacing:0.896000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls21{letter-spacing:3.360000pt;}
.ls14{letter-spacing:4.000000pt;}
.ls2a{letter-spacing:4.640000pt;}
.ls33{letter-spacing:5.280000pt;}
.ls6{letter-spacing:6.720000pt;}
.ls20{letter-spacing:7.200000pt;}
.ls48{letter-spacing:7.840000pt;}
.ls16{letter-spacing:9.760000pt;}
.ls5{letter-spacing:11.680000pt;}
.ls32{letter-spacing:13.600000pt;}
.ls28{letter-spacing:14.880000pt;}
.ls24{letter-spacing:15.520000pt;}
.ls30{letter-spacing:16.160000pt;}
.ls47{letter-spacing:16.800000pt;}
.ls2f{letter-spacing:19.360000pt;}
.ls43{letter-spacing:25.120000pt;}
.ls29{letter-spacing:26.400000pt;}
.ls31{letter-spacing:27.040000pt;}
.ls2b{letter-spacing:27.680000pt;}
.ls2e{letter-spacing:28.960000pt;}
.ls27{letter-spacing:30.240000pt;}
.ls3f{letter-spacing:39.200000pt;}
.ls41{letter-spacing:43.680000pt;}
.ls1f{letter-spacing:66.720000pt;}
.ls3d{letter-spacing:87.200000pt;}
.ls3e{letter-spacing:101.920000pt;}
.ws12{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.817067pt;}
.wsf{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.448533pt;}
.ws1a{word-spacing:-14.101333pt;}
.ws11{word-spacing:-14.080000pt;}
.ws19{word-spacing:-14.016000pt;}
.ws21{word-spacing:-13.872000pt;}
.ws1b{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1c{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.912533pt;}
.ws14{word-spacing:-12.823467pt;}
.ws1{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.686400pt;}
.ws1d{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.521067pt;}
.ws2{word-spacing:-8.640000pt;}
.ws15{word-spacing:-0.159360pt;}
.wsd{word-spacing:-0.148053pt;}
.wsc{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-1.796693pt;}
._1{margin-left:-0.898773pt;}
._0{width:0.888960pt;}
._9{width:2.085547pt;}
._e{width:2.975147pt;}
._d{width:3.930880pt;}
._c{width:5.093760pt;}
._6{width:6.108800pt;}
._10{width:7.383680pt;}
._f{width:8.671573pt;}
._5{width:9.566293pt;}
._4{width:10.619307pt;}
._3{width:11.902720pt;}
._b{width:13.304960pt;}
._a{width:14.390187pt;}
._8{width:16.127787pt;}
._7{width:17.370240pt;}
._12{width:18.510933pt;}
._11{width:19.439147pt;}
._13{width:21.144747pt;}
._22{width:22.576000pt;}
._25{width:23.688320pt;}
._14{width:24.792960pt;}
._15{width:25.704320pt;}
._1a{width:27.105280pt;}
._19{width:28.412160pt;}
._1c{width:29.643520pt;}
._30{width:30.606080pt;}
._1e{width:32.325120pt;}
._1f{width:33.407573pt;}
._35{width:34.315520pt;}
._27{width:35.377920pt;}
._36{width:36.273920pt;}
._28{width:37.374720pt;}
._18{width:39.043200pt;}
._20{width:40.744960pt;}
._21{width:41.663360pt;}
._34{width:42.770987pt;}
._40{width:44.096853pt;}
._2e{width:44.989440pt;}
._2f{width:46.067840pt;}
._23{width:47.177600pt;}
._17{width:48.760320pt;}
._26{width:49.813120pt;}
._16{width:51.367040pt;}
._1b{width:52.512000pt;}
._49{width:54.621440pt;}
._1d{width:55.700480pt;}
._3c{width:56.625920pt;}
._38{width:58.378880pt;}
._32{width:59.776640pt;}
._31{width:61.078400pt;}
._2d{width:65.187840pt;}
._24{width:67.093120pt;}
._29{width:68.206080pt;}
._2a{width:69.427840pt;}
._33{width:83.398400pt;}
._3a{width:84.759253pt;}
._2b{width:86.360320pt;}
._2c{width:87.396480pt;}
._48{width:93.051307pt;}
._39{width:102.909440pt;}
._44{width:108.046080pt;}
._37{width:112.083200pt;}
._43{width:129.832320pt;}
._47{width:143.898880pt;}
._3f{width:145.548800pt;}
._3e{width:147.114880pt;}
._4a{width:149.736320pt;}
._41{width:180.509440pt;}
._46{width:245.680000pt;}
._45{width:246.739200pt;}
._3b{width:264.760747pt;}
._3d{width:600.149760pt;}
._42{width:630.382080pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:2.720000pt;}
.y141{bottom:14.880000pt;}
.y140{bottom:27.200000pt;}
.y5{bottom:50.720000pt;}
.y39{bottom:50.880000pt;}
.y38{bottom:66.432000pt;}
.y4{bottom:67.232000pt;}
.y37{bottom:82.752000pt;}
.y3{bottom:83.232000pt;}
.y36{bottom:98.912000pt;}
.y165{bottom:101.312000pt;}
.y120{bottom:112.192000pt;}
.y1a8{bottom:114.912000pt;}
.y164{bottom:116.672000pt;}
.y188{bottom:118.432000pt;}
.y8b{bottom:121.472000pt;}
.y1dc{bottom:126.272000pt;}
.y11f{bottom:127.552000pt;}
.y13e{bottom:130.272000pt;}
.y163{bottom:131.872000pt;}
.y187{bottom:133.786667pt;}
.y6e{bottom:134.426667pt;}
.y8a{bottom:136.826667pt;}
.y35{bottom:140.986667pt;}
.y1db{bottom:141.466667pt;}
.y11e{bottom:142.906667pt;}
.y13d{bottom:145.626667pt;}
.y162{bottom:147.226667pt;}
.y186{bottom:149.146667pt;}
.y6d{bottom:151.226667pt;}
.y89{bottom:152.026667pt;}
.y1da{bottom:156.826667pt;}
.y11d{bottom:158.266667pt;}
.ybb{bottom:160.666667pt;}
.y1a7{bottom:160.826667pt;}
.y13c{bottom:160.986667pt;}
.y185{bottom:164.506667pt;}
.y88{bottom:167.386667pt;}
.y6c{bottom:168.026667pt;}
.y1d9{bottom:172.186667pt;}
.y34{bottom:173.466667pt;}
.yba{bottom:176.026667pt;}
.y13b{bottom:176.186667pt;}
.y161{bottom:179.386667pt;}
.y184{bottom:179.866667pt;}
.y87{bottom:182.746667pt;}
.yea{bottom:184.826667pt;}
.y6b{bottom:184.986667pt;}
.y1d8{bottom:187.546667pt;}
.y11c{bottom:189.626667pt;}
.y13a{bottom:191.546667pt;}
.y33{bottom:194.906667pt;}
.y183{bottom:195.066667pt;}
.y86{bottom:198.106667pt;}
.yb9{bottom:199.386667pt;}
.ye9{bottom:200.186667pt;}
.y6a{bottom:201.786667pt;}
.y1d7{bottom:202.906667pt;}
.y11b{bottom:204.826667pt;}
.y139{bottom:206.906667pt;}
.y182{bottom:210.426667pt;}
.y85{bottom:213.466667pt;}
.yb8{bottom:214.746667pt;}
.ye8{bottom:215.546667pt;}
.y160{bottom:216.026667pt;}
.y1d6{bottom:218.266667pt;}
.y69{bottom:218.586667pt;}
.y11a{bottom:220.186667pt;}
.y138{bottom:222.266667pt;}
.y181{bottom:225.786667pt;}
.y84{bottom:228.826667pt;}
.ye7{bottom:230.906667pt;}
.y15f{bottom:231.386667pt;}
.y32{bottom:231.546667pt;}
.y1d5{bottom:233.466667pt;}
.y68{bottom:235.546667pt;}
.y137{bottom:237.626667pt;}
.yb7{bottom:238.106667pt;}
.y180{bottom:241.146667pt;}
.y83{bottom:244.026667pt;}
.ye6{bottom:246.266667pt;}
.y15e{bottom:246.746667pt;}
.y1d4{bottom:248.826667pt;}
.y119{bottom:250.906667pt;}
.y67{bottom:252.346667pt;}
.y1a6{bottom:252.826667pt;}
.y136{bottom:252.986667pt;}
.y31{bottom:254.906667pt;}
.y17f{bottom:256.506667pt;}
.y82{bottom:259.386667pt;}
.yb6{bottom:261.306667pt;}
.ye5{bottom:261.466667pt;}
.y15d{bottom:262.106667pt;}
.y1d3{bottom:264.186667pt;}
.y118{bottom:266.266667pt;}
.y135{bottom:268.186667pt;}
.y30{bottom:269.946667pt;}
.y17e{bottom:271.706667pt;}
.y81{bottom:274.746667pt;}
.ye4{bottom:276.826667pt;}
.y15c{bottom:277.306667pt;}
.y1d2{bottom:279.546667pt;}
.y117{bottom:281.626667pt;}
.y134{bottom:283.546667pt;}
.y66{bottom:285.146667pt;}
.y2f{bottom:285.626667pt;}
.y17d{bottom:287.066667pt;}
.y80{bottom:290.106667pt;}
.ye3{bottom:292.226667pt;}
.yb5{bottom:292.386667pt;}
.y15b{bottom:292.706667pt;}
.y1d1{bottom:294.946667pt;}
.y116{bottom:296.866667pt;}
.y133{bottom:298.946667pt;}
.y2e{bottom:301.026667pt;}
.y65{bottom:302.146667pt;}
.y17c{bottom:302.466667pt;}
.y7f{bottom:305.506667pt;}
.yb4{bottom:307.746667pt;}
.y15a{bottom:308.066667pt;}
.y1d0{bottom:310.306667pt;}
.y115{bottom:312.226667pt;}
.y132{bottom:314.306667pt;}
.y2d{bottom:316.226667pt;}
.y17b{bottom:317.826667pt;}
.y64{bottom:318.946667pt;}
.y7e{bottom:320.866667pt;}
.yb3{bottom:323.106667pt;}
.y159{bottom:323.426667pt;}
.ye2{bottom:323.586667pt;}
.y1cf{bottom:325.506667pt;}
.y114{bottom:327.586667pt;}
.y1a5{bottom:329.666667pt;}
.y2c{bottom:331.586667pt;}
.y17a{bottom:333.186667pt;}
.y63{bottom:335.746667pt;}
.y7d{bottom:336.066667pt;}
.y158{bottom:338.786667pt;}
.ye1{bottom:338.946667pt;}
.y1ce{bottom:340.866667pt;}
.y113{bottom:342.946667pt;}
.y1a4{bottom:344.866667pt;}
.y131{bottom:345.666667pt;}
.y2b{bottom:346.946667pt;}
.y179{bottom:348.546667pt;}
.y62{bottom:352.706667pt;}
.ye0{bottom:354.146667pt;}
.yb2{bottom:354.786667pt;}
.y1cd{bottom:356.226667pt;}
.y112{bottom:358.306667pt;}
.y1a3{bottom:360.226667pt;}
.y130{bottom:361.026667pt;}
.y2a{bottom:362.306667pt;}
.y178{bottom:363.746667pt;}
.y7c{bottom:367.426667pt;}
.y157{bottom:369.346667pt;}
.y61{bottom:369.506667pt;}
.yb1{bottom:370.146667pt;}
.y1cc{bottom:371.586667pt;}
.y111{bottom:373.506667pt;}
.y1a2{bottom:375.586667pt;}
.y12f{bottom:376.226667pt;}
.y29{bottom:377.666667pt;}
.y177{bottom:379.106667pt;}
.y7b{bottom:382.786667pt;}
.y156{bottom:384.706667pt;}
.ydf{bottom:384.866667pt;}
.yb0{bottom:385.346667pt;}
.y60{bottom:386.306667pt;}
.y1cb{bottom:386.946667pt;}
.y110{bottom:388.866667pt;}
.y1a1{bottom:390.946667pt;}
.y12e{bottom:391.586667pt;}
.y28{bottom:393.026667pt;}
.y176{bottom:394.466667pt;}
.y7a{bottom:398.146667pt;}
.y155{bottom:400.066667pt;}
.yde{bottom:400.226667pt;}
.yaf{bottom:400.706667pt;}
.y1ca{bottom:402.146667pt;}
.y5f{bottom:403.266667pt;}
.y10f{bottom:404.226667pt;}
.y1a0{bottom:406.306667pt;}
.y12d{bottom:406.946667pt;}
.y27{bottom:408.226667pt;}
.y175{bottom:409.826667pt;}
.y79{bottom:413.506667pt;}
.ydd{bottom:415.586667pt;}
.yae{bottom:416.066667pt;}
.y1c9{bottom:417.506667pt;}
.y10e{bottom:419.586667pt;}
.y5e{bottom:420.066667pt;}
.y19f{bottom:421.506667pt;}
.y12c{bottom:422.306667pt;}
.y26{bottom:423.586667pt;}
.y154{bottom:424.226667pt;}
.y174{bottom:425.186667pt;}
.y78{bottom:428.706667pt;}
.ydc{bottom:430.946667pt;}
.yad{bottom:431.426667pt;}
.y1c8{bottom:432.866667pt;}
.y10d{bottom:434.946667pt;}
.y5d{bottom:436.866667pt;}
.y12b{bottom:437.666667pt;}
.y25{bottom:438.946667pt;}
.y173{bottom:440.546667pt;}
.y77{bottom:444.066667pt;}
.ydb{bottom:446.146667pt;}
.yac{bottom:446.786667pt;}
.y1c7{bottom:448.226667pt;}
.y10c{bottom:450.306667pt;}
.y19e{bottom:452.226667pt;}
.y12a{bottom:452.866667pt;}
.y5c{bottom:453.826667pt;}
.y24{bottom:454.306667pt;}
.y172{bottom:455.746667pt;}
.y76{bottom:459.426667pt;}
.y153{bottom:460.866667pt;}
.yda{bottom:461.506667pt;}
.yab{bottom:462.146667pt;}
.y1c6{bottom:463.586667pt;}
.y10b{bottom:465.506667pt;}
.y19d{bottom:467.586667pt;}
.y129{bottom:468.226667pt;}
.y23{bottom:469.666667pt;}
.y5b{bottom:470.626667pt;}
.y171{bottom:471.106667pt;}
.y75{bottom:474.786667pt;}
.y152{bottom:476.226667pt;}
.yd9{bottom:476.866667pt;}
.y1c5{bottom:478.946667pt;}
.y10a{bottom:480.866667pt;}
.y19c{bottom:482.946667pt;}
.y128{bottom:483.586667pt;}
.y22{bottom:484.866667pt;}
.y170{bottom:486.466667pt;}
.y5a{bottom:487.426667pt;}
.y74{bottom:490.146667pt;}
.y151{bottom:491.586667pt;}
.yd8{bottom:492.226667pt;}
.yaa{bottom:493.346667pt;}
.y1c4{bottom:494.146667pt;}
.y109{bottom:496.226667pt;}
.y19b{bottom:498.306667pt;}
.y127{bottom:498.946667pt;}
.y21{bottom:500.226667pt;}
.y16f{bottom:502.626667pt;}
.y59{bottom:504.226667pt;}
.y73{bottom:505.506667pt;}
.y150{bottom:506.946667pt;}
.yd7{bottom:507.586667pt;}
.ya9{bottom:508.706667pt;}
.y1c3{bottom:509.506667pt;}
.y108{bottom:511.586667pt;}
.y19a{bottom:513.506667pt;}
.y20{bottom:515.586667pt;}
.y72{bottom:520.706667pt;}
.y14f{bottom:522.146667pt;}
.yd6{bottom:522.946667pt;}
.ya8{bottom:524.066667pt;}
.y1c2{bottom:524.866667pt;}
.y107{bottom:526.946667pt;}
.y199{bottom:528.893333pt;}
.y126{bottom:530.333333pt;}
.y1f{bottom:530.973333pt;}
.y71{bottom:536.093333pt;}
.y58{bottom:536.893333pt;}
.y14e{bottom:537.533333pt;}
.yd5{bottom:538.173333pt;}
.y16e{bottom:539.293333pt;}
.ya7{bottom:539.453333pt;}
.y1c1{bottom:540.253333pt;}
.y106{bottom:542.333333pt;}
.y198{bottom:544.253333pt;}
.y125{bottom:545.693333pt;}
.y1e{bottom:546.333333pt;}
.y70{bottom:551.453333pt;}
.y57{bottom:552.253333pt;}
.y14d{bottom:552.893333pt;}
.yd4{bottom:553.533333pt;}
.y16d{bottom:554.653333pt;}
.ya6{bottom:554.813333pt;}
.y1c0{bottom:555.613333pt;}
.y105{bottom:557.533333pt;}
.y197{bottom:559.613333pt;}
.y124{bottom:560.893333pt;}
.y1d{bottom:561.693333pt;}
.y56{bottom:567.613333pt;}
.y14c{bottom:568.253333pt;}
.yd3{bottom:568.893333pt;}
.y16c{bottom:570.013333pt;}
.ya5{bottom:570.173333pt;}
.y1bf{bottom:570.973333pt;}
.y104{bottom:572.893333pt;}
.y196{bottom:574.973333pt;}
.y123{bottom:576.253333pt;}
.y55{bottom:582.813333pt;}
.y14b{bottom:583.613333pt;}
.yd2{bottom:584.253333pt;}
.y1c{bottom:584.573333pt;}
.y16b{bottom:585.213333pt;}
.y1be{bottom:586.173333pt;}
.y103{bottom:588.253333pt;}
.y195{bottom:590.333333pt;}
.y122{bottom:591.613333pt;}
.ya4{bottom:594.333333pt;}
.y54{bottom:598.173333pt;}
.y14a{bottom:598.813333pt;}
.yd1{bottom:599.613333pt;}
.y16a{bottom:600.573333pt;}
.y1bd{bottom:601.533333pt;}
.y102{bottom:603.613333pt;}
.y194{bottom:605.533333pt;}
.y121{bottom:606.973333pt;}
.y1b{bottom:608.253333pt;}
.y53{bottom:613.533333pt;}
.y149{bottom:614.173333pt;}
.yd0{bottom:614.813333pt;}
.y1bc{bottom:616.893333pt;}
.y193{bottom:620.893333pt;}
.y13f{bottom:623.773333pt;}
.y169{bottom:624.733333pt;}
.y6f{bottom:628.733333pt;}
.y52{bottom:628.893333pt;}
.y148{bottom:629.533333pt;}
.ycf{bottom:630.173333pt;}
.ya3{bottom:630.813333pt;}
.y1a{bottom:631.613333pt;}
.y1bb{bottom:632.253333pt;}
.y101{bottom:634.973333pt;}
.y192{bottom:636.253333pt;}
.y51{bottom:644.093333pt;}
.yce{bottom:645.533333pt;}
.ya2{bottom:646.173333pt;}
.y1ba{bottom:647.613333pt;}
.y100{bottom:650.333333pt;}
.y191{bottom:651.613333pt;}
.y19{bottom:654.973333pt;}
.y50{bottom:659.453333pt;}
.ycd{bottom:660.893333pt;}
.y168{bottom:661.373333pt;}
.ya1{bottom:661.533333pt;}
.y1b9{bottom:662.813333pt;}
.yff{bottom:665.533333pt;}
.y190{bottom:666.973333pt;}
.y18{bottom:670.333333pt;}
.y4f{bottom:674.813333pt;}
.ycc{bottom:676.253333pt;}
.ya0{bottom:676.893333pt;}
.y1b8{bottom:678.173333pt;}
.yfe{bottom:680.893333pt;}
.y18f{bottom:682.333333pt;}
.y167{bottom:685.533333pt;}
.y17{bottom:685.693333pt;}
.y4e{bottom:690.173333pt;}
.ycb{bottom:691.613333pt;}
.y9f{bottom:692.253333pt;}
.y1b7{bottom:693.533333pt;}
.yfd{bottom:696.253333pt;}
.y18e{bottom:697.533333pt;}
.y4d{bottom:705.373333pt;}
.yca{bottom:706.813333pt;}
.y16{bottom:708.893333pt;}
.yfc{bottom:711.613333pt;}
.y18d{bottom:712.893333pt;}
.yc9{bottom:722.173333pt;}
.y9e{bottom:723.613333pt;}
.y1b6{bottom:724.253333pt;}
.yfb{bottom:726.973333pt;}
.y18c{bottom:728.253333pt;}
.y4c{bottom:729.693333pt;}
.y15{bottom:732.253333pt;}
.yc8{bottom:737.533333pt;}
.y9d{bottom:738.813333pt;}
.y1b5{bottom:739.613333pt;}
.yfa{bottom:742.173333pt;}
.y18b{bottom:743.613333pt;}
.y14{bottom:747.613333pt;}
.yc7{bottom:752.893333pt;}
.y9c{bottom:754.173333pt;}
.y1b4{bottom:754.813333pt;}
.yf9{bottom:757.533333pt;}
.y18a{bottom:758.973333pt;}
.y13{bottom:762.973333pt;}
.y4b{bottom:766.213333pt;}
.yc6{bottom:768.293333pt;}
.y147{bottom:768.933333pt;}
.y9b{bottom:769.573333pt;}
.y1b3{bottom:770.213333pt;}
.yf8{bottom:772.933333pt;}
.y189{bottom:774.213333pt;}
.yc5{bottom:783.653333pt;}
.y146{bottom:784.293333pt;}
.y9a{bottom:784.933333pt;}
.y1b2{bottom:785.573333pt;}
.y12{bottom:786.373333pt;}
.yf7{bottom:788.293333pt;}
.y4a{bottom:789.573333pt;}
.yc4{bottom:798.853333pt;}
.y145{bottom:799.653333pt;}
.y99{bottom:800.293333pt;}
.y1b1{bottom:800.933333pt;}
.y11{bottom:801.573333pt;}
.yf6{bottom:803.653333pt;}
.y49{bottom:804.933333pt;}
.y144{bottom:814.853333pt;}
.y98{bottom:815.653333pt;}
.y1b0{bottom:816.293333pt;}
.y10{bottom:816.933333pt;}
.yf5{bottom:819.013333pt;}
.y48{bottom:820.293333pt;}
.yc3{bottom:822.213333pt;}
.y166{bottom:830.213333pt;}
.y97{bottom:830.853333pt;}
.y1af{bottom:831.653333pt;}
.yf{bottom:832.293333pt;}
.yf4{bottom:834.213333pt;}
.y47{bottom:835.653333pt;}
.yc2{bottom:837.573333pt;}
.y96{bottom:846.213333pt;}
.y1ae{bottom:846.853333pt;}
.ye{bottom:847.653333pt;}
.yf3{bottom:849.573333pt;}
.y46{bottom:851.013333pt;}
.yc1{bottom:860.933333pt;}
.y95{bottom:861.573333pt;}
.y1ad{bottom:862.213333pt;}
.yd{bottom:863.013333pt;}
.yf2{bottom:864.933333pt;}
.y45{bottom:866.213333pt;}
.y94{bottom:876.933333pt;}
.y1ac{bottom:877.573333pt;}
.yf1{bottom:880.293333pt;}
.y44{bottom:881.573333pt;}
.yc0{bottom:884.293333pt;}
.yc{bottom:884.453333pt;}
.y93{bottom:892.293333pt;}
.y1ab{bottom:892.933333pt;}
.yf0{bottom:895.653333pt;}
.y43{bottom:896.933333pt;}
.ybf{bottom:899.653333pt;}
.yb{bottom:901.573333pt;}
.y92{bottom:907.653333pt;}
.y1aa{bottom:908.293333pt;}
.y42{bottom:912.293333pt;}
.ya{bottom:916.933333pt;}
.y91{bottom:922.853333pt;}
.y1a9{bottom:923.653333pt;}
.yef{bottom:927.013333pt;}
.y41{bottom:927.653333pt;}
.ybe{bottom:938.213333pt;}
.y143{bottom:938.853333pt;}
.y9{bottom:941.093333pt;}
.yee{bottom:942.213333pt;}
.y40{bottom:943.013333pt;}
.ybd{bottom:953.573333pt;}
.y90{bottom:954.213333pt;}
.yed{bottom:957.573333pt;}
.y3f{bottom:958.213333pt;}
.y8{bottom:962.693333pt;}
.y8f{bottom:969.573333pt;}
.yec{bottom:972.933333pt;}
.y3e{bottom:973.573333pt;}
.ybc{bottom:976.933333pt;}
.y8e{bottom:984.933333pt;}
.yeb{bottom:988.293333pt;}
.y3d{bottom:988.933333pt;}
.y7{bottom:991.173333pt;}
.y8d{bottom:1000.293333pt;}
.y3c{bottom:1004.320000pt;}
.y6{bottom:1014.400000pt;}
.y8c{bottom:1015.520000pt;}
.y3b{bottom:1019.680000pt;}
.y3a{bottom:1035.040000pt;}
.y2{bottom:1038.880000pt;}
.y1{bottom:1061.920000pt;}
.h9{height:33.918750pt;}
.h4{height:42.084375pt;}
.h5{height:44.768125pt;}
.hb{height:44.800000pt;}
.hc{height:52.108438pt;}
.h3{height:52.134375pt;}
.h6{height:53.535000pt;}
.ha{height:57.787500pt;}
.h8{height:58.238750pt;}
.h2{height:62.812500pt;}
.h7{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:277.773333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.586667pt;}
.x2{left:75.520000pt;}
.x6{left:79.520000pt;}
.x8{left:101.952000pt;}
.x9{left:103.872000pt;}
.xf{left:113.472000pt;}
.x12{left:132.352000pt;}
.x18{left:151.226667pt;}
.xa{left:155.386667pt;}
.x17{left:160.666667pt;}
.x4{left:198.586667pt;}
.xd{left:284.706667pt;}
.xb{left:289.506667pt;}
.x7{left:375.106667pt;}
.x3{left:394.146667pt;}
.x11{left:413.186667pt;}
.x10{left:430.013333pt;}
.x14{left:439.146667pt;}
.x13{left:448.893333pt;}
.xe{left:470.493333pt;}
.x5{left:473.373333pt;}
.x16{left:477.213333pt;}
.x1{left:659.333333pt;}
.xc{left:671.013333pt;}
}




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