
    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_9f85b6c223a93cad57a70e6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_683b1480ffbdbf2a7dadbad8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_7c563ce5b032799fb3d277dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_5dd3d859166de98477899a76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.475000;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_8c020f14d905fbc2b4fef5e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e63fd8f4b6ffcc9e111a9e0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cb250300fc65078703bba77a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0d29507b82ce74fb8e89e0c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3ff3918bd12375f77ae49fa9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107910;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:ffc;src:url('chunks/assets/font_c969845251452fa5e528f400.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.188000;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:ffd;src:url('chunks/assets/font_2aefc72f8b2ded7e4fa39ecf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107910;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:ffe;src:url('chunks/assets/font_413497ee82f39a5ff138188f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878906;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:fff;src:url('chunks/assets/font_fd5e50eaad6c9ec53c0a66db.woff2')format("woff");}.fff{font-family:fff;line-height:1.022949;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:ff10;src:url('chunks/assets/font_98c69b74b5255f012afa4401.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_c9625d0df04c08f86a8f56a1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.997000;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:ff12;src:url('chunks/assets/font_8e7ba2a2cf3645380e8a716b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692383;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:ff13;src:url('chunks/assets/font_7a8bfad13d8a9bc80e722aaf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.954000;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);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,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;}
.v1{vertical-align:3.060518px;}
.v2{vertical-align:9.866068px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000006px;}
.ls8{letter-spacing:0.000012px;}
.ls3{letter-spacing:0.000066px;}
.ls5{letter-spacing:0.000126px;}
.ls9{letter-spacing:0.000132px;}
.ls7{letter-spacing:0.000192px;}
.ls1{letter-spacing:1.651467px;}
.ls6{letter-spacing:3.572166px;}
.lsb{letter-spacing:10.543188px;}
.lsa{letter-spacing:12.719920px;}
.ls2{letter-spacing:19.038201px;}
.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;}
}
.wsb{word-spacing:-38.256000px;}
.ws1f{word-spacing:-38.255400px;}
.ws8{word-spacing:-24.230394px;}
.wsc{word-spacing:-21.538128px;}
.wsa{word-spacing:-21.270336px;}
.ws5{word-spacing:-14.011436px;}
.ws7{word-spacing:-13.437589px;}
.ws1{word-spacing:-12.375441px;}
.ws4{word-spacing:-11.955150px;}
.ws1e{word-spacing:-11.208832px;}
.ws2{word-spacing:-10.759500px;}
.ws1d{word-spacing:-9.563850px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:1.626836px;}
.ws9{word-spacing:6.288409px;}
.wsd{word-spacing:15.842965px;}
.ws3{word-spacing:16.182491px;}
.ws19{word-spacing:371.505840px;}
.ws1b{word-spacing:381.567011px;}
.ws1c{word-spacing:396.716149px;}
.ws1a{word-spacing:418.253939px;}
.ws13{word-spacing:498.946055px;}
.ws12{word-spacing:499.003438px;}
.ws10{word-spacing:521.038548px;}
.ws14{word-spacing:521.317812px;}
.ws15{word-spacing:542.473049px;}
.ws18{word-spacing:542.618419px;}
.ws17{word-spacing:542.733185px;}
.ws16{word-spacing:542.767615px;}
.ws11{word-spacing:542.798220px;}
.wsf{word-spacing:814.384781px;}
.wse{word-spacing:858.416746px;}
._3{margin-left:-17.343592px;}
._11{margin-left:-12.574266px;}
._e{margin-left:-5.308087px;}
._9{margin-left:-4.155610px;}
._a{margin-left:-2.556984px;}
._4{margin-left:-1.278229px;}
._2{width:1.083587px;}
._1{width:2.101974px;}
._0{width:3.340856px;}
._6{width:4.467714px;}
._7{width:5.817628px;}
._5{width:6.967852px;}
._8{width:8.263296px;}
._b{width:10.099814px;}
._10{width:11.567803px;}
._f{width:12.581600px;}
._17{width:15.410778px;}
._14{width:16.804159px;}
._15{width:18.195738px;}
._16{width:19.247792px;}
._d{width:20.256806px;}
._c{width:21.342334px;}
._18{width:22.418297px;}
._1e{width:25.794432px;}
._20{width:27.721602px;}
._13{width:30.193927px;}
._1f{width:32.326726px;}
._12{width:34.492999px;}
._1d{width:407.924981px;}
._1c{width:429.462771px;}
._1b{width:431.222520px;}
._1a{width:510.495360px;}
._19{width:554.481419px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.761800px;}
.fs9{font-size:38.255400px;}
.fse{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.237000px;}
.fsb{font-size:43.038000px;}
.fsc{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.697000px;}
.fsd{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y9c{bottom:78.416181px;}
.y5c{bottom:79.139925px;}
.y5d{bottom:79.140015px;}
.y107{bottom:85.297415px;}
.yf3{bottom:87.174523px;}
.y16f{bottom:90.574433px;}
.y144{bottom:91.934314px;}
.y5b{bottom:93.494940px;}
.y9b{bottom:94.147962px;}
.y4{bottom:97.125005px;}
.y106{bottom:98.222958px;}
.yf2{bottom:102.821424px;}
.y5a{bottom:105.629970px;}
.y16e{bottom:106.306215px;}
.y1a4{bottom:106.390364px;}
.y143{bottom:107.581215px;}
.y9a{bottom:109.794863px;}
.y105{bottom:111.063384px;}
.y1a3{bottom:118.380563px;}
.yf1{bottom:118.554401px;}
.y58{bottom:119.905636px;}
.y16d{bottom:121.953115px;}
.y142{bottom:123.312997px;}
.y104{bottom:123.904765px;}
.y99{bottom:125.526645px;}
.y1a2{bottom:130.285643px;}
.y57{bottom:134.192100px;}
.yf0{bottom:134.201301px;}
.y103{bottom:136.745190px;}
.y16c{bottom:137.686092px;}
.y141{bottom:138.961092px;}
.y22{bottom:139.264499px;}
.y98{bottom:141.174740px;}
.y1a1{bottom:142.275842px;}
.y102{bottom:149.586571px;}
.yef{bottom:149.933083px;}
.y16b{bottom:153.417874px;}
.y1a0{bottom:154.181879px;}
.y140{bottom:154.692874px;}
.y97{bottom:156.906522px;}
.y53{bottom:159.703536px;}
.y101{bottom:162.426996px;}
.yee{bottom:165.579984px;}
.y19f{bottom:166.172077px;}
.y16a{bottom:169.064775px;}
.y13f{bottom:170.339775px;}
.y96{bottom:172.553423px;}
.y52{bottom:174.075000px;}
.y100{bottom:175.267421px;}
.y19e{bottom:178.077158px;}
.yed{bottom:181.312961px;}
.y169{bottom:184.796557px;}
.y13e{bottom:186.071557px;}
.yff{bottom:188.108803px;}
.y95{bottom:188.285205px;}
.y19d{bottom:190.068313px;}
.y1f3{bottom:192.283434px;}
.y19{bottom:196.933500px;}
.yec{bottom:196.959861px;}
.y168{bottom:200.443457px;}
.yfe{bottom:201.034346px;}
.y13d{bottom:201.718457px;}
.y19c{bottom:202.058512px;}
.y94{bottom:203.933300px;}
.y1f2{bottom:204.273633px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yeb{bottom:212.691643px;}
.yfd{bottom:213.874771px;}
.y19b{bottom:213.963592px;}
.y167{bottom:216.176434px;}
.y1f0{bottom:216.264788px;}
.y13c{bottom:217.451434px;}
.y50{bottom:219.574574px;}
.y93{bottom:219.665082px;}
.ybf{bottom:220.090686px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y19a{bottom:225.953791px;}
.yfc{bottom:226.716152px;}
.y1ef{bottom:228.169868px;}
.yea{bottom:228.338544px;}
.y166{bottom:231.823335px;}
.y13b{bottom:233.098335px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y4f{bottom:235.306356px;}
.y92{bottom:235.311983px;}
.ybe{bottom:235.822467px;}
.y199{bottom:237.859828px;}
.yfb{bottom:239.556577px;}
.y1ee{bottom:240.160067px;}
.ye9{bottom:244.071521px;}
.y165{bottom:247.555116px;}
.y13a{bottom:248.830116px;}
.y198{bottom:249.850027px;}
.y4e{bottom:250.953256px;}
.y91{bottom:251.043764px;}
.ybd{bottom:251.469368px;}
.y1ed{bottom:252.065147px;}
.yfa{bottom:252.397959px;}
.ye8{bottom:259.718421px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y197{bottom:261.840225px;}
.y164{bottom:263.202017px;}
.y1ec{bottom:264.056303px;}
.y139{bottom:264.477017px;}
.yf9{bottom:265.238384px;}
.y4d{bottom:266.685038px;}
.y90{bottom:266.691860px;}
.ybc{bottom:267.201150px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y196{bottom:273.745306px;}
.ye7{bottom:275.450203px;}
.y1eb{bottom:276.046501px;}
.yf8{bottom:278.078809px;}
.y163{bottom:278.934994px;}
.y138{bottom:280.209994px;}
.y4c{bottom:282.418016px;}
.y8f{bottom:282.423642px;}
.ybb{bottom:282.848050px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y195{bottom:285.736461px;}
.y1ea{bottom:287.951582px;}
.yf7{bottom:290.920190px;}
.ye6{bottom:291.097104px;}
.y162{bottom:294.581894px;}
.y137{bottom:295.856894px;}
.y194{bottom:297.641541px;}
.y4b{bottom:298.064916px;}
.y8e{bottom:298.070543px;}
.yba{bottom:298.581027px;}
.y1e9{bottom:299.941781px;}
.ye5{bottom:306.830081px;}
.y193{bottom:309.631740px;}
.y161{bottom:310.313676px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf6{bottom:310.648500px;}
.y136{bottom:311.588676px;}
.y1e8{bottom:311.847817px;}
.y4a{bottom:313.796698px;}
.y8d{bottom:313.802324px;}
.yb9{bottom:314.227928px;}
.y192{bottom:321.537777px;}
.ye4{bottom:322.476981px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1e7{bottom:323.838016px;}
.y160{bottom:325.960577px;}
.y135{bottom:327.235577px;}
.y49{bottom:329.443598px;}
.y8c{bottom:329.449225px;}
.yb8{bottom:329.959710px;}
.yf5{bottom:330.378036px;}
.y191{bottom:333.527976px;}
.y1e6{bottom:335.743097px;}
.ye3{bottom:338.208763px;}
.y15f{bottom:341.693554px;}
.y134{bottom:342.968554px;}
.yf4{bottom:344.749500px;}
.y48{bottom:345.176576px;}
.y8b{bottom:345.182202px;}
.y190{bottom:345.518174px;}
.yb7{bottom:345.606610px;}
.y1f1{bottom:346.883069px;}
.y1e5{bottom:347.734252px;}
.y10{bottom:348.133500px;}
.ye2{bottom:353.855663px;}
.y15e{bottom:357.340454px;}
.y18f{bottom:357.423255px;}
.y133{bottom:358.615454px;}
.y1e4{bottom:359.724451px;}
.y47{bottom:360.823476px;}
.y8a{bottom:360.829102px;}
.yb6{bottom:361.339587px;}
.y18e{bottom:369.414410px;}
.ye1{bottom:369.587445px;}
.y1e3{bottom:371.629531px;}
.y15d{bottom:373.072236px;}
.y132{bottom:374.347236px;}
.y46{bottom:376.555258px;}
.y177{bottom:376.560884px;}
.yb5{bottom:377.071369px;}
.y18d{bottom:381.319491px;}
.y1e2{bottom:383.619730px;}
.ye0{bottom:385.320423px;}
.yf{bottom:386.785499px;}
.y15c{bottom:388.719137px;}
.y131{bottom:389.994137px;}
.y45{bottom:392.202158px;}
.y89{bottom:392.207785px;}
.yb4{bottom:392.718270px;}
.yc6{bottom:393.228754px;}
.y18c{bottom:393.309689px;}
.y1e1{bottom:395.525767px;}
.ydf{bottom:400.967323px;}
.y15b{bottom:404.452114px;}
.y18b{bottom:405.299888px;}
.y130{bottom:405.727114px;}
.y1e0{bottom:407.515965px;}
.y44{bottom:407.935136px;}
.y176{bottom:407.940762px;}
.ye{bottom:408.044999px;}
.yb3{bottom:408.450051px;}
.yc5{bottom:408.875655px;}
.yde{bottom:416.699105px;}
.y18a{bottom:417.205925px;}
.y1df{bottom:419.506164px;}
.y15a{bottom:420.099014px;}
.y12f{bottom:421.458896px;}
.y43{bottom:423.582036px;}
.y88{bottom:423.587662px;}
.yb2{bottom:424.098147px;}
.yc4{bottom:424.607437px;}
.y189{bottom:429.196124px;}
.y1de{bottom:431.411245px;}
.ydd{bottom:432.346005px;}
.y159{bottom:435.830796px;}
.y12e{bottom:437.105796px;}
.y42{bottom:439.313818px;}
.y175{bottom:439.319444px;}
.yb1{bottom:439.829929px;}
.yc3{bottom:440.255532px;}
.y188{bottom:441.101204px;}
.y1dd{bottom:443.402400px;}
.ydc{bottom:448.078983px;}
.y158{bottom:451.477697px;}
.y12d{bottom:452.837578px;}
.y187{bottom:453.091403px;}
.y51{bottom:454.960718px;}
.y174{bottom:454.966345px;}
.y1dc{bottom:455.307480px;}
.yb0{bottom:455.476829px;}
.y87{bottom:455.987314px;}
.ydb{bottom:463.725883px;}
.y186{bottom:464.997440px;}
.y157{bottom:467.209478px;}
.y1db{bottom:467.297679px;}
.y12c{bottom:468.484478px;}
.y41{bottom:470.692500px;}
.y173{bottom:470.699322px;}
.yaf{bottom:471.208611px;}
.y86{bottom:471.634215px;}
.y185{bottom:476.987638px;}
.y1da{bottom:479.288834px;}
.yda{bottom:479.457665px;}
.y156{bottom:482.857574px;}
.y12b{bottom:484.217456px;}
.yd{bottom:484.864502px;}
.y172{bottom:486.346222px;}
.yae{bottom:486.856707px;}
.y85{bottom:487.365997px;}
.y184{bottom:488.977837px;}
.y1d9{bottom:491.193915px;}
.yd9{bottom:495.104565px;}
.y155{bottom:498.589356px;}
.y12a{bottom:499.864356px;}
.y183{bottom:500.883874px;}
.yad{bottom:502.588489px;}
.yc{bottom:502.864502px;}
.y84{bottom:503.014092px;}
.y1d8{bottom:503.184113px;}
.yd8{bottom:510.837543px;}
.y182{bottom:512.874073px;}
.y154{bottom:514.236256px;}
.y1d7{bottom:515.089194px;}
.y129{bottom:515.596138px;}
.y171{bottom:517.724904px;}
.yac{bottom:518.235389px;}
.y83{bottom:518.745874px;}
.yb{bottom:520.864502px;}
.y181{bottom:524.779153px;}
.yd7{bottom:526.484443px;}
.y1d6{bottom:527.080349px;}
.y153{bottom:529.968038px;}
.y40{bottom:530.137538px;}
.y128{bottom:531.243038px;}
.yab{bottom:533.967171px;}
.y82{bottom:534.392775px;}
.y180{bottom:536.769352px;}
.ya{bottom:538.864499px;}
.y1d5{bottom:538.985429px;}
.yd6{bottom:542.216225px;}
.y3f{bottom:544.509002px;}
.y152{bottom:545.616134px;}
.y127{bottom:546.976016px;}
.y17f{bottom:548.760507px;}
.yaa{bottom:549.614072px;}
.y81{bottom:550.124557px;}
.y1d4{bottom:550.975628px;}
.y9{bottom:556.864499px;}
.yd5{bottom:557.863125px;}
.y3e{bottom:558.880466px;}
.y17e{bottom:560.665588px;}
.y151{bottom:561.347916px;}
.y126{bottom:562.622916px;}
.y1d3{bottom:562.965827px;}
.ya9{bottom:565.347049px;}
.y80{bottom:565.771457px;}
.y17d{bottom:572.655786px;}
.y3d{bottom:573.251930px;}
.y1d2{bottom:574.871864px;}
.y150{bottom:576.994816px;}
.y125{bottom:578.354698px;}
.ya8{bottom:580.993949px;}
.y7f{bottom:581.504434px;}
.y17c{bottom:584.560867px;}
.y1d1{bottom:586.862062px;}
.y3c{bottom:587.538394px;}
.yd4{bottom:589.243003px;}
.y14f{bottom:592.726598px;}
.y124{bottom:594.001598px;}
.y17b{bottom:596.552022px;}
.ya7{bottom:596.725731px;}
.y7e{bottom:597.151335px;}
.y1d0{bottom:598.767143px;}
.y3b{bottom:601.909859px;}
.y14e{bottom:608.374694px;}
.y17a{bottom:608.542221px;}
.y123{bottom:609.734576px;}
.y1cf{bottom:610.757342px;}
.ya6{bottom:612.372632px;}
.y7d{bottom:612.883116px;}
.y3a{bottom:616.281323px;}
.y179{bottom:620.447301px;}
.yd3{bottom:620.621685px;}
.y1ce{bottom:622.748497px;}
.y14d{bottom:624.106476px;}
.y122{bottom:625.381476px;}
.ya5{bottom:628.105609px;}
.y7c{bottom:628.530017px;}
.y39{bottom:630.567787px;}
.y178{bottom:632.437500px;}
.y1cd{bottom:634.653577px;}
.y14c{bottom:639.753376px;}
.y121{bottom:641.113258px;}
.ya4{bottom:643.752509px;}
.y7b{bottom:644.262994px;}
.y38{bottom:644.939251px;}
.y8{bottom:645.510000px;}
.y1cc{bottom:646.643776px;}
.yd2{bottom:652.001563px;}
.y14b{bottom:655.485158px;}
.y120{bottom:656.760158px;}
.y1cb{bottom:658.549813px;}
.y37{bottom:659.310715px;}
.ya3{bottom:659.484291px;}
.y7a{bottom:659.909894px;}
.y7{bottom:666.771000px;}
.yd1{bottom:667.733345px;}
.y1ca{bottom:670.540012px;}
.y14a{bottom:671.218136px;}
.y11f{bottom:672.493136px;}
.y36{bottom:673.597179px;}
.ya2{bottom:675.131191px;}
.y79{bottom:675.641676px;}
.y1c9{bottom:682.445092px;}
.yd0{bottom:683.380245px;}
.y149{bottom:686.865036px;}
.y35{bottom:687.968643px;}
.y11e{bottom:688.140036px;}
.ya1{bottom:690.864169px;}
.y78{bottom:691.288577px;}
.y1c8{bottom:694.435291px;}
.y30{bottom:695.453225px;}
.ycf{bottom:699.112027px;}
.y34{bottom:702.340108px;}
.y148{bottom:702.596818px;}
.y11d{bottom:703.871818px;}
.y1c7{bottom:706.426446px;}
.ya0{bottom:706.511069px;}
.y77{bottom:707.021554px;}
.y2f{bottom:708.293650px;}
.yce{bottom:714.760123px;}
.y33{bottom:716.711572px;}
.y147{bottom:718.243718px;}
.y1c6{bottom:718.331527px;}
.y11c{bottom:719.518718px;}
.y2e{bottom:721.135032px;}
.y9f{bottom:722.242851px;}
.y76{bottom:722.753336px;}
.y6{bottom:726.298500px;}
.y1c5{bottom:730.321725px;}
.ycd{bottom:730.491905px;}
.y32{bottom:730.998036px;}
.y2d{bottom:733.975457px;}
.y146{bottom:733.975500px;}
.y11b{bottom:735.250500px;}
.y9e{bottom:737.889751px;}
.y75{bottom:738.400236px;}
.y1c4{bottom:742.226806px;}
.y31{bottom:745.369500px;}
.ycc{bottom:746.138805px;}
.y2c{bottom:746.901000px;}
.y3{bottom:752.599495px;}
.y74{bottom:754.132018px;}
.y1c3{bottom:754.217961px;}
.ycb{bottom:761.870587px;}
.y1c2{bottom:766.208160px;}
.y170{bottom:767.565000px;}
.y145{bottom:768.841500px;}
.y9d{bottom:769.269629px;}
.y73{bottom:769.780114px;}
.y2b{bottom:774.624000px;}
.yca{bottom:777.517487px;}
.y1c1{bottom:778.113240px;}
.y72{bottom:785.511896px;}
.y1c0{bottom:790.104395px;}
.yc9{bottom:793.250464px;}
.y71{bottom:801.158796px;}
.y1bf{bottom:802.009476px;}
.yc8{bottom:808.897365px;}
.y1be{bottom:813.999674px;}
.y70{bottom:816.890578px;}
.y2a{bottom:824.116500px;}
.yc7{bottom:824.629147px;}
.y1bd{bottom:825.904755px;}
.y29{bottom:828.369000px;}
.y6f{bottom:832.537478px;}
.y28{bottom:836.958000px;}
.y1bc{bottom:837.895910px;}
.y27{bottom:841.209000px;}
.y6e{bottom:848.270456px;}
.y1bb{bottom:849.886109px;}
.y25{bottom:861.619500px;}
.y1ba{bottom:861.791189px;}
.y6d{bottom:863.917356px;}
.y119{bottom:865.107765px;}
.y26{bottom:868.677000px;}
.y1b9{bottom:873.781388px;}
.y118{bottom:878.034265px;}
.y2{bottom:879.369000px;}
.y6c{bottom:879.649138px;}
.y1b8{bottom:885.687425px;}
.y117{bottom:890.874690px;}
.y6b{bottom:895.296038px;}
.y1b7{bottom:897.677624px;}
.y24{bottom:899.122216px;}
.y116{bottom:903.716071px;}
.y1b6{bottom:909.667822px;}
.y6a{bottom:911.029016px;}
.y115{bottom:916.556496px;}
.y1b5{bottom:921.572903px;}
.y23{bottom:924.973500px;}
.y69{bottom:926.675916px;}
.y114{bottom:929.396921px;}
.y1b4{bottom:933.564058px;}
.y113{bottom:942.238303px;}
.y68{bottom:942.407698px;}
.y1b3{bottom:945.469138px;}
.y112{bottom:955.078728px;}
.y1b2{bottom:957.459337px;}
.y67{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.y111{bottom:967.920109px;}
.y1b1{bottom:969.365374px;}
.y66{bottom:973.787576px;}
.y110{bottom:980.845652px;}
.y1b0{bottom:981.355573px;}
.y65{bottom:989.434476px;}
.y1af{bottom:993.345772px;}
.y10f{bottom:993.686077px;}
.y56{bottom:1003.719000px;}
.y64{bottom:1005.166258px;}
.y1ae{bottom:1005.250852px;}
.y10e{bottom:1006.527459px;}
.y1ad{bottom:1017.242007px;}
.y10d{bottom:1019.367884px;}
.y63{bottom:1020.813158px;}
.y1ac{bottom:1029.147088px;}
.y10c{bottom:1032.208309px;}
.y62{bottom:1036.546136px;}
.y1ab{bottom:1041.137286px;}
.y10b{bottom:1045.049690px;}
.y55{bottom:1045.474500px;}
.y61{bottom:1052.193036px;}
.y1aa{bottom:1053.127485px;}
.y10a{bottom:1064.778000px;}
.y1a9{bottom:1065.033522px;}
.y60{bottom:1067.924818px;}
.y1a8{bottom:1077.023721px;}
.y5f{bottom:1083.571718px;}
.y109{bottom:1084.507536px;}
.y54{bottom:1087.312500px;}
.y1a7{bottom:1088.928801px;}
.y108{bottom:1098.879000px;}
.y5e{bottom:1099.303500px;}
.y1a6{bottom:1100.919000px;}
.y59{bottom:1127.504970px;}
.yc1{bottom:1128.629970px;}
.y1a5{bottom:1128.636817px;}
.y1f4{bottom:1128.640776px;}
.y11a{bottom:1128.641565px;}
.yc0{bottom:1128.642000px;}
.hd{height:23.521113px;}
.h7{height:32.130000px;}
.he{height:33.622910px;}
.h14{height:33.623438px;}
.h13{height:34.478653px;}
.h15{height:36.568337px;}
.hf{height:36.775371px;}
.h16{height:37.027641px;}
.hc{height:37.122363px;}
.h10{height:37.826367px;}
.h11{height:42.029824px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hb{height:55.689609px;}
.ha{height:70.925098px;}
.h12{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:56.381100px;}
.xb{left:62.758950px;}
.x10{left:63.949500px;}
.x29{left:72.792667px;}
.xd{left:74.323389px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:108.000000px;}
.x1b{left:116.929050px;}
.x22{left:143.035491px;}
.x25{left:153.410356px;}
.x1f{left:160.042886px;}
.x23{left:176.370291px;}
.x15{left:183.810000px;}
.x21{left:187.765618px;}
.x20{left:189.380952px;}
.x24{left:194.483266px;}
.x1d{left:198.225601px;}
.x2a{left:200.946344px;}
.x4{left:203.484001px;}
.x1c{left:207.919519px;}
.x1e{left:211.746015px;}
.x16{left:220.589867px;}
.x6{left:233.518500px;}
.x7{left:240.066000px;}
.x12{left:242.022000px;}
.x27{left:262.941000px;}
.x28{left:271.870500px;}
.x14{left:293.385000px;}
.xc{left:302.995500px;}
.x13{left:310.138500px;}
.x11{left:342.624000px;}
.x8{left:347.130000px;}
.x9{left:353.679000px;}
.x19{left:438.930000px;}
.xa{left:439.993500px;}
.x3{left:454.959000px;}
.xe{left:459.888932px;}
.x26{left:468.907500px;}
.xf{left:477.831221px;}
.x2b{left:488.971250px;}
.x18{left:577.755015px;}
.x2c{left:597.990533px;}
.x17{left:620.526696px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.v2{vertical-align:8.769838pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000005pt;}
.ls8{letter-spacing:0.000011pt;}
.ls3{letter-spacing:0.000059pt;}
.ls5{letter-spacing:0.000112pt;}
.ls9{letter-spacing:0.000117pt;}
.ls7{letter-spacing:0.000171pt;}
.ls1{letter-spacing:1.467970pt;}
.ls6{letter-spacing:3.175259pt;}
.lsb{letter-spacing:9.371723pt;}
.lsa{letter-spacing:11.306596pt;}
.ls2{letter-spacing:16.922845pt;}
.wsb{word-spacing:-34.005333pt;}
.ws1f{word-spacing:-34.004800pt;}
.ws8{word-spacing:-21.538128pt;}
.wsc{word-spacing:-19.145003pt;}
.wsa{word-spacing:-18.906965pt;}
.ws5{word-spacing:-12.454610pt;}
.ws7{word-spacing:-11.944523pt;}
.ws1{word-spacing:-11.000392pt;}
.ws4{word-spacing:-10.626800pt;}
.ws1e{word-spacing:-9.963406pt;}
.ws2{word-spacing:-9.564000pt;}
.ws1d{word-spacing:-8.501200pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:1.446077pt;}
.ws9{word-spacing:5.589697pt;}
.wsd{word-spacing:14.082635pt;}
.ws3{word-spacing:14.384436pt;}
.ws19{word-spacing:330.227414pt;}
.ws1b{word-spacing:339.170676pt;}
.ws1c{word-spacing:352.636577pt;}
.ws1a{word-spacing:371.781279pt;}
.ws13{word-spacing:443.507604pt;}
.ws12{word-spacing:443.558611pt;}
.ws10{word-spacing:463.145376pt;}
.ws14{word-spacing:463.393611pt;}
.ws15{word-spacing:482.198265pt;}
.ws18{word-spacing:482.327484pt;}
.ws17{word-spacing:482.429498pt;}
.ws16{word-spacing:482.460102pt;}
.ws11{word-spacing:482.487306pt;}
.wsf{word-spacing:723.897583pt;}
.wse{word-spacing:763.037108pt;}
._3{margin-left:-15.416526pt;}
._11{margin-left:-11.177125pt;}
._e{margin-left:-4.718299pt;}
._9{margin-left:-3.693876pt;}
._a{margin-left:-2.272874pt;}
._4{margin-left:-1.136203pt;}
._2{width:0.963188pt;}
._1{width:1.868422pt;}
._0{width:2.969650pt;}
._6{width:3.971302pt;}
._7{width:5.171225pt;}
._5{width:6.193646pt;}
._8{width:7.345152pt;}
._b{width:8.977613pt;}
._10{width:10.282492pt;}
._f{width:11.183644pt;}
._17{width:13.698469pt;}
._14{width:14.937030pt;}
._15{width:16.173990pt;}
._16{width:17.109148pt;}
._d{width:18.006050pt;}
._c{width:18.970963pt;}
._18{width:19.927375pt;}
._1e{width:22.928384pt;}
._20{width:24.641424pt;}
._13{width:26.839046pt;}
._1f{width:28.734867pt;}
._12{width:30.660443pt;}
._1d{width:362.599983pt;}
._1c{width:381.744686pt;}
._1b{width:383.308907pt;}
._1a{width:453.773653pt;}
._19{width:492.872372pt;}
.fs8{font-size:23.788267pt;}
.fs9{font-size:34.004800pt;}
.fse{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.544000pt;}
.fsb{font-size:38.256000pt;}
.fsc{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.730667pt;}
.fsd{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y9c{bottom:69.703272pt;}
.y5c{bottom:70.346600pt;}
.y5d{bottom:70.346680pt;}
.y107{bottom:75.819925pt;}
.yf3{bottom:77.488465pt;}
.y16f{bottom:80.510607pt;}
.y144{bottom:81.719391pt;}
.y5b{bottom:83.106613pt;}
.y9b{bottom:83.687078pt;}
.y4{bottom:86.333337pt;}
.y106{bottom:87.309296pt;}
.yf2{bottom:91.396821pt;}
.y5a{bottom:93.893307pt;}
.y16e{bottom:94.494413pt;}
.y1a4{bottom:94.569212pt;}
.y143{bottom:95.627746pt;}
.y9a{bottom:97.595434pt;}
.y105{bottom:98.723008pt;}
.y1a3{bottom:105.227167pt;}
.yf1{bottom:105.381690pt;}
.y58{bottom:106.582787pt;}
.y16d{bottom:108.402769pt;}
.y142{bottom:109.611553pt;}
.y104{bottom:110.137569pt;}
.y99{bottom:111.579240pt;}
.y1a2{bottom:115.809460pt;}
.y57{bottom:119.281867pt;}
.yf0{bottom:119.290046pt;}
.y103{bottom:121.551280pt;}
.y16c{bottom:122.387638pt;}
.y141{bottom:123.520971pt;}
.y22{bottom:123.790666pt;}
.y98{bottom:125.488658pt;}
.y1a1{bottom:126.467415pt;}
.y102{bottom:132.965841pt;}
.yef{bottom:133.273852pt;}
.y16b{bottom:136.371444pt;}
.y1a0{bottom:137.050559pt;}
.y140{bottom:137.504777pt;}
.y97{bottom:139.472464pt;}
.y53{bottom:141.958699pt;}
.y101{bottom:144.379552pt;}
.yee{bottom:147.182208pt;}
.y19f{bottom:147.708513pt;}
.y16a{bottom:150.279800pt;}
.y13f{bottom:151.413133pt;}
.y96{bottom:153.380820pt;}
.y52{bottom:154.733333pt;}
.y100{bottom:155.793263pt;}
.y19e{bottom:158.290807pt;}
.yed{bottom:161.167077pt;}
.y169{bottom:164.263606pt;}
.y13e{bottom:165.396939pt;}
.yff{bottom:167.207825pt;}
.y95{bottom:167.364626pt;}
.y19d{bottom:168.949612pt;}
.y1f3{bottom:170.918608pt;}
.y19{bottom:175.052000pt;}
.yec{bottom:175.075432pt;}
.y168{bottom:178.171962pt;}
.yfe{bottom:178.697196pt;}
.y13d{bottom:179.305295pt;}
.y19c{bottom:179.607566pt;}
.y94{bottom:181.274045pt;}
.y1f2{bottom:181.576562pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yeb{bottom:189.059238pt;}
.yfd{bottom:190.110908pt;}
.y19b{bottom:190.189860pt;}
.y167{bottom:192.156830pt;}
.y1f0{bottom:192.235367pt;}
.y13c{bottom:193.290164pt;}
.y50{bottom:195.177399pt;}
.y93{bottom:195.257851pt;}
.ybf{bottom:195.636165pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y19a{bottom:200.847814pt;}
.yfc{bottom:201.525469pt;}
.y1ef{bottom:202.817661pt;}
.yea{bottom:202.967594pt;}
.y166{bottom:206.065186pt;}
.y13b{bottom:207.198520pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y4f{bottom:209.161205pt;}
.y92{bottom:209.166207pt;}
.ybe{bottom:209.619971pt;}
.y199{bottom:211.430958pt;}
.yfb{bottom:212.939180pt;}
.y1ee{bottom:213.475615pt;}
.ye9{bottom:216.952463pt;}
.y165{bottom:220.048992pt;}
.y13a{bottom:221.182326pt;}
.y198{bottom:222.088912pt;}
.y4e{bottom:223.069561pt;}
.y91{bottom:223.150013pt;}
.ybd{bottom:223.528327pt;}
.y1ed{bottom:224.057909pt;}
.yfa{bottom:224.353741pt;}
.ye8{bottom:230.860819pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y197{bottom:232.746867pt;}
.y164{bottom:233.957348pt;}
.y1ec{bottom:234.716713pt;}
.y139{bottom:235.090682pt;}
.yf9{bottom:235.767452pt;}
.y4d{bottom:237.053367pt;}
.y90{bottom:237.059431pt;}
.ybc{bottom:237.512133pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y196{bottom:243.329161pt;}
.ye7{bottom:244.844625pt;}
.y1eb{bottom:245.374668pt;}
.yf8{bottom:247.181163pt;}
.y163{bottom:247.942217pt;}
.y138{bottom:249.075550pt;}
.y4c{bottom:251.038236pt;}
.y8f{bottom:251.043238pt;}
.ybb{bottom:251.420489pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y195{bottom:253.987965pt;}
.y1ea{bottom:255.956962pt;}
.yf7{bottom:258.595725pt;}
.ye6{bottom:258.752981pt;}
.y162{bottom:261.850573pt;}
.y137{bottom:262.983906pt;}
.y194{bottom:264.570259pt;}
.y4b{bottom:264.946592pt;}
.y8e{bottom:264.951593pt;}
.yba{bottom:265.405358pt;}
.y1e9{bottom:266.614916pt;}
.ye5{bottom:272.737850pt;}
.y193{bottom:275.228213pt;}
.y161{bottom:275.834379pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf6{bottom:276.132000pt;}
.y136{bottom:276.967712pt;}
.y1e8{bottom:277.198060pt;}
.y4a{bottom:278.930398pt;}
.y8d{bottom:278.935399pt;}
.yb9{bottom:279.313714pt;}
.y192{bottom:285.811357pt;}
.ye4{bottom:286.646206pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1e7{bottom:287.856014pt;}
.y160{bottom:289.742735pt;}
.y135{bottom:290.876068pt;}
.y49{bottom:292.838754pt;}
.y8c{bottom:292.843755pt;}
.yb8{bottom:293.297520pt;}
.yf5{bottom:293.669365pt;}
.y191{bottom:296.469312pt;}
.y1e6{bottom:298.438308pt;}
.ye3{bottom:300.630012pt;}
.y15f{bottom:303.727604pt;}
.y134{bottom:304.860937pt;}
.yf4{bottom:306.444000pt;}
.y48{bottom:306.823623pt;}
.y8b{bottom:306.828624pt;}
.y190{bottom:307.127266pt;}
.yb7{bottom:307.205876pt;}
.y1f1{bottom:308.340506pt;}
.y1e5{bottom:309.097113pt;}
.y10{bottom:309.452000pt;}
.ye2{bottom:314.538368pt;}
.y15e{bottom:317.635959pt;}
.y18f{bottom:317.709560pt;}
.y133{bottom:318.769293pt;}
.y1e4{bottom:319.755067pt;}
.y47{bottom:320.731979pt;}
.y8a{bottom:320.736980pt;}
.yb6{bottom:321.190744pt;}
.y18e{bottom:328.368365pt;}
.ye1{bottom:328.522174pt;}
.y1e3{bottom:330.337361pt;}
.y15d{bottom:331.619766pt;}
.y132{bottom:332.753099pt;}
.y46{bottom:334.715785pt;}
.y177{bottom:334.720786pt;}
.yb5{bottom:335.174550pt;}
.y18d{bottom:338.950658pt;}
.y1e2{bottom:340.995315pt;}
.ye0{bottom:342.507042pt;}
.yf{bottom:343.809333pt;}
.y15c{bottom:345.528121pt;}
.y131{bottom:346.661455pt;}
.y45{bottom:348.624141pt;}
.y89{bottom:348.629142pt;}
.yb4{bottom:349.082906pt;}
.yc6{bottom:349.536671pt;}
.y18c{bottom:349.608613pt;}
.y1e1{bottom:351.578459pt;}
.ydf{bottom:356.415398pt;}
.y15b{bottom:359.512990pt;}
.y18b{bottom:360.266567pt;}
.y130{bottom:360.646324pt;}
.y1e0{bottom:362.236414pt;}
.y44{bottom:362.609009pt;}
.y176{bottom:362.614011pt;}
.ye{bottom:362.706666pt;}
.yb3{bottom:363.066712pt;}
.yc5{bottom:363.445026pt;}
.yde{bottom:370.399204pt;}
.y18a{bottom:370.849711pt;}
.y1df{bottom:372.894368pt;}
.y15a{bottom:373.421346pt;}
.y12f{bottom:374.630130pt;}
.y43{bottom:376.517365pt;}
.y88{bottom:376.522367pt;}
.yb2{bottom:376.976131pt;}
.yc4{bottom:377.428833pt;}
.y189{bottom:381.507665pt;}
.y1de{bottom:383.476662pt;}
.ydd{bottom:384.307560pt;}
.y159{bottom:387.405152pt;}
.y12e{bottom:388.538486pt;}
.y42{bottom:390.501171pt;}
.y175{bottom:390.506173pt;}
.yb1{bottom:390.959937pt;}
.yc3{bottom:391.338251pt;}
.y188{bottom:392.089959pt;}
.y1dd{bottom:394.135466pt;}
.ydc{bottom:398.292429pt;}
.y158{bottom:401.313508pt;}
.y12d{bottom:402.522292pt;}
.y187{bottom:402.747914pt;}
.y51{bottom:404.409527pt;}
.y174{bottom:404.414529pt;}
.y1dc{bottom:404.717760pt;}
.yb0{bottom:404.868293pt;}
.y87{bottom:405.322057pt;}
.ydb{bottom:412.200785pt;}
.y186{bottom:413.331058pt;}
.y157{bottom:415.297314pt;}
.y1db{bottom:415.375715pt;}
.y12c{bottom:416.430647pt;}
.y41{bottom:418.393333pt;}
.y173{bottom:418.399397pt;}
.yaf{bottom:418.852099pt;}
.y86{bottom:419.230413pt;}
.y185{bottom:423.989012pt;}
.y1da{bottom:426.034519pt;}
.yda{bottom:426.184591pt;}
.y156{bottom:429.206733pt;}
.y12b{bottom:430.415516pt;}
.yd{bottom:430.990669pt;}
.y172{bottom:432.307753pt;}
.yae{bottom:432.761518pt;}
.y85{bottom:433.214219pt;}
.y184{bottom:434.646966pt;}
.y1d9{bottom:436.616813pt;}
.yd9{bottom:440.092947pt;}
.y155{bottom:443.190539pt;}
.y12a{bottom:444.323872pt;}
.y183{bottom:445.230110pt;}
.yad{bottom:446.745324pt;}
.yc{bottom:446.990669pt;}
.y84{bottom:447.123638pt;}
.y1d8{bottom:447.274767pt;}
.yd8{bottom:454.077816pt;}
.y182{bottom:455.888065pt;}
.y154{bottom:457.098895pt;}
.y1d7{bottom:457.857061pt;}
.y129{bottom:458.307678pt;}
.y171{bottom:460.199915pt;}
.yac{bottom:460.653679pt;}
.y83{bottom:461.107444pt;}
.yb{bottom:462.990669pt;}
.y181{bottom:466.470359pt;}
.yd7{bottom:467.986171pt;}
.y1d6{bottom:468.515866pt;}
.y153{bottom:471.082701pt;}
.y40{bottom:471.233367pt;}
.y128{bottom:472.216034pt;}
.yab{bottom:474.637486pt;}
.y82{bottom:475.015800pt;}
.y180{bottom:477.128313pt;}
.ya{bottom:478.990666pt;}
.y1d5{bottom:479.098159pt;}
.yd6{bottom:481.969978pt;}
.y3f{bottom:484.008002pt;}
.y152{bottom:484.992119pt;}
.y127{bottom:486.200903pt;}
.y17f{bottom:487.787118pt;}
.yaa{bottom:488.545841pt;}
.y81{bottom:488.999606pt;}
.y1d4{bottom:489.756114pt;}
.y9{bottom:494.990666pt;}
.yd5{bottom:495.878333pt;}
.y3e{bottom:496.782637pt;}
.y17e{bottom:498.369411pt;}
.y151{bottom:498.975925pt;}
.y126{bottom:500.109259pt;}
.y1d3{bottom:500.414068pt;}
.ya9{bottom:502.530710pt;}
.y80{bottom:502.907962pt;}
.y17d{bottom:509.027366pt;}
.y3d{bottom:509.557271pt;}
.y1d2{bottom:510.997212pt;}
.y150{bottom:512.884281pt;}
.y125{bottom:514.093065pt;}
.ya8{bottom:516.439066pt;}
.y7f{bottom:516.892830pt;}
.y17c{bottom:519.609659pt;}
.y1d1{bottom:521.655167pt;}
.y3c{bottom:522.256351pt;}
.yd4{bottom:523.771558pt;}
.y14f{bottom:526.868087pt;}
.y124{bottom:528.001421pt;}
.y17b{bottom:530.268464pt;}
.ya7{bottom:530.422872pt;}
.y7e{bottom:530.801186pt;}
.y1d0{bottom:532.237460pt;}
.y3b{bottom:535.030985pt;}
.y14e{bottom:540.777506pt;}
.y17a{bottom:540.926418pt;}
.y123{bottom:541.986289pt;}
.y1cf{bottom:542.895415pt;}
.ya6{bottom:544.331228pt;}
.y7d{bottom:544.784992pt;}
.y3a{bottom:547.805620pt;}
.y179{bottom:551.508712pt;}
.yd3{bottom:551.663720pt;}
.y1ce{bottom:553.554219pt;}
.y14d{bottom:554.761312pt;}
.y122{bottom:555.894645pt;}
.ya5{bottom:558.316097pt;}
.y7c{bottom:558.693348pt;}
.y39{bottom:560.504699pt;}
.y178{bottom:562.166667pt;}
.y1cd{bottom:564.136513pt;}
.y14c{bottom:568.669668pt;}
.y121{bottom:569.878451pt;}
.ya4{bottom:572.224453pt;}
.y7b{bottom:572.678217pt;}
.y38{bottom:573.279334pt;}
.y8{bottom:573.786667pt;}
.y1cc{bottom:574.794468pt;}
.yd2{bottom:579.556945pt;}
.y14b{bottom:582.653474pt;}
.y120{bottom:583.786807pt;}
.y1cb{bottom:585.377612pt;}
.y37{bottom:586.053969pt;}
.ya3{bottom:586.208259pt;}
.y7a{bottom:586.586573pt;}
.y7{bottom:592.685334pt;}
.yd1{bottom:593.540751pt;}
.y1ca{bottom:596.035566pt;}
.y14a{bottom:596.638343pt;}
.y11f{bottom:597.771676pt;}
.y36{bottom:598.753048pt;}
.ya2{bottom:600.116615pt;}
.y79{bottom:600.570379pt;}
.y1c9{bottom:606.617860pt;}
.yd0{bottom:607.449107pt;}
.y149{bottom:610.546699pt;}
.y35{bottom:611.527683pt;}
.y11e{bottom:611.680032pt;}
.ya1{bottom:614.101483pt;}
.y78{bottom:614.478735pt;}
.y1c8{bottom:617.275814pt;}
.y30{bottom:618.180645pt;}
.ycf{bottom:621.432913pt;}
.y34{bottom:624.302318pt;}
.y148{bottom:624.530505pt;}
.y11d{bottom:625.663838pt;}
.y1c7{bottom:627.934619pt;}
.ya0{bottom:628.009839pt;}
.y77{bottom:628.463604pt;}
.y2f{bottom:629.594356pt;}
.yce{bottom:635.342331pt;}
.y33{bottom:637.076953pt;}
.y147{bottom:638.438861pt;}
.y1c6{bottom:638.516912pt;}
.y11c{bottom:639.572194pt;}
.y2e{bottom:641.008917pt;}
.y9f{bottom:641.993645pt;}
.y76{bottom:642.447410pt;}
.y6{bottom:645.598667pt;}
.y1c5{bottom:649.174867pt;}
.ycd{bottom:649.326137pt;}
.y32{bottom:649.776032pt;}
.y2d{bottom:652.422628pt;}
.y146{bottom:652.422667pt;}
.y11b{bottom:653.556000pt;}
.y9e{bottom:655.902001pt;}
.y75{bottom:656.355766pt;}
.y1c4{bottom:659.757161pt;}
.y31{bottom:662.550667pt;}
.ycc{bottom:663.234493pt;}
.y2c{bottom:663.912000pt;}
.y3{bottom:668.977329pt;}
.y74{bottom:670.339572pt;}
.y1c3{bottom:670.415965pt;}
.ycb{bottom:677.218299pt;}
.y1c2{bottom:681.073920pt;}
.y170{bottom:682.280000pt;}
.y145{bottom:683.414667pt;}
.y9d{bottom:683.795226pt;}
.y73{bottom:684.248990pt;}
.y2b{bottom:688.554667pt;}
.yca{bottom:691.126655pt;}
.y1c1{bottom:691.656213pt;}
.y72{bottom:698.232796pt;}
.y1c0{bottom:702.315018pt;}
.yc9{bottom:705.111524pt;}
.y71{bottom:712.141152pt;}
.y1bf{bottom:712.897312pt;}
.yc8{bottom:719.019880pt;}
.y1be{bottom:723.555266pt;}
.y70{bottom:726.124958pt;}
.y2a{bottom:732.548000pt;}
.yc7{bottom:733.003686pt;}
.y1bd{bottom:734.137560pt;}
.y29{bottom:736.328000pt;}
.y6f{bottom:740.033314pt;}
.y28{bottom:743.962667pt;}
.y1bc{bottom:744.796365pt;}
.y27{bottom:747.741333pt;}
.y6e{bottom:754.018183pt;}
.y1bb{bottom:755.454319pt;}
.y25{bottom:765.884000pt;}
.y1ba{bottom:766.036613pt;}
.y6d{bottom:767.926539pt;}
.y119{bottom:768.984680pt;}
.y26{bottom:772.157333pt;}
.y1b9{bottom:776.694567pt;}
.y118{bottom:780.474902pt;}
.y2{bottom:781.661334pt;}
.y6c{bottom:781.910345pt;}
.y1b8{bottom:787.277711pt;}
.y117{bottom:791.888613pt;}
.y6b{bottom:795.818701pt;}
.y1b7{bottom:797.935665pt;}
.y24{bottom:799.219748pt;}
.y116{bottom:803.303174pt;}
.y1b6{bottom:808.593620pt;}
.y6a{bottom:809.803570pt;}
.y115{bottom:814.716886pt;}
.y1b5{bottom:819.175914pt;}
.y23{bottom:822.198667pt;}
.y69{bottom:823.711925pt;}
.y114{bottom:826.130597pt;}
.y1b4{bottom:829.834718pt;}
.y113{bottom:837.545158pt;}
.y68{bottom:837.695732pt;}
.y1b3{bottom:840.417012pt;}
.y112{bottom:848.958869pt;}
.y1b2{bottom:851.074966pt;}
.y67{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.y111{bottom:860.373430pt;}
.y1b1{bottom:861.658110pt;}
.y66{bottom:865.588956pt;}
.y110{bottom:871.862802pt;}
.y1b0{bottom:872.316065pt;}
.y65{bottom:879.497312pt;}
.y1af{bottom:882.974019pt;}
.y10f{bottom:883.276513pt;}
.y56{bottom:892.194667pt;}
.y64{bottom:893.481118pt;}
.y1ae{bottom:893.556313pt;}
.y10e{bottom:894.691074pt;}
.y1ad{bottom:904.215118pt;}
.y10d{bottom:906.104786pt;}
.y63{bottom:907.389474pt;}
.y1ac{bottom:914.797411pt;}
.y10c{bottom:917.518497pt;}
.y62{bottom:921.374343pt;}
.y1ab{bottom:925.455366pt;}
.y10b{bottom:928.933058pt;}
.y55{bottom:929.310667pt;}
.y61{bottom:935.282699pt;}
.y1aa{bottom:936.113320pt;}
.y10a{bottom:946.469333pt;}
.y1a9{bottom:946.696464pt;}
.y60{bottom:949.266505pt;}
.y1a8{bottom:957.354418pt;}
.y5f{bottom:963.174861pt;}
.y109{bottom:964.006699pt;}
.y54{bottom:966.500000pt;}
.y1a7{bottom:967.936712pt;}
.y108{bottom:976.781333pt;}
.y5e{bottom:977.158667pt;}
.y1a6{bottom:978.594667pt;}
.y59{bottom:1002.226640pt;}
.yc1{bottom:1003.226640pt;}
.y1a5{bottom:1003.232726pt;}
.y1f4{bottom:1003.236245pt;}
.y11a{bottom:1003.236946pt;}
.yc0{bottom:1003.237333pt;}
.hd{height:20.907656pt;}
.h7{height:28.560000pt;}
.he{height:29.887031pt;}
.h14{height:29.887500pt;}
.h13{height:30.647691pt;}
.h15{height:32.505188pt;}
.hf{height:32.689219pt;}
.h16{height:32.913458pt;}
.hc{height:32.997656pt;}
.h10{height:33.623437pt;}
.h11{height:37.359844pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hb{height:49.501875pt;}
.ha{height:63.044531pt;}
.h12{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:50.116533pt;}
.xb{left:55.785733pt;}
.x10{left:56.844000pt;}
.x29{left:64.704593pt;}
.xd{left:66.065235pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:96.000000pt;}
.x1b{left:103.936933pt;}
.x22{left:127.142659pt;}
.x25{left:136.364761pt;}
.x1f{left:142.260343pt;}
.x23{left:156.773592pt;}
.x15{left:163.386667pt;}
.x21{left:166.902771pt;}
.x20{left:168.338624pt;}
.x24{left:172.874014pt;}
.x1d{left:176.200534pt;}
.x2a{left:178.618972pt;}
.x4{left:180.874667pt;}
.x1c{left:184.817350pt;}
.x1e{left:188.218680pt;}
.x16{left:196.079882pt;}
.x6{left:207.572000pt;}
.x7{left:213.392000pt;}
.x12{left:215.130667pt;}
.x27{left:233.725333pt;}
.x28{left:241.662667pt;}
.x14{left:260.786667pt;}
.xc{left:269.329333pt;}
.x13{left:275.678667pt;}
.x11{left:304.554667pt;}
.x8{left:308.560000pt;}
.x9{left:314.381333pt;}
.x19{left:390.160000pt;}
.xa{left:391.105333pt;}
.x3{left:404.408000pt;}
.xe{left:408.790162pt;}
.x26{left:416.806667pt;}
.xf{left:424.738863pt;}
.x2b{left:434.641111pt;}
.x18{left:513.560013pt;}
.x2c{left:531.547140pt;}
.x17{left:551.579285pt;}
}




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