
    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_58ff6c2ce5914c60db980b40.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_c1fb44d0979098351514c9ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.116699;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_eb91cde90d9c5cfcd42ef729.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45ef8ef22d977ce664f204f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_0dd801367e425e898d612e6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_c9e121e0214efc79e843f2b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_160172fe96aa48339f66e85b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_38485da42500c61024e26ed6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_d309e950dd2c19c84c5f7f5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_db62d5b65372cfa5f0af2e56.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.129395;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);}
.v1{vertical-align:-66.000000px;}
.v3{vertical-align:-63.600000px;}
.v2{vertical-align:-62.340000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.176000px;}
.lsc{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.078000px;}
.ls9{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.588000px;}
.lse{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.900000px;}
.ls1{letter-spacing:3.360000px;}
.ls6{letter-spacing:4.440000px;}
.lsd{letter-spacing:20.520000px;}
.lsb{letter-spacing:45.900000px;}
.lsa{letter-spacing:71.400000px;}
.ls0{letter-spacing:198.180000px;}
.ls4{letter-spacing:202.680000px;}
.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;}
}
.ws7{word-spacing:-60.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.420000px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.460000px;}
.ws8{word-spacing:-14.100000px;}
.ws5{word-spacing:-13.560000px;}
.wsa{word-spacing:-13.524000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.900000px;}
.wsb{word-spacing:-12.324000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-3.000000px;}
._0{margin-left:-1.320000px;}
._1{width:1.452000px;}
._3{width:2.562000px;}
._2{width:3.888000px;}
._6{width:5.526000px;}
._a{width:6.546000px;}
._5{width:7.710000px;}
._4{width:8.886000px;}
._10{width:10.032000px;}
._c{width:11.286000px;}
._9{width:12.342000px;}
._15{width:13.416000px;}
._e{width:15.066000px;}
._d{width:16.068000px;}
._7{width:17.340000px;}
._8{width:18.390000px;}
._f{width:19.416000px;}
._13{width:21.360000px;}
._14{width:22.500000px;}
._17{width:23.820000px;}
._18{width:24.828000px;}
._1a{width:26.160000px;}
._19{width:27.420000px;}
._1b{width:28.440000px;}
._1e{width:30.048000px;}
._1d{width:31.440000px;}
._11{width:33.360000px;}
._12{width:34.380000px;}
._1c{width:35.580000px;}
._22{width:36.642000px;}
._21{width:37.668000px;}
._16{width:38.880000px;}
._20{width:54.060000px;}
._1f{width:55.080000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.785000px;}
.y5{bottom:216.375000px;}
.y4{bottom:234.075000px;}
.y39{bottom:250.875000px;}
.y6e{bottom:251.475000px;}
.y3a{bottom:256.275000px;}
.y9a{bottom:258.075000px;}
.yc5{bottom:261.375000px;}
.y12c{bottom:266.175000px;}
.y6d{bottom:268.875000px;}
.y38{bottom:273.375000px;}
.y99{bottom:276.375000px;}
.y97{bottom:278.475000px;}
.yc6{bottom:279.675000px;}
.y12b{bottom:281.475000px;}
.yf7{bottom:282.075000px;}
.y6c{bottom:285.975000px;}
.y98{bottom:294.675000px;}
.y96{bottom:295.875000px;}
.y12a{bottom:297.075000px;}
.yf6{bottom:299.175000px;}
.y6b{bottom:303.375000px;}
.y129{bottom:312.675000px;}
.y95{bottom:312.975000px;}
.yf5{bottom:316.575000px;}
.y6a{bottom:320.475000px;}
.y37{bottom:321.675000px;}
.y128{bottom:327.975000px;}
.y94{bottom:330.375000px;}
.yf4{bottom:333.675000px;}
.y69{bottom:337.875000px;}
.y36{bottom:338.775000px;}
.y127{bottom:343.575000px;}
.y93{bottom:347.505000px;}
.yf3{bottom:351.105000px;}
.y68{bottom:355.020000px;}
.y35{bottom:356.220000px;}
.y126{bottom:359.220000px;}
.y92{bottom:364.905000px;}
.yf2{bottom:368.205000px;}
.y67{bottom:372.420000px;}
.y34{bottom:373.320000px;}
.y125{bottom:374.820000px;}
.y91{bottom:382.020000px;}
.yf1{bottom:385.605000px;}
.yc4{bottom:389.220000px;}
.y66{bottom:389.520000px;}
.y124{bottom:390.120000px;}
.y33{bottom:390.705000px;}
.y90{bottom:399.420000px;}
.yf0{bottom:402.720000px;}
.yc3{bottom:404.820000px;}
.y123{bottom:405.705000px;}
.y65{bottom:406.920000px;}
.y32{bottom:407.820000px;}
.y8f{bottom:416.505000px;}
.yc2{bottom:420.120000px;}
.y122{bottom:421.320000px;}
.y64{bottom:424.005000px;}
.y31{bottom:425.205000px;}
.y8e{bottom:433.920000px;}
.yc1{bottom:435.705000px;}
.y121{bottom:436.920000px;}
.yef{bottom:437.205000px;}
.y63{bottom:441.420000px;}
.y30{bottom:442.320000px;}
.y8d{bottom:451.005000px;}
.yc0{bottom:451.320000px;}
.y120{bottom:452.205000px;}
.yee{bottom:454.620000px;}
.y62{bottom:458.505000px;}
.y2f{bottom:459.120000px;}
.ybf{bottom:467.205000px;}
.y11f{bottom:467.820000px;}
.y8c{bottom:468.420000px;}
.yed{bottom:471.720000px;}
.y2e{bottom:474.705000px;}
.y61{bottom:475.920000px;}
.y11e{bottom:483.420000px;}
.ybe{bottom:484.620000px;}
.y8b{bottom:485.505000px;}
.yec{bottom:489.120000px;}
.y2d{bottom:490.320000px;}
.y60{bottom:493.005000px;}
.y11d{bottom:499.005000px;}
.ybd{bottom:501.720000px;}
.y8a{bottom:502.920000px;}
.y2c{bottom:505.905000px;}
.yeb{bottom:506.205000px;}
.y5f{bottom:510.405000px;}
.y11c{bottom:514.350000px;}
.ybc{bottom:519.150000px;}
.y89{bottom:520.050000px;}
.y2b{bottom:521.250000px;}
.yea{bottom:523.650000px;}
.y5e{bottom:527.550000px;}
.y11b{bottom:529.950000px;}
.ybb{bottom:536.250000px;}
.y2a{bottom:536.850000px;}
.y88{bottom:537.450000px;}
.ye9{bottom:540.750000px;}
.y5d{bottom:544.950000px;}
.y11a{bottom:545.550000px;}
.y29{bottom:552.450000px;}
.yba{bottom:553.650000px;}
.y87{bottom:554.550000px;}
.ye8{bottom:558.150000px;}
.y119{bottom:561.150000px;}
.y5c{bottom:562.050000px;}
.y28{bottom:568.050000px;}
.yb9{bottom:570.750000px;}
.y86{bottom:571.950000px;}
.ye7{bottom:575.250000px;}
.y118{bottom:576.450000px;}
.y5b{bottom:579.450000px;}
.y27{bottom:583.350000px;}
.yb8{bottom:588.150000px;}
.y85{bottom:589.050000px;}
.y117{bottom:592.050000px;}
.ye6{bottom:592.650000px;}
.y5a{bottom:596.550000px;}
.y26{bottom:598.950000px;}
.yb7{bottom:605.250000px;}
.y84{bottom:606.450000px;}
.y116{bottom:607.650000px;}
.ye5{bottom:609.750000px;}
.y59{bottom:613.950000px;}
.y25{bottom:614.550000px;}
.yb6{bottom:622.650000px;}
.y115{bottom:623.250000px;}
.y83{bottom:623.550000px;}
.ye4{bottom:627.150000px;}
.y24{bottom:630.150000px;}
.y58{bottom:631.050000px;}
.y114{bottom:638.550000px;}
.yb5{bottom:639.750000px;}
.y82{bottom:640.950000px;}
.ye3{bottom:644.250000px;}
.y23{bottom:645.450000px;}
.y57{bottom:648.450000px;}
.y113{bottom:654.150000px;}
.yb4{bottom:657.150000px;}
.y81{bottom:658.050000px;}
.y22{bottom:661.050000px;}
.ye2{bottom:661.650000px;}
.y56{bottom:665.550000px;}
.y112{bottom:669.750000px;}
.yb3{bottom:674.250000px;}
.y80{bottom:675.450000px;}
.y21{bottom:676.650000px;}
.ye1{bottom:678.750000px;}
.y55{bottom:682.980000px;}
.y111{bottom:685.395000px;}
.yb2{bottom:691.695000px;}
.y20{bottom:692.280000px;}
.y7f{bottom:692.595000px;}
.ye0{bottom:696.195000px;}
.y54{bottom:700.080000px;}
.y110{bottom:700.695000px;}
.y1f{bottom:707.595000px;}
.yb1{bottom:708.795000px;}
.y7e{bottom:709.980000px;}
.ydf{bottom:713.280000px;}
.y10f{bottom:716.280000px;}
.y53{bottom:717.495000px;}
.yb0{bottom:726.195000px;}
.y7d{bottom:727.080000px;}
.yde{bottom:730.695000px;}
.y10e{bottom:731.880000px;}
.y52{bottom:734.595000px;}
.y1e{bottom:738.780000px;}
.yaf{bottom:743.280000px;}
.y7c{bottom:744.495000px;}
.y10d{bottom:747.495000px;}
.ydd{bottom:747.795000px;}
.y51{bottom:751.980000px;}
.y1d{bottom:754.395000px;}
.yae{bottom:760.695000px;}
.y7b{bottom:761.595000px;}
.y10c{bottom:762.795000px;}
.ydc{bottom:765.195000px;}
.y50{bottom:769.080000px;}
.y1c{bottom:769.695000px;}
.yad{bottom:777.795000px;}
.y10b{bottom:778.395000px;}
.y7a{bottom:778.980000px;}
.ydb{bottom:782.295000px;}
.y1b{bottom:785.295000px;}
.y4f{bottom:786.495000px;}
.y10a{bottom:793.995000px;}
.yac{bottom:795.195000px;}
.y79{bottom:796.080000px;}
.yda{bottom:799.695000px;}
.y1a{bottom:800.880000px;}
.y4e{bottom:803.295000px;}
.y109{bottom:809.580000px;}
.yab{bottom:812.295000px;}
.y78{bottom:813.495000px;}
.y19{bottom:816.480000px;}
.yd9{bottom:816.795000px;}
.y4d{bottom:818.895000px;}
.y108{bottom:824.880000px;}
.yaa{bottom:829.380000px;}
.y77{bottom:830.580000px;}
.y18{bottom:831.795000px;}
.y4c{bottom:834.195000px;}
.y107{bottom:840.495000px;}
.ya9{bottom:846.795000px;}
.y17{bottom:847.380000px;}
.y76{bottom:847.995000px;}
.y4b{bottom:849.825000px;}
.yd8{bottom:851.325000px;}
.y106{bottom:856.125000px;}
.y16{bottom:863.025000px;}
.ya8{bottom:863.925000px;}
.y75{bottom:865.125000px;}
.yd7{bottom:868.725000px;}
.y105{bottom:871.725000px;}
.y15{bottom:878.625000px;}
.y4a{bottom:881.325000px;}
.y74{bottom:882.525000px;}
.yd6{bottom:885.825000px;}
.y104{bottom:887.025000px;}
.y14{bottom:893.925000px;}
.ya7{bottom:898.425000px;}
.y49{bottom:898.725000px;}
.y73{bottom:899.625000px;}
.y103{bottom:902.625000px;}
.yd5{bottom:903.225000px;}
.y13{bottom:909.525000px;}
.y48{bottom:915.825000px;}
.y72{bottom:917.025000px;}
.y102{bottom:918.225000px;}
.yd4{bottom:920.325000px;}
.y12{bottom:925.125000px;}
.ya6{bottom:932.925000px;}
.y47{bottom:933.225000px;}
.y101{bottom:933.825000px;}
.y71{bottom:934.125000px;}
.yd3{bottom:937.725000px;}
.y11{bottom:940.725000px;}
.y100{bottom:949.125000px;}
.y46{bottom:950.325000px;}
.y70{bottom:951.525000px;}
.yd2{bottom:954.825000px;}
.y10{bottom:956.025000px;}
.yff{bottom:964.725000px;}
.ya5{bottom:967.425000px;}
.y45{bottom:968.025000px;}
.y6f{bottom:968.625000px;}
.yf{bottom:971.625000px;}
.yd1{bottom:972.225000px;}
.yfe{bottom:980.325000px;}
.ya4{bottom:984.825000px;}
.y44{bottom:986.025000px;}
.ye{bottom:987.225000px;}
.yd0{bottom:989.325000px;}
.yfd{bottom:995.925000px;}
.ya3{bottom:1001.925000px;}
.yd{bottom:1002.825000px;}
.y43{bottom:1003.125000px;}
.ycf{bottom:1006.725000px;}
.yfc{bottom:1011.225000px;}
.y133{bottom:1018.170000px;}
.ya2{bottom:1019.370000px;}
.y42{bottom:1020.570000px;}
.yce{bottom:1023.870000px;}
.yfb{bottom:1026.870000px;}
.y132{bottom:1033.755000px;}
.yc{bottom:1034.670000px;}
.ya1{bottom:1036.455000px;}
.y41{bottom:1037.670000px;}
.ycd{bottom:1041.255000px;}
.yfa{bottom:1042.455000px;}
.y131{bottom:1049.370000px;}
.ya0{bottom:1053.870000px;}
.y40{bottom:1055.070000px;}
.yb{bottom:1055.370000px;}
.yf9{bottom:1058.070000px;}
.ycc{bottom:1058.370000px;}
.y130{bottom:1064.955000px;}
.y9f{bottom:1070.955000px;}
.y3f{bottom:1072.170000px;}
.yf8{bottom:1073.370000px;}
.ycb{bottom:1075.755000px;}
.y9{bottom:1076.070000px;}
.y12f{bottom:1080.255000px;}
.ya{bottom:1082.070000px;}
.y9e{bottom:1088.370000px;}
.y3e{bottom:1089.570000px;}
.yca{bottom:1092.870000px;}
.y12e{bottom:1095.870000px;}
.y8{bottom:1096.755000px;}
.y9d{bottom:1105.455000px;}
.y3d{bottom:1106.670000px;}
.yc9{bottom:1110.255000px;}
.y12d{bottom:1111.455000px;}
.y7{bottom:1117.455000px;}
.y9c{bottom:1122.870000px;}
.y3c{bottom:1124.070000px;}
.yc8{bottom:1127.070000px;}
.y6{bottom:1138.170000px;}
.y9b{bottom:1139.955000px;}
.y3b{bottom:1141.170000px;}
.yc7{bottom:1142.370000px;}
.y1{bottom:1175.670000px;}
.y3{bottom:1262.100000px;}
.h1{height:19.837500px;}
.he{height:36.281250px;}
.h7{height:47.085938px;}
.h11{height:48.410156px;}
.h8{height:48.647461px;}
.h9{height:52.971680px;}
.ha{height:52.998047px;}
.hc{height:53.789062px;}
.h10{height:54.052734px;}
.hd{height:54.421875px;}
.h2{height:58.857422px;}
.h4{height:58.886719px;}
.h3{height:59.677734px;}
.hb{height:60.468750px;}
.hf{height:61.670545px;}
.h5{height:66.093750px;}
.h6{height:70.628906px;}
.h0{height:1263.000000px;}
.w1{width:347.520000px;}
.w3{width:892.499973px;}
.w2{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.485000px;}
.x3{left:212.774987px;}
.xd{left:216.074973px;}
.xe{left:220.574987px;}
.x7{left:226.874987px;}
.x6{left:232.274987px;}
.xf{left:234.374987px;}
.x10{left:239.774987px;}
.x5{left:243.374987px;}
.xb{left:266.819987px;}
.x1{left:271.920000px;}
.x11{left:304.619987px;}
.x12{left:331.619987px;}
.xc{left:428.849987px;}
.x8{left:433.049987px;}
.x4{left:471.194987px;}
.x9{left:517.994973px;}
.xa{left:523.994987px;}
@media print{
.v1{vertical-align:-58.666667pt;}
.v3{vertical-align:-56.533333pt;}
.v2{vertical-align:-55.413333pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.045333pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.069333pt;}
.ls9{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.522667pt;}
.lse{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls6{letter-spacing:3.946667pt;}
.lsd{letter-spacing:18.240000pt;}
.lsb{letter-spacing:40.800000pt;}
.lsa{letter-spacing:63.466667pt;}
.ls0{letter-spacing:176.160000pt;}
.ls4{letter-spacing:180.160000pt;}
.ws7{word-spacing:-53.333333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-13.706667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.853333pt;}
.ws8{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.053333pt;}
.wsa{word-spacing:-12.021333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.466667pt;}
.wsb{word-spacing:-10.954667pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-2.666667pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.290667pt;}
._3{width:2.277333pt;}
._2{width:3.456000pt;}
._6{width:4.912000pt;}
._a{width:5.818667pt;}
._5{width:6.853333pt;}
._4{width:7.898667pt;}
._10{width:8.917333pt;}
._c{width:10.032000pt;}
._9{width:10.970667pt;}
._15{width:11.925333pt;}
._e{width:13.392000pt;}
._d{width:14.282667pt;}
._7{width:15.413333pt;}
._8{width:16.346667pt;}
._f{width:17.258667pt;}
._13{width:18.986667pt;}
._14{width:20.000000pt;}
._17{width:21.173333pt;}
._18{width:22.069333pt;}
._1a{width:23.253333pt;}
._19{width:24.373333pt;}
._1b{width:25.280000pt;}
._1e{width:26.709333pt;}
._1d{width:27.946667pt;}
._11{width:29.653333pt;}
._12{width:30.560000pt;}
._1c{width:31.626667pt;}
._22{width:32.570667pt;}
._21{width:33.482667pt;}
._16{width:34.560000pt;}
._20{width:48.053333pt;}
._1f{width:48.960000pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.253333pt;}
.y5{bottom:192.333333pt;}
.y4{bottom:208.066667pt;}
.y39{bottom:223.000000pt;}
.y6e{bottom:223.533333pt;}
.y3a{bottom:227.800000pt;}
.y9a{bottom:229.400000pt;}
.yc5{bottom:232.333333pt;}
.y12c{bottom:236.600000pt;}
.y6d{bottom:239.000000pt;}
.y38{bottom:243.000000pt;}
.y99{bottom:245.666667pt;}
.y97{bottom:247.533333pt;}
.yc6{bottom:248.600000pt;}
.y12b{bottom:250.200000pt;}
.yf7{bottom:250.733333pt;}
.y6c{bottom:254.200000pt;}
.y98{bottom:261.933333pt;}
.y96{bottom:263.000000pt;}
.y12a{bottom:264.066667pt;}
.yf6{bottom:265.933333pt;}
.y6b{bottom:269.666667pt;}
.y129{bottom:277.933333pt;}
.y95{bottom:278.200000pt;}
.yf5{bottom:281.400000pt;}
.y6a{bottom:284.866667pt;}
.y37{bottom:285.933333pt;}
.y128{bottom:291.533333pt;}
.y94{bottom:293.666667pt;}
.yf4{bottom:296.600000pt;}
.y69{bottom:300.333333pt;}
.y36{bottom:301.133333pt;}
.y127{bottom:305.400000pt;}
.y93{bottom:308.893333pt;}
.yf3{bottom:312.093333pt;}
.y68{bottom:315.573333pt;}
.y35{bottom:316.640000pt;}
.y126{bottom:319.306667pt;}
.y92{bottom:324.360000pt;}
.yf2{bottom:327.293333pt;}
.y67{bottom:331.040000pt;}
.y34{bottom:331.840000pt;}
.y125{bottom:333.173333pt;}
.y91{bottom:339.573333pt;}
.yf1{bottom:342.760000pt;}
.yc4{bottom:345.973333pt;}
.y66{bottom:346.240000pt;}
.y124{bottom:346.773333pt;}
.y33{bottom:347.293333pt;}
.y90{bottom:355.040000pt;}
.yf0{bottom:357.973333pt;}
.yc3{bottom:359.840000pt;}
.y123{bottom:360.626667pt;}
.y65{bottom:361.706667pt;}
.y32{bottom:362.506667pt;}
.y8f{bottom:370.226667pt;}
.yc2{bottom:373.440000pt;}
.y122{bottom:374.506667pt;}
.y64{bottom:376.893333pt;}
.y31{bottom:377.960000pt;}
.y8e{bottom:385.706667pt;}
.yc1{bottom:387.293333pt;}
.y121{bottom:388.373333pt;}
.yef{bottom:388.626667pt;}
.y63{bottom:392.373333pt;}
.y30{bottom:393.173333pt;}
.y8d{bottom:400.893333pt;}
.yc0{bottom:401.173333pt;}
.y120{bottom:401.960000pt;}
.yee{bottom:404.106667pt;}
.y62{bottom:407.560000pt;}
.y2f{bottom:408.106667pt;}
.ybf{bottom:415.293333pt;}
.y11f{bottom:415.840000pt;}
.y8c{bottom:416.373333pt;}
.yed{bottom:419.306667pt;}
.y2e{bottom:421.960000pt;}
.y61{bottom:423.040000pt;}
.y11e{bottom:429.706667pt;}
.ybe{bottom:430.773333pt;}
.y8b{bottom:431.560000pt;}
.yec{bottom:434.773333pt;}
.y2d{bottom:435.840000pt;}
.y60{bottom:438.226667pt;}
.y11d{bottom:443.560000pt;}
.ybd{bottom:445.973333pt;}
.y8a{bottom:447.040000pt;}
.y2c{bottom:449.693333pt;}
.yeb{bottom:449.960000pt;}
.y5f{bottom:453.693333pt;}
.y11c{bottom:457.200000pt;}
.ybc{bottom:461.466667pt;}
.y89{bottom:462.266667pt;}
.y2b{bottom:463.333333pt;}
.yea{bottom:465.466667pt;}
.y5e{bottom:468.933333pt;}
.y11b{bottom:471.066667pt;}
.ybb{bottom:476.666667pt;}
.y2a{bottom:477.200000pt;}
.y88{bottom:477.733333pt;}
.ye9{bottom:480.666667pt;}
.y5d{bottom:484.400000pt;}
.y11a{bottom:484.933333pt;}
.y29{bottom:491.066667pt;}
.yba{bottom:492.133333pt;}
.y87{bottom:492.933333pt;}
.ye8{bottom:496.133333pt;}
.y119{bottom:498.800000pt;}
.y5c{bottom:499.600000pt;}
.y28{bottom:504.933333pt;}
.yb9{bottom:507.333333pt;}
.y86{bottom:508.400000pt;}
.ye7{bottom:511.333333pt;}
.y118{bottom:512.400000pt;}
.y5b{bottom:515.066667pt;}
.y27{bottom:518.533333pt;}
.yb8{bottom:522.800000pt;}
.y85{bottom:523.600000pt;}
.y117{bottom:526.266667pt;}
.ye6{bottom:526.800000pt;}
.y5a{bottom:530.266667pt;}
.y26{bottom:532.400000pt;}
.yb7{bottom:538.000000pt;}
.y84{bottom:539.066667pt;}
.y116{bottom:540.133333pt;}
.ye5{bottom:542.000000pt;}
.y59{bottom:545.733333pt;}
.y25{bottom:546.266667pt;}
.yb6{bottom:553.466667pt;}
.y115{bottom:554.000000pt;}
.y83{bottom:554.266667pt;}
.ye4{bottom:557.466667pt;}
.y24{bottom:560.133333pt;}
.y58{bottom:560.933333pt;}
.y114{bottom:567.600000pt;}
.yb5{bottom:568.666667pt;}
.y82{bottom:569.733333pt;}
.ye3{bottom:572.666667pt;}
.y23{bottom:573.733333pt;}
.y57{bottom:576.400000pt;}
.y113{bottom:581.466667pt;}
.yb4{bottom:584.133333pt;}
.y81{bottom:584.933333pt;}
.y22{bottom:587.600000pt;}
.ye2{bottom:588.133333pt;}
.y56{bottom:591.600000pt;}
.y112{bottom:595.333333pt;}
.yb3{bottom:599.333333pt;}
.y80{bottom:600.400000pt;}
.y21{bottom:601.466667pt;}
.ye1{bottom:603.333333pt;}
.y55{bottom:607.093333pt;}
.y111{bottom:609.240000pt;}
.yb2{bottom:614.840000pt;}
.y20{bottom:615.360000pt;}
.y7f{bottom:615.640000pt;}
.ye0{bottom:618.840000pt;}
.y54{bottom:622.293333pt;}
.y110{bottom:622.840000pt;}
.y1f{bottom:628.973333pt;}
.yb1{bottom:630.040000pt;}
.y7e{bottom:631.093333pt;}
.ydf{bottom:634.026667pt;}
.y10f{bottom:636.693333pt;}
.y53{bottom:637.773333pt;}
.yb0{bottom:645.506667pt;}
.y7d{bottom:646.293333pt;}
.yde{bottom:649.506667pt;}
.y10e{bottom:650.560000pt;}
.y52{bottom:652.973333pt;}
.y1e{bottom:656.693333pt;}
.yaf{bottom:660.693333pt;}
.y7c{bottom:661.773333pt;}
.y10d{bottom:664.440000pt;}
.ydd{bottom:664.706667pt;}
.y51{bottom:668.426667pt;}
.y1d{bottom:670.573333pt;}
.yae{bottom:676.173333pt;}
.y7b{bottom:676.973333pt;}
.y10c{bottom:678.040000pt;}
.ydc{bottom:680.173333pt;}
.y50{bottom:683.626667pt;}
.y1c{bottom:684.173333pt;}
.yad{bottom:691.373333pt;}
.y10b{bottom:691.906667pt;}
.y7a{bottom:692.426667pt;}
.ydb{bottom:695.373333pt;}
.y1b{bottom:698.040000pt;}
.y4f{bottom:699.106667pt;}
.y10a{bottom:705.773333pt;}
.yac{bottom:706.840000pt;}
.y79{bottom:707.626667pt;}
.yda{bottom:710.840000pt;}
.y1a{bottom:711.893333pt;}
.y4e{bottom:714.040000pt;}
.y109{bottom:719.626667pt;}
.yab{bottom:722.040000pt;}
.y78{bottom:723.106667pt;}
.y19{bottom:725.760000pt;}
.yd9{bottom:726.040000pt;}
.y4d{bottom:727.906667pt;}
.y108{bottom:733.226667pt;}
.yaa{bottom:737.226667pt;}
.y77{bottom:738.293333pt;}
.y18{bottom:739.373333pt;}
.y4c{bottom:741.506667pt;}
.y107{bottom:747.106667pt;}
.ya9{bottom:752.706667pt;}
.y17{bottom:753.226667pt;}
.y76{bottom:753.773333pt;}
.y4b{bottom:755.400000pt;}
.yd8{bottom:756.733333pt;}
.y106{bottom:761.000000pt;}
.y16{bottom:767.133333pt;}
.ya8{bottom:767.933333pt;}
.y75{bottom:769.000000pt;}
.yd7{bottom:772.200000pt;}
.y105{bottom:774.866667pt;}
.y15{bottom:781.000000pt;}
.y4a{bottom:783.400000pt;}
.y74{bottom:784.466667pt;}
.yd6{bottom:787.400000pt;}
.y104{bottom:788.466667pt;}
.y14{bottom:794.600000pt;}
.ya7{bottom:798.600000pt;}
.y49{bottom:798.866667pt;}
.y73{bottom:799.666667pt;}
.y103{bottom:802.333333pt;}
.yd5{bottom:802.866667pt;}
.y13{bottom:808.466667pt;}
.y48{bottom:814.066667pt;}
.y72{bottom:815.133333pt;}
.y102{bottom:816.200000pt;}
.yd4{bottom:818.066667pt;}
.y12{bottom:822.333333pt;}
.ya6{bottom:829.266667pt;}
.y47{bottom:829.533333pt;}
.y101{bottom:830.066667pt;}
.y71{bottom:830.333333pt;}
.yd3{bottom:833.533333pt;}
.y11{bottom:836.200000pt;}
.y100{bottom:843.666667pt;}
.y46{bottom:844.733333pt;}
.y70{bottom:845.800000pt;}
.yd2{bottom:848.733333pt;}
.y10{bottom:849.800000pt;}
.yff{bottom:857.533333pt;}
.ya5{bottom:859.933333pt;}
.y45{bottom:860.466667pt;}
.y6f{bottom:861.000000pt;}
.yf{bottom:863.666667pt;}
.yd1{bottom:864.200000pt;}
.yfe{bottom:871.400000pt;}
.ya4{bottom:875.400000pt;}
.y44{bottom:876.466667pt;}
.ye{bottom:877.533333pt;}
.yd0{bottom:879.400000pt;}
.yfd{bottom:885.266667pt;}
.ya3{bottom:890.600000pt;}
.yd{bottom:891.400000pt;}
.y43{bottom:891.666667pt;}
.ycf{bottom:894.866667pt;}
.yfc{bottom:898.866667pt;}
.y133{bottom:905.040000pt;}
.ya2{bottom:906.106667pt;}
.y42{bottom:907.173333pt;}
.yce{bottom:910.106667pt;}
.yfb{bottom:912.773333pt;}
.y132{bottom:918.893333pt;}
.yc{bottom:919.706667pt;}
.ya1{bottom:921.293333pt;}
.y41{bottom:922.373333pt;}
.ycd{bottom:925.560000pt;}
.yfa{bottom:926.626667pt;}
.y131{bottom:932.773333pt;}
.ya0{bottom:936.773333pt;}
.y40{bottom:937.840000pt;}
.yb{bottom:938.106667pt;}
.yf9{bottom:940.506667pt;}
.ycc{bottom:940.773333pt;}
.y130{bottom:946.626667pt;}
.y9f{bottom:951.960000pt;}
.y3f{bottom:953.040000pt;}
.yf8{bottom:954.106667pt;}
.ycb{bottom:956.226667pt;}
.y9{bottom:956.506667pt;}
.y12f{bottom:960.226667pt;}
.ya{bottom:961.840000pt;}
.y9e{bottom:967.440000pt;}
.y3e{bottom:968.506667pt;}
.yca{bottom:971.440000pt;}
.y12e{bottom:974.106667pt;}
.y8{bottom:974.893333pt;}
.y9d{bottom:982.626667pt;}
.y3d{bottom:983.706667pt;}
.yc9{bottom:986.893333pt;}
.y12d{bottom:987.960000pt;}
.y7{bottom:993.293333pt;}
.y9c{bottom:998.106667pt;}
.y3c{bottom:999.173333pt;}
.yc8{bottom:1001.840000pt;}
.y6{bottom:1011.706667pt;}
.y9b{bottom:1013.293333pt;}
.y3b{bottom:1014.373333pt;}
.yc7{bottom:1015.440000pt;}
.y1{bottom:1045.040000pt;}
.y3{bottom:1121.866667pt;}
.h1{height:17.633333pt;}
.he{height:32.250000pt;}
.h7{height:41.854167pt;}
.h11{height:43.031250pt;}
.h8{height:43.242188pt;}
.h9{height:47.085938pt;}
.ha{height:47.109375pt;}
.hc{height:47.812500pt;}
.h10{height:48.046875pt;}
.hd{height:48.375000pt;}
.h2{height:52.317708pt;}
.h4{height:52.343750pt;}
.h3{height:53.046875pt;}
.hb{height:53.750000pt;}
.hf{height:54.818262pt;}
.h5{height:58.750000pt;}
.h6{height:62.781250pt;}
.h0{height:1122.666667pt;}
.w1{width:308.906667pt;}
.w3{width:793.333310pt;}
.w2{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.320000pt;}
.x3{left:189.133322pt;}
.xd{left:192.066643pt;}
.xe{left:196.066655pt;}
.x7{left:201.666655pt;}
.x6{left:206.466655pt;}
.xf{left:208.333322pt;}
.x10{left:213.133322pt;}
.x5{left:216.333322pt;}
.xb{left:237.173322pt;}
.x1{left:241.706667pt;}
.x11{left:270.773322pt;}
.x12{left:294.773322pt;}
.xc{left:381.199988pt;}
.x8{left:384.933322pt;}
.x4{left:418.839988pt;}
.x9{left:460.439976pt;}
.xa{left:465.773322pt;}
}




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