
    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_1fd073022afe92d978e1ea41.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bac85632940ae8262b554b7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2f4931bce916b925ae019bf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_948475bd6d4c645d7cef5863.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_a61a7efa20f73105061aedb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_8bea3c3cf5079f787691e625.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;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_f83bca6f8a87dba2711600b5.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-33.000001px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._15{margin-left:-8.404171px;}
._6{margin-left:-6.667258px;}
._2{margin-left:-5.256679px;}
._1{margin-left:-3.718548px;}
._0{margin-left:-2.463785px;}
._e{margin-left:-1.220818px;}
._3{width:4.426582px;}
._4{width:5.440037px;}
._5{width:8.920056px;}
._d{width:9.995612px;}
._8{width:13.499997px;}
._9{width:22.499998px;}
._a{width:27.000000px;}
._c{width:31.500015px;}
._b{width:36.000002px;}
._f{width:40.500000px;}
._14{width:84.687887px;}
._13{width:85.808526px;}
._12{width:89.704502px;}
._7{width:107.676504px;}
._11{width:148.434883px;}
._10{width:152.856828px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs4{font-size:83.999997px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523194px;}
.yd5{bottom:59.456550px;}
.y11{bottom:59.456910px;}
.y6c{bottom:59.457270px;}
.ya4{bottom:114.187498px;}
.y89{bottom:121.727053px;}
.y4d{bottom:124.345462px;}
.yd4{bottom:124.456056px;}
.y6b{bottom:124.647213px;}
.y30{bottom:129.599853px;}
.ya3{bottom:145.234861px;}
.y10{bottom:151.754878px;}
.y88{bottom:152.774416px;}
.y13a{bottom:155.059567px;}
.yd3{bottom:155.503419px;}
.y6a{bottom:155.694577px;}
.y2f{bottom:160.647216px;}
.y127{bottom:160.869143px;}
.y10c{bottom:163.154288px;}
.y14d{bottom:165.821783px;}
.yf2{bottom:168.631344px;}
.y16a{bottom:171.106938px;}
.y4c{bottom:173.392825px;}
.ya2{bottom:176.282224px;}
.y87{bottom:183.821779px;}
.y139{bottom:186.106930px;}
.yd2{bottom:186.550783px;}
.y2e{bottom:191.694579px;}
.y126{bottom:191.916507px;}
.y10b{bottom:194.201652px;}
.yf{bottom:198.214963px;}
.yf1{bottom:199.678708px;}
.y169{bottom:202.154301px;}
.y4b{bottom:204.440189px;}
.y69{bottom:205.928838px;}
.ya1{bottom:207.329588px;}
.y14c{bottom:214.869130px;}
.y86{bottom:214.869142px;}
.y138{bottom:217.154294px;}
.yd1{bottom:217.598146px;}
.y2d{bottom:222.741943px;}
.y125{bottom:222.963870px;}
.y10a{bottom:225.249015px;}
.yf0{bottom:230.726071px;}
.y168{bottom:233.201664px;}
.y4a{bottom:235.487552px;}
.ye{bottom:244.675048px;}
.y14b{bottom:245.916498px;}
.y137{bottom:248.201657px;}
.yd0{bottom:248.645509px;}
.y2c{bottom:253.789306px;}
.y124{bottom:254.011233px;}
.y109{bottom:256.296378px;}
.y68{bottom:256.376575px;}
.yba{bottom:256.376950px;}
.ya0{bottom:256.376958px;}
.yef{bottom:261.773434px;}
.y85{bottom:263.916502px;}
.y167{bottom:264.249028px;}
.y49{bottom:266.534915px;}
.y14a{bottom:276.963861px;}
.y136{bottom:279.249020px;}
.ycf{bottom:279.692873px;}
.y2b{bottom:284.836669px;}
.y123{bottom:285.058597px;}
.y108{bottom:287.343742px;}
.y67{bottom:287.423943px;}
.yb9{bottom:287.424318px;}
.y9f{bottom:287.424321px;}
.yd{bottom:291.135133px;}
.yee{bottom:292.820797px;}
.y84{bottom:294.963869px;}
.y166{bottom:295.296391px;}
.y48{bottom:297.582278px;}
.y149{bottom:308.011224px;}
.y135{bottom:310.296383px;}
.y2a{bottom:315.884033px;}
.y66{bottom:318.471306px;}
.yb8{bottom:318.471681px;}
.y9e{bottom:318.471684px;}
.y83{bottom:326.011225px;}
.y165{bottom:326.343754px;}
.yce{bottom:327.553708px;}
.y122{bottom:334.105957px;}
.y107{bottom:336.391118px;}
.yc{bottom:337.595218px;}
.y17c{bottom:338.235345px;}
.y148{bottom:339.058588px;}
.yed{bottom:341.868168px;}
.y65{bottom:349.518669px;}
.yb7{bottom:349.519044px;}
.y9d{bottom:349.519048px;}
.y47{bottom:350.190306px;}
.y82{bottom:357.058593px;}
.y164{bottom:357.391118px;}
.y134{bottom:362.904786px;}
.y29{bottom:364.931403px;}
.y17b{bottom:366.697258px;}
.y147{bottom:370.105951px;}
.yec{bottom:372.915531px;}
.yb{bottom:374.244146px;}
.ycd{bottom:375.200680px;}
.y64{bottom:380.566033px;}
.yb6{bottom:380.566408px;}
.y9c{bottom:380.566411px;}
.y121{bottom:383.153313px;}
.y106{bottom:385.438476px;}
.y81{bottom:388.105956px;}
.ya{bottom:391.492678px;}
.y28{bottom:395.978766px;}
.y146{bottom:401.153314px;}
.yeb{bottom:403.962894px;}
.ycc{bottom:406.248048px;}
.y163{bottom:406.438479px;}
.y46{bottom:406.438836px;}
.y9{bottom:408.741213px;}
.y63{bottom:411.613396px;}
.yb5{bottom:411.613771px;}
.y9b{bottom:411.613774px;}
.y17a{bottom:413.156248px;}
.y120{bottom:414.200676px;}
.y105{bottom:416.485839px;}
.y133{bottom:419.153317px;}
.y80{bottom:419.153319px;}
.y27{bottom:427.026129px;}
.y145{bottom:432.200677px;}
.yea{bottom:435.010258px;}
.ycb{bottom:437.295411px;}
.y162{bottom:437.485843px;}
.y45{bottom:437.486199px;}
.y179{bottom:441.616693px;}
.y62{bottom:442.660759px;}
.yb4{bottom:442.661134px;}
.y9a{bottom:442.661137px;}
.y8{bottom:444.314214px;}
.y11f{bottom:445.248039px;}
.y104{bottom:447.533203px;}
.y7f{bottom:450.200683px;}
.y132{bottom:450.200684px;}
.y26{bottom:458.073493px;}
.ye9{bottom:466.057621px;}
.yca{bottom:468.342774px;}
.y161{bottom:468.533206px;}
.y44{bottom:468.533563px;}
.y178{bottom:470.075678px;}
.y61{bottom:473.708123px;}
.yb3{bottom:473.708498px;}
.y11e{bottom:476.295403px;}
.y103{bottom:478.580566px;}
.y131{bottom:481.248040px;}
.y7e{bottom:481.248046px;}
.y144{bottom:481.248052px;}
.y25{bottom:489.120856px;}
.y99{bottom:491.708493px;}
.ye8{bottom:497.104984px;}
.y177{bottom:498.536128px;}
.yc9{bottom:499.390138px;}
.y160{bottom:499.580569px;}
.y43{bottom:499.580926px;}
.y11d{bottom:507.342766px;}
.y102{bottom:509.627929px;}
.y130{bottom:512.295408px;}
.y7d{bottom:512.295409px;}
.y143{bottom:512.295419px;}
.y24{bottom:520.168219px;}
.y60{bottom:522.755493px;}
.y98{bottom:522.755856px;}
.yb2{bottom:522.755864px;}
.ye7{bottom:528.152348px;}
.yc8{bottom:530.437501px;}
.y15f{bottom:530.627932px;}
.y42{bottom:530.628289px;}
.y11c{bottom:538.390129px;}
.y101{bottom:540.675292px;}
.y12f{bottom:543.342771px;}
.y7c{bottom:543.342773px;}
.y142{bottom:543.342775px;}
.y176{bottom:544.995118px;}
.y23{bottom:551.215582px;}
.y5f{bottom:553.802856px;}
.y97{bottom:553.803219px;}
.yb1{bottom:553.803220px;}
.yc7{bottom:561.484864px;}
.y41{bottom:561.675652px;}
.y11b{bottom:569.437492px;}
.y12e{bottom:574.390134px;}
.y141{bottom:574.390143px;}
.ye6{bottom:576.012448px;}
.y15e{bottom:579.675294px;}
.y5e{bottom:584.850219px;}
.y96{bottom:584.850583px;}
.yb0{bottom:584.850588px;}
.y100{bottom:589.722647px;}
.y175{bottom:591.457033px;}
.y7b{bottom:592.390132px;}
.yc6{bottom:592.532228px;}
.y22{bottom:600.262949px;}
.y12d{bottom:605.437498px;}
.y140{bottom:605.437506px;}
.y15d{bottom:610.722658px;}
.y40{bottom:610.723026px;}
.y5d{bottom:615.897583px;}
.y95{bottom:615.897946px;}
.yaf{bottom:615.897951px;}
.y11a{bottom:618.484865px;}
.yff{bottom:620.770019px;}
.y7a{bottom:623.437499px;}
.ye5{bottom:623.659428px;}
.y21{bottom:631.310305px;}
.y12c{bottom:636.484861px;}
.y13f{bottom:636.484869px;}
.y174{bottom:637.916008px;}
.yc5{bottom:640.392328px;}
.y15c{bottom:641.770021px;}
.y3f{bottom:641.770389px;}
.y5c{bottom:646.944946px;}
.y94{bottom:646.945309px;}
.yae{bottom:646.945314px;}
.y119{bottom:649.532228px;}
.yfe{bottom:651.817382px;}
.y79{bottom:654.484855px;}
.ye4{bottom:654.706791px;}
.y20{bottom:662.357673px;}
.y12b{bottom:667.532224px;}
.y13e{bottom:667.532233px;}
.y15b{bottom:672.817384px;}
.y3e{bottom:672.817753px;}
.y5b{bottom:677.992309px;}
.y93{bottom:677.992673px;}
.yad{bottom:677.992678px;}
.y118{bottom:680.579592px;}
.yfd{bottom:682.864737px;}
.y173{bottom:684.376463px;}
.y78{bottom:685.532223px;}
.ye3{bottom:685.754154px;}
.yc4{bottom:688.039299px;}
.y1f{bottom:693.405036px;}
.y12a{bottom:698.579588px;}
.y13d{bottom:698.579596px;}
.y15a{bottom:703.864748px;}
.y3d{bottom:703.865116px;}
.y5a{bottom:709.039672px;}
.yac{bottom:709.040041px;}
.y117{bottom:711.626955px;}
.y172{bottom:712.836913px;}
.yfc{bottom:713.912109px;}
.y77{bottom:716.579586px;}
.ye2{bottom:716.801518px;}
.yc3{bottom:719.086663px;}
.y1e{bottom:724.452399px;}
.y92{bottom:727.040035px;}
.y13c{bottom:729.626959px;}
.y3c{bottom:734.912479px;}
.yab{bottom:740.087404px;}
.y116{bottom:742.674318px;}
.yfb{bottom:744.960202px;}
.y76{bottom:747.626949px;}
.ye1{bottom:747.848881px;}
.yc2{bottom:750.134026px;}
.y159{bottom:752.912106px;}
.y1d{bottom:755.499763px;}
.y59{bottom:758.087034px;}
.y91{bottom:758.087402px;}
.y171{bottom:759.295903px;}
.y13b{bottom:760.674322px;}
.y3b{bottom:765.959842px;}
.yaa{bottom:771.134768px;}
.y115{bottom:773.721682px;}
.y75{bottom:778.674313px;}
.y129{bottom:778.674316px;}
.ye0{bottom:778.896244px;}
.yc1{bottom:781.181389px;}
.y158{bottom:783.959469px;}
.y1c{bottom:786.547126px;}
.y170{bottom:787.756343px;}
.y58{bottom:789.134398px;}
.y90{bottom:789.134765px;}
.yfa{bottom:794.006842px;}
.y74{bottom:809.721676px;}
.y128{bottom:809.721683px;}
.ydf{bottom:809.943607px;}
.yc0{bottom:812.228753px;}
.y157{bottom:815.006833px;}
.y3a{bottom:815.007201px;}
.y16f{bottom:816.216793px;}
.y1b{bottom:817.594489px;}
.y57{bottom:820.181761px;}
.y8f{bottom:820.182128px;}
.y114{bottom:822.769043px;}
.y73{bottom:840.769039px;}
.yf9{bottom:843.054200px;}
.y156{bottom:846.054196px;}
.y39{bottom:846.054564px;}
.y1a{bottom:848.641853px;}
.y56{bottom:851.229124px;}
.ya9{bottom:851.229491px;}
.y8e{bottom:851.229492px;}
.yde{bottom:857.803708px;}
.ybf{bottom:860.088868px;}
.y16e{bottom:862.675783px;}
.y72{bottom:871.816402px;}
.y113{bottom:871.816407px;}
.yf8{bottom:874.101563px;}
.y155{bottom:877.101559px;}
.y38{bottom:877.101928px;}
.y55{bottom:882.276488px;}
.ya8{bottom:882.276854px;}
.y8d{bottom:882.276855px;}
.y16d{bottom:891.136228px;}
.y19{bottom:897.689210px;}
.y112{bottom:902.863770px;}
.yf7{bottom:905.148927px;}
.ydd{bottom:905.450683px;}
.ybe{bottom:907.735829px;}
.y154{bottom:908.148923px;}
.y37{bottom:908.149291px;}
.y8c{bottom:913.324218px;}
.y7{bottom:919.907223px;}
.y71{bottom:920.863765px;}
.y18{bottom:928.736573px;}
.y54{bottom:931.323851px;}
.y111{bottom:933.911133px;}
.yf6{bottom:936.196290px;}
.ydc{bottom:936.498046px;}
.y16c{bottom:937.596673px;}
.ybd{bottom:938.783201px;}
.y36{bottom:939.196654px;}
.y8b{bottom:944.371582px;}
.y70{bottom:951.911133px;}
.y153{bottom:957.196289px;}
.y17{bottom:959.783936px;}
.y53{bottom:962.371214px;}
.y110{bottom:964.958497px;}
.yf5{bottom:967.243653px;}
.ydb{bottom:967.545409px;}
.ybc{bottom:969.831293px;}
.y35{bottom:970.244017px;}
.y6{bottom:971.541873px;}
.ya7{bottom:975.418944px;}
.y6f{bottom:982.958496px;}
.y152{bottom:988.243653px;}
.y16b{bottom:988.804687px;}
.y16{bottom:990.831300px;}
.y52{bottom:993.418578px;}
.y8a{bottom:994.605469px;}
.y10f{bottom:996.005860px;}
.yf4{bottom:998.291017px;}
.yda{bottom:998.592773px;}
.ya6{bottom:1006.466308px;}
.y6e{bottom:1014.005859px;}
.y151{bottom:1019.291016px;}
.y5{bottom:1020.802734px;}
.ybb{bottom:1021.252441px;}
.y15{bottom:1021.878663px;}
.y34{bottom:1022.852050px;}
.y51{bottom:1024.465941px;}
.y10e{bottom:1027.053223px;}
.yd9{bottom:1029.640136px;}
.y6d{bottom:1045.053223px;}
.y150{bottom:1050.338379px;}
.yf3{bottom:1050.899415px;}
.y14{bottom:1052.926026px;}
.y50{bottom:1055.513304px;}
.ya5{bottom:1056.700197px;}
.y10d{bottom:1058.100586px;}
.yd8{bottom:1060.687499px;}
.y4{bottom:1073.197264px;}
.y33{bottom:1076.100586px;}
.y14f{bottom:1081.385743px;}
.y13{bottom:1083.973390px;}
.y4f{bottom:1086.560668px;}
.yd7{bottom:1091.734863px;}
.y32{bottom:1107.147949px;}
.y3{bottom:1114.593748px;}
.y14e{bottom:1133.994140px;}
.y12{bottom:1135.394531px;}
.y4e{bottom:1136.794923px;}
.y31{bottom:1138.195312px;}
.yd6{bottom:1139.595703px;}
.y1{bottom:1155.000000px;}
.h4{height:45.826173px;}
.h2{height:47.437501px;}
.h6{height:52.825197px;}
.h8{height:53.789061px;}
.h5{height:54.158205px;}
.he{height:58.620119px;}
.h7{height:59.167970px;}
.hf{height:63.949219px;}
.hb{height:64.546875px;}
.hd{height:69.278323px;}
.ha{height:74.607419px;}
.hc{height:79.936523px;}
.h3{height:85.265628px;}
.h9{height:107.625000px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:121.651223px;}
.x7{left:162.000000px;}
.x4{left:352.036271px;}
.x3{left:399.153769px;}
.x5{left:446.456700px;}
.x6{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-29.333334pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._15{margin-left:-7.470375pt;}
._6{margin-left:-5.926452pt;}
._2{margin-left:-4.672603pt;}
._1{margin-left:-3.305376pt;}
._0{margin-left:-2.190031pt;}
._e{margin-left:-1.085172pt;}
._3{width:3.934739pt;}
._4{width:4.835588pt;}
._5{width:7.928938pt;}
._d{width:8.884988pt;}
._8{width:11.999997pt;}
._9{width:19.999999pt;}
._a{width:24.000000pt;}
._c{width:28.000014pt;}
._b{width:32.000001pt;}
._f{width:36.000000pt;}
._14{width:75.278122pt;}
._13{width:76.274245pt;}
._12{width:79.737335pt;}
._7{width:95.712448pt;}
._11{width:131.942118pt;}
._10{width:135.872736pt;}
.fs0{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs4{font-size:74.666664pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242839pt;}
.yd5{bottom:52.850267pt;}
.y11{bottom:52.850587pt;}
.y6c{bottom:52.850907pt;}
.ya4{bottom:101.499998pt;}
.y89{bottom:108.201825pt;}
.y4d{bottom:110.529300pt;}
.yd4{bottom:110.627605pt;}
.y6b{bottom:110.797523pt;}
.y30{bottom:115.199869pt;}
.ya3{bottom:129.097654pt;}
.y10{bottom:134.893225pt;}
.y88{bottom:135.799481pt;}
.y13a{bottom:137.830726pt;}
.yd3{bottom:138.225261pt;}
.y6a{bottom:138.395179pt;}
.y2f{bottom:142.797525pt;}
.y127{bottom:142.994794pt;}
.y10c{bottom:145.026034pt;}
.y14d{bottom:147.397140pt;}
.yf2{bottom:149.894528pt;}
.y16a{bottom:152.095056pt;}
.y4c{bottom:154.126955pt;}
.ya2{bottom:156.695310pt;}
.y87{bottom:163.397137pt;}
.y139{bottom:165.428382pt;}
.yd2{bottom:165.822918pt;}
.y2e{bottom:170.395181pt;}
.y126{bottom:170.592451pt;}
.y10b{bottom:172.623691pt;}
.yf{bottom:176.191079pt;}
.yf1{bottom:177.492185pt;}
.y169{bottom:179.692712pt;}
.y4b{bottom:181.724612pt;}
.y69{bottom:183.047856pt;}
.ya1{bottom:184.292967pt;}
.y14c{bottom:190.994782pt;}
.y86{bottom:190.994793pt;}
.y138{bottom:193.026039pt;}
.yd1{bottom:193.420574pt;}
.y2d{bottom:197.992838pt;}
.y125{bottom:198.190107pt;}
.y10a{bottom:200.221347pt;}
.yf0{bottom:205.089841pt;}
.y168{bottom:207.290368pt;}
.y4a{bottom:209.322268pt;}
.ye{bottom:217.488932pt;}
.y14b{bottom:218.592442pt;}
.y137{bottom:220.623695pt;}
.yd0{bottom:221.018230pt;}
.y2c{bottom:225.590494pt;}
.y124{bottom:225.787763pt;}
.y109{bottom:227.819003pt;}
.y68{bottom:227.890289pt;}
.yba{bottom:227.890623pt;}
.ya0{bottom:227.890629pt;}
.yef{bottom:232.687497pt;}
.y85{bottom:234.592446pt;}
.y167{bottom:234.888025pt;}
.y49{bottom:236.919924pt;}
.y14a{bottom:246.190098pt;}
.y136{bottom:248.221351pt;}
.ycf{bottom:248.615887pt;}
.y2b{bottom:253.188150pt;}
.y123{bottom:253.385419pt;}
.y108{bottom:255.416659pt;}
.y67{bottom:255.487949pt;}
.yb9{bottom:255.488283pt;}
.y9f{bottom:255.488285pt;}
.yd{bottom:258.786785pt;}
.yee{bottom:260.285153pt;}
.y84{bottom:262.190106pt;}
.y166{bottom:262.485681pt;}
.y48{bottom:264.517581pt;}
.y149{bottom:273.787754pt;}
.y135{bottom:275.819007pt;}
.y2a{bottom:280.785807pt;}
.y66{bottom:283.085605pt;}
.yb8{bottom:283.085939pt;}
.y9e{bottom:283.085941pt;}
.y83{bottom:289.787756pt;}
.y165{bottom:290.083337pt;}
.yce{bottom:291.158852pt;}
.y122{bottom:296.983073pt;}
.y107{bottom:299.014327pt;}
.yc{bottom:300.084639pt;}
.y17c{bottom:300.653640pt;}
.y148{bottom:301.385411pt;}
.yed{bottom:303.882816pt;}
.y65{bottom:310.683261pt;}
.yb7{bottom:310.683595pt;}
.y9d{bottom:310.683598pt;}
.y47{bottom:311.280272pt;}
.y82{bottom:317.385416pt;}
.y164{bottom:317.680993pt;}
.y134{bottom:322.582032pt;}
.y29{bottom:324.383469pt;}
.y17b{bottom:325.953119pt;}
.y147{bottom:328.983067pt;}
.yec{bottom:331.480472pt;}
.yb{bottom:332.661463pt;}
.ycd{bottom:333.511716pt;}
.y64{bottom:338.280918pt;}
.yb6{bottom:338.281252pt;}
.y9c{bottom:338.281254pt;}
.y121{bottom:340.580722pt;}
.y106{bottom:342.611978pt;}
.y81{bottom:344.983072pt;}
.ya{bottom:347.993492pt;}
.y28{bottom:351.981125pt;}
.y146{bottom:356.580723pt;}
.yeb{bottom:359.078128pt;}
.ycc{bottom:361.109376pt;}
.y163{bottom:361.278648pt;}
.y46{bottom:361.278965pt;}
.y9{bottom:363.325523pt;}
.y63{bottom:365.878574pt;}
.yb5{bottom:365.878908pt;}
.y9b{bottom:365.878910pt;}
.y17a{bottom:367.249999pt;}
.y120{bottom:368.178378pt;}
.y105{bottom:370.209634pt;}
.y133{bottom:372.580726pt;}
.y80{bottom:372.580728pt;}
.y27{bottom:379.578781pt;}
.y145{bottom:384.178380pt;}
.yea{bottom:386.675785pt;}
.ycb{bottom:388.707032pt;}
.y162{bottom:388.876305pt;}
.y45{bottom:388.876621pt;}
.y179{bottom:392.548172pt;}
.y62{bottom:393.476230pt;}
.yb4{bottom:393.476564pt;}
.y9a{bottom:393.476567pt;}
.y8{bottom:394.945968pt;}
.y11f{bottom:395.776034pt;}
.y104{bottom:397.807291pt;}
.y7f{bottom:400.178385pt;}
.y132{bottom:400.178386pt;}
.y26{bottom:407.176438pt;}
.ye9{bottom:414.273441pt;}
.yca{bottom:416.304688pt;}
.y161{bottom:416.473961pt;}
.y44{bottom:416.474278pt;}
.y178{bottom:417.845047pt;}
.y61{bottom:421.073887pt;}
.yb3{bottom:421.074220pt;}
.y11e{bottom:423.373691pt;}
.y103{bottom:425.404947pt;}
.y131{bottom:427.776036pt;}
.y7e{bottom:427.776041pt;}
.y144{bottom:427.776046pt;}
.y25{bottom:434.774094pt;}
.y99{bottom:437.074216pt;}
.ye8{bottom:441.871097pt;}
.y177{bottom:443.143225pt;}
.yc9{bottom:443.902345pt;}
.y160{bottom:444.071617pt;}
.y43{bottom:444.071934pt;}
.y11d{bottom:450.971347pt;}
.y102{bottom:453.002603pt;}
.y130{bottom:455.373696pt;}
.y7d{bottom:455.373697pt;}
.y143{bottom:455.373706pt;}
.y24{bottom:462.371750pt;}
.y60{bottom:464.671549pt;}
.y98{bottom:464.671872pt;}
.yb2{bottom:464.671879pt;}
.ye7{bottom:469.468753pt;}
.yc8{bottom:471.500001pt;}
.y15f{bottom:471.669273pt;}
.y42{bottom:471.669590pt;}
.y11c{bottom:478.569003pt;}
.y101{bottom:480.600260pt;}
.y12f{bottom:482.971352pt;}
.y7c{bottom:482.971353pt;}
.y142{bottom:482.971356pt;}
.y176{bottom:484.440105pt;}
.y23{bottom:489.969407pt;}
.y5f{bottom:492.269205pt;}
.y97{bottom:492.269528pt;}
.yb1{bottom:492.269529pt;}
.yc7{bottom:499.097657pt;}
.y41{bottom:499.267247pt;}
.y11b{bottom:506.166660pt;}
.y12e{bottom:510.569008pt;}
.y141{bottom:510.569016pt;}
.ye6{bottom:512.011065pt;}
.y15e{bottom:515.266928pt;}
.y5e{bottom:519.866861pt;}
.y96{bottom:519.867185pt;}
.yb0{bottom:519.867189pt;}
.y100{bottom:524.197908pt;}
.y175{bottom:525.739585pt;}
.y7b{bottom:526.569006pt;}
.yc6{bottom:526.695313pt;}
.y22{bottom:533.567066pt;}
.y12d{bottom:538.166665pt;}
.y140{bottom:538.166672pt;}
.y15d{bottom:542.864585pt;}
.y40{bottom:542.864912pt;}
.y5d{bottom:547.464518pt;}
.y95{bottom:547.464841pt;}
.yaf{bottom:547.464845pt;}
.y11a{bottom:549.764325pt;}
.yff{bottom:551.795572pt;}
.y7a{bottom:554.166666pt;}
.ye5{bottom:554.363936pt;}
.y21{bottom:561.164716pt;}
.y12c{bottom:565.764321pt;}
.y13f{bottom:565.764328pt;}
.y174{bottom:567.036452pt;}
.yc5{bottom:569.237625pt;}
.y15c{bottom:570.462241pt;}
.y3f{bottom:570.462568pt;}
.y5c{bottom:575.062174pt;}
.y94{bottom:575.062497pt;}
.yae{bottom:575.062501pt;}
.y119{bottom:577.361980pt;}
.yfe{bottom:579.393228pt;}
.y79{bottom:581.764316pt;}
.ye4{bottom:581.961592pt;}
.y20{bottom:588.762376pt;}
.y12b{bottom:593.361977pt;}
.y13e{bottom:593.361985pt;}
.y15b{bottom:598.059897pt;}
.y3e{bottom:598.060225pt;}
.y5b{bottom:602.659830pt;}
.y93{bottom:602.660153pt;}
.yad{bottom:602.660158pt;}
.y118{bottom:604.959637pt;}
.yfd{bottom:606.990877pt;}
.y173{bottom:608.334634pt;}
.y78{bottom:609.361976pt;}
.ye3{bottom:609.559248pt;}
.yc4{bottom:611.590488pt;}
.y1f{bottom:616.360032pt;}
.y12a{bottom:620.959633pt;}
.y13d{bottom:620.959641pt;}
.y15a{bottom:625.657553pt;}
.y3d{bottom:625.657881pt;}
.y5a{bottom:630.257487pt;}
.yac{bottom:630.257814pt;}
.y117{bottom:632.557294pt;}
.y172{bottom:633.632812pt;}
.yfc{bottom:634.588541pt;}
.y77{bottom:636.959632pt;}
.ye2{bottom:637.156905pt;}
.yc3{bottom:639.188145pt;}
.y1e{bottom:643.957688pt;}
.y92{bottom:646.257808pt;}
.y13c{bottom:648.557297pt;}
.y3c{bottom:653.255537pt;}
.yab{bottom:657.855470pt;}
.y116{bottom:660.154950pt;}
.yfb{bottom:662.186846pt;}
.y76{bottom:664.557288pt;}
.ye1{bottom:664.754561pt;}
.yc2{bottom:666.785801pt;}
.y159{bottom:669.255205pt;}
.y1d{bottom:671.555345pt;}
.y59{bottom:673.855141pt;}
.y91{bottom:673.855469pt;}
.y171{bottom:674.929692pt;}
.y13b{bottom:676.154953pt;}
.y3b{bottom:680.853193pt;}
.yaa{bottom:685.453127pt;}
.y115{bottom:687.752606pt;}
.y75{bottom:692.154945pt;}
.y129{bottom:692.154947pt;}
.ye0{bottom:692.352217pt;}
.yc1{bottom:694.383457pt;}
.y158{bottom:696.852861pt;}
.y1c{bottom:699.153001pt;}
.y170{bottom:700.227861pt;}
.y58{bottom:701.452798pt;}
.y90{bottom:701.453124pt;}
.yfa{bottom:705.783860pt;}
.y74{bottom:719.752601pt;}
.y128{bottom:719.752607pt;}
.ydf{bottom:719.949873pt;}
.yc0{bottom:721.981113pt;}
.y157{bottom:724.450518pt;}
.y3a{bottom:724.450845pt;}
.y16f{bottom:725.526039pt;}
.y1b{bottom:726.750657pt;}
.y57{bottom:729.050454pt;}
.y8f{bottom:729.050780pt;}
.y114{bottom:731.350260pt;}
.y73{bottom:747.350257pt;}
.yf9{bottom:749.381511pt;}
.y156{bottom:752.048174pt;}
.y39{bottom:752.048501pt;}
.y1a{bottom:754.348313pt;}
.y56{bottom:756.648110pt;}
.ya9{bottom:756.648436pt;}
.y8e{bottom:756.648438pt;}
.yde{bottom:762.492185pt;}
.ybf{bottom:764.523439pt;}
.y16e{bottom:766.822919pt;}
.y72{bottom:774.947913pt;}
.y113{bottom:774.947917pt;}
.yf8{bottom:776.979167pt;}
.y155{bottom:779.645830pt;}
.y38{bottom:779.646158pt;}
.y55{bottom:784.245767pt;}
.ya8{bottom:784.246092pt;}
.y8d{bottom:784.246094pt;}
.y16d{bottom:792.121092pt;}
.y19{bottom:797.945964pt;}
.y112{bottom:802.545573pt;}
.yf7{bottom:804.576824pt;}
.ydd{bottom:804.845052pt;}
.ybe{bottom:806.876292pt;}
.y154{bottom:807.243487pt;}
.y37{bottom:807.243814pt;}
.y8c{bottom:811.843749pt;}
.y7{bottom:817.695309pt;}
.y71{bottom:818.545569pt;}
.y18{bottom:825.543620pt;}
.y54{bottom:827.843423pt;}
.y111{bottom:830.143229pt;}
.yf6{bottom:832.174480pt;}
.ydc{bottom:832.442708pt;}
.y16c{bottom:833.419265pt;}
.ybd{bottom:834.473956pt;}
.y36{bottom:834.841470pt;}
.y8b{bottom:839.441406pt;}
.y70{bottom:846.143229pt;}
.y153{bottom:850.841146pt;}
.y17{bottom:853.141276pt;}
.y53{bottom:855.441079pt;}
.y110{bottom:857.740886pt;}
.yf5{bottom:859.772136pt;}
.ydb{bottom:860.040364pt;}
.ybc{bottom:862.072261pt;}
.y35{bottom:862.439127pt;}
.y6{bottom:863.592776pt;}
.ya7{bottom:867.039061pt;}
.y6f{bottom:873.740885pt;}
.y152{bottom:878.438803pt;}
.y16b{bottom:878.937500pt;}
.y16{bottom:880.738933pt;}
.y52{bottom:883.038736pt;}
.y8a{bottom:884.093750pt;}
.y10f{bottom:885.338542pt;}
.yf4{bottom:887.369793pt;}
.yda{bottom:887.638021pt;}
.ya6{bottom:894.636718pt;}
.y6e{bottom:901.338541pt;}
.y151{bottom:906.036459pt;}
.y5{bottom:907.380208pt;}
.ybb{bottom:907.779947pt;}
.y15{bottom:908.336589pt;}
.y34{bottom:909.201822pt;}
.y51{bottom:910.636392pt;}
.y10e{bottom:912.936198pt;}
.yd9{bottom:915.235677pt;}
.y6d{bottom:928.936198pt;}
.y150{bottom:933.634115pt;}
.yf3{bottom:934.132813pt;}
.y14{bottom:935.934245pt;}
.y50{bottom:938.234048pt;}
.ya5{bottom:939.289064pt;}
.y10d{bottom:940.533855pt;}
.yd8{bottom:942.833333pt;}
.y4{bottom:953.953124pt;}
.y33{bottom:956.533854pt;}
.y14f{bottom:961.231771pt;}
.y13{bottom:963.531902pt;}
.y4f{bottom:965.831705pt;}
.yd7{bottom:970.430989pt;}
.y32{bottom:984.131510pt;}
.y3{bottom:990.749999pt;}
.y14e{bottom:1007.994791pt;}
.y12{bottom:1009.239583pt;}
.y4e{bottom:1010.484376pt;}
.y31{bottom:1011.729167pt;}
.yd6{bottom:1012.973959pt;}
.y1{bottom:1026.666667pt;}
.h4{height:40.734376pt;}
.h2{height:42.166668pt;}
.h6{height:46.955731pt;}
.h8{height:47.812499pt;}
.h5{height:48.140627pt;}
.he{height:52.106772pt;}
.h7{height:52.593751pt;}
.hf{height:56.843750pt;}
.hb{height:57.375000pt;}
.hd{height:61.580732pt;}
.ha{height:66.317706pt;}
.hc{height:71.054688pt;}
.h3{height:75.791669pt;}
.h9{height:95.666667pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:108.134420pt;}
.x7{left:144.000000pt;}
.x4{left:312.921130pt;}
.x3{left:354.803350pt;}
.x5{left:396.850400pt;}
.x6{left:702.000000pt;}
}




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