
    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_26ed0bd44bc3acfb081febe9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_387c2fa8e669d3b5cad4e50c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de096b8d5fcf83393deb8ede.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_c5e27b3f4fabbb195b59fa21.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_749852fc9db3b29308a21f4e.woff')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_c2165f89d08bbee17388446b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d9a78a4db0ea13a1d7c38cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2525633ad8e473f078c06c8a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_db39b3a7d550919578f7bdcb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_62489173bd28973cf31da648.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:61.200000px;}
.ls7{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.846000px;}
.ls8{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.036000px;}
.lse{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.620000px;}
.ls12{letter-spacing:25.308000px;}
.lsd{letter-spacing:29.700000px;}
.lsa{letter-spacing:52.668000px;}
.lsb{letter-spacing:556.200000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.ws6{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.248000px;}
.wsc{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.254960px;}
._6{width:2.404080px;}
._8{width:3.645360px;}
._9{width:4.661280px;}
._b{width:6.086640px;}
._a{width:7.230960px;}
._c{width:8.255760px;}
._4{width:9.450000px;}
._5{width:10.584000px;}
._10{width:11.610000px;}
._12{width:14.904000px;}
._13{width:16.038000px;}
._d{width:17.629200px;}
._e{width:18.645120px;}
._1c{width:19.710720px;}
._16{width:20.790000px;}
._17{width:22.355040px;}
._f{width:23.382000px;}
._20{width:24.426960px;}
._14{width:25.434000px;}
._2{width:26.946000px;}
._15{width:28.836000px;}
._3{width:30.132000px;}
._11{width:31.860000px;}
._1b{width:33.480000px;}
._23{width:35.316000px;}
._1a{width:36.342000px;}
._18{width:37.368000px;}
._7{width:38.718000px;}
._1d{width:40.716000px;}
._1e{width:42.606000px;}
._21{width:45.090000px;}
._22{width:46.764000px;}
._2d{width:56.052000px;}
._19{width:65.826000px;}
._2a{width:66.960000px;}
._29{width:68.405040px;}
._28{width:93.258000px;}
._2c{width:152.928000px;}
._2b{width:231.714000px;}
._25{width:357.156000px;}
._24{width:358.668000px;}
._27{width:647.460000px;}
._26{width:704.159040px;}
._1f{width:744.618960px;}
._2e{width:896.706000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(0,176,80);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.yab{bottom:6.630000px;}
.yb2{bottom:9.720000px;}
.yea{bottom:9.750000px;}
.y1cf{bottom:9.900000px;}
.y1d4{bottom:9.945000px;}
.yb8{bottom:10.080000px;}
.ye3{bottom:10.125000px;}
.yb5{bottom:10.260000px;}
.y1d3{bottom:10.305000px;}
.y4{bottom:15.660000px;}
.y1e6{bottom:17.640000px;}
.y1e5{bottom:18.000000px;}
.y1e3{bottom:18.360000px;}
.y1e2{bottom:18.720000px;}
.y2{bottom:18.900000px;}
.y1cd{bottom:19.080000px;}
.y1cc{bottom:19.440000px;}
.yb1{bottom:27.540000px;}
.y1e0{bottom:27.720000px;}
.yb7{bottom:27.900000px;}
.ye2{bottom:27.945000px;}
.yb4{bottom:28.080000px;}
.ybb{bottom:28.125000px;}
.y5{bottom:39.780000px;}
.yb0{bottom:45.390000px;}
.ye5{bottom:45.720000px;}
.ye1{bottom:45.765000px;}
.ydd{bottom:45.900000px;}
.y10f{bottom:45.945000px;}
.y1{bottom:60.660000px;}
.ye8{bottom:63.720000px;}
.y10e{bottom:63.765000px;}
.y41{bottom:65.190000px;}
.y40{bottom:84.990000px;}
.y3f{bottom:104.970000px;}
.y36{bottom:109.260000px;}
.y168{bottom:118.080000px;}
.ya9{bottom:119.880000px;}
.ydc{bottom:121.680000px;}
.y3e{bottom:124.770000px;}
.y105{bottom:125.460000px;}
.y19b{bottom:126.000000px;}
.y35{bottom:127.080000px;}
.y12e{bottom:135.360000px;}
.y167{bottom:135.900000px;}
.ya8{bottom:137.700000px;}
.y7c{bottom:142.740000px;}
.y19a{bottom:144.000000px;}
.y3d{bottom:144.570000px;}
.y34{bottom:144.900000px;}
.y104{bottom:152.640000px;}
.y166{bottom:153.720000px;}
.y7b{bottom:160.560000px;}
.y199{bottom:161.820000px;}
.y12d{bottom:162.180000px;}
.y33{bottom:162.720000px;}
.y3c{bottom:164.370000px;}
.ya7{bottom:164.520000px;}
.y1c5{bottom:169.560000px;}
.y103{bottom:170.460000px;}
.y165{bottom:171.540000px;}
.y7a{bottom:178.380000px;}
.y198{bottom:179.640000px;}
.y12c{bottom:180.000000px;}
.y32{bottom:182.520000px;}
.y3b{bottom:184.170000px;}
.ydb{bottom:185.040000px;}
.y102{bottom:188.280000px;}
.y79{bottom:196.200000px;}
.y1c4{bottom:196.740000px;}
.y197{bottom:197.460000px;}
.y12b{bottom:198.000000px;}
.y164{bottom:198.360000px;}
.ya6{bottom:200.340000px;}
.y3a{bottom:204.150000px;}
.y2a{bottom:205.950000px;}
.y101{bottom:206.310000px;}
.y78{bottom:214.230000px;}
.y1c3{bottom:214.590000px;}
.y196{bottom:215.310000px;}
.y12a{bottom:215.850000px;}
.y163{bottom:216.210000px;}
.yda{bottom:217.830000px;}
.ya5{bottom:218.190000px;}
.y39{bottom:223.995000px;}
.y100{bottom:224.130000px;}
.y77{bottom:232.050000px;}
.y1c2{bottom:232.410000px;}
.y29{bottom:232.950000px;}
.y195{bottom:233.310000px;}
.y129{bottom:233.670000px;}
.y162{bottom:234.210000px;}
.ya4{bottom:236.010000px;}
.y37{bottom:240.120000px;}
.y31{bottom:241.770000px;}
.yff{bottom:241.950000px;}
.yd9{bottom:245.010000px;}
.y1c1{bottom:250.230000px;}
.y194{bottom:251.130000px;}
.y128{bottom:251.490000px;}
.y161{bottom:252.030000px;}
.ya3{bottom:253.830000px;}
.y38{bottom:254.235000px;}
.y43{bottom:256.350000px;}
.y76{bottom:258.870000px;}
.y28{bottom:259.770000px;}
.yd8{bottom:263.010000px;}
.y1c0{bottom:268.230000px;}
.y30{bottom:268.590000px;}
.y193{bottom:268.950000px;}
.y127{bottom:269.310000px;}
.y160{bottom:269.850000px;}
.ya2{bottom:271.650000px;}
.y75{bottom:276.330000px;}
.yfe{bottom:277.590000px;}
.yd7{bottom:280.830000px;}
.y42{bottom:285.510000px;}
.y1bf{bottom:286.050000px;}
.y27{bottom:286.590000px;}
.y192{bottom:286.770000px;}
.y15f{bottom:287.670000px;}
.ya1{bottom:289.650000px;}
.y2f{bottom:295.410000px;}
.y126{bottom:296.310000px;}
.yd6{bottom:298.650000px;}
.y74{bottom:303.510000px;}
.y1be{bottom:303.870000px;}
.yfd{bottom:304.410000px;}
.y191{bottom:304.590000px;}
.y15e{bottom:305.490000px;}
.ya0{bottom:307.110000px;}
.y26{bottom:313.410000px;}
.y125{bottom:314.130000px;}
.yd5{bottom:316.110000px;}
.y73{bottom:321.510000px;}
.y1bd{bottom:321.690000px;}
.y2e{bottom:322.230000px;}
.yfc{bottom:322.410000px;}
.y15d{bottom:323.490000px;}
.y124{bottom:331.950000px;}
.y9f{bottom:334.290000px;}
.y72{bottom:339.330000px;}
.y1bc{bottom:339.510000px;}
.y25{bottom:340.230000px;}
.y190{bottom:340.410000px;}
.y15c{bottom:341.310000px;}
.yd4{bottom:343.290000px;}
.y2d{bottom:349.230000px;}
.y123{bottom:349.770000px;}
.y9e{bottom:352.110000px;}
.y71{bottom:357.150000px;}
.y1bb{bottom:357.510000px;}
.yfb{bottom:358.050000px;}
.y18f{bottom:358.230000px;}
.y15b{bottom:359.130000px;}
.yd3{bottom:361.290000px;}
.y24{bottom:367.230000px;}
.y122{bottom:367.590000px;}
.y9d{bottom:369.930000px;}
.y70{bottom:374.970000px;}
.y1ba{bottom:375.330000px;}
.yfa{bottom:375.870000px;}
.y2c{bottom:376.050000px;}
.y15a{bottom:376.950000px;}
.yd2{bottom:379.110000px;}
.y121{bottom:385.410000px;}
.y9c{bottom:387.930000px;}
.y6f{bottom:392.790000px;}
.y1b9{bottom:393.150000px;}
.yf9{bottom:393.690000px;}
.y18e{bottom:393.870000px;}
.y23{bottom:394.410000px;}
.y159{bottom:394.770000px;}
.yd1{bottom:396.930000px;}
.y2b{bottom:402.870000px;}
.y120{bottom:403.410000px;}
.y9b{bottom:405.750000px;}
.y6e{bottom:410.610000px;}
.y1b8{bottom:410.970000px;}
.yf8{bottom:411.510000px;}
.y22{bottom:412.230000px;}
.y158{bottom:412.590000px;}
.y18d{bottom:413.670000px;}
.yd0{bottom:414.750000px;}
.y9a{bottom:423.570000px;}
.y6d{bottom:428.610000px;}
.y1b7{bottom:428.790000px;}
.yf7{bottom:429.510000px;}
.y21{bottom:429.690000px;}
.y11f{bottom:430.230000px;}
.y157{bottom:430.590000px;}
.y1e9{bottom:434.010000px;}
.ycf{bottom:434.550000px;}
.y99{bottom:441.075000px;}
.y6c{bottom:446.475000px;}
.y18c{bottom:446.655000px;}
.yf6{bottom:447.375000px;}
.y11e{bottom:448.095000px;}
.y156{bottom:448.455000px;}
.y1e8{bottom:461.955000px;}
.y6b{bottom:464.295000px;}
.y18b{bottom:464.475000px;}
.y1b6{bottom:464.655000px;}
.yf5{bottom:465.195000px;}
.y20{bottom:465.375000px;}
.y11d{bottom:465.915000px;}
.y155{bottom:466.275000px;}
.yce{bottom:467.535000px;}
.y98{bottom:468.255000px;}
.y6a{bottom:482.115000px;}
.y18a{bottom:482.295000px;}
.y1b5{bottom:482.475000px;}
.y1f{bottom:483.375000px;}
.y11c{bottom:483.735000px;}
.y154{bottom:484.095000px;}
.ycd{bottom:485.355000px;}
.y97{bottom:486.075000px;}
.y1e7{bottom:489.675000px;}
.yf4{bottom:492.015000px;}
.y69{bottom:499.935000px;}
.y189{bottom:500.115000px;}
.y1b4{bottom:500.295000px;}
.y153{bottom:501.555000px;}
.y11b{bottom:501.735000px;}
.y1e{bottom:502.995000px;}
.ycc{bottom:503.175000px;}
.y96{bottom:504.075000px;}
.yf3{bottom:509.835000px;}
.y1e4{bottom:517.215000px;}
.y188{bottom:517.935000px;}
.y1b3{bottom:518.115000px;}
.y11a{bottom:519.555000px;}
.ycb{bottom:520.635000px;}
.y1d{bottom:526.755000px;}
.y68{bottom:526.935000px;}
.yf2{bottom:527.835000px;}
.y152{bottom:528.915000px;}
.y95{bottom:530.895000px;}
.y187{bottom:535.935000px;}
.y119{bottom:537.375000px;}
.y67{bottom:544.755000px;}
.yf1{bottom:545.655000px;}
.y151{bottom:546.735000px;}
.yca{bottom:547.815000px;}
.y94{bottom:548.715000px;}
.y1c{bottom:550.335000px;}
.y1e1{bottom:552.855000px;}
.y186{bottom:553.755000px;}
.y1b2{bottom:553.935000px;}
.y118{bottom:555.195000px;}
.y66{bottom:562.575000px;}
.yf0{bottom:563.475000px;}
.y150{bottom:564.555000px;}
.yc9{bottom:565.635000px;}
.y93{bottom:566.535000px;}
.y185{bottom:571.575000px;}
.y1b1{bottom:571.755000px;}
.y117{bottom:573.015000px;}
.y1b{bottom:576.795000px;}
.y65{bottom:580.395000px;}
.yef{bottom:581.295000px;}
.y14f{bottom:582.375000px;}
.yc8{bottom:583.635000px;}
.y92{bottom:583.995000px;}
.y1df{bottom:589.035000px;}
.y184{bottom:589.395000px;}
.y1b0{bottom:589.575000px;}
.y116{bottom:590.835000px;}
.y64{bottom:598.215000px;}
.yee{bottom:599.115000px;}
.y14e{bottom:600.195000px;}
.y91{bottom:604.335000px;}
.y183{bottom:607.215000px;}
.y1af{bottom:607.395000px;}
.y1a{bottom:607.575000px;}
.y115{bottom:608.835000px;}
.yc7{bottom:610.455000px;}
.y63{bottom:616.035000px;}
.yed{bottom:616.935000px;}
.y14d{bottom:618.015000px;}
.y182{bottom:625.035000px;}
.y1ae{bottom:625.215000px;}
.y114{bottom:626.655000px;}
.yc6{bottom:628.275000px;}
.y62{bottom:634.035000px;}
.y1de{bottom:634.575000px;}
.yec{bottom:634.935000px;}
.y14c{bottom:636.015000px;}
.y90{bottom:637.095000px;}
.y181{bottom:643.035000px;}
.y113{bottom:648.615000px;}
.y61{bottom:651.855000px;}
.yeb{bottom:652.755000px;}
.y8f{bottom:654.915000px;}
.yc5{bottom:655.095000px;}
.y180{bottom:660.855000px;}
.y1ad{bottom:661.035000px;}
.y1dd{bottom:662.115000px;}
.y14b{bottom:662.835000px;}
.y19{bottom:663.915000px;}
.y60{bottom:669.675000px;}
.y8e{bottom:672.735000px;}
.yc4{bottom:672.915000px;}
.ye9{bottom:674.715000px;}
.y112{bottom:676.185000px;}
.y17f{bottom:678.705000px;}
.y1ac{bottom:678.885000px;}
.y14a{bottom:680.685000px;}
.y5f{bottom:687.525000px;}
.y8d{bottom:690.585000px;}
.y1dc{bottom:695.085000px;}
.y17e{bottom:696.525000px;}
.y1ab{bottom:696.705000px;}
.y149{bottom:698.505000px;}
.ye7{bottom:702.285000px;}
.y18{bottom:704.805000px;}
.y5e{bottom:705.345000px;}
.y8c{bottom:708.585000px;}
.y17d{bottom:714.345000px;}
.y1aa{bottom:714.525000px;}
.y148{bottom:716.325000px;}
.yc3{bottom:717.765000px;}
.y1db{bottom:722.265000px;}
.y8b{bottom:726.405000px;}
.y5d{bottom:732.165000px;}
.y1a9{bottom:732.345000px;}
.y147{bottom:734.325000px;}
.yc2{bottom:735.585000px;}
.y111{bottom:739.545000px;}
.y1da{bottom:740.085000px;}
.y17c{bottom:741.165000px;}
.y8a{bottom:744.225000px;}
.y5c{bottom:750.165000px;}
.y17{bottom:751.065000px;}
.y146{bottom:752.145000px;}
.yc1{bottom:753.405000px;}
.y17b{bottom:759.165000px;}
.y89{bottom:762.045000px;}
.y1d9{bottom:766.545000px;}
.y5b{bottom:767.985000px;}
.y1a8{bottom:768.165000px;}
.yc0{bottom:771.225000px;}
.y17a{bottom:776.985000px;}
.y16{bottom:778.785000px;}
.y145{bottom:778.965000px;}
.y88{bottom:779.865000px;}
.ye6{bottom:783.465000px;}
.y5a{bottom:785.805000px;}
.y1a7{bottom:785.985000px;}
.y1d8{bottom:788.865000px;}
.ybf{bottom:789.045000px;}
.y179{bottom:794.805000px;}
.y144{bottom:796.785000px;}
.y87{bottom:797.685000px;}
.y110{bottom:802.905000px;}
.y59{bottom:803.625000px;}
.y1a6{bottom:803.805000px;}
.ybe{bottom:807.045000px;}
.y178{bottom:812.625000px;}
.y143{bottom:814.605000px;}
.y86{bottom:815.685000px;}
.y58{bottom:821.445000px;}
.y1a5{bottom:821.625000px;}
.y15{bottom:824.865000px;}
.y1d7{bottom:825.765000px;}
.y177{bottom:830.445000px;}
.y142{bottom:832.425000px;}
.y85{bottom:833.505000px;}
.y57{bottom:839.445000px;}
.ybd{bottom:842.685000px;}
.ye4{bottom:846.825000px;}
.y14{bottom:847.725000px;}
.y176{bottom:848.445000px;}
.y141{bottom:850.425000px;}
.y84{bottom:851.325000px;}
.y1d6{bottom:853.485000px;}
.y56{bottom:857.265000px;}
.y1a4{bottom:857.445000px;}
.ybc{bottom:860.505000px;}
.y10d{bottom:866.085000px;}
.y175{bottom:866.265000px;}
.y140{bottom:868.245000px;}
.y83{bottom:869.145000px;}
.y13{bottom:869.505000px;}
.y55{bottom:875.085000px;}
.y1a3{bottom:875.265000px;}
.y1d5{bottom:881.025000px;}
.yba{bottom:882.465000px;}
.y174{bottom:884.085000px;}
.y13f{bottom:886.065000px;}
.y82{bottom:886.965000px;}
.y12{bottom:891.465000px;}
.y54{bottom:892.905000px;}
.y1a2{bottom:893.085000px;}
.y173{bottom:901.905000px;}
.y13e{bottom:903.885000px;}
.y81{bottom:904.785000px;}
.y1d2{bottom:908.565000px;}
.ye0{bottom:910.185000px;}
.y53{bottom:910.770000px;}
.y1a1{bottom:910.950000px;}
.y11{bottom:914.370000px;}
.y172{bottom:919.770000px;}
.y13d{bottom:921.750000px;}
.yb9{bottom:928.050000px;}
.y52{bottom:928.590000px;}
.y1a0{bottom:928.770000px;}
.y80{bottom:931.470000px;}
.y1d1{bottom:936.330000px;}
.y10{bottom:936.510000px;}
.y171{bottom:937.590000px;}
.y19f{bottom:946.590000px;}
.y10c{bottom:947.310000px;}
.y13c{bottom:948.570000px;}
.y51{bottom:955.590000px;}
.y7f{bottom:958.650000px;}
.yf{bottom:959.190000px;}
.y1d0{bottom:963.870000px;}
.y19e{bottom:964.590000px;}
.y13b{bottom:966.570000px;}
.y50{bottom:973.410000px;}
.y7e{bottom:982.230000px;}
.y19d{bottom:982.410000px;}
.y13a{bottom:984.390000px;}
.ye{bottom:985.650000px;}
.y4f{bottom:991.230000px;}
.y1ce{bottom:991.410000px;}
.yd{bottom:997.710000px;}
.y19c{bottom:1000.230000px;}
.y139{bottom:1002.210000px;}
.yae{bottom:1005.450000px;}
.y4e{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y170{bottom:1018.050000px;}
.yb6{bottom:1018.950000px;}
.y1cb{bottom:1019.130000px;}
.y138{bottom:1020.030000px;}
.yad{bottom:1021.110000px;}
.yb{bottom:1021.830000px;}
.y4d{bottom:1026.870000px;}
.y10b{bottom:1028.490000px;}
.y16f{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.yac{bottom:1036.770000px;}
.y137{bottom:1037.850000px;}
.y4c{bottom:1044.870000px;}
.y16e{bottom:1053.870000px;}
.y136{bottom:1055.850000px;}
.y1ca{bottom:1056.030000px;}
.y9{bottom:1061.970000px;}
.y4b{bottom:1062.690000px;}
.yb3{bottom:1064.310000px;}
.y16d{bottom:1071.690000px;}
.y135{bottom:1073.670000px;}
.y10a{bottom:1074.030000px;}
.y4a{bottom:1080.510000px;}
.y8{bottom:1087.170000px;}
.y1c9{bottom:1088.790000px;}
.yaa{bottom:1089.000000px;}
.y16c{bottom:1089.510000px;}
.y134{bottom:1091.490000px;}
.y49{bottom:1098.330000px;}
.ydf{bottom:1100.130000px;}
.y109{bottom:1106.790000px;}
.y16b{bottom:1107.330000px;}
.y133{bottom:1109.310000px;}
.yaf{bottom:1109.850000px;}
.y1c8{bottom:1115.970000px;}
.y48{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y16a{bottom:1125.150000px;}
.y132{bottom:1127.130000px;}
.y7d{bottom:1133.610000px;}
.y47{bottom:1133.970000px;}
.y169{bottom:1142.970000px;}
.y131{bottom:1144.590000px;}
.yde{bottom:1145.520000px;}
.y108{bottom:1152.000000px;}
.y1c7{bottom:1160.460000px;}
.y46{bottom:1161.000000px;}
.y130{bottom:1164.960000px;}
.y6{bottom:1165.860000px;}
.y107{bottom:1169.820000px;}
.y45{bottom:1178.820000px;}
.y1c6{bottom:1187.280000px;}
.y12f{bottom:1190.700000px;}
.y106{bottom:1196.280000px;}
.y44{bottom:1196.640000px;}
.h19{height:24.480000px;}
.h2b{height:26.805000px;}
.h26{height:26.820000px;}
.h25{height:26.850000px;}
.h1f{height:26.856000px;}
.h2f{height:26.985000px;}
.h29{height:27.000000px;}
.h2a{height:27.036000px;}
.h2{height:31.135500px;}
.h2e{height:34.725000px;}
.h2d{height:35.445000px;}
.h28{height:36.180000px;}
.h16{height:37.705078px;}
.ha{height:40.985156px;}
.h1d{height:44.640000px;}
.h2c{height:44.805000px;}
.h1c{height:44.820000px;}
.h1e{height:44.856000px;}
.h15{height:49.255313px;}
.h18{height:52.971680px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.h17{height:55.503491px;}
.h14{height:58.621992px;}
.hb{height:58.651172px;}
.hc{height:60.226875px;}
.h23{height:62.460000px;}
.h1b{height:62.482500px;}
.h22{height:62.496000px;}
.h20{height:62.635500px;}
.h21{height:62.640000px;}
.hd{height:65.010937px;}
.h5{height:65.884219px;}
.h10{height:66.757500px;}
.hf{height:72.326250px;}
.h11{height:72.562500px;}
.h12{height:78.367500px;}
.h24{height:80.460000px;}
.h27{height:80.496000px;}
.he{height:82.676953px;}
.h8{height:84.898125px;}
.h9{height:90.703125px;}
.h7{height:103.038750px;}
.h6{height:108.843750px;}
.h1a{height:115.621875px;}
.h13{height:281.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:40.320000px;}
.w1c{width:40.342500px;}
.w1b{width:40.500000px;}
.w15{width:40.522500px;}
.w1e{width:40.665000px;}
.w1f{width:40.710000px;}
.w19{width:40.845000px;}
.w1a{width:40.890000px;}
.w18{width:41.025000px;}
.w17{width:41.745000px;}
.w13{width:44.460000px;}
.wf{width:45.525000px;}
.wb{width:45.720000px;}
.w12{width:56.556000px;}
.wa{width:57.996000px;}
.we{width:58.125000px;}
.w3{width:80.310000px;}
.w6{width:81.562500px;}
.w7{width:86.931000px;}
.w14{width:93.960000px;}
.wc{width:96.660000px;}
.w10{width:96.870000px;}
.w5{width:140.220000px;}
.wd{width:178.215000px;}
.w9{width:178.405500px;}
.w11{width:183.805500px;}
.w8{width:201.810000px;}
.w1d{width:530.745000px;}
.w16{width:533.265000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.560000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x26{left:12.600000px;}
.x28{left:14.220000px;}
.x2a{left:17.280000px;}
.x30{left:19.620000px;}
.x3a{left:20.880000px;}
.x2b{left:34.920000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x21{left:46.950000px;}
.x16{left:50.040000px;}
.x1c{left:52.305000px;}
.x7{left:54.000000px;}
.x3b{left:56.704500px;}
.xf{left:63.540000px;}
.x17{left:81.000000px;}
.xe{left:94.896000px;}
.x34{left:96.156000px;}
.x3c{left:97.776000px;}
.x18{left:108.036000px;}
.x22{left:133.236000px;}
.x11{left:192.630000px;}
.x24{left:220.890000px;}
.x2{left:222.370500px;}
.x25{left:225.390000px;}
.x31{left:230.790000px;}
.xb{left:268.815000px;}
.x3{left:271.510500px;}
.x27{left:284.115000px;}
.x32{left:288.075000px;}
.xc{left:295.995000px;}
.x10{left:297.255000px;}
.x9{left:305.175000px;}
.x12{left:314.355000px;}
.x29{left:330.555000px;}
.x33{left:333.255000px;}
.x8{left:351.615000px;}
.xa{left:364.395000px;}
.xd{left:378.795000px;}
.x6{left:446.505000px;}
.x2c{left:465.960000px;}
.x13{left:473.505000px;}
.x1f{left:494.025000px;}
.x19{left:500.505000px;}
.x1e{left:504.465000px;}
.x1d{left:512.925000px;}
.x1a{left:527.505000px;}
.x35{left:630.150000px;}
.x2d{left:644.910000px;}
.x36{left:672.630000px;}
.x20{left:698.220000px;}
.x2e{left:703.770000px;}
.x3d{left:713.130000px;}
.x37{left:714.390000px;}
.x2f{left:750.030000px;}
.x3e{left:754.710000px;}
.x38{left:756.150000px;}
.x4{left:767.490000px;}
.x3f{left:796.140000px;}
.x39{left:797.760000px;}
.x1b{left:840.240000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:54.400000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.752000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls12{letter-spacing:22.496000pt;}
.lsd{letter-spacing:26.400000pt;}
.lsa{letter-spacing:46.816000pt;}
.lsb{letter-spacing:494.400000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.776000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.115520pt;}
._6{width:2.136960pt;}
._8{width:3.240320pt;}
._9{width:4.143360pt;}
._b{width:5.410347pt;}
._a{width:6.427520pt;}
._c{width:7.338453pt;}
._4{width:8.400000pt;}
._5{width:9.408000pt;}
._10{width:10.320000pt;}
._12{width:13.248000pt;}
._13{width:14.256000pt;}
._d{width:15.670400pt;}
._e{width:16.573440pt;}
._1c{width:17.520640pt;}
._16{width:18.480000pt;}
._17{width:19.871147pt;}
._f{width:20.784000pt;}
._20{width:21.712853pt;}
._14{width:22.608000pt;}
._2{width:23.952000pt;}
._15{width:25.632000pt;}
._3{width:26.784000pt;}
._11{width:28.320000pt;}
._1b{width:29.760000pt;}
._23{width:31.392000pt;}
._1a{width:32.304000pt;}
._18{width:33.216000pt;}
._7{width:34.416000pt;}
._1d{width:36.192000pt;}
._1e{width:37.872000pt;}
._21{width:40.080000pt;}
._22{width:41.568000pt;}
._2d{width:49.824000pt;}
._19{width:58.512000pt;}
._2a{width:59.520000pt;}
._29{width:60.804480pt;}
._28{width:82.896000pt;}
._2c{width:135.936000pt;}
._2b{width:205.968000pt;}
._25{width:317.472000pt;}
._24{width:318.816000pt;}
._27{width:575.520000pt;}
._26{width:625.919147pt;}
._1f{width:661.883520pt;}
._2e{width:797.072000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.yab{bottom:5.893333pt;}
.yb2{bottom:8.640000pt;}
.yea{bottom:8.666667pt;}
.y1cf{bottom:8.800000pt;}
.y1d4{bottom:8.840000pt;}
.yb8{bottom:8.960000pt;}
.ye3{bottom:9.000000pt;}
.yb5{bottom:9.120000pt;}
.y1d3{bottom:9.160000pt;}
.y4{bottom:13.920000pt;}
.y1e6{bottom:15.680000pt;}
.y1e5{bottom:16.000000pt;}
.y1e3{bottom:16.320000pt;}
.y1e2{bottom:16.640000pt;}
.y2{bottom:16.800000pt;}
.y1cd{bottom:16.960000pt;}
.y1cc{bottom:17.280000pt;}
.yb1{bottom:24.480000pt;}
.y1e0{bottom:24.640000pt;}
.yb7{bottom:24.800000pt;}
.ye2{bottom:24.840000pt;}
.yb4{bottom:24.960000pt;}
.ybb{bottom:25.000000pt;}
.y5{bottom:35.360000pt;}
.yb0{bottom:40.346667pt;}
.ye5{bottom:40.640000pt;}
.ye1{bottom:40.680000pt;}
.ydd{bottom:40.800000pt;}
.y10f{bottom:40.840000pt;}
.y1{bottom:53.920000pt;}
.ye8{bottom:56.640000pt;}
.y10e{bottom:56.680000pt;}
.y41{bottom:57.946667pt;}
.y40{bottom:75.546667pt;}
.y3f{bottom:93.306667pt;}
.y36{bottom:97.120000pt;}
.y168{bottom:104.960000pt;}
.ya9{bottom:106.560000pt;}
.ydc{bottom:108.160000pt;}
.y3e{bottom:110.906667pt;}
.y105{bottom:111.520000pt;}
.y19b{bottom:112.000000pt;}
.y35{bottom:112.960000pt;}
.y12e{bottom:120.320000pt;}
.y167{bottom:120.800000pt;}
.ya8{bottom:122.400000pt;}
.y7c{bottom:126.880000pt;}
.y19a{bottom:128.000000pt;}
.y3d{bottom:128.506667pt;}
.y34{bottom:128.800000pt;}
.y104{bottom:135.680000pt;}
.y166{bottom:136.640000pt;}
.y7b{bottom:142.720000pt;}
.y199{bottom:143.840000pt;}
.y12d{bottom:144.160000pt;}
.y33{bottom:144.640000pt;}
.y3c{bottom:146.106667pt;}
.ya7{bottom:146.240000pt;}
.y1c5{bottom:150.720000pt;}
.y103{bottom:151.520000pt;}
.y165{bottom:152.480000pt;}
.y7a{bottom:158.560000pt;}
.y198{bottom:159.680000pt;}
.y12c{bottom:160.000000pt;}
.y32{bottom:162.240000pt;}
.y3b{bottom:163.706667pt;}
.ydb{bottom:164.480000pt;}
.y102{bottom:167.360000pt;}
.y79{bottom:174.400000pt;}
.y1c4{bottom:174.880000pt;}
.y197{bottom:175.520000pt;}
.y12b{bottom:176.000000pt;}
.y164{bottom:176.320000pt;}
.ya6{bottom:178.080000pt;}
.y3a{bottom:181.466667pt;}
.y2a{bottom:183.066667pt;}
.y101{bottom:183.386667pt;}
.y78{bottom:190.426667pt;}
.y1c3{bottom:190.746667pt;}
.y196{bottom:191.386667pt;}
.y12a{bottom:191.866667pt;}
.y163{bottom:192.186667pt;}
.yda{bottom:193.626667pt;}
.ya5{bottom:193.946667pt;}
.y39{bottom:199.106667pt;}
.y100{bottom:199.226667pt;}
.y77{bottom:206.266667pt;}
.y1c2{bottom:206.586667pt;}
.y29{bottom:207.066667pt;}
.y195{bottom:207.386667pt;}
.y129{bottom:207.706667pt;}
.y162{bottom:208.186667pt;}
.ya4{bottom:209.786667pt;}
.y37{bottom:213.440000pt;}
.y31{bottom:214.906667pt;}
.yff{bottom:215.066667pt;}
.yd9{bottom:217.786667pt;}
.y1c1{bottom:222.426667pt;}
.y194{bottom:223.226667pt;}
.y128{bottom:223.546667pt;}
.y161{bottom:224.026667pt;}
.ya3{bottom:225.626667pt;}
.y38{bottom:225.986667pt;}
.y43{bottom:227.866667pt;}
.y76{bottom:230.106667pt;}
.y28{bottom:230.906667pt;}
.yd8{bottom:233.786667pt;}
.y1c0{bottom:238.426667pt;}
.y30{bottom:238.746667pt;}
.y193{bottom:239.066667pt;}
.y127{bottom:239.386667pt;}
.y160{bottom:239.866667pt;}
.ya2{bottom:241.466667pt;}
.y75{bottom:245.626667pt;}
.yfe{bottom:246.746667pt;}
.yd7{bottom:249.626667pt;}
.y42{bottom:253.786667pt;}
.y1bf{bottom:254.266667pt;}
.y27{bottom:254.746667pt;}
.y192{bottom:254.906667pt;}
.y15f{bottom:255.706667pt;}
.ya1{bottom:257.466667pt;}
.y2f{bottom:262.586667pt;}
.y126{bottom:263.386667pt;}
.yd6{bottom:265.466667pt;}
.y74{bottom:269.786667pt;}
.y1be{bottom:270.106667pt;}
.yfd{bottom:270.586667pt;}
.y191{bottom:270.746667pt;}
.y15e{bottom:271.546667pt;}
.ya0{bottom:272.986667pt;}
.y26{bottom:278.586667pt;}
.y125{bottom:279.226667pt;}
.yd5{bottom:280.986667pt;}
.y73{bottom:285.786667pt;}
.y1bd{bottom:285.946667pt;}
.y2e{bottom:286.426667pt;}
.yfc{bottom:286.586667pt;}
.y15d{bottom:287.546667pt;}
.y124{bottom:295.066667pt;}
.y9f{bottom:297.146667pt;}
.y72{bottom:301.626667pt;}
.y1bc{bottom:301.786667pt;}
.y25{bottom:302.426667pt;}
.y190{bottom:302.586667pt;}
.y15c{bottom:303.386667pt;}
.yd4{bottom:305.146667pt;}
.y2d{bottom:310.426667pt;}
.y123{bottom:310.906667pt;}
.y9e{bottom:312.986667pt;}
.y71{bottom:317.466667pt;}
.y1bb{bottom:317.786667pt;}
.yfb{bottom:318.266667pt;}
.y18f{bottom:318.426667pt;}
.y15b{bottom:319.226667pt;}
.yd3{bottom:321.146667pt;}
.y24{bottom:326.426667pt;}
.y122{bottom:326.746667pt;}
.y9d{bottom:328.826667pt;}
.y70{bottom:333.306667pt;}
.y1ba{bottom:333.626667pt;}
.yfa{bottom:334.106667pt;}
.y2c{bottom:334.266667pt;}
.y15a{bottom:335.066667pt;}
.yd2{bottom:336.986667pt;}
.y121{bottom:342.586667pt;}
.y9c{bottom:344.826667pt;}
.y6f{bottom:349.146667pt;}
.y1b9{bottom:349.466667pt;}
.yf9{bottom:349.946667pt;}
.y18e{bottom:350.106667pt;}
.y23{bottom:350.586667pt;}
.y159{bottom:350.906667pt;}
.yd1{bottom:352.826667pt;}
.y2b{bottom:358.106667pt;}
.y120{bottom:358.586667pt;}
.y9b{bottom:360.666667pt;}
.y6e{bottom:364.986667pt;}
.y1b8{bottom:365.306667pt;}
.yf8{bottom:365.786667pt;}
.y22{bottom:366.426667pt;}
.y158{bottom:366.746667pt;}
.y18d{bottom:367.706667pt;}
.yd0{bottom:368.666667pt;}
.y9a{bottom:376.506667pt;}
.y6d{bottom:380.986667pt;}
.y1b7{bottom:381.146667pt;}
.yf7{bottom:381.786667pt;}
.y21{bottom:381.946667pt;}
.y11f{bottom:382.426667pt;}
.y157{bottom:382.746667pt;}
.y1e9{bottom:385.786667pt;}
.ycf{bottom:386.266667pt;}
.y99{bottom:392.066667pt;}
.y6c{bottom:396.866667pt;}
.y18c{bottom:397.026667pt;}
.yf6{bottom:397.666667pt;}
.y11e{bottom:398.306667pt;}
.y156{bottom:398.626667pt;}
.y1e8{bottom:410.626667pt;}
.y6b{bottom:412.706667pt;}
.y18b{bottom:412.866667pt;}
.y1b6{bottom:413.026667pt;}
.yf5{bottom:413.506667pt;}
.y20{bottom:413.666667pt;}
.y11d{bottom:414.146667pt;}
.y155{bottom:414.466667pt;}
.yce{bottom:415.586667pt;}
.y98{bottom:416.226667pt;}
.y6a{bottom:428.546667pt;}
.y18a{bottom:428.706667pt;}
.y1b5{bottom:428.866667pt;}
.y1f{bottom:429.666667pt;}
.y11c{bottom:429.986667pt;}
.y154{bottom:430.306667pt;}
.ycd{bottom:431.426667pt;}
.y97{bottom:432.066667pt;}
.y1e7{bottom:435.266667pt;}
.yf4{bottom:437.346667pt;}
.y69{bottom:444.386667pt;}
.y189{bottom:444.546667pt;}
.y1b4{bottom:444.706667pt;}
.y153{bottom:445.826667pt;}
.y11b{bottom:445.986667pt;}
.y1e{bottom:447.106667pt;}
.ycc{bottom:447.266667pt;}
.y96{bottom:448.066667pt;}
.yf3{bottom:453.186667pt;}
.y1e4{bottom:459.746667pt;}
.y188{bottom:460.386667pt;}
.y1b3{bottom:460.546667pt;}
.y11a{bottom:461.826667pt;}
.ycb{bottom:462.786667pt;}
.y1d{bottom:468.226667pt;}
.y68{bottom:468.386667pt;}
.yf2{bottom:469.186667pt;}
.y152{bottom:470.146667pt;}
.y95{bottom:471.906667pt;}
.y187{bottom:476.386667pt;}
.y119{bottom:477.666667pt;}
.y67{bottom:484.226667pt;}
.yf1{bottom:485.026667pt;}
.y151{bottom:485.986667pt;}
.yca{bottom:486.946667pt;}
.y94{bottom:487.746667pt;}
.y1c{bottom:489.186667pt;}
.y1e1{bottom:491.426667pt;}
.y186{bottom:492.226667pt;}
.y1b2{bottom:492.386667pt;}
.y118{bottom:493.506667pt;}
.y66{bottom:500.066667pt;}
.yf0{bottom:500.866667pt;}
.y150{bottom:501.826667pt;}
.yc9{bottom:502.786667pt;}
.y93{bottom:503.586667pt;}
.y185{bottom:508.066667pt;}
.y1b1{bottom:508.226667pt;}
.y117{bottom:509.346667pt;}
.y1b{bottom:512.706667pt;}
.y65{bottom:515.906667pt;}
.yef{bottom:516.706667pt;}
.y14f{bottom:517.666667pt;}
.yc8{bottom:518.786667pt;}
.y92{bottom:519.106667pt;}
.y1df{bottom:523.586667pt;}
.y184{bottom:523.906667pt;}
.y1b0{bottom:524.066667pt;}
.y116{bottom:525.186667pt;}
.y64{bottom:531.746667pt;}
.yee{bottom:532.546667pt;}
.y14e{bottom:533.506667pt;}
.y91{bottom:537.186667pt;}
.y183{bottom:539.746667pt;}
.y1af{bottom:539.906667pt;}
.y1a{bottom:540.066667pt;}
.y115{bottom:541.186667pt;}
.yc7{bottom:542.626667pt;}
.y63{bottom:547.586667pt;}
.yed{bottom:548.386667pt;}
.y14d{bottom:549.346667pt;}
.y182{bottom:555.586667pt;}
.y1ae{bottom:555.746667pt;}
.y114{bottom:557.026667pt;}
.yc6{bottom:558.466667pt;}
.y62{bottom:563.586667pt;}
.y1de{bottom:564.066667pt;}
.yec{bottom:564.386667pt;}
.y14c{bottom:565.346667pt;}
.y90{bottom:566.306667pt;}
.y181{bottom:571.586667pt;}
.y113{bottom:576.546667pt;}
.y61{bottom:579.426667pt;}
.yeb{bottom:580.226667pt;}
.y8f{bottom:582.146667pt;}
.yc5{bottom:582.306667pt;}
.y180{bottom:587.426667pt;}
.y1ad{bottom:587.586667pt;}
.y1dd{bottom:588.546667pt;}
.y14b{bottom:589.186667pt;}
.y19{bottom:590.146667pt;}
.y60{bottom:595.266667pt;}
.y8e{bottom:597.986667pt;}
.yc4{bottom:598.146667pt;}
.ye9{bottom:599.746667pt;}
.y112{bottom:601.053333pt;}
.y17f{bottom:603.293333pt;}
.y1ac{bottom:603.453333pt;}
.y14a{bottom:605.053333pt;}
.y5f{bottom:611.133333pt;}
.y8d{bottom:613.853333pt;}
.y1dc{bottom:617.853333pt;}
.y17e{bottom:619.133333pt;}
.y1ab{bottom:619.293333pt;}
.y149{bottom:620.893333pt;}
.ye7{bottom:624.253333pt;}
.y18{bottom:626.493333pt;}
.y5e{bottom:626.973333pt;}
.y8c{bottom:629.853333pt;}
.y17d{bottom:634.973333pt;}
.y1aa{bottom:635.133333pt;}
.y148{bottom:636.733333pt;}
.yc3{bottom:638.013333pt;}
.y1db{bottom:642.013333pt;}
.y8b{bottom:645.693333pt;}
.y5d{bottom:650.813333pt;}
.y1a9{bottom:650.973333pt;}
.y147{bottom:652.733333pt;}
.yc2{bottom:653.853333pt;}
.y111{bottom:657.373333pt;}
.y1da{bottom:657.853333pt;}
.y17c{bottom:658.813333pt;}
.y8a{bottom:661.533333pt;}
.y5c{bottom:666.813333pt;}
.y17{bottom:667.613333pt;}
.y146{bottom:668.573333pt;}
.yc1{bottom:669.693333pt;}
.y17b{bottom:674.813333pt;}
.y89{bottom:677.373333pt;}
.y1d9{bottom:681.373333pt;}
.y5b{bottom:682.653333pt;}
.y1a8{bottom:682.813333pt;}
.yc0{bottom:685.533333pt;}
.y17a{bottom:690.653333pt;}
.y16{bottom:692.253333pt;}
.y145{bottom:692.413333pt;}
.y88{bottom:693.213333pt;}
.ye6{bottom:696.413333pt;}
.y5a{bottom:698.493333pt;}
.y1a7{bottom:698.653333pt;}
.y1d8{bottom:701.213333pt;}
.ybf{bottom:701.373333pt;}
.y179{bottom:706.493333pt;}
.y144{bottom:708.253333pt;}
.y87{bottom:709.053333pt;}
.y110{bottom:713.693333pt;}
.y59{bottom:714.333333pt;}
.y1a6{bottom:714.493333pt;}
.ybe{bottom:717.373333pt;}
.y178{bottom:722.333333pt;}
.y143{bottom:724.093333pt;}
.y86{bottom:725.053333pt;}
.y58{bottom:730.173333pt;}
.y1a5{bottom:730.333333pt;}
.y15{bottom:733.213333pt;}
.y1d7{bottom:734.013333pt;}
.y177{bottom:738.173333pt;}
.y142{bottom:739.933333pt;}
.y85{bottom:740.893333pt;}
.y57{bottom:746.173333pt;}
.ybd{bottom:749.053333pt;}
.ye4{bottom:752.733333pt;}
.y14{bottom:753.533333pt;}
.y176{bottom:754.173333pt;}
.y141{bottom:755.933333pt;}
.y84{bottom:756.733333pt;}
.y1d6{bottom:758.653333pt;}
.y56{bottom:762.013333pt;}
.y1a4{bottom:762.173333pt;}
.ybc{bottom:764.893333pt;}
.y10d{bottom:769.853333pt;}
.y175{bottom:770.013333pt;}
.y140{bottom:771.773333pt;}
.y83{bottom:772.573333pt;}
.y13{bottom:772.893333pt;}
.y55{bottom:777.853333pt;}
.y1a3{bottom:778.013333pt;}
.y1d5{bottom:783.133333pt;}
.yba{bottom:784.413333pt;}
.y174{bottom:785.853333pt;}
.y13f{bottom:787.613333pt;}
.y82{bottom:788.413333pt;}
.y12{bottom:792.413333pt;}
.y54{bottom:793.693333pt;}
.y1a2{bottom:793.853333pt;}
.y173{bottom:801.693333pt;}
.y13e{bottom:803.453333pt;}
.y81{bottom:804.253333pt;}
.y1d2{bottom:807.613333pt;}
.ye0{bottom:809.053333pt;}
.y53{bottom:809.573333pt;}
.y1a1{bottom:809.733333pt;}
.y11{bottom:812.773333pt;}
.y172{bottom:817.573333pt;}
.y13d{bottom:819.333333pt;}
.yb9{bottom:824.933333pt;}
.y52{bottom:825.413333pt;}
.y1a0{bottom:825.573333pt;}
.y80{bottom:827.973333pt;}
.y1d1{bottom:832.293333pt;}
.y10{bottom:832.453333pt;}
.y171{bottom:833.413333pt;}
.y19f{bottom:841.413333pt;}
.y10c{bottom:842.053333pt;}
.y13c{bottom:843.173333pt;}
.y51{bottom:849.413333pt;}
.y7f{bottom:852.133333pt;}
.yf{bottom:852.613333pt;}
.y1d0{bottom:856.773333pt;}
.y19e{bottom:857.413333pt;}
.y13b{bottom:859.173333pt;}
.y50{bottom:865.253333pt;}
.y7e{bottom:873.093333pt;}
.y19d{bottom:873.253333pt;}
.y13a{bottom:875.013333pt;}
.ye{bottom:876.133333pt;}
.y4f{bottom:881.093333pt;}
.y1ce{bottom:881.253333pt;}
.yd{bottom:886.853333pt;}
.y19c{bottom:889.093333pt;}
.y139{bottom:890.853333pt;}
.yae{bottom:893.733333pt;}
.y4e{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y170{bottom:904.933333pt;}
.yb6{bottom:905.733333pt;}
.y1cb{bottom:905.893333pt;}
.y138{bottom:906.693333pt;}
.yad{bottom:907.653333pt;}
.yb{bottom:908.293333pt;}
.y4d{bottom:912.773333pt;}
.y10b{bottom:914.213333pt;}
.y16f{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.yac{bottom:921.573333pt;}
.y137{bottom:922.533333pt;}
.y4c{bottom:928.773333pt;}
.y16e{bottom:936.773333pt;}
.y136{bottom:938.533333pt;}
.y1ca{bottom:938.693333pt;}
.y9{bottom:943.973333pt;}
.y4b{bottom:944.613333pt;}
.yb3{bottom:946.053333pt;}
.y16d{bottom:952.613333pt;}
.y135{bottom:954.373333pt;}
.y10a{bottom:954.693333pt;}
.y4a{bottom:960.453333pt;}
.y8{bottom:966.373333pt;}
.y1c9{bottom:967.813333pt;}
.yaa{bottom:968.000000pt;}
.y16c{bottom:968.453333pt;}
.y134{bottom:970.213333pt;}
.y49{bottom:976.293333pt;}
.ydf{bottom:977.893333pt;}
.y109{bottom:983.813333pt;}
.y16b{bottom:984.293333pt;}
.y133{bottom:986.053333pt;}
.yaf{bottom:986.533333pt;}
.y1c8{bottom:991.973333pt;}
.y48{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y16a{bottom:1000.133333pt;}
.y132{bottom:1001.893333pt;}
.y7d{bottom:1007.653333pt;}
.y47{bottom:1007.973333pt;}
.y169{bottom:1015.973333pt;}
.y131{bottom:1017.413333pt;}
.yde{bottom:1018.240000pt;}
.y108{bottom:1024.000000pt;}
.y1c7{bottom:1031.520000pt;}
.y46{bottom:1032.000000pt;}
.y130{bottom:1035.520000pt;}
.y6{bottom:1036.320000pt;}
.y107{bottom:1039.840000pt;}
.y45{bottom:1047.840000pt;}
.y1c6{bottom:1055.360000pt;}
.y12f{bottom:1058.400000pt;}
.y106{bottom:1063.360000pt;}
.y44{bottom:1063.680000pt;}
.h19{height:21.760000pt;}
.h2b{height:23.826667pt;}
.h26{height:23.840000pt;}
.h25{height:23.866667pt;}
.h1f{height:23.872000pt;}
.h2f{height:23.986667pt;}
.h29{height:24.000000pt;}
.h2a{height:24.032000pt;}
.h2{height:27.676000pt;}
.h2e{height:30.866667pt;}
.h2d{height:31.506667pt;}
.h28{height:32.160000pt;}
.h16{height:33.515625pt;}
.ha{height:36.431250pt;}
.h1d{height:39.680000pt;}
.h2c{height:39.826667pt;}
.h1c{height:39.840000pt;}
.h1e{height:39.872000pt;}
.h15{height:43.782500pt;}
.h18{height:47.085938pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.h17{height:49.336436pt;}
.h14{height:52.108438pt;}
.hb{height:52.134375pt;}
.hc{height:53.535000pt;}
.h23{height:55.520000pt;}
.h1b{height:55.540000pt;}
.h22{height:55.552000pt;}
.h20{height:55.676000pt;}
.h21{height:55.680000pt;}
.hd{height:57.787500pt;}
.h5{height:58.563750pt;}
.h10{height:59.340000pt;}
.hf{height:64.290000pt;}
.h11{height:64.500000pt;}
.h12{height:69.660000pt;}
.h24{height:71.520000pt;}
.h27{height:71.552000pt;}
.he{height:73.490625pt;}
.h8{height:75.465000pt;}
.h9{height:80.625000pt;}
.h7{height:91.590000pt;}
.h6{height:96.750000pt;}
.h1a{height:102.775000pt;}
.h13{height:250.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:35.840000pt;}
.w1c{width:35.860000pt;}
.w1b{width:36.000000pt;}
.w15{width:36.020000pt;}
.w1e{width:36.146667pt;}
.w1f{width:36.186667pt;}
.w19{width:36.306667pt;}
.w1a{width:36.346667pt;}
.w18{width:36.466667pt;}
.w17{width:37.106667pt;}
.w13{width:39.520000pt;}
.wf{width:40.466667pt;}
.wb{width:40.640000pt;}
.w12{width:50.272000pt;}
.wa{width:51.552000pt;}
.we{width:51.666667pt;}
.w3{width:71.386667pt;}
.w6{width:72.500000pt;}
.w7{width:77.272000pt;}
.w14{width:83.520000pt;}
.wc{width:85.920000pt;}
.w10{width:86.106667pt;}
.w5{width:124.640000pt;}
.wd{width:158.413333pt;}
.w9{width:158.582667pt;}
.w11{width:163.382667pt;}
.w8{width:179.386667pt;}
.w1d{width:471.773333pt;}
.w16{width:474.013333pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.720000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x26{left:11.200000pt;}
.x28{left:12.640000pt;}
.x2a{left:15.360000pt;}
.x30{left:17.440000pt;}
.x3a{left:18.560000pt;}
.x2b{left:31.040000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x21{left:41.733333pt;}
.x16{left:44.480000pt;}
.x1c{left:46.493333pt;}
.x7{left:48.000000pt;}
.x3b{left:50.404000pt;}
.xf{left:56.480000pt;}
.x17{left:72.000000pt;}
.xe{left:84.352000pt;}
.x34{left:85.472000pt;}
.x3c{left:86.912000pt;}
.x18{left:96.032000pt;}
.x22{left:118.432000pt;}
.x11{left:171.226667pt;}
.x24{left:196.346667pt;}
.x2{left:197.662667pt;}
.x25{left:200.346667pt;}
.x31{left:205.146667pt;}
.xb{left:238.946667pt;}
.x3{left:241.342667pt;}
.x27{left:252.546667pt;}
.x32{left:256.066667pt;}
.xc{left:263.106667pt;}
.x10{left:264.226667pt;}
.x9{left:271.266667pt;}
.x12{left:279.426667pt;}
.x29{left:293.826667pt;}
.x33{left:296.226667pt;}
.x8{left:312.546667pt;}
.xa{left:323.906667pt;}
.xd{left:336.706667pt;}
.x6{left:396.893333pt;}
.x2c{left:414.186667pt;}
.x13{left:420.893333pt;}
.x1f{left:439.133333pt;}
.x19{left:444.893333pt;}
.x1e{left:448.413333pt;}
.x1d{left:455.933333pt;}
.x1a{left:468.893333pt;}
.x35{left:560.133333pt;}
.x2d{left:573.253333pt;}
.x36{left:597.893333pt;}
.x20{left:620.640000pt;}
.x2e{left:625.573333pt;}
.x3d{left:633.893333pt;}
.x37{left:635.013333pt;}
.x2f{left:666.693333pt;}
.x3e{left:670.853333pt;}
.x38{left:672.133333pt;}
.x4{left:682.213333pt;}
.x3f{left:707.680000pt;}
.x39{left:709.120000pt;}
.x1b{left:746.880000pt;}
}




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