
    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_705ff3faa89f853fb20a98af.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ced5961d3f4664160b99ffb6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_501f65b21d40027cb4f1039c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.299000;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_773ce4b71bed5f2528003dae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0f2b121f6212f378fcc5a1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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);}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004193px;}
.ls1{letter-spacing:2.987100px;}
.ls3{letter-spacing:2.989200px;}
.ls2{letter-spacing:7.900193px;}
.ls6{letter-spacing:14.948100px;}
.ls5{letter-spacing:20.129100px;}
.ls7{letter-spacing:20.495100px;}
.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;}
}
.ws7a{word-spacing:-14.943900px;}
.ws2{word-spacing:-4.983550px;}
.ws7c{word-spacing:-3.586536px;}
.ws24{word-spacing:-3.287658px;}
.ws26{word-spacing:-2.869229px;}
.ws74{word-spacing:-2.749678px;}
.ws30{word-spacing:-2.570351px;}
.ws35{word-spacing:-2.510575px;}
.ws58{word-spacing:-2.450800px;}
.ws8d{word-spacing:-2.151927px;}
.ws73{word-spacing:-2.151922px;}
.ws2b{word-spacing:-2.092146px;}
.ws87{word-spacing:-1.960645px;}
.ws40{word-spacing:-1.733492px;}
.ws19{word-spacing:-1.613941px;}
.ws8c{word-spacing:-1.386797px;}
.ws69{word-spacing:-1.338977px;}
.ws38{word-spacing:-1.255288px;}
.ws77{word-spacing:-1.195512px;}
.ws3e{word-spacing:-1.135736px;}
.ws1f{word-spacing:-1.016185px;}
.ws1a{word-spacing:-0.836858px;}
.ws76{word-spacing:-0.717307px;}
.ws79{word-spacing:-0.657532px;}
.ws1d{word-spacing:-0.597756px;}
.ws61{word-spacing:-0.478205px;}
.ws3f{word-spacing:-0.418429px;}
.ws2e{word-spacing:-0.298878px;}
.ws45{word-spacing:-0.191282px;}
.ws55{word-spacing:-0.179327px;}
.ws37{word-spacing:-0.059776px;}
.ws68{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.044234px;}
.ws7f{word-spacing:-0.005819px;}
.ws6a{word-spacing:-0.004573px;}
.ws8f{word-spacing:-0.001466px;}
.ws56{word-spacing:-0.000600px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.095641px;}
.ws5a{word-spacing:0.239102px;}
.ws23{word-spacing:0.358654px;}
.ws7e{word-spacing:0.430385px;}
.ws90{word-spacing:0.478206px;}
.ws17{word-spacing:0.597756px;}
.ws18{word-spacing:0.717307px;}
.ws8e{word-spacing:0.765130px;}
.ws4e{word-spacing:0.777083px;}
.wsf{word-spacing:0.860771px;}
.ws31{word-spacing:0.896634px;}
.ws72{word-spacing:1.075961px;}
.ws60{word-spacing:1.135736px;}
.ws5e{word-spacing:1.195512px;}
.ws2f{word-spacing:1.255288px;}
.ws33{word-spacing:1.374839px;}
.ws2d{word-spacing:1.434614px;}
.ws84{word-spacing:1.434618px;}
.ws88{word-spacing:1.482439px;}
.ws25{word-spacing:1.554166px;}
.ws5b{word-spacing:1.613941px;}
.ws92{word-spacing:1.673721px;}
.ws5c{word-spacing:1.733492px;}
.ws9{word-spacing:1.865003px;}
.ws4a{word-spacing:1.912819px;}
.wsb{word-spacing:2.008465px;}
.ws1c{word-spacing:2.032370px;}
.ws63{word-spacing:2.092146px;}
.ws44{word-spacing:2.104106px;}
.ws41{word-spacing:2.151922px;}
.ws8{word-spacing:2.151927px;}
.ws43{word-spacing:2.174134px;}
.ws32{word-spacing:2.211697px;}
.ws3d{word-spacing:2.271473px;}
.ws91{word-spacing:2.295389px;}
.ws28{word-spacing:2.450800px;}
.ws20{word-spacing:2.510575px;}
.ws2c{word-spacing:2.570351px;}
.ws22{word-spacing:2.689902px;}
.ws21{word-spacing:2.809453px;}
.ws7{word-spacing:2.869236px;}
.ws66{word-spacing:3.048556px;}
.ws7d{word-spacing:3.060518px;}
.ws15{word-spacing:3.168107px;}
.ws8b{word-spacing:3.251801px;}
.wse{word-spacing:3.443083px;}
.ws5d{word-spacing:3.466985px;}
.ws89{word-spacing:3.490904px;}
.wsa{word-spacing:3.586545px;}
.ws52{word-spacing:3.706087px;}
.ws6{word-spacing:3.921289px;}
.ws29{word-spacing:4.064741px;}
.ws16{word-spacing:4.303843px;}
.ws70{word-spacing:4.363619px;}
.ws78{word-spacing:4.662497px;}
.ws75{word-spacing:4.722272px;}
.ws94{word-spacing:4.734239px;}
.ws85{word-spacing:4.782060px;}
.ws4d{word-spacing:4.841824px;}
.ws93{word-spacing:4.877701px;}
.ws1e{word-spacing:4.961375px;}
.ws4c{word-spacing:5.021150px;}
.ws1b{word-spacing:5.080926px;}
.ws95{word-spacing:5.212445px;}
.ws10{word-spacing:5.260266px;}
.ws65{word-spacing:5.320028px;}
.ws46{word-spacing:5.439580px;}
.ws48{word-spacing:5.445025px;}
.ws80{word-spacing:5.499369px;}
.ws14{word-spacing:5.559131px;}
.ws7b{word-spacing:5.618906px;}
.ws83{word-spacing:5.786293px;}
.ws6e{word-spacing:5.787025px;}
.ws53{word-spacing:5.858009px;}
.ws8a{word-spacing:5.929754px;}
.ws2a{word-spacing:6.216662px;}
.ws59{word-spacing:6.276438px;}
.ws81{word-spacing:6.407960px;}
.ws5f{word-spacing:6.874194px;}
.ws27{word-spacing:7.053521px;}
.ws51{word-spacing:7.173072px;}
.wsd{word-spacing:7.699117px;}
.ws86{word-spacing:7.842578px;}
.ws64{word-spacing:8.009930px;}
.ws39{word-spacing:8.129482px;}
.ws0{word-spacing:9.038093px;}
.ws49{word-spacing:9.444545px;}
.ws3b{word-spacing:10.281403px;}
.ws12{word-spacing:11.859509px;}
.ws6b{word-spacing:11.907329px;}
.ws82{word-spacing:12.098612px;}
.ws36{word-spacing:12.373549px;}
.ws6c{word-spacing:13.628837px;}
.ws62{word-spacing:14.417024px;}
.ws50{word-spacing:14.879641px;}
.ws4{word-spacing:14.884124px;}
.ws67{word-spacing:15.063489px;}
.ws4f{word-spacing:15.687989px;}
.ws5{word-spacing:15.850577px;}
.ws57{word-spacing:15.956658px;}
.ws71{word-spacing:16.079636px;}
.ws34{word-spacing:16.285675px;}
.ws4b{word-spacing:16.811039px;}
.ws42{word-spacing:17.055989px;}
.ws6d{word-spacing:17.155597px;}
.ws3c{word-spacing:17.170082px;}
.ws47{word-spacing:20.335733px;}
.ws6f{word-spacing:20.682358px;}
.ws54{word-spacing:20.742133px;}
.ws3a{word-spacing:22.996830px;}
.ws11{word-spacing:23.760091px;}
.ws13{word-spacing:29.828024px;}
._3{margin-left:-8.105856px;}
._19{margin-left:-6.234606px;}
._1{margin-left:-4.959000px;}
._5{margin-left:-3.825648px;}
._6{margin-left:-2.346795px;}
._0{margin-left:-1.239750px;}
._8{width:1.434623px;}
._c{width:2.917057px;}
._1b{width:3.981308px;}
._4{width:9.965123px;}
._7{width:12.313774px;}
._b{width:13.524832px;}
._2{width:14.943900px;}
._a{width:16.752715px;}
._11{width:18.450460px;}
._e{width:19.725948px;}
._16{width:21.901835px;}
._d{width:23.049640px;}
._1a{width:24.292865px;}
._10{width:26.588254px;}
._18{width:27.783769px;}
._17{width:28.784416px;}
._9{width:29.887800px;}
._14{width:33.044035px;}
._12{width:35.773394px;}
._15{width:42.273410px;}
._f{width:47.820600px;}
._13{width:56.045743px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:44.233800px;}
.fs0{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:186.127500px;}
.y51{bottom:186.129000px;}
.y26{bottom:190.468500px;}
.y50{bottom:201.072000px;}
.y99{bottom:204.036000px;}
.y7a{bottom:205.411500px;}
.y79{bottom:216.010500px;}
.y25{bottom:218.806500px;}
.y4f{bottom:220.356000px;}
.y98{bottom:221.944500px;}
.ycb{bottom:226.477500px;}
.y78{bottom:230.953500px;}
.y24{bottom:236.827500px;}
.y97{bottom:239.853000px;}
.yca{bottom:241.420500px;}
.y4e{bottom:247.638000px;}
.y77{bottom:250.237500px;}
.y23{bottom:254.848500px;}
.yc9{bottom:256.365000px;}
.y96{bottom:257.761500px;}
.y4d{bottom:265.476000px;}
.yc8{bottom:271.308000px;}
.y22{bottom:272.869500px;}
.y95{bottom:275.670000px;}
.y76{bottom:277.521000px;}
.yc7{bottom:286.252500px;}
.y21{bottom:290.889000px;}
.y94{bottom:293.578500px;}
.y75{bottom:295.395000px;}
.y4c{bottom:298.381500px;}
.yc6{bottom:301.197000px;}
.y20{bottom:308.910000px;}
.y93{bottom:311.487000px;}
.y74{bottom:313.269000px;}
.yc5{bottom:316.140000px;}
.y1f{bottom:326.931000px;}
.y92{bottom:329.395500px;}
.yc4{bottom:331.084500px;}
.y73{bottom:331.143000px;}
.y4b{bottom:331.285500px;}
.y1e{bottom:344.952000px;}
.yc3{bottom:346.029000px;}
.y91{bottom:347.304000px;}
.y72{bottom:349.017000px;}
.y4a{bottom:349.123500px;}
.yc2{bottom:360.972000px;}
.y1d{bottom:362.973000px;}
.y90{bottom:365.212500px;}
.y71{bottom:366.891000px;}
.y49{bottom:366.960000px;}
.yc1{bottom:375.916500px;}
.y1c{bottom:380.992500px;}
.y8f{bottom:383.121000px;}
.y70{bottom:384.765000px;}
.y48{bottom:384.798000px;}
.yc0{bottom:390.861000px;}
.y1b{bottom:399.013500px;}
.y8e{bottom:401.029500px;}
.y47{bottom:402.634500px;}
.y6f{bottom:402.640500px;}
.ybf{bottom:405.804000px;}
.y1a{bottom:417.034500px;}
.y46{bottom:420.472500px;}
.y6e{bottom:420.514500px;}
.ybe{bottom:420.748500px;}
.y19{bottom:435.055500px;}
.ybd{bottom:435.693000px;}
.y8d{bottom:436.143000px;}
.y45{bottom:438.309000px;}
.y6d{bottom:438.388500px;}
.ybc{bottom:450.636000px;}
.y18{bottom:453.076500px;}
.y44{bottom:456.147000px;}
.y6c{bottom:456.262500px;}
.ybb{bottom:465.580500px;}
.y17{bottom:471.096000px;}
.y43{bottom:473.983500px;}
.y6b{bottom:474.136500px;}
.yba{bottom:480.525000px;}
.y16{bottom:489.117000px;}
.y8c{bottom:489.189000px;}
.y42{bottom:491.821500px;}
.y6a{bottom:492.010500px;}
.yb9{bottom:495.468000px;}
.y8b{bottom:507.097500px;}
.y41{bottom:509.658000px;}
.y69{bottom:509.884500px;}
.yb8{bottom:510.412500px;}
.y8a{bottom:525.006000px;}
.yb7{bottom:525.355500px;}
.y15{bottom:525.598500px;}
.y40{bottom:527.496000px;}
.y68{bottom:527.758500px;}
.yb6{bottom:540.300000px;}
.y89{bottom:542.914500px;}
.y67{bottom:545.632500px;}
.yb5{bottom:555.244500px;}
.y3f{bottom:560.401500px;}
.y88{bottom:560.823000px;}
.yb4{bottom:570.187500px;}
.y87{bottom:578.731500px;}
.y66{bottom:579.682500px;}
.yb3{bottom:585.132000px;}
.y14{bottom:593.865000px;}
.y86{bottom:596.640000px;}
.yb2{bottom:600.076500px;}
.y13{bottom:608.809500px;}
.y3e{bottom:611.239500px;}
.y85{bottom:614.548500px;}
.yb1{bottom:615.019500px;}
.y3d{bottom:629.076000px;}
.yb0{bottom:629.964000px;}
.y12{bottom:630.010500px;}
.y65{bottom:631.663500px;}
.y84{bottom:632.457000px;}
.yaf{bottom:644.908500px;}
.y11{bottom:644.955000px;}
.y3c{bottom:646.914000px;}
.y64{bottom:649.537500px;}
.y83{bottom:650.365500px;}
.yae{bottom:659.851500px;}
.y10{bottom:659.899500px;}
.y3b{bottom:664.750500px;}
.y63{bottom:667.411500px;}
.y82{bottom:668.274000px;}
.yad{bottom:674.796000px;}
.yf{bottom:674.842500px;}
.y3a{bottom:682.588500px;}
.y62{bottom:685.285500px;}
.y81{bottom:686.182500px;}
.yac{bottom:689.740500px;}
.ye{bottom:689.787000px;}
.y39{bottom:700.425000px;}
.y61{bottom:703.159500px;}
.y80{bottom:704.091000px;}
.yab{bottom:704.683500px;}
.yd{bottom:704.731500px;}
.y38{bottom:718.263000px;}
.yaa{bottom:719.628000px;}
.yc{bottom:719.674500px;}
.y60{bottom:721.033500px;}
.y7f{bottom:721.999500px;}
.ya9{bottom:734.571000px;}
.yb{bottom:734.619000px;}
.y37{bottom:736.099500px;}
.y5f{bottom:738.909000px;}
.y7e{bottom:739.908000px;}
.ya8{bottom:749.515500px;}
.ya{bottom:749.563500px;}
.y36{bottom:753.937500px;}
.y5e{bottom:756.783000px;}
.y7d{bottom:757.816500px;}
.ya7{bottom:764.460000px;}
.y9{bottom:764.506500px;}
.y35{bottom:771.774000px;}
.y5d{bottom:774.657000px;}
.y7c{bottom:775.725000px;}
.ya6{bottom:779.403000px;}
.y8{bottom:779.451000px;}
.y34{bottom:789.612000px;}
.y5c{bottom:792.531000px;}
.ya5{bottom:794.347500px;}
.y7{bottom:794.395500px;}
.y33{bottom:807.448500px;}
.ya4{bottom:809.292000px;}
.y6{bottom:809.338500px;}
.y7b{bottom:810.220500px;}
.y5b{bottom:810.405000px;}
.ya3{bottom:824.235000px;}
.y32{bottom:825.286500px;}
.y5a{bottom:828.279000px;}
.ya2{bottom:839.179500px;}
.y31{bottom:843.123000px;}
.ya1{bottom:854.124000px;}
.y5{bottom:854.479500px;}
.y30{bottom:860.961000px;}
.y59{bottom:862.327500px;}
.ya0{bottom:869.067000px;}
.y4{bottom:870.240000px;}
.y2f{bottom:878.797500px;}
.y9f{bottom:884.011500px;}
.y58{bottom:896.377500px;}
.y2e{bottom:896.635500px;}
.y9e{bottom:898.956000px;}
.y57{bottom:914.251500px;}
.y2d{bottom:914.472000px;}
.y3{bottom:927.133500px;}
.y9d{bottom:931.831500px;}
.y56{bottom:932.125500px;}
.y2c{bottom:932.310000px;}
.y55{bottom:949.999500px;}
.y2b{bottom:950.146500px;}
.y2{bottom:964.492500px;}
.y54{bottom:967.873500px;}
.y2a{bottom:967.984500px;}
.y9c{bottom:985.630500px;}
.y53{bottom:985.747500px;}
.y29{bottom:985.821000px;}
.y9b{bottom:1003.563000px;}
.y52{bottom:1003.621500px;}
.y28{bottom:1003.659000px;}
.y27{bottom:1021.495500px;}
.y1{bottom:1058.856000px;}
.ha{height:24.675533px;}
.h5{height:30.432854px;}
.h2{height:32.661470px;}
.h7{height:32.900573px;}
.h6{height:33.091855px;}
.he{height:33.140573px;}
.hd{height:33.187496px;}
.hc{height:40.826735px;}
.h9{height:41.125613px;}
.h8{height:41.364715px;}
.hb{height:52.128854px;}
.h4{height:52.134854px;}
.h3{height:85.294800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:182.835000px;}
.xb{left:188.812500px;}
.x9{left:194.790000px;}
.x2{left:202.657500px;}
.x8{left:209.733000px;}
.xc{left:214.707000px;}
.xa{left:224.172000px;}
.x6{left:248.587500px;}
.x7{left:260.542500px;}
.x3{left:277.086000px;}
.x4{left:306.358500px;}
.x5{left:349.405500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003727pt;}
.ls1{letter-spacing:2.655200pt;}
.ls3{letter-spacing:2.657067pt;}
.ls2{letter-spacing:7.022394pt;}
.ls6{letter-spacing:13.287200pt;}
.ls5{letter-spacing:17.892533pt;}
.ls7{letter-spacing:18.217867pt;}
.ws7a{word-spacing:-13.283467pt;}
.ws2{word-spacing:-4.429822pt;}
.ws7c{word-spacing:-3.188032pt;}
.ws24{word-spacing:-2.922363pt;}
.ws26{word-spacing:-2.550426pt;}
.ws74{word-spacing:-2.444158pt;}
.ws30{word-spacing:-2.284756pt;}
.ws35{word-spacing:-2.231622pt;}
.ws58{word-spacing:-2.178489pt;}
.ws8d{word-spacing:-1.912824pt;}
.ws73{word-spacing:-1.912819pt;}
.ws2b{word-spacing:-1.859685pt;}
.ws87{word-spacing:-1.742795pt;}
.ws40{word-spacing:-1.540882pt;}
.ws19{word-spacing:-1.434614pt;}
.ws8c{word-spacing:-1.232709pt;}
.ws69{word-spacing:-1.190202pt;}
.ws38{word-spacing:-1.115811pt;}
.ws77{word-spacing:-1.062677pt;}
.ws3e{word-spacing:-1.009543pt;}
.ws1f{word-spacing:-0.903276pt;}
.ws1a{word-spacing:-0.743874pt;}
.ws76{word-spacing:-0.637606pt;}
.ws79{word-spacing:-0.584473pt;}
.ws1d{word-spacing:-0.531339pt;}
.ws61{word-spacing:-0.425071pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws45{word-spacing:-0.170029pt;}
.ws55{word-spacing:-0.159402pt;}
.ws37{word-spacing:-0.053134pt;}
.ws68{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.039319pt;}
.ws7f{word-spacing:-0.005173pt;}
.ws6a{word-spacing:-0.004065pt;}
.ws8f{word-spacing:-0.001303pt;}
.ws56{word-spacing:-0.000533pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.085014pt;}
.ws5a{word-spacing:0.212535pt;}
.ws23{word-spacing:0.318803pt;}
.ws7e{word-spacing:0.382565pt;}
.ws90{word-spacing:0.425072pt;}
.ws17{word-spacing:0.531339pt;}
.ws18{word-spacing:0.637606pt;}
.ws8e{word-spacing:0.680115pt;}
.ws4e{word-spacing:0.690740pt;}
.wsf{word-spacing:0.765130pt;}
.ws31{word-spacing:0.797008pt;}
.ws72{word-spacing:0.956410pt;}
.ws60{word-spacing:1.009543pt;}
.ws5e{word-spacing:1.062677pt;}
.ws2f{word-spacing:1.115811pt;}
.ws33{word-spacing:1.222079pt;}
.ws2d{word-spacing:1.275213pt;}
.ws84{word-spacing:1.275216pt;}
.ws88{word-spacing:1.317723pt;}
.ws25{word-spacing:1.381481pt;}
.ws5b{word-spacing:1.434614pt;}
.ws92{word-spacing:1.487752pt;}
.ws5c{word-spacing:1.540882pt;}
.ws9{word-spacing:1.657781pt;}
.ws4a{word-spacing:1.700284pt;}
.wsb{word-spacing:1.785302pt;}
.ws1c{word-spacing:1.806551pt;}
.ws63{word-spacing:1.859685pt;}
.ws44{word-spacing:1.870317pt;}
.ws41{word-spacing:1.912819pt;}
.ws8{word-spacing:1.912824pt;}
.ws43{word-spacing:1.932563pt;}
.ws32{word-spacing:1.965953pt;}
.ws3d{word-spacing:2.019087pt;}
.ws91{word-spacing:2.040346pt;}
.ws28{word-spacing:2.178489pt;}
.ws20{word-spacing:2.231622pt;}
.ws2c{word-spacing:2.284756pt;}
.ws22{word-spacing:2.391024pt;}
.ws21{word-spacing:2.497292pt;}
.ws7{word-spacing:2.550432pt;}
.ws66{word-spacing:2.709827pt;}
.ws7d{word-spacing:2.720461pt;}
.ws15{word-spacing:2.816095pt;}
.ws8b{word-spacing:2.890490pt;}
.wse{word-spacing:3.060518pt;}
.ws5d{word-spacing:3.081764pt;}
.ws89{word-spacing:3.103026pt;}
.wsa{word-spacing:3.188040pt;}
.ws52{word-spacing:3.294300pt;}
.ws6{word-spacing:3.485590pt;}
.ws29{word-spacing:3.613103pt;}
.ws16{word-spacing:3.825638pt;}
.ws70{word-spacing:3.878772pt;}
.ws78{word-spacing:4.144442pt;}
.ws75{word-spacing:4.197575pt;}
.ws94{word-spacing:4.208213pt;}
.ws85{word-spacing:4.250720pt;}
.ws4d{word-spacing:4.303843pt;}
.ws93{word-spacing:4.335734pt;}
.ws1e{word-spacing:4.410111pt;}
.ws4c{word-spacing:4.463245pt;}
.ws1b{word-spacing:4.516379pt;}
.ws95{word-spacing:4.633285pt;}
.ws10{word-spacing:4.675792pt;}
.ws65{word-spacing:4.728914pt;}
.ws46{word-spacing:4.835182pt;}
.ws48{word-spacing:4.840022pt;}
.ws80{word-spacing:4.888328pt;}
.ws14{word-spacing:4.941450pt;}
.ws7b{word-spacing:4.994583pt;}
.ws83{word-spacing:5.143371pt;}
.ws6e{word-spacing:5.144022pt;}
.ws53{word-spacing:5.207119pt;}
.ws8a{word-spacing:5.270893pt;}
.ws2a{word-spacing:5.525922pt;}
.ws59{word-spacing:5.579056pt;}
.ws81{word-spacing:5.695965pt;}
.ws5f{word-spacing:6.110395pt;}
.ws27{word-spacing:6.269796pt;}
.ws51{word-spacing:6.376064pt;}
.wsd{word-spacing:6.843659pt;}
.ws86{word-spacing:6.971181pt;}
.ws64{word-spacing:7.119938pt;}
.ws39{word-spacing:7.226206pt;}
.ws0{word-spacing:8.033861pt;}
.ws49{word-spacing:8.395151pt;}
.ws3b{word-spacing:9.139025pt;}
.ws12{word-spacing:10.541786pt;}
.ws6b{word-spacing:10.584293pt;}
.ws82{word-spacing:10.754322pt;}
.ws36{word-spacing:10.998710pt;}
.ws6c{word-spacing:12.114522pt;}
.ws62{word-spacing:12.815133pt;}
.ws50{word-spacing:13.226348pt;}
.ws4{word-spacing:13.230333pt;}
.ws67{word-spacing:13.389768pt;}
.ws4f{word-spacing:13.944879pt;}
.ws5{word-spacing:14.089402pt;}
.ws57{word-spacing:14.183696pt;}
.ws71{word-spacing:14.293010pt;}
.ws34{word-spacing:14.476156pt;}
.ws4b{word-spacing:14.943146pt;}
.ws42{word-spacing:15.160879pt;}
.ws6d{word-spacing:15.249420pt;}
.ws3c{word-spacing:15.262295pt;}
.ws47{word-spacing:18.076207pt;}
.ws6f{word-spacing:18.384318pt;}
.ws54{word-spacing:18.437452pt;}
.ws3a{word-spacing:20.441627pt;}
.ws11{word-spacing:21.120081pt;}
.ws13{word-spacing:26.513799pt;}
._3{margin-left:-7.205205pt;}
._19{margin-left:-5.541872pt;}
._1{margin-left:-4.408000pt;}
._5{margin-left:-3.400576pt;}
._6{margin-left:-2.086040pt;}
._0{margin-left:-1.102000pt;}
._8{width:1.275221pt;}
._c{width:2.592939pt;}
._1b{width:3.538941pt;}
._4{width:8.857887pt;}
._7{width:10.945577pt;}
._b{width:12.022073pt;}
._2{width:13.283467pt;}
._a{width:14.891302pt;}
._11{width:16.400409pt;}
._e{width:17.534176pt;}
._16{width:19.468298pt;}
._d{width:20.488569pt;}
._1a{width:21.593658pt;}
._10{width:23.634003pt;}
._18{width:24.696683pt;}
._17{width:25.586147pt;}
._9{width:26.566933pt;}
._14{width:29.372475pt;}
._12{width:31.798573pt;}
._15{width:37.576365pt;}
._f{width:42.507200pt;}
._13{width:49.818438pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:39.318933pt;}
.fs0{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:165.446667pt;}
.y51{bottom:165.448000pt;}
.y26{bottom:169.305333pt;}
.y50{bottom:178.730667pt;}
.y99{bottom:181.365333pt;}
.y7a{bottom:182.588000pt;}
.y79{bottom:192.009333pt;}
.y25{bottom:194.494667pt;}
.y4f{bottom:195.872000pt;}
.y98{bottom:197.284000pt;}
.ycb{bottom:201.313333pt;}
.y78{bottom:205.292000pt;}
.y24{bottom:210.513333pt;}
.y97{bottom:213.202667pt;}
.yca{bottom:214.596000pt;}
.y4e{bottom:220.122667pt;}
.y77{bottom:222.433333pt;}
.y23{bottom:226.532000pt;}
.yc9{bottom:227.880000pt;}
.y96{bottom:229.121333pt;}
.y4d{bottom:235.978667pt;}
.yc8{bottom:241.162667pt;}
.y22{bottom:242.550667pt;}
.y95{bottom:245.040000pt;}
.y76{bottom:246.685333pt;}
.yc7{bottom:254.446667pt;}
.y21{bottom:258.568000pt;}
.y94{bottom:260.958667pt;}
.y75{bottom:262.573333pt;}
.y4c{bottom:265.228000pt;}
.yc6{bottom:267.730667pt;}
.y20{bottom:274.586667pt;}
.y93{bottom:276.877333pt;}
.y74{bottom:278.461333pt;}
.yc5{bottom:281.013333pt;}
.y1f{bottom:290.605333pt;}
.y92{bottom:292.796000pt;}
.yc4{bottom:294.297333pt;}
.y73{bottom:294.349333pt;}
.y4b{bottom:294.476000pt;}
.y1e{bottom:306.624000pt;}
.yc3{bottom:307.581333pt;}
.y91{bottom:308.714667pt;}
.y72{bottom:310.237333pt;}
.y4a{bottom:310.332000pt;}
.yc2{bottom:320.864000pt;}
.y1d{bottom:322.642667pt;}
.y90{bottom:324.633333pt;}
.y71{bottom:326.125333pt;}
.y49{bottom:326.186667pt;}
.yc1{bottom:334.148000pt;}
.y1c{bottom:338.660000pt;}
.y8f{bottom:340.552000pt;}
.y70{bottom:342.013333pt;}
.y48{bottom:342.042667pt;}
.yc0{bottom:347.432000pt;}
.y1b{bottom:354.678667pt;}
.y8e{bottom:356.470667pt;}
.y47{bottom:357.897333pt;}
.y6f{bottom:357.902667pt;}
.ybf{bottom:360.714667pt;}
.y1a{bottom:370.697333pt;}
.y46{bottom:373.753333pt;}
.y6e{bottom:373.790667pt;}
.ybe{bottom:373.998667pt;}
.y19{bottom:386.716000pt;}
.ybd{bottom:387.282667pt;}
.y8d{bottom:387.682667pt;}
.y45{bottom:389.608000pt;}
.y6d{bottom:389.678667pt;}
.ybc{bottom:400.565333pt;}
.y18{bottom:402.734667pt;}
.y44{bottom:405.464000pt;}
.y6c{bottom:405.566667pt;}
.ybb{bottom:413.849333pt;}
.y17{bottom:418.752000pt;}
.y43{bottom:421.318667pt;}
.y6b{bottom:421.454667pt;}
.yba{bottom:427.133333pt;}
.y16{bottom:434.770667pt;}
.y8c{bottom:434.834667pt;}
.y42{bottom:437.174667pt;}
.y6a{bottom:437.342667pt;}
.yb9{bottom:440.416000pt;}
.y8b{bottom:450.753333pt;}
.y41{bottom:453.029333pt;}
.y69{bottom:453.230667pt;}
.yb8{bottom:453.700000pt;}
.y8a{bottom:466.672000pt;}
.yb7{bottom:466.982667pt;}
.y15{bottom:467.198667pt;}
.y40{bottom:468.885333pt;}
.y68{bottom:469.118667pt;}
.yb6{bottom:480.266667pt;}
.y89{bottom:482.590667pt;}
.y67{bottom:485.006667pt;}
.yb5{bottom:493.550667pt;}
.y3f{bottom:498.134667pt;}
.y88{bottom:498.509333pt;}
.yb4{bottom:506.833333pt;}
.y87{bottom:514.428000pt;}
.y66{bottom:515.273333pt;}
.yb3{bottom:520.117333pt;}
.y14{bottom:527.880000pt;}
.y86{bottom:530.346667pt;}
.yb2{bottom:533.401333pt;}
.y13{bottom:541.164000pt;}
.y3e{bottom:543.324000pt;}
.y85{bottom:546.265333pt;}
.yb1{bottom:546.684000pt;}
.y3d{bottom:559.178667pt;}
.yb0{bottom:559.968000pt;}
.y12{bottom:560.009333pt;}
.y65{bottom:561.478667pt;}
.y84{bottom:562.184000pt;}
.yaf{bottom:573.252000pt;}
.y11{bottom:573.293333pt;}
.y3c{bottom:575.034667pt;}
.y64{bottom:577.366667pt;}
.y83{bottom:578.102667pt;}
.yae{bottom:586.534667pt;}
.y10{bottom:586.577333pt;}
.y3b{bottom:590.889333pt;}
.y63{bottom:593.254667pt;}
.y82{bottom:594.021333pt;}
.yad{bottom:599.818667pt;}
.yf{bottom:599.860000pt;}
.y3a{bottom:606.745333pt;}
.y62{bottom:609.142667pt;}
.y81{bottom:609.940000pt;}
.yac{bottom:613.102667pt;}
.ye{bottom:613.144000pt;}
.y39{bottom:622.600000pt;}
.y61{bottom:625.030667pt;}
.y80{bottom:625.858667pt;}
.yab{bottom:626.385333pt;}
.yd{bottom:626.428000pt;}
.y38{bottom:638.456000pt;}
.yaa{bottom:639.669333pt;}
.yc{bottom:639.710667pt;}
.y60{bottom:640.918667pt;}
.y7f{bottom:641.777333pt;}
.ya9{bottom:652.952000pt;}
.yb{bottom:652.994667pt;}
.y37{bottom:654.310667pt;}
.y5f{bottom:656.808000pt;}
.y7e{bottom:657.696000pt;}
.ya8{bottom:666.236000pt;}
.ya{bottom:666.278667pt;}
.y36{bottom:670.166667pt;}
.y5e{bottom:672.696000pt;}
.y7d{bottom:673.614667pt;}
.ya7{bottom:679.520000pt;}
.y9{bottom:679.561333pt;}
.y35{bottom:686.021333pt;}
.y5d{bottom:688.584000pt;}
.y7c{bottom:689.533333pt;}
.ya6{bottom:692.802667pt;}
.y8{bottom:692.845333pt;}
.y34{bottom:701.877333pt;}
.y5c{bottom:704.472000pt;}
.ya5{bottom:706.086667pt;}
.y7{bottom:706.129333pt;}
.y33{bottom:717.732000pt;}
.ya4{bottom:719.370667pt;}
.y6{bottom:719.412000pt;}
.y7b{bottom:720.196000pt;}
.y5b{bottom:720.360000pt;}
.ya3{bottom:732.653333pt;}
.y32{bottom:733.588000pt;}
.y5a{bottom:736.248000pt;}
.ya2{bottom:745.937333pt;}
.y31{bottom:749.442667pt;}
.ya1{bottom:759.221333pt;}
.y5{bottom:759.537333pt;}
.y30{bottom:765.298667pt;}
.y59{bottom:766.513333pt;}
.ya0{bottom:772.504000pt;}
.y4{bottom:773.546667pt;}
.y2f{bottom:781.153333pt;}
.y9f{bottom:785.788000pt;}
.y58{bottom:796.780000pt;}
.y2e{bottom:797.009333pt;}
.y9e{bottom:799.072000pt;}
.y57{bottom:812.668000pt;}
.y2d{bottom:812.864000pt;}
.y3{bottom:824.118667pt;}
.y9d{bottom:828.294667pt;}
.y56{bottom:828.556000pt;}
.y2c{bottom:828.720000pt;}
.y55{bottom:844.444000pt;}
.y2b{bottom:844.574667pt;}
.y2{bottom:857.326667pt;}
.y54{bottom:860.332000pt;}
.y2a{bottom:860.430667pt;}
.y9c{bottom:876.116000pt;}
.y53{bottom:876.220000pt;}
.y29{bottom:876.285333pt;}
.y9b{bottom:892.056000pt;}
.y52{bottom:892.108000pt;}
.y28{bottom:892.141333pt;}
.y27{bottom:907.996000pt;}
.y1{bottom:941.205333pt;}
.ha{height:21.933807pt;}
.h5{height:27.051426pt;}
.h2{height:29.032418pt;}
.h7{height:29.244954pt;}
.h6{height:29.414982pt;}
.he{height:29.458287pt;}
.hd{height:29.499997pt;}
.hc{height:36.290431pt;}
.h9{height:36.556100pt;}
.h8{height:36.768636pt;}
.hb{height:46.336759pt;}
.h4{height:46.342093pt;}
.h3{height:75.817600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:162.520000pt;}
.xb{left:167.833333pt;}
.x9{left:173.146667pt;}
.x2{left:180.140000pt;}
.x8{left:186.429333pt;}
.xc{left:190.850667pt;}
.xa{left:199.264000pt;}
.x6{left:220.966667pt;}
.x7{left:231.593333pt;}
.x3{left:246.298667pt;}
.x4{left:272.318667pt;}
.x5{left:310.582667pt;}
}




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