
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b3375ee7d9afe00448dc5ece.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_02d0ef41c527648aa03f9902.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_9727ebb7b3b121ebdc130828.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_d11b9f33fe93a6d31bab1079.woff')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_09e5806ff4a23cccfc672b2d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0d1ae3bb75cb583a409661c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.816000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d30dc31a380a1b38e0aa8e89.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_158b007ce413299e16ed4b80.woff')format("woff");}.ffa{font-family:ffa;line-height:1.045000;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);}
.v5{vertical-align:-16.830000px;}
.v4{vertical-align:-14.400000px;}
.v7{vertical-align:-10.176000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.840000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:176.400000px;}
.ls1c{letter-spacing:-7.200000px;}
.ls28{letter-spacing:-2.880000px;}
.ls27{letter-spacing:-2.808000px;}
.ls15{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.009000px;}
.ls11{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.105000px;}
.ls1e{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.586200px;}
.ls3{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.843000px;}
.ls1b{letter-spacing:0.864000px;}
.ls18{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.152000px;}
.ls24{letter-spacing:1.296000px;}
.ls20{letter-spacing:1.368000px;}
.ls1d{letter-spacing:2.376000px;}
.ls2f{letter-spacing:2.736000px;}
.ls33{letter-spacing:2.928000px;}
.ls21{letter-spacing:3.540000px;}
.ls2c{letter-spacing:3.660000px;}
.ls2e{letter-spacing:4.200000px;}
.ls32{letter-spacing:4.752000px;}
.ls13{letter-spacing:4.824000px;}
.ls2{letter-spacing:4.896000px;}
.lse{letter-spacing:5.400000px;}
.ls23{letter-spacing:6.768000px;}
.ls16{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.460000px;}
.ls4{letter-spacing:9.060000px;}
.ls31{letter-spacing:9.216000px;}
.ls5{letter-spacing:10.424311px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws9{word-spacing:-49.248000px;}
.ws17{word-spacing:-49.032000px;}
.ws5{word-spacing:-48.888000px;}
.wsf{word-spacing:-48.816000px;}
.ws15{word-spacing:-48.744000px;}
.wsc{word-spacing:-48.672000px;}
.ws16{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws12{word-spacing:-48.456000px;}
.ws11{word-spacing:-48.384000px;}
.ws14{word-spacing:-48.096000px;}
.ws18{word-spacing:-48.024000px;}
.ws8{word-spacing:-47.880000px;}
.ws3{word-spacing:-40.440000px;}
.wse{word-spacing:-32.352000px;}
.ws1b{word-spacing:-25.320000px;}
.ws4{word-spacing:-20.592000px;}
.ws1a{word-spacing:-20.448000px;}
.ws10{word-spacing:-20.232000px;}
.ws13{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.656000px;}
.ws2{word-spacing:-16.860000px;}
.wsa{word-spacing:-14.162400px;}
.wsd{word-spacing:-13.488000px;}
.wsb{word-spacing:-11.802000px;}
.ws0{word-spacing:-8.520000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:146.100000px;}
._0{margin-left:-948.900000px;}
._d{margin-left:-16.680000px;}
._1d{margin-left:-15.492000px;}
._1e{margin-left:-14.472000px;}
._1b{margin-left:-13.416000px;}
._18{margin-left:-12.180000px;}
._1f{margin-left:-10.500000px;}
._1a{margin-left:-9.480000px;}
._16{margin-left:-8.136000px;}
._17{margin-left:-6.948000px;}
._1{margin-left:-5.940000px;}
._7{margin-left:-4.560000px;}
._6{margin-left:-3.120000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._8{width:3.180000px;}
._4{width:4.200000px;}
._e{width:5.316000px;}
._10{width:7.284000px;}
._5{width:8.520000px;}
._f{width:10.296000px;}
._1c{width:11.316000px;}
._14{width:12.324000px;}
._19{width:13.500000px;}
._11{width:14.544000px;}
._13{width:15.624000px;}
._12{width:17.112000px;}
._c{width:21.780000px;}
._15{width:31.646100px;}
._a{width:58.140000px;}
._9{width:211.500000px;}
._b{width:257.940000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs7{font-size:35.700000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs5{font-size:417.151200px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y6a{bottom:116.999850px;}
.y6d{bottom:117.000000px;}
.y97{bottom:117.001800px;}
.ybd{bottom:117.078000px;}
.yed{bottom:118.794150px;}
.y43{bottom:119.746050px;}
.y1e{bottom:121.207500px;}
.y69{bottom:131.999850px;}
.y70{bottom:132.000000px;}
.yec{bottom:138.294150px;}
.y42{bottom:138.496050px;}
.ybc{bottom:138.984000px;}
.y96{bottom:139.357800px;}
.y6c{bottom:139.500000px;}
.y1d{bottom:143.707500px;}
.y68{bottom:146.999850px;}
.y6f{bottom:147.000000px;}
.y41{bottom:157.246050px;}
.yeb{bottom:157.794150px;}
.ybb{bottom:160.890000px;}
.y3f{bottom:161.406000px;}
.y95{bottom:161.713800px;}
.y67{bottom:161.999850px;}
.y6b{bottom:162.000000px;}
.y6e{bottom:166.207500px;}
.y66{bottom:176.999850px;}
.yea{bottom:177.294150px;}
.y1c{bottom:180.368550px;}
.yba{bottom:182.796000px;}
.y94{bottom:184.069800px;}
.y3e{bottom:184.500000px;}
.y65{bottom:191.999850px;}
.ye9{bottom:196.794150px;}
.y1b{bottom:202.418550px;}
.yb9{bottom:204.702000px;}
.y93{bottom:206.425800px;}
.y64{bottom:206.999850px;}
.y3d{bottom:207.000000px;}
.ye8{bottom:216.294150px;}
.y63{bottom:221.999850px;}
.y1a{bottom:224.468550px;}
.yb8{bottom:226.608000px;}
.y92{bottom:228.781800px;}
.y3c{bottom:229.500000px;}
.ye7{bottom:235.794150px;}
.y62{bottom:236.999850px;}
.y19{bottom:246.518550px;}
.yb7{bottom:248.514000px;}
.y91{bottom:251.137800px;}
.y3b{bottom:252.000000px;}
.y61{bottom:256.207350px;}
.ye6{bottom:261.684000px;}
.y18{bottom:268.568550px;}
.yb6{bottom:270.420000px;}
.y90{bottom:273.493800px;}
.y3a{bottom:274.500000px;}
.y17{bottom:290.618550px;}
.yb5{bottom:292.326000px;}
.y8f{bottom:295.849800px;}
.y39{bottom:297.000000px;}
.y60{bottom:298.407900px;}
.y16{bottom:312.668550px;}
.yb4{bottom:314.232000px;}
.ye5{bottom:314.628000px;}
.y8e{bottom:318.205800px;}
.y38{bottom:319.500000px;}
.y5f{bottom:321.213900px;}
.ye4{bottom:329.916000px;}
.y15{bottom:334.718550px;}
.yb3{bottom:336.138000px;}
.y8d{bottom:340.561800px;}
.y40{bottom:342.000000px;}
.y5e{bottom:344.019900px;}
.ye3{bottom:345.060000px;}
.y14{bottom:356.768550px;}
.yb2{bottom:358.044000px;}
.ye2{bottom:360.204000px;}
.y8c{bottom:362.917800px;}
.y37{bottom:364.500000px;}
.y5d{bottom:366.825900px;}
.ye1{bottom:375.360000px;}
.y13{bottom:378.818550px;}
.yb1{bottom:379.950000px;}
.y8b{bottom:385.273800px;}
.y36{bottom:387.000000px;}
.y5c{bottom:389.631900px;}
.ye0{bottom:390.504000px;}
.y12{bottom:400.868550px;}
.yb0{bottom:401.856000px;}
.ydf{bottom:405.648000px;}
.y8a{bottom:407.629800px;}
.y35{bottom:409.500000px;}
.y5b{bottom:412.437900px;}
.yde{bottom:420.792000px;}
.y11{bottom:422.918550px;}
.yaf{bottom:423.762000px;}
.y89{bottom:429.985800px;}
.y34{bottom:432.000000px;}
.y5a{bottom:435.243900px;}
.ydd{bottom:435.936000px;}
.y10{bottom:444.968550px;}
.yae{bottom:445.668000px;}
.ydc{bottom:451.092000px;}
.y88{bottom:452.341800px;}
.y33{bottom:454.500000px;}
.y104{bottom:455.250000px;}
.y59{bottom:458.049900px;}
.ydb{bottom:466.236000px;}
.yf{bottom:467.018550px;}
.yad{bottom:467.574000px;}
.y103{bottom:474.000000px;}
.y32{bottom:477.000000px;}
.y58{bottom:480.855900px;}
.yda{bottom:481.380000px;}
.y87{bottom:483.195750px;}
.yd{bottom:489.068550px;}
.yac{bottom:489.480000px;}
.y102{bottom:492.750000px;}
.yd9{bottom:496.524000px;}
.y31{bottom:499.500000px;}
.y86{bottom:501.795750px;}
.y57{bottom:503.661900px;}
.ye{bottom:511.118550px;}
.yab{bottom:511.386000px;}
.y101{bottom:511.500000px;}
.yd8{bottom:511.668000px;}
.y85{bottom:520.395750px;}
.y30{bottom:522.000000px;}
.y56{bottom:526.467900px;}
.yd7{bottom:526.824000px;}
.yaa{bottom:533.292000px;}
.y84{bottom:538.995750px;}
.y100{bottom:541.500000px;}
.yd6{bottom:541.968000px;}
.y2f{bottom:544.500000px;}
.y55{bottom:549.273900px;}
.ya9{bottom:555.198000px;}
.yd5{bottom:557.112000px;}
.y83{bottom:557.595750px;}
.y2e{bottom:567.000000px;}
.y54{bottom:572.079900px;}
.yd4{bottom:572.256000px;}
.yc{bottom:573.968550px;}
.y82{bottom:576.195750px;}
.ya8{bottom:577.104000px;}
.yff{bottom:579.000000px;}
.yd3{bottom:587.400000px;}
.y2d{bottom:589.500000px;}
.yb{bottom:592.718550px;}
.y81{bottom:594.795750px;}
.y53{bottom:594.885900px;}
.yfe{bottom:598.500000px;}
.ya7{bottom:599.010000px;}
.yd2{bottom:602.556000px;}
.ya{bottom:611.468550px;}
.y2c{bottom:612.000000px;}
.y80{bottom:613.395750px;}
.y52{bottom:617.691900px;}
.yd1{bottom:617.700000px;}
.yfd{bottom:618.000000px;}
.ya6{bottom:620.916000px;}
.y9{bottom:630.218550px;}
.y7f{bottom:631.995750px;}
.yd0{bottom:632.844000px;}
.y2b{bottom:634.500000px;}
.yfc{bottom:637.500000px;}
.y51{bottom:640.497900px;}
.ya5{bottom:642.822000px;}
.ycf{bottom:647.988000px;}
.y8{bottom:648.968550px;}
.y7e{bottom:650.595750px;}
.y2a{bottom:657.000000px;}
.yce{bottom:663.132000px;}
.y50{bottom:663.303900px;}
.ya4{bottom:664.728000px;}
.y7d{bottom:669.195750px;}
.yfb{bottom:676.500000px;}
.ycd{bottom:678.288000px;}
.y7{bottom:678.968550px;}
.y29{bottom:679.500000px;}
.y4f{bottom:686.109900px;}
.ya3{bottom:686.634000px;}
.y7c{bottom:687.795750px;}
.ycc{bottom:693.432000px;}
.yfa{bottom:696.000000px;}
.y28{bottom:702.000000px;}
.y7b{bottom:706.395750px;}
.ya2{bottom:708.540000px;}
.ycb{bottom:708.576000px;}
.y4e{bottom:708.915900px;}
.y6{bottom:708.968550px;}
.yf9{bottom:715.500000px;}
.yca{bottom:723.720000px;}
.y27{bottom:724.500000px;}
.y7a{bottom:724.995750px;}
.y5{bottom:727.718550px;}
.ya1{bottom:730.446000px;}
.y4d{bottom:731.721900px;}
.yf8{bottom:735.000000px;}
.yc9{bottom:738.864000px;}
.y79{bottom:743.595750px;}
.y26{bottom:747.000000px;}
.ya0{bottom:752.352000px;}
.yc8{bottom:754.008000px;}
.yf7{bottom:754.500000px;}
.y4c{bottom:754.527900px;}
.yc7{bottom:769.164000px;}
.y25{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y78{bottom:770.658000px;}
.yf6{bottom:774.000000px;}
.y9f{bottom:774.258000px;}
.y4b{bottom:777.333900px;}
.yc6{bottom:784.308000px;}
.y24{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y77{bottom:793.014000px;}
.yf5{bottom:793.500000px;}
.y9e{bottom:796.164000px;}
.yc5{bottom:799.452000px;}
.y4a{bottom:800.139900px;}
.yf4{bottom:813.000000px;}
.y23{bottom:814.500000px;}
.yc4{bottom:814.596000px;}
.y76{bottom:815.370000px;}
.y9d{bottom:818.070000px;}
.y49{bottom:822.945900px;}
.yc3{bottom:829.740000px;}
.yf3{bottom:832.500000px;}
.y22{bottom:837.000000px;}
.y75{bottom:837.726000px;}
.y9c{bottom:839.976000px;}
.yc2{bottom:844.896000px;}
.yf2{bottom:852.000000px;}
.y48{bottom:854.250000px;}
.y2{bottom:859.500000px;}
.yc1{bottom:860.040000px;}
.y74{bottom:860.082000px;}
.y9b{bottom:861.882000px;}
.yf1{bottom:871.500000px;}
.y47{bottom:873.300000px;}
.yc0{bottom:875.184000px;}
.y21{bottom:882.000000px;}
.y73{bottom:882.438000px;}
.y9a{bottom:883.788000px;}
.ybf{bottom:890.328000px;}
.yf0{bottom:891.000000px;}
.y46{bottom:892.350000px;}
.y20{bottom:904.500000px;}
.y72{bottom:904.794000px;}
.ybe{bottom:905.472000px;}
.y99{bottom:905.694000px;}
.yef{bottom:910.500000px;}
.y45{bottom:911.400000px;}
.y1f{bottom:927.000000px;}
.y71{bottom:927.150000px;}
.y98{bottom:927.600000px;}
.yee{bottom:930.000000px;}
.y44{bottom:930.450000px;}
.h6{height:24.630908px;}
.h8{height:30.313623px;}
.hb{height:39.888000px;}
.h9{height:40.757812px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h7{height:55.462486px;}
.h4{height:61.136719px;}
.ha{height:66.555703px;}
.h2{height:101.894531px;}
.h5{height:337.058170px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x6{left:67.500000px;}
.x7{left:82.386000px;}
.x9{left:97.265700px;}
.x2{left:112.500000px;}
.x5{left:127.381350px;}
.x4{left:135.859350px;}
.x8{left:142.263750px;}
.xa{left:157.143750px;}
.xb{left:180.525000px;}
.x3{left:377.086050px;}
.x1{left:625.781250px;}
@media print{
.v5{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.800000pt;}
.v7{vertical-align:-9.045333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.080000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:156.800000pt;}
.ls1c{letter-spacing:-6.400000pt;}
.ls28{letter-spacing:-2.560000pt;}
.ls27{letter-spacing:-2.496000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.008000pt;}
.ls11{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.093333pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.521067pt;}
.ls3{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.749333pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls24{letter-spacing:1.152000pt;}
.ls20{letter-spacing:1.216000pt;}
.ls1d{letter-spacing:2.112000pt;}
.ls2f{letter-spacing:2.432000pt;}
.ls33{letter-spacing:2.602667pt;}
.ls21{letter-spacing:3.146667pt;}
.ls2c{letter-spacing:3.253333pt;}
.ls2e{letter-spacing:3.733333pt;}
.ls32{letter-spacing:4.224000pt;}
.ls13{letter-spacing:4.288000pt;}
.ls2{letter-spacing:4.352000pt;}
.lse{letter-spacing:4.800000pt;}
.ls23{letter-spacing:6.016000pt;}
.ls16{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls4{letter-spacing:8.053333pt;}
.ls31{letter-spacing:8.192000pt;}
.ls5{letter-spacing:9.266054pt;}
.ls1{letter-spacing:9.546667pt;}
.ws9{word-spacing:-43.776000pt;}
.ws17{word-spacing:-43.584000pt;}
.ws5{word-spacing:-43.456000pt;}
.wsf{word-spacing:-43.392000pt;}
.ws15{word-spacing:-43.328000pt;}
.wsc{word-spacing:-43.264000pt;}
.ws16{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws12{word-spacing:-43.072000pt;}
.ws11{word-spacing:-43.008000pt;}
.ws14{word-spacing:-42.752000pt;}
.ws18{word-spacing:-42.688000pt;}
.ws8{word-spacing:-42.560000pt;}
.ws3{word-spacing:-35.946667pt;}
.wse{word-spacing:-28.757333pt;}
.ws1b{word-spacing:-22.506667pt;}
.ws4{word-spacing:-18.304000pt;}
.ws1a{word-spacing:-18.176000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws13{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.472000pt;}
.ws2{word-spacing:-14.986667pt;}
.wsa{word-spacing:-12.588800pt;}
.wsd{word-spacing:-11.989333pt;}
.wsb{word-spacing:-10.490667pt;}
.ws0{word-spacing:-7.573333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:129.866667pt;}
._0{margin-left:-843.466667pt;}
._d{margin-left:-14.826667pt;}
._1d{margin-left:-13.770667pt;}
._1e{margin-left:-12.864000pt;}
._1b{margin-left:-11.925333pt;}
._18{margin-left:-10.826667pt;}
._1f{margin-left:-9.333333pt;}
._1a{margin-left:-8.426667pt;}
._16{margin-left:-7.232000pt;}
._17{margin-left:-6.176000pt;}
._1{margin-left:-5.280000pt;}
._7{margin-left:-4.053333pt;}
._6{margin-left:-2.773333pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._8{width:2.826667pt;}
._4{width:3.733333pt;}
._e{width:4.725333pt;}
._10{width:6.474667pt;}
._5{width:7.573333pt;}
._f{width:9.152000pt;}
._1c{width:10.058667pt;}
._14{width:10.954667pt;}
._19{width:12.000000pt;}
._11{width:12.928000pt;}
._13{width:13.888000pt;}
._12{width:15.210667pt;}
._c{width:19.360000pt;}
._15{width:28.129867pt;}
._a{width:51.680000pt;}
._9{width:188.000000pt;}
._b{width:229.280000pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:31.733333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs5{font-size:370.801067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y6a{bottom:103.999867pt;}
.y6d{bottom:104.000000pt;}
.y97{bottom:104.001600pt;}
.ybd{bottom:104.069333pt;}
.yed{bottom:105.594800pt;}
.y43{bottom:106.440933pt;}
.y1e{bottom:107.740000pt;}
.y69{bottom:117.333200pt;}
.y70{bottom:117.333333pt;}
.yec{bottom:122.928133pt;}
.y42{bottom:123.107600pt;}
.ybc{bottom:123.541333pt;}
.y96{bottom:123.873600pt;}
.y6c{bottom:124.000000pt;}
.y1d{bottom:127.740000pt;}
.y68{bottom:130.666533pt;}
.y6f{bottom:130.666667pt;}
.y41{bottom:139.774267pt;}
.yeb{bottom:140.261467pt;}
.ybb{bottom:143.013333pt;}
.y3f{bottom:143.472000pt;}
.y95{bottom:143.745600pt;}
.y67{bottom:143.999867pt;}
.y6b{bottom:144.000000pt;}
.y6e{bottom:147.740000pt;}
.y66{bottom:157.333200pt;}
.yea{bottom:157.594800pt;}
.y1c{bottom:160.327600pt;}
.yba{bottom:162.485333pt;}
.y94{bottom:163.617600pt;}
.y3e{bottom:164.000000pt;}
.y65{bottom:170.666533pt;}
.ye9{bottom:174.928133pt;}
.y1b{bottom:179.927600pt;}
.yb9{bottom:181.957333pt;}
.y93{bottom:183.489600pt;}
.y64{bottom:183.999867pt;}
.y3d{bottom:184.000000pt;}
.ye8{bottom:192.261467pt;}
.y63{bottom:197.333200pt;}
.y1a{bottom:199.527600pt;}
.yb8{bottom:201.429333pt;}
.y92{bottom:203.361600pt;}
.y3c{bottom:204.000000pt;}
.ye7{bottom:209.594800pt;}
.y62{bottom:210.666533pt;}
.y19{bottom:219.127600pt;}
.yb7{bottom:220.901333pt;}
.y91{bottom:223.233600pt;}
.y3b{bottom:224.000000pt;}
.y61{bottom:227.739867pt;}
.ye6{bottom:232.608000pt;}
.y18{bottom:238.727600pt;}
.yb6{bottom:240.373333pt;}
.y90{bottom:243.105600pt;}
.y3a{bottom:244.000000pt;}
.y17{bottom:258.327600pt;}
.yb5{bottom:259.845333pt;}
.y8f{bottom:262.977600pt;}
.y39{bottom:264.000000pt;}
.y60{bottom:265.251467pt;}
.y16{bottom:277.927600pt;}
.yb4{bottom:279.317333pt;}
.ye5{bottom:279.669333pt;}
.y8e{bottom:282.849600pt;}
.y38{bottom:284.000000pt;}
.y5f{bottom:285.523467pt;}
.ye4{bottom:293.258667pt;}
.y15{bottom:297.527600pt;}
.yb3{bottom:298.789333pt;}
.y8d{bottom:302.721600pt;}
.y40{bottom:304.000000pt;}
.y5e{bottom:305.795467pt;}
.ye3{bottom:306.720000pt;}
.y14{bottom:317.127600pt;}
.yb2{bottom:318.261333pt;}
.ye2{bottom:320.181333pt;}
.y8c{bottom:322.593600pt;}
.y37{bottom:324.000000pt;}
.y5d{bottom:326.067467pt;}
.ye1{bottom:333.653333pt;}
.y13{bottom:336.727600pt;}
.yb1{bottom:337.733333pt;}
.y8b{bottom:342.465600pt;}
.y36{bottom:344.000000pt;}
.y5c{bottom:346.339467pt;}
.ye0{bottom:347.114667pt;}
.y12{bottom:356.327600pt;}
.yb0{bottom:357.205333pt;}
.ydf{bottom:360.576000pt;}
.y8a{bottom:362.337600pt;}
.y35{bottom:364.000000pt;}
.y5b{bottom:366.611467pt;}
.yde{bottom:374.037333pt;}
.y11{bottom:375.927600pt;}
.yaf{bottom:376.677333pt;}
.y89{bottom:382.209600pt;}
.y34{bottom:384.000000pt;}
.y5a{bottom:386.883467pt;}
.ydd{bottom:387.498667pt;}
.y10{bottom:395.527600pt;}
.yae{bottom:396.149333pt;}
.ydc{bottom:400.970667pt;}
.y88{bottom:402.081600pt;}
.y33{bottom:404.000000pt;}
.y104{bottom:404.666667pt;}
.y59{bottom:407.155467pt;}
.ydb{bottom:414.432000pt;}
.yf{bottom:415.127600pt;}
.yad{bottom:415.621333pt;}
.y103{bottom:421.333333pt;}
.y32{bottom:424.000000pt;}
.y58{bottom:427.427467pt;}
.yda{bottom:427.893333pt;}
.y87{bottom:429.507333pt;}
.yd{bottom:434.727600pt;}
.yac{bottom:435.093333pt;}
.y102{bottom:438.000000pt;}
.yd9{bottom:441.354667pt;}
.y31{bottom:444.000000pt;}
.y86{bottom:446.040667pt;}
.y57{bottom:447.699467pt;}
.ye{bottom:454.327600pt;}
.yab{bottom:454.565333pt;}
.y101{bottom:454.666667pt;}
.yd8{bottom:454.816000pt;}
.y85{bottom:462.574000pt;}
.y30{bottom:464.000000pt;}
.y56{bottom:467.971467pt;}
.yd7{bottom:468.288000pt;}
.yaa{bottom:474.037333pt;}
.y84{bottom:479.107333pt;}
.y100{bottom:481.333333pt;}
.yd6{bottom:481.749333pt;}
.y2f{bottom:484.000000pt;}
.y55{bottom:488.243467pt;}
.ya9{bottom:493.509333pt;}
.yd5{bottom:495.210667pt;}
.y83{bottom:495.640667pt;}
.y2e{bottom:504.000000pt;}
.y54{bottom:508.515467pt;}
.yd4{bottom:508.672000pt;}
.yc{bottom:510.194267pt;}
.y82{bottom:512.174000pt;}
.ya8{bottom:512.981333pt;}
.yff{bottom:514.666667pt;}
.yd3{bottom:522.133333pt;}
.y2d{bottom:524.000000pt;}
.yb{bottom:526.860933pt;}
.y81{bottom:528.707333pt;}
.y53{bottom:528.787467pt;}
.yfe{bottom:532.000000pt;}
.ya7{bottom:532.453333pt;}
.yd2{bottom:535.605333pt;}
.ya{bottom:543.527600pt;}
.y2c{bottom:544.000000pt;}
.y80{bottom:545.240667pt;}
.y52{bottom:549.059467pt;}
.yd1{bottom:549.066667pt;}
.yfd{bottom:549.333333pt;}
.ya6{bottom:551.925333pt;}
.y9{bottom:560.194267pt;}
.y7f{bottom:561.774000pt;}
.yd0{bottom:562.528000pt;}
.y2b{bottom:564.000000pt;}
.yfc{bottom:566.666667pt;}
.y51{bottom:569.331467pt;}
.ya5{bottom:571.397333pt;}
.ycf{bottom:575.989333pt;}
.y8{bottom:576.860933pt;}
.y7e{bottom:578.307333pt;}
.y2a{bottom:584.000000pt;}
.yce{bottom:589.450667pt;}
.y50{bottom:589.603467pt;}
.ya4{bottom:590.869333pt;}
.y7d{bottom:594.840667pt;}
.yfb{bottom:601.333333pt;}
.ycd{bottom:602.922667pt;}
.y7{bottom:603.527600pt;}
.y29{bottom:604.000000pt;}
.y4f{bottom:609.875467pt;}
.ya3{bottom:610.341333pt;}
.y7c{bottom:611.374000pt;}
.ycc{bottom:616.384000pt;}
.yfa{bottom:618.666667pt;}
.y28{bottom:624.000000pt;}
.y7b{bottom:627.907333pt;}
.ya2{bottom:629.813333pt;}
.ycb{bottom:629.845333pt;}
.y4e{bottom:630.147467pt;}
.y6{bottom:630.194267pt;}
.yf9{bottom:636.000000pt;}
.yca{bottom:643.306667pt;}
.y27{bottom:644.000000pt;}
.y7a{bottom:644.440667pt;}
.y5{bottom:646.860933pt;}
.ya1{bottom:649.285333pt;}
.y4d{bottom:650.419467pt;}
.yf8{bottom:653.333333pt;}
.yc9{bottom:656.768000pt;}
.y79{bottom:660.974000pt;}
.y26{bottom:664.000000pt;}
.ya0{bottom:668.757333pt;}
.yc8{bottom:670.229333pt;}
.yf7{bottom:670.666667pt;}
.y4c{bottom:670.691467pt;}
.yc7{bottom:683.701333pt;}
.y25{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y78{bottom:685.029333pt;}
.yf6{bottom:688.000000pt;}
.y9f{bottom:688.229333pt;}
.y4b{bottom:690.963467pt;}
.yc6{bottom:697.162667pt;}
.y24{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y77{bottom:704.901333pt;}
.yf5{bottom:705.333333pt;}
.y9e{bottom:707.701333pt;}
.yc5{bottom:710.624000pt;}
.y4a{bottom:711.235467pt;}
.yf4{bottom:722.666667pt;}
.y23{bottom:724.000000pt;}
.yc4{bottom:724.085333pt;}
.y76{bottom:724.773333pt;}
.y9d{bottom:727.173333pt;}
.y49{bottom:731.507467pt;}
.yc3{bottom:737.546667pt;}
.yf3{bottom:740.000000pt;}
.y22{bottom:744.000000pt;}
.y75{bottom:744.645333pt;}
.y9c{bottom:746.645333pt;}
.yc2{bottom:751.018667pt;}
.yf2{bottom:757.333333pt;}
.y48{bottom:759.333333pt;}
.y2{bottom:764.000000pt;}
.yc1{bottom:764.480000pt;}
.y74{bottom:764.517333pt;}
.y9b{bottom:766.117333pt;}
.yf1{bottom:774.666667pt;}
.y47{bottom:776.266667pt;}
.yc0{bottom:777.941333pt;}
.y21{bottom:784.000000pt;}
.y73{bottom:784.389333pt;}
.y9a{bottom:785.589333pt;}
.ybf{bottom:791.402667pt;}
.yf0{bottom:792.000000pt;}
.y46{bottom:793.200000pt;}
.y20{bottom:804.000000pt;}
.y72{bottom:804.261333pt;}
.ybe{bottom:804.864000pt;}
.y99{bottom:805.061333pt;}
.yef{bottom:809.333333pt;}
.y45{bottom:810.133333pt;}
.y1f{bottom:824.000000pt;}
.y71{bottom:824.133333pt;}
.y98{bottom:824.533333pt;}
.yee{bottom:826.666667pt;}
.y44{bottom:827.066667pt;}
.h6{height:21.894141pt;}
.h8{height:26.945443pt;}
.hb{height:35.456000pt;}
.h9{height:36.229167pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h7{height:49.299988pt;}
.h4{height:54.343750pt;}
.ha{height:59.160625pt;}
.h2{height:90.572917pt;}
.h5{height:299.607262pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x6{left:60.000000pt;}
.x7{left:73.232000pt;}
.x9{left:86.458400pt;}
.x2{left:100.000000pt;}
.x5{left:113.227867pt;}
.x4{left:120.763867pt;}
.x8{left:126.456667pt;}
.xa{left:139.683333pt;}
.xb{left:160.466667pt;}
.x3{left:335.187600pt;}
.x1{left:556.250000pt;}
}




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