
    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_069c00f74305191cba946976.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a83dd7ddd6d20026c4bc9dfb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0b6145fb8e9a76b6f3db9bf5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fb74e2a19f01deb1e490ddbc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_deb3432b06e7602410b0c17d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b67190339647e4e4e6a8fda7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1f18f0116f3a847a1950c7d4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97ca0535eaee5ff2b39e352b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_daa11be420bb53e1ee73c0a1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_03959fa1aec6d7dd11ca4c73.woff')format("woff");}.ffb{font-family:ffb;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4fbbb67b06a2c51face1b16f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.056641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_398a6b2e9774f0022b066e94.woff')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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:ffe;src:url('chunks/assets/font_b8199f8c9acaff6f71afcb39.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.v5{vertical-align:36.360000px;}
.v4{vertical-align:42.120000px;}
.ls10{letter-spacing:-0.444600px;}
.ls25{letter-spacing:-0.299400px;}
.ls1c{letter-spacing:-0.282000px;}
.lse{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.135000px;}
.ls28{letter-spacing:-0.125400px;}
.ls12{letter-spacing:-0.121200px;}
.ls29{letter-spacing:-0.101400px;}
.lsb{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.070800px;}
.ls22{letter-spacing:-0.064800px;}
.ls17{letter-spacing:-0.063600px;}
.ls24{letter-spacing:-0.040320px;}
.ls16{letter-spacing:-0.020880px;}
.ls1f{letter-spacing:-0.014760px;}
.ls2d{letter-spacing:-0.013320px;}
.ls9{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.042480px;}
.ls8{letter-spacing:0.045360px;}
.ls2a{letter-spacing:0.047520px;}
.ls13{letter-spacing:0.048960px;}
.ls1e{letter-spacing:0.056160px;}
.ls6{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.074400px;}
.ls1d{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.097560px;}
.lsa{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.160200px;}
.lsf{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181200px;}
.ls23{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls7{letter-spacing:1.080000px;}
.ls1a{letter-spacing:5.400000px;}
.ls3{letter-spacing:6.026400px;}
.ls19{letter-spacing:11.160000px;}
.ls14{letter-spacing:16.272000px;}
.ls2c{letter-spacing:47.726640px;}
.ls2b{letter-spacing:80.846640px;}
.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;}
}
.ws12{word-spacing:-38.936160px;}
.wsa{word-spacing:-15.912000px;}
.ws6{word-spacing:-14.372400px;}
.ws1a{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.300800px;}
.wsc{word-spacing:-13.287000px;}
.ws8{word-spacing:-13.275360px;}
.ws1d{word-spacing:-13.273920px;}
.ws15{word-spacing:-13.268880px;}
.ws3{word-spacing:-13.226400px;}
.ws1e{word-spacing:-13.213080px;}
.ws13{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.162800px;}
.ws17{word-spacing:-13.161600px;}
.ws16{word-spacing:-13.155600px;}
.ws1c{word-spacing:-13.125000px;}
.ws2{word-spacing:-13.039800px;}
.ws9{word-spacing:-11.225520px;}
.ws18{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-9.266400px;}
.wse{word-spacing:-8.984400px;}
.ws5{word-spacing:-8.614200px;}
.ws11{word-spacing:-8.609760px;}
.wsd{word-spacing:-8.553600px;}
.ws19{word-spacing:-8.254200px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:54.435600px;}
.ws14{word-spacing:56.550240px;}
._15{margin-left:-12.406200px;}
._16{margin-left:-9.532440px;}
._17{margin-left:-4.408664px;}
._10{margin-left:-3.345000px;}
._7{margin-left:-2.344800px;}
._0{margin-left:-1.104000px;}
._2{width:1.012428px;}
._9{width:2.825400px;}
._d{width:4.148400px;}
._b{width:5.399880px;}
._c{width:6.512282px;}
._6{width:8.416800px;}
._11{width:10.280400px;}
._4{width:12.144000px;}
._13{width:14.438052px;}
._8{width:15.631200px;}
._3{width:17.260824px;}
._14{width:19.238400px;}
._e{width:20.801400px;}
._f{width:21.961681px;}
._19{width:26.430960px;}
._18{width:27.556800px;}
._1f{width:30.300480px;}
._1a{width:32.585040px;}
._21{width:34.727520px;}
._20{width:35.733120px;}
._1{width:40.946400px;}
._1c{width:43.186680px;}
._a{width:48.817200px;}
._1d{width:50.019840px;}
._1b{width:58.000680px;}
._1e{width:61.683120px;}
._12{width:153.516480px;}
._5{width:2106.812040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fsa{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:2.250000px;}
.ye6{bottom:3.330000px;}
.yaa{bottom:7.830000px;}
.yac{bottom:7.920000px;}
.yec{bottom:20.700000px;}
.yed{bottom:22.950000px;}
.yef{bottom:24.570000px;}
.yc8{bottom:25.380000px;}
.ybe{bottom:25.470000px;}
.y125{bottom:27.810000px;}
.y135{bottom:34.380000px;}
.y12c{bottom:43.380000px;}
.y124{bottom:45.360000px;}
.y134{bottom:52.020000px;}
.y129{bottom:61.020000px;}
.ybc{bottom:62.550000px;}
.y123{bottom:63.000000px;}
.y13a{bottom:65.520000px;}
.yd0{bottom:67.770000px;}
.ydc{bottom:67.860000px;}
.y4{bottom:73.380000px;}
.y2e{bottom:74.190000px;}
.y12b{bottom:78.570000px;}
.y128{bottom:78.660000px;}
.ybb{bottom:80.100000px;}
.y139{bottom:83.160000px;}
.y13e{bottom:87.660000px;}
.ycf{bottom:89.820000px;}
.ydb{bottom:89.910000px;}
.y132{bottom:92.160000px;}
.y127{bottom:96.210000px;}
.y12a{bottom:96.240000px;}
.y138{bottom:100.710000px;}
.y3{bottom:101.640000px;}
.y13d{bottom:105.210000px;}
.y131{bottom:109.710000px;}
.y161{bottom:113.970000px;}
.y137{bottom:118.350000px;}
.y1b7{bottom:120.990000px;}
.y13c{bottom:122.850000px;}
.y130{bottom:127.350000px;}
.y2c{bottom:129.720000px;}
.y160{bottom:131.520000px;}
.y133{bottom:133.680000px;}
.yb9{bottom:135.660000px;}
.y1b6{bottom:138.540000px;}
.y13b{bottom:140.400000px;}
.y9b{bottom:144.660000px;}
.y12f{bottom:144.900000px;}
.y2b{bottom:147.360000px;}
.y15f{bottom:149.160000px;}
.ye2{bottom:149.790000px;}
.yb8{bottom:153.300000px;}
.yff{bottom:160.770000px;}
.y12e{bottom:162.450000px;}
.y2a{bottom:164.910000px;}
.y1b5{bottom:165.090000px;}
.y18b{bottom:166.170000px;}
.y15e{bottom:166.710000px;}
.yb7{bottom:170.850000px;}
.y7b{bottom:172.560000px;}
.y9a{bottom:176.880000px;}
.yfe{bottom:178.320000px;}
.y29{bottom:182.460000px;}
.ye1{bottom:182.730000px;}
.y18a{bottom:183.720000px;}
.y15d{bottom:184.350000px;}
.y54{bottom:186.510000px;}
.yfd{bottom:195.960000px;}
.yb6{bottom:197.400000px;}
.y28{bottom:200.100000px;}
.y1b4{bottom:200.280000px;}
.y189{bottom:201.270000px;}
.y15c{bottom:201.900000px;}
.y53{bottom:204.060000px;}
.y7a{bottom:204.870000px;}
.y12d{bottom:205.140000px;}
.ye0{bottom:210.090000px;}
.y79{bottom:212.430000px;}
.yfc{bottom:213.510000px;}
.y27{bottom:217.650000px;}
.y188{bottom:218.910000px;}
.y1b3{bottom:226.830000px;}
.yb5{bottom:230.430000px;}
.y52{bottom:230.700000px;}
.y187{bottom:236.460000px;}
.yda{bottom:237.360000px;}
.y15b{bottom:237.450000px;}
.yfb{bottom:240.060000px;}
.y1b2{bottom:244.470000px;}
.y11d{bottom:245.190000px;}
.y78{bottom:252.120000px;}
.y26{bottom:253.200000px;}
.y186{bottom:254.100000px;}
.y15a{bottom:255.090000px;}
.yb4{bottom:257.700000px;}
.y11c{bottom:262.740000px;}
.ydf{bottom:264.720000px;}
.y51{bottom:266.250000px;}
.y77{bottom:269.760000px;}
.y25{bottom:270.840000px;}
.y1b1{bottom:271.020000px;}
.y185{bottom:271.650000px;}
.y159{bottom:272.640000px;}
.yfa{bottom:275.700000px;}
.y11b{bottom:280.380000px;}
.y50{bottom:283.800000px;}
.yb3{bottom:285.060000px;}
.y76{bottom:287.310000px;}
.y24{bottom:288.390000px;}
.y1b0{bottom:288.660000px;}
.y184{bottom:289.200000px;}
.y10e{bottom:290.190000px;}
.yde{bottom:292.080000px;}
.yf9{bottom:293.250000px;}
.y11a{bottom:297.930000px;}
.y75{bottom:304.950000px;}
.y23{bottom:306.030000px;}
.y1af{bottom:306.210000px;}
.y183{bottom:306.840000px;}
.y10d{bottom:307.830000px;}
.y158{bottom:308.190000px;}
.y4f{bottom:310.440000px;}
.yf8{bottom:310.890000px;}
.yb2{bottom:312.420000px;}
.y119{bottom:315.480000px;}
.ydd{bottom:319.440000px;}
.y22{bottom:323.580000px;}
.y182{bottom:324.390000px;}
.y10c{bottom:325.380000px;}
.y157{bottom:325.830000px;}
.yf7{bottom:328.440000px;}
.y74{bottom:331.500000px;}
.y1ae{bottom:332.760000px;}
.yb1{bottom:339.780000px;}
.y99{bottom:340.050000px;}
.y118{bottom:342.120000px;}
.y10b{bottom:342.930000px;}
.y156{bottom:343.380000px;}
.y4e{bottom:345.990000px;}
.yd9{bottom:346.710000px;}
.y1ad{bottom:350.400000px;}
.y21{bottom:350.490000px;}
.y181{bottom:351.300000px;}
.yf6{bottom:354.990000px;}
.y98{bottom:357.600000px;}
.y10a{bottom:360.570000px;}
.y155{bottom:361.020000px;}
.y4d{bottom:363.630000px;}
.y73{bottom:364.080000px;}
.yb0{bottom:367.050000px;}
.yd8{bottom:374.070000px;}
.y1ac{bottom:376.950000px;}
.y117{bottom:377.670000px;}
.y154{bottom:378.570000px;}
.y97{bottom:384.240000px;}
.y109{bottom:387.120000px;}
.yf5{bottom:387.570000px;}
.y4c{bottom:390.180000px;}
.yaf{bottom:394.410000px;}
.y1ab{bottom:394.590000px;}
.y153{bottom:396.120000px;}
.y20{bottom:398.730000px;}
.y180{bottom:399.540000px;}
.y72{bottom:399.720000px;}
.yd7{bottom:401.430000px;}
.y116{bottom:409.890000px;}
.y1aa{bottom:412.140000px;}
.y1f{bottom:416.640000px;}
.y17f{bottom:417.180000px;}
.y71{bottom:417.270000px;}
.y96{bottom:420.150000px;}
.yae{bottom:421.770000px;}
.y108{bottom:422.760000px;}
.yf4{bottom:423.210000px;}
.y4b{bottom:425.730000px;}
.yd6{bottom:428.700000px;}
.y152{bottom:431.760000px;}
.y17e{bottom:434.730000px;}
.y70{bottom:434.820000px;}
.y1a9{bottom:438.690000px;}
.yf3{bottom:440.760000px;}
.y4a{bottom:443.370000px;}
.yad{bottom:449.130000px;}
.y151{bottom:449.310000px;}
.y17d{bottom:452.370000px;}
.y6f{bottom:452.460000px;}
.y1e{bottom:453.720000px;}
.y107{bottom:454.980000px;}
.yd5{bottom:456.060000px;}
.y1a8{bottom:456.330000px;}
.y150{bottom:466.950000px;}
.yf2{bottom:467.400000px;}
.y95{bottom:468.390000px;}
.y49{bottom:469.950000px;}
.y6e{bottom:470.040000px;}
.y1d{bottom:471.300000px;}
.yab{bottom:476.430000px;}
.y1a7{bottom:482.910000px;}
.yd4{bottom:483.450000px;}
.y94{bottom:485.970000px;}
.y17c{bottom:487.500000px;}
.y1c{bottom:488.940000px;}
.y6d{bottom:496.590000px;}
.y1a6{bottom:500.550000px;}
.yf1{bottom:502.260000px;}
.y14f{bottom:502.530000px;}
.y126{bottom:502.800000px;}
.y93{bottom:503.610000px;}
.ya9{bottom:503.790000px;}
.y17b{bottom:505.140000px;}
.y48{bottom:505.590000px;}
.y1b{bottom:506.490000px;}
.yce{bottom:510.810000px;}
.y14e{bottom:520.080000px;}
.y92{bottom:521.160000px;}
.y17a{bottom:522.690000px;}
.y47{bottom:523.140000px;}
.y1a{bottom:524.040000px;}
.y1a5{bottom:527.100000px;}
.y6c{bottom:532.230000px;}
.yf0{bottom:535.020000px;}
.y14d{bottom:537.720000px;}
.yd3{bottom:538.080000px;}
.y91{bottom:538.800000px;}
.y179{bottom:540.330000px;}
.y19{bottom:541.680000px;}
.y1a4{bottom:544.650000px;}
.y46{bottom:549.690000px;}
.y6b{bottom:549.780000px;}
.ya8{bottom:552.480000px;}
.y14c{bottom:555.270000px;}
.yee{bottom:559.050000px;}
.y18{bottom:559.230000px;}
.y90{bottom:565.350000px;}
.yd2{bottom:565.440000px;}
.y6a{bottom:567.420000px;}
.y1a3{bottom:571.290000px;}
.y14b{bottom:572.910000px;}
.y178{bottom:575.880000px;}
.y17{bottom:576.780000px;}
.y69{bottom:584.970000px;}
.ya7{bottom:588.030000px;}
.y1a2{bottom:588.840000px;}
.yd1{bottom:592.800000px;}
.y177{bottom:593.430000px;}
.y16{bottom:594.420000px;}
.y8f{bottom:600.900000px;}
.yeb{bottom:601.170000px;}
.y68{bottom:602.520000px;}
.y45{bottom:605.670000px;}
.y14a{bottom:608.460000px;}
.y176{bottom:611.070000px;}
.y15{bottom:611.970000px;}
.y44{bottom:614.760000px;}
.y1a1{bottom:615.480000px;}
.y122{bottom:618.450000px;}
.y8e{bottom:618.540000px;}
.ya6{bottom:623.220000px;}
.y149{bottom:626.010000px;}
.y175{bottom:628.620000px;}
.y67{bottom:629.160000px;}
.y14{bottom:629.610000px;}
.y1a0{bottom:633.030000px;}
.y8d{bottom:636.090000px;}
.ya5{bottom:640.860000px;}
.ycd{bottom:641.490000px;}
.y148{bottom:643.650000px;}
.y174{bottom:646.260000px;}
.y13{bottom:647.160000px;}
.y8c{bottom:653.730000px;}
.y43{bottom:658.590000px;}
.y19f{bottom:659.580000px;}
.y147{bottom:661.200000px;}
.y66{bottom:661.740000px;}
.y173{bottom:663.810000px;}
.y12{bottom:664.710000px;}
.ya4{bottom:667.410000px;}
.y42{bottom:676.140000px;}
.ycc{bottom:677.040000px;}
.y19e{bottom:677.220000px;}
.y146{bottom:678.840000px;}
.y8b{bottom:680.280000px;}
.y115{bottom:681.090000px;}
.y172{bottom:681.360000px;}
.y11{bottom:682.350000px;}
.y41{bottom:693.690000px;}
.y19d{bottom:694.770000px;}
.y145{bottom:696.390000px;}
.y65{bottom:697.290000px;}
.y114{bottom:698.640000px;}
.y171{bottom:699.000000px;}
.y10{bottom:699.900000px;}
.y121{bottom:700.890000px;}
.ycb{bottom:701.070000px;}
.ya3{bottom:702.960000px;}
.y106{bottom:710.340000px;}
.y40{bottom:711.330000px;}
.y144{bottom:713.940000px;}
.y64{bottom:714.930000px;}
.y8a{bottom:715.830000px;}
.y113{bottom:716.190000px;}
.y170{bottom:716.550000px;}
.yf{bottom:717.540000px;}
.ya2{bottom:720.600000px;}
.y19c{bottom:721.410000px;}
.y105{bottom:727.890000px;}
.yca{bottom:728.340000px;}
.y3f{bottom:728.880000px;}
.y143{bottom:731.580000px;}
.y89{bottom:733.470000px;}
.y112{bottom:733.830000px;}
.y19b{bottom:738.960000px;}
.y63{bottom:741.480000px;}
.ye{bottom:744.450000px;}
.y104{bottom:745.530000px;}
.ya1{bottom:747.150000px;}
.y142{bottom:749.130000px;}
.y88{bottom:751.020000px;}
.y111{bottom:751.380000px;}
.y16f{bottom:752.190000px;}
.y3e{bottom:755.520000px;}
.yc6{bottom:755.700000px;}
.y19a{bottom:765.510000px;}
.y141{bottom:766.770000px;}
.y120{bottom:767.220000px;}
.y16e{bottom:769.740000px;}
.y103{bottom:772.080000px;}
.y62{bottom:777.030000px;}
.y87{bottom:777.570000px;}
.y110{bottom:778.020000px;}
.ya0{bottom:782.790000px;}
.yc9{bottom:783.060000px;}
.y199{bottom:783.150000px;}
.y16d{bottom:787.290000px;}
.y3d{bottom:791.070000px;}
.yd{bottom:792.690000px;}
.y140{bottom:793.590000px;}
.y61{bottom:794.670000px;}
.y11f{bottom:802.770000px;}
.y16c{bottom:804.930000px;}
.yea{bottom:807.540000px;}
.y102{bottom:807.720000px;}
.y3c{bottom:808.620000px;}
.y198{bottom:809.700000px;}
.yc7{bottom:810.420000px;}
.y86{bottom:813.210000px;}
.y10f{bottom:813.570000px;}
.y9f{bottom:815.010000px;}
.y60{bottom:821.220000px;}
.y16b{bottom:822.480000px;}
.y101{bottom:825.270000px;}
.y197{bottom:827.340000px;}
.yc{bottom:828.510000px;}
.y85{bottom:830.760000px;}
.y11e{bottom:834.990000px;}
.y3b{bottom:835.260000px;}
.ye9{bottom:839.580000px;}
.y16a{bottom:840.030000px;}
.y13f{bottom:841.920000px;}
.y196{bottom:844.890000px;}
.y84{bottom:848.400000px;}
.y1bc{bottom:849.030000px;}
.ye8{bottom:853.620000px;}
.yc5{bottom:855.330000px;}
.y5f{bottom:856.860000px;}
.y100{bottom:857.490000px;}
.y169{bottom:857.670000px;}
.yb{bottom:864.510000px;}
.y83{bottom:865.950000px;}
.y1bb{bottom:866.670000px;}
.y3a{bottom:870.810000px;}
.y195{bottom:871.440000px;}
.y5e{bottom:874.410000px;}
.yc4{bottom:882.600000px;}
.y82{bottom:883.500000px;}
.ye7{bottom:886.470000px;}
.y39{bottom:888.450000px;}
.y194{bottom:889.080000px;}
.y168{bottom:893.220000px;}
.ya{bottom:900.510000px;}
.y5d{bottom:900.960000px;}
.y193{bottom:906.630000px;}
.yc3{bottom:909.960000px;}
.y81{bottom:910.140000px;}
.ye5{bottom:910.410000px;}
.y167{bottom:910.860000px;}
.y38{bottom:915.000000px;}
.y9{bottom:918.510000px;}
.y166{bottom:928.410000px;}
.y192{bottom:933.540000px;}
.y5c{bottom:936.600000px;}
.yc2{bottom:937.320000px;}
.y1ba{bottom:937.410000px;}
.y80{bottom:945.690000px;}
.y165{bottom:945.960000px;}
.ye3{bottom:946.770000px;}
.y37{bottom:950.910000px;}
.y5b{bottom:954.150000px;}
.y8{bottom:954.600000px;}
.y1b9{bottom:954.960000px;}
.y164{bottom:963.600000px;}
.yc1{bottom:964.680000px;}
.y7{bottom:973.950000px;}
.y7f{bottom:978.090000px;}
.y5a{bottom:980.790000px;}
.y1b8{bottom:981.600000px;}
.y191{bottom:981.780000px;}
.y7e{bottom:985.650000px;}
.yc0{bottom:991.950000px;}
.y36{bottom:999.150000px;}
.y190{bottom:1008.690000px;}
.y6{bottom:1012.230000px;}
.y59{bottom:1016.370000px;}
.y136{bottom:1016.730000px;}
.y35{bottom:1016.820000px;}
.yba{bottom:1019.340000px;}
.y7d{bottom:1025.370000px;}
.y58{bottom:1033.920000px;}
.y34{bottom:1034.370000px;}
.y7c{bottom:1042.920000px;}
.y9e{bottom:1043.370000px;}
.y18f{bottom:1045.800000px;}
.ybf{bottom:1046.700000px;}
.y5{bottom:1050.210000px;}
.y33{bottom:1051.920000px;}
.y57{bottom:1060.560000px;}
.y9d{bottom:1060.920000px;}
.y18e{bottom:1063.350000px;}
.y32{bottom:1069.560000px;}
.y2{bottom:1071.450000px;}
.ybd{bottom:1073.970000px;}
.y1{bottom:1075.770000px;}
.y9c{bottom:1078.560000px;}
.y31{bottom:1087.110000px;}
.y163{bottom:1087.560000px;}
.y18d{bottom:1090.260000px;}
.y56{bottom:1096.110000px;}
.y162{bottom:1105.110000px;}
.y55{bottom:1113.750000px;}
.y30{bottom:1122.750000px;}
.y18c{bottom:1127.610000px;}
.y2f{bottom:1140.300000px;}
.y2d{bottom:1194.300000px;}
.h2{height:15.662109px;}
.h13{height:26.550000px;}
.h15{height:26.580000px;}
.h14{height:26.640000px;}
.h18{height:26.670000px;}
.h3{height:30.022383px;}
.h1d{height:35.550000px;}
.h4{height:39.155273px;}
.h20{height:41.400000px;}
.h1e{height:41.661211px;}
.h19{height:44.100000px;}
.h17{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:59.973223px;}
.h21{height:60.589687px;}
.ha{height:60.960938px;}
.h29{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h10{height:70.664062px;}
.h26{height:70.740000px;}
.h11{height:70.777617px;}
.h6{height:72.985430px;}
.h22{height:81.720000px;}
.h12{height:82.551445px;}
.hd{height:85.202578px;}
.h16{height:98.820000px;}
.he{height:107.024063px;}
.h1a{height:108.540000px;}
.h1b{height:108.630000px;}
.h23{height:114.930000px;}
.h24{height:114.960000px;}
.h27{height:137.070000px;}
.h28{height:159.150000px;}
.h25{height:181.170000px;}
.h1f{height:184.950000px;}
.h1c{height:207.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:35.910000px;}
.w3{width:56.790000px;}
.w13{width:71.820000px;}
.w11{width:72.840000px;}
.w12{width:75.510000px;}
.w10{width:78.120000px;}
.w5{width:112.710000px;}
.w8{width:113.040000px;}
.wb{width:120.510000px;}
.w6{width:126.480000px;}
.w19{width:131.340000px;}
.wa{width:134.400000px;}
.w4{width:155.430000px;}
.we{width:186.660000px;}
.w1a{width:220.230000px;}
.w9{width:277.650000px;}
.wf{width:300.540000px;}
.w16{width:303.510000px;}
.w14{width:312.420000px;}
.w17{width:330.510000px;}
.w15{width:332.670000px;}
.w1b{width:365.970000px;}
.wd{width:412.770000px;}
.w7{width:534.000000px;}
.wc{width:647.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x13{left:59.130000px;}
.x2{left:68.040000px;}
.x24{left:75.509987px;}
.x30{left:81.359987px;}
.x37{left:105.480000px;}
.x3b{left:111.239987px;}
.x1d{left:123.660000px;}
.x27{left:129.240000px;}
.x34{left:142.649987px;}
.x2b{left:147.720000px;}
.x21{left:152.580000px;}
.x3a{left:159.120000px;}
.x2c{left:160.770000px;}
.x22{left:162.300000px;}
.x23{left:181.559987px;}
.x14{left:186.330000px;}
.x6{left:188.669987px;}
.x2d{left:189.749987px;}
.x4{left:191.459987px;}
.x36{left:196.769987px;}
.x18{left:202.620000px;}
.x3{left:212.070000px;}
.x2e{left:219.719987px;}
.x33{left:231.419987px;}
.x38{left:237.540000px;}
.xc{left:260.039987px;}
.xa{left:272.189987px;}
.x8{left:273.989987px;}
.xf{left:283.440000px;}
.x28{left:295.770000px;}
.x1e{left:304.770000px;}
.x31{left:311.429987px;}
.x2a{left:322.770000px;}
.x20{left:325.020000px;}
.x11{left:340.950000px;}
.xe{left:346.529987px;}
.x7{left:375.779987px;}
.x19{left:390.090000px;}
.x25{left:396.209987px;}
.x29{left:433.470000px;}
.x1f{left:436.890000px;}
.x26{left:446.609987px;}
.x39{left:458.490000px;}
.x16{left:464.700000px;}
.x1a{left:468.930000px;}
.x12{left:497.100000px;}
.x1b{left:542.490000px;}
.x9{left:546.629987px;}
.x17{left:599.820000px;}
.x1c{left:618.810000px;}
.xb{left:659.309987px;}
.xd{left:699.809987px;}
.x32{left:720.059987px;}
.x15{left:721.140000px;}
.x35{left:778.559987px;}
.x5{left:808.619987px;}
.x2f{left:813.389987px;}
.x1{left:826.350000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.v5{vertical-align:32.320000pt;}
.v4{vertical-align:37.440000pt;}
.ls10{letter-spacing:-0.395200pt;}
.ls25{letter-spacing:-0.266133pt;}
.ls1c{letter-spacing:-0.250667pt;}
.lse{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.120000pt;}
.ls28{letter-spacing:-0.111467pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls29{letter-spacing:-0.090133pt;}
.lsb{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.062933pt;}
.ls22{letter-spacing:-0.057600pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls24{letter-spacing:-0.035840pt;}
.ls16{letter-spacing:-0.018560pt;}
.ls1f{letter-spacing:-0.013120pt;}
.ls2d{letter-spacing:-0.011840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.037760pt;}
.ls8{letter-spacing:0.040320pt;}
.ls2a{letter-spacing:0.042240pt;}
.ls13{letter-spacing:0.043520pt;}
.ls1e{letter-spacing:0.049920pt;}
.ls6{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.066133pt;}
.ls1d{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.086720pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.142400pt;}
.lsf{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161067pt;}
.ls23{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls7{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:4.800000pt;}
.ls3{letter-spacing:5.356800pt;}
.ls19{letter-spacing:9.920000pt;}
.ls14{letter-spacing:14.464000pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls2b{letter-spacing:71.863680pt;}
.ws12{word-spacing:-34.609920pt;}
.wsa{word-spacing:-14.144000pt;}
.ws6{word-spacing:-12.775467pt;}
.ws1a{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.822933pt;}
.wsc{word-spacing:-11.810667pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1d{word-spacing:-11.799040pt;}
.ws15{word-spacing:-11.794560pt;}
.ws3{word-spacing:-11.756800pt;}
.ws1e{word-spacing:-11.744960pt;}
.ws13{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.700267pt;}
.ws17{word-spacing:-11.699200pt;}
.ws16{word-spacing:-11.693867pt;}
.ws1c{word-spacing:-11.666667pt;}
.ws2{word-spacing:-11.590933pt;}
.ws9{word-spacing:-9.978240pt;}
.ws18{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-8.236800pt;}
.wse{word-spacing:-7.986133pt;}
.ws5{word-spacing:-7.657067pt;}
.ws11{word-spacing:-7.653120pt;}
.wsd{word-spacing:-7.603200pt;}
.ws19{word-spacing:-7.337067pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:48.387200pt;}
.ws14{word-spacing:50.266880pt;}
._15{margin-left:-11.027733pt;}
._16{margin-left:-8.473280pt;}
._17{margin-left:-3.918813pt;}
._10{margin-left:-2.973334pt;}
._7{margin-left:-2.084267pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.899936pt;}
._9{width:2.511466pt;}
._d{width:3.687467pt;}
._b{width:4.799893pt;}
._c{width:5.788695pt;}
._6{width:7.481600pt;}
._11{width:9.138133pt;}
._4{width:10.794666pt;}
._13{width:12.833824pt;}
._8{width:13.894400pt;}
._3{width:15.342954pt;}
._14{width:17.100800pt;}
._e{width:18.490133pt;}
._f{width:19.521494pt;}
._19{width:23.494187pt;}
._18{width:24.494933pt;}
._1f{width:26.933760pt;}
._1a{width:28.964480pt;}
._21{width:30.868907pt;}
._20{width:31.762773pt;}
._1{width:36.396800pt;}
._1c{width:38.388160pt;}
._a{width:43.393066pt;}
._1d{width:44.462080pt;}
._1b{width:51.556160pt;}
._1e{width:54.829440pt;}
._12{width:136.459093pt;}
._5{width:1872.721813pt;}
.fs0{font-size:16.000000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fsa{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:2.000000pt;}
.ye6{bottom:2.960000pt;}
.yaa{bottom:6.960000pt;}
.yac{bottom:7.040000pt;}
.yec{bottom:18.400000pt;}
.yed{bottom:20.400000pt;}
.yef{bottom:21.840000pt;}
.yc8{bottom:22.560000pt;}
.ybe{bottom:22.640000pt;}
.y125{bottom:24.720000pt;}
.y135{bottom:30.560000pt;}
.y12c{bottom:38.560000pt;}
.y124{bottom:40.320000pt;}
.y134{bottom:46.240000pt;}
.y129{bottom:54.240000pt;}
.ybc{bottom:55.600000pt;}
.y123{bottom:56.000000pt;}
.y13a{bottom:58.240000pt;}
.yd0{bottom:60.240000pt;}
.ydc{bottom:60.320000pt;}
.y4{bottom:65.226667pt;}
.y2e{bottom:65.946667pt;}
.y12b{bottom:69.840000pt;}
.y128{bottom:69.920000pt;}
.ybb{bottom:71.200000pt;}
.y139{bottom:73.920000pt;}
.y13e{bottom:77.920000pt;}
.ycf{bottom:79.840000pt;}
.ydb{bottom:79.920000pt;}
.y132{bottom:81.920000pt;}
.y127{bottom:85.520000pt;}
.y12a{bottom:85.546667pt;}
.y138{bottom:89.520000pt;}
.y3{bottom:90.346667pt;}
.y13d{bottom:93.520000pt;}
.y131{bottom:97.520000pt;}
.y161{bottom:101.306667pt;}
.y137{bottom:105.200000pt;}
.y1b7{bottom:107.546667pt;}
.y13c{bottom:109.200000pt;}
.y130{bottom:113.200000pt;}
.y2c{bottom:115.306667pt;}
.y160{bottom:116.906667pt;}
.y133{bottom:118.826667pt;}
.yb9{bottom:120.586667pt;}
.y1b6{bottom:123.146667pt;}
.y13b{bottom:124.800000pt;}
.y9b{bottom:128.586667pt;}
.y12f{bottom:128.800000pt;}
.y2b{bottom:130.986667pt;}
.y15f{bottom:132.586667pt;}
.ye2{bottom:133.146667pt;}
.yb8{bottom:136.266667pt;}
.yff{bottom:142.906667pt;}
.y12e{bottom:144.400000pt;}
.y2a{bottom:146.586667pt;}
.y1b5{bottom:146.746667pt;}
.y18b{bottom:147.706667pt;}
.y15e{bottom:148.186667pt;}
.yb7{bottom:151.866667pt;}
.y7b{bottom:153.386667pt;}
.y9a{bottom:157.226667pt;}
.yfe{bottom:158.506667pt;}
.y29{bottom:162.186667pt;}
.ye1{bottom:162.426667pt;}
.y18a{bottom:163.306667pt;}
.y15d{bottom:163.866667pt;}
.y54{bottom:165.786667pt;}
.yfd{bottom:174.186667pt;}
.yb6{bottom:175.466667pt;}
.y28{bottom:177.866667pt;}
.y1b4{bottom:178.026667pt;}
.y189{bottom:178.906667pt;}
.y15c{bottom:179.466667pt;}
.y53{bottom:181.386667pt;}
.y7a{bottom:182.106667pt;}
.y12d{bottom:182.346667pt;}
.ye0{bottom:186.746667pt;}
.y79{bottom:188.826667pt;}
.yfc{bottom:189.786667pt;}
.y27{bottom:193.466667pt;}
.y188{bottom:194.586667pt;}
.y1b3{bottom:201.626667pt;}
.yb5{bottom:204.826667pt;}
.y52{bottom:205.066667pt;}
.y187{bottom:210.186667pt;}
.yda{bottom:210.986667pt;}
.y15b{bottom:211.066667pt;}
.yfb{bottom:213.386667pt;}
.y1b2{bottom:217.306667pt;}
.y11d{bottom:217.946667pt;}
.y78{bottom:224.106667pt;}
.y26{bottom:225.066667pt;}
.y186{bottom:225.866667pt;}
.y15a{bottom:226.746667pt;}
.yb4{bottom:229.066667pt;}
.y11c{bottom:233.546667pt;}
.ydf{bottom:235.306667pt;}
.y51{bottom:236.666667pt;}
.y77{bottom:239.786667pt;}
.y25{bottom:240.746667pt;}
.y1b1{bottom:240.906667pt;}
.y185{bottom:241.466667pt;}
.y159{bottom:242.346667pt;}
.yfa{bottom:245.066667pt;}
.y11b{bottom:249.226667pt;}
.y50{bottom:252.266667pt;}
.yb3{bottom:253.386667pt;}
.y76{bottom:255.386667pt;}
.y24{bottom:256.346667pt;}
.y1b0{bottom:256.586667pt;}
.y184{bottom:257.066667pt;}
.y10e{bottom:257.946667pt;}
.yde{bottom:259.626667pt;}
.yf9{bottom:260.666667pt;}
.y11a{bottom:264.826667pt;}
.y75{bottom:271.066667pt;}
.y23{bottom:272.026667pt;}
.y1af{bottom:272.186667pt;}
.y183{bottom:272.746667pt;}
.y10d{bottom:273.626667pt;}
.y158{bottom:273.946667pt;}
.y4f{bottom:275.946667pt;}
.yf8{bottom:276.346667pt;}
.yb2{bottom:277.706667pt;}
.y119{bottom:280.426667pt;}
.ydd{bottom:283.946667pt;}
.y22{bottom:287.626667pt;}
.y182{bottom:288.346667pt;}
.y10c{bottom:289.226667pt;}
.y157{bottom:289.626667pt;}
.yf7{bottom:291.946667pt;}
.y74{bottom:294.666667pt;}
.y1ae{bottom:295.786667pt;}
.yb1{bottom:302.026667pt;}
.y99{bottom:302.266667pt;}
.y118{bottom:304.106667pt;}
.y10b{bottom:304.826667pt;}
.y156{bottom:305.226667pt;}
.y4e{bottom:307.546667pt;}
.yd9{bottom:308.186667pt;}
.y1ad{bottom:311.466667pt;}
.y21{bottom:311.546667pt;}
.y181{bottom:312.266667pt;}
.yf6{bottom:315.546667pt;}
.y98{bottom:317.866667pt;}
.y10a{bottom:320.506667pt;}
.y155{bottom:320.906667pt;}
.y4d{bottom:323.226667pt;}
.y73{bottom:323.626667pt;}
.yb0{bottom:326.266667pt;}
.yd8{bottom:332.506667pt;}
.y1ac{bottom:335.066667pt;}
.y117{bottom:335.706667pt;}
.y154{bottom:336.506667pt;}
.y97{bottom:341.546667pt;}
.y109{bottom:344.106667pt;}
.yf5{bottom:344.506667pt;}
.y4c{bottom:346.826667pt;}
.yaf{bottom:350.586667pt;}
.y1ab{bottom:350.746667pt;}
.y153{bottom:352.106667pt;}
.y20{bottom:354.426667pt;}
.y180{bottom:355.146667pt;}
.y72{bottom:355.306667pt;}
.yd7{bottom:356.826667pt;}
.y116{bottom:364.346667pt;}
.y1aa{bottom:366.346667pt;}
.y1f{bottom:370.346667pt;}
.y17f{bottom:370.826667pt;}
.y71{bottom:370.906667pt;}
.y96{bottom:373.466667pt;}
.yae{bottom:374.906667pt;}
.y108{bottom:375.786667pt;}
.yf4{bottom:376.186667pt;}
.y4b{bottom:378.426667pt;}
.yd6{bottom:381.066667pt;}
.y152{bottom:383.786667pt;}
.y17e{bottom:386.426667pt;}
.y70{bottom:386.506667pt;}
.y1a9{bottom:389.946667pt;}
.yf3{bottom:391.786667pt;}
.y4a{bottom:394.106667pt;}
.yad{bottom:399.226667pt;}
.y151{bottom:399.386667pt;}
.y17d{bottom:402.106667pt;}
.y6f{bottom:402.186667pt;}
.y1e{bottom:403.306667pt;}
.y107{bottom:404.426667pt;}
.yd5{bottom:405.386667pt;}
.y1a8{bottom:405.626667pt;}
.y150{bottom:415.066667pt;}
.yf2{bottom:415.466667pt;}
.y95{bottom:416.346667pt;}
.y49{bottom:417.733333pt;}
.y6e{bottom:417.813333pt;}
.y1d{bottom:418.933333pt;}
.yab{bottom:423.493333pt;}
.y1a7{bottom:429.253333pt;}
.yd4{bottom:429.733333pt;}
.y94{bottom:431.973333pt;}
.y17c{bottom:433.333333pt;}
.y1c{bottom:434.613333pt;}
.y6d{bottom:441.413333pt;}
.y1a6{bottom:444.933333pt;}
.yf1{bottom:446.453333pt;}
.y14f{bottom:446.693333pt;}
.y126{bottom:446.933333pt;}
.y93{bottom:447.653333pt;}
.ya9{bottom:447.813333pt;}
.y17b{bottom:449.013333pt;}
.y48{bottom:449.413333pt;}
.y1b{bottom:450.213333pt;}
.yce{bottom:454.053333pt;}
.y14e{bottom:462.293333pt;}
.y92{bottom:463.253333pt;}
.y17a{bottom:464.613333pt;}
.y47{bottom:465.013333pt;}
.y1a{bottom:465.813333pt;}
.y1a5{bottom:468.533333pt;}
.y6c{bottom:473.093333pt;}
.yf0{bottom:475.573333pt;}
.y14d{bottom:477.973333pt;}
.yd3{bottom:478.293333pt;}
.y91{bottom:478.933333pt;}
.y179{bottom:480.293333pt;}
.y19{bottom:481.493333pt;}
.y1a4{bottom:484.133333pt;}
.y46{bottom:488.613333pt;}
.y6b{bottom:488.693333pt;}
.ya8{bottom:491.093333pt;}
.y14c{bottom:493.573333pt;}
.yee{bottom:496.933333pt;}
.y18{bottom:497.093333pt;}
.y90{bottom:502.533333pt;}
.yd2{bottom:502.613333pt;}
.y6a{bottom:504.373333pt;}
.y1a3{bottom:507.813333pt;}
.y14b{bottom:509.253333pt;}
.y178{bottom:511.893333pt;}
.y17{bottom:512.693333pt;}
.y69{bottom:519.973333pt;}
.ya7{bottom:522.693333pt;}
.y1a2{bottom:523.413333pt;}
.yd1{bottom:526.933333pt;}
.y177{bottom:527.493333pt;}
.y16{bottom:528.373333pt;}
.y8f{bottom:534.133333pt;}
.yeb{bottom:534.373333pt;}
.y68{bottom:535.573333pt;}
.y45{bottom:538.373333pt;}
.y14a{bottom:540.853333pt;}
.y176{bottom:543.173333pt;}
.y15{bottom:543.973333pt;}
.y44{bottom:546.453333pt;}
.y1a1{bottom:547.093333pt;}
.y122{bottom:549.733333pt;}
.y8e{bottom:549.813333pt;}
.ya6{bottom:553.973333pt;}
.y149{bottom:556.453333pt;}
.y175{bottom:558.773333pt;}
.y67{bottom:559.253333pt;}
.y14{bottom:559.653333pt;}
.y1a0{bottom:562.693333pt;}
.y8d{bottom:565.413333pt;}
.ya5{bottom:569.653333pt;}
.ycd{bottom:570.213333pt;}
.y148{bottom:572.133333pt;}
.y174{bottom:574.453333pt;}
.y13{bottom:575.253333pt;}
.y8c{bottom:581.093333pt;}
.y43{bottom:585.413333pt;}
.y19f{bottom:586.293333pt;}
.y147{bottom:587.733333pt;}
.y66{bottom:588.213333pt;}
.y173{bottom:590.053333pt;}
.y12{bottom:590.853333pt;}
.ya4{bottom:593.253333pt;}
.y42{bottom:601.013333pt;}
.ycc{bottom:601.813333pt;}
.y19e{bottom:601.973333pt;}
.y146{bottom:603.413333pt;}
.y8b{bottom:604.693333pt;}
.y115{bottom:605.413333pt;}
.y172{bottom:605.653333pt;}
.y11{bottom:606.533333pt;}
.y41{bottom:616.613333pt;}
.y19d{bottom:617.573333pt;}
.y145{bottom:619.013333pt;}
.y65{bottom:619.813333pt;}
.y114{bottom:621.013333pt;}
.y171{bottom:621.333333pt;}
.y10{bottom:622.133333pt;}
.y121{bottom:623.013333pt;}
.ycb{bottom:623.173333pt;}
.ya3{bottom:624.853333pt;}
.y106{bottom:631.413333pt;}
.y40{bottom:632.293333pt;}
.y144{bottom:634.613333pt;}
.y64{bottom:635.493333pt;}
.y8a{bottom:636.293333pt;}
.y113{bottom:636.613333pt;}
.y170{bottom:636.933333pt;}
.yf{bottom:637.813333pt;}
.ya2{bottom:640.533333pt;}
.y19c{bottom:641.253333pt;}
.y105{bottom:647.013333pt;}
.yca{bottom:647.413333pt;}
.y3f{bottom:647.893333pt;}
.y143{bottom:650.293333pt;}
.y89{bottom:651.973333pt;}
.y112{bottom:652.293333pt;}
.y19b{bottom:656.853333pt;}
.y63{bottom:659.093333pt;}
.ye{bottom:661.733333pt;}
.y104{bottom:662.693333pt;}
.ya1{bottom:664.133333pt;}
.y142{bottom:665.893333pt;}
.y88{bottom:667.573333pt;}
.y111{bottom:667.893333pt;}
.y16f{bottom:668.613333pt;}
.y3e{bottom:671.573333pt;}
.yc6{bottom:671.733333pt;}
.y19a{bottom:680.453333pt;}
.y141{bottom:681.573333pt;}
.y120{bottom:681.973333pt;}
.y16e{bottom:684.213333pt;}
.y103{bottom:686.293333pt;}
.y62{bottom:690.693333pt;}
.y87{bottom:691.173333pt;}
.y110{bottom:691.573333pt;}
.ya0{bottom:695.813333pt;}
.yc9{bottom:696.053333pt;}
.y199{bottom:696.133333pt;}
.y16d{bottom:699.813333pt;}
.y3d{bottom:703.173333pt;}
.yd{bottom:704.613333pt;}
.y140{bottom:705.413333pt;}
.y61{bottom:706.373333pt;}
.y11f{bottom:713.573333pt;}
.y16c{bottom:715.493333pt;}
.yea{bottom:717.813333pt;}
.y102{bottom:717.973333pt;}
.y3c{bottom:718.773333pt;}
.y198{bottom:719.733333pt;}
.yc7{bottom:720.373333pt;}
.y86{bottom:722.853333pt;}
.y10f{bottom:723.173333pt;}
.y9f{bottom:724.453333pt;}
.y60{bottom:729.973333pt;}
.y16b{bottom:731.093333pt;}
.y101{bottom:733.573333pt;}
.y197{bottom:735.413333pt;}
.yc{bottom:736.453333pt;}
.y85{bottom:738.453333pt;}
.y11e{bottom:742.213333pt;}
.y3b{bottom:742.453333pt;}
.ye9{bottom:746.293333pt;}
.y16a{bottom:746.693333pt;}
.y13f{bottom:748.373333pt;}
.y196{bottom:751.013333pt;}
.y84{bottom:754.133333pt;}
.y1bc{bottom:754.693333pt;}
.ye8{bottom:758.773333pt;}
.yc5{bottom:760.293333pt;}
.y5f{bottom:761.653333pt;}
.y100{bottom:762.213333pt;}
.y169{bottom:762.373333pt;}
.yb{bottom:768.453333pt;}
.y83{bottom:769.733333pt;}
.y1bb{bottom:770.373333pt;}
.y3a{bottom:774.053333pt;}
.y195{bottom:774.613333pt;}
.y5e{bottom:777.253333pt;}
.yc4{bottom:784.533333pt;}
.y82{bottom:785.333333pt;}
.ye7{bottom:787.973333pt;}
.y39{bottom:789.733333pt;}
.y194{bottom:790.293333pt;}
.y168{bottom:793.973333pt;}
.ya{bottom:800.453333pt;}
.y5d{bottom:800.853333pt;}
.y193{bottom:805.893333pt;}
.yc3{bottom:808.853333pt;}
.y81{bottom:809.013333pt;}
.ye5{bottom:809.253333pt;}
.y167{bottom:809.653333pt;}
.y38{bottom:813.333333pt;}
.y9{bottom:816.453333pt;}
.y166{bottom:825.253333pt;}
.y192{bottom:829.813333pt;}
.y5c{bottom:832.533333pt;}
.yc2{bottom:833.173333pt;}
.y1ba{bottom:833.253333pt;}
.y80{bottom:840.613333pt;}
.y165{bottom:840.853333pt;}
.ye3{bottom:841.573333pt;}
.y37{bottom:845.253333pt;}
.y5b{bottom:848.133333pt;}
.y8{bottom:848.533333pt;}
.y1b9{bottom:848.853333pt;}
.y164{bottom:856.533333pt;}
.yc1{bottom:857.493333pt;}
.y7{bottom:865.733333pt;}
.y7f{bottom:869.413333pt;}
.y5a{bottom:871.813333pt;}
.y1b8{bottom:872.533333pt;}
.y191{bottom:872.693333pt;}
.y7e{bottom:876.133333pt;}
.yc0{bottom:881.733333pt;}
.y36{bottom:888.133333pt;}
.y190{bottom:896.613333pt;}
.y6{bottom:899.760000pt;}
.y59{bottom:903.440000pt;}
.y136{bottom:903.760000pt;}
.y35{bottom:903.840000pt;}
.yba{bottom:906.080000pt;}
.y7d{bottom:911.440000pt;}
.y58{bottom:919.040000pt;}
.y34{bottom:919.440000pt;}
.y7c{bottom:927.040000pt;}
.y9e{bottom:927.440000pt;}
.y18f{bottom:929.600000pt;}
.ybf{bottom:930.400000pt;}
.y5{bottom:933.520000pt;}
.y33{bottom:935.040000pt;}
.y57{bottom:942.720000pt;}
.y9d{bottom:943.040000pt;}
.y18e{bottom:945.200000pt;}
.y32{bottom:950.720000pt;}
.y2{bottom:952.400000pt;}
.ybd{bottom:954.640000pt;}
.y1{bottom:956.240000pt;}
.y9c{bottom:958.720000pt;}
.y31{bottom:966.320000pt;}
.y163{bottom:966.720000pt;}
.y18d{bottom:969.120000pt;}
.y56{bottom:974.320000pt;}
.y162{bottom:982.320000pt;}
.y55{bottom:990.000000pt;}
.y30{bottom:998.000000pt;}
.y18c{bottom:1002.320000pt;}
.y2f{bottom:1013.600000pt;}
.y2d{bottom:1061.600000pt;}
.h2{height:13.921875pt;}
.h13{height:23.600000pt;}
.h15{height:23.626667pt;}
.h14{height:23.680000pt;}
.h18{height:23.706667pt;}
.h3{height:26.686562pt;}
.h1d{height:31.600000pt;}
.h4{height:34.804688pt;}
.h20{height:36.800000pt;}
.h1e{height:37.032187pt;}
.h19{height:39.200000pt;}
.h17{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:53.309531pt;}
.h21{height:53.857500pt;}
.ha{height:54.187500pt;}
.h29{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h10{height:62.812500pt;}
.h26{height:62.880000pt;}
.h11{height:62.913437pt;}
.h6{height:64.875937pt;}
.h22{height:72.640000pt;}
.h12{height:73.379063pt;}
.hd{height:75.735625pt;}
.h16{height:87.840000pt;}
.he{height:95.132500pt;}
.h1a{height:96.480000pt;}
.h1b{height:96.560000pt;}
.h23{height:102.160000pt;}
.h24{height:102.186667pt;}
.h27{height:121.840000pt;}
.h28{height:141.466667pt;}
.h25{height:161.040000pt;}
.h1f{height:164.400000pt;}
.h1c{height:184.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:31.920000pt;}
.w3{width:50.480000pt;}
.w13{width:63.840000pt;}
.w11{width:64.746667pt;}
.w12{width:67.120000pt;}
.w10{width:69.440000pt;}
.w5{width:100.186667pt;}
.w8{width:100.480000pt;}
.wb{width:107.120000pt;}
.w6{width:112.426667pt;}
.w19{width:116.746667pt;}
.wa{width:119.466667pt;}
.w4{width:138.160000pt;}
.we{width:165.920000pt;}
.w1a{width:195.760000pt;}
.w9{width:246.800000pt;}
.wf{width:267.146667pt;}
.w16{width:269.786667pt;}
.w14{width:277.706667pt;}
.w17{width:293.786667pt;}
.w15{width:295.706667pt;}
.w1b{width:325.306667pt;}
.wd{width:366.906667pt;}
.w7{width:474.666667pt;}
.wc{width:575.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x13{left:52.560000pt;}
.x2{left:60.480000pt;}
.x24{left:67.119988pt;}
.x30{left:72.319988pt;}
.x37{left:93.760000pt;}
.x3b{left:98.879988pt;}
.x1d{left:109.920000pt;}
.x27{left:114.880000pt;}
.x34{left:126.799988pt;}
.x2b{left:131.306667pt;}
.x21{left:135.626667pt;}
.x3a{left:141.440000pt;}
.x2c{left:142.906667pt;}
.x22{left:144.266667pt;}
.x23{left:161.386655pt;}
.x14{left:165.626667pt;}
.x6{left:167.706655pt;}
.x2d{left:168.666655pt;}
.x4{left:170.186655pt;}
.x36{left:174.906655pt;}
.x18{left:180.106667pt;}
.x3{left:188.506667pt;}
.x2e{left:195.306655pt;}
.x33{left:205.706655pt;}
.x38{left:211.146667pt;}
.xc{left:231.146655pt;}
.xa{left:241.946655pt;}
.x8{left:243.546655pt;}
.xf{left:251.946667pt;}
.x28{left:262.906667pt;}
.x1e{left:270.906667pt;}
.x31{left:276.826655pt;}
.x2a{left:286.906667pt;}
.x20{left:288.906667pt;}
.x11{left:303.066667pt;}
.xe{left:308.026655pt;}
.x7{left:334.026655pt;}
.x19{left:346.746667pt;}
.x25{left:352.186655pt;}
.x29{left:385.306667pt;}
.x1f{left:388.346667pt;}
.x26{left:396.986655pt;}
.x39{left:407.546667pt;}
.x16{left:413.066667pt;}
.x1a{left:416.826667pt;}
.x12{left:441.866667pt;}
.x1b{left:482.213333pt;}
.x9{left:485.893322pt;}
.x17{left:533.173333pt;}
.x1c{left:550.053333pt;}
.xb{left:586.053322pt;}
.xd{left:622.053322pt;}
.x32{left:640.053322pt;}
.x15{left:641.013333pt;}
.x35{left:692.053322pt;}
.x5{left:718.773322pt;}
.x2f{left:723.013322pt;}
.x1{left:734.533333pt;}
}




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