
    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_4d607ca1f07cc831dbcdf9a0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_e9d34a1fe16ebf011224b790.woff')format("woff");}.ff2{font-family:ff2;line-height:0.703000;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_890946c07bfaf750f1fe7b54.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_3a1c3837d5b61ccfc0a43a04.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988600px;}
.ls2{letter-spacing:29.886540px;}
.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;}
}
.ws3{word-spacing:-17.932800px;}
.ws31{word-spacing:-16.363650px;}
.ws30{word-spacing:-14.943900px;}
.wsd{word-spacing:-13.449600px;}
.ws2{word-spacing:-11.955150px;}
.ws45{word-spacing:-3.347434px;}
.ws74{word-spacing:-3.227882px;}
.ws4c{word-spacing:-3.168107px;}
.ws80{word-spacing:-3.108331px;}
.ws60{word-spacing:-2.809453px;}
.ws5b{word-spacing:-2.630126px;}
.ws4a{word-spacing:-2.372794px;}
.ws8f{word-spacing:-2.338376px;}
.ws4b{word-spacing:-2.331248px;}
.ws61{word-spacing:-2.151922px;}
.ws1c{word-spacing:-2.032370px;}
.ws1a{word-spacing:-1.912819px;}
.ws28{word-spacing:-1.613941px;}
.ws24{word-spacing:-1.554166px;}
.ws52{word-spacing:-1.374839px;}
.ws2e{word-spacing:-1.315063px;}
.ws55{word-spacing:-1.135736px;}
.ws94{word-spacing:-1.075961px;}
.ws6b{word-spacing:-1.016185px;}
.ws3e{word-spacing:-0.896634px;}
.ws15{word-spacing:-0.753178px;}
.ws40{word-spacing:-0.537980px;}
.ws76{word-spacing:-0.478205px;}
.ws4e{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.ws47{word-spacing:-0.239102px;}
.ws5c{word-spacing:-0.119551px;}
.ws97{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.010477px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.239102px;}
.ws65{word-spacing:0.358654px;}
.ws2a{word-spacing:0.418429px;}
.ws63{word-spacing:0.463259px;}
.ws62{word-spacing:0.478205px;}
.wsb{word-spacing:0.484186px;}
.ws57{word-spacing:0.537980px;}
.ws53{word-spacing:0.657532px;}
.ws5d{word-spacing:0.777083px;}
.ws5e{word-spacing:0.793259px;}
.ws38{word-spacing:0.836858px;}
.ws75{word-spacing:0.896634px;}
.ws1e{word-spacing:0.956410px;}
.ws39{word-spacing:1.135736px;}
.ws13{word-spacing:1.183565px;}
.ws26{word-spacing:1.255288px;}
.ws7c{word-spacing:1.304327px;}
.ws7d{word-spacing:1.315063px;}
.ws3d{word-spacing:1.374839px;}
.ws3c{word-spacing:1.405259px;}
.ws3b{word-spacing:1.434614px;}
.ws16{word-spacing:1.829146px;}
.ws6d{word-spacing:1.912819px;}
.ws2f{word-spacing:2.032370px;}
.ws2c{word-spacing:2.092146px;}
.ws6{word-spacing:2.151936px;}
.ws4{word-spacing:2.205734px;}
.ws69{word-spacing:2.211697px;}
.ws34{word-spacing:2.271473px;}
.ws29{word-spacing:2.331248px;}
.ws5f{word-spacing:2.391024px;}
.ws41{word-spacing:2.570351px;}
.ws10{word-spacing:2.636122px;}
.ws77{word-spacing:2.869229px;}
.ws56{word-spacing:2.988780px;}
.ws3f{word-spacing:3.048556px;}
.ws27{word-spacing:3.066509px;}
.ws35{word-spacing:3.168107px;}
.ws20{word-spacing:3.347434px;}
.ws67{word-spacing:3.407209px;}
.ws46{word-spacing:3.586536px;}
.ws4d{word-spacing:3.706087px;}
.ws42{word-spacing:3.825638px;}
.ws3a{word-spacing:4.124516px;}
.ws32{word-spacing:4.184292px;}
.ws7b{word-spacing:4.244068px;}
.ws44{word-spacing:4.303843px;}
.ws66{word-spacing:4.423394px;}
.ws14{word-spacing:4.519066px;}
.ws5a{word-spacing:4.782048px;}
.wsa{word-spacing:4.788058px;}
.ws6a{word-spacing:4.961375px;}
.ws73{word-spacing:5.080926px;}
.ws25{word-spacing:5.200477px;}
.ws17{word-spacing:5.272243px;}
.ws64{word-spacing:5.379804px;}
.ws51{word-spacing:5.439580px;}
.ws54{word-spacing:5.559131px;}
.ws9b{word-spacing:5.738458px;}
.ws5{word-spacing:5.756429px;}
.ws70{word-spacing:5.858009px;}
.ws33{word-spacing:5.917784px;}
.ws2d{word-spacing:5.977560px;}
.ws1b{word-spacing:6.276438px;}
.ws8e{word-spacing:6.336214px;}
.wse{word-spacing:6.394243px;}
.wsc{word-spacing:6.402010px;}
.ws43{word-spacing:6.455765px;}
.ws36{word-spacing:6.635092px;}
.ws12{word-spacing:6.671002px;}
.ws2b{word-spacing:6.814418px;}
.ws4f{word-spacing:6.933970px;}
.ws59{word-spacing:7.471950px;}
.ws79{word-spacing:7.591501px;}
.ws98{word-spacing:7.711052px;}
.ws21{word-spacing:7.950155px;}
.ws23{word-spacing:8.009930px;}
.ws19{word-spacing:8.189257px;}
.ws1f{word-spacing:8.308808px;}
.ws7{word-spacing:8.338752px;}
.ws9{word-spacing:8.607744px;}
.ws71{word-spacing:8.667462px;}
.ws11{word-spacing:8.876736px;}
.ws58{word-spacing:9.085891px;}
.ws50{word-spacing:9.145667px;}
.ws6c{word-spacing:9.205442px;}
.ws18{word-spacing:9.743423px;}
.ws9a{word-spacing:9.982525px;}
.ws6f{word-spacing:10.102076px;}
.ws87{word-spacing:10.281403px;}
.ws6e{word-spacing:10.341179px;}
.ws68{word-spacing:10.520506px;}
.ws99{word-spacing:10.640057px;}
.ws48{word-spacing:10.759608px;}
.ws49{word-spacing:10.777259px;}
.wsf{word-spacing:10.867277px;}
.ws7a{word-spacing:10.879159px;}
.ws7e{word-spacing:11.058486px;}
.ws8{word-spacing:11.405261px;}
.ws89{word-spacing:11.955120px;}
.ws72{word-spacing:12.373549px;}
.ws1d{word-spacing:13.867939px;}
.ws96{word-spacing:14.107042px;}
.ws78{word-spacing:14.226593px;}
.ws95{word-spacing:14.405920px;}
.ws81{word-spacing:15.003676px;}
.ws82{word-spacing:15.422105px;}
.ws86{word-spacing:16.438290px;}
.ws7f{word-spacing:18.291334px;}
.ws93{word-spacing:19.068416px;}
.ws92{word-spacing:19.128192px;}
.ws83{word-spacing:19.307519px;}
.ws84{word-spacing:19.367294px;}
.ws8a{word-spacing:19.486846px;}
.ws88{word-spacing:24.687323px;}
.ws91{word-spacing:25.045976px;}
.ws90{word-spacing:25.823059px;}
.ws85{word-spacing:26.779469px;}
.ws8c{word-spacing:40.766959px;}
.ws8b{word-spacing:67.665979px;}
.ws8d{word-spacing:70.535208px;}
._0{margin-left:-7.919102px;}
._3{margin-left:-6.714022px;}
._5{margin-left:-4.782048px;}
._1{margin-left:-3.012702px;}
._2{margin-left:-1.549390px;}
._4{width:2.985450px;}
._c{width:4.046784px;}
._d{width:5.346450px;}
._7{width:15.979231px;}
._6{width:17.204724px;}
._9{width:21.399665px;}
._8{width:23.073382px;}
._b{width:24.806874px;}
._a{width:29.887800px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y34{bottom:135.000000px;}
.y33{bottom:149.944500px;}
.y59{bottom:151.438500px;}
.y58{bottom:167.877000px;}
.y32{bottom:174.327000px;}
.y57{bottom:184.315500px;}
.ybc{bottom:189.450000px;}
.y31{bottom:190.765500px;}
.y56{bottom:200.754000px;}
.ybb{bottom:205.888500px;}
.y30{bottom:207.204000px;}
.y55{bottom:217.192500px;}
.y87{bottom:218.562000px;}
.yba{bottom:222.325500px;}
.y2f{bottom:223.642500px;}
.y54{bottom:233.650500px;}
.y86{bottom:234.999000px;}
.yb9{bottom:238.764000px;}
.y2e{bottom:240.081000px;}
.y8a{bottom:248.529000px;}
.y53{bottom:250.089000px;}
.y85{bottom:251.437500px;}
.yb8{bottom:255.202500px;}
.y2d{bottom:256.519500px;}
.y89{bottom:264.967500px;}
.y52{bottom:266.527500px;}
.y84{bottom:267.876000px;}
.yb7{bottom:271.641000px;}
.y2c{bottom:272.958000px;}
.y88{bottom:281.406000px;}
.y51{bottom:282.966000px;}
.y83{bottom:284.314500px;}
.y2b{bottom:289.395000px;}
.yb6{bottom:293.214000px;}
.y50{bottom:299.403000px;}
.y82{bottom:300.753000px;}
.y2a{bottom:305.833500px;}
.yb5{bottom:309.652500px;}
.y4f{bottom:315.841500px;}
.y81{bottom:317.191500px;}
.y29{bottom:322.272000px;}
.yb4{bottom:326.091000px;}
.y4e{bottom:332.280000px;}
.y80{bottom:333.630000px;}
.y28{bottom:338.710500px;}
.yb3{bottom:342.529500px;}
.y4d{bottom:348.718500px;}
.y7f{bottom:350.068500px;}
.y27{bottom:355.149000px;}
.yb2{bottom:358.966500px;}
.y4c{bottom:365.157000px;}
.y7e{bottom:366.507000px;}
.y26{bottom:371.587500px;}
.yb1{bottom:380.539500px;}
.y4b{bottom:381.595500px;}
.y7d{bottom:382.945500px;}
.y25{bottom:388.026000px;}
.yb0{bottom:396.978000px;}
.y4a{bottom:398.034000px;}
.y24{bottom:404.464500px;}
.y7c{bottom:407.974500px;}
.yaf{bottom:413.416500px;}
.y49{bottom:414.492000px;}
.y23{bottom:420.903000px;}
.yae{bottom:429.855000px;}
.y48{bottom:430.930500px;}
.y22{bottom:441.087000px;}
.y7b{bottom:443.808000px;}
.yad{bottom:446.293500px;}
.y47{bottom:447.369000px;}
.y7a{bottom:460.246500px;}
.yac{bottom:462.732000px;}
.y46{bottom:463.807500px;}
.y79{bottom:476.685000px;}
.yab{bottom:479.170500px;}
.y45{bottom:480.246000px;}
.y21{bottom:480.424500px;}
.y20{bottom:495.369000px;}
.y44{bottom:496.684500px;}
.y78{bottom:499.599000px;}
.yaa{bottom:500.742000px;}
.y1f{bottom:510.312000px;}
.y43{bottom:513.121500px;}
.y77{bottom:516.037500px;}
.ya9{bottom:517.180500px;}
.y1e{bottom:525.256500px;}
.y42{bottom:529.560000px;}
.y76{bottom:532.474500px;}
.ya8{bottom:533.619000px;}
.y1d{bottom:540.201000px;}
.y41{bottom:545.998500px;}
.ya7{bottom:550.057500px;}
.y1c{bottom:555.144000px;}
.y75{bottom:555.388500px;}
.y40{bottom:562.437000px;}
.ya6{bottom:566.496000px;}
.y1b{bottom:570.088500px;}
.y74{bottom:571.827000px;}
.y3f{bottom:583.419000px;}
.y1a{bottom:585.033000px;}
.ya5{bottom:588.069000px;}
.y73{bottom:594.741000px;}
.y19{bottom:599.976000px;}
.ya4{bottom:604.507500px;}
.y3e{bottom:605.895000px;}
.y72{bottom:611.178000px;}
.y18{bottom:614.920500px;}
.ya3{bottom:620.946000px;}
.y17{bottom:629.865000px;}
.y71{bottom:636.333000px;}
.ya2{bottom:637.383000px;}
.y3d{bottom:640.330500px;}
.y16{bottom:644.808000px;}
.y70{bottom:652.771500px;}
.ya1{bottom:653.821500px;}
.y3c{bottom:656.769000px;}
.y15{bottom:659.752500px;}
.y3b{bottom:673.207500px;}
.y14{bottom:674.695500px;}
.ya0{bottom:676.141500px;}
.y6f{bottom:677.802000px;}
.y13{bottom:689.640000px;}
.y3a{bottom:689.646000px;}
.y12{bottom:704.584500px;}
.y39{bottom:706.084500px;}
.y9f{bottom:712.785000px;}
.y6e{bottom:713.635500px;}
.y11{bottom:719.527500px;}
.y38{bottom:722.542500px;}
.y9e{bottom:729.223500px;}
.y6d{bottom:730.074000px;}
.yd1{bottom:731.907000px;}
.y10{bottom:734.472000px;}
.y37{bottom:738.981000px;}
.y9d{bottom:745.662000px;}
.y6c{bottom:746.512500px;}
.yd0{bottom:748.345500px;}
.yf{bottom:749.416500px;}
.y36{bottom:755.419500px;}
.y9c{bottom:762.100500px;}
.y6b{bottom:762.951000px;}
.ye{bottom:764.359500px;}
.ycf{bottom:764.782500px;}
.y35{bottom:771.858000px;}
.y9b{bottom:778.539000px;}
.y6a{bottom:779.389500px;}
.yce{bottom:781.221000px;}
.yd{bottom:788.296500px;}
.y9a{bottom:795.676500px;}
.y69{bottom:795.826500px;}
.ycd{bottom:797.659500px;}
.y99{bottom:812.115000px;}
.yc{bottom:813.624000px;}
.ycc{bottom:814.098000px;}
.y68{bottom:818.740500px;}
.y98{bottom:828.553500px;}
.yb{bottom:830.062500px;}
.ycb{bottom:830.536500px;}
.y67{bottom:835.179000px;}
.y97{bottom:844.990500px;}
.yca{bottom:850.711500px;}
.y66{bottom:851.617500px;}
.ya{bottom:851.923500px;}
.y96{bottom:861.429000px;}
.yc9{bottom:867.150000px;}
.y65{bottom:868.056000px;}
.y9{bottom:868.362000px;}
.y95{bottom:877.867500px;}
.yc8{bottom:883.588500px;}
.y8{bottom:884.800500px;}
.y64{bottom:890.968500px;}
.y94{bottom:894.306000px;}
.yc7{bottom:900.027000px;}
.y7{bottom:901.239000px;}
.y63{bottom:907.407000px;}
.y93{bottom:910.744500px;}
.yc6{bottom:916.464000px;}
.y6{bottom:917.677500px;}
.y62{bottom:923.845500px;}
.y92{bottom:927.183000px;}
.yc5{bottom:932.902500px;}
.y5{bottom:934.114500px;}
.y61{bottom:940.284000px;}
.y4{bottom:948.118500px;}
.y91{bottom:950.202000px;}
.yc4{bottom:953.077500px;}
.y60{bottom:956.722500px;}
.y3{bottom:969.040500px;}
.yc3{bottom:969.516000px;}
.y5f{bottom:973.161000px;}
.yc2{bottom:985.954500px;}
.y90{bottom:986.845500px;}
.y5e{bottom:998.316000px;}
.y2{bottom:1000.762500px;}
.yc1{bottom:1002.393000px;}
.y8f{bottom:1003.284000px;}
.y5d{bottom:1014.754500px;}
.y8e{bottom:1019.722500px;}
.yc0{bottom:1022.566500px;}
.y1{bottom:1024.674000px;}
.y8d{bottom:1036.161000px;}
.ybf{bottom:1039.005000px;}
.y5c{bottom:1039.785000px;}
.y8c{bottom:1052.598000px;}
.ybe{bottom:1055.443500px;}
.y8b{bottom:1069.036500px;}
.y5b{bottom:1075.617000px;}
.ybd{bottom:1075.618500px;}
.y5a{bottom:1092.055500px;}
.h3{height:28.787846px;}
.h4{height:37.013299px;}
.ha{height:40.826735px;}
.h7{height:41.125613px;}
.h5{height:41.364715px;}
.h9{height:41.419613px;}
.hb{height:41.425613px;}
.h8{height:45.294583px;}
.h6{height:49.637990px;}
.h2{height:58.934573px;}
.h1{height:59.565422px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:81.000000px;}
.x13{left:87.724500px;}
.x3{left:90.843000px;}
.xd{left:95.944500px;}
.x1{left:99.856500px;}
.x16{left:113.368500px;}
.x14{left:162.663000px;}
.x8{left:209.520000px;}
.xe{left:211.215000px;}
.x15{left:218.217000px;}
.xc{left:232.072500px;}
.x17{left:287.662500px;}
.x5{left:291.129000px;}
.x9{left:321.420000px;}
.x7{left:325.260000px;}
.x6{left:333.405000px;}
.xa{left:348.816000px;}
.x2{left:352.588500px;}
.xb{left:383.542500px;}
.x4{left:435.204000px;}
.x10{left:479.250000px;}
.x19{left:486.721500px;}
.x11{left:494.194500px;}
.x18{left:511.618500px;}
.x1a{left:596.442000px;}
.x12{left:607.815000px;}
.x1b{left:623.833500px;}
.x1c{left:746.677500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656533pt;}
.ls2{letter-spacing:26.565813pt;}
.ws3{word-spacing:-15.940267pt;}
.ws31{word-spacing:-14.545467pt;}
.ws30{word-spacing:-13.283467pt;}
.wsd{word-spacing:-11.955200pt;}
.ws2{word-spacing:-10.626800pt;}
.ws45{word-spacing:-2.975497pt;}
.ws74{word-spacing:-2.869229pt;}
.ws4c{word-spacing:-2.816095pt;}
.ws80{word-spacing:-2.762961pt;}
.ws60{word-spacing:-2.497292pt;}
.ws5b{word-spacing:-2.337890pt;}
.ws4a{word-spacing:-2.109150pt;}
.ws8f{word-spacing:-2.078557pt;}
.ws4b{word-spacing:-2.072221pt;}
.ws61{word-spacing:-1.912819pt;}
.ws1c{word-spacing:-1.806551pt;}
.ws1a{word-spacing:-1.700284pt;}
.ws28{word-spacing:-1.434614pt;}
.ws24{word-spacing:-1.381481pt;}
.ws52{word-spacing:-1.222079pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws55{word-spacing:-1.009543pt;}
.ws94{word-spacing:-0.956410pt;}
.ws6b{word-spacing:-0.903276pt;}
.ws3e{word-spacing:-0.797008pt;}
.ws15{word-spacing:-0.669491pt;}
.ws40{word-spacing:-0.478205pt;}
.ws76{word-spacing:-0.425071pt;}
.ws4e{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.ws47{word-spacing:-0.212535pt;}
.ws5c{word-spacing:-0.106268pt;}
.ws97{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.009313pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.212535pt;}
.ws65{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.371937pt;}
.ws63{word-spacing:0.411786pt;}
.ws62{word-spacing:0.425071pt;}
.wsb{word-spacing:0.430387pt;}
.ws57{word-spacing:0.478205pt;}
.ws53{word-spacing:0.584473pt;}
.ws5d{word-spacing:0.690740pt;}
.ws5e{word-spacing:0.705119pt;}
.ws38{word-spacing:0.743874pt;}
.ws75{word-spacing:0.797008pt;}
.ws1e{word-spacing:0.850142pt;}
.ws39{word-spacing:1.009543pt;}
.ws13{word-spacing:1.052058pt;}
.ws26{word-spacing:1.115811pt;}
.ws7c{word-spacing:1.159402pt;}
.ws7d{word-spacing:1.168945pt;}
.ws3d{word-spacing:1.222079pt;}
.ws3c{word-spacing:1.249119pt;}
.ws3b{word-spacing:1.275213pt;}
.ws16{word-spacing:1.625907pt;}
.ws6d{word-spacing:1.700284pt;}
.ws2f{word-spacing:1.806551pt;}
.ws2c{word-spacing:1.859685pt;}
.ws6{word-spacing:1.912832pt;}
.ws4{word-spacing:1.960653pt;}
.ws69{word-spacing:1.965953pt;}
.ws34{word-spacing:2.019087pt;}
.ws29{word-spacing:2.072221pt;}
.ws5f{word-spacing:2.125355pt;}
.ws41{word-spacing:2.284756pt;}
.ws10{word-spacing:2.343219pt;}
.ws77{word-spacing:2.550426pt;}
.ws56{word-spacing:2.656693pt;}
.ws3f{word-spacing:2.709827pt;}
.ws27{word-spacing:2.725786pt;}
.ws35{word-spacing:2.816095pt;}
.ws20{word-spacing:2.975497pt;}
.ws67{word-spacing:3.028630pt;}
.ws46{word-spacing:3.188032pt;}
.ws4d{word-spacing:3.294300pt;}
.ws42{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.666237pt;}
.ws32{word-spacing:3.719371pt;}
.ws7b{word-spacing:3.772505pt;}
.ws44{word-spacing:3.825638pt;}
.ws66{word-spacing:3.931906pt;}
.ws14{word-spacing:4.016947pt;}
.ws5a{word-spacing:4.250709pt;}
.wsa{word-spacing:4.256051pt;}
.ws6a{word-spacing:4.410111pt;}
.ws73{word-spacing:4.516379pt;}
.ws25{word-spacing:4.622646pt;}
.ws17{word-spacing:4.686438pt;}
.ws64{word-spacing:4.782048pt;}
.ws51{word-spacing:4.835182pt;}
.ws54{word-spacing:4.941450pt;}
.ws9b{word-spacing:5.100851pt;}
.ws5{word-spacing:5.116826pt;}
.ws70{word-spacing:5.207119pt;}
.ws33{word-spacing:5.260253pt;}
.ws2d{word-spacing:5.313387pt;}
.ws1b{word-spacing:5.579056pt;}
.ws8e{word-spacing:5.632190pt;}
.wse{word-spacing:5.683772pt;}
.wsc{word-spacing:5.690675pt;}
.ws43{word-spacing:5.738458pt;}
.ws36{word-spacing:5.897859pt;}
.ws12{word-spacing:5.929779pt;}
.ws2b{word-spacing:6.057261pt;}
.ws4f{word-spacing:6.163529pt;}
.ws59{word-spacing:6.641733pt;}
.ws79{word-spacing:6.748001pt;}
.ws98{word-spacing:6.854269pt;}
.ws21{word-spacing:7.066804pt;}
.ws23{word-spacing:7.119938pt;}
.ws19{word-spacing:7.279340pt;}
.ws1f{word-spacing:7.385607pt;}
.ws7{word-spacing:7.412224pt;}
.ws9{word-spacing:7.651328pt;}
.ws71{word-spacing:7.704411pt;}
.ws11{word-spacing:7.890432pt;}
.ws58{word-spacing:8.076348pt;}
.ws50{word-spacing:8.129482pt;}
.ws6c{word-spacing:8.182615pt;}
.ws18{word-spacing:8.660820pt;}
.ws9a{word-spacing:8.873356pt;}
.ws6f{word-spacing:8.979623pt;}
.ws87{word-spacing:9.139025pt;}
.ws6e{word-spacing:9.192159pt;}
.ws68{word-spacing:9.351561pt;}
.ws99{word-spacing:9.457828pt;}
.ws48{word-spacing:9.564096pt;}
.ws49{word-spacing:9.579786pt;}
.wsf{word-spacing:9.659802pt;}
.ws7a{word-spacing:9.670364pt;}
.ws7e{word-spacing:9.829765pt;}
.ws8{word-spacing:10.138010pt;}
.ws89{word-spacing:10.626773pt;}
.ws72{word-spacing:10.998710pt;}
.ws1d{word-spacing:12.327057pt;}
.ws96{word-spacing:12.539593pt;}
.ws78{word-spacing:12.645860pt;}
.ws95{word-spacing:12.805262pt;}
.ws81{word-spacing:13.336601pt;}
.ws82{word-spacing:13.708538pt;}
.ws86{word-spacing:14.611813pt;}
.ws7f{word-spacing:16.258963pt;}
.ws93{word-spacing:16.949703pt;}
.ws92{word-spacing:17.002837pt;}
.ws83{word-spacing:17.162239pt;}
.ws84{word-spacing:17.215373pt;}
.ws8a{word-spacing:17.321641pt;}
.ws88{word-spacing:21.944287pt;}
.ws91{word-spacing:22.263090pt;}
.ws90{word-spacing:22.953830pt;}
.ws85{word-spacing:23.803972pt;}
.ws8c{word-spacing:36.237297pt;}
.ws8b{word-spacing:60.147537pt;}
.ws8d{word-spacing:62.697963pt;}
._0{margin-left:-7.039202pt;}
._3{margin-left:-5.968019pt;}
._5{margin-left:-4.250709pt;}
._1{margin-left:-2.677957pt;}
._2{margin-left:-1.377235pt;}
._4{width:2.653733pt;}
._c{width:3.597141pt;}
._d{width:4.752400pt;}
._7{width:14.203761pt;}
._6{width:15.293088pt;}
._9{width:19.021924pt;}
._8{width:20.509673pt;}
._b{width:22.050555pt;}
._a{width:26.566933pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:120.000000pt;}
.y33{bottom:133.284000pt;}
.y59{bottom:134.612000pt;}
.y58{bottom:149.224000pt;}
.y32{bottom:154.957333pt;}
.y57{bottom:163.836000pt;}
.ybc{bottom:168.400000pt;}
.y31{bottom:169.569333pt;}
.y56{bottom:178.448000pt;}
.ybb{bottom:183.012000pt;}
.y30{bottom:184.181333pt;}
.y55{bottom:193.060000pt;}
.y87{bottom:194.277333pt;}
.yba{bottom:197.622667pt;}
.y2f{bottom:198.793333pt;}
.y54{bottom:207.689333pt;}
.y86{bottom:208.888000pt;}
.yb9{bottom:212.234667pt;}
.y2e{bottom:213.405333pt;}
.y8a{bottom:220.914667pt;}
.y53{bottom:222.301333pt;}
.y85{bottom:223.500000pt;}
.yb8{bottom:226.846667pt;}
.y2d{bottom:228.017333pt;}
.y89{bottom:235.526667pt;}
.y52{bottom:236.913333pt;}
.y84{bottom:238.112000pt;}
.yb7{bottom:241.458667pt;}
.y2c{bottom:242.629333pt;}
.y88{bottom:250.138667pt;}
.y51{bottom:251.525333pt;}
.y83{bottom:252.724000pt;}
.y2b{bottom:257.240000pt;}
.yb6{bottom:260.634667pt;}
.y50{bottom:266.136000pt;}
.y82{bottom:267.336000pt;}
.y2a{bottom:271.852000pt;}
.yb5{bottom:275.246667pt;}
.y4f{bottom:280.748000pt;}
.y81{bottom:281.948000pt;}
.y29{bottom:286.464000pt;}
.yb4{bottom:289.858667pt;}
.y4e{bottom:295.360000pt;}
.y80{bottom:296.560000pt;}
.y28{bottom:301.076000pt;}
.yb3{bottom:304.470667pt;}
.y4d{bottom:309.972000pt;}
.y7f{bottom:311.172000pt;}
.y27{bottom:315.688000pt;}
.yb2{bottom:319.081333pt;}
.y4c{bottom:324.584000pt;}
.y7e{bottom:325.784000pt;}
.y26{bottom:330.300000pt;}
.yb1{bottom:338.257333pt;}
.y4b{bottom:339.196000pt;}
.y7d{bottom:340.396000pt;}
.y25{bottom:344.912000pt;}
.yb0{bottom:352.869333pt;}
.y4a{bottom:353.808000pt;}
.y24{bottom:359.524000pt;}
.y7c{bottom:362.644000pt;}
.yaf{bottom:367.481333pt;}
.y49{bottom:368.437333pt;}
.y23{bottom:374.136000pt;}
.yae{bottom:382.093333pt;}
.y48{bottom:383.049333pt;}
.y22{bottom:392.077333pt;}
.y7b{bottom:394.496000pt;}
.yad{bottom:396.705333pt;}
.y47{bottom:397.661333pt;}
.y7a{bottom:409.108000pt;}
.yac{bottom:411.317333pt;}
.y46{bottom:412.273333pt;}
.y79{bottom:423.720000pt;}
.yab{bottom:425.929333pt;}
.y45{bottom:426.885333pt;}
.y21{bottom:427.044000pt;}
.y20{bottom:440.328000pt;}
.y44{bottom:441.497333pt;}
.y78{bottom:444.088000pt;}
.yaa{bottom:445.104000pt;}
.y1f{bottom:453.610667pt;}
.y43{bottom:456.108000pt;}
.y77{bottom:458.700000pt;}
.ya9{bottom:459.716000pt;}
.y1e{bottom:466.894667pt;}
.y42{bottom:470.720000pt;}
.y76{bottom:473.310667pt;}
.ya8{bottom:474.328000pt;}
.y1d{bottom:480.178667pt;}
.y41{bottom:485.332000pt;}
.ya7{bottom:488.940000pt;}
.y1c{bottom:493.461333pt;}
.y75{bottom:493.678667pt;}
.y40{bottom:499.944000pt;}
.ya6{bottom:503.552000pt;}
.y1b{bottom:506.745333pt;}
.y74{bottom:508.290667pt;}
.y3f{bottom:518.594667pt;}
.y1a{bottom:520.029333pt;}
.ya5{bottom:522.728000pt;}
.y73{bottom:528.658667pt;}
.y19{bottom:533.312000pt;}
.ya4{bottom:537.340000pt;}
.y3e{bottom:538.573333pt;}
.y72{bottom:543.269333pt;}
.y18{bottom:546.596000pt;}
.ya3{bottom:551.952000pt;}
.y17{bottom:559.880000pt;}
.y71{bottom:565.629333pt;}
.ya2{bottom:566.562667pt;}
.y3d{bottom:569.182667pt;}
.y16{bottom:573.162667pt;}
.y70{bottom:580.241333pt;}
.ya1{bottom:581.174667pt;}
.y3c{bottom:583.794667pt;}
.y15{bottom:586.446667pt;}
.y3b{bottom:598.406667pt;}
.y14{bottom:599.729333pt;}
.ya0{bottom:601.014667pt;}
.y6f{bottom:602.490667pt;}
.y13{bottom:613.013333pt;}
.y3a{bottom:613.018667pt;}
.y12{bottom:626.297333pt;}
.y39{bottom:627.630667pt;}
.y9f{bottom:633.586667pt;}
.y6e{bottom:634.342667pt;}
.y11{bottom:639.580000pt;}
.y38{bottom:642.260000pt;}
.y9e{bottom:648.198667pt;}
.y6d{bottom:648.954667pt;}
.yd1{bottom:650.584000pt;}
.y10{bottom:652.864000pt;}
.y37{bottom:656.872000pt;}
.y9d{bottom:662.810667pt;}
.y6c{bottom:663.566667pt;}
.yd0{bottom:665.196000pt;}
.yf{bottom:666.148000pt;}
.y36{bottom:671.484000pt;}
.y9c{bottom:677.422667pt;}
.y6b{bottom:678.178667pt;}
.ye{bottom:679.430667pt;}
.ycf{bottom:679.806667pt;}
.y35{bottom:686.096000pt;}
.y9b{bottom:692.034667pt;}
.y6a{bottom:692.790667pt;}
.yce{bottom:694.418667pt;}
.yd{bottom:700.708000pt;}
.y9a{bottom:707.268000pt;}
.y69{bottom:707.401333pt;}
.ycd{bottom:709.030667pt;}
.y99{bottom:721.880000pt;}
.yc{bottom:723.221333pt;}
.ycc{bottom:723.642667pt;}
.y68{bottom:727.769333pt;}
.y98{bottom:736.492000pt;}
.yb{bottom:737.833333pt;}
.ycb{bottom:738.254667pt;}
.y67{bottom:742.381333pt;}
.y97{bottom:751.102667pt;}
.yca{bottom:756.188000pt;}
.y66{bottom:756.993333pt;}
.ya{bottom:757.265333pt;}
.y96{bottom:765.714667pt;}
.yc9{bottom:770.800000pt;}
.y65{bottom:771.605333pt;}
.y9{bottom:771.877333pt;}
.y95{bottom:780.326667pt;}
.yc8{bottom:785.412000pt;}
.y8{bottom:786.489333pt;}
.y64{bottom:791.972000pt;}
.y94{bottom:794.938667pt;}
.yc7{bottom:800.024000pt;}
.y7{bottom:801.101333pt;}
.y63{bottom:806.584000pt;}
.y93{bottom:809.550667pt;}
.yc6{bottom:814.634667pt;}
.y6{bottom:815.713333pt;}
.y62{bottom:821.196000pt;}
.y92{bottom:824.162667pt;}
.yc5{bottom:829.246667pt;}
.y5{bottom:830.324000pt;}
.y61{bottom:835.808000pt;}
.y4{bottom:842.772000pt;}
.y91{bottom:844.624000pt;}
.yc4{bottom:847.180000pt;}
.y60{bottom:850.420000pt;}
.y3{bottom:861.369333pt;}
.yc3{bottom:861.792000pt;}
.y5f{bottom:865.032000pt;}
.yc2{bottom:876.404000pt;}
.y90{bottom:877.196000pt;}
.y5e{bottom:887.392000pt;}
.y2{bottom:889.566667pt;}
.yc1{bottom:891.016000pt;}
.y8f{bottom:891.808000pt;}
.y5d{bottom:902.004000pt;}
.y8e{bottom:906.420000pt;}
.yc0{bottom:908.948000pt;}
.y1{bottom:910.821333pt;}
.y8d{bottom:921.032000pt;}
.ybf{bottom:923.560000pt;}
.y5c{bottom:924.253333pt;}
.y8c{bottom:935.642667pt;}
.ybe{bottom:938.172000pt;}
.y8b{bottom:950.254667pt;}
.y5b{bottom:956.104000pt;}
.ybd{bottom:956.105333pt;}
.y5a{bottom:970.716000pt;}
.h3{height:25.589197pt;}
.h4{height:32.900710pt;}
.ha{height:36.290431pt;}
.h7{height:36.556100pt;}
.h5{height:36.768636pt;}
.h9{height:36.817434pt;}
.hb{height:36.822767pt;}
.h8{height:40.261852pt;}
.h6{height:44.122658pt;}
.h2{height:52.386287pt;}
.h1{height:52.947042pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:72.000000pt;}
.x13{left:77.977333pt;}
.x3{left:80.749333pt;}
.xd{left:85.284000pt;}
.x1{left:88.761333pt;}
.x16{left:100.772000pt;}
.x14{left:144.589333pt;}
.x8{left:186.240000pt;}
.xe{left:187.746667pt;}
.x15{left:193.970667pt;}
.xc{left:206.286667pt;}
.x17{left:255.700000pt;}
.x5{left:258.781333pt;}
.x9{left:285.706667pt;}
.x7{left:289.120000pt;}
.x6{left:296.360000pt;}
.xa{left:310.058667pt;}
.x2{left:313.412000pt;}
.xb{left:340.926667pt;}
.x4{left:386.848000pt;}
.x10{left:426.000000pt;}
.x19{left:432.641333pt;}
.x11{left:439.284000pt;}
.x18{left:454.772000pt;}
.x1a{left:530.170667pt;}
.x12{left:540.280000pt;}
.x1b{left:554.518667pt;}
.x1c{left:663.713333pt;}
}




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