
    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_8be13a374e49d77145bff829.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_eebd621d9004cb047686e684.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5c93b8071773713391724b95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_ff66e383bdd489e30cd46d78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_6f73854d208c276fc703cb18.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21313b0c3da79e75ee8acaf7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls43{letter-spacing:-5.961600px;}
.ls46{letter-spacing:-4.835520px;}
.ls18{letter-spacing:-3.762432px;}
.ls4c{letter-spacing:-2.225664px;}
.ls17{letter-spacing:-2.179296px;}
.ls39{letter-spacing:-2.172672px;}
.ls4a{letter-spacing:-1.463904px;}
.ls3d{letter-spacing:-1.444032px;}
.ls19{letter-spacing:-1.291680px;}
.ls49{letter-spacing:-1.145952px;}
.ls40{letter-spacing:-0.980352px;}
.ls3a{letter-spacing:-0.914112px;}
.ls3e{letter-spacing:-0.828000px;}
.ls4f{letter-spacing:-0.781632px;}
.ls48{letter-spacing:-0.761760px;}
.ls4e{letter-spacing:-0.741888px;}
.ls42{letter-spacing:-0.728640px;}
.ls4d{letter-spacing:-0.682272px;}
.ls3f{letter-spacing:-0.662400px;}
.ls41{letter-spacing:-0.470304px;}
.ls45{letter-spacing:-0.238464px;}
.ls34{letter-spacing:-0.205344px;}
.ls3c{letter-spacing:-0.185472px;}
.ls16{letter-spacing:-0.178848px;}
.ls1c{letter-spacing:-0.165600px;}
.ls47{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.152352px;}
.ls11{letter-spacing:-0.145728px;}
.ls3b{letter-spacing:-0.139104px;}
.ls1a{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.125856px;}
.ls21{letter-spacing:-0.119232px;}
.ls10{letter-spacing:-0.112608px;}
.ls13{letter-spacing:-0.105984px;}
.lse{letter-spacing:-0.099360px;}
.ls20{letter-spacing:-0.092736px;}
.ls1e{letter-spacing:-0.086112px;}
.ls1b{letter-spacing:-0.079488px;}
.ls12{letter-spacing:-0.072864px;}
.ls14{letter-spacing:-0.066240px;}
.ls33{letter-spacing:-0.059616px;}
.ls36{letter-spacing:-0.039744px;}
.ls35{letter-spacing:-0.033120px;}
.lsf{letter-spacing:-0.019872px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.115200px;}
.ls38{letter-spacing:0.183744px;}
.ls50{letter-spacing:0.200448px;}
.ls2{letter-spacing:0.208800px;}
.lsb{letter-spacing:0.225504px;}
.ls4b{letter-spacing:0.250560px;}
.ls37{letter-spacing:0.275616px;}
.ls1d{letter-spacing:0.292320px;}
.lsc{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.768960px;}
.ls2a{letter-spacing:1.166400px;}
.ls24{letter-spacing:2.965248px;}
.ls5{letter-spacing:3.117600px;}
.ls28{letter-spacing:3.631680px;}
.ls29{letter-spacing:3.633408px;}
.ls27{letter-spacing:4.916160px;}
.ls2e{letter-spacing:6.379200px;}
.ls2b{letter-spacing:12.366720px;}
.ls2c{letter-spacing:12.368160px;}
.ls0{letter-spacing:19.771632px;}
.ls22{letter-spacing:22.639680px;}
.ls2f{letter-spacing:25.638192px;}
.ls30{letter-spacing:25.639200px;}
.lsa{letter-spacing:35.585280px;}
.ls8{letter-spacing:38.248416px;}
.ls6{letter-spacing:38.506176px;}
.ls4{letter-spacing:39.472992px;}
.ls23{letter-spacing:40.085280px;}
.ls7{letter-spacing:41.309856px;}
.ls26{letter-spacing:41.857776px;}
.ls32{letter-spacing:42.881760px;}
.ls9{letter-spacing:45.015984px;}
.ls25{letter-spacing:52.782624px;}
.ls31{letter-spacing:57.133008px;}
.ls2d{letter-spacing:57.777696px;}
.ls44{letter-spacing:85.808160px;}
.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:-19.209600px;}
.ws14{word-spacing:-19.151136px;}
.ws0{word-spacing:-19.101024px;}
.ws1{word-spacing:-19.084320px;}
.ws15{word-spacing:-19.059264px;}
.ws2{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.950368px;}
.ws13{word-spacing:-14.930496px;}
.ws10{word-spacing:-14.910624px;}
.ws11{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.890752px;}
.wsd{word-spacing:-14.884128px;}
.ws16{word-spacing:-14.877504px;}
.ws9{word-spacing:-14.870880px;}
.ws3{word-spacing:-14.864256px;}
.ws5{word-spacing:-14.857632px;}
.wse{word-spacing:-14.851008px;}
.ws1d{word-spacing:-14.844384px;}
.ws8{word-spacing:-14.837760px;}
.ws1a{word-spacing:-14.831136px;}
.wsb{word-spacing:-14.824512px;}
.ws17{word-spacing:-14.804640px;}
.ws4{word-spacing:-14.791392px;}
.ws1b{word-spacing:-14.784768px;}
.ws20{word-spacing:-14.764896px;}
.ws24{word-spacing:-14.731776px;}
.ws21{word-spacing:-14.499936px;}
.ws1e{word-spacing:-14.307840px;}
.ws2a{word-spacing:-14.287968px;}
.ws22{word-spacing:-14.241600px;}
.ws2b{word-spacing:-14.228352px;}
.ws28{word-spacing:-14.208480px;}
.ws2c{word-spacing:-14.188608px;}
.ws1c{word-spacing:-14.142240px;}
.ws19{word-spacing:-14.056128px;}
.ws1f{word-spacing:-13.989888px;}
.ws23{word-spacing:-13.678560px;}
.ws26{word-spacing:-13.526208px;}
.ws18{word-spacing:-12.797568px;}
.ws6{word-spacing:-12.790944px;}
.ws29{word-spacing:-12.744576px;}
.ws7{word-spacing:-11.207808px;}
.ws25{word-spacing:-10.134720px;}
.ws27{word-spacing:-9.008640px;}
.wsf{word-spacing:0.000000px;}
._2e{margin-left:-3.699936px;}
._5{margin-left:-2.118384px;}
._0{margin-left:-1.004400px;}
._2{width:1.001376px;}
._3{width:2.053440px;}
._4{width:3.643200px;}
._8{width:4.972176px;}
._a{width:6.013728px;}
._1{width:7.418880px;}
._7{width:8.597088px;}
._2a{width:9.831744px;}
._32{width:11.346624px;}
._9{width:12.598992px;}
._1a{width:15.122592px;}
._31{width:16.777440px;}
._2f{width:18.348480px;}
._33{width:19.605744px;}
._6{width:22.802976px;}
._1d{width:24.373584px;}
._b{width:25.637616px;}
._2d{width:28.746864px;}
._16{width:32.656320px;}
._11{width:39.140064px;}
._f{width:41.949792px;}
._28{width:43.128864px;}
._e{width:44.644464px;}
._22{width:46.169280px;}
._17{width:48.355200px;}
._1c{width:49.878720px;}
._c{width:51.269760px;}
._18{width:53.323200px;}
._2b{width:55.442880px;}
._30{width:58.556160px;}
._26{width:60.808320px;}
._27{width:74.387520px;}
._25{width:75.638304px;}
._13{width:81.872640px;}
._19{width:86.708160px;}
._1e{width:88.165440px;}
._14{width:93.067200px;}
._21{width:94.723200px;}
._10{width:96.774048px;}
._24{width:105.387840px;}
._12{width:109.627200px;}
._2c{width:125.193600px;}
._34{width:128.389680px;}
._29{width:129.697920px;}
._23{width:148.245120px;}
._d{width:159.373440px;}
._1b{width:174.673584px;}
._20{width:183.551040px;}
._15{width:185.546304px;}
._1f{width:207.132480px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:4.500000px;}
.y4f{bottom:4.620000px;}
.y9e{bottom:4.680000px;}
.y51{bottom:4.740000px;}
.y48{bottom:4.860000px;}
.y76{bottom:4.920000px;}
.y96{bottom:5.040000px;}
.y87{bottom:5.100000px;}
.y9{bottom:5.160000px;}
.y7a{bottom:5.220000px;}
.yb{bottom:5.280000px;}
.y7{bottom:5.340000px;}
.yd{bottom:5.400000px;}
.y6f{bottom:5.460000px;}
.yf{bottom:5.520000px;}
.y93{bottom:5.580000px;}
.y64{bottom:5.640000px;}
.y54{bottom:5.700000px;}
.y56{bottom:5.820000px;}
.y4b{bottom:5.880000px;}
.ya3{bottom:5.940000px;}
.y72{bottom:24.420000px;}
.y5e{bottom:24.660000px;}
.y90{bottom:24.780000px;}
.y9d{bottom:24.840000px;}
.y5a{bottom:24.900000px;}
.y75{bottom:25.080000px;}
.y95{bottom:25.200000px;}
.y86{bottom:25.260000px;}
.y6b{bottom:25.320000px;}
.y79{bottom:25.380000px;}
.y58{bottom:25.440000px;}
.y6e{bottom:25.620000px;}
.y7d{bottom:25.680000px;}
.y92{bottom:25.740000px;}
.y63{bottom:25.800000px;}
.y53{bottom:25.860000px;}
.y80{bottom:25.980000px;}
.y4a{bottom:26.040000px;}
.ya2{bottom:26.100000px;}
.y71{bottom:44.580000px;}
.y5d{bottom:44.820000px;}
.y74{bottom:44.880000px;}
.y9c{bottom:45.000000px;}
.y8a{bottom:45.060000px;}
.yb2{bottom:45.240000px;}
.yb7{bottom:45.360000px;}
.y85{bottom:45.420000px;}
.y78{bottom:45.540000px;}
.y67{bottom:45.600000px;}
.y6d{bottom:45.780000px;}
.y7c{bottom:45.840000px;}
.y62{bottom:45.960000px;}
.y7f{bottom:46.140000px;}
.y8d{bottom:46.200000px;}
.ya1{bottom:46.260000px;}
.ybc{bottom:64.800000px;}
.y89{bottom:65.220000px;}
.y84{bottom:65.580000px;}
.y66{bottom:65.760000px;}
.y82{bottom:65.940000px;}
.y61{bottom:66.120000px;}
.y8c{bottom:66.360000px;}
.ybb{bottom:84.960000px;}
.yb5{bottom:85.380000px;}
.yba{bottom:105.120000px;}
.yb4{bottom:105.540000px;}
.y8b{bottom:114.000000px;}
.yc1{bottom:115.200000px;}
.yb1{bottom:129.000000px;}
.yc0{bottom:131.400000px;}
.y5c{bottom:139.500000px;}
.y2c{bottom:141.480000px;}
.y2b{bottom:163.080000px;}
.y2a{bottom:185.040000px;}
.yb0{bottom:190.500000px;}
.y88{bottom:196.500000px;}
.y5b{bottom:199.500000px;}
.y29{bottom:206.640000px;}
.yaf{bottom:211.500000px;}
.y28{bottom:228.240000px;}
.yae{bottom:231.000000px;}
.y59{bottom:241.500000px;}
.y27{bottom:250.200000px;}
.y26{bottom:271.800000px;}
.yad{bottom:273.000000px;}
.y83{bottom:277.500000px;}
.y57{bottom:282.000000px;}
.y25{bottom:293.400000px;}
.yac{bottom:313.500000px;}
.y24{bottom:315.360000px;}
.y55{bottom:322.500000px;}
.yab{bottom:334.500000px;}
.y23{bottom:336.960000px;}
.y52{bottom:343.500000px;}
.yaa{bottom:355.500000px;}
.y81{bottom:358.500000px;}
.y22{bottom:358.920000px;}
.y21{bottom:380.520000px;}
.y50{bottom:385.500000px;}
.y20{bottom:402.120000px;}
.y4e{bottom:406.500000px;}
.ya9{bottom:417.000000px;}
.y1f{bottom:424.080000px;}
.y4c{bottom:427.500000px;}
.y7e{bottom:439.500000px;}
.y1e{bottom:445.680000px;}
.y49{bottom:447.000000px;}
.ya8{bottom:457.500000px;}
.y1d{bottom:467.280000px;}
.y47{bottom:490.500000px;}
.y1c{bottom:490.680000px;}
.y7b{bottom:501.000000px;}
.y1b{bottom:518.400000px;}
.ya7{bottom:519.000000px;}
.ybf{bottom:527.760000px;}
.y46{bottom:531.360000px;}
.y1a{bottom:556.560000px;}
.ya6{bottom:561.000000px;}
.y77{bottom:562.500000px;}
.ybe{bottom:563.400000px;}
.y45{bottom:570.960000px;}
.ybd{bottom:583.500000px;}
.y19{bottom:590.400000px;}
.ya5{bottom:602.640000px;}
.y44{bottom:610.920000px;}
.y18{bottom:612.000000px;}
.y73{bottom:624.000000px;}
.y17{bottom:633.600000px;}
.ya4{bottom:642.240000px;}
.y43{bottom:648.720000px;}
.ya0{bottom:661.500000px;}
.yb9{bottom:666.000000px;}
.y16{bottom:668.880000px;}
.y42{bottom:682.560000px;}
.y70{bottom:685.500000px;}
.y41{bottom:704.160000px;}
.y15{bottom:707.040000px;}
.y9f{bottom:723.000000px;}
.y40{bottom:726.120000px;}
.y14{bottom:740.880000px;}
.y6c{bottom:745.500000px;}
.y3f{bottom:747.720000px;}
.y9b{bottom:765.000000px;}
.y3e{bottom:769.680000px;}
.y13{bottom:774.720000px;}
.yb8{bottom:787.500000px;}
.y3d{bottom:791.280000px;}
.y6a{bottom:807.000000px;}
.y12{bottom:810.000000px;}
.y3c{bottom:812.880000px;}
.y9a{bottom:825.000000px;}
.yb6{bottom:828.000000px;}
.y3b{bottom:834.840000px;}
.y69{bottom:847.500000px;}
.y11{bottom:848.160000px;}
.y3a{bottom:856.440000px;}
.y99{bottom:867.000000px;}
.y39{bottom:878.040000px;}
.y10{bottom:881.640000px;}
.y68{bottom:889.500000px;}
.ye{bottom:897.000000px;}
.y38{bottom:900.000000px;}
.y98{bottom:907.500000px;}
.yc{bottom:918.000000px;}
.y37{bottom:921.600000px;}
.y65{bottom:930.000000px;}
.yc2{bottom:930.240000px;}
.ya{bottom:939.000000px;}
.y36{bottom:943.560000px;}
.y97{bottom:949.500000px;}
.y8{bottom:960.000000px;}
.y35{bottom:965.160000px;}
.y6{bottom:982.500000px;}
.y34{bottom:986.760000px;}
.y94{bottom:990.000000px;}
.y33{bottom:1008.720000px;}
.y60{bottom:1011.000000px;}
.y5{bottom:1022.040000px;}
.y32{bottom:1030.320000px;}
.y91{bottom:1030.500000px;}
.yb3{bottom:1051.500000px;}
.y31{bottom:1051.920000px;}
.y4{bottom:1055.880000px;}
.y8f{bottom:1072.500000px;}
.y30{bottom:1073.880000px;}
.y3{bottom:1077.480000px;}
.y5f{bottom:1093.500000px;}
.y2f{bottom:1095.480000px;}
.y2{bottom:1099.440000px;}
.y8e{bottom:1113.000000px;}
.y2e{bottom:1117.440000px;}
.y1{bottom:1134.720000px;}
.y2d{bottom:1139.040000px;}
.h5{height:21.000000px;}
.h4{height:22.500000px;}
.hc{height:40.500000px;}
.h7{height:42.000000px;}
.h6{height:45.345938px;}
.h3{height:47.545313px;}
.h2{height:57.175313px;}
.h8{height:61.500000px;}
.ha{height:63.000000px;}
.hb{height:81.000000px;}
.h9{height:82.500000px;}
.hd{height:121.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:51.000000px;}
.w6{width:58.500000px;}
.w8{width:70.500000px;}
.w9{width:84.000000px;}
.we{width:90.000000px;}
.wf{width:96.000000px;}
.wd{width:97.500000px;}
.w3{width:99.000000px;}
.wa{width:132.000000px;}
.w5{width:141.000000px;}
.w7{width:151.500000px;}
.w4{width:175.500000px;}
.wb{width:216.000000px;}
.w2{width:223.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:7.560000px;}
.x3{left:8.640036px;}
.x2{left:108.000000px;}
.x1{left:135.000000px;}
.x5{left:162.000000px;}
.x6{left:189.000000px;}
.x9{left:216.000000px;}
.x10{left:238.500000px;}
.x8{left:244.761480px;}
.x7{left:248.548104px;}
.xa{left:270.000000px;}
.xb{left:282.000000px;}
.x4{left:331.500000px;}
.xc{left:423.000000px;}
.x11{left:453.000000px;}
.xd{left:480.000000px;}
.x12{left:504.000000px;}
.x16{left:531.000000px;}
.x14{left:600.000000px;}
.xe{left:631.500000px;}
.x15{left:688.500000px;}
.xf{left:700.500000px;}
.x17{left:785.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls43{letter-spacing:-5.299200pt;}
.ls46{letter-spacing:-4.298240pt;}
.ls18{letter-spacing:-3.344384pt;}
.ls4c{letter-spacing:-1.978368pt;}
.ls17{letter-spacing:-1.937152pt;}
.ls39{letter-spacing:-1.931264pt;}
.ls4a{letter-spacing:-1.301248pt;}
.ls3d{letter-spacing:-1.283584pt;}
.ls19{letter-spacing:-1.148160pt;}
.ls49{letter-spacing:-1.018624pt;}
.ls40{letter-spacing:-0.871424pt;}
.ls3a{letter-spacing:-0.812544pt;}
.ls3e{letter-spacing:-0.736000pt;}
.ls4f{letter-spacing:-0.694784pt;}
.ls48{letter-spacing:-0.677120pt;}
.ls4e{letter-spacing:-0.659456pt;}
.ls42{letter-spacing:-0.647680pt;}
.ls4d{letter-spacing:-0.606464pt;}
.ls3f{letter-spacing:-0.588800pt;}
.ls41{letter-spacing:-0.418048pt;}
.ls45{letter-spacing:-0.211968pt;}
.ls34{letter-spacing:-0.182528pt;}
.ls3c{letter-spacing:-0.164864pt;}
.ls16{letter-spacing:-0.158976pt;}
.ls1c{letter-spacing:-0.147200pt;}
.ls47{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.135424pt;}
.ls11{letter-spacing:-0.129536pt;}
.ls3b{letter-spacing:-0.123648pt;}
.ls1a{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.111872pt;}
.ls21{letter-spacing:-0.105984pt;}
.ls10{letter-spacing:-0.100096pt;}
.ls13{letter-spacing:-0.094208pt;}
.lse{letter-spacing:-0.088320pt;}
.ls20{letter-spacing:-0.082432pt;}
.ls1e{letter-spacing:-0.076544pt;}
.ls1b{letter-spacing:-0.070656pt;}
.ls12{letter-spacing:-0.064768pt;}
.ls14{letter-spacing:-0.058880pt;}
.ls33{letter-spacing:-0.052992pt;}
.ls36{letter-spacing:-0.035328pt;}
.ls35{letter-spacing:-0.029440pt;}
.lsf{letter-spacing:-0.017664pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.102400pt;}
.ls38{letter-spacing:0.163328pt;}
.ls50{letter-spacing:0.178176pt;}
.ls2{letter-spacing:0.185600pt;}
.lsb{letter-spacing:0.200448pt;}
.ls4b{letter-spacing:0.222720pt;}
.ls37{letter-spacing:0.244992pt;}
.ls1d{letter-spacing:0.259840pt;}
.lsc{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.683520pt;}
.ls2a{letter-spacing:1.036800pt;}
.ls24{letter-spacing:2.635776pt;}
.ls5{letter-spacing:2.771200pt;}
.ls28{letter-spacing:3.228160pt;}
.ls29{letter-spacing:3.229696pt;}
.ls27{letter-spacing:4.369920pt;}
.ls2e{letter-spacing:5.670400pt;}
.ls2b{letter-spacing:10.992640pt;}
.ls2c{letter-spacing:10.993920pt;}
.ls0{letter-spacing:17.574784pt;}
.ls22{letter-spacing:20.124160pt;}
.ls2f{letter-spacing:22.789504pt;}
.ls30{letter-spacing:22.790400pt;}
.lsa{letter-spacing:31.631360pt;}
.ls8{letter-spacing:33.998592pt;}
.ls6{letter-spacing:34.227712pt;}
.ls4{letter-spacing:35.087104pt;}
.ls23{letter-spacing:35.631360pt;}
.ls7{letter-spacing:36.719872pt;}
.ls26{letter-spacing:37.206912pt;}
.ls32{letter-spacing:38.117120pt;}
.ls9{letter-spacing:40.014208pt;}
.ls25{letter-spacing:46.917888pt;}
.ls31{letter-spacing:50.784896pt;}
.ls2d{letter-spacing:51.357952pt;}
.ls44{letter-spacing:76.273920pt;}
.wsa{word-spacing:-17.075200pt;}
.ws14{word-spacing:-17.023232pt;}
.ws0{word-spacing:-16.978688pt;}
.ws1{word-spacing:-16.963840pt;}
.ws15{word-spacing:-16.941568pt;}
.ws2{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.289216pt;}
.ws13{word-spacing:-13.271552pt;}
.ws10{word-spacing:-13.253888pt;}
.ws11{word-spacing:-13.248000pt;}
.ws12{word-spacing:-13.236224pt;}
.wsd{word-spacing:-13.230336pt;}
.ws16{word-spacing:-13.224448pt;}
.ws9{word-spacing:-13.218560pt;}
.ws3{word-spacing:-13.212672pt;}
.ws5{word-spacing:-13.206784pt;}
.wse{word-spacing:-13.200896pt;}
.ws1d{word-spacing:-13.195008pt;}
.ws8{word-spacing:-13.189120pt;}
.ws1a{word-spacing:-13.183232pt;}
.wsb{word-spacing:-13.177344pt;}
.ws17{word-spacing:-13.159680pt;}
.ws4{word-spacing:-13.147904pt;}
.ws1b{word-spacing:-13.142016pt;}
.ws20{word-spacing:-13.124352pt;}
.ws24{word-spacing:-13.094912pt;}
.ws21{word-spacing:-12.888832pt;}
.ws1e{word-spacing:-12.718080pt;}
.ws2a{word-spacing:-12.700416pt;}
.ws22{word-spacing:-12.659200pt;}
.ws2b{word-spacing:-12.647424pt;}
.ws28{word-spacing:-12.629760pt;}
.ws2c{word-spacing:-12.612096pt;}
.ws1c{word-spacing:-12.570880pt;}
.ws19{word-spacing:-12.494336pt;}
.ws1f{word-spacing:-12.435456pt;}
.ws23{word-spacing:-12.158720pt;}
.ws26{word-spacing:-12.023296pt;}
.ws18{word-spacing:-11.375616pt;}
.ws6{word-spacing:-11.369728pt;}
.ws29{word-spacing:-11.328512pt;}
.ws7{word-spacing:-9.962496pt;}
.ws25{word-spacing:-9.008640pt;}
.ws27{word-spacing:-8.007680pt;}
.wsf{word-spacing:0.000000pt;}
._2e{margin-left:-3.288832pt;}
._5{margin-left:-1.883008pt;}
._0{margin-left:-0.892800pt;}
._2{width:0.890112pt;}
._3{width:1.825280pt;}
._4{width:3.238400pt;}
._8{width:4.419712pt;}
._a{width:5.345536pt;}
._1{width:6.594560pt;}
._7{width:7.641856pt;}
._2a{width:8.739328pt;}
._32{width:10.085888pt;}
._9{width:11.199104pt;}
._1a{width:13.442304pt;}
._31{width:14.913280pt;}
._2f{width:16.309760pt;}
._33{width:17.427328pt;}
._6{width:20.269312pt;}
._1d{width:21.665408pt;}
._b{width:22.788992pt;}
._2d{width:25.552768pt;}
._16{width:29.027840pt;}
._11{width:34.791168pt;}
._f{width:37.288704pt;}
._28{width:38.336768pt;}
._e{width:39.683968pt;}
._22{width:41.039360pt;}
._17{width:42.982400pt;}
._1c{width:44.336640pt;}
._c{width:45.573120pt;}
._18{width:47.398400pt;}
._2b{width:49.282560pt;}
._30{width:52.049920pt;}
._26{width:54.051840pt;}
._27{width:66.122240pt;}
._25{width:67.234048pt;}
._13{width:72.775680pt;}
._19{width:77.073920pt;}
._1e{width:78.369280pt;}
._14{width:82.726400pt;}
._21{width:84.198400pt;}
._10{width:86.021376pt;}
._24{width:93.678080pt;}
._12{width:97.446400pt;}
._2c{width:111.283200pt;}
._34{width:114.124160pt;}
._29{width:115.287040pt;}
._23{width:131.773440pt;}
._d{width:141.665280pt;}
._1b{width:155.265408pt;}
._20{width:163.156480pt;}
._15{width:164.930048pt;}
._1f{width:184.117760pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:4.000000pt;}
.y4f{bottom:4.106667pt;}
.y9e{bottom:4.160000pt;}
.y51{bottom:4.213333pt;}
.y48{bottom:4.320000pt;}
.y76{bottom:4.373333pt;}
.y96{bottom:4.480000pt;}
.y87{bottom:4.533333pt;}
.y9{bottom:4.586667pt;}
.y7a{bottom:4.640000pt;}
.yb{bottom:4.693333pt;}
.y7{bottom:4.746667pt;}
.yd{bottom:4.800000pt;}
.y6f{bottom:4.853333pt;}
.yf{bottom:4.906667pt;}
.y93{bottom:4.960000pt;}
.y64{bottom:5.013333pt;}
.y54{bottom:5.066667pt;}
.y56{bottom:5.173333pt;}
.y4b{bottom:5.226667pt;}
.ya3{bottom:5.280000pt;}
.y72{bottom:21.706667pt;}
.y5e{bottom:21.920000pt;}
.y90{bottom:22.026667pt;}
.y9d{bottom:22.080000pt;}
.y5a{bottom:22.133333pt;}
.y75{bottom:22.293333pt;}
.y95{bottom:22.400000pt;}
.y86{bottom:22.453333pt;}
.y6b{bottom:22.506667pt;}
.y79{bottom:22.560000pt;}
.y58{bottom:22.613333pt;}
.y6e{bottom:22.773333pt;}
.y7d{bottom:22.826667pt;}
.y92{bottom:22.880000pt;}
.y63{bottom:22.933333pt;}
.y53{bottom:22.986667pt;}
.y80{bottom:23.093333pt;}
.y4a{bottom:23.146667pt;}
.ya2{bottom:23.200000pt;}
.y71{bottom:39.626667pt;}
.y5d{bottom:39.840000pt;}
.y74{bottom:39.893333pt;}
.y9c{bottom:40.000000pt;}
.y8a{bottom:40.053333pt;}
.yb2{bottom:40.213333pt;}
.yb7{bottom:40.320000pt;}
.y85{bottom:40.373333pt;}
.y78{bottom:40.480000pt;}
.y67{bottom:40.533333pt;}
.y6d{bottom:40.693333pt;}
.y7c{bottom:40.746667pt;}
.y62{bottom:40.853333pt;}
.y7f{bottom:41.013333pt;}
.y8d{bottom:41.066667pt;}
.ya1{bottom:41.120000pt;}
.ybc{bottom:57.600000pt;}
.y89{bottom:57.973333pt;}
.y84{bottom:58.293333pt;}
.y66{bottom:58.453333pt;}
.y82{bottom:58.613333pt;}
.y61{bottom:58.773333pt;}
.y8c{bottom:58.986667pt;}
.ybb{bottom:75.520000pt;}
.yb5{bottom:75.893333pt;}
.yba{bottom:93.440000pt;}
.yb4{bottom:93.813333pt;}
.y8b{bottom:101.333333pt;}
.yc1{bottom:102.400000pt;}
.yb1{bottom:114.666667pt;}
.yc0{bottom:116.800000pt;}
.y5c{bottom:124.000000pt;}
.y2c{bottom:125.760000pt;}
.y2b{bottom:144.960000pt;}
.y2a{bottom:164.480000pt;}
.yb0{bottom:169.333333pt;}
.y88{bottom:174.666667pt;}
.y5b{bottom:177.333333pt;}
.y29{bottom:183.680000pt;}
.yaf{bottom:188.000000pt;}
.y28{bottom:202.880000pt;}
.yae{bottom:205.333333pt;}
.y59{bottom:214.666667pt;}
.y27{bottom:222.400000pt;}
.y26{bottom:241.600000pt;}
.yad{bottom:242.666667pt;}
.y83{bottom:246.666667pt;}
.y57{bottom:250.666667pt;}
.y25{bottom:260.800000pt;}
.yac{bottom:278.666667pt;}
.y24{bottom:280.320000pt;}
.y55{bottom:286.666667pt;}
.yab{bottom:297.333333pt;}
.y23{bottom:299.520000pt;}
.y52{bottom:305.333333pt;}
.yaa{bottom:316.000000pt;}
.y81{bottom:318.666667pt;}
.y22{bottom:319.040000pt;}
.y21{bottom:338.240000pt;}
.y50{bottom:342.666667pt;}
.y20{bottom:357.440000pt;}
.y4e{bottom:361.333333pt;}
.ya9{bottom:370.666667pt;}
.y1f{bottom:376.960000pt;}
.y4c{bottom:380.000000pt;}
.y7e{bottom:390.666667pt;}
.y1e{bottom:396.160000pt;}
.y49{bottom:397.333333pt;}
.ya8{bottom:406.666667pt;}
.y1d{bottom:415.360000pt;}
.y47{bottom:436.000000pt;}
.y1c{bottom:436.160000pt;}
.y7b{bottom:445.333333pt;}
.y1b{bottom:460.800000pt;}
.ya7{bottom:461.333333pt;}
.ybf{bottom:469.120000pt;}
.y46{bottom:472.320000pt;}
.y1a{bottom:494.720000pt;}
.ya6{bottom:498.666667pt;}
.y77{bottom:500.000000pt;}
.ybe{bottom:500.800000pt;}
.y45{bottom:507.520000pt;}
.ybd{bottom:518.666667pt;}
.y19{bottom:524.800000pt;}
.ya5{bottom:535.680000pt;}
.y44{bottom:543.040000pt;}
.y18{bottom:544.000000pt;}
.y73{bottom:554.666667pt;}
.y17{bottom:563.200000pt;}
.ya4{bottom:570.880000pt;}
.y43{bottom:576.640000pt;}
.ya0{bottom:588.000000pt;}
.yb9{bottom:592.000000pt;}
.y16{bottom:594.560000pt;}
.y42{bottom:606.720000pt;}
.y70{bottom:609.333333pt;}
.y41{bottom:625.920000pt;}
.y15{bottom:628.480000pt;}
.y9f{bottom:642.666667pt;}
.y40{bottom:645.440000pt;}
.y14{bottom:658.560000pt;}
.y6c{bottom:662.666667pt;}
.y3f{bottom:664.640000pt;}
.y9b{bottom:680.000000pt;}
.y3e{bottom:684.160000pt;}
.y13{bottom:688.640000pt;}
.yb8{bottom:700.000000pt;}
.y3d{bottom:703.360000pt;}
.y6a{bottom:717.333333pt;}
.y12{bottom:720.000000pt;}
.y3c{bottom:722.560000pt;}
.y9a{bottom:733.333333pt;}
.yb6{bottom:736.000000pt;}
.y3b{bottom:742.080000pt;}
.y69{bottom:753.333333pt;}
.y11{bottom:753.920000pt;}
.y3a{bottom:761.280000pt;}
.y99{bottom:770.666667pt;}
.y39{bottom:780.480000pt;}
.y10{bottom:783.680000pt;}
.y68{bottom:790.666667pt;}
.ye{bottom:797.333333pt;}
.y38{bottom:800.000000pt;}
.y98{bottom:806.666667pt;}
.yc{bottom:816.000000pt;}
.y37{bottom:819.200000pt;}
.y65{bottom:826.666667pt;}
.yc2{bottom:826.880000pt;}
.ya{bottom:834.666667pt;}
.y36{bottom:838.720000pt;}
.y97{bottom:844.000000pt;}
.y8{bottom:853.333333pt;}
.y35{bottom:857.920000pt;}
.y6{bottom:873.333333pt;}
.y34{bottom:877.120000pt;}
.y94{bottom:880.000000pt;}
.y33{bottom:896.640000pt;}
.y60{bottom:898.666667pt;}
.y5{bottom:908.480000pt;}
.y32{bottom:915.840000pt;}
.y91{bottom:916.000000pt;}
.yb3{bottom:934.666667pt;}
.y31{bottom:935.040000pt;}
.y4{bottom:938.560000pt;}
.y8f{bottom:953.333333pt;}
.y30{bottom:954.560000pt;}
.y3{bottom:957.760000pt;}
.y5f{bottom:972.000000pt;}
.y2f{bottom:973.760000pt;}
.y2{bottom:977.280000pt;}
.y8e{bottom:989.333333pt;}
.y2e{bottom:993.280000pt;}
.y1{bottom:1008.640000pt;}
.y2d{bottom:1012.480000pt;}
.h5{height:18.666667pt;}
.h4{height:20.000000pt;}
.hc{height:36.000000pt;}
.h7{height:37.333333pt;}
.h6{height:40.307500pt;}
.h3{height:42.262500pt;}
.h2{height:50.822500pt;}
.h8{height:54.666667pt;}
.ha{height:56.000000pt;}
.hb{height:72.000000pt;}
.h9{height:73.333333pt;}
.hd{height:108.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:45.333333pt;}
.w6{width:52.000000pt;}
.w8{width:62.666667pt;}
.w9{width:74.666667pt;}
.we{width:80.000000pt;}
.wf{width:85.333333pt;}
.wd{width:86.666667pt;}
.w3{width:88.000000pt;}
.wa{width:117.333333pt;}
.w5{width:125.333333pt;}
.w7{width:134.666667pt;}
.w4{width:156.000000pt;}
.wb{width:192.000000pt;}
.w2{width:198.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:6.720000pt;}
.x3{left:7.680032pt;}
.x2{left:96.000000pt;}
.x1{left:120.000000pt;}
.x5{left:144.000000pt;}
.x6{left:168.000000pt;}
.x9{left:192.000000pt;}
.x10{left:212.000000pt;}
.x8{left:217.565760pt;}
.x7{left:220.931648pt;}
.xa{left:240.000000pt;}
.xb{left:250.666667pt;}
.x4{left:294.666667pt;}
.xc{left:376.000000pt;}
.x11{left:402.666667pt;}
.xd{left:426.666667pt;}
.x12{left:448.000000pt;}
.x16{left:472.000000pt;}
.x14{left:533.333333pt;}
.xe{left:561.333333pt;}
.x15{left:612.000000pt;}
.xf{left:622.666667pt;}
.x17{left:697.920000pt;}
}




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