
    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_4ef5e9cd6097e7e5b79d7382.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_d981797534d11c867160c90b.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_3ae240ad02523d18404c016e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_274f920996a8a1cd0d363326.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_9763fa697435ec06bc3b0421.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.699000;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_df040ed2fab2914765ccc826.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_17f2d6084e353c9db8e2cbbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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;}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018643px;}
.lsc{letter-spacing:0.166215px;}
.lsd{letter-spacing:0.189257px;}
.ls8{letter-spacing:0.272340px;}
.lsb{letter-spacing:3.071058px;}
.ls9{letter-spacing:3.791518px;}
.lsa{letter-spacing:8.114152px;}
.ls7{letter-spacing:8.834576px;}
.ls6{letter-spacing:24.451970px;}
.ls5{letter-spacing:64.076494px;}
.ls4{letter-spacing:78.484889px;}
.ls3{letter-spacing:95.972362px;}
.ls1{letter-spacing:142.079343px;}
.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;}
}
.ws4{word-spacing:-36.022201px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-14.939994px;}
.ws0{word-spacing:-13.499995px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-12.966015px;}
._0{margin-left:-1.067814px;}
._1{width:1.116454px;}
._2{width:2.803094px;}
._3{width:3.887261px;}
._7{width:5.589948px;}
._6{width:6.789463px;}
._c{width:8.226176px;}
._4{width:9.617210px;}
._5{width:11.167348px;}
._b{width:12.177883px;}
._d{width:13.730110px;}
._13{width:14.860947px;}
._e{width:16.049391px;}
._11{width:17.105497px;}
._9{width:18.371486px;}
._a{width:19.560549px;}
._f{width:27.048416px;}
._10{width:28.164098px;}
._8{width:31.486586px;}
._12{width:1044.107582px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.999986px;}
.fs4{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs3{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y15c{bottom:224.579910px;}
.y15b{bottom:230.519908px;}
.yad{bottom:230.699908px;}
.ya1{bottom:231.599907px;}
.yd1{bottom:232.859907px;}
.y79{bottom:238.439905px;}
.y4f{bottom:240.059904px;}
.y15a{bottom:241.139904px;}
.yf5{bottom:242.759903px;}
.y159{bottom:247.079901px;}
.yac{bottom:248.699901px;}
.ya0{bottom:249.599900px;}
.yd0{bottom:250.859900px;}
.y25{bottom:251.939899px;}
.y78{bottom:256.439897px;}
.y4e{bottom:258.059897px;}
.yf4{bottom:260.759896px;}
.yab{bottom:266.699893px;}
.y9f{bottom:267.599893px;}
.ycf{bottom:268.859892px;}
.y24{bottom:269.939892px;}
.y77{bottom:274.439890px;}
.y4d{bottom:276.059890px;}
.yf3{bottom:278.759888px;}
.yaa{bottom:284.339886px;}
.y136{bottom:284.699886px;}
.y9e{bottom:285.239886px;}
.yce{bottom:286.499885px;}
.y23{bottom:287.939885px;}
.y76{bottom:292.439883px;}
.y4c{bottom:294.059882px;}
.yf2{bottom:296.759881px;}
.y135{bottom:302.699879px;}
.y9d{bottom:303.599879px;}
.y22{bottom:305.939878px;}
.y75{bottom:310.439876px;}
.y4b{bottom:312.059875px;}
.yf1{bottom:314.759874px;}
.y134{bottom:320.699872px;}
.y9c{bottom:321.599871px;}
.y21{bottom:323.939870px;}
.y119{bottom:324.659870px;}
.y74{bottom:328.439869px;}
.y4a{bottom:330.059868px;}
.ycd{bottom:331.859867px;}
.yf0{bottom:332.759867px;}
.ya9{bottom:335.999866px;}
.y133{bottom:338.699865px;}
.y9b{bottom:339.599864px;}
.y20{bottom:341.939863px;}
.y118{bottom:342.659863px;}
.y73{bottom:346.439861px;}
.y49{bottom:348.059861px;}
.ycc{bottom:349.859860px;}
.yef{bottom:350.759860px;}
.ya8{bottom:353.999858px;}
.y132{bottom:356.699857px;}
.y9a{bottom:357.599857px;}
.y158{bottom:358.499857px;}
.y1f{bottom:359.939856px;}
.y117{bottom:360.659856px;}
.y72{bottom:364.439854px;}
.y48{bottom:366.059854px;}
.ycb{bottom:367.859853px;}
.yee{bottom:368.759852px;}
.ya7{bottom:372.899851px;}
.y131{bottom:374.699850px;}
.y99{bottom:375.599850px;}
.y157{bottom:376.319849px;}
.y1e{bottom:377.939849px;}
.y116{bottom:378.659849px;}
.y71{bottom:382.439847px;}
.y47{bottom:384.059846px;}
.yca{bottom:385.859846px;}
.yed{bottom:386.759845px;}
.y130{bottom:392.699843px;}
.y98{bottom:393.599843px;}
.y1d{bottom:395.939842px;}
.y115{bottom:396.659841px;}
.y70{bottom:400.439840px;}
.y46{bottom:402.059839px;}
.yc9{bottom:403.859838px;}
.yec{bottom:404.759838px;}
.y156{bottom:409.259836px;}
.y12f{bottom:410.699836px;}
.y97{bottom:411.599835px;}
.y1c{bottom:413.939834px;}
.y114{bottom:414.659834px;}
.y6f{bottom:418.439833px;}
.y45{bottom:420.059832px;}
.yc8{bottom:421.859831px;}
.y155{bottom:425.819830px;}
.y12e{bottom:428.699829px;}
.y96{bottom:429.599828px;}
.y1b{bottom:431.939827px;}
.y113{bottom:432.659827px;}
.y6e{bottom:436.439825px;}
.y44{bottom:438.059825px;}
.yc7{bottom:439.859824px;}
.yeb{bottom:441.119824px;}
.y154{bottom:442.199823px;}
.y12d{bottom:446.699821px;}
.y95{bottom:447.599821px;}
.y1a{bottom:449.939820px;}
.y112{bottom:450.659820px;}
.y6d{bottom:454.439818px;}
.y43{bottom:456.059818px;}
.y153{bottom:458.399817px;}
.y12c{bottom:464.699814px;}
.y94{bottom:465.599814px;}
.y19{bottom:467.939813px;}
.y111{bottom:468.659813px;}
.yc6{bottom:470.099812px;}
.y6c{bottom:472.439811px;}
.y42{bottom:474.059810px;}
.y152{bottom:474.959810px;}
.y12b{bottom:482.699807px;}
.y93{bottom:483.599807px;}
.y110{bottom:486.659805px;}
.yc5{bottom:488.099805px;}
.y6b{bottom:490.439804px;}
.y151{bottom:491.699803px;}
.y41{bottom:492.059803px;}
.y12a{bottom:500.699800px;}
.y92{bottom:501.599799px;}
.y18{bottom:504.299798px;}
.y10f{bottom:504.659798px;}
.yc4{bottom:506.279797px;}
.yea{bottom:508.259797px;}
.y129{bottom:518.699793px;}
.y91{bottom:519.599792px;}
.y6a{bottom:520.319792px;}
.y10e{bottom:522.659791px;}
.yc3{bottom:524.279790px;}
.y150{bottom:524.819790px;}
.ye9{bottom:526.259789px;}
.ya6{bottom:528.059789px;}
.y40{bottom:528.419789px;}
.y128{bottom:536.699785px;}
.y90{bottom:537.599785px;}
.y10d{bottom:540.659784px;}
.y14f{bottom:541.199784px;}
.yc2{bottom:542.459783px;}
.ye8{bottom:544.259782px;}
.y17{bottom:553.259779px;}
.y127{bottom:554.699778px;}
.y8f{bottom:555.599778px;}
.y14e{bottom:557.759777px;}
.y10c{bottom:558.659777px;}
.yc1{bottom:560.639776px;}
.ye7{bottom:562.259775px;}
.y69{bottom:565.499774px;}
.y16{bottom:569.819772px;}
.y126{bottom:572.699771px;}
.y8e{bottom:573.599771px;}
.y14d{bottom:574.319770px;}
.y10b{bottom:576.659769px;}
.y3f{bottom:577.559769px;}
.yc0{bottom:578.819768px;}
.ye6{bottom:580.439768px;}
.y68{bottom:583.499767px;}
.y125{bottom:590.699764px;}
.y10a{bottom:594.659762px;}
.y3e{bottom:595.559762px;}
.ybf{bottom:596.999761px;}
.ye5{bottom:598.619761px;}
.y67{bottom:601.499759px;}
.y8d{bottom:603.299759px;}
.y14c{bottom:607.259757px;}
.y124{bottom:608.699757px;}
.y109{bottom:612.659755px;}
.y15{bottom:613.199755px;}
.y3d{bottom:613.559755px;}
.ye4{bottom:616.799753px;}
.y66{bottom:619.499752px;}
.y14b{bottom:623.819750px;}
.ybe{bottom:627.239749px;}
.y14{bottom:629.759748px;}
.y108{bottom:630.659748px;}
.y3c{bottom:631.559747px;}
.ye3{bottom:634.979746px;}
.y65{bottom:637.499745px;}
.y14a{bottom:640.199744px;}
.y123{bottom:645.059742px;}
.ybd{bottom:645.239742px;}
.y13{bottom:646.319741px;}
.y8c{bottom:648.479741px;}
.y107{bottom:648.659741px;}
.y3b{bottom:649.559740px;}
.ye2{bottom:652.979739px;}
.y64{bottom:655.499738px;}
.y149{bottom:656.759737px;}
.y12{bottom:662.699735px;}
.ybc{bottom:663.239735px;}
.y8b{bottom:666.479733px;}
.y106{bottom:666.839733px;}
.y3a{bottom:667.559733px;}
.ye1{bottom:670.979732px;}
.y148{bottom:673.319731px;}
.y63{bottom:673.499731px;}
.y11{bottom:679.259728px;}
.ybb{bottom:680.879728px;}
.y8a{bottom:684.479726px;}
.y105{bottom:685.199726px;}
.y39{bottom:685.559726px;}
.ye0{bottom:689.159724px;}
.y147{bottom:689.699724px;}
.y62{bottom:691.499723px;}
.y122{bottom:694.199722px;}
.y10{bottom:695.819722px;}
.y89{bottom:702.479719px;}
.y104{bottom:703.199719px;}
.y38{bottom:703.559719px;}
.y146{bottom:706.259717px;}
.ydf{bottom:707.339717px;}
.y61{bottom:709.499716px;}
.yf{bottom:712.199715px;}
.y88{bottom:720.479712px;}
.y103{bottom:721.199712px;}
.y37{bottom:721.559711px;}
.y145{bottom:722.819711px;}
.yde{bottom:725.519710px;}
.yba{bottom:726.419709px;}
.y60{bottom:727.499709px;}
.ye{bottom:728.759708px;}
.y121{bottom:730.199708px;}
.y87{bottom:738.479705px;}
.y102{bottom:739.199704px;}
.y36{bottom:739.559704px;}
.ydd{bottom:743.519703px;}
.yb9{bottom:744.419702px;}
.yd{bottom:745.319702px;}
.y5f{bottom:745.499702px;}
.y120{bottom:748.199701px;}
.y144{bottom:755.759698px;}
.y86{bottom:756.479697px;}
.y101{bottom:757.199697px;}
.y35{bottom:757.559697px;}
.yc{bottom:761.699695px;}
.yb8{bottom:762.599695px;}
.y5e{bottom:763.499695px;}
.y11f{bottom:766.199694px;}
.y143{bottom:772.319691px;}
.y85{bottom:774.479690px;}
.y100{bottom:775.199690px;}
.y34{bottom:775.559690px;}
.yb{bottom:778.259689px;}
.ydc{bottom:779.879688px;}
.yb7{bottom:780.599688px;}
.y5d{bottom:781.499687px;}
.y11e{bottom:784.199686px;}
.y142{bottom:788.699685px;}
.y84{bottom:792.479683px;}
.yff{bottom:793.199683px;}
.y33{bottom:793.559683px;}
.ya{bottom:794.819682px;}
.ydb{bottom:798.059681px;}
.yb6{bottom:798.599681px;}
.y5c{bottom:799.499680px;}
.y11d{bottom:802.199679px;}
.y141{bottom:805.259678px;}
.y83{bottom:810.479676px;}
.y9{bottom:811.199676px;}
.y32{bottom:811.559675px;}
.yda{bottom:816.239674px;}
.yb5{bottom:816.599673px;}
.y5b{bottom:817.499673px;}
.y11c{bottom:819.839672px;}
.y140{bottom:821.819671px;}
.y82{bottom:828.479669px;}
.yfe{bottom:829.199668px;}
.y31{bottom:829.559668px;}
.yd9{bottom:834.239666px;}
.yb4{bottom:834.599666px;}
.y5a{bottom:835.499666px;}
.y11b{bottom:837.839665px;}
.y13f{bottom:838.199665px;}
.y8{bottom:844.139662px;}
.y81{bottom:846.479661px;}
.yfd{bottom:847.199661px;}
.y30{bottom:847.559661px;}
.yd8{bottom:852.419659px;}
.yb3{bottom:852.779659px;}
.y59{bottom:853.499659px;}
.y13e{bottom:854.759658px;}
.y11a{bottom:856.919657px;}
.y7{bottom:860.159656px;}
.y80{bottom:864.479654px;}
.yfc{bottom:865.199654px;}
.y2f{bottom:865.559654px;}
.yd7{bottom:870.599652px;}
.yb2{bottom:870.779652px;}
.y58{bottom:871.499651px;}
.y6{bottom:877.259649px;}
.y7f{bottom:882.479647px;}
.yfb{bottom:883.199647px;}
.y2e{bottom:883.559647px;}
.yd6{bottom:888.599645px;}
.yb1{bottom:888.779644px;}
.y57{bottom:889.499644px;}
.y13d{bottom:889.859644px;}
.y7e{bottom:900.659640px;}
.yfa{bottom:901.199640px;}
.y2d{bottom:901.559639px;}
.yd5{bottom:906.779637px;}
.yb0{bottom:906.959637px;}
.y56{bottom:907.499637px;}
.y5{bottom:908.939636px;}
.y7d{bottom:918.839632px;}
.yf9{bottom:919.199632px;}
.y2c{bottom:919.559632px;}
.yd4{bottom:924.959630px;}
.yaf{bottom:925.139630px;}
.y55{bottom:925.499630px;}
.y7c{bottom:937.019625px;}
.yf8{bottom:937.199625px;}
.y2b{bottom:937.559625px;}
.y13c{bottom:938.819624px;}
.y4{bottom:942.059623px;}
.yd3{bottom:943.139623px;}
.yae{bottom:943.319623px;}
.y54{bottom:943.499623px;}
.y7b{bottom:955.199618px;}
.y2a{bottom:955.559618px;}
.y13b{bottom:961.139616px;}
.yd2{bottom:961.319615px;}
.y53{bottom:961.499615px;}
.ya5{bottom:969.059612px;}
.y139{bottom:971.759611px;}
.yf7{bottom:973.199611px;}
.y7a{bottom:973.379611px;}
.y29{bottom:973.559611px;}
.y3{bottom:974.639610px;}
.y13a{bottom:977.699609px;}
.y52{bottom:979.499608px;}
.y138{bottom:988.319605px;}
.ya4{bottom:988.859604px;}
.yf6{bottom:991.199604px;}
.y28{bottom:991.559603px;}
.y2{bottom:992.639603px;}
.y51{bottom:997.499601px;}
.ya3{bottom:1007.399597px;}
.y27{bottom:1009.559596px;}
.y1{bottom:1019.639592px;}
.y137{bottom:1023.419591px;}
.ya2{bottom:1027.199589px;}
.y50{bottom:1027.379589px;}
.y26{bottom:1027.559589px;}
.h8{height:0.000000px;}
.ha{height:24.767990px;}
.h9{height:34.395106px;}
.h4{height:36.071986px;}
.h2{height:37.151985px;}
.h5{height:38.501985px;}
.hb{height:39.919664px;}
.h3{height:41.114864px;}
.h7{height:42.608863px;}
.h6{height:51.335979px;}
.h1{height:60.063096px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:187.019925px;}
.xe{left:190.079924px;}
.x15{left:191.519923px;}
.x1{left:199.259920px;}
.x4{left:202.499766px;}
.xb{left:204.120812px;}
.x13{left:212.579565px;}
.x9{left:214.019976px;}
.x5{left:228.059909px;}
.x7{left:229.499083px;}
.xc{left:231.299907px;}
.xf{left:236.519905px;}
.xa{left:241.020027px;}
.x6{left:251.999674px;}
.x10{left:254.519898px;}
.xd{left:258.300108px;}
.x2{left:308.339821px;}
.x11{left:342.359863px;}
.x12{left:346.859861px;}
.x3{left:446.399821px;}
.x14{left:635.579746px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016572pt;}
.lsc{letter-spacing:0.147747pt;}
.lsd{letter-spacing:0.168228pt;}
.ls8{letter-spacing:0.242080pt;}
.lsb{letter-spacing:2.729829pt;}
.ls9{letter-spacing:3.370239pt;}
.lsa{letter-spacing:7.212580pt;}
.ls7{letter-spacing:7.852957pt;}
.ls6{letter-spacing:21.735085pt;}
.ls5{letter-spacing:56.956884pt;}
.ls4{letter-spacing:69.764345pt;}
.ls3{letter-spacing:85.308766pt;}
.ls1{letter-spacing:126.292749pt;}
.ws4{word-spacing:-32.019734pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.279995pt;}
.ws0{word-spacing:-11.999995pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-11.525347pt;}
._0{margin-left:-0.949168pt;}
._1{width:0.992404pt;}
._2{width:2.491639pt;}
._3{width:3.455343pt;}
._7{width:4.968842pt;}
._6{width:6.035078pt;}
._c{width:7.312157pt;}
._4{width:8.548631pt;}
._5{width:9.926532pt;}
._b{width:10.824785pt;}
._d{width:12.204542pt;}
._13{width:13.209731pt;}
._e{width:14.266125pt;}
._11{width:15.204886pt;}
._9{width:16.330210pt;}
._a{width:17.387155pt;}
._f{width:24.043036pt;}
._10{width:25.034754pt;}
._8{width:27.988076pt;}
._12{width:928.095629pt;}
.fs5{font-size:31.999987pt;}
.fs4{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs3{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y15c{bottom:199.626587pt;}
.y15b{bottom:204.906585pt;}
.yad{bottom:205.066585pt;}
.ya1{bottom:205.866584pt;}
.yd1{bottom:206.986584pt;}
.y79{bottom:211.946582pt;}
.y4f{bottom:213.386581pt;}
.y15a{bottom:214.346581pt;}
.yf5{bottom:215.786580pt;}
.y159{bottom:219.626579pt;}
.yac{bottom:221.066578pt;}
.ya0{bottom:221.866578pt;}
.yd0{bottom:222.986577pt;}
.y25{bottom:223.946577pt;}
.y78{bottom:227.946575pt;}
.y4e{bottom:229.386575pt;}
.yf4{bottom:231.786574pt;}
.yab{bottom:237.066572pt;}
.y9f{bottom:237.866572pt;}
.ycf{bottom:238.986571pt;}
.y24{bottom:239.946571pt;}
.y77{bottom:243.946569pt;}
.y4d{bottom:245.386569pt;}
.yf3{bottom:247.786568pt;}
.yaa{bottom:252.746566pt;}
.y136{bottom:253.066565pt;}
.y9e{bottom:253.546565pt;}
.yce{bottom:254.666565pt;}
.y23{bottom:255.946564pt;}
.y76{bottom:259.946563pt;}
.y4c{bottom:261.386562pt;}
.yf2{bottom:263.786561pt;}
.y135{bottom:269.066559pt;}
.y9d{bottom:269.866559pt;}
.y22{bottom:271.946558pt;}
.y75{bottom:275.946556pt;}
.y4b{bottom:277.386556pt;}
.yf1{bottom:279.786555pt;}
.y134{bottom:285.066553pt;}
.y9c{bottom:285.866552pt;}
.y21{bottom:287.946551pt;}
.y119{bottom:288.586551pt;}
.y74{bottom:291.946550pt;}
.y4a{bottom:293.386549pt;}
.ycd{bottom:294.986549pt;}
.yf0{bottom:295.786548pt;}
.ya9{bottom:298.666547pt;}
.y133{bottom:301.066546pt;}
.y9b{bottom:301.866546pt;}
.y20{bottom:303.946545pt;}
.y118{bottom:304.586545pt;}
.y73{bottom:307.946543pt;}
.y49{bottom:309.386543pt;}
.ycc{bottom:310.986542pt;}
.yef{bottom:311.786542pt;}
.ya8{bottom:314.666541pt;}
.y132{bottom:317.066540pt;}
.y9a{bottom:317.866540pt;}
.y158{bottom:318.666539pt;}
.y1f{bottom:319.946539pt;}
.y117{bottom:320.586538pt;}
.y72{bottom:323.946537pt;}
.y48{bottom:325.386537pt;}
.ycb{bottom:326.986536pt;}
.yee{bottom:327.786536pt;}
.ya7{bottom:331.466534pt;}
.y131{bottom:333.066533pt;}
.y99{bottom:333.866533pt;}
.y157{bottom:334.506533pt;}
.y1e{bottom:335.946532pt;}
.y116{bottom:336.586532pt;}
.y71{bottom:339.946531pt;}
.y47{bottom:341.386530pt;}
.yca{bottom:342.986529pt;}
.yed{bottom:343.786529pt;}
.y130{bottom:349.066527pt;}
.y98{bottom:349.866527pt;}
.y1d{bottom:351.946526pt;}
.y115{bottom:352.586526pt;}
.y70{bottom:355.946524pt;}
.y46{bottom:357.386524pt;}
.yc9{bottom:358.986523pt;}
.yec{bottom:359.786523pt;}
.y156{bottom:363.786521pt;}
.y12f{bottom:365.066521pt;}
.y97{bottom:365.866520pt;}
.y1c{bottom:367.946519pt;}
.y114{bottom:368.586519pt;}
.y6f{bottom:371.946518pt;}
.y45{bottom:373.386517pt;}
.yc8{bottom:374.986517pt;}
.y155{bottom:378.506515pt;}
.y12e{bottom:381.066514pt;}
.y96{bottom:381.866514pt;}
.y1b{bottom:383.946513pt;}
.y113{bottom:384.586513pt;}
.y6e{bottom:387.946511pt;}
.y44{bottom:389.386511pt;}
.yc7{bottom:390.986510pt;}
.yeb{bottom:392.106510pt;}
.y154{bottom:393.066509pt;}
.y12d{bottom:397.066508pt;}
.y95{bottom:397.866508pt;}
.y1a{bottom:399.946507pt;}
.y112{bottom:400.586506pt;}
.y6d{bottom:403.946505pt;}
.y43{bottom:405.386505pt;}
.y153{bottom:407.466504pt;}
.y12c{bottom:413.066501pt;}
.y94{bottom:413.866501pt;}
.y19{bottom:415.946500pt;}
.y111{bottom:416.586500pt;}
.yc6{bottom:417.866500pt;}
.y6c{bottom:419.946499pt;}
.y42{bottom:421.386498pt;}
.y152{bottom:422.186498pt;}
.y12b{bottom:429.066495pt;}
.y93{bottom:429.866495pt;}
.y110{bottom:432.586494pt;}
.yc5{bottom:433.866493pt;}
.y6b{bottom:435.946492pt;}
.y151{bottom:437.066492pt;}
.y41{bottom:437.386492pt;}
.y12a{bottom:445.066489pt;}
.y92{bottom:445.866488pt;}
.y18{bottom:448.266487pt;}
.y10f{bottom:448.586487pt;}
.yc4{bottom:450.026487pt;}
.yea{bottom:451.786486pt;}
.y129{bottom:461.066482pt;}
.y91{bottom:461.866482pt;}
.y6a{bottom:462.506482pt;}
.y10e{bottom:464.586481pt;}
.yc3{bottom:466.026480pt;}
.y150{bottom:466.506480pt;}
.ye9{bottom:467.786480pt;}
.ya6{bottom:469.386479pt;}
.y40{bottom:469.706479pt;}
.y128{bottom:477.066476pt;}
.y90{bottom:477.866476pt;}
.y10d{bottom:480.586474pt;}
.y14f{bottom:481.066474pt;}
.yc2{bottom:482.186474pt;}
.ye8{bottom:483.786473pt;}
.y17{bottom:491.786470pt;}
.y127{bottom:493.066469pt;}
.y8f{bottom:493.866469pt;}
.y14e{bottom:495.786468pt;}
.y10c{bottom:496.586468pt;}
.yc1{bottom:498.346467pt;}
.ye7{bottom:499.786467pt;}
.y69{bottom:502.666466pt;}
.y16{bottom:506.506464pt;}
.y126{bottom:509.066463pt;}
.y8e{bottom:509.866463pt;}
.y14d{bottom:510.506462pt;}
.y10b{bottom:512.586462pt;}
.y3f{bottom:513.386461pt;}
.yc0{bottom:514.506461pt;}
.ye6{bottom:515.946460pt;}
.y68{bottom:518.666459pt;}
.y125{bottom:525.066457pt;}
.y10a{bottom:528.586455pt;}
.y3e{bottom:529.386455pt;}
.ybf{bottom:530.666454pt;}
.ye5{bottom:532.106454pt;}
.y67{bottom:534.666453pt;}
.y8d{bottom:536.266452pt;}
.y14c{bottom:539.786451pt;}
.y124{bottom:541.066450pt;}
.y109{bottom:544.586449pt;}
.y15{bottom:545.066449pt;}
.y3d{bottom:545.386449pt;}
.ye4{bottom:548.266447pt;}
.y66{bottom:550.666446pt;}
.y14b{bottom:554.506445pt;}
.ybe{bottom:557.546444pt;}
.y14{bottom:559.786443pt;}
.y108{bottom:560.586442pt;}
.y3c{bottom:561.386442pt;}
.ye3{bottom:564.426441pt;}
.y65{bottom:566.666440pt;}
.y14a{bottom:569.066439pt;}
.y123{bottom:573.386437pt;}
.ybd{bottom:573.546437pt;}
.y13{bottom:574.506437pt;}
.y8c{bottom:576.426436pt;}
.y107{bottom:576.586436pt;}
.y3b{bottom:577.386436pt;}
.ye2{bottom:580.426434pt;}
.y64{bottom:582.666434pt;}
.y149{bottom:583.786433pt;}
.y12{bottom:589.066431pt;}
.ybc{bottom:589.546431pt;}
.y8b{bottom:592.426430pt;}
.y106{bottom:592.746430pt;}
.y3a{bottom:593.386429pt;}
.ye1{bottom:596.426428pt;}
.y148{bottom:598.506427pt;}
.y63{bottom:598.666427pt;}
.y11{bottom:603.786425pt;}
.ybb{bottom:605.226425pt;}
.y8a{bottom:608.426423pt;}
.y105{bottom:609.066423pt;}
.y39{bottom:609.386423pt;}
.ye0{bottom:612.586422pt;}
.y147{bottom:613.066421pt;}
.y62{bottom:614.666421pt;}
.y122{bottom:617.066420pt;}
.y10{bottom:618.506419pt;}
.y89{bottom:624.426417pt;}
.y104{bottom:625.066417pt;}
.y38{bottom:625.386417pt;}
.y146{bottom:627.786416pt;}
.ydf{bottom:628.746415pt;}
.y61{bottom:630.666414pt;}
.yf{bottom:633.066413pt;}
.y88{bottom:640.426410pt;}
.y103{bottom:641.066410pt;}
.y37{bottom:641.386410pt;}
.y145{bottom:642.506410pt;}
.yde{bottom:644.906409pt;}
.yba{bottom:645.706408pt;}
.y60{bottom:646.666408pt;}
.ye{bottom:647.786408pt;}
.y121{bottom:649.066407pt;}
.y87{bottom:656.426404pt;}
.y102{bottom:657.066404pt;}
.y36{bottom:657.386404pt;}
.ydd{bottom:660.906402pt;}
.yb9{bottom:661.706402pt;}
.yd{bottom:662.506402pt;}
.y5f{bottom:662.666402pt;}
.y120{bottom:665.066401pt;}
.y144{bottom:671.786398pt;}
.y86{bottom:672.426398pt;}
.y101{bottom:673.066397pt;}
.y35{bottom:673.386397pt;}
.yc{bottom:677.066396pt;}
.yb8{bottom:677.866396pt;}
.y5e{bottom:678.666395pt;}
.y11f{bottom:681.066394pt;}
.y143{bottom:686.506392pt;}
.y85{bottom:688.426391pt;}
.y100{bottom:689.066391pt;}
.y34{bottom:689.386391pt;}
.yb{bottom:691.786390pt;}
.ydc{bottom:693.226389pt;}
.yb7{bottom:693.866389pt;}
.y5d{bottom:694.666389pt;}
.y11e{bottom:697.066388pt;}
.y142{bottom:701.066386pt;}
.y84{bottom:704.426385pt;}
.yff{bottom:705.066385pt;}
.y33{bottom:705.386385pt;}
.ya{bottom:706.506384pt;}
.ydb{bottom:709.386383pt;}
.yb6{bottom:709.866383pt;}
.y5c{bottom:710.666382pt;}
.y11d{bottom:713.066381pt;}
.y141{bottom:715.786380pt;}
.y83{bottom:720.426378pt;}
.y9{bottom:721.066378pt;}
.y32{bottom:721.386378pt;}
.yda{bottom:725.546376pt;}
.yb5{bottom:725.866376pt;}
.y5b{bottom:726.666376pt;}
.y11c{bottom:728.746375pt;}
.y140{bottom:730.506374pt;}
.y82{bottom:736.426372pt;}
.yfe{bottom:737.066372pt;}
.y31{bottom:737.386372pt;}
.yd9{bottom:741.546370pt;}
.yb4{bottom:741.866370pt;}
.y5a{bottom:742.666370pt;}
.y11b{bottom:744.746369pt;}
.y13f{bottom:745.066369pt;}
.y8{bottom:750.346367pt;}
.y81{bottom:752.426366pt;}
.yfd{bottom:753.066365pt;}
.y30{bottom:753.386365pt;}
.yd8{bottom:757.706364pt;}
.yb3{bottom:758.026363pt;}
.y59{bottom:758.666363pt;}
.y13e{bottom:759.786363pt;}
.y11a{bottom:761.706362pt;}
.y7{bottom:764.586361pt;}
.y80{bottom:768.426359pt;}
.yfc{bottom:769.066359pt;}
.y2f{bottom:769.386359pt;}
.yd7{bottom:773.866357pt;}
.yb2{bottom:774.026357pt;}
.y58{bottom:774.666357pt;}
.y6{bottom:779.786355pt;}
.y7f{bottom:784.426353pt;}
.yfb{bottom:785.066353pt;}
.y2e{bottom:785.386353pt;}
.yd6{bottom:789.866351pt;}
.yb1{bottom:790.026351pt;}
.y57{bottom:790.666350pt;}
.y13d{bottom:790.986350pt;}
.y7e{bottom:800.586346pt;}
.yfa{bottom:801.066346pt;}
.y2d{bottom:801.386346pt;}
.yd5{bottom:806.026344pt;}
.yb0{bottom:806.186344pt;}
.y56{bottom:806.666344pt;}
.y5{bottom:807.946343pt;}
.y7d{bottom:816.746340pt;}
.yf9{bottom:817.066340pt;}
.y2c{bottom:817.386340pt;}
.yd4{bottom:822.186338pt;}
.yaf{bottom:822.346338pt;}
.y55{bottom:822.666338pt;}
.y7c{bottom:832.906334pt;}
.yf8{bottom:833.066333pt;}
.y2b{bottom:833.386333pt;}
.y13c{bottom:834.506333pt;}
.y4{bottom:837.386332pt;}
.yd3{bottom:838.346331pt;}
.yae{bottom:838.506331pt;}
.y54{bottom:838.666331pt;}
.y7b{bottom:849.066327pt;}
.y2a{bottom:849.386327pt;}
.y13b{bottom:854.346325pt;}
.yd2{bottom:854.506325pt;}
.y53{bottom:854.666325pt;}
.ya5{bottom:861.386322pt;}
.y139{bottom:863.786321pt;}
.yf7{bottom:865.066321pt;}
.y7a{bottom:865.226321pt;}
.y29{bottom:865.386321pt;}
.y3{bottom:866.346320pt;}
.y13a{bottom:869.066319pt;}
.y52{bottom:870.666318pt;}
.y138{bottom:878.506315pt;}
.ya4{bottom:878.986315pt;}
.yf6{bottom:881.066314pt;}
.y28{bottom:881.386314pt;}
.y2{bottom:882.346314pt;}
.y51{bottom:886.666312pt;}
.ya3{bottom:895.466308pt;}
.y27{bottom:897.386308pt;}
.y1{bottom:906.346304pt;}
.y137{bottom:909.706303pt;}
.ya2{bottom:913.066301pt;}
.y50{bottom:913.226301pt;}
.y26{bottom:913.386301pt;}
.h8{height:0.000000pt;}
.ha{height:22.015991pt;}
.h9{height:30.573428pt;}
.h4{height:32.063987pt;}
.h2{height:33.023987pt;}
.h5{height:34.223986pt;}
.hb{height:35.484146pt;}
.h3{height:36.546545pt;}
.h7{height:37.874545pt;}
.h6{height:45.631982pt;}
.h1{height:53.389419pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:166.239934pt;}
.xe{left:168.959932pt;}
.x15{left:170.239932pt;}
.x1{left:177.119929pt;}
.x4{left:179.999792pt;}
.xb{left:181.440722pt;}
.x13{left:188.959613pt;}
.x9{left:190.239979pt;}
.x5{left:202.719919pt;}
.x7{left:203.999185pt;}
.xc{left:205.599918pt;}
.xf{left:210.239916pt;}
.xa{left:214.240024pt;}
.x6{left:223.999710pt;}
.x10{left:226.239910pt;}
.xd{left:229.600096pt;}
.x2{left:274.079841pt;}
.x11{left:304.319878pt;}
.x12{left:308.319877pt;}
.x3{left:396.799841pt;}
.x14{left:564.959774pt;}
}




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