
    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_5d4d007dae340961400e4f4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae34343e73799d570d3c0c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_40acc033fa893e3f4ba6bd01.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_b86eb60608ff65db749076b8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6b6319a9ebdc296e8648ef40.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_e439cd2d2ab67b826938b40a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a8683edcc7615d24311e1ca4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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;}
.m1{transform:matrix(0.000000,-0.274623,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.274623,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.274623,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.423005,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.423005,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.423005,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.274623,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.274623,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.274623,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.147752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147752,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227585,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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsb{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.823394px;}
.ls20{letter-spacing:-0.734824px;}
.ls15{letter-spacing:-0.623401px;}
.ls9{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.556344px;}
.lsa{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.300000px;}
.ls28{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.060989px;}
.ls1f{letter-spacing:-0.054428px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.016511px;}
.ls8{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.026014px;}
.lsf{letter-spacing:0.028497px;}
.ls18{letter-spacing:0.030765px;}
.ls12{letter-spacing:0.053100px;}
.ls7{letter-spacing:0.078000px;}
.ls1e{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.130339px;}
.ls1c{letter-spacing:0.135091px;}
.ls10{letter-spacing:0.224962px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.325983px;}
.ls4{letter-spacing:0.384000px;}
.ls22{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.562638px;}
.ls0{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.695561px;}
.ls16{letter-spacing:0.709815px;}
.ls29{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.200518px;}
.lsc{letter-spacing:1.216920px;}
.lse{letter-spacing:1.225121px;}
.ls26{letter-spacing:15.720000px;}
.ls25{letter-spacing:45.720000px;}
.ls24{letter-spacing:90.120000px;}
.ls23{letter-spacing:91.320000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws23{word-spacing:-16.200000px;}
.ws0{word-spacing:-15.204000px;}
.ws20{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.000000px;}
.ws22{word-spacing:-14.880000px;}
.ws21{word-spacing:-14.580000px;}
.ws4{word-spacing:-12.900000px;}
.ws9{word-spacing:-10.785760px;}
.ws7{word-spacing:-9.818710px;}
.ws14{word-spacing:-9.625570px;}
.wsb{word-spacing:-9.281609px;}
.ws2{word-spacing:-9.000000px;}
.ws17{word-spacing:-8.730667px;}
.ws16{word-spacing:-8.283216px;}
.ws18{word-spacing:-8.059490px;}
.wsc{word-spacing:-7.764776px;}
.ws1b{word-spacing:-6.717136px;}
.ws1c{word-spacing:-6.493410px;}
.ws8{word-spacing:-6.273307px;}
.ws5{word-spacing:-5.710843px;}
.ws12{word-spacing:-5.688803px;}
.ws13{word-spacing:-5.598507px;}
.wse{word-spacing:-5.521231px;}
.ws6{word-spacing:-5.482628px;}
.wsa{word-spacing:-5.449913px;}
.ws1a{word-spacing:-5.374781px;}
.ws1f{word-spacing:-4.921966px;}
.ws15{word-spacing:-4.863683px;}
.ws1d{word-spacing:-4.498786px;}
.ws10{word-spacing:-3.308770px;}
.ws11{word-spacing:-3.176546px;}
.ws19{word-spacing:-2.684709px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:6.812351px;}
.wsd{word-spacing:7.641512px;}
._15{margin-left:-478.213813px;}
._18{margin-left:-426.677374px;}
._16{margin-left:-147.210754px;}
._19{margin-left:-131.325349px;}
._22{margin-left:-2.394000px;}
._3{margin-left:-1.380000px;}
._0{width:1.056000px;}
._6{width:2.472000px;}
._d{width:3.540000px;}
._b{width:4.560000px;}
._c{width:5.820000px;}
._8{width:6.960000px;}
._7{width:8.880000px;}
._e{width:9.924000px;}
._14{width:10.932000px;}
._11{width:11.940000px;}
._12{width:13.164000px;}
._10{width:16.080000px;}
._f{width:17.460000px;}
._1f{width:18.858000px;}
._20{width:20.160000px;}
._9{width:21.360000px;}
._a{width:22.740000px;}
._13{width:23.940000px;}
._21{width:27.504000px;}
._1e{width:28.620000px;}
._1d{width:30.120000px;}
._1c{width:31.140000px;}
._24{width:32.802000px;}
._23{width:34.620000px;}
._1{width:43.800000px;}
._4{width:336.180000px;}
._2{width:1162.530000px;}
._5{width:1178.820000px;}
._17{width:1362.420000px;}
._1a{width:1396.560000px;}
._1b{width:1406.964000px;}
.fc8{color:rgb(128,0,0);}
.fc7{color:rgb(0,128,0);}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc9{color:rgb(192,192,192);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs1a{font-size:9.657225px;}
.fs13{font-size:11.426426px;}
.fs12{font-size:11.902052px;}
.fs6{font-size:12.000000px;}
.fs1e{font-size:16.182685px;}
.fs20{font-size:17.704913px;}
.fs3{font-size:18.000000px;}
.fs1b{font-size:19.333745px;}
.fsa{font-size:19.721682px;}
.fs11{font-size:19.860545px;}
.fs15{font-size:20.138514px;}
.fs14{font-size:20.463319px;}
.fs9{font-size:20.542599px;}
.fsc{font-size:22.565852px;}
.fs1d{font-size:23.357589px;}
.fs1c{font-size:24.162358px;}
.fsf{font-size:27.930849px;}
.fs19{font-size:28.990971px;}
.fs17{font-size:29.795739px;}
.fs21{font-size:30.000000px;}
.fs18{font-size:31.405277px;}
.fse{font-size:33.387083px;}
.fs16{font-size:34.624352px;}
.fsb{font-size:35.319099px;}
.fs7{font-size:36.000000px;}
.fs1f{font-size:38.648196px;}
.fsd{font-size:38.797699px;}
.fs8{font-size:39.600000px;}
.fs10{font-size:43.306545px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.ye5{bottom:-13.410555px;}
.ye4{bottom:-5.753850px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y40{bottom:10.500000px;}
.y5{bottom:12.337500px;}
.y3f{bottom:30.000000px;}
.y3e{bottom:44.400000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:61.800000px;}
.y13a{bottom:73.737634px;}
.y42{bottom:74.137500px;}
.y3c{bottom:78.900000px;}
.y3{bottom:81.337500px;}
.y138{bottom:81.375300px;}
.y137{bottom:88.001977px;}
.y136{bottom:93.430749px;}
.y3b{bottom:96.300000px;}
.y141{bottom:98.851490px;}
.y135{bottom:99.460485px;}
.y130{bottom:103.677282px;}
.y134{bottom:106.087165px;}
.y131{bottom:108.296060px;}
.yf0{bottom:111.337500px;}
.y133{bottom:112.116901px;}
.y14a{bottom:112.237500px;}
.y3a{bottom:113.400000px;}
.ya8{bottom:113.437500px;}
.y31{bottom:117.637500px;}
.y132{bottom:118.745590px;}
.y7c{bottom:123.337500px;}
.y16d{bottom:123.937500px;}
.y91{bottom:126.037500px;}
.yef{bottom:128.737500px;}
.y149{bottom:129.337500px;}
.y139{bottom:130.001101px;}
.ya7{bottom:130.537500px;}
.y39{bottom:130.800000px;}
.y19e{bottom:133.537500px;}
.y30{bottom:134.737500px;}
.y90{bottom:139.837500px;}
.y7b{bottom:140.437500px;}
.y16c{bottom:141.037500px;}
.yee{bottom:145.837500px;}
.y148{bottom:146.737500px;}
.ya6{bottom:147.937500px;}
.y38{bottom:147.945000px;}
.y19d{bottom:150.930000px;}
.y2f{bottom:152.130000px;}
.ydf{bottom:152.537265px;}
.y7a{bottom:157.830000px;}
.y16b{bottom:158.430000px;}
.y13e{bottom:160.943699px;}
.yed{bottom:163.545000px;}
.y147{bottom:163.845000px;}
.ya5{bottom:165.030000px;}
.y37{bottom:165.330000px;}
.y19c{bottom:168.045000px;}
.y13d{bottom:168.173353px;}
.y2e{bottom:169.230000px;}
.y127{bottom:169.584303px;}
.yac{bottom:170.327161px;}
.y12b{bottom:174.605058px;}
.y79{bottom:174.930000px;}
.y16a{bottom:175.530000px;}
.y13c{bottom:177.215949px;}
.y146{bottom:177.675000px;}
.yec{bottom:180.375000px;}
.yf1{bottom:181.140000px;}
.y36{bottom:182.445000px;}
.ya4{bottom:182.775000px;}
.yf4{bottom:185.454568px;}
.y19b{bottom:185.475000px;}
.y2d{bottom:186.675000px;}
.yba{bottom:187.889592px;}
.yb9{bottom:188.565237px;}
.y12f{bottom:190.079369px;}
.y78{bottom:192.375000px;}
.yca{bottom:192.391672px;}
.y169{bottom:192.975000px;}
.ye0{bottom:193.740753px;}
.y13b{bottom:194.095190px;}
.yb8{bottom:199.373405px;}
.ybb{bottom:199.373412px;}
.y35{bottom:199.845000px;}
.y102{bottom:201.129872px;}
.y101{bottom:201.732844px;}
.yc9{bottom:202.524189px;}
.y19a{bottom:202.575000px;}
.ya3{bottom:203.175000px;}
.y2c{bottom:203.775000px;}
.ye1{bottom:204.999355px;}
.y112{bottom:205.147683px;}
.y77{bottom:209.475000px;}
.yb7{bottom:209.505921px;}
.ybc{bottom:209.505929px;}
.y168{bottom:210.075000px;}
.y100{bottom:211.378411px;}
.y103{bottom:211.378413px;}
.ycb{bottom:212.654454px;}
.y111{bottom:214.188267px;}
.y34{bottom:216.945000px;}
.yaa{bottom:217.611487px;}
.ye2{bottom:219.188027px;}
.yb6{bottom:219.636186px;}
.ybd{bottom:219.636194px;}
.y199{bottom:219.975000px;}
.ya2{bottom:220.275000px;}
.yff{bottom:220.418995px;}
.y104{bottom:220.418997px;}
.y2b{bottom:221.175000px;}
.ycc{bottom:222.786971px;}
.ydd{bottom:222.786983px;}
.y113{bottom:223.230861px;}
.yab{bottom:226.388198px;}
.y76{bottom:226.875000px;}
.ye3{bottom:227.293588px;}
.y167{bottom:227.475000px;}
.yf2{bottom:227.650659px;}
.y12a{bottom:228.854592px;}
.yfe{bottom:229.457569px;}
.y105{bottom:229.457572px;}
.yb5{bottom:229.768703px;}
.ybe{bottom:230.444363px;}
.y114{bottom:232.273455px;}
.y125{bottom:232.273459px;}
.ycd{bottom:232.919489px;}
.ydc{bottom:233.595152px;}
.ya1{bottom:234.075000px;}
.y33{bottom:234.630000px;}
.yf3{bottom:235.487306px;}
.y198{bottom:237.075000px;}
.y2a{bottom:238.275000px;}
.yfd{bottom:238.500163px;}
.y106{bottom:239.103139px;}
.yb4{bottom:239.901221px;}
.ybf{bottom:239.901229px;}
.y115{bottom:241.316049px;}
.y124{bottom:241.919027px;}
.yce{bottom:243.052006px;}
.yd6{bottom:243.052018px;}
.y75{bottom:243.975000px;}
.y12e{bottom:244.127913px;}
.y166{bottom:244.575000px;}
.yfc{bottom:247.542757px;}
.y107{bottom:247.542760px;}
.yb3{bottom:250.033738px;}
.yc0{bottom:250.033746px;}
.y116{bottom:250.358643px;}
.y11e{bottom:250.358647px;}
.ycf{bottom:253.184523px;}
.yd7{bottom:253.184535px;}
.y197{bottom:254.475000px;}
.y29{bottom:255.675000px;}
.yfb{bottom:256.585351px;}
.y108{bottom:256.585354px;}
.y117{bottom:259.397218px;}
.y11f{bottom:259.397221px;}
.yb2{bottom:260.166255px;}
.yc1{bottom:260.166263px;}
.y74{bottom:261.375000px;}
.y165{bottom:261.975000px;}
.yd0{bottom:263.317040px;}
.yd8{bottom:263.317052px;}
.yfa{bottom:265.627945px;}
.y109{bottom:265.627948px;}
.y118{bottom:268.437802px;}
.y120{bottom:268.437805px;}
.yb1{bottom:270.298772px;}
.yc2{bottom:270.298780px;}
.y196{bottom:271.575000px;}
.y28{bottom:272.775000px;}
.yd1{bottom:273.449557px;}
.yd9{bottom:273.449570px;}
.yf9{bottom:274.668530px;}
.y10a{bottom:274.668532px;}
.y119{bottom:277.480396px;}
.y121{bottom:277.480399px;}
.y73{bottom:278.475000px;}
.y164{bottom:279.075000px;}
.yc8{bottom:279.079991px;}
.yb0{bottom:280.431290px;}
.yc3{bottom:280.431298px;}
.y110{bottom:282.507188px;}
.y129{bottom:283.110157px;}
.yd2{bottom:283.582075px;}
.yda{bottom:283.582087px;}
.yf8{bottom:283.711124px;}
.y10b{bottom:283.711126px;}
.y11a{bottom:286.522990px;}
.y122{bottom:286.522994px;}
.y195{bottom:288.975000px;}
.y27{bottom:290.175000px;}
.yaf{bottom:290.563807px;}
.yc4{bottom:290.563815px;}
.yc7{bottom:291.239463px;}
.yf7{bottom:292.753718px;}
.y10c{bottom:292.753720px;}
.y10f{bottom:293.356693px;}
.yd3{bottom:293.714592px;}
.ydb{bottom:293.714604px;}
.y11b{bottom:295.565584px;}
.y123{bottom:295.565588px;}
.y72{bottom:295.875000px;}
.y163{bottom:296.475000px;}
.y12d{bottom:298.377447px;}
.yae{bottom:300.020673px;}
.yc5{bottom:300.696332px;}
.yf6{bottom:301.193338px;}
.y10d{bottom:301.796314px;}
.yd4{bottom:303.171458px;}
.y11c{bottom:304.005204px;}
.y194{bottom:306.075000px;}
.y26{bottom:307.275000px;}
.yf5{bottom:311.441880px;}
.y10e{bottom:311.441882px;}
.yad{bottom:311.502241px;}
.yc6{bottom:311.502249px;}
.y71{bottom:312.975000px;}
.y162{bottom:313.575000px;}
.y11d{bottom:314.253746px;}
.yd5{bottom:314.653026px;}
.y193{bottom:323.475000px;}
.y25{bottom:324.675000px;}
.y70{bottom:330.375000px;}
.y161{bottom:330.975000px;}
.y128{bottom:337.357682px;}
.y192{bottom:340.575000px;}
.y126{bottom:341.580513px;}
.y24{bottom:341.775000px;}
.yde{bottom:345.275805px;}
.y6f{bottom:347.505000px;}
.y160{bottom:348.105000px;}
.y12c{bottom:352.631002px;}
.y191{bottom:358.005000px;}
.y23{bottom:359.220000px;}
.y6e{bottom:364.905000px;}
.y15f{bottom:365.520000px;}
.y140{bottom:372.724109px;}
.y190{bottom:375.105000px;}
.y22{bottom:376.320000px;}
.y13f{bottom:379.553790px;}
.y6d{bottom:382.020000px;}
.y15e{bottom:382.620000px;}
.y18f{bottom:392.520000px;}
.y21{bottom:393.705000px;}
.y6c{bottom:399.420000px;}
.y15d{bottom:400.005000px;}
.y8f{bottom:405.405000px;}
.y18e{bottom:409.620000px;}
.y20{bottom:410.820000px;}
.y6b{bottom:416.505000px;}
.y15c{bottom:417.120000px;}
.y8e{bottom:422.505000px;}
.y18d{bottom:427.005000px;}
.y1f{bottom:428.205000px;}
.y6a{bottom:433.920000px;}
.y15b{bottom:434.505000px;}
.y8d{bottom:440.205000px;}
.y18c{bottom:444.120000px;}
.y1e{bottom:445.905000px;}
.y69{bottom:451.005000px;}
.y15a{bottom:451.620000px;}
.y8c{bottom:460.620000px;}
.y18b{bottom:461.505000px;}
.y1d{bottom:466.005000px;}
.y68{bottom:468.420000px;}
.y159{bottom:469.005000px;}
.y8b{bottom:477.705000px;}
.y18a{bottom:478.620000px;}
.ya0{bottom:484.620000px;}
.y67{bottom:485.505000px;}
.y158{bottom:486.120000px;}
.y9f{bottom:490.920000px;}
.y8a{bottom:491.505000px;}
.y189{bottom:496.005000px;}
.y66{bottom:502.920000px;}
.y157{bottom:503.820000px;}
.y9e{bottom:508.020000px;}
.y188{bottom:513.120000px;}
.y65{bottom:520.050000px;}
.y156{bottom:524.250000px;}
.y9d{bottom:525.450000px;}
.y187{bottom:530.550000px;}
.y32{bottom:536.250000px;}
.y64{bottom:537.450000px;}
.y155{bottom:541.350000px;}
.y9c{bottom:542.550000px;}
.y186{bottom:547.650000px;}
.y63{bottom:554.550000px;}
.y154{bottom:558.750000px;}
.y9b{bottom:560.250000px;}
.y185{bottom:565.050000px;}
.y62{bottom:571.950000px;}
.y153{bottom:575.850000px;}
.y9a{bottom:580.650000px;}
.y184{bottom:582.150000px;}
.y61{bottom:589.050000px;}
.y152{bottom:593.250000px;}
.y99{bottom:597.750000px;}
.y183{bottom:599.550000px;}
.yeb{bottom:600.150000px;}
.y60{bottom:606.450000px;}
.y151{bottom:610.350000px;}
.y98{bottom:615.450000px;}
.y182{bottom:616.650000px;}
.yea{bottom:617.850000px;}
.y5f{bottom:623.550000px;}
.y150{bottom:627.750000px;}
.ya9{bottom:632.490000px;}
.y97{bottom:632.550000px;}
.y181{bottom:634.050000px;}
.y145{bottom:637.950000px;}
.ye9{bottom:638.550000px;}
.y5e{bottom:640.950000px;}
.y14f{bottom:645.450000px;}
.y180{bottom:651.150000px;}
.y144{bottom:655.350000px;}
.y5d{bottom:658.050000px;}
.ye8{bottom:658.950000px;}
.y14e{bottom:665.550000px;}
.y17f{bottom:668.550000px;}
.y143{bottom:670.650000px;}
.y5c{bottom:675.450000px;}
.ye7{bottom:676.050000px;}
.y142{bottom:677.550000px;}
.y14d{bottom:682.980000px;}
.y17e{bottom:685.695000px;}
.y5b{bottom:692.595000px;}
.ye6{bottom:693.195000px;}
.y14c{bottom:700.080000px;}
.y17d{bottom:703.095000px;}
.y19f{bottom:706.995000px;}
.y5a{bottom:709.980000px;}
.y14b{bottom:713.895000px;}
.y17c{bottom:720.195000px;}
.y59{bottom:727.080000px;}
.y17b{bottom:737.595000px;}
.y58{bottom:744.495000px;}
.y17a{bottom:754.695000px;}
.y57{bottom:761.595000px;}
.y179{bottom:772.080000px;}
.y56{bottom:778.980000px;}
.y178{bottom:789.195000px;}
.y55{bottom:796.080000px;}
.y177{bottom:806.580000px;}
.y54{bottom:813.495000px;}
.y176{bottom:823.695000px;}
.y1c{bottom:826.995000px;}
.y53{bottom:830.580000px;}
.y175{bottom:841.080000px;}
.y1b{bottom:847.380000px;}
.y52{bottom:847.995000px;}
.y174{bottom:858.225000px;}
.y51{bottom:865.125000px;}
.y1a{bottom:867.225000px;}
.y173{bottom:875.625000px;}
.y50{bottom:882.525000px;}
.y19{bottom:885.525000px;}
.y172{bottom:892.725000px;}
.y4f{bottom:899.625000px;}
.y18{bottom:909.825000px;}
.y171{bottom:910.125000px;}
.y4e{bottom:917.025000px;}
.y17{bottom:927.225000px;}
.y4d{bottom:934.125000px;}
.y16{bottom:944.625000px;}
.y4c{bottom:951.525000px;}
.y89{bottom:952.425000px;}
.y88{bottom:955.725000px;}
.y15{bottom:961.725000px;}
.y170{bottom:962.325000px;}
.y4b{bottom:968.625000px;}
.y14{bottom:973.125000px;}
.y87{bottom:973.725000px;}
.y16f{bottom:982.425000px;}
.y4a{bottom:986.025000px;}
.y13{bottom:988.725000px;}
.y86{bottom:991.725000px;}
.y16e{bottom:999.825000px;}
.y49{bottom:1003.125000px;}
.y12{bottom:1008.825000px;}
.y85{bottom:1009.725000px;}
.y96{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.y84{bottom:1027.770000px;}
.y95{bottom:1034.370000px;}
.y48{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y83{bottom:1045.770000px;}
.y94{bottom:1051.455000px;}
.y47{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.y82{bottom:1063.770000px;}
.yb{bottom:1068.255000px;}
.y93{bottom:1068.870000px;}
.y46{bottom:1072.170000px;}
.y80{bottom:1081.770000px;}
.ya{bottom:1083.570000px;}
.y92{bottom:1085.955000px;}
.y45{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y7f{bottom:1103.370000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y7e{bottom:1120.455000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7d{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h2d{height:7.035439px;}
.h19{height:8.466797px;}
.h26{height:8.592137px;}
.h25{height:8.670831px;}
.h9{height:10.757812px;}
.h31{height:12.168621px;}
.h5{height:12.700195px;}
.h33{height:13.313264px;}
.h2e{height:14.538070px;}
.h28{height:14.671222px;}
.h1c{height:14.829781px;}
.h23{height:14.934199px;}
.h1b{height:14.965604px;}
.h27{height:15.387456px;}
.h1e{height:16.439576px;}
.h16{height:17.385000px;}
.h18{height:17.400000px;}
.h17{height:17.437500px;}
.h30{height:17.563812px;}
.h2f{height:17.602655px;}
.ha{height:21.000000px;}
.h21{height:21.002689px;}
.h34{height:21.166992px;}
.h2a{height:21.706662px;}
.h2c{height:21.799851px;}
.h2b{height:23.615296px;}
.h20{height:24.323012px;}
.h29{height:26.035890px;}
.h1d{height:26.558307px;}
.h32{height:29.061632px;}
.h1f{height:29.174051px;}
.hb{height:32.273438px;}
.h22{height:32.564492px;}
.h7{height:33.867188px;}
.h14{height:34.664062px;}
.hd{height:35.500781px;}
.h3{height:36.000000px;}
.he{height:38.100586px;}
.h4{height:42.333984px;}
.h15{height:44.507812px;}
.h35{height:45.117188px;}
.h8{height:48.410156px;}
.h13{height:49.453125px;}
.hc{height:50.273438px;}
.h6{height:50.800781px;}
.h12{height:51.996094px;}
.h10{height:53.789062px;}
.hf{height:64.546875px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h11{height:251.445000px;}
.h1a{height:381.075000px;}
.h24{height:415.722157px;}
.h0{height:1263.000000px;}
.w8{width:48.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.wa{width:195.075000px;}
.w6{width:253.875000px;}
.w9{width:267.975000px;}
.wc{width:338.877535px;}
.wb{width:350.935724px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.800000px;}
.x2{left:10.799998px;}
.x10{left:16.200000px;}
.x46{left:19.387340px;}
.x3{left:22.200000px;}
.x43{left:24.264762px;}
.x4{left:27.600000px;}
.x2b{left:30.804867px;}
.x47{left:35.920211px;}
.x2c{left:37.371790px;}
.x44{left:49.838565px;}
.x45{left:60.661312px;}
.xb{left:78.037500px;}
.x2d{left:79.877394px;}
.x1{left:81.037487px;}
.xf{left:83.137500px;}
.x4d{left:91.837487px;}
.x4c{left:96.037487px;}
.x2e{left:98.569445px;}
.x4a{left:100.237487px;}
.x4e{left:108.037487px;}
.xe{left:117.330000px;}
.x42{left:118.350556px;}
.x13{left:129.937500px;}
.x4b{left:135.037487px;}
.x3f{left:136.432419px;}
.x3e{left:137.502696px;}
.x9{left:153.629987px;}
.x41{left:168.549048px;}
.x40{left:170.332051px;}
.x37{left:181.631137px;}
.x38{left:187.341261px;}
.x29{left:190.354652px;}
.x35{left:191.978733px;}
.x2a{left:200.210157px;}
.x33{left:201.615978px;}
.x25{left:206.783234px;}
.x24{left:208.218409px;}
.x36{left:209.823020px;}
.x32{left:214.460492px;}
.x31{left:218.030062px;}
.x20{left:224.852018px;}
.x34{left:230.994551px;}
.x26{left:233.682402px;}
.x27{left:239.023281px;}
.xc{left:241.582500px;}
.x1f{left:247.031527px;}
.x1e{left:253.194553px;}
.x23{left:265.922453px;}
.x1b{left:271.274987px;}
.x21{left:275.572933px;}
.x22{left:277.010154px;}
.x39{left:285.354176px;}
.x28{left:295.085087px;}
.x3a{left:297.959926px;}
.x3d{left:299.152554px;}
.x3c{left:300.460407px;}
.x3b{left:302.124622px;}
.x6{left:311.219987px;}
.x2f{left:323.504987px;}
.x1d{left:352.319987px;}
.x16{left:374.819987px;}
.x19{left:380.219987px;}
.x14{left:398.820000px;}
.x30{left:420.749987px;}
.x48{left:425.249987px;}
.x17{left:446.549987px;}
.x11{left:549.194987px;}
.xd{left:561.495000px;}
.x15{left:607.379987px;}
.x18{left:613.694987px;}
.x49{left:616.379987px;}
.x8{left:619.379987px;}
.x1a{left:622.094987px;}
.x1c{left:624.494987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.731906pt;}
.ls20{letter-spacing:-0.653177pt;}
.ls15{letter-spacing:-0.554134pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.494528pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls28{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.054212pt;}
.ls1f{letter-spacing:-0.048381pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.014676pt;}
.ls8{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.023123pt;}
.lsf{letter-spacing:0.025330pt;}
.ls18{letter-spacing:0.027347pt;}
.ls12{letter-spacing:0.047200pt;}
.ls7{letter-spacing:0.069333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.115857pt;}
.ls1c{letter-spacing:0.120081pt;}
.ls10{letter-spacing:0.199966pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.289763pt;}
.ls4{letter-spacing:0.341333pt;}
.ls22{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.500123pt;}
.ls0{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.618276pt;}
.ls16{letter-spacing:0.630947pt;}
.ls29{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.067127pt;}
.lsc{letter-spacing:1.081707pt;}
.lse{letter-spacing:1.088996pt;}
.ls26{letter-spacing:13.973333pt;}
.ls25{letter-spacing:40.640000pt;}
.ls24{letter-spacing:80.106667pt;}
.ls23{letter-spacing:81.173333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws23{word-spacing:-14.400000pt;}
.ws0{word-spacing:-13.514667pt;}
.ws20{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.333333pt;}
.ws22{word-spacing:-13.226667pt;}
.ws21{word-spacing:-12.960000pt;}
.ws4{word-spacing:-11.466667pt;}
.ws9{word-spacing:-9.587343pt;}
.ws7{word-spacing:-8.727742pt;}
.ws14{word-spacing:-8.556062pt;}
.wsb{word-spacing:-8.250319pt;}
.ws2{word-spacing:-8.000000pt;}
.ws17{word-spacing:-7.760593pt;}
.ws16{word-spacing:-7.362858pt;}
.ws18{word-spacing:-7.163991pt;}
.wsc{word-spacing:-6.902023pt;}
.ws1b{word-spacing:-5.970787pt;}
.ws1c{word-spacing:-5.771920pt;}
.ws8{word-spacing:-5.576273pt;}
.ws5{word-spacing:-5.076304pt;}
.ws12{word-spacing:-5.056713pt;}
.ws13{word-spacing:-4.976451pt;}
.wse{word-spacing:-4.907761pt;}
.ws6{word-spacing:-4.873447pt;}
.wsa{word-spacing:-4.844367pt;}
.ws1a{word-spacing:-4.777583pt;}
.ws1f{word-spacing:-4.375081pt;}
.ws15{word-spacing:-4.323274pt;}
.ws1d{word-spacing:-3.998921pt;}
.ws10{word-spacing:-2.941129pt;}
.ws11{word-spacing:-2.823597pt;}
.ws19{word-spacing:-2.386408pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:6.055423pt;}
.wsd{word-spacing:6.792455pt;}
._15{margin-left:-425.078945pt;}
._18{margin-left:-379.268777pt;}
._16{margin-left:-130.854004pt;}
._19{margin-left:-116.733643pt;}
._22{margin-left:-2.128000pt;}
._3{margin-left:-1.226667pt;}
._0{width:0.938667pt;}
._6{width:2.197333pt;}
._d{width:3.146667pt;}
._b{width:4.053333pt;}
._c{width:5.173333pt;}
._8{width:6.186667pt;}
._7{width:7.893333pt;}
._e{width:8.821333pt;}
._14{width:9.717333pt;}
._11{width:10.613333pt;}
._12{width:11.701333pt;}
._10{width:14.293333pt;}
._f{width:15.520000pt;}
._1f{width:16.762667pt;}
._20{width:17.920000pt;}
._9{width:18.986667pt;}
._a{width:20.213333pt;}
._13{width:21.280000pt;}
._21{width:24.448000pt;}
._1e{width:25.440000pt;}
._1d{width:26.773333pt;}
._1c{width:27.680000pt;}
._24{width:29.157333pt;}
._23{width:30.773333pt;}
._1{width:38.933333pt;}
._4{width:298.826667pt;}
._2{width:1033.360000pt;}
._5{width:1047.840000pt;}
._17{width:1211.040000pt;}
._1a{width:1241.386667pt;}
._1b{width:1250.634667pt;}
.fs1a{font-size:8.584200pt;}
.fs13{font-size:10.156823pt;}
.fs12{font-size:10.579602pt;}
.fs6{font-size:10.666667pt;}
.fs1e{font-size:14.384609pt;}
.fs20{font-size:15.737700pt;}
.fs3{font-size:16.000000pt;}
.fs1b{font-size:17.185552pt;}
.fsa{font-size:17.530384pt;}
.fs11{font-size:17.653817pt;}
.fs15{font-size:17.900902pt;}
.fs14{font-size:18.189617pt;}
.fs9{font-size:18.260088pt;}
.fsc{font-size:20.058535pt;}
.fs1d{font-size:20.762302pt;}
.fs1c{font-size:21.477652pt;}
.fsf{font-size:24.827421pt;}
.fs19{font-size:25.769752pt;}
.fs17{font-size:26.485102pt;}
.fs21{font-size:26.666667pt;}
.fs18{font-size:27.915802pt;}
.fse{font-size:29.677408pt;}
.fs16{font-size:30.777202pt;}
.fsb{font-size:31.394755pt;}
.fs7{font-size:32.000000pt;}
.fs1f{font-size:34.353952pt;}
.fsd{font-size:34.486844pt;}
.fs8{font-size:35.200000pt;}
.fs10{font-size:38.494707pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.ye5{bottom:-11.920494pt;}
.ye4{bottom:-5.114533pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y40{bottom:9.333333pt;}
.y5{bottom:10.966667pt;}
.y3f{bottom:26.666667pt;}
.y3e{bottom:39.466667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:54.933333pt;}
.y13a{bottom:65.544564pt;}
.y42{bottom:65.900000pt;}
.y3c{bottom:70.133333pt;}
.y3{bottom:72.300000pt;}
.y138{bottom:72.333600pt;}
.y137{bottom:78.223979pt;}
.y136{bottom:83.049555pt;}
.y3b{bottom:85.600000pt;}
.y141{bottom:87.867991pt;}
.y135{bottom:88.409320pt;}
.y130{bottom:92.157584pt;}
.y134{bottom:94.299702pt;}
.y131{bottom:96.263164pt;}
.yf0{bottom:98.966667pt;}
.y133{bottom:99.659467pt;}
.y14a{bottom:99.766667pt;}
.y3a{bottom:100.800000pt;}
.ya8{bottom:100.833333pt;}
.y31{bottom:104.566667pt;}
.y132{bottom:105.551636pt;}
.y7c{bottom:109.633333pt;}
.y16d{bottom:110.166667pt;}
.y91{bottom:112.033333pt;}
.yef{bottom:114.433333pt;}
.y149{bottom:114.966667pt;}
.y139{bottom:115.556534pt;}
.ya7{bottom:116.033333pt;}
.y39{bottom:116.266667pt;}
.y19e{bottom:118.700000pt;}
.y30{bottom:119.766667pt;}
.y90{bottom:124.300000pt;}
.y7b{bottom:124.833333pt;}
.y16c{bottom:125.366667pt;}
.yee{bottom:129.633333pt;}
.y148{bottom:130.433333pt;}
.ya6{bottom:131.500000pt;}
.y38{bottom:131.506667pt;}
.y19d{bottom:134.160000pt;}
.y2f{bottom:135.226667pt;}
.ydf{bottom:135.588680pt;}
.y7a{bottom:140.293333pt;}
.y16b{bottom:140.826667pt;}
.y13e{bottom:143.061066pt;}
.yed{bottom:145.373333pt;}
.y147{bottom:145.640000pt;}
.ya5{bottom:146.693333pt;}
.y37{bottom:146.960000pt;}
.y19c{bottom:149.373333pt;}
.y13d{bottom:149.487425pt;}
.y2e{bottom:150.426667pt;}
.y127{bottom:150.741603pt;}
.yac{bottom:151.401921pt;}
.y12b{bottom:155.204496pt;}
.y79{bottom:155.493333pt;}
.y16a{bottom:156.026667pt;}
.y13c{bottom:157.525288pt;}
.y146{bottom:157.933333pt;}
.yec{bottom:160.333333pt;}
.yf1{bottom:161.013333pt;}
.y36{bottom:162.173333pt;}
.ya4{bottom:162.466667pt;}
.yf4{bottom:164.848505pt;}
.y19b{bottom:164.866667pt;}
.y2d{bottom:165.933333pt;}
.yba{bottom:167.012971pt;}
.yb9{bottom:167.613544pt;}
.y12f{bottom:168.959439pt;}
.y78{bottom:171.000000pt;}
.yca{bottom:171.014819pt;}
.y169{bottom:171.533333pt;}
.ye0{bottom:172.214002pt;}
.y13b{bottom:172.529058pt;}
.yb8{bottom:177.220805pt;}
.ybb{bottom:177.220811pt;}
.y35{bottom:177.640000pt;}
.y102{bottom:178.782108pt;}
.y101{bottom:179.318083pt;}
.yc9{bottom:180.021501pt;}
.y19a{bottom:180.066667pt;}
.ya3{bottom:180.600000pt;}
.y2c{bottom:181.133333pt;}
.ye1{bottom:182.221649pt;}
.y112{bottom:182.353496pt;}
.y77{bottom:186.200000pt;}
.yb7{bottom:186.227485pt;}
.ybc{bottom:186.227493pt;}
.y168{bottom:186.733333pt;}
.y100{bottom:187.891921pt;}
.y103{bottom:187.891923pt;}
.ycb{bottom:189.026181pt;}
.y111{bottom:190.389571pt;}
.y34{bottom:192.840000pt;}
.yaa{bottom:193.432433pt;}
.ye2{bottom:194.833802pt;}
.yb6{bottom:195.232165pt;}
.ybd{bottom:195.232173pt;}
.y199{bottom:195.533333pt;}
.ya2{bottom:195.800000pt;}
.yff{bottom:195.927996pt;}
.y104{bottom:195.927998pt;}
.y2b{bottom:196.600000pt;}
.ycc{bottom:198.032863pt;}
.ydd{bottom:198.032874pt;}
.y113{bottom:198.427432pt;}
.yab{bottom:201.233954pt;}
.y76{bottom:201.666667pt;}
.ye3{bottom:202.038745pt;}
.y167{bottom:202.200000pt;}
.yf2{bottom:202.356141pt;}
.y12a{bottom:203.426304pt;}
.yfe{bottom:203.962284pt;}
.y105{bottom:203.962286pt;}
.yb5{bottom:204.238847pt;}
.ybe{bottom:204.839434pt;}
.y114{bottom:206.465294pt;}
.y125{bottom:206.465297pt;}
.ycd{bottom:207.039545pt;}
.ydc{bottom:207.640135pt;}
.ya1{bottom:208.066667pt;}
.y33{bottom:208.560000pt;}
.yf3{bottom:209.322050pt;}
.y198{bottom:210.733333pt;}
.y2a{bottom:211.800000pt;}
.yfd{bottom:212.000145pt;}
.y106{bottom:212.536124pt;}
.yb4{bottom:213.245529pt;}
.ybf{bottom:213.245537pt;}
.y115{bottom:214.503155pt;}
.y124{bottom:215.039135pt;}
.yce{bottom:216.046227pt;}
.yd6{bottom:216.046238pt;}
.y75{bottom:216.866667pt;}
.y12e{bottom:217.002589pt;}
.y166{bottom:217.400000pt;}
.yfc{bottom:220.038007pt;}
.y107{bottom:220.038009pt;}
.yb3{bottom:222.252211pt;}
.yc0{bottom:222.252219pt;}
.y116{bottom:222.541016pt;}
.y11e{bottom:222.541020pt;}
.ycf{bottom:225.052909pt;}
.yd7{bottom:225.052920pt;}
.y197{bottom:226.200000pt;}
.y29{bottom:227.266667pt;}
.yfb{bottom:228.075868pt;}
.y108{bottom:228.075870pt;}
.y117{bottom:230.575305pt;}
.y11f{bottom:230.575308pt;}
.yb2{bottom:231.258893pt;}
.yc1{bottom:231.258901pt;}
.y74{bottom:232.333333pt;}
.y165{bottom:232.866667pt;}
.yd0{bottom:234.059591pt;}
.yd8{bottom:234.059602pt;}
.yfa{bottom:236.113729pt;}
.y109{bottom:236.113731pt;}
.y118{bottom:238.611379pt;}
.y120{bottom:238.611383pt;}
.yb1{bottom:240.265575pt;}
.yc2{bottom:240.265583pt;}
.y196{bottom:241.400000pt;}
.y28{bottom:242.466667pt;}
.yd1{bottom:243.066273pt;}
.yd9{bottom:243.066284pt;}
.yf9{bottom:244.149804pt;}
.y10a{bottom:244.149806pt;}
.y119{bottom:246.649241pt;}
.y121{bottom:246.649244pt;}
.y73{bottom:247.533333pt;}
.y164{bottom:248.066667pt;}
.yc8{bottom:248.071103pt;}
.yb0{bottom:249.272257pt;}
.yc3{bottom:249.272265pt;}
.y110{bottom:251.117500pt;}
.y129{bottom:251.653473pt;}
.yd2{bottom:252.072955pt;}
.yda{bottom:252.072966pt;}
.yf8{bottom:252.187665pt;}
.y10b{bottom:252.187668pt;}
.y11a{bottom:254.687102pt;}
.y122{bottom:254.687105pt;}
.y195{bottom:256.866667pt;}
.y27{bottom:257.933333pt;}
.yaf{bottom:258.278940pt;}
.yc4{bottom:258.278947pt;}
.yc7{bottom:258.879523pt;}
.yf7{bottom:260.225527pt;}
.y10c{bottom:260.225529pt;}
.y10f{bottom:260.761505pt;}
.yd3{bottom:261.079637pt;}
.ydb{bottom:261.079648pt;}
.y11b{bottom:262.724964pt;}
.y123{bottom:262.724967pt;}
.y72{bottom:263.000000pt;}
.y163{bottom:263.533333pt;}
.y12d{bottom:265.224398pt;}
.yae{bottom:266.685043pt;}
.yc5{bottom:267.285629pt;}
.yf6{bottom:267.727412pt;}
.y10d{bottom:268.263390pt;}
.yd4{bottom:269.485740pt;}
.y11c{bottom:270.226848pt;}
.y194{bottom:272.066667pt;}
.y26{bottom:273.133333pt;}
.yf5{bottom:276.837226pt;}
.y10e{bottom:276.837228pt;}
.yad{bottom:276.890881pt;}
.yc6{bottom:276.890888pt;}
.y71{bottom:278.200000pt;}
.y162{bottom:278.733333pt;}
.y11d{bottom:279.336663pt;}
.yd5{bottom:279.691578pt;}
.y193{bottom:287.533333pt;}
.y25{bottom:288.600000pt;}
.y70{bottom:293.666667pt;}
.y161{bottom:294.200000pt;}
.y128{bottom:299.873495pt;}
.y192{bottom:302.733333pt;}
.y126{bottom:303.627122pt;}
.y24{bottom:303.800000pt;}
.yde{bottom:306.911827pt;}
.y6f{bottom:308.893333pt;}
.y160{bottom:309.426667pt;}
.y12c{bottom:313.449780pt;}
.y191{bottom:318.226667pt;}
.y23{bottom:319.306667pt;}
.y6e{bottom:324.360000pt;}
.y15f{bottom:324.906667pt;}
.y140{bottom:331.310319pt;}
.y190{bottom:333.426667pt;}
.y22{bottom:334.506667pt;}
.y13f{bottom:337.381147pt;}
.y6d{bottom:339.573333pt;}
.y15e{bottom:340.106667pt;}
.y18f{bottom:348.906667pt;}
.y21{bottom:349.960000pt;}
.y6c{bottom:355.040000pt;}
.y15d{bottom:355.560000pt;}
.y8f{bottom:360.360000pt;}
.y18e{bottom:364.106667pt;}
.y20{bottom:365.173333pt;}
.y6b{bottom:370.226667pt;}
.y15c{bottom:370.773333pt;}
.y8e{bottom:375.560000pt;}
.y18d{bottom:379.560000pt;}
.y1f{bottom:380.626667pt;}
.y6a{bottom:385.706667pt;}
.y15b{bottom:386.226667pt;}
.y8d{bottom:391.293333pt;}
.y18c{bottom:394.773333pt;}
.y1e{bottom:396.360000pt;}
.y69{bottom:400.893333pt;}
.y15a{bottom:401.440000pt;}
.y8c{bottom:409.440000pt;}
.y18b{bottom:410.226667pt;}
.y1d{bottom:414.226667pt;}
.y68{bottom:416.373333pt;}
.y159{bottom:416.893333pt;}
.y8b{bottom:424.626667pt;}
.y18a{bottom:425.440000pt;}
.ya0{bottom:430.773333pt;}
.y67{bottom:431.560000pt;}
.y158{bottom:432.106667pt;}
.y9f{bottom:436.373333pt;}
.y8a{bottom:436.893333pt;}
.y189{bottom:440.893333pt;}
.y66{bottom:447.040000pt;}
.y157{bottom:447.840000pt;}
.y9e{bottom:451.573333pt;}
.y188{bottom:456.106667pt;}
.y65{bottom:462.266667pt;}
.y156{bottom:466.000000pt;}
.y9d{bottom:467.066667pt;}
.y187{bottom:471.600000pt;}
.y32{bottom:476.666667pt;}
.y64{bottom:477.733333pt;}
.y155{bottom:481.200000pt;}
.y9c{bottom:482.266667pt;}
.y186{bottom:486.800000pt;}
.y63{bottom:492.933333pt;}
.y154{bottom:496.666667pt;}
.y9b{bottom:498.000000pt;}
.y185{bottom:502.266667pt;}
.y62{bottom:508.400000pt;}
.y153{bottom:511.866667pt;}
.y9a{bottom:516.133333pt;}
.y184{bottom:517.466667pt;}
.y61{bottom:523.600000pt;}
.y152{bottom:527.333333pt;}
.y99{bottom:531.333333pt;}
.y183{bottom:532.933333pt;}
.yeb{bottom:533.466667pt;}
.y60{bottom:539.066667pt;}
.y151{bottom:542.533333pt;}
.y98{bottom:547.066667pt;}
.y182{bottom:548.133333pt;}
.yea{bottom:549.200000pt;}
.y5f{bottom:554.266667pt;}
.y150{bottom:558.000000pt;}
.ya9{bottom:562.213333pt;}
.y97{bottom:562.266667pt;}
.y181{bottom:563.600000pt;}
.y145{bottom:567.066667pt;}
.ye9{bottom:567.600000pt;}
.y5e{bottom:569.733333pt;}
.y14f{bottom:573.733333pt;}
.y180{bottom:578.800000pt;}
.y144{bottom:582.533333pt;}
.y5d{bottom:584.933333pt;}
.ye8{bottom:585.733333pt;}
.y14e{bottom:591.600000pt;}
.y17f{bottom:594.266667pt;}
.y143{bottom:596.133333pt;}
.y5c{bottom:600.400000pt;}
.ye7{bottom:600.933333pt;}
.y142{bottom:602.266667pt;}
.y14d{bottom:607.093333pt;}
.y17e{bottom:609.506667pt;}
.y5b{bottom:615.640000pt;}
.ye6{bottom:616.173333pt;}
.y14c{bottom:622.293333pt;}
.y17d{bottom:624.973333pt;}
.y19f{bottom:628.440000pt;}
.y5a{bottom:631.093333pt;}
.y14b{bottom:634.573333pt;}
.y17c{bottom:640.173333pt;}
.y59{bottom:646.293333pt;}
.y17b{bottom:655.640000pt;}
.y58{bottom:661.773333pt;}
.y17a{bottom:670.840000pt;}
.y57{bottom:676.973333pt;}
.y179{bottom:686.293333pt;}
.y56{bottom:692.426667pt;}
.y178{bottom:701.506667pt;}
.y55{bottom:707.626667pt;}
.y177{bottom:716.960000pt;}
.y54{bottom:723.106667pt;}
.y176{bottom:732.173333pt;}
.y1c{bottom:735.106667pt;}
.y53{bottom:738.293333pt;}
.y175{bottom:747.626667pt;}
.y1b{bottom:753.226667pt;}
.y52{bottom:753.773333pt;}
.y174{bottom:762.866667pt;}
.y51{bottom:769.000000pt;}
.y1a{bottom:770.866667pt;}
.y173{bottom:778.333333pt;}
.y50{bottom:784.466667pt;}
.y19{bottom:787.133333pt;}
.y172{bottom:793.533333pt;}
.y4f{bottom:799.666667pt;}
.y18{bottom:808.733333pt;}
.y171{bottom:809.000000pt;}
.y4e{bottom:815.133333pt;}
.y17{bottom:824.200000pt;}
.y4d{bottom:830.333333pt;}
.y16{bottom:839.666667pt;}
.y4c{bottom:845.800000pt;}
.y89{bottom:846.600000pt;}
.y88{bottom:849.533333pt;}
.y15{bottom:854.866667pt;}
.y170{bottom:855.400000pt;}
.y4b{bottom:861.000000pt;}
.y14{bottom:865.000000pt;}
.y87{bottom:865.533333pt;}
.y16f{bottom:873.266667pt;}
.y4a{bottom:876.466667pt;}
.y13{bottom:878.866667pt;}
.y86{bottom:881.533333pt;}
.y16e{bottom:888.733333pt;}
.y49{bottom:891.666667pt;}
.y12{bottom:896.733333pt;}
.y85{bottom:897.533333pt;}
.y96{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.y84{bottom:913.573333pt;}
.y95{bottom:919.440000pt;}
.y48{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y83{bottom:929.573333pt;}
.y94{bottom:934.626667pt;}
.y47{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.y82{bottom:945.573333pt;}
.yb{bottom:949.560000pt;}
.y93{bottom:950.106667pt;}
.y46{bottom:953.040000pt;}
.y80{bottom:961.573333pt;}
.ya{bottom:963.173333pt;}
.y92{bottom:965.293333pt;}
.y45{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y7f{bottom:980.773333pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y7e{bottom:995.960000pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7d{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h2d{height:6.253724pt;}
.h19{height:7.526042pt;}
.h26{height:7.637455pt;}
.h25{height:7.707405pt;}
.h9{height:9.562500pt;}
.h31{height:10.816552pt;}
.h5{height:11.289062pt;}
.h33{height:11.834013pt;}
.h2e{height:12.922729pt;}
.h28{height:13.041086pt;}
.h1c{height:13.182027pt;}
.h23{height:13.274843pt;}
.h1b{height:13.302759pt;}
.h27{height:13.677739pt;}
.h1e{height:14.612956pt;}
.h16{height:15.453333pt;}
.h18{height:15.466667pt;}
.h17{height:15.500000pt;}
.h30{height:15.612278pt;}
.h2f{height:15.646805pt;}
.ha{height:18.666667pt;}
.h21{height:18.669057pt;}
.h34{height:18.815104pt;}
.h2a{height:19.294810pt;}
.h2c{height:19.377645pt;}
.h2b{height:20.991374pt;}
.h20{height:21.620455pt;}
.h29{height:23.143013pt;}
.h1d{height:23.607384pt;}
.h32{height:25.832561pt;}
.h1f{height:25.932490pt;}
.hb{height:28.687500pt;}
.h22{height:28.946215pt;}
.h7{height:30.104167pt;}
.h14{height:30.812500pt;}
.hd{height:31.556250pt;}
.h3{height:32.000000pt;}
.he{height:33.867188pt;}
.h4{height:37.630208pt;}
.h15{height:39.562500pt;}
.h35{height:40.104167pt;}
.h8{height:43.031250pt;}
.h13{height:43.958333pt;}
.hc{height:44.687500pt;}
.h6{height:45.156250pt;}
.h12{height:46.218750pt;}
.h10{height:47.812500pt;}
.hf{height:57.375000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h11{height:223.506667pt;}
.h1a{height:338.733333pt;}
.h24{height:369.530807pt;}
.h0{height:1122.666667pt;}
.w8{width:42.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.wa{width:173.400000pt;}
.w6{width:225.666667pt;}
.w9{width:238.200000pt;}
.wc{width:301.224476pt;}
.wb{width:311.942866pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.933333pt;}
.x2{left:9.599999pt;}
.x10{left:14.400000pt;}
.x46{left:17.233191pt;}
.x3{left:19.733333pt;}
.x43{left:21.568678pt;}
.x4{left:24.533333pt;}
.x2b{left:27.382104pt;}
.x47{left:31.929076pt;}
.x2c{left:33.219369pt;}
.x44{left:44.300947pt;}
.x45{left:53.921166pt;}
.xb{left:69.366667pt;}
.x2d{left:71.002128pt;}
.x1{left:72.033322pt;}
.xf{left:73.900000pt;}
.x4d{left:81.633322pt;}
.x4c{left:85.366655pt;}
.x2e{left:87.617284pt;}
.x4a{left:89.099988pt;}
.x4e{left:96.033322pt;}
.xe{left:104.293333pt;}
.x42{left:105.200494pt;}
.x13{left:115.500000pt;}
.x4b{left:120.033322pt;}
.x3f{left:121.273261pt;}
.x3e{left:122.224619pt;}
.x9{left:136.559988pt;}
.x41{left:149.821376pt;}
.x40{left:151.406268pt;}
.x37{left:161.449899pt;}
.x38{left:166.525565pt;}
.x29{left:169.204135pt;}
.x35{left:170.647762pt;}
.x2a{left:177.964584pt;}
.x33{left:179.214203pt;}
.x25{left:183.807319pt;}
.x24{left:185.083030pt;}
.x36{left:186.509351pt;}
.x32{left:190.631548pt;}
.x31{left:193.804499pt;}
.x20{left:199.868461pt;}
.x34{left:205.328490pt;}
.x26{left:207.717690pt;}
.x27{left:212.465139pt;}
.xc{left:214.740000pt;}
.x1f{left:219.583579pt;}
.x1e{left:225.061825pt;}
.x23{left:236.375514pt;}
.x1b{left:241.133322pt;}
.x21{left:244.953718pt;}
.x22{left:246.231248pt;}
.x39{left:253.648156pt;}
.x28{left:262.297855pt;}
.x3a{left:264.853267pt;}
.x3d{left:265.913382pt;}
.x3c{left:267.075917pt;}
.x3b{left:268.555220pt;}
.x6{left:276.639988pt;}
.x2f{left:287.559988pt;}
.x1d{left:313.173322pt;}
.x16{left:333.173322pt;}
.x19{left:337.973322pt;}
.x14{left:354.506667pt;}
.x30{left:373.999988pt;}
.x48{left:377.999988pt;}
.x17{left:396.933322pt;}
.x11{left:488.173322pt;}
.xd{left:499.106667pt;}
.x15{left:539.893322pt;}
.x18{left:545.506655pt;}
.x49{left:547.893322pt;}
.x8{left:550.559988pt;}
.x1a{left:552.973322pt;}
.x1c{left:555.106655pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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