
    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_d7cfe7b8f33dd67c9f943536.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;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_03fee24927c0e4614c5a4ce5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3b55b95f17d7a97ef1eaa7e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_00f5f457c4105cc4cd14cd74.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_c79207ed37b1d9f39224fa42.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_822c4a6c90a62cf7c0e7b13a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8e86bc53fb823398b4746027.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_8f6cb75e5f1b65c7afcabe1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_760a07adf8fcb0768df0232b.woff2')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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v9{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.v5{vertical-align:63.360000px;}
.v6{vertical-align:126.300000px;}
.v7{vertical-align:189.360000px;}
.lse{letter-spacing:-1.800000px;}
.ls22{letter-spacing:-1.440000px;}
.ls35{letter-spacing:-1.392000px;}
.ls2c{letter-spacing:-1.074000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls3a{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.513600px;}
.ls2d{letter-spacing:-0.370200px;}
.ls23{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls2e{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.298800px;}
.ls2a{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.160000px;}
.ls37{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls3{letter-spacing:4.500000px;}
.ls3c{letter-spacing:5.040000px;}
.lsb{letter-spacing:5.940000px;}
.ls16{letter-spacing:6.480000px;}
.ls26{letter-spacing:7.200000px;}
.ls30{letter-spacing:7.920000px;}
.ls1b{letter-spacing:8.640000px;}
.ls17{letter-spacing:10.800000px;}
.ls36{letter-spacing:11.520000px;}
.ls38{letter-spacing:12.240000px;}
.ls4{letter-spacing:12.420000px;}
.ls21{letter-spacing:12.960000px;}
.ls8{letter-spacing:14.580000px;}
.ls3b{letter-spacing:15.120000px;}
.ls6{letter-spacing:17.460000px;}
.ls39{letter-spacing:18.000000px;}
.ls7{letter-spacing:18.180000px;}
.ls14{letter-spacing:18.720000px;}
.ls1e{letter-spacing:18.900000px;}
.ls9{letter-spacing:19.620000px;}
.ls31{letter-spacing:20.880000px;}
.ls2f{letter-spacing:21.600000px;}
.ls28{letter-spacing:22.320000px;}
.ls27{letter-spacing:23.760000px;}
.ls1f{letter-spacing:23.880000px;}
.ls33{letter-spacing:28.800000px;}
.ls1a{letter-spacing:33.840000px;}
.ls2{letter-spacing:57.600000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws23{word-spacing:-18.720000px;}
.ws1d{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.208000px;}
.wsb{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.426400px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws15{word-spacing:-13.086720px;}
.ws14{word-spacing:-12.780000px;}
.ws21{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.329400px;}
.ws22{word-spacing:-12.240000px;}
.ws1e{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.700000px;}
.ws1c{word-spacing:-11.360160px;}
.ws17{word-spacing:-11.340000px;}
.ws19{word-spacing:-10.969800px;}
.ws1b{word-spacing:-10.800000px;}
.ws20{word-spacing:-10.668000px;}
.ws18{word-spacing:-10.266000px;}
.ws3{word-spacing:-10.260000px;}
.ws4{word-spacing:-9.720000px;}
.ws1a{word-spacing:-7.560000px;}
.ws12{word-spacing:-0.183168px;}
.ws13{word-spacing:-0.173520px;}
.ws10{word-spacing:-0.046800px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:0.073200px;}
._1b{margin-left:-2.381760px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._2{width:2.700000px;}
._6{width:3.942960px;}
._5{width:4.966560px;}
._7{width:6.072960px;}
._15{width:7.124400px;}
._3{width:8.127360px;}
._10{width:9.382320px;}
._4{width:10.449120px;}
._1c{width:11.505840px;}
._8{width:12.561120px;}
._d{width:13.905360px;}
._1a{width:15.336000px;}
._c{width:17.017920px;}
._b{width:18.113760px;}
._e{width:19.668000px;}
._12{width:21.168240px;}
._13{width:22.536960px;}
._1e{width:23.793600px;}
._16{width:24.800400px;}
._17{width:26.141520px;}
._9{width:27.204000px;}
._a{width:28.321920px;}
._14{width:29.640960px;}
._22{width:30.672240px;}
._1d{width:32.463600px;}
._11{width:33.968160px;}
._f{width:35.090880px;}
._23{width:36.504000px;}
._24{width:37.560000px;}
._25{width:38.904000px;}
._26{width:40.079760px;}
._18{width:41.114880px;}
._19{width:42.168960px;}
._1f{width:43.999680px;}
._29{width:45.727920px;}
._20{width:46.782000px;}
._21{width:48.312000px;}
._2a{width:51.984000px;}
._2b{width:53.945760px;}
._28{width:211.373280px;}
._27{width:847.596000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs9{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs7{font-size:51.264000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yee{bottom:2.160000px;}
.yc1{bottom:2.520000px;}
.yd3{bottom:2.565000px;}
.yf0{bottom:3.060000px;}
.y11a{bottom:3.090000px;}
.y101{bottom:3.105000px;}
.y26{bottom:3.240000px;}
.y134{bottom:3.600000px;}
.y136{bottom:4.140000px;}
.yea{bottom:4.500000px;}
.y138{bottom:5.580000px;}
.y147{bottom:7.200000px;}
.y13e{bottom:7.380000px;}
.y13c{bottom:8.100000px;}
.yfa{bottom:9.000000px;}
.yc3{bottom:9.360000px;}
.y145{bottom:9.540000px;}
.y111{bottom:10.620000px;}
.ye8{bottom:10.980000px;}
.y4{bottom:13.530000px;}
.y13a{bottom:14.940000px;}
.yf9{bottom:15.300000px;}
.y143{bottom:16.200000px;}
.y144{bottom:16.380000px;}
.yc8{bottom:16.920000px;}
.yec{bottom:17.100000px;}
.ye9{bottom:17.460000px;}
.y108{bottom:18.900000px;}
.y3e{bottom:20.514000px;}
.y25{bottom:20.520000px;}
.y117{bottom:20.880000px;}
.y5{bottom:21.090000px;}
.y13b{bottom:21.960000px;}
.yd9{bottom:23.040000px;}
.y141{bottom:23.580000px;}
.y3{bottom:29.010000px;}
.y107{bottom:31.860000px;}
.y116{bottom:33.840000px;}
.y3d{bottom:37.614000px;}
.y24{bottom:37.620000px;}
.y2{bottom:44.490000px;}
.y115{bottom:46.800000px;}
.y3c{bottom:54.894000px;}
.y23{bottom:54.900000px;}
.y8{bottom:57.420000px;}
.y40{bottom:57.600000px;}
.y114{bottom:59.580000px;}
.ycc{bottom:70.965000px;}
.y3b{bottom:72.174000px;}
.y22{bottom:72.210000px;}
.y7{bottom:77.580000px;}
.yf5{bottom:78.705000px;}
.y3a{bottom:89.454000px;}
.y21{bottom:89.490000px;}
.yf4{bottom:91.665000px;}
.yb3{bottom:98.610000px;}
.yf3{bottom:104.445000px;}
.y39{bottom:106.734000px;}
.y20{bottom:106.770000px;}
.y15c{bottom:111.960000px;}
.y9a{bottom:112.320000px;}
.yf2{bottom:117.405000px;}
.y132{bottom:118.980000px;}
.yad{bottom:121.680000px;}
.y38{bottom:123.834000px;}
.y1f{bottom:123.870000px;}
.ye6{bottom:125.460000px;}
.yb4{bottom:129.420000px;}
.y6f{bottom:130.860000px;}
.y15b{bottom:132.660000px;}
.y99{bottom:133.020000px;}
.yaf{bottom:133.770000px;}
.ye5{bottom:139.176000px;}
.y131{bottom:139.716000px;}
.y28{bottom:140.796000px;}
.yac{bottom:140.976000px;}
.y37{bottom:141.114000px;}
.y1e{bottom:141.150000px;}
.y6e{bottom:151.590000px;}
.ye4{bottom:152.850000px;}
.y98{bottom:153.750000px;}
.y36{bottom:158.394000px;}
.y1d{bottom:158.430000px;}
.yb5{bottom:160.200000px;}
.y15a{bottom:162.390000px;}
.ye3{bottom:166.530000px;}
.y130{bottom:169.410000px;}
.yab{bottom:170.670000px;}
.y6d{bottom:172.290000px;}
.y97{bottom:174.450000px;}
.y35{bottom:175.674000px;}
.y1c{bottom:175.710000px;}
.y17a{bottom:176.790000px;}
.ybb{bottom:178.845000px;}
.ye1{bottom:180.210000px;}
.y159{bottom:183.090000px;}
.yb6{bottom:190.980000px;}
.y34{bottom:192.954000px;}
.y1b{bottom:192.990000px;}
.ye2{bottom:193.890000px;}
.y179{bottom:197.490000px;}
.y12f{bottom:199.110000px;}
.yaa{bottom:200.370000px;}
.y96{bottom:204.150000px;}
.ye0{bottom:207.570000px;}
.y33{bottom:210.234000px;}
.y1a{bottom:210.270000px;}
.yb0{bottom:212.730000px;}
.y158{bottom:212.790000px;}
.y12e{bottom:219.810000px;}
.ya9{bottom:221.070000px;}
.ydf{bottom:221.250000px;}
.yb7{bottom:221.760000px;}
.y6c{bottom:222.690000px;}
.y178{bottom:227.190000px;}
.y32{bottom:227.334000px;}
.y19{bottom:227.370000px;}
.y95{bottom:233.850000px;}
.yde{bottom:234.930000px;}
.y12d{bottom:240.510000px;}
.ya8{bottom:241.770000px;}
.y157{bottom:242.490000px;}
.y31{bottom:244.614000px;}
.y18{bottom:244.650000px;}
.y177{bottom:247.890000px;}
.ydd{bottom:248.610000px;}
.y6b{bottom:252.390000px;}
.yb8{bottom:252.570000px;}
.y94{bottom:252.750000px;}
.y12c{bottom:261.210000px;}
.y17{bottom:261.930000px;}
.y30{bottom:261.939000px;}
.yd8{bottom:262.290000px;}
.ya7{bottom:262.470000px;}
.y156{bottom:263.190000px;}
.y93{bottom:270.750000px;}
.y6a{bottom:273.090000px;}
.ydc{bottom:275.970000px;}
.y176{bottom:277.590000px;}
.y16{bottom:279.210000px;}
.y2f{bottom:279.219000px;}
.y12b{bottom:281.910000px;}
.ya6{bottom:283.170000px;}
.yb9{bottom:283.350000px;}
.y155{bottom:283.890000px;}
.y92{bottom:288.750000px;}
.ydb{bottom:289.650000px;}
.yb1{bottom:291.600000px;}
.y69{bottom:293.790000px;}
.y15{bottom:296.490000px;}
.y2e{bottom:296.499000px;}
.y175{bottom:298.290000px;}
.y12a{bottom:302.610000px;}
.yda{bottom:303.330000px;}
.ya5{bottom:303.870000px;}
.y91{bottom:306.750000px;}
.y154{bottom:313.590000px;}
.y14{bottom:313.770000px;}
.y2d{bottom:313.779000px;}
.yba{bottom:314.130000px;}
.y68{bottom:314.490000px;}
.ycb{bottom:317.010000px;}
.y174{bottom:318.990000px;}
.yb2{bottom:323.130000px;}
.y129{bottom:323.310000px;}
.ya4{bottom:324.570000px;}
.y90{bottom:324.750000px;}
.yd7{bottom:330.690000px;}
.y2c{bottom:330.879000px;}
.y13{bottom:330.915000px;}
.y153{bottom:334.290000px;}
.y67{bottom:335.190000px;}
.y173{bottom:339.510000px;}
.y8f{bottom:342.750000px;}
.ybd{bottom:343.365000px;}
.y128{bottom:344.010000px;}
.yd6{bottom:344.370000px;}
.ya3{bottom:345.270000px;}
.y2b{bottom:348.159000px;}
.y12{bottom:348.195000px;}
.y152{bottom:354.990000px;}
.y66{bottom:355.890000px;}
.yd5{bottom:358.050000px;}
.y8e{bottom:360.750000px;}
.y127{bottom:364.710000px;}
.y2a{bottom:365.439000px;}
.y11{bottom:365.475000px;}
.ya2{bottom:365.970000px;}
.y172{bottom:369.210000px;}
.yd4{bottom:371.730000px;}
.ybc{bottom:375.915000px;}
.y65{bottom:376.590000px;}
.y29{bottom:382.719000px;}
.y10{bottom:382.755000px;}
.y151{bottom:384.510000px;}
.yd2{bottom:385.410000px;}
.y171{bottom:389.955000px;}
.y8d{bottom:391.215000px;}
.ya1{bottom:395.715000px;}
.y64{bottom:397.335000px;}
.yd1{bottom:399.135000px;}
.y126{bottom:406.155000px;}
.y8c{bottom:410.655000px;}
.yd0{bottom:412.815000px;}
.y150{bottom:414.255000px;}
.ya0{bottom:416.415000px;}
.y63{bottom:418.035000px;}
.ycf{bottom:426.495000px;}
.y125{bottom:426.855000px;}
.y181{bottom:431.355000px;}
.y14f{bottom:434.955000px;}
.y9f{bottom:437.115000px;}
.y62{bottom:438.555000px;}
.yce{bottom:440.175000px;}
.y8b{bottom:440.355000px;}
.y124{bottom:447.555000px;}
.y180{bottom:452.055000px;}
.ycd{bottom:453.855000px;}
.y9e{bottom:457.815000px;}
.y61{bottom:459.255000px;}
.y8a{bottom:461.055000px;}
.y14e{bottom:464.655000px;}
.yc7{bottom:467.535000px;}
.y123{bottom:477.255000px;}
.y9d{bottom:478.515000px;}
.y60{bottom:479.955000px;}
.y89{bottom:481.755000px;}
.yca{bottom:482.475000px;}
.y14d{bottom:485.355000px;}
.yc9{bottom:496.155000px;}
.y5f{bottom:500.655000px;}
.y88{bottom:502.455000px;}
.yc5{bottom:509.835000px;}
.y170{bottom:511.455000px;}
.y14c{bottom:515.055000px;}
.y9c{bottom:519.555000px;}
.y146{bottom:520.455000px;}
.y5e{bottom:521.355000px;}
.yc6{bottom:523.515000px;}
.y87{bottom:532.155000px;}
.yc2{bottom:537.195000px;}
.y5d{bottom:542.055000px;}
.y140{bottom:544.575000px;}
.y14b{bottom:544.755000px;}
.y27{bottom:550.515000px;}
.yc4{bottom:550.875000px;}
.y17f{bottom:552.855000px;}
.y9b{bottom:556.095000px;}
.yae{bottom:557.280000px;}
.y86{bottom:561.855000px;}
.y5c{bottom:562.755000px;}
.yc0{bottom:564.555000px;}
.y142{bottom:573.015000px;}
.y14a{bottom:574.455000px;}
.yf{bottom:576.255000px;}
.y113{bottom:578.235000px;}
.y16f{bottom:582.555000px;}
.y5b{bottom:583.455000px;}
.y85{bottom:591.555000px;}
.y11d{bottom:593.175000px;}
.y13f{bottom:601.275000px;}
.y16e{bottom:603.255000px;}
.y5a{bottom:604.155000px;}
.y11c{bottom:607.935000px;}
.y84{bottom:621.255000px;}
.y11b{bottom:622.875000px;}
.y16d{bottom:623.955000px;}
.y59{bottom:624.855000px;}
.y13d{bottom:625.575000px;}
.y17e{bottom:632.955000px;}
.y119{bottom:637.635000px;}
.y58{bottom:645.585000px;}
.y139{bottom:649.725000px;}
.y83{bottom:650.985000px;}
.y118{bottom:652.605000px;}
.y16c{bottom:653.685000px;}
.y57{bottom:666.285000px;}
.y110{bottom:667.365000px;}
.y82{bottom:671.685000px;}
.y16b{bottom:674.385000px;}
.y112{bottom:682.305000px;}
.y56{bottom:686.985000px;}
.y137{bottom:689.145000px;}
.y16a{bottom:695.085000px;}
.y10f{bottom:697.065000px;}
.y81{bottom:701.385000px;}
.y17d{bottom:704.085000px;}
.y55{bottom:707.685000px;}
.y135{bottom:710.025000px;}
.y10e{bottom:712.005000px;}
.y169{bottom:724.785000px;}
.y10d{bottom:726.765000px;}
.y54{bottom:728.385000px;}
.y133{bottom:729.285000px;}
.y80{bottom:731.085000px;}
.y10c{bottom:741.705000px;}
.y168{bottom:745.485000px;}
.y53{bottom:749.085000px;}
.y106{bottom:756.465000px;}
.y149{bottom:758.085000px;}
.y7f{bottom:760.785000px;}
.y17c{bottom:766.185000px;}
.y52{bottom:769.785000px;}
.y122{bottom:771.225000px;}
.y10b{bottom:771.405000px;}
.y167{bottom:775.185000px;}
.y148{bottom:778.785000px;}
.y10a{bottom:786.165000px;}
.y51{bottom:790.485000px;}
.y166{bottom:795.885000px;}
.y121{bottom:799.485000px;}
.y109{bottom:801.105000px;}
.y50{bottom:811.185000px;}
.y105{bottom:815.865000px;}
.y17b{bottom:816.585000px;}
.y7e{bottom:820.185000px;}
.y165{bottom:825.585000px;}
.yf1{bottom:830.805000px;}
.y4f{bottom:831.885000px;}
.y7d{bottom:840.885000px;}
.y104{bottom:845.565000px;}
.y164{bottom:846.285000px;}
.y4e{bottom:852.585000px;}
.y103{bottom:860.505000px;}
.y120{bottom:861.585000px;}
.y163{bottom:866.985000px;}
.y7c{bottom:870.585000px;}
.y4d{bottom:873.285000px;}
.y102{bottom:875.265000px;}
.y11f{bottom:882.285000px;}
.y100{bottom:890.205000px;}
.y7b{bottom:891.285000px;}
.y4c{bottom:894.030000px;}
.y162{bottom:896.730000px;}
.y11e{bottom:903.030000px;}
.yff{bottom:905.010000px;}
.y7a{bottom:912.030000px;}
.y161{bottom:917.430000px;}
.yfe{bottom:919.950000px;}
.y4b{bottom:923.730000px;}
.y79{bottom:932.730000px;}
.yfd{bottom:934.710000px;}
.y4a{bottom:944.430000px;}
.y160{bottom:947.130000px;}
.yfc{bottom:949.650000px;}
.y78{bottom:953.430000px;}
.yfb{bottom:964.410000px;}
.y49{bottom:965.130000px;}
.y15f{bottom:967.830000px;}
.y77{bottom:974.130000px;}
.yf8{bottom:979.350000px;}
.ye{bottom:985.110000px;}
.y48{bottom:985.830000px;}
.y76{bottom:994.830000px;}
.y15e{bottom:997.530000px;}
.yf7{bottom:1005.990000px;}
.y47{bottom:1006.530000px;}
.yd{bottom:1007.610000px;}
.y75{bottom:1015.530000px;}
.y15d{bottom:1018.230000px;}
.yf6{bottom:1020.750000px;}
.y46{bottom:1027.230000px;}
.yeb{bottom:1035.690000px;}
.y74{bottom:1036.230000px;}
.yc{bottom:1038.570000px;}
.y45{bottom:1047.930000px;}
.yef{bottom:1050.450000px;}
.y73{bottom:1056.930000px;}
.yb{bottom:1059.270000px;}
.yed{bottom:1065.390000px;}
.y44{bottom:1068.630000px;}
.y72{bottom:1077.630000px;}
.ya{bottom:1079.970000px;}
.ye7{bottom:1080.150000px;}
.y43{bottom:1089.330000px;}
.y71{bottom:1098.330000px;}
.y9{bottom:1100.670000px;}
.y42{bottom:1110.030000px;}
.y70{bottom:1119.030000px;}
.y6{bottom:1121.910000px;}
.ybf{bottom:1122.270000px;}
.y41{bottom:1139.730000px;}
.ybe{bottom:1141.170000px;}
.y1{bottom:1142.070000px;}
.y3f{bottom:1194.120000px;}
.h2a{height:12.600000px;}
.h23{height:12.780000px;}
.h24{height:12.816000px;}
.h1b{height:12.960000px;}
.h21{height:12.996000px;}
.h2b{height:14.040000px;}
.h2e{height:14.076000px;}
.h1f{height:14.220000px;}
.h35{height:17.100000px;}
.h13{height:17.280000px;}
.h37{height:19.980000px;}
.h3f{height:23.400000px;}
.h39{height:23.436000px;}
.h3a{height:23.580000px;}
.h2d{height:25.740000px;}
.h1d{height:26.640000px;}
.h3c{height:27.540000px;}
.h3e{height:27.720000px;}
.h30{height:28.980000px;}
.h25{height:29.880000px;}
.h9{height:38.158594px;}
.h38{height:38.700000px;}
.h27{height:38.892656px;}
.h3d{height:40.254961px;}
.h34{height:41.362031px;}
.h1e{height:41.580000px;}
.h29{height:42.300000px;}
.h1c{height:44.518359px;}
.h26{height:45.714375px;}
.h36{height:47.344922px;}
.h28{height:48.476250px;}
.h33{height:48.616875px;}
.hd{height:49.868086px;}
.h18{height:50.171484px;}
.h3{height:52.998047px;}
.h22{height:54.000000px;}
.h4{height:54.421875px;}
.h3b{height:55.980000px;}
.h1a{height:56.795625px;}
.ha{height:58.651172px;}
.h2f{height:58.680000px;}
.h19{height:58.792500px;}
.he{height:59.038594px;}
.h10{height:60.082031px;}
.hc{height:60.226875px;}
.h42{height:61.171875px;}
.h6{height:61.734375px;}
.h14{height:65.010937px;}
.h5{height:65.884219px;}
.h12{height:66.757500px;}
.h2{height:67.716000px;}
.h41{height:70.628906px;}
.h11{height:70.664062px;}
.h8{height:72.376875px;}
.h7{height:72.562500px;}
.h15{height:74.704922px;}
.h40{height:74.824922px;}
.h32{height:74.884922px;}
.h31{height:88.416000px;}
.h20{height:149.796000px;}
.h2c{height:203.970000px;}
.h17{height:239.531484px;}
.hf{height:396.750000px;}
.hb{height:396.795000px;}
.h16{height:403.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:24.516000px;}
.wa{width:42.156000px;}
.w12{width:63.000000px;}
.w13{width:63.036000px;}
.w1d{width:71.820000px;}
.w20{width:73.440000px;}
.w14{width:73.656000px;}
.w3{width:74.700000px;}
.w1c{width:77.760000px;}
.w1f{width:79.380000px;}
.w1e{width:85.536000px;}
.w15{width:92.700000px;}
.w17{width:92.880000px;}
.w19{width:93.600000px;}
.wf{width:93.960000px;}
.w1b{width:94.356000px;}
.w11{width:147.996000px;}
.w1a{width:171.030000px;}
.w8{width:175.890000px;}
.wb{width:179.310000px;}
.w10{width:200.190000px;}
.w16{width:201.450000px;}
.w18{width:201.630000px;}
.w4{width:247.710000px;}
.wc{width:336.855000px;}
.wd{width:345.090000px;}
.w2{width:374.295000px;}
.w9{width:475.275000px;}
.w6{width:496.335000px;}
.we{width:678.600000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x42{left:9.180000px;}
.x3f{left:11.160000px;}
.x30{left:13.320000px;}
.x2d{left:16.560000px;}
.x51{left:18.000000px;}
.x33{left:19.260000px;}
.x48{left:20.520000px;}
.x28{left:21.600000px;}
.x1f{left:22.680000px;}
.x2f{left:24.300000px;}
.x25{left:25.740000px;}
.x1c{left:27.072000px;}
.x32{left:28.800000px;}
.x50{left:29.880000px;}
.x44{left:31.320000px;}
.x2a{left:32.760000px;}
.x21{left:34.920000px;}
.x34{left:36.360000px;}
.x39{left:37.980000px;}
.x35{left:40.140000px;}
.x43{left:41.220000px;}
.x1b{left:42.300000px;}
.x3d{left:43.560000px;}
.x37{left:45.180000px;}
.x3a{left:47.010000px;}
.x2b{left:48.810000px;}
.x1a{left:49.830000px;}
.x3c{left:51.330000px;}
.x23{left:52.410000px;}
.x47{left:53.640000px;}
.x2e{left:54.750000px;}
.x2c{left:57.060000px;}
.x31{left:58.320000px;}
.x45{left:59.430000px;}
.x36{left:60.870000px;}
.x38{left:62.640000px;}
.x3e{left:63.720000px;}
.x4{left:66.600000px;}
.x49{left:67.680000px;}
.x3b{left:69.345000px;}
.x16{left:71.610000px;}
.x41{left:78.885000px;}
.x46{left:91.305000px;}
.x1{left:98.136000px;}
.x7{left:106.235987px;}
.x9{left:107.675987px;}
.xf{left:125.855987px;}
.x15{left:144.755987px;}
.x12{left:148.895987px;}
.x40{left:191.730000px;}
.x20{left:192.990000px;}
.x4a{left:200.550000px;}
.x6{left:203.805000px;}
.x1e{left:272.955000px;}
.x1d{left:308.130000px;}
.x4b{left:372.315000px;}
.xc{left:386.174987px;}
.x22{left:393.915000px;}
.xa{left:411.914987px;}
.x8{left:433.874987px;}
.x13{left:443.985000px;}
.xb{left:446.504987px;}
.x4c{left:467.385000px;}
.x3{left:472.425000px;}
.x24{left:542.805000px;}
.x4d{left:545.865000px;}
.x5{left:547.125000px;}
.x10{left:581.505000px;}
.x17{left:586.620000px;}
.xd{left:602.565000px;}
.x26{left:606.705000px;}
.x18{left:609.120000px;}
.x4e{left:618.405000px;}
.x11{left:623.670000px;}
.xe{left:627.090000px;}
.x19{left:634.860000px;}
.x27{left:670.650000px;}
.x4f{left:704.670000px;}
.x29{left:734.550000px;}
.x14{left:790.529987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v9{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.v5{vertical-align:56.320000pt;}
.v6{vertical-align:112.266667pt;}
.v7{vertical-align:168.320000pt;}
.lse{letter-spacing:-1.600000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls35{letter-spacing:-1.237333pt;}
.ls2c{letter-spacing:-0.954667pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls3a{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.456533pt;}
.ls2d{letter-spacing:-0.329067pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls2e{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.265600pt;}
.ls2a{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls37{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls3c{letter-spacing:4.480000pt;}
.lsb{letter-spacing:5.280000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls26{letter-spacing:6.400000pt;}
.ls30{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:7.680000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls36{letter-spacing:10.240000pt;}
.ls38{letter-spacing:10.880000pt;}
.ls4{letter-spacing:11.040000pt;}
.ls21{letter-spacing:11.520000pt;}
.ls8{letter-spacing:12.960000pt;}
.ls3b{letter-spacing:13.440000pt;}
.ls6{letter-spacing:15.520000pt;}
.ls39{letter-spacing:16.000000pt;}
.ls7{letter-spacing:16.160000pt;}
.ls14{letter-spacing:16.640000pt;}
.ls1e{letter-spacing:16.800000pt;}
.ls9{letter-spacing:17.440000pt;}
.ls31{letter-spacing:18.560000pt;}
.ls2f{letter-spacing:19.200000pt;}
.ls28{letter-spacing:19.840000pt;}
.ls27{letter-spacing:21.120000pt;}
.ls1f{letter-spacing:21.226667pt;}
.ls33{letter-spacing:25.600000pt;}
.ls1a{letter-spacing:30.080000pt;}
.ls2{letter-spacing:51.200000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws23{word-spacing:-16.640000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.296000pt;}
.wsb{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.823467pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws15{word-spacing:-11.632640pt;}
.ws14{word-spacing:-11.360000pt;}
.ws21{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.959467pt;}
.ws22{word-spacing:-10.880000pt;}
.ws1e{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-10.097920pt;}
.ws17{word-spacing:-10.080000pt;}
.ws19{word-spacing:-9.750933pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws20{word-spacing:-9.482667pt;}
.ws18{word-spacing:-9.125333pt;}
.ws3{word-spacing:-9.120000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws1a{word-spacing:-6.720000pt;}
.ws12{word-spacing:-0.162816pt;}
.ws13{word-spacing:-0.154240pt;}
.ws10{word-spacing:-0.041600pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:0.065067pt;}
._1b{margin-left:-2.117120pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._2{width:2.400000pt;}
._6{width:3.504853pt;}
._5{width:4.414720pt;}
._7{width:5.398187pt;}
._15{width:6.332800pt;}
._3{width:7.224320pt;}
._10{width:8.339840pt;}
._4{width:9.288107pt;}
._1c{width:10.227413pt;}
._8{width:11.165440pt;}
._d{width:12.360320pt;}
._1a{width:13.632000pt;}
._c{width:15.127040pt;}
._b{width:16.101120pt;}
._e{width:17.482667pt;}
._12{width:18.816213pt;}
._13{width:20.032853pt;}
._1e{width:21.149867pt;}
._16{width:22.044800pt;}
._17{width:23.236907pt;}
._9{width:24.181333pt;}
._a{width:25.175040pt;}
._14{width:26.347520pt;}
._22{width:27.264213pt;}
._1d{width:28.856533pt;}
._11{width:30.193920pt;}
._f{width:31.191893pt;}
._23{width:32.448000pt;}
._24{width:33.386667pt;}
._25{width:34.581333pt;}
._26{width:35.626453pt;}
._18{width:36.546560pt;}
._19{width:37.483520pt;}
._1f{width:39.110827pt;}
._29{width:40.647040pt;}
._20{width:41.584000pt;}
._21{width:42.944000pt;}
._2a{width:46.208000pt;}
._2b{width:47.951787pt;}
._28{width:187.887360pt;}
._27{width:753.418667pt;}
.fsa{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs9{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs7{font-size:45.568000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:1.920000pt;}
.yc1{bottom:2.240000pt;}
.yd3{bottom:2.280000pt;}
.yf0{bottom:2.720000pt;}
.y11a{bottom:2.746667pt;}
.y101{bottom:2.760000pt;}
.y26{bottom:2.880000pt;}
.y134{bottom:3.200000pt;}
.y136{bottom:3.680000pt;}
.yea{bottom:4.000000pt;}
.y138{bottom:4.960000pt;}
.y147{bottom:6.400000pt;}
.y13e{bottom:6.560000pt;}
.y13c{bottom:7.200000pt;}
.yfa{bottom:8.000000pt;}
.yc3{bottom:8.320000pt;}
.y145{bottom:8.480000pt;}
.y111{bottom:9.440000pt;}
.ye8{bottom:9.760000pt;}
.y4{bottom:12.026667pt;}
.y13a{bottom:13.280000pt;}
.yf9{bottom:13.600000pt;}
.y143{bottom:14.400000pt;}
.y144{bottom:14.560000pt;}
.yc8{bottom:15.040000pt;}
.yec{bottom:15.200000pt;}
.ye9{bottom:15.520000pt;}
.y108{bottom:16.800000pt;}
.y3e{bottom:18.234667pt;}
.y25{bottom:18.240000pt;}
.y117{bottom:18.560000pt;}
.y5{bottom:18.746667pt;}
.y13b{bottom:19.520000pt;}
.yd9{bottom:20.480000pt;}
.y141{bottom:20.960000pt;}
.y3{bottom:25.786667pt;}
.y107{bottom:28.320000pt;}
.y116{bottom:30.080000pt;}
.y3d{bottom:33.434667pt;}
.y24{bottom:33.440000pt;}
.y2{bottom:39.546667pt;}
.y115{bottom:41.600000pt;}
.y3c{bottom:48.794667pt;}
.y23{bottom:48.800000pt;}
.y8{bottom:51.040000pt;}
.y40{bottom:51.200000pt;}
.y114{bottom:52.960000pt;}
.ycc{bottom:63.080000pt;}
.y3b{bottom:64.154667pt;}
.y22{bottom:64.186667pt;}
.y7{bottom:68.960000pt;}
.yf5{bottom:69.960000pt;}
.y3a{bottom:79.514667pt;}
.y21{bottom:79.546667pt;}
.yf4{bottom:81.480000pt;}
.yb3{bottom:87.653333pt;}
.yf3{bottom:92.840000pt;}
.y39{bottom:94.874667pt;}
.y20{bottom:94.906667pt;}
.y15c{bottom:99.520000pt;}
.y9a{bottom:99.840000pt;}
.yf2{bottom:104.360000pt;}
.y132{bottom:105.760000pt;}
.yad{bottom:108.160000pt;}
.y38{bottom:110.074667pt;}
.y1f{bottom:110.106667pt;}
.ye6{bottom:111.520000pt;}
.yb4{bottom:115.040000pt;}
.y6f{bottom:116.320000pt;}
.y15b{bottom:117.920000pt;}
.y99{bottom:118.240000pt;}
.yaf{bottom:118.906667pt;}
.ye5{bottom:123.712000pt;}
.y131{bottom:124.192000pt;}
.y28{bottom:125.152000pt;}
.yac{bottom:125.312000pt;}
.y37{bottom:125.434667pt;}
.y1e{bottom:125.466667pt;}
.y6e{bottom:134.746667pt;}
.ye4{bottom:135.866667pt;}
.y98{bottom:136.666667pt;}
.y36{bottom:140.794667pt;}
.y1d{bottom:140.826667pt;}
.yb5{bottom:142.400000pt;}
.y15a{bottom:144.346667pt;}
.ye3{bottom:148.026667pt;}
.y130{bottom:150.586667pt;}
.yab{bottom:151.706667pt;}
.y6d{bottom:153.146667pt;}
.y97{bottom:155.066667pt;}
.y35{bottom:156.154667pt;}
.y1c{bottom:156.186667pt;}
.y17a{bottom:157.146667pt;}
.ybb{bottom:158.973333pt;}
.ye1{bottom:160.186667pt;}
.y159{bottom:162.746667pt;}
.yb6{bottom:169.760000pt;}
.y34{bottom:171.514667pt;}
.y1b{bottom:171.546667pt;}
.ye2{bottom:172.346667pt;}
.y179{bottom:175.546667pt;}
.y12f{bottom:176.986667pt;}
.yaa{bottom:178.106667pt;}
.y96{bottom:181.466667pt;}
.ye0{bottom:184.506667pt;}
.y33{bottom:186.874667pt;}
.y1a{bottom:186.906667pt;}
.yb0{bottom:189.093333pt;}
.y158{bottom:189.146667pt;}
.y12e{bottom:195.386667pt;}
.ya9{bottom:196.506667pt;}
.ydf{bottom:196.666667pt;}
.yb7{bottom:197.120000pt;}
.y6c{bottom:197.946667pt;}
.y178{bottom:201.946667pt;}
.y32{bottom:202.074667pt;}
.y19{bottom:202.106667pt;}
.y95{bottom:207.866667pt;}
.yde{bottom:208.826667pt;}
.y12d{bottom:213.786667pt;}
.ya8{bottom:214.906667pt;}
.y157{bottom:215.546667pt;}
.y31{bottom:217.434667pt;}
.y18{bottom:217.466667pt;}
.y177{bottom:220.346667pt;}
.ydd{bottom:220.986667pt;}
.y6b{bottom:224.346667pt;}
.yb8{bottom:224.506667pt;}
.y94{bottom:224.666667pt;}
.y12c{bottom:232.186667pt;}
.y17{bottom:232.826667pt;}
.y30{bottom:232.834667pt;}
.yd8{bottom:233.146667pt;}
.ya7{bottom:233.306667pt;}
.y156{bottom:233.946667pt;}
.y93{bottom:240.666667pt;}
.y6a{bottom:242.746667pt;}
.ydc{bottom:245.306667pt;}
.y176{bottom:246.746667pt;}
.y16{bottom:248.186667pt;}
.y2f{bottom:248.194667pt;}
.y12b{bottom:250.586667pt;}
.ya6{bottom:251.706667pt;}
.yb9{bottom:251.866667pt;}
.y155{bottom:252.346667pt;}
.y92{bottom:256.666667pt;}
.ydb{bottom:257.466667pt;}
.yb1{bottom:259.200000pt;}
.y69{bottom:261.146667pt;}
.y15{bottom:263.546667pt;}
.y2e{bottom:263.554667pt;}
.y175{bottom:265.146667pt;}
.y12a{bottom:268.986667pt;}
.yda{bottom:269.626667pt;}
.ya5{bottom:270.106667pt;}
.y91{bottom:272.666667pt;}
.y154{bottom:278.746667pt;}
.y14{bottom:278.906667pt;}
.y2d{bottom:278.914667pt;}
.yba{bottom:279.226667pt;}
.y68{bottom:279.546667pt;}
.ycb{bottom:281.786667pt;}
.y174{bottom:283.546667pt;}
.yb2{bottom:287.226667pt;}
.y129{bottom:287.386667pt;}
.ya4{bottom:288.506667pt;}
.y90{bottom:288.666667pt;}
.yd7{bottom:293.946667pt;}
.y2c{bottom:294.114667pt;}
.y13{bottom:294.146667pt;}
.y153{bottom:297.146667pt;}
.y67{bottom:297.946667pt;}
.y173{bottom:301.786667pt;}
.y8f{bottom:304.666667pt;}
.ybd{bottom:305.213333pt;}
.y128{bottom:305.786667pt;}
.yd6{bottom:306.106667pt;}
.ya3{bottom:306.906667pt;}
.y2b{bottom:309.474667pt;}
.y12{bottom:309.506667pt;}
.y152{bottom:315.546667pt;}
.y66{bottom:316.346667pt;}
.yd5{bottom:318.266667pt;}
.y8e{bottom:320.666667pt;}
.y127{bottom:324.186667pt;}
.y2a{bottom:324.834667pt;}
.y11{bottom:324.866667pt;}
.ya2{bottom:325.306667pt;}
.y172{bottom:328.186667pt;}
.yd4{bottom:330.426667pt;}
.ybc{bottom:334.146667pt;}
.y65{bottom:334.746667pt;}
.y29{bottom:340.194667pt;}
.y10{bottom:340.226667pt;}
.y151{bottom:341.786667pt;}
.yd2{bottom:342.586667pt;}
.y171{bottom:346.626667pt;}
.y8d{bottom:347.746667pt;}
.ya1{bottom:351.746667pt;}
.y64{bottom:353.186667pt;}
.yd1{bottom:354.786667pt;}
.y126{bottom:361.026667pt;}
.y8c{bottom:365.026667pt;}
.yd0{bottom:366.946667pt;}
.y150{bottom:368.226667pt;}
.ya0{bottom:370.146667pt;}
.y63{bottom:371.586667pt;}
.ycf{bottom:379.106667pt;}
.y125{bottom:379.426667pt;}
.y181{bottom:383.426667pt;}
.y14f{bottom:386.626667pt;}
.y9f{bottom:388.546667pt;}
.y62{bottom:389.826667pt;}
.yce{bottom:391.266667pt;}
.y8b{bottom:391.426667pt;}
.y124{bottom:397.826667pt;}
.y180{bottom:401.826667pt;}
.ycd{bottom:403.426667pt;}
.y9e{bottom:406.946667pt;}
.y61{bottom:408.226667pt;}
.y8a{bottom:409.826667pt;}
.y14e{bottom:413.026667pt;}
.yc7{bottom:415.586667pt;}
.y123{bottom:424.226667pt;}
.y9d{bottom:425.346667pt;}
.y60{bottom:426.626667pt;}
.y89{bottom:428.226667pt;}
.yca{bottom:428.866667pt;}
.y14d{bottom:431.426667pt;}
.yc9{bottom:441.026667pt;}
.y5f{bottom:445.026667pt;}
.y88{bottom:446.626667pt;}
.yc5{bottom:453.186667pt;}
.y170{bottom:454.626667pt;}
.y14c{bottom:457.826667pt;}
.y9c{bottom:461.826667pt;}
.y146{bottom:462.626667pt;}
.y5e{bottom:463.426667pt;}
.yc6{bottom:465.346667pt;}
.y87{bottom:473.026667pt;}
.yc2{bottom:477.506667pt;}
.y5d{bottom:481.826667pt;}
.y140{bottom:484.066667pt;}
.y14b{bottom:484.226667pt;}
.y27{bottom:489.346667pt;}
.yc4{bottom:489.666667pt;}
.y17f{bottom:491.426667pt;}
.y9b{bottom:494.306667pt;}
.yae{bottom:495.360000pt;}
.y86{bottom:499.426667pt;}
.y5c{bottom:500.226667pt;}
.yc0{bottom:501.826667pt;}
.y142{bottom:509.346667pt;}
.y14a{bottom:510.626667pt;}
.yf{bottom:512.226667pt;}
.y113{bottom:513.986667pt;}
.y16f{bottom:517.826667pt;}
.y5b{bottom:518.626667pt;}
.y85{bottom:525.826667pt;}
.y11d{bottom:527.266667pt;}
.y13f{bottom:534.466667pt;}
.y16e{bottom:536.226667pt;}
.y5a{bottom:537.026667pt;}
.y11c{bottom:540.386667pt;}
.y84{bottom:552.226667pt;}
.y11b{bottom:553.666667pt;}
.y16d{bottom:554.626667pt;}
.y59{bottom:555.426667pt;}
.y13d{bottom:556.066667pt;}
.y17e{bottom:562.626667pt;}
.y119{bottom:566.786667pt;}
.y58{bottom:573.853333pt;}
.y139{bottom:577.533333pt;}
.y83{bottom:578.653333pt;}
.y118{bottom:580.093333pt;}
.y16c{bottom:581.053333pt;}
.y57{bottom:592.253333pt;}
.y110{bottom:593.213333pt;}
.y82{bottom:597.053333pt;}
.y16b{bottom:599.453333pt;}
.y112{bottom:606.493333pt;}
.y56{bottom:610.653333pt;}
.y137{bottom:612.573333pt;}
.y16a{bottom:617.853333pt;}
.y10f{bottom:619.613333pt;}
.y81{bottom:623.453333pt;}
.y17d{bottom:625.853333pt;}
.y55{bottom:629.053333pt;}
.y135{bottom:631.133333pt;}
.y10e{bottom:632.893333pt;}
.y169{bottom:644.253333pt;}
.y10d{bottom:646.013333pt;}
.y54{bottom:647.453333pt;}
.y133{bottom:648.253333pt;}
.y80{bottom:649.853333pt;}
.y10c{bottom:659.293333pt;}
.y168{bottom:662.653333pt;}
.y53{bottom:665.853333pt;}
.y106{bottom:672.413333pt;}
.y149{bottom:673.853333pt;}
.y7f{bottom:676.253333pt;}
.y17c{bottom:681.053333pt;}
.y52{bottom:684.253333pt;}
.y122{bottom:685.533333pt;}
.y10b{bottom:685.693333pt;}
.y167{bottom:689.053333pt;}
.y148{bottom:692.253333pt;}
.y10a{bottom:698.813333pt;}
.y51{bottom:702.653333pt;}
.y166{bottom:707.453333pt;}
.y121{bottom:710.653333pt;}
.y109{bottom:712.093333pt;}
.y50{bottom:721.053333pt;}
.y105{bottom:725.213333pt;}
.y17b{bottom:725.853333pt;}
.y7e{bottom:729.053333pt;}
.y165{bottom:733.853333pt;}
.yf1{bottom:738.493333pt;}
.y4f{bottom:739.453333pt;}
.y7d{bottom:747.453333pt;}
.y104{bottom:751.613333pt;}
.y164{bottom:752.253333pt;}
.y4e{bottom:757.853333pt;}
.y103{bottom:764.893333pt;}
.y120{bottom:765.853333pt;}
.y163{bottom:770.653333pt;}
.y7c{bottom:773.853333pt;}
.y4d{bottom:776.253333pt;}
.y102{bottom:778.013333pt;}
.y11f{bottom:784.253333pt;}
.y100{bottom:791.293333pt;}
.y7b{bottom:792.253333pt;}
.y4c{bottom:794.693333pt;}
.y162{bottom:797.093333pt;}
.y11e{bottom:802.693333pt;}
.yff{bottom:804.453333pt;}
.y7a{bottom:810.693333pt;}
.y161{bottom:815.493333pt;}
.yfe{bottom:817.733333pt;}
.y4b{bottom:821.093333pt;}
.y79{bottom:829.093333pt;}
.yfd{bottom:830.853333pt;}
.y4a{bottom:839.493333pt;}
.y160{bottom:841.893333pt;}
.yfc{bottom:844.133333pt;}
.y78{bottom:847.493333pt;}
.yfb{bottom:857.253333pt;}
.y49{bottom:857.893333pt;}
.y15f{bottom:860.293333pt;}
.y77{bottom:865.893333pt;}
.yf8{bottom:870.533333pt;}
.ye{bottom:875.653333pt;}
.y48{bottom:876.293333pt;}
.y76{bottom:884.293333pt;}
.y15e{bottom:886.693333pt;}
.yf7{bottom:894.213333pt;}
.y47{bottom:894.693333pt;}
.yd{bottom:895.653333pt;}
.y75{bottom:902.693333pt;}
.y15d{bottom:905.093333pt;}
.yf6{bottom:907.333333pt;}
.y46{bottom:913.093333pt;}
.yeb{bottom:920.613333pt;}
.y74{bottom:921.093333pt;}
.yc{bottom:923.173333pt;}
.y45{bottom:931.493333pt;}
.yef{bottom:933.733333pt;}
.y73{bottom:939.493333pt;}
.yb{bottom:941.573333pt;}
.yed{bottom:947.013333pt;}
.y44{bottom:949.893333pt;}
.y72{bottom:957.893333pt;}
.ya{bottom:959.973333pt;}
.ye7{bottom:960.133333pt;}
.y43{bottom:968.293333pt;}
.y71{bottom:976.293333pt;}
.y9{bottom:978.373333pt;}
.y42{bottom:986.693333pt;}
.y70{bottom:994.693333pt;}
.y6{bottom:997.253333pt;}
.ybf{bottom:997.573333pt;}
.y41{bottom:1013.093333pt;}
.ybe{bottom:1014.373333pt;}
.y1{bottom:1015.173333pt;}
.y3f{bottom:1061.440000pt;}
.h2a{height:11.200000pt;}
.h23{height:11.360000pt;}
.h24{height:11.392000pt;}
.h1b{height:11.520000pt;}
.h21{height:11.552000pt;}
.h2b{height:12.480000pt;}
.h2e{height:12.512000pt;}
.h1f{height:12.640000pt;}
.h35{height:15.200000pt;}
.h13{height:15.360000pt;}
.h37{height:17.760000pt;}
.h3f{height:20.800000pt;}
.h39{height:20.832000pt;}
.h3a{height:20.960000pt;}
.h2d{height:22.880000pt;}
.h1d{height:23.680000pt;}
.h3c{height:24.480000pt;}
.h3e{height:24.640000pt;}
.h30{height:25.760000pt;}
.h25{height:26.560000pt;}
.h9{height:33.918750pt;}
.h38{height:34.400000pt;}
.h27{height:34.571250pt;}
.h3d{height:35.782187pt;}
.h34{height:36.766250pt;}
.h1e{height:36.960000pt;}
.h29{height:37.600000pt;}
.h1c{height:39.571875pt;}
.h26{height:40.635000pt;}
.h36{height:42.084375pt;}
.h28{height:43.090000pt;}
.h33{height:43.215000pt;}
.hd{height:44.327188pt;}
.h18{height:44.596875pt;}
.h3{height:47.109375pt;}
.h22{height:48.000000pt;}
.h4{height:48.375000pt;}
.h3b{height:49.760000pt;}
.h1a{height:50.485000pt;}
.ha{height:52.134375pt;}
.h2f{height:52.160000pt;}
.h19{height:52.260000pt;}
.he{height:52.478750pt;}
.h10{height:53.406250pt;}
.hc{height:53.535000pt;}
.h42{height:54.375000pt;}
.h6{height:54.875000pt;}
.h14{height:57.787500pt;}
.h5{height:58.563750pt;}
.h12{height:59.340000pt;}
.h2{height:60.192000pt;}
.h41{height:62.781250pt;}
.h11{height:62.812500pt;}
.h8{height:64.335000pt;}
.h7{height:64.500000pt;}
.h15{height:66.404375pt;}
.h40{height:66.511042pt;}
.h32{height:66.564375pt;}
.h31{height:78.592000pt;}
.h20{height:133.152000pt;}
.h2c{height:181.306667pt;}
.h17{height:212.916875pt;}
.hf{height:352.666667pt;}
.hb{height:352.706667pt;}
.h16{height:359.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:21.792000pt;}
.wa{width:37.472000pt;}
.w12{width:56.000000pt;}
.w13{width:56.032000pt;}
.w1d{width:63.840000pt;}
.w20{width:65.280000pt;}
.w14{width:65.472000pt;}
.w3{width:66.400000pt;}
.w1c{width:69.120000pt;}
.w1f{width:70.560000pt;}
.w1e{width:76.032000pt;}
.w15{width:82.400000pt;}
.w17{width:82.560000pt;}
.w19{width:83.200000pt;}
.wf{width:83.520000pt;}
.w1b{width:83.872000pt;}
.w11{width:131.552000pt;}
.w1a{width:152.026667pt;}
.w8{width:156.346667pt;}
.wb{width:159.386667pt;}
.w10{width:177.946667pt;}
.w16{width:179.066667pt;}
.w18{width:179.226667pt;}
.w4{width:220.186667pt;}
.wc{width:299.426667pt;}
.wd{width:306.746667pt;}
.w2{width:332.706667pt;}
.w9{width:422.466667pt;}
.w6{width:441.186667pt;}
.we{width:603.200000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x42{left:8.160000pt;}
.x3f{left:9.920000pt;}
.x30{left:11.840000pt;}
.x2d{left:14.720000pt;}
.x51{left:16.000000pt;}
.x33{left:17.120000pt;}
.x48{left:18.240000pt;}
.x28{left:19.200000pt;}
.x1f{left:20.160000pt;}
.x2f{left:21.600000pt;}
.x25{left:22.880000pt;}
.x1c{left:24.064000pt;}
.x32{left:25.600000pt;}
.x50{left:26.560000pt;}
.x44{left:27.840000pt;}
.x2a{left:29.120000pt;}
.x21{left:31.040000pt;}
.x34{left:32.320000pt;}
.x39{left:33.760000pt;}
.x35{left:35.680000pt;}
.x43{left:36.640000pt;}
.x1b{left:37.600000pt;}
.x3d{left:38.720000pt;}
.x37{left:40.160000pt;}
.x3a{left:41.786667pt;}
.x2b{left:43.386667pt;}
.x1a{left:44.293333pt;}
.x3c{left:45.626667pt;}
.x23{left:46.586667pt;}
.x47{left:47.680000pt;}
.x2e{left:48.666667pt;}
.x2c{left:50.720000pt;}
.x31{left:51.840000pt;}
.x45{left:52.826667pt;}
.x36{left:54.106667pt;}
.x38{left:55.680000pt;}
.x3e{left:56.640000pt;}
.x4{left:59.200000pt;}
.x49{left:60.160000pt;}
.x3b{left:61.640000pt;}
.x16{left:63.653333pt;}
.x41{left:70.120000pt;}
.x46{left:81.160000pt;}
.x1{left:87.232000pt;}
.x7{left:94.431988pt;}
.x9{left:95.711988pt;}
.xf{left:111.871988pt;}
.x15{left:128.671988pt;}
.x12{left:132.351988pt;}
.x40{left:170.426667pt;}
.x20{left:171.546667pt;}
.x4a{left:178.266667pt;}
.x6{left:181.160000pt;}
.x1e{left:242.626667pt;}
.x1d{left:273.893333pt;}
.x4b{left:330.946667pt;}
.xc{left:343.266655pt;}
.x22{left:350.146667pt;}
.xa{left:366.146655pt;}
.x8{left:385.666655pt;}
.x13{left:394.653333pt;}
.xb{left:396.893322pt;}
.x4c{left:415.453333pt;}
.x3{left:419.933333pt;}
.x24{left:482.493333pt;}
.x4d{left:485.213333pt;}
.x5{left:486.333333pt;}
.x10{left:516.893333pt;}
.x17{left:521.440000pt;}
.xd{left:535.613333pt;}
.x26{left:539.293333pt;}
.x18{left:541.440000pt;}
.x4e{left:549.693333pt;}
.x11{left:554.373333pt;}
.xe{left:557.413333pt;}
.x19{left:564.320000pt;}
.x27{left:596.133333pt;}
.x4f{left:626.373333pt;}
.x29{left:652.933333pt;}
.x14{left:702.693322pt;}
}




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