
    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_d2a70f1670161a82c37c8cf1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fa5948e7068c221abbf39435.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_21d3df54e4c31f4ef52b81e0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_8513c3626bc7f892a2b6a866.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_64dbb8bd9b1437fe918cfa6d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_852d036eac9bcbf7f10ede08.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7bdb7db3b07a26db2dccfe20.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6db623492d4c8e3c780d111.woff')format("woff");}.ff9{font-family:ff9;line-height:0.858887;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_28e0cb15f56f8bacbd52944e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_11e0adf06ebc3e96678026d0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a7dbc1d49e85a6b8d99046b1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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_de4df81c90653c5743f4e18a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_db39b3a7d550919578f7bdcb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.783691;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_bbce08931a237d38c6b4df4d.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1418b2c1fd20052a34f693b2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_18aa10aeda44a20d6cf35fc4.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_b2fabd6cae184a343aab75f7.woff')format("woff");}.ff12{font-family:ff12;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-77.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v4{vertical-align:-10.080000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.080000px;}
.v7{vertical-align:21.600000px;}
.v1{vertical-align:23.760000px;}
.v9{vertical-align:59.040000px;}
.v8{vertical-align:69.120000px;}
.lsc{letter-spacing:-0.460200px;}
.ls32{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.258000px;}
.ls9{letter-spacing:-0.206400px;}
.ls24{letter-spacing:-0.106800px;}
.ls28{letter-spacing:-0.018000px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsa{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.223920px;}
.ls5{letter-spacing:0.224400px;}
.ls22{letter-spacing:0.231600px;}
.ls15{letter-spacing:0.231840px;}
.ls30{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.279360px;}
.ls2b{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306600px;}
.ls23{letter-spacing:0.318000px;}
.ls1{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.383040px;}
.ls10{letter-spacing:0.398880px;}
.ls16{letter-spacing:0.468000px;}
.ls3c{letter-spacing:0.513360px;}
.ls12{letter-spacing:0.578880px;}
.ls41{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.924000px;}
.ls14{letter-spacing:1.118880px;}
.ls1c{letter-spacing:1.182240px;}
.ls19{letter-spacing:2.558880px;}
.ls36{letter-spacing:3.060000px;}
.ls1d{letter-spacing:3.278880px;}
.lse{letter-spacing:3.342240px;}
.ls1b{letter-spacing:4.062240px;}
.ls3e{letter-spacing:4.500000px;}
.ls2d{letter-spacing:5.220000px;}
.ls35{letter-spacing:5.940000px;}
.ls3a{letter-spacing:13.140000px;}
.lsf{letter-spacing:16.238880px;}
.ls13{letter-spacing:17.028000px;}
.ls26{letter-spacing:17.460000px;}
.ls2a{letter-spacing:18.900000px;}
.lsd{letter-spacing:19.814880px;}
.ls29{letter-spacing:21.546720px;}
.ls3f{letter-spacing:21.780000px;}
.ls38{letter-spacing:23.940000px;}
.ls2f{letter-spacing:24.660000px;}
.ls40{letter-spacing:24.840000px;}
.ls3d{letter-spacing:29.700000px;}
.ls31{letter-spacing:30.420000px;}
.ls2c{letter-spacing:31.140000px;}
.ls3b{letter-spacing:33.300000px;}
.ls33{letter-spacing:34.020000px;}
.ls37{letter-spacing:36.900000px;}
.ls34{letter-spacing:40.500000px;}
.ls7{letter-spacing:44.562720px;}
.ls6{letter-spacing:44.586720px;}
.ls8{letter-spacing:61.380000px;}
.ls39{letter-spacing:82.260000px;}
.ls2e{letter-spacing:90.180000px;}
.ls18{letter-spacing:182.916000px;}
.ls1f{letter-spacing:903.216000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws16{word-spacing:-15.864000px;}
.ws17{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.246600px;}
.ws1d{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.093600px;}
.ws14{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.ws1e{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.924560px;}
.ws4{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.505200px;}
.wse{word-spacing:-9.418800px;}
.wsc{word-spacing:-9.187200px;}
.wsd{word-spacing:-8.929200px;}
.ws11{word-spacing:-8.136000px;}
.ws12{word-spacing:-8.100000px;}
.wsf{word-spacing:-7.920000px;}
.ws7{word-spacing:-6.652800px;}
.ws8{word-spacing:0.000000px;}
.ws19{word-spacing:159.174000px;}
.ws1a{word-spacing:159.774000px;}
.ws1b{word-spacing:177.000000px;}
._40{margin-left:-15.135840px;}
._39{margin-left:-9.153360px;}
._33{margin-left:-6.132720px;}
._1b{margin-left:-3.645360px;}
._3{margin-left:-2.629440px;}
._2{margin-left:-1.477440px;}
._0{width:1.068960px;}
._4{width:2.313360px;}
._1a{width:3.466080px;}
._a{width:5.139360px;}
._15{width:7.051680px;}
._9{width:8.426160px;}
._8{width:9.681120px;}
._22{width:10.789440px;}
._13{width:11.806560px;}
._1e{width:13.155120px;}
._d{width:15.663840px;}
._e{width:17.130240px;}
._7{width:19.123200px;}
._11{width:20.198880px;}
._10{width:21.812400px;}
._f{width:23.007600px;}
._14{width:24.090000px;}
._b{width:25.517520px;}
._17{width:27.429840px;}
._18{width:28.625040px;}
._32{width:29.880000px;}
._6{width:30.909360px;}
._5{width:32.091120px;}
._2a{width:34.122960px;}
._1c{width:36.154800px;}
._3c{width:37.286400px;}
._25{width:38.312880px;}
._2f{width:39.800160px;}
._1{width:41.679360px;}
._19{width:42.866160px;}
._12{width:43.983360px;}
._c{width:45.591840px;}
._1d{width:48.473280px;}
._2d{width:49.600800px;}
._2e{width:51.154560px;}
._29{width:52.349760px;}
._20{width:54.202320px;}
._27{width:55.216320px;}
._16{width:56.652480px;}
._24{width:57.741600px;}
._23{width:58.744080px;}
._21{width:61.979040px;}
._36{width:64.190160px;}
._37{width:66.572640px;}
._1f{width:67.588560px;}
._35{width:69.269760px;}
._2c{width:73.304640px;}
._2b{width:74.502480px;}
._28{width:75.654720px;}
._3f{width:78.644160px;}
._3b{width:81.811440px;}
._3a{width:82.956000px;}
._26{width:89.349120px;}
._38{width:90.487440px;}
._34{width:92.815200px;}
._31{width:134.780400px;}
._30{width:140.540400px;}
._3d{width:159.678720px;}
._3e{width:160.820880px;}
.fc7{color:rgb(91,155,213);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc1{color:rgb(112,48,160);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y63{bottom:-34.740000px;}
.y7{bottom:-22.680000px;}
.y6{bottom:-10.620000px;}
.y67{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.260000px;}
.y62{bottom:1.440000px;}
.y41{bottom:3.240000px;}
.y43{bottom:4.680000px;}
.ycd{bottom:6.120000px;}
.y66{bottom:8.100000px;}
.yd6{bottom:8.820000px;}
.yde{bottom:11.520000px;}
.ydc{bottom:13.680000px;}
.yd8{bottom:15.300000px;}
.ye0{bottom:16.020000px;}
.ycb{bottom:16.200000px;}
.y60{bottom:16.380000px;}
.y110{bottom:17.610000px;}
.yda{bottom:17.640000px;}
.yd4{bottom:18.900000px;}
.y65{bottom:19.080000px;}
.y40{bottom:20.880000px;}
.yd5{bottom:28.800000px;}
.y3f{bottom:38.520000px;}
.y5f{bottom:43.380000px;}
.y10d{bottom:47.520000px;}
.y3e{bottom:56.205000px;}
.y3{bottom:58.140000px;}
.y109{bottom:65.085000px;}
.y3d{bottom:73.665000px;}
.y5e{bottom:76.140000px;}
.y2{bottom:80.100000px;}
.y2c{bottom:80.865000px;}
.y3c{bottom:91.305000px;}
.y10a{bottom:91.725000px;}
.y5d{bottom:97.560000px;}
.y2b{bottom:99.045000px;}
.y3b{bottom:108.945000px;}
.y5c{bottom:110.340000px;}
.y142{bottom:112.140000px;}
.y64{bottom:113.580000px;}
.y2a{bottom:117.225000px;}
.y10b{bottom:118.410000px;}
.y102{bottom:120.060000px;}
.yd2{bottom:120.240000px;}
.y3a{bottom:126.405000px;}
.yae{bottom:129.060000px;}
.y117{bottom:129.420000px;}
.y92{bottom:130.500000px;}
.yd1{bottom:134.820000px;}
.y29{bottom:135.405000px;}
.y101{bottom:139.860000px;}
.y39{bottom:144.045000px;}
.y10c{bottom:145.080000px;}
.y141{bottom:146.700000px;}
.yad{bottom:149.220000px;}
.y91{bottom:150.300000px;}
.y28{bottom:153.585000px;}
.yd0{bottom:155.340000px;}
.y50{bottom:157.860000px;}
.y100{bottom:159.660000px;}
.y38{bottom:161.685000px;}
.y140{bottom:163.980000px;}
.yac{bottom:169.020000px;}
.y27{bottom:169.065000px;}
.y90{bottom:170.100000px;}
.y10f{bottom:172.515000px;}
.y5a{bottom:175.140000px;}
.ycf{bottom:175.860000px;}
.y4f{bottom:177.660000px;}
.y37{bottom:179.145000px;}
.yff{bottom:179.460000px;}
.y13f{bottom:181.260000px;}
.y26{bottom:183.105000px;}
.ya6{bottom:188.820000px;}
.y8f{bottom:189.540000px;}
.y10e{bottom:194.475000px;}
.y59{bottom:194.940000px;}
.yce{bottom:196.560000px;}
.y36{bottom:196.785000px;}
.y25{bottom:197.325000px;}
.y4e{bottom:197.460000px;}
.y13e{bottom:198.360000px;}
.yfe{bottom:199.260000px;}
.ya5{bottom:208.800000px;}
.y8e{bottom:209.340000px;}
.y24{bottom:211.365000px;}
.y35{bottom:214.425000px;}
.y58{bottom:214.770000px;}
.y13d{bottom:215.670000px;}
.ycc{bottom:217.110000px;}
.y4d{bottom:217.290000px;}
.yfd{bottom:219.270000px;}
.y23{bottom:225.405000px;}
.ya4{bottom:228.630000px;}
.y8d{bottom:229.350000px;}
.y34{bottom:231.885000px;}
.y13c{bottom:232.950000px;}
.y57{bottom:234.570000px;}
.y4c{bottom:237.270000px;}
.yca{bottom:237.630000px;}
.yfc{bottom:239.070000px;}
.y22{bottom:239.085000px;}
.ya3{bottom:248.430000px;}
.y8c{bottom:249.510000px;}
.y33{bottom:249.525000px;}
.y13b{bottom:250.230000px;}
.y21{bottom:252.945000px;}
.y56{bottom:254.550000px;}
.y4b{bottom:257.070000px;}
.yfb{bottom:258.870000px;}
.y20{bottom:266.805000px;}
.y32{bottom:267.165000px;}
.y13a{bottom:267.510000px;}
.y116{bottom:267.870000px;}
.ya2{bottom:268.230000px;}
.y55{bottom:274.350000px;}
.y4a{bottom:276.870000px;}
.yfa{bottom:278.670000px;}
.y1f{bottom:280.845000px;}
.y139{bottom:284.610000px;}
.y31{bottom:284.805000px;}
.yab{bottom:287.670000px;}
.ya1{bottom:288.030000px;}
.y54{bottom:294.150000px;}
.y1e{bottom:294.915000px;}
.y49{bottom:296.670000px;}
.yf9{bottom:298.470000px;}
.y138{bottom:301.890000px;}
.y30{bottom:302.295000px;}
.yc9{bottom:303.690000px;}
.ya0{bottom:308.010000px;}
.y1d{bottom:308.955000px;}
.y53{bottom:313.950000px;}
.y48{bottom:316.470000px;}
.yf8{bottom:318.450000px;}
.y137{bottom:319.170000px;}
.y2f{bottom:319.935000px;}
.y1c{bottom:323.535000px;}
.yc8{bottom:324.030000px;}
.y9f{bottom:327.450000px;}
.yaa{bottom:327.810000px;}
.y52{bottom:333.750000px;}
.y47{bottom:336.450000px;}
.y2e{bottom:337.575000px;}
.yf7{bottom:338.250000px;}
.y1b{bottom:341.535000px;}
.yc7{bottom:343.470000px;}
.y9e{bottom:347.610000px;}
.y46{bottom:353.370000px;}
.y51{bottom:353.730000px;}
.yf6{bottom:358.050000px;}
.y2d{bottom:358.275000px;}
.y1a{bottom:358.815000px;}
.yc6{bottom:363.630000px;}
.y9d{bottom:367.410000px;}
.y45{bottom:370.650000px;}
.y136{bottom:371.010000px;}
.yf5{bottom:377.850000px;}
.yc5{bottom:383.430000px;}
.y44{bottom:384.870000px;}
.y42{bottom:387.030000px;}
.y9c{bottom:387.210000px;}
.y135{bottom:388.110000px;}
.y19{bottom:392.970000px;}
.y107{bottom:397.290000px;}
.yf4{bottom:397.650000px;}
.yc4{bottom:403.230000px;}
.y134{bottom:405.390000px;}
.y9b{bottom:407.190000px;}
.yf3{bottom:417.630000px;}
.y133{bottom:422.670000px;}
.yc3{bottom:423.210000px;}
.y9a{bottom:426.990000px;}
.y168{bottom:433.830000px;}
.yf2{bottom:437.430000px;}
.y132{bottom:439.950000px;}
.yc2{bottom:443.010000px;}
.y99{bottom:446.790000px;}
.y167{bottom:451.155000px;}
.yf1{bottom:456.915000px;}
.y106{bottom:457.275000px;}
.yc1{bottom:462.495000px;}
.y115{bottom:466.275000px;}
.y98{bottom:466.635000px;}
.y166{bottom:468.435000px;}
.y131{bottom:474.555000px;}
.yf0{bottom:476.715000px;}
.y105{bottom:477.075000px;}
.yc0{bottom:482.295000px;}
.y165{bottom:485.715000px;}
.y97{bottom:486.435000px;}
.y130{bottom:491.655000px;}
.yef{bottom:496.875000px;}
.ydf{bottom:497.055000px;}
.y164{bottom:502.995000px;}
.y96{bottom:506.415000px;}
.y12f{bottom:508.935000px;}
.yee{bottom:516.855000px;}
.y163{bottom:520.095000px;}
.y87{bottom:525.855000px;}
.y95{bottom:526.215000px;}
.yed{bottom:536.655000px;}
.ydd{bottom:537.195000px;}
.y162{bottom:537.375000px;}
.y12e{bottom:543.495000px;}
.y86{bottom:546.015000px;}
.y161{bottom:554.655000px;}
.yec{bottom:556.455000px;}
.y12d{bottom:560.775000px;}
.y85{bottom:565.815000px;}
.ydb{bottom:568.335000px;}
.y160{bottom:571.935000px;}
.yeb{bottom:576.255000px;}
.y12c{bottom:577.875000px;}
.y84{bottom:585.615000px;}
.y15f{bottom:589.215000px;}
.y12b{bottom:595.155000px;}
.yea{bottom:596.055000px;}
.yd9{bottom:603.975000px;}
.y83{bottom:605.595000px;}
.y15e{bottom:606.495000px;}
.y12a{bottom:612.435000px;}
.ye9{bottom:616.035000px;}
.y15d{bottom:623.595000px;}
.y94{bottom:625.035000px;}
.y82{bottom:625.395000px;}
.y129{bottom:629.715000px;}
.y104{bottom:635.475000px;}
.ye8{bottom:635.835000px;}
.y15c{bottom:640.875000px;}
.ya9{bottom:644.835000px;}
.y81{bottom:645.195000px;}
.y128{bottom:646.995000px;}
.yd7{bottom:647.715000px;}
.ye7{bottom:655.635000px;}
.y15b{bottom:658.155000px;}
.y127{bottom:663.915000px;}
.ya8{bottom:664.635000px;}
.y80{bottom:664.995000px;}
.ye6{bottom:675.435000px;}
.y126{bottom:681.375000px;}
.y7f{bottom:684.825000px;}
.yd3{bottom:686.445000px;}
.y15a{bottom:692.745000px;}
.ye5{bottom:694.905000px;}
.y103{bottom:695.265000px;}
.y125{bottom:698.685000px;}
.y8b{bottom:704.445000px;}
.y7e{bottom:704.805000px;}
.y159{bottom:710.025000px;}
.ye4{bottom:715.245000px;}
.y124{bottom:715.965000px;}
.y7d{bottom:724.605000px;}
.y158{bottom:727.125000px;}
.y123{bottom:733.245000px;}
.ye3{bottom:735.045000px;}
.ybf{bottom:741.885000px;}
.y7c{bottom:744.405000px;}
.y122{bottom:750.165000px;}
.ye2{bottom:751.245000px;}
.y108{bottom:753.480000px;}
.ybc{bottom:761.685000px;}
.y114{bottom:763.845000px;}
.y7b{bottom:764.205000px;}
.y121{bottom:767.805000px;}
.y18{bottom:770.685000px;}
.y157{bottom:778.965000px;}
.ybb{bottom:781.485000px;}
.ybe{bottom:783.645000px;}
.y7a{bottom:784.005000px;}
.y120{bottom:784.905000px;}
.y17{bottom:795.345000px;}
.y156{bottom:796.245000px;}
.yba{bottom:801.645000px;}
.y11f{bottom:802.185000px;}
.y79{bottom:803.985000px;}
.y155{bottom:813.345000px;}
.y11e{bottom:819.465000px;}
.y16{bottom:820.365000px;}
.yb9{bottom:823.245000px;}
.ya7{bottom:823.425000px;}
.y78{bottom:823.785000px;}
.y154{bottom:830.625000px;}
.y15{bottom:835.125000px;}
.y11d{bottom:836.385000px;}
.ybd{bottom:843.225000px;}
.y77{bottom:843.585000px;}
.y153{bottom:847.905000px;}
.y11c{bottom:854.025000px;}
.y14{bottom:860.145000px;}
.y113{bottom:863.025000px;}
.y76{bottom:863.385000px;}
.yb8{bottom:863.745000px;}
.y152{bottom:865.185000px;}
.y11b{bottom:871.305000px;}
.y13{bottom:875.085000px;}
.y151{bottom:882.465000px;}
.y75{bottom:883.185000px;}
.y11a{bottom:888.405000px;}
.yb6{bottom:890.925000px;}
.yb7{bottom:896.685000px;}
.y12{bottom:896.865000px;}
.y150{bottom:899.745000px;}
.y74{bottom:903.165000px;}
.y119{bottom:905.325000px;}
.yb5{bottom:913.965000px;}
.y14f{bottom:916.845000px;}
.y11{bottom:919.770000px;}
.y118{bottom:922.650000px;}
.y73{bottom:923.010000px;}
.y14e{bottom:934.170000px;}
.y72{bottom:942.810000px;}
.y10{bottom:945.690000px;}
.yb3{bottom:948.210000px;}
.y14d{bottom:951.450000px;}
.yb4{bottom:953.970000px;}
.y8a{bottom:962.250000px;}
.y71{bottom:962.610000px;}
.y14c{bottom:968.730000px;}
.yb2{bottom:971.250000px;}
.yf{bottom:971.430000px;}
.y89{bottom:982.050000px;}
.y70{bottom:982.410000px;}
.y14b{bottom:986.010000px;}
.ye{bottom:993.750000px;}
.y6f{bottom:1002.390000px;}
.yb1{bottom:1002.750000px;}
.y14a{bottom:1003.290000px;}
.yd{bottom:1017.330000px;}
.y149{bottom:1020.390000px;}
.y6e{bottom:1022.190000px;}
.y5b{bottom:1025.250000px;}
.yb0{bottom:1031.730000px;}
.y148{bottom:1037.670000px;}
.yc{bottom:1041.090000px;}
.ye1{bottom:1041.630000px;}
.y6d{bottom:1041.990000px;}
.y147{bottom:1054.950000px;}
.yaf{bottom:1056.750000px;}
.y6c{bottom:1061.790000px;}
.yb{bottom:1064.850000px;}
.y146{bottom:1072.230000px;}
.y93{bottom:1081.230000px;}
.y6b{bottom:1081.590000px;}
.ya{bottom:1088.790000px;}
.y145{bottom:1089.510000px;}
.y112{bottom:1101.210000px;}
.y6a{bottom:1101.570000px;}
.y144{bottom:1106.790000px;}
.y9{bottom:1112.550000px;}
.y111{bottom:1121.010000px;}
.y69{bottom:1121.370000px;}
.y143{bottom:1123.890000px;}
.y8{bottom:1136.310000px;}
.y61{bottom:1140.090000px;}
.y88{bottom:1140.810000px;}
.y68{bottom:1141.170000px;}
.y4{bottom:1176.840000px;}
.y1{bottom:1191.240000px;}
.h13{height:5.653125px;}
.h14{height:5.805000px;}
.h15{height:5.920372px;}
.h12{height:5.940000px;}
.h4{height:10.980000px;}
.h1e{height:11.160000px;}
.h27{height:19.800000px;}
.h28{height:19.836000px;}
.h1b{height:23.945625px;}
.h21{height:28.415391px;}
.h1f{height:30.420000px;}
.h2c{height:34.920000px;}
.h1a{height:36.281250px;}
.h2a{height:38.016000px;}
.ha{height:38.158594px;}
.h2d{height:39.420000px;}
.h26{height:39.780000px;}
.h20{height:40.655391px;}
.hf{height:40.843828px;}
.h6{height:40.985156px;}
.h5{height:42.086250px;}
.h2b{height:42.840000px;}
.h24{height:44.648438px;}
.h29{height:45.000000px;}
.h11{height:45.720703px;}
.h3{height:47.980898px;}
.h1d{height:48.616875px;}
.he{height:49.583118px;}
.h10{height:50.218594px;}
.hd{height:50.597578px;}
.h23{height:51.792187px;}
.h18{height:52.319180px;}
.h30{height:53.709961px;}
.h2f{height:53.853187px;}
.h32{height:58.621992px;}
.hb{height:58.651172px;}
.h16{height:60.226875px;}
.h17{height:61.423863px;}
.h9{height:66.757500px;}
.h31{height:71.613281px;}
.h1c{height:72.562500px;}
.h22{height:74.116406px;}
.h2{height:77.342344px;}
.h8{height:78.367500px;}
.h7{height:79.620469px;}
.h19{height:126.000000px;}
.h25{height:143.236406px;}
.h2e{height:222.840000px;}
.hc{height:372.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:68.040000px;}
.wb{width:68.580000px;}
.w1e{width:70.740000px;}
.w1d{width:70.956000px;}
.w1c{width:71.100000px;}
.w19{width:71.460000px;}
.w18{width:71.640000px;}
.w17{width:71.676000px;}
.w16{width:71.820000px;}
.w14{width:142.596000px;}
.wf{width:143.136000px;}
.w11{width:145.296000px;}
.wc{width:146.016000px;}
.w12{width:153.930000px;}
.wd{width:154.650000px;}
.w1b{width:166.350000px;}
.w15{width:166.710000px;}
.w13{width:167.610000px;}
.we{width:168.330000px;}
.w3{width:205.950000px;}
.w9{width:206.130000px;}
.w1f{width:206.895000px;}
.w1a{width:207.255000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w20{width:474.480000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.785000px;}
.wa{width:713.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x1d{left:9.180000px;}
.x11{left:10.800000px;}
.x1f{left:12.780000px;}
.x35{left:15.840000px;}
.x27{left:17.820000px;}
.xa{left:20.700000px;}
.x23{left:21.960000px;}
.x30{left:23.220000px;}
.x26{left:24.480000px;}
.x21{left:26.460000px;}
.x3{left:41.220000px;}
.x36{left:49.494000px;}
.x7{left:53.999987px;}
.x2c{left:57.234000px;}
.x24{left:59.580000px;}
.xe{left:63.360000px;}
.x29{left:64.980000px;}
.x25{left:66.420000px;}
.x28{left:70.200000px;}
.x33{left:75.954000px;}
.x2a{left:81.360000px;}
.x10{left:88.416000px;}
.x34{left:92.205000px;}
.x4{left:102.990000px;}
.x1{left:108.035987px;}
.x17{left:109.835987px;}
.x3b{left:121.535987px;}
.x2b{left:128.556000px;}
.x15{left:135.035987px;}
.xc{left:151.950000px;}
.xf{left:157.905000px;}
.x16{left:162.029987px;}
.x1c{left:177.330000px;}
.x39{left:208.980000px;}
.x3a{left:216.360000px;}
.x18{left:217.829987px;}
.x19{left:235.649987px;}
.x14{left:241.409987px;}
.x38{left:249.869987px;}
.x1a{left:262.694987px;}
.x9{left:267.195000px;}
.x1b{left:281.414987px;}
.x2d{left:295.275000px;}
.xd{left:312.915000px;}
.x1e{left:323.355000px;}
.x2{left:345.855000px;}
.x2e{left:367.095000px;}
.x2f{left:438.765000px;}
.x6{left:446.504987px;}
.x5{left:464.504987px;}
.xb{left:473.144987px;}
.x20{left:478.005000px;}
.x12{left:500.144987px;}
.x31{left:510.405000px;}
.x13{left:527.144987px;}
.x32{left:581.865000px;}
.x22{left:646.350000px;}
.x37{left:683.969987px;}
@media print{
.va{vertical-align:-69.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v4{vertical-align:-8.960000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.960000pt;}
.v7{vertical-align:19.200000pt;}
.v1{vertical-align:21.120000pt;}
.v9{vertical-align:52.480000pt;}
.v8{vertical-align:61.440000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.229333pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls28{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsa{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.199040pt;}
.ls5{letter-spacing:0.199467pt;}
.ls22{letter-spacing:0.205867pt;}
.ls15{letter-spacing:0.206080pt;}
.ls30{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.248320pt;}
.ls2b{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272533pt;}
.ls23{letter-spacing:0.282667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.340480pt;}
.ls10{letter-spacing:0.354560pt;}
.ls16{letter-spacing:0.416000pt;}
.ls3c{letter-spacing:0.456320pt;}
.ls12{letter-spacing:0.514560pt;}
.ls41{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.994560pt;}
.ls1c{letter-spacing:1.050880pt;}
.ls19{letter-spacing:2.274560pt;}
.ls36{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:2.914560pt;}
.lse{letter-spacing:2.970880pt;}
.ls1b{letter-spacing:3.610880pt;}
.ls3e{letter-spacing:4.000000pt;}
.ls2d{letter-spacing:4.640000pt;}
.ls35{letter-spacing:5.280000pt;}
.ls3a{letter-spacing:11.680000pt;}
.lsf{letter-spacing:14.434560pt;}
.ls13{letter-spacing:15.136000pt;}
.ls26{letter-spacing:15.520000pt;}
.ls2a{letter-spacing:16.800000pt;}
.lsd{letter-spacing:17.613227pt;}
.ls29{letter-spacing:19.152640pt;}
.ls3f{letter-spacing:19.360000pt;}
.ls38{letter-spacing:21.280000pt;}
.ls2f{letter-spacing:21.920000pt;}
.ls40{letter-spacing:22.080000pt;}
.ls3d{letter-spacing:26.400000pt;}
.ls31{letter-spacing:27.040000pt;}
.ls2c{letter-spacing:27.680000pt;}
.ls3b{letter-spacing:29.600000pt;}
.ls33{letter-spacing:30.240000pt;}
.ls37{letter-spacing:32.800000pt;}
.ls34{letter-spacing:36.000000pt;}
.ls7{letter-spacing:39.611307pt;}
.ls6{letter-spacing:39.632640pt;}
.ls8{letter-spacing:54.560000pt;}
.ls39{letter-spacing:73.120000pt;}
.ls2e{letter-spacing:80.160000pt;}
.ls18{letter-spacing:162.592000pt;}
.ls1f{letter-spacing:802.858667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws16{word-spacing:-14.101333pt;}
.ws17{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.552533pt;}
.ws1d{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.ws1e{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.710720pt;}
.ws4{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.449067pt;}
.wse{word-spacing:-8.372267pt;}
.wsc{word-spacing:-8.166400pt;}
.wsd{word-spacing:-7.937067pt;}
.ws11{word-spacing:-7.232000pt;}
.ws12{word-spacing:-7.200000pt;}
.wsf{word-spacing:-7.040000pt;}
.ws7{word-spacing:-5.913600pt;}
.ws8{word-spacing:0.000000pt;}
.ws19{word-spacing:141.488000pt;}
.ws1a{word-spacing:142.021333pt;}
.ws1b{word-spacing:157.333333pt;}
._40{margin-left:-13.454080pt;}
._39{margin-left:-8.136320pt;}
._33{margin-left:-5.451307pt;}
._1b{margin-left:-3.240320pt;}
._3{margin-left:-2.337280pt;}
._2{margin-left:-1.313280pt;}
._0{width:0.950187pt;}
._4{width:2.056320pt;}
._1a{width:3.080960pt;}
._a{width:4.568320pt;}
._15{width:6.268160pt;}
._9{width:7.489920pt;}
._8{width:8.605440pt;}
._22{width:9.590613pt;}
._13{width:10.494720pt;}
._1e{width:11.693440pt;}
._d{width:13.923413pt;}
._e{width:15.226880pt;}
._7{width:16.998400pt;}
._11{width:17.954560pt;}
._10{width:19.388800pt;}
._f{width:20.451200pt;}
._14{width:21.413333pt;}
._b{width:22.682240pt;}
._17{width:24.382080pt;}
._18{width:25.444480pt;}
._32{width:26.560000pt;}
._6{width:27.474987pt;}
._5{width:28.525440pt;}
._2a{width:30.331520pt;}
._1c{width:32.137600pt;}
._3c{width:33.143467pt;}
._25{width:34.055893pt;}
._2f{width:35.377920pt;}
._1{width:37.048320pt;}
._19{width:38.103253pt;}
._12{width:39.096320pt;}
._c{width:40.526080pt;}
._1d{width:43.087360pt;}
._2d{width:44.089600pt;}
._2e{width:45.470720pt;}
._29{width:46.533120pt;}
._20{width:48.179840pt;}
._27{width:49.081173pt;}
._16{width:50.357760pt;}
._24{width:51.325867pt;}
._23{width:52.216960pt;}
._21{width:55.092480pt;}
._36{width:57.057920pt;}
._37{width:59.175680pt;}
._1f{width:60.078720pt;}
._35{width:61.573120pt;}
._2c{width:65.159680pt;}
._2b{width:66.224427pt;}
._28{width:67.248640pt;}
._3f{width:69.905920pt;}
._3b{width:72.721280pt;}
._3a{width:73.738667pt;}
._26{width:79.421440pt;}
._38{width:80.433280pt;}
._34{width:82.502400pt;}
._31{width:119.804800pt;}
._30{width:124.924800pt;}
._3d{width:141.936640pt;}
._3e{width:142.951893pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y63{bottom:-30.880000pt;}
.y7{bottom:-20.160000pt;}
.y6{bottom:-9.440000pt;}
.y67{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.120000pt;}
.y62{bottom:1.280000pt;}
.y41{bottom:2.880000pt;}
.y43{bottom:4.160000pt;}
.ycd{bottom:5.440000pt;}
.y66{bottom:7.200000pt;}
.yd6{bottom:7.840000pt;}
.yde{bottom:10.240000pt;}
.ydc{bottom:12.160000pt;}
.yd8{bottom:13.600000pt;}
.ye0{bottom:14.240000pt;}
.ycb{bottom:14.400000pt;}
.y60{bottom:14.560000pt;}
.y110{bottom:15.653333pt;}
.yda{bottom:15.680000pt;}
.yd4{bottom:16.800000pt;}
.y65{bottom:16.960000pt;}
.y40{bottom:18.560000pt;}
.yd5{bottom:25.600000pt;}
.y3f{bottom:34.240000pt;}
.y5f{bottom:38.560000pt;}
.y10d{bottom:42.240000pt;}
.y3e{bottom:49.960000pt;}
.y3{bottom:51.680000pt;}
.y109{bottom:57.853333pt;}
.y3d{bottom:65.480000pt;}
.y5e{bottom:67.680000pt;}
.y2{bottom:71.200000pt;}
.y2c{bottom:71.880000pt;}
.y3c{bottom:81.160000pt;}
.y10a{bottom:81.533333pt;}
.y5d{bottom:86.720000pt;}
.y2b{bottom:88.040000pt;}
.y3b{bottom:96.840000pt;}
.y5c{bottom:98.080000pt;}
.y142{bottom:99.680000pt;}
.y64{bottom:100.960000pt;}
.y2a{bottom:104.200000pt;}
.y10b{bottom:105.253333pt;}
.y102{bottom:106.720000pt;}
.yd2{bottom:106.880000pt;}
.y3a{bottom:112.360000pt;}
.yae{bottom:114.720000pt;}
.y117{bottom:115.040000pt;}
.y92{bottom:116.000000pt;}
.yd1{bottom:119.840000pt;}
.y29{bottom:120.360000pt;}
.y101{bottom:124.320000pt;}
.y39{bottom:128.040000pt;}
.y10c{bottom:128.960000pt;}
.y141{bottom:130.400000pt;}
.yad{bottom:132.640000pt;}
.y91{bottom:133.600000pt;}
.y28{bottom:136.520000pt;}
.yd0{bottom:138.080000pt;}
.y50{bottom:140.320000pt;}
.y100{bottom:141.920000pt;}
.y38{bottom:143.720000pt;}
.y140{bottom:145.760000pt;}
.yac{bottom:150.240000pt;}
.y27{bottom:150.280000pt;}
.y90{bottom:151.200000pt;}
.y10f{bottom:153.346667pt;}
.y5a{bottom:155.680000pt;}
.ycf{bottom:156.320000pt;}
.y4f{bottom:157.920000pt;}
.y37{bottom:159.240000pt;}
.yff{bottom:159.520000pt;}
.y13f{bottom:161.120000pt;}
.y26{bottom:162.760000pt;}
.ya6{bottom:167.840000pt;}
.y8f{bottom:168.480000pt;}
.y10e{bottom:172.866667pt;}
.y59{bottom:173.280000pt;}
.yce{bottom:174.720000pt;}
.y36{bottom:174.920000pt;}
.y25{bottom:175.400000pt;}
.y4e{bottom:175.520000pt;}
.y13e{bottom:176.320000pt;}
.yfe{bottom:177.120000pt;}
.ya5{bottom:185.600000pt;}
.y8e{bottom:186.080000pt;}
.y24{bottom:187.880000pt;}
.y35{bottom:190.600000pt;}
.y58{bottom:190.906667pt;}
.y13d{bottom:191.706667pt;}
.ycc{bottom:192.986667pt;}
.y4d{bottom:193.146667pt;}
.yfd{bottom:194.906667pt;}
.y23{bottom:200.360000pt;}
.ya4{bottom:203.226667pt;}
.y8d{bottom:203.866667pt;}
.y34{bottom:206.120000pt;}
.y13c{bottom:207.066667pt;}
.y57{bottom:208.506667pt;}
.y4c{bottom:210.906667pt;}
.yca{bottom:211.226667pt;}
.yfc{bottom:212.506667pt;}
.y22{bottom:212.520000pt;}
.ya3{bottom:220.826667pt;}
.y8c{bottom:221.786667pt;}
.y33{bottom:221.800000pt;}
.y13b{bottom:222.426667pt;}
.y21{bottom:224.840000pt;}
.y56{bottom:226.266667pt;}
.y4b{bottom:228.506667pt;}
.yfb{bottom:230.106667pt;}
.y20{bottom:237.160000pt;}
.y32{bottom:237.480000pt;}
.y13a{bottom:237.786667pt;}
.y116{bottom:238.106667pt;}
.ya2{bottom:238.426667pt;}
.y55{bottom:243.866667pt;}
.y4a{bottom:246.106667pt;}
.yfa{bottom:247.706667pt;}
.y1f{bottom:249.640000pt;}
.y139{bottom:252.986667pt;}
.y31{bottom:253.160000pt;}
.yab{bottom:255.706667pt;}
.ya1{bottom:256.026667pt;}
.y54{bottom:261.466667pt;}
.y1e{bottom:262.146667pt;}
.y49{bottom:263.706667pt;}
.yf9{bottom:265.306667pt;}
.y138{bottom:268.346667pt;}
.y30{bottom:268.706667pt;}
.yc9{bottom:269.946667pt;}
.ya0{bottom:273.786667pt;}
.y1d{bottom:274.626667pt;}
.y53{bottom:279.066667pt;}
.y48{bottom:281.306667pt;}
.yf8{bottom:283.066667pt;}
.y137{bottom:283.706667pt;}
.y2f{bottom:284.386667pt;}
.y1c{bottom:287.586667pt;}
.yc8{bottom:288.026667pt;}
.y9f{bottom:291.066667pt;}
.yaa{bottom:291.386667pt;}
.y52{bottom:296.666667pt;}
.y47{bottom:299.066667pt;}
.y2e{bottom:300.066667pt;}
.yf7{bottom:300.666667pt;}
.y1b{bottom:303.586667pt;}
.yc7{bottom:305.306667pt;}
.y9e{bottom:308.986667pt;}
.y46{bottom:314.106667pt;}
.y51{bottom:314.426667pt;}
.yf6{bottom:318.266667pt;}
.y2d{bottom:318.466667pt;}
.y1a{bottom:318.946667pt;}
.yc6{bottom:323.226667pt;}
.y9d{bottom:326.586667pt;}
.y45{bottom:329.466667pt;}
.y136{bottom:329.786667pt;}
.yf5{bottom:335.866667pt;}
.yc5{bottom:340.826667pt;}
.y44{bottom:342.106667pt;}
.y42{bottom:344.026667pt;}
.y9c{bottom:344.186667pt;}
.y135{bottom:344.986667pt;}
.y19{bottom:349.306667pt;}
.y107{bottom:353.146667pt;}
.yf4{bottom:353.466667pt;}
.yc4{bottom:358.426667pt;}
.y134{bottom:360.346667pt;}
.y9b{bottom:361.946667pt;}
.yf3{bottom:371.226667pt;}
.y133{bottom:375.706667pt;}
.yc3{bottom:376.186667pt;}
.y9a{bottom:379.546667pt;}
.y168{bottom:385.626667pt;}
.yf2{bottom:388.826667pt;}
.y132{bottom:391.066667pt;}
.yc2{bottom:393.786667pt;}
.y99{bottom:397.146667pt;}
.y167{bottom:401.026667pt;}
.yf1{bottom:406.146667pt;}
.y106{bottom:406.466667pt;}
.yc1{bottom:411.106667pt;}
.y115{bottom:414.466667pt;}
.y98{bottom:414.786667pt;}
.y166{bottom:416.386667pt;}
.y131{bottom:421.826667pt;}
.yf0{bottom:423.746667pt;}
.y105{bottom:424.066667pt;}
.yc0{bottom:428.706667pt;}
.y165{bottom:431.746667pt;}
.y97{bottom:432.386667pt;}
.y130{bottom:437.026667pt;}
.yef{bottom:441.666667pt;}
.ydf{bottom:441.826667pt;}
.y164{bottom:447.106667pt;}
.y96{bottom:450.146667pt;}
.y12f{bottom:452.386667pt;}
.yee{bottom:459.426667pt;}
.y163{bottom:462.306667pt;}
.y87{bottom:467.426667pt;}
.y95{bottom:467.746667pt;}
.yed{bottom:477.026667pt;}
.ydd{bottom:477.506667pt;}
.y162{bottom:477.666667pt;}
.y12e{bottom:483.106667pt;}
.y86{bottom:485.346667pt;}
.y161{bottom:493.026667pt;}
.yec{bottom:494.626667pt;}
.y12d{bottom:498.466667pt;}
.y85{bottom:502.946667pt;}
.ydb{bottom:505.186667pt;}
.y160{bottom:508.386667pt;}
.yeb{bottom:512.226667pt;}
.y12c{bottom:513.666667pt;}
.y84{bottom:520.546667pt;}
.y15f{bottom:523.746667pt;}
.y12b{bottom:529.026667pt;}
.yea{bottom:529.826667pt;}
.yd9{bottom:536.866667pt;}
.y83{bottom:538.306667pt;}
.y15e{bottom:539.106667pt;}
.y12a{bottom:544.386667pt;}
.ye9{bottom:547.586667pt;}
.y15d{bottom:554.306667pt;}
.y94{bottom:555.586667pt;}
.y82{bottom:555.906667pt;}
.y129{bottom:559.746667pt;}
.y104{bottom:564.866667pt;}
.ye8{bottom:565.186667pt;}
.y15c{bottom:569.666667pt;}
.ya9{bottom:573.186667pt;}
.y81{bottom:573.506667pt;}
.y128{bottom:575.106667pt;}
.yd7{bottom:575.746667pt;}
.ye7{bottom:582.786667pt;}
.y15b{bottom:585.026667pt;}
.y127{bottom:590.146667pt;}
.ya8{bottom:590.786667pt;}
.y80{bottom:591.106667pt;}
.ye6{bottom:600.386667pt;}
.y126{bottom:605.666667pt;}
.y7f{bottom:608.733333pt;}
.yd3{bottom:610.173333pt;}
.y15a{bottom:615.773333pt;}
.ye5{bottom:617.693333pt;}
.y103{bottom:618.013333pt;}
.y125{bottom:621.053333pt;}
.y8b{bottom:626.173333pt;}
.y7e{bottom:626.493333pt;}
.y159{bottom:631.133333pt;}
.ye4{bottom:635.773333pt;}
.y124{bottom:636.413333pt;}
.y7d{bottom:644.093333pt;}
.y158{bottom:646.333333pt;}
.y123{bottom:651.773333pt;}
.ye3{bottom:653.373333pt;}
.ybf{bottom:659.453333pt;}
.y7c{bottom:661.693333pt;}
.y122{bottom:666.813333pt;}
.ye2{bottom:667.773333pt;}
.y108{bottom:669.760000pt;}
.ybc{bottom:677.053333pt;}
.y114{bottom:678.973333pt;}
.y7b{bottom:679.293333pt;}
.y121{bottom:682.493333pt;}
.y18{bottom:685.053333pt;}
.y157{bottom:692.413333pt;}
.ybb{bottom:694.653333pt;}
.ybe{bottom:696.573333pt;}
.y7a{bottom:696.893333pt;}
.y120{bottom:697.693333pt;}
.y17{bottom:706.973333pt;}
.y156{bottom:707.773333pt;}
.yba{bottom:712.573333pt;}
.y11f{bottom:713.053333pt;}
.y79{bottom:714.653333pt;}
.y155{bottom:722.973333pt;}
.y11e{bottom:728.413333pt;}
.y16{bottom:729.213333pt;}
.yb9{bottom:731.773333pt;}
.ya7{bottom:731.933333pt;}
.y78{bottom:732.253333pt;}
.y154{bottom:738.333333pt;}
.y15{bottom:742.333333pt;}
.y11d{bottom:743.453333pt;}
.ybd{bottom:749.533333pt;}
.y77{bottom:749.853333pt;}
.y153{bottom:753.693333pt;}
.y11c{bottom:759.133333pt;}
.y14{bottom:764.573333pt;}
.y113{bottom:767.133333pt;}
.y76{bottom:767.453333pt;}
.yb8{bottom:767.773333pt;}
.y152{bottom:769.053333pt;}
.y11b{bottom:774.493333pt;}
.y13{bottom:777.853333pt;}
.y151{bottom:784.413333pt;}
.y75{bottom:785.053333pt;}
.y11a{bottom:789.693333pt;}
.yb6{bottom:791.933333pt;}
.yb7{bottom:797.053333pt;}
.y12{bottom:797.213333pt;}
.y150{bottom:799.773333pt;}
.y74{bottom:802.813333pt;}
.y119{bottom:804.733333pt;}
.yb5{bottom:812.413333pt;}
.y14f{bottom:814.973333pt;}
.y11{bottom:817.573333pt;}
.y118{bottom:820.133333pt;}
.y73{bottom:820.453333pt;}
.y14e{bottom:830.373333pt;}
.y72{bottom:838.053333pt;}
.y10{bottom:840.613333pt;}
.yb3{bottom:842.853333pt;}
.y14d{bottom:845.733333pt;}
.yb4{bottom:847.973333pt;}
.y8a{bottom:855.333333pt;}
.y71{bottom:855.653333pt;}
.y14c{bottom:861.093333pt;}
.yb2{bottom:863.333333pt;}
.yf{bottom:863.493333pt;}
.y89{bottom:872.933333pt;}
.y70{bottom:873.253333pt;}
.y14b{bottom:876.453333pt;}
.ye{bottom:883.333333pt;}
.y6f{bottom:891.013333pt;}
.yb1{bottom:891.333333pt;}
.y14a{bottom:891.813333pt;}
.yd{bottom:904.293333pt;}
.y149{bottom:907.013333pt;}
.y6e{bottom:908.613333pt;}
.y5b{bottom:911.333333pt;}
.yb0{bottom:917.093333pt;}
.y148{bottom:922.373333pt;}
.yc{bottom:925.413333pt;}
.ye1{bottom:925.893333pt;}
.y6d{bottom:926.213333pt;}
.y147{bottom:937.733333pt;}
.yaf{bottom:939.333333pt;}
.y6c{bottom:943.813333pt;}
.yb{bottom:946.533333pt;}
.y146{bottom:953.093333pt;}
.y93{bottom:961.093333pt;}
.y6b{bottom:961.413333pt;}
.ya{bottom:967.813333pt;}
.y145{bottom:968.453333pt;}
.y112{bottom:978.853333pt;}
.y6a{bottom:979.173333pt;}
.y144{bottom:983.813333pt;}
.y9{bottom:988.933333pt;}
.y111{bottom:996.453333pt;}
.y69{bottom:996.773333pt;}
.y143{bottom:999.013333pt;}
.y8{bottom:1010.053333pt;}
.y61{bottom:1013.413333pt;}
.y88{bottom:1014.053333pt;}
.y68{bottom:1014.373333pt;}
.y4{bottom:1046.080000pt;}
.y1{bottom:1058.880000pt;}
.h13{height:5.025000pt;}
.h14{height:5.160000pt;}
.h15{height:5.262553pt;}
.h12{height:5.280000pt;}
.h4{height:9.760000pt;}
.h1e{height:9.920000pt;}
.h27{height:17.600000pt;}
.h28{height:17.632000pt;}
.h1b{height:21.285000pt;}
.h21{height:25.258125pt;}
.h1f{height:27.040000pt;}
.h2c{height:31.040000pt;}
.h1a{height:32.250000pt;}
.h2a{height:33.792000pt;}
.ha{height:33.918750pt;}
.h2d{height:35.040000pt;}
.h26{height:35.360000pt;}
.h20{height:36.138125pt;}
.hf{height:36.305625pt;}
.h6{height:36.431250pt;}
.h5{height:37.410000pt;}
.h2b{height:38.080000pt;}
.h24{height:39.687500pt;}
.h29{height:40.000000pt;}
.h11{height:40.640625pt;}
.h3{height:42.649687pt;}
.h1d{height:43.215000pt;}
.he{height:44.073883pt;}
.h10{height:44.638750pt;}
.hd{height:44.975625pt;}
.h23{height:46.037500pt;}
.h18{height:46.505938pt;}
.h30{height:47.742188pt;}
.h2f{height:47.869500pt;}
.h32{height:52.108438pt;}
.hb{height:52.134375pt;}
.h16{height:53.535000pt;}
.h17{height:54.598989pt;}
.h9{height:59.340000pt;}
.h31{height:63.656250pt;}
.h1c{height:64.500000pt;}
.h22{height:65.881250pt;}
.h2{height:68.748750pt;}
.h8{height:69.660000pt;}
.h7{height:70.773750pt;}
.h19{height:112.000000pt;}
.h25{height:127.321250pt;}
.h2e{height:198.080000pt;}
.hc{height:331.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:60.480000pt;}
.wb{width:60.960000pt;}
.w1e{width:62.880000pt;}
.w1d{width:63.072000pt;}
.w1c{width:63.200000pt;}
.w19{width:63.520000pt;}
.w18{width:63.680000pt;}
.w17{width:63.712000pt;}
.w16{width:63.840000pt;}
.w14{width:126.752000pt;}
.wf{width:127.232000pt;}
.w11{width:129.152000pt;}
.wc{width:129.792000pt;}
.w12{width:136.826667pt;}
.wd{width:137.466667pt;}
.w1b{width:147.866667pt;}
.w15{width:148.186667pt;}
.w13{width:148.986667pt;}
.we{width:149.626667pt;}
.w3{width:183.066667pt;}
.w9{width:183.226667pt;}
.w1f{width:183.906667pt;}
.w1a{width:184.226667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w20{width:421.760000pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:556.253333pt;}
.wa{width:634.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x1d{left:8.160000pt;}
.x11{left:9.600000pt;}
.x1f{left:11.360000pt;}
.x35{left:14.080000pt;}
.x27{left:15.840000pt;}
.xa{left:18.400000pt;}
.x23{left:19.520000pt;}
.x30{left:20.640000pt;}
.x26{left:21.760000pt;}
.x21{left:23.520000pt;}
.x3{left:36.640000pt;}
.x36{left:43.994667pt;}
.x7{left:47.999988pt;}
.x2c{left:50.874667pt;}
.x24{left:52.960000pt;}
.xe{left:56.320000pt;}
.x29{left:57.760000pt;}
.x25{left:59.040000pt;}
.x28{left:62.400000pt;}
.x33{left:67.514667pt;}
.x2a{left:72.320000pt;}
.x10{left:78.592000pt;}
.x34{left:81.960000pt;}
.x4{left:91.546667pt;}
.x1{left:96.031988pt;}
.x17{left:97.631988pt;}
.x3b{left:108.031988pt;}
.x2b{left:114.272000pt;}
.x15{left:120.031988pt;}
.xc{left:135.066667pt;}
.xf{left:140.360000pt;}
.x16{left:144.026655pt;}
.x1c{left:157.626667pt;}
.x39{left:185.760000pt;}
.x3a{left:192.320000pt;}
.x18{left:193.626655pt;}
.x19{left:209.466655pt;}
.x14{left:214.586655pt;}
.x38{left:222.106655pt;}
.x1a{left:233.506655pt;}
.x9{left:237.506667pt;}
.x1b{left:250.146655pt;}
.x2d{left:262.466667pt;}
.xd{left:278.146667pt;}
.x1e{left:287.426667pt;}
.x2{left:307.426667pt;}
.x2e{left:326.306667pt;}
.x2f{left:390.013333pt;}
.x6{left:396.893322pt;}
.x5{left:412.893322pt;}
.xb{left:420.573322pt;}
.x20{left:424.893333pt;}
.x12{left:444.573322pt;}
.x31{left:453.693333pt;}
.x13{left:468.573322pt;}
.x32{left:517.213333pt;}
.x22{left:574.533333pt;}
.x37{left:607.973322pt;}
}




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