
    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_fc7655570b89528bc3e73c01.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e1c631f39c730437f484cbe8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f28f3edce16ceef048ef0746.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_00cdd5f50cab4d54f1d6561b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954590;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_e7858c51d4f5166285edca49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682129;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_277e87d259e2b6383d458e69.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_16a5bd7c0471a669ae51ccd5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c63a41da18e510b44a42e11d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_62cc630a5188ef6f12b17d0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922363;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_ddac028b6ef386ad67931571.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_90f83594e87d244896954e7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_25048e56cdf3dd516e695c46.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.842285;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_ce4ba636b3c2c807a61c732e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_a65bd90be2f7b64c45b1edaf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b16bef91c21588c56e2c316c.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5593cb91bfd9cd0a962e2f2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947754;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_e0ad27c0447f0a9b70ee4bd3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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_84453bdfc4ec831b9097e1df.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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_d6994e4b0bc4837d265d34e7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.758789;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_f33050178b43cdde28620690.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.912598;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_6b9f5b559ce0e4ee3ca2fce9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.093262;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;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls25{letter-spacing:-0.525312px;}
.ls24{letter-spacing:-0.432288px;}
.ls16{letter-spacing:-0.381600px;}
.ls23{letter-spacing:-0.361152px;}
.ls11{letter-spacing:-0.356976px;}
.lse{letter-spacing:-0.320544px;}
.ls10{letter-spacing:-0.318384px;}
.ls15{letter-spacing:-0.308736px;}
.ls14{letter-spacing:-0.299088px;}
.ls13{letter-spacing:-0.289440px;}
.lsd{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.238464px;}
.ls22{letter-spacing:-0.213408px;}
.ls12{letter-spacing:-0.202608px;}
.ls9{letter-spacing:-0.198720px;}
.ls26{letter-spacing:-0.169632px;}
.ls19{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.125856px;}
.lsf{letter-spacing:-0.096768px;}
.ls1a{letter-spacing:-0.079488px;}
.lsa{letter-spacing:-0.059616px;}
.ls2c{letter-spacing:-0.014400px;}
.ls17{letter-spacing:-0.007200px;}
.lsb{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls1f{letter-spacing:0.118800px;}
.ls3{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.119952px;}
.ls5{letter-spacing:0.120960px;}
.ls1b{letter-spacing:0.121104px;}
.ls21{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.159840px;}
.ls2a{letter-spacing:0.171072px;}
.ls8{letter-spacing:0.213840px;}
.ls20{letter-spacing:0.237600px;}
.ls28{letter-spacing:0.251856px;}
.ls1d{letter-spacing:0.275616px;}
.ls27{letter-spacing:0.289872px;}
.ls1e{letter-spacing:0.318384px;}
.ls2b{letter-spacing:0.351648px;}
.ls1c{letter-spacing:0.356400px;}
.ls29{letter-spacing:0.427680px;}
.ls0{letter-spacing:8.673408px;}
.ls2{letter-spacing:82.113264px;}
.ls4{letter-spacing:82.114560px;}
.ls2d{letter-spacing:109.900800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-18.014400px;}
.wse{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.985600px;}
.ws2{word-spacing:-17.162784px;}
.ws0{word-spacing:-17.023680px;}
.ws4{word-spacing:-16.813440px;}
.ws3{word-spacing:-16.553376px;}
.wsc{word-spacing:-16.321536px;}
.ws18{word-spacing:-16.257600px;}
.ws13{word-spacing:-13.866048px;}
.ws14{word-spacing:-13.701888px;}
.ws15{word-spacing:-12.782880px;}
.ws17{word-spacing:-12.706848px;}
.ws16{word-spacing:-12.526272px;}
.wsf{word-spacing:-12.236400px;}
.ws10{word-spacing:-12.155616px;}
.ws11{word-spacing:-12.117600px;}
.wsd{word-spacing:-0.162864px;}
.wsa{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.006624px;}
.ws12{word-spacing:0.000000px;}
.ws9{word-spacing:0.106128px;}
.ws7{word-spacing:0.192960px;}
.ws8{word-spacing:0.212256px;}
.ws5{word-spacing:0.221904px;}
.ws6{word-spacing:0.260496px;}
.wsb{word-spacing:0.309600px;}
._7{margin-left:-5.704560px;}
._a{margin-left:-3.960000px;}
._5{margin-left:-2.070576px;}
._1{margin-left:-1.044000px;}
._0{width:1.028160px;}
._9{width:2.047536px;}
._b{width:3.981600px;}
._e{width:5.407200px;}
._f{width:6.595200px;}
._8{width:7.675200px;}
._2{width:9.005472px;}
._12{width:10.683216px;}
._18{width:11.688768px;}
._15{width:12.924000px;}
._14{width:14.839200px;}
._29{width:15.982560px;}
._20{width:16.999200px;}
._6{width:19.195200px;}
._11{width:20.880000px;}
._10{width:22.118400px;}
._d{width:23.414400px;}
._c{width:24.588000px;}
._1e{width:25.797600px;}
._23{width:26.805600px;}
._2b{width:28.404000px;}
._27{width:30.218400px;}
._16{width:31.701600px;}
._1b{width:33.156000px;}
._1c{width:34.236000px;}
._17{width:35.287200px;}
._13{width:36.640800px;}
._36{width:37.836000px;}
._25{width:39.189600px;}
._26{width:40.788000px;}
._21{width:42.703200px;}
._19{width:44.474400px;}
._1f{width:45.518400px;}
._31{width:47.512800px;}
._35{width:48.952800px;}
._43{width:50.176800px;}
._33{width:51.321600px;}
._28{width:52.531200px;}
._39{width:54.374400px;}
._1d{width:55.972800px;}
._2c{width:57.600000px;}
._3c{width:58.953600px;}
._37{width:60.825600px;}
._2d{width:61.927200px;}
._3f{width:64.699200px;}
._44{width:66.376800px;}
._42{width:68.954400px;}
._2e{width:69.998400px;}
._3d{width:72.007200px;}
._4{width:74.096064px;}
._1a{width:76.010400px;}
._2a{width:77.961600px;}
._38{width:79.272000px;}
._3{width:82.469664px;}
._3a{width:85.017600px;}
._30{width:97.920000px;}
._41{width:100.766880px;}
._34{width:109.857600px;}
._32{width:115.970400px;}
._2f{width:119.829600px;}
._40{width:128.548800px;}
._3e{width:138.398400px;}
._24{width:158.054400px;}
._22{width:194.399424px;}
._3b{width:235.728000px;}
.fc2{color:rgb(121,124,143);}
.fc1{color:rgb(14,14,14);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs8{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:76.044197px;}
.fs5{font-size:88.344446px;}
.fs4{font-size:94.233960px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.620000px;}
.y8{bottom:3.780000px;}
.yc{bottom:4.500000px;}
.y3b{bottom:4.920000px;}
.y4f{bottom:4.980000px;}
.y9{bottom:13.860000px;}
.y2a{bottom:14.460000px;}
.y4d{bottom:16.740000px;}
.y12{bottom:19.680000px;}
.y14{bottom:19.990588px;}
.y13{bottom:20.004706px;}
.y17{bottom:33.780000px;}
.y29{bottom:36.060000px;}
.y4c{bottom:40.500000px;}
.y2{bottom:57.960000px;}
.y28{bottom:60.180000px;}
.y10{bottom:61.800000px;}
.y11{bottom:62.124720px;}
.y4b{bottom:64.260000px;}
.y16{bottom:65.460000px;}
.y39{bottom:66.960000px;}
.y3a{bottom:75.000000px;}
.y1{bottom:80.280000px;}
.y27{bottom:83.940000px;}
.y38{bottom:84.600000px;}
.y4a{bottom:88.020000px;}
.yac{bottom:101.160000px;}
.y26{bottom:107.700000px;}
.yd7{bottom:108.360000px;}
.yfc{bottom:109.080000px;}
.y132{bottom:109.440000px;}
.y49{bottom:111.780000px;}
.y77{bottom:112.680000px;}
.y15b{bottom:115.920000px;}
.y108{bottom:119.520000px;}
.y19a{bottom:121.320000px;}
.y64{bottom:123.120000px;}
.y10b{bottom:129.240000px;}
.y98{bottom:129.960000px;}
.y131{bottom:130.320000px;}
.y25{bottom:131.460000px;}
.yab{bottom:132.480000px;}
.y48{bottom:135.540000px;}
.y15a{bottom:136.440000px;}
.y180{bottom:138.960000px;}
.yd6{bottom:139.320000px;}
.yfb{bottom:140.040000px;}
.y116{bottom:140.400000px;}
.y199{bottom:141.840000px;}
.y76{bottom:143.640000px;}
.yc4{bottom:150.480000px;}
.y63{bottom:154.080000px;}
.y24{bottom:155.580000px;}
.y159{bottom:157.320000px;}
.y47{bottom:159.300000px;}
.y130{bottom:159.480000px;}
.y17f{bottom:159.840000px;}
.yea{bottom:160.560000px;}
.y97{bottom:160.920000px;}
.yaa{bottom:163.440000px;}
.yfa{bottom:171.000000px;}
.y115{bottom:171.360000px;}
.y75{bottom:174.600000px;}
.y158{bottom:177.840000px;}
.y34{bottom:178.920000px;}
.y23{bottom:179.340000px;}
.y17e{bottom:180.720000px;}
.yc3{bottom:181.440000px;}
.y107{bottom:181.800000px;}
.y46{bottom:183.060000px;}
.y62{bottom:185.040000px;}
.y12f{bottom:189.360000px;}
.yd5{bottom:191.520000px;}
.y96{bottom:191.880000px;}
.y198{bottom:200.880000px;}
.y17d{bottom:201.240000px;}
.yf9{bottom:201.960000px;}
.y114{bottom:202.320000px;}
.y22{bottom:203.100000px;}
.y74{bottom:205.920000px;}
.y45{bottom:206.820000px;}
.y157{bottom:207.360000px;}
.y12e{bottom:210.240000px;}
.yc2{bottom:212.400000px;}
.y106{bottom:212.760000px;}
.ya9{bottom:215.280000px;}
.y61{bottom:216.000000px;}
.y1a4{bottom:218.880000px;}
.y197{bottom:222.120000px;}
.ye9{bottom:222.840000px;}
.y95{bottom:223.200000px;}
.y21{bottom:226.860000px;}
.y17c{bottom:230.760000px;}
.y44{bottom:230.940000px;}
.y12d{bottom:231.120000px;}
.y33{bottom:231.480000px;}
.yf8{bottom:233.280000px;}
.y73{bottom:236.880000px;}
.y1a3{bottom:240.120000px;}
.yc1{bottom:243.360000px;}
.y105{bottom:243.720000px;}
.ya8{bottom:246.600000px;}
.y60{bottom:247.320000px;}
.y20{bottom:250.620000px;}
.y32{bottom:250.920000px;}
.y196{bottom:251.280000px;}
.y12c{bottom:251.640000px;}
.ye8{bottom:253.800000px;}
.y94{bottom:254.160000px;}
.y43{bottom:254.700000px;}
.y156{bottom:258.120000px;}
.y17b{bottom:260.280000px;}
.y1a2{bottom:260.640000px;}
.yf7{bottom:264.240000px;}
.y113{bottom:264.600000px;}
.y31{bottom:264.960000px;}
.y72{bottom:267.840000px;}
.y12b{bottom:272.520000px;}
.y1f{bottom:274.380000px;}
.yc0{bottom:274.680000px;}
.ya7{bottom:277.560000px;}
.y5f{bottom:278.280000px;}
.y42{bottom:278.460000px;}
.y30{bottom:278.640000px;}
.y195{bottom:281.160000px;}
.y17a{bottom:281.520000px;}
.ye7{bottom:284.760000px;}
.y93{bottom:285.120000px;}
.y2f{bottom:292.320000px;}
.y12a{bottom:293.040000px;}
.yf6{bottom:295.200000px;}
.y112{bottom:295.560000px;}
.y1e{bottom:298.140000px;}
.y71{bottom:298.800000px;}
.y155{bottom:299.520000px;}
.y179{bottom:302.040000px;}
.y41{bottom:302.220000px;}
.ybf{bottom:305.640000px;}
.y104{bottom:306.000000px;}
.y2e{bottom:306.360000px;}
.ya6{bottom:308.520000px;}
.y5e{bottom:309.240000px;}
.y129{bottom:313.560000px;}
.ye6{bottom:316.080000px;}
.yf5{bottom:316.440000px;}
.y2d{bottom:320.040000px;}
.y1d{bottom:321.900000px;}
.y178{bottom:322.560000px;}
.y40{bottom:325.980000px;}
.y111{bottom:326.520000px;}
.y92{bottom:326.880000px;}
.y70{bottom:330.120000px;}
.y2c{bottom:333.720000px;}
.ybe{bottom:336.600000px;}
.y103{bottom:336.960000px;}
.ya5{bottom:339.480000px;}
.y5d{bottom:340.200000px;}
.y154{bottom:340.560000px;}
.y128{bottom:343.080000px;}
.y194{bottom:343.440000px;}
.y1c{bottom:345.660000px;}
.ye5{bottom:347.040000px;}
.y2b{bottom:347.760000px;}
.y3f{bottom:349.740000px;}
.y177{bottom:352.080000px;}
.y110{bottom:357.480000px;}
.y91{bottom:357.840000px;}
.y1a{bottom:358.500000px;}
.y6f{bottom:361.080000px;}
.y153{bottom:361.440000px;}
.y193{bottom:363.960000px;}
.ybd{bottom:367.560000px;}
.y102{bottom:367.920000px;}
.ya4{bottom:370.800000px;}
.y5c{bottom:371.520000px;}
.y127{bottom:372.600000px;}
.y3e{bottom:373.500000px;}
.y3d{bottom:373.860000px;}
.ye4{bottom:378.000000px;}
.y176{bottom:381.600000px;}
.y10f{bottom:388.800000px;}
.y90{bottom:389.160000px;}
.y152{bottom:390.600000px;}
.y6e{bottom:392.040000px;}
.y192{bottom:393.480000px;}
.y126{bottom:393.840000px;}
.y1b{bottom:397.860000px;}
.ybc{bottom:398.880000px;}
.yf4{bottom:399.240000px;}
.ya3{bottom:401.760000px;}
.y5b{bottom:402.480000px;}
.y175{bottom:402.840000px;}
.ye3{bottom:408.960000px;}
.y125{bottom:414.360000px;}
.y10e{bottom:419.760000px;}
.y8f{bottom:420.120000px;}
.y151{bottom:420.480000px;}
.y6d{bottom:423.000000px;}
.y174{bottom:423.360000px;}
.ybb{bottom:429.840000px;}
.y101{bottom:430.200000px;}
.ya2{bottom:432.720000px;}
.y5a{bottom:433.440000px;}
.ye2{bottom:440.280000px;}
.y150{bottom:441.360000px;}
.y124{bottom:443.880000px;}
.y173{bottom:444.240000px;}
.yf3{bottom:450.720000px;}
.y8e{bottom:451.080000px;}
.y1a1{bottom:452.880000px;}
.y6c{bottom:454.320000px;}
.yba{bottom:460.800000px;}
.y100{bottom:461.160000px;}
.y14f{bottom:462.240000px;}
.ya1{bottom:463.680000px;}
.y59{bottom:464.400000px;}
.y172{bottom:464.760000px;}
.ye1{bottom:471.240000px;}
.y123{bottom:473.400000px;}
.yf2{bottom:481.680000px;}
.y8d{bottom:482.040000px;}
.y1a0{bottom:482.400000px;}
.y14e{bottom:482.760000px;}
.y6b{bottom:485.280000px;}
.y191{bottom:485.640000px;}
.yb9{bottom:491.760000px;}
.yff{bottom:492.120000px;}
.y171{bottom:494.280000px;}
.y122{bottom:494.640000px;}
.ya0{bottom:495.000000px;}
.y58{bottom:495.720000px;}
.ye0{bottom:502.200000px;}
.y14d{bottom:503.640000px;}
.y190{bottom:506.160000px;}
.y8c{bottom:513.000000px;}
.y121{bottom:515.160000px;}
.y6a{bottom:516.240000px;}
.yb8{bottom:523.080000px;}
.y170{bottom:523.800000px;}
.y14c{bottom:524.160000px;}
.y9f{bottom:525.960000px;}
.y57{bottom:526.680000px;}
.ydf{bottom:533.160000px;}
.y18f{bottom:535.680000px;}
.y120{bottom:536.040000px;}
.yd4{bottom:543.960000px;}
.y8b{bottom:544.320000px;}
.y16f{bottom:545.040000px;}
.y69{bottom:547.200000px;}
.y14b{bottom:553.680000px;}
.yb7{bottom:554.040000px;}
.yfe{bottom:554.400000px;}
.y11f{bottom:556.560000px;}
.y9e{bottom:556.920000px;}
.y56{bottom:557.640000px;}
.yde{bottom:564.480000px;}
.yd3{bottom:564.840000px;}
.y18e{bottom:565.200000px;}
.y16e{bottom:565.560000px;}
.yf1{bottom:574.920000px;}
.y8a{bottom:575.280000px;}
.y68{bottom:578.520000px;}
.y14a{bottom:583.200000px;}
.yb6{bottom:585.000000px;}
.yfd{bottom:585.360000px;}
.y16d{bottom:586.440000px;}
.y9d{bottom:587.880000px;}
.y55{bottom:588.600000px;}
.ydd{bottom:595.440000px;}
.y149{bottom:604.440000px;}
.yf0{bottom:605.880000px;}
.y89{bottom:606.240000px;}
.y18d{bottom:606.960000px;}
.y11e{bottom:608.400000px;}
.y67{bottom:609.480000px;}
.y16c{bottom:615.600000px;}
.yb5{bottom:615.960000px;}
.yd2{bottom:616.320000px;}
.y9c{bottom:619.200000px;}
.y54{bottom:619.920000px;}
.y148{bottom:624.960000px;}
.ydc{bottom:626.400000px;}
.y18c{bottom:627.840000px;}
.y88{bottom:637.200000px;}
.y9b{bottom:640.080000px;}
.y66{bottom:640.440000px;}
.y16b{bottom:645.480000px;}
.yd1{bottom:647.280000px;}
.y53{bottom:650.880000px;}
.y147{bottom:654.480000px;}
.y18b{bottom:657.000000px;}
.ydb{bottom:657.360000px;}
.y11d{bottom:660.600000px;}
.y9a{bottom:660.960000px;}
.y16a{bottom:666.360000px;}
.yb4{bottom:668.160000px;}
.y87{bottom:668.520000px;}
.y65{bottom:671.400000px;}
.y52{bottom:671.760000px;}
.yd0{bottom:678.600000px;}
.y146{bottom:684.000000px;}
.y18a{bottom:686.880000px;}
.y169{bottom:687.240000px;}
.yda{bottom:688.680000px;}
.y10d{bottom:689.040000px;}
.y11c{bottom:691.560000px;}
.y51{bottom:692.640000px;}
.yb3{bottom:699.120000px;}
.y86{bottom:699.480000px;}
.y145{bottom:705.240000px;}
.y168{bottom:707.760000px;}
.y99{bottom:709.560000px;}
.y10c{bottom:709.920000px;}
.yd9{bottom:719.640000px;}
.y11b{bottom:722.520000px;}
.y50{bottom:723.600000px;}
.y144{bottom:725.760000px;}
.y189{bottom:728.640000px;}
.yb2{bottom:730.080000px;}
.y85{bottom:730.440000px;}
.y167{bottom:737.280000px;}
.y4e{bottom:739.500000px;}
.ycf{bottom:740.520000px;}
.y143{bottom:746.640000px;}
.y188{bottom:749.160000px;}
.yd8{bottom:750.600000px;}
.y11a{bottom:753.480000px;}
.y3c{bottom:760.500000px;}
.y84{bottom:761.400000px;}
.y166{bottom:766.800000px;}
.y142{bottom:767.160000px;}
.y187{bottom:770.040000px;}
.yce{bottom:771.480000px;}
.y19f{bottom:778.680000px;}
.y119{bottom:784.800000px;}
.y141{bottom:788.040000px;}
.yb1{bottom:792.360000px;}
.y83{bottom:792.720000px;}
.y186{bottom:799.200000px;}
.ycd{bottom:802.800000px;}
.y19{bottom:807.480000px;}
.y19e{bottom:808.200000px;}
.y140{bottom:808.560000px;}
.y118{bottom:815.760000px;}
.yb0{bottom:823.320000px;}
.y82{bottom:823.680000px;}
.y185{bottom:829.080000px;}
.y165{bottom:829.440000px;}
.ycc{bottom:833.760000px;}
.y13f{bottom:838.080000px;}
.y18{bottom:839.160000px;}
.y117{bottom:846.720000px;}
.y164{bottom:849.960000px;}
.yaf{bottom:854.280000px;}
.y81{bottom:854.640000px;}
.y15{bottom:856.500000px;}
.ycb{bottom:864.720000px;}
.y13e{bottom:867.600000px;}
.y163{bottom:870.840000px;}
.y80{bottom:885.600000px;}
.y13d{bottom:888.840000px;}
.y184{bottom:891.360000px;}
.yca{bottom:895.680000px;}
.y162{bottom:900.000000px;}
.yae{bottom:906.480000px;}
.y13c{bottom:909.360000px;}
.y19d{bottom:912.240000px;}
.yef{bottom:916.560000px;}
.y7f{bottom:916.920000px;}
.y183{bottom:920.880000px;}
.yc9{bottom:927.000000px;}
.yad{bottom:927.360000px;}
.y161{bottom:929.880000px;}
.y13b{bottom:930.240000px;}
.y10a{bottom:937.440000px;}
.yf{bottom:939.000000px;}
.y19c{bottom:941.400000px;}
.yee{bottom:947.520000px;}
.y7e{bottom:947.880000px;}
.y182{bottom:950.400000px;}
.y13a{bottom:950.760000px;}
.yc8{bottom:957.960000px;}
.y109{bottom:958.320000px;}
.y19b{bottom:971.280000px;}
.y139{bottom:971.640000px;}
.yed{bottom:978.480000px;}
.y7d{bottom:978.840000px;}
.yc7{bottom:988.920000px;}
.y138{bottom:992.160000px;}
.y7c{bottom:1009.800000px;}
.y160{bottom:1013.040000px;}
.yc6{bottom:1019.880000px;}
.y137{bottom:1021.680000px;}
.ye{bottom:1028.160000px;}
.yec{bottom:1030.680000px;}
.y15f{bottom:1033.560000px;}
.y7b{bottom:1041.120000px;}
.y181{bottom:1042.200000px;}
.yd{bottom:1050.120000px;}
.yc5{bottom:1051.200000px;}
.yeb{bottom:1051.560000px;}
.y15e{bottom:1054.440000px;}
.yb{bottom:1066.500000px;}
.y7a{bottom:1072.080000px;}
.y136{bottom:1072.440000px;}
.y15d{bottom:1083.600000px;}
.y7{bottom:1084.500000px;}
.y135{bottom:1092.960000px;}
.y79{bottom:1103.040000px;}
.y15c{bottom:1113.480000px;}
.y134{bottom:1113.840000px;}
.y6{bottom:1125.720000px;}
.y78{bottom:1134.000000px;}
.y133{bottom:1134.360000px;}
.y5{bottom:1147.680000px;}
.y37{bottom:1155.600000px;}
.y4{bottom:1169.640000px;}
.y36{bottom:1176.840000px;}
.y3{bottom:1191.600000px;}
.y35{bottom:1195.560000px;}
.h5{height:19.500000px;}
.h15{height:22.500000px;}
.h12{height:32.994844px;}
.h14{height:36.359297px;}
.h4{height:37.500000px;}
.h13{height:41.574375px;}
.h6{height:44.355938px;}
.h3{height:47.988281px;}
.h10{height:48.796875px;}
.h11{height:49.992188px;}
.h19{height:50.167969px;}
.h2{height:50.326875px;}
.hd{height:50.683754px;}
.hc{height:50.695313px;}
.h17{height:54.000000px;}
.he{height:55.580625px;}
.h18{height:63.175781px;}
.h8{height:65.058047px;}
.hb{height:84.000000px;}
.h7{height:85.500000px;}
.ha{height:88.344446px;}
.h9{height:94.233960px;}
.h16{height:391.500000px;}
.hf{height:415.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:19.500000px;}
.w2{width:54.000000px;}
.w8{width:97.500000px;}
.w4{width:328.500000px;}
.w3{width:405.000000px;}
.w5{width:457.500000px;}
.w9{width:688.500000px;}
.w6{width:784.500000px;}
.wa{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:8.340072px;}
.x9{left:10.854864px;}
.x4{left:38.594988px;}
.x3{left:54.000000px;}
.x13{left:64.851552px;}
.x5{left:106.500000px;}
.x14{left:111.375000px;}
.x15{left:135.404676px;}
.x3b{left:151.500000px;}
.x1f{left:168.849216px;}
.x20{left:175.001580px;}
.x21{left:229.854096px;}
.x22{left:236.006460px;}
.x23{left:269.484012px;}
.x36{left:271.323144px;}
.x24{left:275.636376px;}
.x16{left:277.283556px;}
.x34{left:286.434432px;}
.x35{left:295.745004px;}
.x17{left:301.313232px;}
.x8{left:319.919880px;}
.xa{left:322.983720px;}
.x18{left:331.231320px;}
.xb{left:347.013360px;}
.x32{left:353.555640px;}
.x19{left:355.260960px;}
.xc{left:362.657880px;}
.x25{left:373.353120px;}
.x26{left:379.505520px;}
.xd{left:386.687520px;}
.x33{left:430.284240px;}
.x39{left:434.348640px;}
.x1a{left:469.237320px;}
.x3c{left:473.040000px;}
.x27{left:475.526160px;}
.x28{left:481.678200px;}
.x1b{left:493.266960px;}
.x29{left:500.776920px;}
.x2a{left:506.929320px;}
.x7{left:510.000000px;}
.x3d{left:526.140000px;}
.x2{left:537.164280px;}
.xe{left:560.312640px;}
.xf{left:584.342280px;}
.x2b{left:593.475120px;}
.x2c{left:599.627520px;}
.x2d{left:617.284800px;}
.x1c{left:619.232040px;}
.x2e{left:623.437200px;}
.x1d{left:643.261680px;}
.x1{left:660.567960px;}
.x2f{left:671.812200px;}
.x30{left:677.964600px;}
.x38{left:711.666720px;}
.x1e{left:718.988040px;}
.x10{left:724.264200px;}
.x31{left:745.684200px;}
.x11{left:748.293840px;}
.x12{left:772.985160px;}
.x3a{left:820.500000px;}
.x37{left:838.950120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls25{letter-spacing:-0.466944pt;}
.ls24{letter-spacing:-0.384256pt;}
.ls16{letter-spacing:-0.339200pt;}
.ls23{letter-spacing:-0.321024pt;}
.ls11{letter-spacing:-0.317312pt;}
.lse{letter-spacing:-0.284928pt;}
.ls10{letter-spacing:-0.283008pt;}
.ls15{letter-spacing:-0.274432pt;}
.ls14{letter-spacing:-0.265856pt;}
.ls13{letter-spacing:-0.257280pt;}
.lsd{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.211968pt;}
.ls22{letter-spacing:-0.189696pt;}
.ls12{letter-spacing:-0.180096pt;}
.ls9{letter-spacing:-0.176640pt;}
.ls26{letter-spacing:-0.150784pt;}
.ls19{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.111872pt;}
.lsf{letter-spacing:-0.086016pt;}
.ls1a{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:-0.052992pt;}
.ls2c{letter-spacing:-0.012800pt;}
.ls17{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls1f{letter-spacing:0.105600pt;}
.ls3{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106624pt;}
.ls5{letter-spacing:0.107520pt;}
.ls1b{letter-spacing:0.107648pt;}
.ls21{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.142080pt;}
.ls2a{letter-spacing:0.152064pt;}
.ls8{letter-spacing:0.190080pt;}
.ls20{letter-spacing:0.211200pt;}
.ls28{letter-spacing:0.223872pt;}
.ls1d{letter-spacing:0.244992pt;}
.ls27{letter-spacing:0.257664pt;}
.ls1e{letter-spacing:0.283008pt;}
.ls2b{letter-spacing:0.312576pt;}
.ls1c{letter-spacing:0.316800pt;}
.ls29{letter-spacing:0.380160pt;}
.ls0{letter-spacing:7.709696pt;}
.ls2{letter-spacing:72.989568pt;}
.ls4{letter-spacing:72.990720pt;}
.ls2d{letter-spacing:97.689600pt;}
.ws1a{word-spacing:-16.012800pt;}
.wse{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.987200pt;}
.ws2{word-spacing:-15.255808pt;}
.ws0{word-spacing:-15.132160pt;}
.ws4{word-spacing:-14.945280pt;}
.ws3{word-spacing:-14.714112pt;}
.wsc{word-spacing:-14.508032pt;}
.ws18{word-spacing:-14.451200pt;}
.ws13{word-spacing:-12.325376pt;}
.ws14{word-spacing:-12.179456pt;}
.ws15{word-spacing:-11.362560pt;}
.ws17{word-spacing:-11.294976pt;}
.ws16{word-spacing:-11.134464pt;}
.wsf{word-spacing:-10.876800pt;}
.ws10{word-spacing:-10.804992pt;}
.ws11{word-spacing:-10.771200pt;}
.wsd{word-spacing:-0.144768pt;}
.wsa{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.005888pt;}
.ws12{word-spacing:0.000000pt;}
.ws9{word-spacing:0.094336pt;}
.ws7{word-spacing:0.171520pt;}
.ws8{word-spacing:0.188672pt;}
.ws5{word-spacing:0.197248pt;}
.ws6{word-spacing:0.231552pt;}
.wsb{word-spacing:0.275200pt;}
._7{margin-left:-5.070720pt;}
._a{margin-left:-3.520000pt;}
._5{margin-left:-1.840512pt;}
._1{margin-left:-0.928000pt;}
._0{width:0.913920pt;}
._9{width:1.820032pt;}
._b{width:3.539200pt;}
._e{width:4.806400pt;}
._f{width:5.862400pt;}
._8{width:6.822400pt;}
._2{width:8.004864pt;}
._12{width:9.496192pt;}
._18{width:10.390016pt;}
._15{width:11.488000pt;}
._14{width:13.190400pt;}
._29{width:14.206720pt;}
._20{width:15.110400pt;}
._6{width:17.062400pt;}
._11{width:18.560000pt;}
._10{width:19.660800pt;}
._d{width:20.812800pt;}
._c{width:21.856000pt;}
._1e{width:22.931200pt;}
._23{width:23.827200pt;}
._2b{width:25.248000pt;}
._27{width:26.860800pt;}
._16{width:28.179200pt;}
._1b{width:29.472000pt;}
._1c{width:30.432000pt;}
._17{width:31.366400pt;}
._13{width:32.569600pt;}
._36{width:33.632000pt;}
._25{width:34.835200pt;}
._26{width:36.256000pt;}
._21{width:37.958400pt;}
._19{width:39.532800pt;}
._1f{width:40.460800pt;}
._31{width:42.233600pt;}
._35{width:43.513600pt;}
._43{width:44.601600pt;}
._33{width:45.619200pt;}
._28{width:46.694400pt;}
._39{width:48.332800pt;}
._1d{width:49.753600pt;}
._2c{width:51.200000pt;}
._3c{width:52.403200pt;}
._37{width:54.067200pt;}
._2d{width:55.046400pt;}
._3f{width:57.510400pt;}
._44{width:59.001600pt;}
._42{width:61.292800pt;}
._2e{width:62.220800pt;}
._3d{width:64.006400pt;}
._4{width:65.863168pt;}
._1a{width:67.564800pt;}
._2a{width:69.299200pt;}
._38{width:70.464000pt;}
._3{width:73.306368pt;}
._3a{width:75.571200pt;}
._30{width:87.040000pt;}
._41{width:89.570560pt;}
._34{width:97.651200pt;}
._32{width:103.084800pt;}
._2f{width:106.515200pt;}
._40{width:114.265600pt;}
._3e{width:123.020800pt;}
._24{width:140.492800pt;}
._22{width:172.799488pt;}
._3b{width:209.536000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:67.594842pt;}
.fs5{font-size:78.528397pt;}
.fs4{font-size:83.763520pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.440000pt;}
.y8{bottom:3.360000pt;}
.yc{bottom:4.000000pt;}
.y3b{bottom:4.373333pt;}
.y4f{bottom:4.426667pt;}
.y9{bottom:12.320000pt;}
.y2a{bottom:12.853333pt;}
.y4d{bottom:14.880000pt;}
.y12{bottom:17.493333pt;}
.y14{bottom:17.769412pt;}
.y13{bottom:17.781961pt;}
.y17{bottom:30.026667pt;}
.y29{bottom:32.053333pt;}
.y4c{bottom:36.000000pt;}
.y2{bottom:51.520000pt;}
.y28{bottom:53.493333pt;}
.y10{bottom:54.933333pt;}
.y11{bottom:55.221973pt;}
.y4b{bottom:57.120000pt;}
.y16{bottom:58.186667pt;}
.y39{bottom:59.520000pt;}
.y3a{bottom:66.666667pt;}
.y1{bottom:71.360000pt;}
.y27{bottom:74.613333pt;}
.y38{bottom:75.200000pt;}
.y4a{bottom:78.240000pt;}
.yac{bottom:89.920000pt;}
.y26{bottom:95.733333pt;}
.yd7{bottom:96.320000pt;}
.yfc{bottom:96.960000pt;}
.y132{bottom:97.280000pt;}
.y49{bottom:99.360000pt;}
.y77{bottom:100.160000pt;}
.y15b{bottom:103.040000pt;}
.y108{bottom:106.240000pt;}
.y19a{bottom:107.840000pt;}
.y64{bottom:109.440000pt;}
.y10b{bottom:114.880000pt;}
.y98{bottom:115.520000pt;}
.y131{bottom:115.840000pt;}
.y25{bottom:116.853333pt;}
.yab{bottom:117.760000pt;}
.y48{bottom:120.480000pt;}
.y15a{bottom:121.280000pt;}
.y180{bottom:123.520000pt;}
.yd6{bottom:123.840000pt;}
.yfb{bottom:124.480000pt;}
.y116{bottom:124.800000pt;}
.y199{bottom:126.080000pt;}
.y76{bottom:127.680000pt;}
.yc4{bottom:133.760000pt;}
.y63{bottom:136.960000pt;}
.y24{bottom:138.293333pt;}
.y159{bottom:139.840000pt;}
.y47{bottom:141.600000pt;}
.y130{bottom:141.760000pt;}
.y17f{bottom:142.080000pt;}
.yea{bottom:142.720000pt;}
.y97{bottom:143.040000pt;}
.yaa{bottom:145.280000pt;}
.yfa{bottom:152.000000pt;}
.y115{bottom:152.320000pt;}
.y75{bottom:155.200000pt;}
.y158{bottom:158.080000pt;}
.y34{bottom:159.040000pt;}
.y23{bottom:159.413333pt;}
.y17e{bottom:160.640000pt;}
.yc3{bottom:161.280000pt;}
.y107{bottom:161.600000pt;}
.y46{bottom:162.720000pt;}
.y62{bottom:164.480000pt;}
.y12f{bottom:168.320000pt;}
.yd5{bottom:170.240000pt;}
.y96{bottom:170.560000pt;}
.y198{bottom:178.560000pt;}
.y17d{bottom:178.880000pt;}
.yf9{bottom:179.520000pt;}
.y114{bottom:179.840000pt;}
.y22{bottom:180.533333pt;}
.y74{bottom:183.040000pt;}
.y45{bottom:183.840000pt;}
.y157{bottom:184.320000pt;}
.y12e{bottom:186.880000pt;}
.yc2{bottom:188.800000pt;}
.y106{bottom:189.120000pt;}
.ya9{bottom:191.360000pt;}
.y61{bottom:192.000000pt;}
.y1a4{bottom:194.560000pt;}
.y197{bottom:197.440000pt;}
.ye9{bottom:198.080000pt;}
.y95{bottom:198.400000pt;}
.y21{bottom:201.653333pt;}
.y17c{bottom:205.120000pt;}
.y44{bottom:205.280000pt;}
.y12d{bottom:205.440000pt;}
.y33{bottom:205.760000pt;}
.yf8{bottom:207.360000pt;}
.y73{bottom:210.560000pt;}
.y1a3{bottom:213.440000pt;}
.yc1{bottom:216.320000pt;}
.y105{bottom:216.640000pt;}
.ya8{bottom:219.200000pt;}
.y60{bottom:219.840000pt;}
.y20{bottom:222.773333pt;}
.y32{bottom:223.040000pt;}
.y196{bottom:223.360000pt;}
.y12c{bottom:223.680000pt;}
.ye8{bottom:225.600000pt;}
.y94{bottom:225.920000pt;}
.y43{bottom:226.400000pt;}
.y156{bottom:229.440000pt;}
.y17b{bottom:231.360000pt;}
.y1a2{bottom:231.680000pt;}
.yf7{bottom:234.880000pt;}
.y113{bottom:235.200000pt;}
.y31{bottom:235.520000pt;}
.y72{bottom:238.080000pt;}
.y12b{bottom:242.240000pt;}
.y1f{bottom:243.893333pt;}
.yc0{bottom:244.160000pt;}
.ya7{bottom:246.720000pt;}
.y5f{bottom:247.360000pt;}
.y42{bottom:247.520000pt;}
.y30{bottom:247.680000pt;}
.y195{bottom:249.920000pt;}
.y17a{bottom:250.240000pt;}
.ye7{bottom:253.120000pt;}
.y93{bottom:253.440000pt;}
.y2f{bottom:259.840000pt;}
.y12a{bottom:260.480000pt;}
.yf6{bottom:262.400000pt;}
.y112{bottom:262.720000pt;}
.y1e{bottom:265.013333pt;}
.y71{bottom:265.600000pt;}
.y155{bottom:266.240000pt;}
.y179{bottom:268.480000pt;}
.y41{bottom:268.640000pt;}
.ybf{bottom:271.680000pt;}
.y104{bottom:272.000000pt;}
.y2e{bottom:272.320000pt;}
.ya6{bottom:274.240000pt;}
.y5e{bottom:274.880000pt;}
.y129{bottom:278.720000pt;}
.ye6{bottom:280.960000pt;}
.yf5{bottom:281.280000pt;}
.y2d{bottom:284.480000pt;}
.y1d{bottom:286.133333pt;}
.y178{bottom:286.720000pt;}
.y40{bottom:289.760000pt;}
.y111{bottom:290.240000pt;}
.y92{bottom:290.560000pt;}
.y70{bottom:293.440000pt;}
.y2c{bottom:296.640000pt;}
.ybe{bottom:299.200000pt;}
.y103{bottom:299.520000pt;}
.ya5{bottom:301.760000pt;}
.y5d{bottom:302.400000pt;}
.y154{bottom:302.720000pt;}
.y128{bottom:304.960000pt;}
.y194{bottom:305.280000pt;}
.y1c{bottom:307.253333pt;}
.ye5{bottom:308.480000pt;}
.y2b{bottom:309.120000pt;}
.y3f{bottom:310.880000pt;}
.y177{bottom:312.960000pt;}
.y110{bottom:317.760000pt;}
.y91{bottom:318.080000pt;}
.y1a{bottom:318.666667pt;}
.y6f{bottom:320.960000pt;}
.y153{bottom:321.280000pt;}
.y193{bottom:323.520000pt;}
.ybd{bottom:326.720000pt;}
.y102{bottom:327.040000pt;}
.ya4{bottom:329.600000pt;}
.y5c{bottom:330.240000pt;}
.y127{bottom:331.200000pt;}
.y3e{bottom:332.000000pt;}
.y3d{bottom:332.320000pt;}
.ye4{bottom:336.000000pt;}
.y176{bottom:339.200000pt;}
.y10f{bottom:345.600000pt;}
.y90{bottom:345.920000pt;}
.y152{bottom:347.200000pt;}
.y6e{bottom:348.480000pt;}
.y192{bottom:349.760000pt;}
.y126{bottom:350.080000pt;}
.y1b{bottom:353.653333pt;}
.ybc{bottom:354.560000pt;}
.yf4{bottom:354.880000pt;}
.ya3{bottom:357.120000pt;}
.y5b{bottom:357.760000pt;}
.y175{bottom:358.080000pt;}
.ye3{bottom:363.520000pt;}
.y125{bottom:368.320000pt;}
.y10e{bottom:373.120000pt;}
.y8f{bottom:373.440000pt;}
.y151{bottom:373.760000pt;}
.y6d{bottom:376.000000pt;}
.y174{bottom:376.320000pt;}
.ybb{bottom:382.080000pt;}
.y101{bottom:382.400000pt;}
.ya2{bottom:384.640000pt;}
.y5a{bottom:385.280000pt;}
.ye2{bottom:391.360000pt;}
.y150{bottom:392.320000pt;}
.y124{bottom:394.560000pt;}
.y173{bottom:394.880000pt;}
.yf3{bottom:400.640000pt;}
.y8e{bottom:400.960000pt;}
.y1a1{bottom:402.560000pt;}
.y6c{bottom:403.840000pt;}
.yba{bottom:409.600000pt;}
.y100{bottom:409.920000pt;}
.y14f{bottom:410.880000pt;}
.ya1{bottom:412.160000pt;}
.y59{bottom:412.800000pt;}
.y172{bottom:413.120000pt;}
.ye1{bottom:418.880000pt;}
.y123{bottom:420.800000pt;}
.yf2{bottom:428.160000pt;}
.y8d{bottom:428.480000pt;}
.y1a0{bottom:428.800000pt;}
.y14e{bottom:429.120000pt;}
.y6b{bottom:431.360000pt;}
.y191{bottom:431.680000pt;}
.yb9{bottom:437.120000pt;}
.yff{bottom:437.440000pt;}
.y171{bottom:439.360000pt;}
.y122{bottom:439.680000pt;}
.ya0{bottom:440.000000pt;}
.y58{bottom:440.640000pt;}
.ye0{bottom:446.400000pt;}
.y14d{bottom:447.680000pt;}
.y190{bottom:449.920000pt;}
.y8c{bottom:456.000000pt;}
.y121{bottom:457.920000pt;}
.y6a{bottom:458.880000pt;}
.yb8{bottom:464.960000pt;}
.y170{bottom:465.600000pt;}
.y14c{bottom:465.920000pt;}
.y9f{bottom:467.520000pt;}
.y57{bottom:468.160000pt;}
.ydf{bottom:473.920000pt;}
.y18f{bottom:476.160000pt;}
.y120{bottom:476.480000pt;}
.yd4{bottom:483.520000pt;}
.y8b{bottom:483.840000pt;}
.y16f{bottom:484.480000pt;}
.y69{bottom:486.400000pt;}
.y14b{bottom:492.160000pt;}
.yb7{bottom:492.480000pt;}
.yfe{bottom:492.800000pt;}
.y11f{bottom:494.720000pt;}
.y9e{bottom:495.040000pt;}
.y56{bottom:495.680000pt;}
.yde{bottom:501.760000pt;}
.yd3{bottom:502.080000pt;}
.y18e{bottom:502.400000pt;}
.y16e{bottom:502.720000pt;}
.yf1{bottom:511.040000pt;}
.y8a{bottom:511.360000pt;}
.y68{bottom:514.240000pt;}
.y14a{bottom:518.400000pt;}
.yb6{bottom:520.000000pt;}
.yfd{bottom:520.320000pt;}
.y16d{bottom:521.280000pt;}
.y9d{bottom:522.560000pt;}
.y55{bottom:523.200000pt;}
.ydd{bottom:529.280000pt;}
.y149{bottom:537.280000pt;}
.yf0{bottom:538.560000pt;}
.y89{bottom:538.880000pt;}
.y18d{bottom:539.520000pt;}
.y11e{bottom:540.800000pt;}
.y67{bottom:541.760000pt;}
.y16c{bottom:547.200000pt;}
.yb5{bottom:547.520000pt;}
.yd2{bottom:547.840000pt;}
.y9c{bottom:550.400000pt;}
.y54{bottom:551.040000pt;}
.y148{bottom:555.520000pt;}
.ydc{bottom:556.800000pt;}
.y18c{bottom:558.080000pt;}
.y88{bottom:566.400000pt;}
.y9b{bottom:568.960000pt;}
.y66{bottom:569.280000pt;}
.y16b{bottom:573.760000pt;}
.yd1{bottom:575.360000pt;}
.y53{bottom:578.560000pt;}
.y147{bottom:581.760000pt;}
.y18b{bottom:584.000000pt;}
.ydb{bottom:584.320000pt;}
.y11d{bottom:587.200000pt;}
.y9a{bottom:587.520000pt;}
.y16a{bottom:592.320000pt;}
.yb4{bottom:593.920000pt;}
.y87{bottom:594.240000pt;}
.y65{bottom:596.800000pt;}
.y52{bottom:597.120000pt;}
.yd0{bottom:603.200000pt;}
.y146{bottom:608.000000pt;}
.y18a{bottom:610.560000pt;}
.y169{bottom:610.880000pt;}
.yda{bottom:612.160000pt;}
.y10d{bottom:612.480000pt;}
.y11c{bottom:614.720000pt;}
.y51{bottom:615.680000pt;}
.yb3{bottom:621.440000pt;}
.y86{bottom:621.760000pt;}
.y145{bottom:626.880000pt;}
.y168{bottom:629.120000pt;}
.y99{bottom:630.720000pt;}
.y10c{bottom:631.040000pt;}
.yd9{bottom:639.680000pt;}
.y11b{bottom:642.240000pt;}
.y50{bottom:643.200000pt;}
.y144{bottom:645.120000pt;}
.y189{bottom:647.680000pt;}
.yb2{bottom:648.960000pt;}
.y85{bottom:649.280000pt;}
.y167{bottom:655.360000pt;}
.y4e{bottom:657.333333pt;}
.ycf{bottom:658.240000pt;}
.y143{bottom:663.680000pt;}
.y188{bottom:665.920000pt;}
.yd8{bottom:667.200000pt;}
.y11a{bottom:669.760000pt;}
.y3c{bottom:676.000000pt;}
.y84{bottom:676.800000pt;}
.y166{bottom:681.600000pt;}
.y142{bottom:681.920000pt;}
.y187{bottom:684.480000pt;}
.yce{bottom:685.760000pt;}
.y19f{bottom:692.160000pt;}
.y119{bottom:697.600000pt;}
.y141{bottom:700.480000pt;}
.yb1{bottom:704.320000pt;}
.y83{bottom:704.640000pt;}
.y186{bottom:710.400000pt;}
.ycd{bottom:713.600000pt;}
.y19{bottom:717.760000pt;}
.y19e{bottom:718.400000pt;}
.y140{bottom:718.720000pt;}
.y118{bottom:725.120000pt;}
.yb0{bottom:731.840000pt;}
.y82{bottom:732.160000pt;}
.y185{bottom:736.960000pt;}
.y165{bottom:737.280000pt;}
.ycc{bottom:741.120000pt;}
.y13f{bottom:744.960000pt;}
.y18{bottom:745.920000pt;}
.y117{bottom:752.640000pt;}
.y164{bottom:755.520000pt;}
.yaf{bottom:759.360000pt;}
.y81{bottom:759.680000pt;}
.y15{bottom:761.333333pt;}
.ycb{bottom:768.640000pt;}
.y13e{bottom:771.200000pt;}
.y163{bottom:774.080000pt;}
.y80{bottom:787.200000pt;}
.y13d{bottom:790.080000pt;}
.y184{bottom:792.320000pt;}
.yca{bottom:796.160000pt;}
.y162{bottom:800.000000pt;}
.yae{bottom:805.760000pt;}
.y13c{bottom:808.320000pt;}
.y19d{bottom:810.880000pt;}
.yef{bottom:814.720000pt;}
.y7f{bottom:815.040000pt;}
.y183{bottom:818.560000pt;}
.yc9{bottom:824.000000pt;}
.yad{bottom:824.320000pt;}
.y161{bottom:826.560000pt;}
.y13b{bottom:826.880000pt;}
.y10a{bottom:833.280000pt;}
.yf{bottom:834.666667pt;}
.y19c{bottom:836.800000pt;}
.yee{bottom:842.240000pt;}
.y7e{bottom:842.560000pt;}
.y182{bottom:844.800000pt;}
.y13a{bottom:845.120000pt;}
.yc8{bottom:851.520000pt;}
.y109{bottom:851.840000pt;}
.y19b{bottom:863.360000pt;}
.y139{bottom:863.680000pt;}
.yed{bottom:869.760000pt;}
.y7d{bottom:870.080000pt;}
.yc7{bottom:879.040000pt;}
.y138{bottom:881.920000pt;}
.y7c{bottom:897.600000pt;}
.y160{bottom:900.480000pt;}
.yc6{bottom:906.560000pt;}
.y137{bottom:908.160000pt;}
.ye{bottom:913.920000pt;}
.yec{bottom:916.160000pt;}
.y15f{bottom:918.720000pt;}
.y7b{bottom:925.440000pt;}
.y181{bottom:926.400000pt;}
.yd{bottom:933.440000pt;}
.yc5{bottom:934.400000pt;}
.yeb{bottom:934.720000pt;}
.y15e{bottom:937.280000pt;}
.yb{bottom:948.000000pt;}
.y7a{bottom:952.960000pt;}
.y136{bottom:953.280000pt;}
.y15d{bottom:963.200000pt;}
.y7{bottom:964.000000pt;}
.y135{bottom:971.520000pt;}
.y79{bottom:980.480000pt;}
.y15c{bottom:989.760000pt;}
.y134{bottom:990.080000pt;}
.y6{bottom:1000.640000pt;}
.y78{bottom:1008.000000pt;}
.y133{bottom:1008.320000pt;}
.y5{bottom:1020.160000pt;}
.y37{bottom:1027.200000pt;}
.y4{bottom:1039.680000pt;}
.y36{bottom:1046.080000pt;}
.y3{bottom:1059.200000pt;}
.y35{bottom:1062.720000pt;}
.h5{height:17.333333pt;}
.h15{height:20.000000pt;}
.h12{height:29.328750pt;}
.h14{height:32.319375pt;}
.h4{height:33.333333pt;}
.h13{height:36.955000pt;}
.h6{height:39.427500pt;}
.h3{height:42.656250pt;}
.h10{height:43.375000pt;}
.h11{height:44.437500pt;}
.h19{height:44.593750pt;}
.h2{height:44.735000pt;}
.hd{height:45.052226pt;}
.hc{height:45.062500pt;}
.h17{height:48.000000pt;}
.he{height:49.405000pt;}
.h18{height:56.156250pt;}
.h8{height:57.829375pt;}
.hb{height:74.666667pt;}
.h7{height:76.000000pt;}
.ha{height:78.528397pt;}
.h9{height:83.763520pt;}
.h16{height:348.000000pt;}
.hf{height:369.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:17.333333pt;}
.w2{width:48.000000pt;}
.w8{width:86.666667pt;}
.w4{width:292.000000pt;}
.w3{width:360.000000pt;}
.w5{width:406.666667pt;}
.w9{width:612.000000pt;}
.w6{width:697.333333pt;}
.wa{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:7.413397pt;}
.x9{left:9.648768pt;}
.x4{left:34.306656pt;}
.x3{left:48.000000pt;}
.x13{left:57.645824pt;}
.x5{left:94.666667pt;}
.x14{left:99.000000pt;}
.x15{left:120.359712pt;}
.x3b{left:134.666667pt;}
.x1f{left:150.088192pt;}
.x20{left:155.556960pt;}
.x21{left:204.314752pt;}
.x22{left:209.783520pt;}
.x23{left:239.541344pt;}
.x36{left:241.176128pt;}
.x24{left:245.010112pt;}
.x16{left:246.474272pt;}
.x34{left:254.608384pt;}
.x35{left:262.884448pt;}
.x17{left:267.833984pt;}
.x8{left:284.373227pt;}
.xa{left:287.096640pt;}
.x18{left:294.427840pt;}
.xb{left:308.456320pt;}
.x32{left:314.271680pt;}
.x19{left:315.787520pt;}
.xc{left:322.362560pt;}
.x25{left:331.869440pt;}
.x26{left:337.338240pt;}
.xd{left:343.722240pt;}
.x33{left:382.474880pt;}
.x39{left:386.087680pt;}
.x1a{left:417.099840pt;}
.x3c{left:420.480000pt;}
.x27{left:422.689920pt;}
.x28{left:428.158400pt;}
.x1b{left:438.459520pt;}
.x29{left:445.135040pt;}
.x2a{left:450.603840pt;}
.x7{left:453.333333pt;}
.x3d{left:467.680000pt;}
.x2{left:477.479360pt;}
.xe{left:498.055680pt;}
.xf{left:519.415360pt;}
.x2b{left:527.533440pt;}
.x2c{left:533.002240pt;}
.x2d{left:548.697600pt;}
.x1c{left:550.428480pt;}
.x2e{left:554.166400pt;}
.x1d{left:571.788160pt;}
.x1{left:587.171520pt;}
.x2f{left:597.166400pt;}
.x30{left:602.635200pt;}
.x38{left:632.592640pt;}
.x1e{left:639.100480pt;}
.x10{left:643.790400pt;}
.x31{left:662.830400pt;}
.x11{left:665.150080pt;}
.x12{left:687.097920pt;}
.x3a{left:729.333333pt;}
.x37{left:745.733440pt;}
}




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