
    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_9cfce172f53bdcf028fcca50.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_32051d61ef4af1aa411e1e84.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_e7ecc231173d6d2623121dc9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_ed792d472904be67d2537ebb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_4f970ec37f3cbc1a8e53e590.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_c95f8bb466826dcef7561177.woff')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_e8b181fbd8f13b855823d055.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_fed1f0e15d8e88814a4275a7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.986000;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_8cdff249bf6b348582e384f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_1aaca71b2c066cc6a0688c44.woff')format("woff");}.ffa{font-family:ffa;line-height:0.730000;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_5a20eaa71816476d3d5593e9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.164000;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_b868b65b1f2a8ff3bab1e944.woff')format("woff");}.ffc{font-family:ffc;line-height:1.176000;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_5269f7007aefc856f31d4671.woff')format("woff");}.ffd{font-family:ffd;line-height:1.238000;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_3e68b84ca81d9122355e68d7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.251000;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:fff;src:url('chunks/assets/font_d14a408d9b369de59aea5585.woff')format("woff");}.fff{font-family:fff;line-height:1.008000;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:ff10;src:url('chunks/assets/font_dd7364d2e1453e6d484c0ee4.woff')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_e05f1c00201e1c2f71d4b684.woff')format("woff");}.ff11{font-family:ff11;line-height:0.908000;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:ff12;src:url('chunks/assets/font_7da7b92c54b453c7e27d9342.woff')format("woff");}.ff12{font-family:ff12;line-height:1.144000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.006000px;}
.ls3{letter-spacing:-1.296000px;}
.ls2{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.324000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws0{word-spacing:-15.498000px;}
.ws1e{word-spacing:-12.150000px;}
.ws1{word-spacing:-10.800000px;}
.ws39{word-spacing:-10.200000px;}
.ws3b{word-spacing:-9.894000px;}
.ws72{word-spacing:-6.156000px;}
.ws64{word-spacing:-5.670000px;}
.ws51{word-spacing:-4.482000px;}
.ws8{word-spacing:-4.320000px;}
.ws2c{word-spacing:-3.348000px;}
.ws62{word-spacing:-2.916000px;}
.ws22{word-spacing:-2.862000px;}
.wsc{word-spacing:-2.646000px;}
.ws31{word-spacing:-2.484000px;}
.ws50{word-spacing:-2.430000px;}
.ws34{word-spacing:-2.106000px;}
.ws1f{word-spacing:-2.052000px;}
.ws4e{word-spacing:-1.944000px;}
.ws53{word-spacing:-1.836000px;}
.ws19{word-spacing:-1.458000px;}
.wsd{word-spacing:-1.404000px;}
.wsb{word-spacing:-1.242000px;}
.wse{word-spacing:-1.134000px;}
.ws56{word-spacing:-1.080000px;}
.ws21{word-spacing:-0.972000px;}
.ws5f{word-spacing:-0.864000px;}
.ws4f{word-spacing:-0.810000px;}
.ws2d{word-spacing:-0.756000px;}
.ws11{word-spacing:-0.648000px;}
.ws5{word-spacing:-0.594000px;}
.ws59{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.324000px;}
.ws38{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.162000px;}
.ws5a{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws4c{word-spacing:0.054000px;}
.ws40{word-spacing:0.108000px;}
.ws70{word-spacing:0.270000px;}
.ws5c{word-spacing:0.324000px;}
.ws13{word-spacing:0.378000px;}
.ws10{word-spacing:0.432000px;}
.ws68{word-spacing:0.702000px;}
.wsa{word-spacing:0.918000px;}
.ws41{word-spacing:1.026000px;}
.ws20{word-spacing:1.188000px;}
.ws57{word-spacing:1.296000px;}
.ws4d{word-spacing:1.404000px;}
.ws28{word-spacing:1.512000px;}
.ws61{word-spacing:1.782000px;}
.ws7{word-spacing:1.836000px;}
.ws52{word-spacing:2.052000px;}
.ws3{word-spacing:2.106000px;}
.ws69{word-spacing:2.160000px;}
.ws66{word-spacing:2.214000px;}
.ws58{word-spacing:2.268000px;}
.ws6e{word-spacing:2.376000px;}
.ws63{word-spacing:2.646000px;}
.ws6{word-spacing:2.808000px;}
.ws9{word-spacing:3.132000px;}
.ws37{word-spacing:3.240000px;}
.ws55{word-spacing:3.402000px;}
.ws65{word-spacing:3.564000px;}
.ws73{word-spacing:3.618000px;}
.ws6d{word-spacing:3.780000px;}
.ws3d{word-spacing:3.888000px;}
.ws14{word-spacing:4.050000px;}
.wsf{word-spacing:4.320000px;}
.ws26{word-spacing:4.482000px;}
.ws18{word-spacing:4.860000px;}
.ws54{word-spacing:5.022000px;}
.ws4{word-spacing:5.130000px;}
.ws1c{word-spacing:5.238000px;}
.ws47{word-spacing:5.292000px;}
.ws3e{word-spacing:5.346000px;}
.ws71{word-spacing:5.454000px;}
.ws1a{word-spacing:5.508000px;}
.ws1d{word-spacing:5.886000px;}
.ws5d{word-spacing:6.048000px;}
.ws16{word-spacing:6.102000px;}
.ws6f{word-spacing:6.372000px;}
.ws46{word-spacing:6.534000px;}
.ws12{word-spacing:6.696000px;}
.ws17{word-spacing:6.750000px;}
.ws6b{word-spacing:6.858000px;}
.ws5e{word-spacing:7.020000px;}
.ws49{word-spacing:7.074000px;}
.ws23{word-spacing:7.236000px;}
.ws4b{word-spacing:7.506000px;}
.ws35{word-spacing:7.614000px;}
.ws45{word-spacing:7.722000px;}
.ws30{word-spacing:8.478000px;}
.ws6a{word-spacing:8.910000px;}
.ws25{word-spacing:8.964000px;}
.ws3f{word-spacing:9.180000px;}
.ws44{word-spacing:9.234000px;}
.ws2b{word-spacing:9.450000px;}
.ws4a{word-spacing:9.936000px;}
.ws29{word-spacing:10.044000px;}
.ws60{word-spacing:10.098000px;}
.ws2e{word-spacing:10.260000px;}
.ws24{word-spacing:10.638000px;}
.ws6c{word-spacing:11.448000px;}
.ws48{word-spacing:12.096000px;}
.ws3c{word-spacing:12.204000px;}
.ws67{word-spacing:12.420000px;}
.ws42{word-spacing:12.474000px;}
.ws36{word-spacing:12.582000px;}
.ws33{word-spacing:12.690000px;}
.ws43{word-spacing:17.010000px;}
.ws5b{word-spacing:20.790000px;}
.ws2f{word-spacing:21.168000px;}
.ws2a{word-spacing:21.600000px;}
.ws27{word-spacing:25.326000px;}
.ws3a{word-spacing:985.269000px;}
._4{margin-left:-15.493800px;}
._1f{margin-left:-7.646400px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._9{margin-left:-3.636000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._a{width:2.338200px;}
._8{width:3.472200px;}
._6{width:4.784400px;}
._7{width:6.247800px;}
._c{width:7.441200px;}
._f{width:8.775000px;}
._e{width:9.860400px;}
._b{width:11.026800px;}
._11{width:14.563800px;}
._d{width:16.372800px;}
._10{width:17.874000px;}
._13{width:18.975600px;}
._12{width:22.032000px;}
._1d{width:25.336800px;}
._1c{width:46.116000px;}
._1a{width:48.600000px;}
._1b{width:50.652000px;}
._19{width:57.132000px;}
._1e{width:72.792000px;}
._18{width:241.026000px;}
._17{width:356.241000px;}
._15{width:496.656000px;}
._14{width:635.328000px;}
._16{width:776.853000px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.yf7{bottom:112.828950px;}
.y9f{bottom:112.869450px;}
.y79{bottom:112.896450px;}
.y127{bottom:112.909950px;}
.y54{bottom:112.918950px;}
.y10a{bottom:112.963950px;}
.y8e{bottom:113.022450px;}
.y17c{bottom:122.655450px;}
.y1a4{bottom:133.358700px;}
.yc6{bottom:134.700000px;}
.yf6{bottom:135.333450px;}
.yd5{bottom:135.346950px;}
.y9e{bottom:135.373950px;}
.y78{bottom:135.400950px;}
.y126{bottom:135.414450px;}
.y53{bottom:135.423450px;}
.y109{bottom:135.468450px;}
.y8d{bottom:135.526950px;}
.y17b{bottom:142.155450px;}
.y1c3{bottom:146.114700px;}
.y1a3{bottom:152.858700px;}
.y25{bottom:156.191700px;}
.yf5{bottom:157.837950px;}
.yd4{bottom:157.851450px;}
.yaf{bottom:157.864950px;}
.y9d{bottom:157.878450px;}
.y77{bottom:157.905450px;}
.y125{bottom:157.918950px;}
.y52{bottom:157.927950px;}
.y108{bottom:157.972950px;}
.y8c{bottom:158.031450px;}
.yc5{bottom:160.638600px;}
.y17a{bottom:161.655450px;}
.y1c2{bottom:165.614700px;}
.yc4{bottom:178.641600px;}
.y24{bottom:178.696200px;}
.yf4{bottom:180.342450px;}
.yd3{bottom:180.355950px;}
.yae{bottom:180.369450px;}
.y9c{bottom:180.382950px;}
.y124{bottom:180.423450px;}
.y51{bottom:180.432450px;}
.y107{bottom:180.477450px;}
.y1a2{bottom:185.114700px;}
.y179{bottom:193.911450px;}
.y23{bottom:201.200700px;}
.yf3{bottom:202.846950px;}
.yd2{bottom:202.860450px;}
.yad{bottom:202.873950px;}
.y9b{bottom:202.887450px;}
.y76{bottom:202.900950px;}
.y157{bottom:202.923450px;}
.y123{bottom:202.927950px;}
.y50{bottom:202.936950px;}
.y106{bottom:202.981950px;}
.y8b{bottom:203.031450px;}
.y1a1{bottom:204.614700px;}
.yc3{bottom:210.363600px;}
.y178{bottom:213.411450px;}
.yf2{bottom:225.351450px;}
.yd1{bottom:225.364950px;}
.yac{bottom:225.378450px;}
.y9a{bottom:225.391950px;}
.y75{bottom:225.405450px;}
.y156{bottom:225.427950px;}
.y4f{bottom:225.441450px;}
.y135{bottom:225.481950px;}
.y105{bottom:225.486450px;}
.y1cf{bottom:230.126700px;}
.y177{bottom:232.911450px;}
.y1a0{bottom:236.870700px;}
.yc2{bottom:242.085600px;}
.y22{bottom:246.196200px;}
.yf1{bottom:247.855950px;}
.yd0{bottom:247.869450px;}
.yab{bottom:247.882950px;}
.y99{bottom:247.896450px;}
.y74{bottom:247.909950px;}
.y122{bottom:247.923450px;}
.y155{bottom:247.932450px;}
.y4e{bottom:247.945950px;}
.y134{bottom:247.986450px;}
.y104{bottom:247.990950px;}
.y1ce{bottom:249.626700px;}
.y19f{bottom:256.370700px;}
.yc1{bottom:260.088600px;}
.yc0{bottom:263.837100px;}
.y176{bottom:265.167450px;}
.yf0{bottom:270.360450px;}
.ycf{bottom:270.373950px;}
.yaa{bottom:270.387450px;}
.y98{bottom:270.400950px;}
.y73{bottom:270.414450px;}
.y121{bottom:270.427950px;}
.y154{bottom:270.436950px;}
.y4d{bottom:270.450450px;}
.y8a{bottom:270.472950px;}
.y133{bottom:270.490950px;}
.y103{bottom:270.495450px;}
.y1c1{bottom:275.870700px;}
.ybf{bottom:281.840100px;}
.y1cd{bottom:281.882700px;}
.y175{bottom:284.667450px;}
.ybe{bottom:285.588600px;}
.y19e{bottom:288.626700px;}
.y21{bottom:291.191700px;}
.yef{bottom:292.864950px;}
.yce{bottom:292.878450px;}
.ya9{bottom:292.891950px;}
.y97{bottom:292.905450px;}
.y72{bottom:292.918950px;}
.y120{bottom:292.932450px;}
.y153{bottom:292.941450px;}
.y4c{bottom:292.954950px;}
.y89{bottom:292.977450px;}
.y132{bottom:292.995450px;}
.y1cc{bottom:301.382700px;}
.ybd{bottom:303.591600px;}
.y1c0{bottom:308.126700px;}
.y20{bottom:313.696200px;}
.yee{bottom:315.369450px;}
.ycd{bottom:315.382950px;}
.ya8{bottom:315.396450px;}
.y96{bottom:315.409950px;}
.y71{bottom:315.423450px;}
.y11f{bottom:315.436950px;}
.y152{bottom:315.445950px;}
.y4b{bottom:315.459450px;}
.y88{bottom:315.481950px;}
.y102{bottom:315.490950px;}
.y131{bottom:315.499950px;}
.y174{bottom:316.923450px;}
.y19d{bottom:320.882700px;}
.y1bf{bottom:327.626700px;}
.ybc{bottom:329.097600px;}
.y1f{bottom:336.200700px;}
.yed{bottom:337.873950px;}
.ycc{bottom:337.887450px;}
.ya7{bottom:337.900950px;}
.y11e{bottom:337.941450px;}
.y151{bottom:337.950450px;}
.y4a{bottom:337.963950px;}
.y87{bottom:337.986450px;}
.y101{bottom:337.995450px;}
.y130{bottom:338.004450px;}
.y19c{bottom:340.382700px;}
.y173{bottom:349.179450px;}
.y1cb{bottom:353.138700px;}
.y1e{bottom:358.705200px;}
.y1be{bottom:359.882700px;}
.yec{bottom:360.378450px;}
.ycb{bottom:360.391950px;}
.y95{bottom:360.405450px;}
.y70{bottom:360.418950px;}
.y11d{bottom:360.445950px;}
.y150{bottom:360.454950px;}
.y49{bottom:360.468450px;}
.y86{bottom:360.490950px;}
.ybb{bottom:360.495450px;}
.y100{bottom:360.499950px;}
.y12f{bottom:360.508950px;}
.y172{bottom:368.679450px;}
.y19b{bottom:372.638700px;}
.y1bd{bottom:379.382700px;}
.y1d{bottom:381.209700px;}
.yeb{bottom:382.882950px;}
.yca{bottom:382.896450px;}
.y94{bottom:382.909950px;}
.y6f{bottom:382.923450px;}
.y11c{bottom:382.950450px;}
.y14f{bottom:382.959450px;}
.y85{bottom:382.995450px;}
.yba{bottom:382.999950px;}
.yff{bottom:383.004450px;}
.y12e{bottom:383.013450px;}
.y1ca{bottom:392.138700px;}
.y171{bottom:400.935450px;}
.y1c{bottom:403.714200px;}
.y19a{bottom:404.894700px;}
.yea{bottom:405.387450px;}
.yc9{bottom:405.400950px;}
.y93{bottom:405.414450px;}
.y6e{bottom:405.427950px;}
.y48{bottom:405.463950px;}
.y84{bottom:405.499950px;}
.yfe{bottom:405.508950px;}
.y12d{bottom:405.517950px;}
.y1bc{bottom:411.638700px;}
.y199{bottom:424.394700px;}
.y1b{bottom:426.218700px;}
.ye9{bottom:427.891950px;}
.yc8{bottom:427.905450px;}
.y92{bottom:427.918950px;}
.y6d{bottom:427.932450px;}
.y11b{bottom:427.945950px;}
.y47{bottom:427.968450px;}
.yfd{bottom:428.013450px;}
.y12c{bottom:428.022450px;}
.y170{bottom:433.191450px;}
.y1bb{bottom:443.894700px;}
.y1a{bottom:448.723200px;}
.ye8{bottom:450.396450px;}
.yc7{bottom:450.409950px;}
.y91{bottom:450.423450px;}
.y11a{bottom:450.450450px;}
.y14e{bottom:450.459450px;}
.y46{bottom:450.472950px;}
.y83{bottom:450.495450px;}
.yb9{bottom:450.499950px;}
.yfc{bottom:450.517950px;}
.y12b{bottom:450.526950px;}
.y16f{bottom:452.691450px;}
.y198{bottom:456.650700px;}
.y1ba{bottom:463.394700px;}
.y19{bottom:471.227700px;}
.ye7{bottom:472.900950px;}
.ya6{bottom:472.914450px;}
.y6c{bottom:472.927950px;}
.y119{bottom:472.954950px;}
.y14d{bottom:472.963950px;}
.y45{bottom:472.977450px;}
.y82{bottom:472.999950px;}
.yb8{bottom:473.004450px;}
.yfb{bottom:473.022450px;}
.y12a{bottom:473.031450px;}
.y197{bottom:476.150700px;}
.y16e{bottom:484.947450px;}
.y1c9{bottom:488.906700px;}
.y18{bottom:493.732200px;}
.ye6{bottom:495.405450px;}
.ya5{bottom:495.418950px;}
.y6b{bottom:495.432450px;}
.y118{bottom:495.459450px;}
.y14c{bottom:495.468450px;}
.y44{bottom:495.481950px;}
.y81{bottom:495.504450px;}
.yfa{bottom:495.526950px;}
.y1b9{bottom:495.650700px;}
.y196{bottom:508.406700px;}
.y1b8{bottom:515.150700px;}
.y17{bottom:516.236700px;}
.y16d{bottom:517.203450px;}
.ye5{bottom:517.909950px;}
.ya4{bottom:517.923450px;}
.y6a{bottom:517.936950px;}
.y14b{bottom:517.972950px;}
.y43{bottom:517.986450px;}
.yb7{bottom:517.999950px;}
.y80{bottom:518.008950px;}
.y129{bottom:518.025450px;}
.yf9{bottom:518.031450px;}
.y195{bottom:527.906700px;}
.y16{bottom:538.741200px;}
.ye4{bottom:540.414450px;}
.ya3{bottom:540.427950px;}
.y69{bottom:540.441450px;}
.y117{bottom:540.454950px;}
.y14a{bottom:540.477450px;}
.y42{bottom:540.490950px;}
.yb6{bottom:540.504450px;}
.y7f{bottom:540.513450px;}
.y128{bottom:540.531450px;}
.y1b7{bottom:547.406700px;}
.y16c{bottom:549.459450px;}
.y194{bottom:560.162700px;}
.y15{bottom:561.245700px;}
.ye3{bottom:562.918950px;}
.ya2{bottom:562.932450px;}
.y68{bottom:562.945950px;}
.y116{bottom:562.959450px;}
.y149{bottom:562.981950px;}
.y41{bottom:562.995450px;}
.yb5{bottom:563.008950px;}
.y7e{bottom:563.017950px;}
.yf8{bottom:563.031450px;}
.y1b6{bottom:566.906700px;}
.y193{bottom:579.662700px;}
.y16b{bottom:581.715450px;}
.y14{bottom:583.750200px;}
.ye2{bottom:585.423450px;}
.ya1{bottom:585.436950px;}
.y90{bottom:585.450450px;}
.y115{bottom:585.463950px;}
.y148{bottom:585.486450px;}
.y40{bottom:585.499950px;}
.yb4{bottom:585.513450px;}
.y7d{bottom:585.522450px;}
.y1b5{bottom:586.406700px;}
.y1b4{bottom:605.906700px;}
.y13{bottom:606.254700px;}
.ye1{bottom:607.927950px;}
.y67{bottom:607.941450px;}
.y8f{bottom:607.954950px;}
.y147{bottom:607.990950px;}
.y3f{bottom:608.004450px;}
.yb3{bottom:608.017950px;}
.y7c{bottom:608.026950px;}
.y192{bottom:611.918700px;}
.y16a{bottom:613.971450px;}
.ye0{bottom:630.432450px;}
.y66{bottom:630.445950px;}
.y114{bottom:630.459450px;}
.y3e{bottom:630.508950px;}
.yb2{bottom:630.522450px;}
.y7b{bottom:630.531450px;}
.y191{bottom:631.418700px;}
.y1b3{bottom:638.162700px;}
.y169{bottom:646.227450px;}
.y190{bottom:650.918700px;}
.ydf{bottom:652.936950px;}
.y65{bottom:652.950450px;}
.y113{bottom:652.963950px;}
.y146{bottom:652.986450px;}
.y3d{bottom:653.013450px;}
.yb1{bottom:653.026950px;}
.y1b2{bottom:657.662700px;}
.y1c8{bottom:663.674700px;}
.y12{bottom:673.268700px;}
.yde{bottom:675.441450px;}
.y64{bottom:675.454950px;}
.y112{bottom:675.468450px;}
.y145{bottom:675.490950px;}
.y3c{bottom:675.517950px;}
.y7a{bottom:675.531450px;}
.y168{bottom:678.483450px;}
.y18f{bottom:683.174700px;}
.y1b1{bottom:689.918700px;}
.ydd{bottom:697.945950px;}
.y63{bottom:697.959450px;}
.y111{bottom:697.972950px;}
.y144{bottom:697.995450px;}
.y3b{bottom:698.022450px;}
.y1b0{bottom:709.418700px;}
.y167{bottom:710.739450px;}
.y18e{bottom:715.430700px;}
.ydc{bottom:720.450450px;}
.y62{bottom:720.463950px;}
.y110{bottom:720.477450px;}
.y143{bottom:720.499950px;}
.y3a{bottom:720.526950px;}
.yb0{bottom:720.531450px;}
.y166{bottom:730.239450px;}
.y11{bottom:734.036400px;}
.y18d{bottom:734.930700px;}
.y1af{bottom:741.674700px;}
.ydb{bottom:742.954950px;}
.y61{bottom:742.968450px;}
.y10f{bottom:742.981950px;}
.y142{bottom:743.004450px;}
.y39{bottom:743.031450px;}
.y10{bottom:750.536400px;}
.y18c{bottom:754.430700px;}
.y165{bottom:762.495450px;}
.yda{bottom:765.459450px;}
.y60{bottom:765.472950px;}
.y10e{bottom:765.486450px;}
.y141{bottom:765.508950px;}
.yf{bottom:773.414400px;}
.y1ae{bottom:773.930700px;}
.y164{bottom:781.995450px;}
.y18b{bottom:786.686700px;}
.yd9{bottom:787.963950px;}
.y5f{bottom:787.977450px;}
.y10d{bottom:787.990950px;}
.y140{bottom:788.013450px;}
.y38{bottom:788.031450px;}
.y1ad{bottom:793.430700px;}
.y18a{bottom:806.186700px;}
.ye{bottom:807.926100px;}
.yd8{bottom:810.468450px;}
.y5e{bottom:810.481950px;}
.y10c{bottom:810.495450px;}
.y13f{bottom:810.517950px;}
.y163{bottom:814.251450px;}
.yd{bottom:824.426100px;}
.y189{bottom:825.686700px;}
.yd7{bottom:832.972950px;}
.y5d{bottom:832.986450px;}
.y13e{bottom:833.022450px;}
.y162{bottom:833.751450px;}
.y1ac{bottom:845.186700px;}
.yc{bottom:847.304100px;}
.y161{bottom:853.251450px;}
.yd6{bottom:855.477450px;}
.y37{bottom:855.490950px;}
.y13d{bottom:855.526950px;}
.y188{bottom:857.942700px;}
.y187{bottom:877.442700px;}
.ya0{bottom:877.981950px;}
.y5c{bottom:877.995450px;}
.y13c{bottom:878.031450px;}
.yb{bottom:881.815950px;}
.y160{bottom:885.507450px;}
.y186{bottom:896.942700px;}
.ya{bottom:898.315950px;}
.y36{bottom:900.486450px;}
.y5b{bottom:900.499950px;}
.y1ab{bottom:909.698700px;}
.y15f{bottom:917.763450px;}
.y9{bottom:921.193950px;}
.y35{bottom:922.990950px;}
.y5a{bottom:923.004450px;}
.y13b{bottom:923.031450px;}
.y185{bottom:929.198700px;}
.y15e{bottom:937.263450px;}
.y1c7{bottom:941.954700px;}
.y34{bottom:945.495450px;}
.y59{bottom:945.508950px;}
.y184{bottom:948.698700px;}
.y1aa{bottom:961.454700px;}
.y33{bottom:967.999950px;}
.y58{bottom:968.013450px;}
.y15d{bottom:969.519450px;}
.y183{bottom:980.954700px;}
.y8{bottom:981.214500px;}
.y15c{bottom:989.019450px;}
.y32{bottom:990.504450px;}
.y13a{bottom:990.513450px;}
.y57{bottom:990.517950px;}
.y1c6{bottom:993.710700px;}
.y1a9{bottom:1000.454700px;}
.y7{bottom:1003.717500px;}
.y15b{bottom:1008.519450px;}
.y31{bottom:1013.008950px;}
.y139{bottom:1013.017950px;}
.y56{bottom:1013.022450px;}
.y182{bottom:1013.210700px;}
.y1a8{bottom:1019.954700px;}
.y1c5{bottom:1025.966700px;}
.y181{bottom:1032.710700px;}
.y30{bottom:1035.513450px;}
.y138{bottom:1035.522450px;}
.y55{bottom:1035.526950px;}
.y6{bottom:1038.973500px;}
.y15a{bottom:1040.775450px;}
.y1c4{bottom:1045.466700px;}
.y1a7{bottom:1052.210700px;}
.y2f{bottom:1058.017950px;}
.y137{bottom:1058.026950px;}
.y10b{bottom:1058.031450px;}
.y159{bottom:1060.275450px;}
.y180{bottom:1064.966700px;}
.y1a6{bottom:1071.710700px;}
.y5{bottom:1071.973500px;}
.y2e{bottom:1080.522450px;}
.y136{bottom:1080.531450px;}
.y158{bottom:1092.531450px;}
.y17f{bottom:1097.222700px;}
.y2d{bottom:1103.026950px;}
.y1a5{bottom:1103.966700px;}
.y17e{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y17d{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h11{height:34.416000px;}
.h7{height:36.624000px;}
.hb{height:36.816000px;}
.h12{height:38.913000px;}
.h9{height:39.420000px;}
.h8{height:41.202000px;}
.ha{height:42.444000px;}
.h17{height:42.672000px;}
.h16{height:43.488000px;}
.h6{height:43.800000px;}
.h10{height:44.280000px;}
.h15{height:47.088000px;}
.h14{height:47.184000px;}
.he{height:48.924000px;}
.hf{height:52.974000px;}
.hd{height:53.082000px;}
.hc{height:59.004000px;}
.h5{height:59.514000px;}
.h13{height:74.919000px;}
.h4{height:88.440000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.xb{left:123.279000px;}
.x5{left:127.009050px;}
.xf{left:141.803100px;}
.x10{left:148.823100px;}
.x8{left:209.303100px;}
.xa{left:218.894550px;}
.xd{left:420.902250px;}
.xc{left:569.784000px;}
.x3{left:585.415800px;}
.x4{left:623.310300px;}
.x2{left:677.563800px;}
.x7{left:739.829400px;}
.x6{left:742.059000px;}
.xe{left:744.001350px;}
.x9{left:746.676600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.005333pt;}
.ls3{letter-spacing:-1.152000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws1e{word-spacing:-10.800000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws39{word-spacing:-9.066667pt;}
.ws3b{word-spacing:-8.794667pt;}
.ws72{word-spacing:-5.472000pt;}
.ws64{word-spacing:-5.040000pt;}
.ws51{word-spacing:-3.984000pt;}
.ws8{word-spacing:-3.840000pt;}
.ws2c{word-spacing:-2.976000pt;}
.ws62{word-spacing:-2.592000pt;}
.ws22{word-spacing:-2.544000pt;}
.wsc{word-spacing:-2.352000pt;}
.ws31{word-spacing:-2.208000pt;}
.ws50{word-spacing:-2.160000pt;}
.ws34{word-spacing:-1.872000pt;}
.ws1f{word-spacing:-1.824000pt;}
.ws4e{word-spacing:-1.728000pt;}
.ws53{word-spacing:-1.632000pt;}
.ws19{word-spacing:-1.296000pt;}
.wsd{word-spacing:-1.248000pt;}
.wsb{word-spacing:-1.104000pt;}
.wse{word-spacing:-1.008000pt;}
.ws56{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.864000pt;}
.ws5f{word-spacing:-0.768000pt;}
.ws4f{word-spacing:-0.720000pt;}
.ws2d{word-spacing:-0.672000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws5{word-spacing:-0.528000pt;}
.ws59{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws38{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.144000pt;}
.ws5a{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.048000pt;}
.ws40{word-spacing:0.096000pt;}
.ws70{word-spacing:0.240000pt;}
.ws5c{word-spacing:0.288000pt;}
.ws13{word-spacing:0.336000pt;}
.ws10{word-spacing:0.384000pt;}
.ws68{word-spacing:0.624000pt;}
.wsa{word-spacing:0.816000pt;}
.ws41{word-spacing:0.912000pt;}
.ws20{word-spacing:1.056000pt;}
.ws57{word-spacing:1.152000pt;}
.ws4d{word-spacing:1.248000pt;}
.ws28{word-spacing:1.344000pt;}
.ws61{word-spacing:1.584000pt;}
.ws7{word-spacing:1.632000pt;}
.ws52{word-spacing:1.824000pt;}
.ws3{word-spacing:1.872000pt;}
.ws69{word-spacing:1.920000pt;}
.ws66{word-spacing:1.968000pt;}
.ws58{word-spacing:2.016000pt;}
.ws6e{word-spacing:2.112000pt;}
.ws63{word-spacing:2.352000pt;}
.ws6{word-spacing:2.496000pt;}
.ws9{word-spacing:2.784000pt;}
.ws37{word-spacing:2.880000pt;}
.ws55{word-spacing:3.024000pt;}
.ws65{word-spacing:3.168000pt;}
.ws73{word-spacing:3.216000pt;}
.ws6d{word-spacing:3.360000pt;}
.ws3d{word-spacing:3.456000pt;}
.ws14{word-spacing:3.600000pt;}
.wsf{word-spacing:3.840000pt;}
.ws26{word-spacing:3.984000pt;}
.ws18{word-spacing:4.320000pt;}
.ws54{word-spacing:4.464000pt;}
.ws4{word-spacing:4.560000pt;}
.ws1c{word-spacing:4.656000pt;}
.ws47{word-spacing:4.704000pt;}
.ws3e{word-spacing:4.752000pt;}
.ws71{word-spacing:4.848000pt;}
.ws1a{word-spacing:4.896000pt;}
.ws1d{word-spacing:5.232000pt;}
.ws5d{word-spacing:5.376000pt;}
.ws16{word-spacing:5.424000pt;}
.ws6f{word-spacing:5.664000pt;}
.ws46{word-spacing:5.808000pt;}
.ws12{word-spacing:5.952000pt;}
.ws17{word-spacing:6.000000pt;}
.ws6b{word-spacing:6.096000pt;}
.ws5e{word-spacing:6.240000pt;}
.ws49{word-spacing:6.288000pt;}
.ws23{word-spacing:6.432000pt;}
.ws4b{word-spacing:6.672000pt;}
.ws35{word-spacing:6.768000pt;}
.ws45{word-spacing:6.864000pt;}
.ws30{word-spacing:7.536000pt;}
.ws6a{word-spacing:7.920000pt;}
.ws25{word-spacing:7.968000pt;}
.ws3f{word-spacing:8.160000pt;}
.ws44{word-spacing:8.208000pt;}
.ws2b{word-spacing:8.400000pt;}
.ws4a{word-spacing:8.832000pt;}
.ws29{word-spacing:8.928000pt;}
.ws60{word-spacing:8.976000pt;}
.ws2e{word-spacing:9.120000pt;}
.ws24{word-spacing:9.456000pt;}
.ws6c{word-spacing:10.176000pt;}
.ws48{word-spacing:10.752000pt;}
.ws3c{word-spacing:10.848000pt;}
.ws67{word-spacing:11.040000pt;}
.ws42{word-spacing:11.088000pt;}
.ws36{word-spacing:11.184000pt;}
.ws33{word-spacing:11.280000pt;}
.ws43{word-spacing:15.120000pt;}
.ws5b{word-spacing:18.480000pt;}
.ws2f{word-spacing:18.816000pt;}
.ws2a{word-spacing:19.200000pt;}
.ws27{word-spacing:22.512000pt;}
.ws3a{word-spacing:875.794667pt;}
._4{margin-left:-13.772267pt;}
._1f{margin-left:-6.796800pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._9{margin-left:-3.232000pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._a{width:2.078400pt;}
._8{width:3.086400pt;}
._6{width:4.252800pt;}
._7{width:5.553600pt;}
._c{width:6.614400pt;}
._f{width:7.800000pt;}
._e{width:8.764800pt;}
._b{width:9.801600pt;}
._11{width:12.945600pt;}
._d{width:14.553600pt;}
._10{width:15.888000pt;}
._13{width:16.867200pt;}
._12{width:19.584000pt;}
._1d{width:22.521600pt;}
._1c{width:40.992000pt;}
._1a{width:43.200000pt;}
._1b{width:45.024000pt;}
._19{width:50.784000pt;}
._1e{width:64.704000pt;}
._18{width:214.245333pt;}
._17{width:316.658667pt;}
._15{width:441.472000pt;}
._14{width:564.736000pt;}
._16{width:690.536000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.yf7{bottom:100.292400pt;}
.y9f{bottom:100.328400pt;}
.y79{bottom:100.352400pt;}
.y127{bottom:100.364400pt;}
.y54{bottom:100.372400pt;}
.y10a{bottom:100.412400pt;}
.y8e{bottom:100.464400pt;}
.y17c{bottom:109.027067pt;}
.y1a4{bottom:118.541067pt;}
.yc6{bottom:119.733333pt;}
.yf6{bottom:120.296400pt;}
.yd5{bottom:120.308400pt;}
.y9e{bottom:120.332400pt;}
.y78{bottom:120.356400pt;}
.y126{bottom:120.368400pt;}
.y53{bottom:120.376400pt;}
.y109{bottom:120.416400pt;}
.y8d{bottom:120.468400pt;}
.y17b{bottom:126.360400pt;}
.y1c3{bottom:129.879733pt;}
.y1a3{bottom:135.874400pt;}
.y25{bottom:138.837067pt;}
.yf5{bottom:140.300400pt;}
.yd4{bottom:140.312400pt;}
.yaf{bottom:140.324400pt;}
.y9d{bottom:140.336400pt;}
.y77{bottom:140.360400pt;}
.y125{bottom:140.372400pt;}
.y52{bottom:140.380400pt;}
.y108{bottom:140.420400pt;}
.y8c{bottom:140.472400pt;}
.yc5{bottom:142.789867pt;}
.y17a{bottom:143.693733pt;}
.y1c2{bottom:147.213067pt;}
.yc4{bottom:158.792533pt;}
.y24{bottom:158.841067pt;}
.yf4{bottom:160.304400pt;}
.yd3{bottom:160.316400pt;}
.yae{bottom:160.328400pt;}
.y9c{bottom:160.340400pt;}
.y124{bottom:160.376400pt;}
.y51{bottom:160.384400pt;}
.y107{bottom:160.424400pt;}
.y1a2{bottom:164.546400pt;}
.y179{bottom:172.365733pt;}
.y23{bottom:178.845067pt;}
.yf3{bottom:180.308400pt;}
.yd2{bottom:180.320400pt;}
.yad{bottom:180.332400pt;}
.y9b{bottom:180.344400pt;}
.y76{bottom:180.356400pt;}
.y157{bottom:180.376400pt;}
.y123{bottom:180.380400pt;}
.y50{bottom:180.388400pt;}
.y106{bottom:180.428400pt;}
.y8b{bottom:180.472400pt;}
.y1a1{bottom:181.879733pt;}
.yc3{bottom:186.989867pt;}
.y178{bottom:189.699067pt;}
.yf2{bottom:200.312400pt;}
.yd1{bottom:200.324400pt;}
.yac{bottom:200.336400pt;}
.y9a{bottom:200.348400pt;}
.y75{bottom:200.360400pt;}
.y156{bottom:200.380400pt;}
.y4f{bottom:200.392400pt;}
.y135{bottom:200.428400pt;}
.y105{bottom:200.432400pt;}
.y1cf{bottom:204.557067pt;}
.y177{bottom:207.032400pt;}
.y1a0{bottom:210.551733pt;}
.yc2{bottom:215.187200pt;}
.y22{bottom:218.841067pt;}
.yf1{bottom:220.316400pt;}
.yd0{bottom:220.328400pt;}
.yab{bottom:220.340400pt;}
.y99{bottom:220.352400pt;}
.y74{bottom:220.364400pt;}
.y122{bottom:220.376400pt;}
.y155{bottom:220.384400pt;}
.y4e{bottom:220.396400pt;}
.y134{bottom:220.432400pt;}
.y104{bottom:220.436400pt;}
.y1ce{bottom:221.890400pt;}
.y19f{bottom:227.885067pt;}
.yc1{bottom:231.189867pt;}
.yc0{bottom:234.521867pt;}
.y176{bottom:235.704400pt;}
.yf0{bottom:240.320400pt;}
.ycf{bottom:240.332400pt;}
.yaa{bottom:240.344400pt;}
.y98{bottom:240.356400pt;}
.y73{bottom:240.368400pt;}
.y121{bottom:240.380400pt;}
.y154{bottom:240.388400pt;}
.y4d{bottom:240.400400pt;}
.y8a{bottom:240.420400pt;}
.y133{bottom:240.436400pt;}
.y103{bottom:240.440400pt;}
.y1c1{bottom:245.218400pt;}
.ybf{bottom:250.524533pt;}
.y1cd{bottom:250.562400pt;}
.y175{bottom:253.037733pt;}
.ybe{bottom:253.856533pt;}
.y19e{bottom:256.557067pt;}
.y21{bottom:258.837067pt;}
.yef{bottom:260.324400pt;}
.yce{bottom:260.336400pt;}
.ya9{bottom:260.348400pt;}
.y97{bottom:260.360400pt;}
.y72{bottom:260.372400pt;}
.y120{bottom:260.384400pt;}
.y153{bottom:260.392400pt;}
.y4c{bottom:260.404400pt;}
.y89{bottom:260.424400pt;}
.y132{bottom:260.440400pt;}
.y1cc{bottom:267.895733pt;}
.ybd{bottom:269.859200pt;}
.y1c0{bottom:273.890400pt;}
.y20{bottom:278.841067pt;}
.yee{bottom:280.328400pt;}
.ycd{bottom:280.340400pt;}
.ya8{bottom:280.352400pt;}
.y96{bottom:280.364400pt;}
.y71{bottom:280.376400pt;}
.y11f{bottom:280.388400pt;}
.y152{bottom:280.396400pt;}
.y4b{bottom:280.408400pt;}
.y88{bottom:280.428400pt;}
.y102{bottom:280.436400pt;}
.y131{bottom:280.444400pt;}
.y174{bottom:281.709733pt;}
.y19d{bottom:285.229067pt;}
.y1bf{bottom:291.223733pt;}
.ybc{bottom:292.531200pt;}
.y1f{bottom:298.845067pt;}
.yed{bottom:300.332400pt;}
.ycc{bottom:300.344400pt;}
.ya7{bottom:300.356400pt;}
.y11e{bottom:300.392400pt;}
.y151{bottom:300.400400pt;}
.y4a{bottom:300.412400pt;}
.y87{bottom:300.432400pt;}
.y101{bottom:300.440400pt;}
.y130{bottom:300.448400pt;}
.y19c{bottom:302.562400pt;}
.y173{bottom:310.381733pt;}
.y1cb{bottom:313.901067pt;}
.y1e{bottom:318.849067pt;}
.y1be{bottom:319.895733pt;}
.yec{bottom:320.336400pt;}
.ycb{bottom:320.348400pt;}
.y95{bottom:320.360400pt;}
.y70{bottom:320.372400pt;}
.y11d{bottom:320.396400pt;}
.y150{bottom:320.404400pt;}
.y49{bottom:320.416400pt;}
.y86{bottom:320.436400pt;}
.ybb{bottom:320.440400pt;}
.y100{bottom:320.444400pt;}
.y12f{bottom:320.452400pt;}
.y172{bottom:327.715067pt;}
.y19b{bottom:331.234400pt;}
.y1bd{bottom:337.229067pt;}
.y1d{bottom:338.853067pt;}
.yeb{bottom:340.340400pt;}
.yca{bottom:340.352400pt;}
.y94{bottom:340.364400pt;}
.y6f{bottom:340.376400pt;}
.y11c{bottom:340.400400pt;}
.y14f{bottom:340.408400pt;}
.y85{bottom:340.440400pt;}
.yba{bottom:340.444400pt;}
.yff{bottom:340.448400pt;}
.y12e{bottom:340.456400pt;}
.y1ca{bottom:348.567733pt;}
.y171{bottom:356.387067pt;}
.y1c{bottom:358.857067pt;}
.y19a{bottom:359.906400pt;}
.yea{bottom:360.344400pt;}
.yc9{bottom:360.356400pt;}
.y93{bottom:360.368400pt;}
.y6e{bottom:360.380400pt;}
.y48{bottom:360.412400pt;}
.y84{bottom:360.444400pt;}
.yfe{bottom:360.452400pt;}
.y12d{bottom:360.460400pt;}
.y1bc{bottom:365.901067pt;}
.y199{bottom:377.239733pt;}
.y1b{bottom:378.861067pt;}
.ye9{bottom:380.348400pt;}
.yc8{bottom:380.360400pt;}
.y92{bottom:380.372400pt;}
.y6d{bottom:380.384400pt;}
.y11b{bottom:380.396400pt;}
.y47{bottom:380.416400pt;}
.yfd{bottom:380.456400pt;}
.y12c{bottom:380.464400pt;}
.y170{bottom:385.059067pt;}
.y1bb{bottom:394.573067pt;}
.y1a{bottom:398.865067pt;}
.ye8{bottom:400.352400pt;}
.yc7{bottom:400.364400pt;}
.y91{bottom:400.376400pt;}
.y11a{bottom:400.400400pt;}
.y14e{bottom:400.408400pt;}
.y46{bottom:400.420400pt;}
.y83{bottom:400.440400pt;}
.yb9{bottom:400.444400pt;}
.yfc{bottom:400.460400pt;}
.y12b{bottom:400.468400pt;}
.y16f{bottom:402.392400pt;}
.y198{bottom:405.911733pt;}
.y1ba{bottom:411.906400pt;}
.y19{bottom:418.869067pt;}
.ye7{bottom:420.356400pt;}
.ya6{bottom:420.368400pt;}
.y6c{bottom:420.380400pt;}
.y119{bottom:420.404400pt;}
.y14d{bottom:420.412400pt;}
.y45{bottom:420.424400pt;}
.y82{bottom:420.444400pt;}
.yb8{bottom:420.448400pt;}
.yfb{bottom:420.464400pt;}
.y12a{bottom:420.472400pt;}
.y197{bottom:423.245067pt;}
.y16e{bottom:431.064400pt;}
.y1c9{bottom:434.583733pt;}
.y18{bottom:438.873067pt;}
.ye6{bottom:440.360400pt;}
.ya5{bottom:440.372400pt;}
.y6b{bottom:440.384400pt;}
.y118{bottom:440.408400pt;}
.y14c{bottom:440.416400pt;}
.y44{bottom:440.428400pt;}
.y81{bottom:440.448400pt;}
.yfa{bottom:440.468400pt;}
.y1b9{bottom:440.578400pt;}
.y196{bottom:451.917067pt;}
.y1b8{bottom:457.911733pt;}
.y17{bottom:458.877067pt;}
.y16d{bottom:459.736400pt;}
.ye5{bottom:460.364400pt;}
.ya4{bottom:460.376400pt;}
.y6a{bottom:460.388400pt;}
.y14b{bottom:460.420400pt;}
.y43{bottom:460.432400pt;}
.yb7{bottom:460.444400pt;}
.y80{bottom:460.452400pt;}
.y129{bottom:460.467067pt;}
.yf9{bottom:460.472400pt;}
.y195{bottom:469.250400pt;}
.y16{bottom:478.881067pt;}
.ye4{bottom:480.368400pt;}
.ya3{bottom:480.380400pt;}
.y69{bottom:480.392400pt;}
.y117{bottom:480.404400pt;}
.y14a{bottom:480.424400pt;}
.y42{bottom:480.436400pt;}
.yb6{bottom:480.448400pt;}
.y7f{bottom:480.456400pt;}
.y128{bottom:480.472400pt;}
.y1b7{bottom:486.583733pt;}
.y16c{bottom:488.408400pt;}
.y194{bottom:497.922400pt;}
.y15{bottom:498.885067pt;}
.ye3{bottom:500.372400pt;}
.ya2{bottom:500.384400pt;}
.y68{bottom:500.396400pt;}
.y116{bottom:500.408400pt;}
.y149{bottom:500.428400pt;}
.y41{bottom:500.440400pt;}
.yb5{bottom:500.452400pt;}
.y7e{bottom:500.460400pt;}
.yf8{bottom:500.472400pt;}
.y1b6{bottom:503.917067pt;}
.y193{bottom:515.255733pt;}
.y16b{bottom:517.080400pt;}
.y14{bottom:518.889067pt;}
.ye2{bottom:520.376400pt;}
.ya1{bottom:520.388400pt;}
.y90{bottom:520.400400pt;}
.y115{bottom:520.412400pt;}
.y148{bottom:520.432400pt;}
.y40{bottom:520.444400pt;}
.yb4{bottom:520.456400pt;}
.y7d{bottom:520.464400pt;}
.y1b5{bottom:521.250400pt;}
.y1b4{bottom:538.583733pt;}
.y13{bottom:538.893067pt;}
.ye1{bottom:540.380400pt;}
.y67{bottom:540.392400pt;}
.y8f{bottom:540.404400pt;}
.y147{bottom:540.436400pt;}
.y3f{bottom:540.448400pt;}
.yb3{bottom:540.460400pt;}
.y7c{bottom:540.468400pt;}
.y192{bottom:543.927733pt;}
.y16a{bottom:545.752400pt;}
.ye0{bottom:560.384400pt;}
.y66{bottom:560.396400pt;}
.y114{bottom:560.408400pt;}
.y3e{bottom:560.452400pt;}
.yb2{bottom:560.464400pt;}
.y7b{bottom:560.472400pt;}
.y191{bottom:561.261067pt;}
.y1b3{bottom:567.255733pt;}
.y169{bottom:574.424400pt;}
.y190{bottom:578.594400pt;}
.ydf{bottom:580.388400pt;}
.y65{bottom:580.400400pt;}
.y113{bottom:580.412400pt;}
.y146{bottom:580.432400pt;}
.y3d{bottom:580.456400pt;}
.yb1{bottom:580.468400pt;}
.y1b2{bottom:584.589067pt;}
.y1c8{bottom:589.933067pt;}
.y12{bottom:598.461067pt;}
.yde{bottom:600.392400pt;}
.y64{bottom:600.404400pt;}
.y112{bottom:600.416400pt;}
.y145{bottom:600.436400pt;}
.y3c{bottom:600.460400pt;}
.y7a{bottom:600.472400pt;}
.y168{bottom:603.096400pt;}
.y18f{bottom:607.266400pt;}
.y1b1{bottom:613.261067pt;}
.ydd{bottom:620.396400pt;}
.y63{bottom:620.408400pt;}
.y111{bottom:620.420400pt;}
.y144{bottom:620.440400pt;}
.y3b{bottom:620.464400pt;}
.y1b0{bottom:630.594400pt;}
.y167{bottom:631.768400pt;}
.y18e{bottom:635.938400pt;}
.ydc{bottom:640.400400pt;}
.y62{bottom:640.412400pt;}
.y110{bottom:640.424400pt;}
.y143{bottom:640.444400pt;}
.y3a{bottom:640.468400pt;}
.yb0{bottom:640.472400pt;}
.y166{bottom:649.101733pt;}
.y11{bottom:652.476800pt;}
.y18d{bottom:653.271733pt;}
.y1af{bottom:659.266400pt;}
.ydb{bottom:660.404400pt;}
.y61{bottom:660.416400pt;}
.y10f{bottom:660.428400pt;}
.y142{bottom:660.448400pt;}
.y39{bottom:660.472400pt;}
.y10{bottom:667.143467pt;}
.y18c{bottom:670.605067pt;}
.y165{bottom:677.773733pt;}
.yda{bottom:680.408400pt;}
.y60{bottom:680.420400pt;}
.y10e{bottom:680.432400pt;}
.y141{bottom:680.452400pt;}
.yf{bottom:687.479467pt;}
.y1ae{bottom:687.938400pt;}
.y164{bottom:695.107067pt;}
.y18b{bottom:699.277067pt;}
.yd9{bottom:700.412400pt;}
.y5f{bottom:700.424400pt;}
.y10d{bottom:700.436400pt;}
.y140{bottom:700.456400pt;}
.y38{bottom:700.472400pt;}
.y1ad{bottom:705.271733pt;}
.y18a{bottom:716.610400pt;}
.ye{bottom:718.156533pt;}
.yd8{bottom:720.416400pt;}
.y5e{bottom:720.428400pt;}
.y10c{bottom:720.440400pt;}
.y13f{bottom:720.460400pt;}
.y163{bottom:723.779067pt;}
.yd{bottom:732.823200pt;}
.y189{bottom:733.943733pt;}
.yd7{bottom:740.420400pt;}
.y5d{bottom:740.432400pt;}
.y13e{bottom:740.464400pt;}
.y162{bottom:741.112400pt;}
.y1ac{bottom:751.277067pt;}
.yc{bottom:753.159200pt;}
.y161{bottom:758.445733pt;}
.yd6{bottom:760.424400pt;}
.y37{bottom:760.436400pt;}
.y13d{bottom:760.468400pt;}
.y188{bottom:762.615733pt;}
.y187{bottom:779.949067pt;}
.ya0{bottom:780.428400pt;}
.y5c{bottom:780.440400pt;}
.y13c{bottom:780.472400pt;}
.yb{bottom:783.836400pt;}
.y160{bottom:787.117733pt;}
.y186{bottom:797.282400pt;}
.ya{bottom:798.503067pt;}
.y36{bottom:800.432400pt;}
.y5b{bottom:800.444400pt;}
.y1ab{bottom:808.621067pt;}
.y15f{bottom:815.789733pt;}
.y9{bottom:818.839067pt;}
.y35{bottom:820.436400pt;}
.y5a{bottom:820.448400pt;}
.y13b{bottom:820.472400pt;}
.y185{bottom:825.954400pt;}
.y15e{bottom:833.123067pt;}
.y1c7{bottom:837.293067pt;}
.y34{bottom:840.440400pt;}
.y59{bottom:840.452400pt;}
.y184{bottom:843.287733pt;}
.y1aa{bottom:854.626400pt;}
.y33{bottom:860.444400pt;}
.y58{bottom:860.456400pt;}
.y15d{bottom:861.795067pt;}
.y183{bottom:871.959733pt;}
.y8{bottom:872.190667pt;}
.y15c{bottom:879.128400pt;}
.y32{bottom:880.448400pt;}
.y13a{bottom:880.456400pt;}
.y57{bottom:880.460400pt;}
.y1c6{bottom:883.298400pt;}
.y1a9{bottom:889.293067pt;}
.y7{bottom:892.193333pt;}
.y15b{bottom:896.461733pt;}
.y31{bottom:900.452400pt;}
.y139{bottom:900.460400pt;}
.y56{bottom:900.464400pt;}
.y182{bottom:900.631733pt;}
.y1a8{bottom:906.626400pt;}
.y1c5{bottom:911.970400pt;}
.y181{bottom:917.965067pt;}
.y30{bottom:920.456400pt;}
.y138{bottom:920.464400pt;}
.y55{bottom:920.468400pt;}
.y6{bottom:923.532000pt;}
.y15a{bottom:925.133733pt;}
.y1c4{bottom:929.303733pt;}
.y1a7{bottom:935.298400pt;}
.y2f{bottom:940.460400pt;}
.y137{bottom:940.468400pt;}
.y10b{bottom:940.472400pt;}
.y159{bottom:942.467067pt;}
.y180{bottom:946.637067pt;}
.y1a6{bottom:952.631733pt;}
.y5{bottom:952.865333pt;}
.y2e{bottom:960.464400pt;}
.y136{bottom:960.472400pt;}
.y158{bottom:971.139067pt;}
.y17f{bottom:975.309067pt;}
.y2d{bottom:980.468400pt;}
.y1a5{bottom:981.303733pt;}
.y17e{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y17d{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h11{height:30.592000pt;}
.h7{height:32.554667pt;}
.hb{height:32.725333pt;}
.h12{height:34.589333pt;}
.h9{height:35.040000pt;}
.h8{height:36.624000pt;}
.ha{height:37.728000pt;}
.h17{height:37.930667pt;}
.h16{height:38.656000pt;}
.h6{height:38.933333pt;}
.h10{height:39.360000pt;}
.h15{height:41.856000pt;}
.h14{height:41.941333pt;}
.he{height:43.488000pt;}
.hf{height:47.088000pt;}
.hd{height:47.184000pt;}
.hc{height:52.448000pt;}
.h5{height:52.901333pt;}
.h13{height:66.594667pt;}
.h4{height:78.613333pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.xb{left:109.581333pt;}
.x5{left:112.896933pt;}
.xf{left:126.047200pt;}
.x10{left:132.287200pt;}
.x8{left:186.047200pt;}
.xa{left:194.572933pt;}
.xd{left:374.135333pt;}
.xc{left:506.474667pt;}
.x3{left:520.369600pt;}
.x4{left:554.053600pt;}
.x2{left:602.278933pt;}
.x7{left:657.626133pt;}
.x6{left:659.608000pt;}
.xe{left:661.334533pt;}
.x9{left:663.712533pt;}
}




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