
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_d2d8a8a79b2a203829032929.woff')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_ee63220a133e97153b16b596.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1fdd699b496c096ff7710844.woff')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_80aab140b41570edcafd9ba6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_74d85b468760534b65a6e5a8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ead822d985406053b3ac337.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_72762f0acadc8a230eac2065.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5caa95c06a5e185b0cef2bcb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c37bd1603889042cdc2fb30c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.427200px;}
.ls12{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.049680px;}
.ls16{letter-spacing:-0.038880px;}
.lsc{letter-spacing:-0.037800px;}
.ls15{letter-spacing:-0.031680px;}
.ls19{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.108600px;}
.ls1a{letter-spacing:0.119400px;}
.ls7{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.166200px;}
.ls13{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:16.766640px;}
.ls1b{letter-spacing:35.486640px;}
.ls23{letter-spacing:47.726640px;}
.ls1c{letter-spacing:48.446640px;}
.ls11{letter-spacing:63.566640px;}
.lse{letter-spacing:71.126640px;}
.ls5{letter-spacing:72.045360px;}
.lsf{letter-spacing:80.126640px;}
.ls21{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;}
}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.ws7{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.211640px;}
.ws3{word-spacing:-13.188600px;}
.ws9{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.176720px;}
.ws8{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-3.642262px;}
._5{margin-left:-2.585400px;}
._0{margin-left:-1.064268px;}
._1{width:1.021896px;}
._9{width:2.044224px;}
._6{width:3.607200px;}
._8{width:4.930104px;}
._3{width:6.553200px;}
._4{width:7.949400px;}
._7{width:9.237480px;}
._31{width:10.254840px;}
._2{width:11.328240px;}
._b{width:15.270480px;}
._32{width:16.833600px;}
._33{width:20.483028px;}
._11{width:25.310520px;}
._12{width:26.437440px;}
._25{width:27.835560px;}
._18{width:29.432160px;}
._19{width:30.689400px;}
._1d{width:32.825520px;}
._1e{width:34.402440px;}
._c{width:37.214280px;}
._d{width:38.293680px;}
._15{width:39.318480px;}
._2c{width:58.436640px;}
._2d{width:59.551320px;}
._16{width:76.532760px;}
._24{width:81.642960px;}
._1c{width:84.528720px;}
._21{width:85.971600px;}
._28{width:87.527880px;}
._30{width:89.157960px;}
._10{width:90.781200px;}
._2b{width:92.404440px;}
._13{width:109.658880px;}
._22{width:115.069680px;}
._1a{width:118.676880px;}
._1f{width:119.759040px;}
._26{width:121.562640px;}
._2e{width:123.005520px;}
._e{width:125.169840px;}
._29{width:126.612720px;}
._14{width:177.400560px;}
._23{width:191.800560px;}
._1b{width:200.440560px;}
._a{width:202.773600px;}
._20{width:204.040560px;}
._27{width:208.360560px;}
._2f{width:212.320560px;}
._f{width:217.720560px;}
._2a{width:222.040560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y54{bottom:7.830000px;}
.y6e{bottom:7.860000px;}
.y5a{bottom:7.920000px;}
.yc8{bottom:17.550000px;}
.ya9{bottom:17.580000px;}
.y8d{bottom:17.640000px;}
.y80{bottom:21.330000px;}
.y8a{bottom:25.470000px;}
.y99{bottom:25.500000px;}
.y109{bottom:33.660000px;}
.y58{bottom:35.190000px;}
.y6c{bottom:35.220000px;}
.y69{bottom:35.280000px;}
.y7f{bottom:38.880000px;}
.y86{bottom:38.970000px;}
.y83{bottom:39.690000px;}
.y9d{bottom:52.740000px;}
.y85{bottom:57.690000px;}
.y9b{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y82{bottom:75.240000px;}
.y60{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.y7c{bottom:115.860000px;}
.ye4{bottom:116.490000px;}
.yce{bottom:122.610000px;}
.y4f{bottom:123.600000px;}
.y7b{bottom:133.410000px;}
.ye3{bottom:134.040000px;}
.y15a{bottom:139.620000px;}
.y4e{bottom:141.150000px;}
.y7a{bottom:150.960000px;}
.y147{bottom:151.680000px;}
.y159{bottom:157.260000px;}
.ycd{bottom:158.250000px;}
.y4d{bottom:159.600000px;}
.y186{bottom:165.270000px;}
.ye2{bottom:167.070000px;}
.y79{bottom:168.600000px;}
.y146{bottom:169.230000px;}
.y158{bottom:174.810000px;}
.ycc{bottom:175.800000px;}
.y23{bottom:176.340000px;}
.y4c{bottom:178.050000px;}
.y106{bottom:185.430000px;}
.y78{bottom:186.150000px;}
.y145{bottom:186.870000px;}
.ycb{bottom:193.440000px;}
.y22{bottom:193.980000px;}
.ye1{bottom:194.340000px;}
.y4b{bottom:195.600000px;}
.y129{bottom:199.290000px;}
.y185{bottom:200.910000px;}
.y144{bottom:204.420000px;}
.y157{bottom:210.360000px;}
.yca{bottom:210.990000px;}
.y21{bottom:211.530000px;}
.y77{bottom:212.700000px;}
.ya5{bottom:213.600000px;}
.y128{bottom:216.840000px;}
.y184{bottom:218.460000px;}
.y105{bottom:220.980000px;}
.ye0{bottom:221.700000px;}
.y143{bottom:222.060000px;}
.y1ad{bottom:226.830000px;}
.y156{bottom:228.000000px;}
.yc9{bottom:228.540000px;}
.y20{bottom:229.170000px;}
.ya4{bottom:231.150000px;}
.y4a{bottom:232.050000px;}
.y127{bottom:234.390000px;}
.y183{bottom:236.100000px;}
.y104{bottom:238.620000px;}
.y142{bottom:239.610000px;}
.y1ac{bottom:244.470000px;}
.y76{bottom:245.370000px;}
.y155{bottom:245.550000px;}
.y1f{bottom:246.720000px;}
.ya3{bottom:248.790000px;}
.ydf{bottom:249.060000px;}
.y126{bottom:252.030000px;}
.y103{bottom:256.170000px;}
.y141{bottom:257.160000px;}
.yc6{bottom:261.570000px;}
.y1ab{bottom:262.020000px;}
.y154{bottom:263.190000px;}
.ya2{bottom:266.340000px;}
.y49{bottom:267.600000px;}
.y125{bottom:269.580000px;}
.y182{bottom:271.650000px;}
.y1e{bottom:273.630000px;}
.y102{bottom:273.720000px;}
.y140{bottom:274.800000px;}
.yde{bottom:276.420000px;}
.y74{bottom:278.310000px;}
.y1aa{bottom:279.660000px;}
.y153{bottom:280.740000px;}
.ya1{bottom:283.890000px;}
.y124{bottom:287.220000px;}
.yc7{bottom:288.840000px;}
.y181{bottom:289.200000px;}
.y101{bottom:291.360000px;}
.ya0{bottom:301.530000px;}
.y48{bottom:303.150000px;}
.y123{bottom:304.770000px;}
.y75{bottom:305.670000px;}
.y1a9{bottom:306.210000px;}
.y180{bottom:306.840000px;}
.y13e{bottom:307.740000px;}
.y100{bottom:308.910000px;}
.yc5{bottom:316.200000px;}
.y152{bottom:316.290000px;}
.y9f{bottom:319.080000px;}
.y47{bottom:321.600000px;}
.y1d{bottom:322.230000px;}
.y1a8{bottom:323.760000px;}
.y17f{bottom:324.390000px;}
.ydd{bottom:325.110000px;}
.yff{bottom:326.550000px;}
.y72{bottom:332.940000px;}
.y151{bottom:333.930000px;}
.y13f{bottom:335.100000px;}
.y9e{bottom:336.720000px;}
.y121{bottom:337.710000px;}
.y46{bottom:339.960000px;}
.y1a7{bottom:341.400000px;}
.y17e{bottom:341.940000px;}
.y150{bottom:351.480000px;}
.ydc{bottom:351.660000px;}
.y1a6{bottom:358.950000px;}
.y1c{bottom:359.220000px;}
.yfd{bottom:359.490000px;}
.y17d{bottom:359.580000px;}
.y73{bottom:360.300000px;}
.y13d{bottom:362.370000px;}
.y122{bottom:365.070000px;}
.y45{bottom:367.410000px;}
.y14f{bottom:369.120000px;}
.y9a{bottom:369.660000px;}
.y1b{bottom:376.860000px;}
.y17c{bottom:377.130000px;}
.yc4{bottom:382.530000px;}
.yda{bottom:384.690000px;}
.y1a5{bottom:385.590000px;}
.yfe{bottom:386.850000px;}
.y70{bottom:387.660000px;}
.y120{bottom:392.430000px;}
.y1a{bottom:394.410000px;}
.y17b{bottom:394.770000px;}
.y44{bottom:402.960000px;}
.y1a4{bottom:403.140000px;}
.y14e{bottom:404.670000px;}
.yc3{bottom:409.080000px;}
.y13c{bottom:411.150000px;}
.ydb{bottom:411.960000px;}
.y19{bottom:412.050000px;}
.y17a{bottom:412.320000px;}
.yfc{bottom:414.120000px;}
.y9c{bottom:414.570000px;}
.y71{bottom:415.020000px;}
.y43{bottom:421.410000px;}
.y14d{bottom:422.220000px;}
.y1a3{bottom:429.690000px;}
.y179{bottom:429.870000px;}
.y13b{bottom:437.700000px;}
.yd9{bottom:439.320000px;}
.y14c{bottom:439.860000px;}
.y11f{bottom:441.120000px;}
.y6f{bottom:442.290000px;}
.yc2{bottom:444.720000px;}
.y1a2{bottom:447.330000px;}
.y18{bottom:447.600000px;}
.y42{bottom:448.860000px;}
.y14b{bottom:457.410000px;}
.y98{bottom:459.480000px;}
.yc1{bottom:462.270000px;}
.yfb{bottom:462.810000px;}
.y1a1{bottom:464.880000px;}
.y17{bottom:465.150000px;}
.y178{bottom:465.510000px;}
.y11e{bottom:467.670000px;}
.y6b{bottom:469.650000px;}
.y13a{bottom:473.280000px;}
.yc0{bottom:479.850000px;}
.y16{bottom:482.820000px;}
.y177{bottom:483.090000px;}
.y14a{bottom:484.350000px;}
.y41{bottom:484.440000px;}
.y11d{bottom:485.250000px;}
.yfa{bottom:489.480000px;}
.y139{bottom:490.920000px;}
.y1a0{bottom:491.550000px;}
.y6d{bottom:497.040000px;}
.ybf{bottom:497.490000px;}
.y15{bottom:500.370000px;}
.y176{bottom:500.730000px;}
.yd8{bottom:505.590000px;}
.y138{bottom:508.470000px;}
.y19f{bottom:509.100000px;}
.y40{bottom:511.080000px;}
.ybe{bottom:515.040000px;}
.y11b{bottom:515.310000px;}
.y175{bottom:518.280000px;}
.y68{bottom:524.310000px;}
.yf9{bottom:525.030000px;}
.y97{bottom:525.840000px;}
.y137{bottom:526.110000px;}
.yd7{bottom:532.230000px;}
.ybd{bottom:532.590000px;}
.y19e{bottom:535.650000px;}
.y174{bottom:535.830000px;}
.y14{bottom:535.920000px;}
.y11c{bottom:542.580000px;}
.yf8{bottom:542.670000px;}
.y136{bottom:543.660000px;}
.y3f{bottom:546.630000px;}
.ybc{bottom:550.230000px;}
.y6a{bottom:551.670000px;}
.y96{bottom:552.390000px;}
.y19d{bottom:553.290000px;}
.y173{bottom:553.470000px;}
.y13{bottom:553.560000px;}
.yf7{bottom:560.220000px;}
.y135{bottom:561.210000px;}
.ybb{bottom:567.780000px;}
.y11a{bottom:569.940000px;}
.y19c{bottom:570.840000px;}
.y172{bottom:571.020000px;}
.y12{bottom:571.110000px;}
.y3e{bottom:573.180000px;}
.yf6{bottom:577.770000px;}
.y134{bottom:578.850000px;}
.y64{bottom:579.030000px;}
.yba{bottom:585.420000px;}
.y95{bottom:587.940000px;}
.y171{bottom:588.660000px;}
.y11{bottom:588.750000px;}
.yf5{bottom:595.410000px;}
.y133{bottom:596.400000px;}
.y19b{bottom:597.480000px;}
.yb9{bottom:602.970000px;}
.y94{bottom:605.580000px;}
.y170{bottom:606.210000px;}
.y10{bottom:606.300000px;}
.y67{bottom:606.390000px;}
.y3d{bottom:608.820000px;}
.yf4{bottom:612.960000px;}
.y19a{bottom:615.030000px;}
.y119{bottom:618.630000px;}
.yd6{bottom:620.520000px;}
.y93{bottom:623.130000px;}
.y16f{bottom:623.760000px;}
.yf3{bottom:630.600000px;}
.y199{bottom:632.580000px;}
.y132{bottom:633.120000px;}
.y66{bottom:633.660000px;}
.y3c{bottom:635.370000px;}
.yb7{bottom:635.910000px;}
.yd5{bottom:638.160000px;}
.y92{bottom:640.770000px;}
.y16e{bottom:641.400000px;}
.yf{bottom:641.850000px;}
.y118{bottom:645.180000px;}
.y198{bottom:650.220000px;}
.y130{bottom:653.550000px;}
.yd4{bottom:655.710000px;}
.y91{bottom:658.320000px;}
.ye{bottom:659.490000px;}
.y65{bottom:661.020000px;}
.yb8{bottom:663.270000px;}
.yf1{bottom:663.540000px;}
.y197{bottom:667.770000px;}
.y16d{bottom:668.310000px;}
.y3b{bottom:671.010000px;}
.y116{bottom:675.240000px;}
.y90{bottom:675.870000px;}
.yd{bottom:677.040000px;}
.y131{bottom:680.910000px;}
.y5f{bottom:688.380000px;}
.yd2{bottom:688.740000px;}
.yb6{bottom:690.630000px;}
.yf2{bottom:690.900000px;}
.y8f{bottom:693.510000px;}
.y196{bottom:694.410000px;}
.yc{bottom:694.680000px;}
.y3a{bottom:697.560000px;}
.y117{bottom:702.510000px;}
.y12f{bottom:708.180000px;}
.y8e{bottom:711.060000px;}
.y195{bottom:711.960000px;}
.y63{bottom:715.740000px;}
.yd3{bottom:716.010000px;}
.y16c{bottom:716.550000px;}
.yf0{bottom:718.170000px;}
.y115{bottom:729.870000px;}
.y39{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.y16b{bottom:734.190000px;}
.y194{bottom:738.510000px;}
.y62{bottom:743.010000px;}
.yd1{bottom:743.370000px;}
.y8b{bottom:744.000000px;}
.y16a{bottom:751.740000px;}
.y193{bottom:756.150000px;}
.yb5{bottom:756.870000px;}
.ya{bottom:757.140000px;}
.y38{bottom:765.690000px;}
.yef{bottom:766.950000px;}
.y169{bottom:769.290000px;}
.y61{bottom:770.370000px;}
.y8c{bottom:771.360000px;}
.y114{bottom:778.560000px;}
.y192{bottom:782.700000px;}
.y37{bottom:783.330000px;}
.yb4{bottom:783.510000px;}
.y168{bottom:786.930000px;}
.y149{bottom:792.060000px;}
.yee{bottom:793.500000px;}
.y5d{bottom:797.730000px;}
.y89{bottom:798.720000px;}
.y191{bottom:800.340000px;}
.y12e{bottom:801.060000px;}
.y113{bottom:805.200000px;}
.y9{bottom:805.380000px;}
.yd0{bottom:809.700000px;}
.y36{bottom:810.240000px;}
.y148{bottom:818.700000px;}
.yb3{bottom:819.060000px;}
.y167{bottom:822.480000px;}
.y5e{bottom:825.000000px;}
.yed{bottom:826.080000px;}
.y190{bottom:826.890000px;}
.ycf{bottom:836.250000px;}
.yb2{bottom:836.700000px;}
.y166{bottom:840.030000px;}
.y112{bottom:840.750000px;}
.y8{bottom:841.200000px;}
.y5b{bottom:852.360000px;}
.y18f{bottom:853.440000px;}
.yb1{bottom:854.250000px;}
.y165{bottom:857.670000px;}
.y35{bottom:858.480000px;}
.yec{bottom:859.020000px;}
.y88{bottom:864.960000px;}
.yb0{bottom:871.800000px;}
.y164{bottom:875.220000px;}
.y34{bottom:876.030000px;}
.y111{bottom:876.300000px;}
.y7{bottom:877.200000px;}
.y5c{bottom:879.720000px;}
.y18e{bottom:880.080000px;}
.yeb{bottom:886.380000px;}
.yaf{bottom:889.440000px;}
.y87{bottom:891.600000px;}
.y33{bottom:893.670000px;}
.y110{bottom:893.940000px;}
.y18d{bottom:906.630000px;}
.yae{bottom:906.990000px;}
.y57{bottom:907.080000px;}
.y163{bottom:910.860000px;}
.y32{bottom:911.220000px;}
.y10f{bottom:911.490000px;}
.y6{bottom:913.200000px;}
.yea{bottom:913.740000px;}
.y81{bottom:921.570000px;}
.y18c{bottom:924.180000px;}
.yad{bottom:924.630000px;}
.y162{bottom:928.410000px;}
.y31{bottom:928.860000px;}
.y10e{bottom:929.130000px;}
.y59{bottom:934.350000px;}
.ye9{bottom:941.100000px;}
.yac{bottom:942.180000px;}
.y161{bottom:945.960000px;}
.y30{bottom:946.410000px;}
.y10d{bottom:946.680000px;}
.y5{bottom:949.290000px;}
.y18b{bottom:951.090000px;}
.yab{bottom:959.730000px;}
.y56{bottom:961.710000px;}
.y160{bottom:963.600000px;}
.y2f{bottom:963.960000px;}
.y10c{bottom:964.230000px;}
.y84{bottom:975.480000px;}
.y12d{bottom:977.370000px;}
.y15f{bottom:981.150000px;}
.y2e{bottom:981.600000px;}
.y10b{bottom:981.870000px;}
.y4{bottom:987.630000px;}
.y55{bottom:989.070000px;}
.ye8{bottom:989.790000px;}
.ya8{bottom:992.760000px;}
.y2d{bottom:999.150000px;}
.y18a{bottom:999.420000px;}
.y12b{bottom:1010.340000px;}
.y7e{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y108{bottom:1014.840000px;}
.y53{bottom:1016.460000px;}
.y15e{bottom:1016.820000px;}
.yaa{bottom:1020.060000px;}
.ye7{bottom:1025.370000px;}
.y189{bottom:1026.360000px;}
.y15d{bottom:1034.370000px;}
.y2c{bottom:1034.820000px;}
.y12c{bottom:1037.700000px;}
.y10a{bottom:1040.670000px;}
.ye6{bottom:1042.920000px;}
.ya7{bottom:1047.420000px;}
.y15c{bottom:1051.920000px;}
.y2b{bottom:1052.370000px;}
.ye5{bottom:1060.560000px;}
.y188{bottom:1063.350000px;}
.y12a{bottom:1064.970000px;}
.y52{bottom:1065.150000px;}
.y107{bottom:1066.500000px;}
.y15b{bottom:1069.560000px;}
.y2a{bottom:1069.920000px;}
.y7d{bottom:1087.110000px;}
.y29{bottom:1087.560000px;}
.y187{bottom:1090.260000px;}
.y51{bottom:1091.700000px;}
.y28{bottom:1105.110000px;}
.ya6{bottom:1113.750000px;}
.y27{bottom:1122.750000px;}
.y50{bottom:1127.610000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.h1c{height:25.110000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h16{height:35.580000px;}
.h3{height:39.155273px;}
.h18{height:44.190000px;}
.h1a{height:44.220000px;}
.h6{height:50.902383px;}
.h1d{height:50.940000px;}
.h7{height:52.311445px;}
.h14{height:53.100000px;}
.h17{height:53.190000px;}
.hf{height:53.910000px;}
.h13{height:53.940000px;}
.h12{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h19{height:71.019492px;}
.h4{height:72.985430px;}
.h1e{height:86.215422px;}
.h1b{height:89.100000px;}
.h15{height:89.490000px;}
.h11{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w48{width:41.940000px;}
.w40{width:42.030000px;}
.w4{width:44.280000px;}
.w3e{width:59.760000px;}
.w19{width:60.210000px;}
.w29{width:60.480000px;}
.wd{width:60.660000px;}
.w23{width:60.750000px;}
.w2e{width:60.840000px;}
.w13{width:61.020000px;}
.w44{width:63.630000px;}
.w43{width:65.250000px;}
.w39{width:65.520000px;}
.w47{width:65.880000px;}
.w4a{width:67.050000px;}
.w42{width:67.140000px;}
.w49{width:72.630000px;}
.w45{width:77.220000px;}
.w3f{width:77.310000px;}
.w1c{width:88.290000px;}
.w10{width:88.380000px;}
.w4b{width:88.470000px;}
.w3d{width:92.190000px;}
.w26{width:95.490000px;}
.wa{width:96.030000px;}
.w7{width:98.280000px;}
.w8{width:99.270000px;}
.w3a{width:100.740000px;}
.w41{width:102.540000px;}
.w46{width:102.630000px;}
.w1a{width:112.770000px;}
.w4e{width:114.480000px;}
.w4d{width:114.510000px;}
.w37{width:115.920000px;}
.w33{width:116.730000px;}
.w4c{width:119.340000px;}
.w16{width:120.780000px;}
.we{width:123.030000px;}
.w2f{width:123.840000px;}
.w14{width:124.650000px;}
.w2a{width:130.680000px;}
.w17{width:131.040000px;}
.w1f{width:131.490000px;}
.w24{width:131.760000px;}
.w27{width:132.390000px;}
.wb{width:133.020000px;}
.w1d{width:133.200000px;}
.w21{width:133.470000px;}
.w2c{width:133.920000px;}
.w35{width:134.280000px;}
.w11{width:134.820000px;}
.w31{width:135.180000px;}
.w15{width:149.070000px;}
.w25{width:151.140000px;}
.w9{width:152.040000px;}
.w20{width:152.940000px;}
.w1b{width:154.380000px;}
.wf{width:155.010000px;}
.w2b{width:159.240000px;}
.w30{width:161.400000px;}
.w3b{width:165.150000px;}
.w34{width:165.630000px;}
.w18{width:178.050000px;}
.w28{width:181.650000px;}
.w1e{width:183.810000px;}
.w22{width:184.620000px;}
.w2d{width:185.790000px;}
.w36{width:186.780000px;}
.wc{width:187.140000px;}
.w3c{width:187.290000px;}
.w12{width:188.130000px;}
.w32{width:189.210000px;}
.w6{width:208.920000px;}
.w5{width:215.220000px;}
.w38{width:265.800000px;}
.w3{width:668.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x53{left:101.340000px;}
.x6{left:112.140000px;}
.x5{left:122.039987px;}
.x2a{left:146.880000px;}
.x8{left:157.140000px;}
.x2{left:192.719987px;}
.x4e{left:208.020000px;}
.x54{left:216.570000px;}
.x16{left:218.550000px;}
.xc{left:221.610000px;}
.x49{left:223.410000px;}
.x11{left:224.490000px;}
.x21{left:228.720000px;}
.x22{left:230.880000px;}
.x27{left:235.200000px;}
.x30{left:237.810000px;}
.x31{left:298.290000px;}
.x36{left:300.270000px;}
.x3f{left:301.350000px;}
.x44{left:304.680000px;}
.x2e{left:306.480000px;}
.x1e{left:311.520000px;}
.x12{left:313.590000px;}
.x20{left:316.920000px;}
.xd{left:318.450000px;}
.x23{left:319.980000px;}
.x28{left:324.300000px;}
.x4f{left:328.080000px;}
.x55{left:331.770000px;}
.x17{left:340.050000px;}
.x9{left:373.080000px;}
.x32{left:376.320000px;}
.x37{left:378.210000px;}
.x40{left:379.380000px;}
.x45{left:382.710000px;}
.x4a{left:390.630000px;}
.x3b{left:396.030000px;}
.x50{left:406.110000px;}
.x2b{left:413.490000px;}
.x33{left:419.070000px;}
.x38{left:420.960000px;}
.x41{left:422.130000px;}
.x46{left:425.460000px;}
.x4b{left:433.380000px;}
.x3c{left:438.780000px;}
.x1f{left:445.800000px;}
.x1b{left:446.970000px;}
.x13{left:449.220000px;}
.xe{left:452.190000px;}
.x24{left:455.970000px;}
.x29{left:459.300000px;}
.x18{left:471.900000px;}
.x2c{left:479.730000px;}
.x2f{left:494.580000px;}
.x34{left:522.330000px;}
.x39{left:524.310000px;}
.x42{left:525.390000px;}
.x47{left:528.810000px;}
.x4c{left:536.730000px;}
.x3d{left:542.130000px;}
.x51{left:552.120000px;}
.x56{left:562.200000px;}
.x2d{left:581.190000px;}
.xa{left:582.810000px;}
.x35{left:590.190000px;}
.x3a{left:592.170000px;}
.x43{left:593.250000px;}
.x48{left:596.670000px;}
.x4d{left:604.590000px;}
.x3e{left:609.990000px;}
.x52{left:619.980000px;}
.x1c{left:631.590000px;}
.x14{left:638.070000px;}
.xf{left:640.050000px;}
.x25{left:645.900000px;}
.x19{left:650.670000px;}
.x57{left:677.400000px;}
.xb{left:681.810000px;}
.x1d{left:692.970000px;}
.x15{left:699.810000px;}
.x10{left:701.430000px;}
.x26{left:707.730000px;}
.x1a{left:711.690000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.379733pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.044160pt;}
.ls16{letter-spacing:-0.034560pt;}
.lsc{letter-spacing:-0.033600pt;}
.ls15{letter-spacing:-0.028160pt;}
.ls19{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.096533pt;}
.ls1a{letter-spacing:0.106133pt;}
.ls7{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.147733pt;}
.ls13{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:14.903680pt;}
.ls1b{letter-spacing:31.543680pt;}
.ls23{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:43.063680pt;}
.ls11{letter-spacing:56.503680pt;}
.lse{letter-spacing:63.223680pt;}
.ls5{letter-spacing:64.040320pt;}
.lsf{letter-spacing:71.223680pt;}
.ls21{letter-spacing:71.863680pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.ws7{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.743680pt;}
.ws3{word-spacing:-11.723200pt;}
.ws9{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.712640pt;}
.ws8{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-3.237566pt;}
._5{margin-left:-2.298134pt;}
._0{margin-left:-0.946016pt;}
._1{width:0.908352pt;}
._9{width:1.817088pt;}
._6{width:3.206400pt;}
._8{width:4.382314pt;}
._3{width:5.825067pt;}
._4{width:7.066133pt;}
._7{width:8.211093pt;}
._31{width:9.115414pt;}
._2{width:10.069546pt;}
._b{width:13.573760pt;}
._32{width:14.963200pt;}
._33{width:18.207136pt;}
._11{width:22.498240pt;}
._12{width:23.499947pt;}
._25{width:24.742720pt;}
._18{width:26.161920pt;}
._19{width:27.279467pt;}
._1d{width:29.178240pt;}
._1e{width:30.579947pt;}
._c{width:33.079360pt;}
._d{width:34.038827pt;}
._15{width:34.949760pt;}
._2c{width:51.943680pt;}
._2d{width:52.934507pt;}
._16{width:68.029120pt;}
._24{width:72.571520pt;}
._1c{width:75.136640pt;}
._21{width:76.419200pt;}
._28{width:77.802560pt;}
._30{width:79.251520pt;}
._10{width:80.694400pt;}
._2b{width:82.137280pt;}
._13{width:97.474560pt;}
._22{width:102.284160pt;}
._1a{width:105.490560pt;}
._1f{width:106.452480pt;}
._26{width:108.055680pt;}
._2e{width:109.338240pt;}
._e{width:111.262080pt;}
._29{width:112.544640pt;}
._14{width:157.689387pt;}
._23{width:170.489387pt;}
._1b{width:178.169387pt;}
._a{width:180.243200pt;}
._20{width:181.369387pt;}
._27{width:185.209387pt;}
._2f{width:188.729387pt;}
._f{width:193.529387pt;}
._2a{width:197.369387pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:6.960000pt;}
.y6e{bottom:6.986667pt;}
.y5a{bottom:7.040000pt;}
.yc8{bottom:15.600000pt;}
.ya9{bottom:15.626667pt;}
.y8d{bottom:15.680000pt;}
.y80{bottom:18.960000pt;}
.y8a{bottom:22.640000pt;}
.y99{bottom:22.666667pt;}
.y109{bottom:29.920000pt;}
.y58{bottom:31.280000pt;}
.y6c{bottom:31.306667pt;}
.y69{bottom:31.360000pt;}
.y7f{bottom:34.560000pt;}
.y86{bottom:34.640000pt;}
.y83{bottom:35.280000pt;}
.y9d{bottom:46.880000pt;}
.y85{bottom:51.280000pt;}
.y9b{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y82{bottom:66.880000pt;}
.y60{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.y7c{bottom:102.986667pt;}
.ye4{bottom:103.546667pt;}
.yce{bottom:108.986667pt;}
.y4f{bottom:109.866667pt;}
.y7b{bottom:118.586667pt;}
.ye3{bottom:119.146667pt;}
.y15a{bottom:124.106667pt;}
.y4e{bottom:125.466667pt;}
.y7a{bottom:134.186667pt;}
.y147{bottom:134.826667pt;}
.y159{bottom:139.786667pt;}
.ycd{bottom:140.666667pt;}
.y4d{bottom:141.866667pt;}
.y186{bottom:146.906667pt;}
.ye2{bottom:148.506667pt;}
.y79{bottom:149.866667pt;}
.y146{bottom:150.426667pt;}
.y158{bottom:155.386667pt;}
.ycc{bottom:156.266667pt;}
.y23{bottom:156.746667pt;}
.y4c{bottom:158.266667pt;}
.y106{bottom:164.826667pt;}
.y78{bottom:165.466667pt;}
.y145{bottom:166.106667pt;}
.ycb{bottom:171.946667pt;}
.y22{bottom:172.426667pt;}
.ye1{bottom:172.746667pt;}
.y4b{bottom:173.866667pt;}
.y129{bottom:177.146667pt;}
.y185{bottom:178.586667pt;}
.y144{bottom:181.706667pt;}
.y157{bottom:186.986667pt;}
.yca{bottom:187.546667pt;}
.y21{bottom:188.026667pt;}
.y77{bottom:189.066667pt;}
.ya5{bottom:189.866667pt;}
.y128{bottom:192.746667pt;}
.y184{bottom:194.186667pt;}
.y105{bottom:196.426667pt;}
.ye0{bottom:197.066667pt;}
.y143{bottom:197.386667pt;}
.y1ad{bottom:201.626667pt;}
.y156{bottom:202.666667pt;}
.yc9{bottom:203.146667pt;}
.y20{bottom:203.706667pt;}
.ya4{bottom:205.466667pt;}
.y4a{bottom:206.266667pt;}
.y127{bottom:208.346667pt;}
.y183{bottom:209.866667pt;}
.y104{bottom:212.106667pt;}
.y142{bottom:212.986667pt;}
.y1ac{bottom:217.306667pt;}
.y76{bottom:218.106667pt;}
.y155{bottom:218.266667pt;}
.y1f{bottom:219.306667pt;}
.ya3{bottom:221.146667pt;}
.ydf{bottom:221.386667pt;}
.y126{bottom:224.026667pt;}
.y103{bottom:227.706667pt;}
.y141{bottom:228.586667pt;}
.yc6{bottom:232.506667pt;}
.y1ab{bottom:232.906667pt;}
.y154{bottom:233.946667pt;}
.ya2{bottom:236.746667pt;}
.y49{bottom:237.866667pt;}
.y125{bottom:239.626667pt;}
.y182{bottom:241.466667pt;}
.y1e{bottom:243.226667pt;}
.y102{bottom:243.306667pt;}
.y140{bottom:244.266667pt;}
.yde{bottom:245.706667pt;}
.y74{bottom:247.386667pt;}
.y1aa{bottom:248.586667pt;}
.y153{bottom:249.546667pt;}
.ya1{bottom:252.346667pt;}
.y124{bottom:255.306667pt;}
.yc7{bottom:256.746667pt;}
.y181{bottom:257.066667pt;}
.y101{bottom:258.986667pt;}
.ya0{bottom:268.026667pt;}
.y48{bottom:269.466667pt;}
.y123{bottom:270.906667pt;}
.y75{bottom:271.706667pt;}
.y1a9{bottom:272.186667pt;}
.y180{bottom:272.746667pt;}
.y13e{bottom:273.546667pt;}
.y100{bottom:274.586667pt;}
.yc5{bottom:281.066667pt;}
.y152{bottom:281.146667pt;}
.y9f{bottom:283.626667pt;}
.y47{bottom:285.866667pt;}
.y1d{bottom:286.426667pt;}
.y1a8{bottom:287.786667pt;}
.y17f{bottom:288.346667pt;}
.ydd{bottom:288.986667pt;}
.yff{bottom:290.266667pt;}
.y72{bottom:295.946667pt;}
.y151{bottom:296.826667pt;}
.y13f{bottom:297.866667pt;}
.y9e{bottom:299.306667pt;}
.y121{bottom:300.186667pt;}
.y46{bottom:302.186667pt;}
.y1a7{bottom:303.466667pt;}
.y17e{bottom:303.946667pt;}
.y150{bottom:312.426667pt;}
.ydc{bottom:312.586667pt;}
.y1a6{bottom:319.066667pt;}
.y1c{bottom:319.306667pt;}
.yfd{bottom:319.546667pt;}
.y17d{bottom:319.626667pt;}
.y73{bottom:320.266667pt;}
.y13d{bottom:322.106667pt;}
.y122{bottom:324.506667pt;}
.y45{bottom:326.586667pt;}
.y14f{bottom:328.106667pt;}
.y9a{bottom:328.586667pt;}
.y1b{bottom:334.986667pt;}
.y17c{bottom:335.226667pt;}
.yc4{bottom:340.026667pt;}
.yda{bottom:341.946667pt;}
.y1a5{bottom:342.746667pt;}
.yfe{bottom:343.866667pt;}
.y70{bottom:344.586667pt;}
.y120{bottom:348.826667pt;}
.y1a{bottom:350.586667pt;}
.y17b{bottom:350.906667pt;}
.y44{bottom:358.186667pt;}
.y1a4{bottom:358.346667pt;}
.y14e{bottom:359.706667pt;}
.yc3{bottom:363.626667pt;}
.y13c{bottom:365.466667pt;}
.ydb{bottom:366.186667pt;}
.y19{bottom:366.266667pt;}
.y17a{bottom:366.506667pt;}
.yfc{bottom:368.106667pt;}
.y9c{bottom:368.506667pt;}
.y71{bottom:368.906667pt;}
.y43{bottom:374.586667pt;}
.y14d{bottom:375.306667pt;}
.y1a3{bottom:381.946667pt;}
.y179{bottom:382.106667pt;}
.y13b{bottom:389.066667pt;}
.yd9{bottom:390.506667pt;}
.y14c{bottom:390.986667pt;}
.y11f{bottom:392.106667pt;}
.y6f{bottom:393.146667pt;}
.yc2{bottom:395.306667pt;}
.y1a2{bottom:397.626667pt;}
.y18{bottom:397.866667pt;}
.y42{bottom:398.986667pt;}
.y14b{bottom:406.586667pt;}
.y98{bottom:408.426667pt;}
.yc1{bottom:410.906667pt;}
.yfb{bottom:411.386667pt;}
.y1a1{bottom:413.226667pt;}
.y17{bottom:413.466667pt;}
.y178{bottom:413.786667pt;}
.y11e{bottom:415.706667pt;}
.y6b{bottom:417.466667pt;}
.y13a{bottom:420.693333pt;}
.yc0{bottom:426.533333pt;}
.y16{bottom:429.173333pt;}
.y177{bottom:429.413333pt;}
.y14a{bottom:430.533333pt;}
.y41{bottom:430.613333pt;}
.y11d{bottom:431.333333pt;}
.yfa{bottom:435.093333pt;}
.y139{bottom:436.373333pt;}
.y1a0{bottom:436.933333pt;}
.y6d{bottom:441.813333pt;}
.ybf{bottom:442.213333pt;}
.y15{bottom:444.773333pt;}
.y176{bottom:445.093333pt;}
.yd8{bottom:449.413333pt;}
.y138{bottom:451.973333pt;}
.y19f{bottom:452.533333pt;}
.y40{bottom:454.293333pt;}
.ybe{bottom:457.813333pt;}
.y11b{bottom:458.053333pt;}
.y175{bottom:460.693333pt;}
.y68{bottom:466.053333pt;}
.yf9{bottom:466.693333pt;}
.y97{bottom:467.413333pt;}
.y137{bottom:467.653333pt;}
.yd7{bottom:473.093333pt;}
.ybd{bottom:473.413333pt;}
.y19e{bottom:476.133333pt;}
.y174{bottom:476.293333pt;}
.y14{bottom:476.373333pt;}
.y11c{bottom:482.293333pt;}
.yf8{bottom:482.373333pt;}
.y136{bottom:483.253333pt;}
.y3f{bottom:485.893333pt;}
.ybc{bottom:489.093333pt;}
.y6a{bottom:490.373333pt;}
.y96{bottom:491.013333pt;}
.y19d{bottom:491.813333pt;}
.y173{bottom:491.973333pt;}
.y13{bottom:492.053333pt;}
.yf7{bottom:497.973333pt;}
.y135{bottom:498.853333pt;}
.ybb{bottom:504.693333pt;}
.y11a{bottom:506.613333pt;}
.y19c{bottom:507.413333pt;}
.y172{bottom:507.573333pt;}
.y12{bottom:507.653333pt;}
.y3e{bottom:509.493333pt;}
.yf6{bottom:513.573333pt;}
.y134{bottom:514.533333pt;}
.y64{bottom:514.693333pt;}
.yba{bottom:520.373333pt;}
.y95{bottom:522.613333pt;}
.y171{bottom:523.253333pt;}
.y11{bottom:523.333333pt;}
.yf5{bottom:529.253333pt;}
.y133{bottom:530.133333pt;}
.y19b{bottom:531.093333pt;}
.yb9{bottom:535.973333pt;}
.y94{bottom:538.293333pt;}
.y170{bottom:538.853333pt;}
.y10{bottom:538.933333pt;}
.y67{bottom:539.013333pt;}
.y3d{bottom:541.173333pt;}
.yf4{bottom:544.853333pt;}
.y19a{bottom:546.693333pt;}
.y119{bottom:549.893333pt;}
.yd6{bottom:551.573333pt;}
.y93{bottom:553.893333pt;}
.y16f{bottom:554.453333pt;}
.yf3{bottom:560.533333pt;}
.y199{bottom:562.293333pt;}
.y132{bottom:562.773333pt;}
.y66{bottom:563.253333pt;}
.y3c{bottom:564.773333pt;}
.yb7{bottom:565.253333pt;}
.yd5{bottom:567.253333pt;}
.y92{bottom:569.573333pt;}
.y16e{bottom:570.133333pt;}
.yf{bottom:570.533333pt;}
.y118{bottom:573.493333pt;}
.y198{bottom:577.973333pt;}
.y130{bottom:580.933333pt;}
.yd4{bottom:582.853333pt;}
.y91{bottom:585.173333pt;}
.ye{bottom:586.213333pt;}
.y65{bottom:587.573333pt;}
.yb8{bottom:589.573333pt;}
.yf1{bottom:589.813333pt;}
.y197{bottom:593.573333pt;}
.y16d{bottom:594.053333pt;}
.y3b{bottom:596.453333pt;}
.y116{bottom:600.213333pt;}
.y90{bottom:600.773333pt;}
.yd{bottom:601.813333pt;}
.y131{bottom:605.253333pt;}
.y5f{bottom:611.893333pt;}
.yd2{bottom:612.213333pt;}
.yb6{bottom:613.893333pt;}
.yf2{bottom:614.133333pt;}
.y8f{bottom:616.453333pt;}
.y196{bottom:617.253333pt;}
.yc{bottom:617.493333pt;}
.y3a{bottom:620.053333pt;}
.y117{bottom:624.453333pt;}
.y12f{bottom:629.493333pt;}
.y8e{bottom:632.053333pt;}
.y195{bottom:632.853333pt;}
.y63{bottom:636.213333pt;}
.yd3{bottom:636.453333pt;}
.y16c{bottom:636.933333pt;}
.yf0{bottom:638.373333pt;}
.y115{bottom:648.773333pt;}
.y39{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.y16b{bottom:652.613333pt;}
.y194{bottom:656.453333pt;}
.y62{bottom:660.453333pt;}
.yd1{bottom:660.773333pt;}
.y8b{bottom:661.333333pt;}
.y16a{bottom:668.213333pt;}
.y193{bottom:672.133333pt;}
.yb5{bottom:672.773333pt;}
.ya{bottom:673.013333pt;}
.y38{bottom:680.613333pt;}
.yef{bottom:681.733333pt;}
.y169{bottom:683.813333pt;}
.y61{bottom:684.773333pt;}
.y8c{bottom:685.653333pt;}
.y114{bottom:692.053333pt;}
.y192{bottom:695.733333pt;}
.y37{bottom:696.293333pt;}
.yb4{bottom:696.453333pt;}
.y168{bottom:699.493333pt;}
.y149{bottom:704.053333pt;}
.yee{bottom:705.333333pt;}
.y5d{bottom:709.093333pt;}
.y89{bottom:709.973333pt;}
.y191{bottom:711.413333pt;}
.y12e{bottom:712.053333pt;}
.y113{bottom:715.733333pt;}
.y9{bottom:715.893333pt;}
.yd0{bottom:719.733333pt;}
.y36{bottom:720.213333pt;}
.y148{bottom:727.733333pt;}
.yb3{bottom:728.053333pt;}
.y167{bottom:731.093333pt;}
.y5e{bottom:733.333333pt;}
.yed{bottom:734.293333pt;}
.y190{bottom:735.013333pt;}
.ycf{bottom:743.333333pt;}
.yb2{bottom:743.733333pt;}
.y166{bottom:746.693333pt;}
.y112{bottom:747.333333pt;}
.y8{bottom:747.733333pt;}
.y5b{bottom:757.653333pt;}
.y18f{bottom:758.613333pt;}
.yb1{bottom:759.333333pt;}
.y165{bottom:762.373333pt;}
.y35{bottom:763.093333pt;}
.yec{bottom:763.573333pt;}
.y88{bottom:768.853333pt;}
.yb0{bottom:774.933333pt;}
.y164{bottom:777.973333pt;}
.y34{bottom:778.693333pt;}
.y111{bottom:778.933333pt;}
.y7{bottom:779.733333pt;}
.y5c{bottom:781.973333pt;}
.y18e{bottom:782.293333pt;}
.yeb{bottom:787.893333pt;}
.yaf{bottom:790.613333pt;}
.y87{bottom:792.533333pt;}
.y33{bottom:794.373333pt;}
.y110{bottom:794.613333pt;}
.y18d{bottom:805.893333pt;}
.yae{bottom:806.213333pt;}
.y57{bottom:806.293333pt;}
.y163{bottom:809.653333pt;}
.y32{bottom:809.973333pt;}
.y10f{bottom:810.213333pt;}
.y6{bottom:811.733333pt;}
.yea{bottom:812.213333pt;}
.y81{bottom:819.173333pt;}
.y18c{bottom:821.493333pt;}
.yad{bottom:821.893333pt;}
.y162{bottom:825.253333pt;}
.y31{bottom:825.653333pt;}
.y10e{bottom:825.893333pt;}
.y59{bottom:830.533333pt;}
.ye9{bottom:836.533333pt;}
.yac{bottom:837.493333pt;}
.y161{bottom:840.853333pt;}
.y30{bottom:841.253333pt;}
.y10d{bottom:841.493333pt;}
.y5{bottom:843.813333pt;}
.y18b{bottom:845.413333pt;}
.yab{bottom:853.093333pt;}
.y56{bottom:854.853333pt;}
.y160{bottom:856.533333pt;}
.y2f{bottom:856.853333pt;}
.y10c{bottom:857.093333pt;}
.y84{bottom:867.093333pt;}
.y12d{bottom:868.773333pt;}
.y15f{bottom:872.133333pt;}
.y2e{bottom:872.533333pt;}
.y10b{bottom:872.773333pt;}
.y4{bottom:877.893333pt;}
.y55{bottom:879.173333pt;}
.ye8{bottom:879.813333pt;}
.ya8{bottom:882.453333pt;}
.y2d{bottom:888.133333pt;}
.y18a{bottom:888.373333pt;}
.y12b{bottom:898.080000pt;}
.y7e{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y108{bottom:902.080000pt;}
.y53{bottom:903.520000pt;}
.y15e{bottom:903.840000pt;}
.yaa{bottom:906.720000pt;}
.ye7{bottom:911.440000pt;}
.y189{bottom:912.320000pt;}
.y15d{bottom:919.440000pt;}
.y2c{bottom:919.840000pt;}
.y12c{bottom:922.400000pt;}
.y10a{bottom:925.040000pt;}
.ye6{bottom:927.040000pt;}
.ya7{bottom:931.040000pt;}
.y15c{bottom:935.040000pt;}
.y2b{bottom:935.440000pt;}
.ye5{bottom:942.720000pt;}
.y188{bottom:945.200000pt;}
.y12a{bottom:946.640000pt;}
.y52{bottom:946.800000pt;}
.y107{bottom:948.000000pt;}
.y15b{bottom:950.720000pt;}
.y2a{bottom:951.040000pt;}
.y7d{bottom:966.320000pt;}
.y29{bottom:966.720000pt;}
.y187{bottom:969.120000pt;}
.y51{bottom:970.400000pt;}
.y28{bottom:982.320000pt;}
.ya6{bottom:990.000000pt;}
.y27{bottom:998.000000pt;}
.y50{bottom:1002.320000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.h1c{height:22.320000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h16{height:31.626667pt;}
.h3{height:34.804688pt;}
.h18{height:39.280000pt;}
.h1a{height:39.306667pt;}
.h6{height:45.246562pt;}
.h1d{height:45.280000pt;}
.h7{height:46.499062pt;}
.h14{height:47.200000pt;}
.h17{height:47.280000pt;}
.hf{height:47.920000pt;}
.h13{height:47.946667pt;}
.h12{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h19{height:63.128437pt;}
.h4{height:64.875937pt;}
.h1e{height:76.635931pt;}
.h1b{height:79.200000pt;}
.h15{height:79.546667pt;}
.h11{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w48{width:37.280000pt;}
.w40{width:37.360000pt;}
.w4{width:39.360000pt;}
.w3e{width:53.120000pt;}
.w19{width:53.520000pt;}
.w29{width:53.760000pt;}
.wd{width:53.920000pt;}
.w23{width:54.000000pt;}
.w2e{width:54.080000pt;}
.w13{width:54.240000pt;}
.w44{width:56.560000pt;}
.w43{width:58.000000pt;}
.w39{width:58.240000pt;}
.w47{width:58.560000pt;}
.w4a{width:59.600000pt;}
.w42{width:59.680000pt;}
.w49{width:64.560000pt;}
.w45{width:68.640000pt;}
.w3f{width:68.720000pt;}
.w1c{width:78.480000pt;}
.w10{width:78.560000pt;}
.w4b{width:78.640000pt;}
.w3d{width:81.946667pt;}
.w26{width:84.880000pt;}
.wa{width:85.360000pt;}
.w7{width:87.360000pt;}
.w8{width:88.240000pt;}
.w3a{width:89.546667pt;}
.w41{width:91.146667pt;}
.w46{width:91.226667pt;}
.w1a{width:100.240000pt;}
.w4e{width:101.760000pt;}
.w4d{width:101.786667pt;}
.w37{width:103.040000pt;}
.w33{width:103.760000pt;}
.w4c{width:106.080000pt;}
.w16{width:107.360000pt;}
.we{width:109.360000pt;}
.w2f{width:110.080000pt;}
.w14{width:110.800000pt;}
.w2a{width:116.160000pt;}
.w17{width:116.480000pt;}
.w1f{width:116.880000pt;}
.w24{width:117.120000pt;}
.w27{width:117.680000pt;}
.wb{width:118.240000pt;}
.w1d{width:118.400000pt;}
.w21{width:118.640000pt;}
.w2c{width:119.040000pt;}
.w35{width:119.360000pt;}
.w11{width:119.840000pt;}
.w31{width:120.160000pt;}
.w15{width:132.506667pt;}
.w25{width:134.346667pt;}
.w9{width:135.146667pt;}
.w20{width:135.946667pt;}
.w1b{width:137.226667pt;}
.wf{width:137.786667pt;}
.w2b{width:141.546667pt;}
.w30{width:143.466667pt;}
.w3b{width:146.800000pt;}
.w34{width:147.226667pt;}
.w18{width:158.266667pt;}
.w28{width:161.466667pt;}
.w1e{width:163.386667pt;}
.w22{width:164.106667pt;}
.w2d{width:165.146667pt;}
.w36{width:166.026667pt;}
.wc{width:166.346667pt;}
.w3c{width:166.480000pt;}
.w12{width:167.226667pt;}
.w32{width:168.186667pt;}
.w6{width:185.706667pt;}
.w5{width:191.306667pt;}
.w38{width:236.266667pt;}
.w3{width:594.613333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x53{left:90.080000pt;}
.x6{left:99.680000pt;}
.x5{left:108.479988pt;}
.x2a{left:130.560000pt;}
.x8{left:139.680000pt;}
.x2{left:171.306655pt;}
.x4e{left:184.906667pt;}
.x54{left:192.506667pt;}
.x16{left:194.266667pt;}
.xc{left:196.986667pt;}
.x49{left:198.586667pt;}
.x11{left:199.546667pt;}
.x21{left:203.306667pt;}
.x22{left:205.226667pt;}
.x27{left:209.066667pt;}
.x30{left:211.386667pt;}
.x31{left:265.146667pt;}
.x36{left:266.906667pt;}
.x3f{left:267.866667pt;}
.x44{left:270.826667pt;}
.x2e{left:272.426667pt;}
.x1e{left:276.906667pt;}
.x12{left:278.746667pt;}
.x20{left:281.706667pt;}
.xd{left:283.066667pt;}
.x23{left:284.426667pt;}
.x28{left:288.266667pt;}
.x4f{left:291.626667pt;}
.x55{left:294.906667pt;}
.x17{left:302.266667pt;}
.x9{left:331.626667pt;}
.x32{left:334.506667pt;}
.x37{left:336.186667pt;}
.x40{left:337.226667pt;}
.x45{left:340.186667pt;}
.x4a{left:347.226667pt;}
.x3b{left:352.026667pt;}
.x50{left:360.986667pt;}
.x2b{left:367.546667pt;}
.x33{left:372.506667pt;}
.x38{left:374.186667pt;}
.x41{left:375.226667pt;}
.x46{left:378.186667pt;}
.x4b{left:385.226667pt;}
.x3c{left:390.026667pt;}
.x1f{left:396.266667pt;}
.x1b{left:397.306667pt;}
.x13{left:399.306667pt;}
.xe{left:401.946667pt;}
.x24{left:405.306667pt;}
.x29{left:408.266667pt;}
.x18{left:419.466667pt;}
.x2c{left:426.426667pt;}
.x2f{left:439.626667pt;}
.x34{left:464.293333pt;}
.x39{left:466.053333pt;}
.x42{left:467.013333pt;}
.x47{left:470.053333pt;}
.x4c{left:477.093333pt;}
.x3d{left:481.893333pt;}
.x51{left:490.773333pt;}
.x56{left:499.733333pt;}
.x2d{left:516.613333pt;}
.xa{left:518.053333pt;}
.x35{left:524.613333pt;}
.x3a{left:526.373333pt;}
.x43{left:527.333333pt;}
.x48{left:530.373333pt;}
.x4d{left:537.413333pt;}
.x3e{left:542.213333pt;}
.x52{left:551.093333pt;}
.x1c{left:561.413333pt;}
.x14{left:567.173333pt;}
.xf{left:568.933333pt;}
.x25{left:574.133333pt;}
.x19{left:578.373333pt;}
.x57{left:602.133333pt;}
.xb{left:606.053333pt;}
.x1d{left:615.973333pt;}
.x15{left:622.053333pt;}
.x10{left:623.493333pt;}
.x26{left:629.093333pt;}
.x1a{left:632.613333pt;}
.x3{left:711.413322pt;}
}




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