
    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_9718337d09bb6ff08ae20103.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e1d2c81c8b8e368b986c932f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9a82be41a2bf86b6c5aa0bfa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d29aa210db8ed0d95378f2eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_3866dd4eff22f96dc0deb7b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_19c2bb1df81997944bbb34f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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);}
.v1{vertical-align:-88.200000px;}
.v5{vertical-align:-81.000000px;}
.v3{vertical-align:-74.880000px;}
.v6{vertical-align:-64.440000px;}
.v2{vertical-align:-60.840000px;}
.v4{vertical-align:-55.437912px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-0.268272px;}
.ls39{letter-spacing:-0.172800px;}
.ls40{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.124200px;}
.ls28{letter-spacing:-0.104328px;}
.ls2b{letter-spacing:-0.081000px;}
.ls3e{letter-spacing:-0.079488px;}
.ls36{letter-spacing:-0.069552px;}
.ls2f{letter-spacing:-0.064584px;}
.ls3b{letter-spacing:-0.050400px;}
.ls29{letter-spacing:-0.049680px;}
.ls2d{letter-spacing:-0.044712px;}
.ls3a{letter-spacing:-0.043200px;}
.ls3f{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.028800px;}
.ls33{letter-spacing:-0.021600px;}
.ls35{letter-spacing:-0.014400px;}
.ls34{letter-spacing:-0.007200px;}
.ls25{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.007200px;}
.ls18{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.019872px;}
.ls1b{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023904px;}
.ls41{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.029808px;}
.ls7{letter-spacing:0.037800px;}
.ls3c{letter-spacing:0.039744px;}
.ls2a{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.054648px;}
.ls1c{letter-spacing:0.057600px;}
.ls27{letter-spacing:0.059616px;}
.ls8{letter-spacing:0.064584px;}
.ls2{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065736px;}
.lsb{letter-spacing:0.069552px;}
.ls19{letter-spacing:0.072000px;}
.lse{letter-spacing:0.074520px;}
.ls11{letter-spacing:0.084456px;}
.ls37{letter-spacing:0.089424px;}
.ls3d{letter-spacing:0.094392px;}
.ls17{letter-spacing:0.105336px;}
.ls1f{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.129600px;}
.ls20{letter-spacing:0.132768px;}
.ls4{letter-spacing:0.137448px;}
.ls16{letter-spacing:0.161352px;}
.ls13{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.166500px;}
.ls21{letter-spacing:0.171000px;}
.ls14{letter-spacing:0.175500px;}
.ls3{letter-spacing:0.178848px;}
.ls22{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.198720px;}
.ls1e{letter-spacing:0.207000px;}
.ls30{letter-spacing:0.238464px;}
.ls2c{letter-spacing:0.319500px;}
.ls10{letter-spacing:0.360000px;}
.ls24{letter-spacing:29.880000px;}
.ls31{letter-spacing:45.000000px;}
.ls15{letter-spacing:58.190184px;}
.lsf{letter-spacing:100.800000px;}
.ls0{letter-spacing:146.880000px;}
.ls12{letter-spacing:148.320000px;}
.ls23{letter-spacing:163.080000px;}
.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;}
}
.ws8{word-spacing:-58.680000px;}
.ws9{word-spacing:-58.320000px;}
.ws1{word-spacing:-20.314800px;}
.ws0{word-spacing:-20.250000px;}
.wse{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.637184px;}
.ws4{word-spacing:-13.865688px;}
.ws3e{word-spacing:-13.850784px;}
.ws5{word-spacing:-13.830912px;}
.wsb{word-spacing:-13.766328px;}
.wsc{word-spacing:-13.746456px;}
.ws3{word-spacing:-13.542768px;}
.wsd{word-spacing:-12.717000px;}
.ws7{word-spacing:-12.681000px;}
.ws6{word-spacing:-12.429000px;}
.wsa{word-spacing:-0.364500px;}
.ws17{word-spacing:-0.322920px;}
.ws1c{word-spacing:-0.261000px;}
.ws10{word-spacing:-0.218700px;}
.ws1e{word-spacing:-0.208656px;}
.ws24{word-spacing:-0.203184px;}
.ws3c{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.198720px;}
.ws13{word-spacing:-0.193752px;}
.ws22{word-spacing:-0.188784px;}
.ws15{word-spacing:-0.183816px;}
.ws16{word-spacing:-0.178848px;}
.ws23{word-spacing:-0.144072px;}
.ws3b{word-spacing:-0.085500px;}
.ws3a{word-spacing:-0.081000px;}
.ws21{word-spacing:-0.076500px;}
.ws30{word-spacing:-0.072000px;}
.ws39{word-spacing:-0.070200px;}
.ws35{word-spacing:-0.067500px;}
.ws26{word-spacing:-0.067032px;}
.ws20{word-spacing:-0.063000px;}
.ws32{word-spacing:-0.057600px;}
.ws37{word-spacing:-0.054648px;}
.ws3f{word-spacing:-0.044712px;}
.ws11{word-spacing:-0.041832px;}
.ws42{word-spacing:-0.028800px;}
.ws2c{word-spacing:-0.021600px;}
.ws2e{word-spacing:-0.014400px;}
.ws2a{word-spacing:-0.007200px;}
.wsf{word-spacing:0.000000px;}
.ws2f{word-spacing:0.007200px;}
.ws36{word-spacing:0.010800px;}
.ws29{word-spacing:0.014400px;}
.ws27{word-spacing:0.021600px;}
.ws1d{word-spacing:0.045000px;}
.ws31{word-spacing:0.050400px;}
.ws28{word-spacing:0.057600px;}
.ws2b{word-spacing:0.072000px;}
.ws12{word-spacing:0.081000px;}
.ws44{word-spacing:0.115200px;}
.ws1f{word-spacing:0.118800px;}
.ws43{word-spacing:0.129600px;}
.ws2d{word-spacing:0.144000px;}
.ws40{word-spacing:0.144072px;}
.ws41{word-spacing:0.151200px;}
.ws34{word-spacing:0.163944px;}
.ws14{word-spacing:0.173880px;}
.ws45{word-spacing:0.194400px;}
.ws19{word-spacing:0.208656px;}
.ws3d{word-spacing:0.230400px;}
.ws38{word-spacing:0.234000px;}
.ws1b{word-spacing:0.288144px;}
.ws18{word-spacing:0.342792px;}
.ws33{word-spacing:0.360000px;}
.ws25{word-spacing:0.388800px;}
._8{margin-left:-2920.320000px;}
._4{margin-left:-58.680000px;}
._5{margin-left:-57.600000px;}
._6{margin-left:-45.000000px;}
._1{margin-left:-1.219500px;}
._0{width:1.066152px;}
._2{width:18.901008px;}
._7{width:81.076752px;}
._3{width:90.657000px;}
.fcf{color:transparent;}
.fce{color:rgb(0,0,128);}
.fcd{color:rgb(0,119,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(51,101,204);}
.fc1{color:rgb(107,104,103);}
.fc9{color:rgb(112,111,100);}
.fc5{color:rgb(128,0,128);}
.fc3{color:rgb(154,0,0);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(108,104,101);}
.fcb{color:rgb(53,0,106);}
.fc8{color:rgb(241,239,226);}
.fca{color:rgb(172,168,154);}
.fcc{color:rgb(255,0,0);}
.fs5{font-size:45.000000px;}
.fs2{font-size:49.680000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:58.320000px;}
.fs6{font-size:58.680000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.fs8{font-size:95.760000px;}
.y86{bottom:-22.379550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.610450px;}
.y21{bottom:2.700450px;}
.y3c{bottom:3.870450px;}
.yb6{bottom:3.870600px;}
.y47{bottom:4.050450px;}
.y56{bottom:4.050600px;}
.y6f{bottom:58.620450px;}
.y38{bottom:62.130450px;}
.y6e{bottom:78.600450px;}
.y37{bottom:80.851122px;}
.y6c{bottom:94.440000px;}
.y36{bottom:94.710600px;}
.y6d{bottom:98.490450px;}
.y35{bottom:109.920450px;}
.y6b{bottom:118.470450px;}
.y34{bottom:128.550306px;}
.y6a{bottom:138.450450px;}
.y33{bottom:156.359970px;}
.y69{bottom:158.340450px;}
.y32{bottom:170.040450px;}
.y68{bottom:178.320450px;}
.y31{bottom:182.730450px;}
.y30{bottom:196.860450px;}
.y67{bottom:198.210450px;}
.y2f{bottom:215.760450px;}
.y66{bottom:218.190450px;}
.y2e{bottom:236.370450px;}
.y65{bottom:238.080450px;}
.y64{bottom:258.060450px;}
.y2b{bottom:261.390450px;}
.y2d{bottom:262.650450px;}
.y63{bottom:277.950450px;}
.y2c{bottom:280.830450px;}
.y2a{bottom:282.000450px;}
.y62{bottom:297.930450px;}
.y61{bottom:317.910450px;}
.y29{bottom:324.300450px;}
.y5f{bottom:333.750000px;}
.y60{bottom:337.800450px;}
.y28{bottom:339.420450px;}
.y5e{bottom:357.780600px;}
.y27{bottom:359.400450px;}
.y5d{bottom:377.670600px;}
.y26{bottom:393.060450px;}
.yb5{bottom:397.290000px;}
.y5c{bottom:397.650600px;}
.yb7{bottom:401.160600px;}
.y25{bottom:411.780972px;}
.y5b{bottom:417.540600px;}
.yb4{bottom:421.140450px;}
.y24{bottom:425.640450px;}
.y5a{bottom:437.520600px;}
.y23{bottom:440.850450px;}
.yb3{bottom:441.030450px;}
.y84{bottom:455.610600px;}
.y20{bottom:456.870000px;}
.y59{bottom:457.410600px;}
.y22{bottom:459.570450px;}
.yb2{bottom:461.010450px;}
.yb8{bottom:463.980600px;}
.y1f{bottom:473.430600px;}
.y58{bottom:477.390600px;}
.yb1{bottom:480.900450px;}
.y1e{bottom:488.640450px;}
.y83{bottom:490.620450px;}
.y55{bottom:493.320000px;}
.y57{bottom:497.370600px;}
.yb0{bottom:500.880450px;}
.y1d{bottom:507.270450px;}
.y39{bottom:510.690450px;}
.y82{bottom:512.850450px;}
.y53{bottom:513.210000px;}
.y54{bottom:517.260450px;}
.yaf{bottom:520.770450px;}
.y1c{bottom:522.480450px;}
.y52{bottom:537.240450px;}
.y1a{bottom:538.500000px;}
.yae{bottom:540.750450px;}
.y19{bottom:541.110450px;}
.y81{bottom:552.900450px;}
.y18{bottom:555.060450px;}
.y51{bottom:557.130450px;}
.yad{bottom:560.730450px;}
.y17{bottom:568.920306px;}
.y50{bottom:577.110450px;}
.yac{bottom:580.620450px;}
.y16{bottom:582.870450px;}
.y4e{bottom:592.950000px;}
.yaa{bottom:596.550000px;}
.y4f{bottom:597.000450px;}
.y15{bottom:597.990450px;}
.yab{bottom:600.600450px;}
.y14{bottom:616.710450px;}
.y4d{bottom:616.980450px;}
.ya9{bottom:620.490450px;}
.y13{bottom:630.660450px;}
.y4c{bottom:636.870450px;}
.ya8{bottom:640.470450px;}
.y12{bottom:645.780450px;}
.y4b{bottom:656.850450px;}
.ya7{bottom:660.360450px;}
.y11{bottom:664.500972px;}
.y80{bottom:670.710450px;}
.y4a{bottom:676.830450px;}
.y10{bottom:678.360450px;}
.ya6{bottom:680.340450px;}
.yf{bottom:693.570450px;}
.y7f{bottom:695.100450px;}
.y49{bottom:696.720450px;}
.ya5{bottom:700.230450px;}
.y46{bottom:712.650000px;}
.y48{bottom:716.700450px;}
.y7e{bottom:718.050450px;}
.ya4{bottom:720.210450px;}
.y7d{bottom:730.740450px;}
.y45{bottom:736.590450px;}
.ya3{bottom:740.190450px;}
.y7c{bottom:743.340450px;}
.y7b{bottom:756.300450px;}
.y44{bottom:756.570450px;}
.ya2{bottom:760.080450px;}
.y7a{bottom:774.930450px;}
.y43{bottom:776.460450px;}
.ya1{bottom:780.060450px;}
.y79{bottom:795.540600px;}
.y42{bottom:796.440450px;}
.ya0{bottom:799.950450px;}
.y41{bottom:816.330450px;}
.y78{bottom:818.400450px;}
.y9f{bottom:819.930450px;}
.y77{bottom:831.090450px;}
.y40{bottom:836.310450px;}
.y9e{bottom:839.820450px;}
.y76{bottom:843.960306px;}
.y75{bottom:857.910450px;}
.y9d{bottom:859.800450px;}
.y74{bottom:876.540600px;}
.y3f{bottom:878.790468px;}
.y9c{bottom:879.690450px;}
.y73{bottom:897.150450px;}
.y9b{bottom:899.670450px;}
.y3e{bottom:905.610450px;}
.ye{bottom:911.460450px;}
.y99{bottom:915.600000px;}
.y9a{bottom:919.650450px;}
.y72{bottom:920.100450px;}
.yd{bottom:930.180450px;}
.y71{bottom:932.700450px;}
.y98{bottom:939.540450px;}
.y3d{bottom:942.690450px;}
.yc{bottom:945.300450px;}
.y70{bottom:945.570450px;}
.y3b{bottom:958.800000px;}
.y97{bottom:959.520450px;}
.y3a{bottom:962.670450px;}
.yb{bottom:964.200450px;}
.y96{bottom:979.410450px;}
.ya{bottom:984.810450px;}
.y95{bottom:999.390450px;}
.y9{bottom:1004.069910px;}
.y1{bottom:1018.200450px;}
.y94{bottom:1019.280450px;}
.y8{bottom:1020.810180px;}
.y7{bottom:1037.550450px;}
.y93{bottom:1039.260450px;}
.y92{bottom:1059.150450px;}
.y2{bottom:1060.770450px;}
.y8c{bottom:1061.130450px;}
.y6{bottom:1078.410450px;}
.y91{bottom:1079.130450px;}
.y8b{bottom:1079.849730px;}
.y8a{bottom:1093.710450px;}
.y3{bottom:1098.030450px;}
.y90{bottom:1099.110450px;}
.y5{bottom:1099.200162px;}
.y89{bottom:1108.920450px;}
.y8f{bottom:1119.000450px;}
.y88{bottom:1127.550306px;}
.y8d{bottom:1134.930000px;}
.y4{bottom:1136.730450px;}
.y8e{bottom:1138.980450px;}
.y87{bottom:1141.500450px;}
.y85{bottom:1219.980450px;}
.h13{height:-6.269490px;}
.h9{height:14.130000px;}
.ha{height:14.220000px;}
.h10{height:19.890000px;}
.h15{height:20.070000px;}
.h12{height:20.250000px;}
.hd{height:46.933594px;}
.hc{height:48.015000px;}
.h3{height:50.068125px;}
.h8{height:51.814687px;}
.hf{height:51.815264px;}
.he{height:51.815287px;}
.h14{height:51.817567px;}
.hb{height:55.035000px;}
.h7{height:56.320312px;}
.h6{height:62.327813px;}
.h5{height:63.763920px;}
.h1{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:81.632812px;}
.h11{height:99.874688px;}
.h0{height:1209.000000px;}
.w1{width:-68.580000px;}
.w2{width:-39.510000px;}
.w3{width:46.980000px;}
.wa{width:226.170000px;}
.w5{width:318.870000px;}
.we{width:321.390000px;}
.w9{width:341.910000px;}
.w8{width:350.370000px;}
.wb{width:350.460000px;}
.w6{width:359.460000px;}
.wc{width:363.420000px;}
.w4{width:364.500000px;}
.wd{width:364.860000px;}
.w7{width:373.950000px;}
.w0{width:393.000000px;}
.xb{left:-144.000000px;}
.x10{left:-140.580000px;}
.xa{left:-139.500000px;}
.x13{left:-125.370000px;}
.x11{left:-119.610000px;}
.xc{left:-106.650000px;}
.x14{left:-102.510000px;}
.xd{left:-99.090000px;}
.xe{left:-72.720000px;}
.xf{left:-68.580000px;}
.x1{left:-39.960000px;}
.x1f{left:-37.080000px;}
.x12{left:-35.730000px;}
.x20{left:-27.990000px;}
.x2{left:-2.250000px;}
.x0{left:0.000000px;}
.x15{left:11.250000px;}
.x19{left:20.250000px;}
.x1a{left:24.210000px;}
.x17{left:28.980000px;}
.x21{left:106.470000px;}
.x22{left:115.470000px;}
.x3{left:175.680000px;}
.x16{left:287.640000px;}
.x18{left:325.620000px;}
.x1c{left:401.670000px;}
.x4{left:403.830000px;}
.x1b{left:408.420000px;}
.x7{left:409.680000px;}
.x8{left:432.450054px;}
.x6{left:450.990000px;}
.x9{left:459.089568px;}
.x5{left:491.579586px;}
.x1e{left:497.610000px;}
.x1d{left:500.130000px;}
@media print{
.v1{vertical-align:-78.400000pt;}
.v5{vertical-align:-72.000000pt;}
.v3{vertical-align:-66.560000pt;}
.v6{vertical-align:-57.280000pt;}
.v2{vertical-align:-54.080000pt;}
.v4{vertical-align:-49.278144pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-0.238464pt;}
.ls39{letter-spacing:-0.153600pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.110400pt;}
.ls28{letter-spacing:-0.092736pt;}
.ls2b{letter-spacing:-0.072000pt;}
.ls3e{letter-spacing:-0.070656pt;}
.ls36{letter-spacing:-0.061824pt;}
.ls2f{letter-spacing:-0.057408pt;}
.ls3b{letter-spacing:-0.044800pt;}
.ls29{letter-spacing:-0.044160pt;}
.ls2d{letter-spacing:-0.039744pt;}
.ls3a{letter-spacing:-0.038400pt;}
.ls3f{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.025600pt;}
.ls33{letter-spacing:-0.019200pt;}
.ls35{letter-spacing:-0.012800pt;}
.ls34{letter-spacing:-0.006400pt;}
.ls25{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls18{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.017664pt;}
.ls1b{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021248pt;}
.ls41{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.026496pt;}
.ls7{letter-spacing:0.033600pt;}
.ls3c{letter-spacing:0.035328pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.048576pt;}
.ls1c{letter-spacing:0.051200pt;}
.ls27{letter-spacing:0.052992pt;}
.ls8{letter-spacing:0.057408pt;}
.ls2{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058432pt;}
.lsb{letter-spacing:0.061824pt;}
.ls19{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.066240pt;}
.ls11{letter-spacing:0.075072pt;}
.ls37{letter-spacing:0.079488pt;}
.ls3d{letter-spacing:0.083904pt;}
.ls17{letter-spacing:0.093632pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.115200pt;}
.ls20{letter-spacing:0.118016pt;}
.ls4{letter-spacing:0.122176pt;}
.ls16{letter-spacing:0.143424pt;}
.ls13{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.148000pt;}
.ls21{letter-spacing:0.152000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls3{letter-spacing:0.158976pt;}
.ls22{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.176640pt;}
.ls1e{letter-spacing:0.184000pt;}
.ls30{letter-spacing:0.211968pt;}
.ls2c{letter-spacing:0.284000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls24{letter-spacing:26.560000pt;}
.ls31{letter-spacing:40.000000pt;}
.ls15{letter-spacing:51.724608pt;}
.lsf{letter-spacing:89.600000pt;}
.ls0{letter-spacing:130.560000pt;}
.ls12{letter-spacing:131.840000pt;}
.ls23{letter-spacing:144.960000pt;}
.ws8{word-spacing:-52.160000pt;}
.ws9{word-spacing:-51.840000pt;}
.ws1{word-spacing:-18.057600pt;}
.ws0{word-spacing:-18.000000pt;}
.wse{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.788608pt;}
.ws4{word-spacing:-12.325056pt;}
.ws3e{word-spacing:-12.311808pt;}
.ws5{word-spacing:-12.294144pt;}
.wsb{word-spacing:-12.236736pt;}
.wsc{word-spacing:-12.219072pt;}
.ws3{word-spacing:-12.038016pt;}
.wsd{word-spacing:-11.304000pt;}
.ws7{word-spacing:-11.272000pt;}
.ws6{word-spacing:-11.048000pt;}
.wsa{word-spacing:-0.324000pt;}
.ws17{word-spacing:-0.287040pt;}
.ws1c{word-spacing:-0.232000pt;}
.ws10{word-spacing:-0.194400pt;}
.ws1e{word-spacing:-0.185472pt;}
.ws24{word-spacing:-0.180608pt;}
.ws3c{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.176640pt;}
.ws13{word-spacing:-0.172224pt;}
.ws22{word-spacing:-0.167808pt;}
.ws15{word-spacing:-0.163392pt;}
.ws16{word-spacing:-0.158976pt;}
.ws23{word-spacing:-0.128064pt;}
.ws3b{word-spacing:-0.076000pt;}
.ws3a{word-spacing:-0.072000pt;}
.ws21{word-spacing:-0.068000pt;}
.ws30{word-spacing:-0.064000pt;}
.ws39{word-spacing:-0.062400pt;}
.ws35{word-spacing:-0.060000pt;}
.ws26{word-spacing:-0.059584pt;}
.ws20{word-spacing:-0.056000pt;}
.ws32{word-spacing:-0.051200pt;}
.ws37{word-spacing:-0.048576pt;}
.ws3f{word-spacing:-0.039744pt;}
.ws11{word-spacing:-0.037184pt;}
.ws42{word-spacing:-0.025600pt;}
.ws2c{word-spacing:-0.019200pt;}
.ws2e{word-spacing:-0.012800pt;}
.ws2a{word-spacing:-0.006400pt;}
.wsf{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.006400pt;}
.ws36{word-spacing:0.009600pt;}
.ws29{word-spacing:0.012800pt;}
.ws27{word-spacing:0.019200pt;}
.ws1d{word-spacing:0.040000pt;}
.ws31{word-spacing:0.044800pt;}
.ws28{word-spacing:0.051200pt;}
.ws2b{word-spacing:0.064000pt;}
.ws12{word-spacing:0.072000pt;}
.ws44{word-spacing:0.102400pt;}
.ws1f{word-spacing:0.105600pt;}
.ws43{word-spacing:0.115200pt;}
.ws2d{word-spacing:0.128000pt;}
.ws40{word-spacing:0.128064pt;}
.ws41{word-spacing:0.134400pt;}
.ws34{word-spacing:0.145728pt;}
.ws14{word-spacing:0.154560pt;}
.ws45{word-spacing:0.172800pt;}
.ws19{word-spacing:0.185472pt;}
.ws3d{word-spacing:0.204800pt;}
.ws38{word-spacing:0.208000pt;}
.ws1b{word-spacing:0.256128pt;}
.ws18{word-spacing:0.304704pt;}
.ws33{word-spacing:0.320000pt;}
.ws25{word-spacing:0.345600pt;}
._8{margin-left:-2595.840000pt;}
._4{margin-left:-52.160000pt;}
._5{margin-left:-51.200000pt;}
._6{margin-left:-40.000000pt;}
._1{margin-left:-1.084000pt;}
._0{width:0.947691pt;}
._2{width:16.800896pt;}
._7{width:72.068224pt;}
._3{width:80.584000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:44.160000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:51.840000pt;}
.fs6{font-size:52.160000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.fs8{font-size:85.120000pt;}
.y86{bottom:-19.892933pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.320400pt;}
.y21{bottom:2.400400pt;}
.y3c{bottom:3.440400pt;}
.yb6{bottom:3.440533pt;}
.y47{bottom:3.600400pt;}
.y56{bottom:3.600533pt;}
.y6f{bottom:52.107067pt;}
.y38{bottom:55.227067pt;}
.y6e{bottom:69.867067pt;}
.y37{bottom:71.867664pt;}
.y6c{bottom:83.946667pt;}
.y36{bottom:84.187200pt;}
.y6d{bottom:87.547067pt;}
.y35{bottom:97.707067pt;}
.y6b{bottom:105.307067pt;}
.y34{bottom:114.266939pt;}
.y6a{bottom:123.067067pt;}
.y33{bottom:138.986640pt;}
.y69{bottom:140.747067pt;}
.y32{bottom:151.147067pt;}
.y68{bottom:158.507067pt;}
.y31{bottom:162.427067pt;}
.y30{bottom:174.987067pt;}
.y67{bottom:176.187067pt;}
.y2f{bottom:191.787067pt;}
.y66{bottom:193.947067pt;}
.y2e{bottom:210.107067pt;}
.y65{bottom:211.627067pt;}
.y64{bottom:229.387067pt;}
.y2b{bottom:232.347067pt;}
.y2d{bottom:233.467067pt;}
.y63{bottom:247.067067pt;}
.y2c{bottom:249.627067pt;}
.y2a{bottom:250.667067pt;}
.y62{bottom:264.827067pt;}
.y61{bottom:282.587067pt;}
.y29{bottom:288.267067pt;}
.y5f{bottom:296.666667pt;}
.y60{bottom:300.267067pt;}
.y28{bottom:301.707067pt;}
.y5e{bottom:318.027200pt;}
.y27{bottom:319.467067pt;}
.y5d{bottom:335.707200pt;}
.y26{bottom:349.387067pt;}
.yb5{bottom:353.146667pt;}
.y5c{bottom:353.467200pt;}
.yb7{bottom:356.587200pt;}
.y25{bottom:366.027531pt;}
.y5b{bottom:371.147200pt;}
.yb4{bottom:374.347067pt;}
.y24{bottom:378.347067pt;}
.y5a{bottom:388.907200pt;}
.y23{bottom:391.867067pt;}
.yb3{bottom:392.027067pt;}
.y84{bottom:404.987200pt;}
.y20{bottom:406.106667pt;}
.y59{bottom:406.587200pt;}
.y22{bottom:408.507067pt;}
.yb2{bottom:409.787067pt;}
.yb8{bottom:412.427200pt;}
.y1f{bottom:420.827200pt;}
.y58{bottom:424.347200pt;}
.yb1{bottom:427.467067pt;}
.y1e{bottom:434.347067pt;}
.y83{bottom:436.107067pt;}
.y55{bottom:438.506667pt;}
.y57{bottom:442.107200pt;}
.yb0{bottom:445.227067pt;}
.y1d{bottom:450.907067pt;}
.y39{bottom:453.947067pt;}
.y82{bottom:455.867067pt;}
.y53{bottom:456.186667pt;}
.y54{bottom:459.787067pt;}
.yaf{bottom:462.907067pt;}
.y1c{bottom:464.427067pt;}
.y52{bottom:477.547067pt;}
.y1a{bottom:478.666667pt;}
.yae{bottom:480.667067pt;}
.y19{bottom:480.987067pt;}
.y81{bottom:491.467067pt;}
.y18{bottom:493.387067pt;}
.y51{bottom:495.227067pt;}
.yad{bottom:498.427067pt;}
.y17{bottom:505.706939pt;}
.y50{bottom:512.987067pt;}
.yac{bottom:516.107067pt;}
.y16{bottom:518.107067pt;}
.y4e{bottom:527.066667pt;}
.yaa{bottom:530.266667pt;}
.y4f{bottom:530.667067pt;}
.y15{bottom:531.547067pt;}
.yab{bottom:533.867067pt;}
.y14{bottom:548.187067pt;}
.y4d{bottom:548.427067pt;}
.ya9{bottom:551.547067pt;}
.y13{bottom:560.587067pt;}
.y4c{bottom:566.107067pt;}
.ya8{bottom:569.307067pt;}
.y12{bottom:574.027067pt;}
.y4b{bottom:583.867067pt;}
.ya7{bottom:586.987067pt;}
.y11{bottom:590.667531pt;}
.y80{bottom:596.187067pt;}
.y4a{bottom:601.627067pt;}
.y10{bottom:602.987067pt;}
.ya6{bottom:604.747067pt;}
.yf{bottom:616.507067pt;}
.y7f{bottom:617.867067pt;}
.y49{bottom:619.307067pt;}
.ya5{bottom:622.427067pt;}
.y46{bottom:633.466667pt;}
.y48{bottom:637.067067pt;}
.y7e{bottom:638.267067pt;}
.ya4{bottom:640.187067pt;}
.y7d{bottom:649.547067pt;}
.y45{bottom:654.747067pt;}
.ya3{bottom:657.947067pt;}
.y7c{bottom:660.747067pt;}
.y7b{bottom:672.267067pt;}
.y44{bottom:672.507067pt;}
.ya2{bottom:675.627067pt;}
.y7a{bottom:688.827067pt;}
.y43{bottom:690.187067pt;}
.ya1{bottom:693.387067pt;}
.y79{bottom:707.147200pt;}
.y42{bottom:707.947067pt;}
.ya0{bottom:711.067067pt;}
.y41{bottom:725.627067pt;}
.y78{bottom:727.467067pt;}
.y9f{bottom:728.827067pt;}
.y77{bottom:738.747067pt;}
.y40{bottom:743.387067pt;}
.y9e{bottom:746.507067pt;}
.y76{bottom:750.186939pt;}
.y75{bottom:762.587067pt;}
.y9d{bottom:764.267067pt;}
.y74{bottom:779.147200pt;}
.y3f{bottom:781.147083pt;}
.y9c{bottom:781.947067pt;}
.y73{bottom:797.467067pt;}
.y9b{bottom:799.707067pt;}
.y3e{bottom:804.987067pt;}
.ye{bottom:810.187067pt;}
.y99{bottom:813.866667pt;}
.y9a{bottom:817.467067pt;}
.y72{bottom:817.867067pt;}
.yd{bottom:826.827067pt;}
.y71{bottom:829.067067pt;}
.y98{bottom:835.147067pt;}
.y3d{bottom:837.947067pt;}
.yc{bottom:840.267067pt;}
.y70{bottom:840.507067pt;}
.y3b{bottom:852.266667pt;}
.y97{bottom:852.907067pt;}
.y3a{bottom:855.707067pt;}
.yb{bottom:857.067067pt;}
.y96{bottom:870.587067pt;}
.ya{bottom:875.387067pt;}
.y95{bottom:888.347067pt;}
.y9{bottom:892.506587pt;}
.y1{bottom:905.067067pt;}
.y94{bottom:906.027067pt;}
.y8{bottom:907.386827pt;}
.y7{bottom:922.267067pt;}
.y93{bottom:923.787067pt;}
.y92{bottom:941.467067pt;}
.y2{bottom:942.907067pt;}
.y8c{bottom:943.227067pt;}
.y6{bottom:958.587067pt;}
.y91{bottom:959.227067pt;}
.y8b{bottom:959.866427pt;}
.y8a{bottom:972.187067pt;}
.y3{bottom:976.027067pt;}
.y90{bottom:976.987067pt;}
.y5{bottom:977.066811pt;}
.y89{bottom:985.707067pt;}
.y8f{bottom:994.667067pt;}
.y88{bottom:1002.266939pt;}
.y8d{bottom:1008.826667pt;}
.y4{bottom:1010.427067pt;}
.y8e{bottom:1012.427067pt;}
.y87{bottom:1014.667067pt;}
.y85{bottom:1084.427067pt;}
.h13{height:-5.572880pt;}
.h9{height:12.560000pt;}
.ha{height:12.640000pt;}
.h10{height:17.680000pt;}
.h15{height:17.840000pt;}
.h12{height:18.000000pt;}
.hd{height:41.718750pt;}
.hc{height:42.680000pt;}
.h3{height:44.505000pt;}
.h8{height:46.057500pt;}
.hf{height:46.058012pt;}
.he{height:46.058033pt;}
.h14{height:46.060060pt;}
.hb{height:48.920000pt;}
.h7{height:50.062500pt;}
.h6{height:55.402500pt;}
.h5{height:56.679040pt;}
.h1{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:72.562500pt;}
.h11{height:88.777500pt;}
.h0{height:1074.666667pt;}
.w1{width:-60.960000pt;}
.w2{width:-35.120000pt;}
.w3{width:41.760000pt;}
.wa{width:201.040000pt;}
.w5{width:283.440000pt;}
.we{width:285.680000pt;}
.w9{width:303.920000pt;}
.w8{width:311.440000pt;}
.wb{width:311.520000pt;}
.w6{width:319.520000pt;}
.wc{width:323.040000pt;}
.w4{width:324.000000pt;}
.wd{width:324.320000pt;}
.w7{width:332.400000pt;}
.w0{width:349.333333pt;}
.xb{left:-128.000000pt;}
.x10{left:-124.960000pt;}
.xa{left:-124.000000pt;}
.x13{left:-111.440000pt;}
.x11{left:-106.320000pt;}
.xc{left:-94.800000pt;}
.x14{left:-91.120000pt;}
.xd{left:-88.080000pt;}
.xe{left:-64.640000pt;}
.xf{left:-60.960000pt;}
.x1{left:-35.520000pt;}
.x1f{left:-32.960000pt;}
.x12{left:-31.760000pt;}
.x20{left:-24.880000pt;}
.x2{left:-2.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.000000pt;}
.x19{left:18.000000pt;}
.x1a{left:21.520000pt;}
.x17{left:25.760000pt;}
.x21{left:94.640000pt;}
.x22{left:102.640000pt;}
.x3{left:156.160000pt;}
.x16{left:255.680000pt;}
.x18{left:289.440000pt;}
.x1c{left:357.040000pt;}
.x4{left:358.960000pt;}
.x1b{left:363.040000pt;}
.x7{left:364.160000pt;}
.x8{left:384.400048pt;}
.x6{left:400.880000pt;}
.x9{left:408.079616pt;}
.x5{left:436.959632pt;}
.x1e{left:442.320000pt;}
.x1d{left:444.560000pt;}
}




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