
    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_c35b5a65f1205ded21bd42cb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_fdc5d694d774d5d08ed71496.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_c4b578e0e15519ce6e2316ea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_abdce69cc731aac92c029262.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ba01e9340b5b2d0b2f374377.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_50b81166664e0b40e001678a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948000;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_722136d2181dee3d4c474070.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_3de2b49a422fbc059b00028b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls1{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.018012px;}
.ls7{letter-spacing:0.018018px;}
.ls5{letter-spacing:0.288009px;}
.ls6{letter-spacing:0.336010px;}
.lsa{letter-spacing:0.872130px;}
.ls9{letter-spacing:0.923432px;}
.ls3{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls2{letter-spacing:933.569000px;}
.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;}
}
.wsd{word-spacing:-51.301758px;}
.ws1{word-spacing:-27.632329px;}
.ws2{word-spacing:-21.129671px;}
.ws6{word-spacing:-14.958000px;}
.wsb{word-spacing:-14.210587px;}
.wsa{word-spacing:-13.344407px;}
.ws9{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:-10.508889px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:101.474877px;}
.ws7{word-spacing:282.524152px;}
.ws3{word-spacing:325.512000px;}
.ws8{word-spacing:893.247770px;}
._1f{margin-left:-9.234277px;}
._26{margin-left:-8.000996px;}
._6{margin-left:-6.948730px;}
._20{margin-left:-5.376164px;}
._3{margin-left:-4.039277px;}
._4{margin-left:-2.111440px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.653873px;}
._b{width:4.782458px;}
._c{width:5.831380px;}
._e{width:7.355329px;}
._d{width:9.072369px;}
._11{width:10.119129px;}
._f{width:11.286079px;}
._14{width:12.401978px;}
._10{width:13.434288px;}
._9{width:16.728288px;}
._8{width:18.257440px;}
._a{width:19.669188px;}
._13{width:21.418581px;}
._22{width:23.296530px;}
._12{width:25.107319px;}
._15{width:30.363773px;}
._21{width:33.498853px;}
._24{width:34.981874px;}
._5{width:46.002838px;}
._18{width:56.247553px;}
._1d{width:90.235883px;}
._25{width:115.685464px;}
._1c{width:211.852129px;}
._23{width:238.965547px;}
._16{width:265.965547px;}
._1e{width:272.425532px;}
._19{width:303.030951px;}
._17{width:357.881039px;}
._1b{width:369.755111px;}
._1a{width:372.107029px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y242{bottom:4.528032px;}
.y1e5{bottom:4.528218px;}
.y241{bottom:22.481155px;}
.y1e4{bottom:22.481329px;}
.y214{bottom:22.482044px;}
.y240{bottom:40.434282px;}
.y1e3{bottom:40.440318px;}
.y213{bottom:40.441032px;}
.y24{bottom:46.734370px;}
.y23f{bottom:58.393262px;}
.y1e2{bottom:58.393445px;}
.y212{bottom:58.394157px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.y23e{bottom:76.346389px;}
.y1e1{bottom:76.346572px;}
.y211{bottom:76.347278px;}
.y11d{bottom:81.897000px;}
.y25{bottom:82.032000px;}
.y9c{bottom:85.383000px;}
.y118{bottom:85.517562px;}
.y195{bottom:86.531212px;}
.y4d{bottom:86.800766px;}
.y14e{bottom:87.165000px;}
.y1b6{bottom:89.983500px;}
.yae{bottom:90.146463px;}
.y1e6{bottom:91.078500px;}
.y172{bottom:91.927713px;}
.yff{bottom:92.226477px;}
.y111{bottom:93.234365px;}
.y23d{bottom:94.299516px;}
.y1e0{bottom:94.305560px;}
.y244{bottom:94.305562px;}
.y210{bottom:94.306266px;}
.y146{bottom:95.613276px;}
.y97{bottom:100.699213px;}
.y117{bottom:104.419911px;}
.y194{bottom:105.427702px;}
.y13f{bottom:105.568343px;}
.y4c{bottom:105.703115px;}
.y196{bottom:108.399000px;}
.yad{bottom:109.048812px;}
.y171{bottom:110.830062px;}
.yfe{bottom:111.128826px;}
.y110{bottom:112.136713px;}
.y23c{bottom:112.252641px;}
.y1df{bottom:112.258687px;}
.y20f{bottom:112.259387px;}
.y1b5{bottom:112.927734px;}
.y145{bottom:114.515615px;}
.y96{bottom:119.595703px;}
.y116{bottom:123.322260px;}
.y193{bottom:124.330052px;}
.y13e{bottom:124.464833px;}
.y4b{bottom:124.599605px;}
.y215{bottom:126.991500px;}
.yac{bottom:127.951161px;}
.y20{bottom:129.996018px;}
.yfd{bottom:130.025316px;}
.y23b{bottom:130.211623px;}
.y1de{bottom:130.211812px;}
.y20e{bottom:130.212514px;}
.y1b4{bottom:130.880857px;}
.y10f{bottom:131.033203px;}
.y144{bottom:133.417964px;}
.y115{bottom:142.218750px;}
.yd7{bottom:142.769499px;}
.y192{bottom:143.232400px;}
.y170{bottom:143.232411px;}
.y13d{bottom:143.367182px;}
.y4a{bottom:143.501947px;}
.y23a{bottom:148.164750px;}
.y20d{bottom:148.165641px;}
.y1dd{bottom:148.170792px;}
.y1b3{bottom:148.833984px;}
.y1f{bottom:148.898367px;}
.y143{bottom:152.314431px;}
.y95{bottom:153.187478px;}
.yab{bottom:160.347651px;}
.yd6{bottom:161.671848px;}
.y191{bottom:162.128890px;}
.y16f{bottom:162.128901px;}
.y10e{bottom:162.257813px;}
.y13c{bottom:162.263661px;}
.y49{bottom:162.398433px;}
.yfc{bottom:162.427665px;}
.y239{bottom:166.117862px;}
.y1dc{bottom:166.123919px;}
.y20c{bottom:166.124614px;}
.y1e{bottom:167.794857px;}
.y142{bottom:171.216780px;}
.y75{bottom:174.480387px;}
.y94{bottom:175.763655px;}
.yaa{bottom:179.249994px;}
.yd5{bottom:180.574197px;}
.y190{bottom:181.031240px;}
.y16e{bottom:181.031250px;}
.y13b{bottom:181.166010px;}
.y48{bottom:181.300782px;}
.yfb{bottom:181.330014px;}
.y238{bottom:184.076850px;}
.y1db{bottom:184.077047px;}
.y20b{bottom:184.077741px;}
.y11b{bottom:184.212893px;}
.y1b2{bottom:186.345703px;}
.y1d{bottom:186.697206px;}
.y141{bottom:190.113270px;}
.y93{bottom:190.458963px;}
.y74{bottom:193.376877px;}
.ya9{bottom:198.146447px;}
.yd4{bottom:199.470687px;}
.y16d{bottom:199.927713px;}
.y18f{bottom:199.927729px;}
.y13a{bottom:200.068359px;}
.y47{bottom:200.203115px;}
.yfa{bottom:200.226504px;}
.y11a{bottom:201.017581px;}
.y237{bottom:202.029977px;}
.y20a{bottom:202.030868px;}
.y1da{bottom:202.036008px;}
.y1c{bottom:205.593696px;}
.y10d{bottom:207.093664px;}
.y140{bottom:209.015619px;}
.y73{bottom:212.279226px;}
.y92{bottom:213.035140px;}
.ya8{bottom:217.048796px;}
.yd3{bottom:218.373036px;}
.y18e{bottom:218.830046px;}
.y16c{bottom:218.830062px;}
.y46{bottom:219.099605px;}
.yf9{bottom:219.128853px;}
.y236{bottom:219.983105px;}
.y1d9{bottom:219.989135px;}
.y209{bottom:219.989857px;}
.y11c{bottom:221.191407px;}
.y119{bottom:222.316407px;}
.y1b{bottom:224.496045px;}
.y10c{bottom:225.996013px;}
.y91{bottom:227.736307px;}
.y139{bottom:230.718750px;}
.y72{bottom:231.175716px;}
.ya7{bottom:235.951145px;}
.yd2{bottom:237.269526px;}
.y18d{bottom:237.732395px;}
.y16b{bottom:237.732411px;}
.y235{bottom:237.942093px;}
.y1d8{bottom:237.942262px;}
.y208{bottom:237.942984px;}
.yf8{bottom:238.025343px;}
.y1b1{bottom:240.046875px;}
.y1a{bottom:243.398394px;}
.y10b{bottom:244.892503px;}
.y71{bottom:250.078065px;}
.y90{bottom:250.312484px;}
.y14c{bottom:251.009755px;}
.y45{bottom:251.501937px;}
.ya6{bottom:254.847635px;}
.y234{bottom:255.895218px;}
.y207{bottom:255.896109px;}
.y1d7{bottom:255.901251px;}
.yd1{bottom:256.171865px;}
.y18c{bottom:256.628885px;}
.y16a{bottom:256.628901px;}
.yf7{bottom:256.927692px;}
.y19{bottom:262.294884px;}
.y10a{bottom:263.794852px;}
.y14b{bottom:267.808587px;}
.y1b0{bottom:268.792969px;}
.y70{bottom:268.980414px;}
.y44{bottom:270.398427px;}
.y8f{bottom:272.888660px;}
.ya5{bottom:273.749984px;}
.y233{bottom:273.848338px;}
.y1d6{bottom:273.854378px;}
.y206{bottom:273.855093px;}
.yd0{bottom:275.074214px;}
.y169{bottom:275.531229px;}
.y18b{bottom:275.531234px;}
.yf6{bottom:275.830041px;}
.y18{bottom:281.197233px;}
.y109{bottom:282.697201px;}
.y14a{bottom:284.613276px;}
.y138{bottom:286.329921px;}
.y6f{bottom:287.876904px;}
.y43{bottom:289.300776px;}
.y232{bottom:291.807326px;}
.y1d5{bottom:291.807505px;}
.y205{bottom:291.808218px;}
.ycf{bottom:293.970606px;}
.y168{bottom:294.427719px;}
.y18a{bottom:294.427724px;}
.yf5{bottom:294.726531px;}
.y8e{bottom:295.458978px;}
.y17{bottom:300.093723px;}
.y149{bottom:301.412108px;}
.y108{bottom:301.593691px;}
.y137{bottom:305.232270px;}
.ya4{bottom:306.146474px;}
.y6e{bottom:306.779253px;}
.y42{bottom:308.203119px;}
.y231{bottom:309.760454px;}
.y204{bottom:309.761338px;}
.y1d4{bottom:309.766494px;}
.yce{bottom:312.872955px;}
.y167{bottom:313.330068px;}
.y189{bottom:313.330073px;}
.yf4{bottom:313.628880px;}
.y8d{bottom:318.035155px;}
.y148{bottom:318.210940px;}
.y16{bottom:318.996072px;}
.y107{bottom:320.496040px;}
.y136{bottom:324.128760px;}
.y1af{bottom:324.398438px;}
.ya3{bottom:325.048823px;}
.y6d{bottom:325.675743px;}
.y41{bottom:327.099605px;}
.y230{bottom:327.713572px;}
.y1d3{bottom:327.719621px;}
.y203{bottom:327.720326px;}
.y188{bottom:332.232378px;}
.y166{bottom:332.232417px;}
.yf3{bottom:332.525370px;}
.y8c{bottom:332.736322px;}
.y15{bottom:337.898421px;}
.y14d{bottom:338.384766px;}
.y106{bottom:339.392530px;}
.y147{bottom:339.509766px;}
.y135{bottom:343.031109px;}
.ya2{bottom:343.951161px;}
.y6c{bottom:344.578092px;}
.ycd{bottom:345.269445px;}
.y22f{bottom:345.672560px;}
.y1d2{bottom:345.672748px;}
.y202{bottom:345.673454px;}
.y40{bottom:346.001943px;}
.y187{bottom:351.128868px;}
.yf2{bottom:351.427719px;}
.y1ae{bottom:355.054688px;}
.y8b{bottom:355.312499px;}
.y14{bottom:356.794911px;}
.y105{bottom:358.294879px;}
.y134{bottom:361.927599px;}
.ya1{bottom:362.847651px;}
.y6b{bottom:363.480441px;}
.y22e{bottom:363.625688px;}
.y1d1{bottom:363.625875px;}
.y201{bottom:363.626572px;}
.ycc{bottom:364.171794px;}
.y165{bottom:364.628885px;}
.y3f{bottom:364.898433px;}
.y186{bottom:370.031217px;}
.yf1{bottom:370.330068px;}
.y13{bottom:375.697260px;}
.y104{bottom:377.197229px;}
.y8a{bottom:377.888675px;}
.y133{bottom:380.829948px;}
.y22d{bottom:381.578808px;}
.y1d0{bottom:381.584859px;}
.y200{bottom:381.585560px;}
.y6a{bottom:382.376931px;}
.ycb{bottom:383.074143px;}
.y164{bottom:383.531234px;}
.y3e{bottom:383.800770px;}
.y185{bottom:388.927707px;}
.yf0{bottom:389.226558px;}
.y89{bottom:392.583984px;}
.y12{bottom:394.593750px;}
.y103{bottom:396.093718px;}
.y22c{bottom:399.537797px;}
.y1cf{bottom:399.537982px;}
.y1ff{bottom:399.538688px;}
.y69{bottom:401.279280px;}
.yca{bottom:401.970633px;}
.y163{bottom:402.427724px;}
.y3d{bottom:402.703119px;}
.yb2{bottom:404.841795px;}
.y184{bottom:407.830056px;}
.yef{bottom:408.128884px;}
.y1ad{bottom:410.665908px;}
.y132{bottom:413.232297px;}
.y102{bottom:414.996067px;}
.y22b{bottom:417.490919px;}
.y1ce{bottom:417.491109px;}
.y1fe{bottom:417.491799px;}
.yc9{bottom:420.872982px;}
.y162{bottom:421.330073px;}
.y3c{bottom:421.599594px;}
.yb1{bottom:421.640627px;}
.y11{bottom:425.250000px;}
.yee{bottom:427.025374px;}
.y9a{bottom:429.193358px;}
.y1ac{bottom:429.568257px;}
.y131{bottom:432.128787px;}
.y68{bottom:433.675770px;}
.y101{bottom:433.892558px;}
.y22a{bottom:435.444047px;}
.y1fd{bottom:435.450787px;}
.y1cd{bottom:436.545797px;}
.yb0{bottom:438.445315px;}
.yc8{bottom:439.769472px;}
.y183{bottom:440.232405px;}
.y161{bottom:440.232417px;}
.y3b{bottom:440.501943px;}
.yed{bottom:445.927723px;}
.y99{bottom:445.992190px;}
.y1ab{bottom:448.464747px;}
.y130{bottom:451.031136px;}
.y67{bottom:452.578119px;}
.y229{bottom:453.403030px;}
.y1fc{bottom:453.403914px;}
.y1cc{bottom:454.498919px;}
.yb3{bottom:458.619141px;}
.y160{bottom:459.128895px;}
.y3a{bottom:459.398433px;}
.yaf{bottom:459.744141px;}
.yec{bottom:464.830072px;}
.y98{bottom:467.291016px;}
.y1aa{bottom:467.367096px;}
.y12f{bottom:469.927626px;}
.y228{bottom:471.356157px;}
.y1fb{bottom:471.357041px;}
.y66{bottom:471.480464px;}
.yc7{bottom:472.171821px;}
.y1cb{bottom:472.452046px;}
.y113{bottom:475.892581px;}
.y15f{bottom:478.031244px;}
.y39{bottom:478.300776px;}
.yeb{bottom:483.726562px;}
.y1a9{bottom:486.263586px;}
.y12e{bottom:488.829975px;}
.y227{bottom:489.309275px;}
.y1fa{bottom:489.316030px;}
.y65{bottom:490.376943px;}
.y1ca{bottom:490.411030px;}
.yc6{bottom:491.074170px;}
.y10{bottom:494.349598px;}
.y114{bottom:496.066407px;}
.y182{bottom:496.927659px;}
.y15e{bottom:496.927686px;}
.y112{bottom:497.191407px;}
.y38{bottom:497.203119px;}
.y1a8{bottom:505.165935px;}
.y88{bottom:506.138655px;}
.y226{bottom:507.268264px;}
.y1f9{bottom:507.269157px;}
.y12d{bottom:507.732324px;}
.y1c9{bottom:508.364157px;}
.y64{bottom:509.279292px;}
.yc5{bottom:509.970660px;}
.yf{bottom:511.148425px;}
.yea{bottom:514.951172px;}
.y181{bottom:515.830008px;}
.y15d{bottom:515.830035px;}
.y37{bottom:516.099605px;}
.y1a7{bottom:524.068284px;}
.y87{bottom:525.035145px;}
.y225{bottom:525.221391px;}
.y1f8{bottom:525.222273px;}
.y1c8{bottom:526.317275px;}
.y12c{bottom:526.628814px;}
.ye{bottom:527.953110px;}
.y63{bottom:528.175776px;}
.yc4{bottom:528.873009px;}
.y180{bottom:534.732357px;}
.y15c{bottom:534.732384px;}
.y224{bottom:543.174516px;}
.y1f7{bottom:543.181262px;}
.y86{bottom:543.937494px;}
.y1c7{bottom:544.276264px;}
.y62{bottom:547.078109px;}
.yc3{bottom:547.769499px;}
.ye9{bottom:548.050782px;}
.y36{bottom:548.501943px;}
.yd{bottom:549.251943px;}
.y17f{bottom:553.628847px;}
.y15b{bottom:553.628874px;}
.y1a6{bottom:556.464774px;}
.y12b{bottom:559.031163px;}
.y223{bottom:561.127632px;}
.y1f6{bottom:561.134389px;}
.y1c6{bottom:562.229391px;}
.y85{bottom:562.839833px;}
.y61{bottom:565.980458px;}
.yc2{bottom:566.671848px;}
.y35{bottom:567.398433px;}
.yc{bottom:570.550776px;}
.y15a{bottom:572.531223px;}
.y1a5{bottom:575.367123px;}
.y12a{bottom:577.927653px;}
.y222{bottom:579.086621px;}
.y1f5{bottom:579.087516px;}
.y1c5{bottom:580.182514px;}
.y84{bottom:581.736323px;}
.y60{bottom:584.876948px;}
.yc1{bottom:585.574197px;}
.y17e{bottom:586.031196px;}
.y34{bottom:586.300776px;}
.yb{bottom:591.849609px;}
.y1a4{bottom:594.263613px;}
.y129{bottom:596.830002px;}
.y221{bottom:597.039748px;}
.y1f4{bottom:597.040641px;}
.y1c4{bottom:598.135641px;}
.y83{bottom:600.638661px;}
.ye8{bottom:603.662067px;}
.y5f{bottom:603.779286px;}
.yc0{bottom:604.470687px;}
.y17d{bottom:604.927686px;}
.y159{bottom:604.927713px;}
.y33{bottom:605.203119px;}
.y1a3{bottom:613.165962px;}
.y220{bottom:614.992875px;}
.y1f3{bottom:614.999625px;}
.y128{bottom:615.732351px;}
.y1c3{bottom:616.094625px;}
.y82{bottom:619.535151px;}
.ye7{bottom:622.558557px;}
.y5e{bottom:622.675776px;}
.ybf{bottom:623.373036px;}
.y17c{bottom:623.830035px;}
.y158{bottom:623.830062px;}
.y32{bottom:624.099604px;}
.y1a2{bottom:632.068311px;}
.y21f{bottom:632.951848px;}
.y1f2{bottom:632.952750px;}
.y1c2{bottom:634.047748px;}
.y127{bottom:634.628841px;}
.y81{bottom:638.437494px;}
.ye6{bottom:641.460906px;}
.y5d{bottom:641.578108px;}
.ya{bottom:642.105473px;}
.ybe{bottom:642.269526px;}
.y17b{bottom:642.732384px;}
.y157{bottom:642.732411px;}
.y31{bottom:643.001937px;}
.y21e{bottom:650.904975px;}
.y1f1{bottom:650.905875px;}
.y1a1{bottom:650.964801px;}
.y1c1{bottom:652.000875px;}
.y126{bottom:653.531190px;}
.y9{bottom:655.335938px;}
.y80{bottom:657.339843px;}
.ye5{bottom:660.363255px;}
.y5c{bottom:660.480457px;}
.ybd{bottom:661.171875px;}
.y17a{bottom:661.628874px;}
.y156{bottom:661.628901px;}
.y30{bottom:661.898427px;}
.y21d{bottom:668.858102px;}
.y1f0{bottom:668.864850px;}
.y1c0{bottom:669.959859px;}
.y125{bottom:672.427680px;}
.y8{bottom:676.289062px;}
.ye4{bottom:679.259745px;}
.y5b{bottom:679.376947px;}
.y179{bottom:680.531223px;}
.y155{bottom:680.531233px;}
.y21{bottom:680.789062px;}
.y2f{bottom:680.800776px;}
.y1a0{bottom:683.367150px;}
.y21c{bottom:686.817091px;}
.y1ef{bottom:686.817977px;}
.y1bf{bottom:687.912977px;}
.y7f{bottom:688.564453px;}
.ybc{bottom:692.396484px;}
.ye3{bottom:698.162094px;}
.y5a{bottom:698.279298px;}
.y178{bottom:699.427713px;}
.y154{bottom:699.427723px;}
.y2e{bottom:699.703104px;}
.y19f{bottom:702.263640px;}
.y21b{bottom:704.770218px;}
.y1ee{bottom:704.771105px;}
.y124{bottom:704.830029px;}
.y1be{bottom:705.866105px;}
.ye2{bottom:717.058584px;}
.y177{bottom:718.330062px;}
.y59{bottom:718.330073px;}
.y2d{bottom:718.599594px;}
.y7{bottom:718.605480px;}
.y19e{bottom:721.165989px;}
.y21a{bottom:722.723345px;}
.y1ed{bottom:722.730093px;}
.y123{bottom:723.732378px;}
.y1bd{bottom:723.825093px;}
.y7e{bottom:733.394526px;}
.ye1{bottom:735.960933px;}
.ybb{bottom:737.232373px;}
.y153{bottom:737.232401px;}
.y176{bottom:737.232411px;}
.y58{bottom:737.232417px;}
.y2c{bottom:737.501943px;}
.y19d{bottom:740.068338px;}
.y219{bottom:740.682326px;}
.y1ec{bottom:740.683218px;}
.y1bc{bottom:741.778213px;}
.y122{bottom:742.628868px;}
.y7d{bottom:752.296865px;}
.ye0{bottom:754.863243px;}
.yba{bottom:756.128864px;}
.y57{bottom:756.128891px;}
.y175{bottom:756.128901px;}
.y6{bottom:756.158206px;}
.y2b{bottom:756.398433px;}
.y218{bottom:758.635454px;}
.y1eb{bottom:758.636345px;}
.y19c{bottom:758.964828px;}
.y1bb{bottom:759.731340px;}
.y121{bottom:761.531217px;}
.y7c{bottom:771.199214px;}
.ydf{bottom:773.759733px;}
.yb9{bottom:775.031213px;}
.y56{bottom:775.031240px;}
.y2a{bottom:775.300782px;}
.y217{bottom:776.588579px;}
.y1ea{bottom:776.595329px;}
.y1ba{bottom:777.690328px;}
.y19b{bottom:777.867177px;}
.y120{bottom:780.427707px;}
.y174{bottom:788.531213px;}
.y7b{bottom:790.095698px;}
.yde{bottom:792.662082px;}
.y5{bottom:793.710931px;}
.yb8{bottom:793.927703px;}
.y55{bottom:793.927730px;}
.y216{bottom:794.547563px;}
.y1e9{bottom:794.548454px;}
.y1b9{bottom:795.643453px;}
.y19a{bottom:796.763667px;}
.y29{bottom:805.957032px;}
.y173{bottom:807.427703px;}
.y7a{bottom:808.998036px;}
.ydd{bottom:811.558572px;}
.y197{bottom:812.431079px;}
.y1e8{bottom:812.501579px;}
.yb7{bottom:812.830052px;}
.y11f{bottom:812.830056px;}
.y54{bottom:812.830079px;}
.y1b8{bottom:813.596574px;}
.y150{bottom:814.762730px;}
.y199{bottom:815.666016px;}
.y100{bottom:826.330052px;}
.y152{bottom:826.330072px;}
.y243{bottom:827.233500px;}
.y79{bottom:827.894526px;}
.y26{bottom:829.089093px;}
.y1e7{bottom:830.460563px;}
.ydc{bottom:830.460921px;}
.y4{bottom:831.269532px;}
.y1b7{bottom:831.555562px;}
.y53{bottom:831.732405px;}
.y24a{bottom:831.761718px;}
.y14f{bottom:833.665079px;}
.y9d{bottom:835.447078px;}
.y11e{bottom:838.933079px;}
.yb6{bottom:845.232401px;}
.y151{bottom:845.232405px;}
.y198{bottom:846.322266px;}
.y78{bottom:846.796875px;}
.ydb{bottom:849.363270px;}
.y249{bottom:849.714840px;}
.y52{bottom:850.628895px;}
.y28{bottom:861.568353px;}
.yb5{bottom:864.128891px;}
.ya0{bottom:864.128895px;}
.y248{bottom:867.673829px;}
.yda{bottom:868.259760px;}
.y51{bottom:869.531244px;}
.y77{bottom:878.021484px;}
.y27{bottom:880.464843px;}
.yb4{bottom:883.031239px;}
.y9f{bottom:883.031244px;}
.y247{bottom:885.626954px;}
.yd9{bottom:887.162109px;}
.y3{bottom:899.378907px;}
.y50{bottom:901.927730px;}
.y9e{bottom:901.927734px;}
.y246{bottom:903.580074px;}
.y76{bottom:911.121093px;}
.yd8{bottom:918.386718px;}
.y4f{bottom:920.830079px;}
.y245{bottom:921.539062px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y9b{bottom:974.730452px;}
.y4e{bottom:974.730470px;}
.ha{height:28.048904px;}
.h15{height:31.993163px;}
.h9{height:32.273438px;}
.h6{height:33.888685px;}
.h11{height:35.391704px;}
.hf{height:35.617086px;}
.h12{height:35.617155px;}
.h1{height:37.651031px;}
.h7{height:37.651075px;}
.h5{height:43.032562px;}
.h23{height:45.991224px;}
.h29{height:45.991277px;}
.h26{height:45.991280px;}
.h25{height:45.991320px;}
.h10{height:46.796220px;}
.h2{height:48.410156px;}
.he{height:48.410216px;}
.hd{height:48.410222px;}
.hc{height:48.410240px;}
.h19{height:48.410246px;}
.h21{height:48.410288px;}
.h14{height:48.410306px;}
.h17{height:48.410312px;}
.h18{height:48.410324px;}
.h20{height:48.410330px;}
.h1e{height:48.410348px;}
.h1f{height:48.410456px;}
.h1a{height:48.410498px;}
.h16{height:48.410546px;}
.h1c{height:48.410786px;}
.h8{height:52.443023px;}
.h3{height:68.582368px;}
.h4{height:70.420196px;}
.h2a{height:107.730000px;}
.h28{height:807.972000px;}
.h22{height:826.564500px;}
.h27{height:843.885000px;}
.h24{height:844.980000px;}
.h1d{height:847.798500px;}
.h13{height:849.580500px;}
.hb{height:852.931500px;}
.h1b{height:853.066500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x10{left:11.584593px;}
.x11{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:83.162109px;}
.xb{left:86.537109px;}
.xe{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xf{left:123.662109px;}
.xc{left:138.287109px;}
.x1{left:140.308593px;}
.x7{left:151.664062px;}
.x6{left:160.787109px;}
.x9{left:194.033204px;}
.xa{left:261.269532px;}
.x2{left:300.164062px;}
.xd{left:562.159424px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.016011pt;}
.ls7{letter-spacing:0.016016pt;}
.ls5{letter-spacing:0.256008pt;}
.ls6{letter-spacing:0.298676pt;}
.lsa{letter-spacing:0.775227pt;}
.ls9{letter-spacing:0.820828pt;}
.ls3{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls2{letter-spacing:829.839111pt;}
.wsd{word-spacing:-45.601563pt;}
.ws1{word-spacing:-24.562070pt;}
.ws2{word-spacing:-18.781930pt;}
.ws6{word-spacing:-13.296000pt;}
.wsb{word-spacing:-12.631633pt;}
.wsa{word-spacing:-11.861695pt;}
.ws9{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:-9.341234pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:90.199891pt;}
.ws7{word-spacing:251.132579pt;}
.ws3{word-spacing:289.344000pt;}
.ws8{word-spacing:793.998018pt;}
._1f{margin-left:-8.208246pt;}
._26{margin-left:-7.111996pt;}
._6{margin-left:-6.176649pt;}
._20{margin-left:-4.778812pt;}
._3{margin-left:-3.590469pt;}
._4{margin-left:-1.876836pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.247887pt;}
._b{width:4.251074pt;}
._c{width:5.183449pt;}
._e{width:6.538070pt;}
._d{width:8.064328pt;}
._11{width:8.994781pt;}
._f{width:10.032070pt;}
._14{width:11.023980pt;}
._10{width:11.941590pt;}
._9{width:14.869590pt;}
._8{width:16.228836pt;}
._a{width:17.483722pt;}
._13{width:19.038738pt;}
._22{width:20.708027pt;}
._12{width:22.317617pt;}
._15{width:26.990020pt;}
._21{width:29.776758pt;}
._24{width:31.094999pt;}
._5{width:40.891411pt;}
._18{width:49.997825pt;}
._1d{width:80.209673pt;}
._25{width:102.831524pt;}
._1c{width:188.313004pt;}
._23{width:212.413819pt;}
._16{width:236.413819pt;}
._1e{width:242.156028pt;}
._19{width:269.360845pt;}
._17{width:318.116479pt;}
._1b{width:328.671210pt;}
._1a{width:330.761804pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y242{bottom:4.024917pt;}
.y1e5{bottom:4.025083pt;}
.y241{bottom:19.983249pt;}
.y1e4{bottom:19.983404pt;}
.y214{bottom:19.984039pt;}
.y240{bottom:35.941584pt;}
.y1e3{bottom:35.946949pt;}
.y213{bottom:35.947584pt;}
.y24{bottom:41.541662pt;}
.y23f{bottom:51.905121pt;}
.y1e2{bottom:51.905284pt;}
.y212{bottom:51.905917pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.y23e{bottom:67.863457pt;}
.y1e1{bottom:67.863620pt;}
.y211{bottom:67.864247pt;}
.y11d{bottom:72.797333pt;}
.y25{bottom:72.917333pt;}
.y9c{bottom:75.896000pt;}
.y118{bottom:76.015611pt;}
.y195{bottom:76.916633pt;}
.y4d{bottom:77.156236pt;}
.y14e{bottom:77.480000pt;}
.y1b6{bottom:79.985333pt;}
.yae{bottom:80.130189pt;}
.y1e6{bottom:80.958667pt;}
.y172{bottom:81.713523pt;}
.yff{bottom:81.979091pt;}
.y111{bottom:82.874991pt;}
.y23d{bottom:83.821792pt;}
.y1e0{bottom:83.827165pt;}
.y244{bottom:83.827167pt;}
.y210{bottom:83.827792pt;}
.y146{bottom:84.989579pt;}
.y97{bottom:89.510412pt;}
.y117{bottom:92.817699pt;}
.y194{bottom:93.713513pt;}
.y13f{bottom:93.838527pt;}
.y4c{bottom:93.958324pt;}
.y196{bottom:96.354667pt;}
.yad{bottom:96.932277pt;}
.y171{bottom:98.515611pt;}
.yfe{bottom:98.781179pt;}
.y110{bottom:99.677079pt;}
.y23c{bottom:99.780125pt;}
.y1df{bottom:99.785500pt;}
.y20f{bottom:99.786121pt;}
.y1b5{bottom:100.380208pt;}
.y145{bottom:101.791657pt;}
.y96{bottom:106.307292pt;}
.y116{bottom:109.619787pt;}
.y193{bottom:110.515601pt;}
.y13e{bottom:110.635407pt;}
.y4b{bottom:110.755204pt;}
.y215{bottom:112.881333pt;}
.yac{bottom:113.734365pt;}
.y20{bottom:115.552016pt;}
.yfd{bottom:115.578059pt;}
.y23b{bottom:115.743665pt;}
.y1de{bottom:115.743833pt;}
.y20e{bottom:115.744457pt;}
.y1b4{bottom:116.338539pt;}
.y10f{bottom:116.473959pt;}
.y144{bottom:118.593745pt;}
.y115{bottom:126.416667pt;}
.yd7{bottom:126.906221pt;}
.y192{bottom:127.317689pt;}
.y170{bottom:127.317699pt;}
.y13d{bottom:127.437495pt;}
.y4a{bottom:127.557287pt;}
.y23a{bottom:131.702000pt;}
.y20d{bottom:131.702792pt;}
.y1dd{bottom:131.707371pt;}
.y1b3{bottom:132.296875pt;}
.y1f{bottom:132.354104pt;}
.y143{bottom:135.390605pt;}
.y95{bottom:136.166647pt;}
.yab{bottom:142.531245pt;}
.yd6{bottom:143.708309pt;}
.y191{bottom:144.114569pt;}
.y16f{bottom:144.114579pt;}
.y10e{bottom:144.229167pt;}
.y13c{bottom:144.234365pt;}
.y49{bottom:144.354163pt;}
.yfc{bottom:144.380147pt;}
.y239{bottom:147.660322pt;}
.y1dc{bottom:147.665706pt;}
.y20c{bottom:147.666324pt;}
.y1e{bottom:149.150984pt;}
.y142{bottom:152.192693pt;}
.y75{bottom:155.093677pt;}
.y94{bottom:156.234360pt;}
.yaa{bottom:159.333328pt;}
.yd5{bottom:160.510397pt;}
.y190{bottom:160.916657pt;}
.y16e{bottom:160.916667pt;}
.y13b{bottom:161.036453pt;}
.y48{bottom:161.156251pt;}
.yfb{bottom:161.182235pt;}
.y238{bottom:163.623867pt;}
.y1db{bottom:163.624041pt;}
.y20b{bottom:163.624659pt;}
.y11b{bottom:163.744794pt;}
.y1b2{bottom:165.640625pt;}
.y1d{bottom:165.953072pt;}
.y141{bottom:168.989573pt;}
.y93{bottom:169.296856pt;}
.y74{bottom:171.890557pt;}
.ya9{bottom:176.130175pt;}
.yd4{bottom:177.307277pt;}
.y16d{bottom:177.713523pt;}
.y18f{bottom:177.713537pt;}
.y13a{bottom:177.838541pt;}
.y47{bottom:177.958324pt;}
.yfa{bottom:177.979115pt;}
.y11a{bottom:178.682295pt;}
.y237{bottom:179.582202pt;}
.y20a{bottom:179.582994pt;}
.y1da{bottom:179.587563pt;}
.y1c{bottom:182.749952pt;}
.y10d{bottom:184.083257pt;}
.y140{bottom:185.791661pt;}
.y73{bottom:188.692645pt;}
.y92{bottom:189.364569pt;}
.ya8{bottom:192.932263pt;}
.yd3{bottom:194.109365pt;}
.y18e{bottom:194.515596pt;}
.y16c{bottom:194.515611pt;}
.y46{bottom:194.755204pt;}
.yf9{bottom:194.781203pt;}
.y236{bottom:195.540537pt;}
.y1d9{bottom:195.545898pt;}
.y209{bottom:195.546539pt;}
.y11c{bottom:196.614584pt;}
.y119{bottom:197.614584pt;}
.y1b{bottom:199.552040pt;}
.y10c{bottom:200.885345pt;}
.y91{bottom:202.432273pt;}
.y139{bottom:205.083333pt;}
.y72{bottom:205.489525pt;}
.ya7{bottom:209.734351pt;}
.yd2{bottom:210.906245pt;}
.y18d{bottom:211.317684pt;}
.y16b{bottom:211.317699pt;}
.y235{bottom:211.504083pt;}
.y1d8{bottom:211.504233pt;}
.y208{bottom:211.504875pt;}
.yf8{bottom:211.578083pt;}
.y1b1{bottom:213.375000pt;}
.y1a{bottom:216.354128pt;}
.y10b{bottom:217.682225pt;}
.y71{bottom:222.291613pt;}
.y90{bottom:222.499986pt;}
.y14c{bottom:223.119782pt;}
.y45{bottom:223.557277pt;}
.ya6{bottom:226.531231pt;}
.y234{bottom:227.462416pt;}
.y207{bottom:227.463208pt;}
.y1d7{bottom:227.467778pt;}
.yd1{bottom:227.708324pt;}
.y18c{bottom:228.114564pt;}
.y16a{bottom:228.114579pt;}
.yf7{bottom:228.380171pt;}
.y19{bottom:233.151008pt;}
.y10a{bottom:234.484313pt;}
.y14b{bottom:238.052077pt;}
.y1b0{bottom:238.927084pt;}
.y70{bottom:239.093701pt;}
.y44{bottom:240.354157pt;}
.y8f{bottom:242.567698pt;}
.ya5{bottom:243.333319pt;}
.y233{bottom:243.420745pt;}
.y1d6{bottom:243.426114pt;}
.y206{bottom:243.426749pt;}
.yd0{bottom:244.510412pt;}
.y169{bottom:244.916648pt;}
.y18b{bottom:244.916652pt;}
.yf6{bottom:245.182259pt;}
.y18{bottom:249.953096pt;}
.y109{bottom:251.286401pt;}
.y14a{bottom:252.989578pt;}
.y138{bottom:254.515485pt;}
.y6f{bottom:255.890581pt;}
.y43{bottom:257.156245pt;}
.y232{bottom:259.384290pt;}
.y1d5{bottom:259.384449pt;}
.y205{bottom:259.385083pt;}
.ycf{bottom:261.307205pt;}
.y168{bottom:261.713528pt;}
.y18a{bottom:261.713532pt;}
.yf5{bottom:261.979139pt;}
.y8e{bottom:262.630203pt;}
.y17{bottom:266.749976pt;}
.y149{bottom:267.921874pt;}
.y108{bottom:268.083281pt;}
.y137{bottom:271.317573pt;}
.ya4{bottom:272.130199pt;}
.y6e{bottom:272.692669pt;}
.y42{bottom:273.958328pt;}
.y231{bottom:275.342625pt;}
.y204{bottom:275.343412pt;}
.y1d4{bottom:275.347994pt;}
.yce{bottom:278.109293pt;}
.y167{bottom:278.515616pt;}
.y189{bottom:278.515620pt;}
.yf4{bottom:278.781227pt;}
.y8d{bottom:282.697915pt;}
.y148{bottom:282.854169pt;}
.y16{bottom:283.552064pt;}
.y107{bottom:284.885369pt;}
.y136{bottom:288.114453pt;}
.y1af{bottom:288.354167pt;}
.ya3{bottom:288.932287pt;}
.y6d{bottom:289.489549pt;}
.y41{bottom:290.755204pt;}
.y230{bottom:291.300953pt;}
.y1d3{bottom:291.306329pt;}
.y203{bottom:291.306957pt;}
.y188{bottom:295.317669pt;}
.y166{bottom:295.317704pt;}
.yf3{bottom:295.578107pt;}
.y8c{bottom:295.765620pt;}
.y15{bottom:300.354152pt;}
.y14d{bottom:300.786459pt;}
.y106{bottom:301.682249pt;}
.y147{bottom:301.786459pt;}
.y135{bottom:304.916541pt;}
.ya2{bottom:305.734365pt;}
.y6c{bottom:306.291637pt;}
.ycd{bottom:306.906173pt;}
.y22f{bottom:307.264498pt;}
.y1d2{bottom:307.264665pt;}
.y202{bottom:307.265292pt;}
.y40{bottom:307.557283pt;}
.y187{bottom:312.114549pt;}
.yf2{bottom:312.380195pt;}
.y1ae{bottom:315.604167pt;}
.y8b{bottom:315.833332pt;}
.y14{bottom:317.151032pt;}
.y105{bottom:318.484337pt;}
.y134{bottom:321.713421pt;}
.ya1{bottom:322.531245pt;}
.y6b{bottom:323.093725pt;}
.y22e{bottom:323.222833pt;}
.y1d1{bottom:323.223000pt;}
.y201{bottom:323.223620pt;}
.ycc{bottom:323.708261pt;}
.y165{bottom:324.114564pt;}
.y3f{bottom:324.354163pt;}
.y186{bottom:328.916637pt;}
.yf1{bottom:329.182283pt;}
.y13{bottom:333.953120pt;}
.y104{bottom:335.286425pt;}
.y8a{bottom:335.901045pt;}
.y133{bottom:338.515509pt;}
.y22d{bottom:339.181163pt;}
.y1d0{bottom:339.186541pt;}
.y200{bottom:339.187165pt;}
.y6a{bottom:339.890605pt;}
.ycb{bottom:340.510349pt;}
.y164{bottom:340.916652pt;}
.y3e{bottom:341.156240pt;}
.y185{bottom:345.713517pt;}
.yf0{bottom:345.979163pt;}
.y89{bottom:348.963541pt;}
.y12{bottom:350.750000pt;}
.y103{bottom:352.083305pt;}
.y22c{bottom:355.144708pt;}
.y1cf{bottom:355.144873pt;}
.y1ff{bottom:355.145500pt;}
.y69{bottom:356.692693pt;}
.yca{bottom:357.307229pt;}
.y163{bottom:357.713532pt;}
.y3d{bottom:357.958328pt;}
.yb2{bottom:359.859373pt;}
.y184{bottom:362.515605pt;}
.yef{bottom:362.781231pt;}
.y1ad{bottom:365.036363pt;}
.y132{bottom:367.317597pt;}
.y102{bottom:368.885393pt;}
.y22b{bottom:371.103039pt;}
.y1ce{bottom:371.103208pt;}
.y1fe{bottom:371.103821pt;}
.yc9{bottom:374.109317pt;}
.y162{bottom:374.515620pt;}
.y3c{bottom:374.755195pt;}
.yb1{bottom:374.791668pt;}
.y11{bottom:378.000000pt;}
.yee{bottom:379.578111pt;}
.y9a{bottom:381.505207pt;}
.y1ac{bottom:381.838451pt;}
.y131{bottom:384.114477pt;}
.y68{bottom:385.489573pt;}
.y101{bottom:385.682273pt;}
.y22a{bottom:387.061375pt;}
.y1fd{bottom:387.067366pt;}
.y1cd{bottom:388.040708pt;}
.yb0{bottom:389.729169pt;}
.yc8{bottom:390.906197pt;}
.y183{bottom:391.317693pt;}
.y161{bottom:391.317704pt;}
.y3b{bottom:391.557283pt;}
.yed{bottom:396.380199pt;}
.y99{bottom:396.437503pt;}
.y1ab{bottom:398.635331pt;}
.y130{bottom:400.916565pt;}
.y67{bottom:402.291661pt;}
.y229{bottom:403.024915pt;}
.y1fc{bottom:403.025702pt;}
.y1cc{bottom:403.999039pt;}
.yb3{bottom:407.661459pt;}
.y160{bottom:408.114573pt;}
.y3a{bottom:408.354163pt;}
.yaf{bottom:408.661459pt;}
.yec{bottom:413.182287pt;}
.y98{bottom:415.369792pt;}
.y1aa{bottom:415.437419pt;}
.y12f{bottom:417.713445pt;}
.y228{bottom:418.983251pt;}
.y1fb{bottom:418.984037pt;}
.y66{bottom:419.093745pt;}
.yc7{bottom:419.708285pt;}
.y1cb{bottom:419.957375pt;}
.y113{bottom:423.015628pt;}
.y15f{bottom:424.916661pt;}
.y39{bottom:425.156245pt;}
.yeb{bottom:429.979167pt;}
.y1a9{bottom:432.234299pt;}
.y12e{bottom:434.515533pt;}
.y227{bottom:434.941578pt;}
.y1fa{bottom:434.947582pt;}
.y65{bottom:435.890616pt;}
.y1ca{bottom:435.920915pt;}
.yc6{bottom:436.510373pt;}
.y10{bottom:439.421865pt;}
.y114{bottom:440.947917pt;}
.y182{bottom:441.713475pt;}
.y15e{bottom:441.713499pt;}
.y112{bottom:441.947917pt;}
.y38{bottom:441.958328pt;}
.y1a8{bottom:449.036387pt;}
.y88{bottom:449.901027pt;}
.y226{bottom:450.905123pt;}
.y1f9{bottom:450.905917pt;}
.y12d{bottom:451.317621pt;}
.y1c9{bottom:451.879251pt;}
.y64{bottom:452.692704pt;}
.yc5{bottom:453.307253pt;}
.yf{bottom:454.354155pt;}
.yea{bottom:457.734375pt;}
.y181{bottom:458.515563pt;}
.y15d{bottom:458.515587pt;}
.y37{bottom:458.755204pt;}
.y1a7{bottom:465.838475pt;}
.y87{bottom:466.697907pt;}
.y225{bottom:466.863459pt;}
.y1f8{bottom:466.864243pt;}
.y1c8{bottom:467.837578pt;}
.y12c{bottom:468.114501pt;}
.ye{bottom:469.291653pt;}
.y63{bottom:469.489579pt;}
.yc4{bottom:470.109341pt;}
.y180{bottom:475.317651pt;}
.y15c{bottom:475.317675pt;}
.y224{bottom:482.821792pt;}
.y1f7{bottom:482.827788pt;}
.y86{bottom:483.499995pt;}
.y1c7{bottom:483.801123pt;}
.y62{bottom:486.291652pt;}
.yc3{bottom:486.906221pt;}
.ye9{bottom:487.156251pt;}
.y36{bottom:487.557283pt;}
.yd{bottom:488.223949pt;}
.y17f{bottom:492.114531pt;}
.y15b{bottom:492.114555pt;}
.y1a6{bottom:494.635355pt;}
.y12b{bottom:496.916589pt;}
.y223{bottom:498.780118pt;}
.y1f6{bottom:498.786123pt;}
.y1c6{bottom:499.759459pt;}
.y85{bottom:500.302073pt;}
.y61{bottom:503.093740pt;}
.yc2{bottom:503.708309pt;}
.y35{bottom:504.354163pt;}
.yc{bottom:507.156245pt;}
.y15a{bottom:508.916643pt;}
.y1a5{bottom:511.437443pt;}
.y12a{bottom:513.713469pt;}
.y222{bottom:514.743663pt;}
.y1f5{bottom:514.744459pt;}
.y1c5{bottom:515.717790pt;}
.y84{bottom:517.098953pt;}
.y60{bottom:519.890620pt;}
.yc1{bottom:520.510397pt;}
.y17e{bottom:520.916619pt;}
.y34{bottom:521.156245pt;}
.yb{bottom:526.088541pt;}
.y1a4{bottom:528.234323pt;}
.y129{bottom:530.515557pt;}
.y221{bottom:530.701998pt;}
.y1f4{bottom:530.702792pt;}
.y1c4{bottom:531.676125pt;}
.y83{bottom:533.901032pt;}
.ye8{bottom:536.588504pt;}
.y5f{bottom:536.692699pt;}
.yc0{bottom:537.307277pt;}
.y17d{bottom:537.713499pt;}
.y159{bottom:537.713523pt;}
.y33{bottom:537.958328pt;}
.y1a3{bottom:545.036411pt;}
.y220{bottom:546.660333pt;}
.y1f3{bottom:546.666333pt;}
.y128{bottom:547.317645pt;}
.y1c3{bottom:547.639667pt;}
.y82{bottom:550.697912pt;}
.ye7{bottom:553.385384pt;}
.y5e{bottom:553.489579pt;}
.ybf{bottom:554.109365pt;}
.y17c{bottom:554.515587pt;}
.y158{bottom:554.515611pt;}
.y32{bottom:554.755204pt;}
.y1a2{bottom:561.838499pt;}
.y21f{bottom:562.623865pt;}
.y1f2{bottom:562.624667pt;}
.y1c2{bottom:563.597998pt;}
.y127{bottom:564.114525pt;}
.y81{bottom:567.499995pt;}
.ye6{bottom:570.187472pt;}
.y5d{bottom:570.291652pt;}
.ya{bottom:570.760421pt;}
.ybe{bottom:570.906245pt;}
.y17b{bottom:571.317675pt;}
.y157{bottom:571.317699pt;}
.y31{bottom:571.557277pt;}
.y21e{bottom:578.582200pt;}
.y1f1{bottom:578.583000pt;}
.y1a1{bottom:578.635379pt;}
.y1c1{bottom:579.556333pt;}
.y126{bottom:580.916613pt;}
.y9{bottom:582.520833pt;}
.y80{bottom:584.302083pt;}
.ye5{bottom:586.989560pt;}
.y5c{bottom:587.093740pt;}
.ybd{bottom:587.708333pt;}
.y17a{bottom:588.114555pt;}
.y156{bottom:588.114579pt;}
.y30{bottom:588.354157pt;}
.y21d{bottom:594.540536pt;}
.y1f0{bottom:594.546534pt;}
.y1c0{bottom:595.519875pt;}
.y125{bottom:597.713493pt;}
.y8{bottom:601.145833pt;}
.ye4{bottom:603.786440pt;}
.y5b{bottom:603.890620pt;}
.y179{bottom:604.916643pt;}
.y155{bottom:604.916652pt;}
.y21{bottom:605.145833pt;}
.y2f{bottom:605.156245pt;}
.y1a0{bottom:607.437467pt;}
.y21c{bottom:610.504081pt;}
.y1ef{bottom:610.504869pt;}
.y1bf{bottom:611.478202pt;}
.y7f{bottom:612.057292pt;}
.ybc{bottom:615.463541pt;}
.ye3{bottom:620.588528pt;}
.y5a{bottom:620.692709pt;}
.y178{bottom:621.713523pt;}
.y154{bottom:621.713532pt;}
.y2e{bottom:621.958315pt;}
.y19f{bottom:624.234347pt;}
.y21b{bottom:626.462416pt;}
.y1ee{bottom:626.463204pt;}
.y124{bottom:626.515581pt;}
.y1be{bottom:627.436537pt;}
.ye2{bottom:637.385408pt;}
.y177{bottom:638.515611pt;}
.y59{bottom:638.515620pt;}
.y2d{bottom:638.755195pt;}
.y7{bottom:638.760427pt;}
.y19e{bottom:641.036435pt;}
.y21a{bottom:642.420751pt;}
.y1ed{bottom:642.426749pt;}
.y123{bottom:643.317669pt;}
.y1bd{bottom:643.400083pt;}
.y7e{bottom:651.906245pt;}
.ye1{bottom:654.187496pt;}
.ybb{bottom:655.317665pt;}
.y153{bottom:655.317689pt;}
.y176{bottom:655.317699pt;}
.y58{bottom:655.317704pt;}
.y2c{bottom:655.557283pt;}
.y19d{bottom:657.838523pt;}
.y219{bottom:658.384290pt;}
.y1ec{bottom:658.385083pt;}
.y1bc{bottom:659.358412pt;}
.y122{bottom:660.114549pt;}
.y7d{bottom:668.708324pt;}
.ye0{bottom:670.989549pt;}
.yba{bottom:672.114545pt;}
.y57{bottom:672.114569pt;}
.y175{bottom:672.114579pt;}
.y6{bottom:672.140627pt;}
.y2b{bottom:672.354163pt;}
.y218{bottom:674.342625pt;}
.y1eb{bottom:674.343417pt;}
.y19c{bottom:674.635403pt;}
.y1bb{bottom:675.316747pt;}
.y121{bottom:676.916637pt;}
.y7c{bottom:685.510412pt;}
.ydf{bottom:687.786429pt;}
.yb9{bottom:688.916633pt;}
.y56{bottom:688.916657pt;}
.y2a{bottom:689.156251pt;}
.y217{bottom:690.300959pt;}
.y1ea{bottom:690.306959pt;}
.y1ba{bottom:691.280292pt;}
.y19b{bottom:691.437491pt;}
.y120{bottom:693.713517pt;}
.y174{bottom:700.916633pt;}
.y7b{bottom:702.307287pt;}
.yde{bottom:704.588517pt;}
.y5{bottom:705.520828pt;}
.yb8{bottom:705.713513pt;}
.y55{bottom:705.713537pt;}
.y216{bottom:706.264500pt;}
.y1e9{bottom:706.265292pt;}
.y1b9{bottom:707.238625pt;}
.y19a{bottom:708.234371pt;}
.y29{bottom:716.406251pt;}
.y173{bottom:717.713513pt;}
.y7a{bottom:719.109365pt;}
.ydd{bottom:721.385397pt;}
.y197{bottom:722.160959pt;}
.y1e8{bottom:722.223625pt;}
.yb7{bottom:722.515601pt;}
.y11f{bottom:722.515605pt;}
.y54{bottom:722.515625pt;}
.y1b8{bottom:723.196955pt;}
.y150{bottom:724.233537pt;}
.y199{bottom:725.036459pt;}
.y100{bottom:734.515601pt;}
.y152{bottom:734.515620pt;}
.y243{bottom:735.318667pt;}
.y79{bottom:735.906245pt;}
.y26{bottom:736.968083pt;}
.y1e7{bottom:738.187167pt;}
.ydc{bottom:738.187485pt;}
.y4{bottom:738.906251pt;}
.y1b7{bottom:739.160500pt;}
.y53{bottom:739.317693pt;}
.y24a{bottom:739.343749pt;}
.y14f{bottom:741.035625pt;}
.y9d{bottom:742.619625pt;}
.y11e{bottom:745.718292pt;}
.yb6{bottom:751.317689pt;}
.y151{bottom:751.317693pt;}
.y198{bottom:752.286459pt;}
.y78{bottom:752.708333pt;}
.ydb{bottom:754.989573pt;}
.y249{bottom:755.302080pt;}
.y52{bottom:756.114573pt;}
.y28{bottom:765.838536pt;}
.yb5{bottom:768.114569pt;}
.ya0{bottom:768.114573pt;}
.y248{bottom:771.265625pt;}
.yda{bottom:771.786453pt;}
.y51{bottom:772.916661pt;}
.y77{bottom:780.463541pt;}
.y27{bottom:782.635416pt;}
.yb4{bottom:784.916657pt;}
.y9f{bottom:784.916661pt;}
.y247{bottom:787.223959pt;}
.yd9{bottom:788.588541pt;}
.y3{bottom:799.447917pt;}
.y50{bottom:801.713537pt;}
.y9e{bottom:801.713541pt;}
.y246{bottom:803.182288pt;}
.y76{bottom:809.885416pt;}
.yd8{bottom:816.343749pt;}
.y4f{bottom:818.515625pt;}
.y245{bottom:819.145833pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y9b{bottom:866.427069pt;}
.y4e{bottom:866.427084pt;}
.ha{height:24.932359pt;}
.h15{height:28.438367pt;}
.h9{height:28.687500pt;}
.h6{height:30.123276pt;}
.h11{height:31.459293pt;}
.hf{height:31.659632pt;}
.h12{height:31.659693pt;}
.h1{height:33.467583pt;}
.h7{height:33.467622pt;}
.h5{height:38.251167pt;}
.h23{height:40.881088pt;}
.h29{height:40.881135pt;}
.h26{height:40.881137pt;}
.h25{height:40.881174pt;}
.h10{height:41.596640pt;}
.h2{height:43.031250pt;}
.he{height:43.031303pt;}
.hd{height:43.031309pt;}
.hc{height:43.031325pt;}
.h19{height:43.031330pt;}
.h21{height:43.031367pt;}
.h14{height:43.031383pt;}
.h17{height:43.031389pt;}
.h18{height:43.031399pt;}
.h20{height:43.031405pt;}
.h1e{height:43.031421pt;}
.h1f{height:43.031517pt;}
.h1a{height:43.031554pt;}
.h16{height:43.031597pt;}
.h1c{height:43.031810pt;}
.h8{height:46.616020pt;}
.h3{height:60.962105pt;}
.h4{height:62.595730pt;}
.h2a{height:95.760000pt;}
.h28{height:718.197333pt;}
.h22{height:734.724000pt;}
.h27{height:750.120000pt;}
.h24{height:751.093333pt;}
.h1d{height:753.598667pt;}
.h13{height:755.182667pt;}
.hb{height:758.161333pt;}
.h1b{height:758.281333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x10{left:10.297416pt;}
.x11{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:73.921875pt;}
.xb{left:76.921875pt;}
.xe{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xf{left:109.921874pt;}
.xc{left:122.921875pt;}
.x1{left:124.718749pt;}
.x7{left:134.812500pt;}
.x6{left:142.921875pt;}
.x9{left:172.473959pt;}
.xa{left:232.239584pt;}
.x2{left:266.812500pt;}
.xd{left:499.697265pt;}
}




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