
    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_0f37775d2a1054bb45224c0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_2264ea2bc854a580c983b3ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_49f07b8bfe499691a202e0d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_76cb3ff4cc43bfb2f2889718.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_2c6179d25d5669c3633bc26b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.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:ff6;src:url('chunks/assets/font_bff4bb2f0263295e97c35e80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_15e25f2d7f905c8c68ef79cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_a5c1ac519e8592a53293ec0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_0f537058c8d2772747db27de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_343401d22628ceabdeb6105f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1{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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m6{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.019822px;}
.lsb{letter-spacing:0.186480px;}
.ls9{letter-spacing:0.907618px;}
.ls5{letter-spacing:2.350628px;}
.ls1{letter-spacing:3.071069px;}
.ls0{letter-spacing:3.791510px;}
.ls2{letter-spacing:5.220386px;}
.ls3{letter-spacing:8.120162px;}
.ls4{letter-spacing:10.983916px;}
.ls7{letter-spacing:46.073405px;}
.ls8{letter-spacing:64.084760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-44.819888px;}
.ws5{word-spacing:-35.855910px;}
.ws7{word-spacing:-16.579780px;}
.ws6{word-spacing:-16.559959px;}
.ws1{word-spacing:-14.939963px;}
.ws3{word-spacing:-9.719976px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:174.369891px;}
._0{margin-left:-1.168315px;}
._1{width:1.038295px;}
._d{width:2.795464px;}
._c{width:3.828711px;}
._a{width:5.247258px;}
._9{width:6.358454px;}
._b{width:7.455647px;}
._8{width:8.937898px;}
._e{width:10.865015px;}
._f{width:11.865538px;}
._10{width:13.211903px;}
._12{width:16.035663px;}
._13{width:17.690784px;}
._11{width:20.122816px;}
._15{width:22.255687px;}
._14{width:23.928189px;}
._17{width:25.518624px;}
._16{width:32.043671px;}
._3{width:33.149860px;}
._2{width:43.970813px;}
._4{width:58.211133px;}
._19{width:109.838106px;}
._1b{width:133.721177px;}
._6{width:146.816449px;}
._1a{width:174.640050px;}
._18{width:192.459794px;}
._7{width:201.192294px;}
._5{width:473.805675px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.239969px;}
.fs9{font-size:17.999955px;}
.fs7{font-size:23.759941px;}
.fs8{font-size:30.239924px;}
.fsb{font-size:35.999910px;}
.fs6{font-size:38.879903px;}
.fs4{font-size:41.759896px;}
.fs0{font-size:48.239879px;}
.fs1{font-size:59.759851px;}
.fs5{font-size:66.239834px;}
.fs2{font-size:71.999820px;}
.fs3{font-size:95.759761px;}
.y0{bottom:0.000000px;}
.ydc{bottom:3.957212px;}
.yec{bottom:3.958102px;}
.y5{bottom:71.762521px;}
.y7{bottom:74.460819px;}
.y6{bottom:88.321129px;}
.y4{bottom:92.821118px;}
.y6d{bottom:116.402109px;}
.yd5{bottom:119.640601px;}
.y9e{bottom:121.262547px;}
.y6c{bottom:123.420141px;}
.y45{bottom:128.099530px;}
.yd4{bottom:138.361304px;}
.y6b{bottom:138.541604px;}
.y6a{bottom:138.541634px;}
.y9d{bottom:139.798601px;}
.y69{bottom:142.861443px;}
.y44{bottom:146.820233px;}
.yfd{bottom:151.321122px;}
.yd3{bottom:157.082007px;}
.y9c{bottom:158.519304px;}
.y43{bottom:165.540936px;}
.yfc{bottom:169.861975px;}
.yd2{bottom:175.618061px;}
.y9b{bottom:176.879558px;}
.y42{bottom:184.081490px;}
.yfb{bottom:188.402529px;}
.y9a{bottom:192.541019px;}
.y99{bottom:202.435594px;}
.y41{bottom:202.797693px;}
.yd1{bottom:205.501136px;}
.yfa{bottom:208.199929px;}
.y98{bottom:221.156297px;}
.y40{bottom:221.338247px;}
.yd0{bottom:224.041690px;}
.yf9{bottom:226.920633px;}
.y97{bottom:239.696851px;}
.y3f{bottom:240.058950px;}
.ycf{bottom:242.582244px;}
.yf8{bottom:245.280887px;}
.y96{bottom:258.417554px;}
.y3e{bottom:258.599503px;}
.yce{bottom:264.902038px;}
.yf7{bottom:265.081737px;}
.y95{bottom:276.958108px;}
.y3d{bottom:277.320207px;}
.yf6{bottom:283.617791px;}
.ycd{bottom:283.618241px;}
.y94{bottom:295.678811px;}
.y3c{bottom:295.860760px;}
.ycc{bottom:302.338944px;}
.yf5{bottom:303.420141px;}
.y93{bottom:314.399514px;}
.y3a{bottom:314.581914px;}
.y3b{bottom:318.360704px;}
.ycb{bottom:321.059647px;}
.yf4{bottom:321.960695px;}
.y92{bottom:332.935568px;}
.y39{bottom:333.298117px;}
.yca{bottom:339.419901px;}
.yf3{bottom:341.761696px;}
.y91{bottom:351.656271px;}
.y38{bottom:351.838670px;}
.yf2{bottom:360.117600px;}
.yc9{bottom:361.919845px;}
.y90{bottom:370.196825px;}
.y37{bottom:370.198925px;}
.yf1{bottom:379.919950px;}
.yc8{bottom:380.640548px;}
.y36{bottom:388.559179px;}
.y8f{bottom:388.917528px;}
.yf0{bottom:398.460504px;}
.yc7{bottom:399.181102px;}
.y35{bottom:407.279882px;}
.y8e{bottom:407.458081px;}
.yc6{bottom:417.721656px;}
.yef{bottom:418.261354px;}
.y32{bottom:425.819685px;}
.y34{bottom:425.820435px;}
.y8d{bottom:426.178785px;}
.y33{bottom:429.598926px;}
.yee{bottom:436.797408px;}
.yc5{bottom:440.041450px;}
.y31{bottom:444.540389px;}
.y8c{bottom:444.719338px;}
.yeb{bottom:455.159250px;}
.yed{bottom:456.960358px;}
.yc4{bottom:458.762153px;}
.yea{bottom:458.937353px;}
.y30{bottom:463.080942px;}
.y8b{bottom:463.435541px;}
.ye9{bottom:476.041360px;}
.yc3{bottom:477.478356px;}
.y2f{bottom:481.797146px;}
.y8a{bottom:482.156245px;}
.ye8{bottom:494.762063px;}
.yc2{bottom:496.018910px;}
.y2e{bottom:500.337699px;}
.y89{bottom:500.696798px;}
.ye7{bottom:513.298117px;}
.ybf{bottom:518.336454px;}
.yc1{bottom:518.338704px;}
.y2d{bottom:519.058402px;}
.y88{bottom:519.417501px;}
.yc0{bottom:522.117195px;}
.ye6{bottom:532.018820px;}
.ybe{bottom:537.057157px;}
.y2c{bottom:537.779106px;}
.y87{bottom:537.958055px;}
.y68{bottom:541.738646px;}
.ye5{bottom:550.739523px;}
.ybd{bottom:555.597711px;}
.y2b{bottom:556.319659px;}
.y86{bottom:556.678758px;}
.y67{bottom:557.581606px;}
.y66{bottom:567.657681px;}
.ye2{bottom:569.278877px;}
.ye4{bottom:569.280077px;}
.ye3{bottom:573.058567px;}
.ybc{bottom:574.318414px;}
.y2a{bottom:575.040362px;}
.y85{bottom:575.219312px;}
.y65{bottom:586.198235px;}
.ye1{bottom:587.999580px;}
.ybb{bottom:593.039117px;}
.y29{bottom:593.400616px;}
.y84{bottom:593.935515px;}
.y64{bottom:604.918938px;}
.ye0{bottom:606.540134px;}
.yba{bottom:611.579671px;}
.y28{bottom:611.760871px;}
.y83{bottom:612.476069px;}
.y63{bottom:623.639641px;}
.ydf{bottom:625.260837px;}
.yb9{bottom:630.115725px;}
.y27{bottom:630.296924px;}
.y82{bottom:631.196772px;}
.y119{bottom:638.400804px;}
.y62{bottom:641.999895px;}
.yde{bottom:643.796891px;}
.y26{bottom:646.319884px;}
.y81{bottom:649.917475px;}
.yb8{bottom:652.435519px;}
.y25{bottom:656.400609px;}
.y118{bottom:656.936858px;}
.y61{bottom:658.198355px;}
.ydb{bottom:661.262625px;}
.ydd{bottom:663.058342px;}
.yda{bottom:665.039837px;}
.y80{bottom:668.458029px;}
.y60{bottom:669.540276px;}
.yb7{bottom:671.156222px;}
.y24{bottom:675.116212px;}
.y117{bottom:675.656811px;}
.y116{bottom:675.657111px;}
.yd9{bottom:681.778746px;}
.y7f{bottom:687.178732px;}
.y5f{bottom:688.260979px;}
.yb6{bottom:689.876925px;}
.y23{bottom:693.656916px;}
.y115{bottom:694.197665px;}
.yd8{bottom:700.139000px;}
.y7e{bottom:705.719286px;}
.y5e{bottom:706.797033px;}
.yb5{bottom:708.417479px;}
.y22{bottom:712.377619px;}
.y114{bottom:712.738218px;}
.yd7{bottom:718.859703px;}
.y7d{bottom:724.435489px;}
.y5d{bottom:725.517736px;}
.yb4{bottom:730.737273px;}
.y21{bottom:730.918173px;}
.y113{bottom:732.540869px;}
.yd6{bottom:734.338164px;}
.y7c{bottom:742.976043px;}
.y5c{bottom:744.238439px;}
.yb3{bottom:749.457976px;}
.y20{bottom:749.638876px;}
.y112{bottom:750.901123px;}
.y7b{bottom:761.696746px;}
.y5b{bottom:762.778993px;}
.yb2{bottom:767.998530px;}
.y1f{bottom:768.359729px;}
.y111{bottom:770.697473px;}
.y7a{bottom:780.237299px;}
.y5a{bottom:781.499696px;}
.yb1{bottom:786.539084px;}
.y1e{bottom:786.900283px;}
.y110{bottom:789.238027px;}
.y79{bottom:798.958003px;}
.y59{bottom:800.040250px;}
.y1d{bottom:805.615886px;}
.yb0{bottom:808.858878px;}
.y10f{bottom:809.040377px;}
.y78{bottom:817.678706px;}
.y58{bottom:818.760953px;}
.y1c{bottom:824.156440px;}
.y1a{bottom:824.157190px;}
.yaf{bottom:827.579581px;}
.y10e{bottom:827.580931px;}
.y1b{bottom:827.936430px;}
.y77{bottom:836.219259px;}
.y57{bottom:837.297007px;}
.y19{bottom:842.878043px;}
.yae{bottom:846.295784px;}
.y10d{bottom:847.377582px;}
.y76{bottom:854.935463px;}
.y56{bottom:856.017710px;}
.y18{bottom:861.418596px;}
.yad{bottom:865.016487px;}
.y10c{bottom:865.737836px;}
.y75{bottom:873.476016px;}
.y55{bottom:874.558264px;}
.y17{bottom:880.139300px;}
.yac{bottom:883.376742px;}
.y10b{bottom:885.540186px;}
.y74{bottom:892.196720px;}
.y54{bottom:893.278967px;}
.y16{bottom:898.680003px;}
.y10a{bottom:904.080740px;}
.yab{bottom:905.876685px;}
.y73{bottom:910.737273px;}
.y53{bottom:911.639221px;}
.y15{bottom:917.400706px;}
.y109{bottom:923.878140px;}
.yaa{bottom:924.597389px;}
.y52{bottom:927.837680px;}
.y72{bottom:929.457976px;}
.y14{bottom:935.760961px;}
.y51{bottom:939.359002px;}
.y108{bottom:942.598843px;}
.ya9{bottom:943.137942px;}
.y71{bottom:947.998530px;}
.y13{bottom:953.936715px;}
.y50{bottom:957.899555px;}
.y107{bottom:960.959098px;}
.ya8{bottom:961.858645px;}
.y70{bottom:966.719233px;}
.y12{bottom:972.296969px;}
.y4f{bottom:976.615758px;}
.ya7{bottom:980.399199px;}
.y106{bottom:980.759948px;}
.y6f{bottom:985.435436px;}
.y10{bottom:990.656023px;}
.y11{bottom:990.837523px;}
.y4e{bottom:994.976013px;}
.y105{bottom:999.296002px;}
.ya6{bottom:1002.718993px;}
.y6e{bottom:1003.975990px;}
.yf{bottom:1009.557476px;}
.y4d{bottom:1011.178972px;}
.y104{bottom:1019.097902px;}
.ya5{bottom:1021.435196px;}
.y4c{bottom:1022.696693px;}
.yd{bottom:1028.458929px;}
.ye{bottom:1032.958918px;}
.y103{bottom:1037.818605px;}
.ya4{bottom:1039.975750px;}
.y4b{bottom:1041.237247px;}
.y102{bottom:1056.178860px;}
.ya3{bottom:1058.696453px;}
.y4a{bottom:1059.957950px;}
.y101{bottom:1075.976710px;}
.yc{bottom:1077.237307px;}
.ya2{bottom:1077.417156px;}
.y49{bottom:1078.498504px;}
.y100{bottom:1094.517264px;}
.ya1{bottom:1095.957710px;}
.yb{bottom:1096.678158px;}
.y48{bottom:1097.219207px;}
.yff{bottom:1114.318414px;}
.ya0{bottom:1114.678413px;}
.y47{bottom:1115.759761px;}
.ya{bottom:1125.655686px;}
.yfe{bottom:1132.678668px;}
.y9f{bottom:1133.038667px;}
.y46{bottom:1134.115665px;}
.y3{bottom:1163.637901px;}
.y2{bottom:1177.498211px;}
.y9{bottom:1179.295207px;}
.y1{bottom:1191.358522px;}
.y8{bottom:1193.155517px;}
.h11{height:8.911032px;}
.hf{height:13.104459px;}
.h15{height:15.837862px;}
.h16{height:15.842250px;}
.hd{height:17.297886px;}
.h12{height:17.321090px;}
.he{height:22.015492px;}
.h13{height:26.208919px;}
.hb{height:28.305632px;}
.h4{height:32.670270px;}
.h6{height:33.399760px;}
.h1{height:33.494682px;}
.h8{height:35.167061px;}
.h10{height:43.360907px;}
.h2{height:43.506805px;}
.hc{height:43.509205px;}
.h9{height:43.565165px;}
.h17{height:45.992698px;}
.h14{height:47.796209px;}
.ha{height:47.868630px;}
.h3{height:49.992063px;}
.h7{height:52.488150px;}
.h5{height:69.809240px;}
.h0{height:1263.000000px;}
.w1{width:9.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.999798px;}
.x14{left:84.779038px;}
.x18{left:89.279027px;}
.x3{left:91.801570px;}
.xc{left:96.121410px;}
.x19{left:104.040563px;}
.xd{left:107.999620px;}
.x8{left:255.959360px;}
.x6{left:280.620798px;}
.x1e{left:297.359257px;}
.x7{left:300.598335px;}
.x15{left:321.120697px;}
.x1b{left:333.900665px;}
.x1c{left:341.279147px;}
.x16{left:377.459056px;}
.x17{left:386.279034px;}
.x9{left:389.337527px;}
.xa{left:397.800505px;}
.x1a{left:418.498954px;}
.x1d{left:427.678931px;}
.x10{left:446.940383px;}
.x11{left:454.318864px;}
.xb{left:483.660291px;}
.x4{left:523.980190px;}
.xe{left:563.400091px;}
.xf{left:573.837065px;}
.x5{left:585.171403px;}
.x13{left:686.336784px;}
.x2{left:787.138032px;}
.x12{left:804.777988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017619pt;}
.lsb{letter-spacing:0.165760pt;}
.ls9{letter-spacing:0.806771pt;}
.ls5{letter-spacing:2.089447pt;}
.ls1{letter-spacing:2.729839pt;}
.ls0{letter-spacing:3.370231pt;}
.ls2{letter-spacing:4.640343pt;}
.ls3{letter-spacing:7.217922pt;}
.ls4{letter-spacing:9.763481pt;}
.ls7{letter-spacing:40.954138pt;}
.ls8{letter-spacing:56.964231pt;}
.ws2{word-spacing:-39.839900pt;}
.ws5{word-spacing:-31.871920pt;}
.ws7{word-spacing:-14.737582pt;}
.ws6{word-spacing:-14.719963pt;}
.ws1{word-spacing:-13.279967pt;}
.ws3{word-spacing:-8.639978pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:154.995458pt;}
._0{margin-left:-1.038502pt;}
._1{width:0.922928pt;}
._d{width:2.484857pt;}
._c{width:3.403299pt;}
._a{width:4.664229pt;}
._9{width:5.651959pt;}
._b{width:6.627242pt;}
._8{width:7.944798pt;}
._e{width:9.657791pt;}
._f{width:10.547145pt;}
._10{width:11.743914pt;}
._12{width:14.253922pt;}
._13{width:15.725141pt;}
._11{width:17.886948pt;}
._15{width:19.782833pt;}
._14{width:21.269502pt;}
._17{width:22.683222pt;}
._16{width:28.483263pt;}
._3{width:29.466542pt;}
._2{width:39.085167pt;}
._4{width:51.743230pt;}
._19{width:97.633872pt;}
._1b{width:118.863269pt;}
._6{width:130.503510pt;}
._1a{width:155.235600pt;}
._18{width:171.075372pt;}
._7{width:178.837595pt;}
._5{width:421.160600pt;}
.fsa{font-size:10.879973pt;}
.fs9{font-size:15.999960pt;}
.fs7{font-size:21.119947pt;}
.fs8{font-size:26.879933pt;}
.fsb{font-size:31.999920pt;}
.fs6{font-size:34.559914pt;}
.fs4{font-size:37.119907pt;}
.fs0{font-size:42.879893pt;}
.fs1{font-size:53.119867pt;}
.fs5{font-size:58.879853pt;}
.fs2{font-size:63.999840pt;}
.fs3{font-size:85.119787pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:3.517522pt;}
.yec{bottom:3.518313pt;}
.y5{bottom:63.788907pt;}
.y7{bottom:66.187395pt;}
.y6{bottom:78.507670pt;}
.y4{bottom:82.507660pt;}
.y6d{bottom:103.468541pt;}
.yd5{bottom:106.347201pt;}
.y9e{bottom:107.788931pt;}
.y6c{bottom:109.706792pt;}
.y45{bottom:113.866249pt;}
.yd4{bottom:122.987826pt;}
.y6b{bottom:123.148092pt;}
.y6a{bottom:123.148119pt;}
.y9d{bottom:124.265423pt;}
.y69{bottom:126.987949pt;}
.y44{bottom:130.506874pt;}
.yfd{bottom:134.507664pt;}
.yd3{bottom:139.628451pt;}
.y9c{bottom:140.906048pt;}
.y43{bottom:147.147499pt;}
.yfc{bottom:150.988423pt;}
.yd2{bottom:156.104943pt;}
.y9b{bottom:157.226274pt;}
.y42{bottom:163.627991pt;}
.yfb{bottom:167.468915pt;}
.y9a{bottom:171.147572pt;}
.y99{bottom:179.942750pt;}
.y41{bottom:180.264616pt;}
.yd1{bottom:182.667677pt;}
.yfa{bottom:185.066604pt;}
.y98{bottom:196.583375pt;}
.y40{bottom:196.745108pt;}
.yd0{bottom:199.148169pt;}
.yf9{bottom:201.707229pt;}
.y97{bottom:213.063867pt;}
.y3f{bottom:213.385733pt;}
.ycf{bottom:215.628661pt;}
.yf8{bottom:218.027455pt;}
.y96{bottom:229.704492pt;}
.y3e{bottom:229.866225pt;}
.yce{bottom:235.468478pt;}
.yf7{bottom:235.628211pt;}
.y95{bottom:246.184985pt;}
.y3d{bottom:246.506850pt;}
.yf6{bottom:252.104703pt;}
.ycd{bottom:252.105103pt;}
.y94{bottom:262.825610pt;}
.y3c{bottom:262.987343pt;}
.ycc{bottom:268.745728pt;}
.yf5{bottom:269.706792pt;}
.y93{bottom:279.466235pt;}
.y3a{bottom:279.628368pt;}
.y3b{bottom:282.987293pt;}
.ycb{bottom:285.386353pt;}
.yf4{bottom:286.187285pt;}
.y92{bottom:295.942727pt;}
.y39{bottom:296.264993pt;}
.yca{bottom:301.706579pt;}
.yf3{bottom:303.788174pt;}
.y91{bottom:312.583352pt;}
.y38{bottom:312.745485pt;}
.yf2{bottom:320.104533pt;}
.yc9{bottom:321.706529pt;}
.y90{bottom:329.063844pt;}
.y37{bottom:329.065711pt;}
.yf1{bottom:337.706622pt;}
.yc8{bottom:338.347154pt;}
.y36{bottom:345.385937pt;}
.y8f{bottom:345.704469pt;}
.yf0{bottom:354.187115pt;}
.yc7{bottom:354.827646pt;}
.y35{bottom:362.026562pt;}
.y8e{bottom:362.184961pt;}
.yc6{bottom:371.308138pt;}
.yef{bottom:371.787871pt;}
.y32{bottom:378.506387pt;}
.y34{bottom:378.507054pt;}
.y8d{bottom:378.825586pt;}
.y33{bottom:381.865712pt;}
.yee{bottom:388.264363pt;}
.yc5{bottom:391.147955pt;}
.y31{bottom:395.147012pt;}
.y8c{bottom:395.306078pt;}
.yeb{bottom:404.586000pt;}
.yed{bottom:406.186985pt;}
.yc4{bottom:407.788581pt;}
.yea{bottom:407.944313pt;}
.y30{bottom:411.627504pt;}
.y8b{bottom:411.942703pt;}
.ye9{bottom:423.147875pt;}
.yc3{bottom:424.425206pt;}
.y2f{bottom:428.264129pt;}
.y8a{bottom:428.583329pt;}
.ye8{bottom:439.788501pt;}
.yc2{bottom:440.905698pt;}
.y2e{bottom:444.744621pt;}
.y89{bottom:445.063821pt;}
.ye7{bottom:456.264993pt;}
.ybf{bottom:460.743515pt;}
.yc1{bottom:460.745515pt;}
.y2d{bottom:461.385247pt;}
.y88{bottom:461.704446pt;}
.yc0{bottom:464.104173pt;}
.ye6{bottom:472.905618pt;}
.ybe{bottom:477.384140pt;}
.y2c{bottom:478.025872pt;}
.y87{bottom:478.184938pt;}
.y68{bottom:481.545463pt;}
.ye5{bottom:489.546243pt;}
.ybd{bottom:493.864632pt;}
.y2b{bottom:494.506364pt;}
.y86{bottom:494.825563pt;}
.y67{bottom:495.628094pt;}
.y66{bottom:504.584605pt;}
.ye2{bottom:506.025668pt;}
.ye4{bottom:506.026735pt;}
.ye3{bottom:509.385393pt;}
.ybc{bottom:510.505257pt;}
.y2a{bottom:511.146989pt;}
.y85{bottom:511.306055pt;}
.y65{bottom:521.065097pt;}
.ye1{bottom:522.666293pt;}
.ybb{bottom:527.145882pt;}
.y29{bottom:527.467215pt;}
.y84{bottom:527.942680pt;}
.y64{bottom:537.705722pt;}
.ye0{bottom:539.146785pt;}
.yba{bottom:543.626374pt;}
.y28{bottom:543.787441pt;}
.y83{bottom:544.423172pt;}
.y63{bottom:554.346347pt;}
.ydf{bottom:555.787411pt;}
.yb9{bottom:560.102866pt;}
.y27{bottom:560.263933pt;}
.y82{bottom:561.063797pt;}
.y119{bottom:567.467381pt;}
.y62{bottom:570.666573pt;}
.yde{bottom:572.263903pt;}
.y26{bottom:574.506564pt;}
.y81{bottom:577.704422pt;}
.yb8{bottom:579.942683pt;}
.y25{bottom:583.467208pt;}
.y118{bottom:583.943873pt;}
.y61{bottom:585.065204pt;}
.ydb{bottom:587.789000pt;}
.ydd{bottom:589.385193pt;}
.yda{bottom:591.146522pt;}
.y80{bottom:594.184915pt;}
.y60{bottom:595.146912pt;}
.yb7{bottom:596.583309pt;}
.y24{bottom:600.103300pt;}
.y117{bottom:600.583832pt;}
.y116{bottom:600.584099pt;}
.yd9{bottom:606.025552pt;}
.y7f{bottom:610.825540pt;}
.y5f{bottom:611.787537pt;}
.yb6{bottom:613.223934pt;}
.y23{bottom:616.583925pt;}
.y115{bottom:617.064591pt;}
.yd8{bottom:622.345777pt;}
.y7e{bottom:627.306032pt;}
.y5e{bottom:628.264029pt;}
.yb5{bottom:629.704426pt;}
.y22{bottom:633.224550pt;}
.y114{bottom:633.545083pt;}
.yd7{bottom:638.986403pt;}
.y7d{bottom:643.942657pt;}
.y5d{bottom:644.904654pt;}
.yb4{bottom:649.544243pt;}
.y21{bottom:649.705042pt;}
.y113{bottom:651.147439pt;}
.yd6{bottom:652.745035pt;}
.y7c{bottom:660.423149pt;}
.y5c{bottom:661.545279pt;}
.yb3{bottom:666.184868pt;}
.y20{bottom:666.345667pt;}
.y112{bottom:667.467665pt;}
.y7b{bottom:677.063774pt;}
.y5b{bottom:678.025772pt;}
.yb2{bottom:682.665360pt;}
.y1f{bottom:682.986426pt;}
.y111{bottom:685.064421pt;}
.y7a{bottom:693.544266pt;}
.y5a{bottom:694.666397pt;}
.yb1{bottom:699.145852pt;}
.y1e{bottom:699.466918pt;}
.y110{bottom:701.544913pt;}
.y79{bottom:710.184891pt;}
.y59{bottom:711.146889pt;}
.y1d{bottom:716.103010pt;}
.yb0{bottom:718.985669pt;}
.y10f{bottom:719.147002pt;}
.y78{bottom:726.825516pt;}
.y58{bottom:727.787514pt;}
.y1c{bottom:732.583502pt;}
.y1a{bottom:732.584169pt;}
.yaf{bottom:735.626294pt;}
.y10e{bottom:735.627494pt;}
.y1b{bottom:735.943493pt;}
.y77{bottom:743.306008pt;}
.y57{bottom:744.264006pt;}
.y19{bottom:749.224927pt;}
.yae{bottom:752.262919pt;}
.y10d{bottom:753.224517pt;}
.y76{bottom:759.942633pt;}
.y56{bottom:760.904631pt;}
.y18{bottom:765.705419pt;}
.yad{bottom:768.903544pt;}
.y10c{bottom:769.544743pt;}
.y75{bottom:776.423126pt;}
.y55{bottom:777.385123pt;}
.y17{bottom:782.346044pt;}
.yac{bottom:785.223770pt;}
.y10b{bottom:787.146832pt;}
.y74{bottom:793.063751pt;}
.y54{bottom:794.025748pt;}
.y16{bottom:798.826670pt;}
.y10a{bottom:803.627324pt;}
.yab{bottom:805.223720pt;}
.y73{bottom:809.544243pt;}
.y53{bottom:810.345974pt;}
.y15{bottom:815.467295pt;}
.y109{bottom:821.225014pt;}
.yaa{bottom:821.864345pt;}
.y52{bottom:824.744605pt;}
.y72{bottom:826.184868pt;}
.y14{bottom:831.787521pt;}
.y51{bottom:834.985779pt;}
.y108{bottom:837.865639pt;}
.ya9{bottom:838.344837pt;}
.y71{bottom:842.665360pt;}
.y13{bottom:847.943747pt;}
.y50{bottom:851.466271pt;}
.y107{bottom:854.185865pt;}
.ya8{bottom:854.985463pt;}
.y70{bottom:859.305985pt;}
.y12{bottom:864.263973pt;}
.y4f{bottom:868.102896pt;}
.ya7{bottom:871.465955pt;}
.y106{bottom:871.786621pt;}
.y6f{bottom:875.942610pt;}
.y10{bottom:880.583132pt;}
.y11{bottom:880.744465pt;}
.y4e{bottom:884.423122pt;}
.y105{bottom:888.263113pt;}
.ya6{bottom:891.305772pt;}
.y6e{bottom:892.423102pt;}
.yf{bottom:897.384423pt;}
.y4d{bottom:898.825753pt;}
.y104{bottom:905.864802pt;}
.ya5{bottom:907.942397pt;}
.y4c{bottom:909.063727pt;}
.yd{bottom:914.185715pt;}
.ye{bottom:918.185705pt;}
.y103{bottom:922.505427pt;}
.ya4{bottom:924.422889pt;}
.y4b{bottom:925.544219pt;}
.y102{bottom:938.825653pt;}
.ya3{bottom:941.063514pt;}
.y4a{bottom:942.184845pt;}
.y101{bottom:956.423742pt;}
.yc{bottom:957.544273pt;}
.ya2{bottom:957.704139pt;}
.y49{bottom:958.665337pt;}
.y100{bottom:972.904234pt;}
.ya1{bottom:974.184631pt;}
.yb{bottom:974.825030pt;}
.y48{bottom:975.305962pt;}
.yff{bottom:990.505257pt;}
.ya0{bottom:990.825256pt;}
.y47{bottom:991.786454pt;}
.ya{bottom:1000.582832pt;}
.yfe{bottom:1006.825483pt;}
.y9f{bottom:1007.145482pt;}
.y46{bottom:1008.102813pt;}
.y3{bottom:1034.344801pt;}
.y2{bottom:1046.665077pt;}
.y9{bottom:1048.262406pt;}
.y1{bottom:1058.985353pt;}
.y8{bottom:1060.582682pt;}
.h11{height:7.920918pt;}
.hf{height:11.648408pt;}
.h15{height:14.078100pt;}
.h16{height:14.082000pt;}
.hd{height:15.375899pt;}
.h12{height:15.396524pt;}
.he{height:19.569326pt;}
.h13{height:23.296817pt;}
.hb{height:25.160562pt;}
.h4{height:29.040240pt;}
.h6{height:29.688676pt;}
.h1{height:29.773051pt;}
.h8{height:31.259609pt;}
.h10{height:38.543029pt;}
.h2{height:38.672716pt;}
.hc{height:38.674849pt;}
.h9{height:38.724591pt;}
.h17{height:40.882398pt;}
.h14{height:42.485519pt;}
.ha{height:42.549894pt;}
.h3{height:44.437389pt;}
.h7{height:46.656133pt;}
.h5{height:62.052657pt;}
.h0{height:1122.666667pt;}
.w1{width:8.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.999820pt;}
.x14{left:75.359145pt;}
.x18{left:79.359135pt;}
.x3{left:81.601396pt;}
.xc{left:85.441253pt;}
.x19{left:92.480500pt;}
.xd{left:95.999663pt;}
.x8{left:227.519431pt;}
.x6{left:249.440710pt;}
.x1e{left:264.319339pt;}
.x7{left:267.198520pt;}
.x15{left:285.440620pt;}
.x1b{left:296.800591pt;}
.x1c{left:303.359242pt;}
.x16{left:335.519161pt;}
.x17{left:343.359142pt;}
.x9{left:346.077801pt;}
.xa{left:353.600449pt;}
.x1a{left:371.999070pt;}
.x1d{left:380.159050pt;}
.x10{left:397.280340pt;}
.x11{left:403.838990pt;}
.xb{left:429.920259pt;}
.x4{left:465.760169pt;}
.xe{left:500.800081pt;}
.xf{left:510.077391pt;}
.x5{left:520.152358pt;}
.x13{left:610.077141pt;}
.x2{left:699.678251pt;}
.x12{left:715.358212pt;}
}




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