
    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_96aa547ec7465a5275c035f6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a7a603b408adb678cde0198a.woff')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_fb7d94f10b4fac218c9cd419.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7eb695cda41d2f33b928739c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6b4375e50960eefd816680da.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_251ca5fb3a682396b75b1926.woff')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_49ba18b0b64669f6cc229063.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a01910c2bb740287679ccf1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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_da565b6b4fe45381573a42f1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f7705c991e55660d7b59f93e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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:ffb;src:url('chunks/assets/font_4add61939f84180b76113801.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7f868a5362cc1e3bb48cf976.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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:ffd;src:url('chunks/assets/font_395367f34cb55cef5902fc3e.woff')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-1.386000px;}
.ls2{letter-spacing:-1.176000px;}
.lsf{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.200400px;}
.ls1b{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.126600px;}
.ls18{letter-spacing:0.135600px;}
.lsc{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.306600px;}
.ls15{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.460200px;}
.ls8{letter-spacing:0.720000px;}
.lse{letter-spacing:0.876000px;}
.ls1d{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.080000px;}
.ls24{letter-spacing:2.340000px;}
.ls1e{letter-spacing:3.060000px;}
.ls13{letter-spacing:7.380000px;}
.ls17{letter-spacing:8.100000px;}
.ls23{letter-spacing:8.820000px;}
.ls27{letter-spacing:11.466720px;}
.lsd{letter-spacing:19.386720px;}
.ls22{letter-spacing:21.546720px;}
.ls14{letter-spacing:28.746720px;}
.ls26{letter-spacing:41.850720px;}
.ls16{letter-spacing:45.540000px;}
.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;}
}
.wsf{word-spacing:-59.886600px;}
.ws10{word-spacing:-59.760000px;}
.wse{word-spacing:-46.155240px;}
.wsd{word-spacing:-46.144080px;}
.wsc{word-spacing:-42.231600px;}
.ws1{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.816000px;}
.ws13{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.146400px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.ws17{word-spacing:-14.274000px;}
.ws12{word-spacing:-12.236544px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._12{margin-left:-3.715200px;}
._7{margin-left:-2.684160px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._9{width:2.361600px;}
._a{width:3.991920px;}
._b{width:5.210880px;}
._e{width:6.523920px;}
._8{width:8.031120px;}
._10{width:9.203040px;}
._11{width:10.560000px;}
._f{width:11.592000px;}
._d{width:12.612960px;}
._c{width:13.625280px;}
._14{width:16.254720px;}
._13{width:17.330400px;}
._1a{width:18.884160px;}
._15{width:20.239920px;}
._20{width:21.785520px;}
._16{width:25.099200px;}
._21{width:26.351040px;}
._17{width:27.374880px;}
._1b{width:31.813200px;}
._19{width:53.432640px;}
._18{width:54.799920px;}
._1c{width:114.174000px;}
._1f{width:186.092640px;}
._1e{width:221.410800px;}
._1d{width:223.562160px;}
.fc6{color:rgb(128,0,0);}
.fc2{color:transparent;}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:3.240000px;}
.y167{bottom:3.285000px;}
.ye3{bottom:3.960000px;}
.ye1{bottom:4.140000px;}
.yc9{bottom:5.040000px;}
.y14a{bottom:5.760000px;}
.y150{bottom:6.120000px;}
.y14e{bottom:6.300000px;}
.y1b3{bottom:10.800000px;}
.y14c{bottom:15.840000px;}
.ydf{bottom:17.610000px;}
.y193{bottom:20.340000px;}
.y166{bottom:20.385000px;}
.y97{bottom:20.520000px;}
.y195{bottom:20.550000px;}
.y9a{bottom:21.960000px;}
.y8e{bottom:22.860000px;}
.y148{bottom:25.740000px;}
.y1b2{bottom:30.600000px;}
.y1af{bottom:34.920000px;}
.y14b{bottom:35.670000px;}
.y99{bottom:39.060000px;}
.y94{bottom:39.240000px;}
.y8d{bottom:39.960000px;}
.y149{bottom:45.570000px;}
.ydc{bottom:49.500000px;}
.y1b1{bottom:50.580000px;}
.y93{bottom:56.520000px;}
.y8c{bottom:57.240000px;}
.y6{bottom:60.156000px;}
.y1b0{bottom:70.374000px;}
.y9f{bottom:74.520000px;}
.y1ae{bottom:86.976000px;}
.y163{bottom:89.316000px;}
.y1ab{bottom:91.476000px;}
.y9e{bottom:91.800000px;}
.y69{bottom:98.856000px;}
.y13c{bottom:99.576000px;}
.y10f{bottom:103.716000px;}
.y162{bottom:104.076000px;}
.yd9{bottom:105.156000px;}
.yc7{bottom:106.596000px;}
.y1aa{bottom:111.276000px;}
.y68{bottom:118.656000px;}
.ybf{bottom:118.836000px;}
.y188{bottom:119.376000px;}
.y13b{bottom:119.556000px;}
.y33{bottom:119.916000px;}
.y10e{bottom:123.516000px;}
.y161{bottom:123.696000px;}
.yd8{bottom:124.956000px;}
.yc6{bottom:126.396000px;}
.y1a9{bottom:131.076000px;}
.y67{bottom:138.636000px;}
.ybe{bottom:138.816000px;}
.y187{bottom:139.176000px;}
.y13a{bottom:139.356000px;}
.y32{bottom:139.716000px;}
.yd7{bottom:141.516000px;}
.yda{bottom:142.560000px;}
.y10d{bottom:143.316000px;}
.yc5{bottom:146.196000px;}
.y160{bottom:149.076000px;}
.y1a8{bottom:150.870000px;}
.y186{bottom:153.930000px;}
.y66{bottom:158.430000px;}
.ybd{bottom:158.790000px;}
.y139{bottom:159.150000px;}
.y31{bottom:159.510000px;}
.y10c{bottom:163.110000px;}
.yc4{bottom:165.990000px;}
.y15f{bottom:168.870000px;}
.y1a7{bottom:170.850000px;}
.y65{bottom:178.230000px;}
.ybc{bottom:178.590000px;}
.y138{bottom:178.950000px;}
.y30{bottom:179.310000px;}
.y10b{bottom:183.090000px;}
.yc3{bottom:185.970000px;}
.y15e{bottom:188.670000px;}
.y185{bottom:189.210000px;}
.y64{bottom:198.030000px;}
.ybb{bottom:198.570000px;}
.y137{bottom:198.750000px;}
.y2f{bottom:199.110000px;}
.y1a6{bottom:199.650000px;}
.y10a{bottom:202.890000px;}
.yc2{bottom:206.130000px;}
.y15d{bottom:208.470000px;}
.ydd{bottom:214.125000px;}
.y70{bottom:217.830000px;}
.y136{bottom:218.730000px;}
.y2e{bottom:219.090000px;}
.y1a5{bottom:219.450000px;}
.y109{bottom:222.690000px;}
.y184{bottom:224.490000px;}
.yc1{bottom:226.290000px;}
.y63{bottom:226.830000px;}
.yba{bottom:227.370000px;}
.y15c{bottom:228.270000px;}
.y86{bottom:230.430000px;}
.y6f{bottom:237.810000px;}
.y135{bottom:238.530000px;}
.y2d{bottom:238.890000px;}
.y1a4{bottom:239.250000px;}
.y108{bottom:242.490000px;}
.ydb{bottom:243.510000px;}
.yc0{bottom:246.450000px;}
.y62{bottom:246.810000px;}
.yb9{bottom:247.170000px;}
.y15b{bottom:248.250000px;}
.y6e{bottom:257.610000px;}
.y134{bottom:258.330000px;}
.y2c{bottom:258.690000px;}
.y1a3{bottom:259.050000px;}
.y183{bottom:259.770000px;}
.y107{bottom:262.290000px;}
.y61{bottom:266.610000px;}
.yb8{bottom:266.970000px;}
.y15a{bottom:268.050000px;}
.yde{bottom:272.085000px;}
.y6d{bottom:277.410000px;}
.y133{bottom:278.130000px;}
.y2b{bottom:278.490000px;}
.y1a2{bottom:279.030000px;}
.y106{bottom:282.315000px;}
.y60{bottom:286.455000px;}
.yb7{bottom:286.815000px;}
.y159{bottom:296.895000px;}
.y6c{bottom:297.255000px;}
.y132{bottom:297.975000px;}
.y2a{bottom:298.335000px;}
.y1a1{bottom:298.875000px;}
.y182{bottom:300.855000px;}
.y105{bottom:302.115000px;}
.y5f{bottom:306.255000px;}
.yb6{bottom:306.795000px;}
.y85{bottom:313.815000px;}
.y158{bottom:316.695000px;}
.y104{bottom:316.875000px;}
.y6b{bottom:317.055000px;}
.y131{bottom:317.955000px;}
.y29{bottom:318.315000px;}
.y1a0{bottom:318.675000px;}
.y181{bottom:320.655000px;}
.y5e{bottom:326.055000px;}
.yb5{bottom:326.595000px;}
.y88{bottom:327.135000px;}
.y84{bottom:333.615000px;}
.y103{bottom:336.495000px;}
.y6a{bottom:337.035000px;}
.y130{bottom:337.755000px;}
.y28{bottom:338.115000px;}
.y19f{bottom:338.475000px;}
.y180{bottom:340.455000px;}
.y87{bottom:344.775000px;}
.y5d{bottom:346.035000px;}
.yb4{bottom:346.395000px;}
.y102{bottom:355.935000px;}
.y157{bottom:356.475000px;}
.y7f{bottom:356.835000px;}
.y12f{bottom:357.555000px;}
.y27{bottom:357.915000px;}
.y19e{bottom:358.275000px;}
.y17f{bottom:360.255000px;}
.y5c{bottom:365.835000px;}
.yb3{bottom:366.195000px;}
.y101{bottom:375.555000px;}
.y156{bottom:376.275000px;}
.y7e{bottom:376.635000px;}
.y12e{bottom:377.355000px;}
.y26{bottom:377.715000px;}
.y19d{bottom:378.255000px;}
.y17e{bottom:380.235000px;}
.y5b{bottom:385.635000px;}
.yb2{bottom:385.995000px;}
.y100{bottom:395.175000px;}
.y155{bottom:396.075000px;}
.y7d{bottom:396.435000px;}
.y12d{bottom:397.155000px;}
.y25{bottom:397.515000px;}
.y19c{bottom:398.055000px;}
.y17d{bottom:400.035000px;}
.y5a{bottom:405.435000px;}
.yb1{bottom:405.975000px;}
.yff{bottom:414.795000px;}
.y83{bottom:415.695000px;}
.y154{bottom:415.875000px;}
.y7c{bottom:416.235000px;}
.y12c{bottom:417.135000px;}
.y24{bottom:417.495000px;}
.y19b{bottom:417.855000px;}
.y17c{bottom:419.835000px;}
.y59{bottom:425.235000px;}
.yb0{bottom:425.775000px;}
.y12b{bottom:431.895000px;}
.y82{bottom:435.495000px;}
.y153{bottom:435.675000px;}
.y7b{bottom:436.215000px;}
.y23{bottom:437.295000px;}
.y19a{bottom:437.655000px;}
.y17b{bottom:439.635000px;}
.yfe{bottom:440.175000px;}
.y58{bottom:445.215000px;}
.yaf{bottom:445.575000px;}
.y152{bottom:450.615000px;}
.y12a{bottom:451.515000px;}
.yd6{bottom:453.315000px;}
.y7a{bottom:456.015000px;}
.y22{bottom:457.095000px;}
.y199{bottom:457.455000px;}
.y17a{bottom:459.435000px;}
.yfd{bottom:459.975000px;}
.y57{bottom:465.015000px;}
.yae{bottom:465.375000px;}
.y129{bottom:471.315000px;}
.y151{bottom:472.035000px;}
.yd5{bottom:473.295000px;}
.y79{bottom:475.815000px;}
.y21{bottom:476.895000px;}
.y198{bottom:477.435000px;}
.y179{bottom:479.415000px;}
.yfc{bottom:479.775000px;}
.y56{bottom:484.815000px;}
.yad{bottom:485.175000px;}
.y128{bottom:490.935000px;}
.yd4{bottom:493.095000px;}
.y14f{bottom:493.455000px;}
.y78{bottom:495.615000px;}
.y20{bottom:496.695000px;}
.y197{bottom:497.235000px;}
.y178{bottom:499.215000px;}
.yfb{bottom:499.575000px;}
.y55{bottom:504.615000px;}
.yac{bottom:505.155000px;}
.y127{bottom:510.735000px;}
.y81{bottom:511.455000px;}
.y196{bottom:511.995000px;}
.yd3{bottom:512.895000px;}
.y14d{bottom:514.875000px;}
.y77{bottom:515.415000px;}
.y1f{bottom:516.675000px;}
.y177{bottom:519.015000px;}
.yfa{bottom:519.375000px;}
.y54{bottom:524.415000px;}
.yab{bottom:524.955000px;}
.y126{bottom:530.535000px;}
.y80{bottom:531.075000px;}
.yd2{bottom:532.695000px;}
.y76{bottom:535.395000px;}
.y147{bottom:536.295000px;}
.y1e{bottom:536.475000px;}
.y176{bottom:538.815000px;}
.yf9{bottom:539.355000px;}
.y53{bottom:544.395000px;}
.yaa{bottom:544.755000px;}
.y194{bottom:547.275000px;}
.yd1{bottom:552.495000px;}
.y75{bottom:555.195000px;}
.y125{bottom:555.915000px;}
.y1d{bottom:556.275000px;}
.y175{bottom:558.615000px;}
.y52{bottom:564.195000px;}
.ya9{bottom:564.585000px;}
.yf8{bottom:568.185000px;}
.yd0{bottom:572.505000px;}
.y74{bottom:575.025000px;}
.y1c{bottom:576.105000px;}
.y174{bottom:578.625000px;}
.y124{bottom:581.145000px;}
.y192{bottom:582.585000px;}
.y51{bottom:584.025000px;}
.ya8{bottom:584.385000px;}
.yf7{bottom:587.985000px;}
.ycf{bottom:592.305000px;}
.y73{bottom:594.825000px;}
.y123{bottom:595.725000px;}
.y1b{bottom:595.905000px;}
.y173{bottom:598.425000px;}
.y146{bottom:602.385000px;}
.y50{bottom:603.825000px;}
.ya7{bottom:604.365000px;}
.yce{bottom:607.065000px;}
.yf6{bottom:607.785000px;}
.y72{bottom:614.625000px;}
.y122{bottom:615.525000px;}
.y1a{bottom:615.885000px;}
.y191{bottom:617.685000px;}
.y172{bottom:618.225000px;}
.y145{bottom:622.185000px;}
.y4f{bottom:623.625000px;}
.ya6{bottom:624.165000px;}
.ycd{bottom:626.865000px;}
.yf5{bottom:627.585000px;}
.y71{bottom:634.605000px;}
.y121{bottom:635.325000px;}
.y19{bottom:635.685000px;}
.y171{bottom:638.025000px;}
.ya3{bottom:638.925000px;}
.y144{bottom:642.165000px;}
.y4e{bottom:643.605000px;}
.yf4{bottom:647.565000px;}
.y190{bottom:652.965000px;}
.y1ad{bottom:654.405000px;}
.y120{bottom:655.125000px;}
.y18{bottom:655.485000px;}
.ya5{bottom:656.925000px;}
.y170{bottom:657.825000px;}
.y143{bottom:661.965000px;}
.ycc{bottom:662.145000px;}
.yf3{bottom:662.325000px;}
.y4d{bottom:663.405000px;}
.y1ac{bottom:674.205000px;}
.ya4{bottom:674.925000px;}
.y11f{bottom:675.105000px;}
.y17{bottom:677.625000px;}
.y16f{bottom:677.805000px;}
.yf2{bottom:681.765000px;}
.ycb{bottom:681.945000px;}
.y4c{bottom:683.205000px;}
.y9d{bottom:692.925000px;}
.y18f{bottom:694.005000px;}
.y11e{bottom:694.905000px;}
.y16e{bottom:697.605000px;}
.yf1{bottom:701.385000px;}
.y142{bottom:701.565000px;}
.yca{bottom:701.745000px;}
.y4b{bottom:703.005000px;}
.y16{bottom:706.425000px;}
.y11d{bottom:709.665000px;}
.y18e{bottom:713.805000px;}
.y16d{bottom:717.405000px;}
.yf0{bottom:721.005000px;}
.y141{bottom:721.365000px;}
.y4a{bottom:722.805000px;}
.y15{bottom:726.225000px;}
.ya2{bottom:728.205000px;}
.y11c{bottom:729.285000px;}
.y18d{bottom:733.785000px;}
.yc8{bottom:737.025000px;}
.y16c{bottom:737.205000px;}
.yef{bottom:740.625000px;}
.y140{bottom:741.345000px;}
.y49{bottom:742.785000px;}
.y14{bottom:746.025000px;}
.ya1{bottom:746.205000px;}
.y11b{bottom:748.725000px;}
.y18c{bottom:753.585000px;}
.y16b{bottom:757.005000px;}
.yee{bottom:760.065000px;}
.y13f{bottom:761.145000px;}
.y48{bottom:762.585000px;}
.y13{bottom:766.005000px;}
.y11a{bottom:768.345000px;}
.y18b{bottom:773.385000px;}
.y16a{bottom:776.985000px;}
.yed{bottom:779.685000px;}
.y13e{bottom:780.945000px;}
.ya0{bottom:781.485000px;}
.y47{bottom:782.385000px;}
.y12{bottom:785.805000px;}
.y119{bottom:787.965000px;}
.y169{bottom:791.745000px;}
.y18a{bottom:793.185000px;}
.y13d{bottom:797.505000px;}
.yec{bottom:799.305000px;}
.y98{bottom:799.485000px;}
.y46{bottom:802.185000px;}
.y11{bottom:805.605000px;}
.y118{bottom:807.585000px;}
.y189{bottom:812.985000px;}
.y9c{bottom:817.305000px;}
.yeb{bottom:818.925000px;}
.y45{bottom:821.985000px;}
.y10{bottom:825.405000px;}
.y168{bottom:827.025000px;}
.y117{bottom:832.965000px;}
.y9b{bottom:835.305000px;}
.yea{bottom:838.365000px;}
.y44{bottom:841.965000px;}
.y165{bottom:845.025000px;}
.yf{bottom:845.205000px;}
.y116{bottom:852.810000px;}
.y92{bottom:853.350000px;}
.ye9{bottom:858.030000px;}
.y43{bottom:861.810000px;}
.ye{bottom:865.230000px;}
.y96{bottom:871.350000px;}
.y115{bottom:872.610000px;}
.ye8{bottom:877.650000px;}
.y164{bottom:880.170000px;}
.y42{bottom:881.610000px;}
.yd{bottom:887.190000px;}
.y114{bottom:892.410000px;}
.ye7{bottom:897.270000px;}
.y41{bottom:901.410000px;}
.y95{bottom:906.630000px;}
.yc{bottom:912.210000px;}
.ye6{bottom:916.710000px;}
.y40{bottom:921.210000px;}
.y8b{bottom:924.630000px;}
.yb{bottom:932.190000px;}
.ye5{bottom:936.330000px;}
.y3f{bottom:941.190000px;}
.y91{bottom:942.630000px;}
.ya{bottom:946.770000px;}
.y113{bottom:951.990000px;}
.ye4{bottom:955.950000px;}
.y90{bottom:960.630000px;}
.y3e{bottom:960.990000px;}
.y9{bottom:966.570000px;}
.y112{bottom:971.790000px;}
.ye2{bottom:975.570000px;}
.y8f{bottom:978.630000px;}
.y3d{bottom:980.790000px;}
.y8{bottom:989.970000px;}
.y111{bottom:991.590000px;}
.ye0{bottom:995.010000px;}
.y89{bottom:996.630000px;}
.y3c{bottom:1000.590000px;}
.y110{bottom:1011.390000px;}
.y3b{bottom:1020.390000px;}
.y7{bottom:1021.830000px;}
.y3a{bottom:1040.370000px;}
.y5{bottom:1060.170000px;}
.y39{bottom:1079.970000px;}
.y4{bottom:1090.950000px;}
.y38{bottom:1099.770000px;}
.y37{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.y36{bottom:1139.580000px;}
.y2{bottom:1152.720000px;}
.y35{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.220000px;}
.h24{height:2.826563px;}
.h11{height:17.100000px;}
.hb{height:17.280000px;}
.h10{height:17.316000px;}
.h1b{height:18.720000px;}
.h16{height:18.900000px;}
.h1c{height:18.936000px;}
.h17{height:19.080000px;}
.h20{height:20.700000px;}
.h13{height:34.380000px;}
.h21{height:34.416000px;}
.he{height:34.560000px;}
.h1e{height:38.139609px;}
.h6{height:38.158594px;}
.h8{height:41.726953px;}
.h1d{height:42.164648px;}
.hf{height:53.136000px;}
.h14{height:53.280000px;}
.h19{height:53.709961px;}
.h1a{height:53.853187px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h1f{height:59.616000px;}
.h5{height:60.226875px;}
.h15{height:61.423863px;}
.h22{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.hd{height:70.560000px;}
.hc{height:71.280000px;}
.h23{height:84.420000px;}
.h2{height:96.508125px;}
.h12{height:105.660000px;}
.h18{height:305.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2e{width:48.780000px;}
.w16{width:56.700000px;}
.w14{width:61.020000px;}
.w36{width:62.640000px;}
.w32{width:63.900000px;}
.w24{width:72.900000px;}
.w4{width:75.420000px;}
.w1e{width:76.680000px;}
.w30{width:78.300000px;}
.w13{width:80.280000px;}
.w2a{width:80.460000px;}
.wa{width:86.220000px;}
.w26{width:86.256000px;}
.w23{width:87.696000px;}
.w34{width:91.296000px;}
.w1d{width:92.016000px;}
.w9{width:93.060000px;}
.wc{width:93.096000px;}
.w3{width:95.076000px;}
.w12{width:96.696000px;}
.w1f{width:102.420000px;}
.w19{width:107.640000px;}
.w29{width:111.096000px;}
.wb{width:111.996000px;}
.w21{width:112.176000px;}
.we{width:112.860000px;}
.w39{width:113.040000px;}
.w22{width:114.660000px;}
.w20{width:117.216000px;}
.w27{width:117.360000px;}
.w25{width:117.900000px;}
.w1b{width:117.936000px;}
.w38{width:119.916000px;}
.w1c{width:120.240000px;}
.w35{width:121.860000px;}
.w31{width:122.436000px;}
.w1a{width:122.976000px;}
.w10{width:123.516000px;}
.w11{width:126.180000px;}
.wf{width:129.276000px;}
.w15{width:135.216000px;}
.w8{width:144.216000px;}
.w17{width:157.530000px;}
.w28{width:160.770000px;}
.w2b{width:175.170000px;}
.w2d{width:191.370000px;}
.w2c{width:200.010000px;}
.w3a{width:210.810000px;}
.w18{width:248.970000px;}
.w7{width:292.755000px;}
.w6{width:324.930000px;}
.w37{width:367.995000px;}
.w33{width:394.635000px;}
.w2f{width:418.395000px;}
.wd{width:531.000000px;}
.w5{width:550.365000px;}
.w3b{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.776000px;}
.x1{left:54.179987px;}
.x48{left:74.339987px;}
.xe{left:85.320000px;}
.x20{left:89.250000px;}
.x49{left:101.375987px;}
.x2{left:108.035987px;}
.x41{left:109.656000px;}
.x21{left:111.276000px;}
.x45{left:113.616000px;}
.x27{left:115.956000px;}
.x2c{left:126.936000px;}
.x1e{left:129.570000px;}
.xb{left:133.775987px;}
.x5{left:135.575987px;}
.x9{left:136.835987px;}
.x7{left:139.895987px;}
.x32{left:142.056000px;}
.x6{left:160.229987px;}
.x3c{left:162.930000px;}
.x42{left:174.270000px;}
.x1f{left:175.680000px;}
.x28{left:177.330000px;}
.xa{left:179.489987px;}
.x10{left:181.110000px;}
.x8{left:189.569987px;}
.x4a{left:191.370000px;}
.x1b{left:207.900000px;}
.x19{left:217.289987px;}
.x22{left:224.490000px;}
.x38{left:227.010000px;}
.x1d{left:231.330000px;}
.x2d{left:234.930000px;}
.x33{left:244.830000px;}
.x11{left:257.430000px;}
.x4b{left:264.810000px;}
.x14{left:282.315000px;}
.x12{left:297.974987px;}
.x29{left:313.095000px;}
.x4{left:323.714987px;}
.x3{left:334.514987px;}
.x3d{left:338.475000px;}
.x1c{left:351.645000px;}
.x23{left:354.135000px;}
.x2e{left:358.275000px;}
.x34{left:362.595000px;}
.x2a{left:370.155000px;}
.x1a{left:374.474987px;}
.x15{left:376.095000px;}
.x39{left:431.355000px;}
.x13{left:463.035000px;}
.x35{left:475.125000px;}
.x2f{left:476.565000px;}
.x24{left:478.005000px;}
.x2b{left:528.045000px;}
.x3e{left:538.845000px;}
.x46{left:545.685000px;}
.x43{left:569.625000px;}
.x16{left:575.745000px;}
.x3f{left:580.245000px;}
.x36{left:590.145000px;}
.x3a{left:592.485000px;}
.x30{left:597.165000px;}
.x25{left:604.545000px;}
.x40{left:659.265000px;}
.x44{left:661.650000px;}
.x47{left:666.510000px;}
.x17{left:669.570000px;}
.xc{left:678.209987px;}
.x31{left:689.550000px;}
.x26{left:701.610000px;}
.x3b{left:703.950000px;}
.xd{left:725.549987px;}
.x18{left:739.049987px;}
.x37{left:762.269987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-1.232000pt;}
.ls2{letter-spacing:-1.045333pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.178133pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.112533pt;}
.ls18{letter-spacing:0.120533pt;}
.lsc{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.272533pt;}
.ls15{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.409067pt;}
.ls8{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.778667pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls17{letter-spacing:7.200000pt;}
.ls23{letter-spacing:7.840000pt;}
.ls27{letter-spacing:10.192640pt;}
.lsd{letter-spacing:17.232640pt;}
.ls22{letter-spacing:19.152640pt;}
.ls14{letter-spacing:25.552640pt;}
.ls26{letter-spacing:37.200640pt;}
.ls16{letter-spacing:40.480000pt;}
.wsf{word-spacing:-53.232533pt;}
.ws10{word-spacing:-53.120000pt;}
.wse{word-spacing:-41.026880pt;}
.wsd{word-spacing:-41.016960pt;}
.wsc{word-spacing:-37.539200pt;}
.ws1{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.058667pt;}
.ws13{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws17{word-spacing:-12.688000pt;}
.ws12{word-spacing:-10.876928pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._12{margin-left:-3.302400pt;}
._7{margin-left:-2.385920pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._9{width:2.099200pt;}
._a{width:3.548373pt;}
._b{width:4.631893pt;}
._e{width:5.799040pt;}
._8{width:7.138773pt;}
._10{width:8.180480pt;}
._11{width:9.386667pt;}
._f{width:10.304000pt;}
._d{width:11.211520pt;}
._c{width:12.111360pt;}
._14{width:14.448640pt;}
._13{width:15.404800pt;}
._1a{width:16.785920pt;}
._15{width:17.991040pt;}
._20{width:19.364907pt;}
._16{width:22.310400pt;}
._21{width:23.423147pt;}
._17{width:24.333227pt;}
._1b{width:28.278400pt;}
._19{width:47.495680pt;}
._18{width:48.711040pt;}
._1c{width:101.488000pt;}
._1f{width:165.415680pt;}
._1e{width:196.809600pt;}
._1d{width:198.721920pt;}
.fs7{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:2.880000pt;}
.y167{bottom:2.920000pt;}
.ye3{bottom:3.520000pt;}
.ye1{bottom:3.680000pt;}
.yc9{bottom:4.480000pt;}
.y14a{bottom:5.120000pt;}
.y150{bottom:5.440000pt;}
.y14e{bottom:5.600000pt;}
.y1b3{bottom:9.600000pt;}
.y14c{bottom:14.080000pt;}
.ydf{bottom:15.653333pt;}
.y193{bottom:18.080000pt;}
.y166{bottom:18.120000pt;}
.y97{bottom:18.240000pt;}
.y195{bottom:18.266667pt;}
.y9a{bottom:19.520000pt;}
.y8e{bottom:20.320000pt;}
.y148{bottom:22.880000pt;}
.y1b2{bottom:27.200000pt;}
.y1af{bottom:31.040000pt;}
.y14b{bottom:31.706667pt;}
.y99{bottom:34.720000pt;}
.y94{bottom:34.880000pt;}
.y8d{bottom:35.520000pt;}
.y149{bottom:40.506667pt;}
.ydc{bottom:44.000000pt;}
.y1b1{bottom:44.960000pt;}
.y93{bottom:50.240000pt;}
.y8c{bottom:50.880000pt;}
.y6{bottom:53.472000pt;}
.y1b0{bottom:62.554667pt;}
.y9f{bottom:66.240000pt;}
.y1ae{bottom:77.312000pt;}
.y163{bottom:79.392000pt;}
.y1ab{bottom:81.312000pt;}
.y9e{bottom:81.600000pt;}
.y69{bottom:87.872000pt;}
.y13c{bottom:88.512000pt;}
.y10f{bottom:92.192000pt;}
.y162{bottom:92.512000pt;}
.yd9{bottom:93.472000pt;}
.yc7{bottom:94.752000pt;}
.y1aa{bottom:98.912000pt;}
.y68{bottom:105.472000pt;}
.ybf{bottom:105.632000pt;}
.y188{bottom:106.112000pt;}
.y13b{bottom:106.272000pt;}
.y33{bottom:106.592000pt;}
.y10e{bottom:109.792000pt;}
.y161{bottom:109.952000pt;}
.yd8{bottom:111.072000pt;}
.yc6{bottom:112.352000pt;}
.y1a9{bottom:116.512000pt;}
.y67{bottom:123.232000pt;}
.ybe{bottom:123.392000pt;}
.y187{bottom:123.712000pt;}
.y13a{bottom:123.872000pt;}
.y32{bottom:124.192000pt;}
.yd7{bottom:125.792000pt;}
.yda{bottom:126.720000pt;}
.y10d{bottom:127.392000pt;}
.yc5{bottom:129.952000pt;}
.y160{bottom:132.512000pt;}
.y1a8{bottom:134.106667pt;}
.y186{bottom:136.826667pt;}
.y66{bottom:140.826667pt;}
.ybd{bottom:141.146667pt;}
.y139{bottom:141.466667pt;}
.y31{bottom:141.786667pt;}
.y10c{bottom:144.986667pt;}
.yc4{bottom:147.546667pt;}
.y15f{bottom:150.106667pt;}
.y1a7{bottom:151.866667pt;}
.y65{bottom:158.426667pt;}
.ybc{bottom:158.746667pt;}
.y138{bottom:159.066667pt;}
.y30{bottom:159.386667pt;}
.y10b{bottom:162.746667pt;}
.yc3{bottom:165.306667pt;}
.y15e{bottom:167.706667pt;}
.y185{bottom:168.186667pt;}
.y64{bottom:176.026667pt;}
.ybb{bottom:176.506667pt;}
.y137{bottom:176.666667pt;}
.y2f{bottom:176.986667pt;}
.y1a6{bottom:177.466667pt;}
.y10a{bottom:180.346667pt;}
.yc2{bottom:183.226667pt;}
.y15d{bottom:185.306667pt;}
.ydd{bottom:190.333333pt;}
.y70{bottom:193.626667pt;}
.y136{bottom:194.426667pt;}
.y2e{bottom:194.746667pt;}
.y1a5{bottom:195.066667pt;}
.y109{bottom:197.946667pt;}
.y184{bottom:199.546667pt;}
.yc1{bottom:201.146667pt;}
.y63{bottom:201.626667pt;}
.yba{bottom:202.106667pt;}
.y15c{bottom:202.906667pt;}
.y86{bottom:204.826667pt;}
.y6f{bottom:211.386667pt;}
.y135{bottom:212.026667pt;}
.y2d{bottom:212.346667pt;}
.y1a4{bottom:212.666667pt;}
.y108{bottom:215.546667pt;}
.ydb{bottom:216.453333pt;}
.yc0{bottom:219.066667pt;}
.y62{bottom:219.386667pt;}
.yb9{bottom:219.706667pt;}
.y15b{bottom:220.666667pt;}
.y6e{bottom:228.986667pt;}
.y134{bottom:229.626667pt;}
.y2c{bottom:229.946667pt;}
.y1a3{bottom:230.266667pt;}
.y183{bottom:230.906667pt;}
.y107{bottom:233.146667pt;}
.y61{bottom:236.986667pt;}
.yb8{bottom:237.306667pt;}
.y15a{bottom:238.266667pt;}
.yde{bottom:241.853333pt;}
.y6d{bottom:246.586667pt;}
.y133{bottom:247.226667pt;}
.y2b{bottom:247.546667pt;}
.y1a2{bottom:248.026667pt;}
.y106{bottom:250.946667pt;}
.y60{bottom:254.626667pt;}
.yb7{bottom:254.946667pt;}
.y159{bottom:263.906667pt;}
.y6c{bottom:264.226667pt;}
.y132{bottom:264.866667pt;}
.y2a{bottom:265.186667pt;}
.y1a1{bottom:265.666667pt;}
.y182{bottom:267.426667pt;}
.y105{bottom:268.546667pt;}
.y5f{bottom:272.226667pt;}
.yb6{bottom:272.706667pt;}
.y85{bottom:278.946667pt;}
.y158{bottom:281.506667pt;}
.y104{bottom:281.666667pt;}
.y6b{bottom:281.826667pt;}
.y131{bottom:282.626667pt;}
.y29{bottom:282.946667pt;}
.y1a0{bottom:283.266667pt;}
.y181{bottom:285.026667pt;}
.y5e{bottom:289.826667pt;}
.yb5{bottom:290.306667pt;}
.y88{bottom:290.786667pt;}
.y84{bottom:296.546667pt;}
.y103{bottom:299.106667pt;}
.y6a{bottom:299.586667pt;}
.y130{bottom:300.226667pt;}
.y28{bottom:300.546667pt;}
.y19f{bottom:300.866667pt;}
.y180{bottom:302.626667pt;}
.y87{bottom:306.466667pt;}
.y5d{bottom:307.586667pt;}
.yb4{bottom:307.906667pt;}
.y102{bottom:316.386667pt;}
.y157{bottom:316.866667pt;}
.y7f{bottom:317.186667pt;}
.y12f{bottom:317.826667pt;}
.y27{bottom:318.146667pt;}
.y19e{bottom:318.466667pt;}
.y17f{bottom:320.226667pt;}
.y5c{bottom:325.186667pt;}
.yb3{bottom:325.506667pt;}
.y101{bottom:333.826667pt;}
.y156{bottom:334.466667pt;}
.y7e{bottom:334.786667pt;}
.y12e{bottom:335.426667pt;}
.y26{bottom:335.746667pt;}
.y19d{bottom:336.226667pt;}
.y17e{bottom:337.986667pt;}
.y5b{bottom:342.786667pt;}
.yb2{bottom:343.106667pt;}
.y100{bottom:351.266667pt;}
.y155{bottom:352.066667pt;}
.y7d{bottom:352.386667pt;}
.y12d{bottom:353.026667pt;}
.y25{bottom:353.346667pt;}
.y19c{bottom:353.826667pt;}
.y17d{bottom:355.586667pt;}
.y5a{bottom:360.386667pt;}
.yb1{bottom:360.866667pt;}
.yff{bottom:368.706667pt;}
.y83{bottom:369.506667pt;}
.y154{bottom:369.666667pt;}
.y7c{bottom:369.986667pt;}
.y12c{bottom:370.786667pt;}
.y24{bottom:371.106667pt;}
.y19b{bottom:371.426667pt;}
.y17c{bottom:373.186667pt;}
.y59{bottom:377.986667pt;}
.yb0{bottom:378.466667pt;}
.y12b{bottom:383.906667pt;}
.y82{bottom:387.106667pt;}
.y153{bottom:387.266667pt;}
.y7b{bottom:387.746667pt;}
.y23{bottom:388.706667pt;}
.y19a{bottom:389.026667pt;}
.y17b{bottom:390.786667pt;}
.yfe{bottom:391.266667pt;}
.y58{bottom:395.746667pt;}
.yaf{bottom:396.066667pt;}
.y152{bottom:400.546667pt;}
.y12a{bottom:401.346667pt;}
.yd6{bottom:402.946667pt;}
.y7a{bottom:405.346667pt;}
.y22{bottom:406.306667pt;}
.y199{bottom:406.626667pt;}
.y17a{bottom:408.386667pt;}
.yfd{bottom:408.866667pt;}
.y57{bottom:413.346667pt;}
.yae{bottom:413.666667pt;}
.y129{bottom:418.946667pt;}
.y151{bottom:419.586667pt;}
.yd5{bottom:420.706667pt;}
.y79{bottom:422.946667pt;}
.y21{bottom:423.906667pt;}
.y198{bottom:424.386667pt;}
.y179{bottom:426.146667pt;}
.yfc{bottom:426.466667pt;}
.y56{bottom:430.946667pt;}
.yad{bottom:431.266667pt;}
.y128{bottom:436.386667pt;}
.yd4{bottom:438.306667pt;}
.y14f{bottom:438.626667pt;}
.y78{bottom:440.546667pt;}
.y20{bottom:441.506667pt;}
.y197{bottom:441.986667pt;}
.y178{bottom:443.746667pt;}
.yfb{bottom:444.066667pt;}
.y55{bottom:448.546667pt;}
.yac{bottom:449.026667pt;}
.y127{bottom:453.986667pt;}
.y81{bottom:454.626667pt;}
.y196{bottom:455.106667pt;}
.yd3{bottom:455.906667pt;}
.y14d{bottom:457.666667pt;}
.y77{bottom:458.146667pt;}
.y1f{bottom:459.266667pt;}
.y177{bottom:461.346667pt;}
.yfa{bottom:461.666667pt;}
.y54{bottom:466.146667pt;}
.yab{bottom:466.626667pt;}
.y126{bottom:471.586667pt;}
.y80{bottom:472.066667pt;}
.yd2{bottom:473.506667pt;}
.y76{bottom:475.906667pt;}
.y147{bottom:476.706667pt;}
.y1e{bottom:476.866667pt;}
.y176{bottom:478.946667pt;}
.yf9{bottom:479.426667pt;}
.y53{bottom:483.906667pt;}
.yaa{bottom:484.226667pt;}
.y194{bottom:486.466667pt;}
.yd1{bottom:491.106667pt;}
.y75{bottom:493.506667pt;}
.y125{bottom:494.146667pt;}
.y1d{bottom:494.466667pt;}
.y175{bottom:496.546667pt;}
.y52{bottom:501.506667pt;}
.ya9{bottom:501.853333pt;}
.yf8{bottom:505.053333pt;}
.yd0{bottom:508.893333pt;}
.y74{bottom:511.133333pt;}
.y1c{bottom:512.093333pt;}
.y174{bottom:514.333333pt;}
.y124{bottom:516.573333pt;}
.y192{bottom:517.853333pt;}
.y51{bottom:519.133333pt;}
.ya8{bottom:519.453333pt;}
.yf7{bottom:522.653333pt;}
.ycf{bottom:526.493333pt;}
.y73{bottom:528.733333pt;}
.y123{bottom:529.533333pt;}
.y1b{bottom:529.693333pt;}
.y173{bottom:531.933333pt;}
.y146{bottom:535.453333pt;}
.y50{bottom:536.733333pt;}
.ya7{bottom:537.213333pt;}
.yce{bottom:539.613333pt;}
.yf6{bottom:540.253333pt;}
.y72{bottom:546.333333pt;}
.y122{bottom:547.133333pt;}
.y1a{bottom:547.453333pt;}
.y191{bottom:549.053333pt;}
.y172{bottom:549.533333pt;}
.y145{bottom:553.053333pt;}
.y4f{bottom:554.333333pt;}
.ya6{bottom:554.813333pt;}
.ycd{bottom:557.213333pt;}
.yf5{bottom:557.853333pt;}
.y71{bottom:564.093333pt;}
.y121{bottom:564.733333pt;}
.y19{bottom:565.053333pt;}
.y171{bottom:567.133333pt;}
.ya3{bottom:567.933333pt;}
.y144{bottom:570.813333pt;}
.y4e{bottom:572.093333pt;}
.yf4{bottom:575.613333pt;}
.y190{bottom:580.413333pt;}
.y1ad{bottom:581.693333pt;}
.y120{bottom:582.333333pt;}
.y18{bottom:582.653333pt;}
.ya5{bottom:583.933333pt;}
.y170{bottom:584.733333pt;}
.y143{bottom:588.413333pt;}
.ycc{bottom:588.573333pt;}
.yf3{bottom:588.733333pt;}
.y4d{bottom:589.693333pt;}
.y1ac{bottom:599.293333pt;}
.ya4{bottom:599.933333pt;}
.y11f{bottom:600.093333pt;}
.y17{bottom:602.333333pt;}
.y16f{bottom:602.493333pt;}
.yf2{bottom:606.013333pt;}
.ycb{bottom:606.173333pt;}
.y4c{bottom:607.293333pt;}
.y9d{bottom:615.933333pt;}
.y18f{bottom:616.893333pt;}
.y11e{bottom:617.693333pt;}
.y16e{bottom:620.093333pt;}
.yf1{bottom:623.453333pt;}
.y142{bottom:623.613333pt;}
.yca{bottom:623.773333pt;}
.y4b{bottom:624.893333pt;}
.y16{bottom:627.933333pt;}
.y11d{bottom:630.813333pt;}
.y18e{bottom:634.493333pt;}
.y16d{bottom:637.693333pt;}
.yf0{bottom:640.893333pt;}
.y141{bottom:641.213333pt;}
.y4a{bottom:642.493333pt;}
.y15{bottom:645.533333pt;}
.ya2{bottom:647.293333pt;}
.y11c{bottom:648.253333pt;}
.y18d{bottom:652.253333pt;}
.yc8{bottom:655.133333pt;}
.y16c{bottom:655.293333pt;}
.yef{bottom:658.333333pt;}
.y140{bottom:658.973333pt;}
.y49{bottom:660.253333pt;}
.y14{bottom:663.133333pt;}
.ya1{bottom:663.293333pt;}
.y11b{bottom:665.533333pt;}
.y18c{bottom:669.853333pt;}
.y16b{bottom:672.893333pt;}
.yee{bottom:675.613333pt;}
.y13f{bottom:676.573333pt;}
.y48{bottom:677.853333pt;}
.y13{bottom:680.893333pt;}
.y11a{bottom:682.973333pt;}
.y18b{bottom:687.453333pt;}
.y16a{bottom:690.653333pt;}
.yed{bottom:693.053333pt;}
.y13e{bottom:694.173333pt;}
.ya0{bottom:694.653333pt;}
.y47{bottom:695.453333pt;}
.y12{bottom:698.493333pt;}
.y119{bottom:700.413333pt;}
.y169{bottom:703.773333pt;}
.y18a{bottom:705.053333pt;}
.y13d{bottom:708.893333pt;}
.yec{bottom:710.493333pt;}
.y98{bottom:710.653333pt;}
.y46{bottom:713.053333pt;}
.y11{bottom:716.093333pt;}
.y118{bottom:717.853333pt;}
.y189{bottom:722.653333pt;}
.y9c{bottom:726.493333pt;}
.yeb{bottom:727.933333pt;}
.y45{bottom:730.653333pt;}
.y10{bottom:733.693333pt;}
.y168{bottom:735.133333pt;}
.y117{bottom:740.413333pt;}
.y9b{bottom:742.493333pt;}
.yea{bottom:745.213333pt;}
.y44{bottom:748.413333pt;}
.y165{bottom:751.133333pt;}
.yf{bottom:751.293333pt;}
.y116{bottom:758.053333pt;}
.y92{bottom:758.533333pt;}
.ye9{bottom:762.693333pt;}
.y43{bottom:766.053333pt;}
.ye{bottom:769.093333pt;}
.y96{bottom:774.533333pt;}
.y115{bottom:775.653333pt;}
.ye8{bottom:780.133333pt;}
.y164{bottom:782.373333pt;}
.y42{bottom:783.653333pt;}
.yd{bottom:788.613333pt;}
.y114{bottom:793.253333pt;}
.ye7{bottom:797.573333pt;}
.y41{bottom:801.253333pt;}
.y95{bottom:805.893333pt;}
.yc{bottom:810.853333pt;}
.ye6{bottom:814.853333pt;}
.y40{bottom:818.853333pt;}
.y8b{bottom:821.893333pt;}
.yb{bottom:828.613333pt;}
.ye5{bottom:832.293333pt;}
.y3f{bottom:836.613333pt;}
.y91{bottom:837.893333pt;}
.ya{bottom:841.573333pt;}
.y113{bottom:846.213333pt;}
.ye4{bottom:849.733333pt;}
.y90{bottom:853.893333pt;}
.y3e{bottom:854.213333pt;}
.y9{bottom:859.173333pt;}
.y112{bottom:863.813333pt;}
.ye2{bottom:867.173333pt;}
.y8f{bottom:869.893333pt;}
.y3d{bottom:871.813333pt;}
.y8{bottom:879.973333pt;}
.y111{bottom:881.413333pt;}
.ye0{bottom:884.453333pt;}
.y89{bottom:885.893333pt;}
.y3c{bottom:889.413333pt;}
.y110{bottom:899.013333pt;}
.y3b{bottom:907.013333pt;}
.y7{bottom:908.293333pt;}
.y3a{bottom:924.773333pt;}
.y5{bottom:942.373333pt;}
.y39{bottom:959.973333pt;}
.y4{bottom:969.733333pt;}
.y38{bottom:977.573333pt;}
.y37{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.y36{bottom:1012.960000pt;}
.y2{bottom:1024.640000pt;}
.y35{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.640000pt;}
.h24{height:2.512500pt;}
.h11{height:15.200000pt;}
.hb{height:15.360000pt;}
.h10{height:15.392000pt;}
.h1b{height:16.640000pt;}
.h16{height:16.800000pt;}
.h1c{height:16.832000pt;}
.h17{height:16.960000pt;}
.h20{height:18.400000pt;}
.h13{height:30.560000pt;}
.h21{height:30.592000pt;}
.he{height:30.720000pt;}
.h1e{height:33.901875pt;}
.h6{height:33.918750pt;}
.h8{height:37.090625pt;}
.h1d{height:37.479688pt;}
.hf{height:47.232000pt;}
.h14{height:47.360000pt;}
.h19{height:47.742188pt;}
.h1a{height:47.869500pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h1f{height:52.992000pt;}
.h5{height:53.535000pt;}
.h15{height:54.598989pt;}
.h22{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.hd{height:62.720000pt;}
.hc{height:63.360000pt;}
.h23{height:75.040000pt;}
.h2{height:85.785000pt;}
.h12{height:93.920000pt;}
.h18{height:271.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2e{width:43.360000pt;}
.w16{width:50.400000pt;}
.w14{width:54.240000pt;}
.w36{width:55.680000pt;}
.w32{width:56.800000pt;}
.w24{width:64.800000pt;}
.w4{width:67.040000pt;}
.w1e{width:68.160000pt;}
.w30{width:69.600000pt;}
.w13{width:71.360000pt;}
.w2a{width:71.520000pt;}
.wa{width:76.640000pt;}
.w26{width:76.672000pt;}
.w23{width:77.952000pt;}
.w34{width:81.152000pt;}
.w1d{width:81.792000pt;}
.w9{width:82.720000pt;}
.wc{width:82.752000pt;}
.w3{width:84.512000pt;}
.w12{width:85.952000pt;}
.w1f{width:91.040000pt;}
.w19{width:95.680000pt;}
.w29{width:98.752000pt;}
.wb{width:99.552000pt;}
.w21{width:99.712000pt;}
.we{width:100.320000pt;}
.w39{width:100.480000pt;}
.w22{width:101.920000pt;}
.w20{width:104.192000pt;}
.w27{width:104.320000pt;}
.w25{width:104.800000pt;}
.w1b{width:104.832000pt;}
.w38{width:106.592000pt;}
.w1c{width:106.880000pt;}
.w35{width:108.320000pt;}
.w31{width:108.832000pt;}
.w1a{width:109.312000pt;}
.w10{width:109.792000pt;}
.w11{width:112.160000pt;}
.wf{width:114.912000pt;}
.w15{width:120.192000pt;}
.w8{width:128.192000pt;}
.w17{width:140.026667pt;}
.w28{width:142.906667pt;}
.w2b{width:155.706667pt;}
.w2d{width:170.106667pt;}
.w2c{width:177.786667pt;}
.w3a{width:187.386667pt;}
.w18{width:221.306667pt;}
.w7{width:260.226667pt;}
.w6{width:288.826667pt;}
.w37{width:327.106667pt;}
.w33{width:350.786667pt;}
.w2f{width:371.906667pt;}
.wd{width:472.000000pt;}
.w5{width:489.213333pt;}
.w3b{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.912000pt;}
.x1{left:48.159988pt;}
.x48{left:66.079988pt;}
.xe{left:75.840000pt;}
.x20{left:79.333333pt;}
.x49{left:90.111988pt;}
.x2{left:96.031988pt;}
.x41{left:97.472000pt;}
.x21{left:98.912000pt;}
.x45{left:100.992000pt;}
.x27{left:103.072000pt;}
.x2c{left:112.832000pt;}
.x1e{left:115.173333pt;}
.xb{left:118.911988pt;}
.x5{left:120.511988pt;}
.x9{left:121.631988pt;}
.x7{left:124.351988pt;}
.x32{left:126.272000pt;}
.x6{left:142.426655pt;}
.x3c{left:144.826667pt;}
.x42{left:154.906667pt;}
.x1f{left:156.160000pt;}
.x28{left:157.626667pt;}
.xa{left:159.546655pt;}
.x10{left:160.986667pt;}
.x8{left:168.506655pt;}
.x4a{left:170.106667pt;}
.x1b{left:184.800000pt;}
.x19{left:193.146655pt;}
.x22{left:199.546667pt;}
.x38{left:201.786667pt;}
.x1d{left:205.626667pt;}
.x2d{left:208.826667pt;}
.x33{left:217.626667pt;}
.x11{left:228.826667pt;}
.x4b{left:235.386667pt;}
.x14{left:250.946667pt;}
.x12{left:264.866655pt;}
.x29{left:278.306667pt;}
.x4{left:287.746655pt;}
.x3{left:297.346655pt;}
.x3d{left:300.866667pt;}
.x1c{left:312.573333pt;}
.x23{left:314.786667pt;}
.x2e{left:318.466667pt;}
.x34{left:322.306667pt;}
.x2a{left:329.026667pt;}
.x1a{left:332.866655pt;}
.x15{left:334.306667pt;}
.x39{left:383.426667pt;}
.x13{left:411.586667pt;}
.x35{left:422.333333pt;}
.x2f{left:423.613333pt;}
.x24{left:424.893333pt;}
.x2b{left:469.373333pt;}
.x3e{left:478.973333pt;}
.x46{left:485.053333pt;}
.x43{left:506.333333pt;}
.x16{left:511.773333pt;}
.x3f{left:515.773333pt;}
.x36{left:524.573333pt;}
.x3a{left:526.653333pt;}
.x30{left:530.813333pt;}
.x25{left:537.373333pt;}
.x40{left:586.013333pt;}
.x44{left:588.133333pt;}
.x47{left:592.453333pt;}
.x17{left:595.173333pt;}
.xc{left:602.853322pt;}
.x31{left:612.933333pt;}
.x26{left:623.653333pt;}
.x3b{left:625.733333pt;}
.xd{left:644.933322pt;}
.x18{left:656.933322pt;}
.x37{left:677.573322pt;}
}




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