
    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_b810a1adb683b8016a7b4d39.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_80647dd6aaa3f6b00a50fff4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_1cb7e8dd495010b5ae2119c0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904785;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_a4f867032fd2cf848349a43d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_ad7a7c3cfbcd163499f56b37.woff')format("woff");}.ff5{font-family:ff5;line-height:1.237305;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_522fd7153791dce3e0aa7060.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_504d352eb9a54bd3fdc78295.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.986000px;}
.v4{vertical-align:11.994000px;}
.v6{vertical-align:13.956000px;}
.v1{vertical-align:16.983000px;}
.v5{vertical-align:19.974000px;}
.ls1d{letter-spacing:-4.536000px;}
.ls2e{letter-spacing:-3.243000px;}
.ls22{letter-spacing:-2.553000px;}
.ls2c{letter-spacing:-2.430000px;}
.ls2b{letter-spacing:-2.415000px;}
.ls27{letter-spacing:-2.109000px;}
.ls13{letter-spacing:-1.932000px;}
.ls39{letter-spacing:-1.680000px;}
.ls25{letter-spacing:-1.458000px;}
.ls23{letter-spacing:-1.134000px;}
.ls2d{letter-spacing:-1.035000px;}
.ls37{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.891000px;}
.lse{letter-spacing:-0.855000px;}
.ls29{letter-spacing:-0.682110px;}
.ls24{letter-spacing:-0.627000px;}
.ls34{letter-spacing:-0.283338px;}
.ls6{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.171000px;}
.ls14{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000300px;}
.ls1a{letter-spacing:0.007392px;}
.ls1b{letter-spacing:0.007620px;}
.ls38{letter-spacing:0.008400px;}
.lsc{letter-spacing:0.008970px;}
.ls16{letter-spacing:0.009003px;}
.ls17{letter-spacing:0.009312px;}
.ls11{letter-spacing:0.009570px;}
.ls10{letter-spacing:0.009912px;}
.ls1e{letter-spacing:0.047700px;}
.ls5{letter-spacing:0.240000px;}
.ls2f{letter-spacing:1.026000px;}
.ls30{letter-spacing:1.053000px;}
.ls8{letter-spacing:2.400000px;}
.ls12{letter-spacing:2.454216px;}
.ls2a{letter-spacing:3.222300px;}
.lsd{letter-spacing:3.300000px;}
.lsf{letter-spacing:3.933000px;}
.ls0{letter-spacing:4.200000px;}
.ls18{letter-spacing:4.275000px;}
.ls19{letter-spacing:4.650000px;}
.ls1c{letter-spacing:5.238000px;}
.lsb{letter-spacing:5.460000px;}
.ls2{letter-spacing:5.760000px;}
.ls4{letter-spacing:5.820000px;}
.ls7{letter-spacing:5.880000px;}
.lsa{letter-spacing:6.000000px;}
.ls35{letter-spacing:6.300000px;}
.ls1f{letter-spacing:6.417000px;}
.ls9{letter-spacing:6.675000px;}
.ls26{letter-spacing:7.200000px;}
.ls32{letter-spacing:7.500000px;}
.ls20{letter-spacing:8.160156px;}
.ls31{letter-spacing:8.160756px;}
.ls21{letter-spacing:8.175000px;}
.ls3{letter-spacing:8.400000px;}
.ls36{letter-spacing:11.592000px;}
.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;}
}
.ws1e{word-spacing:-29.250000px;}
.ws2e{word-spacing:-28.575000px;}
.ws24{word-spacing:-28.275000px;}
.ws9{word-spacing:-27.750000px;}
.ws19{word-spacing:-25.725000px;}
.ws16{word-spacing:-25.350000px;}
.wsf{word-spacing:-24.375000px;}
.ws0{word-spacing:-22.740000px;}
.ws25{word-spacing:-21.870000px;}
.ws29{word-spacing:-20.331000px;}
.ws14{word-spacing:-19.389000px;}
.wsa{word-spacing:-17.262000px;}
.ws10{word-spacing:-17.043000px;}
.ws13{word-spacing:-16.974000px;}
.ws1{word-spacing:-16.860000px;}
.ws15{word-spacing:-16.002000px;}
.ws34{word-spacing:-15.561000px;}
.ws20{word-spacing:-15.174000px;}
.ws12{word-spacing:-15.111000px;}
.ws37{word-spacing:-14.820000px;}
.ws28{word-spacing:-14.628000px;}
.ws2a{word-spacing:-13.800000px;}
.ws17{word-spacing:-13.338000px;}
.ws38{word-spacing:-13.140000px;}
.ws1f{word-spacing:-12.204000px;}
.wse{word-spacing:-11.303787px;}
.ws4{word-spacing:-8.400000px;}
.ws35{word-spacing:-7.500000px;}
.ws33{word-spacing:-6.300000px;}
.wsc{word-spacing:-6.000000px;}
.wsd{word-spacing:-5.880000px;}
.ws5{word-spacing:-5.820000px;}
.ws3{word-spacing:-5.760000px;}
.ws8{word-spacing:-4.200000px;}
.ws18{word-spacing:-3.519000px;}
.wsb{word-spacing:-2.400000px;}
.ws2d{word-spacing:-1.053000px;}
.ws2c{word-spacing:-1.026000px;}
.ws1d{word-spacing:-0.483000px;}
.ws6{word-spacing:-0.240000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.171000px;}
.ws7{word-spacing:0.240000px;}
.ws32{word-spacing:0.283338px;}
.ws22{word-spacing:0.627000px;}
.ws27{word-spacing:0.682110px;}
.ws11{word-spacing:0.855000px;}
.ws36{word-spacing:1.008000px;}
.ws2b{word-spacing:1.035000px;}
.ws23{word-spacing:1.458000px;}
.ws26{word-spacing:2.109000px;}
.ws21{word-spacing:2.553000px;}
.ws1c{word-spacing:4.536000px;}
.ws39{word-spacing:6.480000px;}
.ws30{word-spacing:6.831000px;}
.ws1a{word-spacing:9.384000px;}
.ws2f{word-spacing:13.179000px;}
.ws1b{word-spacing:27.738000px;}
._2c{margin-left:-18.600900px;}
._27{margin-left:-10.722600px;}
._8{margin-left:-8.511900px;}
._1b{margin-left:-7.189800px;}
._a{margin-left:-6.056100px;}
._b{margin-left:-4.992000px;}
._7{margin-left:-3.912300px;}
._3{margin-left:-2.765700px;}
._5{margin-left:-1.506300px;}
._4{width:1.033800px;}
._1{width:2.400000px;}
._c{width:3.440100px;}
._d{width:4.528200px;}
._6{width:6.250800px;}
._10{width:7.378200px;}
._9{width:8.400000px;}
._13{width:9.675300px;}
._18{width:11.005500px;}
._1a{width:12.736200px;}
._26{width:13.757400px;}
._17{width:14.835000px;}
._15{width:16.801500px;}
._16{width:17.847600px;}
._35{width:18.849600px;}
._1f{width:20.506800px;}
._1e{width:21.576300px;}
._1c{width:22.908000px;}
._25{width:24.556800px;}
._24{width:25.755600px;}
._2b{width:27.010500px;}
._12{width:28.431000px;}
._1d{width:29.834100px;}
._14{width:31.843500px;}
._2d{width:34.087200px;}
._20{width:35.155500px;}
._37{width:36.930900px;}
._34{width:38.971200px;}
._33{width:40.330500px;}
._21{width:43.445160px;}
._30{width:45.106500px;}
._36{width:47.658900px;}
._2f{width:53.730300px;}
._23{width:79.446600px;}
._e{width:90.132000px;}
._11{width:260.610000px;}
._2e{width:492.457200px;}
._31{width:494.430000px;}
._f{width:501.390000px;}
._2a{width:503.040000px;}
._22{width:504.692100px;}
._0{width:578.400000px;}
._19{width:993.706200px;}
._28{width:996.331200px;}
._29{width:1000.381200px;}
._2{width:1002.361200px;}
._32{width:1307.584200px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:24.486000px;}
.fsa{font-size:31.482000px;}
.fs10{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fse{font-size:45.474000px;}
.fsf{font-size:47.223000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y97{bottom:105.133950px;}
.yb2{bottom:105.944700px;}
.y150{bottom:106.290450px;}
.yfd{bottom:106.293450px;}
.y5b{bottom:106.296300px;}
.y139{bottom:106.296450px;}
.y1c{bottom:106.300950px;}
.y19a{bottom:106.303500px;}
.y3f{bottom:106.390500px;}
.yc4{bottom:107.337600px;}
.y7b{bottom:109.294800px;}
.ydf{bottom:110.879100px;}
.y14f{bottom:123.543450px;}
.yfc{bottom:123.546450px;}
.y96{bottom:125.385450px;}
.y5a{bottom:126.544800px;}
.y138{bottom:126.544950px;}
.y199{bottom:127.077750px;}
.y3e{bottom:127.159500px;}
.yb1{bottom:127.446750px;}
.y1b{bottom:129.850950px;}
.y121{bottom:130.796700px;}
.yde{bottom:131.130600px;}
.y161{bottom:132.817500px;}
.yfb{bottom:140.796450px;}
.y95{bottom:145.636950px;}
.y3d{bottom:147.928500px;}
.y137{bottom:148.047000px;}
.yb0{bottom:148.948950px;}
.y120{bottom:149.297250px;}
.yc3{bottom:151.356000px;}
.ydd{bottom:151.382100px;}
.y1a{bottom:153.409050px;}
.y198{bottom:156.357000px;}
.y160{bottom:157.319400px;}
.yfa{bottom:161.044950px;}
.y1b9{bottom:163.779600px;}
.y94{bottom:165.888450px;}
.y11f{bottom:166.550250px;}
.y3c{bottom:168.697500px;}
.ydc{bottom:171.633600px;}
.y7a{bottom:174.203250px;}
.y19{bottom:175.459050px;}
.y197{bottom:177.131250px;}
.y1b8{bottom:184.081350px;}
.y93{bottom:186.139950px;}
.y11e{bottom:186.798750px;}
.y3b{bottom:189.466500px;}
.y17b{bottom:190.114500px;}
.ydb{bottom:191.885100px;}
.y1d9{bottom:191.928900px;}
.yaf{bottom:192.962700px;}
.y79{bottom:194.950050px;}
.y18{bottom:197.509050px;}
.y92{bottom:206.391450px;}
.y196{bottom:206.410500px;}
.y11d{bottom:208.300650px;}
.y3a{bottom:210.235500px;}
.y17a{bottom:210.366000px;}
.yda{bottom:212.136600px;}
.y1d8{bottom:212.178900px;}
.y1b7{bottom:212.888100px;}
.yae{bottom:213.214200px;}
.y78{bottom:215.857050px;}
.y17{bottom:219.559050px;}
.yf9{bottom:220.663350px;}
.y91{bottom:226.641450px;}
.y15f{bottom:227.583300px;}
.y11c{bottom:229.802550px;}
.y179{bottom:230.617500px;}
.y39{bottom:231.004500px;}
.yd9{bottom:232.388100px;}
.y1d7{bottom:232.428900px;}
.y1b6{bottom:233.189850px;}
.yad{bottom:233.465700px;}
.y77{bottom:236.764050px;}
.yf8{bottom:240.914850px;}
.y16{bottom:241.609050px;}
.y178{bottom:250.869000px;}
.y11b{bottom:251.304600px;}
.y38{bottom:251.773500px;}
.y15e{bottom:252.085200px;}
.yd8{bottom:252.639600px;}
.y1d6{bottom:252.678900px;}
.y1b5{bottom:253.491600px;}
.yac{bottom:253.715700px;}
.y76{bottom:257.671050px;}
.y14e{bottom:259.899150px;}
.yf7{bottom:261.166350px;}
.y15{bottom:263.659050px;}
.y177{bottom:271.120500px;}
.y37{bottom:272.542500px;}
.y11a{bottom:272.806500px;}
.yd7{bottom:272.891100px;}
.yab{bottom:273.958200px;}
.y75{bottom:278.578050px;}
.yf6{bottom:281.417850px;}
.yc2{bottom:281.655600px;}
.y1b4{bottom:282.298350px;}
.y14d{bottom:284.401050px;}
.y1d5{bottom:285.678900px;}
.y14{bottom:285.709050px;}
.y176{bottom:291.372000px;}
.yd6{bottom:293.142600px;}
.y36{bottom:293.311500px;}
.y90{bottom:293.362050px;}
.yaa{bottom:294.209700px;}
.y119{bottom:294.308550px;}
.y195{bottom:299.374950px;}
.y74{bottom:299.485050px;}
.yf5{bottom:301.669350px;}
.yc1{bottom:301.907100px;}
.y1b3{bottom:302.600100px;}
.y13{bottom:307.759050px;}
.yd5{bottom:313.394100px;}
.y8f{bottom:313.613550px;}
.y35{bottom:314.080500px;}
.ya9{bottom:314.461200px;}
.y194{bottom:320.143950px;}
.y73{bottom:320.392050px;}
.yf4{bottom:321.920850px;}
.yc0{bottom:322.158600px;}
.y1b2{bottom:322.901850px;}
.y15d{bottom:323.362650px;}
.y1d4{bottom:327.183900px;}
.y12{bottom:329.809050px;}
.y175{bottom:332.885550px;}
.yd4{bottom:333.645600px;}
.y8e{bottom:333.865050px;}
.ya8{bottom:334.712700px;}
.y34{bottom:334.849500px;}
.y118{bottom:338.309850px;}
.y193{bottom:340.912950px;}
.y72{bottom:341.299050px;}
.yf3{bottom:342.172350px;}
.ybf{bottom:342.410100px;}
.y136{bottom:345.907200px;}
.y1d3{bottom:346.683900px;}
.y15c{bottom:347.358900px;}
.y1b1{bottom:351.708600px;}
.yd3{bottom:353.897100px;}
.y8d{bottom:354.116550px;}
.y14c{bottom:354.655950px;}
.ya7{bottom:354.964200px;}
.y33{bottom:355.618500px;}
.y174{bottom:356.881800px;}
.y117{bottom:359.216850px;}
.y192{bottom:361.681950px;}
.y71{bottom:362.206050px;}
.yf2{bottom:362.423850px;}
.ybe{bottom:362.661600px;}
.y11{bottom:364.624050px;}
.y135{bottom:366.158700px;}
.y1d2{bottom:366.183900px;}
.y1b0{bottom:372.010350px;}
.yd2{bottom:374.148600px;}
.y8c{bottom:374.368050px;}
.y14b{bottom:374.907450px;}
.ya6{bottom:375.215700px;}
.y59{bottom:376.163850px;}
.y32{bottom:376.387500px;}
.y116{bottom:380.123850px;}
.y191{bottom:382.450950px;}
.ybd{bottom:382.913100px;}
.y70{bottom:383.113050px;}
.y1d1{bottom:385.683900px;}
.y134{bottom:386.410200px;}
.yd1{bottom:394.400100px;}
.y8b{bottom:394.619550px;}
.y14a{bottom:395.158950px;}
.ya5{bottom:395.465700px;}
.y58{bottom:396.415350px;}
.y1af{bottom:400.817100px;}
.y115{bottom:401.030850px;}
.ybc{bottom:403.164600px;}
.y190{bottom:403.219950px;}
.yf1{bottom:403.944900px;}
.y6f{bottom:404.020050px;}
.y1d0{bottom:405.183900px;}
.y133{bottom:406.661700px;}
.y15b{bottom:409.620600px;}
.yd0{bottom:414.651600px;}
.y8a{bottom:414.871050px;}
.y149{bottom:415.410450px;}
.ya4{bottom:415.706700px;}
.y57{bottom:416.666850px;}
.y31{bottom:417.942750px;}
.y1ae{bottom:421.118850px;}
.y114{bottom:421.933650px;}
.ybb{bottom:423.416100px;}
.y18f{bottom:423.988950px;}
.y1cf{bottom:424.683900px;}
.y6e{bottom:424.927050px;}
.y10{bottom:424.952850px;}
.y132{bottom:426.913200px;}
.yf0{bottom:427.941150px;}
.y15a{bottom:429.872100px;}
.ycf{bottom:434.903100px;}
.y148{bottom:435.661950px;}
.ya3{bottom:435.958200px;}
.y56{bottom:436.918350px;}
.y173{bottom:439.398000px;}
.y113{bottom:442.823700px;}
.yba{bottom:443.667600px;}
.y1ce{bottom:444.189750px;}
.y18e{bottom:444.757950px;}
.y6d{bottom:445.834050px;}
.y131{bottom:447.164700px;}
.y1ad{bottom:449.925600px;}
.y159{bottom:450.123600px;}
.yef{bottom:451.937400px;}
.yf{bottom:454.499850px;}
.yce{bottom:455.154600px;}
.y89{bottom:455.374050px;}
.ya2{bottom:456.209700px;}
.y55{bottom:457.169850px;}
.y30{bottom:459.498000px;}
.y172{bottom:459.628500px;}
.y1cd{bottom:463.689750px;}
.y112{bottom:463.730700px;}
.yb9{bottom:463.919100px;}
.y18d{bottom:465.526950px;}
.y6c{bottom:466.741050px;}
.y130{bottom:467.416200px;}
.y1ac{bottom:470.227350px;}
.ycd{bottom:475.406100px;}
.y88{bottom:475.625550px;}
.yee{bottom:475.933650px;}
.y147{bottom:476.164950px;}
.ya1{bottom:476.461200px;}
.y54{bottom:477.421350px;}
.y171{bottom:479.880000px;}
.y2f{bottom:480.267000px;}
.y1cc{bottom:483.189750px;}
.ye{bottom:484.046850px;}
.yb8{bottom:484.170600px;}
.y111{bottom:484.637700px;}
.y18c{bottom:486.295950px;}
.y6b{bottom:487.648050px;}
.y12f{bottom:487.667700px;}
.y1ab{bottom:490.529100px;}
.y158{bottom:490.626600px;}
.ycc{bottom:495.657600px;}
.y87{bottom:495.877050px;}
.ya0{bottom:496.712700px;}
.y53{bottom:497.672850px;}
.y170{bottom:500.131500px;}
.y146{bottom:500.666850px;}
.y2e{bottom:501.036000px;}
.y1cb{bottom:502.689750px;}
.y110{bottom:505.544700px;}
.y18b{bottom:507.064950px;}
.y12e{bottom:507.919200px;}
.y6a{bottom:508.555050px;}
.y157{bottom:515.128500px;}
.ycb{bottom:515.909100px;}
.y86{bottom:516.128550px;}
.y9f{bottom:516.964200px;}
.y52{bottom:517.924350px;}
.y1aa{bottom:519.335850px;}
.y16f{bottom:520.383000px;}
.y2d{bottom:521.805000px;}
.y1ca{bottom:522.189750px;}
.yb7{bottom:524.670600px;}
.y10f{bottom:526.413450px;}
.y18a{bottom:527.833950px;}
.y12d{bottom:528.170700px;}
.y69{bottom:529.462050px;}
.yd{bottom:534.882000px;}
.yca{bottom:536.160600px;}
.y85{bottom:536.380050px;}
.y9e{bottom:537.215700px;}
.y51{bottom:538.175850px;}
.yed{bottom:538.198350px;}
.y1a9{bottom:539.637600px;}
.y16e{bottom:540.634500px;}
.y1c9{bottom:541.689750px;}
.y2c{bottom:542.574000px;}
.y10e{bottom:547.320450px;}
.y12c{bottom:548.422200px;}
.y189{bottom:548.602950px;}
.y68{bottom:550.369050px;}
.yc9{bottom:556.412100px;}
.y84{bottom:556.631550px;}
.y9d{bottom:557.467200px;}
.y50{bottom:558.427350px;}
.yec{bottom:558.449850px;}
.y16d{bottom:560.886000px;}
.y1c8{bottom:561.189750px;}
.y2b{bottom:563.343000px;}
.y10d{bottom:568.227450px;}
.y1a8{bottom:568.444350px;}
.y12b{bottom:568.672200px;}
.yc{bottom:568.929000px;}
.y188{bottom:569.371950px;}
.y145{bottom:570.918600px;}
.y67{bottom:571.276050px;}
.yc8{bottom:576.663600px;}
.y83{bottom:576.883050px;}
.yeb{bottom:578.677350px;}
.y4f{bottom:578.678850px;}
.y1c7{bottom:580.689750px;}
.y16c{bottom:581.137500px;}
.y156{bottom:585.392250px;}
.y1a7{bottom:588.746100px;}
.y12a{bottom:588.923700px;}
.y10c{bottom:589.134450px;}
.y187{bottom:590.140950px;}
.y144{bottom:591.170100px;}
.y66{bottom:592.183050px;}
.yc7{bottom:596.913600px;}
.y82{bottom:597.134550px;}
.y9c{bottom:597.967200px;}
.yea{bottom:598.928850px;}
.y4e{bottom:598.930350px;}
.y1c6{bottom:600.189750px;}
.y16b{bottom:601.389000px;}
.yb{bottom:602.976000px;}
.y2a{bottom:605.377500px;}
.y155{bottom:609.894300px;}
.y10b{bottom:610.041450px;}
.y186{bottom:610.909950px;}
.y143{bottom:611.421600px;}
.yc6{bottom:617.165100px;}
.y81{bottom:617.386050px;}
.y1a6{bottom:617.552850px;}
.ye9{bottom:619.180350px;}
.y4d{bottom:619.181850px;}
.y1c5{bottom:619.689750px;}
.y16a{bottom:621.640500px;}
.y129{bottom:630.441150px;}
.y10a{bottom:630.948450px;}
.y142{bottom:631.673100px;}
.y185{bottom:631.678950px;}
.y65{bottom:634.341450px;}
.ya{bottom:637.023000px;}
.y80{bottom:637.637550px;}
.y1a5{bottom:637.854600px;}
.y1c4{bottom:639.189750px;}
.ye8{bottom:639.431850px;}
.y4c{bottom:639.433350px;}
.y169{bottom:641.892000px;}
.y109{bottom:651.855450px;}
.y141{bottom:651.924600px;}
.y184{bottom:652.447950px;}
.y128{bottom:654.437400px;}
.yc5{bottom:657.665100px;}
.y7f{bottom:657.889050px;}
.y1c3{bottom:658.689750px;}
.ye7{bottom:659.683350px;}
.y4b{bottom:659.684850px;}
.y154{bottom:659.908050px;}
.y168{bottom:662.143500px;}
.y1a4{bottom:666.661350px;}
.y29{bottom:668.169600px;}
.y9{bottom:671.070000px;}
.y140{bottom:672.176100px;}
.y108{bottom:672.762450px;}
.y183{bottom:673.216950px;}
.y7e{bottom:678.140550px;}
.y1c2{bottom:678.189750px;}
.y127{bottom:678.433650px;}
.ye6{bottom:679.934850px;}
.y4a{bottom:679.936350px;}
.y167{bottom:682.395000px;}
.y153{bottom:684.409950px;}
.y1a3{bottom:686.963100px;}
.y28{bottom:689.694600px;}
.y13f{bottom:692.427600px;}
.y107{bottom:693.669450px;}
.y64{bottom:697.232550px;}
.y1c1{bottom:697.689750px;}
.y7d{bottom:698.392050px;}
.ye5{bottom:700.186350px;}
.y49{bottom:700.187850px;}
.y166{bottom:702.646500px;}
.y8{bottom:705.117000px;}
.y27{bottom:711.222750px;}
.y106{bottom:714.559650px;}
.y182{bottom:715.252650px;}
.y1a2{bottom:715.769850px;}
.y1c0{bottom:717.189750px;}
.y63{bottom:718.139550px;}
.ye4{bottom:720.437850px;}
.y26{bottom:731.247750px;}
.y13e{bottom:732.930600px;}
.y105{bottom:735.466650px;}
.y1a1{bottom:736.071600px;}
.y1bf{bottom:736.689750px;}
.y7c{bottom:738.892050px;}
.y62{bottom:739.046550px;}
.ye3{bottom:740.689350px;}
.y48{bottom:740.690850px;}
.y126{bottom:740.693850px;}
.y165{bottom:743.149500px;}
.y25{bottom:751.272750px;}
.y152{bottom:755.687400px;}
.y1be{bottom:756.189750px;}
.y104{bottom:756.373650px;}
.y13d{bottom:757.432650px;}
.y61{bottom:759.953550px;}
.ye2{bottom:760.940850px;}
.y125{bottom:760.945350px;}
.y1a0{bottom:764.878350px;}
.y164{bottom:767.651400px;}
.y7{bottom:768.937200px;}
.y24{bottom:771.297750px;}
.y103{bottom:777.280650px;}
.y181{bottom:778.087350px;}
.y151{bottom:779.683650px;}
.ye1{bottom:781.192350px;}
.y47{bottom:781.193850px;}
.yb6{bottom:781.195350px;}
.y124{bottom:781.196850px;}
.y19f{bottom:785.180100px;}
.y1bd{bottom:788.439750px;}
.y23{bottom:791.322750px;}
.y102{bottom:798.179100px;}
.y180{bottom:798.856350px;}
.y6{bottom:800.992200px;}
.ye0{bottom:801.443850px;}
.y46{bottom:801.445350px;}
.yb5{bottom:801.446850px;}
.y123{bottom:801.448350px;}
.y9b{bottom:801.449850px;}
.y60{bottom:802.129200px;}
.y19e{bottom:805.481850px;}
.y22{bottom:811.347750px;}
.y101{bottom:819.086100px;}
.y17f{bottom:819.625350px;}
.y9a{bottom:821.695350px;}
.y45{bottom:821.696850px;}
.yb4{bottom:821.698350px;}
.y122{bottom:821.699850px;}
.y5{bottom:824.542200px;}
.y5f{bottom:826.773450px;}
.y13c{bottom:828.717450px;}
.y21{bottom:831.372750px;}
.y19d{bottom:834.288600px;}
.y163{bottom:837.915300px;}
.y100{bottom:839.984550px;}
.y17e{bottom:840.394350px;}
.y99{bottom:841.946850px;}
.y44{bottom:841.948350px;}
.yb3{bottom:841.949850px;}
.y1bc{bottom:846.195450px;}
.y20{bottom:851.397750px;}
.y5e{bottom:851.417700px;}
.y13b{bottom:852.713700px;}
.y19c{bottom:854.590350px;}
.y4{bottom:856.597200px;}
.yff{bottom:860.891550px;}
.y17d{bottom:861.163350px;}
.y98{bottom:862.198350px;}
.y43{bottom:862.199850px;}
.y162{bottom:862.417200px;}
.y1f{bottom:871.422750px;}
.y1bb{bottom:873.201450px;}
.y5d{bottom:876.061950px;}
.y13a{bottom:876.709950px;}
.y3{bottom:880.147200px;}
.yfe{bottom:881.794350px;}
.y17c{bottom:881.932350px;}
.y42{bottom:882.449850px;}
.y19b{bottom:883.397100px;}
.y1ba{bottom:900.207450px;}
.y5c{bottom:900.706200px;}
.y41{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1e{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y40{bottom:966.189000px;}
.hd{height:33.870539px;}
.h11{height:35.663086px;}
.h7{height:40.757812px;}
.h15{height:40.936945px;}
.hb{height:41.396484px;}
.he{height:45.852539px;}
.ha{height:46.359375px;}
.h13{height:47.605957px;}
.h21{height:48.399902px;}
.h4{height:50.947266px;}
.h1d{height:52.918945px;}
.h1a{height:52.930945px;}
.h3{height:53.494629px;}
.h1f{height:58.586933px;}
.h9{height:58.589355px;}
.hc{height:58.595355px;}
.h1e{height:58.607355px;}
.h22{height:58.613355px;}
.h10{height:58.622955px;}
.h17{height:58.649355px;}
.h19{height:58.685355px;}
.h12{height:58.708755px;}
.h25{height:58.798828px;}
.h24{height:61.738770px;}
.h2{height:63.684082px;}
.hf{height:67.618652px;}
.h18{height:67.624652px;}
.h16{height:67.630652px;}
.h1b{height:67.635452px;}
.h14{height:67.660652px;}
.h20{height:67.666652px;}
.h1c{height:67.686452px;}
.h23{height:67.702652px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.929050px;}
.x5{left:82.214250px;}
.x7{left:83.640900px;}
.x1{left:85.039350px;}
.x9{left:103.709250px;}
.x4{left:105.885600px;}
.xc{left:107.269200px;}
.xd{left:201.097650px;}
.x6{left:203.327550px;}
.x8{left:212.664000px;}
.x3{left:230.860050px;}
.xb{left:232.182150px;}
.x2{left:233.345250px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.098667pt;}
.v4{vertical-align:10.661333pt;}
.v6{vertical-align:12.405333pt;}
.v1{vertical-align:15.096000pt;}
.v5{vertical-align:17.754667pt;}
.ls1d{letter-spacing:-4.032000pt;}
.ls2e{letter-spacing:-2.882667pt;}
.ls22{letter-spacing:-2.269333pt;}
.ls2c{letter-spacing:-2.160000pt;}
.ls2b{letter-spacing:-2.146667pt;}
.ls27{letter-spacing:-1.874667pt;}
.ls13{letter-spacing:-1.717333pt;}
.ls39{letter-spacing:-1.493333pt;}
.ls25{letter-spacing:-1.296000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls2d{letter-spacing:-0.920000pt;}
.ls37{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.792000pt;}
.lse{letter-spacing:-0.760000pt;}
.ls29{letter-spacing:-0.606320pt;}
.ls24{letter-spacing:-0.557333pt;}
.ls34{letter-spacing:-0.251856pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.152000pt;}
.ls14{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000267pt;}
.ls1a{letter-spacing:0.006571pt;}
.ls1b{letter-spacing:0.006773pt;}
.ls38{letter-spacing:0.007467pt;}
.lsc{letter-spacing:0.007973pt;}
.ls16{letter-spacing:0.008003pt;}
.ls17{letter-spacing:0.008277pt;}
.ls11{letter-spacing:0.008507pt;}
.ls10{letter-spacing:0.008811pt;}
.ls1e{letter-spacing:0.042400pt;}
.ls5{letter-spacing:0.213333pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls30{letter-spacing:0.936000pt;}
.ls8{letter-spacing:2.133333pt;}
.ls12{letter-spacing:2.181525pt;}
.ls2a{letter-spacing:2.864267pt;}
.lsd{letter-spacing:2.933333pt;}
.lsf{letter-spacing:3.496000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls18{letter-spacing:3.800000pt;}
.ls19{letter-spacing:4.133333pt;}
.ls1c{letter-spacing:4.656000pt;}
.lsb{letter-spacing:4.853333pt;}
.ls2{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.173333pt;}
.ls7{letter-spacing:5.226667pt;}
.lsa{letter-spacing:5.333333pt;}
.ls35{letter-spacing:5.600000pt;}
.ls1f{letter-spacing:5.704000pt;}
.ls9{letter-spacing:5.933333pt;}
.ls26{letter-spacing:6.400000pt;}
.ls32{letter-spacing:6.666667pt;}
.ls20{letter-spacing:7.253472pt;}
.ls31{letter-spacing:7.254005pt;}
.ls21{letter-spacing:7.266667pt;}
.ls3{letter-spacing:7.466667pt;}
.ls36{letter-spacing:10.304000pt;}
.ws1e{word-spacing:-26.000000pt;}
.ws2e{word-spacing:-25.400000pt;}
.ws24{word-spacing:-25.133333pt;}
.ws9{word-spacing:-24.666667pt;}
.ws19{word-spacing:-22.866667pt;}
.ws16{word-spacing:-22.533333pt;}
.wsf{word-spacing:-21.666667pt;}
.ws0{word-spacing:-20.213333pt;}
.ws25{word-spacing:-19.440000pt;}
.ws29{word-spacing:-18.072000pt;}
.ws14{word-spacing:-17.234667pt;}
.wsa{word-spacing:-15.344000pt;}
.ws10{word-spacing:-15.149333pt;}
.ws13{word-spacing:-15.088000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws15{word-spacing:-14.224000pt;}
.ws34{word-spacing:-13.832000pt;}
.ws20{word-spacing:-13.488000pt;}
.ws12{word-spacing:-13.432000pt;}
.ws37{word-spacing:-13.173333pt;}
.ws28{word-spacing:-13.002667pt;}
.ws2a{word-spacing:-12.266667pt;}
.ws17{word-spacing:-11.856000pt;}
.ws38{word-spacing:-11.680000pt;}
.ws1f{word-spacing:-10.848000pt;}
.wse{word-spacing:-10.047811pt;}
.ws4{word-spacing:-7.466667pt;}
.ws35{word-spacing:-6.666667pt;}
.ws33{word-spacing:-5.600000pt;}
.wsc{word-spacing:-5.333333pt;}
.wsd{word-spacing:-5.226667pt;}
.ws5{word-spacing:-5.173333pt;}
.ws3{word-spacing:-5.120000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws18{word-spacing:-3.128000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-0.936000pt;}
.ws2c{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.429333pt;}
.ws6{word-spacing:-0.213333pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.152000pt;}
.ws7{word-spacing:0.213333pt;}
.ws32{word-spacing:0.251856pt;}
.ws22{word-spacing:0.557333pt;}
.ws27{word-spacing:0.606320pt;}
.ws11{word-spacing:0.760000pt;}
.ws36{word-spacing:0.896000pt;}
.ws2b{word-spacing:0.920000pt;}
.ws23{word-spacing:1.296000pt;}
.ws26{word-spacing:1.874667pt;}
.ws21{word-spacing:2.269333pt;}
.ws1c{word-spacing:4.032000pt;}
.ws39{word-spacing:5.760000pt;}
.ws30{word-spacing:6.072000pt;}
.ws1a{word-spacing:8.341333pt;}
.ws2f{word-spacing:11.714667pt;}
.ws1b{word-spacing:24.656000pt;}
._2c{margin-left:-16.534133pt;}
._27{margin-left:-9.531200pt;}
._8{margin-left:-7.566133pt;}
._1b{margin-left:-6.390933pt;}
._a{margin-left:-5.383200pt;}
._b{margin-left:-4.437333pt;}
._7{margin-left:-3.477600pt;}
._3{margin-left:-2.458400pt;}
._5{margin-left:-1.338933pt;}
._4{width:0.918933pt;}
._1{width:2.133333pt;}
._c{width:3.057867pt;}
._d{width:4.025067pt;}
._6{width:5.556267pt;}
._10{width:6.558400pt;}
._9{width:7.466667pt;}
._13{width:8.600267pt;}
._18{width:9.782667pt;}
._1a{width:11.321067pt;}
._26{width:12.228800pt;}
._17{width:13.186667pt;}
._15{width:14.934667pt;}
._16{width:15.864533pt;}
._35{width:16.755200pt;}
._1f{width:18.228267pt;}
._1e{width:19.178933pt;}
._1c{width:20.362667pt;}
._25{width:21.828267pt;}
._24{width:22.893867pt;}
._2b{width:24.009333pt;}
._12{width:25.272000pt;}
._1d{width:26.519200pt;}
._14{width:28.305333pt;}
._2d{width:30.299733pt;}
._20{width:31.249333pt;}
._37{width:32.827467pt;}
._34{width:34.641067pt;}
._33{width:35.849333pt;}
._21{width:38.617920pt;}
._30{width:40.094667pt;}
._36{width:42.363467pt;}
._2f{width:47.760267pt;}
._23{width:70.619200pt;}
._e{width:80.117333pt;}
._11{width:231.653333pt;}
._2e{width:437.739733pt;}
._31{width:439.493333pt;}
._f{width:445.680000pt;}
._2a{width:447.146667pt;}
._22{width:448.615200pt;}
._0{width:514.133333pt;}
._19{width:883.294400pt;}
._28{width:885.627733pt;}
._29{width:889.227733pt;}
._2{width:890.987733pt;}
._32{width:1162.297067pt;}
.fsd{font-size:21.765333pt;}
.fsa{font-size:27.984000pt;}
.fs10{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fse{font-size:40.421333pt;}
.fsf{font-size:41.976000pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y97{bottom:93.452400pt;}
.yb2{bottom:94.173067pt;}
.y150{bottom:94.480400pt;}
.yfd{bottom:94.483067pt;}
.y5b{bottom:94.485600pt;}
.y139{bottom:94.485733pt;}
.y1c{bottom:94.489733pt;}
.y19a{bottom:94.492000pt;}
.y3f{bottom:94.569333pt;}
.yc4{bottom:95.411200pt;}
.y7b{bottom:97.150933pt;}
.ydf{bottom:98.559200pt;}
.y14f{bottom:109.816400pt;}
.yfc{bottom:109.819067pt;}
.y96{bottom:111.453733pt;}
.y5a{bottom:112.484267pt;}
.y138{bottom:112.484400pt;}
.y199{bottom:112.958000pt;}
.y3e{bottom:113.030667pt;}
.yb1{bottom:113.286000pt;}
.y1b{bottom:115.423067pt;}
.y121{bottom:116.263733pt;}
.yde{bottom:116.560533pt;}
.y161{bottom:118.060000pt;}
.yfb{bottom:125.152400pt;}
.y95{bottom:129.455067pt;}
.y3d{bottom:131.492000pt;}
.y137{bottom:131.597333pt;}
.yb0{bottom:132.399067pt;}
.y120{bottom:132.708667pt;}
.yc3{bottom:134.538667pt;}
.ydd{bottom:134.561867pt;}
.y1a{bottom:136.363600pt;}
.y198{bottom:138.984000pt;}
.y160{bottom:139.839467pt;}
.yfa{bottom:143.151067pt;}
.y1b9{bottom:145.581867pt;}
.y94{bottom:147.456400pt;}
.y11f{bottom:148.044667pt;}
.y3c{bottom:149.953333pt;}
.ydc{bottom:152.563200pt;}
.y7a{bottom:154.847333pt;}
.y19{bottom:155.963600pt;}
.y197{bottom:157.450000pt;}
.y1b8{bottom:163.627867pt;}
.y93{bottom:165.457733pt;}
.y11e{bottom:166.043333pt;}
.y3b{bottom:168.414667pt;}
.y17b{bottom:168.990667pt;}
.ydb{bottom:170.564533pt;}
.y1d9{bottom:170.603467pt;}
.yaf{bottom:171.522400pt;}
.y79{bottom:173.288933pt;}
.y18{bottom:175.563600pt;}
.y92{bottom:183.459067pt;}
.y196{bottom:183.476000pt;}
.y11d{bottom:185.156133pt;}
.y3a{bottom:186.876000pt;}
.y17a{bottom:186.992000pt;}
.yda{bottom:188.565867pt;}
.y1d8{bottom:188.603467pt;}
.y1b7{bottom:189.233867pt;}
.yae{bottom:189.523733pt;}
.y78{bottom:191.872933pt;}
.y17{bottom:195.163600pt;}
.yf9{bottom:196.145200pt;}
.y91{bottom:201.459067pt;}
.y15f{bottom:202.296267pt;}
.y11c{bottom:204.268933pt;}
.y179{bottom:204.993333pt;}
.y39{bottom:205.337333pt;}
.yd9{bottom:206.567200pt;}
.y1d7{bottom:206.603467pt;}
.y1b6{bottom:207.279867pt;}
.yad{bottom:207.525067pt;}
.y77{bottom:210.456933pt;}
.yf8{bottom:214.146533pt;}
.y16{bottom:214.763600pt;}
.y178{bottom:222.994667pt;}
.y11b{bottom:223.381867pt;}
.y38{bottom:223.798667pt;}
.y15e{bottom:224.075733pt;}
.yd8{bottom:224.568533pt;}
.y1d6{bottom:224.603467pt;}
.y1b5{bottom:225.325867pt;}
.yac{bottom:225.525067pt;}
.y76{bottom:229.040933pt;}
.y14e{bottom:231.021467pt;}
.yf7{bottom:232.147867pt;}
.y15{bottom:234.363600pt;}
.y177{bottom:240.996000pt;}
.y37{bottom:242.260000pt;}
.y11a{bottom:242.494667pt;}
.yd7{bottom:242.569867pt;}
.yab{bottom:243.518400pt;}
.y75{bottom:247.624933pt;}
.yf6{bottom:250.149200pt;}
.yc2{bottom:250.360533pt;}
.y1b4{bottom:250.931867pt;}
.y14d{bottom:252.800933pt;}
.y1d5{bottom:253.936800pt;}
.y14{bottom:253.963600pt;}
.y176{bottom:258.997333pt;}
.yd6{bottom:260.571200pt;}
.y36{bottom:260.721333pt;}
.y90{bottom:260.766267pt;}
.yaa{bottom:261.519733pt;}
.y119{bottom:261.607600pt;}
.y195{bottom:266.111067pt;}
.y74{bottom:266.208933pt;}
.yf5{bottom:268.150533pt;}
.yc1{bottom:268.361867pt;}
.y1b3{bottom:268.977867pt;}
.y13{bottom:273.563600pt;}
.yd5{bottom:278.572533pt;}
.y8f{bottom:278.767600pt;}
.y35{bottom:279.182667pt;}
.ya9{bottom:279.521067pt;}
.y194{bottom:284.572400pt;}
.y73{bottom:284.792933pt;}
.yf4{bottom:286.151867pt;}
.yc0{bottom:286.363200pt;}
.y1b2{bottom:287.023867pt;}
.y15d{bottom:287.433467pt;}
.y1d4{bottom:290.830133pt;}
.y12{bottom:293.163600pt;}
.y175{bottom:295.898267pt;}
.yd4{bottom:296.573867pt;}
.y8e{bottom:296.768933pt;}
.ya8{bottom:297.522400pt;}
.y34{bottom:297.644000pt;}
.y118{bottom:300.719867pt;}
.y193{bottom:303.033733pt;}
.y72{bottom:303.376933pt;}
.yf3{bottom:304.153200pt;}
.ybf{bottom:304.364533pt;}
.y136{bottom:307.473067pt;}
.y1d3{bottom:308.163467pt;}
.y15c{bottom:308.763467pt;}
.y1b1{bottom:312.629867pt;}
.yd3{bottom:314.575200pt;}
.y8d{bottom:314.770267pt;}
.y14c{bottom:315.249733pt;}
.ya7{bottom:315.523733pt;}
.y33{bottom:316.105333pt;}
.y174{bottom:317.228267pt;}
.y117{bottom:319.303867pt;}
.y192{bottom:321.495067pt;}
.y71{bottom:321.960933pt;}
.yf2{bottom:322.154533pt;}
.ybe{bottom:322.365867pt;}
.y11{bottom:324.110267pt;}
.y135{bottom:325.474400pt;}
.y1d2{bottom:325.496800pt;}
.y1b0{bottom:330.675867pt;}
.yd2{bottom:332.576533pt;}
.y8c{bottom:332.771600pt;}
.y14b{bottom:333.251067pt;}
.ya6{bottom:333.525067pt;}
.y59{bottom:334.367867pt;}
.y32{bottom:334.566667pt;}
.y116{bottom:337.887867pt;}
.y191{bottom:339.956400pt;}
.ybd{bottom:340.367200pt;}
.y70{bottom:340.544933pt;}
.y1d1{bottom:342.830133pt;}
.y134{bottom:343.475733pt;}
.yd1{bottom:350.577867pt;}
.y8b{bottom:350.772933pt;}
.y14a{bottom:351.252400pt;}
.ya5{bottom:351.525067pt;}
.y58{bottom:352.369200pt;}
.y1af{bottom:356.281867pt;}
.y115{bottom:356.471867pt;}
.ybc{bottom:358.368533pt;}
.y190{bottom:358.417733pt;}
.yf1{bottom:359.062133pt;}
.y6f{bottom:359.128933pt;}
.y1d0{bottom:360.163467pt;}
.y133{bottom:361.477067pt;}
.y15b{bottom:364.107200pt;}
.yd0{bottom:368.579200pt;}
.y8a{bottom:368.774267pt;}
.y149{bottom:369.253733pt;}
.ya4{bottom:369.517067pt;}
.y57{bottom:370.370533pt;}
.y31{bottom:371.504667pt;}
.y1ae{bottom:374.327867pt;}
.y114{bottom:375.052133pt;}
.ybb{bottom:376.369867pt;}
.y18f{bottom:376.879067pt;}
.y1cf{bottom:377.496800pt;}
.y6e{bottom:377.712933pt;}
.y10{bottom:377.735867pt;}
.y132{bottom:379.478400pt;}
.yf0{bottom:380.392133pt;}
.y15a{bottom:382.108533pt;}
.ycf{bottom:386.580533pt;}
.y148{bottom:387.255067pt;}
.ya3{bottom:387.518400pt;}
.y56{bottom:388.371867pt;}
.y173{bottom:390.576000pt;}
.y113{bottom:393.621067pt;}
.yba{bottom:394.371200pt;}
.y1ce{bottom:394.835333pt;}
.y18e{bottom:395.340400pt;}
.y6d{bottom:396.296933pt;}
.y131{bottom:397.479733pt;}
.y1ad{bottom:399.933867pt;}
.y159{bottom:400.109867pt;}
.yef{bottom:401.722133pt;}
.yf{bottom:403.999867pt;}
.yce{bottom:404.581867pt;}
.y89{bottom:404.776933pt;}
.ya2{bottom:405.519733pt;}
.y55{bottom:406.373200pt;}
.y30{bottom:408.442667pt;}
.y172{bottom:408.558667pt;}
.y1cd{bottom:412.168667pt;}
.y112{bottom:412.205067pt;}
.yb9{bottom:412.372533pt;}
.y18d{bottom:413.801733pt;}
.y6c{bottom:414.880933pt;}
.y130{bottom:415.481067pt;}
.y1ac{bottom:417.979867pt;}
.ycd{bottom:422.583200pt;}
.y88{bottom:422.778267pt;}
.yee{bottom:423.052133pt;}
.y147{bottom:423.257733pt;}
.ya1{bottom:423.521067pt;}
.y54{bottom:424.374533pt;}
.y171{bottom:426.560000pt;}
.y2f{bottom:426.904000pt;}
.y1cc{bottom:429.502000pt;}
.ye{bottom:430.263867pt;}
.yb8{bottom:430.373867pt;}
.y111{bottom:430.789067pt;}
.y18c{bottom:432.263067pt;}
.y6b{bottom:433.464933pt;}
.y12f{bottom:433.482400pt;}
.y1ab{bottom:436.025867pt;}
.y158{bottom:436.112533pt;}
.ycc{bottom:440.584533pt;}
.y87{bottom:440.779600pt;}
.ya0{bottom:441.522400pt;}
.y53{bottom:442.375867pt;}
.y170{bottom:444.561333pt;}
.y146{bottom:445.037200pt;}
.y2e{bottom:445.365333pt;}
.y1cb{bottom:446.835333pt;}
.y110{bottom:449.373067pt;}
.y18b{bottom:450.724400pt;}
.y12e{bottom:451.483733pt;}
.y6a{bottom:452.048933pt;}
.y157{bottom:457.892000pt;}
.ycb{bottom:458.585867pt;}
.y86{bottom:458.780933pt;}
.y9f{bottom:459.523733pt;}
.y52{bottom:460.377200pt;}
.y1aa{bottom:461.631867pt;}
.y16f{bottom:462.562667pt;}
.y2d{bottom:463.826667pt;}
.y1ca{bottom:464.168667pt;}
.yb7{bottom:466.373867pt;}
.y10f{bottom:467.923067pt;}
.y18a{bottom:469.185733pt;}
.y12d{bottom:469.485067pt;}
.y69{bottom:470.632933pt;}
.yd{bottom:475.450667pt;}
.yca{bottom:476.587200pt;}
.y85{bottom:476.782267pt;}
.y9e{bottom:477.525067pt;}
.y51{bottom:478.378533pt;}
.yed{bottom:478.398533pt;}
.y1a9{bottom:479.677867pt;}
.y16e{bottom:480.564000pt;}
.y1c9{bottom:481.502000pt;}
.y2c{bottom:482.288000pt;}
.y10e{bottom:486.507067pt;}
.y12c{bottom:487.486400pt;}
.y189{bottom:487.647067pt;}
.y68{bottom:489.216933pt;}
.yc9{bottom:494.588533pt;}
.y84{bottom:494.783600pt;}
.y9d{bottom:495.526400pt;}
.y50{bottom:496.379867pt;}
.yec{bottom:496.399867pt;}
.y16d{bottom:498.565333pt;}
.y1c8{bottom:498.835333pt;}
.y2b{bottom:500.749333pt;}
.y10d{bottom:505.091067pt;}
.y1a8{bottom:505.283867pt;}
.y12b{bottom:505.486400pt;}
.yc{bottom:505.714667pt;}
.y188{bottom:506.108400pt;}
.y145{bottom:507.483200pt;}
.y67{bottom:507.800933pt;}
.yc8{bottom:512.589867pt;}
.y83{bottom:512.784933pt;}
.yeb{bottom:514.379867pt;}
.y4f{bottom:514.381200pt;}
.y1c7{bottom:516.168667pt;}
.y16c{bottom:516.566667pt;}
.y156{bottom:520.348667pt;}
.y1a7{bottom:523.329867pt;}
.y12a{bottom:523.487733pt;}
.y10c{bottom:523.675067pt;}
.y187{bottom:524.569733pt;}
.y144{bottom:525.484533pt;}
.y66{bottom:526.384933pt;}
.yc7{bottom:530.589867pt;}
.y82{bottom:530.786267pt;}
.y9c{bottom:531.526400pt;}
.yea{bottom:532.381200pt;}
.y4e{bottom:532.382533pt;}
.y1c6{bottom:533.502000pt;}
.y16b{bottom:534.568000pt;}
.yb{bottom:535.978667pt;}
.y2a{bottom:538.113333pt;}
.y155{bottom:542.128267pt;}
.y10b{bottom:542.259067pt;}
.y186{bottom:543.031067pt;}
.y143{bottom:543.485867pt;}
.yc6{bottom:548.591200pt;}
.y81{bottom:548.787600pt;}
.y1a6{bottom:548.935867pt;}
.ye9{bottom:550.382533pt;}
.y4d{bottom:550.383867pt;}
.y1c5{bottom:550.835333pt;}
.y16a{bottom:552.569333pt;}
.y129{bottom:560.392133pt;}
.y10a{bottom:560.843067pt;}
.y142{bottom:561.487200pt;}
.y185{bottom:561.492400pt;}
.y65{bottom:563.859067pt;}
.ya{bottom:566.242667pt;}
.y80{bottom:566.788933pt;}
.y1a5{bottom:566.981867pt;}
.y1c4{bottom:568.168667pt;}
.ye8{bottom:568.383867pt;}
.y4c{bottom:568.385200pt;}
.y169{bottom:570.570667pt;}
.y109{bottom:579.427067pt;}
.y141{bottom:579.488533pt;}
.y184{bottom:579.953733pt;}
.y128{bottom:581.722133pt;}
.yc5{bottom:584.591200pt;}
.y7f{bottom:584.790267pt;}
.y1c3{bottom:585.502000pt;}
.ye7{bottom:586.385200pt;}
.y4b{bottom:586.386533pt;}
.y154{bottom:586.584933pt;}
.y168{bottom:588.572000pt;}
.y1a4{bottom:592.587867pt;}
.y29{bottom:593.928533pt;}
.y9{bottom:596.506667pt;}
.y140{bottom:597.489867pt;}
.y108{bottom:598.011067pt;}
.y183{bottom:598.415067pt;}
.y7e{bottom:602.791600pt;}
.y1c2{bottom:602.835333pt;}
.y127{bottom:603.052133pt;}
.ye6{bottom:604.386533pt;}
.y4a{bottom:604.387867pt;}
.y167{bottom:606.573333pt;}
.y153{bottom:608.364400pt;}
.y1a3{bottom:610.633867pt;}
.y28{bottom:613.061867pt;}
.y13f{bottom:615.491200pt;}
.y107{bottom:616.595067pt;}
.y64{bottom:619.762267pt;}
.y1c1{bottom:620.168667pt;}
.y7d{bottom:620.792933pt;}
.ye5{bottom:622.387867pt;}
.y49{bottom:622.389200pt;}
.y166{bottom:624.574667pt;}
.y8{bottom:626.770667pt;}
.y27{bottom:632.198000pt;}
.y106{bottom:635.164133pt;}
.y182{bottom:635.780133pt;}
.y1a2{bottom:636.239867pt;}
.y1c0{bottom:637.502000pt;}
.y63{bottom:638.346267pt;}
.ye4{bottom:640.389200pt;}
.y26{bottom:649.998000pt;}
.y13e{bottom:651.493867pt;}
.y105{bottom:653.748133pt;}
.y1a1{bottom:654.285867pt;}
.y1bf{bottom:654.835333pt;}
.y7c{bottom:656.792933pt;}
.y62{bottom:656.930267pt;}
.ye3{bottom:658.390533pt;}
.y48{bottom:658.391867pt;}
.y126{bottom:658.394533pt;}
.y165{bottom:660.577333pt;}
.y25{bottom:667.798000pt;}
.y152{bottom:671.722133pt;}
.y1be{bottom:672.168667pt;}
.y104{bottom:672.332133pt;}
.y13d{bottom:673.273467pt;}
.y61{bottom:675.514267pt;}
.ye2{bottom:676.391867pt;}
.y125{bottom:676.395867pt;}
.y1a0{bottom:679.891867pt;}
.y164{bottom:682.356800pt;}
.y7{bottom:683.499733pt;}
.y24{bottom:685.598000pt;}
.y103{bottom:690.916133pt;}
.y181{bottom:691.633200pt;}
.y151{bottom:693.052133pt;}
.ye1{bottom:694.393200pt;}
.y47{bottom:694.394533pt;}
.yb6{bottom:694.395867pt;}
.y124{bottom:694.397200pt;}
.y19f{bottom:697.937867pt;}
.y1bd{bottom:700.835333pt;}
.y23{bottom:703.398000pt;}
.y102{bottom:709.492533pt;}
.y180{bottom:710.094533pt;}
.y6{bottom:711.993067pt;}
.ye0{bottom:712.394533pt;}
.y46{bottom:712.395867pt;}
.yb5{bottom:712.397200pt;}
.y123{bottom:712.398533pt;}
.y9b{bottom:712.399867pt;}
.y60{bottom:713.003733pt;}
.y19e{bottom:715.983867pt;}
.y22{bottom:721.198000pt;}
.y101{bottom:728.076533pt;}
.y17f{bottom:728.555867pt;}
.y9a{bottom:730.395867pt;}
.y45{bottom:730.397200pt;}
.yb4{bottom:730.398533pt;}
.y122{bottom:730.399867pt;}
.y5{bottom:732.926400pt;}
.y5f{bottom:734.909733pt;}
.y13c{bottom:736.637733pt;}
.y21{bottom:738.998000pt;}
.y19d{bottom:741.589867pt;}
.y163{bottom:744.813600pt;}
.y100{bottom:746.652933pt;}
.y17e{bottom:747.017200pt;}
.y99{bottom:748.397200pt;}
.y44{bottom:748.398533pt;}
.yb3{bottom:748.399867pt;}
.y1bc{bottom:752.173733pt;}
.y20{bottom:756.798000pt;}
.y5e{bottom:756.815733pt;}
.y13b{bottom:757.967733pt;}
.y19c{bottom:759.635867pt;}
.y4{bottom:761.419733pt;}
.yff{bottom:765.236933pt;}
.y17d{bottom:765.478533pt;}
.y98{bottom:766.398533pt;}
.y43{bottom:766.399867pt;}
.y162{bottom:766.593067pt;}
.y1f{bottom:774.598000pt;}
.y1bb{bottom:776.179067pt;}
.y5d{bottom:778.721733pt;}
.y13a{bottom:779.297733pt;}
.y3{bottom:782.353067pt;}
.yfe{bottom:783.817200pt;}
.y17c{bottom:783.939867pt;}
.y42{bottom:784.399867pt;}
.y19b{bottom:785.241867pt;}
.y1ba{bottom:800.184400pt;}
.y5c{bottom:800.627733pt;}
.y41{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1e{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y40{bottom:858.834667pt;}
.hd{height:30.107146pt;}
.h11{height:31.700521pt;}
.h7{height:36.229167pt;}
.h15{height:36.388396pt;}
.hb{height:36.796875pt;}
.he{height:40.757812pt;}
.ha{height:41.208333pt;}
.h13{height:42.316406pt;}
.h21{height:43.022135pt;}
.h4{height:45.286458pt;}
.h1d{height:47.039062pt;}
.h1a{height:47.049729pt;}
.h3{height:47.550781pt;}
.h1f{height:52.077273pt;}
.h9{height:52.079427pt;}
.hc{height:52.084760pt;}
.h1e{height:52.095427pt;}
.h22{height:52.100760pt;}
.h10{height:52.109294pt;}
.h17{height:52.132760pt;}
.h19{height:52.164760pt;}
.h12{height:52.185560pt;}
.h25{height:52.265625pt;}
.h24{height:54.878906pt;}
.h2{height:56.608073pt;}
.hf{height:60.105469pt;}
.h18{height:60.110802pt;}
.h16{height:60.116135pt;}
.h1b{height:60.120402pt;}
.h14{height:60.142802pt;}
.h20{height:60.148135pt;}
.h1c{height:60.165735pt;}
.h23{height:60.180135pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.936933pt;}
.x5{left:73.079333pt;}
.x7{left:74.347467pt;}
.x1{left:75.590533pt;}
.x9{left:92.186000pt;}
.x4{left:94.120533pt;}
.xc{left:95.350400pt;}
.xd{left:178.753467pt;}
.x6{left:180.735600pt;}
.x8{left:189.034667pt;}
.x3{left:205.208933pt;}
.xb{left:206.384133pt;}
.x2{left:207.418000pt;}
}




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