
    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_e6f0708552efe89a65852fea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_f494b177e77491dd799dc80a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_c09cee4fc7f911c534cb45c5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_973f97809fe37a150b176eb3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_406e6bd6f43223b5e8aff10e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2275ce7a43935005b26eb4bc.woff')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_d76a386cec42aa229f8e9274.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_a73003f6d2fc91fc7a578f0b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a70b9200387ca9dbc31218a5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.031738;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_bee9a21afb15ba666b1c9499.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_a2c2112a362e9d7d499e7e13.woff')format("woff");}.ffc{font-family:ffc;line-height:0.760350;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_a44033ebc95dbc854fa60cac.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b939f32c5f4c7ef4dac2e194.woff')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245615,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);}
.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);}
.v2{vertical-align:-166.440000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.692000px;}
.ls15{letter-spacing:-1.218000px;}
.ls3{letter-spacing:-1.134000px;}
.lse{letter-spacing:-0.828000px;}
.ls16{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.507000px;}
.lsd{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.184200px;}
.ls10{letter-spacing:-0.178800px;}
.ls17{letter-spacing:-0.156600px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.213000px;}
.lsf{letter-spacing:0.264960px;}
.ls1{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.313920px;}
.ls11{letter-spacing:0.457800px;}
.ls8{letter-spacing:0.466800px;}
.ls4{letter-spacing:0.498240px;}
.lsc{letter-spacing:0.529920px;}
.lsa{letter-spacing:0.610560px;}
.ls2{letter-spacing:0.612000px;}
.ls14{letter-spacing:10.260000px;}
.ls18{letter-spacing:23.940000px;}
.ls13{letter-spacing:91.710720px;}
.ls12{letter-spacing:181.584000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.240000px;}
.ws2{word-spacing:-19.026720px;}
.ws9{word-spacing:-18.944640px;}
.wsf{word-spacing:-18.872520px;}
.wsc{word-spacing:-18.720120px;}
.ws1{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.109320px;}
.ws12{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.586720px;}
.ws7{word-spacing:-16.813440px;}
.ws14{word-spacing:-16.427520px;}
.ws6{word-spacing:-16.306440px;}
.ws11{word-spacing:-15.647520px;}
.ws3{word-spacing:-15.212160px;}
.ws4{word-spacing:-15.027960px;}
.ws13{word-spacing:-14.735520px;}
.ws5{word-spacing:-14.582160px;}
.ws10{word-spacing:-12.192720px;}
.ws8{word-spacing:-11.609280px;}
.wse{word-spacing:-11.430480px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-7.220160px;}
._1e{margin-left:-5.826240px;}
._1d{margin-left:-4.439520px;}
._d{margin-left:-3.363360px;}
._3{margin-left:-2.220000px;}
._1{margin-left:-1.075680px;}
._0{width:1.434240px;}
._e{width:2.502240px;}
._2{width:3.842400px;}
._13{width:5.159040px;}
._16{width:6.805440px;}
._4{width:8.303040px;}
._5{width:9.538560px;}
._6{width:10.637760px;}
._c{width:11.729280px;}
._10{width:12.850560px;}
._f{width:13.976640px;}
._7{width:24.613920px;}
._8{width:25.701120px;}
._9{width:27.017760px;}
._11{width:28.880640px;}
._12{width:29.892000px;}
._15{width:44.538720px;}
._14{width:46.315200px;}
._b{width:52.987200px;}
._a{width:54.316800px;}
._18{width:117.531360px;}
._19{width:213.799200px;}
._1c{width:224.208960px;}
._1a{width:231.555840px;}
._1b{width:247.788960px;}
._17{width:845.819040px;}
.fc6{color:rgb(217,47,37);}
.fc5{color:rgb(32,32,36);}
.fc4{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:9.360000px;}
.fsd{font-size:20.880000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.720000px;}
.fs9{font-size:59.760000px;}
.fs5{font-size:60.480000px;}
.fsb{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.fsa{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1a4{bottom:3.780000px;}
.y1a2{bottom:3.960000px;}
.y21{bottom:5.400000px;}
.y53{bottom:5.403000px;}
.y2b{bottom:5.430000px;}
.y37{bottom:5.436000px;}
.y4b{bottom:5.445000px;}
.y1e{bottom:5.760000px;}
.y63{bottom:5.790000px;}
.y3b{bottom:6.480000px;}
.y8{bottom:15.480000px;}
.y27{bottom:17.280000px;}
.y22{bottom:17.310000px;}
.y4c{bottom:17.325000px;}
.y24{bottom:17.640000px;}
.y54{bottom:17.643000px;}
.y40{bottom:17.670000px;}
.y38{bottom:17.679000px;}
.y57{bottom:17.685000px;}
.y1a6{bottom:20.160000px;}
.y1a3{bottom:20.340000px;}
.yb{bottom:22.320000px;}
.y26{bottom:23.400000px;}
.y52{bottom:23.403000px;}
.y3f{bottom:23.430000px;}
.y5d{bottom:23.445000px;}
.y1f{bottom:23.760000px;}
.yc{bottom:34.560000px;}
.y5b{bottom:41.400000px;}
.ya{bottom:53.280000px;}
.y17{bottom:53.310000px;}
.y14{bottom:53.685000px;}
.y1{bottom:58.680000px;}
.y1a{bottom:58.716000px;}
.y13{bottom:72.765000px;}
.y12{bottom:91.485000px;}
.y39{bottom:110.196000px;}
.y11{bottom:110.565000px;}
.y17b{bottom:112.716000px;}
.yfe{bottom:114.876000px;}
.y55{bottom:115.956000px;}
.ybb{bottom:116.676000px;}
.y147{bottom:118.476000px;}
.ydd{bottom:118.836000px;}
.y133{bottom:128.196000px;}
.y154{bottom:128.556000px;}
.y10{bottom:129.645000px;}
.y117{bottom:130.716000px;}
.y19a{bottom:132.876000px;}
.yba{bottom:138.636000px;}
.y167{bottom:138.996000px;}
.y146{bottom:140.436000px;}
.y15c{bottom:140.796000px;}
.y1e2{bottom:140.976000px;}
.y36{bottom:141.516000px;}
.y17a{bottom:146.916000px;}
.y51{bottom:147.672000px;}
.ye{bottom:148.365000px;}
.yfd{bottom:148.716000px;}
.yf{bottom:148.725000px;}
.y132{bottom:150.150000px;}
.y153{bottom:150.870000px;}
.y92{bottom:151.230000px;}
.y116{bottom:152.670000px;}
.ydc{bottom:153.030000px;}
.y199{bottom:154.830000px;}
.yb9{bottom:160.950000px;}
.y145{bottom:162.390000px;}
.y15b{bottom:162.750000px;}
.y179{bottom:168.870000px;}
.yfc{bottom:171.030000px;}
.y131{bottom:172.470000px;}
.y152{bottom:172.830000px;}
.y91{bottom:173.190000px;}
.y35{bottom:173.235000px;}
.y115{bottom:174.630000px;}
.y198{bottom:176.790000px;}
.ydb{bottom:180.750000px;}
.y144{bottom:184.710000px;}
.y50{bottom:185.115000px;}
.y178{bottom:190.875000px;}
.yfb{bottom:193.035000px;}
.yb8{bottom:194.835000px;}
.y90{bottom:195.195000px;}
.y114{bottom:196.995000px;}
.y197{bottom:198.795000px;}
.y1e1{bottom:198.930000px;}
.y34{bottom:204.555000px;}
.y130{bottom:206.355000px;}
.y143{bottom:206.715000px;}
.y15a{bottom:207.075000px;}
.yda{bottom:214.995000px;}
.y4f{bottom:216.795000px;}
.y8f{bottom:217.155000px;}
.y113{bottom:218.955000px;}
.y196{bottom:221.115000px;}
.y177{bottom:225.075000px;}
.y12f{bottom:228.675000px;}
.y159{bottom:229.035000px;}
.y33{bottom:236.265000px;}
.yfa{bottom:236.955000px;}
.yb7{bottom:239.115000px;}
.y8e{bottom:239.475000px;}
.y112{bottom:240.915000px;}
.y195{bottom:243.075000px;}
.y1e0{bottom:244.830000px;}
.y176{bottom:247.035000px;}
.y4e{bottom:248.505000px;}
.yd9{bottom:249.195000px;}
.y12e{bottom:250.635000px;}
.y158{bottom:250.995000px;}
.y166{bottom:251.355000px;}
.yb6{bottom:261.075000px;}
.y111{bottom:262.875000px;}
.y194{bottom:265.035000px;}
.y1df{bottom:265.170000px;}
.y32{bottom:267.945000px;}
.y175{bottom:269.355000px;}
.yd8{bottom:271.155000px;}
.y12d{bottom:272.595000px;}
.y142{bottom:272.955000px;}
.y8d{bottom:273.315000px;}
.y4d{bottom:279.825000px;}
.yb5{bottom:283.035000px;}
.y110{bottom:285.195000px;}
.y193{bottom:287.355000px;}
.y174{bottom:291.315000px;}
.yd7{bottom:293.115000px;}
.y12c{bottom:294.555000px;}
.y141{bottom:294.915000px;}
.y151{bottom:295.275000px;}
.y8c{bottom:295.635000px;}
.y1de{bottom:297.750000px;}
.y31{bottom:299.265000px;}
.yb4{bottom:305.355000px;}
.y10f{bottom:307.155000px;}
.y192{bottom:309.315000px;}
.y1dd{bottom:309.630000px;}
.y173{bottom:313.305000px;}
.y150{bottom:317.265000px;}
.y4a{bottom:317.625000px;}
.y66{bottom:318.705000px;}
.yb3{bottom:327.345000px;}
.y12b{bottom:328.785000px;}
.y10e{bottom:329.145000px;}
.y165{bottom:329.505000px;}
.y30{bottom:330.990000px;}
.y191{bottom:331.305000px;}
.y172{bottom:335.265000px;}
.y14f{bottom:339.225000px;}
.y8b{bottom:339.585000px;}
.y49{bottom:348.990000px;}
.yb2{bottom:349.305000px;}
.y12a{bottom:350.745000px;}
.y10d{bottom:351.105000px;}
.y164{bottom:351.465000px;}
.y65{bottom:352.950000px;}
.y190{bottom:353.265000px;}
.y1dc{bottom:355.710000px;}
.yd6{bottom:361.185000px;}
.y2f{bottom:362.670000px;}
.y171{bottom:369.465000px;}
.y64{bottom:369.870000px;}
.yb1{bottom:371.265000px;}
.y129{bottom:373.065000px;}
.y10c{bottom:373.425000px;}
.y8a{bottom:373.785000px;}
.y18f{bottom:375.585000px;}
.yd5{bottom:383.505000px;}
.y140{bottom:384.945000px;}
.y48{bottom:386.790000px;}
.y170{bottom:391.425000px;}
.yb0{bottom:393.585000px;}
.y128{bottom:395.025000px;}
.y14e{bottom:395.385000px;}
.y89{bottom:395.745000px;}
.y18e{bottom:397.545000px;}
.y2e{bottom:400.110000px;}
.y1db{bottom:401.655000px;}
.yd4{bottom:405.465000px;}
.y10b{bottom:407.265000px;}
.y62{bottom:407.310000px;}
.y163{bottom:407.625000px;}
.yaf{bottom:415.545000px;}
.y127{bottom:416.985000px;}
.y14d{bottom:417.345000px;}
.y88{bottom:417.705000px;}
.y47{bottom:418.140000px;}
.y18d{bottom:419.505000px;}
.y1da{bottom:421.995000px;}
.y16f{bottom:425.625000px;}
.yd3{bottom:427.425000px;}
.y13f{bottom:429.225000px;}
.y10a{bottom:429.585000px;}
.y2d{bottom:431.820000px;}
.y6e{bottom:432.465000px;}
.yf9{bottom:437.505000px;}
.y126{bottom:438.945000px;}
.y61{bottom:439.020000px;}
.y87{bottom:439.665000px;}
.y18c{bottom:441.510000px;}
.y16e{bottom:447.630000px;}
.yae{bottom:449.430000px;}
.y46{bottom:449.820000px;}
.y13e{bottom:451.230000px;}
.y109{bottom:451.590000px;}
.y6d{bottom:452.670000px;}
.y1d9{bottom:454.575000px;}
.yf8{bottom:459.510000px;}
.y125{bottom:461.310000px;}
.y14c{bottom:461.670000px;}
.y86{bottom:462.030000px;}
.y2c{bottom:463.140000px;}
.y18b{bottom:463.830000px;}
.y1d8{bottom:466.455000px;}
.y16d{bottom:469.590000px;}
.y60{bottom:470.700000px;}
.yad{bottom:471.750000px;}
.y13d{bottom:473.190000px;}
.y108{bottom:473.550000px;}
.y162{bottom:473.910000px;}
.y6c{bottom:481.110000px;}
.y45{bottom:481.500000px;}
.yf7{bottom:481.830000px;}
.y19b{bottom:483.630000px;}
.y85{bottom:483.990000px;}
.y18a{bottom:485.790000px;}
.yac{bottom:493.710000px;}
.y2a{bottom:494.820000px;}
.y124{bottom:495.150000px;}
.y107{bottom:495.510000px;}
.y161{bottom:495.870000px;}
.y5f{bottom:502.050000px;}
.yf6{bottom:503.790000px;}
.yd2{bottom:505.590000px;}
.y1d7{bottom:512.715000px;}
.y44{bottom:512.850000px;}
.y123{bottom:517.110000px;}
.y13c{bottom:517.470000px;}
.y106{bottom:517.830000px;}
.y84{bottom:518.190000px;}
.y189{bottom:519.990000px;}
.y1bd{bottom:523.875000px;}
.yf5{bottom:525.750000px;}
.y29{bottom:526.530000px;}
.yab{bottom:527.910000px;}
.y160{bottom:530.070000px;}
.y5e{bottom:533.730000px;}
.y122{bottom:539.430000px;}
.y105{bottom:539.790000px;}
.y188{bottom:541.950000px;}
.y1bc{bottom:544.935000px;}
.yf4{bottom:548.070000px;}
.yd1{bottom:549.870000px;}
.y43{bottom:550.650000px;}
.y83{bottom:552.030000px;}
.y28{bottom:557.850000px;}
.y1d6{bottom:558.435000px;}
.y121{bottom:561.390000px;}
.yaa{bottom:561.750000px;}
.y187{bottom:563.910000px;}
.y5c{bottom:565.410000px;}
.y1bb{bottom:568.155000px;}
.yf3{bottom:570.060000px;}
.yd0{bottom:571.860000px;}
.y14b{bottom:574.020000px;}
.y82{bottom:574.380000px;}
.y1d5{bottom:578.775000px;}
.y16c{bottom:581.940000px;}
.y120{bottom:583.380000px;}
.ya9{bottom:584.100000px;}
.y186{bottom:585.900000px;}
.y1ba{bottom:587.955000px;}
.y42{bottom:588.135000px;}
.y25{bottom:589.575000px;}
.y19{bottom:590.940000px;}
.yf2{bottom:592.020000px;}
.ycf{bottom:593.820000px;}
.y13b{bottom:595.620000px;}
.y14a{bottom:595.980000px;}
.y5a{bottom:602.895000px;}
.y16b{bottom:603.900000px;}
.y11f{bottom:605.700000px;}
.ya8{bottom:606.060000px;}
.y1b9{bottom:607.755000px;}
.y81{bottom:608.220000px;}
.y1d4{bottom:612.795000px;}
.y1a0{bottom:616.140000px;}
.y13a{bottom:617.940000px;}
.y1d3{bottom:623.055000px;}
.y18{bottom:625.140000px;}
.y41{bottom:625.935000px;}
.yf1{bottom:626.220000px;}
.y23{bottom:627.015000px;}
.yce{bottom:628.020000px;}
.y185{bottom:630.180000px;}
.y19f{bottom:638.100000px;}
.y11e{bottom:639.540000px;}
.ya7{bottom:639.900000px;}
.y139{bottom:640.260000px;}
.y1b8{bottom:641.265000px;}
.y15f{bottom:642.060000px;}
.y16{bottom:642.420000px;}
.ycd{bottom:649.980000px;}
.y184{bottom:652.140000px;}
.y1d2{bottom:656.745000px;}
.y3e{bottom:657.255000px;}
.y59{bottom:658.335000px;}
.y20{bottom:658.695000px;}
.yf0{bottom:660.060000px;}
.y11d{bottom:661.860000px;}
.y1d1{bottom:667.365000px;}
.y72{bottom:669.420000px;}
.ycc{bottom:672.300000px;}
.ya6{bottom:674.100000px;}
.y1b7{bottom:674.565000px;}
.y80{bottom:676.260000px;}
.yef{bottom:682.380000px;}
.y11c{bottom:684.180000px;}
.y1d0{bottom:687.525000px;}
.y71{bottom:689.580000px;}
.y1d{bottom:690.045000px;}
.ycb{bottom:694.260000px;}
.y3d{bottom:695.085000px;}
.ya5{bottom:696.090000px;}
.y183{bottom:696.450000px;}
.yee{bottom:704.370000px;}
.y1b6{bottom:707.865000px;}
.y138{bottom:708.330000px;}
.y70{bottom:709.770000px;}
.y15e{bottom:710.130000px;}
.y7f{bottom:710.490000px;}
.y15{bottom:714.450000px;}
.yca{bottom:716.250000px;}
.ya4{bottom:718.410000px;}
.y1cf{bottom:721.365000px;}
.y58{bottom:721.725000px;}
.yed{bottom:726.330000px;}
.y157{bottom:728.130000px;}
.y149{bottom:730.290000px;}
.y1ce{bottom:731.805000px;}
.y3c{bottom:732.525000px;}
.yc9{bottom:738.210000px;}
.y6f{bottom:738.570000px;}
.ya3{bottom:740.370000px;}
.y1c{bottom:740.805000px;}
.y1b5{bottom:741.345000px;}
.y137{bottom:742.530000px;}
.y15d{bottom:744.330000px;}
.y7e{bottom:744.690000px;}
.yec{bottom:748.290000px;}
.y156{bottom:750.450000px;}
.y1cd{bottom:752.145000px;}
.y11b{bottom:752.250000px;}
.y182{bottom:752.610000px;}
.y56{bottom:753.045000px;}
.yc8{bottom:760.530000px;}
.ya2{bottom:762.330000px;}
.y3a{bottom:764.250000px;}
.y1b{bottom:769.290000px;}
.yeb{bottom:770.610000px;}
.y7d{bottom:772.410000px;}
.y11a{bottom:774.210000px;}
.y181{bottom:774.570000px;}
.y1b4{bottom:774.645000px;}
.y136{bottom:776.370000px;}
.y104{bottom:782.490000px;}
.ya1{bottom:784.290000px;}
.y1cc{bottom:785.985000px;}
.yd{bottom:786.090000px;}
.yea{bottom:792.570000px;}
.yc7{bottom:794.370000px;}
.y1cb{bottom:796.425000px;}
.y119{bottom:796.530000px;}
.y103{bottom:804.450000px;}
.y7c{bottom:806.610000px;}
.y6b{bottom:807.330000px;}
.y1b3{bottom:808.125000px;}
.y135{bottom:810.570000px;}
.ye9{bottom:814.530000px;}
.y155{bottom:816.690000px;}
.y118{bottom:818.490000px;}
.y6a{bottom:824.655000px;}
.y102{bottom:826.455000px;}
.yc6{bottom:828.615000px;}
.y1ca{bottom:830.265000px;}
.ye8{bottom:836.535000px;}
.y134{bottom:838.695000px;}
.ya0{bottom:840.495000px;}
.y1c9{bottom:840.525000px;}
.y7b{bottom:840.855000px;}
.y1b2{bottom:841.425000px;}
.y69{bottom:841.935000px;}
.yc5{bottom:850.575000px;}
.y68{bottom:858.855000px;}
.y101{bottom:860.655000px;}
.y9f{bottom:862.455000px;}
.y7a{bottom:862.815000px;}
.ye7{bottom:870.735000px;}
.yc4{bottom:872.535000px;}
.y1c8{bottom:874.365000px;}
.y180{bottom:874.695000px;}
.y1b1{bottom:875.445000px;}
.y100{bottom:882.615000px;}
.y9e{bottom:884.775000px;}
.y1c7{bottom:884.805000px;}
.y67{bottom:888.015000px;}
.y19e{bottom:894.855000px;}
.y79{bottom:897.015000px;}
.ye6{bottom:904.935000px;}
.y9d{bottom:906.735000px;}
.y1b0{bottom:909.690000px;}
.yff{bottom:916.815000px;}
.y148{bottom:918.615000px;}
.y78{bottom:918.975000px;}
.y1c6{bottom:920.850000px;}
.ye5{bottom:926.895000px;}
.y9c{bottom:928.695000px;}
.y1af{bottom:932.190000px;}
.y19d{bottom:938.775000px;}
.yc3{bottom:940.935000px;}
.ye4{bottom:948.855000px;}
.y9b{bottom:951.045000px;}
.y77{bottom:952.845000px;}
.y9{bottom:953.205000px;}
.y1ae{bottom:953.970000px;}
.y19c{bottom:960.765000px;}
.yc2{bottom:962.925000px;}
.ye3{bottom:970.845000px;}
.y9a{bottom:973.005000px;}
.y17f{bottom:975.165000px;}
.y1ad{bottom:975.570000px;}
.y1c5{bottom:976.650000px;}
.y16a{bottom:983.085000px;}
.yc1{bottom:984.885000px;}
.y4{bottom:987.045000px;}
.ye2{bottom:993.165000px;}
.y99{bottom:994.965000px;}
.y169{bottom:1005.045000px;}
.yc0{bottom:1006.845000px;}
.y76{bottom:1009.005000px;}
.y1c4{bottom:1012.470000px;}
.ye1{bottom:1015.125000px;}
.y1ac{bottom:1016.070000px;}
.y98{bottom:1016.925000px;}
.y7{bottom:1024.845000px;}
.y168{bottom:1027.005000px;}
.ybf{bottom:1029.165000px;}
.y3{bottom:1029.885000px;}
.y75{bottom:1031.325000px;}
.y1c3{bottom:1032.990000px;}
.ye0{bottom:1037.085000px;}
.y97{bottom:1039.245000px;}
.y17e{bottom:1043.205000px;}
.y1ab{bottom:1049.190000px;}
.ybe{bottom:1051.125000px;}
.y1c2{bottom:1053.510000px;}
.y74{bottom:1059.045000px;}
.y96{bottom:1061.205000px;}
.y1aa{bottom:1069.530000px;}
.y6{bottom:1070.925000px;}
.ydf{bottom:1071.285000px;}
.ybd{bottom:1073.085000px;}
.y17d{bottom:1077.090000px;}
.y95{bottom:1083.210000px;}
.y1c1{bottom:1089.870000px;}
.y1a9{bottom:1090.050000px;}
.ybc{bottom:1095.090000px;}
.y73{bottom:1097.970000px;}
.y2{bottom:1099.410000px;}
.yde{bottom:1105.170000px;}
.y1a8{bottom:1110.390000px;}
.y17c{bottom:1111.290000px;}
.y94{bottom:1117.410000px;}
.y1c0{bottom:1130.910000px;}
.y5{bottom:1132.170000px;}
.y93{bottom:1139.370000px;}
.y1bf{bottom:1168.380000px;}
.y1a7{bottom:1179.540000px;}
.y1be{bottom:1194.840000px;}
.y1a1{bottom:1225.260000px;}
.y1a5{bottom:1240.920000px;}
.h2a{height:7.509023px;}
.h1f{height:16.200000px;}
.h1d{height:16.380000px;}
.h29{height:16.750898px;}
.h28{height:19.061367px;}
.h16{height:19.080000px;}
.h15{height:29.880000px;}
.h10{height:29.916000px;}
.h11{height:30.240000px;}
.h14{height:30.276000px;}
.h6{height:30.960000px;}
.h12{height:36.000000px;}
.h17{height:36.036000px;}
.hd{height:36.360000px;}
.hf{height:41.146875px;}
.h20{height:47.942227px;}
.h13{height:48.922031px;}
.he{height:49.082344px;}
.h27{height:49.680000px;}
.h9{height:49.809375px;}
.h1e{height:50.312812px;}
.h23{height:50.830312px;}
.h22{height:53.140781px;}
.h18{height:54.000000px;}
.h19{height:54.248906px;}
.h24{height:57.761719px;}
.h1b{height:58.844458px;}
.h1a{height:59.221406px;}
.h5{height:59.415469px;}
.h2{height:60.855469px;}
.h26{height:61.423863px;}
.h7{height:68.760000px;}
.ha{height:68.796000px;}
.h25{height:75.093750px;}
.h4{height:83.100937px;}
.h3{height:102.945937px;}
.h21{height:148.009309px;}
.h8{height:163.875000px;}
.hc{height:892.500000px;}
.hb{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1c{height:1263.060000px;}
.w15{width:36.000000px;}
.w12{width:94.176000px;}
.wc{width:104.796000px;}
.wa{width:109.116000px;}
.w4{width:113.796000px;}
.we{width:114.516000px;}
.wd{width:119.196000px;}
.w3{width:123.192000px;}
.wf{width:124.956000px;}
.w10{width:139.716000px;}
.w13{width:140.220000px;}
.w9{width:160.590000px;}
.wb{width:161.310000px;}
.w5{width:437.580000px;}
.w14{width:612.690000px;}
.w16{width:892.439987px;}
.w11{width:892.440000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w8{width:1262.879981px;}
.w6{width:1262.880000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:1.080000px;}
.x1e{left:4.500000px;}
.x6{left:7.560000px;}
.x1b{left:34.560000px;}
.x1f{left:70.559987px;}
.x21{left:78.839987px;}
.x22{left:103.535987px;}
.x1{left:108.035987px;}
.x5{left:109.476000px;}
.x13{left:111.635987px;}
.x10{left:114.155987px;}
.xf{left:115.595987px;}
.x23{left:118.295987px;}
.x26{left:119.375987px;}
.x20{left:124.955987px;}
.x11{left:127.115987px;}
.x14{left:139.031987px;}
.x24{left:140.795987px;}
.x29{left:148.895987px;}
.x15{left:150.554987px;}
.x27{left:173.369987px;}
.x25{left:182.369987px;}
.x2{left:232.665000px;}
.x7{left:271.515000px;}
.x28{left:292.934987px;}
.x4{left:347.190000px;}
.x12{left:375.269987px;}
.x8{left:382.065000px;}
.x16{left:405.899987px;}
.x1c{left:444.525000px;}
.x19{left:480.419987px;}
.x1a{left:485.849987px;}
.x9{left:544.830000px;}
.xa{left:651.060000px;}
.x17{left:759.569987px;}
.x18{left:764.969987px;}
.xb{left:771.690000px;}
.xe{left:785.489987px;}
.x1d{left:822.420000px;}
.xc{left:887.655000px;}
.xd{left:1014.045000px;}
@media print{
.v2{vertical-align:-147.946667pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.504000pt;}
.ls15{letter-spacing:-1.082667pt;}
.ls3{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.450667pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.163733pt;}
.ls10{letter-spacing:-0.158933pt;}
.ls17{letter-spacing:-0.139200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.189333pt;}
.lsf{letter-spacing:0.235520pt;}
.ls1{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.279040pt;}
.ls11{letter-spacing:0.406933pt;}
.ls8{letter-spacing:0.414933pt;}
.ls4{letter-spacing:0.442880pt;}
.lsc{letter-spacing:0.471040pt;}
.lsa{letter-spacing:0.542720pt;}
.ls2{letter-spacing:0.544000pt;}
.ls14{letter-spacing:9.120000pt;}
.ls18{letter-spacing:21.280000pt;}
.ls13{letter-spacing:81.520640pt;}
.ls12{letter-spacing:161.408000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws2{word-spacing:-16.912640pt;}
.ws9{word-spacing:-16.839680pt;}
.wsf{word-spacing:-16.775573pt;}
.wsc{word-spacing:-16.640107pt;}
.ws1{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.097173pt;}
.ws12{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.632640pt;}
.ws7{word-spacing:-14.945280pt;}
.ws14{word-spacing:-14.602240pt;}
.ws6{word-spacing:-14.494613pt;}
.ws11{word-spacing:-13.908907pt;}
.ws3{word-spacing:-13.521920pt;}
.ws4{word-spacing:-13.358187pt;}
.ws13{word-spacing:-13.098240pt;}
.ws5{word-spacing:-12.961920pt;}
.ws10{word-spacing:-10.837973pt;}
.ws8{word-spacing:-10.319360pt;}
.wse{word-spacing:-10.160427pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-6.417920pt;}
._1e{margin-left:-5.178880pt;}
._1d{margin-left:-3.946240pt;}
._d{margin-left:-2.989653pt;}
._3{margin-left:-1.973333pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.274880pt;}
._e{width:2.224213pt;}
._2{width:3.415467pt;}
._13{width:4.585813pt;}
._16{width:6.049280pt;}
._4{width:7.380480pt;}
._5{width:8.478720pt;}
._6{width:9.455787pt;}
._c{width:10.426027pt;}
._10{width:11.422720pt;}
._f{width:12.423680pt;}
._7{width:21.879040pt;}
._8{width:22.845440pt;}
._9{width:24.015787pt;}
._11{width:25.671680pt;}
._12{width:26.570667pt;}
._15{width:39.589973pt;}
._14{width:41.169067pt;}
._b{width:47.099733pt;}
._a{width:48.281600pt;}
._18{width:104.472320pt;}
._19{width:190.043733pt;}
._1c{width:199.296853pt;}
._1a{width:205.827413pt;}
._1b{width:220.256853pt;}
._17{width:751.839147pt;}
.fse{font-size:8.320000pt;}
.fsd{font-size:18.560000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.640000pt;}
.fs9{font-size:53.120000pt;}
.fs5{font-size:53.760000pt;}
.fsb{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.fsa{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1a4{bottom:3.360000pt;}
.y1a2{bottom:3.520000pt;}
.y21{bottom:4.800000pt;}
.y53{bottom:4.802667pt;}
.y2b{bottom:4.826667pt;}
.y37{bottom:4.832000pt;}
.y4b{bottom:4.840000pt;}
.y1e{bottom:5.120000pt;}
.y63{bottom:5.146667pt;}
.y3b{bottom:5.760000pt;}
.y8{bottom:13.760000pt;}
.y27{bottom:15.360000pt;}
.y22{bottom:15.386667pt;}
.y4c{bottom:15.400000pt;}
.y24{bottom:15.680000pt;}
.y54{bottom:15.682667pt;}
.y40{bottom:15.706667pt;}
.y38{bottom:15.714667pt;}
.y57{bottom:15.720000pt;}
.y1a6{bottom:17.920000pt;}
.y1a3{bottom:18.080000pt;}
.yb{bottom:19.840000pt;}
.y26{bottom:20.800000pt;}
.y52{bottom:20.802667pt;}
.y3f{bottom:20.826667pt;}
.y5d{bottom:20.840000pt;}
.y1f{bottom:21.120000pt;}
.yc{bottom:30.720000pt;}
.y5b{bottom:36.800000pt;}
.ya{bottom:47.360000pt;}
.y17{bottom:47.386667pt;}
.y14{bottom:47.720000pt;}
.y1{bottom:52.160000pt;}
.y1a{bottom:52.192000pt;}
.y13{bottom:64.680000pt;}
.y12{bottom:81.320000pt;}
.y39{bottom:97.952000pt;}
.y11{bottom:98.280000pt;}
.y17b{bottom:100.192000pt;}
.yfe{bottom:102.112000pt;}
.y55{bottom:103.072000pt;}
.ybb{bottom:103.712000pt;}
.y147{bottom:105.312000pt;}
.ydd{bottom:105.632000pt;}
.y133{bottom:113.952000pt;}
.y154{bottom:114.272000pt;}
.y10{bottom:115.240000pt;}
.y117{bottom:116.192000pt;}
.y19a{bottom:118.112000pt;}
.yba{bottom:123.232000pt;}
.y167{bottom:123.552000pt;}
.y146{bottom:124.832000pt;}
.y15c{bottom:125.152000pt;}
.y1e2{bottom:125.312000pt;}
.y36{bottom:125.792000pt;}
.y17a{bottom:130.592000pt;}
.y51{bottom:131.264000pt;}
.ye{bottom:131.880000pt;}
.yfd{bottom:132.192000pt;}
.yf{bottom:132.200000pt;}
.y132{bottom:133.466667pt;}
.y153{bottom:134.106667pt;}
.y92{bottom:134.426667pt;}
.y116{bottom:135.706667pt;}
.ydc{bottom:136.026667pt;}
.y199{bottom:137.626667pt;}
.yb9{bottom:143.066667pt;}
.y145{bottom:144.346667pt;}
.y15b{bottom:144.666667pt;}
.y179{bottom:150.106667pt;}
.yfc{bottom:152.026667pt;}
.y131{bottom:153.306667pt;}
.y152{bottom:153.626667pt;}
.y91{bottom:153.946667pt;}
.y35{bottom:153.986667pt;}
.y115{bottom:155.226667pt;}
.y198{bottom:157.146667pt;}
.ydb{bottom:160.666667pt;}
.y144{bottom:164.186667pt;}
.y50{bottom:164.546667pt;}
.y178{bottom:169.666667pt;}
.yfb{bottom:171.586667pt;}
.yb8{bottom:173.186667pt;}
.y90{bottom:173.506667pt;}
.y114{bottom:175.106667pt;}
.y197{bottom:176.706667pt;}
.y1e1{bottom:176.826667pt;}
.y34{bottom:181.826667pt;}
.y130{bottom:183.426667pt;}
.y143{bottom:183.746667pt;}
.y15a{bottom:184.066667pt;}
.yda{bottom:191.106667pt;}
.y4f{bottom:192.706667pt;}
.y8f{bottom:193.026667pt;}
.y113{bottom:194.626667pt;}
.y196{bottom:196.546667pt;}
.y177{bottom:200.066667pt;}
.y12f{bottom:203.266667pt;}
.y159{bottom:203.586667pt;}
.y33{bottom:210.013333pt;}
.yfa{bottom:210.626667pt;}
.yb7{bottom:212.546667pt;}
.y8e{bottom:212.866667pt;}
.y112{bottom:214.146667pt;}
.y195{bottom:216.066667pt;}
.y1e0{bottom:217.626667pt;}
.y176{bottom:219.586667pt;}
.y4e{bottom:220.893333pt;}
.yd9{bottom:221.506667pt;}
.y12e{bottom:222.786667pt;}
.y158{bottom:223.106667pt;}
.y166{bottom:223.426667pt;}
.yb6{bottom:232.066667pt;}
.y111{bottom:233.666667pt;}
.y194{bottom:235.586667pt;}
.y1df{bottom:235.706667pt;}
.y32{bottom:238.173333pt;}
.y175{bottom:239.426667pt;}
.yd8{bottom:241.026667pt;}
.y12d{bottom:242.306667pt;}
.y142{bottom:242.626667pt;}
.y8d{bottom:242.946667pt;}
.y4d{bottom:248.733333pt;}
.yb5{bottom:251.586667pt;}
.y110{bottom:253.506667pt;}
.y193{bottom:255.426667pt;}
.y174{bottom:258.946667pt;}
.yd7{bottom:260.546667pt;}
.y12c{bottom:261.826667pt;}
.y141{bottom:262.146667pt;}
.y151{bottom:262.466667pt;}
.y8c{bottom:262.786667pt;}
.y1de{bottom:264.666667pt;}
.y31{bottom:266.013333pt;}
.yb4{bottom:271.426667pt;}
.y10f{bottom:273.026667pt;}
.y192{bottom:274.946667pt;}
.y1dd{bottom:275.226667pt;}
.y173{bottom:278.493333pt;}
.y150{bottom:282.013333pt;}
.y4a{bottom:282.333333pt;}
.y66{bottom:283.293333pt;}
.yb3{bottom:290.973333pt;}
.y12b{bottom:292.253333pt;}
.y10e{bottom:292.573333pt;}
.y165{bottom:292.893333pt;}
.y30{bottom:294.213333pt;}
.y191{bottom:294.493333pt;}
.y172{bottom:298.013333pt;}
.y14f{bottom:301.533333pt;}
.y8b{bottom:301.853333pt;}
.y49{bottom:310.213333pt;}
.yb2{bottom:310.493333pt;}
.y12a{bottom:311.773333pt;}
.y10d{bottom:312.093333pt;}
.y164{bottom:312.413333pt;}
.y65{bottom:313.733333pt;}
.y190{bottom:314.013333pt;}
.y1dc{bottom:316.186667pt;}
.yd6{bottom:321.053333pt;}
.y2f{bottom:322.373333pt;}
.y171{bottom:328.413333pt;}
.y64{bottom:328.773333pt;}
.yb1{bottom:330.013333pt;}
.y129{bottom:331.613333pt;}
.y10c{bottom:331.933333pt;}
.y8a{bottom:332.253333pt;}
.y18f{bottom:333.853333pt;}
.yd5{bottom:340.893333pt;}
.y140{bottom:342.173333pt;}
.y48{bottom:343.813333pt;}
.y170{bottom:347.933333pt;}
.yb0{bottom:349.853333pt;}
.y128{bottom:351.133333pt;}
.y14e{bottom:351.453333pt;}
.y89{bottom:351.773333pt;}
.y18e{bottom:353.373333pt;}
.y2e{bottom:355.653333pt;}
.y1db{bottom:357.026667pt;}
.yd4{bottom:360.413333pt;}
.y10b{bottom:362.013333pt;}
.y62{bottom:362.053333pt;}
.y163{bottom:362.333333pt;}
.yaf{bottom:369.373333pt;}
.y127{bottom:370.653333pt;}
.y14d{bottom:370.973333pt;}
.y88{bottom:371.293333pt;}
.y47{bottom:371.680000pt;}
.y18d{bottom:372.893333pt;}
.y1da{bottom:375.106667pt;}
.y16f{bottom:378.333333pt;}
.yd3{bottom:379.933333pt;}
.y13f{bottom:381.533333pt;}
.y10a{bottom:381.853333pt;}
.y2d{bottom:383.840000pt;}
.y6e{bottom:384.413333pt;}
.yf9{bottom:388.893333pt;}
.y126{bottom:390.173333pt;}
.y61{bottom:390.240000pt;}
.y87{bottom:390.813333pt;}
.y18c{bottom:392.453333pt;}
.y16e{bottom:397.893333pt;}
.yae{bottom:399.493333pt;}
.y46{bottom:399.840000pt;}
.y13e{bottom:401.093333pt;}
.y109{bottom:401.413333pt;}
.y6d{bottom:402.373333pt;}
.y1d9{bottom:404.066667pt;}
.yf8{bottom:408.453333pt;}
.y125{bottom:410.053333pt;}
.y14c{bottom:410.373333pt;}
.y86{bottom:410.693333pt;}
.y2c{bottom:411.680000pt;}
.y18b{bottom:412.293333pt;}
.y1d8{bottom:414.626667pt;}
.y16d{bottom:417.413333pt;}
.y60{bottom:418.400000pt;}
.yad{bottom:419.333333pt;}
.y13d{bottom:420.613333pt;}
.y108{bottom:420.933333pt;}
.y162{bottom:421.253333pt;}
.y6c{bottom:427.653333pt;}
.y45{bottom:428.000000pt;}
.yf7{bottom:428.293333pt;}
.y19b{bottom:429.893333pt;}
.y85{bottom:430.213333pt;}
.y18a{bottom:431.813333pt;}
.yac{bottom:438.853333pt;}
.y2a{bottom:439.840000pt;}
.y124{bottom:440.133333pt;}
.y107{bottom:440.453333pt;}
.y161{bottom:440.773333pt;}
.y5f{bottom:446.266667pt;}
.yf6{bottom:447.813333pt;}
.yd2{bottom:449.413333pt;}
.y1d7{bottom:455.746667pt;}
.y44{bottom:455.866667pt;}
.y123{bottom:459.653333pt;}
.y13c{bottom:459.973333pt;}
.y106{bottom:460.293333pt;}
.y84{bottom:460.613333pt;}
.y189{bottom:462.213333pt;}
.y1bd{bottom:465.666667pt;}
.yf5{bottom:467.333333pt;}
.y29{bottom:468.026667pt;}
.yab{bottom:469.253333pt;}
.y160{bottom:471.173333pt;}
.y5e{bottom:474.426667pt;}
.y122{bottom:479.493333pt;}
.y105{bottom:479.813333pt;}
.y188{bottom:481.733333pt;}
.y1bc{bottom:484.386667pt;}
.yf4{bottom:487.173333pt;}
.yd1{bottom:488.773333pt;}
.y43{bottom:489.466667pt;}
.y83{bottom:490.693333pt;}
.y28{bottom:495.866667pt;}
.y1d6{bottom:496.386667pt;}
.y121{bottom:499.013333pt;}
.yaa{bottom:499.333333pt;}
.y187{bottom:501.253333pt;}
.y5c{bottom:502.586667pt;}
.y1bb{bottom:505.026667pt;}
.yf3{bottom:506.720000pt;}
.yd0{bottom:508.320000pt;}
.y14b{bottom:510.240000pt;}
.y82{bottom:510.560000pt;}
.y1d5{bottom:514.466667pt;}
.y16c{bottom:517.280000pt;}
.y120{bottom:518.560000pt;}
.ya9{bottom:519.200000pt;}
.y186{bottom:520.800000pt;}
.y1ba{bottom:522.626667pt;}
.y42{bottom:522.786667pt;}
.y25{bottom:524.066667pt;}
.y19{bottom:525.280000pt;}
.yf2{bottom:526.240000pt;}
.ycf{bottom:527.840000pt;}
.y13b{bottom:529.440000pt;}
.y14a{bottom:529.760000pt;}
.y5a{bottom:535.906667pt;}
.y16b{bottom:536.800000pt;}
.y11f{bottom:538.400000pt;}
.ya8{bottom:538.720000pt;}
.y1b9{bottom:540.226667pt;}
.y81{bottom:540.640000pt;}
.y1d4{bottom:544.706667pt;}
.y1a0{bottom:547.680000pt;}
.y13a{bottom:549.280000pt;}
.y1d3{bottom:553.826667pt;}
.y18{bottom:555.680000pt;}
.y41{bottom:556.386667pt;}
.yf1{bottom:556.640000pt;}
.y23{bottom:557.346667pt;}
.yce{bottom:558.240000pt;}
.y185{bottom:560.160000pt;}
.y19f{bottom:567.200000pt;}
.y11e{bottom:568.480000pt;}
.ya7{bottom:568.800000pt;}
.y139{bottom:569.120000pt;}
.y1b8{bottom:570.013333pt;}
.y15f{bottom:570.720000pt;}
.y16{bottom:571.040000pt;}
.ycd{bottom:577.760000pt;}
.y184{bottom:579.680000pt;}
.y1d2{bottom:583.773333pt;}
.y3e{bottom:584.226667pt;}
.y59{bottom:585.186667pt;}
.y20{bottom:585.506667pt;}
.yf0{bottom:586.720000pt;}
.y11d{bottom:588.320000pt;}
.y1d1{bottom:593.213333pt;}
.y72{bottom:595.040000pt;}
.ycc{bottom:597.600000pt;}
.ya6{bottom:599.200000pt;}
.y1b7{bottom:599.613333pt;}
.y80{bottom:601.120000pt;}
.yef{bottom:606.560000pt;}
.y11c{bottom:608.160000pt;}
.y1d0{bottom:611.133333pt;}
.y71{bottom:612.960000pt;}
.y1d{bottom:613.373333pt;}
.ycb{bottom:617.120000pt;}
.y3d{bottom:617.853333pt;}
.ya5{bottom:618.746667pt;}
.y183{bottom:619.066667pt;}
.yee{bottom:626.106667pt;}
.y1b6{bottom:629.213333pt;}
.y138{bottom:629.626667pt;}
.y70{bottom:630.906667pt;}
.y15e{bottom:631.226667pt;}
.y7f{bottom:631.546667pt;}
.y15{bottom:635.066667pt;}
.yca{bottom:636.666667pt;}
.ya4{bottom:638.586667pt;}
.y1cf{bottom:641.213333pt;}
.y58{bottom:641.533333pt;}
.yed{bottom:645.626667pt;}
.y157{bottom:647.226667pt;}
.y149{bottom:649.146667pt;}
.y1ce{bottom:650.493333pt;}
.y3c{bottom:651.133333pt;}
.yc9{bottom:656.186667pt;}
.y6f{bottom:656.506667pt;}
.ya3{bottom:658.106667pt;}
.y1c{bottom:658.493333pt;}
.y1b5{bottom:658.973333pt;}
.y137{bottom:660.026667pt;}
.y15d{bottom:661.626667pt;}
.y7e{bottom:661.946667pt;}
.yec{bottom:665.146667pt;}
.y156{bottom:667.066667pt;}
.y1cd{bottom:668.573333pt;}
.y11b{bottom:668.666667pt;}
.y182{bottom:668.986667pt;}
.y56{bottom:669.373333pt;}
.yc8{bottom:676.026667pt;}
.ya2{bottom:677.626667pt;}
.y3a{bottom:679.333333pt;}
.y1b{bottom:683.813333pt;}
.yeb{bottom:684.986667pt;}
.y7d{bottom:686.586667pt;}
.y11a{bottom:688.186667pt;}
.y181{bottom:688.506667pt;}
.y1b4{bottom:688.573333pt;}
.y136{bottom:690.106667pt;}
.y104{bottom:695.546667pt;}
.ya1{bottom:697.146667pt;}
.y1cc{bottom:698.653333pt;}
.yd{bottom:698.746667pt;}
.yea{bottom:704.506667pt;}
.yc7{bottom:706.106667pt;}
.y1cb{bottom:707.933333pt;}
.y119{bottom:708.026667pt;}
.y103{bottom:715.066667pt;}
.y7c{bottom:716.986667pt;}
.y6b{bottom:717.626667pt;}
.y1b3{bottom:718.333333pt;}
.y135{bottom:720.506667pt;}
.ye9{bottom:724.026667pt;}
.y155{bottom:725.946667pt;}
.y118{bottom:727.546667pt;}
.y6a{bottom:733.026667pt;}
.y102{bottom:734.626667pt;}
.yc6{bottom:736.546667pt;}
.y1ca{bottom:738.013333pt;}
.ye8{bottom:743.586667pt;}
.y134{bottom:745.506667pt;}
.ya0{bottom:747.106667pt;}
.y1c9{bottom:747.133333pt;}
.y7b{bottom:747.426667pt;}
.y1b2{bottom:747.933333pt;}
.y69{bottom:748.386667pt;}
.yc5{bottom:756.066667pt;}
.y68{bottom:763.426667pt;}
.y101{bottom:765.026667pt;}
.y9f{bottom:766.626667pt;}
.y7a{bottom:766.946667pt;}
.ye7{bottom:773.986667pt;}
.yc4{bottom:775.586667pt;}
.y1c8{bottom:777.213333pt;}
.y180{bottom:777.506667pt;}
.y1b1{bottom:778.173333pt;}
.y100{bottom:784.546667pt;}
.y9e{bottom:786.466667pt;}
.y1c7{bottom:786.493333pt;}
.y67{bottom:789.346667pt;}
.y19e{bottom:795.426667pt;}
.y79{bottom:797.346667pt;}
.ye6{bottom:804.386667pt;}
.y9d{bottom:805.986667pt;}
.y1b0{bottom:808.613333pt;}
.yff{bottom:814.946667pt;}
.y148{bottom:816.546667pt;}
.y78{bottom:816.866667pt;}
.y1c6{bottom:818.533333pt;}
.ye5{bottom:823.906667pt;}
.y9c{bottom:825.506667pt;}
.y1af{bottom:828.613333pt;}
.y19d{bottom:834.466667pt;}
.yc3{bottom:836.386667pt;}
.ye4{bottom:843.426667pt;}
.y9b{bottom:845.373333pt;}
.y77{bottom:846.973333pt;}
.y9{bottom:847.293333pt;}
.y1ae{bottom:847.973333pt;}
.y19c{bottom:854.013333pt;}
.yc2{bottom:855.933333pt;}
.ye3{bottom:862.973333pt;}
.y9a{bottom:864.893333pt;}
.y17f{bottom:866.813333pt;}
.y1ad{bottom:867.173333pt;}
.y1c5{bottom:868.133333pt;}
.y16a{bottom:873.853333pt;}
.yc1{bottom:875.453333pt;}
.y4{bottom:877.373333pt;}
.ye2{bottom:882.813333pt;}
.y99{bottom:884.413333pt;}
.y169{bottom:893.373333pt;}
.yc0{bottom:894.973333pt;}
.y76{bottom:896.893333pt;}
.y1c4{bottom:899.973333pt;}
.ye1{bottom:902.333333pt;}
.y1ac{bottom:903.173333pt;}
.y98{bottom:903.933333pt;}
.y7{bottom:910.973333pt;}
.y168{bottom:912.893333pt;}
.ybf{bottom:914.813333pt;}
.y3{bottom:915.453333pt;}
.y75{bottom:916.733333pt;}
.y1c3{bottom:918.213333pt;}
.ye0{bottom:921.853333pt;}
.y97{bottom:923.773333pt;}
.y17e{bottom:927.293333pt;}
.y1ab{bottom:932.613333pt;}
.ybe{bottom:934.333333pt;}
.y1c2{bottom:936.453333pt;}
.y74{bottom:941.373333pt;}
.y96{bottom:943.293333pt;}
.y1aa{bottom:950.693333pt;}
.y6{bottom:951.933333pt;}
.ydf{bottom:952.253333pt;}
.ybd{bottom:953.853333pt;}
.y17d{bottom:957.413333pt;}
.y95{bottom:962.853333pt;}
.y1c1{bottom:968.773333pt;}
.y1a9{bottom:968.933333pt;}
.ybc{bottom:973.413333pt;}
.y73{bottom:975.973333pt;}
.y2{bottom:977.253333pt;}
.yde{bottom:982.373333pt;}
.y1a8{bottom:987.013333pt;}
.y17c{bottom:987.813333pt;}
.y94{bottom:993.253333pt;}
.y1c0{bottom:1005.253333pt;}
.y5{bottom:1006.373333pt;}
.y93{bottom:1012.773333pt;}
.y1bf{bottom:1038.560000pt;}
.y1a7{bottom:1048.480000pt;}
.y1be{bottom:1062.080000pt;}
.y1a1{bottom:1089.120000pt;}
.y1a5{bottom:1103.040000pt;}
.h2a{height:6.674687pt;}
.h1f{height:14.400000pt;}
.h1d{height:14.560000pt;}
.h29{height:14.889687pt;}
.h28{height:16.943437pt;}
.h16{height:16.960000pt;}
.h15{height:26.560000pt;}
.h10{height:26.592000pt;}
.h11{height:26.880000pt;}
.h14{height:26.912000pt;}
.h6{height:27.520000pt;}
.h12{height:32.000000pt;}
.h17{height:32.032000pt;}
.hd{height:32.320000pt;}
.hf{height:36.575000pt;}
.h20{height:42.615313pt;}
.h13{height:43.486250pt;}
.he{height:43.628750pt;}
.h27{height:44.160000pt;}
.h9{height:44.275000pt;}
.h1e{height:44.722500pt;}
.h23{height:45.182500pt;}
.h22{height:47.236250pt;}
.h18{height:48.000000pt;}
.h19{height:48.221250pt;}
.h24{height:51.343750pt;}
.h1b{height:52.306185pt;}
.h1a{height:52.641250pt;}
.h5{height:52.813750pt;}
.h2{height:54.093750pt;}
.h26{height:54.598989pt;}
.h7{height:61.120000pt;}
.ha{height:61.152000pt;}
.h25{height:66.750000pt;}
.h4{height:73.867500pt;}
.h3{height:91.507500pt;}
.h21{height:131.563830pt;}
.h8{height:145.666667pt;}
.hc{height:793.333333pt;}
.hb{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1c{height:1122.720000pt;}
.w15{width:32.000000pt;}
.w12{width:83.712000pt;}
.wc{width:93.152000pt;}
.wa{width:96.992000pt;}
.w4{width:101.152000pt;}
.we{width:101.792000pt;}
.wd{width:105.952000pt;}
.w3{width:109.504000pt;}
.wf{width:111.072000pt;}
.w10{width:124.192000pt;}
.w13{width:124.640000pt;}
.w9{width:142.746667pt;}
.wb{width:143.386667pt;}
.w5{width:388.960000pt;}
.w14{width:544.613333pt;}
.w16{width:793.279988pt;}
.w11{width:793.280000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w8{width:1122.559983pt;}
.w6{width:1122.560000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:0.960000pt;}
.x1e{left:4.000000pt;}
.x6{left:6.720000pt;}
.x1b{left:30.720000pt;}
.x1f{left:62.719988pt;}
.x21{left:70.079988pt;}
.x22{left:92.031988pt;}
.x1{left:96.031988pt;}
.x5{left:97.312000pt;}
.x13{left:99.231988pt;}
.x10{left:101.471988pt;}
.xf{left:102.751988pt;}
.x23{left:105.151988pt;}
.x26{left:106.111988pt;}
.x20{left:111.071988pt;}
.x11{left:112.991988pt;}
.x14{left:123.583988pt;}
.x24{left:125.151988pt;}
.x29{left:132.351988pt;}
.x15{left:133.826655pt;}
.x27{left:154.106655pt;}
.x25{left:162.106655pt;}
.x2{left:206.813333pt;}
.x7{left:241.346667pt;}
.x28{left:260.386655pt;}
.x4{left:308.613333pt;}
.x12{left:333.573322pt;}
.x8{left:339.613333pt;}
.x16{left:360.799988pt;}
.x1c{left:395.133333pt;}
.x19{left:427.039988pt;}
.x1a{left:431.866655pt;}
.x9{left:484.293333pt;}
.xa{left:578.720000pt;}
.x17{left:675.173322pt;}
.x18{left:679.973322pt;}
.xb{left:685.946667pt;}
.xe{left:698.213322pt;}
.x1d{left:731.040000pt;}
.xc{left:789.026667pt;}
.xd{left:901.373333pt;}
}




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