
    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_9db58af7de1b14ec441e8fe8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_e24c4703e592d909a8c8d612.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_b440e6c2c0f461d1d15161ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_e856b6df6f028e1f17471171.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_9a925fb1343399ad4e20115d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_df1325caf47dcbf707879db7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.741211;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_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_02ff831d7f055733959b0222.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.333984;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_51657a4ed34845d3f4a752bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ea717883abcccea5fcd72c92.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.v3{vertical-align:-122.400000px;}
.vb{vertical-align:-69.840000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.360000px;}
.va{vertical-align:18.000000px;}
.vc{vertical-align:19.440000px;}
.v1{vertical-align:23.760000px;}
.vd{vertical-align:30.240000px;}
.v9{vertical-align:33.840000px;}
.v7{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.v4{vertical-align:48.240000px;}
.ls10{letter-spacing:-1.332000px;}
.ls2d{letter-spacing:-1.260000px;}
.ls26{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.206400px;}
.ls23{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.067200px;}
.ls1e{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.189600px;}
.ls4{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.306600px;}
.ls15{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.363600px;}
.ls28{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls21{letter-spacing:2.160000px;}
.ls14{letter-spacing:4.062240px;}
.ls1f{letter-spacing:10.215360px;}
.ls2c{letter-spacing:16.506720px;}
.ls17{letter-spacing:16.559280px;}
.ls1a{letter-spacing:17.922240px;}
.ls8{letter-spacing:28.026720px;}
.ls1d{letter-spacing:36.810720px;}
.ls2a{letter-spacing:46.026720px;}
.ls13{letter-spacing:70.277760px;}
.ls19{letter-spacing:70.670160px;}
.lsa{letter-spacing:81.251712px;}
.ls9{letter-spacing:81.359280px;}
.ls12{letter-spacing:81.470160px;}
.lse{letter-spacing:118.170720px;}
.ls20{letter-spacing:119.160000px;}
.ls24{letter-spacing:124.650720px;}
.ls1b{letter-spacing:154.026720px;}
.ls27{letter-spacing:154.170720px;}
.ls11{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.827200px;}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-41.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.ws11{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws10{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:1.815120px;}
.ws8{word-spacing:6.209280px;}
.wsa{word-spacing:42.492960px;}
.wsb{word-spacing:214.920000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1232.326080px;}
._4{margin-left:-1171.774080px;}
._22{margin-left:-746.383680px;}
._38{margin-left:-20.992320px;}
._39{margin-left:-10.636320px;}
._6{margin-left:-3.727920px;}
._7{margin-left:-2.487120px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._c{width:2.606400px;}
._8{width:3.654720px;}
._b{width:5.116560px;}
._e{width:6.909360px;}
._15{width:8.366400px;}
._16{width:9.561600px;}
._a{width:10.668960px;}
._9{width:12.383280px;}
._21{width:13.615200px;}
._3a{width:14.657760px;}
._1b{width:16.231920px;}
._1a{width:17.808480px;}
._d{width:18.861360px;}
._14{width:20.198880px;}
._1f{width:21.670080px;}
._23{width:22.910880px;}
._12{width:24.120240px;}
._13{width:25.390560px;}
._2c{width:26.630160px;}
._2b{width:27.668880px;}
._18{width:28.781520px;}
._17{width:30.716640px;}
._11{width:31.732560px;}
._10{width:32.808240px;}
._27{width:34.017600px;}
._24{width:35.355120px;}
._25{width:36.402480px;}
._3d{width:37.406160px;}
._35{width:38.462640px;}
._f{width:39.740400px;}
._19{width:41.689680px;}
._29{width:42.806880px;}
._1c{width:43.900800px;}
._30{width:45.187200px;}
._2e{width:47.068080px;}
._34{width:48.129600px;}
._1e{width:49.637760px;}
._20{width:51.393600px;}
._2f{width:52.924320px;}
._28{width:54.680400px;}
._32{width:56.532960px;}
._2d{width:58.266000px;}
._31{width:60.215280px;}
._33{width:63.519840px;}
._26{width:64.757040px;}
._42{width:66.490080px;}
._3c{width:69.261840px;}
._4a{width:70.710240px;}
._41{width:72.047760px;}
._4b{width:76.340880px;}
._51{width:77.426160px;}
._3e{width:82.429440px;}
._49{width:83.596800px;}
._47{width:85.852320px;}
._1d{width:94.181760px;}
._3f{width:102.308400px;}
._46{width:109.890000px;}
._45{width:111.093840px;}
._48{width:120.572880px;}
._40{width:123.082800px;}
._4f{width:135.177120px;}
._4e{width:136.372320px;}
._43{width:144.559440px;}
._4d{width:145.754640px;}
._2a{width:165.204000px;}
._36{width:201.204000px;}
._3b{width:230.053200px;}
._50{width:285.630000px;}
._37{width:368.121600px;}
._59{width:588.540000px;}
._58{width:764.640000px;}
._52{width:813.180000px;}
._56{width:820.260000px;}
._55{width:836.760000px;}
._44{width:846.619920px;}
._4c{width:865.026000px;}
._54{width:908.940000px;}
._53{width:919.208880px;}
._57{width:1034.820000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(4,97,193);}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs9{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y96{bottom:-16.455000px;}
.y0{bottom:0.000000px;}
.y149{bottom:0.540000px;}
.y95{bottom:0.825000px;}
.y14f{bottom:1.440000px;}
.y15d{bottom:1.620000px;}
.y165{bottom:2.700000px;}
.y8e{bottom:3.750000px;}
.y137{bottom:3.780000px;}
.y9b{bottom:4.065000px;}
.y3d{bottom:5.760000px;}
.y9e{bottom:5.865000px;}
.y7{bottom:5.940000px;}
.y14c{bottom:7.200000px;}
.ya1{bottom:8.355000px;}
.y162{bottom:9.360000px;}
.y16f{bottom:9.720000px;}
.y12e{bottom:10.440000px;}
.y15f{bottom:10.620000px;}
.y3f{bottom:10.980000px;}
.y9{bottom:11.160000px;}
.y3e{bottom:11.700000px;}
.y8{bottom:11.880000px;}
.y148{bottom:20.340000px;}
.y14e{bottom:21.240000px;}
.y15c{bottom:21.420000px;}
.y164{bottom:22.500000px;}
.y136{bottom:23.580000px;}
.y9d{bottom:24.585000px;}
.y146{bottom:25.740000px;}
.y14b{bottom:27.000000px;}
.ya0{bottom:27.075000px;}
.y161{bottom:29.160000px;}
.y16e{bottom:29.520000px;}
.y12d{bottom:30.420000px;}
.y139{bottom:31.500000px;}
.ya{bottom:35.820000px;}
.y8c{bottom:39.570000px;}
.y6{bottom:48.600000px;}
.y16d{bottom:49.500000px;}
.y98{bottom:57.165000px;}
.y40{bottom:57.420000px;}
.y3c{bottom:70.380000px;}
.y77{bottom:76.500000px;}
.y144{bottom:77.580000px;}
.y12b{bottom:78.480000px;}
.yff{bottom:81.180000px;}
.yec{bottom:84.420000px;}
.y39{bottom:85.860000px;}
.y8a{bottom:87.480000px;}
.ycd{bottom:89.280000px;}
.y10c{bottom:93.600000px;}
.y143{bottom:94.140000px;}
.y76{bottom:96.480000px;}
.y12a{bottom:98.460000px;}
.yfe{bottom:100.980000px;}
.y134{bottom:102.420000px;}
.yeb{bottom:104.220000px;}
.y38{bottom:105.660000px;}
.y90{bottom:105.810000px;}
.y89{bottom:107.280000px;}
.ycc{bottom:109.080000px;}
.y10b{bottom:113.400000px;}
.y75{bottom:116.280000px;}
.y129{bottom:118.260000px;}
.yfd{bottom:120.960000px;}
.yea{bottom:124.020000px;}
.y37{bottom:125.640000px;}
.y88{bottom:127.080000px;}
.ycb{bottom:128.880000px;}
.y10a{bottom:133.200000px;}
.y74{bottom:136.080000px;}
.y128{bottom:138.060000px;}
.yfc{bottom:140.760000px;}
.ye9{bottom:143.820000px;}
.y36{bottom:145.440000px;}
.y87{bottom:146.880000px;}
.yca{bottom:148.680000px;}
.y109{bottom:153.030000px;}
.y73{bottom:155.910000px;}
.y127{bottom:157.890000px;}
.ye8{bottom:163.650000px;}
.y35{bottom:165.270000px;}
.y86{bottom:166.710000px;}
.yc9{bottom:168.690000px;}
.y108{bottom:172.830000px;}
.yf9{bottom:175.350000px;}
.y72{bottom:175.710000px;}
.y126{bottom:177.690000px;}
.yfb{bottom:182.730000px;}
.ye7{bottom:183.630000px;}
.y34{bottom:185.070000px;}
.y85{bottom:186.690000px;}
.yc8{bottom:188.490000px;}
.y107{bottom:189.570000px;}
.yfa{bottom:192.630000px;}
.y71{bottom:195.690000px;}
.y125{bottom:197.670000px;}
.ye6{bottom:203.430000px;}
.y33{bottom:204.870000px;}
.y84{bottom:206.490000px;}
.yc7{bottom:208.290000px;}
.y70{bottom:215.490000px;}
.yf8{bottom:216.390000px;}
.y124{bottom:217.470000px;}
.ye5{bottom:223.230000px;}
.y32{bottom:224.850000px;}
.y83{bottom:226.290000px;}
.yc6{bottom:228.090000px;}
.y6f{bottom:235.290000px;}
.yf7{bottom:236.190000px;}
.y123{bottom:237.270000px;}
.ye4{bottom:243.030000px;}
.y31{bottom:244.650000px;}
.y82{bottom:246.090000px;}
.yc5{bottom:247.890000px;}
.y6e{bottom:255.090000px;}
.yf6{bottom:256.350000px;}
.y122{bottom:257.070000px;}
.ye3{bottom:262.830000px;}
.y30{bottom:264.450000px;}
.y81{bottom:265.890000px;}
.yc4{bottom:267.870000px;}
.y6d{bottom:274.890000px;}
.yf5{bottom:276.330000px;}
.y121{bottom:276.870000px;}
.ye2{bottom:282.810000px;}
.y2f{bottom:284.250000px;}
.y80{bottom:285.870000px;}
.yc3{bottom:287.670000px;}
.y6c{bottom:294.870000px;}
.yf4{bottom:296.130000px;}
.y120{bottom:296.850000px;}
.ye1{bottom:302.610000px;}
.y2e{bottom:304.050000px;}
.y7f{bottom:305.670000px;}
.yc2{bottom:307.470000px;}
.y6b{bottom:314.670000px;}
.yf3{bottom:315.930000px;}
.y11f{bottom:316.650000px;}
.ye0{bottom:322.410000px;}
.y2d{bottom:324.030000px;}
.y7e{bottom:325.470000px;}
.y6a{bottom:334.470000px;}
.yf2{bottom:335.730000px;}
.yc1{bottom:336.270000px;}
.y11e{bottom:336.450000px;}
.y15a{bottom:340.950000px;}
.ydf{bottom:342.210000px;}
.y2c{bottom:343.830000px;}
.y7d{bottom:345.270000px;}
.y133{bottom:351.210000px;}
.y69{bottom:354.270000px;}
.yf1{bottom:355.890000px;}
.yc0{bottom:356.070000px;}
.y11d{bottom:356.250000px;}
.y159{bottom:360.750000px;}
.yde{bottom:362.010000px;}
.y142{bottom:363.270000px;}
.y2b{bottom:363.630000px;}
.y7c{bottom:365.070000px;}
.y12c{bottom:365.430000px;}
.y132{bottom:371.010000px;}
.y68{bottom:374.070000px;}
.y147{bottom:374.970000px;}
.ybf{bottom:376.050000px;}
.y158{bottom:380.550000px;}
.ydd{bottom:381.990000px;}
.y141{bottom:383.070000px;}
.y2a{bottom:383.430000px;}
.y7b{bottom:385.050000px;}
.y131{bottom:390.990000px;}
.y67{bottom:394.050000px;}
.ybe{bottom:395.850000px;}
.yf0{bottom:396.030000px;}
.y157{bottom:400.350000px;}
.ydc{bottom:401.835000px;}
.y140{bottom:403.095000px;}
.y29{bottom:403.275000px;}
.y7a{bottom:404.895000px;}
.y14a{bottom:409.935000px;}
.y130{bottom:410.835000px;}
.yef{bottom:412.815000px;}
.y66{bottom:413.895000px;}
.ybd{bottom:415.695000px;}
.y11c{bottom:415.875000px;}
.y13f{bottom:419.655000px;}
.y156{bottom:420.195000px;}
.ydb{bottom:421.635000px;}
.y28{bottom:423.255000px;}
.y79{bottom:424.695000px;}
.y12f{bottom:427.395000px;}
.yee{bottom:430.815000px;}
.y65{bottom:433.695000px;}
.ybc{bottom:435.495000px;}
.y11b{bottom:435.675000px;}
.y160{bottom:436.575000px;}
.y155{bottom:440.175000px;}
.yed{bottom:440.355000px;}
.yda{bottom:441.435000px;}
.y27{bottom:443.055000px;}
.y78{bottom:444.495000px;}
.y64{bottom:453.495000px;}
.ybb{bottom:455.295000px;}
.y11a{bottom:455.475000px;}
.yd9{bottom:461.235000px;}
.y26{bottom:462.855000px;}
.yaa{bottom:464.295000px;}
.y63{bottom:473.295000px;}
.yba{bottom:475.275000px;}
.yd8{bottom:477.975000px;}
.y25{bottom:482.655000px;}
.ya9{bottom:484.275000px;}
.y62{bottom:493.275000px;}
.yb9{bottom:495.075000px;}
.y119{bottom:495.255000px;}
.y24{bottom:502.455000px;}
.ya8{bottom:504.075000px;}
.y61{bottom:513.075000px;}
.yb8{bottom:514.875000px;}
.y118{bottom:515.055000px;}
.y23{bottom:522.435000px;}
.ya7{bottom:523.875000px;}
.y60{bottom:532.875000px;}
.yb7{bottom:534.675000px;}
.y117{bottom:534.855000px;}
.y106{bottom:535.395000px;}
.y22{bottom:542.235000px;}
.y103{bottom:542.955000px;}
.ya6{bottom:543.675000px;}
.y104{bottom:545.115000px;}
.y105{bottom:551.775000px;}
.y5f{bottom:552.675000px;}
.yb6{bottom:554.475000px;}
.y116{bottom:554.655000px;}
.y21{bottom:562.035000px;}
.ya5{bottom:563.475000px;}
.y5e{bottom:572.475000px;}
.yb5{bottom:574.455000px;}
.y102{bottom:575.715000px;}
.y20{bottom:581.835000px;}
.ya4{bottom:583.455000px;}
.y5d{bottom:592.455000px;}
.y115{bottom:594.435000px;}
.y101{bottom:595.515000px;}
.ya3{bottom:603.255000px;}
.y1f{bottom:603.975000px;}
.y5c{bottom:612.255000px;}
.y114{bottom:614.235000px;}
.y9f{bottom:620.280000px;}
.y100{bottom:622.335000px;}
.ya2{bottom:623.055000px;}
.y1e{bottom:623.775000px;}
.y5b{bottom:632.055000px;}
.y113{bottom:634.035000px;}
.yad{bottom:642.855000px;}
.y1d{bottom:643.575000px;}
.y5a{bottom:651.885000px;}
.y112{bottom:653.865000px;}
.yac{bottom:662.685000px;}
.y1c{bottom:663.405000px;}
.y59{bottom:671.685000px;}
.y111{bottom:673.665000px;}
.y135{bottom:680.505000px;}
.yab{bottom:682.665000px;}
.y1b{bottom:683.385000px;}
.y58{bottom:691.665000px;}
.y110{bottom:693.645000px;}
.y9c{bottom:698.760000px;}
.yb4{bottom:702.465000px;}
.y1a{bottom:703.185000px;}
.y57{bottom:711.465000px;}
.y10f{bottom:713.445000px;}
.yb3{bottom:722.265000px;}
.y154{bottom:722.445000px;}
.y19{bottom:722.985000px;}
.y56{bottom:731.265000px;}
.y10e{bottom:733.245000px;}
.y13e{bottom:735.945000px;}
.yb2{bottom:742.065000px;}
.y153{bottom:742.245000px;}
.y18{bottom:742.785000px;}
.y55{bottom:751.065000px;}
.y138{bottom:751.245000px;}
.y10d{bottom:752.505000px;}
.y15b{bottom:753.945000px;}
.y13d{bottom:755.745000px;}
.yb1{bottom:761.865000px;}
.y152{bottom:762.225000px;}
.y17{bottom:762.585000px;}
.y54{bottom:770.865000px;}
.y15e{bottom:771.405000px;}
.y13c{bottom:775.725000px;}
.y97{bottom:778.860000px;}
.y16b{bottom:779.505000px;}
.yb0{bottom:781.845000px;}
.y151{bottom:782.025000px;}
.y16{bottom:782.565000px;}
.y53{bottom:790.845000px;}
.y13b{bottom:795.525000px;}
.y150{bottom:798.585000px;}
.y9a{bottom:800.205000px;}
.yaf{bottom:801.645000px;}
.y15{bottom:802.365000px;}
.y52{bottom:810.645000px;}
.y13a{bottom:812.085000px;}
.y99{bottom:817.305000px;}
.y16a{bottom:820.905000px;}
.yae{bottom:821.445000px;}
.y14{bottom:822.165000px;}
.y51{bottom:830.445000px;}
.yd7{bottom:841.245000px;}
.y13{bottom:844.305000px;}
.y50{bottom:850.245000px;}
.yd6{bottom:861.045000px;}
.y169{bottom:862.305000px;}
.y12{bottom:864.105000px;}
.y4f{bottom:870.045000px;}
.yd5{bottom:881.025000px;}
.y11{bottom:883.905000px;}
.y4e{bottom:890.025000px;}
.y8f{bottom:894.240000px;}
.yd4{bottom:900.870000px;}
.y168{bottom:903.750000px;}
.y10{bottom:908.970000px;}
.y4d{bottom:909.870000px;}
.y94{bottom:912.390000px;}
.yd3{bottom:920.670000px;}
.yf{bottom:924.270000px;}
.y4c{bottom:929.670000px;}
.yd2{bottom:940.470000px;}
.y167{bottom:945.150000px;}
.ye{bottom:946.050000px;}
.y93{bottom:946.950000px;}
.y4b{bottom:949.470000px;}
.yd1{bottom:960.270000px;}
.y92{bottom:964.230000px;}
.yd{bottom:967.290000px;}
.y4a{bottom:969.270000px;}
.yd0{bottom:980.250000px;}
.y91{bottom:981.330000px;}
.y166{bottom:986.550000px;}
.y49{bottom:989.250000px;}
.yc{bottom:990.690000px;}
.ycf{bottom:1000.050000px;}
.y48{bottom:1009.050000px;}
.yce{bottom:1019.850000px;}
.yb{bottom:1022.550000px;}
.y47{bottom:1028.850000px;}
.y46{bottom:1048.650000px;}
.y5{bottom:1050.630000px;}
.y8b{bottom:1056.420000px;}
.y45{bottom:1068.450000px;}
.y8d{bottom:1077.450000px;}
.y4{bottom:1081.950000px;}
.y44{bottom:1088.430000px;}
.y16c{bottom:1092.210000px;}
.y43{bottom:1108.230000px;}
.y3{bottom:1112.730000px;}
.y145{bottom:1114.710000px;}
.y163{bottom:1117.950000px;}
.y14d{bottom:1119.210000px;}
.y42{bottom:1128.030000px;}
.y2{bottom:1143.690000px;}
.y41{bottom:1147.860000px;}
.y3b{bottom:1174.500000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.580000px;}
.hf{height:21.240000px;}
.h5{height:21.420000px;}
.h8{height:27.432422px;}
.hc{height:28.115859px;}
.h7{height:29.464453px;}
.h26{height:34.416000px;}
.h27{height:35.316000px;}
.h28{height:35.460000px;}
.h2b{height:36.576000px;}
.h23{height:37.620000px;}
.h25{height:39.816000px;}
.h17{height:41.040000px;}
.hd{height:42.164648px;}
.h2a{height:43.200000px;}
.h4{height:43.215117px;}
.h10{height:43.506914px;}
.h12{height:43.536094px;}
.h18{height:43.740000px;}
.h13{height:44.265586px;}
.h15{height:44.372250px;}
.h29{height:44.460000px;}
.h22{height:44.496000px;}
.h19{height:44.980664px;}
.h20{height:45.473203px;}
.h24{height:45.540000px;}
.h3{height:46.736719px;}
.h6{height:47.901094px;}
.he{height:49.255313px;}
.h2c{height:50.800781px;}
.hb{height:53.224453px;}
.h9{height:53.709961px;}
.h11{height:56.160000px;}
.h2d{height:63.576000px;}
.h2{height:67.565039px;}
.ha{height:69.248320px;}
.h21{height:73.455117px;}
.h16{height:73.980000px;}
.h1a{height:83.254922px;}
.h1d{height:89.295117px;}
.h1e{height:89.575313px;}
.h1b{height:119.140664px;}
.h14{height:122.580000px;}
.h1f{height:125.584031px;}
.h1c{height:167.380664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.w6{width:375.840000px;}
.w7{width:381.240000px;}
.w5{width:383.220000px;}
.w9{width:384.480000px;}
.w8{width:384.660000px;}
.wb{width:643.245000px;}
.w12{width:644.325000px;}
.wa{width:644.685000px;}
.wc{width:645.765000px;}
.w10{width:645.945000px;}
.wf{width:663.990000px;}
.wd{width:667.365000px;}
.w11{width:697.785000px;}
.w13{width:707.145000px;}
.we{width:714.030000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1b{left:10.875000px;}
.x5b{left:13.500000px;}
.x46{left:19.980000px;}
.x55{left:26.100000px;}
.x58{left:28.074000px;}
.x4d{left:43.374000px;}
.x43{left:47.874000px;}
.x52{left:52.374000px;}
.x1{left:54.179987px;}
.x3a{left:55.439987px;}
.x13{left:56.519987px;}
.x49{left:60.834000px;}
.x2{left:62.100000px;}
.x3f{left:64.974000px;}
.xb{left:75.239987px;}
.x25{left:80.999987px;}
.x9{left:82.439987px;}
.x53{left:87.156000px;}
.x22{left:89.895000px;}
.x59{left:93.996000px;}
.x19{left:95.295000px;}
.x44{left:97.236000px;}
.x50{left:103.005000px;}
.x10{left:108.035987px;}
.x3b{left:109.475987px;}
.x41{left:118.656000px;}
.x4{left:120.636000px;}
.x45{left:121.854000px;}
.x3d{left:122.976000px;}
.x32{left:126.035987px;}
.x56{left:128.736000px;}
.x1d{left:135.615000px;}
.x33{left:137.375987px;}
.x4b{left:142.236000px;}
.x1f{left:153.435000px;}
.x24{left:157.215000px;}
.x30{left:163.829987px;}
.x2d{left:168.689987px;}
.x2c{left:173.189987px;}
.x4c{left:180.399000px;}
.x34{left:190.829987px;}
.x3e{left:193.719000px;}
.x8{left:199.299000px;}
.x5a{left:202.359000px;}
.x7{left:204.339000px;}
.x4a{left:205.779000px;}
.x31{left:208.649987px;}
.x51{left:213.339000px;}
.x57{left:216.579000px;}
.x2e{left:229.169987px;}
.x54{left:237.459000px;}
.x2a{left:239.609987px;}
.x48{left:245.019000px;}
.x2b{left:246.269987px;}
.x42{left:252.399000px;}
.x18{left:254.880000px;}
.x23{left:256.680000px;}
.x21{left:257.760000px;}
.x5c{left:262.299000px;}
.x1c{left:263.340000px;}
.x1a{left:265.754987px;}
.x1e{left:267.300000px;}
.xd{left:274.214987px;}
.x4f{left:276.345000px;}
.x20{left:278.174987px;}
.xf{left:281.954987px;}
.x29{left:312.374987px;}
.x47{left:337.214987px;}
.xe{left:338.654987px;}
.x36{left:346.394987px;}
.x4e{left:348.914987px;}
.xc{left:352.514987px;}
.x14{left:356.654987px;}
.x28{left:359.174987px;}
.x38{left:366.374987px;}
.x39{left:369.074987px;}
.x37{left:370.334987px;}
.x3c{left:393.194987px;}
.x6{left:396.969000px;}
.x5{left:410.469000px;}
.x40{left:443.594987px;}
.xa{left:446.504987px;}
.x15{left:451.004987px;}
.x11{left:473.504987px;}
.x2f{left:482.504987px;}
.x26{left:500.504987px;}
.x16{left:505.004987px;}
.x12{left:527.504987px;}
.x17{left:558.644987px;}
.x27{left:578.084987px;}
.x35{left:752.549987px;}
@media print{
.v3{vertical-align:-108.800000pt;}
.vb{vertical-align:-62.080000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.320000pt;}
.va{vertical-align:16.000000pt;}
.vc{vertical-align:17.280000pt;}
.v1{vertical-align:21.120000pt;}
.vd{vertical-align:26.880000pt;}
.v9{vertical-align:30.080000pt;}
.v7{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.v4{vertical-align:42.880000pt;}
.ls10{letter-spacing:-1.184000pt;}
.ls2d{letter-spacing:-1.120000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.059733pt;}
.ls1e{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.168533pt;}
.ls4{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.272533pt;}
.ls15{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.323200pt;}
.ls28{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls21{letter-spacing:1.920000pt;}
.ls14{letter-spacing:3.610880pt;}
.ls1f{letter-spacing:9.080320pt;}
.ls2c{letter-spacing:14.672640pt;}
.ls17{letter-spacing:14.719360pt;}
.ls1a{letter-spacing:15.930880pt;}
.ls8{letter-spacing:24.912640pt;}
.ls1d{letter-spacing:32.720640pt;}
.ls2a{letter-spacing:40.912640pt;}
.ls13{letter-spacing:62.469120pt;}
.ls19{letter-spacing:62.817920pt;}
.lsa{letter-spacing:72.223744pt;}
.ls9{letter-spacing:72.319360pt;}
.ls12{letter-spacing:72.417920pt;}
.lse{letter-spacing:105.040640pt;}
.ls20{letter-spacing:105.920000pt;}
.ls24{letter-spacing:110.800640pt;}
.ls1b{letter-spacing:136.912640pt;}
.ls27{letter-spacing:137.040640pt;}
.ls11{letter-spacing:178.848000pt;}
.ws9{word-spacing:-53.179733pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-37.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws10{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:1.613440pt;}
.ws8{word-spacing:5.519360pt;}
.wsa{word-spacing:37.771520pt;}
.wsb{word-spacing:191.040000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1095.400960pt;}
._4{margin-left:-1041.576960pt;}
._22{margin-left:-663.452160pt;}
._38{margin-left:-18.659840pt;}
._39{margin-left:-9.454507pt;}
._6{margin-left:-3.313707pt;}
._7{margin-left:-2.210773pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._c{width:2.316800pt;}
._8{width:3.248640pt;}
._b{width:4.548053pt;}
._e{width:6.141653pt;}
._15{width:7.436800pt;}
._16{width:8.499200pt;}
._a{width:9.483520pt;}
._9{width:11.007360pt;}
._21{width:12.102400pt;}
._3a{width:13.029120pt;}
._1b{width:14.428373pt;}
._1a{width:15.829760pt;}
._d{width:16.765653pt;}
._14{width:17.954560pt;}
._1f{width:19.262293pt;}
._23{width:20.365227pt;}
._12{width:21.440213pt;}
._13{width:22.569387pt;}
._2c{width:23.671253pt;}
._2b{width:24.594560pt;}
._18{width:25.583573pt;}
._17{width:27.303680pt;}
._11{width:28.206720pt;}
._10{width:29.162880pt;}
._27{width:30.237867pt;}
._24{width:31.426773pt;}
._25{width:32.357760pt;}
._3d{width:33.249920pt;}
._35{width:34.189013pt;}
._f{width:35.324800pt;}
._19{width:37.057493pt;}
._29{width:38.050560pt;}
._1c{width:39.022933pt;}
._30{width:40.166400pt;}
._2e{width:41.838293pt;}
._34{width:42.781867pt;}
._1e{width:44.122453pt;}
._20{width:45.683200pt;}
._2f{width:47.043840pt;}
._28{width:48.604800pt;}
._32{width:50.251520pt;}
._2d{width:51.792000pt;}
._31{width:53.524693pt;}
._33{width:56.462080pt;}
._26{width:57.561813pt;}
._42{width:59.102293pt;}
._3c{width:61.566080pt;}
._4a{width:62.853547pt;}
._41{width:64.042453pt;}
._4b{width:67.858560pt;}
._51{width:68.823253pt;}
._3e{width:73.270613pt;}
._49{width:74.308267pt;}
._47{width:76.313173pt;}
._1d{width:83.717120pt;}
._3f{width:90.940800pt;}
._46{width:97.680000pt;}
._45{width:98.750080pt;}
._48{width:107.175893pt;}
._40{width:109.406933pt;}
._4f{width:120.157440pt;}
._4e{width:121.219840pt;}
._43{width:128.497280pt;}
._4d{width:129.559680pt;}
._2a{width:146.848000pt;}
._36{width:178.848000pt;}
._3b{width:204.491733pt;}
._50{width:253.893333pt;}
._37{width:327.219200pt;}
._59{width:523.146667pt;}
._58{width:679.680000pt;}
._52{width:722.826667pt;}
._56{width:729.120000pt;}
._55{width:743.786667pt;}
._44{width:752.551040pt;}
._4c{width:768.912000pt;}
._54{width:807.946667pt;}
._53{width:817.074560pt;}
._57{width:919.840000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs9{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y96{bottom:-14.626667pt;}
.y0{bottom:0.000000pt;}
.y149{bottom:0.480000pt;}
.y95{bottom:0.733333pt;}
.y14f{bottom:1.280000pt;}
.y15d{bottom:1.440000pt;}
.y165{bottom:2.400000pt;}
.y8e{bottom:3.333333pt;}
.y137{bottom:3.360000pt;}
.y9b{bottom:3.613333pt;}
.y3d{bottom:5.120000pt;}
.y9e{bottom:5.213333pt;}
.y7{bottom:5.280000pt;}
.y14c{bottom:6.400000pt;}
.ya1{bottom:7.426667pt;}
.y162{bottom:8.320000pt;}
.y16f{bottom:8.640000pt;}
.y12e{bottom:9.280000pt;}
.y15f{bottom:9.440000pt;}
.y3f{bottom:9.760000pt;}
.y9{bottom:9.920000pt;}
.y3e{bottom:10.400000pt;}
.y8{bottom:10.560000pt;}
.y148{bottom:18.080000pt;}
.y14e{bottom:18.880000pt;}
.y15c{bottom:19.040000pt;}
.y164{bottom:20.000000pt;}
.y136{bottom:20.960000pt;}
.y9d{bottom:21.853333pt;}
.y146{bottom:22.880000pt;}
.y14b{bottom:24.000000pt;}
.ya0{bottom:24.066667pt;}
.y161{bottom:25.920000pt;}
.y16e{bottom:26.240000pt;}
.y12d{bottom:27.040000pt;}
.y139{bottom:28.000000pt;}
.ya{bottom:31.840000pt;}
.y8c{bottom:35.173333pt;}
.y6{bottom:43.200000pt;}
.y16d{bottom:44.000000pt;}
.y98{bottom:50.813333pt;}
.y40{bottom:51.040000pt;}
.y3c{bottom:62.560000pt;}
.y77{bottom:68.000000pt;}
.y144{bottom:68.960000pt;}
.y12b{bottom:69.760000pt;}
.yff{bottom:72.160000pt;}
.yec{bottom:75.040000pt;}
.y39{bottom:76.320000pt;}
.y8a{bottom:77.760000pt;}
.ycd{bottom:79.360000pt;}
.y10c{bottom:83.200000pt;}
.y143{bottom:83.680000pt;}
.y76{bottom:85.760000pt;}
.y12a{bottom:87.520000pt;}
.yfe{bottom:89.760000pt;}
.y134{bottom:91.040000pt;}
.yeb{bottom:92.640000pt;}
.y38{bottom:93.920000pt;}
.y90{bottom:94.053333pt;}
.y89{bottom:95.360000pt;}
.ycc{bottom:96.960000pt;}
.y10b{bottom:100.800000pt;}
.y75{bottom:103.360000pt;}
.y129{bottom:105.120000pt;}
.yfd{bottom:107.520000pt;}
.yea{bottom:110.240000pt;}
.y37{bottom:111.680000pt;}
.y88{bottom:112.960000pt;}
.ycb{bottom:114.560000pt;}
.y10a{bottom:118.400000pt;}
.y74{bottom:120.960000pt;}
.y128{bottom:122.720000pt;}
.yfc{bottom:125.120000pt;}
.ye9{bottom:127.840000pt;}
.y36{bottom:129.280000pt;}
.y87{bottom:130.560000pt;}
.yca{bottom:132.160000pt;}
.y109{bottom:136.026667pt;}
.y73{bottom:138.586667pt;}
.y127{bottom:140.346667pt;}
.ye8{bottom:145.466667pt;}
.y35{bottom:146.906667pt;}
.y86{bottom:148.186667pt;}
.yc9{bottom:149.946667pt;}
.y108{bottom:153.626667pt;}
.yf9{bottom:155.866667pt;}
.y72{bottom:156.186667pt;}
.y126{bottom:157.946667pt;}
.yfb{bottom:162.426667pt;}
.ye7{bottom:163.226667pt;}
.y34{bottom:164.506667pt;}
.y85{bottom:165.946667pt;}
.yc8{bottom:167.546667pt;}
.y107{bottom:168.506667pt;}
.yfa{bottom:171.226667pt;}
.y71{bottom:173.946667pt;}
.y125{bottom:175.706667pt;}
.ye6{bottom:180.826667pt;}
.y33{bottom:182.106667pt;}
.y84{bottom:183.546667pt;}
.yc7{bottom:185.146667pt;}
.y70{bottom:191.546667pt;}
.yf8{bottom:192.346667pt;}
.y124{bottom:193.306667pt;}
.ye5{bottom:198.426667pt;}
.y32{bottom:199.866667pt;}
.y83{bottom:201.146667pt;}
.yc6{bottom:202.746667pt;}
.y6f{bottom:209.146667pt;}
.yf7{bottom:209.946667pt;}
.y123{bottom:210.906667pt;}
.ye4{bottom:216.026667pt;}
.y31{bottom:217.466667pt;}
.y82{bottom:218.746667pt;}
.yc5{bottom:220.346667pt;}
.y6e{bottom:226.746667pt;}
.yf6{bottom:227.866667pt;}
.y122{bottom:228.506667pt;}
.ye3{bottom:233.626667pt;}
.y30{bottom:235.066667pt;}
.y81{bottom:236.346667pt;}
.yc4{bottom:238.106667pt;}
.y6d{bottom:244.346667pt;}
.yf5{bottom:245.626667pt;}
.y121{bottom:246.106667pt;}
.ye2{bottom:251.386667pt;}
.y2f{bottom:252.666667pt;}
.y80{bottom:254.106667pt;}
.yc3{bottom:255.706667pt;}
.y6c{bottom:262.106667pt;}
.yf4{bottom:263.226667pt;}
.y120{bottom:263.866667pt;}
.ye1{bottom:268.986667pt;}
.y2e{bottom:270.266667pt;}
.y7f{bottom:271.706667pt;}
.yc2{bottom:273.306667pt;}
.y6b{bottom:279.706667pt;}
.yf3{bottom:280.826667pt;}
.y11f{bottom:281.466667pt;}
.ye0{bottom:286.586667pt;}
.y2d{bottom:288.026667pt;}
.y7e{bottom:289.306667pt;}
.y6a{bottom:297.306667pt;}
.yf2{bottom:298.426667pt;}
.yc1{bottom:298.906667pt;}
.y11e{bottom:299.066667pt;}
.y15a{bottom:303.066667pt;}
.ydf{bottom:304.186667pt;}
.y2c{bottom:305.626667pt;}
.y7d{bottom:306.906667pt;}
.y133{bottom:312.186667pt;}
.y69{bottom:314.906667pt;}
.yf1{bottom:316.346667pt;}
.yc0{bottom:316.506667pt;}
.y11d{bottom:316.666667pt;}
.y159{bottom:320.666667pt;}
.yde{bottom:321.786667pt;}
.y142{bottom:322.906667pt;}
.y2b{bottom:323.226667pt;}
.y7c{bottom:324.506667pt;}
.y12c{bottom:324.826667pt;}
.y132{bottom:329.786667pt;}
.y68{bottom:332.506667pt;}
.y147{bottom:333.306667pt;}
.ybf{bottom:334.266667pt;}
.y158{bottom:338.266667pt;}
.ydd{bottom:339.546667pt;}
.y141{bottom:340.506667pt;}
.y2a{bottom:340.826667pt;}
.y7b{bottom:342.266667pt;}
.y131{bottom:347.546667pt;}
.y67{bottom:350.266667pt;}
.ybe{bottom:351.866667pt;}
.yf0{bottom:352.026667pt;}
.y157{bottom:355.866667pt;}
.ydc{bottom:357.186667pt;}
.y140{bottom:358.306667pt;}
.y29{bottom:358.466667pt;}
.y7a{bottom:359.906667pt;}
.y14a{bottom:364.386667pt;}
.y130{bottom:365.186667pt;}
.yef{bottom:366.946667pt;}
.y66{bottom:367.906667pt;}
.ybd{bottom:369.506667pt;}
.y11c{bottom:369.666667pt;}
.y13f{bottom:373.026667pt;}
.y156{bottom:373.506667pt;}
.ydb{bottom:374.786667pt;}
.y28{bottom:376.226667pt;}
.y79{bottom:377.506667pt;}
.y12f{bottom:379.906667pt;}
.yee{bottom:382.946667pt;}
.y65{bottom:385.506667pt;}
.ybc{bottom:387.106667pt;}
.y11b{bottom:387.266667pt;}
.y160{bottom:388.066667pt;}
.y155{bottom:391.266667pt;}
.yed{bottom:391.426667pt;}
.yda{bottom:392.386667pt;}
.y27{bottom:393.826667pt;}
.y78{bottom:395.106667pt;}
.y64{bottom:403.106667pt;}
.ybb{bottom:404.706667pt;}
.y11a{bottom:404.866667pt;}
.yd9{bottom:409.986667pt;}
.y26{bottom:411.426667pt;}
.yaa{bottom:412.706667pt;}
.y63{bottom:420.706667pt;}
.yba{bottom:422.466667pt;}
.yd8{bottom:424.866667pt;}
.y25{bottom:429.026667pt;}
.ya9{bottom:430.466667pt;}
.y62{bottom:438.466667pt;}
.yb9{bottom:440.066667pt;}
.y119{bottom:440.226667pt;}
.y24{bottom:446.626667pt;}
.ya8{bottom:448.066667pt;}
.y61{bottom:456.066667pt;}
.yb8{bottom:457.666667pt;}
.y118{bottom:457.826667pt;}
.y23{bottom:464.386667pt;}
.ya7{bottom:465.666667pt;}
.y60{bottom:473.666667pt;}
.yb7{bottom:475.266667pt;}
.y117{bottom:475.426667pt;}
.y106{bottom:475.906667pt;}
.y22{bottom:481.986667pt;}
.y103{bottom:482.626667pt;}
.ya6{bottom:483.266667pt;}
.y104{bottom:484.546667pt;}
.y105{bottom:490.466667pt;}
.y5f{bottom:491.266667pt;}
.yb6{bottom:492.866667pt;}
.y116{bottom:493.026667pt;}
.y21{bottom:499.586667pt;}
.ya5{bottom:500.866667pt;}
.y5e{bottom:508.866667pt;}
.yb5{bottom:510.626667pt;}
.y102{bottom:511.746667pt;}
.y20{bottom:517.186667pt;}
.ya4{bottom:518.626667pt;}
.y5d{bottom:526.626667pt;}
.y115{bottom:528.386667pt;}
.y101{bottom:529.346667pt;}
.ya3{bottom:536.226667pt;}
.y1f{bottom:536.866667pt;}
.y5c{bottom:544.226667pt;}
.y114{bottom:545.986667pt;}
.y9f{bottom:551.360000pt;}
.y100{bottom:553.186667pt;}
.ya2{bottom:553.826667pt;}
.y1e{bottom:554.466667pt;}
.y5b{bottom:561.826667pt;}
.y113{bottom:563.586667pt;}
.yad{bottom:571.426667pt;}
.y1d{bottom:572.066667pt;}
.y5a{bottom:579.453333pt;}
.y112{bottom:581.213333pt;}
.yac{bottom:589.053333pt;}
.y1c{bottom:589.693333pt;}
.y59{bottom:597.053333pt;}
.y111{bottom:598.813333pt;}
.y135{bottom:604.893333pt;}
.yab{bottom:606.813333pt;}
.y1b{bottom:607.453333pt;}
.y58{bottom:614.813333pt;}
.y110{bottom:616.573333pt;}
.y9c{bottom:621.120000pt;}
.yb4{bottom:624.413333pt;}
.y1a{bottom:625.053333pt;}
.y57{bottom:632.413333pt;}
.y10f{bottom:634.173333pt;}
.yb3{bottom:642.013333pt;}
.y154{bottom:642.173333pt;}
.y19{bottom:642.653333pt;}
.y56{bottom:650.013333pt;}
.y10e{bottom:651.773333pt;}
.y13e{bottom:654.173333pt;}
.yb2{bottom:659.613333pt;}
.y153{bottom:659.773333pt;}
.y18{bottom:660.253333pt;}
.y55{bottom:667.613333pt;}
.y138{bottom:667.773333pt;}
.y10d{bottom:668.893333pt;}
.y15b{bottom:670.173333pt;}
.y13d{bottom:671.773333pt;}
.yb1{bottom:677.213333pt;}
.y152{bottom:677.533333pt;}
.y17{bottom:677.853333pt;}
.y54{bottom:685.213333pt;}
.y15e{bottom:685.693333pt;}
.y13c{bottom:689.533333pt;}
.y97{bottom:692.320000pt;}
.y16b{bottom:692.893333pt;}
.yb0{bottom:694.973333pt;}
.y151{bottom:695.133333pt;}
.y16{bottom:695.613333pt;}
.y53{bottom:702.973333pt;}
.y13b{bottom:707.133333pt;}
.y150{bottom:709.853333pt;}
.y9a{bottom:711.293333pt;}
.yaf{bottom:712.573333pt;}
.y15{bottom:713.213333pt;}
.y52{bottom:720.573333pt;}
.y13a{bottom:721.853333pt;}
.y99{bottom:726.493333pt;}
.y16a{bottom:729.693333pt;}
.yae{bottom:730.173333pt;}
.y14{bottom:730.813333pt;}
.y51{bottom:738.173333pt;}
.yd7{bottom:747.773333pt;}
.y13{bottom:750.493333pt;}
.y50{bottom:755.773333pt;}
.yd6{bottom:765.373333pt;}
.y169{bottom:766.493333pt;}
.y12{bottom:768.093333pt;}
.y4f{bottom:773.373333pt;}
.yd5{bottom:783.133333pt;}
.y11{bottom:785.693333pt;}
.y4e{bottom:791.133333pt;}
.y8f{bottom:794.880000pt;}
.yd4{bottom:800.773333pt;}
.y168{bottom:803.333333pt;}
.y10{bottom:807.973333pt;}
.y4d{bottom:808.773333pt;}
.y94{bottom:811.013333pt;}
.yd3{bottom:818.373333pt;}
.yf{bottom:821.573333pt;}
.y4c{bottom:826.373333pt;}
.yd2{bottom:835.973333pt;}
.y167{bottom:840.133333pt;}
.ye{bottom:840.933333pt;}
.y93{bottom:841.733333pt;}
.y4b{bottom:843.973333pt;}
.yd1{bottom:853.573333pt;}
.y92{bottom:857.093333pt;}
.yd{bottom:859.813333pt;}
.y4a{bottom:861.573333pt;}
.yd0{bottom:871.333333pt;}
.y91{bottom:872.293333pt;}
.y166{bottom:876.933333pt;}
.y49{bottom:879.333333pt;}
.yc{bottom:880.613333pt;}
.ycf{bottom:888.933333pt;}
.y48{bottom:896.933333pt;}
.yce{bottom:906.533333pt;}
.yb{bottom:908.933333pt;}
.y47{bottom:914.533333pt;}
.y46{bottom:932.133333pt;}
.y5{bottom:933.893333pt;}
.y8b{bottom:939.040000pt;}
.y45{bottom:949.733333pt;}
.y8d{bottom:957.733333pt;}
.y4{bottom:961.733333pt;}
.y44{bottom:967.493333pt;}
.y16c{bottom:970.853333pt;}
.y43{bottom:985.093333pt;}
.y3{bottom:989.093333pt;}
.y145{bottom:990.853333pt;}
.y163{bottom:993.733333pt;}
.y14d{bottom:994.853333pt;}
.y42{bottom:1002.693333pt;}
.y2{bottom:1016.613333pt;}
.y41{bottom:1020.320000pt;}
.y3b{bottom:1044.000000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.960000pt;}
.hf{height:18.880000pt;}
.h5{height:19.040000pt;}
.h8{height:24.384375pt;}
.hc{height:24.991875pt;}
.h7{height:26.190625pt;}
.h26{height:30.592000pt;}
.h27{height:31.392000pt;}
.h28{height:31.520000pt;}
.h2b{height:32.512000pt;}
.h23{height:33.440000pt;}
.h25{height:35.392000pt;}
.h17{height:36.480000pt;}
.hd{height:37.479688pt;}
.h2a{height:38.400000pt;}
.h4{height:38.413438pt;}
.h10{height:38.672812pt;}
.h12{height:38.698750pt;}
.h18{height:38.880000pt;}
.h13{height:39.347188pt;}
.h15{height:39.442000pt;}
.h29{height:39.520000pt;}
.h22{height:39.552000pt;}
.h19{height:39.982812pt;}
.h20{height:40.420625pt;}
.h24{height:40.480000pt;}
.h3{height:41.543750pt;}
.h6{height:42.578750pt;}
.he{height:43.782500pt;}
.h2c{height:45.156250pt;}
.hb{height:47.310625pt;}
.h9{height:47.742188pt;}
.h11{height:49.920000pt;}
.h2d{height:56.512000pt;}
.h2{height:60.057813pt;}
.ha{height:61.554062pt;}
.h21{height:65.293437pt;}
.h16{height:65.760000pt;}
.h1a{height:74.004375pt;}
.h1d{height:79.373437pt;}
.h1e{height:79.622500pt;}
.h1b{height:105.902812pt;}
.h14{height:108.960000pt;}
.h1f{height:111.630250pt;}
.h1c{height:148.782813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.w6{width:334.080000pt;}
.w7{width:338.880000pt;}
.w5{width:340.640000pt;}
.w9{width:341.760000pt;}
.w8{width:341.920000pt;}
.wb{width:571.773333pt;}
.w12{width:572.733333pt;}
.wa{width:573.053333pt;}
.wc{width:574.013333pt;}
.w10{width:574.173333pt;}
.wf{width:590.213333pt;}
.wd{width:593.213333pt;}
.w11{width:620.253333pt;}
.w13{width:628.573333pt;}
.we{width:634.693333pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1b{left:9.666667pt;}
.x5b{left:12.000000pt;}
.x46{left:17.760000pt;}
.x55{left:23.200000pt;}
.x58{left:24.954667pt;}
.x4d{left:38.554667pt;}
.x43{left:42.554667pt;}
.x52{left:46.554667pt;}
.x1{left:48.159988pt;}
.x3a{left:49.279988pt;}
.x13{left:50.239988pt;}
.x49{left:54.074667pt;}
.x2{left:55.200000pt;}
.x3f{left:57.754667pt;}
.xb{left:66.879988pt;}
.x25{left:71.999988pt;}
.x9{left:73.279988pt;}
.x53{left:77.472000pt;}
.x22{left:79.906667pt;}
.x59{left:83.552000pt;}
.x19{left:84.706667pt;}
.x44{left:86.432000pt;}
.x50{left:91.560000pt;}
.x10{left:96.031988pt;}
.x3b{left:97.311988pt;}
.x41{left:105.472000pt;}
.x4{left:107.232000pt;}
.x45{left:108.314667pt;}
.x3d{left:109.312000pt;}
.x32{left:112.031988pt;}
.x56{left:114.432000pt;}
.x1d{left:120.546667pt;}
.x33{left:122.111988pt;}
.x4b{left:126.432000pt;}
.x1f{left:136.386667pt;}
.x24{left:139.746667pt;}
.x30{left:145.626655pt;}
.x2d{left:149.946655pt;}
.x2c{left:153.946655pt;}
.x4c{left:160.354667pt;}
.x34{left:169.626655pt;}
.x3e{left:172.194667pt;}
.x8{left:177.154667pt;}
.x5a{left:179.874667pt;}
.x7{left:181.634667pt;}
.x4a{left:182.914667pt;}
.x31{left:185.466655pt;}
.x51{left:189.634667pt;}
.x57{left:192.514667pt;}
.x2e{left:203.706655pt;}
.x54{left:211.074667pt;}
.x2a{left:212.986655pt;}
.x48{left:217.794667pt;}
.x2b{left:218.906655pt;}
.x42{left:224.354667pt;}
.x18{left:226.560000pt;}
.x23{left:228.160000pt;}
.x21{left:229.120000pt;}
.x5c{left:233.154667pt;}
.x1c{left:234.080000pt;}
.x1a{left:236.226655pt;}
.x1e{left:237.600000pt;}
.xd{left:243.746655pt;}
.x4f{left:245.640000pt;}
.x20{left:247.266655pt;}
.xf{left:250.626655pt;}
.x29{left:277.666655pt;}
.x47{left:299.746655pt;}
.xe{left:301.026655pt;}
.x36{left:307.906655pt;}
.x4e{left:310.146655pt;}
.xc{left:313.346655pt;}
.x14{left:317.026655pt;}
.x28{left:319.266655pt;}
.x38{left:325.666655pt;}
.x39{left:328.066655pt;}
.x37{left:329.186655pt;}
.x3c{left:349.506655pt;}
.x6{left:352.861333pt;}
.x5{left:364.861333pt;}
.x40{left:394.306655pt;}
.xa{left:396.893322pt;}
.x15{left:400.893322pt;}
.x11{left:420.893322pt;}
.x2f{left:428.893322pt;}
.x26{left:444.893322pt;}
.x16{left:448.893322pt;}
.x12{left:468.893322pt;}
.x17{left:496.573322pt;}
.x27{left:513.853322pt;}
.x35{left:668.933322pt;}
}




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