
    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_e7deaef1de3adbe1d472b482.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_589dc036734cf592942b8ed2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_1480c98662bc8ce31e772fb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_58d17f066ee335cb77ae9682.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b56f92a25e2bbf39d817118c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_2c3b8eb8b663f89581ac2f8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_7aab502dffde385ec225c71c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4bb78abbf577770866df5538.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_3910be67bec989b1a5b88f99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.981934;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_1132b48e93a1d28eeae88d60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.980957;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;}
.m5{transform:matrix(0.000000,-0.249540,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249540,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249540,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.265759,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.265759,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.265759,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.273395,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.273395,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.273395,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.289079,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.289079,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.289079,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.292414,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.292414,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.292414,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.213738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213738,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.216204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216204,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.228607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228607,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235176,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266295,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-98.160000px;}
.v8{vertical-align:-52.698635px;}
.v6{vertical-align:-51.388469px;}
.vb{vertical-align:-46.162796px;}
.v4{vertical-align:-43.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:43.200000px;}
.v9{vertical-align:45.054713px;}
.va{vertical-align:46.162796px;}
.v5{vertical-align:51.388469px;}
.v7{vertical-align:52.698635px;}
.v3{vertical-align:86.400000px;}
.v1{vertical-align:172.800000px;}
.ls46{letter-spacing:-21.960000px;}
.ls4c{letter-spacing:-2.899128px;}
.ls50{letter-spacing:-2.604317px;}
.ls44{letter-spacing:-2.232000px;}
.ls48{letter-spacing:-1.734756px;}
.ls3e{letter-spacing:-1.584000px;}
.ls38{letter-spacing:-1.476000px;}
.ls43{letter-spacing:-1.404000px;}
.ls3a{letter-spacing:-0.756000px;}
.ls3c{letter-spacing:-0.684000px;}
.ls4b{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.464400px;}
.ls49{letter-spacing:-0.432000px;}
.ls3d{letter-spacing:-0.416400px;}
.ls4a{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.005184px;}
.ls36{letter-spacing:-0.002592px;}
.ls32{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.014322px;}
.ls28{letter-spacing:0.035244px;}
.ls2c{letter-spacing:0.036304px;}
.ls1{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.075000px;}
.ls4d{letter-spacing:0.099134px;}
.ls34{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.256825px;}
.ls29{letter-spacing:0.270386px;}
.ls2d{letter-spacing:0.302951px;}
.ls0{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.496200px;}
.ls1d{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.684000px;}
.ls3f{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.477440px;}
.ls47{letter-spacing:1.512000px;}
.lse{letter-spacing:2.917440px;}
.ls2b{letter-spacing:3.529325px;}
.ls2f{letter-spacing:4.118478px;}
.ls40{letter-spacing:4.356000px;}
.lsb{letter-spacing:4.357440px;}
.lsc{letter-spacing:4.537440px;}
.ls12{letter-spacing:5.797440px;}
.lsa{letter-spacing:8.677440px;}
.ls9{letter-spacing:8.700000px;}
.ls14{letter-spacing:11.557440px;}
.ls42{letter-spacing:11.580000px;}
.ls2{letter-spacing:12.997440px;}
.ls2a{letter-spacing:13.964678px;}
.ls2e{letter-spacing:14.711110px;}
.ls8{letter-spacing:15.877440px;}
.ls39{letter-spacing:18.780000px;}
.lsf{letter-spacing:20.197440px;}
.ls30{letter-spacing:21.637440px;}
.ls33{letter-spacing:21.960000px;}
.ls15{letter-spacing:31.677408px;}
.ls1a{letter-spacing:33.157440px;}
.ls6{letter-spacing:38.917440px;}
.ls10{letter-spacing:40.357440px;}
.ls18{letter-spacing:44.677440px;}
.ls11{letter-spacing:46.077408px;}
.ls7{letter-spacing:46.117440px;}
.ls5{letter-spacing:50.437440px;}
.ls41{letter-spacing:59.100000px;}
.ls19{letter-spacing:67.717440px;}
.ls45{letter-spacing:67.740000px;}
.ls4{letter-spacing:77.797440px;}
.ls13{letter-spacing:122.437440px;}
.ls16{letter-spacing:149.797440px;}
.ls17{letter-spacing:151.237440px;}
.ls20{letter-spacing:241.500000px;}
.ls26{letter-spacing:322.104000px;}
.ls1f{letter-spacing:322.140000px;}
.ls23{letter-spacing:630.900000px;}
.ls1e{letter-spacing:635.220000px;}
.ls21{letter-spacing:639.540000px;}
.ls22{letter-spacing:643.860000px;}
.ls27{letter-spacing:646.740000px;}
.ls24{letter-spacing:666.900000px;}
.ls1b{letter-spacing:872.400000px;}
.ls1c{letter-spacing:911.760000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-479.664000px;}
.ws1{word-spacing:-65.880000px;}
.ws11{word-spacing:-54.754560px;}
.wse{word-spacing:-53.962560px;}
.ws7{word-spacing:-53.930592px;}
.ws4{word-spacing:-53.926560px;}
.ws5{word-spacing:-53.317560px;}
.ws33{word-spacing:-53.282592px;}
.ws3{word-spacing:-53.280000px;}
.wsa{word-spacing:-53.277408px;}
.ws6{word-spacing:-53.242560px;}
.wsc{word-spacing:-52.826160px;}
.ws32{word-spacing:-52.818192px;}
.wsb{word-spacing:-52.558560px;}
.ws9{word-spacing:-52.486560px;}
.ws8{word-spacing:-51.766560px;}
.wsd{word-spacing:-51.698592px;}
.wsf{word-spacing:-51.010560px;}
.ws21{word-spacing:-40.568232px;}
.ws20{word-spacing:-40.072032px;}
.ws1f{word-spacing:-40.032000px;}
.ws1e{word-spacing:-39.888000px;}
.ws1c{word-spacing:-39.600000px;}
.ws22{word-spacing:-39.592032px;}
.ws2c{word-spacing:-31.823534px;}
.ws10{word-spacing:-31.282560px;}
.ws23{word-spacing:-30.895043px;}
.ws2{word-spacing:-30.456000px;}
.ws2e{word-spacing:-29.936477px;}
.ws34{word-spacing:-27.753339px;}
.ws1d{word-spacing:-26.821440px;}
.ws27{word-spacing:-26.718520px;}
.ws2f{word-spacing:-26.433690px;}
.ws39{word-spacing:-25.378468px;}
.ws2b{word-spacing:-24.791487px;}
.ws28{word-spacing:-24.745878px;}
.ws31{word-spacing:-22.599546px;}
.ws35{word-spacing:-19.235690px;}
.ws13{word-spacing:-17.683635px;}
.ws12{word-spacing:-15.948879px;}
.ws1b{word-spacing:-0.070735px;}
.ws3a{word-spacing:0.000000px;}
.ws19{word-spacing:97.036174px;}
.ws14{word-spacing:100.232364px;}
.ws17{word-spacing:101.202935px;}
.ws30{word-spacing:192.879526px;}
.ws2d{word-spacing:195.070730px;}
.ws18{word-spacing:364.310792px;}
.ws37{word-spacing:366.928611px;}
.ws15{word-spacing:367.506983px;}
.ws1a{word-spacing:368.338104px;}
.ws16{word-spacing:369.587574px;}
.ws36{word-spacing:369.827318px;}
.ws38{word-spacing:385.006401px;}
.ws29{word-spacing:441.477547px;}
.ws24{word-spacing:463.080591px;}
.ws25{word-spacing:468.494287px;}
.ws2a{word-spacing:475.336437px;}
.ws26{word-spacing:488.277426px;}
._52{margin-left:-289.054782px;}
._51{margin-left:-287.665862px;}
._55{margin-left:-284.475249px;}
._50{margin-left:-233.542231px;}
._53{margin-left:-231.595512px;}
._4e{margin-left:-117.715191px;}
._54{margin-left:-115.629021px;}
._11{margin-left:-67.320000px;}
._1b{margin-left:-58.847760px;}
._3{margin-left:-55.161360px;}
._4f{margin-left:-50.197760px;}
._1d{margin-left:-49.087248px;}
._e{margin-left:-42.399936px;}
._17{margin-left:-38.930976px;}
._6{margin-left:-37.893456px;}
._8{margin-left:-35.537616px;}
._f{margin-left:-29.266176px;}
._16{margin-left:-20.572848px;}
._2{margin-left:-19.186560px;}
._56{margin-left:-17.856000px;}
._38{margin-left:-16.366656px;}
._12{margin-left:-15.012816px;}
._21{margin-left:-13.913712px;}
._c{margin-left:-12.864096px;}
._23{margin-left:-11.736960px;}
._15{margin-left:-10.701216px;}
._5{margin-left:-8.741664px;}
._57{margin-left:-6.872304px;}
._20{margin-left:-5.652192px;}
._1e{margin-left:-4.536048px;}
._7{margin-left:-2.616912px;}
._0{margin-left:-1.438992px;}
._13{width:1.403088px;}
._40{width:2.424000px;}
._1c{width:3.425760px;}
._31{width:4.581552px;}
._1f{width:5.832000px;}
._22{width:7.768032px;}
._14{width:9.273024px;}
._30{width:10.386888px;}
._19{width:11.897424px;}
._18{width:13.052160px;}
._b{width:14.760000px;}
._32{width:15.802512px;}
._d{width:16.862016px;}
._10{width:17.889792px;}
._2c{width:19.248480px;}
._1{width:20.632464px;}
._1a{width:21.714624px;}
._4{width:22.865952px;}
._9{width:24.057264px;}
._24{width:25.919760px;}
._26{width:27.978816px;}
._a{width:29.158992px;}
._25{width:31.033872px;}
._3b{width:32.373072px;}
._4d{width:33.398448px;}
._35{width:34.548240px;}
._34{width:35.733072px;}
._2e{width:38.477952px;}
._2d{width:39.775680px;}
._33{width:41.422680px;}
._44{width:44.638512px;}
._2f{width:45.874896px;}
._36{width:46.974480px;}
._2b{width:50.593320px;}
._3a{width:52.042440px;}
._3d{width:54.366000px;}
._37{width:59.112000px;}
._46{width:66.763344px;}
._45{width:67.799640px;}
._3c{width:71.621280px;}
._2a{width:78.009504px;}
._47{width:81.814896px;}
._48{width:82.854528px;}
._4a{width:85.161840px;}
._49{width:86.519520px;}
._4c{width:93.862464px;}
._4b{width:95.038512px;}
._29{width:110.953872px;}
._27{width:112.116432px;}
._28{width:113.320272px;}
._39{width:121.784640px;}
._41{width:149.797440px;}
._3f{width:180.518448px;}
._3e{width:181.591056px;}
._43{width:196.623792px;}
._42{width:198.304608px;}
._61{width:246.728613px;}
._62{width:255.321830px;}
._5c{width:263.172405px;}
._5d{width:270.637937px;}
._5e{width:280.061324px;}
._5f{width:282.002812px;}
._64{width:290.395827px;}
._60{width:299.347095px;}
._63{width:309.268135px;}
._66{width:420.521626px;}
._65{width:428.096352px;}
._5a{width:501.246529px;}
._58{width:511.408299px;}
._5b{width:517.501641px;}
._59{width:536.527512px;}
._67{width:5320.947648px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(214,0,147);}
.fc0{color:rgb(255,0,102);}
.fs19{font-size:69.193129px;}
.fs8{font-size:70.734539px;}
.fs10{font-size:75.890422px;}
.fsd{font-size:77.025857px;}
.fs13{font-size:79.340722px;}
.fs16{font-size:80.859783px;}
.fs1a{font-size:91.289454px;}
.fse{font-size:96.109784px;}
.fsb{font-size:96.480000px;}
.fs18{font-size:99.832153px;}
.fs17{font-size:99.997991px;}
.fs14{font-size:107.685170px;}
.fs4{font-size:108.000000px;}
.fsf{font-size:109.495037px;}
.fs11{font-size:109.696847px;}
.fsc{font-size:111.133248px;}
.fs12{font-size:114.473145px;}
.fs15{font-size:116.963229px;}
.fs1b{font-size:119.520000px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs7{font-size:168.480000px;}
.fs5{font-size:191.520000px;}
.fs6{font-size:191.664000px;}
.fs2{font-size:263.520000px;}
.fs1{font-size:360.000000px;}
.fs3{font-size:365.760000px;}
.fs0{font-size:479.664000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.829878px;}
.y76{bottom:4.263424px;}
.y87{bottom:4.270586px;}
.y9b{bottom:4.391553px;}
.yad{bottom:4.475634px;}
.y42{bottom:7.434908px;}
.yc9{bottom:13.468404px;}
.ybd{bottom:13.481171px;}
.y74{bottom:14.993041px;}
.y69{bottom:15.007252px;}
.y99{bottom:15.443628px;}
.y8c{bottom:15.458266px;}
.y7b{bottom:16.858315px;}
.y85{bottom:16.872317px;}
.ya0{bottom:17.977129px;}
.ybc{bottom:49.992674px;}
.y68{bottom:55.651893px;}
.yab{bottom:56.169204px;}
.y7a{bottom:56.903814px;}
.y8b{bottom:57.324404px;}
.y9f{bottom:60.629919px;}
.yc7{bottom:86.427580px;}
.y72{bottom:96.265268px;}
.y83{bottom:96.946513px;}
.y97{bottom:99.158336px;}
.yc{bottom:107.820000px;}
.ybf{bottom:122.939084px;}
.y6b{bottom:136.909909px;}
.y7d{bottom:136.992013px;}
.y8d{bottom:141.024474px;}
.ya9{bottom:141.504621px;}
.yb{bottom:156.420000px;}
.y8e{bottom:178.499058px;}
.yc0{bottom:178.663809px;}
.ya2{bottom:184.172329px;}
.y6c{bottom:194.679302px;}
.ya{bottom:205.020000px;}
.y7e{bottom:212.882435px;}
.y8f{bottom:215.973643px;}
.yc1{bottom:232.473595px;}
.ya3{bottom:240.341533px;}
.y6d{bottom:252.448695px;}
.y9{bottom:253.620000px;}
.y90{bottom:255.644004px;}
.yc2{bottom:288.185553px;}
.y7f{bottom:290.875945px;}
.y91{bottom:293.121516px;}
.ya4{bottom:294.272920px;}
.y8{bottom:302.220000px;}
.y6e{bottom:308.075007px;}
.y92{bottom:330.596101px;}
.yc3{bottom:342.008105px;}
.ya5{bottom:350.442123px;}
.y7{bottom:350.820000px;}
.y6f{bottom:365.858611px;}
.y80{bottom:366.766367px;}
.y93{bottom:368.070685px;}
.yc4{bottom:397.668999px;}
.ya6{bottom:406.596408px;}
.y94{bottom:407.741046px;}
.y70{bottom:423.613793px;}
.y81{bottom:444.757077px;}
.y95{bottom:445.215631px;}
.yc5{bottom:451.466019px;}
.ya7{bottom:460.542714px;}
.yba{bottom:467.310000px;}
.y66{bottom:469.545000px;}
.y71{bottom:481.397397px;}
.y96{bottom:482.690216px;}
.y65{bottom:491.115000px;}
.yc6{bottom:507.203510px;}
.ya8{bottom:516.696999px;}
.y82{bottom:520.647499px;}
.yb9{bottom:524.910000px;}
.y64{bottom:555.945000px;}
.y63{bottom:577.620000px;}
.yb8{bottom:582.510000px;}
.yb7{bottom:640.110000px;}
.y62{bottom:642.495000px;}
.y61{bottom:664.125000px;}
.yb6{bottom:726.510000px;}
.y60{bottom:729.000000px;}
.y5f{bottom:750.600000px;}
.yb5{bottom:812.910000px;}
.y5d{bottom:815.475000px;}
.y5e{bottom:815.505000px;}
.y5c{bottom:858.675000px;}
.yb4{bottom:870.555000px;}
.y5a{bottom:901.980000px;}
.y5b{bottom:902.010000px;}
.y59{bottom:945.180000px;}
.yb3{bottom:956.955000px;}
.y58{bottom:988.455000px;}
.y57{bottom:988.485000px;}
.yb2{bottom:1014.555000px;}
.y56{bottom:1031.685000px;}
.yb1{bottom:1072.155000px;}
.y55{bottom:1074.960000px;}
.y54{bottom:1074.990000px;}
.y53{bottom:1118.190000px;}
.yb0{bottom:1158.555000px;}
.y52{bottom:1161.465000px;}
.y51{bottom:1183.065000px;}
.y50{bottom:1247.865000px;}
.y4f{bottom:1291.065000px;}
.ybe{bottom:1304.250000px;}
.yc8{bottom:1333.037916px;}
.y4e{bottom:1334.265000px;}
.ycd{bottom:1350.570000px;}
.yca{bottom:1480.998870px;}
.ybb{bottom:1719.204515px;}
.y4d{bottom:1744.380000px;}
.y4c{bottom:1787.580000px;}
.y4b{bottom:1830.780000px;}
.ycc{bottom:1845.690000px;}
.y4a{bottom:1873.980000px;}
.y49{bottom:1917.180000px;}
.y48{bottom:1960.380000px;}
.y47{bottom:2003.580000px;}
.y29{bottom:2041.665000px;}
.y46{bottom:2046.780000px;}
.y45{bottom:2089.980000px;}
.y28{bottom:2099.265000px;}
.y44{bottom:2133.180000px;}
.y27{bottom:2156.865000px;}
.y43{bottom:2176.410000px;}
.y26{bottom:2214.465000px;}
.y25{bottom:2272.065000px;}
.y24{bottom:2329.665000px;}
.ya1{bottom:2367.375000px;}
.y7c{bottom:2367.555000px;}
.y23{bottom:2387.265000px;}
.y84{bottom:2399.112534px;}
.y89{bottom:2400.150000px;}
.yaa{bottom:2403.329258px;}
.yae{bottom:2417.430000px;}
.y22{bottom:2473.710000px;}
.y21{bottom:2531.310000px;}
.y20{bottom:2588.910000px;}
.y86{bottom:2590.938877px;}
.yac{bottom:2603.240899px;}
.y9e{bottom:2645.908608px;}
.y1f{bottom:2646.510000px;}
.y1e{bottom:2704.110000px;}
.y1d{bottom:2761.710000px;}
.y79{bottom:2784.868308px;}
.y1c{bottom:2848.110000px;}
.y88{bottom:2902.140000px;}
.y1b{bottom:2905.710000px;}
.yaf{bottom:2908.725000px;}
.y1a{bottom:2963.310000px;}
.y19{bottom:3020.910000px;}
.y6a{bottom:3053.430000px;}
.y73{bottom:3076.932834px;}
.y18{bottom:3078.540000px;}
.y98{bottom:3093.082795px;}
.y9c{bottom:3105.000000px;}
.y78{bottom:3112.170000px;}
.y17{bottom:3164.940000px;}
.y9a{bottom:3209.898101px;}
.y75{bottom:3213.859797px;}
.y16{bottom:3222.540000px;}
.y15{bottom:3280.140000px;}
.y14{bottom:3337.740000px;}
.y13{bottom:3395.340000px;}
.y8a{bottom:3439.125451px;}
.y67{bottom:3451.321136px;}
.y12{bottom:3452.940000px;}
.y11{bottom:3510.540000px;}
.y10{bottom:3568.140000px;}
.y77{bottom:3580.920000px;}
.y9d{bottom:3591.180000px;}
.yf{bottom:3625.770000px;}
.ye{bottom:3683.370000px;}
.yd{bottom:3740.970000px;}
.yd0{bottom:3806.070000px;}
.yce{bottom:3846.990000px;}
.y40{bottom:3865.470000px;}
.y3f{bottom:3923.070000px;}
.y3e{bottom:3980.700000px;}
.y3d{bottom:4038.300000px;}
.y3c{bottom:4095.900000px;}
.y3b{bottom:4153.500000px;}
.y3a{bottom:4211.100000px;}
.y39{bottom:4268.700000px;}
.y38{bottom:4326.300000px;}
.y37{bottom:4383.900000px;}
.y36{bottom:4441.500000px;}
.y35{bottom:4499.100000px;}
.y34{bottom:4556.700000px;}
.ycf{bottom:4609.155000px;}
.y33{bottom:4643.130000px;}
.y32{bottom:4700.730000px;}
.y31{bottom:4758.330000px;}
.y30{bottom:4815.930000px;}
.y2f{bottom:4873.530000px;}
.y2e{bottom:4931.130000px;}
.y2d{bottom:4988.730000px;}
.y2c{bottom:5046.330000px;}
.y2b{bottom:5103.930000px;}
.y2a{bottom:5161.575000px;}
.y6{bottom:5236.410000px;}
.y5{bottom:5343.690000px;}
.y4{bottom:5423.970000px;}
.y3{bottom:5503.170000px;}
.y2{bottom:5589.570000px;}
.y1{bottom:5706.570000px;}
.y41{bottom:5930.055000px;}
.ha{height:23.624198px;}
.h36{height:44.235091px;}
.h21{height:48.516663px;}
.h1a{height:49.242545px;}
.h28{height:50.649243px;}
.hb{height:70.561847px;}
.h31{height:80.369479px;}
.h32{height:80.682763px;}
.h1e{height:88.002359px;}
.h23{height:88.164556px;}
.h1d{height:88.562162px;}
.h2f{height:89.811051px;}
.h16{height:89.887186px;}
.h24{height:92.588573px;}
.h2c{height:94.004626px;}
.h2b{height:94.361278px;}
.h38{height:95.212048px;}
.h1c{height:100.239501px;}
.h1f{height:103.335777px;}
.h33{height:104.121816px;}
.h2d{height:110.042605px;}
.h2a{height:112.312267px;}
.h7{height:112.640625px;}
.h17{height:115.908505px;}
.h34{height:118.329068px;}
.h25{height:119.391913px;}
.h39{height:124.655625px;}
.h18{height:131.724031px;}
.h26{height:135.448528px;}
.he{height:141.328125px;}
.hc{height:141.469453px;}
.hd{height:150.187500px;}
.h8{height:199.749375px;}
.h9{height:199.899562px;}
.h37{height:236.303473px;}
.h10{height:236.587500px;}
.h15{height:236.707500px;}
.h13{height:236.887500px;}
.h14{height:237.037687px;}
.h22{height:259.315611px;}
.h1b{height:263.195365px;}
.h4{height:265.578750px;}
.h29{height:271.105198px;}
.h5{height:274.843125px;}
.h30{height:276.295791px;}
.hf{height:314.128125px;}
.h12{height:323.107500px;}
.h11{height:323.287500px;}
.h3{height:362.812500px;}
.h6{height:381.476250px;}
.h2{height:483.411375px;}
.h20{height:583.852179px;}
.h27{height:584.047256px;}
.h35{height:584.056383px;}
.h19{height:584.060643px;}
.h2e{height:584.070197px;}
.h1{height:5953.500000px;}
.h0{height:5953.680000px;}
.w16{width:40.333128px;}
.w6{width:42.462826px;}
.we{width:47.577016px;}
.w12{width:76.656623px;}
.wa{width:84.306656px;}
.w2{width:140.626338px;}
.w13{width:219.293146px;}
.w3{width:238.246567px;}
.wf{width:239.599778px;}
.w15{width:249.073120px;}
.w7{width:263.581042px;}
.w11{width:264.535502px;}
.wb{width:267.009648px;}
.w5{width:269.648166px;}
.wd{width:285.599799px;}
.w9{width:299.435920px;}
.w10{width:1012.097013px;}
.w14{width:1012.098863px;}
.w8{width:1012.100703px;}
.w4{width:1012.102390px;}
.wc{width:1012.102893px;}
.w0{width:3827.160000px;}
.w1{width:3827.250000px;}
.x0{left:0.000000px;}
.x2c{left:3.687076px;}
.x62{left:28.075593px;}
.x36{left:29.558060px;}
.x41{left:31.632531px;}
.x4b{left:33.118009px;}
.x5a{left:49.146880px;}
.x4e{left:53.697901px;}
.x2d{left:55.429044px;}
.x39{left:59.042715px;}
.x45{left:62.104874px;}
.x5c{left:70.159798px;}
.x30{left:75.707963px;}
.x5e{left:77.164104px;}
.x32{left:83.082115px;}
.x5d{left:89.480009px;}
.x2f{left:96.048332px;}
.x31{left:103.422485px;}
.x47{left:105.550745px;}
.x5f{left:106.990774px;}
.x4f{left:109.245254px;}
.xa{left:110.835354px;}
.x33{left:114.483713px;}
.x52{left:116.898162px;}
.x48{left:118.013032px;}
.x3b{left:120.217644px;}
.x3d{left:128.634282px;}
.x50{left:130.354524px;}
.x51{left:138.007431px;}
.x3a{left:143.363398px;}
.x53{left:149.486793px;}
.x3c{left:151.850175px;}
.x3e{left:177.100088px;}
.x24{left:191.910000px;}
.x46{left:204.000000px;}
.x15{left:209.130000px;}
.x56{left:228.270000px;}
.x55{left:230.848950px;}
.x4c{left:234.900000px;}
.x4a{left:237.118009px;}
.x16{left:263.160000px;}
.x29{left:264.270000px;}
.x27{left:265.350000px;}
.x10{left:267.480000px;}
.x2a{left:273.270000px;}
.x23{left:289.110000px;}
.x7{left:299.955000px;}
.x17{left:306.720000px;}
.xf{left:360.360000px;}
.x44{left:406.839201px;}
.x26{left:434.595000px;}
.x28{left:460.875000px;}
.xc{left:489.600000px;}
.xb{left:524.880000px;}
.x25{left:527.475000px;}
.x18{left:538.950000px;}
.x57{left:581.910000px;}
.x12{left:586.830000px;}
.x19{left:592.590000px;}
.x1a{left:626.070000px;}
.x49{left:634.547893px;}
.x54{left:648.710453px;}
.x11{left:689.790000px;}
.x2{left:768.090000px;}
.x4{left:803.730000px;}
.x1c{left:869.010000px;}
.x1{left:881.490000px;}
.x4d{left:890.210703px;}
.x1d{left:922.290000px;}
.x13{left:926.610000px;}
.x66{left:946.515000px;}
.x3{left:957.135000px;}
.x1e{left:966.210000px;}
.x1b{left:1019.490000px;}
.xe{left:1128.210000px;}
.xd{left:1184.370000px;}
.x5{left:1194.735000px;}
.x20{left:1198.470000px;}
.x14{left:1246.350000px;}
.x21{left:1252.110000px;}
.x22{left:1295.670000px;}
.x9{left:1346.295000px;}
.x1f{left:1349.310000px;}
.x2e{left:1411.875000px;}
.x35{left:1434.058908px;}
.x40{left:1441.403371px;}
.x43{left:1448.310000px;}
.x2b{left:1591.005447px;}
.x38{left:1639.615193px;}
.x58{left:1728.825000px;}
.x37{left:1783.650000px;}
.x5b{left:1785.930000px;}
.x34{left:1821.877863px;}
.x61{left:1826.263128px;}
.x42{left:1842.270000px;}
.x3f{left:1844.153521px;}
.x6{left:1901.130000px;}
.x59{left:1920.996367px;}
.x60{left:2210.460984px;}
.x63{left:2239.200000px;}
.x8{left:2570.970000px;}
.x64{left:3254.010000px;}
.x65{left:3438.435000px;}
@media print{
.vc{vertical-align:-87.253333pt;}
.v8{vertical-align:-46.843231pt;}
.v6{vertical-align:-45.678639pt;}
.vb{vertical-align:-41.033597pt;}
.v4{vertical-align:-38.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:38.400000pt;}
.v9{vertical-align:40.048634pt;}
.va{vertical-align:41.033597pt;}
.v5{vertical-align:45.678639pt;}
.v7{vertical-align:46.843231pt;}
.v3{vertical-align:76.800000pt;}
.v1{vertical-align:153.600000pt;}
.ls46{letter-spacing:-19.520000pt;}
.ls4c{letter-spacing:-2.577003pt;}
.ls50{letter-spacing:-2.314948pt;}
.ls44{letter-spacing:-1.984000pt;}
.ls48{letter-spacing:-1.542005pt;}
.ls3e{letter-spacing:-1.408000pt;}
.ls38{letter-spacing:-1.312000pt;}
.ls43{letter-spacing:-1.248000pt;}
.ls3a{letter-spacing:-0.672000pt;}
.ls3c{letter-spacing:-0.608000pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.412800pt;}
.ls49{letter-spacing:-0.384000pt;}
.ls3d{letter-spacing:-0.370133pt;}
.ls4a{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.004608pt;}
.ls36{letter-spacing:-0.002304pt;}
.ls32{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.012731pt;}
.ls28{letter-spacing:0.031328pt;}
.ls2c{letter-spacing:0.032270pt;}
.ls1{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.066667pt;}
.ls4d{letter-spacing:0.088119pt;}
.ls34{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.228288pt;}
.ls29{letter-spacing:0.240343pt;}
.ls2d{letter-spacing:0.269289pt;}
.ls0{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.441067pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.608000pt;}
.ls3f{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.313280pt;}
.ls47{letter-spacing:1.344000pt;}
.lse{letter-spacing:2.593280pt;}
.ls2b{letter-spacing:3.137177pt;}
.ls2f{letter-spacing:3.660869pt;}
.ls40{letter-spacing:3.872000pt;}
.lsb{letter-spacing:3.873280pt;}
.lsc{letter-spacing:4.033280pt;}
.ls12{letter-spacing:5.153280pt;}
.lsa{letter-spacing:7.713280pt;}
.ls9{letter-spacing:7.733333pt;}
.ls14{letter-spacing:10.273280pt;}
.ls42{letter-spacing:10.293333pt;}
.ls2{letter-spacing:11.553280pt;}
.ls2a{letter-spacing:12.413047pt;}
.ls2e{letter-spacing:13.076542pt;}
.ls8{letter-spacing:14.113280pt;}
.ls39{letter-spacing:16.693333pt;}
.lsf{letter-spacing:17.953280pt;}
.ls30{letter-spacing:19.233280pt;}
.ls33{letter-spacing:19.520000pt;}
.ls15{letter-spacing:28.157696pt;}
.ls1a{letter-spacing:29.473280pt;}
.ls6{letter-spacing:34.593280pt;}
.ls10{letter-spacing:35.873280pt;}
.ls18{letter-spacing:39.713280pt;}
.ls11{letter-spacing:40.957696pt;}
.ls7{letter-spacing:40.993280pt;}
.ls5{letter-spacing:44.833280pt;}
.ls41{letter-spacing:52.533333pt;}
.ls19{letter-spacing:60.193280pt;}
.ls45{letter-spacing:60.213333pt;}
.ls4{letter-spacing:69.153280pt;}
.ls13{letter-spacing:108.833280pt;}
.ls16{letter-spacing:133.153280pt;}
.ls17{letter-spacing:134.433280pt;}
.ls20{letter-spacing:214.666667pt;}
.ls26{letter-spacing:286.314667pt;}
.ls1f{letter-spacing:286.346667pt;}
.ls23{letter-spacing:560.800000pt;}
.ls1e{letter-spacing:564.640000pt;}
.ls21{letter-spacing:568.480000pt;}
.ls22{letter-spacing:572.320000pt;}
.ls27{letter-spacing:574.880000pt;}
.ls24{letter-spacing:592.800000pt;}
.ls1b{letter-spacing:775.466667pt;}
.ls1c{letter-spacing:810.453333pt;}
.ws0{word-spacing:-426.368000pt;}
.ws1{word-spacing:-58.560000pt;}
.ws11{word-spacing:-48.670720pt;}
.wse{word-spacing:-47.966720pt;}
.ws7{word-spacing:-47.938304pt;}
.ws4{word-spacing:-47.934720pt;}
.ws5{word-spacing:-47.393387pt;}
.ws33{word-spacing:-47.362304pt;}
.ws3{word-spacing:-47.360000pt;}
.wsa{word-spacing:-47.357696pt;}
.ws6{word-spacing:-47.326720pt;}
.wsc{word-spacing:-46.956587pt;}
.ws32{word-spacing:-46.949504pt;}
.wsb{word-spacing:-46.718720pt;}
.ws9{word-spacing:-46.654720pt;}
.ws8{word-spacing:-46.014720pt;}
.wsd{word-spacing:-45.954304pt;}
.wsf{word-spacing:-45.342720pt;}
.ws21{word-spacing:-36.060651pt;}
.ws20{word-spacing:-35.619584pt;}
.ws1f{word-spacing:-35.584000pt;}
.ws1e{word-spacing:-35.456000pt;}
.ws1c{word-spacing:-35.200000pt;}
.ws22{word-spacing:-35.192917pt;}
.ws2c{word-spacing:-28.287586pt;}
.ws10{word-spacing:-27.806720pt;}
.ws23{word-spacing:-27.462260pt;}
.ws2{word-spacing:-27.072000pt;}
.ws2e{word-spacing:-26.610202pt;}
.ws34{word-spacing:-24.669634pt;}
.ws1d{word-spacing:-23.841280pt;}
.ws27{word-spacing:-23.749795pt;}
.ws2f{word-spacing:-23.496613pt;}
.ws39{word-spacing:-22.558638pt;}
.ws2b{word-spacing:-22.036878pt;}
.ws28{word-spacing:-21.996336pt;}
.ws31{word-spacing:-20.088485pt;}
.ws35{word-spacing:-17.098391pt;}
.ws13{word-spacing:-15.718786pt;}
.ws12{word-spacing:-14.176781pt;}
.ws1b{word-spacing:-0.062875pt;}
.ws3a{word-spacing:0.000000pt;}
.ws19{word-spacing:86.254377pt;}
.ws14{word-spacing:89.095435pt;}
.ws17{word-spacing:89.958165pt;}
.ws30{word-spacing:171.448467pt;}
.ws2d{word-spacing:173.396204pt;}
.ws18{word-spacing:323.831815pt;}
.ws37{word-spacing:326.158765pt;}
.ws15{word-spacing:326.672874pt;}
.ws1a{word-spacing:327.411648pt;}
.ws16{word-spacing:328.522288pt;}
.ws36{word-spacing:328.735394pt;}
.ws38{word-spacing:342.227912pt;}
.ws29{word-spacing:392.424486pt;}
.ws24{word-spacing:411.627192pt;}
.ws25{word-spacing:416.439366pt;}
.ws2a{word-spacing:422.521277pt;}
.ws26{word-spacing:434.024379pt;}
._52{margin-left:-256.937584pt;}
._51{margin-left:-255.702988pt;}
._55{margin-left:-252.866888pt;}
._50{margin-left:-207.593095pt;}
._53{margin-left:-205.862677pt;}
._4e{margin-left:-104.635725pt;}
._54{margin-left:-102.781352pt;}
._11{margin-left:-59.840000pt;}
._1b{margin-left:-52.309120pt;}
._3{margin-left:-49.032320pt;}
._4f{margin-left:-44.620231pt;}
._1d{margin-left:-43.633109pt;}
._e{margin-left:-37.688832pt;}
._17{margin-left:-34.605312pt;}
._6{margin-left:-33.683072pt;}
._8{margin-left:-31.588992pt;}
._f{margin-left:-26.014379pt;}
._16{margin-left:-18.286976pt;}
._2{margin-left:-17.054720pt;}
._56{margin-left:-15.872000pt;}
._38{margin-left:-14.548139pt;}
._12{margin-left:-13.344725pt;}
._21{margin-left:-12.367744pt;}
._c{margin-left:-11.434752pt;}
._23{margin-left:-10.432853pt;}
._15{margin-left:-9.512192pt;}
._5{margin-left:-7.770368pt;}
._57{margin-left:-6.108715pt;}
._20{margin-left:-5.024171pt;}
._1e{margin-left:-4.032043pt;}
._7{margin-left:-2.326144pt;}
._0{margin-left:-1.279104pt;}
._13{width:1.247189pt;}
._40{width:2.154667pt;}
._1c{width:3.045120pt;}
._31{width:4.072491pt;}
._1f{width:5.184000pt;}
._22{width:6.904917pt;}
._14{width:8.242688pt;}
._30{width:9.232789pt;}
._19{width:10.575488pt;}
._18{width:11.601920pt;}
._b{width:13.120000pt;}
._32{width:14.046677pt;}
._d{width:14.988459pt;}
._10{width:15.902037pt;}
._2c{width:17.109760pt;}
._1{width:18.339968pt;}
._1a{width:19.301888pt;}
._4{width:20.325291pt;}
._9{width:21.384235pt;}
._24{width:23.039787pt;}
._26{width:24.870059pt;}
._a{width:25.919104pt;}
._25{width:27.585664pt;}
._3b{width:28.776064pt;}
._4d{width:29.687509pt;}
._35{width:30.709547pt;}
._34{width:31.762731pt;}
._2e{width:34.202624pt;}
._2d{width:35.356160pt;}
._33{width:36.820160pt;}
._44{width:39.678677pt;}
._2f{width:40.777685pt;}
._36{width:41.755093pt;}
._2b{width:44.971840pt;}
._3a{width:46.259947pt;}
._3d{width:48.325333pt;}
._37{width:52.544000pt;}
._46{width:59.345195pt;}
._45{width:60.266347pt;}
._3c{width:63.663360pt;}
._2a{width:69.341781pt;}
._47{width:72.724352pt;}
._48{width:73.648469pt;}
._4a{width:75.699413pt;}
._49{width:76.906240pt;}
._4c{width:83.433301pt;}
._4b{width:84.478677pt;}
._29{width:98.625664pt;}
._27{width:99.659051pt;}
._28{width:100.729131pt;}
._39{width:108.253013pt;}
._41{width:133.153280pt;}
._3f{width:160.460843pt;}
._3e{width:161.414272pt;}
._43{width:174.776704pt;}
._42{width:176.270763pt;}
._61{width:219.314323pt;}
._62{width:226.952738pt;}
._5c{width:233.931027pt;}
._5d{width:240.567055pt;}
._5e{width:248.943399pt;}
._5f{width:250.669166pt;}
._64{width:258.129624pt;}
._60{width:266.086307pt;}
._63{width:274.905009pt;}
._66{width:373.797001pt;}
._65{width:380.530091pt;}
._5a{width:445.552470pt;}
._58{width:454.585155pt;}
._5b{width:460.001459pt;}
._59{width:476.913344pt;}
._67{width:4729.731243pt;}
.fs19{font-size:61.505004pt;}
.fs8{font-size:62.875146pt;}
.fs10{font-size:67.458153pt;}
.fsd{font-size:68.467429pt;}
.fs13{font-size:70.525086pt;}
.fs16{font-size:71.875363pt;}
.fs1a{font-size:81.146182pt;}
.fse{font-size:85.430919pt;}
.fsb{font-size:85.760000pt;}
.fs18{font-size:88.739692pt;}
.fs17{font-size:88.887103pt;}
.fs14{font-size:95.720151pt;}
.fs4{font-size:96.000000pt;}
.fsf{font-size:97.328921pt;}
.fs11{font-size:97.508308pt;}
.fsc{font-size:98.785109pt;}
.fs12{font-size:101.753907pt;}
.fs15{font-size:103.967315pt;}
.fs1b{font-size:106.240000pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs7{font-size:149.760000pt;}
.fs5{font-size:170.240000pt;}
.fs6{font-size:170.368000pt;}
.fs2{font-size:234.240000pt;}
.fs1{font-size:320.000000pt;}
.fs3{font-size:325.120000pt;}
.fs0{font-size:426.368000pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:3.404336pt;}
.y76{bottom:3.789710pt;}
.y87{bottom:3.796077pt;}
.y9b{bottom:3.903603pt;}
.yad{bottom:3.978341pt;}
.y42{bottom:6.608807pt;}
.yc9{bottom:11.971915pt;}
.ybd{bottom:11.983263pt;}
.y74{bottom:13.327147pt;}
.y69{bottom:13.339779pt;}
.y99{bottom:13.727669pt;}
.y8c{bottom:13.740681pt;}
.y7b{bottom:14.985169pt;}
.y85{bottom:14.997615pt;}
.ya0{bottom:15.979670pt;}
.ybc{bottom:44.437933pt;}
.y68{bottom:49.468349pt;}
.yab{bottom:49.928181pt;}
.y7a{bottom:50.581168pt;}
.y8b{bottom:50.955025pt;}
.y9f{bottom:53.893261pt;}
.yc7{bottom:76.824516pt;}
.y72{bottom:85.569127pt;}
.y83{bottom:86.174679pt;}
.y97{bottom:88.140743pt;}
.yc{bottom:95.840000pt;}
.ybf{bottom:109.279186pt;}
.y6b{bottom:121.697697pt;}
.y7d{bottom:121.770678pt;}
.y8d{bottom:125.355088pt;}
.ya9{bottom:125.781885pt;}
.yb{bottom:139.040000pt;}
.y8e{bottom:158.665830pt;}
.yc0{bottom:158.812274pt;}
.ya2{bottom:163.708737pt;}
.y6c{bottom:173.048268pt;}
.ya{bottom:182.240000pt;}
.y7e{bottom:189.228831pt;}
.y8f{bottom:191.976571pt;}
.yc1{bottom:206.643195pt;}
.ya3{bottom:213.636918pt;}
.y6d{bottom:224.398840pt;}
.y9{bottom:225.440000pt;}
.y90{bottom:227.239115pt;}
.yc2{bottom:256.164936pt;}
.y7f{bottom:258.556396pt;}
.y91{bottom:260.552459pt;}
.ya4{bottom:261.575929pt;}
.y8{bottom:268.640000pt;}
.y6e{bottom:273.844450pt;}
.y92{bottom:293.863201pt;}
.yc3{bottom:304.007205pt;}
.ya5{bottom:311.504110pt;}
.y7{bottom:311.840000pt;}
.y6f{bottom:325.207654pt;}
.y80{bottom:326.014548pt;}
.y93{bottom:327.173943pt;}
.yc4{bottom:353.483555pt;}
.ya6{bottom:361.419030pt;}
.y94{bottom:362.436486pt;}
.y70{bottom:376.545594pt;}
.y81{bottom:395.339624pt;}
.y95{bottom:395.747228pt;}
.yc5{bottom:401.303128pt;}
.ya7{bottom:409.371301pt;}
.yba{bottom:415.386667pt;}
.y66{bottom:417.373333pt;}
.y71{bottom:427.908797pt;}
.y96{bottom:429.057969pt;}
.y65{bottom:436.546667pt;}
.yc6{bottom:450.847564pt;}
.ya8{bottom:459.286221pt;}
.y82{bottom:462.797777pt;}
.yb9{bottom:466.586667pt;}
.y64{bottom:494.173333pt;}
.y63{bottom:513.440000pt;}
.yb8{bottom:517.786667pt;}
.yb7{bottom:568.986667pt;}
.y62{bottom:571.106667pt;}
.y61{bottom:590.333333pt;}
.yb6{bottom:645.786667pt;}
.y60{bottom:648.000000pt;}
.y5f{bottom:667.200000pt;}
.yb5{bottom:722.586667pt;}
.y5d{bottom:724.866667pt;}
.y5e{bottom:724.893333pt;}
.y5c{bottom:763.266667pt;}
.yb4{bottom:773.826667pt;}
.y5a{bottom:801.760000pt;}
.y5b{bottom:801.786667pt;}
.y59{bottom:840.160000pt;}
.yb3{bottom:850.626667pt;}
.y58{bottom:878.626667pt;}
.y57{bottom:878.653333pt;}
.yb2{bottom:901.826667pt;}
.y56{bottom:917.053333pt;}
.yb1{bottom:953.026667pt;}
.y55{bottom:955.520000pt;}
.y54{bottom:955.546667pt;}
.y53{bottom:993.946667pt;}
.yb0{bottom:1029.826667pt;}
.y52{bottom:1032.413333pt;}
.y51{bottom:1051.613333pt;}
.y50{bottom:1109.213333pt;}
.y4f{bottom:1147.613333pt;}
.ybe{bottom:1159.333333pt;}
.yc8{bottom:1184.922592pt;}
.y4e{bottom:1186.013333pt;}
.ycd{bottom:1200.506667pt;}
.yca{bottom:1316.443440pt;}
.ybb{bottom:1528.181791pt;}
.y4d{bottom:1550.560000pt;}
.y4c{bottom:1588.960000pt;}
.y4b{bottom:1627.360000pt;}
.ycc{bottom:1640.613333pt;}
.y4a{bottom:1665.760000pt;}
.y49{bottom:1704.160000pt;}
.y48{bottom:1742.560000pt;}
.y47{bottom:1780.960000pt;}
.y29{bottom:1814.813333pt;}
.y46{bottom:1819.360000pt;}
.y45{bottom:1857.760000pt;}
.y28{bottom:1866.013333pt;}
.y44{bottom:1896.160000pt;}
.y27{bottom:1917.213333pt;}
.y43{bottom:1934.586667pt;}
.y26{bottom:1968.413333pt;}
.y25{bottom:2019.613333pt;}
.y24{bottom:2070.813333pt;}
.ya1{bottom:2104.333333pt;}
.y7c{bottom:2104.493333pt;}
.y23{bottom:2122.013333pt;}
.y84{bottom:2132.544474pt;}
.y89{bottom:2133.466667pt;}
.yaa{bottom:2136.292674pt;}
.yae{bottom:2148.826667pt;}
.y22{bottom:2198.853333pt;}
.y21{bottom:2250.053333pt;}
.y20{bottom:2301.253333pt;}
.y86{bottom:2303.056779pt;}
.yac{bottom:2313.991910pt;}
.y9e{bottom:2351.918762pt;}
.y1f{bottom:2352.453333pt;}
.y1e{bottom:2403.653333pt;}
.y1d{bottom:2454.853333pt;}
.y79{bottom:2475.438496pt;}
.y1c{bottom:2531.653333pt;}
.y88{bottom:2579.680000pt;}
.y1b{bottom:2582.853333pt;}
.yaf{bottom:2585.533333pt;}
.y1a{bottom:2634.053333pt;}
.y19{bottom:2685.253333pt;}
.y6a{bottom:2714.160000pt;}
.y73{bottom:2735.051408pt;}
.y18{bottom:2736.480000pt;}
.y98{bottom:2749.406929pt;}
.y9c{bottom:2760.000000pt;}
.y78{bottom:2766.373333pt;}
.y17{bottom:2813.280000pt;}
.y9a{bottom:2853.242757pt;}
.y75{bottom:2856.764264pt;}
.y16{bottom:2864.480000pt;}
.y15{bottom:2915.680000pt;}
.y14{bottom:2966.880000pt;}
.y13{bottom:3018.080000pt;}
.y8a{bottom:3057.000401pt;}
.y67{bottom:3067.841009pt;}
.y12{bottom:3069.280000pt;}
.y11{bottom:3120.480000pt;}
.y10{bottom:3171.680000pt;}
.y77{bottom:3183.040000pt;}
.y9d{bottom:3192.160000pt;}
.yf{bottom:3222.906667pt;}
.ye{bottom:3274.106667pt;}
.yd{bottom:3325.306667pt;}
.yd0{bottom:3383.173333pt;}
.yce{bottom:3419.546667pt;}
.y40{bottom:3435.973333pt;}
.y3f{bottom:3487.173333pt;}
.y3e{bottom:3538.400000pt;}
.y3d{bottom:3589.600000pt;}
.y3c{bottom:3640.800000pt;}
.y3b{bottom:3692.000000pt;}
.y3a{bottom:3743.200000pt;}
.y39{bottom:3794.400000pt;}
.y38{bottom:3845.600000pt;}
.y37{bottom:3896.800000pt;}
.y36{bottom:3948.000000pt;}
.y35{bottom:3999.200000pt;}
.y34{bottom:4050.400000pt;}
.ycf{bottom:4097.026667pt;}
.y33{bottom:4127.226667pt;}
.y32{bottom:4178.426667pt;}
.y31{bottom:4229.626667pt;}
.y30{bottom:4280.826667pt;}
.y2f{bottom:4332.026667pt;}
.y2e{bottom:4383.226667pt;}
.y2d{bottom:4434.426667pt;}
.y2c{bottom:4485.626667pt;}
.y2b{bottom:4536.826667pt;}
.y2a{bottom:4588.066667pt;}
.y6{bottom:4654.586667pt;}
.y5{bottom:4749.946667pt;}
.y4{bottom:4821.306667pt;}
.y3{bottom:4891.706667pt;}
.y2{bottom:4968.506667pt;}
.y1{bottom:5072.506667pt;}
.y41{bottom:5271.160000pt;}
.ha{height:20.999287pt;}
.h36{height:39.320081pt;}
.h21{height:43.125922pt;}
.h1a{height:43.771151pt;}
.h28{height:45.021550pt;}
.hb{height:62.721642pt;}
.h31{height:71.439537pt;}
.h32{height:71.718012pt;}
.h1e{height:78.224319pt;}
.h23{height:78.368494pt;}
.h1d{height:78.721922pt;}
.h2f{height:79.832045pt;}
.h16{height:79.899721pt;}
.h24{height:82.300954pt;}
.h2c{height:83.559668pt;}
.h2b{height:83.876692pt;}
.h38{height:84.632932pt;}
.h1c{height:89.101779pt;}
.h1f{height:91.854024pt;}
.h33{height:92.552725pt;}
.h2d{height:97.815649pt;}
.h2a{height:99.833126pt;}
.h7{height:100.125000pt;}
.h17{height:103.029782pt;}
.h34{height:105.181393pt;}
.h25{height:106.126145pt;}
.h39{height:110.805000pt;}
.h18{height:117.088027pt;}
.h26{height:120.398692pt;}
.he{height:125.625000pt;}
.hc{height:125.750625pt;}
.hd{height:133.500000pt;}
.h8{height:177.555000pt;}
.h9{height:177.688500pt;}
.h37{height:210.047531pt;}
.h10{height:210.300000pt;}
.h15{height:210.406667pt;}
.h13{height:210.566667pt;}
.h14{height:210.700167pt;}
.h22{height:230.502765pt;}
.h1b{height:233.951436pt;}
.h4{height:236.070000pt;}
.h29{height:240.982398pt;}
.h5{height:244.305000pt;}
.h30{height:245.596258pt;}
.hf{height:279.225000pt;}
.h12{height:287.206667pt;}
.h11{height:287.366667pt;}
.h3{height:322.500000pt;}
.h6{height:339.090000pt;}
.h2{height:429.699000pt;}
.h20{height:518.979714pt;}
.h27{height:519.153116pt;}
.h35{height:519.161230pt;}
.h19{height:519.165016pt;}
.h2e{height:519.173508pt;}
.h1{height:5292.000000pt;}
.h0{height:5292.160000pt;}
.w16{width:35.851670pt;}
.w6{width:37.744735pt;}
.we{width:42.290681pt;}
.w12{width:68.139221pt;}
.wa{width:74.939250pt;}
.w2{width:125.001189pt;}
.w13{width:194.927241pt;}
.w3{width:211.774727pt;}
.wf{width:212.977581pt;}
.w15{width:221.398329pt;}
.w7{width:234.294260pt;}
.w11{width:235.142668pt;}
.wb{width:237.341909pt;}
.w5{width:239.687258pt;}
.wd{width:253.866488pt;}
.w9{width:266.165262pt;}
.w10{width:899.641790pt;}
.w14{width:899.643434pt;}
.w8{width:899.645070pt;}
.w4{width:899.646569pt;}
.wc{width:899.647016pt;}
.w0{width:3401.920000pt;}
.w1{width:3402.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:3.277401pt;}
.x62{left:24.956083pt;}
.x36{left:26.273831pt;}
.x41{left:28.117805pt;}
.x4b{left:29.438231pt;}
.x5a{left:43.686116pt;}
.x4e{left:47.731467pt;}
.x2d{left:49.270261pt;}
.x39{left:52.482413pt;}
.x45{left:55.204333pt;}
.x5c{left:62.364265pt;}
.x30{left:67.295967pt;}
.x5e{left:68.590315pt;}
.x32{left:73.850769pt;}
.x5d{left:79.537785pt;}
.x2f{left:85.376296pt;}
.x31{left:91.931097pt;}
.x47{left:93.822885pt;}
.x5f{left:95.102910pt;}
.x4f{left:97.106893pt;}
.xa{left:98.520314pt;}
.x33{left:101.763300pt;}
.x52{left:103.909477pt;}
.x48{left:104.900473pt;}
.x3b{left:106.860128pt;}
.x3d{left:114.341584pt;}
.x50{left:115.870688pt;}
.x51{left:122.673272pt;}
.x3a{left:127.434132pt;}
.x53{left:132.877149pt;}
.x3c{left:134.977933pt;}
.x3e{left:157.422301pt;}
.x24{left:170.586667pt;}
.x46{left:181.333333pt;}
.x15{left:185.893333pt;}
.x56{left:202.906667pt;}
.x55{left:205.199067pt;}
.x4c{left:208.800000pt;}
.x4a{left:210.771564pt;}
.x16{left:233.920000pt;}
.x29{left:234.906667pt;}
.x27{left:235.866667pt;}
.x10{left:237.760000pt;}
.x2a{left:242.906667pt;}
.x23{left:256.986667pt;}
.x7{left:266.626667pt;}
.x17{left:272.640000pt;}
.xf{left:320.320000pt;}
.x44{left:361.634846pt;}
.x26{left:386.306667pt;}
.x28{left:409.666667pt;}
.xc{left:435.200000pt;}
.xb{left:466.560000pt;}
.x25{left:468.866667pt;}
.x18{left:479.066667pt;}
.x57{left:517.253333pt;}
.x12{left:521.626667pt;}
.x19{left:526.746667pt;}
.x1a{left:556.506667pt;}
.x49{left:564.042572pt;}
.x54{left:576.631514pt;}
.x11{left:613.146667pt;}
.x2{left:682.746667pt;}
.x4{left:714.426667pt;}
.x1c{left:772.453333pt;}
.x1{left:783.546667pt;}
.x4d{left:791.298403pt;}
.x1d{left:819.813333pt;}
.x13{left:823.653333pt;}
.x66{left:841.346667pt;}
.x3{left:850.786667pt;}
.x1e{left:858.853333pt;}
.x1b{left:906.213333pt;}
.xe{left:1002.853333pt;}
.xd{left:1052.773333pt;}
.x5{left:1061.986667pt;}
.x20{left:1065.306667pt;}
.x14{left:1107.866667pt;}
.x21{left:1112.986667pt;}
.x22{left:1151.706667pt;}
.x9{left:1196.706667pt;}
.x1f{left:1199.386667pt;}
.x2e{left:1255.000000pt;}
.x35{left:1274.719029pt;}
.x40{left:1281.247441pt;}
.x43{left:1287.386667pt;}
.x2b{left:1414.227064pt;}
.x38{left:1457.435727pt;}
.x58{left:1536.733333pt;}
.x37{left:1585.466667pt;}
.x5b{left:1587.493333pt;}
.x34{left:1619.446989pt;}
.x61{left:1623.345003pt;}
.x42{left:1637.573333pt;}
.x3f{left:1639.247574pt;}
.x6{left:1689.893333pt;}
.x59{left:1707.552326pt;}
.x60{left:1964.854208pt;}
.x63{left:1990.400000pt;}
.x8{left:2285.306667pt;}
.x64{left:2892.453333pt;}
.x65{left:3056.386667pt;}
}




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