
    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_af1089cb0af13444bf44f1e6.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_735ec29bb98f38c6ff2b1e7b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_91911b5d0afe8f7e0420c5d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_e3d051c30f48cda99c89808e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94b205a4fbf1e8916b272766.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_43bd3143ad2a88bf1b2ca701.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032227;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_891a5112be7ccaf8d894e830.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-69.120000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.lsc{letter-spacing:-1.260000px;}
.ls2a{letter-spacing:-0.768000px;}
.ls26{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls29{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.337200px;}
.ls1b{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004320px;}
.ls1f{letter-spacing:0.010080px;}
.ls2{letter-spacing:0.033840px;}
.lsf{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.206640px;}
.ls9{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.269400px;}
.ls6{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.301200px;}
.ls21{letter-spacing:0.306720px;}
.lsa{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.532800px;}
.ls3{letter-spacing:2.340000px;}
.ls24{letter-spacing:3.060000px;}
.ls16{letter-spacing:5.220000px;}
.ls15{letter-spacing:5.400000px;}
.ls4{letter-spacing:6.660000px;}
.ls17{letter-spacing:6.840000px;}
.ls27{letter-spacing:8.726400px;}
.ls22{letter-spacing:10.260000px;}
.ls20{letter-spacing:12.420000px;}
.ls2b{letter-spacing:13.766400px;}
.ls5{letter-spacing:66.162720px;}
.lsd{letter-spacing:112.476000px;}
.ls18{letter-spacing:498.396000px;}
.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;}
}
.ws1a{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.146400px;}
.ws18{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.796000px;}
.ws11{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws1c{word-spacing:-12.996000px;}
.ws13{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.700000px;}
.ws1b{word-spacing:-11.609400px;}
.ws10{word-spacing:-9.724320px;}
.ws4{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.488400px;}
.ws7{word-spacing:-9.324000px;}
.wsb{word-spacing:-9.187200px;}
.ws17{word-spacing:-7.570080px;}
.ws5{word-spacing:-7.560000px;}
.ws16{word-spacing:-7.316400px;}
.wsa{word-spacing:0.000000px;}
.wsc{word-spacing:17.736480px;}
.wse{word-spacing:88.593360px;}
._1c{margin-left:-3.806640px;}
._1d{margin-left:-2.787360px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._a{width:4.482000px;}
._b{width:5.769360px;}
._4{width:6.840000px;}
._8{width:8.370000px;}
._c{width:9.442320px;}
._9{width:11.397360px;}
._7{width:12.415680px;}
._16{width:13.505760px;}
._6{width:14.850000px;}
._11{width:16.470000px;}
._19{width:17.547120px;}
._10{width:19.494000px;}
._f{width:20.520000px;}
._15{width:21.991680px;}
._12{width:24.201120px;}
._d{width:25.380000px;}
._e{width:26.409360px;}
._28{width:27.576000px;}
._18{width:28.851840px;}
._17{width:30.756000px;}
._2d{width:32.442000px;}
._1f{width:33.506640px;}
._22{width:34.988160px;}
._20{width:36.793440px;}
._25{width:46.566000px;}
._1e{width:50.119920px;}
._29{width:54.428160px;}
._27{width:55.892400px;}
._26{width:57.507600px;}
._21{width:59.108160px;}
._23{width:61.819680px;}
._24{width:62.820000px;}
._2a{width:65.317920px;}
._2b{width:66.540000px;}
._2c{width:68.976000px;}
._5{width:155.700000px;}
._1a{width:509.086560px;}
._13{width:735.660000px;}
._1b{width:865.686720px;}
._14{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:2.514000px;}
.yb4{bottom:2.520000px;}
.y36{bottom:2.880000px;}
.y13{bottom:3.240000px;}
.y11f{bottom:3.600000px;}
.y11d{bottom:3.780000px;}
.y186{bottom:4.680000px;}
.y3f{bottom:9.000000px;}
.y45{bottom:12.240000px;}
.yd2{bottom:16.380000px;}
.y35{bottom:18.360000px;}
.y129{bottom:20.340000px;}
.y18{bottom:20.520000px;}
.ye2{bottom:20.550000px;}
.y126{bottom:20.880000px;}
.y124{bottom:21.060000px;}
.y44{bottom:29.520000px;}
.yb6{bottom:30.240000px;}
.y34{bottom:33.840000px;}
.yda{bottom:37.620000px;}
.ye1{bottom:37.650000px;}
.y17{bottom:37.800000px;}
.yc4{bottom:43.950000px;}
.y43{bottom:46.800000px;}
.y18f{bottom:48.810000px;}
.y33{bottom:49.500000px;}
.y16{bottom:54.900000px;}
.ye0{bottom:54.930000px;}
.y184{bottom:59.760000px;}
.y1a0{bottom:59.790000px;}
.y42{bottom:63.900000px;}
.y18e{bottom:64.290000px;}
.y32{bottom:64.980000px;}
.y3e{bottom:65.925000px;}
.ycb{bottom:71.460000px;}
.yd9{bottom:72.180000px;}
.ydf{bottom:72.210000px;}
.y183{bottom:75.240000px;}
.y19f{bottom:75.270000px;}
.y1a9{bottom:75.420000px;}
.y18d{bottom:79.950000px;}
.y31{bottom:80.460000px;}
.y15{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.yd8{bottom:89.460000px;}
.y41{bottom:90.180000px;}
.y195{bottom:90.720000px;}
.y1a5{bottom:90.900000px;}
.y19e{bottom:90.930000px;}
.y182{bottom:90.945000px;}
.y18c{bottom:95.430000px;}
.y30{bottom:95.940000px;}
.y194{bottom:106.380000px;}
.y19d{bottom:106.410000px;}
.y181{bottom:106.425000px;}
.y18b{bottom:110.910000px;}
.y2f{bottom:111.600000px;}
.yba{bottom:113.040000px;}
.yc3{bottom:121.140000px;}
.y193{bottom:121.860000px;}
.y19c{bottom:121.890000px;}
.y180{bottom:121.905000px;}
.y187{bottom:122.760000px;}
.y4b{bottom:125.820000px;}
.y18a{bottom:126.390000px;}
.y2e{bottom:127.080000px;}
.y11a{bottom:128.880000px;}
.yde{bottom:131.220000px;}
.yc8{bottom:134.856000px;}
.y87{bottom:135.396000px;}
.y192{bottom:137.340000px;}
.y19b{bottom:137.370000px;}
.y17f{bottom:137.385000px;}
.y1a4{bottom:137.520000px;}
.y189{bottom:142.050000px;}
.y2d{bottom:142.560000px;}
.y4a{bottom:143.136000px;}
.y119{bottom:146.196000px;}
.yc6{bottom:148.716000px;}
.y153{bottom:149.436000px;}
.y86{bottom:152.670000px;}
.y191{bottom:152.820000px;}
.y19a{bottom:152.850000px;}
.y17e{bottom:152.865000px;}
.y1a3{bottom:153.000000px;}
.y1a8{bottom:153.045000px;}
.y188{bottom:157.530000px;}
.y2c{bottom:158.040000px;}
.y49{bottom:160.410000px;}
.yc5{bottom:162.570000px;}
.y152{bottom:163.110000px;}
.y118{bottom:163.470000px;}
.y85{bottom:166.710000px;}
.y2b{bottom:173.700000px;}
.y84{bottom:174.270000px;}
.yb9{bottom:176.250000px;}
.y151{bottom:176.970000px;}
.y48{bottom:177.690000px;}
.y117{bottom:180.750000px;}
.y2a{bottom:189.180000px;}
.yc2{bottom:190.110000px;}
.y150{bottom:190.830000px;}
.y47{bottom:194.970000px;}
.y83{bottom:197.130000px;}
.y116{bottom:197.850000px;}
.yc1{bottom:203.970000px;}
.y14f{bottom:204.510000px;}
.y29{bottom:204.660000px;}
.y46{bottom:212.250000px;}
.y82{bottom:214.410000px;}
.y115{bottom:215.130000px;}
.ydd{bottom:217.470000px;}
.yc0{bottom:217.650000px;}
.y14e{bottom:218.370000px;}
.y28{bottom:220.170000px;}
.y1aa{bottom:227.190000px;}
.y40{bottom:228.450000px;}
.ybf{bottom:231.510000px;}
.y81{bottom:231.690000px;}
.y14d{bottom:232.230000px;}
.y114{bottom:232.410000px;}
.y27{bottom:235.650000px;}
.y1a7{bottom:241.050000px;}
.ybe{bottom:245.370000px;}
.y14c{bottom:245.910000px;}
.y80{bottom:248.970000px;}
.y113{bottom:249.690000px;}
.y26{bottom:251.310000px;}
.ybd{bottom:259.050000px;}
.y14b{bottom:259.770000px;}
.y7f{bottom:266.250000px;}
.y25{bottom:266.790000px;}
.y112{bottom:266.970000px;}
.ybc{bottom:272.910000px;}
.y14a{bottom:273.630000px;}
.y3d{bottom:275.985000px;}
.y24{bottom:282.270000px;}
.y7e{bottom:283.350000px;}
.y111{bottom:284.250000px;}
.ybb{bottom:286.770000px;}
.y149{bottom:287.310000px;}
.y3c{bottom:293.265000px;}
.y185{bottom:293.790000px;}
.y23{bottom:297.750000px;}
.yb5{bottom:300.450000px;}
.y7d{bottom:300.630000px;}
.y148{bottom:301.170000px;}
.y110{bottom:301.350000px;}
.y3b{bottom:310.575000px;}
.y17d{bottom:311.070000px;}
.y22{bottom:313.410000px;}
.yb8{bottom:314.310000px;}
.y147{bottom:315.030000px;}
.y7c{bottom:317.910000px;}
.y10f{bottom:318.630000px;}
.y3a{bottom:327.855000px;}
.yb7{bottom:328.170000px;}
.y146{bottom:328.710000px;}
.y21{bottom:328.890000px;}
.y7b{bottom:335.190000px;}
.y10e{bottom:335.910000px;}
.y19{bottom:342.390000px;}
.yb3{bottom:342.570000px;}
.y20{bottom:344.370000px;}
.y39{bottom:344.955000px;}
.y7a{bottom:352.470000px;}
.y10d{bottom:353.190000px;}
.y145{bottom:356.430000px;}
.y1f{bottom:359.850000px;}
.y38{bottom:362.235000px;}
.y79{bottom:369.750000px;}
.y144{bottom:370.110000px;}
.y10c{bottom:370.470000px;}
.y1e{bottom:375.510000px;}
.yb2{bottom:377.670000px;}
.y143{bottom:383.970000px;}
.y78{bottom:386.850000px;}
.y10b{bottom:387.795000px;}
.y37{bottom:388.515000px;}
.y1d{bottom:390.990000px;}
.yb1{bottom:394.995000px;}
.y142{bottom:397.875000px;}
.y77{bottom:404.175000px;}
.y10a{bottom:404.895000px;}
.y1c{bottom:406.470000px;}
.y1a6{bottom:407.595000px;}
.y141{bottom:411.555000px;}
.yb0{bottom:412.275000px;}
.y76{bottom:421.455000px;}
.y109{bottom:422.175000px;}
.ydc{bottom:424.335000px;}
.y1a2{bottom:424.875000px;}
.y140{bottom:425.415000px;}
.yaf{bottom:429.555000px;}
.y1b{bottom:430.815000px;}
.y75{bottom:438.735000px;}
.y13f{bottom:439.275000px;}
.y108{bottom:439.455000px;}
.ydb{bottom:441.615000px;}
.yae{bottom:446.655000px;}
.y13e{bottom:452.955000px;}
.yd7{bottom:455.655000px;}
.y74{bottom:456.015000px;}
.y107{bottom:456.735000px;}
.yad{bottom:463.935000px;}
.y13d{bottom:466.815000px;}
.y73{bottom:473.115000px;}
.y106{bottom:474.015000px;}
.y17c{bottom:480.135000px;}
.yac{bottom:481.215000px;}
.y72{bottom:490.395000px;}
.y105{bottom:491.115000px;}
.y1a{bottom:493.455000px;}
.y17b{bottom:494.715000px;}
.y13c{bottom:497.775000px;}
.yab{bottom:498.495000px;}
.y71{bottom:507.675000px;}
.y104{bottom:508.395000px;}
.y17a{bottom:511.095000px;}
.y13b{bottom:511.635000px;}
.yaa{bottom:515.775000px;}
.y70{bottom:524.955000px;}
.y103{bottom:525.675000px;}
.y13a{bottom:526.215000px;}
.ya9{bottom:532.875000px;}
.y179{bottom:538.815000px;}
.y6f{bottom:542.235000px;}
.y102{bottom:542.955000px;}
.y139{bottom:543.315000px;}
.ya8{bottom:550.155000px;}
.y178{bottom:552.495000px;}
.yd6{bottom:559.155000px;}
.y6e{bottom:559.515000px;}
.y101{bottom:560.235000px;}
.y138{bottom:560.595000px;}
.y177{bottom:566.355000px;}
.ya7{bottom:567.435000px;}
.y6d{bottom:576.615000px;}
.y137{bottom:577.155000px;}
.y100{bottom:577.515000px;}
.y176{bottom:580.215000px;}
.ya6{bottom:584.715000px;}
.y136{bottom:591.015000px;}
.y1a1{bottom:591.375000px;}
.y6c{bottom:593.895000px;}
.yff{bottom:594.615000px;}
.ya5{bottom:601.995000px;}
.y135{bottom:605.415000px;}
.y175{bottom:607.755000px;}
.y199{bottom:608.655000px;}
.y6b{bottom:611.175000px;}
.yfe{bottom:611.895000px;}
.ya4{bottom:619.275000px;}
.y174{bottom:621.615000px;}
.y134{bottom:622.695000px;}
.y6a{bottom:628.455000px;}
.yfd{bottom:629.175000px;}
.y173{bottom:635.295000px;}
.ya3{bottom:636.375000px;}
.y133{bottom:640.005000px;}
.y69{bottom:645.765000px;}
.yfc{bottom:646.485000px;}
.y172{bottom:649.185000px;}
.ya2{bottom:653.685000px;}
.y132{bottom:657.285000px;}
.y68{bottom:663.045000px;}
.yfb{bottom:663.765000px;}
.ya1{bottom:670.965000px;}
.y131{bottom:674.565000px;}
.y171{bottom:676.725000px;}
.y67{bottom:680.145000px;}
.yfa{bottom:681.045000px;}
.ya0{bottom:688.245000px;}
.y170{bottom:690.585000px;}
.y130{bottom:691.845000px;}
.y66{bottom:697.425000px;}
.yf9{bottom:698.145000px;}
.y16f{bottom:704.445000px;}
.y9f{bottom:705.525000px;}
.y12f{bottom:708.225000px;}
.y65{bottom:714.705000px;}
.yf8{bottom:715.425000px;}
.y16e{bottom:718.125000px;}
.y12e{bottom:722.085000px;}
.y9e{bottom:722.805000px;}
.y64{bottom:731.985000px;}
.yf7{bottom:732.705000px;}
.y12d{bottom:736.665000px;}
.y9d{bottom:739.905000px;}
.yd5{bottom:743.505000px;}
.y16d{bottom:745.845000px;}
.y63{bottom:749.265000px;}
.yf6{bottom:749.985000px;}
.y12c{bottom:753.945000px;}
.y14{bottom:754.665000px;}
.y9c{bottom:757.185000px;}
.y16c{bottom:759.525000px;}
.yd4{bottom:760.785000px;}
.y62{bottom:766.545000px;}
.yf5{bottom:767.265000px;}
.y12b{bottom:770.325000px;}
.y16b{bottom:773.385000px;}
.y9b{bottom:774.465000px;}
.y198{bottom:775.185000px;}
.yd1{bottom:775.545000px;}
.y61{bottom:783.645000px;}
.y12a{bottom:784.185000px;}
.yf4{bottom:784.545000px;}
.y16a{bottom:787.245000px;}
.yd3{bottom:789.405000px;}
.y9a{bottom:791.745000px;}
.y197{bottom:792.465000px;}
.y128{bottom:795.525000px;}
.y60{bottom:800.925000px;}
.yf3{bottom:801.645000px;}
.yca{bottom:803.085000px;}
.y99{bottom:809.025000px;}
.y169{bottom:814.785000px;}
.yd0{bottom:816.945000px;}
.y5f{bottom:818.205000px;}
.yf2{bottom:818.925000px;}
.y98{bottom:826.305000px;}
.y168{bottom:828.645000px;}
.ycf{bottom:830.625000px;}
.y5e{bottom:835.485000px;}
.yf1{bottom:836.205000px;}
.y167{bottom:842.325000px;}
.y97{bottom:843.405000px;}
.yce{bottom:844.485000px;}
.y5d{bottom:852.765000px;}
.yf0{bottom:853.485000px;}
.y166{bottom:856.185000px;}
.ycd{bottom:858.345000px;}
.y12{bottom:859.605000px;}
.y96{bottom:860.685000px;}
.y5c{bottom:869.865000px;}
.y165{bottom:870.045000px;}
.yef{bottom:870.765000px;}
.ycc{bottom:872.025000px;}
.y95{bottom:877.965000px;}
.y164{bottom:883.725000px;}
.y127{bottom:884.985000px;}
.yc9{bottom:886.605000px;}
.y5b{bottom:887.145000px;}
.yee{bottom:887.865000px;}
.y11{bottom:891.465000px;}
.y94{bottom:895.290000px;}
.y163{bottom:897.630000px;}
.y125{bottom:899.790000px;}
.y5a{bottom:904.470000px;}
.yed{bottom:905.190000px;}
.y10{bottom:908.610000px;}
.y162{bottom:911.490000px;}
.y93{bottom:912.570000px;}
.y59{bottom:921.750000px;}
.yec{bottom:922.470000px;}
.y161{bottom:925.170000px;}
.yf{bottom:929.670000px;}
.y123{bottom:934.170000px;}
.y58{bottom:939.030000px;}
.yeb{bottom:939.750000px;}
.ye{bottom:943.530000px;}
.y92{bottom:946.950000px;}
.y160{bottom:952.890000px;}
.y57{bottom:956.310000px;}
.yea{bottom:957.030000px;}
.yd{bottom:957.390000px;}
.y196{bottom:959.010000px;}
.y91{bottom:964.230000px;}
.y15f{bottom:966.570000px;}
.yc{bottom:967.290000px;}
.y122{bottom:968.730000px;}
.y56{bottom:973.410000px;}
.ye9{bottom:974.310000px;}
.y190{bottom:976.290000px;}
.y15e{bottom:980.430000px;}
.y90{bottom:981.510000px;}
.yb{bottom:984.570000px;}
.y121{bottom:986.010000px;}
.y55{bottom:990.690000px;}
.ye8{bottom:991.410000px;}
.y15d{bottom:994.290000px;}
.y8f{bottom:998.790000px;}
.ya{bottom:1001.130000px;}
.y120{bottom:1003.290000px;}
.y54{bottom:1007.970000px;}
.ye7{bottom:1008.690000px;}
.y9{bottom:1014.990000px;}
.y8e{bottom:1016.070000px;}
.y11e{bottom:1020.570000px;}
.y15c{bottom:1021.830000px;}
.y53{bottom:1025.250000px;}
.ye6{bottom:1025.970000px;}
.y8{bottom:1031.550000px;}
.y8d{bottom:1033.170000px;}
.y15b{bottom:1035.690000px;}
.y11c{bottom:1037.670000px;}
.y52{bottom:1042.530000px;}
.ye5{bottom:1043.250000px;}
.y15a{bottom:1049.370000px;}
.y8c{bottom:1050.450000px;}
.y11b{bottom:1055.670000px;}
.y7{bottom:1059.090000px;}
.y51{bottom:1059.810000px;}
.ye4{bottom:1060.530000px;}
.y159{bottom:1063.230000px;}
.y8b{bottom:1064.490000px;}
.y8a{bottom:1072.050000px;}
.y50{bottom:1076.910000px;}
.y158{bottom:1077.090000px;}
.ye3{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y157{bottom:1090.770000px;}
.y4f{bottom:1094.190000px;}
.y89{bottom:1094.910000px;}
.y156{bottom:1104.630000px;}
.y4e{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y155{bottom:1118.490000px;}
.y4d{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y154{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y88{bottom:1160.640000px;}
.y4c{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h1c{height:13.680000px;}
.h21{height:13.716000px;}
.h19{height:13.860000px;}
.h1d{height:13.860150px;}
.h22{height:13.896000px;}
.h14{height:17.100000px;}
.h17{height:17.280000px;}
.h8{height:26.280000px;}
.h26{height:27.540000px;}
.h7{height:29.678906px;}
.h2c{height:34.380000px;}
.h2b{height:34.560000px;}
.h32{height:39.049805px;}
.h1b{height:41.400000px;}
.h25{height:47.321367px;}
.h1a{height:47.344922px;}
.h20{height:47.678906px;}
.h23{height:47.858906px;}
.h6{height:48.616875px;}
.h11{height:52.971680px;}
.hd{height:52.998047px;}
.he{height:53.332031px;}
.h2f{height:54.421875px;}
.h1f{height:55.116000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h18{height:59.038594px;}
.h2{height:60.226875px;}
.h13{height:62.211094px;}
.h15{height:70.474219px;}
.h9{height:70.664062px;}
.h24{height:82.800000px;}
.h2d{height:86.220000px;}
.h2a{height:86.256000px;}
.h10{height:87.516000px;}
.h16{height:88.891172px;}
.h5{height:96.508125px;}
.h28{height:103.500000px;}
.ha{height:104.220000px;}
.h12{height:113.220000px;}
.h1e{height:124.200000px;}
.h31{height:166.500000px;}
.h2e{height:166.530000px;}
.h30{height:171.030000px;}
.h27{height:181.110000px;}
.h29{height:203.610000px;}
.hf{height:411.555000px;}
.hc{height:428.070000px;}
.hb{height:516.495000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w1d{width:35.100000px;}
.w18{width:35.280000px;}
.w1c{width:35.316000px;}
.w19{width:35.640000px;}
.w1e{width:36.036000px;}
.w1a{width:36.180000px;}
.w1f{width:36.360000px;}
.w20{width:36.540000px;}
.w1b{width:36.720000px;}
.w13{width:43.236000px;}
.w14{width:52.200000px;}
.we{width:62.316000px;}
.w10{width:89.100000px;}
.wc{width:89.856000px;}
.w9{width:97.236000px;}
.wf{width:108.216000px;}
.wb{width:114.660000px;}
.w11{width:121.536000px;}
.wd{width:123.300000px;}
.w24{width:144.540000px;}
.w12{width:145.800000px;}
.w17{width:158.070000px;}
.wa{width:185.610000px;}
.w23{width:198.570000px;}
.w3{width:209.190000px;}
.w21{width:214.770000px;}
.w22{width:244.290000px;}
.w16{width:337.575000px;}
.w15{width:337.710000px;}
.w5{width:432.975000px;}
.w25{width:530.745000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x36{left:9.180000px;}
.xd{left:10.620000px;}
.x18{left:12.960000px;}
.x28{left:15.345000px;}
.x2e{left:16.920000px;}
.x31{left:19.290000px;}
.x25{left:22.500000px;}
.x1e{left:31.320000px;}
.x23{left:33.300000px;}
.x20{left:34.380000px;}
.x32{left:35.490000px;}
.x37{left:41.574000px;}
.x1f{left:48.240000px;}
.x1d{left:51.300000px;}
.x21{left:54.360000px;}
.x2f{left:60.294000px;}
.x1a{left:72.000000px;}
.x33{left:74.910000px;}
.xf{left:106.380000px;}
.x30{left:113.574000px;}
.x2a{left:119.556000px;}
.xa{left:125.496000px;}
.x1{left:127.655987px;}
.x38{left:134.634000px;}
.x49{left:136.254000px;}
.x13{left:154.649987px;}
.x2{left:158.429987px;}
.x47{left:159.509987px;}
.x3{left:164.009987px;}
.x2d{left:168.879000px;}
.x6{left:176.789987px;}
.x11{left:181.649987px;}
.x9{left:189.029987px;}
.x14{left:201.269987px;}
.x17{left:213.510000px;}
.x7{left:215.309987px;}
.x8{left:217.829987px;}
.x16{left:239.969987px;}
.x48{left:264.090000px;}
.x34{left:266.619000px;}
.x35{left:267.915000px;}
.x2c{left:273.675000px;}
.x12{left:275.249987px;}
.x24{left:285.375000px;}
.x4{left:307.874987px;}
.x19{left:310.755000px;}
.x2b{left:314.139000px;}
.x39{left:321.375000px;}
.xc{left:334.695000px;}
.x45{left:343.155000px;}
.xe{left:355.935000px;}
.x3a{left:357.015000px;}
.x26{left:374.475000px;}
.x3b{left:393.195000px;}
.x10{left:424.875000px;}
.x3c{left:429.915000px;}
.x22{left:434.055000px;}
.x5{left:457.274987px;}
.x3d{left:466.095000px;}
.x1b{left:496.365000px;}
.x3e{left:501.405000px;}
.x3f{left:536.685000px;}
.x40{left:571.965000px;}
.x46{left:587.445000px;}
.x41{left:607.065000px;}
.x1c{left:611.025000px;}
.x27{left:641.805000px;}
.x42{left:678.390000px;}
.x29{left:685.050000px;}
.x43{left:714.750000px;}
.x44{left:749.850000px;}
.x15{left:756.870000px;}
@media print{
.v6{vertical-align:-61.440000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls2a{letter-spacing:-0.682667pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls29{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.299733pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003840pt;}
.ls1f{letter-spacing:0.008960pt;}
.ls2{letter-spacing:0.030080pt;}
.lsf{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.183680pt;}
.ls9{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.239467pt;}
.ls6{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.267733pt;}
.ls21{letter-spacing:0.272640pt;}
.lsa{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.473600pt;}
.ls3{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.720000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls15{letter-spacing:4.800000pt;}
.ls4{letter-spacing:5.920000pt;}
.ls17{letter-spacing:6.080000pt;}
.ls27{letter-spacing:7.756800pt;}
.ls22{letter-spacing:9.120000pt;}
.ls20{letter-spacing:11.040000pt;}
.ls2b{letter-spacing:12.236800pt;}
.ls5{letter-spacing:58.811307pt;}
.lsd{letter-spacing:99.978667pt;}
.ls18{letter-spacing:443.018667pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.152000pt;}
.ws11{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-11.552000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.400000pt;}
.ws1b{word-spacing:-10.319467pt;}
.ws10{word-spacing:-8.643840pt;}
.ws4{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.434133pt;}
.ws7{word-spacing:-8.288000pt;}
.wsb{word-spacing:-8.166400pt;}
.ws17{word-spacing:-6.728960pt;}
.ws5{word-spacing:-6.720000pt;}
.ws16{word-spacing:-6.503467pt;}
.wsa{word-spacing:0.000000pt;}
.wsc{word-spacing:15.765760pt;}
.wse{word-spacing:78.749653pt;}
._1c{margin-left:-3.383680pt;}
._1d{margin-left:-2.477653pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._a{width:3.984000pt;}
._b{width:5.128320pt;}
._4{width:6.080000pt;}
._8{width:7.440000pt;}
._c{width:8.393173pt;}
._9{width:10.130987pt;}
._7{width:11.036160pt;}
._16{width:12.005120pt;}
._6{width:13.200000pt;}
._11{width:14.640000pt;}
._19{width:15.597440pt;}
._10{width:17.328000pt;}
._f{width:18.240000pt;}
._15{width:19.548160pt;}
._12{width:21.512107pt;}
._d{width:22.560000pt;}
._e{width:23.474987pt;}
._28{width:24.512000pt;}
._18{width:25.646080pt;}
._17{width:27.338667pt;}
._2d{width:28.837333pt;}
._1f{width:29.783680pt;}
._22{width:31.100587pt;}
._20{width:32.705280pt;}
._25{width:41.392000pt;}
._1e{width:44.551040pt;}
._29{width:48.380587pt;}
._27{width:49.682133pt;}
._26{width:51.117867pt;}
._21{width:52.540587pt;}
._23{width:54.950827pt;}
._24{width:55.840000pt;}
._2a{width:58.060373pt;}
._2b{width:59.146667pt;}
._2c{width:61.312000pt;}
._5{width:138.400000pt;}
._1a{width:452.521387pt;}
._13{width:653.920000pt;}
._1b{width:769.499307pt;}
._14{width:953.866667pt;}
._3{width:979.477333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:2.234667pt;}
.yb4{bottom:2.240000pt;}
.y36{bottom:2.560000pt;}
.y13{bottom:2.880000pt;}
.y11f{bottom:3.200000pt;}
.y11d{bottom:3.360000pt;}
.y186{bottom:4.160000pt;}
.y3f{bottom:8.000000pt;}
.y45{bottom:10.880000pt;}
.yd2{bottom:14.560000pt;}
.y35{bottom:16.320000pt;}
.y129{bottom:18.080000pt;}
.y18{bottom:18.240000pt;}
.ye2{bottom:18.266667pt;}
.y126{bottom:18.560000pt;}
.y124{bottom:18.720000pt;}
.y44{bottom:26.240000pt;}
.yb6{bottom:26.880000pt;}
.y34{bottom:30.080000pt;}
.yda{bottom:33.440000pt;}
.ye1{bottom:33.466667pt;}
.y17{bottom:33.600000pt;}
.yc4{bottom:39.066667pt;}
.y43{bottom:41.600000pt;}
.y18f{bottom:43.386667pt;}
.y33{bottom:44.000000pt;}
.y16{bottom:48.800000pt;}
.ye0{bottom:48.826667pt;}
.y184{bottom:53.120000pt;}
.y1a0{bottom:53.146667pt;}
.y42{bottom:56.800000pt;}
.y18e{bottom:57.146667pt;}
.y32{bottom:57.760000pt;}
.y3e{bottom:58.600000pt;}
.ycb{bottom:63.520000pt;}
.yd9{bottom:64.160000pt;}
.ydf{bottom:64.186667pt;}
.y183{bottom:66.880000pt;}
.y19f{bottom:66.906667pt;}
.y1a9{bottom:67.040000pt;}
.y18d{bottom:71.066667pt;}
.y31{bottom:71.520000pt;}
.y15{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.yd8{bottom:79.520000pt;}
.y41{bottom:80.160000pt;}
.y195{bottom:80.640000pt;}
.y1a5{bottom:80.800000pt;}
.y19e{bottom:80.826667pt;}
.y182{bottom:80.840000pt;}
.y18c{bottom:84.826667pt;}
.y30{bottom:85.280000pt;}
.y194{bottom:94.560000pt;}
.y19d{bottom:94.586667pt;}
.y181{bottom:94.600000pt;}
.y18b{bottom:98.586667pt;}
.y2f{bottom:99.200000pt;}
.yba{bottom:100.480000pt;}
.yc3{bottom:107.680000pt;}
.y193{bottom:108.320000pt;}
.y19c{bottom:108.346667pt;}
.y180{bottom:108.360000pt;}
.y187{bottom:109.120000pt;}
.y4b{bottom:111.840000pt;}
.y18a{bottom:112.346667pt;}
.y2e{bottom:112.960000pt;}
.y11a{bottom:114.560000pt;}
.yde{bottom:116.640000pt;}
.yc8{bottom:119.872000pt;}
.y87{bottom:120.352000pt;}
.y192{bottom:122.080000pt;}
.y19b{bottom:122.106667pt;}
.y17f{bottom:122.120000pt;}
.y1a4{bottom:122.240000pt;}
.y189{bottom:126.266667pt;}
.y2d{bottom:126.720000pt;}
.y4a{bottom:127.232000pt;}
.y119{bottom:129.952000pt;}
.yc6{bottom:132.192000pt;}
.y153{bottom:132.832000pt;}
.y86{bottom:135.706667pt;}
.y191{bottom:135.840000pt;}
.y19a{bottom:135.866667pt;}
.y17e{bottom:135.880000pt;}
.y1a3{bottom:136.000000pt;}
.y1a8{bottom:136.040000pt;}
.y188{bottom:140.026667pt;}
.y2c{bottom:140.480000pt;}
.y49{bottom:142.586667pt;}
.yc5{bottom:144.506667pt;}
.y152{bottom:144.986667pt;}
.y118{bottom:145.306667pt;}
.y85{bottom:148.186667pt;}
.y2b{bottom:154.400000pt;}
.y84{bottom:154.906667pt;}
.yb9{bottom:156.666667pt;}
.y151{bottom:157.306667pt;}
.y48{bottom:157.946667pt;}
.y117{bottom:160.666667pt;}
.y2a{bottom:168.160000pt;}
.yc2{bottom:168.986667pt;}
.y150{bottom:169.626667pt;}
.y47{bottom:173.306667pt;}
.y83{bottom:175.226667pt;}
.y116{bottom:175.866667pt;}
.yc1{bottom:181.306667pt;}
.y14f{bottom:181.786667pt;}
.y29{bottom:181.920000pt;}
.y46{bottom:188.666667pt;}
.y82{bottom:190.586667pt;}
.y115{bottom:191.226667pt;}
.ydd{bottom:193.306667pt;}
.yc0{bottom:193.466667pt;}
.y14e{bottom:194.106667pt;}
.y28{bottom:195.706667pt;}
.y1aa{bottom:201.946667pt;}
.y40{bottom:203.066667pt;}
.ybf{bottom:205.786667pt;}
.y81{bottom:205.946667pt;}
.y14d{bottom:206.426667pt;}
.y114{bottom:206.586667pt;}
.y27{bottom:209.466667pt;}
.y1a7{bottom:214.266667pt;}
.ybe{bottom:218.106667pt;}
.y14c{bottom:218.586667pt;}
.y80{bottom:221.306667pt;}
.y113{bottom:221.946667pt;}
.y26{bottom:223.386667pt;}
.ybd{bottom:230.266667pt;}
.y14b{bottom:230.906667pt;}
.y7f{bottom:236.666667pt;}
.y25{bottom:237.146667pt;}
.y112{bottom:237.306667pt;}
.ybc{bottom:242.586667pt;}
.y14a{bottom:243.226667pt;}
.y3d{bottom:245.320000pt;}
.y24{bottom:250.906667pt;}
.y7e{bottom:251.866667pt;}
.y111{bottom:252.666667pt;}
.ybb{bottom:254.906667pt;}
.y149{bottom:255.386667pt;}
.y3c{bottom:260.680000pt;}
.y185{bottom:261.146667pt;}
.y23{bottom:264.666667pt;}
.yb5{bottom:267.066667pt;}
.y7d{bottom:267.226667pt;}
.y148{bottom:267.706667pt;}
.y110{bottom:267.866667pt;}
.y3b{bottom:276.066667pt;}
.y17d{bottom:276.506667pt;}
.y22{bottom:278.586667pt;}
.yb8{bottom:279.386667pt;}
.y147{bottom:280.026667pt;}
.y7c{bottom:282.586667pt;}
.y10f{bottom:283.226667pt;}
.y3a{bottom:291.426667pt;}
.yb7{bottom:291.706667pt;}
.y146{bottom:292.186667pt;}
.y21{bottom:292.346667pt;}
.y7b{bottom:297.946667pt;}
.y10e{bottom:298.586667pt;}
.y19{bottom:304.346667pt;}
.yb3{bottom:304.506667pt;}
.y20{bottom:306.106667pt;}
.y39{bottom:306.626667pt;}
.y7a{bottom:313.306667pt;}
.y10d{bottom:313.946667pt;}
.y145{bottom:316.826667pt;}
.y1f{bottom:319.866667pt;}
.y38{bottom:321.986667pt;}
.y79{bottom:328.666667pt;}
.y144{bottom:328.986667pt;}
.y10c{bottom:329.306667pt;}
.y1e{bottom:333.786667pt;}
.yb2{bottom:335.706667pt;}
.y143{bottom:341.306667pt;}
.y78{bottom:343.866667pt;}
.y10b{bottom:344.706667pt;}
.y37{bottom:345.346667pt;}
.y1d{bottom:347.546667pt;}
.yb1{bottom:351.106667pt;}
.y142{bottom:353.666667pt;}
.y77{bottom:359.266667pt;}
.y10a{bottom:359.906667pt;}
.y1c{bottom:361.306667pt;}
.y1a6{bottom:362.306667pt;}
.y141{bottom:365.826667pt;}
.yb0{bottom:366.466667pt;}
.y76{bottom:374.626667pt;}
.y109{bottom:375.266667pt;}
.ydc{bottom:377.186667pt;}
.y1a2{bottom:377.666667pt;}
.y140{bottom:378.146667pt;}
.yaf{bottom:381.826667pt;}
.y1b{bottom:382.946667pt;}
.y75{bottom:389.986667pt;}
.y13f{bottom:390.466667pt;}
.y108{bottom:390.626667pt;}
.ydb{bottom:392.546667pt;}
.yae{bottom:397.026667pt;}
.y13e{bottom:402.626667pt;}
.yd7{bottom:405.026667pt;}
.y74{bottom:405.346667pt;}
.y107{bottom:405.986667pt;}
.yad{bottom:412.386667pt;}
.y13d{bottom:414.946667pt;}
.y73{bottom:420.546667pt;}
.y106{bottom:421.346667pt;}
.y17c{bottom:426.786667pt;}
.yac{bottom:427.746667pt;}
.y72{bottom:435.906667pt;}
.y105{bottom:436.546667pt;}
.y1a{bottom:438.626667pt;}
.y17b{bottom:439.746667pt;}
.y13c{bottom:442.466667pt;}
.yab{bottom:443.106667pt;}
.y71{bottom:451.266667pt;}
.y104{bottom:451.906667pt;}
.y17a{bottom:454.306667pt;}
.y13b{bottom:454.786667pt;}
.yaa{bottom:458.466667pt;}
.y70{bottom:466.626667pt;}
.y103{bottom:467.266667pt;}
.y13a{bottom:467.746667pt;}
.ya9{bottom:473.666667pt;}
.y179{bottom:478.946667pt;}
.y6f{bottom:481.986667pt;}
.y102{bottom:482.626667pt;}
.y139{bottom:482.946667pt;}
.ya8{bottom:489.026667pt;}
.y178{bottom:491.106667pt;}
.yd6{bottom:497.026667pt;}
.y6e{bottom:497.346667pt;}
.y101{bottom:497.986667pt;}
.y138{bottom:498.306667pt;}
.y177{bottom:503.426667pt;}
.ya7{bottom:504.386667pt;}
.y6d{bottom:512.546667pt;}
.y137{bottom:513.026667pt;}
.y100{bottom:513.346667pt;}
.y176{bottom:515.746667pt;}
.ya6{bottom:519.746667pt;}
.y136{bottom:525.346667pt;}
.y1a1{bottom:525.666667pt;}
.y6c{bottom:527.906667pt;}
.yff{bottom:528.546667pt;}
.ya5{bottom:535.106667pt;}
.y135{bottom:538.146667pt;}
.y175{bottom:540.226667pt;}
.y199{bottom:541.026667pt;}
.y6b{bottom:543.266667pt;}
.yfe{bottom:543.906667pt;}
.ya4{bottom:550.466667pt;}
.y174{bottom:552.546667pt;}
.y134{bottom:553.506667pt;}
.y6a{bottom:558.626667pt;}
.yfd{bottom:559.266667pt;}
.y173{bottom:564.706667pt;}
.ya3{bottom:565.666667pt;}
.y133{bottom:568.893333pt;}
.y69{bottom:574.013333pt;}
.yfc{bottom:574.653333pt;}
.y172{bottom:577.053333pt;}
.ya2{bottom:581.053333pt;}
.y132{bottom:584.253333pt;}
.y68{bottom:589.373333pt;}
.yfb{bottom:590.013333pt;}
.ya1{bottom:596.413333pt;}
.y131{bottom:599.613333pt;}
.y171{bottom:601.533333pt;}
.y67{bottom:604.573333pt;}
.yfa{bottom:605.373333pt;}
.ya0{bottom:611.773333pt;}
.y170{bottom:613.853333pt;}
.y130{bottom:614.973333pt;}
.y66{bottom:619.933333pt;}
.yf9{bottom:620.573333pt;}
.y16f{bottom:626.173333pt;}
.y9f{bottom:627.133333pt;}
.y12f{bottom:629.533333pt;}
.y65{bottom:635.293333pt;}
.yf8{bottom:635.933333pt;}
.y16e{bottom:638.333333pt;}
.y12e{bottom:641.853333pt;}
.y9e{bottom:642.493333pt;}
.y64{bottom:650.653333pt;}
.yf7{bottom:651.293333pt;}
.y12d{bottom:654.813333pt;}
.y9d{bottom:657.693333pt;}
.yd5{bottom:660.893333pt;}
.y16d{bottom:662.973333pt;}
.y63{bottom:666.013333pt;}
.yf6{bottom:666.653333pt;}
.y12c{bottom:670.173333pt;}
.y14{bottom:670.813333pt;}
.y9c{bottom:673.053333pt;}
.y16c{bottom:675.133333pt;}
.yd4{bottom:676.253333pt;}
.y62{bottom:681.373333pt;}
.yf5{bottom:682.013333pt;}
.y12b{bottom:684.733333pt;}
.y16b{bottom:687.453333pt;}
.y9b{bottom:688.413333pt;}
.y198{bottom:689.053333pt;}
.yd1{bottom:689.373333pt;}
.y61{bottom:696.573333pt;}
.y12a{bottom:697.053333pt;}
.yf4{bottom:697.373333pt;}
.y16a{bottom:699.773333pt;}
.yd3{bottom:701.693333pt;}
.y9a{bottom:703.773333pt;}
.y197{bottom:704.413333pt;}
.y128{bottom:707.133333pt;}
.y60{bottom:711.933333pt;}
.yf3{bottom:712.573333pt;}
.yca{bottom:713.853333pt;}
.y99{bottom:719.133333pt;}
.y169{bottom:724.253333pt;}
.yd0{bottom:726.173333pt;}
.y5f{bottom:727.293333pt;}
.yf2{bottom:727.933333pt;}
.y98{bottom:734.493333pt;}
.y168{bottom:736.573333pt;}
.ycf{bottom:738.333333pt;}
.y5e{bottom:742.653333pt;}
.yf1{bottom:743.293333pt;}
.y167{bottom:748.733333pt;}
.y97{bottom:749.693333pt;}
.yce{bottom:750.653333pt;}
.y5d{bottom:758.013333pt;}
.yf0{bottom:758.653333pt;}
.y166{bottom:761.053333pt;}
.ycd{bottom:762.973333pt;}
.y12{bottom:764.093333pt;}
.y96{bottom:765.053333pt;}
.y5c{bottom:773.213333pt;}
.y165{bottom:773.373333pt;}
.yef{bottom:774.013333pt;}
.ycc{bottom:775.133333pt;}
.y95{bottom:780.413333pt;}
.y164{bottom:785.533333pt;}
.y127{bottom:786.653333pt;}
.yc9{bottom:788.093333pt;}
.y5b{bottom:788.573333pt;}
.yee{bottom:789.213333pt;}
.y11{bottom:792.413333pt;}
.y94{bottom:795.813333pt;}
.y163{bottom:797.893333pt;}
.y125{bottom:799.813333pt;}
.y5a{bottom:803.973333pt;}
.yed{bottom:804.613333pt;}
.y10{bottom:807.653333pt;}
.y162{bottom:810.213333pt;}
.y93{bottom:811.173333pt;}
.y59{bottom:819.333333pt;}
.yec{bottom:819.973333pt;}
.y161{bottom:822.373333pt;}
.yf{bottom:826.373333pt;}
.y123{bottom:830.373333pt;}
.y58{bottom:834.693333pt;}
.yeb{bottom:835.333333pt;}
.ye{bottom:838.693333pt;}
.y92{bottom:841.733333pt;}
.y160{bottom:847.013333pt;}
.y57{bottom:850.053333pt;}
.yea{bottom:850.693333pt;}
.yd{bottom:851.013333pt;}
.y196{bottom:852.453333pt;}
.y91{bottom:857.093333pt;}
.y15f{bottom:859.173333pt;}
.yc{bottom:859.813333pt;}
.y122{bottom:861.093333pt;}
.y56{bottom:865.253333pt;}
.ye9{bottom:866.053333pt;}
.y190{bottom:867.813333pt;}
.y15e{bottom:871.493333pt;}
.y90{bottom:872.453333pt;}
.yb{bottom:875.173333pt;}
.y121{bottom:876.453333pt;}
.y55{bottom:880.613333pt;}
.ye8{bottom:881.253333pt;}
.y15d{bottom:883.813333pt;}
.y8f{bottom:887.813333pt;}
.ya{bottom:889.893333pt;}
.y120{bottom:891.813333pt;}
.y54{bottom:895.973333pt;}
.ye7{bottom:896.613333pt;}
.y9{bottom:902.213333pt;}
.y8e{bottom:903.173333pt;}
.y11e{bottom:907.173333pt;}
.y15c{bottom:908.293333pt;}
.y53{bottom:911.333333pt;}
.ye6{bottom:911.973333pt;}
.y8{bottom:916.933333pt;}
.y8d{bottom:918.373333pt;}
.y15b{bottom:920.613333pt;}
.y11c{bottom:922.373333pt;}
.y52{bottom:926.693333pt;}
.ye5{bottom:927.333333pt;}
.y15a{bottom:932.773333pt;}
.y8c{bottom:933.733333pt;}
.y11b{bottom:938.373333pt;}
.y7{bottom:941.413333pt;}
.y51{bottom:942.053333pt;}
.ye4{bottom:942.693333pt;}
.y159{bottom:945.093333pt;}
.y8b{bottom:946.213333pt;}
.y8a{bottom:952.933333pt;}
.y50{bottom:957.253333pt;}
.y158{bottom:957.413333pt;}
.ye3{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y157{bottom:969.573333pt;}
.y4f{bottom:972.613333pt;}
.y89{bottom:973.253333pt;}
.y156{bottom:981.893333pt;}
.y4e{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y155{bottom:994.213333pt;}
.y4d{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y154{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y88{bottom:1031.680000pt;}
.y4c{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h1c{height:12.160000pt;}
.h21{height:12.192000pt;}
.h19{height:12.320000pt;}
.h1d{height:12.320133pt;}
.h22{height:12.352000pt;}
.h14{height:15.200000pt;}
.h17{height:15.360000pt;}
.h8{height:23.360000pt;}
.h26{height:24.480000pt;}
.h7{height:26.381250pt;}
.h2c{height:30.560000pt;}
.h2b{height:30.720000pt;}
.h32{height:34.710938pt;}
.h1b{height:36.800000pt;}
.h25{height:42.063437pt;}
.h1a{height:42.084375pt;}
.h20{height:42.381250pt;}
.h23{height:42.541250pt;}
.h6{height:43.215000pt;}
.h11{height:47.085938pt;}
.hd{height:47.109375pt;}
.he{height:47.406250pt;}
.h2f{height:48.375000pt;}
.h1f{height:48.992000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h18{height:52.478750pt;}
.h2{height:53.535000pt;}
.h13{height:55.298750pt;}
.h15{height:62.643750pt;}
.h9{height:62.812500pt;}
.h24{height:73.600000pt;}
.h2d{height:76.640000pt;}
.h2a{height:76.672000pt;}
.h10{height:77.792000pt;}
.h16{height:79.014375pt;}
.h5{height:85.785000pt;}
.h28{height:92.000000pt;}
.ha{height:92.640000pt;}
.h12{height:100.640000pt;}
.h1e{height:110.400000pt;}
.h31{height:148.000000pt;}
.h2e{height:148.026667pt;}
.h30{height:152.026667pt;}
.h27{height:160.986667pt;}
.h29{height:180.986667pt;}
.hf{height:365.826667pt;}
.hc{height:380.506667pt;}
.hb{height:459.106667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w1d{width:31.200000pt;}
.w18{width:31.360000pt;}
.w1c{width:31.392000pt;}
.w19{width:31.680000pt;}
.w1e{width:32.032000pt;}
.w1a{width:32.160000pt;}
.w1f{width:32.320000pt;}
.w20{width:32.480000pt;}
.w1b{width:32.640000pt;}
.w13{width:38.432000pt;}
.w14{width:46.400000pt;}
.we{width:55.392000pt;}
.w10{width:79.200000pt;}
.wc{width:79.872000pt;}
.w9{width:86.432000pt;}
.wf{width:96.192000pt;}
.wb{width:101.920000pt;}
.w11{width:108.032000pt;}
.wd{width:109.600000pt;}
.w24{width:128.480000pt;}
.w12{width:129.600000pt;}
.w17{width:140.506667pt;}
.wa{width:164.986667pt;}
.w23{width:176.506667pt;}
.w3{width:185.946667pt;}
.w21{width:190.906667pt;}
.w22{width:217.146667pt;}
.w16{width:300.066667pt;}
.w15{width:300.186667pt;}
.w5{width:384.866667pt;}
.w25{width:471.773333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x36{left:8.160000pt;}
.xd{left:9.440000pt;}
.x18{left:11.520000pt;}
.x28{left:13.640000pt;}
.x2e{left:15.040000pt;}
.x31{left:17.146667pt;}
.x25{left:20.000000pt;}
.x1e{left:27.840000pt;}
.x23{left:29.600000pt;}
.x20{left:30.560000pt;}
.x32{left:31.546667pt;}
.x37{left:36.954667pt;}
.x1f{left:42.880000pt;}
.x1d{left:45.600000pt;}
.x21{left:48.320000pt;}
.x2f{left:53.594667pt;}
.x1a{left:64.000000pt;}
.x33{left:66.586667pt;}
.xf{left:94.560000pt;}
.x30{left:100.954667pt;}
.x2a{left:106.272000pt;}
.xa{left:111.552000pt;}
.x1{left:113.471988pt;}
.x38{left:119.674667pt;}
.x49{left:121.114667pt;}
.x13{left:137.466655pt;}
.x2{left:140.826655pt;}
.x47{left:141.786655pt;}
.x3{left:145.786655pt;}
.x2d{left:150.114667pt;}
.x6{left:157.146655pt;}
.x11{left:161.466655pt;}
.x9{left:168.026655pt;}
.x14{left:178.906655pt;}
.x17{left:189.786667pt;}
.x7{left:191.386655pt;}
.x8{left:193.626655pt;}
.x16{left:213.306655pt;}
.x48{left:234.746667pt;}
.x34{left:236.994667pt;}
.x35{left:238.146667pt;}
.x2c{left:243.266667pt;}
.x12{left:244.666655pt;}
.x24{left:253.666667pt;}
.x4{left:273.666655pt;}
.x19{left:276.226667pt;}
.x2b{left:279.234667pt;}
.x39{left:285.666667pt;}
.xc{left:297.506667pt;}
.x45{left:305.026667pt;}
.xe{left:316.386667pt;}
.x3a{left:317.346667pt;}
.x26{left:332.866667pt;}
.x3b{left:349.506667pt;}
.x10{left:377.666667pt;}
.x3c{left:382.146667pt;}
.x22{left:385.826667pt;}
.x5{left:406.466655pt;}
.x3d{left:414.306667pt;}
.x1b{left:441.213333pt;}
.x3e{left:445.693333pt;}
.x3f{left:477.053333pt;}
.x40{left:508.413333pt;}
.x46{left:522.173333pt;}
.x41{left:539.613333pt;}
.x1c{left:543.133333pt;}
.x27{left:570.493333pt;}
.x42{left:603.013333pt;}
.x29{left:608.933333pt;}
.x43{left:635.333333pt;}
.x44{left:666.533333pt;}
.x15{left:672.773333pt;}
}




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