
    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_e59a02de124b809b5283c9c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.167480;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_8d0068f5a34f4dd85fe7272b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.332520;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_e5712d40ce72a918d47be438.woff')format("woff");}.ff3{font-family:ff3;line-height:1.330078;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_9884be8c70e1a31f2423e464.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_60fe763c87185b864243669f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_a2f2193e04eb33339a072ad5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.386719;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_58dcbdd26426c1fe2f1e2413.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3ec1196cce0e561127ff0575.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00374971f8c62e898bad865c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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:-27.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.080000px;}
.v6{vertical-align:20.880000px;}
.v7{vertical-align:27.717600px;}
.v1{vertical-align:33.121200px;}
.v8{vertical-align:55.440000px;}
.v4{vertical-align:68.777400px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.047880px;}
.lse{letter-spacing:0.058080px;}
.ls6{letter-spacing:0.060120px;}
.ls2{letter-spacing:0.064067px;}
.ls1{letter-spacing:0.070020px;}
.ls4{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.095760px;}
.lsb{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.140040px;}
.lsa{letter-spacing:0.143640px;}
.ls11{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180360px;}
.lsd{letter-spacing:0.191520px;}
.ls5{letter-spacing:3.420000px;}
.ls10{letter-spacing:74.880000px;}
.lsf{letter-spacing:894.780000px;}
.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;}
}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.150240px;}
.wsd{word-spacing:-15.090120px;}
.ws4{word-spacing:-15.030000px;}
.wsc{word-spacing:-15.012000px;}
.wsb{word-spacing:-13.358520px;}
.ws21{word-spacing:-12.113640px;}
.ws1f{word-spacing:-12.065760px;}
.wsa{word-spacing:-12.017880px;}
.ws20{word-spacing:-11.970000px;}
.ws2{word-spacing:-9.720000px;}
.ws1e{word-spacing:-0.335040px;}
.ws24{word-spacing:-0.239640px;}
.ws27{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.143520px;}
.ws28{word-spacing:-0.115200px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.000240px;}
.wse{word-spacing:0.383280px;}
.ws8{word-spacing:187.922040px;}
.ws12{word-spacing:194.536440px;}
.ws1a{word-spacing:234.707760px;}
.wsf{word-spacing:237.341160px;}
.ws15{word-spacing:266.308560px;}
.ws1d{word-spacing:268.702560px;}
.ws1b{word-spacing:274.591800px;}
.ws14{word-spacing:282.587760px;}
.ws17{word-spacing:285.412680px;}
.ws11{word-spacing:287.375760px;}
.ws1c{word-spacing:290.535840px;}
.ws18{word-spacing:292.977720px;}
.ws10{word-spacing:313.949160px;}
.ws19{word-spacing:322.040880px;}
.ws16{word-spacing:325.153080px;}
.ws13{word-spacing:351.678600px;}
.ws7{word-spacing:430.470840px;}
.ws6{word-spacing:445.591440px;}
.ws9{word-spacing:460.711440px;}
.ws25{word-spacing:541.129920px;}
.ws26{word-spacing:565.644480px;}
._1{margin-left:-1.260360px;}
._0{width:1.120320px;}
._c{width:2.170440px;}
._6{width:3.240000px;}
._4{width:4.320000px;}
._5{width:5.472000px;}
._9{width:6.552000px;}
._a{width:7.632000px;}
._14{width:8.640000px;}
._f{width:10.008000px;}
._13{width:11.448000px;}
._3{width:12.528000px;}
._8{width:13.608000px;}
._7{width:14.760000px;}
._17{width:15.786283px;}
._2{width:17.105906px;}
._b{width:19.080000px;}
._16{width:20.699760px;}
._15{width:21.960000px;}
._d{width:23.040000px;}
._e{width:24.912000px;}
._10{width:26.568000px;}
._11{width:28.008000px;}
._12{width:29.088000px;}
._19{width:30.168000px;}
._1b{width:31.248000px;}
._30{width:32.328000px;}
._31{width:33.840000px;}
._32{width:35.208000px;}
._1a{width:37.080000px;}
._b1{width:38.448000px;}
._af{width:39.456000px;}
._ae{width:40.608000px;}
._4c{width:42.755280px;}
._34{width:47.880000px;}
._33{width:51.912000px;}
._35{width:54.000000px;}
._b0{width:65.520000px;}
._49{width:71.536200px;}
._18{width:73.584000px;}
._4b{width:80.647560px;}
._a3{width:83.554680px;}
._9d{width:84.557640px;}
._37{width:86.587440px;}
._4a{width:89.953200px;}
._94{width:92.072760px;}
._a2{width:93.111360px;}
._a8{width:95.166960px;}
._a9{width:96.879480px;}
._70{width:98.216760px;}
._3b{width:99.531960px;}
._97{width:100.895280px;}
._36{width:104.643480px;}
._3a{width:106.565400px;}
._a0{width:107.604120px;}
._71{width:109.934040px;}
._9e{width:111.838560px;}
._9b{width:114.093000px;}
._5c{width:115.621560px;}
._57{width:116.746800px;}
._91{width:117.776640px;}
._99{width:119.616480px;}
._9f{width:122.045640px;}
._55{width:123.724200px;}
._50{width:125.440200px;}
._53{width:128.207520px;}
._39{width:132.324360px;}
._98{width:133.845000px;}
._92{width:141.805800px;}
._54{width:143.948280px;}
._38{width:145.994040px;}
._1d{width:147.052800px;}
._7b{width:154.540680px;}
._5b{width:155.940960px;}
._56{width:157.066200px;}
._2a{width:158.387400px;}
._1c{width:160.429800px;}
._41{width:162.543960px;}
._78{width:165.391920px;}
._23{width:166.705800px;}
._5f{width:169.142400px;}
._73{width:173.636880px;}
._7d{width:175.500600px;}
._76{width:176.760720px;}
._7c{width:177.863880px;}
._1e{width:181.094520px;}
._7f{width:183.539040px;}
._47{width:185.596440px;}
._51{width:186.829800px;}
._2c{width:191.578200px;}
._28{width:193.020360px;}
._89{width:194.705040px;}
._20{width:196.153920px;}
._26{width:198.034560px;}
._7e{width:199.056600px;}
._3d{width:201.943200px;}
._87{width:203.013000px;}
._4f{width:206.892000px;}
._4e{width:219.041400px;}
._85{width:222.282120px;}
._a4{width:235.178880px;}
._45{width:236.842080px;}
._42{width:239.000880px;}
._3c{width:248.968920px;}
._4d{width:250.219560px;}
._64{width:253.333080px;}
._44{width:254.482080px;}
._81{width:262.198800px;}
._3e{width:266.380200px;}
._48{width:270.006720px;}
._67{width:275.111160px;}
._43{width:278.364960px;}
._40{width:284.933400px;}
._6a{width:287.826840px;}
._a5{width:292.164840px;}
._3f{width:294.100800px;}
._83{width:296.576520px;}
._58{width:298.531800px;}
._a1{width:301.967040px;}
._52{width:303.688320px;}
._24{width:323.861640px;}
._2b{width:330.496680px;}
._46{width:332.217000px;}
._5e{width:337.119120px;}
._1f{width:338.330520px;}
._22{width:339.472800px;}
._a7{width:347.556600px;}
._29{width:350.452680px;}
._21{width:353.451360px;}
._27{width:355.418400px;}
._7a{width:357.284400px;}
._59{width:364.911360px;}
._68{width:370.670880px;}
._95{width:374.669160px;}
._25{width:375.691200px;}
._6c{width:380.202600px;}
._82{width:389.162400px;}
._2d{width:394.249200px;}
._88{width:397.400280px;}
._84{width:436.319040px;}
._69{width:466.134960px;}
._66{width:473.470560px;}
._8d{width:480.709560px;}
._86{width:484.675800px;}
._2f{width:498.846240px;}
._90{width:499.876920px;}
._8e{width:505.818120px;}
._79{width:519.131640px;}
._9a{width:523.227720px;}
._a6{width:526.688520px;}
._77{width:581.907000px;}
._6d{width:584.590920px;}
._6f{width:607.488720px;}
._6e{width:609.750600px;}
._60{width:615.359880px;}
._2e{width:623.694240px;}
._61{width:628.440240px;}
._96{width:634.997880px;}
._62{width:640.454040px;}
._75{width:646.848960px;}
._6b{width:754.699320px;}
._74{width:762.872160px;}
._8f{width:797.527800px;}
._9c{width:823.872840px;}
._8c{width:841.481640px;}
._80{width:851.166000px;}
._65{width:882.515160px;}
._72{width:894.992160px;}
._5d{width:948.158160px;}
._8b{width:971.557200px;}
._63{width:1004.248440px;}
._ad{width:1024.288800px;}
._8a{width:1047.729120px;}
._5a{width:1087.510320px;}
._93{width:1099.122240px;}
._aa{width:1135.337400px;}
._ac{width:1156.091400px;}
._ab{width:1351.857000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:64.067400px;}
.fs0{font-size:70.020000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:1.078950px;}
.y45{bottom:71.490450px;}
.y88{bottom:99.291450px;}
.y5b{bottom:99.295950px;}
.y38{bottom:100.380450px;}
.y6b{bottom:106.050450px;}
.yb1{bottom:114.690450px;}
.y159{bottom:115.140600px;}
.y87{bottom:116.575950px;}
.y6a{bottom:116.580450px;}
.ya3{bottom:121.080450px;}
.y5a{bottom:123.330450px;}
.ycb{bottom:123.510450px;}
.yb0{bottom:125.216100px;}
.y10d{bottom:128.640450px;}
.yab{bottom:130.796100px;}
.y37{bottom:131.430450px;}
.y59{bottom:133.860450px;}
.y18a{bottom:139.170450px;}
.y86{bottom:140.610450px;}
.yaf{bottom:142.410450px;}
.ye7{bottom:142.590450px;}
.y158{bottom:146.190600px;}
.y85{bottom:151.050450px;}
.ya2{bottom:152.130450px;}
.yca{bottom:154.560450px;}
.yaa{bottom:154.740450px;}
.yae{bottom:159.690450px;}
.y36{bottom:162.480450px;}
.ya9{bottom:165.270450px;}
.y58{bottom:167.610450px;}
.y189{bottom:171.480450px;}
.ye6{bottom:173.640450px;}
.y137{bottom:176.700450px;}
.y157{bottom:177.240600px;}
.y84{bottom:183.000450px;}
.y16a{bottom:183.090450px;}
.ya1{bottom:183.180450px;}
.yc9{bottom:185.610450px;}
.y61{bottom:193.440450px;}
.y35{bottom:193.530450px;}
.y57{bottom:198.660450px;}
.y188{bottom:203.880450px;}
.ye5{bottom:204.690450px;}
.y136{bottom:207.750450px;}
.y156{bottom:208.290600px;}
.y83{bottom:214.050450px;}
.ya0{bottom:214.230450px;}
.y169{bottom:215.490450px;}
.y18{bottom:218.745450px;}
.y10c{bottom:221.790450px;}
.y34{bottom:224.580450px;}
.y56{bottom:229.710450px;}
.ye4{bottom:235.740450px;}
.y187{bottom:236.190450px;}
.y17{bottom:237.997650px;}
.y135{bottom:238.800450px;}
.y155{bottom:239.340600px;}
.y82{bottom:245.100450px;}
.y9f{bottom:245.280450px;}
.yc8{bottom:247.710450px;}
.y168{bottom:247.890450px;}
.y10b{bottom:252.840450px;}
.y33{bottom:255.630450px;}
.y16{bottom:257.265900px;}
.y55{bottom:260.760450px;}
.ye3{bottom:266.790450px;}
.y186{bottom:267.240450px;}
.y134{bottom:269.850450px;}
.y154{bottom:270.390600px;}
.y81{bottom:276.150450px;}
.yc7{bottom:278.760450px;}
.y167{bottom:278.940450px;}
.y10a{bottom:283.890450px;}
.y32{bottom:286.680450px;}
.y54{bottom:291.810450px;}
.ye2{bottom:297.840450px;}
.y185{bottom:299.640450px;}
.y133{bottom:300.900450px;}
.y153{bottom:301.440600px;}
.y80{bottom:307.200450px;}
.yc6{bottom:309.810450px;}
.y166{bottom:309.990450px;}
.y109{bottom:314.940450px;}
.ya8{bottom:317.730300px;}
.y31{bottom:317.730450px;}
.y95{bottom:328.260450px;}
.ye1{bottom:328.890450px;}
.y184{bottom:330.690450px;}
.y132{bottom:331.950450px;}
.y152{bottom:332.490600px;}
.y7f{bottom:338.250450px;}
.yc5{bottom:340.860450px;}
.y165{bottom:340.950450px;}
.y108{bottom:345.990450px;}
.y30{bottom:348.690450px;}
.y44{bottom:348.780300px;}
.y60{bottom:348.780450px;}
.y53{bottom:353.910450px;}
.ye0{bottom:359.940450px;}
.y15{bottom:361.293750px;}
.y183{bottom:361.650450px;}
.y98{bottom:362.550450px;}
.y131{bottom:363.000450px;}
.y151{bottom:363.540600px;}
.y9d{bottom:363.900450px;}
.y7e{bottom:369.300450px;}
.yc4{bottom:371.910450px;}
.y164{bottom:373.350450px;}
.y107{bottom:377.040450px;}
.y43{bottom:379.830300px;}
.y5f{bottom:379.830450px;}
.y14{bottom:382.352250px;}
.y52{bottom:384.960450px;}
.ydf{bottom:390.990300px;}
.y182{bottom:394.050450px;}
.y7d{bottom:400.350450px;}
.yc3{bottom:402.960450px;}
.y163{bottom:404.310450px;}
.y106{bottom:408.090450px;}
.ye8{bottom:410.790450px;}
.y2f{bottom:410.880300px;}
.y5e{bottom:410.880450px;}
.y150{bottom:414.750600px;}
.y51{bottom:416.010450px;}
.y130{bottom:417.180600px;}
.yde{bottom:422.040450px;}
.y181{bottom:425.100450px;}
.y9a{bottom:425.464950px;}
.y14f{bottom:434.640450px;}
.y12f{bottom:436.350450px;}
.y162{bottom:436.710450px;}
.y105{bottom:439.140450px;}
.y99{bottom:439.230450px;}
.y69{bottom:441.930150px;}
.y2e{bottom:441.930300px;}
.y5d{bottom:441.930450px;}
.y50{bottom:447.060300px;}
.y14e{bottom:451.560450px;}
.ydd{bottom:453.090450px;}
.y12e{bottom:454.350450px;}
.y180{bottom:456.060450px;}
.y7c{bottom:459.745950px;}
.yc2{bottom:465.060300px;}
.y9e{bottom:465.150450px;}
.y13{bottom:466.411200px;}
.y161{bottom:467.760450px;}
.y14d{bottom:468.390450px;}
.y104{bottom:470.190450px;}
.y12d{bottom:472.350450px;}
.y68{bottom:472.980150px;}
.y2d{bottom:472.980300px;}
.y42{bottom:472.980450px;}
.y4f{bottom:478.110300px;}
.y7b{bottom:483.060450px;}
.ydc{bottom:484.140450px;}
.y14c{bottom:485.220450px;}
.y12{bottom:487.469700px;}
.y17f{bottom:488.460450px;}
.y12c{bottom:490.350450px;}
.yc1{bottom:496.110300px;}
.y160{bottom:500.160450px;}
.y103{bottom:501.240450px;}
.y14b{bottom:502.950600px;}
.y67{bottom:504.030150px;}
.y2c{bottom:504.030300px;}
.y41{bottom:504.030450px;}
.y7a{bottom:508.170450px;}
.y11{bottom:508.440600px;}
.y4e{bottom:509.160300px;}
.y12b{bottom:509.340600px;}
.ydb{bottom:515.190450px;}
.y97{bottom:517.620600px;}
.y17e{bottom:519.510450px;}
.y14a{bottom:519.780600px;}
.y9c{bottom:522.389700px;}
.yc0{bottom:527.160300px;}
.y12a{bottom:527.340450px;}
.y10{bottom:529.499250px;}
.y15f{bottom:531.120450px;}
.y79{bottom:534.810450px;}
.y2b{bottom:535.080300px;}
.y40{bottom:535.080450px;}
.y9b{bottom:536.430450px;}
.y149{bottom:536.700450px;}
.y4d{bottom:540.210300px;}
.y129{bottom:545.340450px;}
.yf{bottom:550.470150px;}
.y17d{bottom:551.910450px;}
.y102{bottom:552.450450px;}
.y148{bottom:553.534950px;}
.ybf{bottom:558.210300px;}
.y78{bottom:561.450450px;}
.y128{bottom:563.340450px;}
.y15e{bottom:563.520450px;}
.y2a{bottom:566.130300px;}
.y3f{bottom:566.130450px;}
.y147{bottom:567.300450px;}
.y4c{bottom:571.260300px;}
.y96{bottom:571.350450px;}
.ye{bottom:571.441200px;}
.y101{bottom:572.160450px;}
.yda{bottom:577.290300px;}
.y146{bottom:581.164950px;}
.y127{bottom:581.340450px;}
.y17c{bottom:582.870450px;}
.y77{bottom:588.000450px;}
.ybe{bottom:589.260300px;}
.y100{bottom:590.880450px;}
.yd{bottom:592.499700px;}
.y15d{bottom:594.480450px;}
.y145{bottom:594.930450px;}
.y29{bottom:597.090300px;}
.yad{bottom:597.090450px;}
.y126{bottom:599.340450px;}
.y4b{bottom:602.310450px;}
.yd9{bottom:608.340300px;}
.y144{bottom:608.700450px;}
.yff{bottom:609.600450px;}
.y76{bottom:614.640450px;}
.y17b{bottom:615.180450px;}
.y125{bottom:617.340450px;}
.ybd{bottom:620.310450px;}
.y143{bottom:625.620450px;}
.y15c{bottom:626.790450px;}
.y3e{bottom:628.140150px;}
.y66{bottom:628.140300px;}
.y28{bottom:628.140450px;}
.yfe{bottom:628.410450px;}
.y4a{bottom:633.360450px;}
.y124{bottom:635.340450px;}
.yd8{bottom:639.300450px;}
.y75{bottom:641.280450px;}
.y142{bottom:642.450450px;}
.yfd{bottom:647.130450px;}
.y17a{bottom:647.580450px;}
.ybc{bottom:651.360450px;}
.y123{bottom:653.340450px;}
.yc{bottom:655.500150px;}
.y15b{bottom:659.010450px;}
.y3d{bottom:659.190150px;}
.y65{bottom:659.190300px;}
.y27{bottom:659.190450px;}
.y141{bottom:659.370450px;}
.y89{bottom:659.460450px;}
.y49{bottom:664.410450px;}
.yfc{bottom:665.850450px;}
.y74{bottom:667.920450px;}
.yd7{bottom:670.350450px;}
.y122{bottom:671.340450px;}
.y140{bottom:676.200450px;}
.yb{bottom:676.471050px;}
.y179{bottom:678.630450px;}
.y196{bottom:681.240450px;}
.ybb{bottom:682.410450px;}
.yfb{bottom:684.660450px;}
.y121{bottom:689.340450px;}
.y3c{bottom:690.240300px;}
.y26{bottom:690.240450px;}
.y13f{bottom:693.120450px;}
.y73{bottom:694.560450px;}
.y48{bottom:695.460450px;}
.ya{bottom:697.529550px;}
.yd6{bottom:701.400450px;}
.y93{bottom:702.833850px;}
.yfa{bottom:703.380450px;}
.y120{bottom:707.340450px;}
.y13e{bottom:709.950450px;}
.y178{bottom:711.030450px;}
.y195{bottom:712.200450px;}
.yba{bottom:713.460450px;}
.y8e{bottom:716.700450px;}
.y9{bottom:718.500600px;}
.y72{bottom:721.110450px;}
.y3b{bottom:721.290300px;}
.y25{bottom:721.290450px;}
.yf9{bottom:722.100450px;}
.y11f{bottom:725.340450px;}
.y47{bottom:726.420450px;}
.y13d{bottom:726.870450px;}
.yd5{bottom:732.450450px;}
.y8{bottom:739.559100px;}
.yf8{bottom:740.910450px;}
.y177{bottom:741.990450px;}
.y11e{bottom:743.340450px;}
.y13c{bottom:743.700450px;}
.y194{bottom:744.600450px;}
.y71{bottom:747.750450px;}
.y3a{bottom:752.340300px;}
.ya6{bottom:752.340450px;}
.y46{bottom:757.380450px;}
.yf7{bottom:759.630450px;}
.y7{bottom:760.530000px;}
.y13b{bottom:761.068500px;}
.y11d{bottom:761.340450px;}
.yd4{bottom:763.500450px;}
.yb9{bottom:767.100450px;}
.y13a{bottom:768.000450px;}
.y6f{bottom:773.035950px;}
.y70{bottom:773.040000px;}
.y176{bottom:774.300450px;}
.y193{bottom:775.650450px;}
.y90{bottom:777.989700px;}
.yf6{bottom:778.350450px;}
.y11c{bottom:779.340450px;}
.y6{bottom:781.501050px;}
.y24{bottom:783.390300px;}
.y64{bottom:783.390450px;}
.yb8{bottom:786.990450px;}
.y139{bottom:789.330450px;}
.y8f{bottom:792.030450px;}
.y6e{bottom:796.350450px;}
.yf5{bottom:797.160450px;}
.y11b{bottom:797.340450px;}
.y5{bottom:802.559550px;}
.y175{bottom:806.700450px;}
.yb7{bottom:806.880450px;}
.y192{bottom:808.050450px;}
.y23{bottom:814.440300px;}
.y63{bottom:814.440450px;}
.y11a{bottom:815.340450px;}
.yd3{bottom:815.430600px;}
.yf4{bottom:815.880450px;}
.y138{bottom:816.330450px;}
.y94{bottom:819.750450px;}
.y6d{bottom:821.543850px;}
.y4{bottom:823.530450px;}
.yb6{bottom:826.770450px;}
.y119{bottom:833.340450px;}
.yf3{bottom:834.600450px;}
.yd2{bottom:835.050450px;}
.y174{bottom:837.750450px;}
.y191{bottom:839.010450px;}
.y3{bottom:844.588950px;}
.ya5{bottom:845.310450px;}
.y22{bottom:845.490300px;}
.y62{bottom:845.490450px;}
.yb5{bottom:846.570450px;}
.y6c{bottom:847.380450px;}
.y118{bottom:851.160450px;}
.yf2{bottom:853.410450px;}
.yd1{bottom:854.940450px;}
.yb4{bottom:864.836100px;}
.y2{bottom:865.560000px;}
.y92{bottom:865.649700px;}
.y173{bottom:868.710450px;}
.y117{bottom:870.330450px;}
.y8c{bottom:870.871500px;}
.y190{bottom:871.410450px;}
.y8b{bottom:871.950450px;}
.yf1{bottom:872.130450px;}
.yd0{bottom:874.830450px;}
.y21{bottom:876.540300px;}
.ya7{bottom:876.540450px;}
.y91{bottom:879.690450px;}
.yb3{bottom:882.030450px;}
.y1{bottom:886.530900px;}
.y116{bottom:887.884950px;}
.yf0{bottom:890.850450px;}
.y112{bottom:894.719550px;}
.ycf{bottom:894.720450px;}
.y172{bottom:901.110450px;}
.y115{bottom:901.650450px;}
.y18f{bottom:902.370450px;}
.y20{bottom:907.590300px;}
.ya4{bottom:907.590450px;}
.y111{bottom:908.580900px;}
.yb2{bottom:909.030450px;}
.yef{bottom:909.660450px;}
.yce{bottom:915.330450px;}
.y114{bottom:915.511650px;}
.y110{bottom:922.080750px;}
.yee{bottom:928.290600px;}
.y113{bottom:929.011350px;}
.y8a{bottom:929.550450px;}
.y171{bottom:932.160450px;}
.ycd{bottom:934.681050px;}
.y18e{bottom:934.770450px;}
.yac{bottom:938.550450px;}
.y1f{bottom:938.640450px;}
.y10f{bottom:945.660450px;}
.yed{bottom:948.270450px;}
.ycc{bottom:951.690450px;}
.y170{bottom:964.470450px;}
.y18d{bottom:965.730450px;}
.yec{bottom:966.990450px;}
.y1e{bottom:969.690450px;}
.y10e{bottom:971.580450px;}
.yeb{bottom:985.710450px;}
.y16f{bottom:996.870450px;}
.y18c{bottom:998.130450px;}
.y1d{bottom:1000.740450px;}
.yea{bottom:1005.600450px;}
.y16e{bottom:1027.830450px;}
.y18b{bottom:1029.180450px;}
.y15a{bottom:1031.610450px;}
.y1c{bottom:1031.790450px;}
.ye9{bottom:1033.680450px;}
.y16d{bottom:1060.230450px;}
.y1b{bottom:1062.840450px;}
.y16c{bottom:1092.630450px;}
.y1a{bottom:1093.800450px;}
.y39{bottom:1093.890450px;}
.y16b{bottom:1123.590450px;}
.y19{bottom:1124.760450px;}
.y5c{bottom:1124.940450px;}
.h12{height:12.055500px;}
.hc{height:41.484960px;}
.h23{height:42.011895px;}
.h13{height:48.370957px;}
.h11{height:49.119082px;}
.h22{height:49.124482px;}
.h14{height:50.199082px;}
.h1b{height:50.200882px;}
.h1e{height:51.087960px;}
.h1f{height:52.168560px;}
.h1d{height:52.169760px;}
.h1c{height:52.170360px;}
.h19{height:52.751777px;}
.h15{height:54.553711px;}
.hf{height:55.397461px;}
.h10{height:57.618000px;}
.he{height:61.675840px;}
.h16{height:63.175781px;}
.ha{height:64.148040px;}
.h4{height:64.380229px;}
.h1a{height:64.869240px;}
.h3{height:70.361895px;}
.h8{height:73.687500px;}
.h7{height:73.863281px;}
.h9{height:76.824000px;}
.h20{height:76.836682px;}
.hd{height:84.207960px;}
.h17{height:84.208560px;}
.hb{height:84.209160px;}
.h21{height:104.564482px;}
.h18{height:130.453240px;}
.h0{height:1019.880000px;}
.h1{height:1020.000000px;}
.h5{height:1261.440000px;}
.h6{height:1261.500000px;}
.h2{height:1263.000000px;}
.w6{width:49.329000px;}
.w4{width:875.250000px;}
.w3{width:875.520000px;}
.w0{width:886.320000px;}
.w1{width:886.500000px;}
.w2{width:892.500000px;}
.w5{width:892.830000px;}
.x0{left:0.000000px;}
.x10{left:21.334500px;}
.x2{left:108.000000px;}
.x1{left:124.110000px;}
.x2b{left:133.470000px;}
.x20{left:135.000000px;}
.x34{left:148.230000px;}
.x26{left:150.210000px;}
.x31{left:152.370000px;}
.x2a{left:157.140000px;}
.x21{left:162.000000px;}
.xd{left:165.960000px;}
.xf{left:171.630000px;}
.x18{left:179.460000px;}
.x27{left:192.060000px;}
.x19{left:198.270000px;}
.xc{left:199.980000px;}
.x6{left:202.770000px;}
.x4{left:206.640000px;}
.xb{left:217.620000px;}
.xa{left:221.400000px;}
.xe{left:235.260000px;}
.x32{left:236.340000px;}
.x23{left:239.760000px;}
.x1e{left:266.400000px;}
.x15{left:281.430000px;}
.x5{left:323.092500px;}
.x29{left:327.780600px;}
.x24{left:334.616700px;}
.x1f{left:350.280000px;}
.x17{left:353.700000px;}
.x7{left:365.406150px;}
.x35{left:409.322100px;}
.x25{left:419.932650px;}
.x33{left:427.140600px;}
.x28{left:428.940000px;}
.x2e{left:447.659250px;}
.x2d{left:457.019700px;}
.x16{left:486.274950px;}
.x9{left:517.140450px;}
.x2c{left:521.189550px;}
.x8{left:549.090900px;}
.x36{left:581.852850px;}
.x14{left:587.880000px;}
.x12{left:602.010000px;}
.x1b{left:609.480000px;}
.x1d{left:619.382850px;}
.x1c{left:624.514350px;}
.x30{left:627.751350px;}
.x13{left:632.341950px;}
.x2f{left:634.769400px;}
.x11{left:648.450000px;}
.x1a{left:653.130000px;}
.x22{left:761.219850px;}
.x3{left:768.690000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.960000pt;}
.v6{vertical-align:18.560000pt;}
.v7{vertical-align:24.637867pt;}
.v1{vertical-align:29.441067pt;}
.v8{vertical-align:49.280000pt;}
.v4{vertical-align:61.135467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.042560pt;}
.lse{letter-spacing:0.051627pt;}
.ls6{letter-spacing:0.053440pt;}
.ls2{letter-spacing:0.056949pt;}
.ls1{letter-spacing:0.062240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.085120pt;}
.lsb{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.124480pt;}
.lsa{letter-spacing:0.127680pt;}
.ls11{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160320pt;}
.lsd{letter-spacing:0.170240pt;}
.ls5{letter-spacing:3.040000pt;}
.ls10{letter-spacing:66.560000pt;}
.lsf{letter-spacing:795.360000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.466880pt;}
.wsd{word-spacing:-13.413440pt;}
.ws4{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.344000pt;}
.wsb{word-spacing:-11.874240pt;}
.ws21{word-spacing:-10.767680pt;}
.ws1f{word-spacing:-10.725120pt;}
.wsa{word-spacing:-10.682560pt;}
.ws20{word-spacing:-10.640000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws1e{word-spacing:-0.297813pt;}
.ws24{word-spacing:-0.213013pt;}
.ws27{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.127573pt;}
.ws28{word-spacing:-0.102400pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.000213pt;}
.wse{word-spacing:0.340693pt;}
.ws8{word-spacing:167.041813pt;}
.ws12{word-spacing:172.921280pt;}
.ws1a{word-spacing:208.629120pt;}
.wsf{word-spacing:210.969920pt;}
.ws15{word-spacing:236.718720pt;}
.ws1d{word-spacing:238.846720pt;}
.ws1b{word-spacing:244.081600pt;}
.ws14{word-spacing:251.189120pt;}
.ws17{word-spacing:253.700160pt;}
.ws11{word-spacing:255.445120pt;}
.ws1c{word-spacing:258.254080pt;}
.ws18{word-spacing:260.424640pt;}
.ws10{word-spacing:279.065920pt;}
.ws19{word-spacing:286.258560pt;}
.ws16{word-spacing:289.024960pt;}
.ws13{word-spacing:312.603200pt;}
.ws7{word-spacing:382.640747pt;}
.ws6{word-spacing:396.081280pt;}
.ws9{word-spacing:409.521280pt;}
.ws25{word-spacing:481.004373pt;}
.ws26{word-spacing:502.795093pt;}
._1{margin-left:-1.120320pt;}
._0{width:0.995840pt;}
._c{width:1.929280pt;}
._6{width:2.880000pt;}
._4{width:3.840000pt;}
._5{width:4.864000pt;}
._9{width:5.824000pt;}
._a{width:6.784000pt;}
._14{width:7.680000pt;}
._f{width:8.896000pt;}
._13{width:10.176000pt;}
._3{width:11.136000pt;}
._8{width:12.096000pt;}
._7{width:13.120000pt;}
._17{width:14.032251pt;}
._2{width:15.205250pt;}
._b{width:16.960000pt;}
._16{width:18.399787pt;}
._15{width:19.520000pt;}
._d{width:20.480000pt;}
._e{width:22.144000pt;}
._10{width:23.616000pt;}
._11{width:24.896000pt;}
._12{width:25.856000pt;}
._19{width:26.816000pt;}
._1b{width:27.776000pt;}
._30{width:28.736000pt;}
._31{width:30.080000pt;}
._32{width:31.296000pt;}
._1a{width:32.960000pt;}
._b1{width:34.176000pt;}
._af{width:35.072000pt;}
._ae{width:36.096000pt;}
._4c{width:38.004693pt;}
._34{width:42.560000pt;}
._33{width:46.144000pt;}
._35{width:48.000000pt;}
._b0{width:58.240000pt;}
._49{width:63.587733pt;}
._18{width:65.408000pt;}
._4b{width:71.686720pt;}
._a3{width:74.270827pt;}
._9d{width:75.162347pt;}
._37{width:76.966613pt;}
._4a{width:79.958400pt;}
._94{width:81.842453pt;}
._a2{width:82.765653pt;}
._a8{width:84.592853pt;}
._a9{width:86.115093pt;}
._70{width:87.303787pt;}
._3b{width:88.472853pt;}
._97{width:89.684693pt;}
._36{width:93.016427pt;}
._3a{width:94.724800pt;}
._a0{width:95.648107pt;}
._71{width:97.719147pt;}
._9e{width:99.412053pt;}
._9b{width:101.416000pt;}
._5c{width:102.774720pt;}
._57{width:103.774933pt;}
._91{width:104.690347pt;}
._99{width:106.325760pt;}
._9f{width:108.485013pt;}
._55{width:109.977067pt;}
._50{width:111.502400pt;}
._53{width:113.962240pt;}
._39{width:117.621653pt;}
._98{width:118.973333pt;}
._92{width:126.049600pt;}
._54{width:127.954027pt;}
._38{width:129.772480pt;}
._1d{width:130.713600pt;}
._7b{width:137.369493pt;}
._5b{width:138.614187pt;}
._56{width:139.614400pt;}
._2a{width:140.788800pt;}
._1c{width:142.604267pt;}
._41{width:144.483520pt;}
._78{width:147.015040pt;}
._23{width:148.182933pt;}
._5f{width:150.348800pt;}
._73{width:154.343893pt;}
._7d{width:156.000533pt;}
._76{width:157.120640pt;}
._7c{width:158.101227pt;}
._1e{width:160.972907pt;}
._7f{width:163.145813pt;}
._47{width:164.974613pt;}
._51{width:166.070933pt;}
._2c{width:170.291733pt;}
._28{width:171.573653pt;}
._89{width:173.071147pt;}
._20{width:174.359040pt;}
._26{width:176.030720pt;}
._7e{width:176.939200pt;}
._3d{width:179.505067pt;}
._87{width:180.456000pt;}
._4f{width:183.904000pt;}
._4e{width:194.703467pt;}
._85{width:197.584107pt;}
._a4{width:209.047893pt;}
._45{width:210.526293pt;}
._42{width:212.445227pt;}
._3c{width:221.305707pt;}
._4d{width:222.417387pt;}
._64{width:225.184960pt;}
._44{width:226.206293pt;}
._81{width:233.065600pt;}
._3e{width:236.782400pt;}
._48{width:240.005973pt;}
._67{width:244.543253pt;}
._43{width:247.435520pt;}
._40{width:253.274133pt;}
._6a{width:255.846080pt;}
._a5{width:259.702080pt;}
._3f{width:261.422933pt;}
._83{width:263.623573pt;}
._58{width:265.361600pt;}
._a1{width:268.415147pt;}
._52{width:269.945173pt;}
._24{width:287.877013pt;}
._2b{width:293.774827pt;}
._46{width:295.304000pt;}
._5e{width:299.661440pt;}
._1f{width:300.738240pt;}
._22{width:301.753600pt;}
._a7{width:308.939200pt;}
._29{width:311.513493pt;}
._21{width:314.178987pt;}
._27{width:315.927467pt;}
._7a{width:317.586133pt;}
._59{width:324.365653pt;}
._68{width:329.485227pt;}
._95{width:333.039253pt;}
._25{width:333.947733pt;}
._6c{width:337.957867pt;}
._82{width:345.922133pt;}
._2d{width:350.443733pt;}
._88{width:353.244693pt;}
._84{width:387.839147pt;}
._69{width:414.342187pt;}
._66{width:420.862720pt;}
._8d{width:427.297387pt;}
._86{width:430.822933pt;}
._2f{width:443.418880pt;}
._90{width:444.335040pt;}
._8e{width:449.616107pt;}
._79{width:461.450347pt;}
._9a{width:465.091307pt;}
._a6{width:468.167573pt;}
._77{width:517.250667pt;}
._6d{width:519.636373pt;}
._6f{width:539.989973pt;}
._6e{width:542.000533pt;}
._60{width:546.986560pt;}
._2e{width:554.394880pt;}
._61{width:558.613547pt;}
._96{width:564.442560pt;}
._62{width:569.292480pt;}
._75{width:574.976853pt;}
._6b{width:670.843840pt;}
._74{width:678.108587pt;}
._8f{width:708.913600pt;}
._9c{width:732.331413pt;}
._8c{width:747.983680pt;}
._80{width:756.592000pt;}
._65{width:784.457920pt;}
._72{width:795.548587pt;}
._5d{width:842.807253pt;}
._8b{width:863.606400pt;}
._63{width:892.665280pt;}
._ad{width:910.478933pt;}
._8a{width:931.314773pt;}
._5a{width:966.675840pt;}
._93{width:976.997547pt;}
._aa{width:1009.188800pt;}
._ac{width:1027.636800pt;}
._ab{width:1201.650667pt;}
.fs7{font-size:26.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:56.948800pt;}
.fs0{font-size:62.240000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:0.959067pt;}
.y45{bottom:63.547067pt;}
.y88{bottom:88.259067pt;}
.y5b{bottom:88.263067pt;}
.y38{bottom:89.227067pt;}
.y6b{bottom:94.267067pt;}
.yb1{bottom:101.947067pt;}
.y159{bottom:102.347200pt;}
.y87{bottom:103.623067pt;}
.y6a{bottom:103.627067pt;}
.ya3{bottom:107.627067pt;}
.y5a{bottom:109.627067pt;}
.ycb{bottom:109.787067pt;}
.yb0{bottom:111.303200pt;}
.y10d{bottom:114.347067pt;}
.yab{bottom:116.263200pt;}
.y37{bottom:116.827067pt;}
.y59{bottom:118.987067pt;}
.y18a{bottom:123.707067pt;}
.y86{bottom:124.987067pt;}
.yaf{bottom:126.587067pt;}
.ye7{bottom:126.747067pt;}
.y158{bottom:129.947200pt;}
.y85{bottom:134.267067pt;}
.ya2{bottom:135.227067pt;}
.yca{bottom:137.387067pt;}
.yaa{bottom:137.547067pt;}
.yae{bottom:141.947067pt;}
.y36{bottom:144.427067pt;}
.ya9{bottom:146.907067pt;}
.y58{bottom:148.987067pt;}
.y189{bottom:152.427067pt;}
.ye6{bottom:154.347067pt;}
.y137{bottom:157.067067pt;}
.y157{bottom:157.547200pt;}
.y84{bottom:162.667067pt;}
.y16a{bottom:162.747067pt;}
.ya1{bottom:162.827067pt;}
.yc9{bottom:164.987067pt;}
.y61{bottom:171.947067pt;}
.y35{bottom:172.027067pt;}
.y57{bottom:176.587067pt;}
.y188{bottom:181.227067pt;}
.ye5{bottom:181.947067pt;}
.y136{bottom:184.667067pt;}
.y156{bottom:185.147200pt;}
.y83{bottom:190.267067pt;}
.ya0{bottom:190.427067pt;}
.y169{bottom:191.547067pt;}
.y18{bottom:194.440400pt;}
.y10c{bottom:197.147067pt;}
.y34{bottom:199.627067pt;}
.y56{bottom:204.187067pt;}
.ye4{bottom:209.547067pt;}
.y187{bottom:209.947067pt;}
.y17{bottom:211.553467pt;}
.y135{bottom:212.267067pt;}
.y155{bottom:212.747200pt;}
.y82{bottom:217.867067pt;}
.y9f{bottom:218.027067pt;}
.yc8{bottom:220.187067pt;}
.y168{bottom:220.347067pt;}
.y10b{bottom:224.747067pt;}
.y33{bottom:227.227067pt;}
.y16{bottom:228.680800pt;}
.y55{bottom:231.787067pt;}
.ye3{bottom:237.147067pt;}
.y186{bottom:237.547067pt;}
.y134{bottom:239.867067pt;}
.y154{bottom:240.347200pt;}
.y81{bottom:245.467067pt;}
.yc7{bottom:247.787067pt;}
.y167{bottom:247.947067pt;}
.y10a{bottom:252.347067pt;}
.y32{bottom:254.827067pt;}
.y54{bottom:259.387067pt;}
.ye2{bottom:264.747067pt;}
.y185{bottom:266.347067pt;}
.y133{bottom:267.467067pt;}
.y153{bottom:267.947200pt;}
.y80{bottom:273.067067pt;}
.yc6{bottom:275.387067pt;}
.y166{bottom:275.547067pt;}
.y109{bottom:279.947067pt;}
.ya8{bottom:282.426933pt;}
.y31{bottom:282.427067pt;}
.y95{bottom:291.787067pt;}
.ye1{bottom:292.347067pt;}
.y184{bottom:293.947067pt;}
.y132{bottom:295.067067pt;}
.y152{bottom:295.547200pt;}
.y7f{bottom:300.667067pt;}
.yc5{bottom:302.987067pt;}
.y165{bottom:303.067067pt;}
.y108{bottom:307.547067pt;}
.y30{bottom:309.947067pt;}
.y44{bottom:310.026933pt;}
.y60{bottom:310.027067pt;}
.y53{bottom:314.587067pt;}
.ye0{bottom:319.947067pt;}
.y15{bottom:321.150000pt;}
.y183{bottom:321.467067pt;}
.y98{bottom:322.267067pt;}
.y131{bottom:322.667067pt;}
.y151{bottom:323.147200pt;}
.y9d{bottom:323.467067pt;}
.y7e{bottom:328.267067pt;}
.yc4{bottom:330.587067pt;}
.y164{bottom:331.867067pt;}
.y107{bottom:335.147067pt;}
.y43{bottom:337.626933pt;}
.y5f{bottom:337.627067pt;}
.y14{bottom:339.868667pt;}
.y52{bottom:342.187067pt;}
.ydf{bottom:347.546933pt;}
.y182{bottom:350.267067pt;}
.y7d{bottom:355.867067pt;}
.yc3{bottom:358.187067pt;}
.y163{bottom:359.387067pt;}
.y106{bottom:362.747067pt;}
.ye8{bottom:365.147067pt;}
.y2f{bottom:365.226933pt;}
.y5e{bottom:365.227067pt;}
.y150{bottom:368.667200pt;}
.y51{bottom:369.787067pt;}
.y130{bottom:370.827200pt;}
.yde{bottom:375.147067pt;}
.y181{bottom:377.867067pt;}
.y9a{bottom:378.191067pt;}
.y14f{bottom:386.347067pt;}
.y12f{bottom:387.867067pt;}
.y162{bottom:388.187067pt;}
.y105{bottom:390.347067pt;}
.y99{bottom:390.427067pt;}
.y69{bottom:392.826800pt;}
.y2e{bottom:392.826933pt;}
.y5d{bottom:392.827067pt;}
.y50{bottom:397.386933pt;}
.y14e{bottom:401.387067pt;}
.ydd{bottom:402.747067pt;}
.y12e{bottom:403.867067pt;}
.y180{bottom:405.387067pt;}
.y7c{bottom:408.663067pt;}
.yc2{bottom:413.386933pt;}
.y9e{bottom:413.467067pt;}
.y13{bottom:414.587733pt;}
.y161{bottom:415.787067pt;}
.y14d{bottom:416.347067pt;}
.y104{bottom:417.947067pt;}
.y12d{bottom:419.867067pt;}
.y68{bottom:420.426800pt;}
.y2d{bottom:420.426933pt;}
.y42{bottom:420.427067pt;}
.y4f{bottom:424.986933pt;}
.y7b{bottom:429.387067pt;}
.ydc{bottom:430.347067pt;}
.y14c{bottom:431.307067pt;}
.y12{bottom:433.306400pt;}
.y17f{bottom:434.187067pt;}
.y12c{bottom:435.867067pt;}
.yc1{bottom:440.986933pt;}
.y160{bottom:444.587067pt;}
.y103{bottom:445.547067pt;}
.y14b{bottom:447.067200pt;}
.y67{bottom:448.026800pt;}
.y2c{bottom:448.026933pt;}
.y41{bottom:448.027067pt;}
.y7a{bottom:451.707067pt;}
.y11{bottom:451.947200pt;}
.y4e{bottom:452.586933pt;}
.y12b{bottom:452.747200pt;}
.ydb{bottom:457.947067pt;}
.y97{bottom:460.107200pt;}
.y17e{bottom:461.787067pt;}
.y14a{bottom:462.027200pt;}
.y9c{bottom:464.346400pt;}
.yc0{bottom:468.586933pt;}
.y12a{bottom:468.747067pt;}
.y10{bottom:470.666000pt;}
.y15f{bottom:472.107067pt;}
.y79{bottom:475.387067pt;}
.y2b{bottom:475.626933pt;}
.y40{bottom:475.627067pt;}
.y9b{bottom:476.827067pt;}
.y149{bottom:477.067067pt;}
.y4d{bottom:480.186933pt;}
.y129{bottom:484.747067pt;}
.yf{bottom:489.306800pt;}
.y17d{bottom:490.587067pt;}
.y102{bottom:491.067067pt;}
.y148{bottom:492.031067pt;}
.ybf{bottom:496.186933pt;}
.y78{bottom:499.067067pt;}
.y128{bottom:500.747067pt;}
.y15e{bottom:500.907067pt;}
.y2a{bottom:503.226933pt;}
.y3f{bottom:503.227067pt;}
.y147{bottom:504.267067pt;}
.y4c{bottom:507.786933pt;}
.y96{bottom:507.867067pt;}
.ye{bottom:507.947733pt;}
.y101{bottom:508.587067pt;}
.yda{bottom:513.146933pt;}
.y146{bottom:516.591067pt;}
.y127{bottom:516.747067pt;}
.y17c{bottom:518.107067pt;}
.y77{bottom:522.667067pt;}
.ybe{bottom:523.786933pt;}
.y100{bottom:525.227067pt;}
.yd{bottom:526.666400pt;}
.y15d{bottom:528.427067pt;}
.y145{bottom:528.827067pt;}
.y29{bottom:530.746933pt;}
.yad{bottom:530.747067pt;}
.y126{bottom:532.747067pt;}
.y4b{bottom:535.387067pt;}
.yd9{bottom:540.746933pt;}
.y144{bottom:541.067067pt;}
.yff{bottom:541.867067pt;}
.y76{bottom:546.347067pt;}
.y17b{bottom:546.827067pt;}
.y125{bottom:548.747067pt;}
.ybd{bottom:551.387067pt;}
.y143{bottom:556.107067pt;}
.y15c{bottom:557.147067pt;}
.y3e{bottom:558.346800pt;}
.y66{bottom:558.346933pt;}
.y28{bottom:558.347067pt;}
.yfe{bottom:558.587067pt;}
.y4a{bottom:562.987067pt;}
.y124{bottom:564.747067pt;}
.yd8{bottom:568.267067pt;}
.y75{bottom:570.027067pt;}
.y142{bottom:571.067067pt;}
.yfd{bottom:575.227067pt;}
.y17a{bottom:575.627067pt;}
.ybc{bottom:578.987067pt;}
.y123{bottom:580.747067pt;}
.yc{bottom:582.666800pt;}
.y15b{bottom:585.787067pt;}
.y3d{bottom:585.946800pt;}
.y65{bottom:585.946933pt;}
.y27{bottom:585.947067pt;}
.y141{bottom:586.107067pt;}
.y89{bottom:586.187067pt;}
.y49{bottom:590.587067pt;}
.yfc{bottom:591.867067pt;}
.y74{bottom:593.707067pt;}
.yd7{bottom:595.867067pt;}
.y122{bottom:596.747067pt;}
.y140{bottom:601.067067pt;}
.yb{bottom:601.307600pt;}
.y179{bottom:603.227067pt;}
.y196{bottom:605.547067pt;}
.ybb{bottom:606.587067pt;}
.yfb{bottom:608.587067pt;}
.y121{bottom:612.747067pt;}
.y3c{bottom:613.546933pt;}
.y26{bottom:613.547067pt;}
.y13f{bottom:616.107067pt;}
.y73{bottom:617.387067pt;}
.y48{bottom:618.187067pt;}
.ya{bottom:620.026267pt;}
.yd6{bottom:623.467067pt;}
.y93{bottom:624.741200pt;}
.yfa{bottom:625.227067pt;}
.y120{bottom:628.747067pt;}
.y13e{bottom:631.067067pt;}
.y178{bottom:632.027067pt;}
.y195{bottom:633.067067pt;}
.yba{bottom:634.187067pt;}
.y8e{bottom:637.067067pt;}
.y9{bottom:638.667200pt;}
.y72{bottom:640.987067pt;}
.y3b{bottom:641.146933pt;}
.y25{bottom:641.147067pt;}
.yf9{bottom:641.867067pt;}
.y11f{bottom:644.747067pt;}
.y47{bottom:645.707067pt;}
.y13d{bottom:646.107067pt;}
.yd5{bottom:651.067067pt;}
.y8{bottom:657.385867pt;}
.yf8{bottom:658.587067pt;}
.y177{bottom:659.547067pt;}
.y11e{bottom:660.747067pt;}
.y13c{bottom:661.067067pt;}
.y194{bottom:661.867067pt;}
.y71{bottom:664.667067pt;}
.y3a{bottom:668.746933pt;}
.ya6{bottom:668.747067pt;}
.y46{bottom:673.227067pt;}
.yf7{bottom:675.227067pt;}
.y7{bottom:676.026667pt;}
.y13b{bottom:676.505333pt;}
.y11d{bottom:676.747067pt;}
.yd4{bottom:678.667067pt;}
.yb9{bottom:681.867067pt;}
.y13a{bottom:682.667067pt;}
.y6f{bottom:687.143067pt;}
.y70{bottom:687.146667pt;}
.y176{bottom:688.267067pt;}
.y193{bottom:689.467067pt;}
.y90{bottom:691.546400pt;}
.yf6{bottom:691.867067pt;}
.y11c{bottom:692.747067pt;}
.y6{bottom:694.667600pt;}
.y24{bottom:696.346933pt;}
.y64{bottom:696.347067pt;}
.yb8{bottom:699.547067pt;}
.y139{bottom:701.627067pt;}
.y8f{bottom:704.027067pt;}
.y6e{bottom:707.867067pt;}
.yf5{bottom:708.587067pt;}
.y11b{bottom:708.747067pt;}
.y5{bottom:713.386267pt;}
.y175{bottom:717.067067pt;}
.yb7{bottom:717.227067pt;}
.y192{bottom:718.267067pt;}
.y23{bottom:723.946933pt;}
.y63{bottom:723.947067pt;}
.y11a{bottom:724.747067pt;}
.yd3{bottom:724.827200pt;}
.yf4{bottom:725.227067pt;}
.y138{bottom:725.627067pt;}
.y94{bottom:728.667067pt;}
.y6d{bottom:730.261200pt;}
.y4{bottom:732.027067pt;}
.yb6{bottom:734.907067pt;}
.y119{bottom:740.747067pt;}
.yf3{bottom:741.867067pt;}
.yd2{bottom:742.267067pt;}
.y174{bottom:744.667067pt;}
.y191{bottom:745.787067pt;}
.y3{bottom:750.745733pt;}
.ya5{bottom:751.387067pt;}
.y22{bottom:751.546933pt;}
.y62{bottom:751.547067pt;}
.yb5{bottom:752.507067pt;}
.y6c{bottom:753.227067pt;}
.y118{bottom:756.587067pt;}
.yf2{bottom:758.587067pt;}
.yd1{bottom:759.947067pt;}
.yb4{bottom:768.743200pt;}
.y2{bottom:769.386667pt;}
.y92{bottom:769.466400pt;}
.y173{bottom:772.187067pt;}
.y117{bottom:773.627067pt;}
.y8c{bottom:774.108000pt;}
.y190{bottom:774.587067pt;}
.y8b{bottom:775.067067pt;}
.yf1{bottom:775.227067pt;}
.yd0{bottom:777.627067pt;}
.y21{bottom:779.146933pt;}
.ya7{bottom:779.147067pt;}
.y91{bottom:781.947067pt;}
.yb3{bottom:784.027067pt;}
.y1{bottom:788.027467pt;}
.y116{bottom:789.231067pt;}
.yf0{bottom:791.867067pt;}
.y112{bottom:795.306267pt;}
.ycf{bottom:795.307067pt;}
.y172{bottom:800.987067pt;}
.y115{bottom:801.467067pt;}
.y18f{bottom:802.107067pt;}
.y20{bottom:806.746933pt;}
.ya4{bottom:806.747067pt;}
.y111{bottom:807.627467pt;}
.yb2{bottom:808.027067pt;}
.yef{bottom:808.587067pt;}
.yce{bottom:813.627067pt;}
.y114{bottom:813.788133pt;}
.y110{bottom:819.627333pt;}
.yee{bottom:825.147200pt;}
.y113{bottom:825.787867pt;}
.y8a{bottom:826.267067pt;}
.y171{bottom:828.587067pt;}
.ycd{bottom:830.827600pt;}
.y18e{bottom:830.907067pt;}
.yac{bottom:834.267067pt;}
.y1f{bottom:834.347067pt;}
.y10f{bottom:840.587067pt;}
.yed{bottom:842.907067pt;}
.ycc{bottom:845.947067pt;}
.y170{bottom:857.307067pt;}
.y18d{bottom:858.427067pt;}
.yec{bottom:859.547067pt;}
.y1e{bottom:861.947067pt;}
.y10e{bottom:863.627067pt;}
.yeb{bottom:876.187067pt;}
.y16f{bottom:886.107067pt;}
.y18c{bottom:887.227067pt;}
.y1d{bottom:889.547067pt;}
.yea{bottom:893.867067pt;}
.y16e{bottom:913.627067pt;}
.y18b{bottom:914.827067pt;}
.y15a{bottom:916.987067pt;}
.y1c{bottom:917.147067pt;}
.ye9{bottom:918.827067pt;}
.y16d{bottom:942.427067pt;}
.y1b{bottom:944.747067pt;}
.y16c{bottom:971.227067pt;}
.y1a{bottom:972.267067pt;}
.y39{bottom:972.347067pt;}
.y16b{bottom:998.747067pt;}
.y19{bottom:999.787067pt;}
.y5c{bottom:999.947067pt;}
.h12{height:10.716000pt;}
.hc{height:36.875520pt;}
.h23{height:37.343906pt;}
.h13{height:42.996406pt;}
.h11{height:43.661406pt;}
.h22{height:43.666206pt;}
.h14{height:44.621406pt;}
.h1b{height:44.623006pt;}
.h1e{height:45.411520pt;}
.h1f{height:46.372053pt;}
.h1d{height:46.373120pt;}
.h1c{height:46.373653pt;}
.h19{height:46.890469pt;}
.h15{height:48.492188pt;}
.hf{height:49.242188pt;}
.h10{height:51.216000pt;}
.he{height:54.822969pt;}
.h16{height:56.156250pt;}
.ha{height:57.020480pt;}
.h4{height:57.226870pt;}
.h1a{height:57.661547pt;}
.h3{height:62.543906pt;}
.h8{height:65.500000pt;}
.h7{height:65.656250pt;}
.h9{height:68.288000pt;}
.h20{height:68.299273pt;}
.hd{height:74.851520pt;}
.h17{height:74.852053pt;}
.hb{height:74.852587pt;}
.h21{height:92.946206pt;}
.h18{height:115.958435pt;}
.h0{height:906.560000pt;}
.h1{height:906.666667pt;}
.h5{height:1121.280000pt;}
.h6{height:1121.333333pt;}
.h2{height:1122.666667pt;}
.w6{width:43.848000pt;}
.w4{width:778.000000pt;}
.w3{width:778.240000pt;}
.w0{width:787.840000pt;}
.w1{width:788.000000pt;}
.w2{width:793.333333pt;}
.w5{width:793.626667pt;}
.x0{left:0.000000pt;}
.x10{left:18.964000pt;}
.x2{left:96.000000pt;}
.x1{left:110.320000pt;}
.x2b{left:118.640000pt;}
.x20{left:120.000000pt;}
.x34{left:131.760000pt;}
.x26{left:133.520000pt;}
.x31{left:135.440000pt;}
.x2a{left:139.680000pt;}
.x21{left:144.000000pt;}
.xd{left:147.520000pt;}
.xf{left:152.560000pt;}
.x18{left:159.520000pt;}
.x27{left:170.720000pt;}
.x19{left:176.240000pt;}
.xc{left:177.760000pt;}
.x6{left:180.240000pt;}
.x4{left:183.680000pt;}
.xb{left:193.440000pt;}
.xa{left:196.800000pt;}
.xe{left:209.120000pt;}
.x32{left:210.080000pt;}
.x23{left:213.120000pt;}
.x1e{left:236.800000pt;}
.x15{left:250.160000pt;}
.x5{left:287.193333pt;}
.x29{left:291.360533pt;}
.x24{left:297.437067pt;}
.x1f{left:311.360000pt;}
.x17{left:314.400000pt;}
.x7{left:324.805467pt;}
.x35{left:363.841867pt;}
.x25{left:373.273467pt;}
.x33{left:379.680533pt;}
.x28{left:381.280000pt;}
.x2e{left:397.919333pt;}
.x2d{left:406.239733pt;}
.x16{left:432.244400pt;}
.x9{left:459.680400pt;}
.x2c{left:463.279600pt;}
.x8{left:488.080800pt;}
.x36{left:517.202533pt;}
.x14{left:522.560000pt;}
.x12{left:535.120000pt;}
.x1b{left:541.760000pt;}
.x1d{left:550.562533pt;}
.x1c{left:555.123867pt;}
.x30{left:558.001200pt;}
.x13{left:562.081733pt;}
.x2f{left:564.239467pt;}
.x11{left:576.400000pt;}
.x1a{left:580.560000pt;}
.x22{left:676.639867pt;}
.x3{left:683.280000pt;}
}




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