
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_16179fa0fb74965ac830a320.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_48d6a8008ec4482f99d83df9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.139160;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_1ca69e19000e74616b6a0c93.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1e84679d13d38082ca0e4393.woff')format("woff");}.ff5{font-family:ff5;line-height:1.139160;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_fc4d56699a6a85eacb1f7995.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_b0056e3b4ff598d5c144e5e2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_578514866e4094ac14e25055.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_db35b2794e5ccb8a0cc72308.woff')format("woff");}.ff9{font-family:ff9;line-height:1.067383;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_bb685ed15c52ae672910d7ce.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls18{letter-spacing:-0.444600px;}
.ls26{letter-spacing:-0.391800px;}
.ls36{letter-spacing:-0.339600px;}
.ls41{letter-spacing:-0.303000px;}
.ls33{letter-spacing:-0.299400px;}
.ls32{letter-spacing:-0.258600px;}
.ls1f{letter-spacing:-0.243600px;}
.ls17{letter-spacing:-0.186600px;}
.ls35{letter-spacing:-0.183000px;}
.ls20{letter-spacing:-0.178800px;}
.ls19{letter-spacing:-0.162000px;}
.ls24{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.117600px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls2a{letter-spacing:-0.084000px;}
.ls28{letter-spacing:-0.063600px;}
.ls3a{letter-spacing:-0.018360px;}
.ls29{letter-spacing:-0.008640px;}
.lsa{letter-spacing:-0.008400px;}
.ls25{letter-spacing:-0.003960px;}
.ls6{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.020160px;}
.ls3b{letter-spacing:0.023040px;}
.ls27{letter-spacing:0.031320px;}
.ls15{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3e{letter-spacing:0.056880px;}
.ls38{letter-spacing:0.060480px;}
.ls2c{letter-spacing:0.060600px;}
.ls30{letter-spacing:0.061200px;}
.ls11{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls1e{letter-spacing:0.085200px;}
.ls1d{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls43{letter-spacing:0.109800px;}
.ls40{letter-spacing:0.113400px;}
.ls31{letter-spacing:0.115800px;}
.ls23{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.119400px;}
.ls39{letter-spacing:0.127200px;}
.ls1c{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.160560px;}
.ls16{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.199200px;}
.ls37{letter-spacing:0.206640px;}
.ls46{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls14{letter-spacing:0.453600px;}
.ls2b{letter-spacing:0.806400px;}
.ls3d{letter-spacing:0.813600px;}
.ls42{letter-spacing:1.173600px;}
.ls13{letter-spacing:1.533600px;}
.ls2e{letter-spacing:2.606400px;}
.ls1b{letter-spacing:2.973600px;}
.ls1a{letter-spacing:3.093600px;}
.ls2f{letter-spacing:3.333600px;}
.ls3c{letter-spacing:3.693600px;}
.ls10{letter-spacing:6.573600px;}
.ls3f{letter-spacing:9.813600px;}
.ls45{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls44{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.ws1f{word-spacing:-13.353600px;}
.ws10{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.ws23{word-spacing:-13.336200px;}
.ws21{word-spacing:-13.283280px;}
.wsa{word-spacing:-13.275360px;}
.ws1c{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.222440px;}
.ws20{word-spacing:-13.208040px;}
.ws16{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.064400px;}
.wsd{word-spacing:-13.047600px;}
.ws1d{word-spacing:-13.043400px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws1a{word-spacing:-12.967800px;}
.ws22{word-spacing:-12.923400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws15{word-spacing:-9.351600px;}
.ws14{word-spacing:-9.297720px;}
.ws18{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws17{word-spacing:-8.544960px;}
.ws1b{word-spacing:-8.254200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
.ws1e{word-spacing:82.400040px;}
._25{margin-left:-10.072080px;}
._1d{margin-left:-6.587508px;}
._5{margin-left:-3.932388px;}
._d{margin-left:-2.226252px;}
._0{margin-left:-1.050000px;}
._4{width:1.004295px;}
._a{width:2.666988px;}
._9{width:4.038960px;}
._14{width:5.150280px;}
._b{width:6.214560px;}
._15{width:7.219921px;}
._c{width:8.236200px;}
._e{width:9.679801px;}
._12{width:10.940998px;}
._13{width:11.967250px;}
._2{width:13.926093px;}
._1{width:14.930388px;}
._3{width:16.334880px;}
._10{width:17.774040px;}
._11{width:19.255080px;}
._f{width:21.102000px;}
._17{width:22.309681px;}
._23{width:23.747760px;}
._7{width:25.798593px;}
._6{width:27.274254px;}
._8{width:28.679612px;}
._16{width:30.201252px;}
._27{width:31.520976px;}
._1f{width:36.501360px;}
._24{width:41.653080px;}
._29{width:59.518800px;}
._2a{width:60.716265px;}
._1b{width:76.415520px;}
._21{width:82.627320px;}
._28{width:84.677040px;}
._2e{width:113.375532px;}
._26{width:116.630412px;}
._2f{width:130.580640px;}
._20{width:131.706000px;}
._1c{width:133.297320px;}
._2b{width:139.670040px;}
._22{width:152.250360px;}
._18{width:156.340080px;}
._2d{width:161.140560px;}
._1e{width:192.246960px;}
._2c{width:193.903920px;}
._19{width:241.345440px;}
._1a{width:242.740800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yec{bottom:7.830000px;}
.y111{bottom:7.860000px;}
.yeb{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya6{bottom:113.340000px;}
.y81{bottom:113.610000px;}
.y5a{bottom:114.330000px;}
.y10b{bottom:117.120000px;}
.ya5{bottom:123.420000px;}
.y80{bottom:131.160000px;}
.y29{bottom:131.790000px;}
.y59{bottom:131.880000px;}
.y15d{bottom:132.870000px;}
.y13f{bottom:134.580000px;}
.y10a{bottom:134.670000px;}
.y173{bottom:138.000000px;}
.yea{bottom:141.600000px;}
.yca{bottom:144.030000px;}
.y19f{bottom:144.750000px;}
.y7f{bottom:148.800000px;}
.y28{bottom:149.340000px;}
.y58{bottom:149.430000px;}
.y15c{bottom:150.510000px;}
.y1c1{bottom:151.320000px;}
.y13e{bottom:152.130000px;}
.y109{bottom:152.220000px;}
.y19e{bottom:162.300000px;}
.y7e{bottom:166.350000px;}
.y27{bottom:166.890000px;}
.y57{bottom:167.070000px;}
.ya4{bottom:168.780000px;}
.y1c0{bottom:168.870000px;}
.y13d{bottom:169.680000px;}
.y108{bottom:169.860000px;}
.y172{bottom:175.080000px;}
.yc9{bottom:179.670000px;}
.y7d{bottom:183.990000px;}
.y26{bottom:184.530000px;}
.y56{bottom:184.620000px;}
.y15b{bottom:186.060000px;}
.y13c{bottom:187.320000px;}
.y107{bottom:187.410000px;}
.y19d{bottom:188.850000px;}
.ye9{bottom:190.380000px;}
.y171{bottom:192.630000px;}
.ya3{bottom:195.330000px;}
.y1bf{bottom:195.510000px;}
.y7c{bottom:201.540000px;}
.y25{bottom:202.080000px;}
.y55{bottom:202.260000px;}
.y106{bottom:204.960000px;}
.y19c{bottom:206.490000px;}
.ye8{bottom:207.930000px;}
.y170{bottom:210.180000px;}
.y1be{bottom:213.060000px;}
.yc8{bottom:215.220000px;}
.y7b{bottom:219.090000px;}
.y54{bottom:219.810000px;}
.y15a{bottom:221.610000px;}
.y13b{bottom:222.870000px;}
.y16f{bottom:227.820000px;}
.y24{bottom:228.990000px;}
.ya2{bottom:230.970000px;}
.yc7{bottom:232.860000px;}
.y19b{bottom:233.040000px;}
.ye7{bottom:234.840000px;}
.y159{bottom:239.250000px;}
.y1bd{bottom:239.610000px;}
.y105{bottom:240.600000px;}
.y7a{bottom:245.640000px;}
.y53{bottom:246.360000px;}
.ya1{bottom:248.520000px;}
.yc6{bottom:250.410000px;}
.y19a{bottom:250.680000px;}
.y16e{bottom:254.730000px;}
.y158{bottom:256.800000px;}
.y1bc{bottom:257.250000px;}
.y104{bottom:258.150000px;}
.y13a{bottom:258.510000px;}
.ya0{bottom:266.160000px;}
.yc5{bottom:267.960000px;}
.y103{bottom:275.790000px;}
.y139{bottom:276.060000px;}
.y199{bottom:277.230000px;}
.y23{bottom:277.590000px;}
.y79{bottom:278.310000px;}
.y52{bottom:282.000000px;}
.ye6{bottom:283.080000px;}
.y9f{bottom:283.710000px;}
.y1bb{bottom:283.800000px;}
.yc4{bottom:285.600000px;}
.y16d{bottom:292.080000px;}
.y157{bottom:292.440000px;}
.y102{bottom:293.340000px;}
.y138{bottom:293.610000px;}
.y51{bottom:299.550000px;}
.ye5{bottom:300.720000px;}
.yc3{bottom:303.150000px;}
.y198{bottom:303.780000px;}
.y156{bottom:309.990000px;}
.y1ba{bottom:310.440000px;}
.y137{bottom:311.250000px;}
.y78{bottom:312.510000px;}
.y22{bottom:314.580000px;}
.ye4{bottom:318.270000px;}
.y9e{bottom:319.260000px;}
.y77{bottom:320.070000px;}
.y101{bottom:320.250000px;}
.yc2{bottom:320.790000px;}
.y197{bottom:321.420000px;}
.y50{bottom:326.190000px;}
.y155{bottom:327.540000px;}
.y1b9{bottom:327.990000px;}
.y136{bottom:328.800000px;}
.y21{bottom:332.220000px;}
.y9d{bottom:337.710000px;}
.y16c{bottom:340.320000px;}
.ye3{bottom:344.820000px;}
.y154{bottom:345.180000px;}
.y135{bottom:346.440000px;}
.yc1{bottom:347.340000px;}
.y196{bottom:347.970000px;}
.y20{bottom:349.770000px;}
.y1b8{bottom:354.540000px;}
.y9c{bottom:356.070000px;}
.y16b{bottom:357.870000px;}
.y76{bottom:359.760000px;}
.y4f{bottom:362.100000px;}
.y153{bottom:362.730000px;}
.y195{bottom:365.610000px;}
.y1f{bottom:367.410000px;}
.y100{bottom:367.770000px;}
.y1b7{bottom:372.180000px;}
.y9b{bottom:374.520000px;}
.y16a{bottom:375.510000px;}
.ye2{bottom:377.130000px;}
.y114{bottom:380.010000px;}
.y152{bottom:380.370000px;}
.y134{bottom:381.990000px;}
.yc0{bottom:382.890000px;}
.y1e{bottom:384.960000px;}
.ye1{bottom:387.210000px;}
.y194{bottom:392.160000px;}
.y9a{bottom:392.880000px;}
.y169{bottom:393.060000px;}
.y75{bottom:395.310000px;}
.y151{bottom:397.920000px;}
.y1b6{bottom:398.730000px;}
.y133{bottom:399.540000px;}
.ybf{bottom:400.530000px;}
.y1d{bottom:402.510000px;}
.y113{bottom:407.280000px;}
.y4e{bottom:410.340000px;}
.y74{bottom:412.860000px;}
.y150{bottom:415.470000px;}
.y1b5{bottom:416.370000px;}
.y132{bottom:417.180000px;}
.ybe{bottom:418.080000px;}
.y193{bottom:418.710000px;}
.y168{bottom:419.970000px;}
.y1c{bottom:420.150000px;}
.ye0{bottom:423.300000px;}
.y4d{bottom:427.890000px;}
.y99{bottom:429.330000px;}
.y73{bottom:430.500000px;}
.y14f{bottom:433.110000px;}
.y112{bottom:434.640000px;}
.y131{bottom:434.730000px;}
.ybd{bottom:435.720000px;}
.y192{bottom:436.350000px;}
.y1b{bottom:437.700000px;}
.y1b4{bottom:442.920000px;}
.y4c{bottom:446.340000px;}
.y98{bottom:446.970000px;}
.y130{bottom:452.370000px;}
.ybc{bottom:453.270000px;}
.y191{bottom:453.900000px;}
.y1a{bottom:455.340000px;}
.y72{bottom:457.050000px;}
.ydf{bottom:458.850000px;}
.y1b3{bottom:460.470000px;}
.y110{bottom:462.000000px;}
.y4b{bottom:463.890000px;}
.y97{bottom:464.520000px;}
.y167{bottom:468.300000px;}
.y14e{bottom:468.660000px;}
.y12f{bottom:469.950000px;}
.ybb{bottom:470.850000px;}
.y19{bottom:472.920000px;}
.yde{bottom:476.430000px;}
.y190{bottom:480.480000px;}
.y4a{bottom:482.370000px;}
.y14d{bottom:486.330000px;}
.y1b2{bottom:487.140000px;}
.y12e{bottom:487.500000px;}
.y10f{bottom:489.390000px;}
.y18{bottom:490.470000px;}
.y96{bottom:491.190000px;}
.y71{bottom:492.540000px;}
.ydd{bottom:494.070000px;}
.yba{bottom:497.490000px;}
.y18f{bottom:498.120000px;}
.y49{bottom:499.920000px;}
.y70{bottom:502.620000px;}
.y14c{bottom:503.880000px;}
.y1b1{bottom:504.690000px;}
.y12d{bottom:505.140000px;}
.y17{bottom:508.110000px;}
.ydc{bottom:511.620000px;}
.y18e{bottom:515.670000px;}
.y10e{bottom:516.660000px;}
.y14b{bottom:521.430000px;}
.y12c{bottom:522.690000px;}
.y16{bottom:525.660000px;}
.y95{bottom:526.650000px;}
.ydb{bottom:529.260000px;}
.y1b0{bottom:531.330000px;}
.yb9{bottom:533.040000px;}
.y48{bottom:536.370000px;}
.y12b{bottom:540.330000px;}
.y18d{bottom:542.310000px;}
.y15{bottom:543.210000px;}
.y10d{bottom:544.020000px;}
.y94{bottom:545.100000px;}
.y6f{bottom:548.070000px;}
.y1af{bottom:548.880000px;}
.yda{bottom:555.810000px;}
.y14a{bottom:557.070000px;}
.y12a{bottom:557.880000px;}
.yb8{bottom:559.590000px;}
.y18c{bottom:559.860000px;}
.y14{bottom:560.850000px;}
.y47{bottom:563.280000px;}
.y10c{bottom:571.380000px;}
.y149{bottom:574.620000px;}
.y1ae{bottom:575.430000px;}
.y18b{bottom:577.410000px;}
.y13{bottom:578.400000px;}
.y93{bottom:581.550000px;}
.y6e{bottom:583.620000px;}
.yd9{bottom:591.360000px;}
.yb7{bottom:592.260000px;}
.y166{bottom:592.620000px;}
.y1ad{bottom:593.070000px;}
.y129{bottom:593.430000px;}
.y46{bottom:600.270000px;}
.y6d{bottom:601.260000px;}
.y18a{bottom:604.050000px;}
.y12{bottom:605.400000px;}
.yd8{bottom:609.000000px;}
.y165{bottom:610.260000px;}
.y1ac{bottom:610.620000px;}
.y128{bottom:611.070000px;}
.y92{bottom:617.190000px;}
.y45{bottom:617.910000px;}
.y6c{bottom:618.810000px;}
.yff{bottom:621.150000px;}
.y189{bottom:621.600000px;}
.yd7{bottom:626.550000px;}
.yb6{bottom:627.810000px;}
.y127{bottom:628.620000px;}
.y6b{bottom:636.360000px;}
.y1ab{bottom:637.260000px;}
.yfe{bottom:638.790000px;}
.yd6{bottom:644.190000px;}
.y44{bottom:644.820000px;}
.yb5{bottom:645.360000px;}
.y164{bottom:645.810000px;}
.y126{bottom:646.260000px;}
.y188{bottom:648.240000px;}
.y11{bottom:652.110000px;}
.y91{bottom:652.740000px;}
.y6a{bottom:654.000000px;}
.y1aa{bottom:654.810000px;}
.yfd{bottom:656.340000px;}
.yb4{bottom:663.000000px;}
.y148{bottom:663.360000px;}
.y125{bottom:663.810000px;}
.y187{bottom:665.790000px;}
.y90{bottom:670.290000px;}
.y69{bottom:671.550000px;}
.y1a9{bottom:672.360000px;}
.yd5{bottom:679.740000px;}
.yb3{bottom:680.550000px;}
.y147{bottom:681.000000px;}
.y43{bottom:681.810000px;}
.y10{bottom:687.930000px;}
.y68{bottom:689.190000px;}
.yfc{bottom:691.170000px;}
.y186{bottom:692.340000px;}
.yb2{bottom:698.190000px;}
.y146{bottom:698.550000px;}
.y1a8{bottom:699.000000px;}
.y42{bottom:699.360000px;}
.yfb{bottom:703.410000px;}
.y8f{bottom:705.480000px;}
.yd4{bottom:706.290000px;}
.y185{bottom:709.980000px;}
.y67{bottom:715.740000px;}
.y145{bottom:716.190000px;}
.y1a7{bottom:716.550000px;}
.y41{bottom:717.000000px;}
.y8e{bottom:723.120000px;}
.yf{bottom:723.930000px;}
.yb1{bottom:724.740000px;}
.y184{bottom:727.530000px;}
.yfa{bottom:730.770000px;}
.y163{bottom:733.740000px;}
.y1c4{bottom:734.190000px;}
.y40{bottom:734.550000px;}
.y124{bottom:735.000000px;}
.yd3{bottom:741.930000px;}
.y1a6{bottom:743.190000px;}
.y66{bottom:751.290000px;}
.y144{bottom:751.740000px;}
.y3f{bottom:752.190000px;}
.y123{bottom:752.550000px;}
.y183{bottom:754.170000px;}
.yf9{bottom:758.040000px;}
.y8d{bottom:758.670000px;}
.ye{bottom:759.930000px;}
.yb0{bottom:760.290000px;}
.y1a5{bottom:760.740000px;}
.y65{bottom:768.930000px;}
.y143{bottom:769.290000px;}
.y3e{bottom:769.740000px;}
.y122{bottom:770.190000px;}
.y182{bottom:771.720000px;}
.y8c{bottom:776.220000px;}
.yd2{bottom:777.480000px;}
.yaf{bottom:777.930000px;}
.y1c3{bottom:778.290000px;}
.yd{bottom:781.710000px;}
.yf8{bottom:785.400000px;}
.y64{bottom:786.480000px;}
.y142{bottom:786.930000px;}
.y3d{bottom:787.290000px;}
.y121{bottom:787.740000px;}
.y181{bottom:789.270000px;}
.y8b{bottom:793.860000px;}
.yc{bottom:795.930000px;}
.y63{bottom:804.030000px;}
.yae{bottom:804.480000px;}
.y3c{bottom:804.930000px;}
.y120{bottom:805.290000px;}
.y8a{bottom:811.410000px;}
.yf7{bottom:812.760000px;}
.yd1{bottom:813.030000px;}
.y180{bottom:815.910000px;}
.yb{bottom:817.710000px;}
.y62{bottom:821.670000px;}
.y141{bottom:822.030000px;}
.y3b{bottom:822.480000px;}
.y11f{bottom:822.930000px;}
.y89{bottom:828.960000px;}
.y1a4{bottom:831.480000px;}
.ya{bottom:831.930000px;}
.y17f{bottom:833.460000px;}
.y61{bottom:839.220000px;}
.yd0{bottom:839.670000px;}
.y3a{bottom:840.030000px;}
.y11e{bottom:840.480000px;}
.y88{bottom:846.600000px;}
.y1a3{bottom:849.030000px;}
.y9{bottom:853.710000px;}
.y39{bottom:857.670000px;}
.y11d{bottom:858.030000px;}
.y17e{bottom:860.100000px;}
.y87{bottom:864.150000px;}
.y60{bottom:865.860000px;}
.y1a2{bottom:866.670000px;}
.yf6{bottom:867.390000px;}
.y38{bottom:875.220000px;}
.y11c{bottom:875.670000px;}
.y17d{bottom:877.650000px;}
.y86{bottom:881.790000px;}
.y1c2{bottom:884.220000px;}
.y8{bottom:886.020000px;}
.yad{bottom:892.860000px;}
.y11b{bottom:893.220000px;}
.yf5{bottom:894.750000px;}
.y5f{bottom:901.410000px;}
.y37{bottom:901.860000px;}
.y17c{bottom:904.200000px;}
.y7{bottom:905.370000px;}
.y85{bottom:908.340000px;}
.yac{bottom:910.410000px;}
.y11a{bottom:910.860000px;}
.y5e{bottom:918.960000px;}
.y17b{bottom:921.840000px;}
.y6{bottom:924.720000px;}
.yab{bottom:927.960000px;}
.y162{bottom:928.410000px;}
.y36{bottom:937.410000px;}
.yf4{bottom:943.440000px;}
.y84{bottom:943.890000px;}
.ycf{bottom:945.600000px;}
.y161{bottom:945.960000px;}
.y119{bottom:946.410000px;}
.y17a{bottom:948.390000px;}
.y5d{bottom:954.600000px;}
.y35{bottom:954.960000px;}
.y83{bottom:962.340000px;}
.y5{bottom:962.970000px;}
.yce{bottom:963.150000px;}
.y160{bottom:963.600000px;}
.y118{bottom:963.960000px;}
.y179{bottom:966.030000px;}
.y34{bottom:972.600000px;}
.yf3{bottom:978.270000px;}
.ycd{bottom:980.790000px;}
.y15f{bottom:981.150000px;}
.y117{bottom:981.600000px;}
.y178{bottom:983.580000px;}
.y4{bottom:987.630000px;}
.y33{bottom:990.150000px;}
.yf2{bottom:990.510000px;}
.y82{bottom:998.790000px;}
.y116{bottom:999.150000px;}
.ycc{bottom:1007.340000px;}
.y32{bottom:1007.790000px;}
.y177{bottom:1010.520000px;}
.y3{bottom:1012.320000px;}
.y15e{bottom:1016.370000px;}
.y115{bottom:1016.820000px;}
.yf1{bottom:1017.810000px;}
.y5c{bottom:1025.370000px;}
.y31{bottom:1034.370000px;}
.yaa{bottom:1042.920000px;}
.yf0{bottom:1045.170000px;}
.y5b{bottom:1051.920000px;}
.y176{bottom:1058.760000px;}
.ya9{bottom:1060.560000px;}
.y140{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.yef{bottom:1072.530000px;}
.y175{bottom:1076.400000px;}
.ya8{bottom:1078.110000px;}
.y1a1{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y1a0{bottom:1096.110000px;}
.yee{bottom:1099.890000px;}
.y174{bottom:1103.310000px;}
.ya7{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.ycb{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.yed{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h14{height:26.580000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:41.440430px;}
.h15{height:44.092617px;}
.h7{height:50.902383px;}
.h8{height:55.364414px;}
.h9{height:55.779258px;}
.h11{height:59.973223px;}
.h5{height:60.668789px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.hf{height:70.942148px;}
.h4{height:77.244961px;}
.h10{height:85.604414px;}
.he{height:95.684414px;}
.hd{height:96.262383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:80.370000px;}
.w5{width:80.400000px;}
.w10{width:80.460000px;}
.we{width:86.850000px;}
.wf{width:86.880000px;}
.w9{width:88.770000px;}
.w12{width:93.330000px;}
.w11{width:95.130000px;}
.wb{width:97.110000px;}
.wd{width:102.420000px;}
.w8{width:106.920000px;}
.w6{width:111.690000px;}
.w4{width:121.230000px;}
.w7{width:178.290000px;}
.w3{width:178.380000px;}
.wc{width:178.410000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:3.870000px;}
.x1{left:68.040000px;}
.x1f{left:82.620000px;}
.x4{left:95.039987px;}
.x25{left:111.239987px;}
.x5{left:122.039987px;}
.x19{left:169.410000px;}
.x11{left:185.609987px;}
.x13{left:199.650000px;}
.x2{left:202.799987px;}
.xe{left:247.619987px;}
.xf{left:261.749987px;}
.x7{left:272.549987px;}
.xc{left:280.829987px;}
.x9{left:297.029987px;}
.x10{left:317.639987px;}
.x6{left:325.019987px;}
.x1a{left:348.510000px;}
.x20{left:364.980000px;}
.x15{left:378.750000px;}
.xb{left:393.329987px;}
.xd{left:398.099987px;}
.x8{left:404.939987px;}
.x1e{left:417.719987px;}
.x18{left:420.239987px;}
.xa{left:429.419987px;}
.x12{left:442.379987px;}
.x21{left:452.550000px;}
.x1b{left:456.150000px;}
.x16{left:500.700000px;}
.x22{left:540.150000px;}
.x1c{left:545.730000px;}
.x17{left:581.910000px;}
.x23{left:621.330000px;}
.x1d{left:626.820000px;}
.x24{left:717.270000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls26{letter-spacing:-0.348267pt;}
.ls36{letter-spacing:-0.301867pt;}
.ls41{letter-spacing:-0.269333pt;}
.ls33{letter-spacing:-0.266133pt;}
.ls32{letter-spacing:-0.229867pt;}
.ls1f{letter-spacing:-0.216533pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls35{letter-spacing:-0.162667pt;}
.ls20{letter-spacing:-0.158933pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls24{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.104533pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls2a{letter-spacing:-0.074667pt;}
.ls28{letter-spacing:-0.056533pt;}
.ls3a{letter-spacing:-0.016320pt;}
.ls29{letter-spacing:-0.007680pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls25{letter-spacing:-0.003520pt;}
.ls6{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.017920pt;}
.ls3b{letter-spacing:0.020480pt;}
.ls27{letter-spacing:0.027840pt;}
.ls15{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3e{letter-spacing:0.050560pt;}
.ls38{letter-spacing:0.053760pt;}
.ls2c{letter-spacing:0.053867pt;}
.ls30{letter-spacing:0.054400pt;}
.ls11{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls1e{letter-spacing:0.075733pt;}
.ls1d{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls43{letter-spacing:0.097600pt;}
.ls40{letter-spacing:0.100800pt;}
.ls31{letter-spacing:0.102933pt;}
.ls23{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.106133pt;}
.ls39{letter-spacing:0.113067pt;}
.ls1c{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.142720pt;}
.ls16{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.177067pt;}
.ls37{letter-spacing:0.183680pt;}
.ls46{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls14{letter-spacing:0.403200pt;}
.ls2b{letter-spacing:0.716800pt;}
.ls3d{letter-spacing:0.723200pt;}
.ls42{letter-spacing:1.043200pt;}
.ls13{letter-spacing:1.363200pt;}
.ls2e{letter-spacing:2.316800pt;}
.ls1b{letter-spacing:2.643200pt;}
.ls1a{letter-spacing:2.749867pt;}
.ls2f{letter-spacing:2.963200pt;}
.ls3c{letter-spacing:3.283200pt;}
.ls10{letter-spacing:5.843200pt;}
.ls3f{letter-spacing:8.723200pt;}
.ls45{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls44{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.ws1f{word-spacing:-11.869867pt;}
.ws10{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.ws23{word-spacing:-11.854400pt;}
.ws21{word-spacing:-11.807360pt;}
.wsa{word-spacing:-11.800320pt;}
.ws1c{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.753280pt;}
.ws20{word-spacing:-11.740480pt;}
.ws16{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.612800pt;}
.wsd{word-spacing:-11.597867pt;}
.ws1d{word-spacing:-11.594133pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws1a{word-spacing:-11.526933pt;}
.ws22{word-spacing:-11.487467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws15{word-spacing:-8.312533pt;}
.ws14{word-spacing:-8.264640pt;}
.ws18{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws17{word-spacing:-7.595520pt;}
.ws1b{word-spacing:-7.337067pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
.ws1e{word-spacing:73.244480pt;}
._25{margin-left:-8.952960pt;}
._1d{margin-left:-5.855563pt;}
._5{margin-left:-3.495456pt;}
._d{margin-left:-1.978891pt;}
._0{margin-left:-0.933333pt;}
._4{width:0.892707pt;}
._a{width:2.370656pt;}
._9{width:3.590187pt;}
._14{width:4.578027pt;}
._b{width:5.524053pt;}
._15{width:6.417708pt;}
._c{width:7.321066pt;}
._e{width:8.604268pt;}
._12{width:9.725332pt;}
._13{width:10.637556pt;}
._2{width:12.378749pt;}
._1{width:13.271456pt;}
._3{width:14.519893pt;}
._10{width:15.799147pt;}
._11{width:17.115627pt;}
._f{width:18.757333pt;}
._17{width:19.830828pt;}
._23{width:21.109120pt;}
._7{width:22.932083pt;}
._6{width:24.243781pt;}
._8{width:25.492988pt;}
._16{width:26.845557pt;}
._27{width:28.018645pt;}
._1f{width:32.445653pt;}
._24{width:37.024960pt;}
._29{width:52.905600pt;}
._2a{width:53.970013pt;}
._1b{width:67.924907pt;}
._21{width:73.446507pt;}
._28{width:75.268480pt;}
._2e{width:100.778251pt;}
._26{width:103.671477pt;}
._2f{width:116.071680pt;}
._20{width:117.072000pt;}
._1c{width:118.486507pt;}
._2b{width:124.151147pt;}
._22{width:135.333653pt;}
._18{width:138.968960pt;}
._2d{width:143.236053pt;}
._1e{width:170.886187pt;}
._2c{width:172.359040pt;}
._19{width:214.529280pt;}
._1a{width:215.769600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:6.960000pt;}
.y111{bottom:6.986667pt;}
.yeb{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya6{bottom:100.746667pt;}
.y81{bottom:100.986667pt;}
.y5a{bottom:101.626667pt;}
.y10b{bottom:104.106667pt;}
.ya5{bottom:109.706667pt;}
.y80{bottom:116.586667pt;}
.y29{bottom:117.146667pt;}
.y59{bottom:117.226667pt;}
.y15d{bottom:118.106667pt;}
.y13f{bottom:119.626667pt;}
.y10a{bottom:119.706667pt;}
.y173{bottom:122.666667pt;}
.yea{bottom:125.866667pt;}
.yca{bottom:128.026667pt;}
.y19f{bottom:128.666667pt;}
.y7f{bottom:132.266667pt;}
.y28{bottom:132.746667pt;}
.y58{bottom:132.826667pt;}
.y15c{bottom:133.786667pt;}
.y1c1{bottom:134.506667pt;}
.y13e{bottom:135.226667pt;}
.y109{bottom:135.306667pt;}
.y19e{bottom:144.266667pt;}
.y7e{bottom:147.866667pt;}
.y27{bottom:148.346667pt;}
.y57{bottom:148.506667pt;}
.ya4{bottom:150.026667pt;}
.y1c0{bottom:150.106667pt;}
.y13d{bottom:150.826667pt;}
.y108{bottom:150.986667pt;}
.y172{bottom:155.626667pt;}
.yc9{bottom:159.706667pt;}
.y7d{bottom:163.546667pt;}
.y26{bottom:164.026667pt;}
.y56{bottom:164.106667pt;}
.y15b{bottom:165.386667pt;}
.y13c{bottom:166.506667pt;}
.y107{bottom:166.586667pt;}
.y19d{bottom:167.866667pt;}
.ye9{bottom:169.226667pt;}
.y171{bottom:171.226667pt;}
.ya3{bottom:173.626667pt;}
.y1bf{bottom:173.786667pt;}
.y7c{bottom:179.146667pt;}
.y25{bottom:179.626667pt;}
.y55{bottom:179.786667pt;}
.y106{bottom:182.186667pt;}
.y19c{bottom:183.546667pt;}
.ye8{bottom:184.826667pt;}
.y170{bottom:186.826667pt;}
.y1be{bottom:189.386667pt;}
.yc8{bottom:191.306667pt;}
.y7b{bottom:194.746667pt;}
.y54{bottom:195.386667pt;}
.y15a{bottom:196.986667pt;}
.y13b{bottom:198.106667pt;}
.y16f{bottom:202.506667pt;}
.y24{bottom:203.546667pt;}
.ya2{bottom:205.306667pt;}
.yc7{bottom:206.986667pt;}
.y19b{bottom:207.146667pt;}
.ye7{bottom:208.746667pt;}
.y159{bottom:212.666667pt;}
.y1bd{bottom:212.986667pt;}
.y105{bottom:213.866667pt;}
.y7a{bottom:218.346667pt;}
.y53{bottom:218.986667pt;}
.ya1{bottom:220.906667pt;}
.yc6{bottom:222.586667pt;}
.y19a{bottom:222.826667pt;}
.y16e{bottom:226.426667pt;}
.y158{bottom:228.266667pt;}
.y1bc{bottom:228.666667pt;}
.y104{bottom:229.466667pt;}
.y13a{bottom:229.786667pt;}
.ya0{bottom:236.586667pt;}
.yc5{bottom:238.186667pt;}
.y103{bottom:245.146667pt;}
.y139{bottom:245.386667pt;}
.y199{bottom:246.426667pt;}
.y23{bottom:246.746667pt;}
.y79{bottom:247.386667pt;}
.y52{bottom:250.666667pt;}
.ye6{bottom:251.626667pt;}
.y9f{bottom:252.186667pt;}
.y1bb{bottom:252.266667pt;}
.yc4{bottom:253.866667pt;}
.y16d{bottom:259.626667pt;}
.y157{bottom:259.946667pt;}
.y102{bottom:260.746667pt;}
.y138{bottom:260.986667pt;}
.y51{bottom:266.266667pt;}
.ye5{bottom:267.306667pt;}
.yc3{bottom:269.466667pt;}
.y198{bottom:270.026667pt;}
.y156{bottom:275.546667pt;}
.y1ba{bottom:275.946667pt;}
.y137{bottom:276.666667pt;}
.y78{bottom:277.786667pt;}
.y22{bottom:279.626667pt;}
.ye4{bottom:282.906667pt;}
.y9e{bottom:283.786667pt;}
.y77{bottom:284.506667pt;}
.y101{bottom:284.666667pt;}
.yc2{bottom:285.146667pt;}
.y197{bottom:285.706667pt;}
.y50{bottom:289.946667pt;}
.y155{bottom:291.146667pt;}
.y1b9{bottom:291.546667pt;}
.y136{bottom:292.266667pt;}
.y21{bottom:295.306667pt;}
.y9d{bottom:300.186667pt;}
.y16c{bottom:302.506667pt;}
.ye3{bottom:306.506667pt;}
.y154{bottom:306.826667pt;}
.y135{bottom:307.946667pt;}
.yc1{bottom:308.746667pt;}
.y196{bottom:309.306667pt;}
.y20{bottom:310.906667pt;}
.y1b8{bottom:315.146667pt;}
.y9c{bottom:316.506667pt;}
.y16b{bottom:318.106667pt;}
.y76{bottom:319.786667pt;}
.y4f{bottom:321.866667pt;}
.y153{bottom:322.426667pt;}
.y195{bottom:324.986667pt;}
.y1f{bottom:326.586667pt;}
.y100{bottom:326.906667pt;}
.y1b7{bottom:330.826667pt;}
.y9b{bottom:332.906667pt;}
.y16a{bottom:333.786667pt;}
.ye2{bottom:335.226667pt;}
.y114{bottom:337.786667pt;}
.y152{bottom:338.106667pt;}
.y134{bottom:339.546667pt;}
.yc0{bottom:340.346667pt;}
.y1e{bottom:342.186667pt;}
.ye1{bottom:344.186667pt;}
.y194{bottom:348.586667pt;}
.y9a{bottom:349.226667pt;}
.y169{bottom:349.386667pt;}
.y75{bottom:351.386667pt;}
.y151{bottom:353.706667pt;}
.y1b6{bottom:354.426667pt;}
.y133{bottom:355.146667pt;}
.ybf{bottom:356.026667pt;}
.y1d{bottom:357.786667pt;}
.y113{bottom:362.026667pt;}
.y4e{bottom:364.746667pt;}
.y74{bottom:366.986667pt;}
.y150{bottom:369.306667pt;}
.y1b5{bottom:370.106667pt;}
.y132{bottom:370.826667pt;}
.ybe{bottom:371.626667pt;}
.y193{bottom:372.186667pt;}
.y168{bottom:373.306667pt;}
.y1c{bottom:373.466667pt;}
.ye0{bottom:376.266667pt;}
.y4d{bottom:380.346667pt;}
.y99{bottom:381.626667pt;}
.y73{bottom:382.666667pt;}
.y14f{bottom:384.986667pt;}
.y112{bottom:386.346667pt;}
.y131{bottom:386.426667pt;}
.ybd{bottom:387.306667pt;}
.y192{bottom:387.866667pt;}
.y1b{bottom:389.066667pt;}
.y1b4{bottom:393.706667pt;}
.y4c{bottom:396.746667pt;}
.y98{bottom:397.306667pt;}
.y130{bottom:402.106667pt;}
.ybc{bottom:402.906667pt;}
.y191{bottom:403.466667pt;}
.y1a{bottom:404.746667pt;}
.y72{bottom:406.266667pt;}
.ydf{bottom:407.866667pt;}
.y1b3{bottom:409.306667pt;}
.y110{bottom:410.666667pt;}
.y4b{bottom:412.346667pt;}
.y97{bottom:412.906667pt;}
.y167{bottom:416.266667pt;}
.y14e{bottom:416.586667pt;}
.y12f{bottom:417.733333pt;}
.ybb{bottom:418.533333pt;}
.y19{bottom:420.373333pt;}
.yde{bottom:423.493333pt;}
.y190{bottom:427.093333pt;}
.y4a{bottom:428.773333pt;}
.y14d{bottom:432.293333pt;}
.y1b2{bottom:433.013333pt;}
.y12e{bottom:433.333333pt;}
.y10f{bottom:435.013333pt;}
.y18{bottom:435.973333pt;}
.y96{bottom:436.613333pt;}
.y71{bottom:437.813333pt;}
.ydd{bottom:439.173333pt;}
.yba{bottom:442.213333pt;}
.y18f{bottom:442.773333pt;}
.y49{bottom:444.373333pt;}
.y70{bottom:446.773333pt;}
.y14c{bottom:447.893333pt;}
.y1b1{bottom:448.613333pt;}
.y12d{bottom:449.013333pt;}
.y17{bottom:451.653333pt;}
.ydc{bottom:454.773333pt;}
.y18e{bottom:458.373333pt;}
.y10e{bottom:459.253333pt;}
.y14b{bottom:463.493333pt;}
.y12c{bottom:464.613333pt;}
.y16{bottom:467.253333pt;}
.y95{bottom:468.133333pt;}
.ydb{bottom:470.453333pt;}
.y1b0{bottom:472.293333pt;}
.yb9{bottom:473.813333pt;}
.y48{bottom:476.773333pt;}
.y12b{bottom:480.293333pt;}
.y18d{bottom:482.053333pt;}
.y15{bottom:482.853333pt;}
.y10d{bottom:483.573333pt;}
.y94{bottom:484.533333pt;}
.y6f{bottom:487.173333pt;}
.y1af{bottom:487.893333pt;}
.yda{bottom:494.053333pt;}
.y14a{bottom:495.173333pt;}
.y12a{bottom:495.893333pt;}
.yb8{bottom:497.413333pt;}
.y18c{bottom:497.653333pt;}
.y14{bottom:498.533333pt;}
.y47{bottom:500.693333pt;}
.y10c{bottom:507.893333pt;}
.y149{bottom:510.773333pt;}
.y1ae{bottom:511.493333pt;}
.y18b{bottom:513.253333pt;}
.y13{bottom:514.133333pt;}
.y93{bottom:516.933333pt;}
.y6e{bottom:518.773333pt;}
.yd9{bottom:525.653333pt;}
.yb7{bottom:526.453333pt;}
.y166{bottom:526.773333pt;}
.y1ad{bottom:527.173333pt;}
.y129{bottom:527.493333pt;}
.y46{bottom:533.573333pt;}
.y6d{bottom:534.453333pt;}
.y18a{bottom:536.933333pt;}
.y12{bottom:538.133333pt;}
.yd8{bottom:541.333333pt;}
.y165{bottom:542.453333pt;}
.y1ac{bottom:542.773333pt;}
.y128{bottom:543.173333pt;}
.y92{bottom:548.613333pt;}
.y45{bottom:549.253333pt;}
.y6c{bottom:550.053333pt;}
.yff{bottom:552.133333pt;}
.y189{bottom:552.533333pt;}
.yd7{bottom:556.933333pt;}
.yb6{bottom:558.053333pt;}
.y127{bottom:558.773333pt;}
.y6b{bottom:565.653333pt;}
.y1ab{bottom:566.453333pt;}
.yfe{bottom:567.813333pt;}
.yd6{bottom:572.613333pt;}
.y44{bottom:573.173333pt;}
.yb5{bottom:573.653333pt;}
.y164{bottom:574.053333pt;}
.y126{bottom:574.453333pt;}
.y188{bottom:576.213333pt;}
.y11{bottom:579.653333pt;}
.y91{bottom:580.213333pt;}
.y6a{bottom:581.333333pt;}
.y1aa{bottom:582.053333pt;}
.yfd{bottom:583.413333pt;}
.yb4{bottom:589.333333pt;}
.y148{bottom:589.653333pt;}
.y125{bottom:590.053333pt;}
.y187{bottom:591.813333pt;}
.y90{bottom:595.813333pt;}
.y69{bottom:596.933333pt;}
.y1a9{bottom:597.653333pt;}
.yd5{bottom:604.213333pt;}
.yb3{bottom:604.933333pt;}
.y147{bottom:605.333333pt;}
.y43{bottom:606.053333pt;}
.y10{bottom:611.493333pt;}
.y68{bottom:612.613333pt;}
.yfc{bottom:614.373333pt;}
.y186{bottom:615.413333pt;}
.yb2{bottom:620.613333pt;}
.y146{bottom:620.933333pt;}
.y1a8{bottom:621.333333pt;}
.y42{bottom:621.653333pt;}
.yfb{bottom:625.253333pt;}
.y8f{bottom:627.093333pt;}
.yd4{bottom:627.813333pt;}
.y185{bottom:631.093333pt;}
.y67{bottom:636.213333pt;}
.y145{bottom:636.613333pt;}
.y1a7{bottom:636.933333pt;}
.y41{bottom:637.333333pt;}
.y8e{bottom:642.773333pt;}
.yf{bottom:643.493333pt;}
.yb1{bottom:644.213333pt;}
.y184{bottom:646.693333pt;}
.yfa{bottom:649.573333pt;}
.y163{bottom:652.213333pt;}
.y1c4{bottom:652.613333pt;}
.y40{bottom:652.933333pt;}
.y124{bottom:653.333333pt;}
.yd3{bottom:659.493333pt;}
.y1a6{bottom:660.613333pt;}
.y66{bottom:667.813333pt;}
.y144{bottom:668.213333pt;}
.y3f{bottom:668.613333pt;}
.y123{bottom:668.933333pt;}
.y183{bottom:670.373333pt;}
.yf9{bottom:673.813333pt;}
.y8d{bottom:674.373333pt;}
.ye{bottom:675.493333pt;}
.yb0{bottom:675.813333pt;}
.y1a5{bottom:676.213333pt;}
.y65{bottom:683.493333pt;}
.y143{bottom:683.813333pt;}
.y3e{bottom:684.213333pt;}
.y122{bottom:684.613333pt;}
.y182{bottom:685.973333pt;}
.y8c{bottom:689.973333pt;}
.yd2{bottom:691.093333pt;}
.yaf{bottom:691.493333pt;}
.y1c3{bottom:691.813333pt;}
.yd{bottom:694.853333pt;}
.yf8{bottom:698.133333pt;}
.y64{bottom:699.093333pt;}
.y142{bottom:699.493333pt;}
.y3d{bottom:699.813333pt;}
.y121{bottom:700.213333pt;}
.y181{bottom:701.573333pt;}
.y8b{bottom:705.653333pt;}
.yc{bottom:707.493333pt;}
.y63{bottom:714.693333pt;}
.yae{bottom:715.093333pt;}
.y3c{bottom:715.493333pt;}
.y120{bottom:715.813333pt;}
.y8a{bottom:721.253333pt;}
.yf7{bottom:722.453333pt;}
.yd1{bottom:722.693333pt;}
.y180{bottom:725.253333pt;}
.yb{bottom:726.853333pt;}
.y62{bottom:730.373333pt;}
.y141{bottom:730.693333pt;}
.y3b{bottom:731.093333pt;}
.y11f{bottom:731.493333pt;}
.y89{bottom:736.853333pt;}
.y1a4{bottom:739.093333pt;}
.ya{bottom:739.493333pt;}
.y17f{bottom:740.853333pt;}
.y61{bottom:745.973333pt;}
.yd0{bottom:746.373333pt;}
.y3a{bottom:746.693333pt;}
.y11e{bottom:747.093333pt;}
.y88{bottom:752.533333pt;}
.y1a3{bottom:754.693333pt;}
.y9{bottom:758.853333pt;}
.y39{bottom:762.373333pt;}
.y11d{bottom:762.693333pt;}
.y17e{bottom:764.533333pt;}
.y87{bottom:768.133333pt;}
.y60{bottom:769.653333pt;}
.y1a2{bottom:770.373333pt;}
.yf6{bottom:771.013333pt;}
.y38{bottom:777.973333pt;}
.y11c{bottom:778.373333pt;}
.y17d{bottom:780.133333pt;}
.y86{bottom:783.813333pt;}
.y1c2{bottom:785.973333pt;}
.y8{bottom:787.573333pt;}
.yad{bottom:793.653333pt;}
.y11b{bottom:793.973333pt;}
.yf5{bottom:795.333333pt;}
.y5f{bottom:801.253333pt;}
.y37{bottom:801.653333pt;}
.y17c{bottom:803.733333pt;}
.y7{bottom:804.773333pt;}
.y85{bottom:807.413333pt;}
.yac{bottom:809.253333pt;}
.y11a{bottom:809.653333pt;}
.y5e{bottom:816.853333pt;}
.y17b{bottom:819.413333pt;}
.y6{bottom:821.973333pt;}
.yab{bottom:824.853333pt;}
.y162{bottom:825.253333pt;}
.y36{bottom:833.253333pt;}
.yf4{bottom:838.613333pt;}
.y84{bottom:839.013333pt;}
.ycf{bottom:840.533333pt;}
.y161{bottom:840.853333pt;}
.y119{bottom:841.253333pt;}
.y17a{bottom:843.013333pt;}
.y5d{bottom:848.533333pt;}
.y35{bottom:848.853333pt;}
.y83{bottom:855.413333pt;}
.y5{bottom:855.973333pt;}
.yce{bottom:856.133333pt;}
.y160{bottom:856.533333pt;}
.y118{bottom:856.853333pt;}
.y179{bottom:858.693333pt;}
.y34{bottom:864.533333pt;}
.yf3{bottom:869.573333pt;}
.ycd{bottom:871.813333pt;}
.y15f{bottom:872.133333pt;}
.y117{bottom:872.533333pt;}
.y178{bottom:874.293333pt;}
.y4{bottom:877.893333pt;}
.y33{bottom:880.133333pt;}
.yf2{bottom:880.453333pt;}
.y82{bottom:887.813333pt;}
.y116{bottom:888.133333pt;}
.ycc{bottom:895.413333pt;}
.y32{bottom:895.813333pt;}
.y177{bottom:898.240000pt;}
.y3{bottom:899.840000pt;}
.y15e{bottom:903.440000pt;}
.y115{bottom:903.840000pt;}
.yf1{bottom:904.720000pt;}
.y5c{bottom:911.440000pt;}
.y31{bottom:919.440000pt;}
.yaa{bottom:927.040000pt;}
.yf0{bottom:929.040000pt;}
.y5b{bottom:935.040000pt;}
.y176{bottom:941.120000pt;}
.ya9{bottom:942.720000pt;}
.y140{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.yef{bottom:953.360000pt;}
.y175{bottom:956.800000pt;}
.ya8{bottom:958.320000pt;}
.y1a1{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y1a0{bottom:974.320000pt;}
.yee{bottom:977.680000pt;}
.y174{bottom:980.720000pt;}
.ya7{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.ycb{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.yed{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h14{height:23.626667pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:36.835938pt;}
.h15{height:39.193438pt;}
.h7{height:45.246562pt;}
.h8{height:49.212812pt;}
.h9{height:49.581562pt;}
.h11{height:53.309531pt;}
.h5{height:53.927812pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.hf{height:63.059687pt;}
.h4{height:68.662187pt;}
.h10{height:76.092813pt;}
.he{height:85.052812pt;}
.hd{height:85.566563pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:71.440000pt;}
.w5{width:71.466667pt;}
.w10{width:71.520000pt;}
.we{width:77.200000pt;}
.wf{width:77.226667pt;}
.w9{width:78.906667pt;}
.w12{width:82.960000pt;}
.w11{width:84.560000pt;}
.wb{width:86.320000pt;}
.wd{width:91.040000pt;}
.w8{width:95.040000pt;}
.w6{width:99.280000pt;}
.w4{width:107.760000pt;}
.w7{width:158.480000pt;}
.w3{width:158.560000pt;}
.wc{width:158.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:3.440000pt;}
.x1{left:60.480000pt;}
.x1f{left:73.440000pt;}
.x4{left:84.479988pt;}
.x25{left:98.879988pt;}
.x5{left:108.479988pt;}
.x19{left:150.586667pt;}
.x11{left:164.986655pt;}
.x13{left:177.466667pt;}
.x2{left:180.266655pt;}
.xe{left:220.106655pt;}
.xf{left:232.666655pt;}
.x7{left:242.266655pt;}
.xc{left:249.626655pt;}
.x9{left:264.026655pt;}
.x10{left:282.346655pt;}
.x6{left:288.906655pt;}
.x1a{left:309.786667pt;}
.x20{left:324.426667pt;}
.x15{left:336.666667pt;}
.xb{left:349.626655pt;}
.xd{left:353.866655pt;}
.x8{left:359.946655pt;}
.x1e{left:371.306655pt;}
.x18{left:373.546655pt;}
.xa{left:381.706655pt;}
.x12{left:393.226655pt;}
.x21{left:402.266667pt;}
.x1b{left:405.466667pt;}
.x16{left:445.066667pt;}
.x22{left:480.133333pt;}
.x1c{left:485.093333pt;}
.x17{left:517.253333pt;}
.x23{left:552.293333pt;}
.x1d{left:557.173333pt;}
.x24{left:637.573333pt;}
.x3{left:704.053322pt;}
}




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