
    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_28185c390a9d733b2bd73c6a.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c52c8baf8c7d1edd4e1e478.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53eacc4aa0c62cc0595e0f85.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_517801ab8bb12507a8e70a75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_5c6ff2c8ab942b5bdc103020.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_52554090e7640494531fa316.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8fd881b2e1826a325c16740a.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls1{letter-spacing:-2.664000px;}
.ls2{letter-spacing:-1.423686px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:5.760000px;}
.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;}
}
.ws6{word-spacing:-40.608000px;}
.ws4d{word-spacing:-33.840000px;}
.ws6d{word-spacing:-21.701592px;}
.ws0{word-spacing:-18.000000px;}
.ws29{word-spacing:-15.000000px;}
.ws6e{word-spacing:-13.620000px;}
.ws2e{word-spacing:-9.619500px;}
.ws74{word-spacing:-8.195814px;}
.ws15{word-spacing:-7.920000px;}
.ws2{word-spacing:-4.620000px;}
.ws8{word-spacing:-4.248000px;}
.ws8f{word-spacing:-3.960000px;}
.ws57{word-spacing:-3.528000px;}
.ws26{word-spacing:-3.384000px;}
.ws73{word-spacing:-3.312000px;}
.ws3f{word-spacing:-3.300000px;}
.ws41{word-spacing:-3.168000px;}
.ws5a{word-spacing:-3.096000px;}
.ws4c{word-spacing:-3.024000px;}
.ws7{word-spacing:-2.952000px;}
.ws79{word-spacing:-2.880000px;}
.ws71{word-spacing:-2.808000px;}
.ws38{word-spacing:-2.736000px;}
.ws56{word-spacing:-2.664000px;}
.ws76{word-spacing:-2.592000px;}
.ws39{word-spacing:-2.448000px;}
.ws45{word-spacing:-2.376000px;}
.ws65{word-spacing:-2.304000px;}
.ws3d{word-spacing:-2.232000px;}
.ws1d{word-spacing:-2.160000px;}
.ws50{word-spacing:-2.088000px;}
.ws54{word-spacing:-2.016000px;}
.ws3a{word-spacing:-1.944000px;}
.ws1a{word-spacing:-1.872000px;}
.ws78{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.656000px;}
.ws1b{word-spacing:-1.584000px;}
.ws1c{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.440000px;}
.ws46{word-spacing:-1.368000px;}
.ws1e{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.224000px;}
.ws59{word-spacing:-1.152000px;}
.ws20{word-spacing:-1.080000px;}
.ws7d{word-spacing:-1.008000px;}
.ws6f{word-spacing:-0.936000px;}
.wsc{word-spacing:-0.864000px;}
.ws3c{word-spacing:-0.792000px;}
.ws84{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.216000px;}
.ws53{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws63{word-spacing:0.072000px;}
.ws2b{word-spacing:0.144000px;}
.ws88{word-spacing:0.216000px;}
.ws83{word-spacing:0.288000px;}
.ws75{word-spacing:0.360000px;}
.ws5c{word-spacing:0.432000px;}
.ws8b{word-spacing:0.576000px;}
.wsd{word-spacing:0.720000px;}
.ws24{word-spacing:0.792000px;}
.ws23{word-spacing:0.864000px;}
.wse{word-spacing:1.008000px;}
.wsb{word-spacing:1.080000px;}
.ws72{word-spacing:1.152000px;}
.ws67{word-spacing:1.224000px;}
.ws89{word-spacing:1.296000px;}
.ws58{word-spacing:1.368000px;}
.ws21{word-spacing:1.440000px;}
.ws47{word-spacing:1.512000px;}
.ws8d{word-spacing:1.584000px;}
.ws9{word-spacing:1.656000px;}
.ws4f{word-spacing:1.728000px;}
.ws34{word-spacing:1.800000px;}
.ws16{word-spacing:1.872000px;}
.ws8e{word-spacing:1.944000px;}
.ws33{word-spacing:2.016000px;}
.ws48{word-spacing:2.088000px;}
.ws68{word-spacing:2.160000px;}
.ws6c{word-spacing:2.232000px;}
.ws87{word-spacing:2.304000px;}
.ws35{word-spacing:2.376000px;}
.ws11{word-spacing:2.448000px;}
.ws1f{word-spacing:2.520000px;}
.ws8a{word-spacing:2.592000px;}
.ws4b{word-spacing:2.664000px;}
.ws44{word-spacing:2.736000px;}
.ws2c{word-spacing:2.808000px;}
.ws32{word-spacing:2.880000px;}
.ws61{word-spacing:2.952000px;}
.ws40{word-spacing:3.024000px;}
.ws66{word-spacing:3.096000px;}
.ws36{word-spacing:3.168000px;}
.ws14{word-spacing:3.240000px;}
.ws52{word-spacing:3.312000px;}
.ws7e{word-spacing:3.384000px;}
.ws55{word-spacing:3.456000px;}
.ws85{word-spacing:3.600000px;}
.ws7a{word-spacing:3.672000px;}
.ws5f{word-spacing:3.744000px;}
.ws6a{word-spacing:3.816000px;}
.ws22{word-spacing:3.888000px;}
.ws81{word-spacing:3.960000px;}
.ws51{word-spacing:4.032000px;}
.ws60{word-spacing:4.176000px;}
.ws62{word-spacing:4.320000px;}
.ws3e{word-spacing:4.392000px;}
.ws5d{word-spacing:4.464000px;}
.ws49{word-spacing:4.536000px;}
.ws2f{word-spacing:4.608000px;}
.ws7b{word-spacing:4.680000px;}
.ws2a{word-spacing:4.752000px;}
.ws4e{word-spacing:4.824000px;}
.ws7c{word-spacing:4.896000px;}
.ws37{word-spacing:5.040000px;}
.ws86{word-spacing:5.112000px;}
.ws13{word-spacing:5.184000px;}
.ws70{word-spacing:5.400000px;}
.ws64{word-spacing:5.472000px;}
.ws3b{word-spacing:5.688000px;}
.ws8c{word-spacing:5.760000px;}
.ws82{word-spacing:5.832000px;}
.ws43{word-spacing:5.904000px;}
.ws69{word-spacing:5.976000px;}
.ws25{word-spacing:6.048000px;}
.ws80{word-spacing:6.120000px;}
.ws7f{word-spacing:6.192000px;}
.ws31{word-spacing:6.336000px;}
.wsf{word-spacing:6.408000px;}
.ws77{word-spacing:6.552000px;}
.ws30{word-spacing:6.840000px;}
.ws12{word-spacing:7.992000px;}
.ws6b{word-spacing:63.936000px;}
.ws3{word-spacing:157.392000px;}
.ws5{word-spacing:198.000000px;}
.ws4a{word-spacing:201.000000px;}
.ws4{word-spacing:386.856000px;}
._17{margin-left:-23.940000px;}
._1a{margin-left:-20.331600px;}
._13{margin-left:-17.186400px;}
._14{margin-left:-9.224400px;}
._4{margin-left:-7.694400px;}
._3{margin-left:-6.224400px;}
._0{margin-left:-4.594800px;}
._9{margin-left:-3.412800px;}
._1{margin-left:-1.520400px;}
._f{width:1.296000px;}
._e{width:2.376000px;}
._12{width:3.384000px;}
._2{width:4.662000px;}
._11{width:5.908800px;}
._10{width:7.920000px;}
._16{width:8.928000px;}
._18{width:10.080000px;}
._19{width:109.506000px;}
._15{width:114.691200px;}
._6{width:198.000000px;}
._b{width:200.448000px;}
._d{width:202.464000px;}
._5{width:204.696000px;}
._8{width:206.496000px;}
._c{width:208.512000px;}
._7{width:214.560000px;}
._a{width:240.516000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:72.720000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:40.660800px;}
.yd9{bottom:40.661100px;}
.y1d4{bottom:40.662600px;}
.y1cb{bottom:40.666500px;}
.y1b4{bottom:40.666650px;}
.y23{bottom:40.669200px;}
.yb3{bottom:40.671150px;}
.y1cd{bottom:40.673100px;}
.y4d{bottom:40.674450px;}
.yea{bottom:47.209350px;}
.y159{bottom:57.630000px;}
.yf1{bottom:60.138450px;}
.y119{bottom:63.711000px;}
.y88{bottom:65.072100px;}
.ye9{bottom:68.464350px;}
.ye1{bottom:81.398250px;}
.y118{bottom:81.711000px;}
.y158{bottom:82.080000px;}
.y134{bottom:82.132500px;}
.yf0{bottom:82.638450px;}
.y87{bottom:86.388150px;}
.ye7{bottom:92.382600px;}
.y133{bottom:100.132500px;}
.ye0{bottom:103.898250px;}
.ydb{bottom:103.905150px;}
.y86{bottom:104.388150px;}
.yef{bottom:105.315600px;}
.y11b{bottom:105.805350px;}
.y11a{bottom:105.820050px;}
.y157{bottom:106.528650px;}
.ye6{bottom:114.882600px;}
.y1b3{bottom:124.240650px;}
.ycd{bottom:132.795150px;}
.y183{bottom:132.841050px;}
.y132{bottom:134.212500px;}
.ye8{bottom:135.079350px;}
.y49{bottom:136.924800px;}
.y36{bottom:138.423900px;}
.ydf{bottom:142.716450px;}
.y1b2{bottom:145.840650px;}
.ya8{bottom:153.215100px;}
.y117{bottom:154.970700px;}
.yb2{bottom:155.295150px;}
.y48{bottom:159.649800px;}
.y35{bottom:161.148900px;}
.y16d{bottom:161.979450px;}
.yde{bottom:165.216450px;}
.y1b1{bottom:167.440650px;}
.y1d3{bottom:174.960600px;}
.ya7{bottom:175.715100px;}
.y116{bottom:177.470700px;}
.yee{bottom:177.795150px;}
.yb0{bottom:178.503900px;}
.y1cc{bottom:179.921100px;}
.y47{bottom:182.374800px;}
.y34{bottom:183.873900px;}
.ydd{bottom:187.716450px;}
.y1b0{bottom:189.940650px;}
.y1d2{bottom:197.460600px;}
.y115{bottom:199.970700px;}
.y5d{bottom:200.295150px;}
.y187{bottom:202.421100px;}
.y46{bottom:205.099800px;}
.y33{bottom:206.598900px;}
.y1af{bottom:212.440650px;}
.y1d1{bottom:219.960600px;}
.y114{bottom:222.470700px;}
.ye5{bottom:222.795150px;}
.y156{bottom:224.921100px;}
.y21{bottom:232.716450px;}
.y1ae{bottom:234.940650px;}
.y8{bottom:236.931900px;}
.y1d0{bottom:242.460600px;}
.y85{bottom:243.553500px;}
.y113{bottom:244.970700px;}
.y98{bottom:245.295150px;}
.y155{bottom:247.421100px;}
.y1ad{bottom:257.440650px;}
.y1cf{bottom:264.960600px;}
.yd8{bottom:265.715100px;}
.y84{bottom:266.053500px;}
.y112{bottom:267.470700px;}
.ye4{bottom:267.795150px;}
.y186{bottom:269.921100px;}
.y5a{bottom:275.974800px;}
.y20{bottom:277.716450px;}
.y1ac{bottom:279.940650px;}
.yd7{bottom:288.215100px;}
.y83{bottom:288.553500px;}
.y111{bottom:289.970700px;}
.yed{bottom:290.295150px;}
.y154{bottom:292.421100px;}
.y59{bottom:298.474800px;}
.y1ab{bottom:302.440650px;}
.y7{bottom:304.425900px;}
.yb6{bottom:310.715100px;}
.y82{bottom:311.053500px;}
.y110{bottom:312.470700px;}
.ye3{bottom:312.795150px;}
.y153{bottom:314.921100px;}
.y58{bottom:320.974800px;}
.y1f{bottom:322.716450px;}
.y1aa{bottom:324.940650px;}
.yd6{bottom:333.215100px;}
.y81{bottom:333.553500px;}
.y10f{bottom:334.970700px;}
.yda{bottom:335.295150px;}
.y152{bottom:337.421100px;}
.y57{bottom:343.474800px;}
.y1a9{bottom:347.440650px;}
.y10e{bottom:357.470700px;}
.yec{bottom:357.795150px;}
.y151{bottom:359.921100px;}
.y56{bottom:365.974800px;}
.y1e{bottom:367.716450px;}
.y1a8{bottom:369.940650px;}
.yd5{bottom:378.215100px;}
.y80{bottom:378.553500px;}
.y10d{bottom:379.970700px;}
.ybc{bottom:380.295150px;}
.y150{bottom:382.421100px;}
.y1ca{bottom:382.612500px;}
.y55{bottom:388.474800px;}
.y6{bottom:394.431900px;}
.yd4{bottom:400.715100px;}
.y7f{bottom:401.053500px;}
.ybb{bottom:402.795150px;}
.y14f{bottom:404.921100px;}
.y1c9{bottom:405.112500px;}
.y54{bottom:410.974800px;}
.y1d{bottom:412.716450px;}
.y1a7{bottom:414.940650px;}
.y7e{bottom:423.553500px;}
.y10c{bottom:424.970700px;}
.yba{bottom:425.295150px;}
.y185{bottom:427.421100px;}
.y1c8{bottom:427.612500px;}
.y53{bottom:433.474800px;}
.y4c{bottom:435.216450px;}
.yd3{bottom:445.715100px;}
.y7d{bottom:446.053500px;}
.y10b{bottom:447.470700px;}
.y65{bottom:447.777600px;}
.yb9{bottom:447.795150px;}
.y14e{bottom:449.921100px;}
.y52{bottom:455.974800px;}
.y1c{bottom:457.716450px;}
.y5{bottom:461.925900px;}
.yd2{bottom:468.215100px;}
.y10a{bottom:469.970700px;}
.yb8{bottom:470.295150px;}
.y14d{bottom:472.421100px;}
.y1c7{bottom:472.612500px;}
.y1b{bottom:480.216450px;}
.y1a6{bottom:482.440650px;}
.yd1{bottom:490.715100px;}
.y7c{bottom:491.053500px;}
.y14c{bottom:494.921100px;}
.y1a{bottom:502.716450px;}
.y1a5{bottom:504.940650px;}
.yc4{bottom:513.215100px;}
.y7b{bottom:513.553500px;}
.yeb{bottom:515.295150px;}
.y45{bottom:523.258800px;}
.y51{bottom:523.474800px;}
.y19{bottom:525.216450px;}
.y1a4{bottom:527.440650px;}
.yc3{bottom:535.715100px;}
.y7a{bottom:536.053500px;}
.y109{bottom:537.470700px;}
.yb7{bottom:537.795150px;}
.y18f{bottom:539.502450px;}
.y14b{bottom:539.921100px;}
.y1c6{bottom:540.112500px;}
.y44{bottom:545.974800px;}
.y32{bottom:547.482900px;}
.y18{bottom:547.716450px;}
.y1a3{bottom:549.940650px;}
.yc2{bottom:558.215100px;}
.y79{bottom:558.553500px;}
.y108{bottom:559.970700px;}
.ycc{bottom:560.295150px;}
.y18e{bottom:562.002450px;}
.y14a{bottom:562.421100px;}
.y1c5{bottom:562.612500px;}
.y43{bottom:568.474800px;}
.y31{bottom:570.198900px;}
.y17{bottom:570.216450px;}
.y1a2{bottom:572.440650px;}
.yc1{bottom:580.715100px;}
.y78{bottom:581.053500px;}
.y107{bottom:582.470700px;}
.ycb{bottom:582.795150px;}
.y18d{bottom:584.502450px;}
.y149{bottom:584.921100px;}
.y30{bottom:592.698900px;}
.y16{bottom:592.716450px;}
.y1a1{bottom:594.940650px;}
.yc0{bottom:603.215100px;}
.y77{bottom:603.553500px;}
.y106{bottom:604.970700px;}
.yca{bottom:605.295150px;}
.y182{bottom:605.341050px;}
.yaf{bottom:606.003900px;}
.y131{bottom:606.712500px;}
.y18c{bottom:607.002450px;}
.y148{bottom:607.421100px;}
.y1c4{bottom:607.612500px;}
.y42{bottom:613.474800px;}
.y4b{bottom:615.216450px;}
.y1a0{bottom:617.440650px;}
.yd0{bottom:625.715100px;}
.y105{bottom:627.470700px;}
.yc9{bottom:627.795150px;}
.y181{bottom:627.841050px;}
.y16c{bottom:628.179450px;}
.yae{bottom:628.503900px;}
.y130{bottom:629.212500px;}
.y18b{bottom:629.502450px;}
.y147{bottom:629.921100px;}
.y41{bottom:635.974800px;}
.y2f{bottom:637.698900px;}
.y15{bottom:637.716450px;}
.y19f{bottom:639.940650px;}
.ybf{bottom:648.215100px;}
.y76{bottom:648.553500px;}
.y104{bottom:649.970700px;}
.yc8{bottom:650.295150px;}
.y180{bottom:650.341050px;}
.y16b{bottom:650.679450px;}
.yad{bottom:651.003900px;}
.y12f{bottom:651.712500px;}
.y184{bottom:652.421100px;}
.y50{bottom:658.474800px;}
.y2e{bottom:660.198900px;}
.y4a{bottom:660.216450px;}
.y19e{bottom:662.440650px;}
.y4{bottom:664.428900px;}
.ybe{bottom:670.715100px;}
.y75{bottom:671.053500px;}
.y103{bottom:672.470700px;}
.yc7{bottom:672.795150px;}
.y17f{bottom:672.841050px;}
.y16a{bottom:673.179450px;}
.yac{bottom:673.503900px;}
.y12e{bottom:674.212500px;}
.y146{bottom:674.921100px;}
.y1c3{bottom:675.112500px;}
.y40{bottom:680.974800px;}
.y14{bottom:682.716450px;}
.y19d{bottom:684.940650px;}
.ycf{bottom:693.215100px;}
.y74{bottom:693.553500px;}
.y102{bottom:694.970700px;}
.yc6{bottom:695.295150px;}
.y17e{bottom:695.341050px;}
.y12d{bottom:696.712500px;}
.y145{bottom:697.421100px;}
.y1c2{bottom:697.612500px;}
.y3f{bottom:703.474800px;}
.y2d{bottom:705.198900px;}
.y13{bottom:705.216450px;}
.y19c{bottom:707.440650px;}
.y3{bottom:709.428900px;}
.ybd{bottom:715.715100px;}
.y73{bottom:716.053500px;}
.y101{bottom:717.470700px;}
.yc5{bottom:717.795150px;}
.y17d{bottom:717.841050px;}
.y169{bottom:718.179450px;}
.y144{bottom:719.921100px;}
.y1c1{bottom:720.112500px;}
.y3e{bottom:725.974800px;}
.y2c{bottom:727.698900px;}
.y12{bottom:727.716450px;}
.y19b{bottom:729.940650px;}
.yce{bottom:738.215100px;}
.y72{bottom:738.553500px;}
.y100{bottom:739.970700px;}
.y97{bottom:740.295150px;}
.y17c{bottom:740.341050px;}
.y168{bottom:740.679450px;}
.yab{bottom:741.003900px;}
.y12c{bottom:741.712500px;}
.y18a{bottom:742.002450px;}
.y143{bottom:742.421100px;}
.y1c0{bottom:742.612500px;}
.y4f{bottom:748.474800px;}
.y2b{bottom:750.198900px;}
.y11{bottom:750.216450px;}
.y19a{bottom:752.440650px;}
.yb5{bottom:760.715100px;}
.y71{bottom:761.053500px;}
.yff{bottom:762.470700px;}
.y5c{bottom:762.795150px;}
.y167{bottom:763.179450px;}
.y12b{bottom:764.212500px;}
.y189{bottom:764.502450px;}
.y142{bottom:764.921100px;}
.y1bf{bottom:765.112500px;}
.y3d{bottom:770.974800px;}
.y2a{bottom:772.698900px;}
.y10{bottom:772.716450px;}
.y199{bottom:774.940650px;}
.ya6{bottom:783.215100px;}
.y70{bottom:783.553500px;}
.yfe{bottom:784.970700px;}
.y96{bottom:785.295150px;}
.y17b{bottom:785.341050px;}
.y166{bottom:785.679450px;}
.y12a{bottom:786.712500px;}
.y188{bottom:787.002450px;}
.y1be{bottom:787.612500px;}
.y3c{bottom:793.474800px;}
.yf{bottom:795.216450px;}
.y198{bottom:797.440650px;}
.y2{bottom:799.428900px;}
.ya5{bottom:805.715100px;}
.y6f{bottom:806.053500px;}
.yfd{bottom:807.470700px;}
.y95{bottom:807.795150px;}
.y17a{bottom:807.841050px;}
.y129{bottom:809.212500px;}
.y141{bottom:809.921100px;}
.y1bd{bottom:810.112500px;}
.y3b{bottom:815.974800px;}
.y29{bottom:817.698900px;}
.ye{bottom:817.716450px;}
.y197{bottom:819.940650px;}
.ya4{bottom:828.215100px;}
.y6e{bottom:828.553500px;}
.yfc{bottom:829.970700px;}
.y94{bottom:830.295150px;}
.y179{bottom:830.341050px;}
.y165{bottom:830.679450px;}
.y128{bottom:831.712500px;}
.y1bc{bottom:832.612500px;}
.y3a{bottom:838.474800px;}
.y28{bottom:840.198900px;}
.yd{bottom:840.216450px;}
.y196{bottom:842.440650px;}
.ya3{bottom:850.715100px;}
.y6d{bottom:851.053500px;}
.yfb{bottom:852.470700px;}
.ye2{bottom:852.795150px;}
.y178{bottom:852.841050px;}
.y164{bottom:853.179450px;}
.y127{bottom:854.212500px;}
.y1bb{bottom:855.112500px;}
.y27{bottom:862.698900px;}
.yc{bottom:862.716450px;}
.y195{bottom:864.940650px;}
.ya2{bottom:873.215100px;}
.y6c{bottom:873.553500px;}
.yfa{bottom:874.970700px;}
.y93{bottom:875.295150px;}
.y177{bottom:875.341050px;}
.y163{bottom:875.679450px;}
.y140{bottom:877.421100px;}
.y1ba{bottom:877.612500px;}
.y39{bottom:883.474800px;}
.y26{bottom:885.198900px;}
.yb{bottom:885.216450px;}
.y194{bottom:887.440650px;}
.ya1{bottom:895.715100px;}
.yf9{bottom:897.470700px;}
.y92{bottom:897.795150px;}
.y176{bottom:897.841050px;}
.y162{bottom:898.179450px;}
.y126{bottom:899.212500px;}
.y13f{bottom:899.921100px;}
.y1b9{bottom:900.112500px;}
.y38{bottom:905.974800px;}
.ya{bottom:907.716450px;}
.y193{bottom:909.940650px;}
.ya0{bottom:918.215100px;}
.y6b{bottom:918.553500px;}
.yf8{bottom:919.970700px;}
.y91{bottom:920.295150px;}
.y175{bottom:920.341050px;}
.y161{bottom:920.679450px;}
.y125{bottom:921.712500px;}
.y13e{bottom:922.421100px;}
.y1b8{bottom:922.612500px;}
.y25{bottom:930.198900px;}
.ydc{bottom:930.216450px;}
.yb4{bottom:940.715100px;}
.y6a{bottom:941.053500px;}
.y90{bottom:942.795150px;}
.y124{bottom:944.212500px;}
.y13d{bottom:944.921100px;}
.y37{bottom:950.974800px;}
.y24{bottom:952.698900px;}
.y9{bottom:952.716450px;}
.y192{bottom:954.940650px;}
.y9f{bottom:963.215100px;}
.yf7{bottom:964.970700px;}
.y64{bottom:965.277600px;}
.y8f{bottom:965.295150px;}
.y174{bottom:965.341050px;}
.y160{bottom:965.679450px;}
.y123{bottom:966.712500px;}
.y13c{bottom:967.421100px;}
.y1b7{bottom:967.612500px;}
.y1{bottom:979.428900px;}
.y9e{bottom:985.715100px;}
.y69{bottom:986.053500px;}
.y63{bottom:987.777600px;}
.y8e{bottom:987.795150px;}
.y173{bottom:987.841050px;}
.y15f{bottom:988.179450px;}
.y122{bottom:989.212500px;}
.y13b{bottom:989.921100px;}
.y9d{bottom:1008.215100px;}
.yf6{bottom:1009.970700px;}
.y8d{bottom:1010.295150px;}
.y172{bottom:1010.341050px;}
.y15e{bottom:1010.679450px;}
.y121{bottom:1011.712500px;}
.y13a{bottom:1012.421100px;}
.y9c{bottom:1030.715100px;}
.yf5{bottom:1032.470700px;}
.y62{bottom:1032.777600px;}
.y8c{bottom:1032.795150px;}
.y171{bottom:1032.841050px;}
.y15d{bottom:1033.179450px;}
.y120{bottom:1034.212500px;}
.y139{bottom:1034.921100px;}
.y1b6{bottom:1035.112500px;}
.y9b{bottom:1053.215100px;}
.y68{bottom:1053.553500px;}
.yf4{bottom:1054.970700px;}
.y61{bottom:1055.277600px;}
.y8b{bottom:1055.295150px;}
.y170{bottom:1055.341050px;}
.y15c{bottom:1055.679450px;}
.y11f{bottom:1056.712500px;}
.y138{bottom:1057.421100px;}
.y1b5{bottom:1057.612500px;}
.y4e{bottom:1067.114700px;}
.y9a{bottom:1075.715100px;}
.y67{bottom:1076.053500px;}
.yf3{bottom:1077.470700px;}
.y60{bottom:1077.777600px;}
.yb1{bottom:1077.795150px;}
.y16f{bottom:1077.841050px;}
.y15b{bottom:1078.179450px;}
.y11e{bottom:1079.212500px;}
.y137{bottom:1079.921100px;}
.y5f{bottom:1100.277600px;}
.y8a{bottom:1100.295150px;}
.yaa{bottom:1101.003900px;}
.y11d{bottom:1101.712500px;}
.y136{bottom:1102.421100px;}
.y22{bottom:1110.314700px;}
.y191{bottom:1111.732050px;}
.y190{bottom:1112.440650px;}
.y1ce{bottom:1119.960600px;}
.y99{bottom:1120.715100px;}
.y66{bottom:1121.053500px;}
.yf2{bottom:1122.470700px;}
.y5e{bottom:1122.777600px;}
.y89{bottom:1122.795150px;}
.y16e{bottom:1122.841050px;}
.y15a{bottom:1123.179450px;}
.ya9{bottom:1123.503900px;}
.y11c{bottom:1124.212500px;}
.y135{bottom:1124.921100px;}
.h9{height:42.840000px;}
.ha{height:47.988281px;}
.hb{height:49.289062px;}
.h7{height:49.992188px;}
.h8{height:52.646484px;}
.h6{height:57.503906px;}
.h4{height:63.175781px;}
.h5{height:63.807539px;}
.h3{height:73.705078px;}
.h2{height:126.351562px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:38.267700px;}
.xe{left:40.393650px;}
.x8{left:74.409450px;}
.xc{left:85.039350px;}
.x26{left:95.533500px;}
.x12{left:129.094650px;}
.x19{left:156.992550px;}
.x10{left:174.452700px;}
.x16{left:195.547200px;}
.x1b{left:225.056550px;}
.x7{left:234.125550px;}
.xf{left:243.007500px;}
.x1c{left:244.148700px;}
.x13{left:245.286000px;}
.x2{left:254.611200px;}
.x1a{left:273.407400px;}
.x1f{left:277.091400px;}
.x1d{left:278.131500px;}
.x21{left:280.149300px;}
.x20{left:284.814900px;}
.x23{left:293.439150px;}
.x25{left:296.453700px;}
.x24{left:304.750650px;}
.x30{left:313.012950px;}
.x4{left:323.963550px;}
.x1{left:326.459550px;}
.x22{left:335.787750px;}
.x18{left:339.058050px;}
.xb{left:342.446850px;}
.x1e{left:346.563900px;}
.x31{left:352.450950px;}
.x2b{left:356.986950px;}
.x11{left:361.436700px;}
.x2a{left:365.230950px;}
.x28{left:366.458700px;}
.x14{left:367.939350px;}
.x2e{left:377.380950px;}
.x29{left:379.360950px;}
.x5{left:381.986550px;}
.x9{left:385.469400px;}
.x2d{left:390.214950px;}
.x6{left:392.507550px;}
.x2f{left:400.708950px;}
.x2c{left:408.232950px;}
.x3{left:414.121650px;}
.x17{left:427.076850px;}
.x15{left:430.826850px;}
.x27{left:600.579300px;}
.xd{left:840.826650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls1{letter-spacing:-2.368000pt;}
.ls2{letter-spacing:-1.265499pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:5.120000pt;}
.ws6{word-spacing:-36.096000pt;}
.ws4d{word-spacing:-30.080000pt;}
.ws6d{word-spacing:-19.290304pt;}
.ws0{word-spacing:-16.000000pt;}
.ws29{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-12.106667pt;}
.ws2e{word-spacing:-8.550667pt;}
.ws74{word-spacing:-7.285168pt;}
.ws15{word-spacing:-7.040000pt;}
.ws2{word-spacing:-4.106667pt;}
.ws8{word-spacing:-3.776000pt;}
.ws8f{word-spacing:-3.520000pt;}
.ws57{word-spacing:-3.136000pt;}
.ws26{word-spacing:-3.008000pt;}
.ws73{word-spacing:-2.944000pt;}
.ws3f{word-spacing:-2.933333pt;}
.ws41{word-spacing:-2.816000pt;}
.ws5a{word-spacing:-2.752000pt;}
.ws4c{word-spacing:-2.688000pt;}
.ws7{word-spacing:-2.624000pt;}
.ws79{word-spacing:-2.560000pt;}
.ws71{word-spacing:-2.496000pt;}
.ws38{word-spacing:-2.432000pt;}
.ws56{word-spacing:-2.368000pt;}
.ws76{word-spacing:-2.304000pt;}
.ws39{word-spacing:-2.176000pt;}
.ws45{word-spacing:-2.112000pt;}
.ws65{word-spacing:-2.048000pt;}
.ws3d{word-spacing:-1.984000pt;}
.ws1d{word-spacing:-1.920000pt;}
.ws50{word-spacing:-1.856000pt;}
.ws54{word-spacing:-1.792000pt;}
.ws3a{word-spacing:-1.728000pt;}
.ws1a{word-spacing:-1.664000pt;}
.ws78{word-spacing:-1.600000pt;}
.ws27{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.472000pt;}
.ws1b{word-spacing:-1.408000pt;}
.ws1c{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws46{word-spacing:-1.216000pt;}
.ws1e{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.088000pt;}
.ws59{word-spacing:-1.024000pt;}
.ws20{word-spacing:-0.960000pt;}
.ws7d{word-spacing:-0.896000pt;}
.ws6f{word-spacing:-0.832000pt;}
.wsc{word-spacing:-0.768000pt;}
.ws3c{word-spacing:-0.704000pt;}
.ws84{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.192000pt;}
.ws53{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws63{word-spacing:0.064000pt;}
.ws2b{word-spacing:0.128000pt;}
.ws88{word-spacing:0.192000pt;}
.ws83{word-spacing:0.256000pt;}
.ws75{word-spacing:0.320000pt;}
.ws5c{word-spacing:0.384000pt;}
.ws8b{word-spacing:0.512000pt;}
.wsd{word-spacing:0.640000pt;}
.ws24{word-spacing:0.704000pt;}
.ws23{word-spacing:0.768000pt;}
.wse{word-spacing:0.896000pt;}
.wsb{word-spacing:0.960000pt;}
.ws72{word-spacing:1.024000pt;}
.ws67{word-spacing:1.088000pt;}
.ws89{word-spacing:1.152000pt;}
.ws58{word-spacing:1.216000pt;}
.ws21{word-spacing:1.280000pt;}
.ws47{word-spacing:1.344000pt;}
.ws8d{word-spacing:1.408000pt;}
.ws9{word-spacing:1.472000pt;}
.ws4f{word-spacing:1.536000pt;}
.ws34{word-spacing:1.600000pt;}
.ws16{word-spacing:1.664000pt;}
.ws8e{word-spacing:1.728000pt;}
.ws33{word-spacing:1.792000pt;}
.ws48{word-spacing:1.856000pt;}
.ws68{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.984000pt;}
.ws87{word-spacing:2.048000pt;}
.ws35{word-spacing:2.112000pt;}
.ws11{word-spacing:2.176000pt;}
.ws1f{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.304000pt;}
.ws4b{word-spacing:2.368000pt;}
.ws44{word-spacing:2.432000pt;}
.ws2c{word-spacing:2.496000pt;}
.ws32{word-spacing:2.560000pt;}
.ws61{word-spacing:2.624000pt;}
.ws40{word-spacing:2.688000pt;}
.ws66{word-spacing:2.752000pt;}
.ws36{word-spacing:2.816000pt;}
.ws14{word-spacing:2.880000pt;}
.ws52{word-spacing:2.944000pt;}
.ws7e{word-spacing:3.008000pt;}
.ws55{word-spacing:3.072000pt;}
.ws85{word-spacing:3.200000pt;}
.ws7a{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.328000pt;}
.ws6a{word-spacing:3.392000pt;}
.ws22{word-spacing:3.456000pt;}
.ws81{word-spacing:3.520000pt;}
.ws51{word-spacing:3.584000pt;}
.ws60{word-spacing:3.712000pt;}
.ws62{word-spacing:3.840000pt;}
.ws3e{word-spacing:3.904000pt;}
.ws5d{word-spacing:3.968000pt;}
.ws49{word-spacing:4.032000pt;}
.ws2f{word-spacing:4.096000pt;}
.ws7b{word-spacing:4.160000pt;}
.ws2a{word-spacing:4.224000pt;}
.ws4e{word-spacing:4.288000pt;}
.ws7c{word-spacing:4.352000pt;}
.ws37{word-spacing:4.480000pt;}
.ws86{word-spacing:4.544000pt;}
.ws13{word-spacing:4.608000pt;}
.ws70{word-spacing:4.800000pt;}
.ws64{word-spacing:4.864000pt;}
.ws3b{word-spacing:5.056000pt;}
.ws8c{word-spacing:5.120000pt;}
.ws82{word-spacing:5.184000pt;}
.ws43{word-spacing:5.248000pt;}
.ws69{word-spacing:5.312000pt;}
.ws25{word-spacing:5.376000pt;}
.ws80{word-spacing:5.440000pt;}
.ws7f{word-spacing:5.504000pt;}
.ws31{word-spacing:5.632000pt;}
.wsf{word-spacing:5.696000pt;}
.ws77{word-spacing:5.824000pt;}
.ws30{word-spacing:6.080000pt;}
.ws12{word-spacing:7.104000pt;}
.ws6b{word-spacing:56.832000pt;}
.ws3{word-spacing:139.904000pt;}
.ws5{word-spacing:176.000000pt;}
.ws4a{word-spacing:178.666667pt;}
.ws4{word-spacing:343.872000pt;}
._17{margin-left:-21.280000pt;}
._1a{margin-left:-18.072533pt;}
._13{margin-left:-15.276800pt;}
._14{margin-left:-8.199467pt;}
._4{margin-left:-6.839467pt;}
._3{margin-left:-5.532800pt;}
._0{margin-left:-4.084267pt;}
._9{margin-left:-3.033600pt;}
._1{margin-left:-1.351467pt;}
._f{width:1.152000pt;}
._e{width:2.112000pt;}
._12{width:3.008000pt;}
._2{width:4.144000pt;}
._11{width:5.252267pt;}
._10{width:7.040000pt;}
._16{width:7.936000pt;}
._18{width:8.960000pt;}
._19{width:97.338667pt;}
._15{width:101.947733pt;}
._6{width:176.000000pt;}
._b{width:178.176000pt;}
._d{width:179.968000pt;}
._5{width:181.952000pt;}
._8{width:183.552000pt;}
._c{width:185.344000pt;}
._7{width:190.720000pt;}
._a{width:213.792000pt;}
.fs5{font-size:34.202667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:64.640000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:36.142933pt;}
.yd9{bottom:36.143200pt;}
.y1d4{bottom:36.144533pt;}
.y1cb{bottom:36.148000pt;}
.y1b4{bottom:36.148133pt;}
.y23{bottom:36.150400pt;}
.yb3{bottom:36.152133pt;}
.y1cd{bottom:36.153867pt;}
.y4d{bottom:36.155067pt;}
.yea{bottom:41.963867pt;}
.y159{bottom:51.226667pt;}
.yf1{bottom:53.456400pt;}
.y119{bottom:56.632000pt;}
.y88{bottom:57.841867pt;}
.ye9{bottom:60.857200pt;}
.ye1{bottom:72.354000pt;}
.y118{bottom:72.632000pt;}
.y158{bottom:72.960000pt;}
.y134{bottom:73.006667pt;}
.yf0{bottom:73.456400pt;}
.y87{bottom:76.789467pt;}
.ye7{bottom:82.117867pt;}
.y133{bottom:89.006667pt;}
.ye0{bottom:92.354000pt;}
.ydb{bottom:92.360133pt;}
.y86{bottom:92.789467pt;}
.yef{bottom:93.613867pt;}
.y11b{bottom:94.049200pt;}
.y11a{bottom:94.062267pt;}
.y157{bottom:94.692133pt;}
.ye6{bottom:102.117867pt;}
.y1b3{bottom:110.436133pt;}
.ycd{bottom:118.040133pt;}
.y183{bottom:118.080933pt;}
.y132{bottom:119.300000pt;}
.ye8{bottom:120.070533pt;}
.y49{bottom:121.710933pt;}
.y36{bottom:123.043467pt;}
.ydf{bottom:126.859067pt;}
.y1b2{bottom:129.636133pt;}
.ya8{bottom:136.191200pt;}
.y117{bottom:137.751733pt;}
.yb2{bottom:138.040133pt;}
.y48{bottom:141.910933pt;}
.y35{bottom:143.243467pt;}
.y16d{bottom:143.981733pt;}
.yde{bottom:146.859067pt;}
.y1b1{bottom:148.836133pt;}
.y1d3{bottom:155.520533pt;}
.ya7{bottom:156.191200pt;}
.y116{bottom:157.751733pt;}
.yee{bottom:158.040133pt;}
.yb0{bottom:158.670133pt;}
.y1cc{bottom:159.929867pt;}
.y47{bottom:162.110933pt;}
.y34{bottom:163.443467pt;}
.ydd{bottom:166.859067pt;}
.y1b0{bottom:168.836133pt;}
.y1d2{bottom:175.520533pt;}
.y115{bottom:177.751733pt;}
.y5d{bottom:178.040133pt;}
.y187{bottom:179.929867pt;}
.y46{bottom:182.310933pt;}
.y33{bottom:183.643467pt;}
.y1af{bottom:188.836133pt;}
.y1d1{bottom:195.520533pt;}
.y114{bottom:197.751733pt;}
.ye5{bottom:198.040133pt;}
.y156{bottom:199.929867pt;}
.y21{bottom:206.859067pt;}
.y1ae{bottom:208.836133pt;}
.y8{bottom:210.606133pt;}
.y1d0{bottom:215.520533pt;}
.y85{bottom:216.492000pt;}
.y113{bottom:217.751733pt;}
.y98{bottom:218.040133pt;}
.y155{bottom:219.929867pt;}
.y1ad{bottom:228.836133pt;}
.y1cf{bottom:235.520533pt;}
.yd8{bottom:236.191200pt;}
.y84{bottom:236.492000pt;}
.y112{bottom:237.751733pt;}
.ye4{bottom:238.040133pt;}
.y186{bottom:239.929867pt;}
.y5a{bottom:245.310933pt;}
.y20{bottom:246.859067pt;}
.y1ac{bottom:248.836133pt;}
.yd7{bottom:256.191200pt;}
.y83{bottom:256.492000pt;}
.y111{bottom:257.751733pt;}
.yed{bottom:258.040133pt;}
.y154{bottom:259.929867pt;}
.y59{bottom:265.310933pt;}
.y1ab{bottom:268.836133pt;}
.y7{bottom:270.600800pt;}
.yb6{bottom:276.191200pt;}
.y82{bottom:276.492000pt;}
.y110{bottom:277.751733pt;}
.ye3{bottom:278.040133pt;}
.y153{bottom:279.929867pt;}
.y58{bottom:285.310933pt;}
.y1f{bottom:286.859067pt;}
.y1aa{bottom:288.836133pt;}
.yd6{bottom:296.191200pt;}
.y81{bottom:296.492000pt;}
.y10f{bottom:297.751733pt;}
.yda{bottom:298.040133pt;}
.y152{bottom:299.929867pt;}
.y57{bottom:305.310933pt;}
.y1a9{bottom:308.836133pt;}
.y10e{bottom:317.751733pt;}
.yec{bottom:318.040133pt;}
.y151{bottom:319.929867pt;}
.y56{bottom:325.310933pt;}
.y1e{bottom:326.859067pt;}
.y1a8{bottom:328.836133pt;}
.yd5{bottom:336.191200pt;}
.y80{bottom:336.492000pt;}
.y10d{bottom:337.751733pt;}
.ybc{bottom:338.040133pt;}
.y150{bottom:339.929867pt;}
.y1ca{bottom:340.100000pt;}
.y55{bottom:345.310933pt;}
.y6{bottom:350.606133pt;}
.yd4{bottom:356.191200pt;}
.y7f{bottom:356.492000pt;}
.ybb{bottom:358.040133pt;}
.y14f{bottom:359.929867pt;}
.y1c9{bottom:360.100000pt;}
.y54{bottom:365.310933pt;}
.y1d{bottom:366.859067pt;}
.y1a7{bottom:368.836133pt;}
.y7e{bottom:376.492000pt;}
.y10c{bottom:377.751733pt;}
.yba{bottom:378.040133pt;}
.y185{bottom:379.929867pt;}
.y1c8{bottom:380.100000pt;}
.y53{bottom:385.310933pt;}
.y4c{bottom:386.859067pt;}
.yd3{bottom:396.191200pt;}
.y7d{bottom:396.492000pt;}
.y10b{bottom:397.751733pt;}
.y65{bottom:398.024533pt;}
.yb9{bottom:398.040133pt;}
.y14e{bottom:399.929867pt;}
.y52{bottom:405.310933pt;}
.y1c{bottom:406.859067pt;}
.y5{bottom:410.600800pt;}
.yd2{bottom:416.191200pt;}
.y10a{bottom:417.751733pt;}
.yb8{bottom:418.040133pt;}
.y14d{bottom:419.929867pt;}
.y1c7{bottom:420.100000pt;}
.y1b{bottom:426.859067pt;}
.y1a6{bottom:428.836133pt;}
.yd1{bottom:436.191200pt;}
.y7c{bottom:436.492000pt;}
.y14c{bottom:439.929867pt;}
.y1a{bottom:446.859067pt;}
.y1a5{bottom:448.836133pt;}
.yc4{bottom:456.191200pt;}
.y7b{bottom:456.492000pt;}
.yeb{bottom:458.040133pt;}
.y45{bottom:465.118933pt;}
.y51{bottom:465.310933pt;}
.y19{bottom:466.859067pt;}
.y1a4{bottom:468.836133pt;}
.yc3{bottom:476.191200pt;}
.y7a{bottom:476.492000pt;}
.y109{bottom:477.751733pt;}
.yb7{bottom:478.040133pt;}
.y18f{bottom:479.557733pt;}
.y14b{bottom:479.929867pt;}
.y1c6{bottom:480.100000pt;}
.y44{bottom:485.310933pt;}
.y32{bottom:486.651467pt;}
.y18{bottom:486.859067pt;}
.y1a3{bottom:488.836133pt;}
.yc2{bottom:496.191200pt;}
.y79{bottom:496.492000pt;}
.y108{bottom:497.751733pt;}
.ycc{bottom:498.040133pt;}
.y18e{bottom:499.557733pt;}
.y14a{bottom:499.929867pt;}
.y1c5{bottom:500.100000pt;}
.y43{bottom:505.310933pt;}
.y31{bottom:506.843467pt;}
.y17{bottom:506.859067pt;}
.y1a2{bottom:508.836133pt;}
.yc1{bottom:516.191200pt;}
.y78{bottom:516.492000pt;}
.y107{bottom:517.751733pt;}
.ycb{bottom:518.040133pt;}
.y18d{bottom:519.557733pt;}
.y149{bottom:519.929867pt;}
.y30{bottom:526.843467pt;}
.y16{bottom:526.859067pt;}
.y1a1{bottom:528.836133pt;}
.yc0{bottom:536.191200pt;}
.y77{bottom:536.492000pt;}
.y106{bottom:537.751733pt;}
.yca{bottom:538.040133pt;}
.y182{bottom:538.080933pt;}
.yaf{bottom:538.670133pt;}
.y131{bottom:539.300000pt;}
.y18c{bottom:539.557733pt;}
.y148{bottom:539.929867pt;}
.y1c4{bottom:540.100000pt;}
.y42{bottom:545.310933pt;}
.y4b{bottom:546.859067pt;}
.y1a0{bottom:548.836133pt;}
.yd0{bottom:556.191200pt;}
.y105{bottom:557.751733pt;}
.yc9{bottom:558.040133pt;}
.y181{bottom:558.080933pt;}
.y16c{bottom:558.381733pt;}
.yae{bottom:558.670133pt;}
.y130{bottom:559.300000pt;}
.y18b{bottom:559.557733pt;}
.y147{bottom:559.929867pt;}
.y41{bottom:565.310933pt;}
.y2f{bottom:566.843467pt;}
.y15{bottom:566.859067pt;}
.y19f{bottom:568.836133pt;}
.ybf{bottom:576.191200pt;}
.y76{bottom:576.492000pt;}
.y104{bottom:577.751733pt;}
.yc8{bottom:578.040133pt;}
.y180{bottom:578.080933pt;}
.y16b{bottom:578.381733pt;}
.yad{bottom:578.670133pt;}
.y12f{bottom:579.300000pt;}
.y184{bottom:579.929867pt;}
.y50{bottom:585.310933pt;}
.y2e{bottom:586.843467pt;}
.y4a{bottom:586.859067pt;}
.y19e{bottom:588.836133pt;}
.y4{bottom:590.603467pt;}
.ybe{bottom:596.191200pt;}
.y75{bottom:596.492000pt;}
.y103{bottom:597.751733pt;}
.yc7{bottom:598.040133pt;}
.y17f{bottom:598.080933pt;}
.y16a{bottom:598.381733pt;}
.yac{bottom:598.670133pt;}
.y12e{bottom:599.300000pt;}
.y146{bottom:599.929867pt;}
.y1c3{bottom:600.100000pt;}
.y40{bottom:605.310933pt;}
.y14{bottom:606.859067pt;}
.y19d{bottom:608.836133pt;}
.ycf{bottom:616.191200pt;}
.y74{bottom:616.492000pt;}
.y102{bottom:617.751733pt;}
.yc6{bottom:618.040133pt;}
.y17e{bottom:618.080933pt;}
.y12d{bottom:619.300000pt;}
.y145{bottom:619.929867pt;}
.y1c2{bottom:620.100000pt;}
.y3f{bottom:625.310933pt;}
.y2d{bottom:626.843467pt;}
.y13{bottom:626.859067pt;}
.y19c{bottom:628.836133pt;}
.y3{bottom:630.603467pt;}
.ybd{bottom:636.191200pt;}
.y73{bottom:636.492000pt;}
.y101{bottom:637.751733pt;}
.yc5{bottom:638.040133pt;}
.y17d{bottom:638.080933pt;}
.y169{bottom:638.381733pt;}
.y144{bottom:639.929867pt;}
.y1c1{bottom:640.100000pt;}
.y3e{bottom:645.310933pt;}
.y2c{bottom:646.843467pt;}
.y12{bottom:646.859067pt;}
.y19b{bottom:648.836133pt;}
.yce{bottom:656.191200pt;}
.y72{bottom:656.492000pt;}
.y100{bottom:657.751733pt;}
.y97{bottom:658.040133pt;}
.y17c{bottom:658.080933pt;}
.y168{bottom:658.381733pt;}
.yab{bottom:658.670133pt;}
.y12c{bottom:659.300000pt;}
.y18a{bottom:659.557733pt;}
.y143{bottom:659.929867pt;}
.y1c0{bottom:660.100000pt;}
.y4f{bottom:665.310933pt;}
.y2b{bottom:666.843467pt;}
.y11{bottom:666.859067pt;}
.y19a{bottom:668.836133pt;}
.yb5{bottom:676.191200pt;}
.y71{bottom:676.492000pt;}
.yff{bottom:677.751733pt;}
.y5c{bottom:678.040133pt;}
.y167{bottom:678.381733pt;}
.y12b{bottom:679.300000pt;}
.y189{bottom:679.557733pt;}
.y142{bottom:679.929867pt;}
.y1bf{bottom:680.100000pt;}
.y3d{bottom:685.310933pt;}
.y2a{bottom:686.843467pt;}
.y10{bottom:686.859067pt;}
.y199{bottom:688.836133pt;}
.ya6{bottom:696.191200pt;}
.y70{bottom:696.492000pt;}
.yfe{bottom:697.751733pt;}
.y96{bottom:698.040133pt;}
.y17b{bottom:698.080933pt;}
.y166{bottom:698.381733pt;}
.y12a{bottom:699.300000pt;}
.y188{bottom:699.557733pt;}
.y1be{bottom:700.100000pt;}
.y3c{bottom:705.310933pt;}
.yf{bottom:706.859067pt;}
.y198{bottom:708.836133pt;}
.y2{bottom:710.603467pt;}
.ya5{bottom:716.191200pt;}
.y6f{bottom:716.492000pt;}
.yfd{bottom:717.751733pt;}
.y95{bottom:718.040133pt;}
.y17a{bottom:718.080933pt;}
.y129{bottom:719.300000pt;}
.y141{bottom:719.929867pt;}
.y1bd{bottom:720.100000pt;}
.y3b{bottom:725.310933pt;}
.y29{bottom:726.843467pt;}
.ye{bottom:726.859067pt;}
.y197{bottom:728.836133pt;}
.ya4{bottom:736.191200pt;}
.y6e{bottom:736.492000pt;}
.yfc{bottom:737.751733pt;}
.y94{bottom:738.040133pt;}
.y179{bottom:738.080933pt;}
.y165{bottom:738.381733pt;}
.y128{bottom:739.300000pt;}
.y1bc{bottom:740.100000pt;}
.y3a{bottom:745.310933pt;}
.y28{bottom:746.843467pt;}
.yd{bottom:746.859067pt;}
.y196{bottom:748.836133pt;}
.ya3{bottom:756.191200pt;}
.y6d{bottom:756.492000pt;}
.yfb{bottom:757.751733pt;}
.ye2{bottom:758.040133pt;}
.y178{bottom:758.080933pt;}
.y164{bottom:758.381733pt;}
.y127{bottom:759.300000pt;}
.y1bb{bottom:760.100000pt;}
.y27{bottom:766.843467pt;}
.yc{bottom:766.859067pt;}
.y195{bottom:768.836133pt;}
.ya2{bottom:776.191200pt;}
.y6c{bottom:776.492000pt;}
.yfa{bottom:777.751733pt;}
.y93{bottom:778.040133pt;}
.y177{bottom:778.080933pt;}
.y163{bottom:778.381733pt;}
.y140{bottom:779.929867pt;}
.y1ba{bottom:780.100000pt;}
.y39{bottom:785.310933pt;}
.y26{bottom:786.843467pt;}
.yb{bottom:786.859067pt;}
.y194{bottom:788.836133pt;}
.ya1{bottom:796.191200pt;}
.yf9{bottom:797.751733pt;}
.y92{bottom:798.040133pt;}
.y176{bottom:798.080933pt;}
.y162{bottom:798.381733pt;}
.y126{bottom:799.300000pt;}
.y13f{bottom:799.929867pt;}
.y1b9{bottom:800.100000pt;}
.y38{bottom:805.310933pt;}
.ya{bottom:806.859067pt;}
.y193{bottom:808.836133pt;}
.ya0{bottom:816.191200pt;}
.y6b{bottom:816.492000pt;}
.yf8{bottom:817.751733pt;}
.y91{bottom:818.040133pt;}
.y175{bottom:818.080933pt;}
.y161{bottom:818.381733pt;}
.y125{bottom:819.300000pt;}
.y13e{bottom:819.929867pt;}
.y1b8{bottom:820.100000pt;}
.y25{bottom:826.843467pt;}
.ydc{bottom:826.859067pt;}
.yb4{bottom:836.191200pt;}
.y6a{bottom:836.492000pt;}
.y90{bottom:838.040133pt;}
.y124{bottom:839.300000pt;}
.y13d{bottom:839.929867pt;}
.y37{bottom:845.310933pt;}
.y24{bottom:846.843467pt;}
.y9{bottom:846.859067pt;}
.y192{bottom:848.836133pt;}
.y9f{bottom:856.191200pt;}
.yf7{bottom:857.751733pt;}
.y64{bottom:858.024533pt;}
.y8f{bottom:858.040133pt;}
.y174{bottom:858.080933pt;}
.y160{bottom:858.381733pt;}
.y123{bottom:859.300000pt;}
.y13c{bottom:859.929867pt;}
.y1b7{bottom:860.100000pt;}
.y1{bottom:870.603467pt;}
.y9e{bottom:876.191200pt;}
.y69{bottom:876.492000pt;}
.y63{bottom:878.024533pt;}
.y8e{bottom:878.040133pt;}
.y173{bottom:878.080933pt;}
.y15f{bottom:878.381733pt;}
.y122{bottom:879.300000pt;}
.y13b{bottom:879.929867pt;}
.y9d{bottom:896.191200pt;}
.yf6{bottom:897.751733pt;}
.y8d{bottom:898.040133pt;}
.y172{bottom:898.080933pt;}
.y15e{bottom:898.381733pt;}
.y121{bottom:899.300000pt;}
.y13a{bottom:899.929867pt;}
.y9c{bottom:916.191200pt;}
.yf5{bottom:917.751733pt;}
.y62{bottom:918.024533pt;}
.y8c{bottom:918.040133pt;}
.y171{bottom:918.080933pt;}
.y15d{bottom:918.381733pt;}
.y120{bottom:919.300000pt;}
.y139{bottom:919.929867pt;}
.y1b6{bottom:920.100000pt;}
.y9b{bottom:936.191200pt;}
.y68{bottom:936.492000pt;}
.yf4{bottom:937.751733pt;}
.y61{bottom:938.024533pt;}
.y8b{bottom:938.040133pt;}
.y170{bottom:938.080933pt;}
.y15c{bottom:938.381733pt;}
.y11f{bottom:939.300000pt;}
.y138{bottom:939.929867pt;}
.y1b5{bottom:940.100000pt;}
.y4e{bottom:948.546400pt;}
.y9a{bottom:956.191200pt;}
.y67{bottom:956.492000pt;}
.yf3{bottom:957.751733pt;}
.y60{bottom:958.024533pt;}
.yb1{bottom:958.040133pt;}
.y16f{bottom:958.080933pt;}
.y15b{bottom:958.381733pt;}
.y11e{bottom:959.300000pt;}
.y137{bottom:959.929867pt;}
.y5f{bottom:978.024533pt;}
.y8a{bottom:978.040133pt;}
.yaa{bottom:978.670133pt;}
.y11d{bottom:979.300000pt;}
.y136{bottom:979.929867pt;}
.y22{bottom:986.946400pt;}
.y191{bottom:988.206267pt;}
.y190{bottom:988.836133pt;}
.y1ce{bottom:995.520533pt;}
.y99{bottom:996.191200pt;}
.y66{bottom:996.492000pt;}
.yf2{bottom:997.751733pt;}
.y5e{bottom:998.024533pt;}
.y89{bottom:998.040133pt;}
.y16e{bottom:998.080933pt;}
.y15a{bottom:998.381733pt;}
.ya9{bottom:998.670133pt;}
.y11c{bottom:999.300000pt;}
.y135{bottom:999.929867pt;}
.h9{height:38.080000pt;}
.ha{height:42.656250pt;}
.hb{height:43.812500pt;}
.h7{height:44.437500pt;}
.h8{height:46.796875pt;}
.h6{height:51.114583pt;}
.h4{height:56.156250pt;}
.h5{height:56.717812pt;}
.h3{height:65.515625pt;}
.h2{height:112.312500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:34.015733pt;}
.xe{left:35.905467pt;}
.x8{left:66.141733pt;}
.xc{left:75.590533pt;}
.x26{left:84.918667pt;}
.x12{left:114.750800pt;}
.x19{left:139.548933pt;}
.x10{left:155.069067pt;}
.x16{left:173.819733pt;}
.x1b{left:200.050267pt;}
.x7{left:208.111600pt;}
.xf{left:216.006667pt;}
.x1c{left:217.021067pt;}
.x13{left:218.032000pt;}
.x2{left:226.321067pt;}
.x1a{left:243.028800pt;}
.x1f{left:246.303467pt;}
.x1d{left:247.228000pt;}
.x21{left:249.021600pt;}
.x20{left:253.168800pt;}
.x23{left:260.834800pt;}
.x25{left:263.514400pt;}
.x24{left:270.889467pt;}
.x30{left:278.233733pt;}
.x4{left:287.967600pt;}
.x1{left:290.186267pt;}
.x22{left:298.478000pt;}
.x18{left:301.384933pt;}
.xb{left:304.397200pt;}
.x1e{left:308.056800pt;}
.x31{left:313.289733pt;}
.x2b{left:317.321733pt;}
.x11{left:321.277067pt;}
.x2a{left:324.649733pt;}
.x28{left:325.741067pt;}
.x14{left:327.057200pt;}
.x2e{left:335.449733pt;}
.x29{left:337.209733pt;}
.x5{left:339.543600pt;}
.x9{left:342.639467pt;}
.x2d{left:346.857733pt;}
.x6{left:348.895600pt;}
.x2f{left:356.185733pt;}
.x2c{left:362.873733pt;}
.x3{left:368.108133pt;}
.x17{left:379.623867pt;}
.x15{left:382.957200pt;}
.x27{left:533.848267pt;}
.xd{left:747.401467pt;}
}




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