
    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_40c5aad3a88fd13da3e26e59.woff2')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_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_916ae9c0dd163432ce3a6212.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_eccb44984338fc464f4db8ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5ebb7ddf9d5d3daaeee6889.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0682a0dc5d66915962659bc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b137f0e5cf688ae62ebe7847.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_260f4e4ec2e2adf77a9f555c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c03877b1ca23e389338fcd5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_e324418135261df958befb32.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_0f6f7af1dc0329a53dc8c295.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_275314be64bc63c83b84efd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-74.160000px;}
.v3{vertical-align:-69.300000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.223200px;}
.ls17{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.069600px;}
.ls18{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004320px;}
.ls15{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.306600px;}
.ls1b{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.466800px;}
.lsc{letter-spacing:0.684720px;}
.ls9{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.144000px;}
.ls1a{letter-spacing:10.260000px;}
.ls13{letter-spacing:100.980000px;}
.lsd{letter-spacing:1268.376000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws2{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.093600px;}
.wsf{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.274000px;}
.wsd{word-spacing:-13.505760px;}
.wse{word-spacing:-9.724320px;}
.wsa{word-spacing:-9.720000px;}
.ws12{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._6{width:6.000720px;}
._7{width:7.125840px;}
._b{width:9.093120px;}
._c{width:10.508160px;}
._8{width:11.772720px;}
._e{width:13.395360px;}
._d{width:16.135200px;}
._f{width:24.202800px;}
._14{width:26.115120px;}
._a{width:27.967680px;}
._9{width:28.983600px;}
._11{width:30.417840px;}
._10{width:31.672800px;}
._12{width:33.956640px;}
._17{width:35.295120px;}
._13{width:85.994640px;}
._15{width:111.701040px;}
._16{width:112.738320px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(14,16,26);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y12{bottom:3.420000px;}
.y109{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y10d{bottom:3.825000px;}
.yad{bottom:3.960000px;}
.y6{bottom:4.140000px;}
.ybc{bottom:4.320000px;}
.yba{bottom:4.860000px;}
.yaf{bottom:5.760000px;}
.y5{bottom:8.100000px;}
.y138{bottom:12.060000px;}
.y10a{bottom:12.240000px;}
.yfb{bottom:12.420000px;}
.y10e{bottom:12.465000px;}
.y3{bottom:12.780000px;}
.y16b{bottom:18.465000px;}
.y137{bottom:20.700000px;}
.y17{bottom:20.880000px;}
.y10c{bottom:20.925000px;}
.y2b{bottom:21.060000px;}
.y2e{bottom:21.105000px;}
.y130{bottom:21.780000px;}
.y122{bottom:22.320000px;}
.y17f{bottom:22.830000px;}
.yab{bottom:22.860000px;}
.ycc{bottom:22.890000px;}
.y2{bottom:28.980000px;}
.y108{bottom:29.880000px;}
.y10f{bottom:30.060000px;}
.y12b{bottom:30.780000px;}
.y181{bottom:30.930000px;}
.y16d{bottom:30.990000px;}
.y123{bottom:31.320000px;}
.y119{bottom:34.380000px;}
.y2f{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y2a{bottom:38.340000px;}
.y2d{bottom:38.385000px;}
.ya1{bottom:40.140000px;}
.y103{bottom:40.185000px;}
.yda{bottom:42.330000px;}
.yf1{bottom:50.940000px;}
.y118{bottom:51.480000px;}
.y15{bottom:55.440000px;}
.y29{bottom:55.620000px;}
.ybd{bottom:55.980000px;}
.yb{bottom:56.700000px;}
.ya0{bottom:57.420000px;}
.y102{bottom:57.465000px;}
.y16a{bottom:58.035000px;}
.yd9{bottom:59.610000px;}
.y17e{bottom:67.065000px;}
.y117{bottom:68.760000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y101{bottom:74.745000px;}
.yc7{bottom:84.780000px;}
.y116{bottom:86.040000px;}
.y35{bottom:88.560000px;}
.y28{bottom:90.000000px;}
.y15e{bottom:90.930000px;}
.y100{bottom:91.845000px;}
.yca{bottom:92.700000px;}
.yc4{bottom:92.805000px;}
.yec{bottom:93.525000px;}
.yf3{bottom:94.248000px;}
.yb8{bottom:98.280000px;}
.y174{bottom:99.795000px;}
.yc6{bottom:103.140000px;}
.y115{bottom:103.320000px;}
.y34{bottom:105.480000px;}
.y27{bottom:107.280000px;}
.y15f{bottom:107.490000px;}
.yff{bottom:109.125000px;}
.ye9{bottom:109.440000px;}
.yc9{bottom:111.060000px;}
.yc3{bottom:111.165000px;}
.yeb{bottom:111.885000px;}
.yf2{bottom:112.605000px;}
.yf0{bottom:113.580000px;}
.y155{bottom:113.616000px;}
.yf6{bottom:113.685000px;}
.yb7{bottom:115.560000px;}
.y175{bottom:119.370000px;}
.y114{bottom:120.600000px;}
.y159{bottom:121.680000px;}
.y188{bottom:122.976000px;}
.y33{bottom:123.120000px;}
.y9c{bottom:123.336000px;}
.y160{bottom:124.050000px;}
.y26{bottom:124.560000px;}
.yfe{bottom:126.405000px;}
.ye8{bottom:127.800000px;}
.y13d{bottom:129.816000px;}
.yee{bottom:130.320000px;}
.y154{bottom:130.896000px;}
.yef{bottom:131.940000px;}
.yf5{bottom:132.045000px;}
.yc1{bottom:133.056000px;}
.yf4{bottom:137.700000px;}
.y113{bottom:137.880000px;}
.y176{bottom:138.960000px;}
.y32{bottom:140.220000px;}
.y91{bottom:140.616000px;}
.y161{bottom:140.655000px;}
.y25{bottom:141.840000px;}
.yfd{bottom:143.685000px;}
.y170{bottom:145.440000px;}
.y54{bottom:145.476000px;}
.y172{bottom:145.515000px;}
.y15d{bottom:145.545000px;}
.y157{bottom:145.590000px;}
.y15b{bottom:145.620000px;}
.y13c{bottom:147.096000px;}
.y153{bottom:147.636000px;}
.yc0{bottom:150.150000px;}
.y112{bottom:154.980000px;}
.y162{bottom:157.215000px;}
.y31{bottom:157.500000px;}
.y9b{bottom:157.530000px;}
.y90{bottom:157.890000px;}
.y177{bottom:158.550000px;}
.y24{bottom:159.120000px;}
.y53{bottom:162.750000px;}
.y13b{bottom:164.370000px;}
.y152{bottom:165.270000px;}
.ybf{bottom:168.510000px;}
.y111{bottom:172.260000px;}
.y163{bottom:173.775000px;}
.y30{bottom:174.420000px;}
.y8f{bottom:175.170000px;}
.y23{bottom:176.220000px;}
.y178{bottom:178.125000px;}
.y13a{bottom:178.590000px;}
.y52{bottom:180.030000px;}
.y151{bottom:182.550000px;}
.y164{bottom:190.335000px;}
.y8e{bottom:192.450000px;}
.y22{bottom:193.500000px;}
.y139{bottom:196.590000px;}
.y51{bottom:197.310000px;}
.y179{bottom:197.715000px;}
.y150{bottom:199.830000px;}
.ybe{bottom:205.410000px;}
.y165{bottom:206.925000px;}
.y8d{bottom:209.550000px;}
.y21{bottom:210.825000px;}
.y50{bottom:214.590000px;}
.y14f{bottom:217.110000px;}
.y17a{bottom:217.290000px;}
.yb6{bottom:219.270000px;}
.y166{bottom:223.485000px;}
.y9a{bottom:226.470000px;}
.y8c{bottom:226.830000px;}
.y20{bottom:228.105000px;}
.y4f{bottom:231.690000px;}
.y14e{bottom:234.390000px;}
.y17b{bottom:236.880000px;}
.y167{bottom:240.045000px;}
.y8b{bottom:244.110000px;}
.y1f{bottom:245.385000px;}
.y4e{bottom:248.970000px;}
.y136{bottom:249.870000px;}
.y14d{bottom:251.490000px;}
.y17c{bottom:256.500000px;}
.y168{bottom:256.605000px;}
.y8a{bottom:261.390000px;}
.y1e{bottom:262.485000px;}
.y4d{bottom:266.250000px;}
.y14c{bottom:268.410000px;}
.y135{bottom:271.290000px;}
.ybb{bottom:275.970000px;}
.y89{bottom:278.670000px;}
.y1d{bottom:279.765000px;}
.y4c{bottom:283.530000px;}
.y14b{bottom:286.050000px;}
.y134{bottom:288.390000px;}
.yb9{bottom:295.050000px;}
.y88{bottom:295.950000px;}
.y1c{bottom:297.045000px;}
.y4b{bottom:300.810000px;}
.y14a{bottom:303.330000px;}
.y133{bottom:305.670000px;}
.y99{bottom:312.690000px;}
.y87{bottom:313.050000px;}
.y1b{bottom:314.325000px;}
.y4a{bottom:318.090000px;}
.y12f{bottom:320.250000px;}
.y149{bottom:320.610000px;}
.y187{bottom:329.970000px;}
.y86{bottom:330.330000px;}
.y49{bottom:335.190000px;}
.y148{bottom:337.890000px;}
.y132{bottom:338.250000px;}
.y85{bottom:347.250000px;}
.y186{bottom:347.610000px;}
.y48{bottom:352.470000px;}
.y147{bottom:354.990000px;}
.y131{bottom:356.250000px;}
.ye6{bottom:360.795000px;}
.y98{bottom:364.575000px;}
.y84{bottom:364.935000px;}
.y47{bottom:369.795000px;}
.y146{bottom:372.315000px;}
.y12a{bottom:374.295000px;}
.ye5{bottom:375.015000px;}
.y83{bottom:382.215000px;}
.yb5{bottom:386.715000px;}
.y46{bottom:387.075000px;}
.y145{bottom:389.595000px;}
.y12e{bottom:392.295000px;}
.ye4{bottom:393.195000px;}
.y82{bottom:399.495000px;}
.yb4{bottom:403.815000px;}
.y45{bottom:404.355000px;}
.y144{bottom:406.515000px;}
.y12d{bottom:410.295000px;}
.ye3{bottom:411.555000px;}
.y81{bottom:416.595000px;}
.yb3{bottom:417.675000px;}
.yc5{bottom:418.860000px;}
.y44{bottom:421.635000px;}
.y143{bottom:424.155000px;}
.y12c{bottom:428.295000px;}
.ye2{bottom:431.535000px;}
.y80{bottom:433.515000px;}
.y97{bottom:433.875000px;}
.y43{bottom:438.735000px;}
.y142{bottom:441.435000px;}
.y129{bottom:446.295000px;}
.ye1{bottom:449.715000px;}
.y7f{bottom:451.155000px;}
.y141{bottom:454.935000px;}
.y173{bottom:455.040000px;}
.y42{bottom:456.015000px;}
.y17d{bottom:463.860000px;}
.y16f{bottom:464.400000px;}
.y7e{bottom:468.435000px;}
.y171{bottom:469.620000px;}
.y41{bottom:473.295000px;}
.y7d{bottom:485.355000px;}
.y96{bottom:485.715000px;}
.ye0{bottom:490.215000px;}
.y40{bottom:490.575000px;}
.yc2{bottom:492.480000px;}
.yc8{bottom:496.620000px;}
.y18c{bottom:500.655000px;}
.y128{bottom:502.275000px;}
.y7c{bottom:502.815000px;}
.ydf{bottom:507.675000px;}
.y3f{bottom:507.855000px;}
.y18b{bottom:514.875000px;}
.y127{bottom:519.555000px;}
.y7b{bottom:520.095000px;}
.y3e{bottom:524.955000px;}
.yde{bottom:526.035000px;}
.y18a{bottom:532.155000px;}
.y7a{bottom:537.015000px;}
.y95{bottom:537.375000px;}
.y3d{bottom:542.235000px;}
.y16e{bottom:547.200000px;}
.y79{bottom:554.295000px;}
.y94{bottom:554.655000px;}
.y3c{bottom:559.515000px;}
.ydd{bottom:562.575000px;}
.y126{bottom:571.575000px;}
.y78{bottom:571.935000px;}
.yd8{bottom:576.435000px;}
.y3b{bottom:576.795000px;}
.ydc{bottom:577.155000px;}
.y124{bottom:585.795000px;}
.y77{bottom:589.215000px;}
.y3a{bottom:594.075000px;}
.ydb{bottom:596.235000px;}
.y125{bottom:603.795000px;}
.y76{bottom:606.315000px;}
.y39{bottom:611.355000px;}
.y189{bottom:619.125000px;}
.y110{bottom:621.825000px;}
.y75{bottom:623.625000px;}
.y38{bottom:628.485000px;}
.y121{bottom:639.825000px;}
.y185{bottom:640.545000px;}
.y74{bottom:640.905000px;}
.y37{bottom:645.405000px;}
.yd7{bottom:653.685000px;}
.y73{bottom:658.185000px;}
.y36{bottom:662.685000px;}
.yd6{bottom:670.965000px;}
.y72{bottom:675.465000px;}
.y1a{bottom:677.265000px;}
.yb2{bottom:677.985000px;}
.yd5{bottom:687.885000px;}
.yb1{bottom:692.205000px;}
.y71{bottom:692.745000px;}
.y120{bottom:694.905000px;}
.y180{bottom:703.980000px;}
.yd4{bottom:705.165000px;}
.y70{bottom:709.845000px;}
.yb0{bottom:710.565000px;}
.y11f{bottom:712.905000px;}
.yd3{bottom:722.265000px;}
.y6f{bottom:727.125000px;}
.yae{bottom:728.745000px;}
.y11e{bottom:730.905000px;}
.yea{bottom:736.200000px;}
.yd2{bottom:736.305000px;}
.y184{bottom:744.045000px;}
.y6e{bottom:744.405000px;}
.yac{bottom:748.725000px;}
.y11d{bottom:748.905000px;}
.y6d{bottom:761.685000px;}
.yaa{bottom:766.905000px;}
.y6c{bottom:778.965000px;}
.y140{bottom:782.205000px;}
.y11c{bottom:784.905000px;}
.y6b{bottom:796.065000px;}
.y13f{bottom:799.845000px;}
.y11b{bottom:802.905000px;}
.ya9{bottom:807.405000px;}
.y6a{bottom:813.345000px;}
.y13e{bottom:817.125000px;}
.y11a{bottom:820.905000px;}
.ya8{bottom:824.685000px;}
.ye7{bottom:828.900000px;}
.y69{bottom:830.625000px;}
.y158{bottom:830.700000px;}
.yed{bottom:833.400000px;}
.y156{bottom:833.760000px;}
.yfc{bottom:838.905000px;}
.y169{bottom:839.700000px;}
.ya7{bottom:841.785000px;}
.y183{bottom:847.545000px;}
.y68{bottom:847.905000px;}
.y15a{bottom:852.300000px;}
.ya6{bottom:860.145000px;}
.y93{bottom:864.825000px;}
.y67{bottom:865.185000px;}
.y2c{bottom:866.265000px;}
.y10b{bottom:874.185000px;}
.ya5{bottom:878.550000px;}
.y66{bottom:882.510000px;}
.ya4{bottom:897.090000px;}
.y65{bottom:899.610000px;}
.y107{bottom:909.510000px;}
.y9f{bottom:910.950000px;}
.ya3{bottom:911.670000px;}
.y64{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.ya2{bottom:929.670000px;}
.y15c{bottom:931.500000px;}
.y63{bottom:934.170000px;}
.y106{bottom:944.610000px;}
.y182{bottom:951.090000px;}
.y62{bottom:951.450000px;}
.y61{bottom:968.730000px;}
.y105{bottom:979.890000px;}
.y60{bottom:986.010000px;}
.y104{bottom:997.890000px;}
.y5f{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.yfa{bottom:1015.890000px;}
.y9e{bottom:1020.030000px;}
.y5e{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.yd1{bottom:1028.670000px;}
.y5d{bottom:1037.670000px;}
.yd0{bottom:1042.890000px;}
.yf{bottom:1044.510000px;}
.y5c{bottom:1054.590000px;}
.y92{bottom:1054.950000px;}
.ycf{bottom:1061.070000px;}
.ye{bottom:1062.150000px;}
.yf9{bottom:1071.870000px;}
.y5b{bottom:1072.230000px;}
.yce{bottom:1079.430000px;}
.yd{bottom:1080.330000px;}
.y9d{bottom:1089.150000px;}
.y5a{bottom:1089.510000px;}
.y16c{bottom:1096.200000px;}
.ycd{bottom:1099.410000px;}
.yc{bottom:1104.450000px;}
.yf8{bottom:1106.250000px;}
.y59{bottom:1106.610000px;}
.ycb{bottom:1117.590000px;}
.yf7{bottom:1123.530000px;}
.y58{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y57{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y56{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y55{bottom:1196.100000px;}
.h14{height:2.902500px;}
.hc{height:17.280000px;}
.h31{height:17.316000px;}
.h16{height:17.460000px;}
.h1f{height:17.640000px;}
.h19{height:18.360000px;}
.h17{height:19.260000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h2a{height:34.380000px;}
.h2b{height:34.416000px;}
.h26{height:34.560000px;}
.h28{height:35.280000px;}
.h30{height:35.316000px;}
.h15{height:36.360000px;}
.h1e{height:36.396000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h1b{height:40.851562px;}
.h10{height:41.493516px;}
.h2{height:44.280000px;}
.h3b{height:45.180000px;}
.h39{height:46.440000px;}
.h3d{height:50.940000px;}
.h32{height:51.840000px;}
.h11{height:51.876000px;}
.h34{height:52.560000px;}
.h33{height:53.316000px;}
.h2e{height:54.360000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h3e{height:61.423863px;}
.h3{height:66.757500px;}
.h29{height:69.660000px;}
.h2c{height:69.696000px;}
.h13{height:71.280000px;}
.h2f{height:72.360000px;}
.h3a{height:72.984375px;}
.h20{height:73.476000px;}
.h3c{height:81.360000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h3f{height:86.256000px;}
.h1c{height:119.700000px;}
.h1d{height:127.620000px;}
.h1a{height:127.800000px;}
.h22{height:128.520000px;}
.h24{height:129.240000px;}
.h18{height:129.420000px;}
.h36{height:138.240000px;}
.h21{height:144.360000px;}
.h23{height:148.500000px;}
.h25{height:148.680000px;}
.h37{height:162.000000px;}
.h35{height:162.180000px;}
.h27{height:176.250000px;}
.h12{height:188.280000px;}
.h2d{height:216.360000px;}
.h38{height:324.000000px;}
.hf{height:327.810000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w30{width:32.580000px;}
.w2f{width:33.120000px;}
.w33{width:33.480000px;}
.w2d{width:39.960000px;}
.w34{width:43.200000px;}
.w2e{width:44.280000px;}
.w18{width:45.360000px;}
.w1d{width:52.380000px;}
.w2b{width:52.560000px;}
.w1c{width:52.596000px;}
.w1a{width:63.036000px;}
.w35{width:64.080000px;}
.w19{width:70.020000px;}
.w1e{width:73.620000px;}
.w15{width:81.540000px;}
.w1f{width:84.456000px;}
.w36{width:84.600000px;}
.w12{width:84.960000px;}
.w16{width:91.476000px;}
.w17{width:95.076000px;}
.w13{width:97.560000px;}
.w14{width:97.740000px;}
.w1b{width:98.460000px;}
.wc{width:102.096000px;}
.wd{width:105.480000px;}
.w25{width:114.660000px;}
.w29{width:114.696000px;}
.w2a{width:114.840000px;}
.w28{width:114.876000px;}
.w37{width:124.020000px;}
.w22{width:130.716000px;}
.w24{width:132.156000px;}
.w31{width:132.480000px;}
.w23{width:132.516000px;}
.w20{width:136.260000px;}
.w21{width:157.890000px;}
.w10{width:166.890000px;}
.w11{width:167.070000px;}
.wa{width:167.790000px;}
.w6{width:176.250000px;}
.w38{width:205.560000px;}
.w32{width:205.740000px;}
.wb{width:211.890000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.we{width:226.155000px;}
.w26{width:230.295000px;}
.w27{width:230.430000px;}
.w4{width:269.850000px;}
.w3a{width:337.755000px;}
.w3b{width:340.275000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w2c{width:540.000000px;}
.wf{width:671.910000px;}
.w9{width:675.150000px;}
.w39{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x70{left:9.180000px;}
.x5e{left:11.340000px;}
.x13{left:13.680000px;}
.x57{left:15.480000px;}
.x50{left:16.956000px;}
.x53{left:18.000000px;}
.x25{left:19.260000px;}
.x5b{left:22.860000px;}
.x3c{left:24.765000px;}
.x48{left:26.385000px;}
.x29{left:27.720000px;}
.x3a{left:28.770000px;}
.x3e{left:30.210000px;}
.x55{left:32.220000px;}
.x2b{left:33.834000px;}
.x5{left:34.920000px;}
.x5d{left:36.180000px;}
.x1b{left:40.500000px;}
.x28{left:43.560000px;}
.x5c{left:45.756000px;}
.x63{left:49.140000px;}
.x41{left:53.274000px;}
.x65{left:54.720000px;}
.x1c{left:55.794000px;}
.x67{left:57.810000px;}
.x17{left:59.220000px;}
.x34{left:61.194000px;}
.x66{left:63.585000px;}
.x15{left:64.614000px;}
.x19{left:66.780000px;}
.x68{left:69.705000px;}
.x1d{left:72.540000px;}
.x44{left:75.960000px;}
.x4f{left:79.920000px;}
.x2c{left:84.285000px;}
.x23{left:85.854000px;}
.x1{left:90.396000px;}
.x2a{left:97.965000px;}
.x2d{left:99.225000px;}
.x5f{left:100.296000px;}
.x7{left:108.036000px;}
.x14{left:109.656000px;}
.x35{left:111.276000px;}
.x2e{left:113.085000px;}
.x30{left:114.336000px;}
.x4d{left:116.136000px;}
.x21{left:119.556000px;}
.x9{left:121.356000px;}
.x22{left:122.616000px;}
.x12{left:125.136000px;}
.x32{left:127.476000px;}
.x45{left:140.616000px;}
.x7e{left:148.536000px;}
.x38{left:150.150000px;}
.x10{left:162.030000px;}
.x51{left:172.110000px;}
.x73{left:176.400000px;}
.x7a{left:184.860000px;}
.x69{left:215.670000px;}
.x6f{left:222.300000px;}
.xa{left:233.490000px;}
.x60{left:237.270000px;}
.x77{left:248.040000px;}
.x74{left:258.660000px;}
.x52{left:267.915000px;}
.x7f{left:274.539000px;}
.x16{left:278.175000px;}
.xd{left:283.755000px;}
.x7b{left:285.840000px;}
.x3{left:306.975000px;}
.xe{left:314.895000px;}
.x6b{left:331.275000px;}
.x24{left:335.235000px;}
.x36{left:352.155000px;}
.x1f{left:353.955000px;}
.x37{left:355.575000px;}
.x20{left:357.555000px;}
.xb{left:358.995000px;}
.x33{left:363.855000px;}
.x76{left:367.920000px;}
.x31{left:369.615000px;}
.x49{left:372.960000px;}
.x3d{left:374.040000px;}
.x4c{left:379.800000px;}
.x54{left:384.915000px;}
.x4b{left:394.200000px;}
.x61{left:395.895000px;}
.x3b{left:396.900000px;}
.x11{left:402.555000px;}
.x4e{left:407.235000px;}
.x47{left:412.560000px;}
.x40{left:419.115000px;}
.x7c{left:425.700000px;}
.x1e{left:428.865000px;}
.x78{left:436.320000px;}
.x26{left:438.045000px;}
.x39{left:439.740000px;}
.x46{left:441.540000px;}
.x42{left:445.245000px;}
.x18{left:446.685000px;}
.x4a{left:447.840000px;}
.x75{left:488.520000px;}
.x71{left:508.680000px;}
.x62{left:527.325000px;}
.x27{left:544.245000px;}
.x56{left:547.845000px;}
.x6c{left:562.245000px;}
.x7d{left:572.580000px;}
.x6{left:576.825000px;}
.x58{left:601.170000px;}
.x43{left:612.870000px;}
.x1a{left:615.210000px;}
.x79{left:618.480000px;}
.x72{left:621.900000px;}
.x59{left:654.270000px;}
.x64{left:660.570000px;}
.x6a{left:677.850000px;}
.x2f{left:680.550000px;}
.x3f{left:700.710000px;}
.x6d{left:718.710000px;}
.x6e{left:727.350000px;}
.x5a{left:728.610000px;}
.x8{left:770.040000px;}
@media print{
.v2{vertical-align:-65.920000pt;}
.v3{vertical-align:-61.600000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.198400pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.061867pt;}
.ls18{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.003840pt;}
.ls15{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.272533pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.414933pt;}
.lsc{letter-spacing:0.608640pt;}
.ls9{letter-spacing:0.800000pt;}
.ls5{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls4{letter-spacing:2.794667pt;}
.ls1a{letter-spacing:9.120000pt;}
.ls13{letter-spacing:89.760000pt;}
.lsd{letter-spacing:1127.445333pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.005120pt;}
.wse{word-spacing:-8.643840pt;}
.wsa{word-spacing:-8.640000pt;}
.ws12{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._6{width:5.333973pt;}
._7{width:6.334080pt;}
._b{width:8.082773pt;}
._c{width:9.340587pt;}
._8{width:10.464640pt;}
._e{width:11.906987pt;}
._d{width:14.342400pt;}
._f{width:21.513600pt;}
._14{width:23.213440pt;}
._a{width:24.860160pt;}
._9{width:25.763200pt;}
._11{width:27.038080pt;}
._10{width:28.153600pt;}
._12{width:30.183680pt;}
._17{width:31.373440pt;}
._13{width:76.439680pt;}
._15{width:99.289813pt;}
._16{width:100.211840pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y12{bottom:3.040000pt;}
.y109{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y10d{bottom:3.400000pt;}
.yad{bottom:3.520000pt;}
.y6{bottom:3.680000pt;}
.ybc{bottom:3.840000pt;}
.yba{bottom:4.320000pt;}
.yaf{bottom:5.120000pt;}
.y5{bottom:7.200000pt;}
.y138{bottom:10.720000pt;}
.y10a{bottom:10.880000pt;}
.yfb{bottom:11.040000pt;}
.y10e{bottom:11.080000pt;}
.y3{bottom:11.360000pt;}
.y16b{bottom:16.413333pt;}
.y137{bottom:18.400000pt;}
.y17{bottom:18.560000pt;}
.y10c{bottom:18.600000pt;}
.y2b{bottom:18.720000pt;}
.y2e{bottom:18.760000pt;}
.y130{bottom:19.360000pt;}
.y122{bottom:19.840000pt;}
.y17f{bottom:20.293333pt;}
.yab{bottom:20.320000pt;}
.ycc{bottom:20.346667pt;}
.y2{bottom:25.760000pt;}
.y108{bottom:26.560000pt;}
.y10f{bottom:26.720000pt;}
.y12b{bottom:27.360000pt;}
.y181{bottom:27.493333pt;}
.y16d{bottom:27.546667pt;}
.y123{bottom:27.840000pt;}
.y119{bottom:30.560000pt;}
.y2f{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y2a{bottom:34.080000pt;}
.y2d{bottom:34.120000pt;}
.ya1{bottom:35.680000pt;}
.y103{bottom:35.720000pt;}
.yda{bottom:37.626667pt;}
.yf1{bottom:45.280000pt;}
.y118{bottom:45.760000pt;}
.y15{bottom:49.280000pt;}
.y29{bottom:49.440000pt;}
.ybd{bottom:49.760000pt;}
.yb{bottom:50.400000pt;}
.ya0{bottom:51.040000pt;}
.y102{bottom:51.080000pt;}
.y16a{bottom:51.586667pt;}
.yd9{bottom:52.986667pt;}
.y17e{bottom:59.613333pt;}
.y117{bottom:61.120000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y101{bottom:66.440000pt;}
.yc7{bottom:75.360000pt;}
.y116{bottom:76.480000pt;}
.y35{bottom:78.720000pt;}
.y28{bottom:80.000000pt;}
.y15e{bottom:80.826667pt;}
.y100{bottom:81.640000pt;}
.yca{bottom:82.400000pt;}
.yc4{bottom:82.493333pt;}
.yec{bottom:83.133333pt;}
.yf3{bottom:83.776000pt;}
.yb8{bottom:87.360000pt;}
.y174{bottom:88.706667pt;}
.yc6{bottom:91.680000pt;}
.y115{bottom:91.840000pt;}
.y34{bottom:93.760000pt;}
.y27{bottom:95.360000pt;}
.y15f{bottom:95.546667pt;}
.yff{bottom:97.000000pt;}
.ye9{bottom:97.280000pt;}
.yc9{bottom:98.720000pt;}
.yc3{bottom:98.813333pt;}
.yeb{bottom:99.453333pt;}
.yf2{bottom:100.093333pt;}
.yf0{bottom:100.960000pt;}
.y155{bottom:100.992000pt;}
.yf6{bottom:101.053333pt;}
.yb7{bottom:102.720000pt;}
.y175{bottom:106.106667pt;}
.y114{bottom:107.200000pt;}
.y159{bottom:108.160000pt;}
.y188{bottom:109.312000pt;}
.y33{bottom:109.440000pt;}
.y9c{bottom:109.632000pt;}
.y160{bottom:110.266667pt;}
.y26{bottom:110.720000pt;}
.yfe{bottom:112.360000pt;}
.ye8{bottom:113.600000pt;}
.y13d{bottom:115.392000pt;}
.yee{bottom:115.840000pt;}
.y154{bottom:116.352000pt;}
.yef{bottom:117.280000pt;}
.yf5{bottom:117.373333pt;}
.yc1{bottom:118.272000pt;}
.yf4{bottom:122.400000pt;}
.y113{bottom:122.560000pt;}
.y176{bottom:123.520000pt;}
.y32{bottom:124.640000pt;}
.y91{bottom:124.992000pt;}
.y161{bottom:125.026667pt;}
.y25{bottom:126.080000pt;}
.yfd{bottom:127.720000pt;}
.y170{bottom:129.280000pt;}
.y54{bottom:129.312000pt;}
.y172{bottom:129.346667pt;}
.y15d{bottom:129.373333pt;}
.y157{bottom:129.413333pt;}
.y15b{bottom:129.440000pt;}
.y13c{bottom:130.752000pt;}
.y153{bottom:131.232000pt;}
.yc0{bottom:133.466667pt;}
.y112{bottom:137.760000pt;}
.y162{bottom:139.746667pt;}
.y31{bottom:140.000000pt;}
.y9b{bottom:140.026667pt;}
.y90{bottom:140.346667pt;}
.y177{bottom:140.933333pt;}
.y24{bottom:141.440000pt;}
.y53{bottom:144.666667pt;}
.y13b{bottom:146.106667pt;}
.y152{bottom:146.906667pt;}
.ybf{bottom:149.786667pt;}
.y111{bottom:153.120000pt;}
.y163{bottom:154.466667pt;}
.y30{bottom:155.040000pt;}
.y8f{bottom:155.706667pt;}
.y23{bottom:156.640000pt;}
.y178{bottom:158.333333pt;}
.y13a{bottom:158.746667pt;}
.y52{bottom:160.026667pt;}
.y151{bottom:162.266667pt;}
.y164{bottom:169.186667pt;}
.y8e{bottom:171.066667pt;}
.y22{bottom:172.000000pt;}
.y139{bottom:174.746667pt;}
.y51{bottom:175.386667pt;}
.y179{bottom:175.746667pt;}
.y150{bottom:177.626667pt;}
.ybe{bottom:182.586667pt;}
.y165{bottom:183.933333pt;}
.y8d{bottom:186.266667pt;}
.y21{bottom:187.400000pt;}
.y50{bottom:190.746667pt;}
.y14f{bottom:192.986667pt;}
.y17a{bottom:193.146667pt;}
.yb6{bottom:194.906667pt;}
.y166{bottom:198.653333pt;}
.y9a{bottom:201.306667pt;}
.y8c{bottom:201.626667pt;}
.y20{bottom:202.760000pt;}
.y4f{bottom:205.946667pt;}
.y14e{bottom:208.346667pt;}
.y17b{bottom:210.560000pt;}
.y167{bottom:213.373333pt;}
.y8b{bottom:216.986667pt;}
.y1f{bottom:218.120000pt;}
.y4e{bottom:221.306667pt;}
.y136{bottom:222.106667pt;}
.y14d{bottom:223.546667pt;}
.y17c{bottom:228.000000pt;}
.y168{bottom:228.093333pt;}
.y8a{bottom:232.346667pt;}
.y1e{bottom:233.320000pt;}
.y4d{bottom:236.666667pt;}
.y14c{bottom:238.586667pt;}
.y135{bottom:241.146667pt;}
.ybb{bottom:245.306667pt;}
.y89{bottom:247.706667pt;}
.y1d{bottom:248.680000pt;}
.y4c{bottom:252.026667pt;}
.y14b{bottom:254.266667pt;}
.y134{bottom:256.346667pt;}
.yb9{bottom:262.266667pt;}
.y88{bottom:263.066667pt;}
.y1c{bottom:264.040000pt;}
.y4b{bottom:267.386667pt;}
.y14a{bottom:269.626667pt;}
.y133{bottom:271.706667pt;}
.y99{bottom:277.946667pt;}
.y87{bottom:278.266667pt;}
.y1b{bottom:279.400000pt;}
.y4a{bottom:282.746667pt;}
.y12f{bottom:284.666667pt;}
.y149{bottom:284.986667pt;}
.y187{bottom:293.306667pt;}
.y86{bottom:293.626667pt;}
.y49{bottom:297.946667pt;}
.y148{bottom:300.346667pt;}
.y132{bottom:300.666667pt;}
.y85{bottom:308.666667pt;}
.y186{bottom:308.986667pt;}
.y48{bottom:313.306667pt;}
.y147{bottom:315.546667pt;}
.y131{bottom:316.666667pt;}
.ye6{bottom:320.706667pt;}
.y98{bottom:324.066667pt;}
.y84{bottom:324.386667pt;}
.y47{bottom:328.706667pt;}
.y146{bottom:330.946667pt;}
.y12a{bottom:332.706667pt;}
.ye5{bottom:333.346667pt;}
.y83{bottom:339.746667pt;}
.yb5{bottom:343.746667pt;}
.y46{bottom:344.066667pt;}
.y145{bottom:346.306667pt;}
.y12e{bottom:348.706667pt;}
.ye4{bottom:349.506667pt;}
.y82{bottom:355.106667pt;}
.yb4{bottom:358.946667pt;}
.y45{bottom:359.426667pt;}
.y144{bottom:361.346667pt;}
.y12d{bottom:364.706667pt;}
.ye3{bottom:365.826667pt;}
.y81{bottom:370.306667pt;}
.yb3{bottom:371.266667pt;}
.yc5{bottom:372.320000pt;}
.y44{bottom:374.786667pt;}
.y143{bottom:377.026667pt;}
.y12c{bottom:380.706667pt;}
.ye2{bottom:383.586667pt;}
.y80{bottom:385.346667pt;}
.y97{bottom:385.666667pt;}
.y43{bottom:389.986667pt;}
.y142{bottom:392.386667pt;}
.y129{bottom:396.706667pt;}
.ye1{bottom:399.746667pt;}
.y7f{bottom:401.026667pt;}
.y141{bottom:404.386667pt;}
.y173{bottom:404.480000pt;}
.y42{bottom:405.346667pt;}
.y17d{bottom:412.320000pt;}
.y16f{bottom:412.800000pt;}
.y7e{bottom:416.386667pt;}
.y171{bottom:417.440000pt;}
.y41{bottom:420.706667pt;}
.y7d{bottom:431.426667pt;}
.y96{bottom:431.746667pt;}
.ye0{bottom:435.746667pt;}
.y40{bottom:436.066667pt;}
.yc2{bottom:437.760000pt;}
.yc8{bottom:441.440000pt;}
.y18c{bottom:445.026667pt;}
.y128{bottom:446.466667pt;}
.y7c{bottom:446.946667pt;}
.ydf{bottom:451.266667pt;}
.y3f{bottom:451.426667pt;}
.y18b{bottom:457.666667pt;}
.y127{bottom:461.826667pt;}
.y7b{bottom:462.306667pt;}
.y3e{bottom:466.626667pt;}
.yde{bottom:467.586667pt;}
.y18a{bottom:473.026667pt;}
.y7a{bottom:477.346667pt;}
.y95{bottom:477.666667pt;}
.y3d{bottom:481.986667pt;}
.y16e{bottom:486.400000pt;}
.y79{bottom:492.706667pt;}
.y94{bottom:493.026667pt;}
.y3c{bottom:497.346667pt;}
.ydd{bottom:500.066667pt;}
.y126{bottom:508.066667pt;}
.y78{bottom:508.386667pt;}
.yd8{bottom:512.386667pt;}
.y3b{bottom:512.706667pt;}
.ydc{bottom:513.026667pt;}
.y124{bottom:520.706667pt;}
.y77{bottom:523.746667pt;}
.y3a{bottom:528.066667pt;}
.ydb{bottom:529.986667pt;}
.y125{bottom:536.706667pt;}
.y76{bottom:538.946667pt;}
.y39{bottom:543.426667pt;}
.y189{bottom:550.333333pt;}
.y110{bottom:552.733333pt;}
.y75{bottom:554.333333pt;}
.y38{bottom:558.653333pt;}
.y121{bottom:568.733333pt;}
.y185{bottom:569.373333pt;}
.y74{bottom:569.693333pt;}
.y37{bottom:573.693333pt;}
.yd7{bottom:581.053333pt;}
.y73{bottom:585.053333pt;}
.y36{bottom:589.053333pt;}
.yd6{bottom:596.413333pt;}
.y72{bottom:600.413333pt;}
.y1a{bottom:602.013333pt;}
.yb2{bottom:602.653333pt;}
.yd5{bottom:611.453333pt;}
.yb1{bottom:615.293333pt;}
.y71{bottom:615.773333pt;}
.y120{bottom:617.693333pt;}
.y180{bottom:625.760000pt;}
.yd4{bottom:626.813333pt;}
.y70{bottom:630.973333pt;}
.yb0{bottom:631.613333pt;}
.y11f{bottom:633.693333pt;}
.yd3{bottom:642.013333pt;}
.y6f{bottom:646.333333pt;}
.yae{bottom:647.773333pt;}
.y11e{bottom:649.693333pt;}
.yea{bottom:654.400000pt;}
.yd2{bottom:654.493333pt;}
.y184{bottom:661.373333pt;}
.y6e{bottom:661.693333pt;}
.yac{bottom:665.533333pt;}
.y11d{bottom:665.693333pt;}
.y6d{bottom:677.053333pt;}
.yaa{bottom:681.693333pt;}
.y6c{bottom:692.413333pt;}
.y140{bottom:695.293333pt;}
.y11c{bottom:697.693333pt;}
.y6b{bottom:707.613333pt;}
.y13f{bottom:710.973333pt;}
.y11b{bottom:713.693333pt;}
.ya9{bottom:717.693333pt;}
.y6a{bottom:722.973333pt;}
.y13e{bottom:726.333333pt;}
.y11a{bottom:729.693333pt;}
.ya8{bottom:733.053333pt;}
.ye7{bottom:736.800000pt;}
.y69{bottom:738.333333pt;}
.y158{bottom:738.400000pt;}
.yed{bottom:740.800000pt;}
.y156{bottom:741.120000pt;}
.yfc{bottom:745.693333pt;}
.y169{bottom:746.400000pt;}
.ya7{bottom:748.253333pt;}
.y183{bottom:753.373333pt;}
.y68{bottom:753.693333pt;}
.y15a{bottom:757.600000pt;}
.ya6{bottom:764.573333pt;}
.y93{bottom:768.733333pt;}
.y67{bottom:769.053333pt;}
.y2c{bottom:770.013333pt;}
.y10b{bottom:777.053333pt;}
.ya5{bottom:780.933333pt;}
.y66{bottom:784.453333pt;}
.ya4{bottom:797.413333pt;}
.y65{bottom:799.653333pt;}
.y107{bottom:808.453333pt;}
.y9f{bottom:809.733333pt;}
.ya3{bottom:810.373333pt;}
.y64{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.ya2{bottom:826.373333pt;}
.y15c{bottom:828.000000pt;}
.y63{bottom:830.373333pt;}
.y106{bottom:839.653333pt;}
.y182{bottom:845.413333pt;}
.y62{bottom:845.733333pt;}
.y61{bottom:861.093333pt;}
.y105{bottom:871.013333pt;}
.y60{bottom:876.453333pt;}
.y104{bottom:887.013333pt;}
.y5f{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.yfa{bottom:903.013333pt;}
.y9e{bottom:906.693333pt;}
.y5e{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.yd1{bottom:914.373333pt;}
.y5d{bottom:922.373333pt;}
.yd0{bottom:927.013333pt;}
.yf{bottom:928.453333pt;}
.y5c{bottom:937.413333pt;}
.y92{bottom:937.733333pt;}
.ycf{bottom:943.173333pt;}
.ye{bottom:944.133333pt;}
.yf9{bottom:952.773333pt;}
.y5b{bottom:953.093333pt;}
.yce{bottom:959.493333pt;}
.yd{bottom:960.293333pt;}
.y9d{bottom:968.133333pt;}
.y5a{bottom:968.453333pt;}
.y16c{bottom:974.400000pt;}
.ycd{bottom:977.253333pt;}
.yc{bottom:981.733333pt;}
.yf8{bottom:983.333333pt;}
.y59{bottom:983.653333pt;}
.ycb{bottom:993.413333pt;}
.yf7{bottom:998.693333pt;}
.y58{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y57{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y56{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y55{bottom:1063.200000pt;}
.h14{height:2.580000pt;}
.hc{height:15.360000pt;}
.h31{height:15.392000pt;}
.h16{height:15.520000pt;}
.h1f{height:15.680000pt;}
.h19{height:16.320000pt;}
.h17{height:17.120000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h2a{height:30.560000pt;}
.h2b{height:30.592000pt;}
.h26{height:30.720000pt;}
.h28{height:31.360000pt;}
.h30{height:31.392000pt;}
.h15{height:32.320000pt;}
.h1e{height:32.352000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h1b{height:36.312500pt;}
.h10{height:36.883125pt;}
.h2{height:39.360000pt;}
.h3b{height:40.160000pt;}
.h39{height:41.280000pt;}
.h3d{height:45.280000pt;}
.h32{height:46.080000pt;}
.h11{height:46.112000pt;}
.h34{height:46.720000pt;}
.h33{height:47.392000pt;}
.h2e{height:48.320000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h3e{height:54.598989pt;}
.h3{height:59.340000pt;}
.h29{height:61.920000pt;}
.h2c{height:61.952000pt;}
.h13{height:63.360000pt;}
.h2f{height:64.320000pt;}
.h3a{height:64.875000pt;}
.h20{height:65.312000pt;}
.h3c{height:72.320000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h3f{height:76.672000pt;}
.h1c{height:106.400000pt;}
.h1d{height:113.440000pt;}
.h1a{height:113.600000pt;}
.h22{height:114.240000pt;}
.h24{height:114.880000pt;}
.h18{height:115.040000pt;}
.h36{height:122.880000pt;}
.h21{height:128.320000pt;}
.h23{height:132.000000pt;}
.h25{height:132.160000pt;}
.h37{height:144.000000pt;}
.h35{height:144.160000pt;}
.h27{height:156.666667pt;}
.h12{height:167.360000pt;}
.h2d{height:192.320000pt;}
.h38{height:288.000000pt;}
.hf{height:291.386667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w30{width:28.960000pt;}
.w2f{width:29.440000pt;}
.w33{width:29.760000pt;}
.w2d{width:35.520000pt;}
.w34{width:38.400000pt;}
.w2e{width:39.360000pt;}
.w18{width:40.320000pt;}
.w1d{width:46.560000pt;}
.w2b{width:46.720000pt;}
.w1c{width:46.752000pt;}
.w1a{width:56.032000pt;}
.w35{width:56.960000pt;}
.w19{width:62.240000pt;}
.w1e{width:65.440000pt;}
.w15{width:72.480000pt;}
.w1f{width:75.072000pt;}
.w36{width:75.200000pt;}
.w12{width:75.520000pt;}
.w16{width:81.312000pt;}
.w17{width:84.512000pt;}
.w13{width:86.720000pt;}
.w14{width:86.880000pt;}
.w1b{width:87.520000pt;}
.wc{width:90.752000pt;}
.wd{width:93.760000pt;}
.w25{width:101.920000pt;}
.w29{width:101.952000pt;}
.w2a{width:102.080000pt;}
.w28{width:102.112000pt;}
.w37{width:110.240000pt;}
.w22{width:116.192000pt;}
.w24{width:117.472000pt;}
.w31{width:117.760000pt;}
.w23{width:117.792000pt;}
.w20{width:121.120000pt;}
.w21{width:140.346667pt;}
.w10{width:148.346667pt;}
.w11{width:148.506667pt;}
.wa{width:149.146667pt;}
.w6{width:156.666667pt;}
.w38{width:182.720000pt;}
.w32{width:182.880000pt;}
.wb{width:188.346667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.we{width:201.026667pt;}
.w26{width:204.706667pt;}
.w27{width:204.826667pt;}
.w4{width:239.866667pt;}
.w3a{width:300.226667pt;}
.w3b{width:302.466667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w2c{width:480.000000pt;}
.wf{width:597.253333pt;}
.w9{width:600.133333pt;}
.w39{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x70{left:8.160000pt;}
.x5e{left:10.080000pt;}
.x13{left:12.160000pt;}
.x57{left:13.760000pt;}
.x50{left:15.072000pt;}
.x53{left:16.000000pt;}
.x25{left:17.120000pt;}
.x5b{left:20.320000pt;}
.x3c{left:22.013333pt;}
.x48{left:23.453333pt;}
.x29{left:24.640000pt;}
.x3a{left:25.573333pt;}
.x3e{left:26.853333pt;}
.x55{left:28.640000pt;}
.x2b{left:30.074667pt;}
.x5{left:31.040000pt;}
.x5d{left:32.160000pt;}
.x1b{left:36.000000pt;}
.x28{left:38.720000pt;}
.x5c{left:40.672000pt;}
.x63{left:43.680000pt;}
.x41{left:47.354667pt;}
.x65{left:48.640000pt;}
.x1c{left:49.594667pt;}
.x67{left:51.386667pt;}
.x17{left:52.640000pt;}
.x34{left:54.394667pt;}
.x66{left:56.520000pt;}
.x15{left:57.434667pt;}
.x19{left:59.360000pt;}
.x68{left:61.960000pt;}
.x1d{left:64.480000pt;}
.x44{left:67.520000pt;}
.x4f{left:71.040000pt;}
.x2c{left:74.920000pt;}
.x23{left:76.314667pt;}
.x1{left:80.352000pt;}
.x2a{left:87.080000pt;}
.x2d{left:88.200000pt;}
.x5f{left:89.152000pt;}
.x7{left:96.032000pt;}
.x14{left:97.472000pt;}
.x35{left:98.912000pt;}
.x2e{left:100.520000pt;}
.x30{left:101.632000pt;}
.x4d{left:103.232000pt;}
.x21{left:106.272000pt;}
.x9{left:107.872000pt;}
.x22{left:108.992000pt;}
.x12{left:111.232000pt;}
.x32{left:113.312000pt;}
.x45{left:124.992000pt;}
.x7e{left:132.032000pt;}
.x38{left:133.466667pt;}
.x10{left:144.026667pt;}
.x51{left:152.986667pt;}
.x73{left:156.800000pt;}
.x7a{left:164.320000pt;}
.x69{left:191.706667pt;}
.x6f{left:197.600000pt;}
.xa{left:207.546667pt;}
.x60{left:210.906667pt;}
.x77{left:220.480000pt;}
.x74{left:229.920000pt;}
.x52{left:238.146667pt;}
.x7f{left:244.034667pt;}
.x16{left:247.266667pt;}
.xd{left:252.226667pt;}
.x7b{left:254.080000pt;}
.x3{left:272.866667pt;}
.xe{left:279.906667pt;}
.x6b{left:294.466667pt;}
.x24{left:297.986667pt;}
.x36{left:313.026667pt;}
.x1f{left:314.626667pt;}
.x37{left:316.066667pt;}
.x20{left:317.826667pt;}
.xb{left:319.106667pt;}
.x33{left:323.426667pt;}
.x76{left:327.040000pt;}
.x31{left:328.546667pt;}
.x49{left:331.520000pt;}
.x3d{left:332.480000pt;}
.x4c{left:337.600000pt;}
.x54{left:342.146667pt;}
.x4b{left:350.400000pt;}
.x61{left:351.906667pt;}
.x3b{left:352.800000pt;}
.x11{left:357.826667pt;}
.x4e{left:361.986667pt;}
.x47{left:366.720000pt;}
.x40{left:372.546667pt;}
.x7c{left:378.400000pt;}
.x1e{left:381.213333pt;}
.x78{left:387.840000pt;}
.x26{left:389.373333pt;}
.x39{left:390.880000pt;}
.x46{left:392.480000pt;}
.x42{left:395.773333pt;}
.x18{left:397.053333pt;}
.x4a{left:398.080000pt;}
.x75{left:434.240000pt;}
.x71{left:452.160000pt;}
.x62{left:468.733333pt;}
.x27{left:483.773333pt;}
.x56{left:486.973333pt;}
.x6c{left:499.773333pt;}
.x7d{left:508.960000pt;}
.x6{left:512.733333pt;}
.x58{left:534.373333pt;}
.x43{left:544.773333pt;}
.x1a{left:546.853333pt;}
.x79{left:549.760000pt;}
.x72{left:552.800000pt;}
.x59{left:581.573333pt;}
.x64{left:587.173333pt;}
.x6a{left:602.533333pt;}
.x2f{left:604.933333pt;}
.x3f{left:622.853333pt;}
.x6d{left:638.853333pt;}
.x6e{left:646.533333pt;}
.x5a{left:647.653333pt;}
.x8{left:684.480000pt;}
}




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