
    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_8523e0c0975eeb5c05cc19ed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49dcfe3724a112ffd0a057db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_bbc91c4f196889b77192ed80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_d9b8bfe17652c32c5a020235.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_16d27350e39d4f5b857bf65d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_81faa5ef792ac3c985057d76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_d8eac2b8c2cc509e68db22ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_0de57b8f11541be1ad184983.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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_a3c7aa1e644c32de116321c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_118d291caf81e3825d7a59b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_75453e1ac138a0e774c958fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7f5c0aaf746a6da7e7f1791d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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);}
.m3{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-2.618745px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.990955px;}
.ls16{letter-spacing:-1.989361px;}
.lsd{letter-spacing:-1.985720px;}
.ls13{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.167949px;}
.lse{letter-spacing:0.189139px;}
.ls19{letter-spacing:0.223815px;}
.ls15{letter-spacing:0.268911px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.775586px;}
.ls7{letter-spacing:12.960000px;}
.ls6{letter-spacing:41.381280px;}
.lsb{letter-spacing:42.821280px;}
.ls1a{letter-spacing:372.228361px;}
.ls12{letter-spacing:717.996000px;}
.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;}
}
.ws6{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.wsb{word-spacing:-14.940000px;}
.ws1f{word-spacing:-11.672443px;}
.ws9{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:143.662059px;}
.ws1b{word-spacing:143.925507px;}
.ws14{word-spacing:144.040782px;}
.ws20{word-spacing:152.242988px;}
.wsf{word-spacing:183.942953px;}
.ws1d{word-spacing:184.280267px;}
.ws1c{word-spacing:193.359043px;}
.wse{word-spacing:197.326585px;}
.ws16{word-spacing:197.846778px;}
.ws17{word-spacing:197.878466px;}
.wsd{word-spacing:210.775216px;}
.ws15{word-spacing:211.330862px;}
.ws12{word-spacing:296.650285px;}
.ws23{word-spacing:314.535409px;}
.ws13{word-spacing:315.950135px;}
.ws1a{word-spacing:316.031195px;}
.ws21{word-spacing:333.278114px;}
.ws11{word-spacing:335.709322px;}
.ws1e{word-spacing:364.116129px;}
.ws19{word-spacing:383.415980px;}
.ws22{word-spacing:389.295418px;}
.ws24{word-spacing:411.492072px;}
.ws10{word-spacing:422.714336px;}
._14{margin-left:-5.040000px;}
._10{margin-left:-3.816000px;}
._f{margin-left:-2.808000px;}
._0{margin-left:-1.457280px;}
._2{width:1.534080px;}
._9{width:3.229920px;}
._1f{width:4.584000px;}
._13{width:5.587680px;}
._b{width:6.678720px;}
._a{width:7.721280px;}
._19{width:9.288000px;}
._18{width:10.422720px;}
._e{width:11.592000px;}
._c{width:13.008000px;}
._d{width:14.136000px;}
._1c{width:16.032000px;}
._15{width:19.044000px;}
._1a{width:20.928000px;}
._1b{width:22.021920px;}
._3f{width:23.184000px;}
._22{width:24.480000px;}
._16{width:26.424000px;}
._17{width:27.504000px;}
._41{width:28.512000px;}
._1d{width:29.520000px;}
._1e{width:30.612000px;}
._4f{width:32.760000px;}
._4{width:36.578400px;}
._20{width:37.632000px;}
._21{width:38.832000px;}
._11{width:40.224000px;}
._12{width:41.472000px;}
._4e{width:46.872000px;}
._40{width:48.024000px;}
._23{width:56.728992px;}
._29{width:68.254076px;}
._2a{width:79.810677px;}
._6{width:81.587520px;}
._5{width:82.832400px;}
._4c{width:83.952000px;}
._4d{width:85.188000px;}
._2b{width:93.894824px;}
._3{width:102.654720px;}
._1{width:103.899600px;}
._7{width:130.902000px;}
._8{width:131.918160px;}
._28{width:152.750753px;}
._26{width:156.255760px;}
._27{width:170.550674px;}
._25{width:179.618271px;}
._24{width:191.529161px;}
._3c{width:201.679870px;}
._3b{width:206.991016px;}
._39{width:213.756269px;}
._3a{width:219.612536px;}
._37{width:220.861913px;}
._36{width:228.231157px;}
._48{width:240.120650px;}
._3e{width:247.724006px;}
._33{width:282.129567px;}
._4b{width:285.696000px;}
._44{width:290.075473px;}
._31{width:301.429418px;}
._3d{width:311.079343px;}
._2f{width:315.904306px;}
._35{width:317.492066px;}
._38{width:325.715063px;}
._2c{width:330.682459px;}
._34{width:338.287397px;}
._2e{width:345.014914px;}
._32{width:352.843345px;}
._45{width:366.090480px;}
._46{width:373.687982px;}
._47{width:377.435343px;}
._30{width:387.266558px;}
._2d{width:454.941227px;}
._4a{width:458.716767px;}
._43{width:485.061338px;}
._42{width:488.675503px;}
._49{width:537.383855px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fsd{font-size:41.987205px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs9{font-size:53.966260px;}
.fsc{font-size:54.065223px;}
.fsb{font-size:54.108526px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:63.046179px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y15b{bottom:1.985895px;}
.y158{bottom:1.985899px;}
.yea{bottom:4.480548px;}
.yc4{bottom:5.605170px;}
.ya0{bottom:5.627697px;}
.y15f{bottom:5.914078px;}
.y108{bottom:6.071451px;}
.yb5{bottom:6.071490px;}
.y15d{bottom:6.568761px;}
.y161{bottom:6.568763px;}
.y163{bottom:6.568774px;}
.ye5{bottom:6.756674px;}
.y9b{bottom:7.856414px;}
.y9d{bottom:7.863868px;}
.yee{bottom:7.878308px;}
.yc1{bottom:7.884618px;}
.ybf{bottom:7.892087px;}
.ye7{bottom:7.915646px;}
.y154{bottom:8.537120px;}
.yf1{bottom:8.998393px;}
.yca{bottom:9.005675px;}
.ya5{bottom:9.019208px;}
.y106{bottom:10.904455px;}
.yb3{bottom:10.904495px;}
.ya7{bottom:11.255394px;}
.yf3{bottom:12.396186px;}
.y110{bottom:13.349095px;}
.ye3{bottom:13.349120px;}
.ybd{bottom:13.349126px;}
.yec{bottom:13.516320px;}
.ycc{bottom:13.527146px;}
.ya1{bottom:14.609650px;}
.yc6{bottom:14.648178px;}
.y15a{bottom:15.101443px;}
.y157{bottom:15.101446px;}
.y151{bottom:15.756191px;}
.y99{bottom:15.915000px;}
.y8a{bottom:15.945000px;}
.y153{bottom:21.674489px;}
.ye9{bottom:22.514735px;}
.y9f{bottom:23.591604px;}
.yc3{bottom:23.653801px;}
.y159{bottom:28.238811px;}
.y156{bottom:28.238816px;}
.y147{bottom:30.857551px;}
.y14d{bottom:30.857553px;}
.y14f{bottom:43.968734px;}
.y146{bottom:43.968736px;}
.y14c{bottom:43.968742px;}
.y140{bottom:50.541785px;}
.y145{bottom:57.106106px;}
.y14b{bottom:57.106112px;}
.y5{bottom:57.960000px;}
.y13f{bottom:63.652967px;}
.y144{bottom:70.226017px;}
.y13e{bottom:76.790334px;}
.y4{bottom:79.596000px;}
.y143{bottom:83.363385px;}
.y14a{bottom:83.363390px;}
.y142{bottom:96.474565px;}
.y149{bottom:96.474572px;}
.y3{bottom:98.856000px;}
.y2{bottom:117.756000px;}
.y1{bottom:136.656000px;}
.y88{bottom:156.090000px;}
.y13c{bottom:156.450000px;}
.y97{bottom:158.250000px;}
.y126{bottom:159.150000px;}
.y31{bottom:162.210000px;}
.y104{bottom:162.750000px;}
.y187{bottom:170.310000px;}
.y51{bottom:171.570000px;}
.y30{bottom:180.570000px;}
.y71{bottom:184.170000px;}
.y87{bottom:187.230000px;}
.y13b{bottom:187.410000px;}
.y96{bottom:189.390000px;}
.y125{bottom:190.110000px;}
.y186{bottom:191.010000px;}
.y103{bottom:195.330000px;}
.yd9{bottom:199.470000px;}
.yf0{bottom:200.846719px;}
.y50{bottom:202.530000px;}
.y2f{bottom:203.430000px;}
.y70{bottom:215.310000px;}
.y86{bottom:218.190000px;}
.y13a{bottom:218.550000px;}
.yb1{bottom:218.910000px;}
.y95{bottom:220.350000px;}
.y185{bottom:220.710000px;}
.yc9{bottom:221.080983px;}
.y124{bottom:221.250000px;}
.y2e{bottom:224.130000px;}
.yef{bottom:227.879285px;}
.y102{bottom:228.090000px;}
.y4f{bottom:233.670000px;}
.y184{bottom:241.410000px;}
.y2d{bottom:244.830000px;}
.y6f{bottom:246.270000px;}
.yc8{bottom:248.135276px;}
.y85{bottom:249.330000px;}
.y139{bottom:249.510000px;}
.y94{bottom:251.490000px;}
.y123{bottom:252.210000px;}
.yed{bottom:254.911897px;}
.y101{bottom:260.670000px;}
.y183{bottom:262.110000px;}
.y4e{bottom:264.630000px;}
.y2c{bottom:265.530000px;}
.yc7{bottom:275.189539px;}
.y6e{bottom:277.410000px;}
.y138{bottom:280.650000px;}
.yeb{bottom:281.944508px;}
.ye8{bottom:281.944523px;}
.y93{bottom:282.450000px;}
.y84{bottom:282.630000px;}
.y122{bottom:283.350000px;}
.y2b{bottom:286.230000px;}
.y182{bottom:291.810000px;}
.y100{bottom:293.430000px;}
.y4d{bottom:295.770000px;}
.yc5{bottom:302.243801px;}
.yc2{bottom:302.243816px;}
.y92{bottom:303.150000px;}
.y2a{bottom:306.930000px;}
.y6d{bottom:308.370000px;}
.y83{bottom:311.610000px;}
.y181{bottom:312.510000px;}
.y121{bottom:314.310000px;}
.ye6{bottom:320.215816px;}
.ya4{bottom:321.229728px;}
.yff{bottom:326.190000px;}
.y4c{bottom:326.730000px;}
.y29{bottom:327.630000px;}
.y180{bottom:333.210000px;}
.y6c{bottom:339.555000px;}
.yc0{bottom:342.787828px;}
.y137{bottom:342.795000px;}
.y82{bottom:344.955000px;}
.y120{bottom:345.495000px;}
.ye4{bottom:347.248428px;}
.ya3{bottom:348.213142px;}
.y28{bottom:348.375000px;}
.y17f{bottom:353.955000px;}
.y4b{bottom:357.915000px;}
.yfe{bottom:358.815000px;}
.y27{bottom:369.075000px;}
.ybe{bottom:369.834617px;}
.y6b{bottom:370.515000px;}
.yf2{bottom:370.926606px;}
.y81{bottom:373.035000px;}
.y136{bottom:373.755000px;}
.ya2{bottom:375.196271px;}
.y11f{bottom:376.455000px;}
.y17e{bottom:383.655000px;}
.y4a{bottom:388.875000px;}
.y26{bottom:389.775000px;}
.yfd{bottom:391.575000px;}
.ycb{bottom:396.888880px;}
.y6a{bottom:401.655000px;}
.y9e{bottom:402.179401px;}
.y135{bottom:404.895000px;}
.y80{bottom:405.795000px;}
.y11e{bottom:407.595000px;}
.y17d{bottom:413.355000px;}
.y49{bottom:420.015000px;}
.y25{bottom:422.535000px;}
.yd8{bottom:423.795000px;}
.yfc{bottom:424.335000px;}
.y69{bottom:432.615000px;}
.y17c{bottom:434.055000px;}
.y134{bottom:435.855000px;}
.y7f{bottom:438.555000px;}
.y9c{bottom:442.654096px;}
.yb0{bottom:448.815000px;}
.y48{bottom:450.975000px;}
.y17b{bottom:454.755000px;}
.y24{bottom:455.115000px;}
.yfb{bottom:456.915000px;}
.y68{bottom:463.755000px;}
.yd7{bottom:466.815000px;}
.y133{bottom:466.995000px;}
.y9a{bottom:469.640208px;}
.y11d{bottom:469.695000px;}
.y7e{bottom:471.315000px;}
.y17a{bottom:475.455000px;}
.y23{bottom:475.995000px;}
.y47{bottom:482.115000px;}
.yfa{bottom:489.675000px;}
.yaf{bottom:491.835000px;}
.y22{bottom:494.355000px;}
.y67{bottom:494.715000px;}
.ya6{bottom:496.578614px;}
.yd6{bottom:497.955000px;}
.y11c{bottom:500.655000px;}
.y7d{bottom:503.895000px;}
.y179{bottom:505.155000px;}
.y132{bottom:506.055000px;}
.y46{bottom:513.075000px;}
.y21{bottom:517.395000px;}
.yf9{bottom:522.435000px;}
.yae{bottom:522.975000px;}
.y66{bottom:525.855000px;}
.yd5{bottom:528.915000px;}
.y98{bottom:529.020000px;}
.y11b{bottom:531.795000px;}
.y7c{bottom:536.655000px;}
.y20{bottom:538.095000px;}
.y45{bottom:544.215000px;}
.y178{bottom:546.555000px;}
.yf8{bottom:548.355000px;}
.y131{bottom:552.315000px;}
.yad{bottom:553.935000px;}
.y65{bottom:556.815000px;}
.y1f{bottom:558.795000px;}
.yd4{bottom:560.055000px;}
.y11a{bottom:562.755000px;}
.yf7{bottom:565.635000px;}
.y7b{bottom:569.415000px;}
.y44{bottom:575.175000px;}
.y177{bottom:576.255000px;}
.y1e{bottom:579.495000px;}
.y91{bottom:580.935000px;}
.y130{bottom:583.275000px;}
.yf6{bottom:583.635000px;}
.yac{bottom:585.075000px;}
.y64{bottom:587.955000px;}
.yd3{bottom:591.015000px;}
.y119{bottom:593.895000px;}
.y176{bottom:596.955000px;}
.y1d{bottom:600.015000px;}
.y7a{bottom:601.995000px;}
.y43{bottom:606.345000px;}
.yf5{bottom:607.965000px;}
.y90{bottom:611.925000px;}
.y12f{bottom:614.445000px;}
.yab{bottom:616.065000px;}
.y175{bottom:617.685000px;}
.y63{bottom:618.945000px;}
.y1c{bottom:620.745000px;}
.yd2{bottom:622.185000px;}
.y118{bottom:624.885000px;}
.yf4{bottom:629.385000px;}
.y10e{bottom:630.661976px;}
.y79{bottom:634.785000px;}
.y42{bottom:637.305000px;}
.y1b{bottom:641.445000px;}
.y8f{bottom:643.065000px;}
.y12e{bottom:645.405000px;}
.yaa{bottom:647.205000px;}
.y174{bottom:647.385000px;}
.y62{bottom:650.085000px;}
.yd1{bottom:653.145000px;}
.y10d{bottom:654.907896px;}
.y117{bottom:656.025000px;}
.y1a{bottom:662.145000px;}
.y78{bottom:667.545000px;}
.y41{bottom:668.445000px;}
.yd0{bottom:673.845000px;}
.y8e{bottom:674.025000px;}
.y12d{bottom:676.365000px;}
.y173{bottom:677.085000px;}
.ya9{bottom:678.165000px;}
.y10c{bottom:679.153333px;}
.y61{bottom:681.045000px;}
.y19{bottom:682.845000px;}
.y116{bottom:686.985000px;}
.ycf{bottom:688.425000px;}
.yce{bottom:696.885000px;}
.y172{bottom:697.785000px;}
.ye1{bottom:698.161935px;}
.y40{bottom:699.405000px;}
.y77{bottom:700.125000px;}
.y10b{bottom:703.398770px;}
.y8d{bottom:705.165000px;}
.y12c{bottom:707.505000px;}
.y60{bottom:712.185000px;}
.y18{bottom:715.605000px;}
.ya8{bottom:715.785000px;}
.ybb{bottom:717.211935px;}
.y115{bottom:718.125000px;}
.ye0{bottom:722.407855px;}
.y171{bottom:727.485000px;}
.y10a{bottom:727.644208px;}
.y3f{bottom:730.365000px;}
.y76{bottom:732.885000px;}
.y8c{bottom:736.125000px;}
.y17{bottom:736.305000px;}
.y12b{bottom:738.465000px;}
.yba{bottom:741.457855px;}
.y5f{bottom:743.145000px;}
.ydf{bottom:746.653292px;}
.y170{bottom:748.185000px;}
.y114{bottom:749.085000px;}
.y109{bottom:751.889645px;}
.y16{bottom:756.825000px;}
.y3e{bottom:761.505000px;}
.y75{bottom:765.645000px;}
.yb9{bottom:765.703292px;}
.y8b{bottom:767.265000px;}
.y89{bottom:767.340000px;}
.y16f{bottom:768.885000px;}
.y12a{bottom:769.605000px;}
.yde{bottom:770.898730px;}
.y5e{bottom:774.285000px;}
.y107{bottom:776.135083px;}
.y113{bottom:780.225000px;}
.y15{bottom:783.105000px;}
.y16e{bottom:789.585000px;}
.yb8{bottom:789.948730px;}
.y3d{bottom:792.465000px;}
.ydd{bottom:795.144167px;}
.y14{bottom:798.045000px;}
.y74{bottom:798.225000px;}
.y105{bottom:800.377303px;}
.y129{bottom:800.565000px;}
.y5d{bottom:805.245000px;}
.y112{bottom:811.185000px;}
.yb7{bottom:814.194167px;}
.y13{bottom:817.485000px;}
.y16d{bottom:819.285000px;}
.ydc{bottom:819.389604px;}
.y3c{bottom:823.605000px;}
.y73{bottom:829.365000px;}
.y128{bottom:831.705000px;}
.y10f{bottom:834.312874px;}
.yb6{bottom:838.439604px;}
.y12{bottom:839.985000px;}
.ydb{bottom:843.635042px;}
.y5c{bottom:844.485000px;}
.y111{bottom:848.985000px;}
.y3b{bottom:854.565000px;}
.y72{bottom:860.325000px;}
.y127{bottom:860.505000px;}
.y16c{bottom:860.685000px;}
.y162{bottom:861.575029px;}
.y11{bottom:862.485000px;}
.yb4{bottom:862.685042px;}
.yda{bottom:867.877263px;}
.y5b{bottom:870.045000px;}
.y10{bottom:882.330000px;}
.y160{bottom:882.590114px;}
.y3a{bottom:885.750000px;}
.yb2{bottom:886.927263px;}
.y191{bottom:887.910000px;}
.y16b{bottom:890.430000px;}
.y5a{bottom:891.510000px;}
.yf{bottom:893.310000px;}
.ye2{bottom:901.812834px;}
.y15e{bottom:903.583716px;}
.y190{bottom:908.610000px;}
.y16a{bottom:911.130000px;}
.ye{bottom:914.010000px;}
.y39{bottom:916.710000px;}
.ybc{bottom:920.862834px;}
.y59{bottom:922.470000px;}
.y15c{bottom:923.944456px;}
.y18f{bottom:929.310000px;}
.yd{bottom:932.370000px;}
.y169{bottom:940.830000px;}
.y150{bottom:945.592745px;}
.y155{bottom:945.592761px;}
.y152{bottom:945.592782px;}
.y38{bottom:947.850000px;}
.ycd{bottom:950.550000px;}
.y58{bottom:953.610000px;}
.yc{bottom:956.670000px;}
.y18e{bottom:959.010000px;}
.y168{bottom:961.530000px;}
.y37{bottom:978.810000px;}
.y167{bottom:982.230000px;}
.yb{bottom:984.210000px;}
.y57{bottom:984.570000px;}
.y14e{bottom:984.987393px;}
.y148{bottom:984.987409px;}
.y141{bottom:984.987430px;}
.y13d{bottom:984.987446px;}
.y18d{bottom:988.710000px;}
.y166{bottom:1002.930000px;}
.y36{bottom:1009.950000px;}
.ya{bottom:1011.930000px;}
.y56{bottom:1015.710000px;}
.y18c{bottom:1018.410000px;}
.y165{bottom:1030.110000px;}
.y18b{bottom:1039.110000px;}
.y9{bottom:1039.470000px;}
.y35{bottom:1040.910000px;}
.y55{bottom:1046.670000px;}
.y164{bottom:1065.750000px;}
.y18a{bottom:1068.810000px;}
.y34{bottom:1072.050000px;}
.y54{bottom:1077.810000px;}
.y8{bottom:1079.070000px;}
.y189{bottom:1089.510000px;}
.y33{bottom:1103.010000px;}
.y7{bottom:1106.610000px;}
.y53{bottom:1108.770000px;}
.y188{bottom:1110.210000px;}
.y6{bottom:1134.330000px;}
.y32{bottom:1137.030000px;}
.y52{bottom:1139.940000px;}
.h3d{height:19.706135px;}
.h3e{height:20.338998px;}
.h3f{height:20.360821px;}
.h3c{height:20.993684px;}
.h29{height:22.552088px;}
.h33{height:23.039237px;}
.h1c{height:23.039278px;}
.hf{height:23.049141px;}
.h13{height:25.827775px;}
.h17{height:25.865044px;}
.h24{height:25.895882px;}
.h2b{height:25.912496px;}
.h1f{height:25.933250px;}
.h7{height:26.858672px;}
.ha{height:27.109688px;}
.h18{height:30.374656px;}
.h2f{height:32.670649px;}
.h32{height:32.729371px;}
.h1a{height:32.729411px;}
.h12{height:32.760000px;}
.h25{height:34.938882px;}
.h2c{height:37.151177px;}
.h2d{height:37.151192px;}
.h34{height:37.594541px;}
.h1d{height:37.594582px;}
.h36{height:37.640874px;}
.h39{height:37.989400px;}
.h3a{height:38.735614px;}
.h3b{height:38.735619px;}
.h38{height:38.735679px;}
.h15{height:39.356609px;}
.h21{height:39.422999px;}
.h22{height:39.423014px;}
.h28{height:42.845977px;}
.h11{height:43.246406px;}
.hc{height:45.403945px;}
.h31{height:45.549492px;}
.h16{height:46.772515px;}
.h14{height:46.851567px;}
.h2e{height:46.858287px;}
.h23{height:46.895817px;}
.h2a{height:46.937484px;}
.h20{height:46.975078px;}
.h19{height:48.827871px;}
.h30{height:48.917411px;}
.h26{height:48.956591px;}
.h1b{height:54.734427px;}
.he{height:54.878906px;}
.h1e{height:57.043247px;}
.h3{height:57.410156px;}
.h27{height:58.833281px;}
.h2{height:59.383125px;}
.h4{height:62.402344px;}
.hd{height:63.949219px;}
.h8{height:64.546875px;}
.hb{height:69.065156px;}
.h9{height:70.606406px;}
.h6{height:72.988945px;}
.h10{height:76.219102px;}
.h5{height:85.052461px;}
.h35{height:135.869216px;}
.h37{height:135.869221px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:122.164749px;}
.wf{width:122.631495px;}
.w7{width:122.631499px;}
.w16{width:124.780749px;}
.w12{width:124.780752px;}
.w18{width:125.463184px;}
.w14{width:125.463188px;}
.w17{width:164.878222px;}
.w13{width:164.878226px;}
.wd{width:465.576753px;}
.w10{width:465.760255px;}
.wb{width:465.760257px;}
.wc{width:466.786043px;}
.we{width:466.877686px;}
.wa{width:466.877691px;}
.w9{width:466.877694px;}
.w8{width:466.877698px;}
.w6{width:466.877701px;}
.w5{width:466.877703px;}
.w4{width:636.660000px;}
.w3{width:636.840000px;}
.w1a{width:637.143813px;}
.w19{width:637.143815px;}
.w15{width:637.143817px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:3.298442px;}
.x16{left:4.489259px;}
.x33{left:7.865511px;}
.x1f{left:10.923924px;}
.x18{left:13.505179px;}
.x20{left:14.551794px;}
.x30{left:16.413457px;}
.x15{left:17.994434px;}
.x21{left:19.388955px;}
.x32{left:22.327899px;}
.x3b{left:23.640274px;}
.x3c{left:24.957025px;}
.x2f{left:27.586154px;}
.x14{left:30.377297px;}
.x3a{left:36.790288px;}
.x34{left:44.664547px;}
.x36{left:46.659358px;}
.x10{left:61.950000px;}
.x38{left:69.643444px;}
.x11{left:83.190000px;}
.x29{left:98.988083px;}
.xe{left:101.195987px;}
.x22{left:103.071842px;}
.x2c{left:106.699713px;}
.x1a{left:109.126320px;}
.x24{left:125.998437px;}
.x1{left:127.655987px;}
.x13{left:130.487694px;}
.x28{left:138.221879px;}
.x6{left:144.215987px;}
.x2d{left:148.535987px;}
.x19{left:149.641851px;}
.x17{left:150.764165px;}
.x2b{left:153.389987px;}
.xc{left:154.469987px;}
.x3{left:170.129987px;}
.xd{left:180.749987px;}
.x5{left:188.129987px;}
.xf{left:191.549987px;}
.x4{left:195.149987px;}
.x12{left:210.822297px;}
.x27{left:213.654273px;}
.x1d{left:223.409987px;}
.x23{left:224.472314px;}
.x1e{left:228.089987px;}
.x26{left:231.329987px;}
.xa{left:237.809987px;}
.x2a{left:247.169987px;}
.x1b{left:255.269987px;}
.x8{left:268.229987px;}
.xb{left:272.189987px;}
.x7{left:275.249987px;}
.x31{left:348.299200px;}
.x9{left:446.474987px;}
.x35{left:473.736135px;}
.x39{left:639.270544px;}
.x25{left:680.549987px;}
.x1c{left:691.169987px;}
.x2e{left:707.189987px;}
.x2{left:765.509987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-2.327773pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.769737pt;}
.ls16{letter-spacing:-1.768321pt;}
.lsd{letter-spacing:-1.765084pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.149288pt;}
.lse{letter-spacing:0.168123pt;}
.ls19{letter-spacing:0.198947pt;}
.ls15{letter-spacing:0.239032pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.578299pt;}
.ls7{letter-spacing:11.520000pt;}
.ls6{letter-spacing:36.783360pt;}
.lsb{letter-spacing:38.063360pt;}
.ls1a{letter-spacing:330.869654pt;}
.ls12{letter-spacing:638.218667pt;}
.ws6{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-10.375505pt;}
.ws9{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:127.699608pt;}
.ws1b{word-spacing:127.933784pt;}
.ws14{word-spacing:128.036251pt;}
.ws20{word-spacing:135.327101pt;}
.wsf{word-spacing:163.504847pt;}
.ws1d{word-spacing:163.804682pt;}
.ws1c{word-spacing:171.874705pt;}
.wse{word-spacing:175.401409pt;}
.ws16{word-spacing:175.863803pt;}
.ws17{word-spacing:175.891970pt;}
.wsd{word-spacing:187.355747pt;}
.ws15{word-spacing:187.849655pt;}
.ws12{word-spacing:263.689142pt;}
.ws23{word-spacing:279.587030pt;}
.ws13{word-spacing:280.844565pt;}
.ws1a{word-spacing:280.916618pt;}
.ws21{word-spacing:296.247212pt;}
.ws11{word-spacing:298.408287pt;}
.ws1e{word-spacing:323.658782pt;}
.ws19{word-spacing:340.814204pt;}
.ws22{word-spacing:346.040372pt;}
.ws24{word-spacing:365.770731pt;}
.ws10{word-spacing:375.746076pt;}
._14{margin-left:-4.480000pt;}
._10{margin-left:-3.392000pt;}
._f{margin-left:-2.496000pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.363627pt;}
._9{width:2.871040pt;}
._1f{width:4.074667pt;}
._13{width:4.966827pt;}
._b{width:5.936640pt;}
._a{width:6.863360pt;}
._19{width:8.256000pt;}
._18{width:9.264640pt;}
._e{width:10.304000pt;}
._c{width:11.562667pt;}
._d{width:12.565333pt;}
._1c{width:14.250667pt;}
._15{width:16.928000pt;}
._1a{width:18.602667pt;}
._1b{width:19.575040pt;}
._3f{width:20.608000pt;}
._22{width:21.760000pt;}
._16{width:23.488000pt;}
._17{width:24.448000pt;}
._41{width:25.344000pt;}
._1d{width:26.240000pt;}
._1e{width:27.210667pt;}
._4f{width:29.120000pt;}
._4{width:32.514133pt;}
._20{width:33.450667pt;}
._21{width:34.517333pt;}
._11{width:35.754667pt;}
._12{width:36.864000pt;}
._4e{width:41.664000pt;}
._40{width:42.688000pt;}
._23{width:50.425770pt;}
._29{width:60.670290pt;}
._2a{width:70.942824pt;}
._6{width:72.522240pt;}
._5{width:73.628800pt;}
._4c{width:74.624000pt;}
._4d{width:75.722667pt;}
._2b{width:83.462066pt;}
._3{width:91.248640pt;}
._1{width:92.355200pt;}
._7{width:116.357333pt;}
._8{width:117.260587pt;}
._28{width:135.778447pt;}
._26{width:138.894009pt;}
._27{width:151.600599pt;}
._25{width:159.660685pt;}
._24{width:170.248144pt;}
._3c{width:179.270996pt;}
._3b{width:183.992014pt;}
._39{width:190.005573pt;}
._3a{width:195.211143pt;}
._37{width:196.321701pt;}
._36{width:202.872140pt;}
._48{width:213.440578pt;}
._3e{width:220.199117pt;}
._33{width:250.781837pt;}
._4b{width:253.952000pt;}
._44{width:257.844865pt;}
._31{width:267.937260pt;}
._3d{width:276.514971pt;}
._2f{width:280.803827pt;}
._35{width:282.215170pt;}
._38{width:289.524500pt;}
._2c{width:293.939964pt;}
._34{width:300.699909pt;}
._2e{width:306.679923pt;}
._32{width:313.638529pt;}
._45{width:325.413760pt;}
._46{width:332.167095pt;}
._47{width:335.498082pt;}
._30{width:344.236941pt;}
._2d{width:404.392201pt;}
._4a{width:407.748237pt;}
._43{width:431.165634pt;}
._42{width:434.378225pt;}
._49{width:477.674538pt;}
.fs3{font-size:26.880000pt;}
.fsd{font-size:37.321960pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs9{font-size:47.970009pt;}
.fsc{font-size:48.057976pt;}
.fsb{font-size:48.096467pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:56.041048pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:1.765240pt;}
.y158{bottom:1.765243pt;}
.yea{bottom:3.982710pt;}
.yc4{bottom:4.982373pt;}
.ya0{bottom:5.002397pt;}
.y15f{bottom:5.256958pt;}
.y108{bottom:5.396845pt;}
.yb5{bottom:5.396880pt;}
.y15d{bottom:5.838899pt;}
.y161{bottom:5.838900pt;}
.y163{bottom:5.838910pt;}
.ye5{bottom:6.005932pt;}
.y9b{bottom:6.983479pt;}
.y9d{bottom:6.990105pt;}
.yee{bottom:7.002941pt;}
.yc1{bottom:7.008549pt;}
.ybf{bottom:7.015188pt;}
.ye7{bottom:7.036129pt;}
.y154{bottom:7.588551pt;}
.yf1{bottom:7.998572pt;}
.yca{bottom:8.005045pt;}
.ya5{bottom:8.017074pt;}
.y106{bottom:9.692849pt;}
.yb3{bottom:9.692884pt;}
.ya7{bottom:10.004795pt;}
.yf3{bottom:11.018832pt;}
.y110{bottom:11.865862pt;}
.ye3{bottom:11.865885pt;}
.ybd{bottom:11.865890pt;}
.yec{bottom:12.014506pt;}
.ycc{bottom:12.024130pt;}
.ya1{bottom:12.986356pt;}
.yc6{bottom:13.020603pt;}
.y15a{bottom:13.423505pt;}
.y157{bottom:13.423508pt;}
.y151{bottom:14.005503pt;}
.y99{bottom:14.146667pt;}
.y8a{bottom:14.173333pt;}
.y153{bottom:19.266213pt;}
.ye9{bottom:20.013098pt;}
.y9f{bottom:20.970315pt;}
.yc3{bottom:21.025601pt;}
.y159{bottom:25.101165pt;}
.y156{bottom:25.101170pt;}
.y147{bottom:27.428934pt;}
.y14d{bottom:27.428936pt;}
.y14f{bottom:39.083319pt;}
.y146{bottom:39.083321pt;}
.y14c{bottom:39.083326pt;}
.y140{bottom:44.926031pt;}
.y145{bottom:50.760983pt;}
.y14b{bottom:50.760988pt;}
.y5{bottom:51.520000pt;}
.y13f{bottom:56.580415pt;}
.y144{bottom:62.423126pt;}
.y13e{bottom:68.258074pt;}
.y4{bottom:70.752000pt;}
.y143{bottom:74.100787pt;}
.y14a{bottom:74.100791pt;}
.y142{bottom:85.755169pt;}
.y149{bottom:85.755175pt;}
.y3{bottom:87.872000pt;}
.y2{bottom:104.672000pt;}
.y1{bottom:121.472000pt;}
.y88{bottom:138.746667pt;}
.y13c{bottom:139.066667pt;}
.y97{bottom:140.666667pt;}
.y126{bottom:141.466667pt;}
.y31{bottom:144.186667pt;}
.y104{bottom:144.666667pt;}
.y187{bottom:151.386667pt;}
.y51{bottom:152.506667pt;}
.y30{bottom:160.506667pt;}
.y71{bottom:163.706667pt;}
.y87{bottom:166.426667pt;}
.y13b{bottom:166.586667pt;}
.y96{bottom:168.346667pt;}
.y125{bottom:168.986667pt;}
.y186{bottom:169.786667pt;}
.y103{bottom:173.626667pt;}
.yd9{bottom:177.306667pt;}
.yf0{bottom:178.530417pt;}
.y50{bottom:180.026667pt;}
.y2f{bottom:180.826667pt;}
.y70{bottom:191.386667pt;}
.y86{bottom:193.946667pt;}
.y13a{bottom:194.266667pt;}
.yb1{bottom:194.586667pt;}
.y95{bottom:195.866667pt;}
.y185{bottom:196.186667pt;}
.yc9{bottom:196.516429pt;}
.y124{bottom:196.666667pt;}
.y2e{bottom:199.226667pt;}
.yef{bottom:202.559365pt;}
.y102{bottom:202.746667pt;}
.y4f{bottom:207.706667pt;}
.y184{bottom:214.586667pt;}
.y2d{bottom:217.626667pt;}
.y6f{bottom:218.906667pt;}
.yc8{bottom:220.564689pt;}
.y85{bottom:221.626667pt;}
.y139{bottom:221.786667pt;}
.y94{bottom:223.546667pt;}
.y123{bottom:224.186667pt;}
.yed{bottom:226.588353pt;}
.y101{bottom:231.706667pt;}
.y183{bottom:232.986667pt;}
.y4e{bottom:235.226667pt;}
.y2c{bottom:236.026667pt;}
.yc7{bottom:244.612923pt;}
.y6e{bottom:246.586667pt;}
.y138{bottom:249.466667pt;}
.yeb{bottom:250.617341pt;}
.ye8{bottom:250.617354pt;}
.y93{bottom:251.066667pt;}
.y84{bottom:251.226667pt;}
.y122{bottom:251.866667pt;}
.y2b{bottom:254.426667pt;}
.y182{bottom:259.386667pt;}
.y100{bottom:260.826667pt;}
.y4d{bottom:262.906667pt;}
.yc5{bottom:268.661157pt;}
.yc2{bottom:268.661170pt;}
.y92{bottom:269.466667pt;}
.y2a{bottom:272.826667pt;}
.y6d{bottom:274.106667pt;}
.y83{bottom:276.986667pt;}
.y181{bottom:277.786667pt;}
.y121{bottom:279.386667pt;}
.ye6{bottom:284.636281pt;}
.ya4{bottom:285.537536pt;}
.yff{bottom:289.946667pt;}
.y4c{bottom:290.426667pt;}
.y29{bottom:291.226667pt;}
.y180{bottom:296.186667pt;}
.y6c{bottom:301.826667pt;}
.yc0{bottom:304.700292pt;}
.y137{bottom:304.706667pt;}
.y82{bottom:306.626667pt;}
.y120{bottom:307.106667pt;}
.ye4{bottom:308.665269pt;}
.ya3{bottom:309.522793pt;}
.y28{bottom:309.666667pt;}
.y17f{bottom:314.626667pt;}
.y4b{bottom:318.146667pt;}
.yfe{bottom:318.946667pt;}
.y27{bottom:328.066667pt;}
.ybe{bottom:328.741882pt;}
.y6b{bottom:329.346667pt;}
.yf2{bottom:329.712538pt;}
.y81{bottom:331.586667pt;}
.y136{bottom:332.226667pt;}
.ya2{bottom:333.507797pt;}
.y11f{bottom:334.626667pt;}
.y17e{bottom:341.026667pt;}
.y4a{bottom:345.666667pt;}
.y26{bottom:346.466667pt;}
.yfd{bottom:348.066667pt;}
.ycb{bottom:352.790116pt;}
.y6a{bottom:357.026667pt;}
.y9e{bottom:357.492801pt;}
.y135{bottom:359.906667pt;}
.y80{bottom:360.706667pt;}
.y11e{bottom:362.306667pt;}
.y17d{bottom:367.426667pt;}
.y49{bottom:373.346667pt;}
.y25{bottom:375.586667pt;}
.yd8{bottom:376.706667pt;}
.yfc{bottom:377.186667pt;}
.y69{bottom:384.546667pt;}
.y17c{bottom:385.826667pt;}
.y134{bottom:387.426667pt;}
.y7f{bottom:389.826667pt;}
.y9c{bottom:393.470308pt;}
.yb0{bottom:398.946667pt;}
.y48{bottom:400.866667pt;}
.y17b{bottom:404.226667pt;}
.y24{bottom:404.546667pt;}
.yfb{bottom:406.146667pt;}
.y68{bottom:412.226667pt;}
.yd7{bottom:414.946667pt;}
.y133{bottom:415.106667pt;}
.y9a{bottom:417.457962pt;}
.y11d{bottom:417.506667pt;}
.y7e{bottom:418.946667pt;}
.y17a{bottom:422.626667pt;}
.y23{bottom:423.106667pt;}
.y47{bottom:428.546667pt;}
.yfa{bottom:435.266667pt;}
.yaf{bottom:437.186667pt;}
.y22{bottom:439.426667pt;}
.y67{bottom:439.746667pt;}
.ya6{bottom:441.403212pt;}
.yd6{bottom:442.626667pt;}
.y11c{bottom:445.026667pt;}
.y7d{bottom:447.906667pt;}
.y179{bottom:449.026667pt;}
.y132{bottom:449.826667pt;}
.y46{bottom:456.066667pt;}
.y21{bottom:459.906667pt;}
.yf9{bottom:464.386667pt;}
.yae{bottom:464.866667pt;}
.y66{bottom:467.426667pt;}
.yd5{bottom:470.146667pt;}
.y98{bottom:470.240000pt;}
.y11b{bottom:472.706667pt;}
.y7c{bottom:477.026667pt;}
.y20{bottom:478.306667pt;}
.y45{bottom:483.746667pt;}
.y178{bottom:485.826667pt;}
.yf8{bottom:487.426667pt;}
.y131{bottom:490.946667pt;}
.yad{bottom:492.386667pt;}
.y65{bottom:494.946667pt;}
.y1f{bottom:496.706667pt;}
.yd4{bottom:497.826667pt;}
.y11a{bottom:500.226667pt;}
.yf7{bottom:502.786667pt;}
.y7b{bottom:506.146667pt;}
.y44{bottom:511.266667pt;}
.y177{bottom:512.226667pt;}
.y1e{bottom:515.106667pt;}
.y91{bottom:516.386667pt;}
.y130{bottom:518.466667pt;}
.yf6{bottom:518.786667pt;}
.yac{bottom:520.066667pt;}
.y64{bottom:522.626667pt;}
.yd3{bottom:525.346667pt;}
.y119{bottom:527.906667pt;}
.y176{bottom:530.626667pt;}
.y1d{bottom:533.346667pt;}
.y7a{bottom:535.106667pt;}
.y43{bottom:538.973333pt;}
.yf5{bottom:540.413333pt;}
.y90{bottom:543.933333pt;}
.y12f{bottom:546.173333pt;}
.yab{bottom:547.613333pt;}
.y175{bottom:549.053333pt;}
.y63{bottom:550.173333pt;}
.y1c{bottom:551.773333pt;}
.yd2{bottom:553.053333pt;}
.y118{bottom:555.453333pt;}
.yf4{bottom:559.453333pt;}
.y10e{bottom:560.588423pt;}
.y79{bottom:564.253333pt;}
.y42{bottom:566.493333pt;}
.y1b{bottom:570.173333pt;}
.y8f{bottom:571.613333pt;}
.y12e{bottom:573.693333pt;}
.yaa{bottom:575.293333pt;}
.y174{bottom:575.453333pt;}
.y62{bottom:577.853333pt;}
.yd1{bottom:580.573333pt;}
.y10d{bottom:582.140352pt;}
.y117{bottom:583.133333pt;}
.y1a{bottom:588.573333pt;}
.y78{bottom:593.373333pt;}
.y41{bottom:594.173333pt;}
.yd0{bottom:598.973333pt;}
.y8e{bottom:599.133333pt;}
.y12d{bottom:601.213333pt;}
.y173{bottom:601.853333pt;}
.ya9{bottom:602.813333pt;}
.y10c{bottom:603.691852pt;}
.y61{bottom:605.373333pt;}
.y19{bottom:606.973333pt;}
.y116{bottom:610.653333pt;}
.ycf{bottom:611.933333pt;}
.yce{bottom:619.453333pt;}
.y172{bottom:620.253333pt;}
.ye1{bottom:620.588387pt;}
.y40{bottom:621.693333pt;}
.y77{bottom:622.333333pt;}
.y10b{bottom:625.243351pt;}
.y8d{bottom:626.813333pt;}
.y12c{bottom:628.893333pt;}
.y60{bottom:633.053333pt;}
.y18{bottom:636.093333pt;}
.ya8{bottom:636.253333pt;}
.ybb{bottom:637.521720pt;}
.y115{bottom:638.333333pt;}
.ye0{bottom:642.140315pt;}
.y171{bottom:646.653333pt;}
.y10a{bottom:646.794851pt;}
.y3f{bottom:649.213333pt;}
.y76{bottom:651.453333pt;}
.y8c{bottom:654.333333pt;}
.y17{bottom:654.493333pt;}
.y12b{bottom:656.413333pt;}
.yba{bottom:659.073649pt;}
.y5f{bottom:660.573333pt;}
.ydf{bottom:663.691815pt;}
.y170{bottom:665.053333pt;}
.y114{bottom:665.853333pt;}
.y109{bottom:668.346351pt;}
.y16{bottom:672.733333pt;}
.y3e{bottom:676.893333pt;}
.y75{bottom:680.573333pt;}
.yb9{bottom:680.625149pt;}
.y8b{bottom:682.013333pt;}
.y89{bottom:682.080000pt;}
.y16f{bottom:683.453333pt;}
.y12a{bottom:684.093333pt;}
.yde{bottom:685.243315pt;}
.y5e{bottom:688.253333pt;}
.y107{bottom:689.897851pt;}
.y113{bottom:693.533333pt;}
.y15{bottom:696.093333pt;}
.y16e{bottom:701.853333pt;}
.yb8{bottom:702.176649pt;}
.y3d{bottom:704.413333pt;}
.ydd{bottom:706.794815pt;}
.y14{bottom:709.373333pt;}
.y74{bottom:709.533333pt;}
.y105{bottom:711.446492pt;}
.y129{bottom:711.613333pt;}
.y5d{bottom:715.773333pt;}
.y112{bottom:721.053333pt;}
.yb7{bottom:723.728149pt;}
.y13{bottom:726.653333pt;}
.y16d{bottom:728.253333pt;}
.ydc{bottom:728.346315pt;}
.y3c{bottom:732.093333pt;}
.y73{bottom:737.213333pt;}
.y128{bottom:739.293333pt;}
.y10f{bottom:741.611444pt;}
.yb6{bottom:745.279648pt;}
.y12{bottom:746.653333pt;}
.ydb{bottom:749.897815pt;}
.y5c{bottom:750.653333pt;}
.y111{bottom:754.653333pt;}
.y3b{bottom:759.613333pt;}
.y72{bottom:764.733333pt;}
.y127{bottom:764.893333pt;}
.y16c{bottom:765.053333pt;}
.y162{bottom:765.844470pt;}
.y11{bottom:766.653333pt;}
.yb4{bottom:766.831148pt;}
.yda{bottom:771.446456pt;}
.y5b{bottom:773.373333pt;}
.y10{bottom:784.293333pt;}
.y160{bottom:784.524546pt;}
.y3a{bottom:787.333333pt;}
.yb2{bottom:788.379789pt;}
.y191{bottom:789.253333pt;}
.y16b{bottom:791.493333pt;}
.y5a{bottom:792.453333pt;}
.yf{bottom:794.053333pt;}
.ye2{bottom:801.611408pt;}
.y15e{bottom:803.185526pt;}
.y190{bottom:807.653333pt;}
.y16a{bottom:809.893333pt;}
.ye{bottom:812.453333pt;}
.y39{bottom:814.853333pt;}
.ybc{bottom:818.544741pt;}
.y59{bottom:819.973333pt;}
.y15c{bottom:821.283961pt;}
.y18f{bottom:826.053333pt;}
.yd{bottom:828.773333pt;}
.y169{bottom:836.293333pt;}
.y150{bottom:840.526884pt;}
.y155{bottom:840.526899pt;}
.y152{bottom:840.526917pt;}
.y38{bottom:842.533333pt;}
.ycd{bottom:844.933333pt;}
.y58{bottom:847.653333pt;}
.yc{bottom:850.373333pt;}
.y18e{bottom:852.453333pt;}
.y168{bottom:854.693333pt;}
.y37{bottom:870.053333pt;}
.y167{bottom:873.093333pt;}
.yb{bottom:874.853333pt;}
.y57{bottom:875.173333pt;}
.y14e{bottom:875.544350pt;}
.y148{bottom:875.544364pt;}
.y141{bottom:875.544383pt;}
.y13d{bottom:875.544397pt;}
.y18d{bottom:878.853333pt;}
.y166{bottom:891.493333pt;}
.y36{bottom:897.733333pt;}
.ya{bottom:899.493333pt;}
.y56{bottom:902.853333pt;}
.y18c{bottom:905.253333pt;}
.y165{bottom:915.653333pt;}
.y18b{bottom:923.653333pt;}
.y9{bottom:923.973333pt;}
.y35{bottom:925.253333pt;}
.y55{bottom:930.373333pt;}
.y164{bottom:947.333333pt;}
.y18a{bottom:950.053333pt;}
.y34{bottom:952.933333pt;}
.y54{bottom:958.053333pt;}
.y8{bottom:959.173333pt;}
.y189{bottom:968.453333pt;}
.y33{bottom:980.453333pt;}
.y7{bottom:983.653333pt;}
.y53{bottom:985.573333pt;}
.y188{bottom:986.853333pt;}
.y6{bottom:1008.293333pt;}
.y32{bottom:1010.693333pt;}
.y52{bottom:1013.280000pt;}
.h3d{height:17.516564pt;}
.h3e{height:18.079109pt;}
.h3f{height:18.098507pt;}
.h3c{height:18.661053pt;}
.h29{height:20.046301pt;}
.h33{height:20.479322pt;}
.h1c{height:20.479358pt;}
.hf{height:20.488125pt;}
.h13{height:22.958022pt;}
.h17{height:22.991151pt;}
.h24{height:23.018562pt;}
.h2b{height:23.033330pt;}
.h1f{height:23.051778pt;}
.h7{height:23.874375pt;}
.ha{height:24.097500pt;}
.h18{height:26.999694pt;}
.h2f{height:29.040577pt;}
.h32{height:29.092774pt;}
.h1a{height:29.092810pt;}
.h12{height:29.120000pt;}
.h25{height:31.056784pt;}
.h2c{height:33.023269pt;}
.h2d{height:33.023282pt;}
.h34{height:33.417370pt;}
.h1d{height:33.417406pt;}
.h36{height:33.458554pt;}
.h39{height:33.768356pt;}
.h3a{height:34.431656pt;}
.h3b{height:34.431661pt;}
.h38{height:34.431715pt;}
.h15{height:34.983653pt;}
.h21{height:35.042666pt;}
.h22{height:35.042679pt;}
.h28{height:38.085312pt;}
.h11{height:38.441250pt;}
.hc{height:40.359063pt;}
.h31{height:40.488438pt;}
.h16{height:41.575569pt;}
.h14{height:41.645838pt;}
.h2e{height:41.651810pt;}
.h23{height:41.685171pt;}
.h2a{height:41.722208pt;}
.h20{height:41.755625pt;}
.h19{height:43.402552pt;}
.h30{height:43.482143pt;}
.h26{height:43.516970pt;}
.h1b{height:48.652824pt;}
.he{height:48.781250pt;}
.h1e{height:50.705108pt;}
.h3{height:51.031250pt;}
.h27{height:52.296250pt;}
.h2{height:52.785000pt;}
.h4{height:55.468750pt;}
.hd{height:56.843750pt;}
.h8{height:57.375000pt;}
.hb{height:61.391250pt;}
.h9{height:62.761250pt;}
.h6{height:64.879063pt;}
.h10{height:67.750312pt;}
.h5{height:75.602187pt;}
.h35{height:120.772636pt;}
.h37{height:120.772641pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:108.590888pt;}
.wf{width:109.005773pt;}
.w7{width:109.005777pt;}
.w16{width:110.916221pt;}
.w12{width:110.916224pt;}
.w18{width:111.522831pt;}
.w14{width:111.522834pt;}
.w17{width:146.558419pt;}
.w13{width:146.558423pt;}
.wd{width:413.846003pt;}
.w10{width:414.009115pt;}
.wb{width:414.009118pt;}
.wc{width:414.920927pt;}
.we{width:415.002388pt;}
.wa{width:415.002392pt;}
.w9{width:415.002395pt;}
.w8{width:415.002398pt;}
.w6{width:415.002401pt;}
.w5{width:415.002403pt;}
.w4{width:565.920000pt;}
.w3{width:566.080000pt;}
.w1a{width:566.350056pt;}
.w19{width:566.350058pt;}
.w15{width:566.350059pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:2.931949pt;}
.x16{left:3.990452pt;}
.x33{left:6.991566pt;}
.x1f{left:9.710155pt;}
.x18{left:12.004603pt;}
.x20{left:12.934928pt;}
.x30{left:14.589740pt;}
.x15{left:15.995052pt;}
.x21{left:17.234627pt;}
.x32{left:19.847021pt;}
.x3b{left:21.013577pt;}
.x3c{left:22.184022pt;}
.x2f{left:24.521026pt;}
.x14{left:27.002042pt;}
.x3a{left:32.702479pt;}
.x34{left:39.701820pt;}
.x36{left:41.474985pt;}
.x10{left:55.066667pt;}
.x38{left:61.905284pt;}
.x11{left:73.946667pt;}
.x29{left:87.989407pt;}
.xe{left:89.951988pt;}
.x22{left:91.619415pt;}
.x2c{left:94.844189pt;}
.x1a{left:97.001173pt;}
.x24{left:111.998610pt;}
.x1{left:113.471988pt;}
.x13{left:115.989061pt;}
.x28{left:122.863892pt;}
.x6{left:128.191988pt;}
.x2d{left:132.031988pt;}
.x19{left:133.014978pt;}
.x17{left:134.012591pt;}
.x2b{left:136.346655pt;}
.xc{left:137.306655pt;}
.x3{left:151.226655pt;}
.xd{left:160.666655pt;}
.x5{left:167.226655pt;}
.xf{left:170.266655pt;}
.x4{left:173.466655pt;}
.x12{left:187.397597pt;}
.x27{left:189.914910pt;}
.x1d{left:198.586655pt;}
.x23{left:199.530946pt;}
.x1e{left:202.746655pt;}
.x26{left:205.626655pt;}
.xa{left:211.386655pt;}
.x2a{left:219.706655pt;}
.x1b{left:226.906655pt;}
.x8{left:238.426655pt;}
.xb{left:241.946655pt;}
.x7{left:244.666655pt;}
.x31{left:309.599289pt;}
.x9{left:396.866655pt;}
.x35{left:421.098787pt;}
.x39{left:568.240484pt;}
.x25{left:604.933322pt;}
.x1c{left:614.373322pt;}
.x2e{left:628.613322pt;}
.x2{left:680.453322pt;}
}




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