
    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_5159da01df0ba93ad237d69a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_dce74022c0acd1e7e5aef540.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_ba414190ab1f81299ce2ac63.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_947ca55ea4cf07cf70302df7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b46a7b94bb0b4ab675241c84.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_89a400e00f87f3549e5e9f72.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bebca4bf4589a9f89dc2829c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_396c2be9a80dd7b5e7dccce7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.909180;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vc{vertical-align:-79.920000px;}
.v7{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-13.680000px;}
.v3{vertical-align:-12.240000px;}
.vd{vertical-align:-8.640000px;}
.vb{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:28.080000px;}
.v8{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.v9{vertical-align:52.560000px;}
.ls1e{letter-spacing:-2.520000px;}
.lse{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.179280px;}
.ls1a{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.323400px;}
.ls1d{letter-spacing:0.331800px;}
.ls29{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.345600px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.379920px;}
.ls1f{letter-spacing:0.480000px;}
.ls20{letter-spacing:1.620000px;}
.ls18{letter-spacing:2.460960px;}
.ls17{letter-spacing:3.945600px;}
.ls14{letter-spacing:11.815680px;}
.ls27{letter-spacing:16.506720px;}
.ls10{letter-spacing:17.279280px;}
.lsf{letter-spacing:20.505600px;}
.ls13{letter-spacing:22.319280px;}
.ls2a{letter-spacing:25.308000px;}
.ls11{letter-spacing:40.429440px;}
.ls26{letter-spacing:46.026720px;}
.ls23{letter-spacing:46.170720px;}
.ls12{letter-spacing:71.455680px;}
.ls15{letter-spacing:1274.160000px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.120000px;}
.ws16{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws1b{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.479000px;}
.ws14{word-spacing:-13.470600px;}
.wsd{word-spacing:-13.147200px;}
.ws17{word-spacing:-12.420000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.wse{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:7.838400px;}
.ws12{word-spacing:8.438400px;}
.ws15{word-spacing:8.452080px;}
.wsf{word-spacing:11.318400px;}
.ws11{word-spacing:68.153760px;}
._17{margin-left:-7.142880px;}
._c{margin-left:-4.095360px;}
._7{margin-left:-2.421360px;}
._2{margin-left:-1.152000px;}
._0{width:1.317600px;}
._5{width:2.986080px;}
._d{width:4.242960px;}
._b{width:5.483760px;}
._6{width:6.812640px;}
._9{width:7.908480px;}
._8{width:9.083520px;}
._a{width:10.275840px;}
._f{width:11.294640px;}
._e{width:12.489840px;}
._14{width:13.858560px;}
._16{width:16.135200px;}
._15{width:18.286560px;}
._13{width:19.302480px;}
._10{width:24.618240px;}
._12{width:25.935840px;}
._11{width:28.383120px;}
._3{width:33.803280px;}
._4{width:35.213520px;}
._18{width:181.442640px;}
._1{width:1100.028000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y3c{bottom:5.760000px;}
.ye7{bottom:5.790000px;}
.yfb{bottom:5.805000px;}
.ye5{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y3a{bottom:10.980000px;}
.y52{bottom:25.605000px;}
.y39{bottom:30.825000px;}
.y6{bottom:36.000000px;}
.y51{bottom:45.405000px;}
.y180{bottom:46.980000px;}
.y38{bottom:50.805000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y50{bottom:65.385000px;}
.y153{bottom:68.220000px;}
.y37{bottom:70.605000px;}
.y17f{bottom:76.860000px;}
.y1d2{bottom:78.300000px;}
.y21{bottom:81.540000px;}
.y4{bottom:81.720000px;}
.y1b8{bottom:84.240000px;}
.y4f{bottom:85.185000px;}
.ye2{bottom:85.500000px;}
.y8a{bottom:86.580000px;}
.y134{bottom:87.480000px;}
.yfe{bottom:88.020000px;}
.yf7{bottom:88.065000px;}
.yec{bottom:88.200000px;}
.ye3{bottom:88.230000px;}
.y140{bottom:88.245000px;}
.y36{bottom:90.405000px;}
.ybb{bottom:91.980000px;}
.y123{bottom:95.040000px;}
.y182{bottom:97.560000px;}
.y1d1{bottom:98.100000px;}
.y20{bottom:101.340000px;}
.y1b7{bottom:104.040000px;}
.y4e{bottom:104.985000px;}
.ye9{bottom:106.020000px;}
.y89{bottom:106.380000px;}
.y133{bottom:107.280000px;}
.y9{bottom:108.570000px;}
.y35{bottom:110.205000px;}
.yba{bottom:111.780000px;}
.y122{bottom:115.020000px;}
.y186{bottom:115.380000px;}
.y1d0{bottom:117.900000px;}
.y181{bottom:118.080000px;}
.y3{bottom:118.110000px;}
.y1f{bottom:121.140000px;}
.y1b6{bottom:124.020000px;}
.y4d{bottom:124.785000px;}
.y88{bottom:126.180000px;}
.ye8{bottom:126.720000px;}
.y132{bottom:127.260000px;}
.y34{bottom:130.005000px;}
.y8{bottom:130.530000px;}
.yb9{bottom:131.760000px;}
.y121{bottom:134.820000px;}
.y185{bottom:135.180000px;}
.y1cf{bottom:137.700000px;}
.y17a{bottom:138.600000px;}
.y1e{bottom:141.120000px;}
.y1b5{bottom:143.820000px;}
.y4c{bottom:144.585000px;}
.y87{bottom:145.980000px;}
.y131{bottom:147.060000px;}
.ye6{bottom:147.240000px;}
.y33{bottom:149.985000px;}
.y120{bottom:154.650000px;}
.y184{bottom:155.010000px;}
.y1ce{bottom:157.710000px;}
.y17e{bottom:159.330000px;}
.yb8{bottom:160.590000px;}
.y1d{bottom:160.950000px;}
.y1b4{bottom:163.650000px;}
.y4b{bottom:164.565000px;}
.y86{bottom:165.810000px;}
.y130{bottom:166.890000px;}
.ye4{bottom:167.790000px;}
.y32{bottom:169.785000px;}
.y11f{bottom:174.450000px;}
.y183{bottom:174.810000px;}
.y1cd{bottom:177.510000px;}
.y17d{bottom:179.850000px;}
.yb7{bottom:180.390000px;}
.y1c{bottom:180.750000px;}
.y1b3{bottom:183.450000px;}
.y4a{bottom:184.365000px;}
.y12f{bottom:186.690000px;}
.ye1{bottom:188.490000px;}
.y31{bottom:189.585000px;}
.y11e{bottom:194.250000px;}
.y85{bottom:194.790000px;}
.y1cc{bottom:197.310000px;}
.y1b2{bottom:198.210000px;}
.yb6{bottom:200.190000px;}
.y17c{bottom:200.370000px;}
.y1b{bottom:200.550000px;}
.y49{bottom:204.165000px;}
.y12e{bottom:206.490000px;}
.y30{bottom:209.385000px;}
.y11d{bottom:214.230000px;}
.y84{bottom:214.590000px;}
.ye0{bottom:214.770000px;}
.y1cb{bottom:217.110000px;}
.y1b1{bottom:218.910000px;}
.yb5{bottom:219.990000px;}
.y1a{bottom:220.350000px;}
.y17b{bottom:221.070000px;}
.y48{bottom:223.965000px;}
.y12d{bottom:226.470000px;}
.y2f{bottom:229.185000px;}
.y11c{bottom:234.030000px;}
.y83{bottom:234.390000px;}
.ydf{bottom:234.750000px;}
.y1ca{bottom:236.910000px;}
.y1b0{bottom:239.430000px;}
.yb4{bottom:239.970000px;}
.y19{bottom:240.330000px;}
.y179{bottom:241.590000px;}
.y47{bottom:243.765000px;}
.y12c{bottom:246.270000px;}
.y2e{bottom:249.165000px;}
.y11b{bottom:253.830000px;}
.y82{bottom:254.190000px;}
.yde{bottom:254.550000px;}
.y1c9{bottom:256.890000px;}
.yb3{bottom:259.770000px;}
.y1af{bottom:259.950000px;}
.y18{bottom:260.130000px;}
.y46{bottom:263.745000px;}
.y12b{bottom:266.070000px;}
.y178{bottom:268.050000px;}
.y2d{bottom:268.965000px;}
.y11a{bottom:273.630000px;}
.y81{bottom:273.990000px;}
.ydd{bottom:274.350000px;}
.y1c8{bottom:276.690000px;}
.yb2{bottom:279.570000px;}
.y17{bottom:279.930000px;}
.y1ae{bottom:280.650000px;}
.y45{bottom:283.575000px;}
.y12a{bottom:285.870000px;}
.y177{bottom:287.850000px;}
.y2c{bottom:288.795000px;}
.y119{bottom:293.430000px;}
.y80{bottom:293.970000px;}
.ydc{bottom:294.150000px;}
.y1c7{bottom:296.490000px;}
.yb1{bottom:299.370000px;}
.y16{bottom:299.730000px;}
.y1ad{bottom:301.170000px;}
.y44{bottom:303.375000px;}
.y129{bottom:305.670000px;}
.y176{bottom:307.650000px;}
.y2b{bottom:308.595000px;}
.y118{bottom:313.410000px;}
.y7f{bottom:313.770000px;}
.ydb{bottom:313.950000px;}
.y1c6{bottom:316.290000px;}
.yb0{bottom:319.170000px;}
.y15{bottom:319.530000px;}
.y1ac{bottom:321.690000px;}
.y43{bottom:323.175000px;}
.y128{bottom:325.650000px;}
.y175{bottom:327.630000px;}
.y2a{bottom:328.395000px;}
.y117{bottom:333.210000px;}
.y7e{bottom:333.570000px;}
.yda{bottom:333.750000px;}
.y1c5{bottom:336.090000px;}
.yaf{bottom:339.150000px;}
.y14{bottom:339.330000px;}
.y1aa{bottom:342.390000px;}
.y42{bottom:342.975000px;}
.y127{bottom:345.450000px;}
.y174{bottom:347.430000px;}
.y29{bottom:348.375000px;}
.yd9{bottom:352.650000px;}
.y116{bottom:353.010000px;}
.y7d{bottom:353.370000px;}
.y1c4{bottom:356.070000px;}
.yae{bottom:358.950000px;}
.y13{bottom:359.310000px;}
.y1ab{bottom:362.910000px;}
.y41{bottom:362.955000px;}
.y126{bottom:365.250000px;}
.y173{bottom:367.230000px;}
.y28{bottom:368.175000px;}
.yd7{bottom:371.730000px;}
.y115{bottom:372.810000px;}
.y7c{bottom:373.170000px;}
.y1c3{bottom:375.870000px;}
.y22{bottom:378.570000px;}
.yad{bottom:378.750000px;}
.y40{bottom:382.755000px;}
.y125{bottom:385.050000px;}
.y172{bottom:387.030000px;}
.y27{bottom:387.975000px;}
.y1a9{bottom:389.370000px;}
.y114{bottom:392.610000px;}
.y7b{bottom:393.150000px;}
.y1c2{bottom:395.670000px;}
.yd8{bottom:396.210000px;}
.y3f{bottom:402.555000px;}
.y124{bottom:404.895000px;}
.y171{bottom:406.875000px;}
.yac{bottom:407.595000px;}
.y26{bottom:407.775000px;}
.y1a8{bottom:409.215000px;}
.yd6{bottom:410.655000px;}
.y113{bottom:412.635000px;}
.y7a{bottom:412.995000px;}
.y1c1{bottom:415.515000px;}
.y152{bottom:419.835000px;}
.y3e{bottom:422.355000px;}
.y170{bottom:426.855000px;}
.yab{bottom:427.395000px;}
.y25{bottom:427.575000px;}
.y1a7{bottom:429.015000px;}
.yd5{bottom:430.455000px;}
.y112{bottom:432.435000px;}
.y79{bottom:432.795000px;}
.y1c0{bottom:435.315000px;}
.y157{bottom:440.355000px;}
.y3d{bottom:442.155000px;}
.y16f{bottom:446.655000px;}
.yaa{bottom:447.375000px;}
.y24{bottom:447.555000px;}
.y1a6{bottom:448.815000px;}
.yd4{bottom:450.255000px;}
.y111{bottom:452.235000px;}
.y78{bottom:452.595000px;}
.y1bf{bottom:455.295000px;}
.y156{bottom:460.875000px;}
.y16e{bottom:466.455000px;}
.ya9{bottom:467.175000px;}
.y23{bottom:467.355000px;}
.y1a5{bottom:468.795000px;}
.yd3{bottom:470.235000px;}
.y110{bottom:472.035000px;}
.y77{bottom:472.395000px;}
.y1be{bottom:475.095000px;}
.y155{bottom:481.575000px;}
.y16d{bottom:486.255000px;}
.ya8{bottom:486.975000px;}
.y1a4{bottom:488.595000px;}
.y10f{bottom:491.835000px;}
.y76{bottom:492.375000px;}
.y1bd{bottom:494.895000px;}
.y154{bottom:502.095000px;}
.y16c{bottom:506.055000px;}
.ya7{bottom:506.775000px;}
.y1a3{bottom:508.395000px;}
.yd2{bottom:511.275000px;}
.y10e{bottom:511.815000px;}
.y75{bottom:512.175000px;}
.y1bc{bottom:514.695000px;}
.y14d{bottom:522.615000px;}
.y16b{bottom:526.035000px;}
.y1a2{bottom:528.195000px;}
.yd1{bottom:531.255000px;}
.y10d{bottom:531.615000px;}
.y74{bottom:531.975000px;}
.y1bb{bottom:534.495000px;}
.ya6{bottom:535.575000px;}
.y151{bottom:543.315000px;}
.y16a{bottom:545.835000px;}
.y1a1{bottom:547.995000px;}
.yd0{bottom:551.055000px;}
.y10c{bottom:551.415000px;}
.y73{bottom:551.775000px;}
.y1ba{bottom:554.475000px;}
.ya5{bottom:555.555000px;}
.y150{bottom:563.835000px;}
.y169{bottom:565.635000px;}
.y1a0{bottom:567.975000px;}
.ycf{bottom:570.855000px;}
.y10b{bottom:571.215000px;}
.y72{bottom:571.575000px;}
.y1b9{bottom:571.755000px;}
.ya4{bottom:575.355000px;}
.y14f{bottom:584.535000px;}
.y168{bottom:585.435000px;}
.y19f{bottom:587.775000px;}
.yce{bottom:590.655000px;}
.y10a{bottom:591.015000px;}
.y71{bottom:591.555000px;}
.ya3{bottom:595.155000px;}
.y187{bottom:604.335000px;}
.y14e{bottom:605.055000px;}
.y167{bottom:605.235000px;}
.y19e{bottom:607.575000px;}
.y109{bottom:610.995000px;}
.y70{bottom:611.355000px;}
.ya2{bottom:614.955000px;}
.ycd{bottom:616.575000px;}
.y188{bottom:625.035000px;}
.y166{bottom:625.215000px;}
.ycb{bottom:625.575000px;}
.y19d{bottom:627.375000px;}
.y108{bottom:630.795000px;}
.y6f{bottom:631.155000px;}
.ya1{bottom:634.755000px;}
.yca{bottom:635.655000px;}
.y165{bottom:645.015000px;}
.y103{bottom:645.555000px;}
.y14c{bottom:646.275000px;}
.y19c{bottom:647.175000px;}
.y6e{bottom:650.985000px;}
.ycc{bottom:658.005000px;}
.ya0{bottom:663.765000px;}
.y164{bottom:664.845000px;}
.y107{bottom:666.105000px;}
.y14b{bottom:666.825000px;}
.y19b{bottom:667.185000px;}
.y6d{bottom:670.785000px;}
.yc9{bottom:672.585000px;}
.y9f{bottom:683.565000px;}
.y163{bottom:684.645000px;}
.y106{bottom:686.805000px;}
.y19a{bottom:686.985000px;}
.y14a{bottom:687.345000px;}
.y6c{bottom:690.765000px;}
.yc8{bottom:692.385000px;}
.y9e{bottom:703.365000px;}
.y162{bottom:704.445000px;}
.y199{bottom:706.785000px;}
.y105{bottom:707.325000px;}
.y149{bottom:708.045000px;}
.y6b{bottom:710.565000px;}
.yc7{bottom:712.185000px;}
.y9d{bottom:723.165000px;}
.y161{bottom:724.425000px;}
.y198{bottom:726.585000px;}
.y104{bottom:727.845000px;}
.y144{bottom:728.565000px;}
.y6a{bottom:730.365000px;}
.yc6{bottom:731.985000px;}
.y9c{bottom:742.965000px;}
.y160{bottom:744.225000px;}
.y197{bottom:746.385000px;}
.yfd{bottom:748.545000px;}
.y148{bottom:749.085000px;}
.y69{bottom:750.165000px;}
.yc5{bottom:753.045000px;}
.y9b{bottom:762.945000px;}
.yc4{bottom:763.125000px;}
.y15f{bottom:764.025000px;}
.y196{bottom:766.365000px;}
.y102{bottom:769.065000px;}
.y147{bottom:769.785000px;}
.y68{bottom:769.965000px;}
.y15e{bottom:778.785000px;}
.y9a{bottom:782.745000px;}
.y195{bottom:786.165000px;}
.y101{bottom:789.585000px;}
.y67{bottom:789.945000px;}
.y146{bottom:790.305000px;}
.yc3{bottom:792.645000px;}
.y15d{bottom:799.485000px;}
.y99{bottom:802.545000px;}
.y194{bottom:805.965000px;}
.y66{bottom:809.745000px;}
.y100{bottom:810.285000px;}
.y145{bottom:811.005000px;}
.yc2{bottom:812.445000px;}
.y15c{bottom:820.005000px;}
.y193{bottom:825.765000px;}
.y65{bottom:829.545000px;}
.yff{bottom:830.805000px;}
.y98{bottom:831.345000px;}
.y13f{bottom:831.525000px;}
.yc1{bottom:832.245000px;}
.y3b{bottom:840.165000px;}
.y15b{bottom:840.525000px;}
.y192{bottom:845.565000px;}
.y64{bottom:849.345000px;}
.y97{bottom:851.145000px;}
.yf6{bottom:851.505000px;}
.yc0{bottom:852.045000px;}
.y15a{bottom:861.225000px;}
.y191{bottom:865.545000px;}
.ybf{bottom:868.785000px;}
.y63{bottom:869.145000px;}
.y96{bottom:871.125000px;}
.yfc{bottom:872.025000px;}
.y143{bottom:872.745000px;}
.y12{bottom:873.645000px;}
.ybd{bottom:878.865000px;}
.y159{bottom:881.745000px;}
.y190{bottom:885.345000px;}
.y62{bottom:889.125000px;}
.y95{bottom:890.925000px;}
.yfa{bottom:892.545000px;}
.y142{bottom:893.265000px;}
.ybe{bottom:896.325000px;}
.y11{bottom:898.710000px;}
.y158{bottom:902.310000px;}
.y18f{bottom:905.190000px;}
.y61{bottom:908.970000px;}
.y94{bottom:910.770000px;}
.yf9{bottom:913.290000px;}
.y141{bottom:913.830000px;}
.y10{bottom:918.510000px;}
.y18e{bottom:924.990000px;}
.y60{bottom:928.770000px;}
.y93{bottom:930.570000px;}
.yf{bottom:933.630000px;}
.yf8{bottom:933.810000px;}
.y13a{bottom:934.530000px;}
.y18d{bottom:944.790000px;}
.y5f{bottom:948.570000px;}
.y92{bottom:950.370000px;}
.yf1{bottom:954.330000px;}
.ye{bottom:954.870000px;}
.y13e{bottom:955.050000px;}
.y18c{bottom:959.730000px;}
.y5e{bottom:968.370000px;}
.ybc{bottom:970.350000px;}
.yf5{bottom:975.030000px;}
.y13d{bottom:975.570000px;}
.yd{bottom:978.450000px;}
.y91{bottom:979.350000px;}
.y18b{bottom:980.250000px;}
.y5d{bottom:988.350000px;}
.yf4{bottom:995.550000px;}
.y13c{bottom:996.270000px;}
.y90{bottom:999.150000px;}
.y18a{bottom:1000.770000px;}
.y5c{bottom:1008.150000px;}
.yc{bottom:1010.130000px;}
.yf3{bottom:1016.070000px;}
.y13b{bottom:1016.790000px;}
.y8f{bottom:1018.950000px;}
.y189{bottom:1021.470000px;}
.y5b{bottom:1027.950000px;}
.ya{bottom:1036.050000px;}
.yf2{bottom:1036.770000px;}
.y136{bottom:1037.490000px;}
.y8e{bottom:1038.750000px;}
.y5a{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.yeb{bottom:1057.290000px;}
.y139{bottom:1058.010000px;}
.y8d{bottom:1058.550000px;}
.y59{bottom:1067.550000px;}
.yf0{bottom:1077.990000px;}
.y8c{bottom:1078.530000px;}
.y58{bottom:1087.530000px;}
.y8b{bottom:1098.330000px;}
.yef{bottom:1098.510000px;}
.y138{bottom:1099.230000px;}
.y57{bottom:1107.330000px;}
.yee{bottom:1119.030000px;}
.y137{bottom:1119.750000px;}
.y56{bottom:1127.130000px;}
.yed{bottom:1139.730000px;}
.y135{bottom:1140.270000px;}
.y55{bottom:1146.960000px;}
.yea{bottom:1160.280000px;}
.y54{bottom:1166.760000px;}
.y53{bottom:1195.740000px;}
.hd{height:19.800000px;}
.h19{height:19.836000px;}
.h18{height:19.980000px;}
.h1d{height:20.016000px;}
.ha{height:27.147656px;}
.h1f{height:40.320000px;}
.hb{height:41.726953px;}
.h8{height:42.164648px;}
.h11{height:43.156758px;}
.h20{height:43.506914px;}
.h5{height:46.251562px;}
.h10{height:49.255313px;}
.h6{height:50.273438px;}
.h13{height:51.792187px;}
.h9{height:53.224453px;}
.h1e{height:61.020000px;}
.hf{height:65.884219px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h16{height:74.116406px;}
.h15{height:82.046953px;}
.h1c{height:102.060000px;}
.h1b{height:102.096000px;}
.h1a{height:102.240000px;}
.h17{height:102.276000px;}
.h4{height:105.060586px;}
.h14{height:114.436406px;}
.h12{height:120.196406px;}
.h2{height:156.630000px;}
.he{height:456.195000px;}
.hc{height:481.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:66.780000px;}
.w1e{width:80.280000px;}
.w14{width:84.456000px;}
.w1f{width:96.696000px;}
.w20{width:96.840000px;}
.w21{width:96.876000px;}
.wd{width:99.036000px;}
.w25{width:100.980000px;}
.w24{width:101.016000px;}
.w13{width:101.160000px;}
.w1b{width:113.580000px;}
.w10{width:118.800000px;}
.w11{width:118.836000px;}
.w1c{width:119.016000px;}
.w17{width:119.196000px;}
.w16{width:119.340000px;}
.w1a{width:124.236000px;}
.w2{width:127.656000px;}
.w9{width:131.436000px;}
.w12{width:132.300000px;}
.wb{width:138.816000px;}
.w15{width:142.236000px;}
.wa{width:143.496000px;}
.w1d{width:143.676000px;}
.wc{width:148.176000px;}
.w18{width:149.076000px;}
.w22{width:149.256000px;}
.w4{width:157.170000px;}
.w8{width:166.530000px;}
.wf{width:186.330000px;}
.w19{width:224.670000px;}
.w6{width:285.555000px;}
.w23{width:304.275000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.x36{left:59.039987px;}
.x19{left:80.820000px;}
.x37{left:86.075987px;}
.x1f{left:108.035987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x29{left:154.650000px;}
.x25{left:162.029987px;}
.x1e{left:180.570000px;}
.x3{left:181.650000px;}
.x24{left:209.010000px;}
.x2d{left:216.029987px;}
.x32{left:219.270000px;}
.x2e{left:229.170000px;}
.xb{left:245.729987px;}
.x1a{left:248.250000px;}
.x20{left:294.375000px;}
.x2c{left:299.055000px;}
.x26{left:323.715000px;}
.x2f{left:326.595000px;}
.xa{left:342.795000px;}
.x15{left:367.274987px;}
.x33{left:369.435000px;}
.x1b{left:380.415000px;}
.xf{left:391.034987px;}
.x11{left:395.894987px;}
.xc{left:400.754987px;}
.x21{left:414.075000px;}
.x30{left:424.155000px;}
.x12{left:439.814987px;}
.x27{left:443.415000px;}
.x10{left:450.284987px;}
.xd{left:451.724987px;}
.x13{left:454.604987px;}
.xe{left:460.364987px;}
.x17{left:462.704987px;}
.x16{left:468.464987px;}
.x34{left:471.165000px;}
.x14{left:497.084987px;}
.x2a{left:505.185000px;}
.x31{left:521.745000px;}
.x1c{left:524.625000px;}
.x18{left:525.884987px;}
.x22{left:533.805000px;}
.x28{left:562.965000px;}
.x35{left:572.865000px;}
.x2b{left:619.485000px;}
.x23{left:653.550000px;}
.x1d{left:664.170000px;}
.x9{left:681.450000px;}
@media print{
.vc{vertical-align:-71.040000pt;}
.v7{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-12.160000pt;}
.v3{vertical-align:-10.880000pt;}
.vd{vertical-align:-7.680000pt;}
.vb{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:24.960000pt;}
.v8{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.v9{vertical-align:46.720000pt;}
.ls1e{letter-spacing:-2.240000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.159360pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.287467pt;}
.ls1d{letter-spacing:0.294933pt;}
.ls29{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.307200pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.337707pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls20{letter-spacing:1.440000pt;}
.ls18{letter-spacing:2.187520pt;}
.ls17{letter-spacing:3.507200pt;}
.ls14{letter-spacing:10.502827pt;}
.ls27{letter-spacing:14.672640pt;}
.ls10{letter-spacing:15.359360pt;}
.lsf{letter-spacing:18.227200pt;}
.ls13{letter-spacing:19.839360pt;}
.ls2a{letter-spacing:22.496000pt;}
.ls11{letter-spacing:35.937280pt;}
.ls26{letter-spacing:40.912640pt;}
.ls23{letter-spacing:41.040640pt;}
.ls12{letter-spacing:63.516160pt;}
.ls15{letter-spacing:1132.586667pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.981333pt;}
.ws14{word-spacing:-11.973867pt;}
.wsd{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.040000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:6.967467pt;}
.ws12{word-spacing:7.500800pt;}
.ws15{word-spacing:7.512960pt;}
.wsf{word-spacing:10.060800pt;}
.ws11{word-spacing:60.581120pt;}
._17{margin-left:-6.349227pt;}
._c{margin-left:-3.640320pt;}
._7{margin-left:-2.152320pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.171200pt;}
._5{width:2.654293pt;}
._d{width:3.771520pt;}
._b{width:4.874453pt;}
._6{width:6.055680pt;}
._9{width:7.029760pt;}
._8{width:8.074240pt;}
._a{width:9.134080pt;}
._f{width:10.039680pt;}
._e{width:11.102080pt;}
._14{width:12.318720pt;}
._16{width:14.342400pt;}
._15{width:16.254720pt;}
._13{width:17.157760pt;}
._10{width:21.882880pt;}
._12{width:23.054080pt;}
._11{width:25.229440pt;}
._3{width:30.047360pt;}
._4{width:31.300907pt;}
._18{width:161.282347pt;}
._1{width:977.802667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y3c{bottom:5.120000pt;}
.ye7{bottom:5.146667pt;}
.yfb{bottom:5.160000pt;}
.ye5{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y3a{bottom:9.760000pt;}
.y52{bottom:22.760000pt;}
.y39{bottom:27.400000pt;}
.y6{bottom:32.000000pt;}
.y51{bottom:40.360000pt;}
.y180{bottom:41.760000pt;}
.y38{bottom:45.160000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y50{bottom:58.120000pt;}
.y153{bottom:60.640000pt;}
.y37{bottom:62.760000pt;}
.y17f{bottom:68.320000pt;}
.y1d2{bottom:69.600000pt;}
.y21{bottom:72.480000pt;}
.y4{bottom:72.640000pt;}
.y1b8{bottom:74.880000pt;}
.y4f{bottom:75.720000pt;}
.ye2{bottom:76.000000pt;}
.y8a{bottom:76.960000pt;}
.y134{bottom:77.760000pt;}
.yfe{bottom:78.240000pt;}
.yf7{bottom:78.280000pt;}
.yec{bottom:78.400000pt;}
.ye3{bottom:78.426667pt;}
.y140{bottom:78.440000pt;}
.y36{bottom:80.360000pt;}
.ybb{bottom:81.760000pt;}
.y123{bottom:84.480000pt;}
.y182{bottom:86.720000pt;}
.y1d1{bottom:87.200000pt;}
.y20{bottom:90.080000pt;}
.y1b7{bottom:92.480000pt;}
.y4e{bottom:93.320000pt;}
.ye9{bottom:94.240000pt;}
.y89{bottom:94.560000pt;}
.y133{bottom:95.360000pt;}
.y9{bottom:96.506667pt;}
.y35{bottom:97.960000pt;}
.yba{bottom:99.360000pt;}
.y122{bottom:102.240000pt;}
.y186{bottom:102.560000pt;}
.y1d0{bottom:104.800000pt;}
.y181{bottom:104.960000pt;}
.y3{bottom:104.986667pt;}
.y1f{bottom:107.680000pt;}
.y1b6{bottom:110.240000pt;}
.y4d{bottom:110.920000pt;}
.y88{bottom:112.160000pt;}
.ye8{bottom:112.640000pt;}
.y132{bottom:113.120000pt;}
.y34{bottom:115.560000pt;}
.y8{bottom:116.026667pt;}
.yb9{bottom:117.120000pt;}
.y121{bottom:119.840000pt;}
.y185{bottom:120.160000pt;}
.y1cf{bottom:122.400000pt;}
.y17a{bottom:123.200000pt;}
.y1e{bottom:125.440000pt;}
.y1b5{bottom:127.840000pt;}
.y4c{bottom:128.520000pt;}
.y87{bottom:129.760000pt;}
.y131{bottom:130.720000pt;}
.ye6{bottom:130.880000pt;}
.y33{bottom:133.320000pt;}
.y120{bottom:137.466667pt;}
.y184{bottom:137.786667pt;}
.y1ce{bottom:140.186667pt;}
.y17e{bottom:141.626667pt;}
.yb8{bottom:142.746667pt;}
.y1d{bottom:143.066667pt;}
.y1b4{bottom:145.466667pt;}
.y4b{bottom:146.280000pt;}
.y86{bottom:147.386667pt;}
.y130{bottom:148.346667pt;}
.ye4{bottom:149.146667pt;}
.y32{bottom:150.920000pt;}
.y11f{bottom:155.066667pt;}
.y183{bottom:155.386667pt;}
.y1cd{bottom:157.786667pt;}
.y17d{bottom:159.866667pt;}
.yb7{bottom:160.346667pt;}
.y1c{bottom:160.666667pt;}
.y1b3{bottom:163.066667pt;}
.y4a{bottom:163.880000pt;}
.y12f{bottom:165.946667pt;}
.ye1{bottom:167.546667pt;}
.y31{bottom:168.520000pt;}
.y11e{bottom:172.666667pt;}
.y85{bottom:173.146667pt;}
.y1cc{bottom:175.386667pt;}
.y1b2{bottom:176.186667pt;}
.yb6{bottom:177.946667pt;}
.y17c{bottom:178.106667pt;}
.y1b{bottom:178.266667pt;}
.y49{bottom:181.480000pt;}
.y12e{bottom:183.546667pt;}
.y30{bottom:186.120000pt;}
.y11d{bottom:190.426667pt;}
.y84{bottom:190.746667pt;}
.ye0{bottom:190.906667pt;}
.y1cb{bottom:192.986667pt;}
.y1b1{bottom:194.586667pt;}
.yb5{bottom:195.546667pt;}
.y1a{bottom:195.866667pt;}
.y17b{bottom:196.506667pt;}
.y48{bottom:199.080000pt;}
.y12d{bottom:201.306667pt;}
.y2f{bottom:203.720000pt;}
.y11c{bottom:208.026667pt;}
.y83{bottom:208.346667pt;}
.ydf{bottom:208.666667pt;}
.y1ca{bottom:210.586667pt;}
.y1b0{bottom:212.826667pt;}
.yb4{bottom:213.306667pt;}
.y19{bottom:213.626667pt;}
.y179{bottom:214.746667pt;}
.y47{bottom:216.680000pt;}
.y12c{bottom:218.906667pt;}
.y2e{bottom:221.480000pt;}
.y11b{bottom:225.626667pt;}
.y82{bottom:225.946667pt;}
.yde{bottom:226.266667pt;}
.y1c9{bottom:228.346667pt;}
.yb3{bottom:230.906667pt;}
.y1af{bottom:231.066667pt;}
.y18{bottom:231.226667pt;}
.y46{bottom:234.440000pt;}
.y12b{bottom:236.506667pt;}
.y178{bottom:238.266667pt;}
.y2d{bottom:239.080000pt;}
.y11a{bottom:243.226667pt;}
.y81{bottom:243.546667pt;}
.ydd{bottom:243.866667pt;}
.y1c8{bottom:245.946667pt;}
.yb2{bottom:248.506667pt;}
.y17{bottom:248.826667pt;}
.y1ae{bottom:249.466667pt;}
.y45{bottom:252.066667pt;}
.y12a{bottom:254.106667pt;}
.y177{bottom:255.866667pt;}
.y2c{bottom:256.706667pt;}
.y119{bottom:260.826667pt;}
.y80{bottom:261.306667pt;}
.ydc{bottom:261.466667pt;}
.y1c7{bottom:263.546667pt;}
.yb1{bottom:266.106667pt;}
.y16{bottom:266.426667pt;}
.y1ad{bottom:267.706667pt;}
.y44{bottom:269.666667pt;}
.y129{bottom:271.706667pt;}
.y176{bottom:273.466667pt;}
.y2b{bottom:274.306667pt;}
.y118{bottom:278.586667pt;}
.y7f{bottom:278.906667pt;}
.ydb{bottom:279.066667pt;}
.y1c6{bottom:281.146667pt;}
.yb0{bottom:283.706667pt;}
.y15{bottom:284.026667pt;}
.y1ac{bottom:285.946667pt;}
.y43{bottom:287.266667pt;}
.y128{bottom:289.466667pt;}
.y175{bottom:291.226667pt;}
.y2a{bottom:291.906667pt;}
.y117{bottom:296.186667pt;}
.y7e{bottom:296.506667pt;}
.yda{bottom:296.666667pt;}
.y1c5{bottom:298.746667pt;}
.yaf{bottom:301.466667pt;}
.y14{bottom:301.626667pt;}
.y1aa{bottom:304.346667pt;}
.y42{bottom:304.866667pt;}
.y127{bottom:307.066667pt;}
.y174{bottom:308.826667pt;}
.y29{bottom:309.666667pt;}
.yd9{bottom:313.466667pt;}
.y116{bottom:313.786667pt;}
.y7d{bottom:314.106667pt;}
.y1c4{bottom:316.506667pt;}
.yae{bottom:319.066667pt;}
.y13{bottom:319.386667pt;}
.y1ab{bottom:322.586667pt;}
.y41{bottom:322.626667pt;}
.y126{bottom:324.666667pt;}
.y173{bottom:326.426667pt;}
.y28{bottom:327.266667pt;}
.yd7{bottom:330.426667pt;}
.y115{bottom:331.386667pt;}
.y7c{bottom:331.706667pt;}
.y1c3{bottom:334.106667pt;}
.y22{bottom:336.506667pt;}
.yad{bottom:336.666667pt;}
.y40{bottom:340.226667pt;}
.y125{bottom:342.266667pt;}
.y172{bottom:344.026667pt;}
.y27{bottom:344.866667pt;}
.y1a9{bottom:346.106667pt;}
.y114{bottom:348.986667pt;}
.y7b{bottom:349.466667pt;}
.y1c2{bottom:351.706667pt;}
.yd8{bottom:352.186667pt;}
.y3f{bottom:357.826667pt;}
.y124{bottom:359.906667pt;}
.y171{bottom:361.666667pt;}
.yac{bottom:362.306667pt;}
.y26{bottom:362.466667pt;}
.y1a8{bottom:363.746667pt;}
.yd6{bottom:365.026667pt;}
.y113{bottom:366.786667pt;}
.y7a{bottom:367.106667pt;}
.y1c1{bottom:369.346667pt;}
.y152{bottom:373.186667pt;}
.y3e{bottom:375.426667pt;}
.y170{bottom:379.426667pt;}
.yab{bottom:379.906667pt;}
.y25{bottom:380.066667pt;}
.y1a7{bottom:381.346667pt;}
.yd5{bottom:382.626667pt;}
.y112{bottom:384.386667pt;}
.y79{bottom:384.706667pt;}
.y1c0{bottom:386.946667pt;}
.y157{bottom:391.426667pt;}
.y3d{bottom:393.026667pt;}
.y16f{bottom:397.026667pt;}
.yaa{bottom:397.666667pt;}
.y24{bottom:397.826667pt;}
.y1a6{bottom:398.946667pt;}
.yd4{bottom:400.226667pt;}
.y111{bottom:401.986667pt;}
.y78{bottom:402.306667pt;}
.y1bf{bottom:404.706667pt;}
.y156{bottom:409.666667pt;}
.y16e{bottom:414.626667pt;}
.ya9{bottom:415.266667pt;}
.y23{bottom:415.426667pt;}
.y1a5{bottom:416.706667pt;}
.yd3{bottom:417.986667pt;}
.y110{bottom:419.586667pt;}
.y77{bottom:419.906667pt;}
.y1be{bottom:422.306667pt;}
.y155{bottom:428.066667pt;}
.y16d{bottom:432.226667pt;}
.ya8{bottom:432.866667pt;}
.y1a4{bottom:434.306667pt;}
.y10f{bottom:437.186667pt;}
.y76{bottom:437.666667pt;}
.y1bd{bottom:439.906667pt;}
.y154{bottom:446.306667pt;}
.y16c{bottom:449.826667pt;}
.ya7{bottom:450.466667pt;}
.y1a3{bottom:451.906667pt;}
.yd2{bottom:454.466667pt;}
.y10e{bottom:454.946667pt;}
.y75{bottom:455.266667pt;}
.y1bc{bottom:457.506667pt;}
.y14d{bottom:464.546667pt;}
.y16b{bottom:467.586667pt;}
.y1a2{bottom:469.506667pt;}
.yd1{bottom:472.226667pt;}
.y10d{bottom:472.546667pt;}
.y74{bottom:472.866667pt;}
.y1bb{bottom:475.106667pt;}
.ya6{bottom:476.066667pt;}
.y151{bottom:482.946667pt;}
.y16a{bottom:485.186667pt;}
.y1a1{bottom:487.106667pt;}
.yd0{bottom:489.826667pt;}
.y10c{bottom:490.146667pt;}
.y73{bottom:490.466667pt;}
.y1ba{bottom:492.866667pt;}
.ya5{bottom:493.826667pt;}
.y150{bottom:501.186667pt;}
.y169{bottom:502.786667pt;}
.y1a0{bottom:504.866667pt;}
.ycf{bottom:507.426667pt;}
.y10b{bottom:507.746667pt;}
.y72{bottom:508.066667pt;}
.y1b9{bottom:508.226667pt;}
.ya4{bottom:511.426667pt;}
.y14f{bottom:519.586667pt;}
.y168{bottom:520.386667pt;}
.y19f{bottom:522.466667pt;}
.yce{bottom:525.026667pt;}
.y10a{bottom:525.346667pt;}
.y71{bottom:525.826667pt;}
.ya3{bottom:529.026667pt;}
.y187{bottom:537.186667pt;}
.y14e{bottom:537.826667pt;}
.y167{bottom:537.986667pt;}
.y19e{bottom:540.066667pt;}
.y109{bottom:543.106667pt;}
.y70{bottom:543.426667pt;}
.ya2{bottom:546.626667pt;}
.ycd{bottom:548.066667pt;}
.y188{bottom:555.586667pt;}
.y166{bottom:555.746667pt;}
.ycb{bottom:556.066667pt;}
.y19d{bottom:557.666667pt;}
.y108{bottom:560.706667pt;}
.y6f{bottom:561.026667pt;}
.ya1{bottom:564.226667pt;}
.yca{bottom:565.026667pt;}
.y165{bottom:573.346667pt;}
.y103{bottom:573.826667pt;}
.y14c{bottom:574.466667pt;}
.y19c{bottom:575.266667pt;}
.y6e{bottom:578.653333pt;}
.ycc{bottom:584.893333pt;}
.ya0{bottom:590.013333pt;}
.y164{bottom:590.973333pt;}
.y107{bottom:592.093333pt;}
.y14b{bottom:592.733333pt;}
.y19b{bottom:593.053333pt;}
.y6d{bottom:596.253333pt;}
.yc9{bottom:597.853333pt;}
.y9f{bottom:607.613333pt;}
.y163{bottom:608.573333pt;}
.y106{bottom:610.493333pt;}
.y19a{bottom:610.653333pt;}
.y14a{bottom:610.973333pt;}
.y6c{bottom:614.013333pt;}
.yc8{bottom:615.453333pt;}
.y9e{bottom:625.213333pt;}
.y162{bottom:626.173333pt;}
.y199{bottom:628.253333pt;}
.y105{bottom:628.733333pt;}
.y149{bottom:629.373333pt;}
.y6b{bottom:631.613333pt;}
.yc7{bottom:633.053333pt;}
.y9d{bottom:642.813333pt;}
.y161{bottom:643.933333pt;}
.y198{bottom:645.853333pt;}
.y104{bottom:646.973333pt;}
.y144{bottom:647.613333pt;}
.y6a{bottom:649.213333pt;}
.yc6{bottom:650.653333pt;}
.y9c{bottom:660.413333pt;}
.y160{bottom:661.533333pt;}
.y197{bottom:663.453333pt;}
.yfd{bottom:665.373333pt;}
.y148{bottom:665.853333pt;}
.y69{bottom:666.813333pt;}
.yc5{bottom:669.373333pt;}
.y9b{bottom:678.173333pt;}
.yc4{bottom:678.333333pt;}
.y15f{bottom:679.133333pt;}
.y196{bottom:681.213333pt;}
.y102{bottom:683.613333pt;}
.y147{bottom:684.253333pt;}
.y68{bottom:684.413333pt;}
.y15e{bottom:692.253333pt;}
.y9a{bottom:695.773333pt;}
.y195{bottom:698.813333pt;}
.y101{bottom:701.853333pt;}
.y67{bottom:702.173333pt;}
.y146{bottom:702.493333pt;}
.yc3{bottom:704.573333pt;}
.y15d{bottom:710.653333pt;}
.y99{bottom:713.373333pt;}
.y194{bottom:716.413333pt;}
.y66{bottom:719.773333pt;}
.y100{bottom:720.253333pt;}
.y145{bottom:720.893333pt;}
.yc2{bottom:722.173333pt;}
.y15c{bottom:728.893333pt;}
.y193{bottom:734.013333pt;}
.y65{bottom:737.373333pt;}
.yff{bottom:738.493333pt;}
.y98{bottom:738.973333pt;}
.y13f{bottom:739.133333pt;}
.yc1{bottom:739.773333pt;}
.y3b{bottom:746.813333pt;}
.y15b{bottom:747.133333pt;}
.y192{bottom:751.613333pt;}
.y64{bottom:754.973333pt;}
.y97{bottom:756.573333pt;}
.yf6{bottom:756.893333pt;}
.yc0{bottom:757.373333pt;}
.y15a{bottom:765.533333pt;}
.y191{bottom:769.373333pt;}
.ybf{bottom:772.253333pt;}
.y63{bottom:772.573333pt;}
.y96{bottom:774.333333pt;}
.yfc{bottom:775.133333pt;}
.y143{bottom:775.773333pt;}
.y12{bottom:776.573333pt;}
.ybd{bottom:781.213333pt;}
.y159{bottom:783.773333pt;}
.y190{bottom:786.973333pt;}
.y62{bottom:790.333333pt;}
.y95{bottom:791.933333pt;}
.yfa{bottom:793.373333pt;}
.y142{bottom:794.013333pt;}
.ybe{bottom:796.733333pt;}
.y11{bottom:798.853333pt;}
.y158{bottom:802.053333pt;}
.y18f{bottom:804.613333pt;}
.y61{bottom:807.973333pt;}
.y94{bottom:809.573333pt;}
.yf9{bottom:811.813333pt;}
.y141{bottom:812.293333pt;}
.y10{bottom:816.453333pt;}
.y18e{bottom:822.213333pt;}
.y60{bottom:825.573333pt;}
.y93{bottom:827.173333pt;}
.yf{bottom:829.893333pt;}
.yf8{bottom:830.053333pt;}
.y13a{bottom:830.693333pt;}
.y18d{bottom:839.813333pt;}
.y5f{bottom:843.173333pt;}
.y92{bottom:844.773333pt;}
.yf1{bottom:848.293333pt;}
.ye{bottom:848.773333pt;}
.y13e{bottom:848.933333pt;}
.y18c{bottom:853.093333pt;}
.y5e{bottom:860.773333pt;}
.ybc{bottom:862.533333pt;}
.yf5{bottom:866.693333pt;}
.y13d{bottom:867.173333pt;}
.yd{bottom:869.733333pt;}
.y91{bottom:870.533333pt;}
.y18b{bottom:871.333333pt;}
.y5d{bottom:878.533333pt;}
.yf4{bottom:884.933333pt;}
.y13c{bottom:885.573333pt;}
.y90{bottom:888.133333pt;}
.y18a{bottom:889.573333pt;}
.y5c{bottom:896.133333pt;}
.yc{bottom:897.893333pt;}
.yf3{bottom:903.173333pt;}
.y13b{bottom:903.813333pt;}
.y8f{bottom:905.733333pt;}
.y189{bottom:907.973333pt;}
.y5b{bottom:913.733333pt;}
.ya{bottom:920.933333pt;}
.yf2{bottom:921.573333pt;}
.y136{bottom:922.213333pt;}
.y8e{bottom:923.333333pt;}
.y5a{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.yeb{bottom:939.813333pt;}
.y139{bottom:940.453333pt;}
.y8d{bottom:940.933333pt;}
.y59{bottom:948.933333pt;}
.yf0{bottom:958.213333pt;}
.y8c{bottom:958.693333pt;}
.y58{bottom:966.693333pt;}
.y8b{bottom:976.293333pt;}
.yef{bottom:976.453333pt;}
.y138{bottom:977.093333pt;}
.y57{bottom:984.293333pt;}
.yee{bottom:994.693333pt;}
.y137{bottom:995.333333pt;}
.y56{bottom:1001.893333pt;}
.yed{bottom:1013.093333pt;}
.y135{bottom:1013.573333pt;}
.y55{bottom:1019.520000pt;}
.yea{bottom:1031.360000pt;}
.y54{bottom:1037.120000pt;}
.y53{bottom:1062.880000pt;}
.hd{height:17.600000pt;}
.h19{height:17.632000pt;}
.h18{height:17.760000pt;}
.h1d{height:17.792000pt;}
.ha{height:24.131250pt;}
.h1f{height:35.840000pt;}
.hb{height:37.090625pt;}
.h8{height:37.479688pt;}
.h11{height:38.361562pt;}
.h20{height:38.672812pt;}
.h5{height:41.112500pt;}
.h10{height:43.782500pt;}
.h6{height:44.687500pt;}
.h13{height:46.037500pt;}
.h9{height:47.310625pt;}
.h1e{height:54.240000pt;}
.hf{height:58.563750pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h16{height:65.881250pt;}
.h15{height:72.930625pt;}
.h1c{height:90.720000pt;}
.h1b{height:90.752000pt;}
.h1a{height:90.880000pt;}
.h17{height:90.912000pt;}
.h4{height:93.387187pt;}
.h14{height:101.721250pt;}
.h12{height:106.841250pt;}
.h2{height:139.226667pt;}
.he{height:405.506667pt;}
.hc{height:427.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:59.360000pt;}
.w1e{width:71.360000pt;}
.w14{width:75.072000pt;}
.w1f{width:85.952000pt;}
.w20{width:86.080000pt;}
.w21{width:86.112000pt;}
.wd{width:88.032000pt;}
.w25{width:89.760000pt;}
.w24{width:89.792000pt;}
.w13{width:89.920000pt;}
.w1b{width:100.960000pt;}
.w10{width:105.600000pt;}
.w11{width:105.632000pt;}
.w1c{width:105.792000pt;}
.w17{width:105.952000pt;}
.w16{width:106.080000pt;}
.w1a{width:110.432000pt;}
.w2{width:113.472000pt;}
.w9{width:116.832000pt;}
.w12{width:117.600000pt;}
.wb{width:123.392000pt;}
.w15{width:126.432000pt;}
.wa{width:127.552000pt;}
.w1d{width:127.712000pt;}
.wc{width:131.712000pt;}
.w18{width:132.512000pt;}
.w22{width:132.672000pt;}
.w4{width:139.706667pt;}
.w8{width:148.026667pt;}
.wf{width:165.626667pt;}
.w19{width:199.706667pt;}
.w6{width:253.826667pt;}
.w23{width:270.466667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.x36{left:52.479988pt;}
.x19{left:71.840000pt;}
.x37{left:76.511988pt;}
.x1f{left:96.031988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x29{left:137.466667pt;}
.x25{left:144.026655pt;}
.x1e{left:160.506667pt;}
.x3{left:161.466667pt;}
.x24{left:185.786667pt;}
.x2d{left:192.026655pt;}
.x32{left:194.906667pt;}
.x2e{left:203.706667pt;}
.xb{left:218.426655pt;}
.x1a{left:220.666667pt;}
.x20{left:261.666667pt;}
.x2c{left:265.826667pt;}
.x26{left:287.746667pt;}
.x2f{left:290.306667pt;}
.xa{left:304.706667pt;}
.x15{left:326.466655pt;}
.x33{left:328.386667pt;}
.x1b{left:338.146667pt;}
.xf{left:347.586655pt;}
.x11{left:351.906655pt;}
.xc{left:356.226655pt;}
.x21{left:368.066667pt;}
.x30{left:377.026667pt;}
.x12{left:390.946655pt;}
.x27{left:394.146667pt;}
.x10{left:400.253322pt;}
.xd{left:401.533322pt;}
.x13{left:404.093322pt;}
.xe{left:409.213322pt;}
.x17{left:411.293322pt;}
.x16{left:416.413322pt;}
.x34{left:418.813333pt;}
.x14{left:441.853322pt;}
.x2a{left:449.053333pt;}
.x31{left:463.773333pt;}
.x1c{left:466.333333pt;}
.x18{left:467.453322pt;}
.x22{left:474.493333pt;}
.x28{left:500.413333pt;}
.x35{left:509.213333pt;}
.x2b{left:550.653333pt;}
.x23{left:580.933333pt;}
.x1d{left:590.373333pt;}
.x9{left:605.733333pt;}
}




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