
    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_b8c327195112a0643c21cae7.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_7c1e2e4ff53658b5a972720c.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_7fc65df7b3223630a5549ae6.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_755cd9d6c66d4917c498886e.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_9f24b34bc429ddaa611f7b04.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_60f46d944ca39e59b6cb7770.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_d8625b284940e1d173309c5a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec709a8180e3461cb6f79aef.woff')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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_8957ba249a9a54e7938dce70.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v5{vertical-align:-18.000000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.ls16{letter-spacing:-1.626000px;}
.ls13{letter-spacing:-1.344000px;}
.ls15{letter-spacing:-1.266000px;}
.ls12{letter-spacing:-0.732000px;}
.ls11{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.546600px;}
.lsf{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.117600px;}
.ls18{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.066000px;}
.ls17{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.011160px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1e{letter-spacing:47.726640px;}
.ls1b{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.wse{word-spacing:-12.679800px;}
.ws13{word-spacing:-12.494400px;}
.wsf{word-spacing:-11.960400px;}
.wsd{word-spacing:-11.882400px;}
.ws10{word-spacing:-11.600400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-8.553600px;}
.wsc{word-spacing:-7.893600px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._9{margin-left:-3.667200px;}
._6{margin-left:-2.163599px;}
._2{margin-left:-1.142400px;}
._1{width:1.485960px;}
._a{width:2.765400px;}
._3{width:4.148400px;}
._4{width:5.530800px;}
._5{width:6.624841px;}
._0{width:7.650360px;}
._c{width:8.777400px;}
._d{width:9.845641px;}
._b{width:11.362800px;}
._7{width:14.789400px;}
._15{width:15.826556px;}
._e{width:16.833600px;}
._11{width:18.677040px;}
._f{width:19.959840px;}
._8{width:21.703200px;}
._10{width:22.845720px;}
._16{width:24.949800px;}
._1c{width:28.133996px;}
._24{width:29.460964px;}
._1f{width:38.897640px;}
._1b{width:40.459317px;}
._14{width:46.472760px;}
._23{width:61.550277px;}
._1e{width:64.207080px;}
._20{width:73.466640px;}
._19{width:79.899480px;}
._1d{width:81.101880px;}
._17{width:100.881360px;}
._18{width:105.210000px;}
._22{width:107.938440px;}
._1a{width:114.528600px;}
._12{width:121.081680px;}
._21{width:126.552600px;}
._13{width:175.069440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:7.740000px;}
.y65{bottom:7.830000px;}
.y10e{bottom:7.860000px;}
.y67{bottom:7.920000px;}
.y12a{bottom:12.420000px;}
.ya9{bottom:13.140000px;}
.ydd{bottom:17.550000px;}
.y66{bottom:17.640000px;}
.y88{bottom:18.360000px;}
.y8c{bottom:22.050000px;}
.y71{bottom:22.860000px;}
.yf7{bottom:25.380000px;}
.y125{bottom:25.470000px;}
.yb8{bottom:33.660000px;}
.y63{bottom:35.190000px;}
.ye5{bottom:35.220000px;}
.ya8{bottom:35.280000px;}
.y94{bottom:37.110000px;}
.y8b{bottom:39.690000px;}
.y70{bottom:40.410000px;}
.y97{bottom:40.440000px;}
.y77{bottom:40.500000px;}
.ydb{bottom:50.220000px;}
.yf5{bottom:52.740000px;}
.y93{bottom:54.660000px;}
.y96{bottom:62.490000px;}
.y6f{bottom:62.550000px;}
.y8f{bottom:67.050000px;}
.yda{bottom:67.770000px;}
.y103{bottom:72.270000px;}
.y92{bottom:72.300000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y7f{bottom:88.020000px;}
.y102{bottom:89.820000px;}
.y91{bottom:89.850000px;}
.yd9{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y7e{bottom:105.660000px;}
.ybe{bottom:113.340000px;}
.y119{bottom:117.660000px;}
.ye0{bottom:124.050000px;}
.y7d{bottom:127.710000px;}
.y57{bottom:128.100000px;}
.y86{bottom:129.720000px;}
.ybc{bottom:139.170000px;}
.y19d{bottom:139.350000px;}
.y29{bottom:144.390000px;}
.yd0{bottom:146.430000px;}
.y7c{bottom:149.760000px;}
.yf1{bottom:151.410000px;}
.y118{bottom:153.210000px;}
.y1ba{bottom:156.360000px;}
.y19c{bottom:156.900000px;}
.y89{bottom:157.080000px;}
.y28{bottom:161.940000px;}
.y56{bottom:163.650000px;}
.yf9{bottom:163.980000px;}
.ycf{bottom:164.070000px;}
.ybb{bottom:165.000000px;}
.y107{bottom:168.240000px;}
.y7b{bottom:171.900000px;}
.y1b9{bottom:173.910000px;}
.y19b{bottom:174.450000px;}
.yef{bottom:178.680000px;}
.y27{bottom:179.580000px;}
.y55{bottom:181.200000px;}
.yce{bottom:181.620000px;}
.y87{bottom:184.350000px;}
.yba{bottom:190.830000px;}
.y19a{bottom:192.090000px;}
.y117{bottom:195.510000px;}
.y26{bottom:197.130000px;}
.y54{bottom:198.840000px;}
.y179{bottom:198.930000px;}
.ycd{bottom:199.170000px;}
.y1b8{bottom:200.550000px;}
.yf0{bottom:206.040000px;}
.y157{bottom:209.370000px;}
.y199{bottom:209.640000px;}
.y7a{bottom:211.710000px;}
.y25{bottom:214.680000px;}
.y138{bottom:215.040000px;}
.y53{bottom:216.390000px;}
.yb7{bottom:216.660000px;}
.y1b7{bottom:218.100000px;}
.y115{bottom:222.870000px;}
.y156{bottom:227.010000px;}
.y24{bottom:232.320000px;}
.yed{bottom:233.400000px;}
.y52{bottom:233.940000px;}
.y178{bottom:234.480000px;}
.y1b6{bottom:235.650000px;}
.y85{bottom:239.070000px;}
.yb9{bottom:242.490000px;}
.y155{bottom:244.560000px;}
.y198{bottom:245.190000px;}
.y23{bottom:249.870000px;}
.y116{bottom:250.230000px;}
.y137{bottom:250.680000px;}
.y51{bottom:251.580000px;}
.yee{bottom:260.760000px;}
.y154{bottom:262.200000px;}
.y1b5{bottom:262.290000px;}
.y197{bottom:262.830000px;}
.y84{bottom:266.340000px;}
.y22{bottom:267.510000px;}
.y50{bottom:269.130000px;}
.y177{bottom:270.120000px;}
.y113{bottom:277.590000px;}
.y153{bottom:279.750000px;}
.y1b4{bottom:279.840000px;}
.y196{bottom:280.380000px;}
.y21{bottom:285.060000px;}
.y136{bottom:286.230000px;}
.y4f{bottom:286.770000px;}
.y176{bottom:287.670000px;}
.yeb{bottom:288.030000px;}
.yb6{bottom:289.650000px;}
.y83{bottom:293.700000px;}
.y195{bottom:298.020000px;}
.y20{bottom:302.610000px;}
.y135{bottom:303.870000px;}
.y114{bottom:304.860000px;}
.y175{bottom:305.220000px;}
.y1b3{bottom:306.480000px;}
.y151{bottom:312.690000px;}
.y4e{bottom:313.320000px;}
.yec{bottom:315.390000px;}
.y1f{bottom:320.250000px;}
.y82{bottom:321.060000px;}
.y174{bottom:322.860000px;}
.yb5{bottom:325.290000px;}
.ye3{bottom:328.050000px;}
.y109{bottom:328.080000px;}
.y111{bottom:332.220000px;}
.y1b2{bottom:333.030000px;}
.y194{bottom:333.570000px;}
.y134{bottom:336.810000px;}
.y1e{bottom:337.800000px;}
.y152{bottom:340.050000px;}
.y173{bottom:340.410000px;}
.ye9{bottom:342.750000px;}
.yb4{bottom:342.840000px;}
.ye2{bottom:345.600000px;}
.y108{bottom:345.630000px;}
.y81{bottom:348.420000px;}
.y4d{bottom:348.870000px;}
.y1b1{bottom:350.580000px;}
.y193{bottom:351.120000px;}
.y172{bottom:358.050000px;}
.y112{bottom:359.580000px;}
.yb3{bottom:360.480000px;}
.ye1{bottom:363.270000px;}
.y133{bottom:364.170000px;}
.y1d{bottom:364.710000px;}
.y4c{bottom:366.510000px;}
.y150{bottom:367.410000px;}
.y192{bottom:368.760000px;}
.yea{bottom:370.020000px;}
.y171{bottom:375.600000px;}
.y80{bottom:375.690000px;}
.y1b0{bottom:377.220000px;}
.y4b{bottom:384.060000px;}
.y191{bottom:386.310000px;}
.y10f{bottom:386.940000px;}
.yb2{bottom:387.030000px;}
.y132{bottom:391.440000px;}
.y14f{bottom:394.770000px;}
.ye7{bottom:397.380000px;}
.y4a{bottom:401.700000px;}
.y76{bottom:403.050000px;}
.y190{bottom:403.950000px;}
.y170{bottom:408.540000px;}
.y1c{bottom:412.950000px;}
.y110{bottom:414.210000px;}
.y131{bottom:418.800000px;}
.y49{bottom:419.250000px;}
.yb1{bottom:419.970000px;}
.y1af{bottom:421.410000px;}
.y14e{bottom:422.040000px;}
.ye8{bottom:424.740000px;}
.y79{bottom:430.410000px;}
.y1b{bottom:430.860000px;}
.y16f{bottom:435.900000px;}
.y48{bottom:436.800000px;}
.y18f{bottom:439.500000px;}
.y10c{bottom:441.570000px;}
.y130{bottom:446.160000px;}
.yb0{bottom:447.330000px;}
.y1ae{bottom:447.960000px;}
.ye4{bottom:452.100000px;}
.y47{bottom:454.440000px;}
.y14d{bottom:454.620000px;}
.y18e{bottom:457.050000px;}
.y78{bottom:457.770000px;}
.y16e{bottom:463.260000px;}
.y1a{bottom:467.940000px;}
.y10d{bottom:468.930000px;}
.yaf{bottom:474.720000px;}
.y1ad{bottom:474.900000px;}
.ye6{bottom:479.400000px;}
.y46{bottom:481.020000px;}
.y14c{bottom:482.010000px;}
.y74{bottom:485.070000px;}
.y19{bottom:485.520000px;}
.y16d{bottom:490.560000px;}
.y18d{bottom:492.270000px;}
.y12f{bottom:494.880000px;}
.y10a{bottom:496.230000px;}
.yae{bottom:502.080000px;}
.y18{bottom:503.160000px;}
.yd8{bottom:506.760000px;}
.y14b{bottom:509.370000px;}
.y75{bottom:512.430000px;}
.y45{bottom:516.930000px;}
.y17{bottom:520.710000px;}
.y1ac{bottom:523.140000px;}
.y10b{bottom:523.590000px;}
.y18c{bottom:527.910000px;}
.yad{bottom:529.350000px;}
.y12e{bottom:530.070000px;}
.ydf{bottom:534.120000px;}
.y16{bottom:538.260000px;}
.y16c{bottom:539.340000px;}
.y6e{bottom:539.790000px;}
.y18b{bottom:545.460000px;}
.y1ab{bottom:550.050000px;}
.y101{bottom:550.950000px;}
.y15{bottom:555.900000px;}
.yac{bottom:556.710000px;}
.y16b{bottom:556.890000px;}
.ydc{bottom:561.480000px;}
.y18a{bottom:563.010000px;}
.y44{bottom:565.260000px;}
.y12d{bottom:565.620000px;}
.y73{bottom:567.060000px;}
.y14{bottom:573.450000px;}
.y16a{bottom:574.440000px;}
.y14a{bottom:575.610000px;}
.y106{bottom:578.310000px;}
.y189{bottom:580.650000px;}
.y43{bottom:582.810000px;}
.y12c{bottom:583.260000px;}
.yab{bottom:584.070000px;}
.y1aa{bottom:587.130000px;}
.yde{bottom:588.750000px;}
.y13{bottom:591.090000px;}
.y149{bottom:593.250000px;}
.y72{bottom:594.420000px;}
.y188{bottom:598.200000px;}
.y42{bottom:600.360000px;}
.y12b{bottom:600.810000px;}
.y169{bottom:601.080000px;}
.y1a9{bottom:604.680000px;}
.y104{bottom:605.580000px;}
.y12{bottom:608.640000px;}
.y148{bottom:610.800000px;}
.ya7{bottom:611.340000px;}
.ycc{bottom:616.110000px;}
.y6d{bottom:621.780000px;}
.y1a8{bottom:622.230000px;}
.y11{bottom:626.190000px;}
.y105{bottom:632.940000px;}
.y129{bottom:633.750000px;}
.y187{bottom:633.840000px;}
.y41{bottom:636.000000px;}
.y168{bottom:636.630000px;}
.yaa{bottom:638.700000px;}
.yd7{bottom:643.470000px;}
.y10{bottom:643.830000px;}
.y147{bottom:646.440000px;}
.y6c{bottom:649.140000px;}
.y186{bottom:651.390000px;}
.y40{bottom:653.550000px;}
.y167{bottom:654.270000px;}
.yf8{bottom:660.300000px;}
.yf{bottom:661.380000px;}
.y146{bottom:663.990000px;}
.y128{bottom:665.610000px;}
.y185{bottom:668.940000px;}
.yd5{bottom:670.740000px;}
.y3f{bottom:671.190000px;}
.y166{bottom:671.820000px;}
.y6a{bottom:676.410000px;}
.ye{bottom:679.020000px;}
.y1a7{bottom:686.220000px;}
.y184{bottom:686.580000px;}
.ya6{bottom:687.390000px;}
.y100{bottom:687.660000px;}
.y165{bottom:689.370000px;}
.y127{bottom:692.970000px;}
.yd{bottom:696.570000px;}
.y145{bottom:696.930000px;}
.yd6{bottom:698.100000px;}
.y6b{bottom:703.770000px;}
.y183{bottom:704.130000px;}
.y3e{bottom:706.740000px;}
.y164{bottom:707.010000px;}
.y1a6{bottom:713.130000px;}
.yc{bottom:714.120000px;}
.yfe{bottom:714.930000px;}
.y126{bottom:720.240000px;}
.ya5{bottom:723.030000px;}
.y3d{bottom:724.290000px;}
.y1c4{bottom:725.190000px;}
.yd3{bottom:725.460000px;}
.y182{bottom:731.040000px;}
.y68{bottom:731.130000px;}
.yb{bottom:731.760000px;}
.y163{bottom:739.950000px;}
.ya4{bottom:740.580000px;}
.yff{bottom:742.290000px;}
.y124{bottom:747.600000px;}
.y1a5{bottom:750.120000px;}
.y144{bottom:751.650000px;}
.y1c3{bottom:751.740000px;}
.yd4{bottom:752.820000px;}
.ya3{bottom:758.130000px;}
.y69{bottom:758.490000px;}
.ya{bottom:758.670000px;}
.y3c{bottom:759.930000px;}
.y162{bottom:767.310000px;}
.y1c2{bottom:769.290000px;}
.yfc{bottom:769.650000px;}
.y1a4{bottom:777.030000px;}
.y3b{bottom:777.480000px;}
.y181{bottom:779.280000px;}
.yd1{bottom:780.090000px;}
.ya2{bottom:784.770000px;}
.y62{bottom:785.760000px;}
.y161{bottom:794.670000px;}
.y3a{bottom:795.030000px;}
.y1c1{bottom:795.930000px;}
.yfd{bottom:796.920000px;}
.y9{bottom:805.380000px;}
.yd2{bottom:807.450000px;}
.y64{bottom:813.120000px;}
.y1c0{bottom:813.480000px;}
.y123{bottom:813.930000px;}
.y1a3{bottom:814.380000px;}
.y180{bottom:814.470000px;}
.y143{bottom:817.890000px;}
.ya1{bottom:820.320000px;}
.y160{bottom:821.940000px;}
.yfa{bottom:824.280000px;}
.y39{bottom:830.670000px;}
.y122{bottom:831.480000px;}
.y17f{bottom:832.110000px;}
.yca{bottom:834.810000px;}
.y142{bottom:835.530000px;}
.ya0{bottom:837.960000px;}
.y1bf{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.y121{bottom:849.030000px;}
.y15f{bottom:849.300000px;}
.yfb{bottom:851.640000px;}
.y141{bottom:853.080000px;}
.y9f{bottom:855.510000px;}
.y1be{bottom:857.670000px;}
.y61{bottom:861.810000px;}
.ycb{bottom:862.170000px;}
.y1a2{bottom:862.620000px;}
.y17e{bottom:865.050000px;}
.y38{bottom:866.220000px;}
.y9e{bottom:873.060000px;}
.y7{bottom:877.200000px;}
.yf4{bottom:879.000000px;}
.y1a1{bottom:880.260000px;}
.y37{bottom:883.860000px;}
.y1bd{bottom:884.220000px;}
.y120{bottom:884.670000px;}
.y140{bottom:888.630000px;}
.y9d{bottom:890.700000px;}
.y17d{bottom:892.410000px;}
.y60{bottom:897.450000px;}
.y1a0{bottom:897.810000px;}
.y15e{bottom:897.990000px;}
.y36{bottom:901.410000px;}
.y1bc{bottom:901.860000px;}
.y11f{bottom:902.220000px;}
.y13f{bottom:906.270000px;}
.y9c{bottom:908.250000px;}
.yc9{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y5f{bottom:915.000000px;}
.y19f{bottom:915.450000px;}
.y15d{bottom:915.630000px;}
.y17c{bottom:919.680000px;}
.y11e{bottom:919.860000px;}
.y13e{bottom:923.820000px;}
.yf6{bottom:923.910000px;}
.y9b{bottom:925.890000px;}
.yc8{bottom:928.410000px;}
.y15c{bottom:933.180000px;}
.y35{bottom:936.960000px;}
.y5e{bottom:941.550000px;}
.y19e{bottom:942.270000px;}
.y9a{bottom:943.440000px;}
.y1bb{bottom:945.960000px;}
.y17b{bottom:947.040000px;}
.y5{bottom:949.290000px;}
.y34{bottom:954.600000px;}
.y11d{bottom:955.410000px;}
.y13d{bottom:956.850000px;}
.yc7{bottom:963.960000px;}
.y15b{bottom:968.730000px;}
.y33{bottom:972.150000px;}
.yf3{bottom:972.600000px;}
.y11c{bottom:972.960000px;}
.y17a{bottom:974.400000px;}
.y5d{bottom:977.460000px;}
.y99{bottom:978.270000px;}
.yc6{bottom:981.600000px;}
.y13c{bottom:984.120000px;}
.y4{bottom:987.630000px;}
.yf2{bottom:990.150000px;}
.y90{bottom:990.510000px;}
.y11b{bottom:990.600000px;}
.yc5{bottom:999.150000px;}
.y15a{bottom:1001.760000px;}
.y32{bottom:1007.790000px;}
.y11a{bottom:1008.150000px;}
.y13b{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.yc4{bottom:1016.820000px;}
.y98{bottom:1017.810000px;}
.y31{bottom:1025.370000px;}
.y5c{bottom:1025.820000px;}
.y159{bottom:1029.060000px;}
.yc3{bottom:1034.370000px;}
.y13a{bottom:1038.870000px;}
.y30{bottom:1042.920000px;}
.y5b{bottom:1043.370000px;}
.y95{bottom:1045.170000px;}
.yc2{bottom:1051.920000px;}
.y158{bottom:1056.420000px;}
.y2f{bottom:1060.560000px;}
.y5a{bottom:1060.920000px;}
.yc1{bottom:1069.560000px;}
.y8e{bottom:1072.530000px;}
.y2e{bottom:1078.110000px;}
.y59{bottom:1078.560000px;}
.yc0{bottom:1087.110000px;}
.y58{bottom:1096.110000px;}
.y8a{bottom:1099.890000px;}
.y139{bottom:1105.110000px;}
.y2d{bottom:1113.750000px;}
.ybf{bottom:1122.750000px;}
.y8d{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h19{height:25.020000px;}
.h18{height:25.110000px;}
.hc{height:26.550000px;}
.h10{height:26.580000px;}
.hd{height:26.640000px;}
.h24{height:26.670000px;}
.h2{height:30.022383px;}
.h22{height:31.140000px;}
.h25{height:31.860000px;}
.h3{height:39.155273px;}
.h14{height:41.661211px;}
.h1f{height:44.100000px;}
.h21{height:44.190000px;}
.h16{height:50.667539px;}
.h6{height:50.902383px;}
.h17{height:50.940000px;}
.h7{height:52.311445px;}
.hb{height:53.910000px;}
.h1d{height:53.940000px;}
.h15{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h27{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h23{height:70.311445px;}
.h1e{height:71.460000px;}
.h4{height:72.985430px;}
.h26{height:73.191445px;}
.h13{height:81.210000px;}
.he{height:81.270000px;}
.hf{height:81.300000px;}
.h20{height:108.540000px;}
.h12{height:108.570000px;}
.h1b{height:108.630000px;}
.h11{height:190.620000px;}
.h1a{height:217.890000px;}
.h1c{height:381.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w20{width:15.660000px;}
.w27{width:31.140000px;}
.w41{width:50.670000px;}
.w2b{width:51.480000px;}
.w1d{width:53.010000px;}
.w37{width:54.180000px;}
.w33{width:54.270000px;}
.w2f{width:54.360000px;}
.w48{width:54.450000px;}
.w25{width:74.160000px;}
.w14{width:76.680000px;}
.w16{width:76.710000px;}
.we{width:79.380000px;}
.w1a{width:82.260000px;}
.w8{width:88.650000px;}
.wa{width:92.280000px;}
.w3a{width:94.950000px;}
.w1c{width:96.210000px;}
.w1b{width:96.330000px;}
.w4{width:105.660000px;}
.w1e{width:105.690000px;}
.w7{width:107.370000px;}
.w15{width:115.380000px;}
.w17{width:115.470000px;}
.w24{width:116.280000px;}
.wf{width:117.540000px;}
.w10{width:117.570000px;}
.w1f{width:126.540000px;}
.w5{width:126.840000px;}
.w2a{width:131.040000px;}
.w26{width:131.160000px;}
.w49{width:134.280000px;}
.w29{width:136.740000px;}
.w3b{width:142.740000px;}
.w6{width:146.250000px;}
.wd{width:151.740000px;}
.w4a{width:151.830000px;}
.w11{width:157.800000px;}
.w3e{width:159.870000px;}
.w2d{width:160.650000px;}
.w31{width:167.520000px;}
.w35{width:167.970000px;}
.w3f{width:168.840000px;}
.w44{width:168.930000px;}
.w9{width:169.290000px;}
.w12{width:192.870000px;}
.w13{width:192.900000px;}
.wb{width:197.730000px;}
.wc{width:197.760000px;}
.w4b{width:219.630000px;}
.w2e{width:227.820000px;}
.w46{width:228.960000px;}
.w32{width:235.440000px;}
.w36{width:236.430000px;}
.w40{width:238.350000px;}
.w45{width:238.440000px;}
.w2c{width:241.050000px;}
.w43{width:244.290000px;}
.w18{width:249.330000px;}
.w3{width:258.690000px;}
.w47{width:269.670000px;}
.w21{width:280.020000px;}
.w23{width:282.990000px;}
.w42{width:289.740000px;}
.w38{width:291.420000px;}
.w34{width:294.690000px;}
.w30{width:296.040000px;}
.w3d{width:318.180000px;}
.w19{width:329.970000px;}
.w39{width:424.590000px;}
.w28{width:434.190000px;}
.w22{width:474.960000px;}
.w4c{width:562.350000px;}
.w3c{width:718.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x1{left:68.040000px;}
.x4{left:72.720000px;}
.x2f{left:87.120000px;}
.x38{left:92.520000px;}
.x12{left:97.830000px;}
.x27{left:103.500000px;}
.x42{left:111.239987px;}
.xc{left:125.820000px;}
.x34{left:136.620000px;}
.x18{left:156.600000px;}
.xa{left:162.120000px;}
.x3e{left:165.450000px;}
.x3b{left:169.410000px;}
.x33{left:193.530000px;}
.x22{left:200.640000px;}
.x2{left:211.079987px;}
.xd{left:218.820000px;}
.x13{left:256.350000px;}
.x1d{left:263.010000px;}
.x35{left:297.300000px;}
.x10{left:299.010000px;}
.x3f{left:300.450000px;}
.x23{left:317.640000px;}
.x6{left:332.130000px;}
.x16{left:333.840000px;}
.x39{left:337.530000px;}
.x28{left:345.270000px;}
.x1f{left:349.500000px;}
.xb{left:350.849987px;}
.x2e{left:364.260000px;}
.x2b{left:365.610000px;}
.x1e{left:390.270000px;}
.x3c{left:399.090000px;}
.x19{left:406.650000px;}
.xe{left:417.270000px;}
.x7{left:438.510000px;}
.x14{left:450.030000px;}
.x40{left:453.000000px;}
.x36{left:466.950000px;}
.x1a{left:489.630000px;}
.x11{left:497.460000px;}
.x24{left:503.670000px;}
.x29{left:506.730000px;}
.x30{left:512.430000px;}
.x17{left:527.460000px;}
.x2c{left:533.940000px;}
.x8{left:566.160000px;}
.x1b{left:586.680000px;}
.x31{left:608.190000px;}
.xf{left:615.750000px;}
.x20{left:633.300000px;}
.x25{left:641.130000px;}
.x15{left:643.650000px;}
.x3d{left:669.480000px;}
.x41{left:673.440000px;}
.x1c{left:683.610000px;}
.x37{left:706.020000px;}
.x9{left:713.130000px;}
.x2a{left:735.360000px;}
.x3a{left:746.340000px;}
.x21{left:750.300000px;}
.x32{left:751.740000px;}
.x2d{left:770.190000px;}
.x26{left:772.980000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.ls16{letter-spacing:-1.445333pt;}
.ls13{letter-spacing:-1.194667pt;}
.ls15{letter-spacing:-1.125333pt;}
.ls12{letter-spacing:-0.650667pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.485867pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.104533pt;}
.ls18{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.009920pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.270933pt;}
.ws13{word-spacing:-11.106133pt;}
.wsf{word-spacing:-10.631467pt;}
.wsd{word-spacing:-10.562133pt;}
.ws10{word-spacing:-10.311467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-7.603200pt;}
.wsc{word-spacing:-7.016533pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._9{margin-left:-3.259733pt;}
._6{margin-left:-1.923199pt;}
._2{margin-left:-1.015467pt;}
._1{width:1.320853pt;}
._a{width:2.458133pt;}
._3{width:3.687467pt;}
._4{width:4.916266pt;}
._5{width:5.888748pt;}
._0{width:6.800320pt;}
._c{width:7.802133pt;}
._d{width:8.751681pt;}
._b{width:10.100267pt;}
._7{width:13.146133pt;}
._15{width:14.068050pt;}
._e{width:14.963200pt;}
._11{width:16.601813pt;}
._f{width:17.742080pt;}
._8{width:19.291733pt;}
._10{width:20.307307pt;}
._16{width:22.177600pt;}
._1c{width:25.007996pt;}
._24{width:26.187524pt;}
._1f{width:34.575680pt;}
._1b{width:35.963837pt;}
._14{width:41.309120pt;}
._23{width:54.711357pt;}
._1e{width:57.072960pt;}
._20{width:65.303680pt;}
._19{width:71.021760pt;}
._1d{width:72.090560pt;}
._17{width:89.672320pt;}
._18{width:93.520000pt;}
._22{width:95.945280pt;}
._1a{width:101.803200pt;}
._12{width:107.628160pt;}
._21{width:112.491200pt;}
._13{width:155.617280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:6.880000pt;}
.y65{bottom:6.960000pt;}
.y10e{bottom:6.986667pt;}
.y67{bottom:7.040000pt;}
.y12a{bottom:11.040000pt;}
.ya9{bottom:11.680000pt;}
.ydd{bottom:15.600000pt;}
.y66{bottom:15.680000pt;}
.y88{bottom:16.320000pt;}
.y8c{bottom:19.600000pt;}
.y71{bottom:20.320000pt;}
.yf7{bottom:22.560000pt;}
.y125{bottom:22.640000pt;}
.yb8{bottom:29.920000pt;}
.y63{bottom:31.280000pt;}
.ye5{bottom:31.306667pt;}
.ya8{bottom:31.360000pt;}
.y94{bottom:32.986667pt;}
.y8b{bottom:35.280000pt;}
.y70{bottom:35.920000pt;}
.y97{bottom:35.946667pt;}
.y77{bottom:36.000000pt;}
.ydb{bottom:44.640000pt;}
.yf5{bottom:46.880000pt;}
.y93{bottom:48.586667pt;}
.y96{bottom:55.546667pt;}
.y6f{bottom:55.600000pt;}
.y8f{bottom:59.600000pt;}
.yda{bottom:60.240000pt;}
.y103{bottom:64.240000pt;}
.y92{bottom:64.266667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y7f{bottom:78.240000pt;}
.y102{bottom:79.840000pt;}
.y91{bottom:79.866667pt;}
.yd9{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y7e{bottom:93.920000pt;}
.ybe{bottom:100.746667pt;}
.y119{bottom:104.586667pt;}
.ye0{bottom:110.266667pt;}
.y7d{bottom:113.520000pt;}
.y57{bottom:113.866667pt;}
.y86{bottom:115.306667pt;}
.ybc{bottom:123.706667pt;}
.y19d{bottom:123.866667pt;}
.y29{bottom:128.346667pt;}
.yd0{bottom:130.160000pt;}
.y7c{bottom:133.120000pt;}
.yf1{bottom:134.586667pt;}
.y118{bottom:136.186667pt;}
.y1ba{bottom:138.986667pt;}
.y19c{bottom:139.466667pt;}
.y89{bottom:139.626667pt;}
.y28{bottom:143.946667pt;}
.y56{bottom:145.466667pt;}
.yf9{bottom:145.760000pt;}
.ycf{bottom:145.840000pt;}
.ybb{bottom:146.666667pt;}
.y107{bottom:149.546667pt;}
.y7b{bottom:152.800000pt;}
.y1b9{bottom:154.586667pt;}
.y19b{bottom:155.066667pt;}
.yef{bottom:158.826667pt;}
.y27{bottom:159.626667pt;}
.y55{bottom:161.066667pt;}
.yce{bottom:161.440000pt;}
.y87{bottom:163.866667pt;}
.yba{bottom:169.626667pt;}
.y19a{bottom:170.746667pt;}
.y117{bottom:173.786667pt;}
.y26{bottom:175.226667pt;}
.y54{bottom:176.746667pt;}
.y179{bottom:176.826667pt;}
.ycd{bottom:177.040000pt;}
.y1b8{bottom:178.266667pt;}
.yf0{bottom:183.146667pt;}
.y157{bottom:186.106667pt;}
.y199{bottom:186.346667pt;}
.y7a{bottom:188.186667pt;}
.y25{bottom:190.826667pt;}
.y138{bottom:191.146667pt;}
.y53{bottom:192.346667pt;}
.yb7{bottom:192.586667pt;}
.y1b7{bottom:193.866667pt;}
.y115{bottom:198.106667pt;}
.y156{bottom:201.786667pt;}
.y24{bottom:206.506667pt;}
.yed{bottom:207.466667pt;}
.y52{bottom:207.946667pt;}
.y178{bottom:208.426667pt;}
.y1b6{bottom:209.466667pt;}
.y85{bottom:212.506667pt;}
.yb9{bottom:215.546667pt;}
.y155{bottom:217.386667pt;}
.y198{bottom:217.946667pt;}
.y23{bottom:222.106667pt;}
.y116{bottom:222.426667pt;}
.y137{bottom:222.826667pt;}
.y51{bottom:223.626667pt;}
.yee{bottom:231.786667pt;}
.y154{bottom:233.066667pt;}
.y1b5{bottom:233.146667pt;}
.y197{bottom:233.626667pt;}
.y84{bottom:236.746667pt;}
.y22{bottom:237.786667pt;}
.y50{bottom:239.226667pt;}
.y177{bottom:240.106667pt;}
.y113{bottom:246.746667pt;}
.y153{bottom:248.666667pt;}
.y1b4{bottom:248.746667pt;}
.y196{bottom:249.226667pt;}
.y21{bottom:253.386667pt;}
.y136{bottom:254.426667pt;}
.y4f{bottom:254.906667pt;}
.y176{bottom:255.706667pt;}
.yeb{bottom:256.026667pt;}
.yb6{bottom:257.466667pt;}
.y83{bottom:261.066667pt;}
.y195{bottom:264.906667pt;}
.y20{bottom:268.986667pt;}
.y135{bottom:270.106667pt;}
.y114{bottom:270.986667pt;}
.y175{bottom:271.306667pt;}
.y1b3{bottom:272.426667pt;}
.y151{bottom:277.946667pt;}
.y4e{bottom:278.506667pt;}
.yec{bottom:280.346667pt;}
.y1f{bottom:284.666667pt;}
.y82{bottom:285.386667pt;}
.y174{bottom:286.986667pt;}
.yb5{bottom:289.146667pt;}
.ye3{bottom:291.600000pt;}
.y109{bottom:291.626667pt;}
.y111{bottom:295.306667pt;}
.y1b2{bottom:296.026667pt;}
.y194{bottom:296.506667pt;}
.y134{bottom:299.386667pt;}
.y1e{bottom:300.266667pt;}
.y152{bottom:302.266667pt;}
.y173{bottom:302.586667pt;}
.ye9{bottom:304.666667pt;}
.yb4{bottom:304.746667pt;}
.ye2{bottom:307.200000pt;}
.y108{bottom:307.226667pt;}
.y81{bottom:309.706667pt;}
.y4d{bottom:310.106667pt;}
.y1b1{bottom:311.626667pt;}
.y193{bottom:312.106667pt;}
.y172{bottom:318.266667pt;}
.y112{bottom:319.626667pt;}
.yb3{bottom:320.426667pt;}
.ye1{bottom:322.906667pt;}
.y133{bottom:323.706667pt;}
.y1d{bottom:324.186667pt;}
.y4c{bottom:325.786667pt;}
.y150{bottom:326.586667pt;}
.y192{bottom:327.786667pt;}
.yea{bottom:328.906667pt;}
.y171{bottom:333.866667pt;}
.y80{bottom:333.946667pt;}
.y1b0{bottom:335.306667pt;}
.y4b{bottom:341.386667pt;}
.y191{bottom:343.386667pt;}
.y10f{bottom:343.946667pt;}
.yb2{bottom:344.026667pt;}
.y132{bottom:347.946667pt;}
.y14f{bottom:350.906667pt;}
.ye7{bottom:353.226667pt;}
.y4a{bottom:357.066667pt;}
.y76{bottom:358.266667pt;}
.y190{bottom:359.066667pt;}
.y170{bottom:363.146667pt;}
.y1c{bottom:367.066667pt;}
.y110{bottom:368.186667pt;}
.y131{bottom:372.266667pt;}
.y49{bottom:372.666667pt;}
.yb1{bottom:373.306667pt;}
.y1af{bottom:374.586667pt;}
.y14e{bottom:375.146667pt;}
.ye8{bottom:377.546667pt;}
.y79{bottom:382.586667pt;}
.y1b{bottom:382.986667pt;}
.y16f{bottom:387.466667pt;}
.y48{bottom:388.266667pt;}
.y18f{bottom:390.666667pt;}
.y10c{bottom:392.506667pt;}
.y130{bottom:396.586667pt;}
.yb0{bottom:397.626667pt;}
.y1ae{bottom:398.186667pt;}
.ye4{bottom:401.866667pt;}
.y47{bottom:403.946667pt;}
.y14d{bottom:404.106667pt;}
.y18e{bottom:406.266667pt;}
.y78{bottom:406.906667pt;}
.y16e{bottom:411.786667pt;}
.y1a{bottom:415.946667pt;}
.y10d{bottom:416.826667pt;}
.yaf{bottom:421.973333pt;}
.y1ad{bottom:422.133333pt;}
.ye6{bottom:426.133333pt;}
.y46{bottom:427.573333pt;}
.y14c{bottom:428.453333pt;}
.y74{bottom:431.173333pt;}
.y19{bottom:431.573333pt;}
.y16d{bottom:436.053333pt;}
.y18d{bottom:437.573333pt;}
.y12f{bottom:439.893333pt;}
.y10a{bottom:441.093333pt;}
.yae{bottom:446.293333pt;}
.y18{bottom:447.253333pt;}
.yd8{bottom:450.453333pt;}
.y14b{bottom:452.773333pt;}
.y75{bottom:455.493333pt;}
.y45{bottom:459.493333pt;}
.y17{bottom:462.853333pt;}
.y1ac{bottom:465.013333pt;}
.y10b{bottom:465.413333pt;}
.y18c{bottom:469.253333pt;}
.yad{bottom:470.533333pt;}
.y12e{bottom:471.173333pt;}
.ydf{bottom:474.773333pt;}
.y16{bottom:478.453333pt;}
.y16c{bottom:479.413333pt;}
.y6e{bottom:479.813333pt;}
.y18b{bottom:484.853333pt;}
.y1ab{bottom:488.933333pt;}
.y101{bottom:489.733333pt;}
.y15{bottom:494.133333pt;}
.yac{bottom:494.853333pt;}
.y16b{bottom:495.013333pt;}
.ydc{bottom:499.093333pt;}
.y18a{bottom:500.453333pt;}
.y44{bottom:502.453333pt;}
.y12d{bottom:502.773333pt;}
.y73{bottom:504.053333pt;}
.y14{bottom:509.733333pt;}
.y16a{bottom:510.613333pt;}
.y14a{bottom:511.653333pt;}
.y106{bottom:514.053333pt;}
.y189{bottom:516.133333pt;}
.y43{bottom:518.053333pt;}
.y12c{bottom:518.453333pt;}
.yab{bottom:519.173333pt;}
.y1aa{bottom:521.893333pt;}
.yde{bottom:523.333333pt;}
.y13{bottom:525.413333pt;}
.y149{bottom:527.333333pt;}
.y72{bottom:528.373333pt;}
.y188{bottom:531.733333pt;}
.y42{bottom:533.653333pt;}
.y12b{bottom:534.053333pt;}
.y169{bottom:534.293333pt;}
.y1a9{bottom:537.493333pt;}
.y104{bottom:538.293333pt;}
.y12{bottom:541.013333pt;}
.y148{bottom:542.933333pt;}
.ya7{bottom:543.413333pt;}
.ycc{bottom:547.653333pt;}
.y6d{bottom:552.693333pt;}
.y1a8{bottom:553.093333pt;}
.y11{bottom:556.613333pt;}
.y105{bottom:562.613333pt;}
.y129{bottom:563.333333pt;}
.y187{bottom:563.413333pt;}
.y41{bottom:565.333333pt;}
.y168{bottom:565.893333pt;}
.yaa{bottom:567.733333pt;}
.yd7{bottom:571.973333pt;}
.y10{bottom:572.293333pt;}
.y147{bottom:574.613333pt;}
.y6c{bottom:577.013333pt;}
.y186{bottom:579.013333pt;}
.y40{bottom:580.933333pt;}
.y167{bottom:581.573333pt;}
.yf8{bottom:586.933333pt;}
.yf{bottom:587.893333pt;}
.y146{bottom:590.213333pt;}
.y128{bottom:591.653333pt;}
.y185{bottom:594.613333pt;}
.yd5{bottom:596.213333pt;}
.y3f{bottom:596.613333pt;}
.y166{bottom:597.173333pt;}
.y6a{bottom:601.253333pt;}
.ye{bottom:603.573333pt;}
.y1a7{bottom:609.973333pt;}
.y184{bottom:610.293333pt;}
.ya6{bottom:611.013333pt;}
.y100{bottom:611.253333pt;}
.y165{bottom:612.773333pt;}
.y127{bottom:615.973333pt;}
.yd{bottom:619.173333pt;}
.y145{bottom:619.493333pt;}
.yd6{bottom:620.533333pt;}
.y6b{bottom:625.573333pt;}
.y183{bottom:625.893333pt;}
.y3e{bottom:628.213333pt;}
.y164{bottom:628.453333pt;}
.y1a6{bottom:633.893333pt;}
.yc{bottom:634.773333pt;}
.yfe{bottom:635.493333pt;}
.y126{bottom:640.213333pt;}
.ya5{bottom:642.693333pt;}
.y3d{bottom:643.813333pt;}
.y1c4{bottom:644.613333pt;}
.yd3{bottom:644.853333pt;}
.y182{bottom:649.813333pt;}
.y68{bottom:649.893333pt;}
.yb{bottom:650.453333pt;}
.y163{bottom:657.733333pt;}
.ya4{bottom:658.293333pt;}
.yff{bottom:659.813333pt;}
.y124{bottom:664.533333pt;}
.y1a5{bottom:666.773333pt;}
.y144{bottom:668.133333pt;}
.y1c3{bottom:668.213333pt;}
.yd4{bottom:669.173333pt;}
.ya3{bottom:673.893333pt;}
.y69{bottom:674.213333pt;}
.ya{bottom:674.373333pt;}
.y3c{bottom:675.493333pt;}
.y162{bottom:682.053333pt;}
.y1c2{bottom:683.813333pt;}
.yfc{bottom:684.133333pt;}
.y1a4{bottom:690.693333pt;}
.y3b{bottom:691.093333pt;}
.y181{bottom:692.693333pt;}
.yd1{bottom:693.413333pt;}
.ya2{bottom:697.573333pt;}
.y62{bottom:698.453333pt;}
.y161{bottom:706.373333pt;}
.y3a{bottom:706.693333pt;}
.y1c1{bottom:707.493333pt;}
.yfd{bottom:708.373333pt;}
.y9{bottom:715.893333pt;}
.yd2{bottom:717.733333pt;}
.y64{bottom:722.773333pt;}
.y1c0{bottom:723.093333pt;}
.y123{bottom:723.493333pt;}
.y1a3{bottom:723.893333pt;}
.y180{bottom:723.973333pt;}
.y143{bottom:727.013333pt;}
.ya1{bottom:729.173333pt;}
.y160{bottom:730.613333pt;}
.yfa{bottom:732.693333pt;}
.y39{bottom:738.373333pt;}
.y122{bottom:739.093333pt;}
.y17f{bottom:739.653333pt;}
.yca{bottom:742.053333pt;}
.y142{bottom:742.693333pt;}
.ya0{bottom:744.853333pt;}
.y1bf{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.y121{bottom:754.693333pt;}
.y15f{bottom:754.933333pt;}
.yfb{bottom:757.013333pt;}
.y141{bottom:758.293333pt;}
.y9f{bottom:760.453333pt;}
.y1be{bottom:762.373333pt;}
.y61{bottom:766.053333pt;}
.ycb{bottom:766.373333pt;}
.y1a2{bottom:766.773333pt;}
.y17e{bottom:768.933333pt;}
.y38{bottom:769.973333pt;}
.y9e{bottom:776.053333pt;}
.y7{bottom:779.733333pt;}
.yf4{bottom:781.333333pt;}
.y1a1{bottom:782.453333pt;}
.y37{bottom:785.653333pt;}
.y1bd{bottom:785.973333pt;}
.y120{bottom:786.373333pt;}
.y140{bottom:789.893333pt;}
.y9d{bottom:791.733333pt;}
.y17d{bottom:793.253333pt;}
.y60{bottom:797.733333pt;}
.y1a0{bottom:798.053333pt;}
.y15e{bottom:798.213333pt;}
.y36{bottom:801.253333pt;}
.y1bc{bottom:801.653333pt;}
.y11f{bottom:801.973333pt;}
.y13f{bottom:805.573333pt;}
.y9c{bottom:807.333333pt;}
.yc9{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y5f{bottom:813.333333pt;}
.y19f{bottom:813.733333pt;}
.y15d{bottom:813.893333pt;}
.y17c{bottom:817.493333pt;}
.y11e{bottom:817.653333pt;}
.y13e{bottom:821.173333pt;}
.yf6{bottom:821.253333pt;}
.y9b{bottom:823.013333pt;}
.yc8{bottom:825.253333pt;}
.y15c{bottom:829.493333pt;}
.y35{bottom:832.853333pt;}
.y5e{bottom:836.933333pt;}
.y19e{bottom:837.573333pt;}
.y9a{bottom:838.613333pt;}
.y1bb{bottom:840.853333pt;}
.y17b{bottom:841.813333pt;}
.y5{bottom:843.813333pt;}
.y34{bottom:848.533333pt;}
.y11d{bottom:849.253333pt;}
.y13d{bottom:850.533333pt;}
.yc7{bottom:856.853333pt;}
.y15b{bottom:861.093333pt;}
.y33{bottom:864.133333pt;}
.yf3{bottom:864.533333pt;}
.y11c{bottom:864.853333pt;}
.y17a{bottom:866.133333pt;}
.y5d{bottom:868.853333pt;}
.y99{bottom:869.573333pt;}
.yc6{bottom:872.533333pt;}
.y13c{bottom:874.773333pt;}
.y4{bottom:877.893333pt;}
.yf2{bottom:880.133333pt;}
.y90{bottom:880.453333pt;}
.y11b{bottom:880.533333pt;}
.yc5{bottom:888.133333pt;}
.y15a{bottom:890.453333pt;}
.y32{bottom:895.813333pt;}
.y11a{bottom:896.133333pt;}
.y13b{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.yc4{bottom:903.840000pt;}
.y98{bottom:904.720000pt;}
.y31{bottom:911.440000pt;}
.y5c{bottom:911.840000pt;}
.y159{bottom:914.720000pt;}
.yc3{bottom:919.440000pt;}
.y13a{bottom:923.440000pt;}
.y30{bottom:927.040000pt;}
.y5b{bottom:927.440000pt;}
.y95{bottom:929.040000pt;}
.yc2{bottom:935.040000pt;}
.y158{bottom:939.040000pt;}
.y2f{bottom:942.720000pt;}
.y5a{bottom:943.040000pt;}
.yc1{bottom:950.720000pt;}
.y8e{bottom:953.360000pt;}
.y2e{bottom:958.320000pt;}
.y59{bottom:958.720000pt;}
.yc0{bottom:966.320000pt;}
.y58{bottom:974.320000pt;}
.y8a{bottom:977.680000pt;}
.y139{bottom:982.320000pt;}
.y2d{bottom:990.000000pt;}
.ybf{bottom:998.000000pt;}
.y8d{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h19{height:22.240000pt;}
.h18{height:22.320000pt;}
.hc{height:23.600000pt;}
.h10{height:23.626667pt;}
.hd{height:23.680000pt;}
.h24{height:23.706667pt;}
.h2{height:26.686562pt;}
.h22{height:27.680000pt;}
.h25{height:28.320000pt;}
.h3{height:34.804688pt;}
.h14{height:37.032187pt;}
.h1f{height:39.200000pt;}
.h21{height:39.280000pt;}
.h16{height:45.037812pt;}
.h6{height:45.246562pt;}
.h17{height:45.280000pt;}
.h7{height:46.499062pt;}
.hb{height:47.920000pt;}
.h1d{height:47.946667pt;}
.h15{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h27{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h23{height:62.499062pt;}
.h1e{height:63.520000pt;}
.h4{height:64.875937pt;}
.h26{height:65.059063pt;}
.h13{height:72.186667pt;}
.he{height:72.240000pt;}
.hf{height:72.266667pt;}
.h20{height:96.480000pt;}
.h12{height:96.506667pt;}
.h1b{height:96.560000pt;}
.h11{height:169.440000pt;}
.h1a{height:193.680000pt;}
.h1c{height:339.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w20{width:13.920000pt;}
.w27{width:27.680000pt;}
.w41{width:45.040000pt;}
.w2b{width:45.760000pt;}
.w1d{width:47.120000pt;}
.w37{width:48.160000pt;}
.w33{width:48.240000pt;}
.w2f{width:48.320000pt;}
.w48{width:48.400000pt;}
.w25{width:65.920000pt;}
.w14{width:68.160000pt;}
.w16{width:68.186667pt;}
.we{width:70.560000pt;}
.w1a{width:73.120000pt;}
.w8{width:78.800000pt;}
.wa{width:82.026667pt;}
.w3a{width:84.400000pt;}
.w1c{width:85.520000pt;}
.w1b{width:85.626667pt;}
.w4{width:93.920000pt;}
.w1e{width:93.946667pt;}
.w7{width:95.440000pt;}
.w15{width:102.560000pt;}
.w17{width:102.640000pt;}
.w24{width:103.360000pt;}
.wf{width:104.480000pt;}
.w10{width:104.506667pt;}
.w1f{width:112.480000pt;}
.w5{width:112.746667pt;}
.w2a{width:116.480000pt;}
.w26{width:116.586667pt;}
.w49{width:119.360000pt;}
.w29{width:121.546667pt;}
.w3b{width:126.880000pt;}
.w6{width:130.000000pt;}
.wd{width:134.880000pt;}
.w4a{width:134.960000pt;}
.w11{width:140.266667pt;}
.w3e{width:142.106667pt;}
.w2d{width:142.800000pt;}
.w31{width:148.906667pt;}
.w35{width:149.306667pt;}
.w3f{width:150.080000pt;}
.w44{width:150.160000pt;}
.w9{width:150.480000pt;}
.w12{width:171.440000pt;}
.w13{width:171.466667pt;}
.wb{width:175.760000pt;}
.wc{width:175.786667pt;}
.w4b{width:195.226667pt;}
.w2e{width:202.506667pt;}
.w46{width:203.520000pt;}
.w32{width:209.280000pt;}
.w36{width:210.160000pt;}
.w40{width:211.866667pt;}
.w45{width:211.946667pt;}
.w2c{width:214.266667pt;}
.w43{width:217.146667pt;}
.w18{width:221.626667pt;}
.w3{width:229.946667pt;}
.w47{width:239.706667pt;}
.w21{width:248.906667pt;}
.w23{width:251.546667pt;}
.w42{width:257.546667pt;}
.w38{width:259.040000pt;}
.w34{width:261.946667pt;}
.w30{width:263.146667pt;}
.w3d{width:282.826667pt;}
.w19{width:293.306667pt;}
.w39{width:377.413333pt;}
.w28{width:385.946667pt;}
.w22{width:422.186667pt;}
.w4c{width:499.866667pt;}
.w3c{width:639.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x1{left:60.480000pt;}
.x4{left:64.640000pt;}
.x2f{left:77.440000pt;}
.x38{left:82.240000pt;}
.x12{left:86.960000pt;}
.x27{left:92.000000pt;}
.x42{left:98.879988pt;}
.xc{left:111.840000pt;}
.x34{left:121.440000pt;}
.x18{left:139.200000pt;}
.xa{left:144.106667pt;}
.x3e{left:147.066667pt;}
.x3b{left:150.586667pt;}
.x33{left:172.026667pt;}
.x22{left:178.346667pt;}
.x2{left:187.626655pt;}
.xd{left:194.506667pt;}
.x13{left:227.866667pt;}
.x1d{left:233.786667pt;}
.x35{left:264.266667pt;}
.x10{left:265.786667pt;}
.x3f{left:267.066667pt;}
.x23{left:282.346667pt;}
.x6{left:295.226667pt;}
.x16{left:296.746667pt;}
.x39{left:300.026667pt;}
.x28{left:306.906667pt;}
.x1f{left:310.666667pt;}
.xb{left:311.866655pt;}
.x2e{left:323.786667pt;}
.x2b{left:324.986667pt;}
.x1e{left:346.906667pt;}
.x3c{left:354.746667pt;}
.x19{left:361.466667pt;}
.xe{left:370.906667pt;}
.x7{left:389.786667pt;}
.x14{left:400.026667pt;}
.x40{left:402.666667pt;}
.x36{left:415.066667pt;}
.x1a{left:435.226667pt;}
.x11{left:442.186667pt;}
.x24{left:447.706667pt;}
.x29{left:450.426667pt;}
.x30{left:455.493333pt;}
.x17{left:468.853333pt;}
.x2c{left:474.613333pt;}
.x8{left:503.253333pt;}
.x1b{left:521.493333pt;}
.x31{left:540.613333pt;}
.xf{left:547.333333pt;}
.x20{left:562.933333pt;}
.x25{left:569.893333pt;}
.x15{left:572.133333pt;}
.x3d{left:595.093333pt;}
.x41{left:598.613333pt;}
.x1c{left:607.653333pt;}
.x37{left:627.573333pt;}
.x9{left:633.893333pt;}
.x2a{left:653.653333pt;}
.x3a{left:663.413333pt;}
.x21{left:666.933333pt;}
.x32{left:668.213333pt;}
.x2d{left:684.613333pt;}
.x26{left:687.093333pt;}
.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; }
  