
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3c8763bbce1e8d79fdda3cb6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4621e1c483ecf60d3be37fb6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ad675d82af569c74fa90fd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_538a9d73e1360e87008f1a48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ac5b3541d4f565a27f5b3e20.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_96c0ab50b505e482a81b4d78.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.960000px;}
.ls26{letter-spacing:-0.786000px;}
.ls9{letter-spacing:-0.579600px;}
.ls18{letter-spacing:-0.550800px;}
.ls5{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.431400px;}
.ls23{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.357000px;}
.ls8{letter-spacing:-0.303000px;}
.lsf{letter-spacing:-0.240600px;}
.ls1c{letter-spacing:-0.186600px;}
.ls39{letter-spacing:-0.175800px;}
.lsb{letter-spacing:-0.115800px;}
.ls3b{letter-spacing:-0.107400px;}
.ls1b{letter-spacing:-0.082200px;}
.ls2c{letter-spacing:-0.069600px;}
.ls19{letter-spacing:-0.064800px;}
.ls16{letter-spacing:-0.058320px;}
.ls37{letter-spacing:-0.055440px;}
.ls36{letter-spacing:-0.049680px;}
.ls2d{letter-spacing:-0.041040px;}
.ls7{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.023760px;}
.ls3a{letter-spacing:0.025200px;}
.ls1a{letter-spacing:0.038880px;}
.ls2b{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.066000px;}
.ls1e{letter-spacing:0.140400px;}
.ls14{letter-spacing:0.174000px;}
.ls29{letter-spacing:0.174240px;}
.ls22{letter-spacing:0.175200px;}
.ls34{letter-spacing:0.186600px;}
.ls1f{letter-spacing:0.220200px;}
.ls6{letter-spacing:0.256200px;}
.ls21{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.327000px;}
.ls27{letter-spacing:0.354240px;}
.ls30{letter-spacing:0.479400px;}
.ls33{letter-spacing:0.479520px;}
.ls38{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.617760px;}
.ls31{letter-spacing:0.636000px;}
.ls35{letter-spacing:0.654000px;}
.lse{letter-spacing:0.744000px;}
.ls2a{letter-spacing:0.858000px;}
.ls20{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls2e{letter-spacing:2.106720px;}
.ls13{letter-spacing:5.214240px;}
.ls10{letter-spacing:5.706720px;}
.ls32{letter-spacing:12.330720px;}
.lsc{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls2f{letter-spacing:42.570720px;}
.ls1d{letter-spacing:46.026720px;}
.ls28{letter-spacing:202.638240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.613240px;}
.ws1e{word-spacing:-14.531760px;}
.ws1{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.159760px;}
.ws1d{word-spacing:-14.117760px;}
.ws11{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.725960px;}
.ws17{word-spacing:-13.692360px;}
.ws19{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.544640px;}
.ws1f{word-spacing:-13.530960px;}
.ws12{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.464720px;}
.ws1a{word-spacing:-13.456080px;}
.ws1c{word-spacing:-13.450320px;}
.wsa{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.436160px;}
.ws20{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.319160px;}
.ws1b{word-spacing:-13.202760px;}
.ws4{word-spacing:-9.437760px;}
.ws15{word-spacing:-9.422880px;}
.wsb{word-spacing:-9.113880px;}
.ws5{word-spacing:-8.786880px;}
.wsc{word-spacing:-8.722080px;}
.wse{word-spacing:-8.704680px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-582.617760px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._15{margin-left:-2.290560px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._c{width:2.689200px;}
._f{width:3.711600px;}
._d{width:4.915440px;}
._b{width:5.937120px;}
._a{width:7.423200px;}
._17{width:8.545680px;}
._8{width:9.598800px;}
._9{width:10.645200px;}
._e{width:11.803440px;}
._13{width:14.760720px;}
._16{width:16.115280px;}
._10{width:17.210880px;}
._11{width:18.286560px;}
._18{width:20.437920px;}
._2e{width:22.344000px;}
._2f{width:23.391120px;}
._28{width:25.055760px;}
._23{width:26.294400px;}
._29{width:27.478800px;}
._2d{width:28.956240px;}
._1c{width:33.405840px;}
._27{width:34.541280px;}
._35{width:35.990400px;}
._30{width:37.914720px;}
._21{width:39.023280px;}
._22{width:40.079040px;}
._1d{width:41.772240px;}
._1e{width:43.067040px;}
._1f{width:48.883680px;}
._20{width:49.899600px;}
._33{width:53.226240px;}
._32{width:54.799920px;}
._34{width:56.287680px;}
._2c{width:57.528960px;}
._2b{width:58.564800px;}
._38{width:62.853840px;}
._37{width:64.016640px;}
._36{width:67.813920px;}
._31{width:79.122240px;}
._2a{width:110.242800px;}
._26{width:111.273120px;}
._25{width:112.348800px;}
._14{width:116.464320px;}
._1a{width:179.649600px;}
._19{width:189.132480px;}
._12{width:202.638240px;}
._24{width:315.532800px;}
._1b{width:2595.317040px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(68,114,196);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.960000px;}
.y76{bottom:4.140000px;}
.y105{bottom:4.680000px;}
.yba{bottom:5.220000px;}
.y6d{bottom:5.400000px;}
.y73{bottom:6.120000px;}
.ybb{bottom:6.480000px;}
.y83{bottom:6.660000px;}
.yd4{bottom:7.020000px;}
.ye9{bottom:7.740000px;}
.ye7{bottom:7.920000px;}
.yf9{bottom:8.100000px;}
.y67{bottom:8.460000px;}
.y131{bottom:8.820000px;}
.y133{bottom:9.000000px;}
.ya0{bottom:9.720000px;}
.yd7{bottom:9.900000px;}
.y9d{bottom:10.080000px;}
.yb0{bottom:10.440000px;}
.y6b{bottom:10.620000px;}
.y70{bottom:11.340000px;}
.y108{bottom:11.520000px;}
.yf6{bottom:12.240000px;}
.y68{bottom:12.780000px;}
.y98{bottom:13.320000px;}
.y12e{bottom:13.680000px;}
.y7b{bottom:14.040000px;}
.yb3{bottom:14.940000px;}
.yaf{bottom:16.920000px;}
.y7a{bottom:18.180000px;}
.yf5{bottom:20.385000px;}
.yb7{bottom:20.520000px;}
.y9b{bottom:22.314000px;}
.y75{bottom:22.320000px;}
.y135{bottom:22.350000px;}
.y7d{bottom:22.500000px;}
.y12d{bottom:23.220000px;}
.yfc{bottom:23.760000px;}
.y72{bottom:24.300000px;}
.y82{bottom:25.020000px;}
.yd3{bottom:25.380000px;}
.y9f{bottom:28.080000px;}
.yd6{bottom:28.260000px;}
.y6a{bottom:28.980000px;}
.y6f{bottom:29.700000px;}
.y79{bottom:32.400000px;}
.yb6{bottom:38.730000px;}
.y6{bottom:58.320000px;}
.y161{bottom:89.316000px;}
.y19e{bottom:91.476000px;}
.yf4{bottom:94.176000px;}
.y77{bottom:96.156000px;}
.y19f{bottom:99.216000px;}
.y30{bottom:103.536000px;}
.y118{bottom:105.516000px;}
.y9c{bottom:106.596000px;}
.y160{bottom:110.376000px;}
.y19d{bottom:112.176000px;}
.y64{bottom:112.536000px;}
.y172{bottom:113.436000px;}
.y74{bottom:115.236000px;}
.y2f{bottom:124.596000px;}
.y14a{bottom:125.496000px;}
.y117{bottom:126.576000px;}
.ycd{bottom:127.116000px;}
.y15f{bottom:131.436000px;}
.y9a{bottom:131.616000px;}
.y19c{bottom:133.236000px;}
.y63{bottom:133.596000px;}
.y171{bottom:134.496000px;}
.yf3{bottom:136.296000px;}
.y2e{bottom:145.656000px;}
.y149{bottom:146.556000px;}
.y116{bottom:147.636000px;}
.ycc{bottom:148.176000px;}
.y71{bottom:152.490000px;}
.y19b{bottom:154.290000px;}
.y62{bottom:154.650000px;}
.y170{bottom:155.550000px;}
.yf2{bottom:157.350000px;}
.y2d{bottom:166.710000px;}
.y115{bottom:168.690000px;}
.y99{bottom:168.870000px;}
.y15e{bottom:173.550000px;}
.y19a{bottom:175.350000px;}
.y61{bottom:175.710000px;}
.y148{bottom:176.610000px;}
.ycb{bottom:178.230000px;}
.yf1{bottom:178.410000px;}
.y2c{bottom:187.770000px;}
.y97{bottom:187.950000px;}
.y114{bottom:189.750000px;}
.y6e{bottom:191.730000px;}
.y15d{bottom:194.610000px;}
.y199{bottom:196.410000px;}
.y60{bottom:196.770000px;}
.y147{bottom:197.670000px;}
.yca{bottom:199.290000px;}
.yf0{bottom:199.470000px;}
.y2b{bottom:208.830000px;}
.y113{bottom:210.810000px;}
.y15c{bottom:215.670000px;}
.y198{bottom:217.470000px;}
.y5f{bottom:217.830000px;}
.y146{bottom:218.730000px;}
.yc9{bottom:220.350000px;}
.yef{bottom:220.530000px;}
.y2a{bottom:229.890000px;}
.y112{bottom:231.870000px;}
.y96{bottom:232.230000px;}
.y15b{bottom:232.770000px;}
.y6c{bottom:236.370000px;}
.y197{bottom:238.530000px;}
.y5e{bottom:238.890000px;}
.y145{bottom:239.790000px;}
.yc8{bottom:241.410000px;}
.yee{bottom:241.590000px;}
.y29{bottom:250.950000px;}
.y111{bottom:252.930000px;}
.y95{bottom:253.290000px;}
.y69{bottom:256.710000px;}
.y196{bottom:259.590000px;}
.y5d{bottom:259.950000px;}
.y144{bottom:260.850000px;}
.yc7{bottom:262.470000px;}
.yed{bottom:262.650000px;}
.y28{bottom:272.010000px;}
.y110{bottom:273.990000px;}
.y94{bottom:274.350000px;}
.yec{bottom:277.590000px;}
.y195{bottom:280.650000px;}
.y5c{bottom:281.010000px;}
.y143{bottom:281.910000px;}
.yc6{bottom:283.530000px;}
.y27{bottom:293.070000px;}
.y10f{bottom:295.050000px;}
.y93{bottom:295.410000px;}
.yeb{bottom:296.670000px;}
.y66{bottom:300.630000px;}
.y194{bottom:301.710000px;}
.y5b{bottom:302.070000px;}
.y142{bottom:302.970000px;}
.yc5{bottom:304.590000px;}
.y26{bottom:314.130000px;}
.y10e{bottom:316.110000px;}
.y92{bottom:316.470000px;}
.y193{bottom:322.770000px;}
.y5a{bottom:323.130000px;}
.y141{bottom:324.030000px;}
.yc4{bottom:325.650000px;}
.yea{bottom:334.155000px;}
.y25{bottom:335.235000px;}
.y10d{bottom:337.035000px;}
.y91{bottom:337.575000px;}
.y140{bottom:339.015000px;}
.y192{bottom:343.875000px;}
.y59{bottom:344.235000px;}
.y16f{bottom:345.135000px;}
.yc3{bottom:346.755000px;}
.ye8{bottom:353.235000px;}
.y24{bottom:356.295000px;}
.y10c{bottom:358.095000px;}
.y90{bottom:358.635000px;}
.y191{bottom:364.935000px;}
.y58{bottom:365.295000px;}
.y16e{bottom:366.195000px;}
.yc2{bottom:367.815000px;}
.y10b{bottom:373.215000px;}
.ye6{bottom:375.915000px;}
.y13f{bottom:377.175000px;}
.y23{bottom:377.355000px;}
.y8f{bottom:379.695000px;}
.y190{bottom:385.995000px;}
.y57{bottom:386.355000px;}
.y16d{bottom:387.255000px;}
.yc1{bottom:388.875000px;}
.y10a{bottom:392.295000px;}
.y13e{bottom:396.255000px;}
.y22{bottom:398.235000px;}
.y65{bottom:398.415000px;}
.ye5{bottom:398.775000px;}
.y8e{bottom:400.755000px;}
.y18f{bottom:407.055000px;}
.y56{bottom:407.415000px;}
.y16c{bottom:408.315000px;}
.yc0{bottom:409.935000px;}
.y109{bottom:411.195000px;}
.ye4{bottom:417.855000px;}
.y21{bottom:419.295000px;}
.y8d{bottom:421.815000px;}
.y18e{bottom:428.115000px;}
.y55{bottom:428.475000px;}
.y16b{bottom:429.375000px;}
.ybf{bottom:430.995000px;}
.y13d{bottom:433.695000px;}
.y20{bottom:440.355000px;}
.y8c{bottom:442.875000px;}
.ye3{bottom:443.775000px;}
.y15a{bottom:444.315000px;}
.y107{bottom:448.635000px;}
.y18d{bottom:449.175000px;}
.y54{bottom:449.535000px;}
.y16a{bottom:450.435000px;}
.ybe{bottom:452.055000px;}
.y13c{bottom:452.775000px;}
.y1f{bottom:461.415000px;}
.y8b{bottom:463.935000px;}
.ye2{bottom:464.835000px;}
.y159{bottom:465.375000px;}
.y18c{bottom:470.235000px;}
.y53{bottom:470.595000px;}
.y169{bottom:471.495000px;}
.y13b{bottom:471.675000px;}
.ybd{bottom:473.115000px;}
.y106{bottom:475.095000px;}
.y1e{bottom:482.475000px;}
.y8a{bottom:484.995000px;}
.ye1{bottom:485.895000px;}
.y158{bottom:486.435000px;}
.y13a{bottom:490.755000px;}
.y18b{bottom:491.295000px;}
.y52{bottom:491.655000px;}
.y168{bottom:492.555000px;}
.ybc{bottom:494.175000px;}
.y104{bottom:500.655000px;}
.y1d{bottom:503.535000px;}
.y89{bottom:506.055000px;}
.ye0{bottom:506.955000px;}
.y157{bottom:507.495000px;}
.yb9{bottom:509.115000px;}
.y139{bottom:509.835000px;}
.y18a{bottom:512.355000px;}
.y51{bottom:512.715000px;}
.y167{bottom:513.615000px;}
.y103{bottom:520.275000px;}
.y88{bottom:527.115000px;}
.ydf{bottom:528.015000px;}
.y156{bottom:528.555000px;}
.y138{bottom:528.915000px;}
.yb8{bottom:530.535000px;}
.y189{bottom:533.415000px;}
.y50{bottom:533.775000px;}
.y166{bottom:534.675000px;}
.y1c{bottom:547.815000px;}
.y137{bottom:547.995000px;}
.y87{bottom:548.175000px;}
.yde{bottom:549.075000px;}
.y155{bottom:549.615000px;}
.y188{bottom:554.475000px;}
.y4f{bottom:554.835000px;}
.y165{bottom:555.735000px;}
.y102{bottom:564.555000px;}
.y136{bottom:567.075000px;}
.yb5{bottom:567.795000px;}
.y86{bottom:569.235000px;}
.ydd{bottom:570.135000px;}
.y154{bottom:570.675000px;}
.y187{bottom:575.535000px;}
.y4e{bottom:575.895000px;}
.y164{bottom:576.795000px;}
.y1b{bottom:578.055000px;}
.y85{bottom:584.175000px;}
.y101{bottom:585.615000px;}
.y134{bottom:586.155000px;}
.ydc{bottom:591.195000px;}
.y153{bottom:591.735000px;}
.y186{bottom:596.625000px;}
.y4d{bottom:596.985000px;}
.y163{bottom:597.885000px;}
.y1a{bottom:599.145000px;}
.y84{bottom:603.285000px;}
.y100{bottom:606.705000px;}
.ydb{bottom:612.285000px;}
.y152{bottom:612.825000px;}
.y162{bottom:614.805000px;}
.y185{bottom:617.685000px;}
.y4c{bottom:618.045000px;}
.y19{bottom:620.205000px;}
.yb4{bottom:621.465000px;}
.y132{bottom:623.445000px;}
.yff{bottom:627.765000px;}
.yda{bottom:633.345000px;}
.y151{bottom:633.885000px;}
.y184{bottom:638.745000px;}
.y4b{bottom:639.105000px;}
.y81{bottom:640.545000px;}
.y18{bottom:641.265000px;}
.yfe{bottom:642.705000px;}
.y130{bottom:647.385000px;}
.y150{bottom:648.825000px;}
.yd9{bottom:654.405000px;}
.yb2{bottom:658.905000px;}
.y183{bottom:659.805000px;}
.y4a{bottom:659.985000px;}
.y17{bottom:662.325000px;}
.yd8{bottom:669.345000px;}
.yfd{bottom:669.885000px;}
.y14f{bottom:670.425000px;}
.y12f{bottom:671.145000px;}
.y80{bottom:680.505000px;}
.y182{bottom:680.865000px;}
.y49{bottom:681.045000px;}
.y16{bottom:683.385000px;}
.yd5{bottom:688.425000px;}
.yb1{bottom:688.785000px;}
.y12c{bottom:690.225000px;}
.y14e{bottom:692.025000px;}
.y181{bottom:700.665000px;}
.y48{bottom:702.105000px;}
.y15{bottom:704.445000px;}
.yae{bottom:707.865000px;}
.yfb{bottom:712.905000px;}
.y14d{bottom:713.625000px;}
.y7e{bottom:717.945000px;}
.y180{bottom:720.285000px;}
.y47{bottom:723.165000px;}
.y14{bottom:725.505000px;}
.yd2{bottom:731.625000px;}
.y12b{bottom:735.225000px;}
.y14c{bottom:736.305000px;}
.y7c{bottom:736.845000px;}
.y17f{bottom:740.085000px;}
.y46{bottom:744.225000px;}
.y13{bottom:746.565000px;}
.yfa{bottom:751.605000px;}
.y12a{bottom:756.285000px;}
.y14b{bottom:757.905000px;}
.y17e{bottom:759.885000px;}
.y45{bottom:765.285000px;}
.y12{bottom:767.625000px;}
.yd1{bottom:771.945000px;}
.y78{bottom:774.285000px;}
.y129{bottom:777.345000px;}
.y17d{bottom:779.685000px;}
.y44{bottom:786.345000px;}
.y11{bottom:788.685000px;}
.yf8{bottom:789.045000px;}
.y128{bottom:798.405000px;}
.y17c{bottom:799.305000px;}
.y43{bottom:807.405000px;}
.yd0{bottom:809.385000px;}
.y10{bottom:809.745000px;}
.yf7{bottom:812.085000px;}
.y17b{bottom:819.105000px;}
.y127{bottom:819.465000px;}
.y42{bottom:828.465000px;}
.yf{bottom:830.805000px;}
.y17a{bottom:838.905000px;}
.y126{bottom:840.525000px;}
.ycf{bottom:846.825000px;}
.y41{bottom:849.525000px;}
.ye{bottom:851.865000px;}
.y179{bottom:858.705000px;}
.y125{bottom:861.585000px;}
.yce{bottom:865.770000px;}
.y40{bottom:870.630000px;}
.yd{bottom:872.790000px;}
.yad{bottom:872.970000px;}
.y178{bottom:878.550000px;}
.y124{bottom:882.690000px;}
.y3f{bottom:891.690000px;}
.yac{bottom:894.030000px;}
.yc{bottom:896.190000px;}
.y177{bottom:898.170000px;}
.y123{bottom:903.750000px;}
.y3e{bottom:912.750000px;}
.yab{bottom:915.090000px;}
.y176{bottom:917.970000px;}
.yb{bottom:922.470000px;}
.y122{bottom:924.810000px;}
.y3d{bottom:933.810000px;}
.yaa{bottom:936.150000px;}
.y175{bottom:937.770000px;}
.ya{bottom:939.210000px;}
.y121{bottom:945.870000px;}
.y3c{bottom:954.870000px;}
.ya9{bottom:957.210000px;}
.y174{bottom:957.570000px;}
.y9{bottom:961.530000px;}
.y120{bottom:966.930000px;}
.y3b{bottom:975.930000px;}
.y173{bottom:977.190000px;}
.ya8{bottom:978.270000px;}
.y8{bottom:986.550000px;}
.y11f{bottom:987.990000px;}
.y3a{bottom:996.990000px;}
.ya7{bottom:999.330000px;}
.y11e{bottom:1009.050000px;}
.y39{bottom:1018.050000px;}
.y7{bottom:1020.210000px;}
.ya6{bottom:1020.390000px;}
.y11d{bottom:1030.110000px;}
.y38{bottom:1039.110000px;}
.ya5{bottom:1041.450000px;}
.y11c{bottom:1051.170000px;}
.y37{bottom:1060.170000px;}
.y5{bottom:1060.530000px;}
.ya4{bottom:1062.510000px;}
.y11b{bottom:1072.230000px;}
.y36{bottom:1081.230000px;}
.ya3{bottom:1083.570000px;}
.y4{bottom:1092.750000px;}
.y11a{bottom:1093.290000px;}
.ya2{bottom:1098.510000px;}
.y35{bottom:1102.290000px;}
.y119{bottom:1114.350000px;}
.ya1{bottom:1117.590000px;}
.y34{bottom:1123.350000px;}
.y3{bottom:1124.790000px;}
.y9e{bottom:1136.700000px;}
.y33{bottom:1144.440000px;}
.y2{bottom:1157.040000px;}
.y32{bottom:1165.500000px;}
.y1{bottom:1191.600000px;}
.y31{bottom:1193.400000px;}
.h15{height:18.180000px;}
.h17{height:18.216000px;}
.h11{height:18.360000px;}
.h1a{height:18.396000px;}
.h28{height:18.900000px;}
.hd{height:19.620000px;}
.h1e{height:20.700000px;}
.h2f{height:20.880000px;}
.h22{height:21.960000px;}
.h21{height:22.140000px;}
.h25{height:22.320000px;}
.h2c{height:23.040000px;}
.h2d{height:23.220000px;}
.h18{height:24.300000px;}
.h29{height:24.840000px;}
.h2a{height:25.740000px;}
.h27{height:26.460000px;}
.hb{height:27.036000px;}
.h1c{height:29.160000px;}
.h1b{height:31.140000px;}
.h24{height:34.596000px;}
.h10{height:36.540000px;}
.h2e{height:36.576000px;}
.h13{height:36.720000px;}
.h23{height:36.756000px;}
.h2b{height:37.440000px;}
.h26{height:37.980000px;}
.hf{height:38.520000px;}
.h7{height:38.671172px;}
.h16{height:39.240000px;}
.h1f{height:39.600000px;}
.h19{height:42.300000px;}
.h20{height:42.480000px;}
.hc{height:43.200000px;}
.he{height:43.920000px;}
.h12{height:46.620000px;}
.h1d{height:52.956000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.ha{height:59.551172px;}
.h5{height:61.189805px;}
.h14{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:39.060000px;}
.wf{width:39.240000px;}
.wa{width:39.960000px;}
.w14{width:41.040000px;}
.we{width:44.100000px;}
.w19{width:46.620000px;}
.w22{width:47.196000px;}
.w1e{width:48.600000px;}
.w23{width:51.840000px;}
.w4{width:55.080000px;}
.w5{width:57.456000px;}
.w27{width:57.816000px;}
.w2c{width:59.616000px;}
.w32{width:62.460000px;}
.w2d{width:65.160000px;}
.w18{width:70.416000px;}
.w9{width:71.676000px;}
.w13{width:78.336000px;}
.w1d{width:91.836000px;}
.w33{width:102.996000px;}
.w2e{width:115.596000px;}
.w31{width:118.476000px;}
.w29{width:126.216000px;}
.w6{width:129.960000px;}
.w1a{width:131.796000px;}
.w10{width:142.056000px;}
.w15{width:143.136000px;}
.w1f{width:144.936000px;}
.wb{width:146.736000px;}
.w11{width:147.456000px;}
.w20{width:151.020000px;}
.w24{width:151.410000px;}
.w1b{width:153.180000px;}
.w16{width:155.160000px;}
.w25{width:155.340000px;}
.wc{width:155.880000px;}
.w2a{width:159.660000px;}
.w7{width:168.150000px;}
.w34{width:224.850000px;}
.w30{width:272.910000px;}
.w3{width:305.175000px;}
.w1c{width:345.135000px;}
.w8{width:365.835000px;}
.w12{width:370.515000px;}
.w17{width:378.615000px;}
.w21{width:383.835000px;}
.w2b{width:398.415000px;}
.w26{width:405.975000px;}
.wd{width:424.185000px;}
.w2f{width:511.125000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2f{left:-32.940000px;}
.xf{left:-27.000000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x26{left:13.500000px;}
.x2c{left:47.700000px;}
.x17{left:51.120000px;}
.x1{left:53.999987px;}
.x39{left:67.499987px;}
.x1b{left:80.999987px;}
.x3{left:87.120000px;}
.xa{left:88.559987px;}
.x3a{left:94.535987px;}
.x2{left:108.035987px;}
.x16{left:137.015987px;}
.x11{left:138.635987px;}
.x21{left:151.229987px;}
.x9{left:162.569987px;}
.x31{left:173.910000px;}
.x36{left:175.349987px;}
.x8{left:202.709987px;}
.x37{left:206.309987px;}
.x10{left:231.329987px;}
.x32{left:237.090000px;}
.x20{left:245.549987px;}
.x38{left:261.929987px;}
.x34{left:290.954987px;}
.x33{left:340.815000px;}
.x4{left:393.015000px;}
.x23{left:400.215000px;}
.xb{left:421.455000px;}
.x1c{left:434.055000px;}
.x27{left:446.474987px;}
.x5{left:448.995000px;}
.x29{left:457.455000px;}
.x12{left:479.625000px;}
.x28{left:482.865000px;}
.x24{left:492.765000px;}
.xc{left:494.025000px;}
.x18{left:501.405000px;}
.x1d{left:505.185000px;}
.x6{left:507.165000px;}
.x2a{left:515.985000px;}
.x13{left:524.445000px;}
.xd{left:534.885000px;}
.x25{left:542.085000px;}
.x19{left:543.165000px;}
.x1e{left:552.525000px;}
.x2b{left:555.765000px;}
.x14{left:564.405000px;}
.x30{left:566.565000px;}
.x2d{left:573.225000px;}
.x7{left:638.025000px;}
.xe{left:682.350000px;}
.x1f{left:685.050000px;}
.x1a{left:687.030000px;}
.x2e{left:689.550000px;}
.x15{left:707.190000px;}
.x35{left:770.549987px;}
.x3b{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls26{letter-spacing:-0.698667pt;}
.ls9{letter-spacing:-0.515200pt;}
.ls18{letter-spacing:-0.489600pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.383467pt;}
.ls23{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.317333pt;}
.ls8{letter-spacing:-0.269333pt;}
.lsf{letter-spacing:-0.213867pt;}
.ls1c{letter-spacing:-0.165867pt;}
.ls39{letter-spacing:-0.156267pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls3b{letter-spacing:-0.095467pt;}
.ls1b{letter-spacing:-0.073067pt;}
.ls2c{letter-spacing:-0.061867pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls16{letter-spacing:-0.051840pt;}
.ls37{letter-spacing:-0.049280pt;}
.ls36{letter-spacing:-0.044160pt;}
.ls2d{letter-spacing:-0.036480pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.021120pt;}
.ls3a{letter-spacing:0.022400pt;}
.ls1a{letter-spacing:0.034560pt;}
.ls2b{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058667pt;}
.ls1e{letter-spacing:0.124800pt;}
.ls14{letter-spacing:0.154667pt;}
.ls29{letter-spacing:0.154880pt;}
.ls22{letter-spacing:0.155733pt;}
.ls34{letter-spacing:0.165867pt;}
.ls1f{letter-spacing:0.195733pt;}
.ls6{letter-spacing:0.227733pt;}
.ls21{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.290667pt;}
.ls27{letter-spacing:0.314880pt;}
.ls30{letter-spacing:0.426133pt;}
.ls33{letter-spacing:0.426240pt;}
.ls38{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.549120pt;}
.ls31{letter-spacing:0.565333pt;}
.ls35{letter-spacing:0.581333pt;}
.lse{letter-spacing:0.661333pt;}
.ls2a{letter-spacing:0.762667pt;}
.ls20{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:1.872640pt;}
.ls13{letter-spacing:4.634880pt;}
.ls10{letter-spacing:5.072640pt;}
.ls32{letter-spacing:10.960640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls2f{letter-spacing:37.840640pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls28{letter-spacing:180.122880pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws9{word-spacing:-12.989547pt;}
.ws1e{word-spacing:-12.917120pt;}
.ws1{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.586453pt;}
.ws1d{word-spacing:-12.549120pt;}
.ws11{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.200853pt;}
.ws17{word-spacing:-12.170987pt;}
.ws19{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.039680pt;}
.ws1f{word-spacing:-12.027520pt;}
.ws12{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.968640pt;}
.ws1a{word-spacing:-11.960960pt;}
.ws1c{word-spacing:-11.955840pt;}
.wsa{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.943253pt;}
.ws20{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.839253pt;}
.ws1b{word-spacing:-11.735787pt;}
.ws4{word-spacing:-8.389120pt;}
.ws15{word-spacing:-8.375893pt;}
.wsb{word-spacing:-8.101227pt;}
.ws5{word-spacing:-7.810560pt;}
.wsc{word-spacing:-7.752960pt;}
.wse{word-spacing:-7.737493pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.882453pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._15{margin-left:-2.036053pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._c{width:2.390400pt;}
._f{width:3.299200pt;}
._d{width:4.369280pt;}
._b{width:5.277440pt;}
._a{width:6.598400pt;}
._17{width:7.596160pt;}
._8{width:8.532267pt;}
._9{width:9.462400pt;}
._e{width:10.491947pt;}
._13{width:13.120640pt;}
._16{width:14.324693pt;}
._10{width:15.298560pt;}
._11{width:16.254720pt;}
._18{width:18.167040pt;}
._2e{width:19.861333pt;}
._2f{width:20.792107pt;}
._28{width:22.271787pt;}
._23{width:23.372800pt;}
._29{width:24.425600pt;}
._2d{width:25.738880pt;}
._1c{width:29.694080pt;}
._27{width:30.703360pt;}
._35{width:31.991467pt;}
._30{width:33.701973pt;}
._21{width:34.687360pt;}
._22{width:35.625813pt;}
._1d{width:37.130880pt;}
._1e{width:38.281813pt;}
._1f{width:43.452160pt;}
._20{width:44.355200pt;}
._33{width:47.312213pt;}
._32{width:48.711040pt;}
._34{width:50.033493pt;}
._2c{width:51.136853pt;}
._2b{width:52.057600pt;}
._38{width:55.870080pt;}
._37{width:56.903680pt;}
._36{width:60.279040pt;}
._31{width:70.330880pt;}
._2a{width:97.993600pt;}
._26{width:98.909440pt;}
._25{width:99.865600pt;}
._14{width:103.523840pt;}
._1a{width:159.688533pt;}
._19{width:168.117760pt;}
._12{width:180.122880pt;}
._24{width:280.473600pt;}
._1b{width:2306.948480pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.520000pt;}
.y76{bottom:3.680000pt;}
.y105{bottom:4.160000pt;}
.yba{bottom:4.640000pt;}
.y6d{bottom:4.800000pt;}
.y73{bottom:5.440000pt;}
.ybb{bottom:5.760000pt;}
.y83{bottom:5.920000pt;}
.yd4{bottom:6.240000pt;}
.ye9{bottom:6.880000pt;}
.ye7{bottom:7.040000pt;}
.yf9{bottom:7.200000pt;}
.y67{bottom:7.520000pt;}
.y131{bottom:7.840000pt;}
.y133{bottom:8.000000pt;}
.ya0{bottom:8.640000pt;}
.yd7{bottom:8.800000pt;}
.y9d{bottom:8.960000pt;}
.yb0{bottom:9.280000pt;}
.y6b{bottom:9.440000pt;}
.y70{bottom:10.080000pt;}
.y108{bottom:10.240000pt;}
.yf6{bottom:10.880000pt;}
.y68{bottom:11.360000pt;}
.y98{bottom:11.840000pt;}
.y12e{bottom:12.160000pt;}
.y7b{bottom:12.480000pt;}
.yb3{bottom:13.280000pt;}
.yaf{bottom:15.040000pt;}
.y7a{bottom:16.160000pt;}
.yf5{bottom:18.120000pt;}
.yb7{bottom:18.240000pt;}
.y9b{bottom:19.834667pt;}
.y75{bottom:19.840000pt;}
.y135{bottom:19.866667pt;}
.y7d{bottom:20.000000pt;}
.y12d{bottom:20.640000pt;}
.yfc{bottom:21.120000pt;}
.y72{bottom:21.600000pt;}
.y82{bottom:22.240000pt;}
.yd3{bottom:22.560000pt;}
.y9f{bottom:24.960000pt;}
.yd6{bottom:25.120000pt;}
.y6a{bottom:25.760000pt;}
.y6f{bottom:26.400000pt;}
.y79{bottom:28.800000pt;}
.yb6{bottom:34.426667pt;}
.y6{bottom:51.840000pt;}
.y161{bottom:79.392000pt;}
.y19e{bottom:81.312000pt;}
.yf4{bottom:83.712000pt;}
.y77{bottom:85.472000pt;}
.y19f{bottom:88.192000pt;}
.y30{bottom:92.032000pt;}
.y118{bottom:93.792000pt;}
.y9c{bottom:94.752000pt;}
.y160{bottom:98.112000pt;}
.y19d{bottom:99.712000pt;}
.y64{bottom:100.032000pt;}
.y172{bottom:100.832000pt;}
.y74{bottom:102.432000pt;}
.y2f{bottom:110.752000pt;}
.y14a{bottom:111.552000pt;}
.y117{bottom:112.512000pt;}
.ycd{bottom:112.992000pt;}
.y15f{bottom:116.832000pt;}
.y9a{bottom:116.992000pt;}
.y19c{bottom:118.432000pt;}
.y63{bottom:118.752000pt;}
.y171{bottom:119.552000pt;}
.yf3{bottom:121.152000pt;}
.y2e{bottom:129.472000pt;}
.y149{bottom:130.272000pt;}
.y116{bottom:131.232000pt;}
.ycc{bottom:131.712000pt;}
.y71{bottom:135.546667pt;}
.y19b{bottom:137.146667pt;}
.y62{bottom:137.466667pt;}
.y170{bottom:138.266667pt;}
.yf2{bottom:139.866667pt;}
.y2d{bottom:148.186667pt;}
.y115{bottom:149.946667pt;}
.y99{bottom:150.106667pt;}
.y15e{bottom:154.266667pt;}
.y19a{bottom:155.866667pt;}
.y61{bottom:156.186667pt;}
.y148{bottom:156.986667pt;}
.ycb{bottom:158.426667pt;}
.yf1{bottom:158.586667pt;}
.y2c{bottom:166.906667pt;}
.y97{bottom:167.066667pt;}
.y114{bottom:168.666667pt;}
.y6e{bottom:170.426667pt;}
.y15d{bottom:172.986667pt;}
.y199{bottom:174.586667pt;}
.y60{bottom:174.906667pt;}
.y147{bottom:175.706667pt;}
.yca{bottom:177.146667pt;}
.yf0{bottom:177.306667pt;}
.y2b{bottom:185.626667pt;}
.y113{bottom:187.386667pt;}
.y15c{bottom:191.706667pt;}
.y198{bottom:193.306667pt;}
.y5f{bottom:193.626667pt;}
.y146{bottom:194.426667pt;}
.yc9{bottom:195.866667pt;}
.yef{bottom:196.026667pt;}
.y2a{bottom:204.346667pt;}
.y112{bottom:206.106667pt;}
.y96{bottom:206.426667pt;}
.y15b{bottom:206.906667pt;}
.y6c{bottom:210.106667pt;}
.y197{bottom:212.026667pt;}
.y5e{bottom:212.346667pt;}
.y145{bottom:213.146667pt;}
.yc8{bottom:214.586667pt;}
.yee{bottom:214.746667pt;}
.y29{bottom:223.066667pt;}
.y111{bottom:224.826667pt;}
.y95{bottom:225.146667pt;}
.y69{bottom:228.186667pt;}
.y196{bottom:230.746667pt;}
.y5d{bottom:231.066667pt;}
.y144{bottom:231.866667pt;}
.yc7{bottom:233.306667pt;}
.yed{bottom:233.466667pt;}
.y28{bottom:241.786667pt;}
.y110{bottom:243.546667pt;}
.y94{bottom:243.866667pt;}
.yec{bottom:246.746667pt;}
.y195{bottom:249.466667pt;}
.y5c{bottom:249.786667pt;}
.y143{bottom:250.586667pt;}
.yc6{bottom:252.026667pt;}
.y27{bottom:260.506667pt;}
.y10f{bottom:262.266667pt;}
.y93{bottom:262.586667pt;}
.yeb{bottom:263.706667pt;}
.y66{bottom:267.226667pt;}
.y194{bottom:268.186667pt;}
.y5b{bottom:268.506667pt;}
.y142{bottom:269.306667pt;}
.yc5{bottom:270.746667pt;}
.y26{bottom:279.226667pt;}
.y10e{bottom:280.986667pt;}
.y92{bottom:281.306667pt;}
.y193{bottom:286.906667pt;}
.y5a{bottom:287.226667pt;}
.y141{bottom:288.026667pt;}
.yc4{bottom:289.466667pt;}
.yea{bottom:297.026667pt;}
.y25{bottom:297.986667pt;}
.y10d{bottom:299.586667pt;}
.y91{bottom:300.066667pt;}
.y140{bottom:301.346667pt;}
.y192{bottom:305.666667pt;}
.y59{bottom:305.986667pt;}
.y16f{bottom:306.786667pt;}
.yc3{bottom:308.226667pt;}
.ye8{bottom:313.986667pt;}
.y24{bottom:316.706667pt;}
.y10c{bottom:318.306667pt;}
.y90{bottom:318.786667pt;}
.y191{bottom:324.386667pt;}
.y58{bottom:324.706667pt;}
.y16e{bottom:325.506667pt;}
.yc2{bottom:326.946667pt;}
.y10b{bottom:331.746667pt;}
.ye6{bottom:334.146667pt;}
.y13f{bottom:335.266667pt;}
.y23{bottom:335.426667pt;}
.y8f{bottom:337.506667pt;}
.y190{bottom:343.106667pt;}
.y57{bottom:343.426667pt;}
.y16d{bottom:344.226667pt;}
.yc1{bottom:345.666667pt;}
.y10a{bottom:348.706667pt;}
.y13e{bottom:352.226667pt;}
.y22{bottom:353.986667pt;}
.y65{bottom:354.146667pt;}
.ye5{bottom:354.466667pt;}
.y8e{bottom:356.226667pt;}
.y18f{bottom:361.826667pt;}
.y56{bottom:362.146667pt;}
.y16c{bottom:362.946667pt;}
.yc0{bottom:364.386667pt;}
.y109{bottom:365.506667pt;}
.ye4{bottom:371.426667pt;}
.y21{bottom:372.706667pt;}
.y8d{bottom:374.946667pt;}
.y18e{bottom:380.546667pt;}
.y55{bottom:380.866667pt;}
.y16b{bottom:381.666667pt;}
.ybf{bottom:383.106667pt;}
.y13d{bottom:385.506667pt;}
.y20{bottom:391.426667pt;}
.y8c{bottom:393.666667pt;}
.ye3{bottom:394.466667pt;}
.y15a{bottom:394.946667pt;}
.y107{bottom:398.786667pt;}
.y18d{bottom:399.266667pt;}
.y54{bottom:399.586667pt;}
.y16a{bottom:400.386667pt;}
.ybe{bottom:401.826667pt;}
.y13c{bottom:402.466667pt;}
.y1f{bottom:410.146667pt;}
.y8b{bottom:412.386667pt;}
.ye2{bottom:413.186667pt;}
.y159{bottom:413.666667pt;}
.y18c{bottom:417.986667pt;}
.y53{bottom:418.306667pt;}
.y169{bottom:419.106667pt;}
.y13b{bottom:419.266667pt;}
.ybd{bottom:420.546667pt;}
.y106{bottom:422.306667pt;}
.y1e{bottom:428.866667pt;}
.y8a{bottom:431.106667pt;}
.ye1{bottom:431.906667pt;}
.y158{bottom:432.386667pt;}
.y13a{bottom:436.226667pt;}
.y18b{bottom:436.706667pt;}
.y52{bottom:437.026667pt;}
.y168{bottom:437.826667pt;}
.ybc{bottom:439.266667pt;}
.y104{bottom:445.026667pt;}
.y1d{bottom:447.586667pt;}
.y89{bottom:449.826667pt;}
.ye0{bottom:450.626667pt;}
.y157{bottom:451.106667pt;}
.yb9{bottom:452.546667pt;}
.y139{bottom:453.186667pt;}
.y18a{bottom:455.426667pt;}
.y51{bottom:455.746667pt;}
.y167{bottom:456.546667pt;}
.y103{bottom:462.466667pt;}
.y88{bottom:468.546667pt;}
.ydf{bottom:469.346667pt;}
.y156{bottom:469.826667pt;}
.y138{bottom:470.146667pt;}
.yb8{bottom:471.586667pt;}
.y189{bottom:474.146667pt;}
.y50{bottom:474.466667pt;}
.y166{bottom:475.266667pt;}
.y1c{bottom:486.946667pt;}
.y137{bottom:487.106667pt;}
.y87{bottom:487.266667pt;}
.yde{bottom:488.066667pt;}
.y155{bottom:488.546667pt;}
.y188{bottom:492.866667pt;}
.y4f{bottom:493.186667pt;}
.y165{bottom:493.986667pt;}
.y102{bottom:501.826667pt;}
.y136{bottom:504.066667pt;}
.yb5{bottom:504.706667pt;}
.y86{bottom:505.986667pt;}
.ydd{bottom:506.786667pt;}
.y154{bottom:507.266667pt;}
.y187{bottom:511.586667pt;}
.y4e{bottom:511.906667pt;}
.y164{bottom:512.706667pt;}
.y1b{bottom:513.826667pt;}
.y85{bottom:519.266667pt;}
.y101{bottom:520.546667pt;}
.y134{bottom:521.026667pt;}
.ydc{bottom:525.506667pt;}
.y153{bottom:525.986667pt;}
.y186{bottom:530.333333pt;}
.y4d{bottom:530.653333pt;}
.y163{bottom:531.453333pt;}
.y1a{bottom:532.573333pt;}
.y84{bottom:536.253333pt;}
.y100{bottom:539.293333pt;}
.ydb{bottom:544.253333pt;}
.y152{bottom:544.733333pt;}
.y162{bottom:546.493333pt;}
.y185{bottom:549.053333pt;}
.y4c{bottom:549.373333pt;}
.y19{bottom:551.293333pt;}
.yb4{bottom:552.413333pt;}
.y132{bottom:554.173333pt;}
.yff{bottom:558.013333pt;}
.yda{bottom:562.973333pt;}
.y151{bottom:563.453333pt;}
.y184{bottom:567.773333pt;}
.y4b{bottom:568.093333pt;}
.y81{bottom:569.373333pt;}
.y18{bottom:570.013333pt;}
.yfe{bottom:571.293333pt;}
.y130{bottom:575.453333pt;}
.y150{bottom:576.733333pt;}
.yd9{bottom:581.693333pt;}
.yb2{bottom:585.693333pt;}
.y183{bottom:586.493333pt;}
.y4a{bottom:586.653333pt;}
.y17{bottom:588.733333pt;}
.yd8{bottom:594.973333pt;}
.yfd{bottom:595.453333pt;}
.y14f{bottom:595.933333pt;}
.y12f{bottom:596.573333pt;}
.y80{bottom:604.893333pt;}
.y182{bottom:605.213333pt;}
.y49{bottom:605.373333pt;}
.y16{bottom:607.453333pt;}
.yd5{bottom:611.933333pt;}
.yb1{bottom:612.253333pt;}
.y12c{bottom:613.533333pt;}
.y14e{bottom:615.133333pt;}
.y181{bottom:622.813333pt;}
.y48{bottom:624.093333pt;}
.y15{bottom:626.173333pt;}
.yae{bottom:629.213333pt;}
.yfb{bottom:633.693333pt;}
.y14d{bottom:634.333333pt;}
.y7e{bottom:638.173333pt;}
.y180{bottom:640.253333pt;}
.y47{bottom:642.813333pt;}
.y14{bottom:644.893333pt;}
.yd2{bottom:650.333333pt;}
.y12b{bottom:653.533333pt;}
.y14c{bottom:654.493333pt;}
.y7c{bottom:654.973333pt;}
.y17f{bottom:657.853333pt;}
.y46{bottom:661.533333pt;}
.y13{bottom:663.613333pt;}
.yfa{bottom:668.093333pt;}
.y12a{bottom:672.253333pt;}
.y14b{bottom:673.693333pt;}
.y17e{bottom:675.453333pt;}
.y45{bottom:680.253333pt;}
.y12{bottom:682.333333pt;}
.yd1{bottom:686.173333pt;}
.y78{bottom:688.253333pt;}
.y129{bottom:690.973333pt;}
.y17d{bottom:693.053333pt;}
.y44{bottom:698.973333pt;}
.y11{bottom:701.053333pt;}
.yf8{bottom:701.373333pt;}
.y128{bottom:709.693333pt;}
.y17c{bottom:710.493333pt;}
.y43{bottom:717.693333pt;}
.yd0{bottom:719.453333pt;}
.y10{bottom:719.773333pt;}
.yf7{bottom:721.853333pt;}
.y17b{bottom:728.093333pt;}
.y127{bottom:728.413333pt;}
.y42{bottom:736.413333pt;}
.yf{bottom:738.493333pt;}
.y17a{bottom:745.693333pt;}
.y126{bottom:747.133333pt;}
.ycf{bottom:752.733333pt;}
.y41{bottom:755.133333pt;}
.ye{bottom:757.213333pt;}
.y179{bottom:763.293333pt;}
.y125{bottom:765.853333pt;}
.yce{bottom:769.573333pt;}
.y40{bottom:773.893333pt;}
.yd{bottom:775.813333pt;}
.yad{bottom:775.973333pt;}
.y178{bottom:780.933333pt;}
.y124{bottom:784.613333pt;}
.y3f{bottom:792.613333pt;}
.yac{bottom:794.693333pt;}
.yc{bottom:796.613333pt;}
.y177{bottom:798.373333pt;}
.y123{bottom:803.333333pt;}
.y3e{bottom:811.333333pt;}
.yab{bottom:813.413333pt;}
.y176{bottom:815.973333pt;}
.yb{bottom:819.973333pt;}
.y122{bottom:822.053333pt;}
.y3d{bottom:830.053333pt;}
.yaa{bottom:832.133333pt;}
.y175{bottom:833.573333pt;}
.ya{bottom:834.853333pt;}
.y121{bottom:840.773333pt;}
.y3c{bottom:848.773333pt;}
.ya9{bottom:850.853333pt;}
.y174{bottom:851.173333pt;}
.y9{bottom:854.693333pt;}
.y120{bottom:859.493333pt;}
.y3b{bottom:867.493333pt;}
.y173{bottom:868.613333pt;}
.ya8{bottom:869.573333pt;}
.y8{bottom:876.933333pt;}
.y11f{bottom:878.213333pt;}
.y3a{bottom:886.213333pt;}
.ya7{bottom:888.293333pt;}
.y11e{bottom:896.933333pt;}
.y39{bottom:904.933333pt;}
.y7{bottom:906.853333pt;}
.ya6{bottom:907.013333pt;}
.y11d{bottom:915.653333pt;}
.y38{bottom:923.653333pt;}
.ya5{bottom:925.733333pt;}
.y11c{bottom:934.373333pt;}
.y37{bottom:942.373333pt;}
.y5{bottom:942.693333pt;}
.ya4{bottom:944.453333pt;}
.y11b{bottom:953.093333pt;}
.y36{bottom:961.093333pt;}
.ya3{bottom:963.173333pt;}
.y4{bottom:971.333333pt;}
.y11a{bottom:971.813333pt;}
.ya2{bottom:976.453333pt;}
.y35{bottom:979.813333pt;}
.y119{bottom:990.533333pt;}
.ya1{bottom:993.413333pt;}
.y34{bottom:998.533333pt;}
.y3{bottom:999.813333pt;}
.y9e{bottom:1010.400000pt;}
.y33{bottom:1017.280000pt;}
.y2{bottom:1028.480000pt;}
.y32{bottom:1036.000000pt;}
.y1{bottom:1059.200000pt;}
.y31{bottom:1060.800000pt;}
.h15{height:16.160000pt;}
.h17{height:16.192000pt;}
.h11{height:16.320000pt;}
.h1a{height:16.352000pt;}
.h28{height:16.800000pt;}
.hd{height:17.440000pt;}
.h1e{height:18.400000pt;}
.h2f{height:18.560000pt;}
.h22{height:19.520000pt;}
.h21{height:19.680000pt;}
.h25{height:19.840000pt;}
.h2c{height:20.480000pt;}
.h2d{height:20.640000pt;}
.h18{height:21.600000pt;}
.h29{height:22.080000pt;}
.h2a{height:22.880000pt;}
.h27{height:23.520000pt;}
.hb{height:24.032000pt;}
.h1c{height:25.920000pt;}
.h1b{height:27.680000pt;}
.h24{height:30.752000pt;}
.h10{height:32.480000pt;}
.h2e{height:32.512000pt;}
.h13{height:32.640000pt;}
.h23{height:32.672000pt;}
.h2b{height:33.280000pt;}
.h26{height:33.760000pt;}
.hf{height:34.240000pt;}
.h7{height:34.374375pt;}
.h16{height:34.880000pt;}
.h1f{height:35.200000pt;}
.h19{height:37.600000pt;}
.h20{height:37.760000pt;}
.hc{height:38.400000pt;}
.he{height:39.040000pt;}
.h12{height:41.440000pt;}
.h1d{height:47.072000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.ha{height:52.934375pt;}
.h5{height:54.390938pt;}
.h14{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:34.720000pt;}
.wf{width:34.880000pt;}
.wa{width:35.520000pt;}
.w14{width:36.480000pt;}
.we{width:39.200000pt;}
.w19{width:41.440000pt;}
.w22{width:41.952000pt;}
.w1e{width:43.200000pt;}
.w23{width:46.080000pt;}
.w4{width:48.960000pt;}
.w5{width:51.072000pt;}
.w27{width:51.392000pt;}
.w2c{width:52.992000pt;}
.w32{width:55.520000pt;}
.w2d{width:57.920000pt;}
.w18{width:62.592000pt;}
.w9{width:63.712000pt;}
.w13{width:69.632000pt;}
.w1d{width:81.632000pt;}
.w33{width:91.552000pt;}
.w2e{width:102.752000pt;}
.w31{width:105.312000pt;}
.w29{width:112.192000pt;}
.w6{width:115.520000pt;}
.w1a{width:117.152000pt;}
.w10{width:126.272000pt;}
.w15{width:127.232000pt;}
.w1f{width:128.832000pt;}
.wb{width:130.432000pt;}
.w11{width:131.072000pt;}
.w20{width:134.240000pt;}
.w24{width:134.586667pt;}
.w1b{width:136.160000pt;}
.w16{width:137.920000pt;}
.w25{width:138.080000pt;}
.wc{width:138.560000pt;}
.w2a{width:141.920000pt;}
.w7{width:149.466667pt;}
.w34{width:199.866667pt;}
.w30{width:242.586667pt;}
.w3{width:271.266667pt;}
.w1c{width:306.786667pt;}
.w8{width:325.186667pt;}
.w12{width:329.346667pt;}
.w17{width:336.546667pt;}
.w21{width:341.186667pt;}
.w2b{width:354.146667pt;}
.w26{width:360.866667pt;}
.wd{width:377.053333pt;}
.w2f{width:454.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2f{left:-29.280000pt;}
.xf{left:-24.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x26{left:12.000000pt;}
.x2c{left:42.400000pt;}
.x17{left:45.440000pt;}
.x1{left:47.999988pt;}
.x39{left:59.999988pt;}
.x1b{left:71.999988pt;}
.x3{left:77.440000pt;}
.xa{left:78.719988pt;}
.x3a{left:84.031988pt;}
.x2{left:96.031988pt;}
.x16{left:121.791988pt;}
.x11{left:123.231988pt;}
.x21{left:134.426655pt;}
.x9{left:144.506655pt;}
.x31{left:154.586667pt;}
.x36{left:155.866655pt;}
.x8{left:180.186655pt;}
.x37{left:183.386655pt;}
.x10{left:205.626655pt;}
.x32{left:210.746667pt;}
.x20{left:218.266655pt;}
.x38{left:232.826655pt;}
.x34{left:258.626655pt;}
.x33{left:302.946667pt;}
.x4{left:349.346667pt;}
.x23{left:355.746667pt;}
.xb{left:374.626667pt;}
.x1c{left:385.826667pt;}
.x27{left:396.866655pt;}
.x5{left:399.106667pt;}
.x29{left:406.626667pt;}
.x12{left:426.333333pt;}
.x28{left:429.213333pt;}
.x24{left:438.013333pt;}
.xc{left:439.133333pt;}
.x18{left:445.693333pt;}
.x1d{left:449.053333pt;}
.x6{left:450.813333pt;}
.x2a{left:458.653333pt;}
.x13{left:466.173333pt;}
.xd{left:475.453333pt;}
.x25{left:481.853333pt;}
.x19{left:482.813333pt;}
.x1e{left:491.133333pt;}
.x2b{left:494.013333pt;}
.x14{left:501.693333pt;}
.x30{left:503.613333pt;}
.x2d{left:509.533333pt;}
.x7{left:567.133333pt;}
.xe{left:606.533333pt;}
.x1f{left:608.933333pt;}
.x1a{left:610.693333pt;}
.x2e{left:612.933333pt;}
.x15{left:628.613333pt;}
.x35{left:684.933322pt;}
.x3b{left:746.053322pt;}
}




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