
    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_e871035622902f6aad692f12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_eebc1908f3d9713fc85d600e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9258837329d0d4f0ed810b7d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ffe4b3e11ff95074f9166407.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_c393f5345885c97f044aafcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.855469;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.359937px;}
.v1{vertical-align:36.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059793px;}
.ls4{letter-spacing:0.405684px;}
.ls3{letter-spacing:0.405688px;}
.ls5{letter-spacing:88.093769px;}
.ls2{letter-spacing:846.034088px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-71.863650px;}
.ws2{word-spacing:-17.965913px;}
.ws0{word-spacing:-15.809963px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-17.006559px;}
._a{margin-left:-15.588001px;}
._10{margin-left:-14.502744px;}
._d{margin-left:-13.481733px;}
._8{margin-left:-11.979390px;}
._4{margin-left:-10.864331px;}
._5{margin-left:-8.855632px;}
._c{margin-left:-7.268043px;}
._3{margin-left:-5.525596px;}
._2{margin-left:-4.501524px;}
._1{margin-left:-2.679077px;}
._0{margin-left:-1.526399px;}
._6{width:1.526399px;}
._7{width:2.835783px;}
._9{width:4.261050px;}
._b{width:5.721089px;}
._17{width:7.289393px;}
._19{width:9.222689px;}
._16{width:10.717580px;}
._15{width:12.626106px;}
._14{width:13.706238px;}
._13{width:14.929040px;}
._1a{width:15.975698px;}
._11{width:19.975938px;}
._12{width:21.049091px;}
._27{width:23.590227px;}
._28{width:25.406323px;}
._29{width:27.331767px;}
._1c{width:28.795989px;}
._1b{width:29.836608px;}
._2e{width:58.721787px;}
._2c{width:64.689356px;}
._2d{width:65.696570px;}
._1f{width:97.628033px;}
._22{width:139.825890px;}
._31{width:148.328379px;}
._2f{width:154.366856px;}
._30{width:156.160653px;}
._23{width:163.937548px;}
._26{width:185.160905px;}
._21{width:270.292381px;}
._20{width:277.904175px;}
._2a{width:300.013570px;}
._24{width:428.806477px;}
._2b{width:454.957259px;}
._25{width:479.425989px;}
._1d{width:485.146867px;}
._1e{width:537.222899px;}
._e{width:845.835161px;}
._18{width:1143.417901px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(149,79,114);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.148650px;}
.fs6{font-size:59.646600px;}
.fs5{font-size:63.239850px;}
.fs0{font-size:71.863650px;}
.fs1{font-size:89.829454px;}
.fs4{font-size:95.578650px;}
.fs7{font-size:99.171900px;}
.fs3{font-size:107.795250px;}
.fs8{font-size:117.137700px;}
.fs2{font-size:167.442300px;}
.y0{bottom:0.000000px;}
.y66{bottom:2.879998px;}
.y46{bottom:3.959988px;}
.y42{bottom:3.960004px;}
.y44{bottom:3.960006px;}
.y2{bottom:57.960022px;}
.y1{bottom:78.659981px;}
.y91{bottom:127.440033px;}
.yb4{bottom:142.019989px;}
.yff{bottom:144.899986px;}
.y90{bottom:149.759994px;}
.yb3{bottom:164.519989px;}
.yfe{bottom:167.220017px;}
.y3d{bottom:167.940033px;}
.y8f{bottom:172.080025px;}
.y73{bottom:173.340019px;}
.yd8{bottom:173.519989px;}
.y57{bottom:179.820030px;}
.y81{bottom:185.399986px;}
.yb2{bottom:186.840019px;}
.yfd{bottom:189.539977px;}
.y3c{bottom:190.259994px;}
.y72{bottom:195.659981px;}
.yd7{bottom:195.840019px;}
.y14{bottom:199.080025px;}
.y8e{bottom:207.179970px;}
.y80{bottom:207.720017px;}
.yb1{bottom:209.159981px;}
.y56{bottom:210.240006px;}
.yfc{bottom:212.039977px;}
.y3b{bottom:212.580025px;}
.y71{bottom:217.980011px;}
.yd6{bottom:218.159981px;}
.y13{bottom:228.779983px;}
.y8d{bottom:229.500000px;}
.y7f{bottom:230.039977px;}
.yb0{bottom:231.480011px;}
.yfb{bottom:234.360008px;}
.y3a{bottom:234.899986px;}
.y70{bottom:240.299973px;}
.yd5{bottom:240.480011px;}
.y8c{bottom:251.820030px;}
.yaf{bottom:253.799973px;}
.yfa{bottom:256.679970px;}
.y39{bottom:257.399986px;}
.yd4{bottom:262.799973px;}
.y7e{bottom:265.860008px;}
.y12{bottom:272.159981px;}
.y6f{bottom:274.679970px;}
.yae{bottom:276.120002px;}
.yf9{bottom:279.000000px;}
.y38{bottom:279.720017px;}
.yd3{bottom:285.120002px;}
.y7d{bottom:286.559967px;}
.y8b{bottom:286.919975px;}
.y6e{bottom:297.000000px;}
.yf8{bottom:301.320030px;}
.y37{bottom:302.039977px;}
.y11{bottom:304.919975px;}
.yd2{bottom:307.440033px;}
.y8a{bottom:309.240006px;}
.yad{bottom:310.500000px;}
.y7c{bottom:316.980011px;}
.y6d{bottom:319.320030px;}
.yf7{bottom:323.639992px;}
.yd1{bottom:329.759994px;}
.yac{bottom:332.820030px;}
.y10{bottom:335.700027px;}
.y36{bottom:337.679970px;}
.y89{bottom:345.779983px;}
.yf6{bottom:345.960022px;}
.yd0{bottom:352.080025px;}
.y6c{bottom:353.700027px;}
.yf{bottom:358.740006px;}
.yab{bottom:367.200027px;}
.y35{bottom:368.100013px;}
.yf5{bottom:368.279983px;}
.y88{bottom:380.159981px;}
.ycf{bottom:386.460022px;}
.y6b{bottom:388.799973px;}
.yf4{bottom:390.600013px;}
.yaa{bottom:402.299973px;}
.y87{bottom:402.480011px;}
.y6a{bottom:411.120002px;}
.yf3{bottom:412.919975px;}
.yce{bottom:416.519989px;}
.ya9{bottom:424.620002px;}
.y86{bottom:424.799973px;}
.yf2{bottom:435.240006px;}
.y69{bottom:446.220017px;}
.ya8{bottom:446.940033px;}
.y85{bottom:447.120002px;}
.yf1{bottom:457.740006px;}
.y68{bottom:468.539977px;}
.y84{bottom:469.440033px;}
.ycd{bottom:471.600013px;}
.yf0{bottom:480.059967px;}
.ya7{bottom:482.039977px;}
.ycc{bottom:493.919975px;}
.yef{bottom:502.379998px;}
.y67{bottom:503.639992px;}
.ya6{bottom:504.360008px;}
.y83{bottom:505.080025px;}
.ycb{bottom:516.240006px;}
.yee{bottom:524.700027px;}
.y64{bottom:525.960022px;}
.ya5{bottom:526.679970px;}
.y65{bottom:529.919975px;}
.y82{bottom:535.500000px;}
.yca{bottom:538.559967px;}
.yed{bottom:547.019989px;}
.yc9{bottom:560.879998px;}
.y63{bottom:561.059967px;}
.ya4{bottom:561.779983px;}
.yec{bottom:569.340019px;}
.y55{bottom:572.580025px;}
.y62{bottom:583.379998px;}
.ya3{bottom:584.100013px;}
.yeb{bottom:591.659981px;}
.y54{bottom:594.899986px;}
.yc8{bottom:605.700027px;}
.ya2{bottom:606.419975px;}
.yea{bottom:614.519989px;}
.y61{bottom:618.480011px;}
.ye{bottom:620.459988px;}
.yc7{bottom:628.019989px;}
.y53{bottom:629.100013px;}
.ye9{bottom:636.839985px;}
.yd{bottom:637.740006px;}
.y60{bottom:640.800007px;}
.ya1{bottom:641.519989px;}
.y52{bottom:651.420010px;}
.yc{bottom:657.540012px;}
.ye8{bottom:659.160015px;}
.yc6{bottom:662.399986px;}
.y51{bottom:673.920010px;}
.y5f{bottom:675.899986px;}
.ya0{bottom:677.879998px;}
.ye7{bottom:681.480011px;}
.yc5{bottom:684.720017px;}
.y7b{bottom:685.439999px;}
.yb{bottom:688.680004px;}
.y50{bottom:696.240006px;}
.ye6{bottom:703.800007px;}
.y7a{bottom:707.759994px;}
.y5e{bottom:712.259994px;}
.yc4{bottom:714.779983px;}
.y4f{bottom:718.560001px;}
.ye5{bottom:726.120002px;}
.y79{bottom:730.079990px;}
.ya{bottom:734.040012px;}
.y9f{bottom:734.579990px;}
.y4e{bottom:740.879998px;}
.y5d{bottom:746.639992px;}
.ye4{bottom:748.439999px;}
.y78{bottom:752.579990px;}
.y9e{bottom:756.899986px;}
.y4d{bottom:763.199993px;}
.y5c{bottom:768.959988px;}
.yc3{bottom:769.860008px;}
.ye3{bottom:770.759994px;}
.y28{bottom:771.300007px;}
.y77{bottom:774.899986px;}
.y9{bottom:778.860008px;}
.y9d{bottom:779.220017px;}
.y34{bottom:781.740006px;}
.y1e{bottom:784.259994px;}
.y5b{bottom:791.279983px;}
.yc2{bottom:792.180004px;}
.ye2{bottom:793.620002px;}
.y76{bottom:797.220017px;}
.y4c{bottom:797.579990px;}
.y9c{bottom:801.720017px;}
.y33{bottom:804.060001px;}
.y27{bottom:807.480011px;}
.y5a{bottom:813.600013px;}
.yc1{bottom:814.500000px;}
.ye1{bottom:815.939999px;}
.y1d{bottom:818.639992px;}
.y4b{bottom:819.899986px;}
.y8{bottom:821.339985px;}
.y107{bottom:822.420010px;}
.y9b{bottom:824.040012px;}
.y32{bottom:826.379998px;}
.y75{bottom:832.860008px;}
.yc0{bottom:836.819995px;}
.y26{bottom:837.540012px;}
.ye0{bottom:838.259994px;}
.y4a{bottom:842.220017px;}
.y106{bottom:844.740006px;}
.y9a{bottom:846.360008px;}
.y1c{bottom:848.519989px;}
.y31{bottom:848.699993px;}
.y59{bottom:849.420010px;}
.ybf{bottom:859.139992px;}
.ydf{bottom:860.579990px;}
.y74{bottom:863.279983px;}
.y49{bottom:864.540012px;}
.y7{bottom:866.699993px;}
.y105{bottom:867.060001px;}
.y25{bottom:867.240006px;}
.y99{bottom:868.680004px;}
.y30{bottom:871.019989px;}
.y1b{bottom:878.220017px;}
.y58{bottom:879.660015px;}
.ybe{bottom:881.459988px;}
.yde{bottom:883.439999px;}
.y24{bottom:887.939999px;}
.y104{bottom:889.560001px;}
.y2f{bottom:893.339985px;}
.y48{bottom:898.920010px;}
.y98{bottom:903.060001px;}
.ybd{bottom:903.780001px;}
.ydd{bottom:904.139992px;}
.y1a{bottom:908.099997px;}
.y29{bottom:908.280001px;}
.y103{bottom:910.259994px;}
.y6{bottom:910.979994px;}
.y2e{bottom:915.659998px;}
.y47{bottom:916.379998px;}
.y23{bottom:917.639992px;}
.ydc{bottom:924.840002px;}
.ybc{bottom:926.099997px;}
.y102{bottom:930.960004px;}
.y45{bottom:937.800007px;}
.y19{bottom:937.979994px;}
.y97{bottom:938.159998px;}
.y22{bottom:938.340002px;}
.ydb{bottom:945.539995px;}
.y5{bottom:946.979994px;}
.ybb{bottom:948.419992px;}
.y101{bottom:951.659998px;}
.yb8{bottom:956.340002px;}
.y43{bottom:959.219999px;}
.y2d{bottom:960.300007px;}
.y96{bottom:960.479994px;}
.y18{bottom:967.860008px;}
.y21{bottom:968.039995px;}
.yba{bottom:970.740006px;}
.y100{bottom:973.979994px;}
.y41{bottom:980.639992px;}
.y2c{bottom:982.620002px;}
.y95{bottom:982.800007px;}
.yda{bottom:990.180004px;}
.y4{bottom:995.400003px;}
.yb7{bottom:996.300007px;}
.y17{bottom:997.560001px;}
.y20{bottom:997.740006px;}
.yb9{bottom:1005.120002px;}
.y40{bottom:1005.300007px;}
.yd9{bottom:1012.500000px;}
.y2b{bottom:1012.680004px;}
.y94{bottom:1017.900003px;}
.yb6{bottom:1018.620002px;}
.y3f{bottom:1026.900003px;}
.y16{bottom:1027.439999px;}
.y93{bottom:1040.219999px;}
.yb5{bottom:1040.939999px;}
.y2a{bottom:1042.560001px;}
.y15{bottom:1051.560001px;}
.y3{bottom:1053.540003px;}
.y1f{bottom:1057.500000px;}
.y92{bottom:1062.540003px;}
.y3e{bottom:1063.260003px;}
.h10{height:12.780052px;}
.hf{height:20.159998px;}
.he{height:20.159999px;}
.hd{height:20.160015px;}
.h11{height:33.619419px;}
.h7{height:42.084637px;}
.h1{height:50.178232px;}
.hc{height:50.704577px;}
.h14{height:52.318702px;}
.h15{height:54.669710px;}
.h16{height:60.564775px;}
.h12{height:60.979356px;}
.h13{height:60.979495px;}
.h2{height:62.722715px;}
.ha{height:67.437085px;}
.h8{height:69.972361px;}
.hb{height:71.477664px;}
.h5{height:75.267191px;}
.h4{height:76.056707px;}
.h6{height:80.619914px;}
.h9{height:82.648426px;}
.h3{height:118.141662px;}
.h0{height:1188.000000px;}
.wf{width:3.239971px;}
.w10{width:3.240006px;}
.w9{width:4.500000px;}
.w17{width:5.939965px;}
.w5{width:5.939998px;}
.w12{width:5.939999px;}
.w7{width:5.940033px;}
.w19{width:6.120002px;}
.w14{width:6.120003px;}
.we{width:7.920010px;}
.w2{width:9.000000px;}
.w1a{width:9.180004px;}
.w18{width:9.180038px;}
.wc{width:11.159981px;}
.wa{width:21.060036px;}
.wd{width:25.920009px;}
.w11{width:35.100013px;}
.w6{width:57.059967px;}
.w1{width:75.060009px;}
.w8{width:149.039979px;}
.w3{width:160.920001px;}
.w15{width:183.420001px;}
.w4{width:188.459988px;}
.wb{width:217.080016px;}
.w13{width:286.919975px;}
.w16{width:395.639991px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4f{left:104.939999px;}
.x2{left:108.000000px;}
.x3f{left:112.319996px;}
.x4d{left:113.939999px;}
.x17{left:116.459997px;}
.x4a{left:123.299998px;}
.x44{left:126.180005px;}
.xd{left:129.239997px;}
.x4{left:133.019998px;}
.x4e{left:162.000000px;}
.x39{left:163.439999px;}
.xb{left:171.360008px;}
.x10{left:179.819996px;}
.x18{left:191.520006px;}
.x16{left:196.199993px;}
.x41{left:203.400003px;}
.x8{left:206.819996px;}
.x7{left:208.620002px;}
.x38{left:231.300007px;}
.x46{left:243.000000px;}
.x15{left:250.199993px;}
.x4b{left:265.680005px;}
.x36{left:272.340002px;}
.x1a{left:277.379998px;}
.x43{left:282.240006px;}
.x3a{left:286.199993px;}
.x30{left:299.879998px;}
.xf{left:303.120002px;}
.x3{left:309.959988px;}
.x9{left:317.879998px;}
.x49{left:327.060001px;}
.x14{left:330.480011px;}
.x21{left:333.540012px;}
.x19{left:360.720017px;}
.x3c{left:364.860008px;}
.x5{left:369.360008px;}
.x22{left:371.879998px;}
.x3d{left:374.040012px;}
.x23{left:376.379998px;}
.xc{left:391.319996px;}
.x24{left:402.300007px;}
.x11{left:404.819996px;}
.x25{left:406.800007px;}
.x26{left:414.720017px;}
.x27{left:417.959988px;}
.x28{left:421.199993px;}
.xa{left:426.060001px;}
.x12{left:451.439999px;}
.x6{left:454.680005px;}
.x1{left:456.480011px;}
.x29{left:460.800007px;}
.x2a{left:466.740006px;}
.x47{left:477.360008px;}
.x4c{left:483.839985px;}
.x1b{left:549.180005px;}
.x3b{left:552.060001px;}
.x1c{left:555.120002px;}
.x1d{left:612.179970px;}
.x1e{left:618.120002px;}
.x13{left:634.500000px;}
.x48{left:655.740006px;}
.x37{left:680.759994px;}
.x45{left:689.759994px;}
.x42{left:723.600014px;}
.x2b{left:753.659981px;}
.x31{left:756.360008px;}
.x2c{left:758.159981px;}
.x35{left:759.240006px;}
.x32{left:760.860008px;}
.x2d{left:764.100014px;}
.x1f{left:767.159981px;}
.x20{left:771.659981px;}
.x2e{left:773.100014px;}
.x33{left:775.980011px;}
.x2f{left:779.220017px;}
.x34{left:782.100014px;}
.xe{left:793.259994px;}
.x3e{left:796.500000px;}
.x40{left:810.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.319944pt;}
.v1{vertical-align:32.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053149pt;}
.ls4{letter-spacing:0.360608pt;}
.ls3{letter-spacing:0.360612pt;}
.ls5{letter-spacing:78.305572pt;}
.ls2{letter-spacing:752.030300pt;}
.ws3{word-spacing:-63.878800pt;}
.ws2{word-spacing:-15.969700pt;}
.ws0{word-spacing:-14.053300pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-15.116942pt;}
._a{margin-left:-13.856001pt;}
._10{margin-left:-12.891328pt;}
._d{margin-left:-11.983763pt;}
._8{margin-left:-10.648347pt;}
._4{margin-left:-9.657183pt;}
._5{margin-left:-7.871673pt;}
._c{margin-left:-6.460483pt;}
._3{margin-left:-4.911641pt;}
._2{margin-left:-4.001355pt;}
._1{margin-left:-2.381402pt;}
._0{margin-left:-1.356799pt;}
._6{width:1.356799pt;}
._7{width:2.520696pt;}
._9{width:3.787600pt;}
._b{width:5.085412pt;}
._17{width:6.479461pt;}
._19{width:8.197946pt;}
._16{width:9.526738pt;}
._15{width:11.223206pt;}
._14{width:12.183323pt;}
._13{width:13.270258pt;}
._1a{width:14.200620pt;}
._11{width:17.756389pt;}
._12{width:18.710303pt;}
._27{width:20.969091pt;}
._28{width:22.583398pt;}
._29{width:24.294904pt;}
._1c{width:25.596435pt;}
._1b{width:26.521430pt;}
._2e{width:52.197144pt;}
._2c{width:57.501650pt;}
._2d{width:58.396951pt;}
._1f{width:86.780474pt;}
._22{width:124.289680pt;}
._31{width:131.847448pt;}
._2f{width:137.214983pt;}
._30{width:138.809469pt;}
._23{width:145.722265pt;}
._26{width:164.587471pt;}
._21{width:240.259894pt;}
._20{width:247.025934pt;}
._2a{width:266.678729pt;}
._24{width:381.161313pt;}
._2b{width:404.406452pt;}
._25{width:426.156435pt;}
._1d{width:431.241660pt;}
._1e{width:477.531465pt;}
._e{width:751.853476pt;}
._18{width:1016.371468pt;}
.fs9{font-size:42.798800pt;}
.fs6{font-size:53.019200pt;}
.fs5{font-size:56.213200pt;}
.fs0{font-size:63.878800pt;}
.fs1{font-size:79.848404pt;}
.fs4{font-size:84.958800pt;}
.fs7{font-size:88.152800pt;}
.fs3{font-size:95.818000pt;}
.fs8{font-size:104.122400pt;}
.fs2{font-size:148.837600pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:2.559998pt;}
.y46{bottom:3.519989pt;}
.y42{bottom:3.520004pt;}
.y44{bottom:3.520005pt;}
.y2{bottom:51.520020pt;}
.y1{bottom:69.919983pt;}
.y91{bottom:113.280029pt;}
.yb4{bottom:126.239990pt;}
.yff{bottom:128.799988pt;}
.y90{bottom:133.119995pt;}
.yb3{bottom:146.239990pt;}
.yfe{bottom:148.640015pt;}
.y3d{bottom:149.280029pt;}
.y8f{bottom:152.960022pt;}
.y73{bottom:154.080017pt;}
.yd8{bottom:154.239990pt;}
.y57{bottom:159.840027pt;}
.y81{bottom:164.799988pt;}
.yb2{bottom:166.080017pt;}
.yfd{bottom:168.479980pt;}
.y3c{bottom:169.119995pt;}
.y72{bottom:173.919983pt;}
.yd7{bottom:174.080017pt;}
.y14{bottom:176.960022pt;}
.y8e{bottom:184.159973pt;}
.y80{bottom:184.640015pt;}
.yb1{bottom:185.919983pt;}
.y56{bottom:186.880005pt;}
.yfc{bottom:188.479980pt;}
.y3b{bottom:188.960022pt;}
.y71{bottom:193.760010pt;}
.yd6{bottom:193.919983pt;}
.y13{bottom:203.359985pt;}
.y8d{bottom:204.000000pt;}
.y7f{bottom:204.479980pt;}
.yb0{bottom:205.760010pt;}
.yfb{bottom:208.320007pt;}
.y3a{bottom:208.799988pt;}
.y70{bottom:213.599976pt;}
.yd5{bottom:213.760010pt;}
.y8c{bottom:223.840027pt;}
.yaf{bottom:225.599976pt;}
.yfa{bottom:228.159973pt;}
.y39{bottom:228.799988pt;}
.yd4{bottom:233.599976pt;}
.y7e{bottom:236.320007pt;}
.y12{bottom:241.919983pt;}
.y6f{bottom:244.159973pt;}
.yae{bottom:245.440002pt;}
.yf9{bottom:248.000000pt;}
.y38{bottom:248.640015pt;}
.yd3{bottom:253.440002pt;}
.y7d{bottom:254.719971pt;}
.y8b{bottom:255.039978pt;}
.y6e{bottom:264.000000pt;}
.yf8{bottom:267.840027pt;}
.y37{bottom:268.479980pt;}
.y11{bottom:271.039978pt;}
.yd2{bottom:273.280029pt;}
.y8a{bottom:274.880005pt;}
.yad{bottom:276.000000pt;}
.y7c{bottom:281.760010pt;}
.y6d{bottom:283.840027pt;}
.yf7{bottom:287.679993pt;}
.yd1{bottom:293.119995pt;}
.yac{bottom:295.840027pt;}
.y10{bottom:298.400024pt;}
.y36{bottom:300.159973pt;}
.y89{bottom:307.359985pt;}
.yf6{bottom:307.520020pt;}
.yd0{bottom:312.960022pt;}
.y6c{bottom:314.400024pt;}
.yf{bottom:318.880005pt;}
.yab{bottom:326.400024pt;}
.y35{bottom:327.200012pt;}
.yf5{bottom:327.359985pt;}
.y88{bottom:337.919983pt;}
.ycf{bottom:343.520020pt;}
.y6b{bottom:345.599976pt;}
.yf4{bottom:347.200012pt;}
.yaa{bottom:357.599976pt;}
.y87{bottom:357.760010pt;}
.y6a{bottom:365.440002pt;}
.yf3{bottom:367.039978pt;}
.yce{bottom:370.239990pt;}
.ya9{bottom:377.440002pt;}
.y86{bottom:377.599976pt;}
.yf2{bottom:386.880005pt;}
.y69{bottom:396.640015pt;}
.ya8{bottom:397.280029pt;}
.y85{bottom:397.440002pt;}
.yf1{bottom:406.880005pt;}
.y68{bottom:416.479980pt;}
.y84{bottom:417.280029pt;}
.ycd{bottom:419.200012pt;}
.yf0{bottom:426.719971pt;}
.ya7{bottom:428.479980pt;}
.ycc{bottom:439.039978pt;}
.yef{bottom:446.559998pt;}
.y67{bottom:447.679993pt;}
.ya6{bottom:448.320007pt;}
.y83{bottom:448.960022pt;}
.ycb{bottom:458.880005pt;}
.yee{bottom:466.400024pt;}
.y64{bottom:467.520020pt;}
.ya5{bottom:468.159973pt;}
.y65{bottom:471.039978pt;}
.y82{bottom:476.000000pt;}
.yca{bottom:478.719971pt;}
.yed{bottom:486.239990pt;}
.yc9{bottom:498.559998pt;}
.y63{bottom:498.719971pt;}
.ya4{bottom:499.359985pt;}
.yec{bottom:506.080017pt;}
.y55{bottom:508.960022pt;}
.y62{bottom:518.559998pt;}
.ya3{bottom:519.200012pt;}
.yeb{bottom:525.919983pt;}
.y54{bottom:528.799988pt;}
.yc8{bottom:538.400024pt;}
.ya2{bottom:539.039978pt;}
.yea{bottom:546.239990pt;}
.y61{bottom:549.760010pt;}
.ye{bottom:551.519989pt;}
.yc7{bottom:558.239990pt;}
.y53{bottom:559.200012pt;}
.ye9{bottom:566.079987pt;}
.yd{bottom:566.880005pt;}
.y60{bottom:569.600006pt;}
.ya1{bottom:570.239990pt;}
.y52{bottom:579.040009pt;}
.yc{bottom:584.480011pt;}
.ye8{bottom:585.920013pt;}
.yc6{bottom:588.799988pt;}
.y51{bottom:599.040009pt;}
.y5f{bottom:600.799988pt;}
.ya0{bottom:602.559998pt;}
.ye7{bottom:605.760010pt;}
.yc5{bottom:608.640015pt;}
.y7b{bottom:609.279999pt;}
.yb{bottom:612.160004pt;}
.y50{bottom:618.880005pt;}
.ye6{bottom:625.600006pt;}
.y7a{bottom:629.119995pt;}
.y5e{bottom:633.119995pt;}
.yc4{bottom:635.359985pt;}
.y4f{bottom:638.720001pt;}
.ye5{bottom:645.440002pt;}
.y79{bottom:648.959991pt;}
.ya{bottom:652.480011pt;}
.y9f{bottom:652.959991pt;}
.y4e{bottom:658.559998pt;}
.y5d{bottom:663.679993pt;}
.ye4{bottom:665.279999pt;}
.y78{bottom:668.959991pt;}
.y9e{bottom:672.799988pt;}
.y4d{bottom:678.399994pt;}
.y5c{bottom:683.519989pt;}
.yc3{bottom:684.320007pt;}
.ye3{bottom:685.119995pt;}
.y28{bottom:685.600006pt;}
.y77{bottom:688.799988pt;}
.y9{bottom:692.320007pt;}
.y9d{bottom:692.640015pt;}
.y34{bottom:694.880005pt;}
.y1e{bottom:697.119995pt;}
.y5b{bottom:703.359985pt;}
.yc2{bottom:704.160004pt;}
.ye2{bottom:705.440002pt;}
.y76{bottom:708.640015pt;}
.y4c{bottom:708.959991pt;}
.y9c{bottom:712.640015pt;}
.y33{bottom:714.720001pt;}
.y27{bottom:717.760010pt;}
.y5a{bottom:723.200012pt;}
.yc1{bottom:724.000000pt;}
.ye1{bottom:725.279999pt;}
.y1d{bottom:727.679993pt;}
.y4b{bottom:728.799988pt;}
.y8{bottom:730.079987pt;}
.y107{bottom:731.040009pt;}
.y9b{bottom:732.480011pt;}
.y32{bottom:734.559998pt;}
.y75{bottom:740.320007pt;}
.yc0{bottom:743.839996pt;}
.y26{bottom:744.480011pt;}
.ye0{bottom:745.119995pt;}
.y4a{bottom:748.640015pt;}
.y106{bottom:750.880005pt;}
.y9a{bottom:752.320007pt;}
.y1c{bottom:754.239990pt;}
.y31{bottom:754.399994pt;}
.y59{bottom:755.040009pt;}
.ybf{bottom:763.679993pt;}
.ydf{bottom:764.959991pt;}
.y74{bottom:767.359985pt;}
.y49{bottom:768.480011pt;}
.y7{bottom:770.399994pt;}
.y105{bottom:770.720001pt;}
.y25{bottom:770.880005pt;}
.y99{bottom:772.160004pt;}
.y30{bottom:774.239990pt;}
.y1b{bottom:780.640015pt;}
.y58{bottom:781.920013pt;}
.ybe{bottom:783.519989pt;}
.yde{bottom:785.279999pt;}
.y24{bottom:789.279999pt;}
.y104{bottom:790.720001pt;}
.y2f{bottom:794.079987pt;}
.y48{bottom:799.040009pt;}
.y98{bottom:802.720001pt;}
.ybd{bottom:803.360001pt;}
.ydd{bottom:803.679993pt;}
.y1a{bottom:807.199997pt;}
.y29{bottom:807.360001pt;}
.y103{bottom:809.119995pt;}
.y6{bottom:809.759995pt;}
.y2e{bottom:813.919998pt;}
.y47{bottom:814.559998pt;}
.y23{bottom:815.679993pt;}
.ydc{bottom:822.080002pt;}
.ybc{bottom:823.199997pt;}
.y102{bottom:827.520004pt;}
.y45{bottom:833.600006pt;}
.y19{bottom:833.759995pt;}
.y97{bottom:833.919998pt;}
.y22{bottom:834.080002pt;}
.ydb{bottom:840.479996pt;}
.y5{bottom:841.759995pt;}
.ybb{bottom:843.039993pt;}
.y101{bottom:845.919998pt;}
.yb8{bottom:850.080002pt;}
.y43{bottom:852.639999pt;}
.y2d{bottom:853.600006pt;}
.y96{bottom:853.759995pt;}
.y18{bottom:860.320007pt;}
.y21{bottom:860.479996pt;}
.yba{bottom:862.880005pt;}
.y100{bottom:865.759995pt;}
.y41{bottom:871.679993pt;}
.y2c{bottom:873.440002pt;}
.y95{bottom:873.600006pt;}
.yda{bottom:880.160004pt;}
.y4{bottom:884.800003pt;}
.yb7{bottom:885.600006pt;}
.y17{bottom:886.720001pt;}
.y20{bottom:886.880005pt;}
.yb9{bottom:893.440002pt;}
.y40{bottom:893.600006pt;}
.yd9{bottom:900.000000pt;}
.y2b{bottom:900.160004pt;}
.y94{bottom:904.800003pt;}
.yb6{bottom:905.440002pt;}
.y3f{bottom:912.800003pt;}
.y16{bottom:913.279999pt;}
.y93{bottom:924.639999pt;}
.yb5{bottom:925.279999pt;}
.y2a{bottom:926.720001pt;}
.y15{bottom:934.720001pt;}
.y3{bottom:936.480003pt;}
.y1f{bottom:940.000000pt;}
.y92{bottom:944.480003pt;}
.y3e{bottom:945.120003pt;}
.h10{height:11.360046pt;}
.hf{height:17.919998pt;}
.he{height:17.919999pt;}
.hd{height:17.920013pt;}
.h11{height:29.883928pt;}
.h7{height:37.408566pt;}
.h1{height:44.602873pt;}
.hc{height:45.070735pt;}
.h14{height:46.505513pt;}
.h15{height:48.595298pt;}
.h16{height:53.835356pt;}
.h12{height:54.203872pt;}
.h13{height:54.203996pt;}
.h2{height:55.753524pt;}
.ha{height:59.944075pt;}
.h8{height:62.197654pt;}
.hb{height:63.535701pt;}
.h5{height:66.904170pt;}
.h4{height:67.605962pt;}
.h6{height:71.662146pt;}
.h9{height:73.465268pt;}
.h3{height:105.014811pt;}
.h0{height:1056.000000pt;}
.wf{width:2.879974pt;}
.w10{width:2.880005pt;}
.w9{width:4.000000pt;}
.w17{width:5.279969pt;}
.w5{width:5.279998pt;}
.w12{width:5.279999pt;}
.w7{width:5.280029pt;}
.w19{width:5.440002pt;}
.w14{width:5.440003pt;}
.we{width:7.040009pt;}
.w2{width:8.000000pt;}
.w1a{width:8.160004pt;}
.w18{width:8.160034pt;}
.wc{width:9.919983pt;}
.wa{width:18.720032pt;}
.wd{width:23.040008pt;}
.w11{width:31.200012pt;}
.w6{width:50.719971pt;}
.w1{width:66.720008pt;}
.w8{width:132.479981pt;}
.w3{width:143.040001pt;}
.w15{width:163.040001pt;}
.w4{width:167.519989pt;}
.wb{width:192.960014pt;}
.w13{width:255.039978pt;}
.w16{width:351.679992pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:93.279999pt;}
.x2{left:96.000000pt;}
.x3f{left:99.839996pt;}
.x4d{left:101.279999pt;}
.x17{left:103.519997pt;}
.x4a{left:109.599998pt;}
.x44{left:112.160004pt;}
.xd{left:114.879997pt;}
.x4{left:118.239998pt;}
.x4e{left:144.000000pt;}
.x39{left:145.279999pt;}
.xb{left:152.320007pt;}
.x10{left:159.839996pt;}
.x18{left:170.240005pt;}
.x16{left:174.399994pt;}
.x41{left:180.800003pt;}
.x8{left:183.839996pt;}
.x7{left:185.440002pt;}
.x38{left:205.600006pt;}
.x46{left:216.000000pt;}
.x15{left:222.399994pt;}
.x4b{left:236.160004pt;}
.x36{left:242.080002pt;}
.x1a{left:246.559998pt;}
.x43{left:250.880005pt;}
.x3a{left:254.399994pt;}
.x30{left:266.559998pt;}
.xf{left:269.440002pt;}
.x3{left:275.519989pt;}
.x9{left:282.559998pt;}
.x49{left:290.720001pt;}
.x14{left:293.760010pt;}
.x21{left:296.480011pt;}
.x19{left:320.640015pt;}
.x3c{left:324.320007pt;}
.x5{left:328.320007pt;}
.x22{left:330.559998pt;}
.x3d{left:332.480011pt;}
.x23{left:334.559998pt;}
.xc{left:347.839996pt;}
.x24{left:357.600006pt;}
.x11{left:359.839996pt;}
.x25{left:361.600006pt;}
.x26{left:368.640015pt;}
.x27{left:371.519989pt;}
.x28{left:374.399994pt;}
.xa{left:378.720001pt;}
.x12{left:401.279999pt;}
.x6{left:404.160004pt;}
.x1{left:405.760010pt;}
.x29{left:409.600006pt;}
.x2a{left:414.880005pt;}
.x47{left:424.320007pt;}
.x4c{left:430.079987pt;}
.x1b{left:488.160004pt;}
.x3b{left:490.720001pt;}
.x1c{left:493.440002pt;}
.x1d{left:544.159973pt;}
.x1e{left:549.440002pt;}
.x13{left:564.000000pt;}
.x48{left:582.880005pt;}
.x37{left:605.119995pt;}
.x45{left:613.119995pt;}
.x42{left:643.200012pt;}
.x2b{left:669.919983pt;}
.x31{left:672.320007pt;}
.x2c{left:673.919983pt;}
.x35{left:674.880005pt;}
.x32{left:676.320007pt;}
.x2d{left:679.200012pt;}
.x1f{left:681.919983pt;}
.x20{left:685.919983pt;}
.x2e{left:687.200012pt;}
.x33{left:689.760010pt;}
.x2f{left:692.640015pt;}
.x34{left:695.200012pt;}
.xe{left:705.119995pt;}
.x3e{left:708.000000pt;}
.x40{left:720.799988pt;}
}




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