
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5ab41e37fac239c94fa59070.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc6a260cc241207352010c3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_ebbee6a10b33add0c1ae6ea6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0bc13be4e1b2df3ed2b20e05.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e62009fa9ef0da27fdad74dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_802430dec527b0e8d851c6dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ffd991e168ad92a0859aabe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_daa92a4d272103b1647161a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3ef43d00c2d6a9fcc03bf6fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.310800px;}
.ls23{letter-spacing:-0.251400px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.lsb{letter-spacing:-0.135000px;}
.ls21{letter-spacing:-0.125400px;}
.ls14{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.066000px;}
.ls19{letter-spacing:-0.044640px;}
.ls22{letter-spacing:-0.038880px;}
.ls1c{letter-spacing:-0.031680px;}
.ls16{letter-spacing:-0.014760px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.034560px;}
.ls11{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.113400px;}
.ls20{letter-spacing:0.115800px;}
.ls18{letter-spacing:0.116400px;}
.ls9{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.173520px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.lsc{letter-spacing:0.534600px;}
.ls25{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls24{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws15{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.339800px;}
.wse{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.260960px;}
.ws10{word-spacing:-13.246560px;}
.ws5{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.181760px;}
.wsa{word-spacing:-13.160400px;}
.ws11{word-spacing:-13.101000px;}
.ws6{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.975000px;}
.wsf{word-spacing:-12.915600px;}
.ws13{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-3.967439px;}
._6{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.230600px;}
._2{width:3.030612px;}
._3{width:4.453416px;}
._a{width:5.800199px;}
._4{width:7.023000px;}
._7{width:8.333640px;}
._8{width:9.875038px;}
._14{width:10.916776px;}
._c{width:11.927400px;}
._9{width:14.428800px;}
._13{width:15.991920px;}
._12{width:17.487360px;}
._16{width:19.238400px;}
._b{width:20.801400px;}
._11{width:22.632960px;}
._5{width:24.288600px;}
._e{width:25.367519px;}
._4b{width:27.234360px;}
._d{width:28.917600px;}
._48{width:29.999640px;}
._1f{width:31.442760px;}
._26{width:32.765400px;}
._65{width:33.847560px;}
._69{width:34.883280px;}
._27{width:35.951760px;}
._29{width:37.154160px;}
._44{width:38.204640px;}
._28{width:39.378600px;}
._37{width:41.242320px;}
._59{width:42.865560px;}
._f{width:44.443800px;}
._10{width:46.096920px;}
._58{width:47.975760px;}
._1d{width:49.779360px;}
._25{width:51.402600px;}
._20{width:53.987760px;}
._3e{width:57.174120px;}
._31{width:58.316400px;}
._1c{width:60.180120px;}
._2d{width:61.822800px;}
._3c{width:63.126000px;}
._2e{width:64.208160px;}
._41{width:66.132000px;}
._60{width:67.154040px;}
._18{width:68.657040px;}
._4d{width:70.039800px;}
._52{width:72.865440px;}
._2b{width:78.937560px;}
._5e{width:81.342360px;}
._40{width:82.364400px;}
._56{width:84.228120px;}
._6a{width:85.430520px;}
._67{width:86.720880px;}
._3a{width:88.376400px;}
._2a{width:89.518680px;}
._50{width:90.781200px;}
._21{width:91.803240px;}
._57{width:93.486600px;}
._39{width:97.153920px;}
._38{width:101.121840px;}
._3f{width:102.585720px;}
._3d{width:103.827240px;}
._30{width:105.871320px;}
._19{width:107.554680px;}
._47{width:110.801160px;}
._1a{width:113.747040px;}
._32{width:119.037600px;}
._55{width:121.803120px;}
._4e{width:125.049600px;}
._4f{width:130.219920px;}
._36{width:135.690840px;}
._35{width:136.893240px;}
._5b{width:139.237920px;}
._17{width:142.785000px;}
._61{width:144.889200px;}
._33{width:148.015440px;}
._1b{width:149.217840px;}
._66{width:153.907200px;}
._22{width:156.913200px;}
._3b{width:159.919200px;}
._51{width:163.045440px;}
._49{width:164.728800px;}
._4a{width:166.111560px;}
._45{width:167.522160px;}
._24{width:168.696720px;}
._53{width:173.867040px;}
._43{width:175.002240px;}
._5c{width:176.392080px;}
._5d{width:180.179640px;}
._54{width:181.863000px;}
._68{width:194.631120px;}
._23{width:196.953120px;}
._4c{width:199.538280px;}
._63{width:200.740680px;}
._1e{width:205.670520px;}
._34{width:212.464080px;}
._2c{width:223.886880px;}
._62{width:235.249560px;}
._64{width:247.934880px;}
._42{width:252.591960px;}
._5a{width:254.548080px;}
._5f{width:263.385720px;}
._2f{width:280.760400px;}
._46{width:368.864040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.330000px;}
.y9c{bottom:7.830000px;}
.ya2{bottom:7.920000px;}
.y111{bottom:12.420000px;}
.yb1{bottom:19.170000px;}
.yfb{bottom:20.880000px;}
.ydd{bottom:20.970000px;}
.yb6{bottom:25.380000px;}
.y9b{bottom:25.470000px;}
.y110{bottom:29.970000px;}
.yb0{bottom:36.810000px;}
.ydc{bottom:38.520000px;}
.y9a{bottom:43.020000px;}
.ye4{bottom:43.050000px;}
.ya1{bottom:43.110000px;}
.ybd{bottom:43.140000px;}
.y10f{bottom:47.610000px;}
.yfa{bottom:56.070000px;}
.ydb{bottom:56.160000px;}
.ya6{bottom:60.570000px;}
.ye3{bottom:60.600000px;}
.ya0{bottom:60.660000px;}
.ybc{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.yda{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.ya4{bottom:78.210000px;}
.y9f{bottom:78.240000px;}
.yd5{bottom:95.760000px;}
.ye2{bottom:95.790000px;}
.yad{bottom:95.850000px;}
.y9e{bottom:95.880000px;}
.y1{bottom:101.640000px;}
.yd4{bottom:113.400000px;}
.ye1{bottom:113.430000px;}
.y58{bottom:114.330000px;}
.yae{bottom:114.780000px;}
.y98{bottom:117.930000px;}
.yd9{bottom:120.720000px;}
.yf9{bottom:123.330000px;}
.y29{bottom:128.460000px;}
.yd3{bottom:130.950000px;}
.yd7{bottom:130.980000px;}
.y57{bottom:131.880000px;}
.y97{bottom:135.480000px;}
.y10b{bottom:137.550000px;}
.yc0{bottom:141.150000px;}
.y1b6{bottom:142.680000px;}
.y28{bottom:146.010000px;}
.y188{bottom:148.260000px;}
.yd2{bottom:148.500000px;}
.y56{bottom:150.330000px;}
.y96{bottom:153.120000px;}
.y130{bottom:155.100000px;}
.y10a{bottom:155.190000px;}
.y1b5{bottom:160.320000px;}
.y27{bottom:163.650000px;}
.y187{bottom:165.900000px;}
.y55{bottom:167.880000px;}
.y15c{bottom:169.680000px;}
.y95{bottom:170.670000px;}
.y109{bottom:172.740000px;}
.yac{bottom:177.240000px;}
.y26{bottom:181.200000px;}
.y1b4{bottom:186.870000px;}
.y15b{bottom:187.320000px;}
.y94{bottom:188.310000px;}
.y12f{bottom:190.290000px;}
.y108{bottom:190.380000px;}
.y186{bottom:192.450000px;}
.y25{bottom:198.840000px;}
.yf8{bottom:198.930000px;}
.y54{bottom:204.330000px;}
.y1b3{bottom:204.510000px;}
.y15a{bottom:204.870000px;}
.y93{bottom:205.860000px;}
.y107{bottom:207.930000px;}
.y185{bottom:210.000000px;}
.yd8{bottom:213.870000px;}
.y24{bottom:216.390000px;}
.y53{bottom:221.880000px;}
.y159{bottom:222.510000px;}
.y92{bottom:223.410000px;}
.y12e{bottom:225.480000px;}
.y1b2{bottom:231.060000px;}
.y23{bottom:233.940000px;}
.y184{bottom:236.640000px;}
.y158{bottom:240.060000px;}
.y91{bottom:241.050000px;}
.y106{bottom:243.480000px;}
.y1b1{bottom:248.610000px;}
.y52{bottom:248.790000px;}
.y22{bottom:251.580000px;}
.y183{bottom:254.190000px;}
.y7e{bottom:254.640000px;}
.ybf{bottom:256.440000px;}
.y90{bottom:258.600000px;}
.y12d{bottom:261.030000px;}
.y1b0{bottom:266.250000px;}
.y157{bottom:275.610000px;}
.y105{bottom:275.700000px;}
.y8f{bottom:276.240000px;}
.y12c{bottom:278.670000px;}
.y182{bottom:280.830000px;}
.y1af{bottom:283.800000px;}
.y51{bottom:285.780000px;}
.y21{bottom:287.130000px;}
.y7d{bottom:290.280000px;}
.yab{bottom:292.530000px;}
.y156{bottom:293.250000px;}
.y8e{bottom:293.790000px;}
.y12b{bottom:296.220000px;}
.yf7{bottom:296.580000px;}
.y181{bottom:298.380000px;}
.y50{bottom:303.420000px;}
.y20{bottom:304.770000px;}
.y7c{bottom:307.830000px;}
.y1ae{bottom:310.440000px;}
.y155{bottom:310.800000px;}
.y8d{bottom:311.340000px;}
.y12a{bottom:313.860000px;}
.y4f{bottom:320.970000px;}
.y1f{bottom:322.320000px;}
.y180{bottom:324.930000px;}
.y7b{bottom:325.470000px;}
.y1ad{bottom:327.990000px;}
.y154{bottom:328.440000px;}
.y129{bottom:331.410000px;}
.y4e{bottom:338.610000px;}
.y1e{bottom:339.870000px;}
.y17f{bottom:342.570000px;}
.y7a{bottom:343.020000px;}
.y153{bottom:345.990000px;}
.yd6{bottom:346.710000px;}
.y8c{bottom:346.980000px;}
.y128{bottom:348.960000px;}
.ybe{bottom:354.090000px;}
.y1ac{bottom:354.540000px;}
.y4d{bottom:356.160000px;}
.y1d{bottom:357.510000px;}
.y1c1{bottom:363.180000px;}
.y8b{bottom:364.530000px;}
.y127{bottom:366.600000px;}
.y17e{bottom:369.120000px;}
.y79{bottom:369.570000px;}
.y1ab{bottom:372.180000px;}
.yaa{bottom:372.630000px;}
.y1c{bottom:375.060000px;}
.yf6{bottom:380.460000px;}
.y1c0{bottom:380.730000px;}
.y152{bottom:381.540000px;}
.y8a{bottom:382.170000px;}
.y17d{bottom:386.760000px;}
.y4c{bottom:391.710000px;}
.y1b{bottom:392.700000px;}
.y1aa{bottom:398.730000px;}
.y151{bottom:399.180000px;}
.y89{bottom:399.720000px;}
.y126{bottom:402.150000px;}
.y78{bottom:405.120000px;}
.y1bf{bottom:407.370000px;}
.y4b{bottom:409.350000px;}
.y17c{bottom:413.310000px;}
.yf5{bottom:416.010000px;}
.y1a9{bottom:416.370000px;}
.y150{bottom:416.730000px;}
.y88{bottom:417.270000px;}
.y125{bottom:419.790000px;}
.y77{bottom:423.570000px;}
.y1be{bottom:424.920000px;}
.y4a{bottom:426.900000px;}
.y1a{bottom:428.250000px;}
.y17b{bottom:430.860000px;}
.yf4{bottom:433.650000px;}
.ybb{bottom:434.190000px;}
.y14f{bottom:434.370000px;}
.y87{bottom:434.910000px;}
.y124{bottom:437.340000px;}
.y76{bottom:442.020000px;}
.y1a8{bottom:442.920000px;}
.y19{bottom:445.800000px;}
.yf3{bottom:451.200000px;}
.y1bd{bottom:451.470000px;}
.y14e{bottom:451.920000px;}
.y86{bottom:452.460000px;}
.y123{bottom:454.890000px;}
.y17a{bottom:457.770000px;}
.y75{bottom:460.380000px;}
.y1a7{bottom:460.470000px;}
.y49{bottom:462.450000px;}
.y18{bottom:463.440000px;}
.yf2{bottom:468.750000px;}
.ya9{bottom:470.310000px;}
.y122{bottom:472.560000px;}
.y1a6{bottom:478.140000px;}
.y74{bottom:478.860000px;}
.y85{bottom:479.400000px;}
.y48{bottom:480.120000px;}
.y17{bottom:481.020000px;}
.yf1{bottom:486.420000px;}
.y14d{bottom:487.500000px;}
.y121{bottom:490.110000px;}
.y1bc{bottom:495.690000px;}
.y73{bottom:497.220000px;}
.y47{bottom:497.670000px;}
.y16{bottom:498.660000px;}
.yf0{bottom:503.970000px;}
.y1a5{bottom:504.690000px;}
.y14c{bottom:505.140000px;}
.y179{bottom:506.130000px;}
.y120{bottom:507.660000px;}
.yba{bottom:514.320000px;}
.y72{bottom:515.670000px;}
.y15{bottom:516.210000px;}
.yef{bottom:521.610000px;}
.y1a4{bottom:522.330000px;}
.y14b{bottom:522.690000px;}
.y178{bottom:523.680000px;}
.y11f{bottom:525.300000px;}
.y84{bottom:527.640000px;}
.y46{bottom:533.310000px;}
.yee{bottom:539.160000px;}
.y1bb{bottom:539.880000px;}
.y14a{bottom:540.330000px;}
.y177{bottom:541.230000px;}
.y83{bottom:545.280000px;}
.y1a3{bottom:548.880000px;}
.ya8{bottom:550.410000px;}
.y45{bottom:550.860000px;}
.y14{bottom:551.760000px;}
.y71{bottom:552.120000px;}
.y11e{bottom:552.210000px;}
.yed{bottom:556.710000px;}
.y149{bottom:557.880000px;}
.y176{bottom:558.870000px;}
.y82{bottom:562.830000px;}
.y1a2{bottom:566.430000px;}
.y44{bottom:568.410000px;}
.y13{bottom:569.400000px;}
.yec{bottom:574.350000px;}
.y175{bottom:576.420000px;}
.yb9{bottom:576.870000px;}
.y70{bottom:578.670000px;}
.y81{bottom:580.470000px;}
.y1ba{bottom:584.070000px;}
.y43{bottom:586.050000px;}
.y12{bottom:586.950000px;}
.yeb{bottom:591.900000px;}
.y1a1{bottom:593.070000px;}
.y148{bottom:593.430000px;}
.y174{bottom:594.060000px;}
.y11d{bottom:600.450000px;}
.yea{bottom:609.540000px;}
.y1a0{bottom:610.620000px;}
.y147{bottom:611.070000px;}
.y6f{bottom:614.220000px;}
.y80{bottom:616.020000px;}
.y11c{bottom:618.090000px;}
.y173{bottom:620.970000px;}
.y42{bottom:621.600000px;}
.y11{bottom:622.590000px;}
.y104{bottom:627.900000px;}
.y19f{bottom:628.260000px;}
.y146{bottom:628.620000px;}
.y6e{bottom:632.670000px;}
.y11b{bottom:635.640000px;}
.y41{bottom:639.240000px;}
.y10{bottom:640.140000px;}
.ye9{bottom:644.370000px;}
.y103{bottom:645.450000px;}
.y145{bottom:646.260000px;}
.ya7{bottom:648.060000px;}
.y7f{bottom:648.240000px;}
.y6d{bottom:651.030000px;}
.y11a{bottom:653.190000px;}
.y19e{bottom:654.810000px;}
.y40{bottom:656.790000px;}
.yf{bottom:657.690000px;}
.y172{bottom:657.960000px;}
.ye8{bottom:658.410000px;}
.y102{bottom:663.090000px;}
.y144{bottom:663.810000px;}
.yd1{bottom:665.250000px;}
.y6c{bottom:669.480000px;}
.ye7{bottom:670.560000px;}
.y119{bottom:670.830000px;}
.y19d{bottom:672.360000px;}
.yb8{bottom:674.520000px;}
.ye{bottom:675.330000px;}
.y101{bottom:680.640000px;}
.y171{bottom:684.870000px;}
.y118{bottom:688.380000px;}
.y3f{bottom:692.340000px;}
.yd{bottom:692.880000px;}
.y6b{bottom:696.930000px;}
.y19c{bottom:699.000000px;}
.y143{bottom:699.360000px;}
.y3e{bottom:709.980000px;}
.y100{bottom:713.580000px;}
.y19b{bottom:716.550000px;}
.y142{bottom:717.000000px;}
.yc{bottom:719.790000px;}
.y170{bottom:722.220000px;}
.yb7{bottom:723.210000px;}
.y117{bottom:724.020000px;}
.y3d{bottom:727.530000px;}
.y6a{bottom:732.480000px;}
.y19a{bottom:734.190000px;}
.y141{bottom:734.550000px;}
.y116{bottom:741.570000px;}
.y3c{bottom:745.170000px;}
.ya5{bottom:745.800000px;}
.yb5{bottom:747.240000px;}
.yd0{bottom:749.130000px;}
.y69{bottom:750.930000px;}
.y140{bottom:752.190000px;}
.y115{bottom:759.120000px;}
.y199{bottom:760.740000px;}
.ycf{bottom:766.680000px;}
.yb{bottom:768.030000px;}
.y68{bottom:769.290000px;}
.y13f{bottom:769.740000px;}
.y16f{bottom:770.460000px;}
.y198{bottom:778.290000px;}
.y3b{bottom:780.720000px;}
.y13e{bottom:787.290000px;}
.y67{bottom:787.740000px;}
.y16e{bottom:788.010000px;}
.y114{bottom:792.150000px;}
.yff{bottom:793.680000px;}
.y3a{bottom:798.270000px;}
.yce{bottom:802.230000px;}
.ye6{bottom:803.490000px;}
.ya{bottom:803.850000px;}
.y197{bottom:804.930000px;}
.y66{bottom:806.100000px;}
.y16d{bottom:806.460000px;}
.y39{bottom:815.910000px;}
.ycd{bottom:819.870000px;}
.y196{bottom:822.480000px;}
.y13d{bottom:822.930000px;}
.y16c{bottom:824.010000px;}
.y65{bottom:833.550000px;}
.y113{bottom:837.060000px;}
.ycc{bottom:837.420000px;}
.y9{bottom:839.850000px;}
.y195{bottom:840.030000px;}
.y13c{bottom:840.480000px;}
.y16b{bottom:842.460000px;}
.ya3{bottom:843.450000px;}
.yb4{bottom:844.890000px;}
.y38{bottom:851.460000px;}
.ycb{bottom:855.060000px;}
.yfe{bottom:856.230000px;}
.y13b{bottom:858.030000px;}
.y16a{bottom:860.010000px;}
.ye5{bottom:865.950000px;}
.y194{bottom:866.670000px;}
.y37{bottom:869.100000px;}
.y64{bottom:869.190000px;}
.yca{bottom:872.610000px;}
.y13a{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y112{bottom:881.970000px;}
.y193{bottom:884.220000px;}
.y36{bottom:886.650000px;}
.y63{bottom:886.740000px;}
.y169{bottom:887.820000px;}
.yc9{bottom:890.160000px;}
.y139{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y192{bottom:901.860000px;}
.y62{bottom:904.380000px;}
.yc8{bottom:907.800000px;}
.y1b9{bottom:910.860000px;}
.y61{bottom:921.930000px;}
.y35{bottom:922.200000px;}
.y168{bottom:924.810000px;}
.yb3{bottom:924.990000px;}
.yc7{bottom:925.350000px;}
.y191{bottom:928.410000px;}
.y138{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y34{bottom:939.840000px;}
.y9d{bottom:941.100000px;}
.y167{bottom:942.450000px;}
.yc6{bottom:942.990000px;}
.y10e{bottom:944.430000px;}
.y190{bottom:945.960000px;}
.y137{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yfd{bottom:953.880000px;}
.y33{bottom:957.390000px;}
.y60{bottom:957.480000px;}
.y166{bottom:960.000000px;}
.yc5{bottom:960.540000px;}
.y18f{bottom:963.600000px;}
.y136{bottom:963.960000px;}
.y1b8{bottom:972.600000px;}
.y5f{bottom:975.120000px;}
.y165{bottom:977.550000px;}
.yc4{bottom:978.090000px;}
.ye0{bottom:981.240000px;}
.y135{bottom:981.600000px;}
.y32{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y18e{bottom:990.150000px;}
.y164{bottom:995.190000px;}
.y134{bottom:999.150000px;}
.y5e{bottom:1001.670000px;}
.y18d{bottom:1007.790000px;}
.y10d{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.y163{bottom:1012.770000px;}
.yc3{bottom:1013.040000px;}
.y133{bottom:1016.820000px;}
.yb2{bottom:1022.670000px;}
.yc2{bottom:1027.080000px;}
.y162{bottom:1030.320000px;}
.y31{bottom:1032.570000px;}
.yfc{bottom:1034.010000px;}
.y18c{bottom:1034.370000px;}
.y5d{bottom:1037.610000px;}
.yc1{bottom:1039.230000px;}
.y161{bottom:1047.960000px;}
.y30{bottom:1050.480000px;}
.y18b{bottom:1051.920000px;}
.y132{bottom:1052.370000px;}
.y99{bottom:1056.420000px;}
.y1b7{bottom:1060.920000px;}
.y160{bottom:1065.510000px;}
.y131{bottom:1069.920000px;}
.y10c{bottom:1073.970000px;}
.y18a{bottom:1078.560000px;}
.y15f{bottom:1083.150000px;}
.y5c{bottom:1085.850000px;}
.y2f{bottom:1087.560000px;}
.y189{bottom:1096.110000px;}
.y15e{bottom:1100.700000px;}
.yaf{bottom:1102.770000px;}
.y5b{bottom:1103.400000px;}
.y2e{bottom:1105.110000px;}
.ydf{bottom:1114.110000px;}
.y5a{bottom:1121.850000px;}
.y2d{bottom:1122.750000px;}
.y15d{bottom:1127.610000px;}
.y59{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h15{height:26.640000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h1c{height:39.690000px;}
.h22{height:44.100000px;}
.h20{height:44.190000px;}
.h3{height:44.538574px;}
.h17{height:47.389043px;}
.hc{height:50.902383px;}
.h12{height:51.030000px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.hd{height:61.740000px;}
.h9{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.h21{height:66.360000px;}
.ha{height:68.582109px;}
.h1f{height:74.790000px;}
.h14{height:79.290000px;}
.h10{height:79.380000px;}
.h16{height:79.410000px;}
.h4{height:83.019902px;}
.h1b{height:92.430000px;}
.hf{height:96.930000px;}
.h13{height:96.960000px;}
.h1e{height:114.480000px;}
.h11{height:114.570000px;}
.he{height:114.600000px;}
.h1a{height:132.120000px;}
.h1d{height:132.150000px;}
.h19{height:149.700000px;}
.h18{height:167.220000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:52.140000px;}
.w1a{width:55.710000px;}
.wf{width:73.980000px;}
.w17{width:79.380000px;}
.w12{width:83.700000px;}
.w10{width:94.500000px;}
.we{width:97.770000px;}
.wb{width:102.270000px;}
.w8{width:113.970000px;}
.w14{width:114.840000px;}
.wd{width:116.640000px;}
.w16{width:120.990000px;}
.w3{width:122.520000px;}
.wc{width:124.470000px;}
.w7{width:128.520000px;}
.w5{width:132.600000px;}
.w11{width:141.570000px;}
.w6{width:144.630000px;}
.w18{width:146.790000px;}
.w15{width:153.360000px;}
.w1b{width:166.140000px;}
.w19{width:208.740000px;}
.w4{width:224.460000px;}
.wa{width:309.960000px;}
.w1c{width:322.860000px;}
.w9{width:330.240000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:78.299987px;}
.xf{left:79.469987px;}
.x4{left:95.039987px;}
.x24{left:111.239987px;}
.x5{left:122.039987px;}
.x20{left:127.529987px;}
.x19{left:153.270000px;}
.x11{left:171.750000px;}
.xd{left:183.450000px;}
.x9{left:192.000000px;}
.x1a{left:206.130000px;}
.x2{left:250.499987px;}
.x18{left:278.039987px;}
.x7{left:282.359987px;}
.x12{left:296.940000px;}
.x1b{left:321.690000px;}
.x22{left:334.650000px;}
.x10{left:390.269987px;}
.x13{left:414.300000px;}
.xa{left:417.180000px;}
.x1c{left:475.860000px;}
.x23{left:501.600000px;}
.x14{left:512.880000px;}
.xe{left:514.500000px;}
.xb{left:550.500000px;}
.x15{left:587.580000px;}
.x1d{left:597.570000px;}
.x6{left:652.559987px;}
.x1e{left:677.670000px;}
.x16{left:682.890000px;}
.xc{left:695.940000px;}
.x1f{left:793.139987px;}
.x21{left:808.619987px;}
.x3{left:816.989987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.276267pt;}
.ls23{letter-spacing:-0.223467pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls21{letter-spacing:-0.111467pt;}
.ls14{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.058667pt;}
.ls19{letter-spacing:-0.039680pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls1c{letter-spacing:-0.028160pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.030720pt;}
.ls11{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.100800pt;}
.ls20{letter-spacing:0.102933pt;}
.ls18{letter-spacing:0.103467pt;}
.ls9{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.154240pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.lsc{letter-spacing:0.475200pt;}
.ls25{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls24{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws15{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.857600pt;}
.wse{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.787520pt;}
.ws10{word-spacing:-11.774720pt;}
.ws5{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.717120pt;}
.wsa{word-spacing:-11.698133pt;}
.ws11{word-spacing:-11.645333pt;}
.ws6{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.533333pt;}
.wsf{word-spacing:-11.480533pt;}
.ws13{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-3.526612pt;}
._6{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.093867pt;}
._2{width:2.693877pt;}
._3{width:3.958592pt;}
._a{width:5.155733pt;}
._4{width:6.242667pt;}
._7{width:7.407680pt;}
._8{width:8.777812pt;}
._14{width:9.703801pt;}
._c{width:10.602134pt;}
._9{width:12.825600pt;}
._13{width:14.215040pt;}
._12{width:15.544320pt;}
._16{width:17.100800pt;}
._b{width:18.490133pt;}
._11{width:20.118187pt;}
._5{width:21.589867pt;}
._e{width:22.548906pt;}
._4b{width:24.208320pt;}
._d{width:25.704533pt;}
._48{width:26.666347pt;}
._1f{width:27.949120pt;}
._26{width:29.124800pt;}
._65{width:30.086720pt;}
._69{width:31.007360pt;}
._27{width:31.957120pt;}
._29{width:33.025920pt;}
._44{width:33.959680pt;}
._28{width:35.003200pt;}
._37{width:36.659840pt;}
._59{width:38.102720pt;}
._f{width:39.505600pt;}
._10{width:40.975040pt;}
._58{width:42.645120pt;}
._1d{width:44.248320pt;}
._25{width:45.691200pt;}
._20{width:47.989120pt;}
._3e{width:50.821440pt;}
._31{width:51.836800pt;}
._1c{width:53.493440pt;}
._2d{width:54.953600pt;}
._3c{width:56.112000pt;}
._2e{width:57.073920pt;}
._41{width:58.784000pt;}
._60{width:59.692480pt;}
._18{width:61.028480pt;}
._4d{width:62.257600pt;}
._52{width:64.769280pt;}
._2b{width:70.166720pt;}
._5e{width:72.304320pt;}
._40{width:73.212800pt;}
._56{width:74.869440pt;}
._6a{width:75.938240pt;}
._67{width:77.085227pt;}
._3a{width:78.556800pt;}
._2a{width:79.572160pt;}
._50{width:80.694400pt;}
._21{width:81.602880pt;}
._57{width:83.099200pt;}
._39{width:86.359040pt;}
._38{width:89.886080pt;}
._3f{width:91.187307pt;}
._3d{width:92.290880pt;}
._30{width:94.107840pt;}
._19{width:95.604160pt;}
._47{width:98.489920pt;}
._1a{width:101.108480pt;}
._32{width:105.811200pt;}
._55{width:108.269440pt;}
._4e{width:111.155200pt;}
._4f{width:115.751040pt;}
._36{width:120.614080pt;}
._35{width:121.682880pt;}
._5b{width:123.767040pt;}
._17{width:126.920000pt;}
._61{width:128.790400pt;}
._33{width:131.569280pt;}
._1b{width:132.638080pt;}
._66{width:136.806400pt;}
._22{width:139.478400pt;}
._3b{width:142.150400pt;}
._51{width:144.929280pt;}
._49{width:146.425600pt;}
._4a{width:147.654720pt;}
._45{width:148.908587pt;}
._24{width:149.952640pt;}
._53{width:154.548480pt;}
._43{width:155.557547pt;}
._5c{width:156.792960pt;}
._5d{width:160.159680pt;}
._54{width:161.656000pt;}
._68{width:173.005440pt;}
._23{width:175.069440pt;}
._4c{width:177.367360pt;}
._63{width:178.436160pt;}
._1e{width:182.818240pt;}
._34{width:188.856960pt;}
._2c{width:199.010560pt;}
._62{width:209.110720pt;}
._64{width:220.386560pt;}
._42{width:224.526187pt;}
._5a{width:226.264960pt;}
._5f{width:234.120640pt;}
._2f{width:249.564800pt;}
._46{width:327.879147pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.960000pt;}
.y9c{bottom:6.960000pt;}
.ya2{bottom:7.040000pt;}
.y111{bottom:11.040000pt;}
.yb1{bottom:17.040000pt;}
.yfb{bottom:18.560000pt;}
.ydd{bottom:18.640000pt;}
.yb6{bottom:22.560000pt;}
.y9b{bottom:22.640000pt;}
.y110{bottom:26.640000pt;}
.yb0{bottom:32.720000pt;}
.ydc{bottom:34.240000pt;}
.y9a{bottom:38.240000pt;}
.ye4{bottom:38.266667pt;}
.ya1{bottom:38.320000pt;}
.ybd{bottom:38.346667pt;}
.y10f{bottom:42.320000pt;}
.yfa{bottom:49.840000pt;}
.ydb{bottom:49.920000pt;}
.ya6{bottom:53.840000pt;}
.ye3{bottom:53.866667pt;}
.ya0{bottom:53.920000pt;}
.ybc{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.yda{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.ya4{bottom:69.520000pt;}
.y9f{bottom:69.546667pt;}
.yd5{bottom:85.120000pt;}
.ye2{bottom:85.146667pt;}
.yad{bottom:85.200000pt;}
.y9e{bottom:85.226667pt;}
.y1{bottom:90.346667pt;}
.yd4{bottom:100.800000pt;}
.ye1{bottom:100.826667pt;}
.y58{bottom:101.626667pt;}
.yae{bottom:102.026667pt;}
.y98{bottom:104.826667pt;}
.yd9{bottom:107.306667pt;}
.yf9{bottom:109.626667pt;}
.y29{bottom:114.186667pt;}
.yd3{bottom:116.400000pt;}
.yd7{bottom:116.426667pt;}
.y57{bottom:117.226667pt;}
.y97{bottom:120.426667pt;}
.y10b{bottom:122.266667pt;}
.yc0{bottom:125.466667pt;}
.y1b6{bottom:126.826667pt;}
.y28{bottom:129.786667pt;}
.y188{bottom:131.786667pt;}
.yd2{bottom:132.000000pt;}
.y56{bottom:133.626667pt;}
.y96{bottom:136.106667pt;}
.y130{bottom:137.866667pt;}
.y10a{bottom:137.946667pt;}
.y1b5{bottom:142.506667pt;}
.y27{bottom:145.466667pt;}
.y187{bottom:147.466667pt;}
.y55{bottom:149.226667pt;}
.y15c{bottom:150.826667pt;}
.y95{bottom:151.706667pt;}
.y109{bottom:153.546667pt;}
.yac{bottom:157.546667pt;}
.y26{bottom:161.066667pt;}
.y1b4{bottom:166.106667pt;}
.y15b{bottom:166.506667pt;}
.y94{bottom:167.386667pt;}
.y12f{bottom:169.146667pt;}
.y108{bottom:169.226667pt;}
.y186{bottom:171.066667pt;}
.y25{bottom:176.746667pt;}
.yf8{bottom:176.826667pt;}
.y54{bottom:181.626667pt;}
.y1b3{bottom:181.786667pt;}
.y15a{bottom:182.106667pt;}
.y93{bottom:182.986667pt;}
.y107{bottom:184.826667pt;}
.y185{bottom:186.666667pt;}
.yd8{bottom:190.106667pt;}
.y24{bottom:192.346667pt;}
.y53{bottom:197.226667pt;}
.y159{bottom:197.786667pt;}
.y92{bottom:198.586667pt;}
.y12e{bottom:200.426667pt;}
.y1b2{bottom:205.386667pt;}
.y23{bottom:207.946667pt;}
.y184{bottom:210.346667pt;}
.y158{bottom:213.386667pt;}
.y91{bottom:214.266667pt;}
.y106{bottom:216.426667pt;}
.y1b1{bottom:220.986667pt;}
.y52{bottom:221.146667pt;}
.y22{bottom:223.626667pt;}
.y183{bottom:225.946667pt;}
.y7e{bottom:226.346667pt;}
.ybf{bottom:227.946667pt;}
.y90{bottom:229.866667pt;}
.y12d{bottom:232.026667pt;}
.y1b0{bottom:236.666667pt;}
.y157{bottom:244.986667pt;}
.y105{bottom:245.066667pt;}
.y8f{bottom:245.546667pt;}
.y12c{bottom:247.706667pt;}
.y182{bottom:249.626667pt;}
.y1af{bottom:252.266667pt;}
.y51{bottom:254.026667pt;}
.y21{bottom:255.226667pt;}
.y7d{bottom:258.026667pt;}
.yab{bottom:260.026667pt;}
.y156{bottom:260.666667pt;}
.y8e{bottom:261.146667pt;}
.y12b{bottom:263.306667pt;}
.yf7{bottom:263.626667pt;}
.y181{bottom:265.226667pt;}
.y50{bottom:269.706667pt;}
.y20{bottom:270.906667pt;}
.y7c{bottom:273.626667pt;}
.y1ae{bottom:275.946667pt;}
.y155{bottom:276.266667pt;}
.y8d{bottom:276.746667pt;}
.y12a{bottom:278.986667pt;}
.y4f{bottom:285.306667pt;}
.y1f{bottom:286.506667pt;}
.y180{bottom:288.826667pt;}
.y7b{bottom:289.306667pt;}
.y1ad{bottom:291.546667pt;}
.y154{bottom:291.946667pt;}
.y129{bottom:294.586667pt;}
.y4e{bottom:300.986667pt;}
.y1e{bottom:302.106667pt;}
.y17f{bottom:304.506667pt;}
.y7a{bottom:304.906667pt;}
.y153{bottom:307.546667pt;}
.yd6{bottom:308.186667pt;}
.y8c{bottom:308.426667pt;}
.y128{bottom:310.186667pt;}
.ybe{bottom:314.746667pt;}
.y1ac{bottom:315.146667pt;}
.y4d{bottom:316.586667pt;}
.y1d{bottom:317.786667pt;}
.y1c1{bottom:322.826667pt;}
.y8b{bottom:324.026667pt;}
.y127{bottom:325.866667pt;}
.y17e{bottom:328.106667pt;}
.y79{bottom:328.506667pt;}
.y1ab{bottom:330.826667pt;}
.yaa{bottom:331.226667pt;}
.y1c{bottom:333.386667pt;}
.yf6{bottom:338.186667pt;}
.y1c0{bottom:338.426667pt;}
.y152{bottom:339.146667pt;}
.y8a{bottom:339.706667pt;}
.y17d{bottom:343.786667pt;}
.y4c{bottom:348.186667pt;}
.y1b{bottom:349.066667pt;}
.y1aa{bottom:354.426667pt;}
.y151{bottom:354.826667pt;}
.y89{bottom:355.306667pt;}
.y126{bottom:357.466667pt;}
.y78{bottom:360.106667pt;}
.y1bf{bottom:362.106667pt;}
.y4b{bottom:363.866667pt;}
.y17c{bottom:367.386667pt;}
.yf5{bottom:369.786667pt;}
.y1a9{bottom:370.106667pt;}
.y150{bottom:370.426667pt;}
.y88{bottom:370.906667pt;}
.y125{bottom:373.146667pt;}
.y77{bottom:376.506667pt;}
.y1be{bottom:377.706667pt;}
.y4a{bottom:379.466667pt;}
.y1a{bottom:380.666667pt;}
.y17b{bottom:382.986667pt;}
.yf4{bottom:385.466667pt;}
.ybb{bottom:385.946667pt;}
.y14f{bottom:386.106667pt;}
.y87{bottom:386.586667pt;}
.y124{bottom:388.746667pt;}
.y76{bottom:392.906667pt;}
.y1a8{bottom:393.706667pt;}
.y19{bottom:396.266667pt;}
.yf3{bottom:401.066667pt;}
.y1bd{bottom:401.306667pt;}
.y14e{bottom:401.706667pt;}
.y86{bottom:402.186667pt;}
.y123{bottom:404.346667pt;}
.y17a{bottom:406.906667pt;}
.y75{bottom:409.226667pt;}
.y1a7{bottom:409.306667pt;}
.y49{bottom:411.066667pt;}
.y18{bottom:411.946667pt;}
.yf2{bottom:416.666667pt;}
.ya9{bottom:418.053333pt;}
.y122{bottom:420.053333pt;}
.y1a6{bottom:425.013333pt;}
.y74{bottom:425.653333pt;}
.y85{bottom:426.133333pt;}
.y48{bottom:426.773333pt;}
.y17{bottom:427.573333pt;}
.yf1{bottom:432.373333pt;}
.y14d{bottom:433.333333pt;}
.y121{bottom:435.653333pt;}
.y1bc{bottom:440.613333pt;}
.y73{bottom:441.973333pt;}
.y47{bottom:442.373333pt;}
.y16{bottom:443.253333pt;}
.yf0{bottom:447.973333pt;}
.y1a5{bottom:448.613333pt;}
.y14c{bottom:449.013333pt;}
.y179{bottom:449.893333pt;}
.y120{bottom:451.253333pt;}
.yba{bottom:457.173333pt;}
.y72{bottom:458.373333pt;}
.y15{bottom:458.853333pt;}
.yef{bottom:463.653333pt;}
.y1a4{bottom:464.293333pt;}
.y14b{bottom:464.613333pt;}
.y178{bottom:465.493333pt;}
.y11f{bottom:466.933333pt;}
.y84{bottom:469.013333pt;}
.y46{bottom:474.053333pt;}
.yee{bottom:479.253333pt;}
.y1bb{bottom:479.893333pt;}
.y14a{bottom:480.293333pt;}
.y177{bottom:481.093333pt;}
.y83{bottom:484.693333pt;}
.y1a3{bottom:487.893333pt;}
.ya8{bottom:489.253333pt;}
.y45{bottom:489.653333pt;}
.y14{bottom:490.453333pt;}
.y71{bottom:490.773333pt;}
.y11e{bottom:490.853333pt;}
.yed{bottom:494.853333pt;}
.y149{bottom:495.893333pt;}
.y176{bottom:496.773333pt;}
.y82{bottom:500.293333pt;}
.y1a2{bottom:503.493333pt;}
.y44{bottom:505.253333pt;}
.y13{bottom:506.133333pt;}
.yec{bottom:510.533333pt;}
.y175{bottom:512.373333pt;}
.yb9{bottom:512.773333pt;}
.y70{bottom:514.373333pt;}
.y81{bottom:515.973333pt;}
.y1ba{bottom:519.173333pt;}
.y43{bottom:520.933333pt;}
.y12{bottom:521.733333pt;}
.yeb{bottom:526.133333pt;}
.y1a1{bottom:527.173333pt;}
.y148{bottom:527.493333pt;}
.y174{bottom:528.053333pt;}
.y11d{bottom:533.733333pt;}
.yea{bottom:541.813333pt;}
.y1a0{bottom:542.773333pt;}
.y147{bottom:543.173333pt;}
.y6f{bottom:545.973333pt;}
.y80{bottom:547.573333pt;}
.y11c{bottom:549.413333pt;}
.y173{bottom:551.973333pt;}
.y42{bottom:552.533333pt;}
.y11{bottom:553.413333pt;}
.y104{bottom:558.133333pt;}
.y19f{bottom:558.453333pt;}
.y146{bottom:558.773333pt;}
.y6e{bottom:562.373333pt;}
.y11b{bottom:565.013333pt;}
.y41{bottom:568.213333pt;}
.y10{bottom:569.013333pt;}
.ye9{bottom:572.773333pt;}
.y103{bottom:573.733333pt;}
.y145{bottom:574.453333pt;}
.ya7{bottom:576.053333pt;}
.y7f{bottom:576.213333pt;}
.y6d{bottom:578.693333pt;}
.y11a{bottom:580.613333pt;}
.y19e{bottom:582.053333pt;}
.y40{bottom:583.813333pt;}
.yf{bottom:584.613333pt;}
.y172{bottom:584.853333pt;}
.ye8{bottom:585.253333pt;}
.y102{bottom:589.413333pt;}
.y144{bottom:590.053333pt;}
.yd1{bottom:591.333333pt;}
.y6c{bottom:595.093333pt;}
.ye7{bottom:596.053333pt;}
.y119{bottom:596.293333pt;}
.y19d{bottom:597.653333pt;}
.yb8{bottom:599.573333pt;}
.ye{bottom:600.293333pt;}
.y101{bottom:605.013333pt;}
.y171{bottom:608.773333pt;}
.y118{bottom:611.893333pt;}
.y3f{bottom:615.413333pt;}
.yd{bottom:615.893333pt;}
.y6b{bottom:619.493333pt;}
.y19c{bottom:621.333333pt;}
.y143{bottom:621.653333pt;}
.y3e{bottom:631.093333pt;}
.y100{bottom:634.293333pt;}
.y19b{bottom:636.933333pt;}
.y142{bottom:637.333333pt;}
.yc{bottom:639.813333pt;}
.y170{bottom:641.973333pt;}
.yb7{bottom:642.853333pt;}
.y117{bottom:643.573333pt;}
.y3d{bottom:646.693333pt;}
.y6a{bottom:651.093333pt;}
.y19a{bottom:652.613333pt;}
.y141{bottom:652.933333pt;}
.y116{bottom:659.173333pt;}
.y3c{bottom:662.373333pt;}
.ya5{bottom:662.933333pt;}
.yb5{bottom:664.213333pt;}
.yd0{bottom:665.893333pt;}
.y69{bottom:667.493333pt;}
.y140{bottom:668.613333pt;}
.y115{bottom:674.773333pt;}
.y199{bottom:676.213333pt;}
.ycf{bottom:681.493333pt;}
.yb{bottom:682.693333pt;}
.y68{bottom:683.813333pt;}
.y13f{bottom:684.213333pt;}
.y16f{bottom:684.853333pt;}
.y198{bottom:691.813333pt;}
.y3b{bottom:693.973333pt;}
.y13e{bottom:699.813333pt;}
.y67{bottom:700.213333pt;}
.y16e{bottom:700.453333pt;}
.y114{bottom:704.133333pt;}
.yff{bottom:705.493333pt;}
.y3a{bottom:709.573333pt;}
.yce{bottom:713.093333pt;}
.ye6{bottom:714.213333pt;}
.ya{bottom:714.533333pt;}
.y197{bottom:715.493333pt;}
.y66{bottom:716.533333pt;}
.y16d{bottom:716.853333pt;}
.y39{bottom:725.253333pt;}
.ycd{bottom:728.773333pt;}
.y196{bottom:731.093333pt;}
.y13d{bottom:731.493333pt;}
.y16c{bottom:732.453333pt;}
.y65{bottom:740.933333pt;}
.y113{bottom:744.053333pt;}
.ycc{bottom:744.373333pt;}
.y9{bottom:746.533333pt;}
.y195{bottom:746.693333pt;}
.y13c{bottom:747.093333pt;}
.y16b{bottom:748.853333pt;}
.ya3{bottom:749.733333pt;}
.yb4{bottom:751.013333pt;}
.y38{bottom:756.853333pt;}
.ycb{bottom:760.053333pt;}
.yfe{bottom:761.093333pt;}
.y13b{bottom:762.693333pt;}
.y16a{bottom:764.453333pt;}
.ye5{bottom:769.733333pt;}
.y194{bottom:770.373333pt;}
.y37{bottom:772.533333pt;}
.y64{bottom:772.613333pt;}
.yca{bottom:775.653333pt;}
.y13a{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y112{bottom:783.973333pt;}
.y193{bottom:785.973333pt;}
.y36{bottom:788.133333pt;}
.y63{bottom:788.213333pt;}
.y169{bottom:789.173333pt;}
.yc9{bottom:791.253333pt;}
.y139{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y192{bottom:801.653333pt;}
.y62{bottom:803.893333pt;}
.yc8{bottom:806.933333pt;}
.y1b9{bottom:809.653333pt;}
.y61{bottom:819.493333pt;}
.y35{bottom:819.733333pt;}
.y168{bottom:822.053333pt;}
.yb3{bottom:822.213333pt;}
.yc7{bottom:822.533333pt;}
.y191{bottom:825.253333pt;}
.y138{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y34{bottom:835.413333pt;}
.y9d{bottom:836.533333pt;}
.y167{bottom:837.733333pt;}
.yc6{bottom:838.213333pt;}
.y10e{bottom:839.493333pt;}
.y190{bottom:840.853333pt;}
.y137{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yfd{bottom:847.893333pt;}
.y33{bottom:851.013333pt;}
.y60{bottom:851.093333pt;}
.y166{bottom:853.333333pt;}
.yc5{bottom:853.813333pt;}
.y18f{bottom:856.533333pt;}
.y136{bottom:856.853333pt;}
.y1b8{bottom:864.533333pt;}
.y5f{bottom:866.773333pt;}
.y165{bottom:868.933333pt;}
.yc4{bottom:869.413333pt;}
.ye0{bottom:872.213333pt;}
.y135{bottom:872.533333pt;}
.y32{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y18e{bottom:880.133333pt;}
.y164{bottom:884.613333pt;}
.y134{bottom:888.133333pt;}
.y5e{bottom:890.373333pt;}
.y18d{bottom:895.813333pt;}
.y10d{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.y163{bottom:900.240000pt;}
.yc3{bottom:900.480000pt;}
.y133{bottom:903.840000pt;}
.yb2{bottom:909.040000pt;}
.yc2{bottom:912.960000pt;}
.y162{bottom:915.840000pt;}
.y31{bottom:917.840000pt;}
.yfc{bottom:919.120000pt;}
.y18c{bottom:919.440000pt;}
.y5d{bottom:922.320000pt;}
.yc1{bottom:923.760000pt;}
.y161{bottom:931.520000pt;}
.y30{bottom:933.760000pt;}
.y18b{bottom:935.040000pt;}
.y132{bottom:935.440000pt;}
.y99{bottom:939.040000pt;}
.y1b7{bottom:943.040000pt;}
.y160{bottom:947.120000pt;}
.y131{bottom:951.040000pt;}
.y10c{bottom:954.640000pt;}
.y18a{bottom:958.720000pt;}
.y15f{bottom:962.800000pt;}
.y5c{bottom:965.200000pt;}
.y2f{bottom:966.720000pt;}
.y189{bottom:974.320000pt;}
.y15e{bottom:978.400000pt;}
.yaf{bottom:980.240000pt;}
.y5b{bottom:980.800000pt;}
.y2e{bottom:982.320000pt;}
.ydf{bottom:990.320000pt;}
.y5a{bottom:997.200000pt;}
.y2d{bottom:998.000000pt;}
.y15d{bottom:1002.320000pt;}
.y59{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h15{height:23.680000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h1c{height:35.280000pt;}
.h22{height:39.200000pt;}
.h20{height:39.280000pt;}
.h3{height:39.589844pt;}
.h17{height:42.123594pt;}
.hc{height:45.246562pt;}
.h12{height:45.360000pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.hd{height:54.880000pt;}
.h9{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.h21{height:58.986667pt;}
.ha{height:60.961875pt;}
.h1f{height:66.480000pt;}
.h14{height:70.480000pt;}
.h10{height:70.560000pt;}
.h16{height:70.586667pt;}
.h4{height:73.795469pt;}
.h1b{height:82.160000pt;}
.hf{height:86.160000pt;}
.h13{height:86.186667pt;}
.h1e{height:101.760000pt;}
.h11{height:101.840000pt;}
.he{height:101.866667pt;}
.h1a{height:117.440000pt;}
.h1d{height:117.466667pt;}
.h19{height:133.066667pt;}
.h18{height:148.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:46.346667pt;}
.w1a{width:49.520000pt;}
.wf{width:65.760000pt;}
.w17{width:70.560000pt;}
.w12{width:74.400000pt;}
.w10{width:84.000000pt;}
.we{width:86.906667pt;}
.wb{width:90.906667pt;}
.w8{width:101.306667pt;}
.w14{width:102.080000pt;}
.wd{width:103.680000pt;}
.w16{width:107.546667pt;}
.w3{width:108.906667pt;}
.wc{width:110.640000pt;}
.w7{width:114.240000pt;}
.w5{width:117.866667pt;}
.w11{width:125.840000pt;}
.w6{width:128.560000pt;}
.w18{width:130.480000pt;}
.w15{width:136.320000pt;}
.w1b{width:147.680000pt;}
.w19{width:185.546667pt;}
.w4{width:199.520000pt;}
.wa{width:275.520000pt;}
.w1c{width:286.986667pt;}
.w9{width:293.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:69.599988pt;}
.xf{left:70.639988pt;}
.x4{left:84.479988pt;}
.x24{left:98.879988pt;}
.x5{left:108.479988pt;}
.x20{left:113.359988pt;}
.x19{left:136.240000pt;}
.x11{left:152.666667pt;}
.xd{left:163.066667pt;}
.x9{left:170.666667pt;}
.x1a{left:183.226667pt;}
.x2{left:222.666655pt;}
.x18{left:247.146655pt;}
.x7{left:250.986655pt;}
.x12{left:263.946667pt;}
.x1b{left:285.946667pt;}
.x22{left:297.466667pt;}
.x10{left:346.906655pt;}
.x13{left:368.266667pt;}
.xa{left:370.826667pt;}
.x1c{left:422.986667pt;}
.x23{left:445.866667pt;}
.x14{left:455.893333pt;}
.xe{left:457.333333pt;}
.xb{left:489.333333pt;}
.x15{left:522.293333pt;}
.x1d{left:531.173333pt;}
.x6{left:580.053322pt;}
.x1e{left:602.373333pt;}
.x16{left:607.013333pt;}
.xc{left:618.613333pt;}
.x1f{left:705.013322pt;}
.x21{left:718.773322pt;}
.x3{left:726.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; }
  