
    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_cbe5d3309198d74acaed4ac5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_07260265d1e2739247888ec5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_3bb3005de4d29cfca3dd81cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_6fa03baa55ac16905d46af43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_62680734a408a653d9dd01b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_5c46ae172fd4617762fece94.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_871f5232bdcd49e857e2acfa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_f9ead1df98571647e795d9f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_f5b111c1c7f1502e8d630b58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_2fe1d948f3d0316c47334cdf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_8630441dffee64e7281b124c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_e74903e0c59cec153a23cec0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_18575325fcb83599d9610127.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.680000;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_d08b94429fa41de66c0dd319.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_44a192129628525ba14d2f1b.woff2')format("woff");}.fff{font-family:fff;line-height:0.931641;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_75a538e46da06b5cef44e5a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_e369633d7e8d2d1270660540.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;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_531c31c8a9b955c963f4ff18.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_c804cf0e757f8bc79aabc8fb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.046000;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:ff14;src:url('chunks/assets/font_beb833329560ae28bbdedf35.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.482000;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:ff15;src:url('chunks/assets/font_2ea96afc23a0a34874091c12.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.049000;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:ff16;src:url('chunks/assets/font_f8e003559664505ce6001851.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.697000;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);}
.v3{vertical-align:-16.872000px;}
.v2{vertical-align:-8.970000px;}
.v9{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.004000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:29.412000px;}
.v7{vertical-align:38.376000px;}
.v5{vertical-align:40.440000px;}
.v4{vertical-align:71.730000px;}
.lsf{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000925px;}
.ls16{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.005023px;}
.ls3f{letter-spacing:0.010923px;}
.ls3e{letter-spacing:0.011261px;}
.ls3d{letter-spacing:0.012637px;}
.ls14{letter-spacing:0.025577px;}
.ls9{letter-spacing:0.031577px;}
.ls22{letter-spacing:0.032222px;}
.ls32{letter-spacing:0.032512px;}
.ls44{letter-spacing:0.035799px;}
.ls20{letter-spacing:0.038222px;}
.ls5{letter-spacing:0.038512px;}
.ls45{letter-spacing:0.038809px;}
.ls3c{letter-spacing:0.042359px;}
.ls18{letter-spacing:0.044159px;}
.ls3b{letter-spacing:0.045041px;}
.ls2e{letter-spacing:0.048359px;}
.ls39{letter-spacing:0.050159px;}
.ls6{letter-spacing:0.051041px;}
.lsd{letter-spacing:2.986118px;}
.lse{letter-spacing:2.987146px;}
.ls46{letter-spacing:2.992118px;}
.ls47{letter-spacing:2.998118px;}
.ls1f{letter-spacing:3.011447px;}
.ls41{letter-spacing:3.470228px;}
.ls1e{letter-spacing:5.160359px;}
.ls40{letter-spacing:7.979261px;}
.ls25{letter-spacing:8.298065px;}
.ls27{letter-spacing:10.004159px;}
.ls28{letter-spacing:10.010159px;}
.ls1d{letter-spacing:11.308184px;}
.ls36{letter-spacing:12.965447px;}
.ls21{letter-spacing:12.971447px;}
.ls34{letter-spacing:13.288200px;}
.ls35{letter-spacing:13.326359px;}
.ls1b{letter-spacing:14.147799px;}
.ls2a{letter-spacing:15.944159px;}
.ls0{letter-spacing:16.007447px;}
.ls33{letter-spacing:16.602300px;}
.ls23{letter-spacing:16.635276px;}
.ls26{letter-spacing:16.641276px;}
.ls3a{letter-spacing:16.650359px;}
.ls1{letter-spacing:17.884373px;}
.ls2c{letter-spacing:20.194200px;}
.ls2d{letter-spacing:20.238359px;}
.ls24{letter-spacing:20.421276px;}
.ls12{letter-spacing:20.781607px;}
.ls1c{letter-spacing:21.204736px;}
.ls2f{letter-spacing:21.555276px;}
.ls31{letter-spacing:21.612359px;}
.ls38{letter-spacing:22.913447px;}
.ls42{letter-spacing:23.146963px;}
.ls11{letter-spacing:23.153447px;}
.ls19{letter-spacing:23.738346px;}
.ls2b{letter-spacing:24.150065px;}
.ls29{letter-spacing:24.906065px;}
.ls30{letter-spacing:25.028228px;}
.ls17{letter-spacing:25.075908px;}
.ls1a{letter-spacing:26.725700px;}
.ls43{letter-spacing:27.444736px;}
.ls10{letter-spacing:30.485447px;}
.ls13{letter-spacing:31.790095px;}
.ls15{letter-spacing:48.270359px;}
.lsc{letter-spacing:106.705202px;}
.ls3{letter-spacing:134.649276px;}
.ls4{letter-spacing:136.562095px;}
.ls7{letter-spacing:137.040300px;}
.ls2{letter-spacing:143.496065px;}
.lsa{letter-spacing:154.076346px;}
.ls8{letter-spacing:157.304228px;}
.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;}
}
.ws17{word-spacing:-42.002352px;}
.wsb0{word-spacing:-20.084736px;}
.ws2c{word-spacing:-16.737168px;}
.ws9b{word-spacing:-13.389768px;}
.ws37{word-spacing:-11.715984px;}
.ws9f{word-spacing:-6.814418px;}
.wsa0{word-spacing:-6.754643px;}
.ws35{word-spacing:-3.108331px;}
.ws36{word-spacing:-2.151922px;}
.ws1e{word-spacing:-1.972595px;}
.ws5b{word-spacing:-1.613941px;}
.ws85{word-spacing:-1.494390px;}
.ws75{word-spacing:-0.949223px;}
.ws69{word-spacing:-0.896634px;}
.ws71{word-spacing:-0.836858px;}
.wsc7{word-spacing:-0.621668px;}
.ws6e{word-spacing:-0.537980px;}
.wsb7{word-spacing:-0.334744px;}
.ws8f{word-spacing:-0.239102px;}
.ws2e{word-spacing:-0.179327px;}
.ws3e{word-spacing:-0.059776px;}
.ws41{word-spacing:-0.041843px;}
.wsc1{word-spacing:-0.035866px;}
.ws15{word-spacing:0.000000px;}
.ws59{word-spacing:0.059776px;}
.ws48{word-spacing:0.298878px;}
.ws5e{word-spacing:0.418429px;}
.wsc8{word-spacing:0.430385px;}
.ws7c{word-spacing:0.537980px;}
.ws32{word-spacing:0.597756px;}
.ws68{word-spacing:0.717307px;}
.wsb1{word-spacing:0.717309px;}
.ws9c{word-spacing:0.765130px;}
.ws86{word-spacing:1.135736px;}
.ws9d{word-spacing:1.147694px;}
.ws8c{word-spacing:1.255288px;}
.ws6{word-spacing:1.506355px;}
.ws18{word-spacing:1.553364px;}
.ws19{word-spacing:1.613941px;}
.wsab{word-spacing:1.673717px;}
.wsba{word-spacing:1.673721px;}
.ws6b{word-spacing:1.793268px;}
.ws57{word-spacing:1.853044px;}
.ws4c{word-spacing:1.912819px;}
.ws99{word-spacing:2.056286px;}
.ws4b{word-spacing:2.391024px;}
.ws6c{word-spacing:2.450800px;}
.ws1b{word-spacing:2.630126px;}
.ws4d{word-spacing:2.689902px;}
.ws3b{word-spacing:2.869229px;}
.ws52{word-spacing:2.917057px;}
.ws6a{word-spacing:2.929004px;}
.ws1a{word-spacing:2.988780px;}
.ws4{word-spacing:3.108331px;}
.ws5{word-spacing:3.168107px;}
.ws5a{word-spacing:3.227882px;}
.ws1f{word-spacing:3.287658px;}
.wsbb{word-spacing:3.395263px;}
.ws2b{word-spacing:3.407209px;}
.ws20{word-spacing:3.466985px;}
.wsb5{word-spacing:3.490904px;}
.ws82{word-spacing:3.526760px;}
.wsc5{word-spacing:3.537238px;}
.wsc0{word-spacing:3.537274px;}
.ws13{word-spacing:3.538724px;}
.ws9{word-spacing:3.550694px;}
.ws70{word-spacing:3.586536px;}
.wsa{word-spacing:3.604493px;}
.ws6f{word-spacing:3.646312px;}
.ws2f{word-spacing:3.765863px;}
.ws47{word-spacing:3.825638px;}
.ws28{word-spacing:3.885414px;}
.wsc3{word-spacing:3.921289px;}
.ws5c{word-spacing:3.945190px;}
.ws26{word-spacing:4.184292px;}
.wsbe{word-spacing:4.495136px;}
.wsaf{word-spacing:4.542946px;}
.wsbd{word-spacing:4.542957px;}
.ws2{word-spacing:4.602721px;}
.ws3{word-spacing:4.662497px;}
.wsc4{word-spacing:4.782060px;}
.ws87{word-spacing:4.925522px;}
.ws27{word-spacing:4.961375px;}
.ws14{word-spacing:4.973342px;}
.ws4f{word-spacing:5.021150px;}
.ws7{word-spacing:5.057050px;}
.wsb9{word-spacing:5.068984px;}
.wsad{word-spacing:5.140702px;}
.ws50{word-spacing:5.200477px;}
.ws7a{word-spacing:5.260253px;}
.ws30{word-spacing:5.320028px;}
.ws81{word-spacing:5.499355px;}
.ws21{word-spacing:5.559131px;}
.wsa7{word-spacing:5.618906px;}
.wsb6{word-spacing:5.786293px;}
.ws3a{word-spacing:5.798233px;}
.wsbc{word-spacing:5.834113px;}
.ws39{word-spacing:5.858009px;}
.ws38{word-spacing:5.917784px;}
.ws88{word-spacing:5.929754px;}
.wsb{word-spacing:5.971622px;}
.ws23{word-spacing:5.977560px;}
.ws60{word-spacing:5.977575px;}
.ws7f{word-spacing:6.097111px;}
.wsa4{word-spacing:6.118619px;}
.ws54{word-spacing:6.121037px;}
.wsa5{word-spacing:6.122485px;}
.wsc{word-spacing:6.133018px;}
.ws90{word-spacing:6.156887px;}
.ws56{word-spacing:6.216662px;}
.ws7e{word-spacing:6.395989px;}
.ws8d{word-spacing:6.575316px;}
.wsb4{word-spacing:6.647063px;}
.ws84{word-spacing:6.754643px;}
.ws83{word-spacing:6.814418px;}
.ws33{word-spacing:6.814464px;}
.ws40{word-spacing:6.874194px;}
.wsa2{word-spacing:6.886166px;}
.ws45{word-spacing:6.933970px;}
.wsa3{word-spacing:6.933987px;}
.ws44{word-spacing:6.983771px;}
.ws49{word-spacing:6.993745px;}
.ws4e{word-spacing:7.053521px;}
.ws1c{word-spacing:7.173072px;}
.wsb2{word-spacing:7.268731px;}
.ws8b{word-spacing:7.412174px;}
.wsc2{word-spacing:7.555655px;}
.ws2d{word-spacing:7.806121px;}
.wsa8{word-spacing:7.830604px;}
.ws67{word-spacing:7.890379px;}
.ws63{word-spacing:7.938220px;}
.ws22{word-spacing:7.950155px;}
.ws66{word-spacing:7.956794px;}
.ws64{word-spacing:7.958548px;}
.ws4a{word-spacing:8.069706px;}
.ws8{word-spacing:8.231155px;}
.wsac{word-spacing:8.308808px;}
.ws62{word-spacing:8.368605px;}
.ws89{word-spacing:8.428360px;}
.wsb8{word-spacing:8.512067px;}
.wsc6{word-spacing:8.751170px;}
.ws55{word-spacing:8.846789px;}
.wsb3{word-spacing:8.990273px;}
.ws24{word-spacing:9.026116px;}
.ws46{word-spacing:9.623872px;}
.ws0{word-spacing:9.709486px;}
.wsa1{word-spacing:9.743423px;}
.ws1{word-spacing:9.812778px;}
.ws92{word-spacing:9.862974px;}
.ws79{word-spacing:9.900824px;}
.ws43{word-spacing:9.902624px;}
.ws98{word-spacing:9.906824px;}
.ws73{word-spacing:9.955492px;}
.ws80{word-spacing:9.955567px;}
.ws3c{word-spacing:9.956920px;}
.ws74{word-spacing:9.959692px;}
.ws53{word-spacing:9.994505px;}
.ws6d{word-spacing:9.996942px;}
.ws25{word-spacing:10.042301px;}
.ws61{word-spacing:10.090147px;}
.ws5d{word-spacing:10.102076px;}
.ws9e{word-spacing:10.137967px;}
.ws2a{word-spacing:10.221628px;}
.wsbf{word-spacing:10.233608px;}
.wsae{word-spacing:10.341179px;}
.ws29{word-spacing:10.460730px;}
.ws7d{word-spacing:10.640057px;}
.ws8a{word-spacing:10.819384px;}
.ws93{word-spacing:10.938935px;}
.ws5f{word-spacing:11.094379px;}
.ws65{word-spacing:11.290640px;}
.wsa9{word-spacing:11.895344px;}
.wsaa{word-spacing:11.955120px;}
.ws8e{word-spacing:12.074671px;}
.ws34{word-spacing:12.612652px;}
.ws58{word-spacing:12.672427px;}
.ws9a{word-spacing:13.963615px;}
.ws1d{word-spacing:15.228121px;}
.ws72{word-spacing:16.498066px;}
.ws76{word-spacing:18.868894px;}
.ws3d{word-spacing:19.629558px;}
.ws96{word-spacing:19.647005px;}
.ws97{word-spacing:19.653005px;}
.ws77{word-spacing:20.084602px;}
.wsa6{word-spacing:22.489018px;}
.ws95{word-spacing:22.654952px;}
.ws91{word-spacing:22.780382px;}
.ws42{word-spacing:22.834279px;}
.ws78{word-spacing:23.218894px;}
.ws31{word-spacing:24.341964px;}
.ws7b{word-spacing:25.078894px;}
.ws94{word-spacing:25.800488px;}
.ws16{word-spacing:51.574733px;}
.ws3f{word-spacing:62.704604px;}
.ws11{word-spacing:74.775005px;}
.ws10{word-spacing:80.400488px;}
.wse{word-spacing:93.436894px;}
.wsf{word-spacing:94.166770px;}
.ws12{word-spacing:102.189558px;}
.wsd{word-spacing:107.974894px;}
.ws51{word-spacing:1095.697954px;}
._21{margin-left:-7.220952px;}
._2{margin-left:-5.517034px;}
._8{margin-left:-4.226389px;}
._0{margin-left:-3.202064px;}
._1{margin-left:-2.169600px;}
._4{margin-left:-1.165901px;}
._3{width:1.673717px;}
._20{width:2.773618px;}
._a{width:4.130245px;}
._12{width:5.437672px;}
._1f{width:7.938220px;}
._17{width:10.568348px;}
._23{width:13.392621px;}
._16{width:14.824349px;}
._b{width:16.418234px;}
._13{width:18.034016px;}
._c{width:19.180808px;}
._1e{width:20.185494px;}
._18{width:21.494797px;}
._d{width:23.476108px;}
._9{width:25.278875px;}
._5{width:27.065755px;}
._7{width:28.190362px;}
._10{width:29.779638px;}
._22{width:31.184840px;}
._15{width:32.451964px;}
._6{width:34.592371px;}
._1c{width:37.417589px;}
._1a{width:38.754502px;}
._e{width:40.850818px;}
._1d{width:42.889270px;}
._f{width:44.043343px;}
._1b{width:46.224217px;}
._25{width:47.348021px;}
._11{width:48.376139px;}
._26{width:50.026049px;}
._24{width:53.576616px;}
._14{width:72.281150px;}
._2c{width:74.160334px;}
._2a{width:89.108134px;}
._2b{width:94.630066px;}
._2d{width:133.038334px;}
._27{width:218.460056px;}
._29{width:231.714056px;}
._28{width:246.654056px;}
._19{width:1138.595874px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:70.734000px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs7{font-size:150.008400px;}
.y0{bottom:0.000000px;}
.y22{bottom:34.774500px;}
.y21{bottom:48.972000px;}
.y20{bottom:63.168000px;}
.y55{bottom:108.000000px;}
.y1f{bottom:112.237500px;}
.y9d{bottom:115.125000px;}
.y54{bottom:125.932500px;}
.y1e{bottom:127.027500px;}
.y9c{bottom:133.057500px;}
.yc9{bottom:135.370500px;}
.y7a{bottom:137.479500px;}
.y1d{bottom:141.817500px;}
.y53{bottom:143.865000px;}
.yc8{bottom:149.568000px;}
.y9b{bottom:150.990000px;}
.y52{bottom:161.799000px;}
.y9a{bottom:168.924000px;}
.y51{bottom:179.731500px;}
.yc7{bottom:180.364500px;}
.y99{bottom:186.856500px;}
.y50{bottom:197.664000px;}
.y98{bottom:204.789000px;}
.yc5{bottom:206.367000px;}
.y4f{bottom:215.596500px;}
.yc4{bottom:215.661000px;}
.y97{bottom:222.721500px;}
.yc6{bottom:225.255000px;}
.yec{bottom:232.167000px;}
.y4e{bottom:233.529000px;}
.y5f{bottom:234.916809px;}
.y96{bottom:240.654000px;}
.yeb{bottom:246.364500px;}
.y4d{bottom:251.461500px;}
.yc1{bottom:254.895000px;}
.y95{bottom:258.586500px;}
.yc0{bottom:264.189000px;}
.yea{bottom:264.780000px;}
.yc3{bottom:271.474500px;}
.yc2{bottom:273.783000px;}
.ye9{bottom:276.252000px;}
.y4c{bottom:276.931500px;}
.y4b{bottom:287.182500px;}
.y94{bottom:291.334500px;}
.ye8{bottom:294.667500px;}
.y72{bottom:295.281000px;}
.ybe{bottom:303.423000px;}
.ye7{bottom:310.359000px;}
.ybd{bottom:312.717000px;}
.y71{bottom:313.213500px;}
.y4a{bottom:318.825000px;}
.ye6{bottom:321.831000px;}
.ybf{bottom:322.311000px;}
.y70{bottom:331.146000px;}
.y93{bottom:334.798500px;}
.y49{bottom:336.757500px;}
.ye5{bottom:340.246500px;}
.y1c{bottom:341.688000px;}
.ybc{bottom:347.467500px;}
.y6f{bottom:349.078500px;}
.ye4{bottom:351.718500px;}
.y92{bottom:352.731000px;}
.yb4{bottom:353.217000px;}
.y48{bottom:354.690000px;}
.y1b{bottom:362.610000px;}
.y6e{bottom:367.012500px;}
.ye3{bottom:370.135500px;}
.y91{bottom:370.663500px;}
.yb3{bottom:371.149500px;}
.y47{bottom:372.622500px;}
.ye2{bottom:381.607500px;}
.y1a{bottom:383.532000px;}
.y6d{bottom:384.945000px;}
.y90{bottom:388.596000px;}
.yb2{bottom:389.082000px;}
.y46{bottom:390.555000px;}
.ybb{bottom:398.587500px;}
.ye1{bottom:400.023000px;}
.y6c{bottom:402.877500px;}
.y19{bottom:404.452500px;}
.y8f{bottom:406.530000px;}
.yb1{bottom:407.016000px;}
.y45{bottom:408.489000px;}
.y79{bottom:410.052000px;}
.ye0{bottom:411.495000px;}
.yba{bottom:412.785000px;}
.y6b{bottom:420.810000px;}
.y8e{bottom:424.462500px;}
.yb0{bottom:424.948500px;}
.y18{bottom:425.374500px;}
.ydf{bottom:425.691000px;}
.y44{bottom:426.421500px;}
.yb9{bottom:426.981000px;}
.y6a{bottom:438.742500px;}
.yb8{bottom:441.178500px;}
.y8d{bottom:442.395000px;}
.yaf{bottom:442.881000px;}
.yde{bottom:444.108000px;}
.y43{bottom:444.354000px;}
.y17{bottom:446.296500px;}
.ydd{bottom:455.580000px;}
.y69{bottom:456.675000px;}
.y8c{bottom:460.327500px;}
.yae{bottom:460.813500px;}
.y42{bottom:462.286500px;}
.y78{bottom:463.308000px;}
.y16{bottom:467.218500px;}
.ydc{bottom:469.776000px;}
.y68{bottom:474.609000px;}
.y77{bottom:477.504000px;}
.y8b{bottom:478.260000px;}
.yad{bottom:478.746000px;}
.y41{bottom:480.219000px;}
.y15{bottom:488.139000px;}
.ydb{bottom:488.191500px;}
.y67{bottom:492.541500px;}
.y8a{bottom:496.192500px;}
.yac{bottom:496.678500px;}
.y40{bottom:498.151500px;}
.yda{bottom:503.883000px;}
.y14{bottom:509.061000px;}
.y66{bottom:510.474000px;}
.y89{bottom:514.126500px;}
.yab{bottom:514.612500px;}
.y3f{bottom:516.085500px;}
.yd9{bottom:519.574500px;}
.y65{bottom:528.406500px;}
.y13{bottom:529.983000px;}
.yd8{bottom:531.046500px;}
.y88{bottom:532.059000px;}
.yaa{bottom:532.545000px;}
.y3e{bottom:534.018000px;}
.yd7{bottom:545.242500px;}
.y64{bottom:546.339000px;}
.y87{bottom:549.991500px;}
.ya9{bottom:550.477500px;}
.y12{bottom:550.903500px;}
.y3d{bottom:551.950500px;}
.yd6{bottom:559.440000px;}
.y63{bottom:564.271500px;}
.y86{bottom:567.924000px;}
.ya8{bottom:568.410000px;}
.y11{bottom:571.825500px;}
.yd5{bottom:577.855500px;}
.y3c{bottom:584.697000px;}
.y85{bottom:585.856500px;}
.ya7{bottom:586.342500px;}
.yd4{bottom:589.327500px;}
.y10{bottom:592.747500px;}
.y62{bottom:599.319000px;}
.y84{bottom:603.789000px;}
.ya6{bottom:604.275000px;}
.yd3{bottom:607.744500px;}
.y61{bottom:613.515000px;}
.yd2{bottom:619.216500px;}
.y83{bottom:621.723000px;}
.ya5{bottom:622.209000px;}
.yf{bottom:624.705000px;}
.y60{bottom:627.712500px;}
.y3b{bottom:628.923000px;}
.yd1{bottom:637.632000px;}
.y82{bottom:639.655500px;}
.ya4{bottom:640.141500px;}
.y3a{bottom:646.855500px;}
.yd0{bottom:649.104000px;}
.y5e{bottom:656.852502px;}
.y81{bottom:657.588000px;}
.ya3{bottom:658.074000px;}
.ycf{bottom:663.300000px;}
.y39{bottom:664.789500px;}
.ye{bottom:668.169000px;}
.y80{bottom:675.520500px;}
.yce{bottom:681.717000px;}
.y38{bottom:682.722000px;}
.yd{bottom:684.607500px;}
.ya2{bottom:690.820500px;}
.y7f{bottom:693.453000px;}
.y37{bottom:700.654500px;}
.yc{bottom:701.046000px;}
.ycd{bottom:706.507500px;}
.y7e{bottom:711.385500px;}
.yb{bottom:717.484500px;}
.y36{bottom:718.587000px;}
.y7d{bottom:729.319500px;}
.ya{bottom:733.923000px;}
.ya1{bottom:734.284500px;}
.y35{bottom:736.519500px;}
.ycc{bottom:749.973000px;}
.y9{bottom:750.361500px;}
.ya0{bottom:752.217000px;}
.y34{bottom:754.452000px;}
.y8{bottom:766.800000px;}
.y7c{bottom:770.265000px;}
.y33{bottom:772.386000px;}
.ycb{bottom:782.719500px;}
.y7b{bottom:784.462500px;}
.y32{bottom:790.318500px;}
.yb7{bottom:790.572000px;}
.y76{bottom:794.619000px;}
.yb6{bottom:804.769500px;}
.y9f{bottom:806.937000px;}
.y31{bottom:808.251000px;}
.y75{bottom:808.816500px;}
.yb5{bottom:818.965500px;}
.y9e{bottom:821.133000px;}
.y74{bottom:823.012500px;}
.y30{bottom:826.183500px;}
.y73{bottom:837.210000px;}
.y2f{bottom:844.116000px;}
.y7{bottom:858.423000px;}
.y2e{bottom:862.048500px;}
.y6{bottom:879.343500px;}
.y2d{bottom:879.982500px;}
.y2c{bottom:897.915000px;}
.y5{bottom:912.729000px;}
.y2b{bottom:915.847500px;}
.y4{bottom:930.661500px;}
.y2a{bottom:933.780000px;}
.y5d{bottom:948.594000px;}
.y29{bottom:951.712500px;}
.y3{bottom:963.538500px;}
.y5c{bottom:966.526500px;}
.y28{bottom:969.645000px;}
.y5b{bottom:984.459000px;}
.y27{bottom:987.579000px;}
.y5a{bottom:1002.393000px;}
.y26{bottom:1005.511500px;}
.y2{bottom:1011.358500px;}
.y59{bottom:1020.325500px;}
.y25{bottom:1023.444000px;}
.y58{bottom:1038.258000px;}
.y24{bottom:1041.376500px;}
.y1{bottom:1044.235500px;}
.y57{bottom:1056.190500px;}
.yca{bottom:1059.309000px;}
.y56{bottom:1074.123000px;}
.y23{bottom:1092.055500px;}
.h12{height:24.245146px;}
.h7{height:25.249382px;}
.h8{height:34.143908px;}
.he{height:35.865450px;}
.h5{height:37.658880px;}
.h3{height:42.799330px;}
.h6{height:44.831700px;}
.h2{height:50.211840px;}
.hf{height:50.728903px;}
.h10{height:50.734903px;}
.ha{height:51.147331px;}
.h4{height:51.153331px;}
.hd{height:51.254520px;}
.h1{height:72.304680px;}
.h11{height:83.207700px;}
.hb{height:85.271700px;}
.h9{height:116.561700px;}
.hc{height:258.179100px;}
.h0{height:1188.000000px;}
.w1{width:702.034950px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:15.957944px;}
.x10{left:108.000000px;}
.xd{left:113.932500px;}
.xb{left:123.294000px;}
.x12{left:130.416000px;}
.x28{left:136.851000px;}
.x11{left:139.876500px;}
.x1c{left:143.716500px;}
.x9{left:145.360500px;}
.x8{left:165.534000px;}
.x19{left:167.539500px;}
.x4{left:180.318000px;}
.x1b{left:205.822500px;}
.x7{left:211.117500px;}
.x1{left:225.417000px;}
.xe{left:237.847500px;}
.x6{left:240.250500px;}
.x18{left:241.512000px;}
.x1a{left:258.637500px;}
.x2{left:260.910000px;}
.x1d{left:280.434000px;}
.x26{left:319.824000px;}
.x17{left:322.558500px;}
.x27{left:380.158500px;}
.x1e{left:383.658000px;}
.xf{left:387.933000px;}
.x3{left:392.380500px;}
.xa{left:396.997500px;}
.x5{left:402.564000px;}
.x13{left:411.726000px;}
.x14{left:454.120500px;}
.xc{left:455.826000px;}
.x15{left:475.095000px;}
.x20{left:486.880500px;}
.x1f{left:492.007500px;}
.x22{left:590.103000px;}
.x21{left:595.230000px;}
.x24{left:693.327000px;}
.x23{left:698.454000px;}
.x25{left:714.729000px;}
@media print{
.v3{vertical-align:-14.997333pt;}
.v2{vertical-align:-7.973333pt;}
.v9{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.781333pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:26.144000pt;}
.v7{vertical-align:34.112000pt;}
.v5{vertical-align:35.946667pt;}
.v4{vertical-align:63.760000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000822pt;}
.ls16{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.004465pt;}
.ls3f{letter-spacing:0.009709pt;}
.ls3e{letter-spacing:0.010010pt;}
.ls3d{letter-spacing:0.011233pt;}
.ls14{letter-spacing:0.022735pt;}
.ls9{letter-spacing:0.028068pt;}
.ls22{letter-spacing:0.028642pt;}
.ls32{letter-spacing:0.028899pt;}
.ls44{letter-spacing:0.031821pt;}
.ls20{letter-spacing:0.033975pt;}
.ls5{letter-spacing:0.034233pt;}
.ls45{letter-spacing:0.034497pt;}
.ls3c{letter-spacing:0.037652pt;}
.ls18{letter-spacing:0.039252pt;}
.ls3b{letter-spacing:0.040036pt;}
.ls2e{letter-spacing:0.042986pt;}
.ls39{letter-spacing:0.044586pt;}
.ls6{letter-spacing:0.045370pt;}
.lsd{letter-spacing:2.654327pt;}
.lse{letter-spacing:2.655241pt;}
.ls46{letter-spacing:2.659661pt;}
.ls47{letter-spacing:2.664994pt;}
.ls1f{letter-spacing:2.676842pt;}
.ls41{letter-spacing:3.084647pt;}
.ls1e{letter-spacing:4.586986pt;}
.ls40{letter-spacing:7.092677pt;}
.ls25{letter-spacing:7.376058pt;}
.ls27{letter-spacing:8.892586pt;}
.ls28{letter-spacing:8.897919pt;}
.ls1d{letter-spacing:10.051719pt;}
.ls36{letter-spacing:11.524842pt;}
.ls21{letter-spacing:11.530175pt;}
.ls34{letter-spacing:11.811733pt;}
.ls35{letter-spacing:11.845652pt;}
.ls1b{letter-spacing:12.575821pt;}
.ls2a{letter-spacing:14.172586pt;}
.ls0{letter-spacing:14.228842pt;}
.ls33{letter-spacing:14.757600pt;}
.ls23{letter-spacing:14.786912pt;}
.ls26{letter-spacing:14.792245pt;}
.ls3a{letter-spacing:14.800319pt;}
.ls1{letter-spacing:15.897220pt;}
.ls2c{letter-spacing:17.950400pt;}
.ls2d{letter-spacing:17.989652pt;}
.ls24{letter-spacing:18.152245pt;}
.ls12{letter-spacing:18.472540pt;}
.ls1c{letter-spacing:18.848654pt;}
.ls2f{letter-spacing:19.160245pt;}
.ls31{letter-spacing:19.210986pt;}
.ls38{letter-spacing:20.367508pt;}
.ls42{letter-spacing:20.575078pt;}
.ls11{letter-spacing:20.580842pt;}
.ls19{letter-spacing:21.100752pt;}
.ls2b{letter-spacing:21.466724pt;}
.ls29{letter-spacing:22.138724pt;}
.ls30{letter-spacing:22.247314pt;}
.ls17{letter-spacing:22.289696pt;}
.ls1a{letter-spacing:23.756178pt;}
.ls43{letter-spacing:24.395321pt;}
.ls10{letter-spacing:27.098175pt;}
.ls13{letter-spacing:28.257862pt;}
.ls15{letter-spacing:42.906986pt;}
.lsc{letter-spacing:94.849069pt;}
.ls3{letter-spacing:119.688245pt;}
.ls4{letter-spacing:121.388529pt;}
.ls7{letter-spacing:121.813600pt;}
.ls2{letter-spacing:127.552058pt;}
.lsa{letter-spacing:136.956752pt;}
.ls8{letter-spacing:139.825981pt;}
.ws17{word-spacing:-37.335424pt;}
.wsb0{word-spacing:-17.853099pt;}
.ws2c{word-spacing:-14.877483pt;}
.ws9b{word-spacing:-11.902016pt;}
.ws37{word-spacing:-10.414208pt;}
.ws9f{word-spacing:-6.057261pt;}
.wsa0{word-spacing:-6.004127pt;}
.ws35{word-spacing:-2.762961pt;}
.ws36{word-spacing:-1.912819pt;}
.ws1e{word-spacing:-1.753418pt;}
.ws5b{word-spacing:-1.434614pt;}
.ws85{word-spacing:-1.328347pt;}
.ws75{word-spacing:-0.843754pt;}
.ws69{word-spacing:-0.797008pt;}
.ws71{word-spacing:-0.743874pt;}
.wsc7{word-spacing:-0.552594pt;}
.ws6e{word-spacing:-0.478205pt;}
.wsb7{word-spacing:-0.297550pt;}
.ws8f{word-spacing:-0.212535pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws3e{word-spacing:-0.053134pt;}
.ws41{word-spacing:-0.037194pt;}
.wsc1{word-spacing:-0.031881pt;}
.ws15{word-spacing:0.000000pt;}
.ws59{word-spacing:0.053134pt;}
.ws48{word-spacing:0.265669pt;}
.ws5e{word-spacing:0.371937pt;}
.wsc8{word-spacing:0.382565pt;}
.ws7c{word-spacing:0.478205pt;}
.ws32{word-spacing:0.531339pt;}
.ws68{word-spacing:0.637606pt;}
.wsb1{word-spacing:0.637608pt;}
.ws9c{word-spacing:0.680115pt;}
.ws86{word-spacing:1.009543pt;}
.ws9d{word-spacing:1.020173pt;}
.ws8c{word-spacing:1.115811pt;}
.ws6{word-spacing:1.338982pt;}
.ws18{word-spacing:1.380768pt;}
.ws19{word-spacing:1.434614pt;}
.wsab{word-spacing:1.487748pt;}
.wsba{word-spacing:1.487752pt;}
.ws6b{word-spacing:1.594016pt;}
.ws57{word-spacing:1.647150pt;}
.ws4c{word-spacing:1.700284pt;}
.ws99{word-spacing:1.827810pt;}
.ws4b{word-spacing:2.125355pt;}
.ws6c{word-spacing:2.178489pt;}
.ws1b{word-spacing:2.337890pt;}
.ws4d{word-spacing:2.391024pt;}
.ws3b{word-spacing:2.550426pt;}
.ws52{word-spacing:2.592939pt;}
.ws6a{word-spacing:2.603559pt;}
.ws1a{word-spacing:2.656693pt;}
.ws4{word-spacing:2.762961pt;}
.ws5{word-spacing:2.816095pt;}
.ws5a{word-spacing:2.869229pt;}
.ws1f{word-spacing:2.922363pt;}
.wsbb{word-spacing:3.018011pt;}
.ws2b{word-spacing:3.028630pt;}
.ws20{word-spacing:3.081764pt;}
.wsb5{word-spacing:3.103026pt;}
.ws82{word-spacing:3.134898pt;}
.wsc5{word-spacing:3.144211pt;}
.wsc0{word-spacing:3.144243pt;}
.ws13{word-spacing:3.145533pt;}
.ws9{word-spacing:3.156173pt;}
.ws70{word-spacing:3.188032pt;}
.wsa{word-spacing:3.203994pt;}
.ws6f{word-spacing:3.241166pt;}
.ws2f{word-spacing:3.347434pt;}
.ws47{word-spacing:3.400567pt;}
.ws28{word-spacing:3.453701pt;}
.wsc3{word-spacing:3.485590pt;}
.ws5c{word-spacing:3.506835pt;}
.ws26{word-spacing:3.719371pt;}
.wsbe{word-spacing:3.995677pt;}
.wsaf{word-spacing:4.038174pt;}
.wsbd{word-spacing:4.038184pt;}
.ws2{word-spacing:4.091308pt;}
.ws3{word-spacing:4.144442pt;}
.wsc4{word-spacing:4.250720pt;}
.ws87{word-spacing:4.378242pt;}
.ws27{word-spacing:4.410111pt;}
.ws14{word-spacing:4.420749pt;}
.ws4f{word-spacing:4.463245pt;}
.ws7{word-spacing:4.495155pt;}
.wsb9{word-spacing:4.505763pt;}
.wsad{word-spacing:4.569513pt;}
.ws50{word-spacing:4.622646pt;}
.ws7a{word-spacing:4.675780pt;}
.ws30{word-spacing:4.728914pt;}
.ws81{word-spacing:4.888316pt;}
.ws21{word-spacing:4.941450pt;}
.wsa7{word-spacing:4.994583pt;}
.wsb6{word-spacing:5.143371pt;}
.ws3a{word-spacing:5.153985pt;}
.wsbc{word-spacing:5.185878pt;}
.ws39{word-spacing:5.207119pt;}
.ws38{word-spacing:5.260253pt;}
.ws88{word-spacing:5.270893pt;}
.wsb{word-spacing:5.308109pt;}
.ws23{word-spacing:5.313387pt;}
.ws60{word-spacing:5.313400pt;}
.ws7f{word-spacing:5.419654pt;}
.wsa4{word-spacing:5.438772pt;}
.ws54{word-spacing:5.440922pt;}
.wsa5{word-spacing:5.442209pt;}
.wsc{word-spacing:5.451571pt;}
.ws90{word-spacing:5.472788pt;}
.ws56{word-spacing:5.525922pt;}
.ws7e{word-spacing:5.685324pt;}
.ws8d{word-spacing:5.844725pt;}
.wsb4{word-spacing:5.908501pt;}
.ws84{word-spacing:6.004127pt;}
.ws83{word-spacing:6.057261pt;}
.ws33{word-spacing:6.057301pt;}
.ws40{word-spacing:6.110395pt;}
.wsa2{word-spacing:6.121037pt;}
.ws45{word-spacing:6.163529pt;}
.wsa3{word-spacing:6.163544pt;}
.ws44{word-spacing:6.207796pt;}
.ws49{word-spacing:6.216662pt;}
.ws4e{word-spacing:6.269796pt;}
.ws1c{word-spacing:6.376064pt;}
.wsb2{word-spacing:6.461094pt;}
.ws8b{word-spacing:6.588599pt;}
.wsc2{word-spacing:6.716138pt;}
.ws2d{word-spacing:6.938774pt;}
.wsa8{word-spacing:6.960537pt;}
.ws67{word-spacing:7.013670pt;}
.ws63{word-spacing:7.056195pt;}
.ws22{word-spacing:7.066804pt;}
.ws66{word-spacing:7.072706pt;}
.ws64{word-spacing:7.074265pt;}
.ws4a{word-spacing:7.173072pt;}
.ws8{word-spacing:7.316582pt;}
.wsac{word-spacing:7.385607pt;}
.ws62{word-spacing:7.438760pt;}
.ws89{word-spacing:7.491875pt;}
.wsb8{word-spacing:7.566282pt;}
.wsc6{word-spacing:7.778818pt;}
.ws55{word-spacing:7.863812pt;}
.wsb3{word-spacing:7.991354pt;}
.ws24{word-spacing:8.023214pt;}
.ws46{word-spacing:8.554553pt;}
.ws0{word-spacing:8.630654pt;}
.wsa1{word-spacing:8.660820pt;}
.ws1{word-spacing:8.722469pt;}
.ws92{word-spacing:8.767088pt;}
.ws79{word-spacing:8.800733pt;}
.ws43{word-spacing:8.802333pt;}
.ws98{word-spacing:8.806066pt;}
.ws73{word-spacing:8.849326pt;}
.ws80{word-spacing:8.849393pt;}
.ws3c{word-spacing:8.850595pt;}
.ws74{word-spacing:8.853059pt;}
.ws53{word-spacing:8.884005pt;}
.ws6d{word-spacing:8.886171pt;}
.ws25{word-spacing:8.926490pt;}
.ws61{word-spacing:8.969019pt;}
.ws5d{word-spacing:8.979623pt;}
.ws9e{word-spacing:9.011526pt;}
.ws2a{word-spacing:9.085891pt;}
.wsbf{word-spacing:9.096541pt;}
.wsae{word-spacing:9.192159pt;}
.ws29{word-spacing:9.298427pt;}
.ws7d{word-spacing:9.457828pt;}
.ws8a{word-spacing:9.617230pt;}
.ws93{word-spacing:9.723498pt;}
.ws5f{word-spacing:9.861670pt;}
.ws65{word-spacing:10.036125pt;}
.wsa9{word-spacing:10.573639pt;}
.wsaa{word-spacing:10.626773pt;}
.ws8e{word-spacing:10.733041pt;}
.ws34{word-spacing:11.211246pt;}
.ws58{word-spacing:11.264380pt;}
.ws9a{word-spacing:12.412102pt;}
.ws1d{word-spacing:13.536108pt;}
.ws72{word-spacing:14.664947pt;}
.ws76{word-spacing:16.772350pt;}
.ws3d{word-spacing:17.448496pt;}
.ws96{word-spacing:17.464004pt;}
.ws97{word-spacing:17.469338pt;}
.ws77{word-spacing:17.852979pt;}
.wsa6{word-spacing:19.990238pt;}
.ws95{word-spacing:20.137735pt;}
.ws91{word-spacing:20.249229pt;}
.ws42{word-spacing:20.297137pt;}
.ws78{word-spacing:20.639017pt;}
.ws31{word-spacing:21.637301pt;}
.ws7b{word-spacing:22.292350pt;}
.ws94{word-spacing:22.933767pt;}
.ws16{word-spacing:45.844207pt;}
.ws3f{word-spacing:55.737426pt;}
.ws11{word-spacing:66.466671pt;}
.ws10{word-spacing:71.467101pt;}
.wse{word-spacing:83.055017pt;}
.wsf{word-spacing:83.703795pt;}
.ws12{word-spacing:90.835163pt;}
.wsd{word-spacing:95.977683pt;}
.ws51{word-spacing:973.953737pt;}
._21{margin-left:-6.418624pt;}
._2{margin-left:-4.904030pt;}
._8{margin-left:-3.756790pt;}
._0{margin-left:-2.846279pt;}
._1{margin-left:-1.928533pt;}
._4{margin-left:-1.036356pt;}
._3{width:1.487748pt;}
._20{width:2.465438pt;}
._a{width:3.671329pt;}
._12{width:4.833486pt;}
._1f{width:7.056195pt;}
._17{width:9.394087pt;}
._23{width:11.904552pt;}
._16{width:13.177199pt;}
._b{width:14.593986pt;}
._13{width:16.030236pt;}
._c{width:17.049607pt;}
._1e{width:17.942661pt;}
._18{width:19.106486pt;}
._d{width:20.867651pt;}
._9{width:22.470111pt;}
._5{width:24.058449pt;}
._7{width:25.058099pt;}
._10{width:26.470789pt;}
._22{width:27.719858pt;}
._15{width:28.846190pt;}
._6{width:30.748774pt;}
._1c{width:33.260079pt;}
._1a{width:34.448446pt;}
._e{width:36.311838pt;}
._1d{width:38.123795pt;}
._f{width:39.149638pt;}
._1b{width:41.088193pt;}
._25{width:42.087130pt;}
._11{width:43.001012pt;}
._26{width:44.467599pt;}
._24{width:47.623659pt;}
._14{width:64.249911pt;}
._2c{width:65.920297pt;}
._2a{width:79.207230pt;}
._2b{width:84.115614pt;}
._2d{width:118.256297pt;}
._27{width:194.186717pt;}
._29{width:205.968050pt;}
._28{width:219.248050pt;}
._19{width:1012.085221pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:62.874667pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs7{font-size:133.340800pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:30.910667pt;}
.y21{bottom:43.530667pt;}
.y20{bottom:56.149333pt;}
.y55{bottom:96.000000pt;}
.y1f{bottom:99.766667pt;}
.y9d{bottom:102.333333pt;}
.y54{bottom:111.940000pt;}
.y1e{bottom:112.913333pt;}
.y9c{bottom:118.273333pt;}
.yc9{bottom:120.329333pt;}
.y7a{bottom:122.204000pt;}
.y1d{bottom:126.060000pt;}
.y53{bottom:127.880000pt;}
.yc8{bottom:132.949333pt;}
.y9b{bottom:134.213333pt;}
.y52{bottom:143.821333pt;}
.y9a{bottom:150.154667pt;}
.y51{bottom:159.761333pt;}
.yc7{bottom:160.324000pt;}
.y99{bottom:166.094667pt;}
.y50{bottom:175.701333pt;}
.y98{bottom:182.034667pt;}
.yc5{bottom:183.437333pt;}
.y4f{bottom:191.641333pt;}
.yc4{bottom:191.698667pt;}
.y97{bottom:197.974667pt;}
.yc6{bottom:200.226667pt;}
.yec{bottom:206.370667pt;}
.y4e{bottom:207.581333pt;}
.y5f{bottom:208.814942pt;}
.y96{bottom:213.914667pt;}
.yeb{bottom:218.990667pt;}
.y4d{bottom:223.521333pt;}
.yc1{bottom:226.573333pt;}
.y95{bottom:229.854667pt;}
.yc0{bottom:234.834667pt;}
.yea{bottom:235.360000pt;}
.yc3{bottom:241.310667pt;}
.yc2{bottom:243.362667pt;}
.ye9{bottom:245.557333pt;}
.y4c{bottom:246.161333pt;}
.y4b{bottom:255.273333pt;}
.y94{bottom:258.964000pt;}
.ye8{bottom:261.926667pt;}
.y72{bottom:262.472000pt;}
.ybe{bottom:269.709333pt;}
.ye7{bottom:275.874667pt;}
.ybd{bottom:277.970667pt;}
.y71{bottom:278.412000pt;}
.y4a{bottom:283.400000pt;}
.ye6{bottom:286.072000pt;}
.ybf{bottom:286.498667pt;}
.y70{bottom:294.352000pt;}
.y93{bottom:297.598667pt;}
.y49{bottom:299.340000pt;}
.ye5{bottom:302.441333pt;}
.y1c{bottom:303.722667pt;}
.ybc{bottom:308.860000pt;}
.y6f{bottom:310.292000pt;}
.ye4{bottom:312.638667pt;}
.y92{bottom:313.538667pt;}
.yb4{bottom:313.970667pt;}
.y48{bottom:315.280000pt;}
.y1b{bottom:322.320000pt;}
.y6e{bottom:326.233333pt;}
.ye3{bottom:329.009333pt;}
.y91{bottom:329.478667pt;}
.yb3{bottom:329.910667pt;}
.y47{bottom:331.220000pt;}
.ye2{bottom:339.206667pt;}
.y1a{bottom:340.917333pt;}
.y6d{bottom:342.173333pt;}
.y90{bottom:345.418667pt;}
.yb2{bottom:345.850667pt;}
.y46{bottom:347.160000pt;}
.ybb{bottom:354.300000pt;}
.ye1{bottom:355.576000pt;}
.y6c{bottom:358.113333pt;}
.y19{bottom:359.513333pt;}
.y8f{bottom:361.360000pt;}
.yb1{bottom:361.792000pt;}
.y45{bottom:363.101333pt;}
.y79{bottom:364.490667pt;}
.ye0{bottom:365.773333pt;}
.yba{bottom:366.920000pt;}
.y6b{bottom:374.053333pt;}
.y8e{bottom:377.300000pt;}
.yb0{bottom:377.732000pt;}
.y18{bottom:378.110667pt;}
.ydf{bottom:378.392000pt;}
.y44{bottom:379.041333pt;}
.yb9{bottom:379.538667pt;}
.y6a{bottom:389.993333pt;}
.yb8{bottom:392.158667pt;}
.y8d{bottom:393.240000pt;}
.yaf{bottom:393.672000pt;}
.yde{bottom:394.762667pt;}
.y43{bottom:394.981333pt;}
.y17{bottom:396.708000pt;}
.ydd{bottom:404.960000pt;}
.y69{bottom:405.933333pt;}
.y8c{bottom:409.180000pt;}
.yae{bottom:409.612000pt;}
.y42{bottom:410.921333pt;}
.y78{bottom:411.829333pt;}
.y16{bottom:415.305333pt;}
.ydc{bottom:417.578667pt;}
.y68{bottom:421.874667pt;}
.y77{bottom:424.448000pt;}
.y8b{bottom:425.120000pt;}
.yad{bottom:425.552000pt;}
.y41{bottom:426.861333pt;}
.y15{bottom:433.901333pt;}
.ydb{bottom:433.948000pt;}
.y67{bottom:437.814667pt;}
.y8a{bottom:441.060000pt;}
.yac{bottom:441.492000pt;}
.y40{bottom:442.801333pt;}
.yda{bottom:447.896000pt;}
.y14{bottom:452.498667pt;}
.y66{bottom:453.754667pt;}
.y89{bottom:457.001333pt;}
.yab{bottom:457.433333pt;}
.y3f{bottom:458.742667pt;}
.yd9{bottom:461.844000pt;}
.y65{bottom:469.694667pt;}
.y13{bottom:471.096000pt;}
.yd8{bottom:472.041333pt;}
.y88{bottom:472.941333pt;}
.yaa{bottom:473.373333pt;}
.y3e{bottom:474.682667pt;}
.yd7{bottom:484.660000pt;}
.y64{bottom:485.634667pt;}
.y87{bottom:488.881333pt;}
.ya9{bottom:489.313333pt;}
.y12{bottom:489.692000pt;}
.y3d{bottom:490.622667pt;}
.yd6{bottom:497.280000pt;}
.y63{bottom:501.574667pt;}
.y86{bottom:504.821333pt;}
.ya8{bottom:505.253333pt;}
.y11{bottom:508.289333pt;}
.yd5{bottom:513.649333pt;}
.y3c{bottom:519.730667pt;}
.y85{bottom:520.761333pt;}
.ya7{bottom:521.193333pt;}
.yd4{bottom:523.846667pt;}
.y10{bottom:526.886667pt;}
.y62{bottom:532.728000pt;}
.y84{bottom:536.701333pt;}
.ya6{bottom:537.133333pt;}
.yd3{bottom:540.217333pt;}
.y61{bottom:545.346667pt;}
.yd2{bottom:550.414667pt;}
.y83{bottom:552.642667pt;}
.ya5{bottom:553.074667pt;}
.yf{bottom:555.293333pt;}
.y60{bottom:557.966667pt;}
.y3b{bottom:559.042667pt;}
.yd1{bottom:566.784000pt;}
.y82{bottom:568.582667pt;}
.ya4{bottom:569.014667pt;}
.y3a{bottom:574.982667pt;}
.yd0{bottom:576.981333pt;}
.y5e{bottom:583.868890pt;}
.y81{bottom:584.522667pt;}
.ya3{bottom:584.954667pt;}
.ycf{bottom:589.600000pt;}
.y39{bottom:590.924000pt;}
.ye{bottom:593.928000pt;}
.y80{bottom:600.462667pt;}
.yce{bottom:605.970667pt;}
.y38{bottom:606.864000pt;}
.yd{bottom:608.540000pt;}
.ya2{bottom:614.062667pt;}
.y7f{bottom:616.402667pt;}
.y37{bottom:622.804000pt;}
.yc{bottom:623.152000pt;}
.ycd{bottom:628.006667pt;}
.y7e{bottom:632.342667pt;}
.yb{bottom:637.764000pt;}
.y36{bottom:638.744000pt;}
.y7d{bottom:648.284000pt;}
.ya{bottom:652.376000pt;}
.ya1{bottom:652.697333pt;}
.y35{bottom:654.684000pt;}
.ycc{bottom:666.642667pt;}
.y9{bottom:666.988000pt;}
.ya0{bottom:668.637333pt;}
.y34{bottom:670.624000pt;}
.y8{bottom:681.600000pt;}
.y7c{bottom:684.680000pt;}
.y33{bottom:686.565333pt;}
.ycb{bottom:695.750667pt;}
.y7b{bottom:697.300000pt;}
.y32{bottom:702.505333pt;}
.yb7{bottom:702.730667pt;}
.y76{bottom:706.328000pt;}
.yb6{bottom:715.350667pt;}
.y9f{bottom:717.277333pt;}
.y31{bottom:718.445333pt;}
.y75{bottom:718.948000pt;}
.yb5{bottom:727.969333pt;}
.y9e{bottom:729.896000pt;}
.y74{bottom:731.566667pt;}
.y30{bottom:734.385333pt;}
.y73{bottom:744.186667pt;}
.y2f{bottom:750.325333pt;}
.y7{bottom:763.042667pt;}
.y2e{bottom:766.265333pt;}
.y6{bottom:781.638667pt;}
.y2d{bottom:782.206667pt;}
.y2c{bottom:798.146667pt;}
.y5{bottom:811.314667pt;}
.y2b{bottom:814.086667pt;}
.y4{bottom:827.254667pt;}
.y2a{bottom:830.026667pt;}
.y5d{bottom:843.194667pt;}
.y29{bottom:845.966667pt;}
.y3{bottom:856.478667pt;}
.y5c{bottom:859.134667pt;}
.y28{bottom:861.906667pt;}
.y5b{bottom:875.074667pt;}
.y27{bottom:877.848000pt;}
.y5a{bottom:891.016000pt;}
.y26{bottom:893.788000pt;}
.y2{bottom:898.985333pt;}
.y59{bottom:906.956000pt;}
.y25{bottom:909.728000pt;}
.y58{bottom:922.896000pt;}
.y24{bottom:925.668000pt;}
.y1{bottom:928.209333pt;}
.y57{bottom:938.836000pt;}
.yca{bottom:941.608000pt;}
.y56{bottom:954.776000pt;}
.y23{bottom:970.716000pt;}
.h12{height:21.551241pt;}
.h7{height:22.443895pt;}
.h8{height:30.350141pt;}
.he{height:31.880400pt;}
.h5{height:33.474560pt;}
.h3{height:38.043849pt;}
.h6{height:39.850400pt;}
.h2{height:44.632747pt;}
.hf{height:45.092358pt;}
.h10{height:45.097692pt;}
.ha{height:45.464294pt;}
.h4{height:45.469628pt;}
.hd{height:45.559573pt;}
.h1{height:64.270827pt;}
.h11{height:73.962400pt;}
.hb{height:75.797067pt;}
.h9{height:103.610400pt;}
.hc{height:229.492533pt;}
.h0{height:1056.000000pt;}
.w1{width:624.031067pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:14.184839pt;}
.x10{left:96.000000pt;}
.xd{left:101.273333pt;}
.xb{left:109.594667pt;}
.x12{left:115.925333pt;}
.x28{left:121.645333pt;}
.x11{left:124.334667pt;}
.x1c{left:127.748000pt;}
.x9{left:129.209333pt;}
.x8{left:147.141333pt;}
.x19{left:148.924000pt;}
.x4{left:160.282667pt;}
.x1b{left:182.953333pt;}
.x7{left:187.660000pt;}
.x1{left:200.370667pt;}
.xe{left:211.420000pt;}
.x6{left:213.556000pt;}
.x18{left:214.677333pt;}
.x1a{left:229.900000pt;}
.x2{left:231.920000pt;}
.x1d{left:249.274667pt;}
.x26{left:284.288000pt;}
.x17{left:286.718667pt;}
.x27{left:337.918667pt;}
.x1e{left:341.029333pt;}
.xf{left:344.829333pt;}
.x3{left:348.782667pt;}
.xa{left:352.886667pt;}
.x5{left:357.834667pt;}
.x13{left:365.978667pt;}
.x14{left:403.662667pt;}
.xc{left:405.178667pt;}
.x15{left:422.306667pt;}
.x20{left:432.782667pt;}
.x1f{left:437.340000pt;}
.x22{left:524.536000pt;}
.x21{left:529.093333pt;}
.x24{left:616.290667pt;}
.x23{left:620.848000pt;}
.x25{left:635.314667pt;}
}




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