
    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_4422a351da9a3a5be721a0b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.055176;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_63b593069c51a704405aace5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.055176;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_d6c172f34f40ecbbc1ebed2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4fc79e0999df2423910a8e16.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_56e5b822edfe8f46bc67fcb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bce98e942c7d2ff955fe74a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_71ba247d334971d18772e727.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_5b0c824d6eeaee204afd4332.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_4e95857f4afbf9775d2ebb47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.827916;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_3f18b2b4ef61da364f575679.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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_62fe5cb4f26c21713927edeb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.805176;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_61274e2954b739ba0f73db77.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5cdeb523eae7ceaa1f39ce57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895508;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_2d3cbcf35c9bb8972961f3e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v2{vertical-align:-44.640000px;}
.v1{vertical-align:-29.820000px;}
.v6{vertical-align:-17.880000px;}
.v3{vertical-align:-15.720000px;}
.v5{vertical-align:-11.220000px;}
.v8{vertical-align:-8.940000px;}
.v4{vertical-align:-6.600000px;}
.v9{vertical-align:-4.500000px;}
.va{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.940000px;}
.ls13{letter-spacing:-1.548000px;}
.ls1a{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.037440px;}
.lse{letter-spacing:0.066000px;}
.ls18{letter-spacing:0.082080px;}
.ls4{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.756000px;}
.ls23{letter-spacing:13.985280px;}
.ls26{letter-spacing:14.105280px;}
.ls1f{letter-spacing:14.700000px;}
.ls25{letter-spacing:14.705280px;}
.ls14{letter-spacing:15.480000px;}
.ls1d{letter-spacing:18.324000px;}
.ls1e{letter-spacing:18.468000px;}
.ls1c{letter-spacing:19.044000px;}
.ls20{letter-spacing:19.745280px;}
.ls17{letter-spacing:23.345280px;}
.ls22{letter-spacing:26.945280px;}
.ls9{letter-spacing:30.545280px;}
.ls8{letter-spacing:37.025280px;}
.ls1b{letter-spacing:56.465280px;}
.ls19{letter-spacing:59.345280px;}
.ls12{letter-spacing:75.905280px;}
.ls16{letter-spacing:84.545280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-66.240000px;}
.ws1a{word-spacing:-52.747200px;}
.ws2{word-spacing:-30.024000px;}
.ws0{word-spacing:-26.621280px;}
.ws4{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.016000px;}
.ws15{word-spacing:-18.720120px;}
.wsa{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws14{word-spacing:-18.262320px;}
.ws6{word-spacing:-18.152520px;}
.ws7{word-spacing:-18.109320px;}
.ws1b{word-spacing:-17.956920px;}
.ws16{word-spacing:-17.694720px;}
.ws13{word-spacing:-17.586720px;}
.ws12{word-spacing:-14.638800px;}
.ws17{word-spacing:-12.960000px;}
.ws9{word-spacing:-12.204000px;}
.ws10{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.880000px;}
.ws18{word-spacing:-6.605280px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:70.866000px;}
.wsd{word-spacing:70.986000px;}
.wsf{word-spacing:71.046000px;}
.ws11{word-spacing:71.406000px;}
.wsc{word-spacing:167.094000px;}
.ws19{word-spacing:361.531680px;}
._2a{margin-left:-710.123280px;}
._26{margin-left:-56.880000px;}
._29{margin-left:-11.591040px;}
._1{margin-left:-10.145520px;}
._7{margin-left:-8.424000px;}
._1f{margin-left:-7.352640px;}
._6{margin-left:-6.264000px;}
._4{margin-left:-5.112000px;}
._3{margin-left:-3.160080px;}
._c{margin-left:-2.081520px;}
._5{margin-left:-1.015920px;}
._0{width:1.185840px;}
._2{width:2.220240px;}
._e{width:3.572160px;}
._13{width:4.641600px;}
._11{width:5.702400px;}
._10{width:7.146720px;}
._b{width:9.015840px;}
._a{width:10.584000px;}
._12{width:12.046320px;}
._f{width:13.667760px;}
._14{width:14.811600px;}
._d{width:16.452000px;}
._28{width:18.324000px;}
._15{width:19.455120px;}
._1a{width:20.612160px;}
._19{width:22.233600px;}
._8{width:23.976000px;}
._16{width:25.439040px;}
._17{width:27.186960px;}
._24{width:28.892880px;}
._22{width:30.072960px;}
._23{width:31.094640px;}
._27{width:32.457600px;}
._18{width:34.047360px;}
._21{width:35.053200px;}
._30{width:40.737600px;}
._31{width:41.826000px;}
._1c{width:43.086000px;}
._34{width:73.526400px;}
._33{width:74.652480px;}
._35{width:76.099680px;}
._36{width:91.742400px;}
._37{width:93.713760px;}
._1e{width:104.063040px;}
._2f{width:125.326800px;}
._2e{width:126.783360px;}
._2c{width:137.779200px;}
._2d{width:139.132080px;}
._1d{width:144.601920px;}
._20{width:162.148800px;}
._32{width:225.575040px;}
._25{width:266.165280px;}
._2b{width:463.150080px;}
._1b{width:467.561280px;}
._9{width:844.140000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:12.960000px;}
.fsc{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:63.304543px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.fsd{font-size:239.760000px;}
.yf7{bottom:-11.262783px;}
.y10c{bottom:-3.390000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:14.790000px;}
.ya2{bottom:17.355000px;}
.yfd{bottom:17.430000px;}
.yfa{bottom:20.490000px;}
.ybf{bottom:33.474000px;}
.ybc{bottom:33.480000px;}
.yb9{bottom:33.525000px;}
.y147{bottom:36.645000px;}
.y146{bottom:43.125000px;}
.yb5{bottom:44.385000px;}
.ya3{bottom:45.210000px;}
.y145{bottom:51.405000px;}
.y144{bottom:57.885000px;}
.y143{bottom:66.165000px;}
.y142{bottom:74.805000px;}
.y3{bottom:77.400000px;}
.ybb{bottom:81.000000px;}
.ybe{bottom:81.174000px;}
.yb8{bottom:81.225000px;}
.y141{bottom:83.265000px;}
.y140{bottom:89.745000px;}
.y2{bottom:93.276000px;}
.y14f{bottom:94.860000px;}
.y13f{bottom:97.125000px;}
.y14e{bottom:101.340000px;}
.y13e{bottom:104.505000px;}
.y14d{bottom:109.620000px;}
.y108{bottom:110.916000px;}
.y92{bottom:112.896000px;}
.y5d{bottom:113.076000px;}
.y129{bottom:113.256000px;}
.y123{bottom:113.436000px;}
.y14c{bottom:116.100000px;}
.y102{bottom:118.656000px;}
.y3e{bottom:122.436000px;}
.yec{bottom:122.796000px;}
.yf1{bottom:122.976000px;}
.ybd{bottom:123.336000px;}
.y14b{bottom:124.380000px;}
.y189{bottom:124.416000px;}
.y79{bottom:128.736000px;}
.yb7{bottom:128.745000px;}
.y6b{bottom:128.916000px;}
.y14a{bottom:130.860000px;}
.y174{bottom:132.516000px;}
.y107{bottom:134.496000px;}
.y2a{bottom:136.116000px;}
.y149{bottom:139.140000px;}
.y10a{bottom:140.976000px;}
.y101{bottom:142.236000px;}
.y10{bottom:144.396000px;}
.y117{bottom:144.576000px;}
.y52{bottom:144.756000px;}
.y84{bottom:144.936000px;}
.y100{bottom:145.296000px;}
.y175{bottom:146.016000px;}
.y148{bottom:147.600000px;}
.y160{bottom:148.395000px;}
.y13d{bottom:148.785000px;}
.y9c{bottom:154.515000px;}
.yad{bottom:154.545000px;}
.y106{bottom:157.710000px;}
.yff{bottom:158.970000px;}
.y91{bottom:160.410000px;}
.yf5{bottom:160.590000px;}
.y128{bottom:160.770000px;}
.y10e{bottom:167.250000px;}
.yd0{bottom:168.150000px;}
.yeb{bottom:170.310000px;}
.y13b{bottom:171.030000px;}
.y188{bottom:171.930000px;}
.ya7{bottom:172.545000px;}
.ya5{bottom:172.620000px;}
.yaa{bottom:172.650000px;}
.y183{bottom:174.090000px;}
.y78{bottom:176.250000px;}
.y5c{bottom:176.430000px;}
.y12f{bottom:176.610000px;}
.y122{bottom:176.790000px;}
.yae{bottom:177.810000px;}
.y3d{bottom:180.390000px;}
.y105{bottom:180.930000px;}
.y9d{bottom:182.415000px;}
.y29{bottom:191.730000px;}
.y124{bottom:192.090000px;}
.y51{bottom:192.270000px;}
.y12b{bottom:192.450000px;}
.y9b{bottom:195.765000px;}
.y173{bottom:195.870000px;}
.y97{bottom:197.460000px;}
.y104{bottom:197.670000px;}
.yaf{bottom:201.060000px;}
.yf{bottom:207.750000px;}
.y90{bottom:208.110000px;}
.y83{bottom:208.290000px;}
.y9e{bottom:210.315000px;}
.yfe{bottom:214.050000px;}
.ycf{bottom:215.850000px;}
.yea{bottom:218.010000px;}
.y187{bottom:219.450000px;}
.y182{bottom:221.790000px;}
.y13a{bottom:222.870000px;}
.y5b{bottom:223.950000px;}
.y131{bottom:224.130000px;}
.y9a{bottom:224.250000px;}
.yb0{bottom:224.310000px;}
.y96{bottom:227.010000px;}
.y28{bottom:228.090000px;}
.y3c{bottom:232.590000px;}
.yba{bottom:235.110000px;}
.y9f{bottom:238.215000px;}
.y50{bottom:239.790000px;}
.y12e{bottom:239.970000px;}
.y121{bottom:240.150000px;}
.ya6{bottom:242.430000px;}
.y172{bottom:243.390000px;}
.yb1{bottom:247.575000px;}
.y99{bottom:251.025000px;}
.yab{bottom:252.465000px;}
.y95{bottom:255.495000px;}
.y8f{bottom:255.630000px;}
.y12a{bottom:255.810000px;}
.y27{bottom:259.770000px;}
.ya8{bottom:260.745000px;}
.yac{bottom:263.085000px;}
.yce{bottom:263.370000px;}
.ya0{bottom:266.115000px;}
.y186{bottom:267.150000px;}
.yf2{bottom:269.310000px;}
.yb2{bottom:270.825000px;}
.ye{bottom:271.110000px;}
.yd5{bottom:271.470000px;}
.y6a{bottom:271.650000px;}
.y127{bottom:271.830000px;}
.y139{bottom:275.610000px;}
.ye9{bottom:281.370000px;}
.y103{bottom:281.910000px;}
.y3b{bottom:284.970000px;}
.y77{bottom:287.310000px;}
.y4f{bottom:287.490000px;}
.y98{bottom:289.545000px;}
.y15f{bottom:290.370000px;}
.ya1{bottom:294.015000px;}
.yb3{bottom:294.090000px;}
.y26{bottom:294.690000px;}
.y94{bottom:299.775000px;}
.ya9{bottom:299.850000px;}
.y8e{bottom:303.150000px;}
.yee{bottom:303.330000px;}
.y120{bottom:303.510000px;}
.y171{bottom:306.930000px;}
.ycd{bottom:310.890000px;}
.y138{bottom:312.150000px;}
.y185{bottom:314.670000px;}
.y181{bottom:316.830000px;}
.y111{bottom:318.990000px;}
.y6f{bottom:319.170000px;}
.y18c{bottom:319.350000px;}
.y25{bottom:323.310000px;}
.yd8{bottom:324.570000px;}
.ye8{bottom:328.890000px;}
.yd{bottom:334.650000px;}
.y76{bottom:334.830000px;}
.y69{bottom:335.010000px;}
.y82{bottom:335.190000px;}
.y3a{bottom:337.350000px;}
.yb6{bottom:348.330000px;}
.y4e{bottom:350.850000px;}
.y176{bottom:351.030000px;}
.y24{bottom:355.035000px;}
.ycc{bottom:358.635000px;}
.y137{bottom:364.395000px;}
.y180{bottom:364.575000px;}
.y170{bottom:364.755000px;}
.yd7{bottom:366.735000px;}
.y6e{bottom:366.915000px;}
.y11f{bottom:367.095000px;}
.ye7{bottom:376.635000px;}
.y184{bottom:378.075000px;}
.y15e{bottom:382.395000px;}
.y68{bottom:382.575000px;}
.y23{bottom:387.795000px;}
.y15d{bottom:388.875000px;}
.y39{bottom:389.595000px;}
.y15c{bottom:394.995000px;}
.yc{bottom:398.055000px;}
.y4d{bottom:398.415000px;}
.y81{bottom:398.595000px;}
.y126{bottom:398.775000px;}
.y136{bottom:400.935000px;}
.y154{bottom:401.865000px;}
.y15b{bottom:403.275000px;}
.ycb{bottom:406.155000px;}
.y15a{bottom:409.755000px;}
.y153{bottom:410.325000px;}
.yd6{bottom:414.255000px;}
.y6d{bottom:414.435000px;}
.y11e{bottom:414.615000px;}
.y159{bottom:416.055000px;}
.y16f{bottom:417.135000px;}
.y22{bottom:418.395000px;}
.y152{bottom:418.965000px;}
.ye6{bottom:424.155000px;}
.y158{bottom:424.335000px;}
.y151{bottom:425.445000px;}
.y17f{bottom:427.935000px;}
.y75{bottom:430.095000px;}
.y67{bottom:430.275000px;}
.y157{bottom:430.815000px;}
.y150{bottom:433.725000px;}
.y156{bottom:439.095000px;}
.y38{bottom:441.975000px;}
.y4c{bottom:446.115000px;}
.y155{bottom:446.655000px;}
.y21{bottom:451.335000px;}
.y135{bottom:453.315000px;}
.yb{bottom:459.255000px;}
.y110{bottom:461.775000px;}
.y80{bottom:461.955000px;}
.y125{bottom:462.135000px;}
.y16e{bottom:469.335000px;}
.yca{bottom:469.515000px;}
.ye5{bottom:471.675000px;}
.y17e{bottom:475.455000px;}
.y66{bottom:477.795000px;}
.y11d{bottom:477.975000px;}
.y20{bottom:481.935000px;}
.y134{bottom:489.675000px;}
.y8d{bottom:492.915000px;}
.ya4{bottom:493.020000px;}
.y4b{bottom:493.635000px;}
.y130{bottom:493.815000px;}
.y37{bottom:494.175000px;}
.y5a{bottom:509.475000px;}
.y7f{bottom:509.655000px;}
.y1f{bottom:513.615000px;}
.yc9{bottom:517.215000px;}
.ye4{bottom:519.375000px;}
.y16d{bottom:521.715000px;}
.y17d{bottom:522.615000px;}
.ya{bottom:522.795000px;}
.y12d{bottom:523.155000px;}
.y74{bottom:525.315000px;}
.y65{bottom:525.495000px;}
.y4a{bottom:541.155000px;}
.y11c{bottom:541.515000px;}
.yed{bottom:542.055000px;}
.y1e{bottom:546.375000px;}
.y36{bottom:546.555000px;}
.y12c{bottom:556.635000px;}
.y59{bottom:556.995000px;}
.y7e{bottom:557.175000px;}
.yc8{bottom:564.735000px;}
.ye3{bottom:566.895000px;}
.y8b{bottom:570.135000px;}
.y9{bottom:570.315000px;}
.y73{bottom:572.835000px;}
.y64{bottom:573.015000px;}
.y18b{bottom:573.195000px;}
.y16c{bottom:573.555000px;}
.y1d{bottom:577.155000px;}
.yf4{bottom:588.675000px;}
.y49{bottom:588.855000px;}
.y133{bottom:593.895000px;}
.y10b{bottom:594.720000px;}
.y35{bottom:598.935000px;}
.y58{bottom:604.695000px;}
.y11b{bottom:604.875000px;}
.y1c{bottom:608.835000px;}
.y8a{bottom:609.735000px;}
.ye2{bottom:614.415000px;}
.y8{bottom:617.865000px;}
.y13c{bottom:618.840000px;}
.y6c{bottom:620.565000px;}
.y18a{bottom:620.745000px;}
.y16b{bottom:626.325000px;}
.yc7{bottom:628.125000px;}
.y48{bottom:636.405000px;}
.y10d{bottom:636.585000px;}
.y132{bottom:637.665000px;}
.y1b{bottom:640.545000px;}
.y89{bottom:641.445000px;}
.y34{bottom:651.165000px;}
.y57{bottom:652.245000px;}
.y7d{bottom:652.425000px;}
.y17c{bottom:665.385000px;}
.y72{bottom:668.085000px;}
.y11a{bottom:668.265000px;}
.y88{bottom:673.125000px;}
.yc6{bottom:675.825000px;}
.ye1{bottom:677.985000px;}
.y16a{bottom:678.705000px;}
.y7{bottom:683.565000px;}
.yf0{bottom:683.925000px;}
.y47{bottom:684.105000px;}
.y1a{bottom:695.985000px;}
.y116{bottom:699.405000px;}
.y115{bottom:699.765000px;}
.y56{bottom:699.945000px;}
.y7c{bottom:700.125000px;}
.y112{bottom:700.485000px;}
.y10f{bottom:701.745000px;}
.y33{bottom:703.545000px;}
.y87{bottom:704.985000px;}
.y17b{bottom:712.905000px;}
.y71{bottom:715.605000px;}
.y109{bottom:715.785000px;}
.yc5{bottom:723.345000px;}
.ye0{bottom:725.505000px;}
.y169{bottom:730.905000px;}
.yef{bottom:731.445000px;}
.y61{bottom:731.625000px;}
.y119{bottom:731.805000px;}
.y32{bottom:739.905000px;}
.y19{bottom:743.685000px;}
.y46{bottom:747.465000px;}
.y6{bottom:749.445000px;}
.y17a{bottom:760.605000px;}
.y70{bottom:763.305000px;}
.yc4{bottom:771.045000px;}
.ydf{bottom:773.025000px;}
.y60{bottom:779.145000px;}
.y168{bottom:783.285000px;}
.y31{bottom:792.285000px;}
.y45{bottom:794.985000px;}
.y118{bottom:795.165000px;}
.y18{bottom:798.045000px;}
.y179{bottom:808.125000px;}
.y63{bottom:810.825000px;}
.yc3{bottom:818.565000px;}
.yde{bottom:820.725000px;}
.y8c{bottom:825.945000px;}
.y93{bottom:826.200000px;}
.yd4{bottom:826.665000px;}
.y7b{bottom:826.845000px;}
.y5{bottom:828.645000px;}
.yf3{bottom:828.825000px;}
.yf6{bottom:829.035000px;}
.y167{bottom:835.665000px;}
.y114{bottom:842.505000px;}
.y44{bottom:842.685000px;}
.y30{bottom:844.665000px;}
.y17{bottom:847.725000px;}
.y178{bottom:855.645000px;}
.y62{bottom:858.525000px;}
.ydd{bottom:868.245000px;}
.yd3{bottom:874.185000px;}
.y7a{bottom:874.365000px;}
.y16{bottom:879.630000px;}
.yc2{bottom:881.970000px;}
.y166{bottom:887.370000px;}
.y43{bottom:890.250000px;}
.y4{bottom:894.570000px;}
.y113{bottom:895.830000px;}
.y2f{bottom:896.910000px;}
.y177{bottom:903.930000px;}
.y5f{bottom:906.090000px;}
.y15{bottom:911.310000px;}
.ydc{bottom:915.990000px;}
.yc1{bottom:918.690000px;}
.yd2{bottom:921.930000px;}
.y42{bottom:937.770000px;}
.y165{bottom:940.290000px;}
.y2e{bottom:949.290000px;}
.y55{bottom:953.610000px;}
.ydb{bottom:963.510000px;}
.yd1{bottom:969.450000px;}
.y14{bottom:971.430000px;}
.y164{bottom:976.650000px;}
.y41{bottom:985.470000px;}
.y5e{bottom:1001.310000px;}
.y2d{bottom:1001.490000px;}
.yda{bottom:1011.030000px;}
.yf9{bottom:1011.060000px;}
.y54{bottom:1017.150000px;}
.y13{bottom:1021.290000px;}
.y163{bottom:1029.030000px;}
.yc0{bottom:1030.470000px;}
.yf8{bottom:1031.550000px;}
.y40{bottom:1048.830000px;}
.y12{bottom:1052.970000px;}
.y2c{bottom:1053.870000px;}
.y53{bottom:1064.670000px;}
.y162{bottom:1065.570000px;}
.yfc{bottom:1081.440000px;}
.y86{bottom:1088.430000px;}
.yd9{bottom:1097.790000px;}
.yfb{bottom:1098.870000px;}
.y11{bottom:1099.410000px;}
.y2b{bottom:1111.650000px;}
.y3f{bottom:1112.190000px;}
.y161{bottom:1117.770000px;}
.y85{bottom:1120.110000px;}
.y1{bottom:1144.620000px;}
.h20{height:0.900015px;}
.h21{height:10.827422px;}
.h23{height:20.024297px;}
.h25{height:21.312070px;}
.h24{height:24.780937px;}
.h1e{height:30.339844px;}
.h1d{height:43.554375px;}
.h2{height:45.509766px;}
.h12{height:46.409766px;}
.h11{height:46.529766px;}
.h1c{height:47.160000px;}
.h19{height:47.880243px;}
.h1f{height:48.410156px;}
.h10{height:50.364141px;}
.h1a{height:53.280000px;}
.h17{height:58.154062px;}
.hd{height:59.221406px;}
.hc{height:59.415469px;}
.he{height:59.932969px;}
.h1b{height:60.679688px;}
.ha{height:64.582031px;}
.hb{height:69.086250px;}
.h3{height:75.093750px;}
.h5{height:86.642227px;}
.h9{height:96.873047px;}
.h6{height:99.874688px;}
.h14{height:110.880000px;}
.h16{height:110.916000px;}
.h15{height:111.060000px;}
.h8{height:112.640625px;}
.h7{height:125.406562px;}
.h4{height:137.421562px;}
.h13{height:158.610000px;}
.h26{height:202.063359px;}
.h18{height:308.999306px;}
.hf{height:315.000000px;}
.h22{height:459.900000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:2.700000px;}
.w9{width:80.820000px;}
.w8{width:99.900000px;}
.w5{width:135.936000px;}
.w6{width:136.080000px;}
.w7{width:435.576702px;}
.w3{width:596.700000px;}
.w4{width:604.800000px;}
.w1{width:939.750000px;}
.wa{width:939.779972px;}
.w2{width:939.779986px;}
.w0{width:939.780000px;}
.x0{left:0.000000px;}
.x4d{left:2.550000px;}
.x37{left:7.740000px;}
.x2d{left:9.930000px;}
.x2c{left:17.385000px;}
.x35{left:32.370000px;}
.x2b{left:42.585000px;}
.x30{left:62.280000px;}
.x27{left:68.400000px;}
.x44{left:78.090000px;}
.x3{left:127.655986px;}
.x8{left:130.715986px;}
.x48{left:132.695986px;}
.x64{left:135.971986px;}
.x5f{left:140.075986px;}
.x65{left:142.811986px;}
.x51{left:144.215986px;}
.x60{left:146.735986px;}
.x66{left:149.507986px;}
.x6a{left:152.489986px;}
.xb{left:154.649986px;}
.x1e{left:159.149986px;}
.x28{left:162.075000px;}
.x1d{left:163.649986px;}
.x14{left:167.969986px;}
.x1f{left:171.209986px;}
.x1b{left:172.649986px;}
.x7{left:173.729986px;}
.x20{left:175.709986px;}
.x45{left:176.969986px;}
.x4f{left:178.769986px;}
.x1c{left:181.649986px;}
.x56{left:186.149986px;}
.x21{left:187.589986px;}
.x58{left:190.649986px;}
.x6{left:192.989986px;}
.x4b{left:198.569986px;}
.x29{left:212.730000px;}
.x6b{left:217.649986px;}
.x5{left:219.089986px;}
.x49{left:221.069986px;}
.x11{left:227.729986px;}
.x2e{left:234.795000px;}
.x10{left:241.769986px;}
.x40{left:246.809986px;}
.x36{left:248.580000px;}
.x15{left:255.449986px;}
.x4e{left:260.129986px;}
.x59{left:262.649986px;}
.x38{left:265.035000px;}
.x2f{left:271.365000px;}
.x13{left:276.554986px;}
.x31{left:282.135000px;}
.x3d{left:287.174986px;}
.x5a{left:289.694986px;}
.x12{left:291.134986px;}
.x53{left:296.354986px;}
.x19{left:301.034986px;}
.x2a{left:306.390000px;}
.x57{left:315.794986px;}
.x17{left:317.234986px;}
.x54{left:318.854986px;}
.x32{left:330.585000px;}
.xf{left:337.934986px;}
.xc{left:344.594986px;}
.x24{left:348.194986px;}
.x23{left:366.014986px;}
.x16{left:371.774986px;}
.x67{left:374.759986px;}
.xd{left:392.474986px;}
.x39{left:402.015000px;}
.x46{left:413.174972px;}
.x47{left:418.934986px;}
.x18{left:425.054986px;}
.x9{left:433.334986px;}
.x1a{left:459.464986px;}
.xa{left:470.084986px;}
.xe{left:483.584986px;}
.x33{left:496.770000px;}
.x68{left:516.929986px;}
.x42{left:525.215475px;}
.x3a{left:538.845000px;}
.x34{left:546.630000px;}
.x43{left:569.160000px;}
.x5c{left:587.519986px;}
.x61{left:589.499986px;}
.x41{left:591.224986px;}
.x5d{left:594.359986px;}
.x62{left:596.339986px;}
.x5e{left:601.019986px;}
.x63{left:602.999986px;}
.x69{left:623.129986px;}
.x6c{left:647.429986px;}
.x3b{left:675.690000px;}
.x4{left:727.709986px;}
.x25{left:753.269986px;}
.x26{left:759.929986px;}
.x50{left:782.429986px;}
.x4a{left:785.669986px;}
.x3c{left:794.849986px;}
.x22{left:797.549986px;}
.x3f{left:801.719986px;}
.x52{left:802.799986px;}
.x2{left:804.959986px;}
.x5b{left:807.299986px;}
.x1{left:812.519986px;}
.x4c{left:827.459986px;}
.x55{left:829.799986px;}
.x3e{left:845.459986px;}
@media print{
.v2{vertical-align:-39.680000pt;}
.v1{vertical-align:-26.506667pt;}
.v6{vertical-align:-15.893333pt;}
.v3{vertical-align:-13.973333pt;}
.v5{vertical-align:-9.973333pt;}
.v8{vertical-align:-7.946667pt;}
.v4{vertical-align:-5.866667pt;}
.v9{vertical-align:-4.000000pt;}
.va{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.946667pt;}
.ls13{letter-spacing:-1.376000pt;}
.ls1a{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.058667pt;}
.ls18{letter-spacing:0.072960pt;}
.ls4{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.672000pt;}
.ls23{letter-spacing:12.431360pt;}
.ls26{letter-spacing:12.538027pt;}
.ls1f{letter-spacing:13.066667pt;}
.ls25{letter-spacing:13.071360pt;}
.ls14{letter-spacing:13.760000pt;}
.ls1d{letter-spacing:16.288000pt;}
.ls1e{letter-spacing:16.416000pt;}
.ls1c{letter-spacing:16.928000pt;}
.ls20{letter-spacing:17.551360pt;}
.ls17{letter-spacing:20.751360pt;}
.ls22{letter-spacing:23.951360pt;}
.ls9{letter-spacing:27.151360pt;}
.ls8{letter-spacing:32.911360pt;}
.ls1b{letter-spacing:50.191360pt;}
.ls19{letter-spacing:52.751360pt;}
.ls12{letter-spacing:67.471360pt;}
.ls16{letter-spacing:75.151360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-46.886400pt;}
.ws2{word-spacing:-26.688000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws4{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws15{word-spacing:-16.640107pt;}
.wsa{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws14{word-spacing:-16.233173pt;}
.ws6{word-spacing:-16.135573pt;}
.ws7{word-spacing:-16.097173pt;}
.ws1b{word-spacing:-15.961707pt;}
.ws16{word-spacing:-15.728640pt;}
.ws13{word-spacing:-15.632640pt;}
.ws12{word-spacing:-13.012267pt;}
.ws17{word-spacing:-11.520000pt;}
.ws9{word-spacing:-10.848000pt;}
.ws10{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.560000pt;}
.ws18{word-spacing:-5.871360pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:62.992000pt;}
.wsd{word-spacing:63.098667pt;}
.wsf{word-spacing:63.152000pt;}
.ws11{word-spacing:63.472000pt;}
.wsc{word-spacing:148.528000pt;}
.ws19{word-spacing:321.361493pt;}
._2a{margin-left:-631.220693pt;}
._26{margin-left:-50.560000pt;}
._29{margin-left:-10.303147pt;}
._1{margin-left:-9.018240pt;}
._7{margin-left:-7.488000pt;}
._1f{margin-left:-6.535680pt;}
._6{margin-left:-5.568000pt;}
._4{margin-left:-4.544000pt;}
._3{margin-left:-2.808960pt;}
._c{margin-left:-1.850240pt;}
._5{margin-left:-0.903040pt;}
._0{width:1.054080pt;}
._2{width:1.973547pt;}
._e{width:3.175253pt;}
._13{width:4.125867pt;}
._11{width:5.068800pt;}
._10{width:6.352640pt;}
._b{width:8.014080pt;}
._a{width:9.408000pt;}
._12{width:10.707840pt;}
._f{width:12.149120pt;}
._14{width:13.165867pt;}
._d{width:14.624000pt;}
._28{width:16.288000pt;}
._15{width:17.293440pt;}
._1a{width:18.321920pt;}
._19{width:19.763200pt;}
._8{width:21.312000pt;}
._16{width:22.612480pt;}
._17{width:24.166187pt;}
._24{width:25.682560pt;}
._22{width:26.731520pt;}
._23{width:27.639680pt;}
._27{width:28.851200pt;}
._18{width:30.264320pt;}
._21{width:31.158400pt;}
._30{width:36.211200pt;}
._31{width:37.178667pt;}
._1c{width:38.298667pt;}
._34{width:65.356800pt;}
._33{width:66.357760pt;}
._35{width:67.644160pt;}
._36{width:81.548800pt;}
._37{width:83.301120pt;}
._1e{width:92.500480pt;}
._2f{width:111.401600pt;}
._2e{width:112.696320pt;}
._2c{width:122.470400pt;}
._2d{width:123.672960pt;}
._1d{width:128.535040pt;}
._20{width:144.132267pt;}
._32{width:200.511147pt;}
._25{width:236.591360pt;}
._2b{width:411.688960pt;}
._1b{width:415.610027pt;}
._9{width:750.346667pt;}
.fsb{font-size:11.520000pt;}
.fsc{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:56.270705pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.fsd{font-size:213.120000pt;}
.yf7{bottom:-10.011363pt;}
.y10c{bottom:-3.013333pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:13.146667pt;}
.ya2{bottom:15.426667pt;}
.yfd{bottom:15.493333pt;}
.yfa{bottom:18.213333pt;}
.ybf{bottom:29.754667pt;}
.ybc{bottom:29.760000pt;}
.yb9{bottom:29.800000pt;}
.y147{bottom:32.573333pt;}
.y146{bottom:38.333333pt;}
.yb5{bottom:39.453333pt;}
.ya3{bottom:40.186667pt;}
.y145{bottom:45.693333pt;}
.y144{bottom:51.453333pt;}
.y143{bottom:58.813333pt;}
.y142{bottom:66.493333pt;}
.y3{bottom:68.800000pt;}
.ybb{bottom:72.000000pt;}
.ybe{bottom:72.154667pt;}
.yb8{bottom:72.200000pt;}
.y141{bottom:74.013333pt;}
.y140{bottom:79.773333pt;}
.y2{bottom:82.912000pt;}
.y14f{bottom:84.320000pt;}
.y13f{bottom:86.333333pt;}
.y14e{bottom:90.080000pt;}
.y13e{bottom:92.893333pt;}
.y14d{bottom:97.440000pt;}
.y108{bottom:98.592000pt;}
.y92{bottom:100.352000pt;}
.y5d{bottom:100.512000pt;}
.y129{bottom:100.672000pt;}
.y123{bottom:100.832000pt;}
.y14c{bottom:103.200000pt;}
.y102{bottom:105.472000pt;}
.y3e{bottom:108.832000pt;}
.yec{bottom:109.152000pt;}
.yf1{bottom:109.312000pt;}
.ybd{bottom:109.632000pt;}
.y14b{bottom:110.560000pt;}
.y189{bottom:110.592000pt;}
.y79{bottom:114.432000pt;}
.yb7{bottom:114.440000pt;}
.y6b{bottom:114.592000pt;}
.y14a{bottom:116.320000pt;}
.y174{bottom:117.792000pt;}
.y107{bottom:119.552000pt;}
.y2a{bottom:120.992000pt;}
.y149{bottom:123.680000pt;}
.y10a{bottom:125.312000pt;}
.y101{bottom:126.432000pt;}
.y10{bottom:128.352000pt;}
.y117{bottom:128.512000pt;}
.y52{bottom:128.672000pt;}
.y84{bottom:128.832000pt;}
.y100{bottom:129.152000pt;}
.y175{bottom:129.792000pt;}
.y148{bottom:131.200000pt;}
.y160{bottom:131.906667pt;}
.y13d{bottom:132.253333pt;}
.y9c{bottom:137.346667pt;}
.yad{bottom:137.373333pt;}
.y106{bottom:140.186667pt;}
.yff{bottom:141.306667pt;}
.y91{bottom:142.586667pt;}
.yf5{bottom:142.746667pt;}
.y128{bottom:142.906667pt;}
.y10e{bottom:148.666667pt;}
.yd0{bottom:149.466667pt;}
.yeb{bottom:151.386667pt;}
.y13b{bottom:152.026667pt;}
.y188{bottom:152.826667pt;}
.ya7{bottom:153.373333pt;}
.ya5{bottom:153.440000pt;}
.yaa{bottom:153.466667pt;}
.y183{bottom:154.746667pt;}
.y78{bottom:156.666667pt;}
.y5c{bottom:156.826667pt;}
.y12f{bottom:156.986667pt;}
.y122{bottom:157.146667pt;}
.yae{bottom:158.053333pt;}
.y3d{bottom:160.346667pt;}
.y105{bottom:160.826667pt;}
.y9d{bottom:162.146667pt;}
.y29{bottom:170.426667pt;}
.y124{bottom:170.746667pt;}
.y51{bottom:170.906667pt;}
.y12b{bottom:171.066667pt;}
.y9b{bottom:174.013333pt;}
.y173{bottom:174.106667pt;}
.y97{bottom:175.520000pt;}
.y104{bottom:175.706667pt;}
.yaf{bottom:178.720000pt;}
.yf{bottom:184.666667pt;}
.y90{bottom:184.986667pt;}
.y83{bottom:185.146667pt;}
.y9e{bottom:186.946667pt;}
.yfe{bottom:190.266667pt;}
.ycf{bottom:191.866667pt;}
.yea{bottom:193.786667pt;}
.y187{bottom:195.066667pt;}
.y182{bottom:197.146667pt;}
.y13a{bottom:198.106667pt;}
.y5b{bottom:199.066667pt;}
.y131{bottom:199.226667pt;}
.y9a{bottom:199.333333pt;}
.yb0{bottom:199.386667pt;}
.y96{bottom:201.786667pt;}
.y28{bottom:202.746667pt;}
.y3c{bottom:206.746667pt;}
.yba{bottom:208.986667pt;}
.y9f{bottom:211.746667pt;}
.y50{bottom:213.146667pt;}
.y12e{bottom:213.306667pt;}
.y121{bottom:213.466667pt;}
.ya6{bottom:215.493333pt;}
.y172{bottom:216.346667pt;}
.yb1{bottom:220.066667pt;}
.y99{bottom:223.133333pt;}
.yab{bottom:224.413333pt;}
.y95{bottom:227.106667pt;}
.y8f{bottom:227.226667pt;}
.y12a{bottom:227.386667pt;}
.y27{bottom:230.906667pt;}
.ya8{bottom:231.773333pt;}
.yac{bottom:233.853333pt;}
.yce{bottom:234.106667pt;}
.ya0{bottom:236.546667pt;}
.y186{bottom:237.466667pt;}
.yf2{bottom:239.386667pt;}
.yb2{bottom:240.733333pt;}
.ye{bottom:240.986667pt;}
.yd5{bottom:241.306667pt;}
.y6a{bottom:241.466667pt;}
.y127{bottom:241.626667pt;}
.y139{bottom:244.986667pt;}
.ye9{bottom:250.106667pt;}
.y103{bottom:250.586667pt;}
.y3b{bottom:253.306667pt;}
.y77{bottom:255.386667pt;}
.y4f{bottom:255.546667pt;}
.y98{bottom:257.373333pt;}
.y15f{bottom:258.106667pt;}
.ya1{bottom:261.346667pt;}
.yb3{bottom:261.413333pt;}
.y26{bottom:261.946667pt;}
.y94{bottom:266.466667pt;}
.ya9{bottom:266.533333pt;}
.y8e{bottom:269.466667pt;}
.yee{bottom:269.626667pt;}
.y120{bottom:269.786667pt;}
.y171{bottom:272.826667pt;}
.ycd{bottom:276.346667pt;}
.y138{bottom:277.466667pt;}
.y185{bottom:279.706667pt;}
.y181{bottom:281.626667pt;}
.y111{bottom:283.546667pt;}
.y6f{bottom:283.706667pt;}
.y18c{bottom:283.866667pt;}
.y25{bottom:287.386667pt;}
.yd8{bottom:288.506667pt;}
.ye8{bottom:292.346667pt;}
.yd{bottom:297.466667pt;}
.y76{bottom:297.626667pt;}
.y69{bottom:297.786667pt;}
.y82{bottom:297.946667pt;}
.y3a{bottom:299.866667pt;}
.yb6{bottom:309.626667pt;}
.y4e{bottom:311.866667pt;}
.y176{bottom:312.026667pt;}
.y24{bottom:315.586667pt;}
.ycc{bottom:318.786667pt;}
.y137{bottom:323.906667pt;}
.y180{bottom:324.066667pt;}
.y170{bottom:324.226667pt;}
.yd7{bottom:325.986667pt;}
.y6e{bottom:326.146667pt;}
.y11f{bottom:326.306667pt;}
.ye7{bottom:334.786667pt;}
.y184{bottom:336.066667pt;}
.y15e{bottom:339.906667pt;}
.y68{bottom:340.066667pt;}
.y23{bottom:344.706667pt;}
.y15d{bottom:345.666667pt;}
.y39{bottom:346.306667pt;}
.y15c{bottom:351.106667pt;}
.yc{bottom:353.826667pt;}
.y4d{bottom:354.146667pt;}
.y81{bottom:354.306667pt;}
.y126{bottom:354.466667pt;}
.y136{bottom:356.386667pt;}
.y154{bottom:357.213333pt;}
.y15b{bottom:358.466667pt;}
.ycb{bottom:361.026667pt;}
.y15a{bottom:364.226667pt;}
.y153{bottom:364.733333pt;}
.yd6{bottom:368.226667pt;}
.y6d{bottom:368.386667pt;}
.y11e{bottom:368.546667pt;}
.y159{bottom:369.826667pt;}
.y16f{bottom:370.786667pt;}
.y22{bottom:371.906667pt;}
.y152{bottom:372.413333pt;}
.ye6{bottom:377.026667pt;}
.y158{bottom:377.186667pt;}
.y151{bottom:378.173333pt;}
.y17f{bottom:380.386667pt;}
.y75{bottom:382.306667pt;}
.y67{bottom:382.466667pt;}
.y157{bottom:382.946667pt;}
.y150{bottom:385.533333pt;}
.y156{bottom:390.306667pt;}
.y38{bottom:392.866667pt;}
.y4c{bottom:396.546667pt;}
.y155{bottom:397.026667pt;}
.y21{bottom:401.186667pt;}
.y135{bottom:402.946667pt;}
.yb{bottom:408.226667pt;}
.y110{bottom:410.466667pt;}
.y80{bottom:410.626667pt;}
.y125{bottom:410.786667pt;}
.y16e{bottom:417.186667pt;}
.yca{bottom:417.346667pt;}
.ye5{bottom:419.266667pt;}
.y17e{bottom:422.626667pt;}
.y66{bottom:424.706667pt;}
.y11d{bottom:424.866667pt;}
.y20{bottom:428.386667pt;}
.y134{bottom:435.266667pt;}
.y8d{bottom:438.146667pt;}
.ya4{bottom:438.240000pt;}
.y4b{bottom:438.786667pt;}
.y130{bottom:438.946667pt;}
.y37{bottom:439.266667pt;}
.y5a{bottom:452.866667pt;}
.y7f{bottom:453.026667pt;}
.y1f{bottom:456.546667pt;}
.yc9{bottom:459.746667pt;}
.ye4{bottom:461.666667pt;}
.y16d{bottom:463.746667pt;}
.y17d{bottom:464.546667pt;}
.ya{bottom:464.706667pt;}
.y12d{bottom:465.026667pt;}
.y74{bottom:466.946667pt;}
.y65{bottom:467.106667pt;}
.y4a{bottom:481.026667pt;}
.y11c{bottom:481.346667pt;}
.yed{bottom:481.826667pt;}
.y1e{bottom:485.666667pt;}
.y36{bottom:485.826667pt;}
.y12c{bottom:494.786667pt;}
.y59{bottom:495.106667pt;}
.y7e{bottom:495.266667pt;}
.yc8{bottom:501.986667pt;}
.ye3{bottom:503.906667pt;}
.y8b{bottom:506.786667pt;}
.y9{bottom:506.946667pt;}
.y73{bottom:509.186667pt;}
.y64{bottom:509.346667pt;}
.y18b{bottom:509.506667pt;}
.y16c{bottom:509.826667pt;}
.y1d{bottom:513.026667pt;}
.yf4{bottom:523.266667pt;}
.y49{bottom:523.426667pt;}
.y133{bottom:527.906667pt;}
.y10b{bottom:528.640000pt;}
.y35{bottom:532.386667pt;}
.y58{bottom:537.506667pt;}
.y11b{bottom:537.666667pt;}
.y1c{bottom:541.186667pt;}
.y8a{bottom:541.986667pt;}
.ye2{bottom:546.146667pt;}
.y8{bottom:549.213333pt;}
.y13c{bottom:550.080000pt;}
.y6c{bottom:551.613333pt;}
.y18a{bottom:551.773333pt;}
.y16b{bottom:556.733333pt;}
.yc7{bottom:558.333333pt;}
.y48{bottom:565.693333pt;}
.y10d{bottom:565.853333pt;}
.y132{bottom:566.813333pt;}
.y1b{bottom:569.373333pt;}
.y89{bottom:570.173333pt;}
.y34{bottom:578.813333pt;}
.y57{bottom:579.773333pt;}
.y7d{bottom:579.933333pt;}
.y17c{bottom:591.453333pt;}
.y72{bottom:593.853333pt;}
.y11a{bottom:594.013333pt;}
.y88{bottom:598.333333pt;}
.yc6{bottom:600.733333pt;}
.ye1{bottom:602.653333pt;}
.y16a{bottom:603.293333pt;}
.y7{bottom:607.613333pt;}
.yf0{bottom:607.933333pt;}
.y47{bottom:608.093333pt;}
.y1a{bottom:618.653333pt;}
.y116{bottom:621.693333pt;}
.y115{bottom:622.013333pt;}
.y56{bottom:622.173333pt;}
.y7c{bottom:622.333333pt;}
.y112{bottom:622.653333pt;}
.y10f{bottom:623.773333pt;}
.y33{bottom:625.373333pt;}
.y87{bottom:626.653333pt;}
.y17b{bottom:633.693333pt;}
.y71{bottom:636.093333pt;}
.y109{bottom:636.253333pt;}
.yc5{bottom:642.973333pt;}
.ye0{bottom:644.893333pt;}
.y169{bottom:649.693333pt;}
.yef{bottom:650.173333pt;}
.y61{bottom:650.333333pt;}
.y119{bottom:650.493333pt;}
.y32{bottom:657.693333pt;}
.y19{bottom:661.053333pt;}
.y46{bottom:664.413333pt;}
.y6{bottom:666.173333pt;}
.y17a{bottom:676.093333pt;}
.y70{bottom:678.493333pt;}
.yc4{bottom:685.373333pt;}
.ydf{bottom:687.133333pt;}
.y60{bottom:692.573333pt;}
.y168{bottom:696.253333pt;}
.y31{bottom:704.253333pt;}
.y45{bottom:706.653333pt;}
.y118{bottom:706.813333pt;}
.y18{bottom:709.373333pt;}
.y179{bottom:718.333333pt;}
.y63{bottom:720.733333pt;}
.yc3{bottom:727.613333pt;}
.yde{bottom:729.533333pt;}
.y8c{bottom:734.173333pt;}
.y93{bottom:734.400000pt;}
.yd4{bottom:734.813333pt;}
.y7b{bottom:734.973333pt;}
.y5{bottom:736.573333pt;}
.yf3{bottom:736.733333pt;}
.yf6{bottom:736.920000pt;}
.y167{bottom:742.813333pt;}
.y114{bottom:748.893333pt;}
.y44{bottom:749.053333pt;}
.y30{bottom:750.813333pt;}
.y17{bottom:753.533333pt;}
.y178{bottom:760.573333pt;}
.y62{bottom:763.133333pt;}
.ydd{bottom:771.773333pt;}
.yd3{bottom:777.053333pt;}
.y7a{bottom:777.213333pt;}
.y16{bottom:781.893333pt;}
.yc2{bottom:783.973333pt;}
.y166{bottom:788.773333pt;}
.y43{bottom:791.333333pt;}
.y4{bottom:795.173333pt;}
.y113{bottom:796.293333pt;}
.y2f{bottom:797.253333pt;}
.y177{bottom:803.493333pt;}
.y5f{bottom:805.413333pt;}
.y15{bottom:810.053333pt;}
.ydc{bottom:814.213333pt;}
.yc1{bottom:816.613333pt;}
.yd2{bottom:819.493333pt;}
.y42{bottom:833.573333pt;}
.y165{bottom:835.813333pt;}
.y2e{bottom:843.813333pt;}
.y55{bottom:847.653333pt;}
.ydb{bottom:856.453333pt;}
.yd1{bottom:861.733333pt;}
.y14{bottom:863.493333pt;}
.y164{bottom:868.133333pt;}
.y41{bottom:875.973333pt;}
.y5e{bottom:890.053333pt;}
.y2d{bottom:890.213333pt;}
.yda{bottom:898.693333pt;}
.yf9{bottom:898.720000pt;}
.y54{bottom:904.133333pt;}
.y13{bottom:907.813333pt;}
.y163{bottom:914.693333pt;}
.yc0{bottom:915.973333pt;}
.yf8{bottom:916.933333pt;}
.y40{bottom:932.293333pt;}
.y12{bottom:935.973333pt;}
.y2c{bottom:936.773333pt;}
.y53{bottom:946.373333pt;}
.y162{bottom:947.173333pt;}
.yfc{bottom:961.280000pt;}
.y86{bottom:967.493333pt;}
.yd9{bottom:975.813333pt;}
.yfb{bottom:976.773333pt;}
.y11{bottom:977.253333pt;}
.y2b{bottom:988.133333pt;}
.y3f{bottom:988.613333pt;}
.y161{bottom:993.573333pt;}
.y85{bottom:995.653333pt;}
.y1{bottom:1017.440000pt;}
.h20{height:0.800013pt;}
.h21{height:9.624375pt;}
.h23{height:17.799375pt;}
.h25{height:18.944062pt;}
.h24{height:22.027500pt;}
.h1e{height:26.968750pt;}
.h1d{height:38.715000pt;}
.h2{height:40.453125pt;}
.h12{height:41.253125pt;}
.h11{height:41.359792pt;}
.h1c{height:41.920000pt;}
.h19{height:42.560216pt;}
.h1f{height:43.031250pt;}
.h10{height:44.768125pt;}
.h1a{height:47.360000pt;}
.h17{height:51.692500pt;}
.hd{height:52.641250pt;}
.hc{height:52.813750pt;}
.he{height:53.273750pt;}
.h1b{height:53.937500pt;}
.ha{height:57.406250pt;}
.hb{height:61.410000pt;}
.h3{height:66.750000pt;}
.h5{height:77.015312pt;}
.h9{height:86.109375pt;}
.h6{height:88.777500pt;}
.h14{height:98.560000pt;}
.h16{height:98.592000pt;}
.h15{height:98.720000pt;}
.h8{height:100.125000pt;}
.h7{height:111.472500pt;}
.h4{height:122.152500pt;}
.h13{height:140.986667pt;}
.h26{height:179.611875pt;}
.h18{height:274.666049pt;}
.hf{height:280.000000pt;}
.h22{height:408.800000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:2.400000pt;}
.w9{width:71.840000pt;}
.w8{width:88.800000pt;}
.w5{width:120.832000pt;}
.w6{width:120.960000pt;}
.w7{width:387.179291pt;}
.w3{width:530.400000pt;}
.w4{width:537.600000pt;}
.w1{width:835.333333pt;}
.wa{width:835.359975pt;}
.w2{width:835.359988pt;}
.w0{width:835.360000pt;}
.x0{left:0.000000pt;}
.x4d{left:2.266667pt;}
.x37{left:6.880000pt;}
.x2d{left:8.826667pt;}
.x2c{left:15.453333pt;}
.x35{left:28.773333pt;}
.x2b{left:37.853333pt;}
.x30{left:55.360000pt;}
.x27{left:60.800000pt;}
.x44{left:69.413333pt;}
.x3{left:113.471988pt;}
.x8{left:116.191988pt;}
.x48{left:117.951988pt;}
.x64{left:120.863988pt;}
.x5f{left:124.511988pt;}
.x65{left:126.943988pt;}
.x51{left:128.191988pt;}
.x60{left:130.431988pt;}
.x66{left:132.895988pt;}
.x6a{left:135.546654pt;}
.xb{left:137.466654pt;}
.x1e{left:141.466654pt;}
.x28{left:144.066667pt;}
.x1d{left:145.466654pt;}
.x14{left:149.306654pt;}
.x1f{left:152.186654pt;}
.x1b{left:153.466654pt;}
.x7{left:154.426654pt;}
.x20{left:156.186654pt;}
.x45{left:157.306654pt;}
.x4f{left:158.906654pt;}
.x1c{left:161.466654pt;}
.x56{left:165.466654pt;}
.x21{left:166.746654pt;}
.x58{left:169.466654pt;}
.x6{left:171.546654pt;}
.x4b{left:176.506654pt;}
.x29{left:189.093333pt;}
.x6b{left:193.466654pt;}
.x5{left:194.746654pt;}
.x49{left:196.506654pt;}
.x11{left:202.426654pt;}
.x2e{left:208.706667pt;}
.x10{left:214.906654pt;}
.x40{left:219.386654pt;}
.x36{left:220.960000pt;}
.x15{left:227.066654pt;}
.x4e{left:231.226654pt;}
.x59{left:233.466654pt;}
.x38{left:235.586667pt;}
.x2f{left:241.213333pt;}
.x13{left:245.826654pt;}
.x31{left:250.786667pt;}
.x3d{left:255.266654pt;}
.x5a{left:257.506654pt;}
.x12{left:258.786654pt;}
.x53{left:263.426654pt;}
.x19{left:267.586654pt;}
.x2a{left:272.346667pt;}
.x57{left:280.706654pt;}
.x17{left:281.986654pt;}
.x54{left:283.426654pt;}
.x32{left:293.853333pt;}
.xf{left:300.386654pt;}
.xc{left:306.306654pt;}
.x24{left:309.506654pt;}
.x23{left:325.346654pt;}
.x16{left:330.466654pt;}
.x67{left:333.119988pt;}
.xd{left:348.866654pt;}
.x39{left:357.346667pt;}
.x46{left:367.266642pt;}
.x47{left:372.386654pt;}
.x18{left:377.826654pt;}
.x9{left:385.186654pt;}
.x1a{left:408.413321pt;}
.xa{left:417.853321pt;}
.xe{left:429.853321pt;}
.x33{left:441.573333pt;}
.x68{left:459.493321pt;}
.x42{left:466.858200pt;}
.x3a{left:478.973333pt;}
.x34{left:485.893333pt;}
.x43{left:505.920000pt;}
.x5c{left:522.239988pt;}
.x61{left:523.999988pt;}
.x41{left:525.533321pt;}
.x5d{left:528.319988pt;}
.x62{left:530.079988pt;}
.x5e{left:534.239988pt;}
.x63{left:535.999988pt;}
.x69{left:553.893321pt;}
.x6c{left:575.493321pt;}
.x3b{left:600.613333pt;}
.x4{left:646.853321pt;}
.x25{left:669.573321pt;}
.x26{left:675.493321pt;}
.x50{left:695.493321pt;}
.x4a{left:698.373321pt;}
.x3c{left:706.533321pt;}
.x22{left:708.933321pt;}
.x3f{left:712.639988pt;}
.x52{left:713.599988pt;}
.x2{left:715.519988pt;}
.x5b{left:717.599988pt;}
.x1{left:722.239988pt;}
.x4c{left:735.519988pt;}
.x55{left:737.599988pt;}
.x3e{left:751.519988pt;}
}




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