
    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_5ced09489e2c68d1c09e3b63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_362e88361afbe16f638e24f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_0a7ffc0b2ae991f3b87641f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_6a3919a5e95b259333f6d56a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_830855a9711fec0876cd42b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_d124c413462626641fcd1373.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_d5156988b04adce5629a39d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.378906;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.lse{letter-spacing:-1.680000px;}
.ls17{letter-spacing:-1.302000px;}
.ls4{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.570000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.156000px;}
.ls3{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.225000px;}
.ls9{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.456000px;}
.ls14{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.930000px;}
.ls12{letter-spacing:0.990000px;}
.lsd{letter-spacing:3.420000px;}
.ls13{letter-spacing:32.490000px;}
.ls8{letter-spacing:40.320000px;}
.lsb{letter-spacing:43.320000px;}
.ls6{letter-spacing:54.984000px;}
.lsf{letter-spacing:57.990000px;}
.ls7{letter-spacing:64.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.wsb{word-spacing:-60.000000px;}
.ws6{word-spacing:-33.120000px;}
.ws1{word-spacing:-31.464000px;}
.wsd{word-spacing:-26.496000px;}
.wsc{word-spacing:-19.020000px;}
.ws8{word-spacing:-18.780000px;}
.ws5{word-spacing:-16.902000px;}
.ws0{word-spacing:-15.024000px;}
.ws12{word-spacing:-14.787000px;}
.ws10{word-spacing:-14.415000px;}
.wsf{word-spacing:-14.085000px;}
.ws4{word-spacing:-14.064000px;}
.wse{word-spacing:-13.515000px;}
.ws11{word-spacing:-12.783000px;}
.ws7{word-spacing:-12.207000px;}
.ws2{word-spacing:-11.268000px;}
.ws3{word-spacing:-11.112000px;}
.ws9{word-spacing:0.000000px;}
._1f{margin-left:-2.436000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._2{width:2.805000px;}
._e{width:4.443000px;}
._d{width:5.637000px;}
._c{width:6.720000px;}
._9{width:8.130000px;}
._8{width:9.132000px;}
._12{width:10.524000px;}
._f{width:11.712000px;}
._16{width:13.212000px;}
._22{width:14.433000px;}
._21{width:15.444000px;}
._11{width:16.656000px;}
._10{width:17.760000px;}
._a{width:19.725000px;}
._b{width:21.228000px;}
._20{width:22.464000px;}
._14{width:23.805000px;}
._15{width:24.834000px;}
._1a{width:26.184000px;}
._19{width:27.420000px;}
._13{width:29.277000px;}
._1b{width:30.606000px;}
._24{width:31.836000px;}
._23{width:32.880000px;}
._1c{width:34.029000px;}
._18{width:35.616000px;}
._17{width:36.720000px;}
._7{width:48.162000px;}
._3{width:49.572000px;}
._5{width:61.608000px;}
._4{width:62.901000px;}
._6{width:83.199000px;}
._1e{width:186.888000px;}
._1d{width:188.538000px;}
.fc4{color:rgb(0,147,201);}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fse{font-size:18.000000px;}
.fs15{font-size:30.000000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs14{font-size:63.000000px;}
.fs12{font-size:63.244921px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fs13{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:165.000000px;}
.fsb{font-size:168.000000px;}
.y1c{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:0.375000px;}
.y6c{bottom:0.750000px;}
.y60{bottom:1.125000px;}
.y3{bottom:2.250000px;}
.ya{bottom:2.625000px;}
.y182{bottom:2.632500px;}
.y7c{bottom:3.000000px;}
.y1a{bottom:3.375000px;}
.y47{bottom:4.125000px;}
.y1b7{bottom:4.500000px;}
.y46{bottom:5.625000px;}
.y17{bottom:6.000000px;}
.y73{bottom:7.125000px;}
.y188{bottom:7.500000px;}
.y4f{bottom:8.250000px;}
.yb{bottom:8.625000px;}
.y26{bottom:10.860000px;}
.y4{bottom:11.250000px;}
.y6b{bottom:12.375000px;}
.y7{bottom:14.625000px;}
.y63{bottom:15.000000px;}
.y1b4{bottom:16.125000px;}
.y3f{bottom:16.875000px;}
.y5e{bottom:17.235000px;}
.y6{bottom:17.625000px;}
.y6e{bottom:18.735000px;}
.y6f{bottom:19.125000px;}
.y8{bottom:20.625000px;}
.ye5{bottom:20.985000px;}
.yaf{bottom:21.000000px;}
.y7b{bottom:21.375000px;}
.y177{bottom:21.405000px;}
.yc{bottom:21.750000px;}
.y184{bottom:22.125000px;}
.y25{bottom:22.485000px;}
.y2{bottom:23.250000px;}
.y62{bottom:26.625000px;}
.yf0{bottom:29.250000px;}
.y1b3{bottom:29.655000px;}
.y5d{bottom:31.485000px;}
.y3e{bottom:31.530000px;}
.y10{bottom:32.625000px;}
.y16{bottom:33.780000px;}
.y24{bottom:34.110000px;}
.ye4{bottom:39.000000px;}
.yb7{bottom:39.375000px;}
.y7a{bottom:39.382500px;}
.y176{bottom:39.405000px;}
.yae{bottom:39.420000px;}
.y70{bottom:40.125000px;}
.y18b{bottom:40.500000px;}
.y6a{bottom:41.250000px;}
.y1b2{bottom:43.155000px;}
.y23{bottom:45.030000px;}
.y3d{bottom:45.780000px;}
.y5c{bottom:46.125000px;}
.yef{bottom:47.242500px;}
.y69{bottom:55.875000px;}
.y1b1{bottom:56.655000px;}
.y22{bottom:57.030000px;}
.ye3{bottom:57.360000px;}
.yb6{bottom:57.367500px;}
.y79{bottom:57.382500px;}
.yad{bottom:57.405000px;}
.y14d{bottom:57.750000px;}
.y3c{bottom:60.405000px;}
.y5b{bottom:60.750000px;}
.y15{bottom:61.530000px;}
.y9{bottom:61.537500px;}
.ye{bottom:62.250000px;}
.yee{bottom:65.287500px;}
.y21{bottom:68.655000px;}
.y68{bottom:70.155000px;}
.y1b0{bottom:70.530000px;}
.y5{bottom:71.662500px;}
.y18{bottom:75.030000px;}
.ye2{bottom:75.375000px;}
.y175{bottom:75.405000px;}
.y78{bottom:75.412500px;}
.yac{bottom:75.420000px;}
.y17f{bottom:75.750000px;}
.y14c{bottom:75.780000px;}
.y125{bottom:75.787500px;}
.yb5{bottom:78.037500px;}
.y20{bottom:79.530000px;}
.yed{bottom:83.287500px;}
.y1af{bottom:84.030000px;}
.y67{bottom:84.780000px;}
.yb4{bottom:84.787500px;}
.y14{bottom:89.280000px;}
.y5a{bottom:89.655000px;}
.y1f{bottom:90.405000px;}
.ye1{bottom:93.375000px;}
.yab{bottom:93.780000px;}
.y77{bottom:93.787500px;}
.y17e{bottom:93.795000px;}
.y1ae{bottom:97.530000px;}
.y4d{bottom:98.280000px;}
.y1e{bottom:101.280000px;}
.yec{bottom:101.662500px;}
.y3b{bottom:103.905000px;}
.y44{bottom:103.920000px;}
.yb3{bottom:104.287500px;}
.y151{bottom:107.287500px;}
.y4c{bottom:109.155000px;}
.y1ad{bottom:111.030000px;}
.yf1{bottom:111.412500px;}
.ye0{bottom:111.780000px;}
.y76{bottom:111.787500px;}
.yaa{bottom:111.795000px;}
.y183{bottom:112.162500px;}
.y1d{bottom:112.905000px;}
.y74{bottom:113.662500px;}
.ye8{bottom:114.787500px;}
.y43{bottom:114.795000px;}
.y13{bottom:117.030000px;}
.y3a{bottom:118.530000px;}
.y66{bottom:118.545000px;}
.yeb{bottom:119.662500px;}
.y4b{bottom:120.780000px;}
.y1ac{bottom:124.530000px;}
.y42{bottom:126.405000px;}
.y65{bottom:129.420000px;}
.ydf{bottom:129.780000px;}
.y75{bottom:129.787500px;}
.ya9{bottom:129.795000px;}
.y14b{bottom:130.155000px;}
.y153{bottom:130.162500px;}
.y17d{bottom:130.170000px;}
.y49{bottom:131.280000px;}
.y17c{bottom:131.295000px;}
.y174{bottom:132.405000px;}
.y39{bottom:132.780000px;}
.y59{bottom:133.155000px;}
.y1ab{bottom:138.405000px;}
.yea{bottom:140.287500px;}
.y64{bottom:141.045000px;}
.y12{bottom:144.780000px;}
.ye9{bottom:145.912500px;}
.y38{bottom:147.405000px;}
.yde{bottom:147.780000px;}
.ya8{bottom:147.795000px;}
.y14a{bottom:148.155000px;}
.y124{bottom:148.162500px;}
.y1aa{bottom:151.950000px;}
.y173{bottom:156.075000px;}
.y181{bottom:161.280000px;}
.y37{bottom:161.700000px;}
.y58{bottom:162.030000px;}
.y1a9{bottom:165.450000px;}
.y149{bottom:166.155000px;}
.y123{bottom:166.162500px;}
.ya7{bottom:166.200000px;}
.ydd{bottom:168.405000px;}
.y172{bottom:174.075000px;}
.y36{bottom:176.310000px;}
.y57{bottom:176.655000px;}
.y1a8{bottom:178.950000px;}
.y122{bottom:184.162500px;}
.ya6{bottom:184.200000px;}
.y148{bottom:184.530000px;}
.y152{bottom:185.287500px;}
.ydc{bottom:189.405000px;}
.y56{bottom:190.905000px;}
.y35{bottom:190.935000px;}
.y171{bottom:192.450000px;}
.ydb{bottom:193.905000px;}
.y180{bottom:197.325000px;}
.y121{bottom:202.207500px;}
.y147{bottom:202.575000px;}
.yb2{bottom:202.950000px;}
.ya5{bottom:204.825000px;}
.y34{bottom:205.200000px;}
.y55{bottom:205.575000px;}
.y1a7{bottom:206.325000px;}
.y170{bottom:210.450000px;}
.yda{bottom:211.905000px;}
.y17b{bottom:211.950000px;}
.yb1{bottom:219.450000px;}
.y33{bottom:219.810000px;}
.y54{bottom:219.825000px;}
.y146{bottom:220.575000px;}
.y120{bottom:220.582500px;}
.ya4{bottom:228.450000px;}
.yd9{bottom:229.905000px;}
.y1a6{bottom:233.325000px;}
.y32{bottom:234.435000px;}
.y53{bottom:234.450000px;}
.y145{bottom:238.575000px;}
.y11f{bottom:238.582500px;}
.ya3{bottom:246.450000px;}
.y1a5{bottom:246.825000px;}
.yd8{bottom:248.325000px;}
.y31{bottom:248.685000px;}
.y52{bottom:249.075000px;}
.y11e{bottom:256.567500px;}
.yb0{bottom:256.950000px;}
.y72{bottom:258.450000px;}
.y1a4{bottom:260.700000px;}
.y30{bottom:263.310000px;}
.y51{bottom:263.325000px;}
.ya2{bottom:264.825000px;}
.yd7{bottom:268.950000px;}
.y16f{bottom:272.355000px;}
.y1a3{bottom:274.200000px;}
.y144{bottom:274.950000px;}
.y11d{bottom:274.957500px;}
.ye7{bottom:275.700000px;}
.y2f{bottom:277.560000px;}
.y50{bottom:277.950000px;}
.y80{bottom:280.950000px;}
.ya1{bottom:285.495000px;}
.y1a2{bottom:287.730000px;}
.y16e{bottom:288.855000px;}
.y2e{bottom:292.230000px;}
.yd6{bottom:292.575000px;}
.y143{bottom:292.950000px;}
.y11c{bottom:292.957500px;}
.y71{bottom:294.450000px;}
.y1a1{bottom:301.230000px;}
.y150{bottom:306.495000px;}
.y2d{bottom:306.855000px;}
.y16d{bottom:307.230000px;}
.ya0{bottom:309.120000px;}
.y6d{bottom:309.495000px;}
.yd5{bottom:310.575000px;}
.y11b{bottom:310.957500px;}
.y142{bottom:311.325000px;}
.ye6{bottom:311.745000px;}
.y1a0{bottom:314.730000px;}
.y2c{bottom:321.105000px;}
.y14f{bottom:321.495000px;}
.y16c{bottom:325.230000px;}
.y9f{bottom:327.120000px;}
.yb8{bottom:327.495000px;}
.y19f{bottom:328.605000px;}
.y11a{bottom:328.987500px;}
.y141{bottom:329.355000px;}
.yd4{bottom:330.075000px;}
.y2b{bottom:335.730000px;}
.y19e{bottom:342.105000px;}
.y16b{bottom:343.230000px;}
.y9e{bottom:345.120000px;}
.y140{bottom:347.355000px;}
.y119{bottom:347.362500px;}
.yd3{bottom:349.200000px;}
.y2a{bottom:350.355000px;}
.y19d{bottom:355.605000px;}
.y17a{bottom:357.120000px;}
.y14e{bottom:357.495000px;}
.y1b9{bottom:358.230000px;}
.yd{bottom:358.995000px;}
.y1b8{bottom:359.370000px;}
.y16a{bottom:361.605000px;}
.y9d{bottom:363.120000px;}
.y27{bottom:364.245000px;}
.y13f{bottom:365.355000px;}
.y118{bottom:365.362500px;}
.yd2{bottom:368.355000px;}
.y19c{bottom:369.105000px;}
.y126{bottom:372.870000px;}
.y179{bottom:373.245000px;}
.y169{bottom:379.605000px;}
.y9c{bottom:381.495000px;}
.y19b{bottom:382.605000px;}
.y117{bottom:383.362500px;}
.y13e{bottom:383.730000px;}
.yd1{bottom:387.855000px;}
.y19a{bottom:396.480000px;}
.y1b6{bottom:396.495000px;}
.y168{bottom:397.635000px;}
.y9b{bottom:399.495000px;}
.y13d{bottom:401.730000px;}
.y116{bottom:401.737500px;}
.yd0{bottom:406.980000px;}
.y178{bottom:409.245000px;}
.y199{bottom:410.010000px;}
.y1b5{bottom:411.120000px;}
.y18f{bottom:412.620000px;}
.y9a{bottom:417.525000px;}
.y167{bottom:418.260000px;}
.y13c{bottom:419.730000px;}
.y115{bottom:419.737500px;}
.y198{bottom:423.525000px;}
.y154{bottom:424.995000px;}
.ycf{bottom:425.355000px;}
.y99{bottom:435.525000px;}
.y197{bottom:437.025000px;}
.y13b{bottom:437.730000px;}
.y114{bottom:437.737500px;}
.y166{bottom:441.525000px;}
.yce{bottom:444.480000px;}
.y196{bottom:450.525000px;}
.y98{bottom:453.900000px;}
.y113{bottom:455.782500px;}
.y13a{bottom:456.150000px;}
.y165{bottom:458.385000px;}
.y61{bottom:461.025000px;}
.ycd{bottom:463.605000px;}
.y195{bottom:465.885000px;}
.y97{bottom:471.900000px;}
.y139{bottom:474.135000px;}
.y112{bottom:474.157500px;}
.y164{bottom:476.385000px;}
.y194{bottom:481.635000px;}
.ycc{bottom:481.980000px;}
.y96{bottom:489.900000px;}
.y138{bottom:492.135000px;}
.y111{bottom:492.157500px;}
.y163{bottom:494.385000px;}
.y193{bottom:495.510000px;}
.ycb{bottom:501.150000px;}
.y95{bottom:508.275000px;}
.y192{bottom:509.010000px;}
.y110{bottom:510.157500px;}
.y137{bottom:510.510000px;}
.y162{bottom:512.385000px;}
.yca{bottom:520.635000px;}
.y191{bottom:522.510000px;}
.y94{bottom:526.275000px;}
.y190{bottom:526.635000px;}
.y136{bottom:528.510000px;}
.y10f{bottom:528.532500px;}
.y161{bottom:530.805000px;}
.yc9{bottom:539.760000px;}
.y93{bottom:544.320000px;}
.y135{bottom:546.510000px;}
.y10e{bottom:546.532500px;}
.y160{bottom:548.805000px;}
.yc8{bottom:560.385000px;}
.y92{bottom:562.305000px;}
.y134{bottom:564.510000px;}
.y10d{bottom:564.532500px;}
.y15f{bottom:566.805000px;}
.y91{bottom:580.680000px;}
.y10c{bottom:582.562500px;}
.y133{bottom:582.930000px;}
.yc7{bottom:584.010000px;}
.y15e{bottom:585.180000px;}
.y90{bottom:598.680000px;}
.y132{bottom:600.930000px;}
.y10b{bottom:600.937500px;}
.yc6{bottom:602.010000px;}
.y15d{bottom:603.180000px;}
.y5f{bottom:613.695000px;}
.y8f{bottom:616.680000px;}
.y131{bottom:618.930000px;}
.y10a{bottom:618.937500px;}
.y48{bottom:618.945000px;}
.yc5{bottom:620.055000px;}
.y15c{bottom:621.180000px;}
.y8e{bottom:635.055000px;}
.y109{bottom:636.937500px;}
.y130{bottom:637.305000px;}
.yc4{bottom:638.430000px;}
.y15b{bottom:639.180000px;}
.y28{bottom:650.055000px;}
.y8d{bottom:653.055000px;}
.y4e{bottom:654.195000px;}
.y12f{bottom:655.305000px;}
.y108{bottom:655.312500px;}
.yc3{bottom:656.430000px;}
.y15a{bottom:657.585000px;}
.y29{bottom:663.945000px;}
.y8c{bottom:671.100000px;}
.y12e{bottom:673.305000px;}
.y107{bottom:673.312500px;}
.yc2{bottom:674.430000px;}
.y159{bottom:675.585000px;}
.y8b{bottom:689.100000px;}
.y12d{bottom:691.305000px;}
.y106{bottom:691.312500px;}
.y158{bottom:693.585000px;}
.yc1{bottom:695.055000px;}
.y8a{bottom:707.475000px;}
.y105{bottom:709.342500px;}
.y12c{bottom:709.710000px;}
.y157{bottom:711.960000px;}
.yc0{bottom:718.680000px;}
.y89{bottom:725.475000px;}
.y12b{bottom:727.710000px;}
.y156{bottom:729.960000px;}
.y104{bottom:729.967500px;}
.ybf{bottom:736.680000px;}
.y88{bottom:743.475000px;}
.y12a{bottom:745.710000px;}
.y155{bottom:747.960000px;}
.y45{bottom:751.350000px;}
.y103{bottom:753.592500px;}
.ybe{bottom:755.085000px;}
.y41{bottom:758.475000px;}
.y87{bottom:761.475000px;}
.y129{bottom:764.085000px;}
.y102{bottom:771.967500px;}
.ybd{bottom:773.085000px;}
.y128{bottom:782.085000px;}
.y86{bottom:782.850000px;}
.y101{bottom:789.967500px;}
.ybc{bottom:791.085000px;}
.y127{bottom:800.085000px;}
.y85{bottom:804.255000px;}
.y100{bottom:807.967500px;}
.ybb{bottom:809.460000px;}
.y84{bottom:825.255000px;}
.yff{bottom:825.967500px;}
.yba{bottom:827.460000px;}
.yfe{bottom:844.387500px;}
.yb9{bottom:845.460000px;}
.y83{bottom:846.630000px;}
.yfd{bottom:862.387500px;}
.y82{bottom:867.630000px;}
.yfc{bottom:880.387500px;}
.y81{bottom:889.005000px;}
.y40{bottom:896.505000px;}
.yfb{bottom:898.762500px;}
.y1b{bottom:901.395000px;}
.yfa{bottom:916.762500px;}
.yf9{bottom:934.762500px;}
.y18e{bottom:946.425000px;}
.yf8{bottom:952.762500px;}
.y18d{bottom:962.925000px;}
.yf7{bottom:971.167500px;}
.yf6{bottom:989.167500px;}
.y18c{bottom:998.925000px;}
.yf5{bottom:1007.167500px;}
.y18a{bottom:1014.675000px;}
.yf4{bottom:1025.542500px;}
.y19{bottom:1025.925000px;}
.y11{bottom:1042.425000px;}
.yf3{bottom:1043.542500px;}
.yf2{bottom:1061.542500px;}
.y189{bottom:1069.050000px;}
.y187{bottom:1081.830000px;}
.y186{bottom:1118.205000px;}
.y185{bottom:1133.580000px;}
.yf{bottom:1153.455000px;}
.y7f{bottom:1191.705000px;}
.y7e{bottom:1210.500000px;}
.y1{bottom:1228.500000px;}
.y7d{bottom:1229.250000px;}
.hd{height:3.999023px;}
.h23{height:4.166016px;}
.h1f{height:4.875000px;}
.h26{height:4.910156px;}
.h28{height:5.250000px;}
.h9{height:5.625000px;}
.h3e{height:6.002930px;}
.h22{height:7.125000px;}
.h20{height:8.332031px;}
.h25{height:9.750000px;}
.ha{height:12.005859px;}
.h29{height:12.498047px;}
.h50{height:12.787500px;}
.h4b{height:13.125000px;}
.h54{height:14.250000px;}
.h2c{height:14.730469px;}
.h44{height:15.000000px;}
.h48{height:16.125000px;}
.h16{height:16.500000px;}
.h52{height:20.830078px;}
.h5{height:31.500000px;}
.h1b{height:31.916016px;}
.h33{height:32.625000px;}
.h40{height:32.662500px;}
.h4f{height:33.000000px;}
.h30{height:33.750000px;}
.h4d{height:36.000000px;}
.h1a{height:36.017578px;}
.h55{height:37.125000px;}
.hb{height:38.287500px;}
.h1c{height:39.019043px;}
.h19{height:39.281250px;}
.h4c{height:39.351562px;}
.h31{height:40.500000px;}
.h4{height:41.660156px;}
.h4a{height:43.743164px;}
.h7{height:43.912500px;}
.h45{height:44.270508px;}
.h53{height:45.021973px;}
.h8{height:48.023438px;}
.h32{height:49.101562px;}
.h17{height:49.189453px;}
.h2d{height:49.500000px;}
.h1{height:49.804688px;}
.h6{height:49.992188px;}
.h2f{height:54.026367px;}
.h4e{height:54.375000px;}
.h10{height:55.537500px;}
.h3{height:60.029297px;}
.h2e{height:63.000000px;}
.h3f{height:63.030762px;}
.h38{height:63.275802px;}
.h3d{height:66.210938px;}
.h36{height:68.742188px;}
.h3a{height:78.562500px;}
.h39{height:78.703125px;}
.h2{height:79.912500px;}
.h13{height:84.667969px;}
.h11{height:89.648438px;}
.h2b{height:96.787500px;}
.h34{height:98.378906px;}
.h3b{height:98.662500px;}
.hc{height:108.000000px;}
.h14{height:111.037500px;}
.h18{height:124.522500px;}
.h24{height:132.412500px;}
.hf{height:136.962891px;}
.h15{height:137.730469px;}
.h21{height:138.037500px;}
.h35{height:144.787500px;}
.h49{height:145.162500px;}
.h2a{height:152.670000px;}
.h41{height:160.920000px;}
.h12{height:166.575000px;}
.h46{height:199.200000px;}
.h27{height:289.950000px;}
.h1e{height:361.965000px;}
.h51{height:533.790000px;}
.h1d{height:661.665000px;}
.h47{height:762.960000px;}
.h43{height:815.100000px;}
.he{height:850.005000px;}
.h3c{height:860.475000px;}
.h37{height:907.005000px;}
.h42{height:1076.550000px;}
.h0{height:1263.000000px;}
.w8{width:18.000000px;}
.w23{width:18.375000px;}
.w1e{width:21.375000px;}
.w25{width:21.750000px;}
.wc{width:21.787500px;}
.w6{width:58.162500px;}
.w7{width:62.250000px;}
.w1c{width:63.037500px;}
.w13{width:92.287500px;}
.w3{width:96.412500px;}
.w15{width:97.162500px;}
.w19{width:98.662500px;}
.w20{width:99.412500px;}
.w11{width:111.787500px;}
.wa{width:111.825000px;}
.w16{width:117.825000px;}
.w14{width:121.162500px;}
.w12{width:121.200000px;}
.w10{width:140.287500px;}
.w4{width:185.700000px;}
.w1a{width:186.450000px;}
.w21{width:188.325000px;}
.wb{width:249.450000px;}
.wd{width:356.400000px;}
.we{width:361.275000px;}
.w22{width:450.945000px;}
.w1b{width:453.570000px;}
.w5{width:461.445000px;}
.w9{width:721.455000px;}
.wf{width:739.455000px;}
.w18{width:766.425000px;}
.w26{width:779.955000px;}
.w1f{width:780.330000px;}
.w24{width:783.330000px;}
.w17{width:784.425000px;}
.w1d{width:801.705000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x19{left:9.375000px;}
.x16{left:10.905000px;}
.x1b{left:13.500000px;}
.xb{left:18.360000px;}
.x26{left:23.235000px;}
.x2b{left:26.250000px;}
.x25{left:28.875000px;}
.x27{left:34.875000px;}
.x9{left:36.750000px;}
.xc{left:43.500000px;}
.x2{left:45.787500px;}
.xa{left:49.905000px;}
.x1{left:54.037487px;}
.x2c{left:55.155000px;}
.x2f{left:61.500000px;}
.x1e{left:63.787500px;}
.x29{left:67.162500px;}
.x2d{left:78.787500px;}
.x3{left:87.037500px;}
.x21{left:89.287500px;}
.x20{left:95.662487px;}
.x2e{left:105.787500px;}
.xf{left:106.912500px;}
.xd{left:108.037500px;}
.x13{left:109.957500px;}
.x28{left:115.912500px;}
.xe{left:126.037500px;}
.x4{left:142.200000px;}
.x22{left:144.450000px;}
.x5{left:173.700000px;}
.x14{left:186.075000px;}
.x10{left:219.870000px;}
.x1f{left:228.869987px;}
.x15{left:297.870000px;}
.x6{left:327.900000px;}
.x23{left:330.900000px;}
.x2a{left:332.774987px;}
.x30{left:350.407500px;}
.x17{left:419.070000px;}
.x1d{left:446.444987px;}
.x31{left:450.937500px;}
.x11{left:469.320000px;}
.x12{left:491.100000px;}
.x18{left:511.350000px;}
.x1a{left:632.520000px;}
.x1c{left:729.675000px;}
.x24{left:784.470000px;}
.x8{left:789.345000px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.lse{letter-spacing:-1.493333pt;}
.ls17{letter-spacing:-1.157333pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.506667pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.138667pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.200000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.405333pt;}
.ls14{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.826667pt;}
.ls12{letter-spacing:0.880000pt;}
.lsd{letter-spacing:3.040000pt;}
.ls13{letter-spacing:28.880000pt;}
.ls8{letter-spacing:35.840000pt;}
.lsb{letter-spacing:38.506667pt;}
.ls6{letter-spacing:48.874667pt;}
.lsf{letter-spacing:51.546667pt;}
.ls7{letter-spacing:57.173333pt;}
.wsa{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.333333pt;}
.ws6{word-spacing:-29.440000pt;}
.ws1{word-spacing:-27.968000pt;}
.wsd{word-spacing:-23.552000pt;}
.wsc{word-spacing:-16.906667pt;}
.ws8{word-spacing:-16.693333pt;}
.ws5{word-spacing:-15.024000pt;}
.ws0{word-spacing:-13.354667pt;}
.ws12{word-spacing:-13.144000pt;}
.ws10{word-spacing:-12.813333pt;}
.wsf{word-spacing:-12.520000pt;}
.ws4{word-spacing:-12.501333pt;}
.wse{word-spacing:-12.013333pt;}
.ws11{word-spacing:-11.362667pt;}
.ws7{word-spacing:-10.850667pt;}
.ws2{word-spacing:-10.016000pt;}
.ws3{word-spacing:-9.877333pt;}
.ws9{word-spacing:0.000000pt;}
._1f{margin-left:-2.165333pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._2{width:2.493333pt;}
._e{width:3.949333pt;}
._d{width:5.010667pt;}
._c{width:5.973333pt;}
._9{width:7.226667pt;}
._8{width:8.117333pt;}
._12{width:9.354667pt;}
._f{width:10.410667pt;}
._16{width:11.744000pt;}
._22{width:12.829333pt;}
._21{width:13.728000pt;}
._11{width:14.805333pt;}
._10{width:15.786667pt;}
._a{width:17.533333pt;}
._b{width:18.869333pt;}
._20{width:19.968000pt;}
._14{width:21.160000pt;}
._15{width:22.074667pt;}
._1a{width:23.274667pt;}
._19{width:24.373333pt;}
._13{width:26.024000pt;}
._1b{width:27.205333pt;}
._24{width:28.298667pt;}
._23{width:29.226667pt;}
._1c{width:30.248000pt;}
._18{width:31.658667pt;}
._17{width:32.640000pt;}
._7{width:42.810667pt;}
._3{width:44.064000pt;}
._5{width:54.762667pt;}
._4{width:55.912000pt;}
._6{width:73.954667pt;}
._1e{width:166.122667pt;}
._1d{width:167.589333pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fse{font-size:16.000000pt;}
.fs15{font-size:26.666667pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs14{font-size:56.000000pt;}
.fs12{font-size:56.217707pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fs13{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:146.666667pt;}
.fsb{font-size:149.333333pt;}
.y1c{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.333333pt;}
.y6c{bottom:0.666667pt;}
.y60{bottom:1.000000pt;}
.y3{bottom:2.000000pt;}
.ya{bottom:2.333333pt;}
.y182{bottom:2.340000pt;}
.y7c{bottom:2.666667pt;}
.y1a{bottom:3.000000pt;}
.y47{bottom:3.666667pt;}
.y1b7{bottom:4.000000pt;}
.y46{bottom:5.000000pt;}
.y17{bottom:5.333333pt;}
.y73{bottom:6.333333pt;}
.y188{bottom:6.666667pt;}
.y4f{bottom:7.333333pt;}
.yb{bottom:7.666667pt;}
.y26{bottom:9.653333pt;}
.y4{bottom:10.000000pt;}
.y6b{bottom:11.000000pt;}
.y7{bottom:13.000000pt;}
.y63{bottom:13.333333pt;}
.y1b4{bottom:14.333333pt;}
.y3f{bottom:15.000000pt;}
.y5e{bottom:15.320000pt;}
.y6{bottom:15.666667pt;}
.y6e{bottom:16.653333pt;}
.y6f{bottom:17.000000pt;}
.y8{bottom:18.333333pt;}
.ye5{bottom:18.653333pt;}
.yaf{bottom:18.666667pt;}
.y7b{bottom:19.000000pt;}
.y177{bottom:19.026667pt;}
.yc{bottom:19.333333pt;}
.y184{bottom:19.666667pt;}
.y25{bottom:19.986667pt;}
.y2{bottom:20.666667pt;}
.y62{bottom:23.666667pt;}
.yf0{bottom:26.000000pt;}
.y1b3{bottom:26.360000pt;}
.y5d{bottom:27.986667pt;}
.y3e{bottom:28.026667pt;}
.y10{bottom:29.000000pt;}
.y16{bottom:30.026667pt;}
.y24{bottom:30.320000pt;}
.ye4{bottom:34.666667pt;}
.yb7{bottom:35.000000pt;}
.y7a{bottom:35.006667pt;}
.y176{bottom:35.026667pt;}
.yae{bottom:35.040000pt;}
.y70{bottom:35.666667pt;}
.y18b{bottom:36.000000pt;}
.y6a{bottom:36.666667pt;}
.y1b2{bottom:38.360000pt;}
.y23{bottom:40.026667pt;}
.y3d{bottom:40.693333pt;}
.y5c{bottom:41.000000pt;}
.yef{bottom:41.993333pt;}
.y69{bottom:49.666667pt;}
.y1b1{bottom:50.360000pt;}
.y22{bottom:50.693333pt;}
.ye3{bottom:50.986667pt;}
.yb6{bottom:50.993333pt;}
.y79{bottom:51.006667pt;}
.yad{bottom:51.026667pt;}
.y14d{bottom:51.333333pt;}
.y3c{bottom:53.693333pt;}
.y5b{bottom:54.000000pt;}
.y15{bottom:54.693333pt;}
.y9{bottom:54.700000pt;}
.ye{bottom:55.333333pt;}
.yee{bottom:58.033333pt;}
.y21{bottom:61.026667pt;}
.y68{bottom:62.360000pt;}
.y1b0{bottom:62.693333pt;}
.y5{bottom:63.700000pt;}
.y18{bottom:66.693333pt;}
.ye2{bottom:67.000000pt;}
.y175{bottom:67.026667pt;}
.y78{bottom:67.033333pt;}
.yac{bottom:67.040000pt;}
.y17f{bottom:67.333333pt;}
.y14c{bottom:67.360000pt;}
.y125{bottom:67.366667pt;}
.yb5{bottom:69.366667pt;}
.y20{bottom:70.693333pt;}
.yed{bottom:74.033333pt;}
.y1af{bottom:74.693333pt;}
.y67{bottom:75.360000pt;}
.yb4{bottom:75.366667pt;}
.y14{bottom:79.360000pt;}
.y5a{bottom:79.693333pt;}
.y1f{bottom:80.360000pt;}
.ye1{bottom:83.000000pt;}
.yab{bottom:83.360000pt;}
.y77{bottom:83.366667pt;}
.y17e{bottom:83.373333pt;}
.y1ae{bottom:86.693333pt;}
.y4d{bottom:87.360000pt;}
.y1e{bottom:90.026667pt;}
.yec{bottom:90.366667pt;}
.y3b{bottom:92.360000pt;}
.y44{bottom:92.373333pt;}
.yb3{bottom:92.700000pt;}
.y151{bottom:95.366667pt;}
.y4c{bottom:97.026667pt;}
.y1ad{bottom:98.693333pt;}
.yf1{bottom:99.033333pt;}
.ye0{bottom:99.360000pt;}
.y76{bottom:99.366667pt;}
.yaa{bottom:99.373333pt;}
.y183{bottom:99.700000pt;}
.y1d{bottom:100.360000pt;}
.y74{bottom:101.033333pt;}
.ye8{bottom:102.033333pt;}
.y43{bottom:102.040000pt;}
.y13{bottom:104.026667pt;}
.y3a{bottom:105.360000pt;}
.y66{bottom:105.373333pt;}
.yeb{bottom:106.366667pt;}
.y4b{bottom:107.360000pt;}
.y1ac{bottom:110.693333pt;}
.y42{bottom:112.360000pt;}
.y65{bottom:115.040000pt;}
.ydf{bottom:115.360000pt;}
.y75{bottom:115.366667pt;}
.ya9{bottom:115.373333pt;}
.y14b{bottom:115.693333pt;}
.y153{bottom:115.700000pt;}
.y17d{bottom:115.706667pt;}
.y49{bottom:116.693333pt;}
.y17c{bottom:116.706667pt;}
.y174{bottom:117.693333pt;}
.y39{bottom:118.026667pt;}
.y59{bottom:118.360000pt;}
.y1ab{bottom:123.026667pt;}
.yea{bottom:124.700000pt;}
.y64{bottom:125.373333pt;}
.y12{bottom:128.693333pt;}
.ye9{bottom:129.700000pt;}
.y38{bottom:131.026667pt;}
.yde{bottom:131.360000pt;}
.ya8{bottom:131.373333pt;}
.y14a{bottom:131.693333pt;}
.y124{bottom:131.700000pt;}
.y1aa{bottom:135.066667pt;}
.y173{bottom:138.733333pt;}
.y181{bottom:143.360000pt;}
.y37{bottom:143.733333pt;}
.y58{bottom:144.026667pt;}
.y1a9{bottom:147.066667pt;}
.y149{bottom:147.693333pt;}
.y123{bottom:147.700000pt;}
.ya7{bottom:147.733333pt;}
.ydd{bottom:149.693333pt;}
.y172{bottom:154.733333pt;}
.y36{bottom:156.720000pt;}
.y57{bottom:157.026667pt;}
.y1a8{bottom:159.066667pt;}
.y122{bottom:163.700000pt;}
.ya6{bottom:163.733333pt;}
.y148{bottom:164.026667pt;}
.y152{bottom:164.700000pt;}
.ydc{bottom:168.360000pt;}
.y56{bottom:169.693333pt;}
.y35{bottom:169.720000pt;}
.y171{bottom:171.066667pt;}
.ydb{bottom:172.360000pt;}
.y180{bottom:175.400000pt;}
.y121{bottom:179.740000pt;}
.y147{bottom:180.066667pt;}
.yb2{bottom:180.400000pt;}
.ya5{bottom:182.066667pt;}
.y34{bottom:182.400000pt;}
.y55{bottom:182.733333pt;}
.y1a7{bottom:183.400000pt;}
.y170{bottom:187.066667pt;}
.yda{bottom:188.360000pt;}
.y17b{bottom:188.400000pt;}
.yb1{bottom:195.066667pt;}
.y33{bottom:195.386667pt;}
.y54{bottom:195.400000pt;}
.y146{bottom:196.066667pt;}
.y120{bottom:196.073333pt;}
.ya4{bottom:203.066667pt;}
.yd9{bottom:204.360000pt;}
.y1a6{bottom:207.400000pt;}
.y32{bottom:208.386667pt;}
.y53{bottom:208.400000pt;}
.y145{bottom:212.066667pt;}
.y11f{bottom:212.073333pt;}
.ya3{bottom:219.066667pt;}
.y1a5{bottom:219.400000pt;}
.yd8{bottom:220.733333pt;}
.y31{bottom:221.053333pt;}
.y52{bottom:221.400000pt;}
.y11e{bottom:228.060000pt;}
.yb0{bottom:228.400000pt;}
.y72{bottom:229.733333pt;}
.y1a4{bottom:231.733333pt;}
.y30{bottom:234.053333pt;}
.y51{bottom:234.066667pt;}
.ya2{bottom:235.400000pt;}
.yd7{bottom:239.066667pt;}
.y16f{bottom:242.093333pt;}
.y1a3{bottom:243.733333pt;}
.y144{bottom:244.400000pt;}
.y11d{bottom:244.406667pt;}
.ye7{bottom:245.066667pt;}
.y2f{bottom:246.720000pt;}
.y50{bottom:247.066667pt;}
.y80{bottom:249.733333pt;}
.ya1{bottom:253.773333pt;}
.y1a2{bottom:255.760000pt;}
.y16e{bottom:256.760000pt;}
.y2e{bottom:259.760000pt;}
.yd6{bottom:260.066667pt;}
.y143{bottom:260.400000pt;}
.y11c{bottom:260.406667pt;}
.y71{bottom:261.733333pt;}
.y1a1{bottom:267.760000pt;}
.y150{bottom:272.440000pt;}
.y2d{bottom:272.760000pt;}
.y16d{bottom:273.093333pt;}
.ya0{bottom:274.773333pt;}
.y6d{bottom:275.106667pt;}
.yd5{bottom:276.066667pt;}
.y11b{bottom:276.406667pt;}
.y142{bottom:276.733333pt;}
.ye6{bottom:277.106667pt;}
.y1a0{bottom:279.760000pt;}
.y2c{bottom:285.426667pt;}
.y14f{bottom:285.773333pt;}
.y16c{bottom:289.093333pt;}
.y9f{bottom:290.773333pt;}
.yb8{bottom:291.106667pt;}
.y19f{bottom:292.093333pt;}
.y11a{bottom:292.433333pt;}
.y141{bottom:292.760000pt;}
.yd4{bottom:293.400000pt;}
.y2b{bottom:298.426667pt;}
.y19e{bottom:304.093333pt;}
.y16b{bottom:305.093333pt;}
.y9e{bottom:306.773333pt;}
.y140{bottom:308.760000pt;}
.y119{bottom:308.766667pt;}
.yd3{bottom:310.400000pt;}
.y2a{bottom:311.426667pt;}
.y19d{bottom:316.093333pt;}
.y17a{bottom:317.440000pt;}
.y14e{bottom:317.773333pt;}
.y1b9{bottom:318.426667pt;}
.yd{bottom:319.106667pt;}
.y1b8{bottom:319.440000pt;}
.y16a{bottom:321.426667pt;}
.y9d{bottom:322.773333pt;}
.y27{bottom:323.773333pt;}
.y13f{bottom:324.760000pt;}
.y118{bottom:324.766667pt;}
.yd2{bottom:327.426667pt;}
.y19c{bottom:328.093333pt;}
.y126{bottom:331.440000pt;}
.y179{bottom:331.773333pt;}
.y169{bottom:337.426667pt;}
.y9c{bottom:339.106667pt;}
.y19b{bottom:340.093333pt;}
.y117{bottom:340.766667pt;}
.y13e{bottom:341.093333pt;}
.yd1{bottom:344.760000pt;}
.y19a{bottom:352.426667pt;}
.y1b6{bottom:352.440000pt;}
.y168{bottom:353.453333pt;}
.y9b{bottom:355.106667pt;}
.y13d{bottom:357.093333pt;}
.y116{bottom:357.100000pt;}
.yd0{bottom:361.760000pt;}
.y178{bottom:363.773333pt;}
.y199{bottom:364.453333pt;}
.y1b5{bottom:365.440000pt;}
.y18f{bottom:366.773333pt;}
.y9a{bottom:371.133333pt;}
.y167{bottom:371.786667pt;}
.y13c{bottom:373.093333pt;}
.y115{bottom:373.100000pt;}
.y198{bottom:376.466667pt;}
.y154{bottom:377.773333pt;}
.ycf{bottom:378.093333pt;}
.y99{bottom:387.133333pt;}
.y197{bottom:388.466667pt;}
.y13b{bottom:389.093333pt;}
.y114{bottom:389.100000pt;}
.y166{bottom:392.466667pt;}
.yce{bottom:395.093333pt;}
.y196{bottom:400.466667pt;}
.y98{bottom:403.466667pt;}
.y113{bottom:405.140000pt;}
.y13a{bottom:405.466667pt;}
.y165{bottom:407.453333pt;}
.y61{bottom:409.800000pt;}
.ycd{bottom:412.093333pt;}
.y195{bottom:414.120000pt;}
.y97{bottom:419.466667pt;}
.y139{bottom:421.453333pt;}
.y112{bottom:421.473333pt;}
.y164{bottom:423.453333pt;}
.y194{bottom:428.120000pt;}
.ycc{bottom:428.426667pt;}
.y96{bottom:435.466667pt;}
.y138{bottom:437.453333pt;}
.y111{bottom:437.473333pt;}
.y163{bottom:439.453333pt;}
.y193{bottom:440.453333pt;}
.ycb{bottom:445.466667pt;}
.y95{bottom:451.800000pt;}
.y192{bottom:452.453333pt;}
.y110{bottom:453.473333pt;}
.y137{bottom:453.786667pt;}
.y162{bottom:455.453333pt;}
.yca{bottom:462.786667pt;}
.y191{bottom:464.453333pt;}
.y94{bottom:467.800000pt;}
.y190{bottom:468.120000pt;}
.y136{bottom:469.786667pt;}
.y10f{bottom:469.806667pt;}
.y161{bottom:471.826667pt;}
.yc9{bottom:479.786667pt;}
.y93{bottom:483.840000pt;}
.y135{bottom:485.786667pt;}
.y10e{bottom:485.806667pt;}
.y160{bottom:487.826667pt;}
.yc8{bottom:498.120000pt;}
.y92{bottom:499.826667pt;}
.y134{bottom:501.786667pt;}
.y10d{bottom:501.806667pt;}
.y15f{bottom:503.826667pt;}
.y91{bottom:516.160000pt;}
.y10c{bottom:517.833333pt;}
.y133{bottom:518.160000pt;}
.yc7{bottom:519.120000pt;}
.y15e{bottom:520.160000pt;}
.y90{bottom:532.160000pt;}
.y132{bottom:534.160000pt;}
.y10b{bottom:534.166667pt;}
.yc6{bottom:535.120000pt;}
.y15d{bottom:536.160000pt;}
.y5f{bottom:545.506667pt;}
.y8f{bottom:548.160000pt;}
.y131{bottom:550.160000pt;}
.y10a{bottom:550.166667pt;}
.y48{bottom:550.173333pt;}
.yc5{bottom:551.160000pt;}
.y15c{bottom:552.160000pt;}
.y8e{bottom:564.493333pt;}
.y109{bottom:566.166667pt;}
.y130{bottom:566.493333pt;}
.yc4{bottom:567.493333pt;}
.y15b{bottom:568.160000pt;}
.y28{bottom:577.826667pt;}
.y8d{bottom:580.493333pt;}
.y4e{bottom:581.506667pt;}
.y12f{bottom:582.493333pt;}
.y108{bottom:582.500000pt;}
.yc3{bottom:583.493333pt;}
.y15a{bottom:584.520000pt;}
.y29{bottom:590.173333pt;}
.y8c{bottom:596.533333pt;}
.y12e{bottom:598.493333pt;}
.y107{bottom:598.500000pt;}
.yc2{bottom:599.493333pt;}
.y159{bottom:600.520000pt;}
.y8b{bottom:612.533333pt;}
.y12d{bottom:614.493333pt;}
.y106{bottom:614.500000pt;}
.y158{bottom:616.520000pt;}
.yc1{bottom:617.826667pt;}
.y8a{bottom:628.866667pt;}
.y105{bottom:630.526667pt;}
.y12c{bottom:630.853333pt;}
.y157{bottom:632.853333pt;}
.yc0{bottom:638.826667pt;}
.y89{bottom:644.866667pt;}
.y12b{bottom:646.853333pt;}
.y156{bottom:648.853333pt;}
.y104{bottom:648.860000pt;}
.ybf{bottom:654.826667pt;}
.y88{bottom:660.866667pt;}
.y12a{bottom:662.853333pt;}
.y155{bottom:664.853333pt;}
.y45{bottom:667.866667pt;}
.y103{bottom:669.860000pt;}
.ybe{bottom:671.186667pt;}
.y41{bottom:674.200000pt;}
.y87{bottom:676.866667pt;}
.y129{bottom:679.186667pt;}
.y102{bottom:686.193333pt;}
.ybd{bottom:687.186667pt;}
.y128{bottom:695.186667pt;}
.y86{bottom:695.866667pt;}
.y101{bottom:702.193333pt;}
.ybc{bottom:703.186667pt;}
.y127{bottom:711.186667pt;}
.y85{bottom:714.893333pt;}
.y100{bottom:718.193333pt;}
.ybb{bottom:719.520000pt;}
.y84{bottom:733.560000pt;}
.yff{bottom:734.193333pt;}
.yba{bottom:735.520000pt;}
.yfe{bottom:750.566667pt;}
.yb9{bottom:751.520000pt;}
.y83{bottom:752.560000pt;}
.yfd{bottom:766.566667pt;}
.y82{bottom:771.226667pt;}
.yfc{bottom:782.566667pt;}
.y81{bottom:790.226667pt;}
.y40{bottom:796.893333pt;}
.yfb{bottom:798.900000pt;}
.y1b{bottom:801.240000pt;}
.yfa{bottom:814.900000pt;}
.yf9{bottom:830.900000pt;}
.y18e{bottom:841.266667pt;}
.yf8{bottom:846.900000pt;}
.y18d{bottom:855.933333pt;}
.yf7{bottom:863.260000pt;}
.yf6{bottom:879.260000pt;}
.y18c{bottom:887.933333pt;}
.yf5{bottom:895.260000pt;}
.y18a{bottom:901.933333pt;}
.yf4{bottom:911.593333pt;}
.y19{bottom:911.933333pt;}
.y11{bottom:926.600000pt;}
.yf3{bottom:927.593333pt;}
.yf2{bottom:943.593333pt;}
.y189{bottom:950.266667pt;}
.y187{bottom:961.626667pt;}
.y186{bottom:993.960000pt;}
.y185{bottom:1007.626667pt;}
.yf{bottom:1025.293333pt;}
.y7f{bottom:1059.293333pt;}
.y7e{bottom:1076.000000pt;}
.y1{bottom:1092.000000pt;}
.y7d{bottom:1092.666667pt;}
.hd{height:3.554688pt;}
.h23{height:3.703125pt;}
.h1f{height:4.333333pt;}
.h26{height:4.364583pt;}
.h28{height:4.666667pt;}
.h9{height:5.000000pt;}
.h3e{height:5.335938pt;}
.h22{height:6.333333pt;}
.h20{height:7.406250pt;}
.h25{height:8.666667pt;}
.ha{height:10.671875pt;}
.h29{height:11.109375pt;}
.h50{height:11.366667pt;}
.h4b{height:11.666667pt;}
.h54{height:12.666667pt;}
.h2c{height:13.093750pt;}
.h44{height:13.333333pt;}
.h48{height:14.333333pt;}
.h16{height:14.666667pt;}
.h52{height:18.515625pt;}
.h5{height:28.000000pt;}
.h1b{height:28.369792pt;}
.h33{height:29.000000pt;}
.h40{height:29.033333pt;}
.h4f{height:29.333333pt;}
.h30{height:30.000000pt;}
.h4d{height:32.000000pt;}
.h1a{height:32.015625pt;}
.h55{height:33.000000pt;}
.hb{height:34.033333pt;}
.h1c{height:34.683594pt;}
.h19{height:34.916667pt;}
.h4c{height:34.979167pt;}
.h31{height:36.000000pt;}
.h4{height:37.031250pt;}
.h4a{height:38.882812pt;}
.h7{height:39.033333pt;}
.h45{height:39.351562pt;}
.h53{height:40.019531pt;}
.h8{height:42.687500pt;}
.h32{height:43.645833pt;}
.h17{height:43.723958pt;}
.h2d{height:44.000000pt;}
.h1{height:44.270833pt;}
.h6{height:44.437500pt;}
.h2f{height:48.023438pt;}
.h4e{height:48.333333pt;}
.h10{height:49.366667pt;}
.h3{height:53.359375pt;}
.h2e{height:56.000000pt;}
.h3f{height:56.027344pt;}
.h38{height:56.245157pt;}
.h3d{height:58.854167pt;}
.h36{height:61.104167pt;}
.h3a{height:69.833333pt;}
.h39{height:69.958333pt;}
.h2{height:71.033333pt;}
.h13{height:75.260417pt;}
.h11{height:79.687500pt;}
.h2b{height:86.033333pt;}
.h34{height:87.447917pt;}
.h3b{height:87.700000pt;}
.hc{height:96.000000pt;}
.h14{height:98.700000pt;}
.h18{height:110.686667pt;}
.h24{height:117.700000pt;}
.hf{height:121.744792pt;}
.h15{height:122.427083pt;}
.h21{height:122.700000pt;}
.h35{height:128.700000pt;}
.h49{height:129.033333pt;}
.h2a{height:135.706667pt;}
.h41{height:143.040000pt;}
.h12{height:148.066667pt;}
.h46{height:177.066667pt;}
.h27{height:257.733333pt;}
.h1e{height:321.746667pt;}
.h51{height:474.480000pt;}
.h1d{height:588.146667pt;}
.h47{height:678.186667pt;}
.h43{height:724.533333pt;}
.he{height:755.560000pt;}
.h3c{height:764.866667pt;}
.h37{height:806.226667pt;}
.h42{height:956.933333pt;}
.h0{height:1122.666667pt;}
.w8{width:16.000000pt;}
.w23{width:16.333333pt;}
.w1e{width:19.000000pt;}
.w25{width:19.333333pt;}
.wc{width:19.366667pt;}
.w6{width:51.700000pt;}
.w7{width:55.333333pt;}
.w1c{width:56.033333pt;}
.w13{width:82.033333pt;}
.w3{width:85.700000pt;}
.w15{width:86.366667pt;}
.w19{width:87.700000pt;}
.w20{width:88.366667pt;}
.w11{width:99.366667pt;}
.wa{width:99.400000pt;}
.w16{width:104.733333pt;}
.w14{width:107.700000pt;}
.w12{width:107.733333pt;}
.w10{width:124.700000pt;}
.w4{width:165.066667pt;}
.w1a{width:165.733333pt;}
.w21{width:167.400000pt;}
.wb{width:221.733333pt;}
.wd{width:316.800000pt;}
.we{width:321.133333pt;}
.w22{width:400.840000pt;}
.w1b{width:403.173333pt;}
.w5{width:410.173333pt;}
.w9{width:641.293333pt;}
.wf{width:657.293333pt;}
.w18{width:681.266667pt;}
.w26{width:693.293333pt;}
.w1f{width:693.626667pt;}
.w24{width:696.293333pt;}
.w17{width:697.266667pt;}
.w1d{width:712.626667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x19{left:8.333333pt;}
.x16{left:9.693333pt;}
.x1b{left:12.000000pt;}
.xb{left:16.320000pt;}
.x26{left:20.653333pt;}
.x2b{left:23.333333pt;}
.x25{left:25.666667pt;}
.x27{left:31.000000pt;}
.x9{left:32.666667pt;}
.xc{left:38.666667pt;}
.x2{left:40.700000pt;}
.xa{left:44.360000pt;}
.x1{left:48.033322pt;}
.x2c{left:49.026667pt;}
.x2f{left:54.666667pt;}
.x1e{left:56.700000pt;}
.x29{left:59.700000pt;}
.x2d{left:70.033333pt;}
.x3{left:77.366667pt;}
.x21{left:79.366667pt;}
.x20{left:85.033322pt;}
.x2e{left:94.033333pt;}
.xf{left:95.033333pt;}
.xd{left:96.033333pt;}
.x13{left:97.740000pt;}
.x28{left:103.033333pt;}
.xe{left:112.033333pt;}
.x4{left:126.400000pt;}
.x22{left:128.400000pt;}
.x5{left:154.400000pt;}
.x14{left:165.400000pt;}
.x10{left:195.440000pt;}
.x1f{left:203.439988pt;}
.x15{left:264.773333pt;}
.x6{left:291.466667pt;}
.x23{left:294.133333pt;}
.x2a{left:295.799988pt;}
.x30{left:311.473333pt;}
.x17{left:372.506667pt;}
.x1d{left:396.839988pt;}
.x31{left:400.833333pt;}
.x11{left:417.173333pt;}
.x12{left:436.533333pt;}
.x18{left:454.533333pt;}
.x1a{left:562.240000pt;}
.x1c{left:648.600000pt;}
.x24{left:697.306667pt;}
.x8{left:701.640000pt;}
}




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