
    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_7a8c6e23eebfc7b3754307c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_578fb4400f31512f378ca023.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7d2a0c8ed4fcfd44a0c2506.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_6f48e08a1b28b51d2194d829.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_2ab302ec508b87bc92229855.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_323c4bea49e0eaf11a74a312.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_e946b3f7be06924df5b99d22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_033a513aa0d69d56cb663f4c.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.050400px;}
.v4{vertical-align:9.027000px;}
.v3{vertical-align:36.000000px;}
.v2{vertical-align:39.599400px;}
.ls4{letter-spacing:-6.900000px;}
.lsc{letter-spacing:-6.348000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010200px;}
.ls8{letter-spacing:0.011400px;}
.lsa{letter-spacing:0.012000px;}
.ls7{letter-spacing:7.588800px;}
.ls0{letter-spacing:10.851600px;}
.ls6{letter-spacing:16.421400px;}
.ls9{letter-spacing:17.952000px;}
.lsb{letter-spacing:18.923400px;}
.ls3{letter-spacing:23.526600px;}
.ls5{letter-spacing:26.772000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.000000px;}
.ws6{word-spacing:-17.250000px;}
.wsa{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.000000px;}
.ws10{word-spacing:-10.902000px;}
.ws2{word-spacing:-0.084000px;}
.ws7{word-spacing:-0.069000px;}
.ws1{word-spacing:-0.066000px;}
.ws4{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:6.900000px;}
.wsb{word-spacing:332.727000px;}
.wsd{word-spacing:349.227600px;}
.wse{word-spacing:365.739000px;}
.wsf{word-spacing:470.385600px;}
.ws0{word-spacing:1508.274600px;}
.wsc{word-spacing:1650.571800px;}
._16{margin-left:-17.930700px;}
._3e{margin-left:-16.438800px;}
._2{margin-left:-11.526600px;}
._18{margin-left:-9.870000px;}
._17{margin-left:-8.464800px;}
._9{margin-left:-7.340400px;}
._4{margin-left:-5.766600px;}
._3{margin-left:-4.174800px;}
._0{margin-left:-2.501400px;}
._5{margin-left:-1.134000px;}
._1{width:1.663200px;}
._f{width:2.677200px;}
._e{width:3.695100px;}
._7{width:5.244000px;}
._a{width:6.734400px;}
._19{width:7.927800px;}
._8{width:9.078000px;}
._6{width:10.830000px;}
._10{width:12.004800px;}
._c{width:13.986300px;}
._d{width:15.000600px;}
._12{width:16.218600px;}
._1b{width:18.574800px;}
._b{width:19.637400px;}
._3d{width:20.650800px;}
._11{width:21.721200px;}
._14{width:23.249400px;}
._13{width:24.864300px;}
._35{width:26.413200px;}
._37{width:27.448200px;}
._1a{width:30.369900px;}
._1c{width:32.568000px;}
._38{width:33.719700px;}
._36{width:34.776000px;}
._21{width:38.860800px;}
._1d{width:41.027400px;}
._3b{width:44.049600px;}
._20{width:48.027600px;}
._15{width:49.485300px;}
._3a{width:58.332300px;}
._39{width:67.647600px;}
._1e{width:71.166600px;}
._1f{width:72.618000px;}
._3c{width:74.147400px;}
._2f{width:321.200400px;}
._34{width:342.019800px;}
._31{width:359.744400px;}
._25{width:365.727000px;}
._24{width:413.794800px;}
._2e{width:462.750000px;}
._2d{width:470.385600px;}
._33{width:479.250000px;}
._32{width:486.885600px;}
._30{width:495.750000px;}
._22{width:502.089600px;}
._2c{width:599.839200px;}
._2b{width:710.630400px;}
._2a{width:822.113400px;}
._29{width:839.838000px;}
._28{width:963.439200px;}
._27{width:1096.432800px;}
._26{width:1177.924200px;}
._23{width:1630.360800px;}
.fc1{color:rgb(238,35,43);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.975700px;}
.y40{bottom:111.082050px;}
.yfd{bottom:111.637950px;}
.y42{bottom:112.488300px;}
.y3d{bottom:143.393100px;}
.yd8{bottom:143.584650px;}
.y27{bottom:143.671050px;}
.ya7{bottom:147.507000px;}
.y70{bottom:149.856150px;}
.y3c{bottom:164.093100px;}
.yd7{bottom:164.284650px;}
.y26{bottom:164.371050px;}
.ya6{bottom:168.766800px;}
.y6f{bottom:170.556150px;}
.y3b{bottom:184.793100px;}
.yd6{bottom:184.984650px;}
.y25{bottom:185.071050px;}
.ya5{bottom:190.306350px;}
.y6e{bottom:191.256150px;}
.y3a{bottom:205.493100px;}
.yd5{bottom:205.684650px;}
.y24{bottom:205.771050px;}
.ya4{bottom:208.306350px;}
.y6d{bottom:211.956150px;}
.y39{bottom:226.193100px;}
.yd4{bottom:226.384650px;}
.y23{bottom:226.471050px;}
.ya3{bottom:228.580950px;}
.y6c{bottom:232.656150px;}
.ya2{bottom:246.580950px;}
.y38{bottom:246.893100px;}
.yd3{bottom:247.084650px;}
.y22{bottom:247.171050px;}
.y6b{bottom:253.356150px;}
.ya1{bottom:266.575800px;}
.y37{bottom:267.593100px;}
.yd2{bottom:267.784650px;}
.y21{bottom:267.871050px;}
.y6a{bottom:274.056150px;}
.y36{bottom:288.293100px;}
.y9f{bottom:288.378600px;}
.yd1{bottom:288.484650px;}
.y20{bottom:288.571050px;}
.y69{bottom:294.756150px;}
.y9e{bottom:298.278600px;}
.ya0{bottom:308.178600px;}
.y35{bottom:308.993100px;}
.yd0{bottom:309.184650px;}
.y1f{bottom:309.271050px;}
.y68{bottom:315.456150px;}
.ycf{bottom:329.884650px;}
.y1e{bottom:329.971050px;}
.y67{bottom:336.156150px;}
.y97{bottom:341.031750px;}
.y34{bottom:350.393100px;}
.yce{bottom:350.584650px;}
.y1d{bottom:350.671050px;}
.y66{bottom:356.856150px;}
.y96{bottom:361.731750px;}
.y33{bottom:371.093100px;}
.ycd{bottom:371.284650px;}
.y1c{bottom:371.371050px;}
.yfc{bottom:373.286550px;}
.y65{bottom:377.556150px;}
.y32{bottom:391.793100px;}
.y9d{bottom:391.838850px;}
.ycc{bottom:391.984650px;}
.y1b{bottom:392.071050px;}
.y64{bottom:398.256150px;}
.y31{bottom:412.493100px;}
.ycb{bottom:412.684650px;}
.y1a{bottom:412.771050px;}
.y9c{bottom:413.098650px;}
.yfb{bottom:414.686550px;}
.y63{bottom:418.956150px;}
.y30{bottom:433.193100px;}
.yca{bottom:433.384650px;}
.y19{bottom:433.471050px;}
.y9b{bottom:434.358600px;}
.yf9{bottom:435.386550px;}
.y62{bottom:439.656150px;}
.y2f{bottom:453.893100px;}
.yc9{bottom:454.084650px;}
.y18{bottom:454.171050px;}
.y99{bottom:455.713950px;}
.yf8{bottom:456.086550px;}
.y61{bottom:460.356150px;}
.y98{bottom:465.613950px;}
.y2e{bottom:474.593100px;}
.yc8{bottom:474.784650px;}
.y17{bottom:474.871050px;}
.y9a{bottom:475.513800px;}
.yf7{bottom:476.786550px;}
.y60{bottom:481.056150px;}
.y2d{bottom:495.293100px;}
.yc7{bottom:495.484650px;}
.y16{bottom:495.571050px;}
.yf6{bottom:497.486550px;}
.y5f{bottom:501.756150px;}
.y95{bottom:506.586150px;}
.y2c{bottom:515.993100px;}
.yc6{bottom:516.184650px;}
.y15{bottom:516.271050px;}
.yf5{bottom:518.186550px;}
.y5e{bottom:522.456150px;}
.y94{bottom:527.286000px;}
.y2b{bottom:536.693100px;}
.yc5{bottom:536.884650px;}
.y14{bottom:536.971050px;}
.yf4{bottom:538.886550px;}
.y5d{bottom:543.156150px;}
.y2a{bottom:557.393100px;}
.yc4{bottom:557.584650px;}
.y13{bottom:557.671050px;}
.yf3{bottom:559.586550px;}
.y5c{bottom:563.856150px;}
.y8d{bottom:567.045150px;}
.y29{bottom:578.093100px;}
.yc3{bottom:578.284650px;}
.y12{bottom:578.371050px;}
.yf2{bottom:580.286550px;}
.y5b{bottom:584.556150px;}
.y8c{bottom:587.745150px;}
.y28{bottom:598.793100px;}
.yc2{bottom:598.984650px;}
.y11{bottom:599.071050px;}
.yf1{bottom:600.986550px;}
.y5a{bottom:605.256150px;}
.y8b{bottom:608.445150px;}
.yc1{bottom:619.684650px;}
.yf0{bottom:621.686550px;}
.y59{bottom:625.956150px;}
.y8a{bottom:629.145150px;}
.yc0{bottom:640.384650px;}
.yef{bottom:642.386550px;}
.y58{bottom:646.656150px;}
.y89{bottom:649.845150px;}
.ybf{bottom:661.084650px;}
.yee{bottom:663.086550px;}
.y57{bottom:667.356150px;}
.y88{bottom:670.545150px;}
.y10{bottom:681.168450px;}
.ybe{bottom:681.784650px;}
.yed{bottom:683.786550px;}
.y56{bottom:688.056150px;}
.y87{bottom:691.245150px;}
.yf{bottom:699.168450px;}
.ybd{bottom:702.484650px;}
.yec{bottom:704.486550px;}
.y10b{bottom:708.738300px;}
.y55{bottom:708.756150px;}
.y86{bottom:711.945150px;}
.y73{bottom:714.063150px;}
.ybc{bottom:723.184650px;}
.yeb{bottom:725.186550px;}
.ye{bottom:729.168450px;}
.y10a{bottom:729.438450px;}
.y54{bottom:729.456150px;}
.y85{bottom:732.645150px;}
.ybb{bottom:743.884650px;}
.yea{bottom:745.886550px;}
.y53{bottom:750.156150px;}
.y84{bottom:753.345150px;}
.yd{bottom:759.168450px;}
.yba{bottom:764.584650px;}
.ye9{bottom:766.586550px;}
.y109{bottom:770.838450px;}
.y52{bottom:770.856150px;}
.y83{bottom:774.045150px;}
.yc{bottom:777.168450px;}
.yb9{bottom:785.284650px;}
.ye8{bottom:787.286550px;}
.y51{bottom:791.556150px;}
.y82{bottom:794.745150px;}
.yb{bottom:795.168450px;}
.ye7{bottom:807.986550px;}
.y108{bottom:812.238300px;}
.y50{bottom:812.256150px;}
.ya{bottom:813.168450px;}
.y81{bottom:815.445150px;}
.yb8{bottom:826.831950px;}
.ye6{bottom:828.686400px;}
.y9{bottom:831.168450px;}
.y107{bottom:832.938300px;}
.y4f{bottom:832.956150px;}
.y80{bottom:836.145150px;}
.yb7{bottom:848.091750px;}
.y8{bottom:849.168450px;}
.ye5{bottom:849.386550px;}
.y106{bottom:853.638450px;}
.y4e{bottom:853.656150px;}
.y7f{bottom:856.845150px;}
.yb6{bottom:868.685400px;}
.ye4{bottom:870.086550px;}
.y105{bottom:874.338450px;}
.y4d{bottom:874.356150px;}
.y93{bottom:877.545150px;}
.y7e{bottom:877.545300px;}
.y7{bottom:886.326000px;}
.yb5{bottom:888.485400px;}
.ye3{bottom:890.786550px;}
.y104{bottom:895.038450px;}
.y4c{bottom:895.056150px;}
.y92{bottom:898.245150px;}
.y6{bottom:907.026000px;}
.yb4{bottom:908.285400px;}
.ye2{bottom:911.486550px;}
.y4b{bottom:915.756150px;}
.y7d{bottom:918.945150px;}
.yb3{bottom:930.051600px;}
.ye1{bottom:932.186400px;}
.y103{bottom:936.438300px;}
.y4a{bottom:936.456150px;}
.y7c{bottom:939.645150px;}
.yb2{bottom:949.851600px;}
.ye0{bottom:952.886550px;}
.y5{bottom:952.926000px;}
.y102{bottom:957.138450px;}
.y49{bottom:957.156150px;}
.y91{bottom:960.345150px;}
.y7b{bottom:960.345300px;}
.yb1{bottom:972.283800px;}
.ydf{bottom:973.586550px;}
.y48{bottom:977.856150px;}
.y4{bottom:978.126000px;}
.y90{bottom:981.045150px;}
.y7a{bottom:981.045300px;}
.yfa{bottom:994.286550px;}
.y101{bottom:998.538450px;}
.y47{bottom:998.556150px;}
.yae{bottom:1001.381400px;}
.y79{bottom:1001.745150px;}
.yb0{bottom:1011.281400px;}
.yab{bottom:1012.253850px;}
.yde{bottom:1014.986550px;}
.y46{bottom:1019.256150px;}
.yad{bottom:1021.181400px;}
.y78{bottom:1022.445150px;}
.y3{bottom:1028.526000px;}
.yaf{bottom:1031.081400px;}
.yaa{bottom:1035.354000px;}
.ydd{bottom:1035.686400px;}
.y100{bottom:1039.938300px;}
.y71{bottom:1039.956150px;}
.yac{bottom:1040.981400px;}
.y77{bottom:1043.145150px;}
.ydc{bottom:1056.386550px;}
.yff{bottom:1060.638450px;}
.y45{bottom:1060.656150px;}
.y8f{bottom:1063.845150px;}
.y76{bottom:1063.845300px;}
.y3f{bottom:1073.125050px;}
.ydb{bottom:1077.086550px;}
.ya9{bottom:1077.103350px;}
.y44{bottom:1081.356150px;}
.y8e{bottom:1084.545150px;}
.y75{bottom:1084.545300px;}
.yda{bottom:1097.786550px;}
.ya8{bottom:1097.803350px;}
.yfe{bottom:1102.038450px;}
.y43{bottom:1102.056150px;}
.y74{bottom:1105.245150px;}
.y3e{bottom:1107.778050px;}
.y72{bottom:1133.601750px;}
.y41{bottom:1134.880500px;}
.yd9{bottom:1136.581200px;}
.y2{bottom:1140.826950px;}
.h3{height:45.826172px;}
.hb{height:47.437500px;}
.h6{height:47.909180px;}
.h2{height:51.876572px;}
.h7{height:52.646484px;}
.h11{height:54.853172px;}
.hd{height:57.911133px;}
.h8{height:59.667480px;}
.h9{height:60.543457px;}
.ha{height:62.261719px;}
.h4{height:67.450195px;}
.h5{height:72.638672px;}
.h10{height:93.621333px;}
.hf{height:93.911133px;}
.hc{height:97.510533px;}
.he{height:97.511133px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:63.779550px;}
.x1f{left:72.254550px;}
.x12{left:89.291400px;}
.x1{left:106.299150px;}
.x2{left:107.999850px;}
.x2a{left:112.401600px;}
.x1c{left:114.774150px;}
.xb{left:131.811000px;}
.x29{left:133.308000px;}
.x10{left:136.709550px;}
.xa{left:148.181100px;}
.x6{left:162.539700px;}
.x1e{left:209.455350px;}
.x18{left:213.207300px;}
.x8{left:230.448900px;}
.x7{left:255.424650px;}
.x2d{left:269.024550px;}
.xe{left:275.368050px;}
.x2b{left:310.267050px;}
.x2e{left:327.302250px;}
.x9{left:355.528350px;}
.x2c{left:377.346750px;}
.x25{left:407.988600px;}
.x5{left:410.230500px;}
.x15{left:421.036350px;}
.x13{left:435.826800px;}
.x14{left:461.338650px;}
.x3{left:473.924400px;}
.xc{left:478.346400px;}
.x21{left:496.496550px;}
.x4{left:497.684400px;}
.x16{left:501.732300px;}
.xd{left:503.858250px;}
.x20{left:509.411250px;}
.x22{left:526.382700px;}
.x26{left:557.769600px;}
.x19{left:562.058250px;}
.x27{left:568.189050px;}
.x28{left:573.584550px;}
.x1d{left:576.199500px;}
.x23{left:674.308800px;}
.x24{left:683.884050px;}
.x1a{left:707.629500px;}
.x1b{left:714.179550px;}
.x17{left:727.086450px;}
.xf{left:766.985550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.378133pt;}
.v4{vertical-align:8.024000pt;}
.v3{vertical-align:32.000000pt;}
.v2{vertical-align:35.199467pt;}
.ls4{letter-spacing:-6.133333pt;}
.lsc{letter-spacing:-5.642667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009067pt;}
.ls8{letter-spacing:0.010133pt;}
.lsa{letter-spacing:0.010667pt;}
.ls7{letter-spacing:6.745600pt;}
.ls0{letter-spacing:9.645867pt;}
.ls6{letter-spacing:14.596800pt;}
.ls9{letter-spacing:15.957333pt;}
.lsb{letter-spacing:16.820800pt;}
.ls3{letter-spacing:20.912533pt;}
.ls5{letter-spacing:23.797333pt;}
.ws3{word-spacing:-18.666667pt;}
.ws6{word-spacing:-15.333333pt;}
.wsa{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws10{word-spacing:-9.690667pt;}
.ws2{word-spacing:-0.074667pt;}
.ws7{word-spacing:-0.061333pt;}
.ws1{word-spacing:-0.058667pt;}
.ws4{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:6.133333pt;}
.wsb{word-spacing:295.757333pt;}
.wsd{word-spacing:310.424533pt;}
.wse{word-spacing:325.101333pt;}
.wsf{word-spacing:418.120533pt;}
.ws0{word-spacing:1340.688533pt;}
.wsc{word-spacing:1467.174933pt;}
._16{margin-left:-15.938400pt;}
._3e{margin-left:-14.612267pt;}
._2{margin-left:-10.245867pt;}
._18{margin-left:-8.773333pt;}
._17{margin-left:-7.524267pt;}
._9{margin-left:-6.524800pt;}
._4{margin-left:-5.125867pt;}
._3{margin-left:-3.710933pt;}
._0{margin-left:-2.223467pt;}
._5{margin-left:-1.008000pt;}
._1{width:1.478400pt;}
._f{width:2.379733pt;}
._e{width:3.284533pt;}
._7{width:4.661333pt;}
._a{width:5.986133pt;}
._19{width:7.046933pt;}
._8{width:8.069333pt;}
._6{width:9.626667pt;}
._10{width:10.670933pt;}
._c{width:12.432267pt;}
._d{width:13.333867pt;}
._12{width:14.416533pt;}
._1b{width:16.510933pt;}
._b{width:17.455467pt;}
._3d{width:18.356267pt;}
._11{width:19.307733pt;}
._14{width:20.666133pt;}
._13{width:22.101600pt;}
._35{width:23.478400pt;}
._37{width:24.398400pt;}
._1a{width:26.995467pt;}
._1c{width:28.949333pt;}
._38{width:29.973067pt;}
._36{width:30.912000pt;}
._21{width:34.542933pt;}
._1d{width:36.468800pt;}
._3b{width:39.155200pt;}
._20{width:42.691200pt;}
._15{width:43.986933pt;}
._3a{width:51.850933pt;}
._39{width:60.131200pt;}
._1e{width:63.259200pt;}
._1f{width:64.549333pt;}
._3c{width:65.908800pt;}
._2f{width:285.511467pt;}
._34{width:304.017600pt;}
._31{width:319.772800pt;}
._25{width:325.090667pt;}
._24{width:367.817600pt;}
._2e{width:411.333333pt;}
._2d{width:418.120533pt;}
._33{width:426.000000pt;}
._32{width:432.787200pt;}
._30{width:440.666667pt;}
._22{width:446.301867pt;}
._2c{width:533.190400pt;}
._2b{width:631.671467pt;}
._2a{width:730.767467pt;}
._29{width:746.522667pt;}
._28{width:856.390400pt;}
._27{width:974.606933pt;}
._26{width:1047.043733pt;}
._23{width:1449.209600pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.645067pt;}
.y40{bottom:98.739600pt;}
.yfd{bottom:99.233733pt;}
.y42{bottom:99.989600pt;}
.y3d{bottom:127.460533pt;}
.yd8{bottom:127.630800pt;}
.y27{bottom:127.707600pt;}
.ya7{bottom:131.117333pt;}
.y70{bottom:133.205467pt;}
.y3c{bottom:145.860533pt;}
.yd7{bottom:146.030800pt;}
.y26{bottom:146.107600pt;}
.ya6{bottom:150.014933pt;}
.y6f{bottom:151.605467pt;}
.y3b{bottom:164.260533pt;}
.yd6{bottom:164.430800pt;}
.y25{bottom:164.507600pt;}
.ya5{bottom:169.161200pt;}
.y6e{bottom:170.005467pt;}
.y3a{bottom:182.660533pt;}
.yd5{bottom:182.830800pt;}
.y24{bottom:182.907600pt;}
.ya4{bottom:185.161200pt;}
.y6d{bottom:188.405467pt;}
.y39{bottom:201.060533pt;}
.yd4{bottom:201.230800pt;}
.y23{bottom:201.307600pt;}
.ya3{bottom:203.183067pt;}
.y6c{bottom:206.805467pt;}
.ya2{bottom:219.183067pt;}
.y38{bottom:219.460533pt;}
.yd3{bottom:219.630800pt;}
.y22{bottom:219.707600pt;}
.y6b{bottom:225.205467pt;}
.ya1{bottom:236.956267pt;}
.y37{bottom:237.860533pt;}
.yd2{bottom:238.030800pt;}
.y21{bottom:238.107600pt;}
.y6a{bottom:243.605467pt;}
.y36{bottom:256.260533pt;}
.y9f{bottom:256.336533pt;}
.yd1{bottom:256.430800pt;}
.y20{bottom:256.507600pt;}
.y69{bottom:262.005467pt;}
.y9e{bottom:265.136533pt;}
.ya0{bottom:273.936533pt;}
.y35{bottom:274.660533pt;}
.yd0{bottom:274.830800pt;}
.y1f{bottom:274.907600pt;}
.y68{bottom:280.405467pt;}
.ycf{bottom:293.230800pt;}
.y1e{bottom:293.307600pt;}
.y67{bottom:298.805467pt;}
.y97{bottom:303.139333pt;}
.y34{bottom:311.460533pt;}
.yce{bottom:311.630800pt;}
.y1d{bottom:311.707600pt;}
.y66{bottom:317.205467pt;}
.y96{bottom:321.539333pt;}
.y33{bottom:329.860533pt;}
.ycd{bottom:330.030800pt;}
.y1c{bottom:330.107600pt;}
.yfc{bottom:331.810267pt;}
.y65{bottom:335.605467pt;}
.y32{bottom:348.260533pt;}
.y9d{bottom:348.301200pt;}
.ycc{bottom:348.430800pt;}
.y1b{bottom:348.507600pt;}
.y64{bottom:354.005467pt;}
.y31{bottom:366.660533pt;}
.ycb{bottom:366.830800pt;}
.y1a{bottom:366.907600pt;}
.y9c{bottom:367.198800pt;}
.yfb{bottom:368.610267pt;}
.y63{bottom:372.405467pt;}
.y30{bottom:385.060533pt;}
.yca{bottom:385.230800pt;}
.y19{bottom:385.307600pt;}
.y9b{bottom:386.096533pt;}
.yf9{bottom:387.010267pt;}
.y62{bottom:390.805467pt;}
.y2f{bottom:403.460533pt;}
.yc9{bottom:403.630800pt;}
.y18{bottom:403.707600pt;}
.y99{bottom:405.079067pt;}
.yf8{bottom:405.410267pt;}
.y61{bottom:409.205467pt;}
.y98{bottom:413.879067pt;}
.y2e{bottom:421.860533pt;}
.yc8{bottom:422.030800pt;}
.y17{bottom:422.107600pt;}
.y9a{bottom:422.678933pt;}
.yf7{bottom:423.810267pt;}
.y60{bottom:427.605467pt;}
.y2d{bottom:440.260533pt;}
.yc7{bottom:440.430800pt;}
.y16{bottom:440.507600pt;}
.yf6{bottom:442.210267pt;}
.y5f{bottom:446.005467pt;}
.y95{bottom:450.298800pt;}
.y2c{bottom:458.660533pt;}
.yc6{bottom:458.830800pt;}
.y15{bottom:458.907600pt;}
.yf5{bottom:460.610267pt;}
.y5e{bottom:464.405467pt;}
.y94{bottom:468.698667pt;}
.y2b{bottom:477.060533pt;}
.yc5{bottom:477.230800pt;}
.y14{bottom:477.307600pt;}
.yf4{bottom:479.010267pt;}
.y5d{bottom:482.805467pt;}
.y2a{bottom:495.460533pt;}
.yc4{bottom:495.630800pt;}
.y13{bottom:495.707600pt;}
.yf3{bottom:497.410267pt;}
.y5c{bottom:501.205467pt;}
.y8d{bottom:504.040133pt;}
.y29{bottom:513.860533pt;}
.yc3{bottom:514.030800pt;}
.y12{bottom:514.107600pt;}
.yf2{bottom:515.810267pt;}
.y5b{bottom:519.605467pt;}
.y8c{bottom:522.440133pt;}
.y28{bottom:532.260533pt;}
.yc2{bottom:532.430800pt;}
.y11{bottom:532.507600pt;}
.yf1{bottom:534.210267pt;}
.y5a{bottom:538.005467pt;}
.y8b{bottom:540.840133pt;}
.yc1{bottom:550.830800pt;}
.yf0{bottom:552.610267pt;}
.y59{bottom:556.405467pt;}
.y8a{bottom:559.240133pt;}
.yc0{bottom:569.230800pt;}
.yef{bottom:571.010267pt;}
.y58{bottom:574.805467pt;}
.y89{bottom:577.640133pt;}
.ybf{bottom:587.630800pt;}
.yee{bottom:589.410267pt;}
.y57{bottom:593.205467pt;}
.y88{bottom:596.040133pt;}
.y10{bottom:605.483067pt;}
.ybe{bottom:606.030800pt;}
.yed{bottom:607.810267pt;}
.y56{bottom:611.605467pt;}
.y87{bottom:614.440133pt;}
.yf{bottom:621.483067pt;}
.ybd{bottom:624.430800pt;}
.yec{bottom:626.210267pt;}
.y10b{bottom:629.989600pt;}
.y55{bottom:630.005467pt;}
.y86{bottom:632.840133pt;}
.y73{bottom:634.722800pt;}
.ybc{bottom:642.830800pt;}
.yeb{bottom:644.610267pt;}
.ye{bottom:648.149733pt;}
.y10a{bottom:648.389733pt;}
.y54{bottom:648.405467pt;}
.y85{bottom:651.240133pt;}
.ybb{bottom:661.230800pt;}
.yea{bottom:663.010267pt;}
.y53{bottom:666.805467pt;}
.y84{bottom:669.640133pt;}
.yd{bottom:674.816400pt;}
.yba{bottom:679.630800pt;}
.ye9{bottom:681.410267pt;}
.y109{bottom:685.189733pt;}
.y52{bottom:685.205467pt;}
.y83{bottom:688.040133pt;}
.yc{bottom:690.816400pt;}
.yb9{bottom:698.030800pt;}
.ye8{bottom:699.810267pt;}
.y51{bottom:703.605467pt;}
.y82{bottom:706.440133pt;}
.yb{bottom:706.816400pt;}
.ye7{bottom:718.210267pt;}
.y108{bottom:721.989600pt;}
.y50{bottom:722.005467pt;}
.ya{bottom:722.816400pt;}
.y81{bottom:724.840133pt;}
.yb8{bottom:734.961733pt;}
.ye6{bottom:736.610133pt;}
.y9{bottom:738.816400pt;}
.y107{bottom:740.389600pt;}
.y4f{bottom:740.405467pt;}
.y80{bottom:743.240133pt;}
.yb7{bottom:753.859333pt;}
.y8{bottom:754.816400pt;}
.ye5{bottom:755.010267pt;}
.y106{bottom:758.789733pt;}
.y4e{bottom:758.805467pt;}
.y7f{bottom:761.640133pt;}
.yb6{bottom:772.164800pt;}
.ye4{bottom:773.410267pt;}
.y105{bottom:777.189733pt;}
.y4d{bottom:777.205467pt;}
.y93{bottom:780.040133pt;}
.y7e{bottom:780.040267pt;}
.y7{bottom:787.845333pt;}
.yb5{bottom:789.764800pt;}
.ye3{bottom:791.810267pt;}
.y104{bottom:795.589733pt;}
.y4c{bottom:795.605467pt;}
.y92{bottom:798.440133pt;}
.y6{bottom:806.245333pt;}
.yb4{bottom:807.364800pt;}
.ye2{bottom:810.210267pt;}
.y4b{bottom:814.005467pt;}
.y7d{bottom:816.840133pt;}
.yb3{bottom:826.712533pt;}
.ye1{bottom:828.610133pt;}
.y103{bottom:832.389600pt;}
.y4a{bottom:832.405467pt;}
.y7c{bottom:835.240133pt;}
.yb2{bottom:844.312533pt;}
.ye0{bottom:847.010267pt;}
.y5{bottom:847.045333pt;}
.y102{bottom:850.789733pt;}
.y49{bottom:850.805467pt;}
.y91{bottom:853.640133pt;}
.y7b{bottom:853.640267pt;}
.yb1{bottom:864.252267pt;}
.ydf{bottom:865.410267pt;}
.y48{bottom:869.205467pt;}
.y4{bottom:869.445333pt;}
.y90{bottom:872.040133pt;}
.y7a{bottom:872.040267pt;}
.yfa{bottom:883.810267pt;}
.y101{bottom:887.589733pt;}
.y47{bottom:887.605467pt;}
.yae{bottom:890.116800pt;}
.y79{bottom:890.440133pt;}
.yb0{bottom:898.916800pt;}
.yab{bottom:899.781200pt;}
.yde{bottom:902.210267pt;}
.y46{bottom:906.005467pt;}
.yad{bottom:907.716800pt;}
.y78{bottom:908.840133pt;}
.y3{bottom:914.245333pt;}
.yaf{bottom:916.516800pt;}
.yaa{bottom:920.314667pt;}
.ydd{bottom:920.610133pt;}
.y100{bottom:924.389600pt;}
.y71{bottom:924.405467pt;}
.yac{bottom:925.316800pt;}
.y77{bottom:927.240133pt;}
.ydc{bottom:939.010267pt;}
.yff{bottom:942.789733pt;}
.y45{bottom:942.805467pt;}
.y8f{bottom:945.640133pt;}
.y76{bottom:945.640267pt;}
.y3f{bottom:953.888933pt;}
.ydb{bottom:957.410267pt;}
.ya9{bottom:957.425200pt;}
.y44{bottom:961.205467pt;}
.y8e{bottom:964.040133pt;}
.y75{bottom:964.040267pt;}
.yda{bottom:975.810267pt;}
.ya8{bottom:975.825200pt;}
.yfe{bottom:979.589733pt;}
.y43{bottom:979.605467pt;}
.y74{bottom:982.440133pt;}
.y3e{bottom:984.691600pt;}
.y72{bottom:1007.646000pt;}
.y41{bottom:1008.782667pt;}
.yd9{bottom:1010.294400pt;}
.y2{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.hb{height:42.166667pt;}
.h6{height:42.585938pt;}
.h2{height:46.112508pt;}
.h7{height:46.796875pt;}
.h11{height:48.758375pt;}
.hd{height:51.476562pt;}
.h8{height:53.037760pt;}
.h9{height:53.816406pt;}
.ha{height:55.343750pt;}
.h4{height:59.955729pt;}
.h5{height:64.567708pt;}
.h10{height:83.218963pt;}
.hf{height:83.476562pt;}
.hc{height:86.676029pt;}
.he{height:86.676562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:56.692933pt;}
.x1f{left:64.226267pt;}
.x12{left:79.370133pt;}
.x1{left:94.488133pt;}
.x2{left:95.999867pt;}
.x2a{left:99.912533pt;}
.x1c{left:102.021467pt;}
.xb{left:117.165333pt;}
.x29{left:118.496000pt;}
.x10{left:121.519600pt;}
.xa{left:131.716533pt;}
.x6{left:144.479733pt;}
.x1e{left:186.182533pt;}
.x18{left:189.517600pt;}
.x8{left:204.843467pt;}
.x7{left:227.044133pt;}
.x2d{left:239.132933pt;}
.xe{left:244.771600pt;}
.x2b{left:275.792933pt;}
.x2e{left:290.935333pt;}
.x9{left:316.025200pt;}
.x2c{left:335.419333pt;}
.x25{left:362.656533pt;}
.x5{left:364.649333pt;}
.x15{left:374.254533pt;}
.x13{left:387.401600pt;}
.x14{left:410.078800pt;}
.x3{left:421.266133pt;}
.xc{left:425.196800pt;}
.x21{left:441.330267pt;}
.x4{left:442.386133pt;}
.x16{left:445.984267pt;}
.xd{left:447.874000pt;}
.x20{left:452.810000pt;}
.x22{left:467.895733pt;}
.x26{left:495.795200pt;}
.x19{left:499.607333pt;}
.x27{left:505.056933pt;}
.x28{left:509.852933pt;}
.x1d{left:512.177333pt;}
.x23{left:599.385600pt;}
.x24{left:607.896933pt;}
.x1a{left:629.004000pt;}
.x1b{left:634.826267pt;}
.x17{left:646.299067pt;}
.xf{left:681.764933pt;}
}




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