
    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_885afab15d97d85c52ee168d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_9184641e149afe250e716ba9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_e6987de64bd752e5ad98cc73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_c0e786c265efe2214cc92542.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.884766;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_2be7d040bac216d357a8e26d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_4bc42eb0fd41f5ab1f60d6d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_e2e6aabd6eb18c6a17e48ab7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_490ec29d505d71551a8560c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.762207;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_2abbadfcf5edfa88d6f2666f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_cd3a9bd2b254c46161d41041.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_39c0a59b6f4dc9bdc8c1d799.woff2')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_ac76d41bc670a06db51a33e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_b084f73f4cf2f4ef7c6064ca.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls39{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.315600px;}
.lse{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.240600px;}
.ls12{letter-spacing:-0.229800px;}
.ls9{letter-spacing:-0.216600px;}
.ls21{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.109200px;}
.ls25{letter-spacing:-0.107400px;}
.ls13{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.069600px;}
.ls23{letter-spacing:-0.064800px;}
.ls32{letter-spacing:-0.058320px;}
.ls2e{letter-spacing:-0.032400px;}
.lsb{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.ls2a{letter-spacing:0.060600px;}
.ls29{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.083400px;}
.lsc{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.174240px;}
.ls24{letter-spacing:0.175200px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.528600px;}
.ls22{letter-spacing:0.654000px;}
.ls38{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.728000px;}
.ls17{letter-spacing:2.448000px;}
.ls31{letter-spacing:3.054240px;}
.ls30{letter-spacing:3.168000px;}
.ls26{letter-spacing:3.888000px;}
.ls2f{letter-spacing:4.608000px;}
.ls1a{letter-spacing:5.328000px;}
.ls16{letter-spacing:6.048000px;}
.ls1b{letter-spacing:7.488000px;}
.ls27{letter-spacing:8.208000px;}
.ls1e{letter-spacing:8.928000px;}
.ls36{letter-spacing:11.088000px;}
.ls2d{letter-spacing:13.968000px;}
.ls2c{letter-spacing:107.568000px;}
.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;}
}
.ws21{word-spacing:-84.240000px;}
.ws12{word-spacing:-72.288000px;}
.wsb{word-spacing:-72.000000px;}
.ws1c{word-spacing:-59.760000px;}
.ws6{word-spacing:-32.543994px;}
.ws7{word-spacing:-24.588000px;}
.ws22{word-spacing:-19.566840px;}
.ws23{word-spacing:-19.103040px;}
.ws14{word-spacing:-18.808440px;}
.ws0{word-spacing:-18.681600px;}
.ws2c{word-spacing:-16.992000px;}
.ws9{word-spacing:-16.632000px;}
.ws2a{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.488000px;}
.ws8{word-spacing:-16.416000px;}
.ws11{word-spacing:-16.344000px;}
.wse{word-spacing:-16.272000px;}
.ws24{word-spacing:-16.271994px;}
.ws15{word-spacing:-16.200000px;}
.ws16{word-spacing:-16.128000px;}
.ws1b{word-spacing:-16.056000px;}
.wsc{word-spacing:-15.984000px;}
.wsa{word-spacing:-15.912000px;}
.ws17{word-spacing:-15.768000px;}
.ws13{word-spacing:-15.696000px;}
.wsf{word-spacing:-15.624000px;}
.wsd{word-spacing:-15.552000px;}
.ws1a{word-spacing:-15.480000px;}
.ws18{word-spacing:-15.408000px;}
.ws2d{word-spacing:-15.336000px;}
.ws1d{word-spacing:-14.159760px;}
.ws1f{word-spacing:-13.680960px;}
.ws25{word-spacing:-13.566360px;}
.ws27{word-spacing:-13.473360px;}
.ws28{word-spacing:-13.447440px;}
.ws1e{word-spacing:-13.440960px;}
.ws29{word-spacing:-13.436160px;}
.ws20{word-spacing:-13.398360px;}
.ws26{word-spacing:-13.396560px;}
.ws2b{word-spacing:-13.265160px;}
.ws5{word-spacing:-10.985640px;}
.ws2{word-spacing:-10.902240px;}
.ws4{word-spacing:-10.685640px;}
.ws3{word-spacing:-10.586640px;}
.ws19{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-4.476000px;}
._10{margin-left:-3.168000px;}
._f{margin-left:-2.040000px;}
._b{margin-left:-1.013040px;}
._5{width:1.050000px;}
._12{width:2.124000px;}
._11{width:3.168000px;}
._a{width:4.536000px;}
._13{width:5.544000px;}
._14{width:7.140000px;}
._3{width:8.316000px;}
._7{width:9.324000px;}
._8{width:10.332000px;}
._1d{width:11.369040px;}
._18{width:12.486000px;}
._19{width:13.728000px;}
._26{width:14.772000px;}
._6{width:16.044000px;}
._2{width:17.052000px;}
._27{width:18.132000px;}
._2c{width:19.188000px;}
._31{width:21.732000px;}
._30{width:22.872000px;}
._1f{width:24.270000px;}
._20{width:25.584000px;}
._24{width:27.408000px;}
._25{width:28.746000px;}
._4{width:29.862000px;}
._2f{width:30.953040px;}
._2e{width:31.968000px;}
._2d{width:33.456000px;}
._1{width:36.036000px;}
._1c{width:38.088000px;}
._29{width:54.468000px;}
._28{width:56.208000px;}
._9{width:57.540000px;}
._2b{width:59.394000px;}
._2a{width:60.456000px;}
._32{width:66.360000px;}
._1a{width:90.576000px;}
._21{width:94.193040px;}
._17{width:114.588960px;}
._15{width:133.627200px;}
._d{width:158.066880px;}
._33{width:848.028000px;}
._0{width:1044.756000px;}
._1e{width:1139.925600px;}
._e{width:1164.437760px;}
._35{width:1242.180000px;}
._1b{width:1248.660000px;}
._22{width:1260.900000px;}
._23{width:1270.980000px;}
._c{width:1411.397760px;}
._34{width:1417.980000px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:52.800000px;}
.fs7{font-size:54.000000px;}
.fs10{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:67.200000px;}
.fsb{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs0{font-size:84.000000px;}
.fsc{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.fs9{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:63.975000px;}
.y21{bottom:66.996000px;}
.y1a{bottom:80.985000px;}
.y20{bottom:81.576000px;}
.y94{bottom:96.876000px;}
.y19{bottom:97.995000px;}
.y62{bottom:98.316000px;}
.y3f{bottom:98.496000px;}
.y189{bottom:98.856000px;}
.y117{bottom:105.876000px;}
.y15e{bottom:106.776000px;}
.ye9{bottom:111.456000px;}
.y58{bottom:111.816000px;}
.y72{bottom:111.996000px;}
.y18{bottom:115.005000px;}
.y93{bottom:115.236000px;}
.yb6{bottom:117.576000px;}
.y12d{bottom:121.356000px;}
.y116{bottom:124.236000px;}
.y61{bottom:124.596000px;}
.y3e{bottom:124.776000px;}
.y188{bottom:125.136000px;}
.yf6{bottom:128.916000px;}
.y17{bottom:129.540000px;}
.y15d{bottom:133.236000px;}
.y19f{bottom:133.416000px;}
.y92{bottom:133.596000px;}
.y185{bottom:134.316000px;}
.yb5{bottom:135.936000px;}
.y1c4{bottom:137.736000px;}
.ye8{bottom:137.916000px;}
.y71{bottom:138.276000px;}
.y91{bottom:138.816000px;}
.y115{bottom:142.596000px;}
.y57{bottom:146.916000px;}
.y12c{bottom:147.456000px;}
.y147{bottom:147.816000px;}
.y60{bottom:151.050000px;}
.y3d{bottom:151.230000px;}
.y187{bottom:151.590000px;}
.y90{bottom:151.770000px;}
.yb4{bottom:154.290000px;}
.yf5{bottom:155.190000px;}
.y19e{bottom:155.370000px;}
.y161{bottom:156.990000px;}
.y16{bottom:157.080000px;}
.y15c{bottom:159.510000px;}
.y184{bottom:160.590000px;}
.y114{bottom:160.770000px;}
.ye7{bottom:164.190000px;}
.y70{bottom:164.730000px;}
.y113{bottom:165.990000px;}
.y160{bottom:170.130000px;}
.yb3{bottom:172.470000px;}
.y146{bottom:174.090000px;}
.y5f{bottom:177.330000px;}
.yb2{bottom:177.690000px;}
.y186{bottom:177.870000px;}
.ydd{bottom:181.110000px;}
.yf4{bottom:181.650000px;}
.y15b{bottom:185.970000px;}
.y183{bottom:187.050000px;}
.y112{bottom:188.130000px;}
.y1c3{bottom:190.470000px;}
.ye6{bottom:190.650000px;}
.yb1{bottom:190.830000px;}
.y6f{bottom:191.010000px;}
.y3c{bottom:191.910000px;}
.y19d{bottom:199.290000px;}
.y145{bottom:200.550000px;}
.y8f{bottom:201.450000px;}
.y5e{bottom:203.790000px;}
.y7c{bottom:204.150000px;}
.ydc{bottom:207.390000px;}
.yf3{bottom:207.930000px;}
.y15a{bottom:212.250000px;}
.y182{bottom:213.330000px;}
.yd1{bottom:216.750000px;}
.ye5{bottom:216.930000px;}
.y6e{bottom:217.290000px;}
.y3b{bottom:217.470000px;}
.y19c{bottom:221.250000px;}
.y144{bottom:226.830000px;}
.y8e{bottom:227.910000px;}
.y5d{bottom:230.070000px;}
.y7b{bottom:230.610000px;}
.ydb{bottom:233.850000px;}
.yf2{bottom:234.390000px;}
.y15{bottom:237.090000px;}
.y181{bottom:239.790000px;}
.yd0{bottom:243.210000px;}
.ye4{bottom:243.390000px;}
.y6d{bottom:243.750000px;}
.y14{bottom:249.840000px;}
.y143{bottom:253.110000px;}
.y8d{bottom:254.190000px;}
.y5c{bottom:256.350000px;}
.y7a{bottom:256.890000px;}
.yda{bottom:260.130000px;}
.yf1{bottom:260.670000px;}
.y13{bottom:261.540000px;}
.y1c2{bottom:264.270000px;}
.y19b{bottom:265.170000px;}
.y180{bottom:266.070000px;}
.yb0{bottom:269.130000px;}
.ycf{bottom:269.490000px;}
.ye3{bottom:269.670000px;}
.y6c{bottom:270.030000px;}
.y12{bottom:272.160000px;}
.y111{bottom:278.670000px;}
.y142{bottom:279.570000px;}
.y8c{bottom:280.650000px;}
.y1c1{bottom:282.675000px;}
.y11{bottom:282.795000px;}
.y3a{bottom:282.855000px;}
.y79{bottom:283.395000px;}
.yd8{bottom:286.635000px;}
.yf0{bottom:287.175000px;}
.y159{bottom:287.715000px;}
.y17f{bottom:292.395000px;}
.yd9{bottom:292.575000px;}
.y10{bottom:293.430000px;}
.yce{bottom:295.995000px;}
.ye2{bottom:296.175000px;}
.y6b{bottom:296.535000px;}
.y1c0{bottom:300.855000px;}
.yf{bottom:304.050000px;}
.yaf{bottom:304.635000px;}
.y110{bottom:305.175000px;}
.y141{bottom:305.895000px;}
.y8b{bottom:306.975000px;}
.y39{bottom:309.135000px;}
.y78{bottom:309.675000px;}
.yd7{bottom:313.455000px;}
.y158{bottom:313.995000px;}
.ye{bottom:314.685000px;}
.y17e{bottom:318.855000px;}
.y1bf{bottom:319.215000px;}
.ycd{bottom:322.275000px;}
.ye1{bottom:322.455000px;}
.y6a{bottom:322.815000px;}
.yae{bottom:330.915000px;}
.y19a{bottom:331.275000px;}
.y10f{bottom:331.455000px;}
.y140{bottom:332.355000px;}
.y8a{bottom:333.435000px;}
.y38{bottom:335.595000px;}
.y77{bottom:336.135000px;}
.yd{bottom:336.555000px;}
.y1be{bottom:337.575000px;}
.yd6{bottom:339.915000px;}
.y157{bottom:340.455000px;}
.y12b{bottom:344.235000px;}
.y17d{bottom:345.135000px;}
.ycc{bottom:348.735000px;}
.ye0{bottom:348.915000px;}
.y69{bottom:349.275000px;}
.y199{bottom:353.235000px;}
.y1bd{bottom:355.935000px;}
.yad{bottom:357.375000px;}
.y10e{bottom:357.915000px;}
.y13f{bottom:358.635000px;}
.y89{bottom:359.715000px;}
.y37{bottom:361.875000px;}
.y76{bottom:362.415000px;}
.yd5{bottom:366.195000px;}
.y156{bottom:366.735000px;}
.y12a{bottom:370.695000px;}
.y17c{bottom:371.595000px;}
.ycb{bottom:375.015000px;}
.ydf{bottom:375.195000px;}
.y68{bottom:375.555000px;}
.yac{bottom:383.655000px;}
.y10d{bottom:384.195000px;}
.y13e{bottom:385.095000px;}
.y88{bottom:386.175000px;}
.y36{bottom:388.335000px;}
.y75{bottom:388.875000px;}
.yd4{bottom:392.655000px;}
.y1bc{bottom:393.015000px;}
.y155{bottom:393.195000px;}
.y129{bottom:396.975000px;}
.y198{bottom:397.155000px;}
.y17b{bottom:397.875000px;}
.yca{bottom:401.475000px;}
.y67{bottom:402.015000px;}
.y5b{bottom:402.735000px;}
.yde{bottom:406.155000px;}
.yab{bottom:410.115000px;}
.y10c{bottom:410.655000px;}
.y13d{bottom:411.375000px;}
.y87{bottom:412.455000px;}
.y35{bottom:414.615000px;}
.y74{bottom:415.155000px;}
.yd3{bottom:418.935000px;}
.y197{bottom:419.115000px;}
.y154{bottom:419.475000px;}
.y128{bottom:423.435000px;}
.y17a{bottom:424.335000px;}
.yc9{bottom:427.755000px;}
.yaa{bottom:436.395000px;}
.y10b{bottom:436.935000px;}
.y1bb{bottom:437.115000px;}
.y13c{bottom:437.835000px;}
.y86{bottom:438.915000px;}
.y34{bottom:441.075000px;}
.y73{bottom:441.615000px;}
.y66{bottom:441.975000px;}
.yef{bottom:445.395000px;}
.y153{bottom:445.935000px;}
.y127{bottom:449.715000px;}
.yd2{bottom:449.895000px;}
.y179{bottom:450.615000px;}
.yc8{bottom:454.215000px;}
.y1ba{bottom:459.075000px;}
.ya9{bottom:462.855000px;}
.y196{bottom:463.035000px;}
.y10a{bottom:463.395000px;}
.y65{bottom:463.935000px;}
.y13b{bottom:464.115000px;}
.y85{bottom:465.195000px;}
.y33{bottom:467.355000px;}
.y5a{bottom:467.895000px;}
.yee{bottom:471.675000px;}
.y152{bottom:472.215000px;}
.y126{bottom:476.175000px;}
.y178{bottom:477.075000px;}
.yc7{bottom:480.495000px;}
.y1b9{bottom:481.035000px;}
.y195{bottom:484.995000px;}
.y64{bottom:485.895000px;}
.ya8{bottom:489.135000px;}
.y109{bottom:489.675000px;}
.y13a{bottom:490.575000px;}
.y84{bottom:491.655000px;}
.y32{bottom:493.815000px;}
.y59{bottom:494.355000px;}
.yed{bottom:498.135000px;}
.y151{bottom:498.675000px;}
.y125{bottom:502.455000px;}
.y177{bottom:503.355000px;}
.yc6{bottom:506.955000px;}
.y1b8{bottom:511.455000px;}
.ya7{bottom:515.595000px;}
.y108{bottom:516.135000px;}
.y63{bottom:516.315000px;}
.y139{bottom:516.855000px;}
.y83{bottom:517.935000px;}
.y31{bottom:520.095000px;}
.y56{bottom:520.635000px;}
.yec{bottom:524.415000px;}
.y150{bottom:524.955000px;}
.y124{bottom:528.915000px;}
.y176{bottom:529.815000px;}
.yc5{bottom:533.235000px;}
.ya6{bottom:541.875000px;}
.y107{bottom:542.415000px;}
.y138{bottom:543.315000px;}
.y30{bottom:546.555000px;}
.y55{bottom:547.095000px;}
.yeb{bottom:550.875000px;}
.y123{bottom:555.195000px;}
.y14f{bottom:555.915000px;}
.y175{bottom:556.095000px;}
.y82{bottom:557.895000px;}
.yc4{bottom:559.695000px;}
.ya5{bottom:568.365000px;}
.y106{bottom:568.905000px;}
.y137{bottom:569.625000px;}
.y2f{bottom:572.865000px;}
.y54{bottom:573.405000px;}
.y14e{bottom:577.905000px;}
.yc{bottom:579.885000px;}
.y122{bottom:581.685000px;}
.yea{bottom:581.865000px;}
.y174{bottom:582.585000px;}
.yc3{bottom:586.005000px;}
.ya4{bottom:594.645000px;}
.y194{bottom:594.825000px;}
.y105{bottom:595.185000px;}
.y136{bottom:596.085000px;}
.y2e{bottom:599.325000px;}
.y53{bottom:599.865000px;}
.y81{bottom:601.845000px;}
.y121{bottom:607.965000px;}
.y173{bottom:608.865000px;}
.yc2{bottom:612.465000px;}
.y193{bottom:616.785000px;}
.ya3{bottom:621.105000px;}
.y104{bottom:621.645000px;}
.y135{bottom:622.365000px;}
.y80{bottom:623.805000px;}
.y2d{bottom:625.605000px;}
.y52{bottom:626.145000px;}
.y1b0{bottom:629.385000px;}
.y120{bottom:634.425000px;}
.y172{bottom:635.325000px;}
.y192{bottom:638.925000px;}
.y7f{bottom:645.765000px;}
.ya2{bottom:647.385000px;}
.y103{bottom:647.925000px;}
.y14d{bottom:648.645000px;}
.y134{bottom:648.825000px;}
.y2c{bottom:652.065000px;}
.yc1{bottom:652.425000px;}
.y51{bottom:652.605000px;}
.y11f{bottom:660.705000px;}
.y191{bottom:660.885000px;}
.y171{bottom:661.605000px;}
.y1af{bottom:669.345000px;}
.y7e{bottom:671.865000px;}
.ya1{bottom:673.845000px;}
.yc0{bottom:674.385000px;}
.y133{bottom:675.105000px;}
.y2b{bottom:678.345000px;}
.y50{bottom:678.885000px;}
.y190{bottom:682.845000px;}
.y11e{bottom:687.165000px;}
.y170{bottom:688.065000px;}
.ybf{bottom:696.345000px;}
.ya0{bottom:700.125000px;}
.y102{bottom:700.665000px;}
.y14c{bottom:701.385000px;}
.y132{bottom:701.565000px;}
.y2a{bottom:704.805000px;}
.y4f{bottom:705.345000px;}
.y15f{bottom:711.285000px;}
.y11d{bottom:713.445000px;}
.y16f{bottom:714.345000px;}
.ybe{bottom:718.305000px;}
.y9f{bottom:726.585000px;}
.y18f{bottom:726.765000px;}
.y101{bottom:727.125000px;}
.y1ae{bottom:727.305000px;}
.y131{bottom:727.845000px;}
.yb{bottom:731.085000px;}
.y4e{bottom:731.625000px;}
.y1b7{bottom:734.145000px;}
.y11c{bottom:739.725000px;}
.ybd{bottom:740.265000px;}
.y16e{bottom:740.805000px;}
.y18e{bottom:748.725000px;}
.y1ad{bottom:749.265000px;}
.y9e{bottom:752.865000px;}
.y100{bottom:753.405000px;}
.y14b{bottom:754.125000px;}
.y1b6{bottom:756.105000px;}
.y29{bottom:757.545000px;}
.y4d{bottom:758.085000px;}
.y130{bottom:758.805000px;}
.ya{bottom:763.875000px;}
.y11b{bottom:766.185000px;}
.ybc{bottom:766.365000px;}
.y16d{bottom:767.085000px;}
.y18d{bottom:770.685000px;}
.y1ac{bottom:771.225000px;}
.y1b5{bottom:778.065000px;}
.y9d{bottom:779.325000px;}
.yff{bottom:779.865000px;}
.y9{bottom:780.885000px;}
.y28{bottom:783.825000px;}
.y4c{bottom:784.365000px;}
.y12f{bottom:784.905000px;}
.y14a{bottom:785.085000px;}
.y11a{bottom:792.465000px;}
.y18c{bottom:792.645000px;}
.y1ab{bottom:793.185000px;}
.y16c{bottom:793.545000px;}
.y1b4{bottom:800.025000px;}
.y9b{bottom:805.605000px;}
.yfe{bottom:806.145000px;}
.y27{bottom:810.285000px;}
.y4b{bottom:810.825000px;}
.y149{bottom:811.185000px;}
.y9c{bottom:811.545000px;}
.y8{bottom:814.005000px;}
.y18b{bottom:814.605000px;}
.y1aa{bottom:815.145000px;}
.y119{bottom:818.925000px;}
.y16b{bottom:819.825000px;}
.y1b3{bottom:821.985000px;}
.y7{bottom:831.015000px;}
.y9a{bottom:832.065000px;}
.yfd{bottom:832.605000px;}
.y26{bottom:836.565000px;}
.y4a{bottom:837.105000px;}
.y1b2{bottom:843.945000px;}
.y16a{bottom:846.285000px;}
.y6{bottom:848.025000px;}
.y118{bottom:849.930000px;}
.y99{bottom:858.390000px;}
.yfc{bottom:858.930000px;}
.y1a9{bottom:859.110000px;}
.y49{bottom:863.610000px;}
.y5{bottom:865.035000px;}
.y169{bottom:872.610000px;}
.y1b1{bottom:874.590000px;}
.y18a{bottom:877.470000px;}
.y1a8{bottom:881.070000px;}
.y98{bottom:884.850000px;}
.yfb{bottom:885.210000px;}
.y48{bottom:889.890000px;}
.y25{bottom:899.070000px;}
.y1a7{bottom:903.030000px;}
.y97{bottom:911.130000px;}
.yf9{bottom:911.670000px;}
.y47{bottom:916.350000px;}
.yfa{bottom:917.610000px;}
.y1a6{bottom:924.990000px;}
.y168{bottom:925.350000px;}
.yf8{bottom:937.950000px;}
.y96{bottom:942.090000px;}
.y46{bottom:942.630000px;}
.y4{bottom:944.295000px;}
.y1a5{bottom:946.950000px;}
.y167{bottom:951.810000px;}
.y24{bottom:959.370000px;}
.yf7{bottom:964.410000px;}
.y45{bottom:969.090000px;}
.y3{bottom:969.525000px;}
.y12e{bottom:977.370000px;}
.y166{bottom:978.090000px;}
.y95{bottom:982.770000px;}
.ybb{bottom:990.690000px;}
.y1a4{bottom:991.050000px;}
.y23{bottom:994.830000px;}
.y44{bottom:995.370000px;}
.y2{bottom:999.285000px;}
.y148{bottom:1003.650000px;}
.y165{bottom:1004.550000px;}
.y1a3{bottom:1013.010000px;}
.yb9{bottom:1017.150000px;}
.y43{bottom:1021.650000px;}
.yba{bottom:1023.090000px;}
.y1{bottom:1029.060000px;}
.y164{bottom:1030.830000px;}
.y1a2{bottom:1034.970000px;}
.y22{bottom:1038.750000px;}
.yb8{bottom:1043.430000px;}
.y42{bottom:1048.110000px;}
.y1a1{bottom:1056.930000px;}
.y163{bottom:1057.290000px;}
.yb7{bottom:1069.890000px;}
.y41{bottom:1074.390000px;}
.y1a0{bottom:1078.890000px;}
.y7d{bottom:1080.330000px;}
.y162{bottom:1097.970000px;}
.y40{bottom:1100.850000px;}
.y1f{bottom:1139.220000px;}
.y1e{bottom:1171.980000px;}
.y1d{bottom:1185.840000px;}
.y1c{bottom:1197.540000px;}
.h8{height:31.122000px;}
.h1c{height:31.320000px;}
.h6{height:35.568000px;}
.h7{height:35.664000px;}
.h19{height:38.671172px;}
.hb{height:40.014000px;}
.hd{height:42.115781px;}
.he{height:42.186445px;}
.h5{height:44.460000px;}
.h9{height:44.580000px;}
.h16{height:47.980898px;}
.h4{height:48.906000px;}
.ha{height:49.795200px;}
.h14{height:54.000000px;}
.h1a{height:59.439023px;}
.h1d{height:61.423863px;}
.h2{height:62.244000px;}
.h3{height:62.412000px;}
.h13{height:62.964844px;}
.h17{height:63.090773px;}
.h11{height:71.613281px;}
.h15{height:71.824219px;}
.h1b{height:73.722656px;}
.h18{height:74.004654px;}
.h12{height:83.787539px;}
.h10{height:107.419922px;}
.hf{height:143.226562px;}
.h0{height:1262.835000px;}
.hc{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:46.770000px;}
.x1{left:55.275000px;}
.x5{left:84.959987px;}
.xc{left:89.855987px;}
.x9{left:124.595973px;}
.xa{left:130.715987px;}
.x6{left:138.995987px;}
.x2{left:148.815000px;}
.xf{left:196.769973px;}
.x10{left:202.889987px;}
.x18{left:211.889973px;}
.x19{left:218.009987px;}
.xb{left:301.034987px;}
.x12{left:399.674973px;}
.x13{left:405.434987px;}
.x7{left:427.034987px;}
.x4{left:437.955000px;}
.x1a{left:440.534987px;}
.x16{left:473.864987px;}
.x11{left:474.944987px;}
.x17{left:476.564987px;}
.x1b{left:484.664987px;}
.xd{left:550.184973px;}
.xe{left:556.304987px;}
.x14{left:638.744973px;}
.x15{left:644.864987px;}
.x8{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls39{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.280533pt;}
.lse{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.213867pt;}
.ls12{letter-spacing:-0.204267pt;}
.ls9{letter-spacing:-0.192533pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.097067pt;}
.ls25{letter-spacing:-0.095467pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.061867pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls32{letter-spacing:-0.051840pt;}
.ls2e{letter-spacing:-0.028800pt;}
.lsb{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.ls2a{letter-spacing:0.053867pt;}
.ls29{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074133pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.154880pt;}
.ls24{letter-spacing:0.155733pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.469867pt;}
.ls22{letter-spacing:0.581333pt;}
.ls38{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:1.536000pt;}
.ls17{letter-spacing:2.176000pt;}
.ls31{letter-spacing:2.714880pt;}
.ls30{letter-spacing:2.816000pt;}
.ls26{letter-spacing:3.456000pt;}
.ls2f{letter-spacing:4.096000pt;}
.ls1a{letter-spacing:4.736000pt;}
.ls16{letter-spacing:5.376000pt;}
.ls1b{letter-spacing:6.656000pt;}
.ls27{letter-spacing:7.296000pt;}
.ls1e{letter-spacing:7.936000pt;}
.ls36{letter-spacing:9.856000pt;}
.ls2d{letter-spacing:12.416000pt;}
.ls2c{letter-spacing:95.616000pt;}
.ws21{word-spacing:-74.880000pt;}
.ws12{word-spacing:-64.256000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws6{word-spacing:-28.927995pt;}
.ws7{word-spacing:-21.856000pt;}
.ws22{word-spacing:-17.392747pt;}
.ws23{word-spacing:-16.980480pt;}
.ws14{word-spacing:-16.718613pt;}
.ws0{word-spacing:-16.605867pt;}
.ws2c{word-spacing:-15.104000pt;}
.ws9{word-spacing:-14.784000pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.592000pt;}
.ws11{word-spacing:-14.528000pt;}
.wse{word-spacing:-14.464000pt;}
.ws24{word-spacing:-14.463995pt;}
.ws15{word-spacing:-14.400000pt;}
.ws16{word-spacing:-14.336000pt;}
.ws1b{word-spacing:-14.272000pt;}
.wsc{word-spacing:-14.208000pt;}
.wsa{word-spacing:-14.144000pt;}
.ws17{word-spacing:-14.016000pt;}
.ws13{word-spacing:-13.952000pt;}
.wsf{word-spacing:-13.888000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws1a{word-spacing:-13.760000pt;}
.ws18{word-spacing:-13.696000pt;}
.ws2d{word-spacing:-13.632000pt;}
.ws1d{word-spacing:-12.586453pt;}
.ws1f{word-spacing:-12.160853pt;}
.ws25{word-spacing:-12.058987pt;}
.ws27{word-spacing:-11.976320pt;}
.ws28{word-spacing:-11.953280pt;}
.ws1e{word-spacing:-11.947520pt;}
.ws29{word-spacing:-11.943253pt;}
.ws20{word-spacing:-11.909653pt;}
.ws26{word-spacing:-11.908053pt;}
.ws2b{word-spacing:-11.791253pt;}
.ws5{word-spacing:-9.765013pt;}
.ws2{word-spacing:-9.690880pt;}
.ws4{word-spacing:-9.498347pt;}
.ws3{word-spacing:-9.410347pt;}
.ws19{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-3.978667pt;}
._10{margin-left:-2.816000pt;}
._f{margin-left:-1.813333pt;}
._b{margin-left:-0.900480pt;}
._5{width:0.933333pt;}
._12{width:1.888000pt;}
._11{width:2.816000pt;}
._a{width:4.032000pt;}
._13{width:4.928000pt;}
._14{width:6.346667pt;}
._3{width:7.392000pt;}
._7{width:8.288000pt;}
._8{width:9.184000pt;}
._1d{width:10.105813pt;}
._18{width:11.098667pt;}
._19{width:12.202667pt;}
._26{width:13.130667pt;}
._6{width:14.261333pt;}
._2{width:15.157333pt;}
._27{width:16.117333pt;}
._2c{width:17.056000pt;}
._31{width:19.317333pt;}
._30{width:20.330667pt;}
._1f{width:21.573333pt;}
._20{width:22.741333pt;}
._24{width:24.362667pt;}
._25{width:25.552000pt;}
._4{width:26.544000pt;}
._2f{width:27.513813pt;}
._2e{width:28.416000pt;}
._2d{width:29.738667pt;}
._1{width:32.032000pt;}
._1c{width:33.856000pt;}
._29{width:48.416000pt;}
._28{width:49.962667pt;}
._9{width:51.146667pt;}
._2b{width:52.794667pt;}
._2a{width:53.738667pt;}
._32{width:58.986667pt;}
._1a{width:80.512000pt;}
._21{width:83.727147pt;}
._17{width:101.856853pt;}
._15{width:118.779733pt;}
._d{width:140.503893pt;}
._33{width:753.802667pt;}
._0{width:928.672000pt;}
._1e{width:1013.267200pt;}
._e{width:1035.055787pt;}
._35{width:1104.160000pt;}
._1b{width:1109.920000pt;}
._22{width:1120.800000pt;}
._23{width:1129.760000pt;}
._c{width:1254.575787pt;}
._34{width:1260.426667pt;}
.fsf{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:46.933333pt;}
.fs7{font-size:48.000000pt;}
.fs10{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:59.733333pt;}
.fsb{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs0{font-size:74.666667pt;}
.fsc{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.fs9{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:56.866667pt;}
.y21{bottom:59.552000pt;}
.y1a{bottom:71.986667pt;}
.y20{bottom:72.512000pt;}
.y94{bottom:86.112000pt;}
.y19{bottom:87.106667pt;}
.y62{bottom:87.392000pt;}
.y3f{bottom:87.552000pt;}
.y189{bottom:87.872000pt;}
.y117{bottom:94.112000pt;}
.y15e{bottom:94.912000pt;}
.ye9{bottom:99.072000pt;}
.y58{bottom:99.392000pt;}
.y72{bottom:99.552000pt;}
.y18{bottom:102.226667pt;}
.y93{bottom:102.432000pt;}
.yb6{bottom:104.512000pt;}
.y12d{bottom:107.872000pt;}
.y116{bottom:110.432000pt;}
.y61{bottom:110.752000pt;}
.y3e{bottom:110.912000pt;}
.y188{bottom:111.232000pt;}
.yf6{bottom:114.592000pt;}
.y17{bottom:115.146667pt;}
.y15d{bottom:118.432000pt;}
.y19f{bottom:118.592000pt;}
.y92{bottom:118.752000pt;}
.y185{bottom:119.392000pt;}
.yb5{bottom:120.832000pt;}
.y1c4{bottom:122.432000pt;}
.ye8{bottom:122.592000pt;}
.y71{bottom:122.912000pt;}
.y91{bottom:123.392000pt;}
.y115{bottom:126.752000pt;}
.y57{bottom:130.592000pt;}
.y12c{bottom:131.072000pt;}
.y147{bottom:131.392000pt;}
.y60{bottom:134.266667pt;}
.y3d{bottom:134.426667pt;}
.y187{bottom:134.746667pt;}
.y90{bottom:134.906667pt;}
.yb4{bottom:137.146667pt;}
.yf5{bottom:137.946667pt;}
.y19e{bottom:138.106667pt;}
.y161{bottom:139.546667pt;}
.y16{bottom:139.626667pt;}
.y15c{bottom:141.786667pt;}
.y184{bottom:142.746667pt;}
.y114{bottom:142.906667pt;}
.ye7{bottom:145.946667pt;}
.y70{bottom:146.426667pt;}
.y113{bottom:147.546667pt;}
.y160{bottom:151.226667pt;}
.yb3{bottom:153.306667pt;}
.y146{bottom:154.746667pt;}
.y5f{bottom:157.626667pt;}
.yb2{bottom:157.946667pt;}
.y186{bottom:158.106667pt;}
.ydd{bottom:160.986667pt;}
.yf4{bottom:161.466667pt;}
.y15b{bottom:165.306667pt;}
.y183{bottom:166.266667pt;}
.y112{bottom:167.226667pt;}
.y1c3{bottom:169.306667pt;}
.ye6{bottom:169.466667pt;}
.yb1{bottom:169.626667pt;}
.y6f{bottom:169.786667pt;}
.y3c{bottom:170.586667pt;}
.y19d{bottom:177.146667pt;}
.y145{bottom:178.266667pt;}
.y8f{bottom:179.066667pt;}
.y5e{bottom:181.146667pt;}
.y7c{bottom:181.466667pt;}
.ydc{bottom:184.346667pt;}
.yf3{bottom:184.826667pt;}
.y15a{bottom:188.666667pt;}
.y182{bottom:189.626667pt;}
.yd1{bottom:192.666667pt;}
.ye5{bottom:192.826667pt;}
.y6e{bottom:193.146667pt;}
.y3b{bottom:193.306667pt;}
.y19c{bottom:196.666667pt;}
.y144{bottom:201.626667pt;}
.y8e{bottom:202.586667pt;}
.y5d{bottom:204.506667pt;}
.y7b{bottom:204.986667pt;}
.ydb{bottom:207.866667pt;}
.yf2{bottom:208.346667pt;}
.y15{bottom:210.746667pt;}
.y181{bottom:213.146667pt;}
.yd0{bottom:216.186667pt;}
.ye4{bottom:216.346667pt;}
.y6d{bottom:216.666667pt;}
.y14{bottom:222.080000pt;}
.y143{bottom:224.986667pt;}
.y8d{bottom:225.946667pt;}
.y5c{bottom:227.866667pt;}
.y7a{bottom:228.346667pt;}
.yda{bottom:231.226667pt;}
.yf1{bottom:231.706667pt;}
.y13{bottom:232.480000pt;}
.y1c2{bottom:234.906667pt;}
.y19b{bottom:235.706667pt;}
.y180{bottom:236.506667pt;}
.yb0{bottom:239.226667pt;}
.ycf{bottom:239.546667pt;}
.ye3{bottom:239.706667pt;}
.y6c{bottom:240.026667pt;}
.y12{bottom:241.920000pt;}
.y111{bottom:247.706667pt;}
.y142{bottom:248.506667pt;}
.y8c{bottom:249.466667pt;}
.y1c1{bottom:251.266667pt;}
.y11{bottom:251.373333pt;}
.y3a{bottom:251.426667pt;}
.y79{bottom:251.906667pt;}
.yd8{bottom:254.786667pt;}
.yf0{bottom:255.266667pt;}
.y159{bottom:255.746667pt;}
.y17f{bottom:259.906667pt;}
.yd9{bottom:260.066667pt;}
.y10{bottom:260.826667pt;}
.yce{bottom:263.106667pt;}
.ye2{bottom:263.266667pt;}
.y6b{bottom:263.586667pt;}
.y1c0{bottom:267.426667pt;}
.yf{bottom:270.266667pt;}
.yaf{bottom:270.786667pt;}
.y110{bottom:271.266667pt;}
.y141{bottom:271.906667pt;}
.y8b{bottom:272.866667pt;}
.y39{bottom:274.786667pt;}
.y78{bottom:275.266667pt;}
.yd7{bottom:278.626667pt;}
.y158{bottom:279.106667pt;}
.ye{bottom:279.720000pt;}
.y17e{bottom:283.426667pt;}
.y1bf{bottom:283.746667pt;}
.ycd{bottom:286.466667pt;}
.ye1{bottom:286.626667pt;}
.y6a{bottom:286.946667pt;}
.yae{bottom:294.146667pt;}
.y19a{bottom:294.466667pt;}
.y10f{bottom:294.626667pt;}
.y140{bottom:295.426667pt;}
.y8a{bottom:296.386667pt;}
.y38{bottom:298.306667pt;}
.y77{bottom:298.786667pt;}
.yd{bottom:299.160000pt;}
.y1be{bottom:300.066667pt;}
.yd6{bottom:302.146667pt;}
.y157{bottom:302.626667pt;}
.y12b{bottom:305.986667pt;}
.y17d{bottom:306.786667pt;}
.ycc{bottom:309.986667pt;}
.ye0{bottom:310.146667pt;}
.y69{bottom:310.466667pt;}
.y199{bottom:313.986667pt;}
.y1bd{bottom:316.386667pt;}
.yad{bottom:317.666667pt;}
.y10e{bottom:318.146667pt;}
.y13f{bottom:318.786667pt;}
.y89{bottom:319.746667pt;}
.y37{bottom:321.666667pt;}
.y76{bottom:322.146667pt;}
.yd5{bottom:325.506667pt;}
.y156{bottom:325.986667pt;}
.y12a{bottom:329.506667pt;}
.y17c{bottom:330.306667pt;}
.ycb{bottom:333.346667pt;}
.ydf{bottom:333.506667pt;}
.y68{bottom:333.826667pt;}
.yac{bottom:341.026667pt;}
.y10d{bottom:341.506667pt;}
.y13e{bottom:342.306667pt;}
.y88{bottom:343.266667pt;}
.y36{bottom:345.186667pt;}
.y75{bottom:345.666667pt;}
.yd4{bottom:349.026667pt;}
.y1bc{bottom:349.346667pt;}
.y155{bottom:349.506667pt;}
.y129{bottom:352.866667pt;}
.y198{bottom:353.026667pt;}
.y17b{bottom:353.666667pt;}
.yca{bottom:356.866667pt;}
.y67{bottom:357.346667pt;}
.y5b{bottom:357.986667pt;}
.yde{bottom:361.026667pt;}
.yab{bottom:364.546667pt;}
.y10c{bottom:365.026667pt;}
.y13d{bottom:365.666667pt;}
.y87{bottom:366.626667pt;}
.y35{bottom:368.546667pt;}
.y74{bottom:369.026667pt;}
.yd3{bottom:372.386667pt;}
.y197{bottom:372.546667pt;}
.y154{bottom:372.866667pt;}
.y128{bottom:376.386667pt;}
.y17a{bottom:377.186667pt;}
.yc9{bottom:380.226667pt;}
.yaa{bottom:387.906667pt;}
.y10b{bottom:388.386667pt;}
.y1bb{bottom:388.546667pt;}
.y13c{bottom:389.186667pt;}
.y86{bottom:390.146667pt;}
.y34{bottom:392.066667pt;}
.y73{bottom:392.546667pt;}
.y66{bottom:392.866667pt;}
.yef{bottom:395.906667pt;}
.y153{bottom:396.386667pt;}
.y127{bottom:399.746667pt;}
.yd2{bottom:399.906667pt;}
.y179{bottom:400.546667pt;}
.yc8{bottom:403.746667pt;}
.y1ba{bottom:408.066667pt;}
.ya9{bottom:411.426667pt;}
.y196{bottom:411.586667pt;}
.y10a{bottom:411.906667pt;}
.y65{bottom:412.386667pt;}
.y13b{bottom:412.546667pt;}
.y85{bottom:413.506667pt;}
.y33{bottom:415.426667pt;}
.y5a{bottom:415.906667pt;}
.yee{bottom:419.266667pt;}
.y152{bottom:419.746667pt;}
.y126{bottom:423.266667pt;}
.y178{bottom:424.066667pt;}
.yc7{bottom:427.106667pt;}
.y1b9{bottom:427.586667pt;}
.y195{bottom:431.106667pt;}
.y64{bottom:431.906667pt;}
.ya8{bottom:434.786667pt;}
.y109{bottom:435.266667pt;}
.y13a{bottom:436.066667pt;}
.y84{bottom:437.026667pt;}
.y32{bottom:438.946667pt;}
.y59{bottom:439.426667pt;}
.yed{bottom:442.786667pt;}
.y151{bottom:443.266667pt;}
.y125{bottom:446.626667pt;}
.y177{bottom:447.426667pt;}
.yc6{bottom:450.626667pt;}
.y1b8{bottom:454.626667pt;}
.ya7{bottom:458.306667pt;}
.y108{bottom:458.786667pt;}
.y63{bottom:458.946667pt;}
.y139{bottom:459.426667pt;}
.y83{bottom:460.386667pt;}
.y31{bottom:462.306667pt;}
.y56{bottom:462.786667pt;}
.yec{bottom:466.146667pt;}
.y150{bottom:466.626667pt;}
.y124{bottom:470.146667pt;}
.y176{bottom:470.946667pt;}
.yc5{bottom:473.986667pt;}
.ya6{bottom:481.666667pt;}
.y107{bottom:482.146667pt;}
.y138{bottom:482.946667pt;}
.y30{bottom:485.826667pt;}
.y55{bottom:486.306667pt;}
.yeb{bottom:489.666667pt;}
.y123{bottom:493.506667pt;}
.y14f{bottom:494.146667pt;}
.y175{bottom:494.306667pt;}
.y82{bottom:495.906667pt;}
.yc4{bottom:497.506667pt;}
.ya5{bottom:505.213333pt;}
.y106{bottom:505.693333pt;}
.y137{bottom:506.333333pt;}
.y2f{bottom:509.213333pt;}
.y54{bottom:509.693333pt;}
.y14e{bottom:513.693333pt;}
.yc{bottom:515.453333pt;}
.y122{bottom:517.053333pt;}
.yea{bottom:517.213333pt;}
.y174{bottom:517.853333pt;}
.yc3{bottom:520.893333pt;}
.ya4{bottom:528.573333pt;}
.y194{bottom:528.733333pt;}
.y105{bottom:529.053333pt;}
.y136{bottom:529.853333pt;}
.y2e{bottom:532.733333pt;}
.y53{bottom:533.213333pt;}
.y81{bottom:534.973333pt;}
.y121{bottom:540.413333pt;}
.y173{bottom:541.213333pt;}
.yc2{bottom:544.413333pt;}
.y193{bottom:548.253333pt;}
.ya3{bottom:552.093333pt;}
.y104{bottom:552.573333pt;}
.y135{bottom:553.213333pt;}
.y80{bottom:554.493333pt;}
.y2d{bottom:556.093333pt;}
.y52{bottom:556.573333pt;}
.y1b0{bottom:559.453333pt;}
.y120{bottom:563.933333pt;}
.y172{bottom:564.733333pt;}
.y192{bottom:567.933333pt;}
.y7f{bottom:574.013333pt;}
.ya2{bottom:575.453333pt;}
.y103{bottom:575.933333pt;}
.y14d{bottom:576.573333pt;}
.y134{bottom:576.733333pt;}
.y2c{bottom:579.613333pt;}
.yc1{bottom:579.933333pt;}
.y51{bottom:580.093333pt;}
.y11f{bottom:587.293333pt;}
.y191{bottom:587.453333pt;}
.y171{bottom:588.093333pt;}
.y1af{bottom:594.973333pt;}
.y7e{bottom:597.213333pt;}
.ya1{bottom:598.973333pt;}
.yc0{bottom:599.453333pt;}
.y133{bottom:600.093333pt;}
.y2b{bottom:602.973333pt;}
.y50{bottom:603.453333pt;}
.y190{bottom:606.973333pt;}
.y11e{bottom:610.813333pt;}
.y170{bottom:611.613333pt;}
.ybf{bottom:618.973333pt;}
.ya0{bottom:622.333333pt;}
.y102{bottom:622.813333pt;}
.y14c{bottom:623.453333pt;}
.y132{bottom:623.613333pt;}
.y2a{bottom:626.493333pt;}
.y4f{bottom:626.973333pt;}
.y15f{bottom:632.253333pt;}
.y11d{bottom:634.173333pt;}
.y16f{bottom:634.973333pt;}
.ybe{bottom:638.493333pt;}
.y9f{bottom:645.853333pt;}
.y18f{bottom:646.013333pt;}
.y101{bottom:646.333333pt;}
.y1ae{bottom:646.493333pt;}
.y131{bottom:646.973333pt;}
.yb{bottom:649.853333pt;}
.y4e{bottom:650.333333pt;}
.y1b7{bottom:652.573333pt;}
.y11c{bottom:657.533333pt;}
.ybd{bottom:658.013333pt;}
.y16e{bottom:658.493333pt;}
.y18e{bottom:665.533333pt;}
.y1ad{bottom:666.013333pt;}
.y9e{bottom:669.213333pt;}
.y100{bottom:669.693333pt;}
.y14b{bottom:670.333333pt;}
.y1b6{bottom:672.093333pt;}
.y29{bottom:673.373333pt;}
.y4d{bottom:673.853333pt;}
.y130{bottom:674.493333pt;}
.ya{bottom:679.000000pt;}
.y11b{bottom:681.053333pt;}
.ybc{bottom:681.213333pt;}
.y16d{bottom:681.853333pt;}
.y18d{bottom:685.053333pt;}
.y1ac{bottom:685.533333pt;}
.y1b5{bottom:691.613333pt;}
.y9d{bottom:692.733333pt;}
.yff{bottom:693.213333pt;}
.y9{bottom:694.120000pt;}
.y28{bottom:696.733333pt;}
.y4c{bottom:697.213333pt;}
.y12f{bottom:697.693333pt;}
.y14a{bottom:697.853333pt;}
.y11a{bottom:704.413333pt;}
.y18c{bottom:704.573333pt;}
.y1ab{bottom:705.053333pt;}
.y16c{bottom:705.373333pt;}
.y1b4{bottom:711.133333pt;}
.y9b{bottom:716.093333pt;}
.yfe{bottom:716.573333pt;}
.y27{bottom:720.253333pt;}
.y4b{bottom:720.733333pt;}
.y149{bottom:721.053333pt;}
.y9c{bottom:721.373333pt;}
.y8{bottom:723.560000pt;}
.y18b{bottom:724.093333pt;}
.y1aa{bottom:724.573333pt;}
.y119{bottom:727.933333pt;}
.y16b{bottom:728.733333pt;}
.y1b3{bottom:730.653333pt;}
.y7{bottom:738.680000pt;}
.y9a{bottom:739.613333pt;}
.yfd{bottom:740.093333pt;}
.y26{bottom:743.613333pt;}
.y4a{bottom:744.093333pt;}
.y1b2{bottom:750.173333pt;}
.y16a{bottom:752.253333pt;}
.y6{bottom:753.800000pt;}
.y118{bottom:755.493333pt;}
.y99{bottom:763.013333pt;}
.yfc{bottom:763.493333pt;}
.y1a9{bottom:763.653333pt;}
.y49{bottom:767.653333pt;}
.y5{bottom:768.920000pt;}
.y169{bottom:775.653333pt;}
.y1b1{bottom:777.413333pt;}
.y18a{bottom:779.973333pt;}
.y1a8{bottom:783.173333pt;}
.y98{bottom:786.533333pt;}
.yfb{bottom:786.853333pt;}
.y48{bottom:791.013333pt;}
.y25{bottom:799.173333pt;}
.y1a7{bottom:802.693333pt;}
.y97{bottom:809.893333pt;}
.yf9{bottom:810.373333pt;}
.y47{bottom:814.533333pt;}
.yfa{bottom:815.653333pt;}
.y1a6{bottom:822.213333pt;}
.y168{bottom:822.533333pt;}
.yf8{bottom:833.733333pt;}
.y96{bottom:837.413333pt;}
.y46{bottom:837.893333pt;}
.y4{bottom:839.373333pt;}
.y1a5{bottom:841.733333pt;}
.y167{bottom:846.053333pt;}
.y24{bottom:852.773333pt;}
.yf7{bottom:857.253333pt;}
.y45{bottom:861.413333pt;}
.y3{bottom:861.800000pt;}
.y12e{bottom:868.773333pt;}
.y166{bottom:869.413333pt;}
.y95{bottom:873.573333pt;}
.ybb{bottom:880.613333pt;}
.y1a4{bottom:880.933333pt;}
.y23{bottom:884.293333pt;}
.y44{bottom:884.773333pt;}
.y2{bottom:888.253333pt;}
.y148{bottom:892.133333pt;}
.y165{bottom:892.933333pt;}
.y1a3{bottom:900.453333pt;}
.yb9{bottom:904.133333pt;}
.y43{bottom:908.133333pt;}
.yba{bottom:909.413333pt;}
.y1{bottom:914.720000pt;}
.y164{bottom:916.293333pt;}
.y1a2{bottom:919.973333pt;}
.y22{bottom:923.333333pt;}
.yb8{bottom:927.493333pt;}
.y42{bottom:931.653333pt;}
.y1a1{bottom:939.493333pt;}
.y163{bottom:939.813333pt;}
.yb7{bottom:951.013333pt;}
.y41{bottom:955.013333pt;}
.y1a0{bottom:959.013333pt;}
.y7d{bottom:960.293333pt;}
.y162{bottom:975.973333pt;}
.y40{bottom:978.533333pt;}
.y1f{bottom:1012.640000pt;}
.y1e{bottom:1041.760000pt;}
.y1d{bottom:1054.080000pt;}
.y1c{bottom:1064.480000pt;}
.h8{height:27.664000pt;}
.h1c{height:27.840000pt;}
.h6{height:31.616000pt;}
.h7{height:31.701333pt;}
.h19{height:34.374375pt;}
.hb{height:35.568000pt;}
.hd{height:37.436250pt;}
.he{height:37.499062pt;}
.h5{height:39.520000pt;}
.h9{height:39.626667pt;}
.h16{height:42.649687pt;}
.h4{height:43.472000pt;}
.ha{height:44.262400pt;}
.h14{height:48.000000pt;}
.h1a{height:52.834688pt;}
.h1d{height:54.598989pt;}
.h2{height:55.328000pt;}
.h3{height:55.477333pt;}
.h13{height:55.968750pt;}
.h17{height:56.080687pt;}
.h11{height:63.656250pt;}
.h15{height:63.843750pt;}
.h1b{height:65.531250pt;}
.h18{height:65.781915pt;}
.h12{height:74.477812pt;}
.h10{height:95.484375pt;}
.hf{height:127.312500pt;}
.h0{height:1122.520000pt;}
.hc{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:41.573333pt;}
.x1{left:49.133333pt;}
.x5{left:75.519988pt;}
.xc{left:79.871988pt;}
.x9{left:110.751976pt;}
.xa{left:116.191988pt;}
.x6{left:123.551988pt;}
.x2{left:132.280000pt;}
.xf{left:174.906643pt;}
.x10{left:180.346655pt;}
.x18{left:188.346643pt;}
.x19{left:193.786655pt;}
.xb{left:267.586655pt;}
.x12{left:355.266643pt;}
.x13{left:360.386655pt;}
.x7{left:379.586655pt;}
.x4{left:389.293333pt;}
.x1a{left:391.586655pt;}
.x16{left:421.213322pt;}
.x11{left:422.173322pt;}
.x17{left:423.613322pt;}
.x1b{left:430.813322pt;}
.xd{left:489.053310pt;}
.xe{left:494.493322pt;}
.x14{left:567.773310pt;}
.x15{left:573.213322pt;}
.x8{left:718.213322pt;}
}




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