
    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_51a70c228766dcd76190701d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_ae4a0a934f1a96766a386cdd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f700d8b09a56c587f9259cf2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_7b92c1ca8e33dbe933998a57.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0a928585ccac9774c38c7d0e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_22dbe77b43d75394175cb254.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_0f1a23953d4e89db245050f7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_8b903d3784146d172450f86b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_602b8b6a91bd356f2d879f10.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:45.480000px;}
.v4{vertical-align:75.720000px;}
.v5{vertical-align:121.260000px;}
.ls10{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.091200px;}
.ls8{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:8.820000px;}
.lsf{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.lsb{letter-spacing:125.802000px;}
.ls7{letter-spacing:194.562000px;}
.ls6{letter-spacing:1341.120000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.839800px;}
.wsf{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.220000px;}
.ws11{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:72.474000px;}
.wse{word-spacing:144.894000px;}
.wsd{word-spacing:145.074000px;}
.ws9{word-spacing:168.534000px;}
._11{margin-left:-9.108240px;}
._1e{margin-left:-7.663200px;}
._14{margin-left:-5.619600px;}
._10{margin-left:-4.446480px;}
._13{margin-left:-3.366000px;}
._12{margin-left:-2.302080px;}
._0{margin-left:-1.080000px;}
._f{width:1.053360px;}
._1{width:2.220000px;}
._18{width:3.222480px;}
._17{width:4.302720px;}
._19{width:5.828400px;}
._1a{width:6.958320px;}
._16{width:8.550480px;}
._15{width:9.561600px;}
._6{width:10.800000px;}
._1c{width:12.546720px;}
._20{width:18.928560px;}
._1f{width:21.212160px;}
._21{width:24.416640px;}
._7{width:76.284960px;}
._1d{width:98.340000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._1b{width:444.388320px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs9{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:5.760000px;}
.yac{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.ybb{bottom:11.550000px;}
.y6{bottom:12.420000px;}
.y8d{bottom:13.290000px;}
.yb4{bottom:13.320000px;}
.y8{bottom:18.180000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y8a{bottom:58.575000px;}
.y8e{bottom:59.325000px;}
.y94{bottom:60.330000px;}
.yb1{bottom:63.465000px;}
.yd3{bottom:63.825000px;}
.yb5{bottom:64.230000px;}
.ybd{bottom:67.170000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.y93{bottom:77.220000px;}
.ya{bottom:79.560000px;}
.ybc{bottom:83.730000px;}
.y3{bottom:96.330000px;}
.yd4{bottom:101.700000px;}
.y3d{bottom:105.840000px;}
.y92{bottom:113.220000px;}
.ycd{bottom:113.580000px;}
.y8b{bottom:115.530000px;}
.y8f{bottom:116.280000px;}
.yf5{bottom:117.540000px;}
.y88{bottom:118.980000px;}
.y2{bottom:125.670000px;}
.y3c{bottom:125.820000px;}
.yb2{bottom:130.170000px;}
.yb6{bottom:130.935000px;}
.ycc{bottom:133.560000px;}
.yf6{bottom:135.720000px;}
.yf4{bottom:137.340000px;}
.y87{bottom:138.780000px;}
.y6a{bottom:139.320000px;}
.yd5{bottom:139.575000px;}
.ycf{bottom:142.455000px;}
.y3b{bottom:145.620000px;}
.ycb{bottom:153.390000px;}
.yf3{bottom:157.350000px;}
.y86{bottom:158.790000px;}
.y69{bottom:159.150000px;}
.y3a{bottom:165.450000px;}
.y8c{bottom:172.470000px;}
.y96{bottom:173.130000px;}
.yca{bottom:173.190000px;}
.y90{bottom:173.235000px;}
.yf2{bottom:177.150000px;}
.yd6{bottom:177.450000px;}
.y85{bottom:178.590000px;}
.y68{bottom:178.950000px;}
.ybf{bottom:183.090000px;}
.y39{bottom:185.250000px;}
.yc9{bottom:192.990000px;}
.yb3{bottom:196.920000px;}
.yf1{bottom:196.950000px;}
.yb7{bottom:197.640000px;}
.y84{bottom:198.390000px;}
.y95{bottom:198.435000px;}
.y67{bottom:198.750000px;}
.ybe{bottom:199.650000px;}
.y38{bottom:205.050000px;}
.yc8{bottom:212.790000px;}
.yd7{bottom:215.310000px;}
.yb9{bottom:216.210000px;}
.yf0{bottom:216.750000px;}
.y83{bottom:218.190000px;}
.y66{bottom:218.550000px;}
.yaf{bottom:224.850000px;}
.y37{bottom:225.030000px;}
.yd0{bottom:229.575000px;}
.yc7{bottom:232.770000px;}
.yef{bottom:236.550000px;}
.y82{bottom:237.990000px;}
.y65{bottom:238.530000px;}
.y36{bottom:244.830000px;}
.yc6{bottom:252.570000px;}
.yd8{bottom:253.185000px;}
.yd1{bottom:256.065000px;}
.yee{bottom:256.530000px;}
.y81{bottom:257.970000px;}
.y64{bottom:258.330000px;}
.yae{bottom:259.590000px;}
.y35{bottom:264.630000px;}
.yc5{bottom:269.130000px;}
.yed{bottom:276.330000px;}
.y80{bottom:277.770000px;}
.y63{bottom:278.130000px;}
.yad{bottom:280.110000px;}
.y34{bottom:284.430000px;}
.yd2{bottom:286.380000px;}
.yd9{bottom:291.060000px;}
.yec{bottom:296.130000px;}
.y7f{bottom:297.570000px;}
.y62{bottom:297.930000px;}
.yab{bottom:300.630000px;}
.y33{bottom:304.230000px;}
.yeb{bottom:315.930000px;}
.y7e{bottom:317.370000px;}
.y61{bottom:317.730000px;}
.yaa{bottom:321.330000px;}
.y32{bottom:324.210000px;}
.yda{bottom:328.935000px;}
.yea{bottom:335.730000px;}
.y7d{bottom:337.170000px;}
.y60{bottom:337.710000px;}
.y31{bottom:341.490000px;}
.ya9{bottom:341.850000px;}
.ye9{bottom:355.710000px;}
.y7c{bottom:357.150000px;}
.y5f{bottom:357.510000px;}
.y30{bottom:361.290000px;}
.ya8{bottom:362.550000px;}
.ye8{bottom:375.510000px;}
.y7b{bottom:376.950000px;}
.y5e{bottom:377.310000px;}
.y2f{bottom:381.090000px;}
.ya6{bottom:383.070000px;}
.ye7{bottom:395.310000px;}
.y7a{bottom:396.750000px;}
.y5d{bottom:397.110000px;}
.y2e{bottom:400.935000px;}
.ya5{bottom:409.395000px;}
.y79{bottom:413.355000px;}
.y89{bottom:414.180000px;}
.y91{bottom:414.540000px;}
.ye6{bottom:415.155000px;}
.y5c{bottom:416.955000px;}
.y2d{bottom:420.735000px;}
.ya4{bottom:429.375000px;}
.ye5{bottom:434.955000px;}
.y5b{bottom:436.935000px;}
.y2c{bottom:440.535000px;}
.ya3{bottom:449.175000px;}
.ye4{bottom:454.935000px;}
.y5a{bottom:456.735000px;}
.y2b{bottom:460.515000px;}
.ya2{bottom:468.975000px;}
.ye3{bottom:474.735000px;}
.y59{bottom:476.535000px;}
.y2a{bottom:480.315000px;}
.ya1{bottom:488.775000px;}
.ye2{bottom:494.535000px;}
.y58{bottom:496.335000px;}
.y29{bottom:500.115000px;}
.ya0{bottom:508.575000px;}
.ye1{bottom:514.335000px;}
.y57{bottom:516.135000px;}
.y28{bottom:519.915000px;}
.y9f{bottom:528.555000px;}
.ye0{bottom:534.135000px;}
.y56{bottom:536.115000px;}
.y27{bottom:539.715000px;}
.y9e{bottom:548.355000px;}
.ydf{bottom:554.115000px;}
.y55{bottom:555.915000px;}
.y26{bottom:559.695000px;}
.y9d{bottom:568.155000px;}
.yde{bottom:573.915000px;}
.y54{bottom:575.715000px;}
.y25{bottom:579.495000px;}
.y9c{bottom:587.955000px;}
.ydd{bottom:593.715000px;}
.y53{bottom:595.515000px;}
.y24{bottom:599.295000px;}
.y9b{bottom:607.755000px;}
.ydc{bottom:613.515000px;}
.y52{bottom:615.315000px;}
.yc4{bottom:616.935000px;}
.y23{bottom:619.095000px;}
.y9a{bottom:627.735000px;}
.ydb{bottom:633.315000px;}
.y51{bottom:635.295000px;}
.yc3{bottom:636.915000px;}
.y22{bottom:638.895000px;}
.y99{bottom:647.535000px;}
.y78{bottom:653.325000px;}
.y50{bottom:655.125000px;}
.yc2{bottom:656.745000px;}
.y21{bottom:658.905000px;}
.y98{bottom:667.365000px;}
.y77{bottom:673.125000px;}
.y4f{bottom:674.925000px;}
.yc1{bottom:676.545000px;}
.y20{bottom:678.705000px;}
.y97{bottom:683.925000px;}
.yb0{bottom:684.720000px;}
.yb8{bottom:685.260000px;}
.y76{bottom:692.925000px;}
.yc0{bottom:693.105000px;}
.y4e{bottom:694.725000px;}
.yce{bottom:694.980000px;}
.y1f{bottom:698.505000px;}
.y75{bottom:712.725000px;}
.y4d{bottom:714.525000px;}
.y1e{bottom:715.785000px;}
.y74{bottom:732.525000px;}
.y4c{bottom:734.505000px;}
.y1d{bottom:735.585000px;}
.y73{bottom:752.505000px;}
.y1c{bottom:752.865000px;}
.y4b{bottom:763.305000px;}
.y72{bottom:772.305000px;}
.y1b{bottom:772.665000px;}
.y4a{bottom:783.105000px;}
.y71{bottom:792.105000px;}
.y1a{bottom:792.465000px;}
.y49{bottom:802.905000px;}
.y70{bottom:811.905000px;}
.y19{bottom:812.265000px;}
.y48{bottom:822.705000px;}
.y6f{bottom:831.705000px;}
.y18{bottom:832.245000px;}
.y47{bottom:842.685000px;}
.y6e{bottom:851.685000px;}
.y17{bottom:852.045000px;}
.y46{bottom:862.485000px;}
.y6d{bottom:871.485000px;}
.y16{bottom:871.845000px;}
.yba{bottom:873.360000px;}
.y45{bottom:882.285000px;}
.y6c{bottom:891.285000px;}
.y15{bottom:891.645000px;}
.y44{bottom:902.130000px;}
.y14{bottom:908.970000px;}
.y6b{bottom:911.130000px;}
.y43{bottom:930.930000px;}
.y13{bottom:933.990000px;}
.y42{bottom:950.910000px;}
.y12{bottom:953.790000px;}
.y11{bottom:969.090000px;}
.y41{bottom:970.710000px;}
.y10{bottom:988.170000px;}
.y40{bottom:990.510000px;}
.y3f{bottom:1010.310000px;}
.yf{bottom:1012.830000px;}
.y3e{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.h14{height:19.800000px;}
.h13{height:19.836000px;}
.h15{height:19.980000px;}
.hb{height:21.780000px;}
.hd{height:28.115859px;}
.h7{height:33.480000px;}
.he{height:42.164648px;}
.h1e{height:42.854414px;}
.h8{height:43.215117px;}
.h1d{height:43.506914px;}
.hf{height:43.681992px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h19{height:48.960000px;}
.h9{height:53.224453px;}
.h11{height:53.709961px;}
.h17{height:53.853187px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h1c{height:99.069961px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1b{height:174.969961px;}
.h10{height:222.120000px;}
.h12{height:223.920000px;}
.h18{height:250.740000px;}
.h16{height:251.280000px;}
.h1a{height:349.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:131.796000px;}
.w9{width:194.970000px;}
.wa{width:212.610000px;}
.w8{width:233.850000px;}
.wd{width:263.340000px;}
.wc{width:321.300000px;}
.w7{width:334.080000px;}
.w6{width:335.520000px;}
.wb{width:388.080000px;}
.we{width:582.120000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x14{left:9.828000px;}
.x34{left:16.740000px;}
.x2a{left:19.080000px;}
.x25{left:34.596000px;}
.x24{left:37.548000px;}
.x12{left:43.668000px;}
.x13{left:45.900000px;}
.x2b{left:51.870000px;}
.x1{left:53.280000px;}
.x19{left:54.330000px;}
.x31{left:55.695000px;}
.x6{left:62.279987px;}
.x35{left:80.999987px;}
.x1f{left:90.900000px;}
.xb{left:96.515987px;}
.x23{left:107.790000px;}
.x4{left:118.290000px;}
.x18{left:122.655000px;}
.x1c{left:125.856000px;}
.x11{left:132.330000px;}
.x30{left:154.980000px;}
.x16{left:169.920000px;}
.x21{left:172.650000px;}
.xe{left:180.030000px;}
.x17{left:192.420000px;}
.xf{left:200.625000px;}
.x20{left:202.680000px;}
.x2d{left:234.389987px;}
.x9{left:237.809987px;}
.x27{left:241.530000px;}
.x29{left:258.120000px;}
.xa{left:268.094987px;}
.x2f{left:271.874987px;}
.x10{left:303.660000px;}
.xd{left:307.874987px;}
.x1b{left:316.334987px;}
.x8{left:325.694987px;}
.x22{left:353.670000px;}
.x1d{left:359.715000px;}
.x32{left:373.575000px;}
.x33{left:426.570000px;}
.xc{left:434.054987px;}
.x15{left:437.760000px;}
.x7{left:446.504987px;}
.x26{left:480.060000px;}
.x28{left:538.020000px;}
.x1e{left:554.685000px;}
.x2e{left:678.389987px;}
.x3{left:707.910000px;}
.x2c{left:737.969987px;}
.x1a{left:802.049987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:40.426667pt;}
.v4{vertical-align:67.306667pt;}
.v5{vertical-align:107.786667pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.081067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:7.840000pt;}
.lsf{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.lsb{letter-spacing:111.824000pt;}
.ls7{letter-spacing:172.944000pt;}
.ls6{letter-spacing:1192.106667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.190933pt;}
.wsf{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:64.421333pt;}
.wse{word-spacing:128.794667pt;}
.wsd{word-spacing:128.954667pt;}
.ws9{word-spacing:149.808000pt;}
._11{margin-left:-8.096213pt;}
._1e{margin-left:-6.811733pt;}
._14{margin-left:-4.995200pt;}
._10{margin-left:-3.952427pt;}
._13{margin-left:-2.992000pt;}
._12{margin-left:-2.046293pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.936320pt;}
._1{width:1.973333pt;}
._18{width:2.864427pt;}
._17{width:3.824640pt;}
._19{width:5.180800pt;}
._1a{width:6.185173pt;}
._16{width:7.600427pt;}
._15{width:8.499200pt;}
._6{width:9.600000pt;}
._1c{width:11.152640pt;}
._20{width:16.825387pt;}
._1f{width:18.855253pt;}
._21{width:21.703680pt;}
._7{width:67.808853pt;}
._1d{width:87.413333pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._1b{width:395.011840pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs9{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:5.120000pt;}
.yac{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.ybb{bottom:10.266667pt;}
.y6{bottom:11.040000pt;}
.y8d{bottom:11.813333pt;}
.yb4{bottom:11.840000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y8a{bottom:52.066667pt;}
.y8e{bottom:52.733333pt;}
.y94{bottom:53.626667pt;}
.yb1{bottom:56.413333pt;}
.yd3{bottom:56.733333pt;}
.yb5{bottom:57.093333pt;}
.ybd{bottom:59.706667pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.y93{bottom:68.640000pt;}
.ya{bottom:70.720000pt;}
.ybc{bottom:74.426667pt;}
.y3{bottom:85.626667pt;}
.yd4{bottom:90.400000pt;}
.y3d{bottom:94.080000pt;}
.y92{bottom:100.640000pt;}
.ycd{bottom:100.960000pt;}
.y8b{bottom:102.693333pt;}
.y8f{bottom:103.360000pt;}
.yf5{bottom:104.480000pt;}
.y88{bottom:105.760000pt;}
.y2{bottom:111.706667pt;}
.y3c{bottom:111.840000pt;}
.yb2{bottom:115.706667pt;}
.yb6{bottom:116.386667pt;}
.ycc{bottom:118.720000pt;}
.yf6{bottom:120.640000pt;}
.yf4{bottom:122.080000pt;}
.y87{bottom:123.360000pt;}
.y6a{bottom:123.840000pt;}
.yd5{bottom:124.066667pt;}
.ycf{bottom:126.626667pt;}
.y3b{bottom:129.440000pt;}
.ycb{bottom:136.346667pt;}
.yf3{bottom:139.866667pt;}
.y86{bottom:141.146667pt;}
.y69{bottom:141.466667pt;}
.y3a{bottom:147.066667pt;}
.y8c{bottom:153.306667pt;}
.y96{bottom:153.893333pt;}
.yca{bottom:153.946667pt;}
.y90{bottom:153.986667pt;}
.yf2{bottom:157.466667pt;}
.yd6{bottom:157.733333pt;}
.y85{bottom:158.746667pt;}
.y68{bottom:159.066667pt;}
.ybf{bottom:162.746667pt;}
.y39{bottom:164.666667pt;}
.yc9{bottom:171.546667pt;}
.yb3{bottom:175.040000pt;}
.yf1{bottom:175.066667pt;}
.yb7{bottom:175.680000pt;}
.y84{bottom:176.346667pt;}
.y95{bottom:176.386667pt;}
.y67{bottom:176.666667pt;}
.ybe{bottom:177.466667pt;}
.y38{bottom:182.266667pt;}
.yc8{bottom:189.146667pt;}
.yd7{bottom:191.386667pt;}
.yb9{bottom:192.186667pt;}
.yf0{bottom:192.666667pt;}
.y83{bottom:193.946667pt;}
.y66{bottom:194.266667pt;}
.yaf{bottom:199.866667pt;}
.y37{bottom:200.026667pt;}
.yd0{bottom:204.066667pt;}
.yc7{bottom:206.906667pt;}
.yef{bottom:210.266667pt;}
.y82{bottom:211.546667pt;}
.y65{bottom:212.026667pt;}
.y36{bottom:217.626667pt;}
.yc6{bottom:224.506667pt;}
.yd8{bottom:225.053333pt;}
.yd1{bottom:227.613333pt;}
.yee{bottom:228.026667pt;}
.y81{bottom:229.306667pt;}
.y64{bottom:229.626667pt;}
.yae{bottom:230.746667pt;}
.y35{bottom:235.226667pt;}
.yc5{bottom:239.226667pt;}
.yed{bottom:245.626667pt;}
.y80{bottom:246.906667pt;}
.y63{bottom:247.226667pt;}
.yad{bottom:248.986667pt;}
.y34{bottom:252.826667pt;}
.yd2{bottom:254.560000pt;}
.yd9{bottom:258.720000pt;}
.yec{bottom:263.226667pt;}
.y7f{bottom:264.506667pt;}
.y62{bottom:264.826667pt;}
.yab{bottom:267.226667pt;}
.y33{bottom:270.426667pt;}
.yeb{bottom:280.826667pt;}
.y7e{bottom:282.106667pt;}
.y61{bottom:282.426667pt;}
.yaa{bottom:285.626667pt;}
.y32{bottom:288.186667pt;}
.yda{bottom:292.386667pt;}
.yea{bottom:298.426667pt;}
.y7d{bottom:299.706667pt;}
.y60{bottom:300.186667pt;}
.y31{bottom:303.546667pt;}
.ya9{bottom:303.866667pt;}
.ye9{bottom:316.186667pt;}
.y7c{bottom:317.466667pt;}
.y5f{bottom:317.786667pt;}
.y30{bottom:321.146667pt;}
.ya8{bottom:322.266667pt;}
.ye8{bottom:333.786667pt;}
.y7b{bottom:335.066667pt;}
.y5e{bottom:335.386667pt;}
.y2f{bottom:338.746667pt;}
.ya6{bottom:340.506667pt;}
.ye7{bottom:351.386667pt;}
.y7a{bottom:352.666667pt;}
.y5d{bottom:352.986667pt;}
.y2e{bottom:356.386667pt;}
.ya5{bottom:363.906667pt;}
.y79{bottom:367.426667pt;}
.y89{bottom:368.160000pt;}
.y91{bottom:368.480000pt;}
.ye6{bottom:369.026667pt;}
.y5c{bottom:370.626667pt;}
.y2d{bottom:373.986667pt;}
.ya4{bottom:381.666667pt;}
.ye5{bottom:386.626667pt;}
.y5b{bottom:388.386667pt;}
.y2c{bottom:391.586667pt;}
.ya3{bottom:399.266667pt;}
.ye4{bottom:404.386667pt;}
.y5a{bottom:405.986667pt;}
.y2b{bottom:409.346667pt;}
.ya2{bottom:416.866667pt;}
.ye3{bottom:421.986667pt;}
.y59{bottom:423.586667pt;}
.y2a{bottom:426.946667pt;}
.ya1{bottom:434.466667pt;}
.ye2{bottom:439.586667pt;}
.y58{bottom:441.186667pt;}
.y29{bottom:444.546667pt;}
.ya0{bottom:452.066667pt;}
.ye1{bottom:457.186667pt;}
.y57{bottom:458.786667pt;}
.y28{bottom:462.146667pt;}
.y9f{bottom:469.826667pt;}
.ye0{bottom:474.786667pt;}
.y56{bottom:476.546667pt;}
.y27{bottom:479.746667pt;}
.y9e{bottom:487.426667pt;}
.ydf{bottom:492.546667pt;}
.y55{bottom:494.146667pt;}
.y26{bottom:497.506667pt;}
.y9d{bottom:505.026667pt;}
.yde{bottom:510.146667pt;}
.y54{bottom:511.746667pt;}
.y25{bottom:515.106667pt;}
.y9c{bottom:522.626667pt;}
.ydd{bottom:527.746667pt;}
.y53{bottom:529.346667pt;}
.y24{bottom:532.706667pt;}
.y9b{bottom:540.226667pt;}
.ydc{bottom:545.346667pt;}
.y52{bottom:546.946667pt;}
.yc4{bottom:548.386667pt;}
.y23{bottom:550.306667pt;}
.y9a{bottom:557.986667pt;}
.ydb{bottom:562.946667pt;}
.y51{bottom:564.706667pt;}
.yc3{bottom:566.146667pt;}
.y22{bottom:567.906667pt;}
.y99{bottom:575.586667pt;}
.y78{bottom:580.733333pt;}
.y50{bottom:582.333333pt;}
.yc2{bottom:583.773333pt;}
.y21{bottom:585.693333pt;}
.y98{bottom:593.213333pt;}
.y77{bottom:598.333333pt;}
.y4f{bottom:599.933333pt;}
.yc1{bottom:601.373333pt;}
.y20{bottom:603.293333pt;}
.y97{bottom:607.933333pt;}
.yb0{bottom:608.640000pt;}
.yb8{bottom:609.120000pt;}
.y76{bottom:615.933333pt;}
.yc0{bottom:616.093333pt;}
.y4e{bottom:617.533333pt;}
.yce{bottom:617.760000pt;}
.y1f{bottom:620.893333pt;}
.y75{bottom:633.533333pt;}
.y4d{bottom:635.133333pt;}
.y1e{bottom:636.253333pt;}
.y74{bottom:651.133333pt;}
.y4c{bottom:652.893333pt;}
.y1d{bottom:653.853333pt;}
.y73{bottom:668.893333pt;}
.y1c{bottom:669.213333pt;}
.y4b{bottom:678.493333pt;}
.y72{bottom:686.493333pt;}
.y1b{bottom:686.813333pt;}
.y4a{bottom:696.093333pt;}
.y71{bottom:704.093333pt;}
.y1a{bottom:704.413333pt;}
.y49{bottom:713.693333pt;}
.y70{bottom:721.693333pt;}
.y19{bottom:722.013333pt;}
.y48{bottom:731.293333pt;}
.y6f{bottom:739.293333pt;}
.y18{bottom:739.773333pt;}
.y47{bottom:749.053333pt;}
.y6e{bottom:757.053333pt;}
.y17{bottom:757.373333pt;}
.y46{bottom:766.653333pt;}
.y6d{bottom:774.653333pt;}
.y16{bottom:774.973333pt;}
.yba{bottom:776.320000pt;}
.y45{bottom:784.253333pt;}
.y6c{bottom:792.253333pt;}
.y15{bottom:792.573333pt;}
.y44{bottom:801.893333pt;}
.y14{bottom:807.973333pt;}
.y6b{bottom:809.893333pt;}
.y43{bottom:827.493333pt;}
.y13{bottom:830.213333pt;}
.y42{bottom:845.253333pt;}
.y12{bottom:847.813333pt;}
.y11{bottom:861.413333pt;}
.y41{bottom:862.853333pt;}
.y10{bottom:878.373333pt;}
.y40{bottom:880.453333pt;}
.y3f{bottom:898.053333pt;}
.yf{bottom:900.293333pt;}
.y3e{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.h14{height:17.600000pt;}
.h13{height:17.632000pt;}
.h15{height:17.760000pt;}
.hb{height:19.360000pt;}
.hd{height:24.991875pt;}
.h7{height:29.760000pt;}
.he{height:37.479688pt;}
.h1e{height:38.092813pt;}
.h8{height:38.413438pt;}
.h1d{height:38.672812pt;}
.hf{height:38.828437pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h19{height:43.520000pt;}
.h9{height:47.310625pt;}
.h11{height:47.742188pt;}
.h17{height:47.869500pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h1c{height:88.062187pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1b{height:155.528854pt;}
.h10{height:197.440000pt;}
.h12{height:199.040000pt;}
.h18{height:222.880000pt;}
.h16{height:223.360000pt;}
.h1a{height:310.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:117.152000pt;}
.w9{width:173.306667pt;}
.wa{width:188.986667pt;}
.w8{width:207.866667pt;}
.wd{width:234.080000pt;}
.wc{width:285.600000pt;}
.w7{width:296.960000pt;}
.w6{width:298.240000pt;}
.wb{width:344.960000pt;}
.we{width:517.440000pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x14{left:8.736000pt;}
.x34{left:14.880000pt;}
.x2a{left:16.960000pt;}
.x25{left:30.752000pt;}
.x24{left:33.376000pt;}
.x12{left:38.816000pt;}
.x13{left:40.800000pt;}
.x2b{left:46.106667pt;}
.x1{left:47.360000pt;}
.x19{left:48.293333pt;}
.x31{left:49.506667pt;}
.x6{left:55.359988pt;}
.x35{left:71.999988pt;}
.x1f{left:80.800000pt;}
.xb{left:85.791988pt;}
.x23{left:95.813333pt;}
.x4{left:105.146667pt;}
.x18{left:109.026667pt;}
.x1c{left:111.872000pt;}
.x11{left:117.626667pt;}
.x30{left:137.760000pt;}
.x16{left:151.040000pt;}
.x21{left:153.466667pt;}
.xe{left:160.026667pt;}
.x17{left:171.040000pt;}
.xf{left:178.333333pt;}
.x20{left:180.160000pt;}
.x2d{left:208.346655pt;}
.x9{left:211.386655pt;}
.x27{left:214.693333pt;}
.x29{left:229.440000pt;}
.xa{left:238.306655pt;}
.x2f{left:241.666655pt;}
.x10{left:269.920000pt;}
.xd{left:273.666655pt;}
.x1b{left:281.186655pt;}
.x8{left:289.506655pt;}
.x22{left:314.373333pt;}
.x1d{left:319.746667pt;}
.x32{left:332.066667pt;}
.x33{left:379.173333pt;}
.xc{left:385.826655pt;}
.x15{left:389.120000pt;}
.x7{left:396.893322pt;}
.x26{left:426.720000pt;}
.x28{left:478.240000pt;}
.x1e{left:493.053333pt;}
.x2e{left:603.013322pt;}
.x3{left:629.253333pt;}
.x2c{left:655.973322pt;}
.x1a{left:712.933322pt;}
.x5{left:737.120000pt;}
}




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