
    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_51fe51990dcae1e022200009.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_27196ee7ed01ccaaac063df5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_71bbdb0103ae5072bc8e1ef6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_90c40202efb2daee6f52a1ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.181152;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_3141910520bee182bca9f2e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_6626885c4a067f8a67c4bdd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.181152;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_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_ea8435b2ef1ada3a8a2e98a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.220215;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_b8dbf82d5b8ff6db37c88057.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.776000px;}
.ls31{letter-spacing:-1.584000px;}
.ls24{letter-spacing:-1.254000px;}
.ls30{letter-spacing:-1.152000px;}
.ls35{letter-spacing:-1.050000px;}
.ls2{letter-spacing:-0.948000px;}
.ls2f{letter-spacing:-0.930000px;}
.ls22{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.598800px;}
.ls2d{letter-spacing:-0.550200px;}
.ls2c{letter-spacing:-0.507000px;}
.ls32{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.492600px;}
.ls1f{letter-spacing:-0.469200px;}
.ls3a{letter-spacing:-0.466800px;}
.ls2e{letter-spacing:-0.454800px;}
.ls7{letter-spacing:-0.414600px;}
.ls20{letter-spacing:-0.400200px;}
.ls8{letter-spacing:-0.348600px;}
.ls39{letter-spacing:-0.334200px;}
.ls1e{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.178800px;}
.ls1d{letter-spacing:-0.164400px;}
.ls1c{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.112200px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.166800px;}
.ls34{letter-spacing:0.184200px;}
.ls3d{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.311040px;}
.lsb{letter-spacing:0.368400px;}
.ls26{letter-spacing:0.377400px;}
.ls21{letter-spacing:0.391800px;}
.ls2a{letter-spacing:0.457800px;}
.ls3b{letter-spacing:0.486600px;}
.ls1a{letter-spacing:0.492480px;}
.ls28{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.708000px;}
.ls3{letter-spacing:0.840000px;}
.ls11{letter-spacing:1.163520px;}
.lsa{letter-spacing:4.043520px;}
.ls36{letter-spacing:4.223520px;}
.ls18{letter-spacing:5.483520px;}
.lsc{letter-spacing:8.543520px;}
.ls13{letter-spacing:9.803520px;}
.ls10{letter-spacing:11.243520px;}
.lsd{letter-spacing:12.683520px;}
.ls12{letter-spacing:14.303520px;}
.ls17{letter-spacing:16.225920px;}
.ls15{letter-spacing:18.443520px;}
.lse{letter-spacing:19.883520px;}
.ls5{letter-spacing:24.203520px;}
.ls38{letter-spacing:45.983520px;}
.ls16{letter-spacing:76.043520px;}
.ls37{letter-spacing:80.483520px;}
.ls29{letter-spacing:195.120000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws12{word-spacing:-23.693880px;}
.ws8{word-spacing:-23.483280px;}
.ws14{word-spacing:-23.428680px;}
.ws4{word-spacing:-23.316480px;}
.wsa{word-spacing:-23.137680px;}
.ws13{word-spacing:-22.717680px;}
.ws11{word-spacing:-22.668480px;}
.ws2{word-spacing:-22.368480px;}
.ws6{word-spacing:-21.996960px;}
.ws15{word-spacing:-21.746760px;}
.wse{word-spacing:-21.680760px;}
.ws22{word-spacing:-21.473160px;}
.ws5{word-spacing:-21.288960px;}
.wsc{word-spacing:-21.072960px;}
.ws1b{word-spacing:-20.834160px;}
.wsd{word-spacing:-20.819760px;}
.ws1a{word-spacing:-20.738760px;}
.wsf{word-spacing:-20.496960px;}
.ws23{word-spacing:-20.238960px;}
.ws10{word-spacing:-20.034960px;}
.ws27{word-spacing:-19.477440px;}
.ws7{word-spacing:-19.261440px;}
.ws21{word-spacing:-18.648000px;}
.ws20{word-spacing:-18.504000px;}
.ws17{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.144000px;}
.wsb{word-spacing:-17.856000px;}
.ws1e{word-spacing:-17.496000px;}
.ws1f{word-spacing:-17.352000px;}
.ws16{word-spacing:-17.208000px;}
.ws1c{word-spacing:-16.848000px;}
.ws1d{word-spacing:-16.416000px;}
.ws25{word-spacing:-15.606600px;}
.ws0{word-spacing:-15.120000px;}
.ws26{word-spacing:-15.099840px;}
.ws24{word-spacing:-14.653200px;}
.ws18{word-spacing:-14.613000px;}
.ws9{word-spacing:-13.680000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.477280px;}
._1{margin-left:-1.008000px;}
._0{width:1.080000px;}
._c{width:2.445600px;}
._19{width:4.106880px;}
._4{width:5.247360px;}
._3{width:6.359040px;}
._1a{width:7.816320px;}
._1b{width:8.836320px;}
._15{width:10.134720px;}
._16{width:11.525760px;}
._1f{width:12.709920px;}
._1e{width:14.585280px;}
._1d{width:15.907200px;}
._d{width:17.221920px;}
._a{width:18.487680px;}
._e{width:20.468160px;}
._f{width:22.006080px;}
._2e{width:23.188800px;}
._25{width:24.345600px;}
._8{width:25.464960px;}
._7{width:26.959200px;}
._9{width:28.524000px;}
._31{width:29.591520px;}
._b{width:30.735360px;}
._10{width:32.258880px;}
._11{width:33.480960px;}
._22{width:34.547520px;}
._39{width:35.605440px;}
._17{width:36.895680px;}
._18{width:38.195040px;}
._12{width:39.214080px;}
._28{width:40.239360px;}
._36{width:41.607840px;}
._5{width:43.433280px;}
._21{width:44.481600px;}
._6{width:45.646080px;}
._24{width:47.655360px;}
._13{width:49.216320px;}
._14{width:50.766240px;}
._3f{width:52.053120px;}
._40{width:53.169600px;}
._20{width:54.628320px;}
._2b{width:55.639200px;}
._52{width:59.020800px;}
._2d{width:60.062880px;}
._3e{width:61.252320px;}
._4f{width:63.262080px;}
._50{width:64.475520px;}
._3c{width:67.495680px;}
._2a{width:68.624640px;}
._41{width:70.093920px;}
._29{width:74.612160px;}
._23{width:75.946080px;}
._34{width:78.059520px;}
._5e{width:79.739040px;}
._47{width:81.345600px;}
._4d{width:87.103680px;}
._45{width:89.792640px;}
._46{width:91.264320px;}
._43{width:95.613600px;}
._54{width:97.191360px;}
._53{width:98.219520px;}
._5b{width:99.264960px;}
._33{width:101.068320px;}
._42{width:103.904640px;}
._4e{width:108.057600px;}
._58{width:110.261280px;}
._57{width:111.410400px;}
._4c{width:120.246720px;}
._2c{width:125.683680px;}
._5c{width:130.452960px;}
._35{width:132.163680px;}
._3a{width:135.172800px;}
._3b{width:137.168640px;}
._59{width:143.861760px;}
._32{width:151.374720px;}
._38{width:152.631360px;}
._37{width:154.163520px;}
._44{width:155.655360px;}
._5d{width:158.034240px;}
._30{width:162.455520px;}
._56{width:174.550560px;}
._55{width:176.005920px;}
._27{width:177.428160px;}
._48{width:184.530720px;}
._49{width:186.278400px;}
._51{width:195.168960px;}
._5a{width:196.908960px;}
._4a{width:203.852640px;}
._3d{width:236.517120px;}
._2f{width:253.236000px;}
._4b{width:259.808160px;}
._1c{width:841.139520px;}
._26{width:846.456000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.y5{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:0.720000px;}
.y219{bottom:1.800000px;}
.y5d{bottom:2.880000px;}
.y87{bottom:3.240000px;}
.yf2{bottom:3.276000px;}
.y232{bottom:3.285000px;}
.y14a{bottom:5.760000px;}
.y3c{bottom:6.120000px;}
.y26c{bottom:7.560000px;}
.y266{bottom:8.280000px;}
.ycc{bottom:12.240000px;}
.yeb{bottom:12.270000px;}
.y275{bottom:12.600000px;}
.y272{bottom:12.960000px;}
.y3a{bottom:16.560000px;}
.y25a{bottom:17.280000px;}
.y268{bottom:18.360000px;}
.ya3{bottom:21.240000px;}
.y197{bottom:21.243000px;}
.y246{bottom:21.270000px;}
.y5c{bottom:21.276000px;}
.y11a{bottom:21.600000px;}
.y86{bottom:21.636000px;}
.y23c{bottom:21.645000px;}
.ycb{bottom:25.920000px;}
.y38{bottom:27.000000px;}
.y159{bottom:27.360000px;}
.y149{bottom:27.390000px;}
.y27a{bottom:28.110000px;}
.y218{bottom:33.120000px;}
.y277{bottom:33.480000px;}
.y271{bottom:34.200000px;}
.y1e7{bottom:34.560000px;}
.y21e{bottom:34.920000px;}
.y39{bottom:37.440000px;}
.y1f4{bottom:39.240000px;}
.y1d2{bottom:39.276000px;}
.ya2{bottom:39.600000px;}
.y196{bottom:39.603000px;}
.y245{bottom:39.630000px;}
.y5b{bottom:39.639000px;}
.y23b{bottom:39.645000px;}
.y259{bottom:44.310000px;}
.y3b{bottom:47.880000px;}
.y148{bottom:47.910000px;}
.y158{bottom:48.240000px;}
.y274{bottom:54.720000px;}
.y270{bottom:55.080000px;}
.y3{bottom:57.276000px;}
.ye9{bottom:57.600000px;}
.y195{bottom:57.603000px;}
.y14f{bottom:57.630000px;}
.y5a{bottom:57.639000px;}
.y1f3{bottom:57.645000px;}
.ya1{bottom:57.960000px;}
.y85{bottom:57.999000px;}
.y23a{bottom:58.005000px;}
.y217{bottom:64.110000px;}
.y21d{bottom:66.270000px;}
.y157{bottom:68.760000px;}
.y147{bottom:68.790000px;}
.y1d8{bottom:69.150000px;}
.y260{bottom:69.510000px;}
.y258{bottom:70.230000px;}
.y1e1{bottom:71.310000px;}
.y29{bottom:73.476000px;}
.y4{bottom:75.636000px;}
.ya0{bottom:75.960000px;}
.y194{bottom:75.963000px;}
.y1f7{bottom:75.990000px;}
.y59{bottom:75.999000px;}
.y1f2{bottom:76.005000px;}
.y279{bottom:76.350000px;}
.yf1{bottom:76.359000px;}
.y1ce{bottom:76.365000px;}
.y2{bottom:78.156000px;}
.y14e{bottom:79.230000px;}
.y146{bottom:89.310000px;}
.y156{bottom:89.640000px;}
.ye8{bottom:93.960000px;}
.y1d1{bottom:93.999000px;}
.y1f1{bottom:94.005000px;}
.y9f{bottom:94.320000px;}
.y193{bottom:94.323000px;}
.y1f6{bottom:94.350000px;}
.y58{bottom:94.359000px;}
.y1cd{bottom:94.365000px;}
.y216{bottom:95.070000px;}
.y1e5{bottom:95.430000px;}
.y25f{bottom:95.790000px;}
.y1d7{bottom:96.150000px;}
.y1e2{bottom:96.510000px;}
.y1e0{bottom:97.590000px;}
.y14d{bottom:99.390000px;}
.y1cf{bottom:108.756000px;}
.y155{bottom:110.160000px;}
.y145{bottom:110.190000px;}
.y113{bottom:110.556000px;}
.y140{bottom:110.916000px;}
.y19d{bottom:112.320000px;}
.y192{bottom:112.323000px;}
.ye7{bottom:112.350000px;}
.y57{bottom:112.359000px;}
.y19b{bottom:112.365000px;}
.y9e{bottom:112.680000px;}
.y84{bottom:112.719000px;}
.y1cc{bottom:112.725000px;}
.y1dd{bottom:113.790000px;}
.y25c{bottom:114.150000px;}
.yb6{bottom:114.156000px;}
.y198{bottom:115.596000px;}
.y5e{bottom:116.316000px;}
.y120{bottom:117.036000px;}
.y28{bottom:118.836000px;}
.y14c{bottom:120.270000px;}
.y3d{bottom:120.636000px;}
.y25e{bottom:121.710000px;}
.y1d6{bottom:122.070000px;}
.ycd{bottom:122.076000px;}
.y1df{bottom:123.510000px;}
.yec{bottom:123.876000px;}
.y15c{bottom:124.236000px;}
.y215{bottom:126.030000px;}
.y20f{bottom:127.470000px;}
.y21a{bottom:128.190000px;}
.y1fe{bottom:128.232000px;}
.y21c{bottom:128.550000px;}
.ye6{bottom:130.710000px;}
.y191{bottom:130.713000px;}
.y56{bottom:130.719000px;}
.y9d{bottom:130.725000px;}
.y154{bottom:131.070000px;}
.yf0{bottom:131.079000px;}
.y239{bottom:131.085000px;}
.y160{bottom:134.712000px;}
.y112{bottom:140.472000px;}
.y14b{bottom:140.790000px;}
.y13f{bottom:140.832000px;}
.yb5{bottom:144.432000px;}
.y11f{bottom:147.312000px;}
.y1d5{bottom:147.630000px;}
.y1e4{bottom:147.990000px;}
.ye5{bottom:148.710000px;}
.y1d0{bottom:148.719000px;}
.y19a{bottom:148.725000px;}
.y190{bottom:149.073000px;}
.y9c{bottom:149.085000px;}
.y244{bottom:149.100000px;}
.y55{bottom:149.109000px;}
.y238{bottom:149.115000px;}
.y1ae{bottom:150.915000px;}
.y153{bottom:151.230000px;}
.y144{bottom:151.635000px;}
.y24a{bottom:151.995000px;}
.y214{bottom:157.350000px;}
.y27{bottom:158.115000px;}
.y20e{bottom:159.510000px;}
.y1dc{bottom:166.710000px;}
.ye4{bottom:167.070000px;}
.y18f{bottom:167.073000px;}
.y9b{bottom:167.085000px;}
.y243{bottom:167.100000px;}
.y54{bottom:167.109000px;}
.y83{bottom:167.469000px;}
.y237{bottom:167.475000px;}
.y111{bottom:170.715000px;}
.y13e{bottom:171.075000px;}
.y152{bottom:172.110000px;}
.y143{bottom:172.155000px;}
.y22f{bottom:173.235000px;}
.yb4{bottom:174.315000px;}
.y25d{bottom:175.395000px;}
.y1d4{bottom:175.755000px;}
.y11e{bottom:177.195000px;}
.y213{bottom:177.870000px;}
.y20d{bottom:180.030000px;}
.y21b{bottom:180.390000px;}
.y1ad{bottom:181.155000px;}
.y249{bottom:182.235000px;}
.ye3{bottom:185.430000px;}
.y18e{bottom:185.433000px;}
.y9a{bottom:185.445000px;}
.y242{bottom:185.460000px;}
.y53{bottom:185.469000px;}
.y1f0{bottom:185.475000px;}
.y236{bottom:185.835000px;}
.y26{bottom:188.355000px;}
.y151{bottom:192.630000px;}
.y142{bottom:192.675000px;}
.y212{bottom:198.795000px;}
.y110{bottom:200.955000px;}
.ye2{bottom:203.430000px;}
.y241{bottom:203.460000px;}
.y52{bottom:203.469000px;}
.y1ef{bottom:203.475000px;}
.y18d{bottom:203.793000px;}
.y99{bottom:203.805000px;}
.y82{bottom:203.829000px;}
.y235{bottom:203.835000px;}
.yb3{bottom:204.555000px;}
.y11d{bottom:207.435000px;}
.y1c0{bottom:210.315000px;}
.y1ac{bottom:211.035000px;}
.y22e{bottom:212.115000px;}
.y25{bottom:218.235000px;}
.y1db{bottom:218.595000px;}
.y211{bottom:219.315000px;}
.y20c{bottom:221.475000px;}
.ye1{bottom:221.790000px;}
.y18c{bottom:221.793000px;}
.y98{bottom:221.805000px;}
.y240{bottom:221.820000px;}
.y51{bottom:221.829000px;}
.y1ee{bottom:221.835000px;}
.y81{bottom:222.189000px;}
.y234{bottom:222.195000px;}
.y10f{bottom:230.835000px;}
.y13d{bottom:231.195000px;}
.yb2{bottom:234.435000px;}
.ye0{bottom:240.150000px;}
.y18b{bottom:240.153000px;}
.y97{bottom:240.165000px;}
.y23f{bottom:240.180000px;}
.y50{bottom:240.189000px;}
.y1ed{bottom:240.195000px;}
.y1bf{bottom:240.555000px;}
.y1ab{bottom:241.275000px;}
.y22d{bottom:242.355000px;}
.y1da{bottom:246.315000px;}
.y24{bottom:248.475000px;}
.y11c{bottom:254.235000px;}
.y23e{bottom:258.180000px;}
.y4f{bottom:258.189000px;}
.ydf{bottom:258.195000px;}
.y18a{bottom:258.513000px;}
.y80{bottom:258.549000px;}
.y96{bottom:258.555000px;}
.y10e{bottom:261.105000px;}
.yb1{bottom:264.705000px;}
.y11b{bottom:270.465000px;}
.y1aa{bottom:271.185000px;}
.y22c{bottom:272.265000px;}
.y95{bottom:276.555000px;}
.y189{bottom:276.558000px;}
.y4e{bottom:276.594000px;}
.y7f{bottom:276.909000px;}
.yef{bottom:276.954000px;}
.y23{bottom:278.385000px;}
.y1fd{bottom:278.745000px;}
.y248{bottom:279.105000px;}
.y10d{bottom:290.985000px;}
.y13c{bottom:291.345000px;}
.y247{bottom:293.145000px;}
.y119{bottom:293.505000px;}
.yde{bottom:294.555000px;}
.yb0{bottom:294.585000px;}
.y94{bottom:294.915000px;}
.y188{bottom:294.918000px;}
.y4d{bottom:294.954000px;}
.y1be{bottom:300.705000px;}
.y1a9{bottom:301.425000px;}
.y22b{bottom:302.505000px;}
.y22{bottom:308.625000px;}
.ydd{bottom:312.915000px;}
.y187{bottom:312.918000px;}
.y4c{bottom:312.954000px;}
.y1ec{bottom:312.960000px;}
.y93{bottom:313.275000px;}
.y7e{bottom:313.314000px;}
.y10c{bottom:321.225000px;}
.y13b{bottom:321.585000px;}
.y15d{bottom:322.314000px;}
.yaf{bottom:324.825000px;}
.y1cb{bottom:328.065000px;}
.y123{bottom:328.425000px;}
.y1bd{bottom:330.585000px;}
.y92{bottom:331.275000px;}
.y186{bottom:331.278000px;}
.y4b{bottom:331.314000px;}
.y1eb{bottom:331.320000px;}
.yee{bottom:331.674000px;}
.y22a{bottom:332.385000px;}
.y21{bottom:338.505000px;}
.y1fc{bottom:338.865000px;}
.y1a8{bottom:340.305000px;}
.ydc{bottom:349.275000px;}
.y1ea{bottom:349.320000px;}
.y91{bottom:349.635000px;}
.y185{bottom:349.638000px;}
.y4a{bottom:349.674000px;}
.y10b{bottom:351.105000px;}
.y13a{bottom:351.465000px;}
.y24f{bottom:351.825000px;}
.yae{bottom:354.705000px;}
.y122{bottom:357.585000px;}
.y1bc{bottom:360.825000px;}
.y229{bottom:362.625000px;}
.y118{bottom:367.305000px;}
.ydb{bottom:367.635000px;}
.y184{bottom:367.638000px;}
.y49{bottom:367.674000px;}
.y90{bottom:367.995000px;}
.y7d{bottom:368.034000px;}
.y20{bottom:368.745000px;}
.y1a7{bottom:370.545000px;}
.y10a{bottom:381.345000px;}
.y139{bottom:381.705000px;}
.yad{bottom:384.945000px;}
.y183{bottom:385.998000px;}
.yda{bottom:386.025000px;}
.y48{bottom:386.034000px;}
.y8f{bottom:386.040000px;}
.yed{bottom:386.394000px;}
.y121{bottom:387.825000px;}
.y1bb{bottom:390.705000px;}
.y228{bottom:392.865000px;}
.y89{bottom:395.394000px;}
.y1f{bottom:398.670000px;}
.y1fb{bottom:399.030000px;}
.y1a6{bottom:400.470000px;}
.yd9{bottom:404.025000px;}
.y182{bottom:404.388000px;}
.y47{bottom:404.394000px;}
.y8e{bottom:404.400000px;}
.y15f{bottom:404.424000px;}
.y109{bottom:411.270000px;}
.y138{bottom:411.630000px;}
.y24e{bottom:411.990000px;}
.y88{bottom:413.424000px;}
.y256{bottom:414.870000px;}
.yac{bottom:415.230000px;}
.y117{bottom:417.750000px;}
.y1ba{bottom:420.990000px;}
.yd8{bottom:422.385000px;}
.y181{bottom:422.388000px;}
.y8d{bottom:422.400000px;}
.y46{bottom:422.424000px;}
.y7c{bottom:422.784000px;}
.y1e{bottom:428.910000px;}
.y20a{bottom:429.990000px;}
.y1a5{bottom:430.710000px;}
.y227{bottom:431.790000px;}
.yd7{bottom:440.745000px;}
.y180{bottom:440.748000px;}
.y8c{bottom:440.760000px;}
.y45{bottom:440.784000px;}
.y108{bottom:441.510000px;}
.y137{bottom:441.870000px;}
.y24d{bottom:442.230000px;}
.yab{bottom:445.110000px;}
.y116{bottom:447.990000px;}
.y1b9{bottom:451.230000px;}
.yd6{bottom:458.745000px;}
.y44{bottom:458.784000px;}
.y17f{bottom:459.108000px;}
.y8b{bottom:459.120000px;}
.y7b{bottom:459.144000px;}
.y1d{bottom:459.150000px;}
.y1a4{bottom:460.950000px;}
.y226{bottom:462.030000px;}
.yca{bottom:469.230000px;}
.y107{bottom:471.750000px;}
.y24c{bottom:472.110000px;}
.y1ca{bottom:474.990000px;}
.yaa{bottom:475.350000px;}
.yd5{bottom:477.105000px;}
.y17e{bottom:477.108000px;}
.y43{bottom:477.144000px;}
.y7a{bottom:477.504000px;}
.y115{bottom:478.230000px;}
.y1b8{bottom:481.110000px;}
.y1fa{bottom:489.390000px;}
.y1a3{bottom:490.830000px;}
.y225{bottom:491.910000px;}
.y1c9{bottom:493.710000px;}
.yd4{bottom:495.465000px;}
.y17d{bottom:495.468000px;}
.y42{bottom:495.504000px;}
.y1c{bottom:498.030000px;}
.y209{bottom:499.110000px;}
.y106{bottom:501.630000px;}
.y136{bottom:501.990000px;}
.ya9{bottom:505.230000px;}
.y114{bottom:508.110000px;}
.y1b7{bottom:511.350000px;}
.y23d{bottom:512.790000px;}
.y17c{bottom:513.468000px;}
.y41{bottom:513.504000px;}
.yd3{bottom:513.510000px;}
.y79{bottom:513.864000px;}
.y1f9{bottom:519.270000px;}
.y1a2{bottom:521.070000px;}
.yea{bottom:526.110000px;}
.y1b{bottom:528.300000px;}
.y208{bottom:529.380000px;}
.y224{bottom:531.180000px;}
.y17b{bottom:531.858000px;}
.y40{bottom:531.864000px;}
.yd2{bottom:531.870000px;}
.y105{bottom:531.900000px;}
.ya8{bottom:535.500000px;}
.yc9{bottom:538.380000px;}
.y1b6{bottom:541.260000px;}
.yd1{bottom:549.870000px;}
.y17a{bottom:550.218000px;}
.y3f{bottom:550.254000px;}
.y1a1{bottom:550.980000px;}
.y1c8{bottom:553.500000px;}
.yce{bottom:554.220000px;}
.y1a{bottom:558.180000px;}
.y207{bottom:559.260000px;}
.y104{bottom:561.780000px;}
.y135{bottom:562.140000px;}
.ya7{bottom:565.380000px;}
.y1f8{bottom:566.100000px;}
.y179{bottom:568.218000px;}
.yd0{bottom:568.230000px;}
.y3e{bottom:568.254000px;}
.yc8{bottom:568.260000px;}
.y78{bottom:568.614000px;}
.y1b5{bottom:571.500000px;}
.y223{bottom:577.620000px;}
.y1a0{bottom:581.220000px;}
.y178{bottom:586.578000px;}
.ycf{bottom:586.590000px;}
.y77{bottom:586.614000px;}
.y19{bottom:588.420000px;}
.y1f5{bottom:589.140000px;}
.y206{bottom:589.500000px;}
.y103{bottom:592.020000px;}
.y134{bottom:592.380000px;}
.y1c7{bottom:592.740000px;}
.ya6{bottom:595.620000px;}
.yc7{bottom:598.500000px;}
.y20b{bottom:600.660000px;}
.y1b4{bottom:601.380000px;}
.y210{bottom:602.820000px;}
.y177{bottom:604.938000px;}
.y76{bottom:604.974000px;}
.y19f{bottom:611.100000px;}
.y205{bottom:619.380000px;}
.y102{bottom:621.900000px;}
.y133{bottom:622.260000px;}
.y1c6{bottom:622.620000px;}
.y176{bottom:622.938000px;}
.y15e{bottom:622.974000px;}
.y75{bottom:623.334000px;}
.y255{bottom:625.500000px;}
.y18{bottom:627.300000px;}
.yc6{bottom:628.380000px;}
.y24b{bottom:631.620000px;}
.y1b3{bottom:640.620000px;}
.y175{bottom:641.298000px;}
.y74{bottom:641.334000px;}
.ya5{bottom:642.060000px;}
.y204{bottom:649.620000px;}
.y101{bottom:652.140000px;}
.y1c5{bottom:652.860000px;}
.y254{bottom:655.740000px;}
.y17{bottom:657.540000px;}
.y19e{bottom:657.900000px;}
.ya4{bottom:658.620000px;}
.y174{bottom:659.658000px;}
.y73{bottom:659.694000px;}
.y132{bottom:661.500000px;}
.y1b2{bottom:670.530000px;}
.y173{bottom:677.703000px;}
.y72{bottom:678.054000px;}
.y203{bottom:679.530000px;}
.y19c{bottom:680.970000px;}
.y8a{bottom:681.690000px;}
.y100{bottom:682.050000px;}
.y253{bottom:685.650000px;}
.y16{bottom:687.450000px;}
.y264{bottom:688.170000px;}
.yc5{bottom:688.530000px;}
.y131{bottom:691.410000px;}
.y172{bottom:696.063000px;}
.y71{bottom:696.099000px;}
.y1c4{bottom:699.330000px;}
.y1b1{bottom:700.770000px;}
.y37{bottom:704.730000px;}
.y202{bottom:709.770000px;}
.yff{bottom:712.290000px;}
.y171{bottom:714.063000px;}
.y70{bottom:714.459000px;}
.y252{bottom:715.890000px;}
.y15{bottom:717.690000px;}
.yc4{bottom:718.770000px;}
.y263{bottom:725.610000px;}
.y130{bottom:729.570000px;}
.y1b0{bottom:731.010000px;}
.y170{bottom:732.423000px;}
.y6f{bottom:732.459000px;}
.y1e6{bottom:734.250000px;}
.y1c3{bottom:736.770000px;}
.y201{bottom:740.010000px;}
.yfe{bottom:742.530000px;}
.y251{bottom:746.130000px;}
.y14{bottom:747.570000px;}
.yc3{bottom:749.010000px;}
.y16f{bottom:750.783000px;}
.y6e{bottom:750.819000px;}
.y1e9{bottom:754.050000px;}
.y262{bottom:757.290000px;}
.y1af{bottom:760.890000px;}
.y1c2{bottom:767.730000px;}
.y16e{bottom:768.783000px;}
.y6d{bottom:769.179000px;}
.y200{bottom:769.890000px;}
.yfd{bottom:772.410000px;}
.y12f{bottom:776.370000px;}
.y13{bottom:777.810000px;}
.yc2{bottom:778.890000px;}
.y15b{bottom:781.410000px;}
.y233{bottom:786.810000px;}
.y16d{bottom:787.143000px;}
.y6c{bottom:787.179000px;}
.y36{bottom:791.130000px;}
.y250{bottom:792.570000px;}
.y222{bottom:794.010000px;}
.y1c1{bottom:798.735000px;}
.y1ff{bottom:800.175000px;}
.y15a{bottom:800.535000px;}
.y12e{bottom:801.615000px;}
.yfc{bottom:802.695000px;}
.y16c{bottom:805.533000px;}
.y6b{bottom:805.539000px;}
.y12{bottom:808.095000px;}
.yc1{bottom:809.175000px;}
.y261{bottom:811.695000px;}
.y150{bottom:812.775000px;}
.y35{bottom:821.055000px;}
.y16b{bottom:823.533000px;}
.y6a{bottom:823.929000px;}
.y12d{bottom:829.695000px;}
.yfb{bottom:832.575000px;}
.y221{bottom:833.295000px;}
.y11{bottom:837.975000px;}
.yc0{bottom:839.055000px;}
.y16a{bottom:841.893000px;}
.y69{bottom:841.929000px;}
.y1d9{bottom:847.695000px;}
.y25b{bottom:853.095000px;}
.y169{bottom:860.253000px;}
.y68{bottom:860.289000px;}
.y34{bottom:860.295000px;}
.y12c{bottom:861.015000px;}
.yfa{bottom:862.815000px;}
.y276{bottom:864.255000px;}
.y10{bottom:868.215000px;}
.ybf{bottom:869.295000px;}
.y220{bottom:872.175000px;}
.y168{bottom:878.253000px;}
.y67{bottom:878.649000px;}
.y33{bottom:890.175000px;}
.y12b{bottom:891.975000px;}
.yf9{bottom:892.695000px;}
.y1d3{bottom:894.855000px;}
.y1e3{bottom:895.935000px;}
.y167{bottom:896.613000px;}
.y66{bottom:896.649000px;}
.yf{bottom:898.455000px;}
.ybe{bottom:899.175000px;}
.y257{bottom:900.255000px;}
.y1de{bottom:901.695000px;}
.y21f{bottom:911.415000px;}
.y278{bottom:914.295000px;}
.y166{bottom:914.973000px;}
.y65{bottom:915.009000px;}
.y141{bottom:918.615000px;}
.y32{bottom:920.415000px;}
.yf8{bottom:922.935000px;}
.ye{bottom:928.335000px;}
.ybd{bottom:929.445000px;}
.y165{bottom:933.018000px;}
.y64{bottom:933.369000px;}
.y31{bottom:950.325000px;}
.y164{bottom:951.378000px;}
.y63{bottom:951.414000px;}
.yf7{bottom:952.845000px;}
.y12a{bottom:953.925000px;}
.y199{bottom:955.365000px;}
.yd{bottom:958.605000px;}
.ybc{bottom:959.325000px;}
.y163{bottom:969.378000px;}
.y62{bottom:969.774000px;}
.y30{bottom:980.565000px;}
.yf6{bottom:983.085000px;}
.y129{bottom:985.245000px;}
.y162{bottom:987.738000px;}
.y61{bottom:987.774000px;}
.yc{bottom:988.485000px;}
.ybb{bottom:989.565000px;}
.y269{bottom:995.325000px;}
.y267{bottom:995.685000px;}
.y273{bottom:1000.005000px;}
.y265{bottom:1001.805000px;}
.y26f{bottom:1003.605000px;}
.y26b{bottom:1005.405000px;}
.y161{bottom:1006.098000px;}
.y60{bottom:1006.134000px;}
.yb{bottom:1009.005000px;}
.y2f{bottom:1010.805000px;}
.yf5{bottom:1012.965000px;}
.y128{bottom:1016.205000px;}
.y26a{bottom:1016.565000px;}
.yba{bottom:1019.805000px;}
.y5f{bottom:1024.494000px;}
.y26e{bottom:1026.645000px;}
.ya{bottom:1030.965000px;}
.y26d{bottom:1031.685000px;}
.y2e{bottom:1040.685000px;}
.y127{bottom:1047.165000px;}
.yb9{bottom:1049.685000px;}
.y9{bottom:1052.565000px;}
.yf4{bottom:1059.765000px;}
.y231{bottom:1061.205000px;}
.y2d{bottom:1070.970000px;}
.y8{bottom:1073.850000px;}
.y126{bottom:1078.170000px;}
.yb8{bottom:1079.970000px;}
.y230{bottom:1080.330000px;}
.yf3{bottom:1082.850000px;}
.y2c{bottom:1100.850000px;}
.y7{bottom:1103.010000px;}
.y125{bottom:1109.490000px;}
.yb7{bottom:1109.850000px;}
.y1e8{bottom:1119.210000px;}
.y6{bottom:1132.170000px;}
.y2b{bottom:1140.090000px;}
.y124{bottom:1140.450000px;}
.y1{bottom:1193.730000px;}
.h4{height:13.320000px;}
.h23{height:18.000000px;}
.h1d{height:18.396000px;}
.h15{height:27.396000px;}
.h38{height:27.720000px;}
.h35{height:28.080000px;}
.h1c{height:36.360000px;}
.h2b{height:36.720000px;}
.h22{height:36.756000px;}
.h37{height:38.160000px;}
.h2a{height:51.480000px;}
.h12{height:54.720000px;}
.h11{height:54.746719px;}
.ha{height:55.147500px;}
.he{height:58.944375px;}
.h27{height:59.357813px;}
.h5{height:60.952500px;}
.hc{height:61.306875px;}
.hb{height:63.000000px;}
.h9{height:64.558125px;}
.h2e{height:65.010937px;}
.h7{height:66.272344px;}
.h18{height:67.145625px;}
.h3{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:72.035156px;}
.h1a{height:72.562500px;}
.h17{height:73.080000px;}
.h3a{height:80.676000px;}
.h39{height:81.036000px;}
.h36{height:84.172500px;}
.h6{height:94.030312px;}
.h29{height:136.836000px;}
.h24{height:145.836000px;}
.h3b{height:152.310000px;}
.h3c{height:152.715000px;}
.h2d{height:163.830000px;}
.h34{height:191.955000px;}
.h26{height:192.315000px;}
.h20{height:200.550000px;}
.h1b{height:211.350000px;}
.h19{height:211.395000px;}
.h25{height:218.595000px;}
.h33{height:218.910000px;}
.h30{height:235.515000px;}
.h2f{height:237.675000px;}
.h31{height:238.035000px;}
.h28{height:262.875000px;}
.h32{height:273.315000px;}
.h21{height:273.675000px;}
.h13{height:346.425000px;}
.h2c{height:364.425000px;}
.h16{height:401.505000px;}
.h10{height:474.225000px;}
.hd{height:583.380000px;}
.h14{height:601.710000px;}
.h1e{height:656.460000px;}
.h1f{height:1021.215000px;}
.hf{height:1039.605000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:20.880000px;}
.w3{width:20.916000px;}
.w1c{width:29.916000px;}
.w1e{width:32.040000px;}
.w1f{width:32.076000px;}
.w1d{width:32.400000px;}
.we{width:73.116000px;}
.w22{width:80.676000px;}
.w21{width:81.000000px;}
.w15{width:88.596000px;}
.w18{width:118.116000px;}
.w17{width:118.476000px;}
.w19{width:118.512000px;}
.w7{width:127.152000px;}
.w9{width:131.796000px;}
.w6{width:133.956000px;}
.w5{width:146.232000px;}
.w8{width:146.592000px;}
.wf{width:154.155000px;}
.wd{width:156.675000px;}
.w12{width:157.035000px;}
.wb{width:161.310000px;}
.wa{width:161.355000px;}
.w1a{width:191.955000px;}
.w13{width:193.395000px;}
.w10{width:194.475000px;}
.w14{width:222.555000px;}
.w11{width:229.755000px;}
.w20{width:230.835000px;}
.w1b{width:232.275000px;}
.w4{width:278.385000px;}
.w16{width:303.585000px;}
.wc{width:316.905000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x22{left:3.600000px;}
.x3{left:6.480000px;}
.x17{left:7.560000px;}
.xf{left:9.000000px;}
.x11{left:11.520000px;}
.x13{left:13.320000px;}
.x15{left:15.480000px;}
.x32{left:17.280000px;}
.x27{left:19.080000px;}
.x2d{left:20.520000px;}
.x34{left:23.400000px;}
.x16{left:26.280000px;}
.x28{left:27.720000px;}
.x29{left:28.800000px;}
.x42{left:29.880000px;}
.x35{left:31.320000px;}
.xe{left:33.150000px;}
.x41{left:34.200000px;}
.x20{left:36.360000px;}
.x4d{left:38.205000px;}
.x26{left:40.320000px;}
.x2f{left:42.840000px;}
.x4b{left:44.280000px;}
.x49{left:46.800000px;}
.x4f{left:48.240000px;}
.x33{left:49.320000px;}
.x4e{left:51.165000px;}
.x38{left:52.200000px;}
.x2e{left:53.280000px;}
.x31{left:54.720000px;}
.x2a{left:57.240000px;}
.x48{left:59.040000px;}
.x2b{left:61.230000px;}
.x12{left:62.280000px;}
.x63{left:68.430000px;}
.x3f{left:77.085000px;}
.x3a{left:80.685000px;}
.x52{left:82.125000px;}
.xc{left:87.159000px;}
.xb{left:119.916000px;}
.x1{left:127.476000px;}
.xa{left:130.716000px;}
.x50{left:131.796000px;}
.x1e{left:137.196000px;}
.x24{left:147.672000px;}
.x21{left:149.832000px;}
.x8{left:159.555000px;}
.x19{left:162.075000px;}
.x3d{left:165.315000px;}
.x60{left:170.355000px;}
.x54{left:176.475000px;}
.x25{left:178.635000px;}
.x4{left:179.715000px;}
.x3c{left:180.795000px;}
.x36{left:193.755000px;}
.x58{left:218.595000px;}
.x59{left:248.505000px;}
.x3b{left:250.305000px;}
.x55{left:254.625000px;}
.x53{left:261.105000px;}
.x46{left:265.065000px;}
.x18{left:266.505000px;}
.x1b{left:281.985000px;}
.x1f{left:288.105000px;}
.x5a{left:289.185000px;}
.x4c{left:310.785000px;}
.x5b{left:321.945000px;}
.x7{left:327.345000px;}
.x37{left:348.630000px;}
.x3e{left:351.510000px;}
.x5c{left:354.750000px;}
.x30{left:368.790000px;}
.x43{left:370.590000px;}
.x5{left:372.030000px;}
.x1a{left:388.590000px;}
.x5d{left:396.150000px;}
.x56{left:397.590000px;}
.xd{left:399.030000px;}
.x40{left:431.460000px;}
.x61{left:440.460000px;}
.x1c{left:444.060000px;}
.x23{left:446.580000px;}
.x6{left:462.420000px;}
.x4a{left:464.220000px;}
.x44{left:495.180000px;}
.x62{left:517.170000px;}
.x9{left:524.010000px;}
.x57{left:529.050000px;}
.x5e{left:534.090000px;}
.x51{left:541.290000px;}
.x39{left:543.810000px;}
.x10{left:545.970000px;}
.x2c{left:557.850000px;}
.x45{left:563.250000px;}
.x1d{left:606.450000px;}
.x47{left:614.775000px;}
.x5f{left:651.135000px;}
.x14{left:680.655000px;}
.x2{left:743.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.578667pt;}
.ls31{letter-spacing:-1.408000pt;}
.ls24{letter-spacing:-1.114667pt;}
.ls30{letter-spacing:-1.024000pt;}
.ls35{letter-spacing:-0.933333pt;}
.ls2{letter-spacing:-0.842667pt;}
.ls2f{letter-spacing:-0.826667pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.532267pt;}
.ls2d{letter-spacing:-0.489067pt;}
.ls2c{letter-spacing:-0.450667pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.437867pt;}
.ls1f{letter-spacing:-0.417067pt;}
.ls3a{letter-spacing:-0.414933pt;}
.ls2e{letter-spacing:-0.404267pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls20{letter-spacing:-0.355733pt;}
.ls8{letter-spacing:-0.309867pt;}
.ls39{letter-spacing:-0.297067pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.158933pt;}
.ls1d{letter-spacing:-0.146133pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.099733pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.148267pt;}
.ls34{letter-spacing:0.163733pt;}
.ls3d{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.276480pt;}
.lsb{letter-spacing:0.327467pt;}
.ls26{letter-spacing:0.335467pt;}
.ls21{letter-spacing:0.348267pt;}
.ls2a{letter-spacing:0.406933pt;}
.ls3b{letter-spacing:0.432533pt;}
.ls1a{letter-spacing:0.437760pt;}
.ls28{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.629333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls11{letter-spacing:1.034240pt;}
.lsa{letter-spacing:3.594240pt;}
.ls36{letter-spacing:3.754240pt;}
.ls18{letter-spacing:4.874240pt;}
.lsc{letter-spacing:7.594240pt;}
.ls13{letter-spacing:8.714240pt;}
.ls10{letter-spacing:9.994240pt;}
.lsd{letter-spacing:11.274240pt;}
.ls12{letter-spacing:12.714240pt;}
.ls17{letter-spacing:14.423040pt;}
.ls15{letter-spacing:16.394240pt;}
.lse{letter-spacing:17.674240pt;}
.ls5{letter-spacing:21.514240pt;}
.ls38{letter-spacing:40.874240pt;}
.ls16{letter-spacing:67.594240pt;}
.ls37{letter-spacing:71.540907pt;}
.ls29{letter-spacing:173.440000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws12{word-spacing:-21.061227pt;}
.ws8{word-spacing:-20.874027pt;}
.ws14{word-spacing:-20.825493pt;}
.ws4{word-spacing:-20.725760pt;}
.wsa{word-spacing:-20.566827pt;}
.ws13{word-spacing:-20.193493pt;}
.ws11{word-spacing:-20.149760pt;}
.ws2{word-spacing:-19.883093pt;}
.ws6{word-spacing:-19.552853pt;}
.ws15{word-spacing:-19.330453pt;}
.wse{word-spacing:-19.271787pt;}
.ws22{word-spacing:-19.087253pt;}
.ws5{word-spacing:-18.923520pt;}
.wsc{word-spacing:-18.731520pt;}
.ws1b{word-spacing:-18.519253pt;}
.wsd{word-spacing:-18.506453pt;}
.ws1a{word-spacing:-18.434453pt;}
.wsf{word-spacing:-18.219520pt;}
.ws23{word-spacing:-17.990187pt;}
.ws10{word-spacing:-17.808853pt;}
.ws27{word-spacing:-17.313280pt;}
.ws7{word-spacing:-17.121280pt;}
.ws21{word-spacing:-16.576000pt;}
.ws20{word-spacing:-16.448000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.128000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-15.552000pt;}
.ws1f{word-spacing:-15.424000pt;}
.ws16{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-14.976000pt;}
.ws1d{word-spacing:-14.592000pt;}
.ws25{word-spacing:-13.872533pt;}
.ws0{word-spacing:-13.440000pt;}
.ws26{word-spacing:-13.422080pt;}
.ws24{word-spacing:-13.025067pt;}
.ws18{word-spacing:-12.989333pt;}
.ws9{word-spacing:-12.160000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.202027pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.960000pt;}
._c{width:2.173867pt;}
._19{width:3.650560pt;}
._4{width:4.664320pt;}
._3{width:5.652480pt;}
._1a{width:6.947840pt;}
._1b{width:7.854507pt;}
._15{width:9.008640pt;}
._16{width:10.245120pt;}
._1f{width:11.297707pt;}
._1e{width:12.964693pt;}
._1d{width:14.139733pt;}
._d{width:15.308373pt;}
._a{width:16.433493pt;}
._e{width:18.193920pt;}
._f{width:19.560960pt;}
._2e{width:20.612267pt;}
._25{width:21.640533pt;}
._8{width:22.635520pt;}
._7{width:23.963733pt;}
._9{width:25.354667pt;}
._31{width:26.303573pt;}
._b{width:27.320320pt;}
._10{width:28.674560pt;}
._11{width:29.760853pt;}
._22{width:30.708907pt;}
._39{width:31.649280pt;}
._17{width:32.796160pt;}
._18{width:33.951147pt;}
._12{width:34.856960pt;}
._28{width:35.768320pt;}
._36{width:36.984747pt;}
._5{width:38.607360pt;}
._21{width:39.539200pt;}
._6{width:40.574293pt;}
._24{width:42.360320pt;}
._13{width:43.747840pt;}
._14{width:45.125547pt;}
._3f{width:46.269440pt;}
._40{width:47.261867pt;}
._20{width:48.558507pt;}
._2b{width:49.457067pt;}
._52{width:52.462933pt;}
._2d{width:53.389227pt;}
._3e{width:54.446507pt;}
._4f{width:56.232960pt;}
._50{width:57.311573pt;}
._3c{width:59.996160pt;}
._2a{width:60.999680pt;}
._41{width:62.305707pt;}
._29{width:66.321920pt;}
._23{width:67.507627pt;}
._34{width:69.386240pt;}
._5e{width:70.879147pt;}
._47{width:72.307200pt;}
._4d{width:77.425493pt;}
._45{width:79.815680pt;}
._46{width:81.123840pt;}
._43{width:84.989867pt;}
._54{width:86.392320pt;}
._53{width:87.306240pt;}
._5b{width:88.235520pt;}
._33{width:89.838507pt;}
._42{width:92.359680pt;}
._4e{width:96.051200pt;}
._58{width:98.010027pt;}
._57{width:99.031467pt;}
._4c{width:106.885973pt;}
._2c{width:111.718827pt;}
._5c{width:115.958187pt;}
._35{width:117.478827pt;}
._3a{width:120.153600pt;}
._3b{width:121.927680pt;}
._59{width:127.877120pt;}
._32{width:134.555307pt;}
._38{width:135.672320pt;}
._37{width:137.034240pt;}
._44{width:138.360320pt;}
._5d{width:140.474880pt;}
._30{width:144.404907pt;}
._56{width:155.156053pt;}
._55{width:156.449707pt;}
._27{width:157.713920pt;}
._48{width:164.027307pt;}
._49{width:165.580800pt;}
._51{width:173.483520pt;}
._5a{width:175.030187pt;}
._4a{width:181.202347pt;}
._3d{width:210.237440pt;}
._2f{width:225.098667pt;}
._4b{width:230.940587pt;}
._1c{width:747.679573pt;}
._26{width:752.405333pt;}
.fs5{font-size:26.880000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.y5{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:0.640000pt;}
.y219{bottom:1.600000pt;}
.y5d{bottom:2.560000pt;}
.y87{bottom:2.880000pt;}
.yf2{bottom:2.912000pt;}
.y232{bottom:2.920000pt;}
.y14a{bottom:5.120000pt;}
.y3c{bottom:5.440000pt;}
.y26c{bottom:6.720000pt;}
.y266{bottom:7.360000pt;}
.ycc{bottom:10.880000pt;}
.yeb{bottom:10.906667pt;}
.y275{bottom:11.200000pt;}
.y272{bottom:11.520000pt;}
.y3a{bottom:14.720000pt;}
.y25a{bottom:15.360000pt;}
.y268{bottom:16.320000pt;}
.ya3{bottom:18.880000pt;}
.y197{bottom:18.882667pt;}
.y246{bottom:18.906667pt;}
.y5c{bottom:18.912000pt;}
.y11a{bottom:19.200000pt;}
.y86{bottom:19.232000pt;}
.y23c{bottom:19.240000pt;}
.ycb{bottom:23.040000pt;}
.y38{bottom:24.000000pt;}
.y159{bottom:24.320000pt;}
.y149{bottom:24.346667pt;}
.y27a{bottom:24.986667pt;}
.y218{bottom:29.440000pt;}
.y277{bottom:29.760000pt;}
.y271{bottom:30.400000pt;}
.y1e7{bottom:30.720000pt;}
.y21e{bottom:31.040000pt;}
.y39{bottom:33.280000pt;}
.y1f4{bottom:34.880000pt;}
.y1d2{bottom:34.912000pt;}
.ya2{bottom:35.200000pt;}
.y196{bottom:35.202667pt;}
.y245{bottom:35.226667pt;}
.y5b{bottom:35.234667pt;}
.y23b{bottom:35.240000pt;}
.y259{bottom:39.386667pt;}
.y3b{bottom:42.560000pt;}
.y148{bottom:42.586667pt;}
.y158{bottom:42.880000pt;}
.y274{bottom:48.640000pt;}
.y270{bottom:48.960000pt;}
.y3{bottom:50.912000pt;}
.ye9{bottom:51.200000pt;}
.y195{bottom:51.202667pt;}
.y14f{bottom:51.226667pt;}
.y5a{bottom:51.234667pt;}
.y1f3{bottom:51.240000pt;}
.ya1{bottom:51.520000pt;}
.y85{bottom:51.554667pt;}
.y23a{bottom:51.560000pt;}
.y217{bottom:56.986667pt;}
.y21d{bottom:58.906667pt;}
.y157{bottom:61.120000pt;}
.y147{bottom:61.146667pt;}
.y1d8{bottom:61.466667pt;}
.y260{bottom:61.786667pt;}
.y258{bottom:62.426667pt;}
.y1e1{bottom:63.386667pt;}
.y29{bottom:65.312000pt;}
.y4{bottom:67.232000pt;}
.ya0{bottom:67.520000pt;}
.y194{bottom:67.522667pt;}
.y1f7{bottom:67.546667pt;}
.y59{bottom:67.554667pt;}
.y1f2{bottom:67.560000pt;}
.y279{bottom:67.866667pt;}
.yf1{bottom:67.874667pt;}
.y1ce{bottom:67.880000pt;}
.y2{bottom:69.472000pt;}
.y14e{bottom:70.426667pt;}
.y146{bottom:79.386667pt;}
.y156{bottom:79.680000pt;}
.ye8{bottom:83.520000pt;}
.y1d1{bottom:83.554667pt;}
.y1f1{bottom:83.560000pt;}
.y9f{bottom:83.840000pt;}
.y193{bottom:83.842667pt;}
.y1f6{bottom:83.866667pt;}
.y58{bottom:83.874667pt;}
.y1cd{bottom:83.880000pt;}
.y216{bottom:84.506667pt;}
.y1e5{bottom:84.826667pt;}
.y25f{bottom:85.146667pt;}
.y1d7{bottom:85.466667pt;}
.y1e2{bottom:85.786667pt;}
.y1e0{bottom:86.746667pt;}
.y14d{bottom:88.346667pt;}
.y1cf{bottom:96.672000pt;}
.y155{bottom:97.920000pt;}
.y145{bottom:97.946667pt;}
.y113{bottom:98.272000pt;}
.y140{bottom:98.592000pt;}
.y19d{bottom:99.840000pt;}
.y192{bottom:99.842667pt;}
.ye7{bottom:99.866667pt;}
.y57{bottom:99.874667pt;}
.y19b{bottom:99.880000pt;}
.y9e{bottom:100.160000pt;}
.y84{bottom:100.194667pt;}
.y1cc{bottom:100.200000pt;}
.y1dd{bottom:101.146667pt;}
.y25c{bottom:101.466667pt;}
.yb6{bottom:101.472000pt;}
.y198{bottom:102.752000pt;}
.y5e{bottom:103.392000pt;}
.y120{bottom:104.032000pt;}
.y28{bottom:105.632000pt;}
.y14c{bottom:106.906667pt;}
.y3d{bottom:107.232000pt;}
.y25e{bottom:108.186667pt;}
.y1d6{bottom:108.506667pt;}
.ycd{bottom:108.512000pt;}
.y1df{bottom:109.786667pt;}
.yec{bottom:110.112000pt;}
.y15c{bottom:110.432000pt;}
.y215{bottom:112.026667pt;}
.y20f{bottom:113.306667pt;}
.y21a{bottom:113.946667pt;}
.y1fe{bottom:113.984000pt;}
.y21c{bottom:114.266667pt;}
.ye6{bottom:116.186667pt;}
.y191{bottom:116.189333pt;}
.y56{bottom:116.194667pt;}
.y9d{bottom:116.200000pt;}
.y154{bottom:116.506667pt;}
.yf0{bottom:116.514667pt;}
.y239{bottom:116.520000pt;}
.y160{bottom:119.744000pt;}
.y112{bottom:124.864000pt;}
.y14b{bottom:125.146667pt;}
.y13f{bottom:125.184000pt;}
.yb5{bottom:128.384000pt;}
.y11f{bottom:130.944000pt;}
.y1d5{bottom:131.226667pt;}
.y1e4{bottom:131.546667pt;}
.ye5{bottom:132.186667pt;}
.y1d0{bottom:132.194667pt;}
.y19a{bottom:132.200000pt;}
.y190{bottom:132.509333pt;}
.y9c{bottom:132.520000pt;}
.y244{bottom:132.533333pt;}
.y55{bottom:132.541333pt;}
.y238{bottom:132.546667pt;}
.y1ae{bottom:134.146667pt;}
.y153{bottom:134.426667pt;}
.y144{bottom:134.786667pt;}
.y24a{bottom:135.106667pt;}
.y214{bottom:139.866667pt;}
.y27{bottom:140.546667pt;}
.y20e{bottom:141.786667pt;}
.y1dc{bottom:148.186667pt;}
.ye4{bottom:148.506667pt;}
.y18f{bottom:148.509333pt;}
.y9b{bottom:148.520000pt;}
.y243{bottom:148.533333pt;}
.y54{bottom:148.541333pt;}
.y83{bottom:148.861333pt;}
.y237{bottom:148.866667pt;}
.y111{bottom:151.746667pt;}
.y13e{bottom:152.066667pt;}
.y152{bottom:152.986667pt;}
.y143{bottom:153.026667pt;}
.y22f{bottom:153.986667pt;}
.yb4{bottom:154.946667pt;}
.y25d{bottom:155.906667pt;}
.y1d4{bottom:156.226667pt;}
.y11e{bottom:157.506667pt;}
.y213{bottom:158.106667pt;}
.y20d{bottom:160.026667pt;}
.y21b{bottom:160.346667pt;}
.y1ad{bottom:161.026667pt;}
.y249{bottom:161.986667pt;}
.ye3{bottom:164.826667pt;}
.y18e{bottom:164.829333pt;}
.y9a{bottom:164.840000pt;}
.y242{bottom:164.853333pt;}
.y53{bottom:164.861333pt;}
.y1f0{bottom:164.866667pt;}
.y236{bottom:165.186667pt;}
.y26{bottom:167.426667pt;}
.y151{bottom:171.226667pt;}
.y142{bottom:171.266667pt;}
.y212{bottom:176.706667pt;}
.y110{bottom:178.626667pt;}
.ye2{bottom:180.826667pt;}
.y241{bottom:180.853333pt;}
.y52{bottom:180.861333pt;}
.y1ef{bottom:180.866667pt;}
.y18d{bottom:181.149333pt;}
.y99{bottom:181.160000pt;}
.y82{bottom:181.181333pt;}
.y235{bottom:181.186667pt;}
.yb3{bottom:181.826667pt;}
.y11d{bottom:184.386667pt;}
.y1c0{bottom:186.946667pt;}
.y1ac{bottom:187.586667pt;}
.y22e{bottom:188.546667pt;}
.y25{bottom:193.986667pt;}
.y1db{bottom:194.306667pt;}
.y211{bottom:194.946667pt;}
.y20c{bottom:196.866667pt;}
.ye1{bottom:197.146667pt;}
.y18c{bottom:197.149333pt;}
.y98{bottom:197.160000pt;}
.y240{bottom:197.173333pt;}
.y51{bottom:197.181333pt;}
.y1ee{bottom:197.186667pt;}
.y81{bottom:197.501333pt;}
.y234{bottom:197.506667pt;}
.y10f{bottom:205.186667pt;}
.y13d{bottom:205.506667pt;}
.yb2{bottom:208.386667pt;}
.ye0{bottom:213.466667pt;}
.y18b{bottom:213.469333pt;}
.y97{bottom:213.480000pt;}
.y23f{bottom:213.493333pt;}
.y50{bottom:213.501333pt;}
.y1ed{bottom:213.506667pt;}
.y1bf{bottom:213.826667pt;}
.y1ab{bottom:214.466667pt;}
.y22d{bottom:215.426667pt;}
.y1da{bottom:218.946667pt;}
.y24{bottom:220.866667pt;}
.y11c{bottom:225.986667pt;}
.y23e{bottom:229.493333pt;}
.y4f{bottom:229.501333pt;}
.ydf{bottom:229.506667pt;}
.y18a{bottom:229.789333pt;}
.y80{bottom:229.821333pt;}
.y96{bottom:229.826667pt;}
.y10e{bottom:232.093333pt;}
.yb1{bottom:235.293333pt;}
.y11b{bottom:240.413333pt;}
.y1aa{bottom:241.053333pt;}
.y22c{bottom:242.013333pt;}
.y95{bottom:245.826667pt;}
.y189{bottom:245.829333pt;}
.y4e{bottom:245.861333pt;}
.y7f{bottom:246.141333pt;}
.yef{bottom:246.181333pt;}
.y23{bottom:247.453333pt;}
.y1fd{bottom:247.773333pt;}
.y248{bottom:248.093333pt;}
.y10d{bottom:258.653333pt;}
.y13c{bottom:258.973333pt;}
.y247{bottom:260.573333pt;}
.y119{bottom:260.893333pt;}
.yde{bottom:261.826667pt;}
.yb0{bottom:261.853333pt;}
.y94{bottom:262.146667pt;}
.y188{bottom:262.149333pt;}
.y4d{bottom:262.181333pt;}
.y1be{bottom:267.293333pt;}
.y1a9{bottom:267.933333pt;}
.y22b{bottom:268.893333pt;}
.y22{bottom:274.333333pt;}
.ydd{bottom:278.146667pt;}
.y187{bottom:278.149333pt;}
.y4c{bottom:278.181333pt;}
.y1ec{bottom:278.186667pt;}
.y93{bottom:278.466667pt;}
.y7e{bottom:278.501333pt;}
.y10c{bottom:285.533333pt;}
.y13b{bottom:285.853333pt;}
.y15d{bottom:286.501333pt;}
.yaf{bottom:288.733333pt;}
.y1cb{bottom:291.613333pt;}
.y123{bottom:291.933333pt;}
.y1bd{bottom:293.853333pt;}
.y92{bottom:294.466667pt;}
.y186{bottom:294.469333pt;}
.y4b{bottom:294.501333pt;}
.y1eb{bottom:294.506667pt;}
.yee{bottom:294.821333pt;}
.y22a{bottom:295.453333pt;}
.y21{bottom:300.893333pt;}
.y1fc{bottom:301.213333pt;}
.y1a8{bottom:302.493333pt;}
.ydc{bottom:310.466667pt;}
.y1ea{bottom:310.506667pt;}
.y91{bottom:310.786667pt;}
.y185{bottom:310.789333pt;}
.y4a{bottom:310.821333pt;}
.y10b{bottom:312.093333pt;}
.y13a{bottom:312.413333pt;}
.y24f{bottom:312.733333pt;}
.yae{bottom:315.293333pt;}
.y122{bottom:317.853333pt;}
.y1bc{bottom:320.733333pt;}
.y229{bottom:322.333333pt;}
.y118{bottom:326.493333pt;}
.ydb{bottom:326.786667pt;}
.y184{bottom:326.789333pt;}
.y49{bottom:326.821333pt;}
.y90{bottom:327.106667pt;}
.y7d{bottom:327.141333pt;}
.y20{bottom:327.773333pt;}
.y1a7{bottom:329.373333pt;}
.y10a{bottom:338.973333pt;}
.y139{bottom:339.293333pt;}
.yad{bottom:342.173333pt;}
.y183{bottom:343.109333pt;}
.yda{bottom:343.133333pt;}
.y48{bottom:343.141333pt;}
.y8f{bottom:343.146667pt;}
.yed{bottom:343.461333pt;}
.y121{bottom:344.733333pt;}
.y1bb{bottom:347.293333pt;}
.y228{bottom:349.213333pt;}
.y89{bottom:351.461333pt;}
.y1f{bottom:354.373333pt;}
.y1fb{bottom:354.693333pt;}
.y1a6{bottom:355.973333pt;}
.yd9{bottom:359.133333pt;}
.y182{bottom:359.456000pt;}
.y47{bottom:359.461333pt;}
.y8e{bottom:359.466667pt;}
.y15f{bottom:359.488000pt;}
.y109{bottom:365.573333pt;}
.y138{bottom:365.893333pt;}
.y24e{bottom:366.213333pt;}
.y88{bottom:367.488000pt;}
.y256{bottom:368.773333pt;}
.yac{bottom:369.093333pt;}
.y117{bottom:371.333333pt;}
.y1ba{bottom:374.213333pt;}
.yd8{bottom:375.453333pt;}
.y181{bottom:375.456000pt;}
.y8d{bottom:375.466667pt;}
.y46{bottom:375.488000pt;}
.y7c{bottom:375.808000pt;}
.y1e{bottom:381.253333pt;}
.y20a{bottom:382.213333pt;}
.y1a5{bottom:382.853333pt;}
.y227{bottom:383.813333pt;}
.yd7{bottom:391.773333pt;}
.y180{bottom:391.776000pt;}
.y8c{bottom:391.786667pt;}
.y45{bottom:391.808000pt;}
.y108{bottom:392.453333pt;}
.y137{bottom:392.773333pt;}
.y24d{bottom:393.093333pt;}
.yab{bottom:395.653333pt;}
.y116{bottom:398.213333pt;}
.y1b9{bottom:401.093333pt;}
.yd6{bottom:407.773333pt;}
.y44{bottom:407.808000pt;}
.y17f{bottom:408.096000pt;}
.y8b{bottom:408.106667pt;}
.y7b{bottom:408.128000pt;}
.y1d{bottom:408.133333pt;}
.y1a4{bottom:409.733333pt;}
.y226{bottom:410.693333pt;}
.yca{bottom:417.093333pt;}
.y107{bottom:419.333333pt;}
.y24c{bottom:419.653333pt;}
.y1ca{bottom:422.213333pt;}
.yaa{bottom:422.533333pt;}
.yd5{bottom:424.093333pt;}
.y17e{bottom:424.096000pt;}
.y43{bottom:424.128000pt;}
.y7a{bottom:424.448000pt;}
.y115{bottom:425.093333pt;}
.y1b8{bottom:427.653333pt;}
.y1fa{bottom:435.013333pt;}
.y1a3{bottom:436.293333pt;}
.y225{bottom:437.253333pt;}
.y1c9{bottom:438.853333pt;}
.yd4{bottom:440.413333pt;}
.y17d{bottom:440.416000pt;}
.y42{bottom:440.448000pt;}
.y1c{bottom:442.693333pt;}
.y209{bottom:443.653333pt;}
.y106{bottom:445.893333pt;}
.y136{bottom:446.213333pt;}
.ya9{bottom:449.093333pt;}
.y114{bottom:451.653333pt;}
.y1b7{bottom:454.533333pt;}
.y23d{bottom:455.813333pt;}
.y17c{bottom:456.416000pt;}
.y41{bottom:456.448000pt;}
.yd3{bottom:456.453333pt;}
.y79{bottom:456.768000pt;}
.y1f9{bottom:461.573333pt;}
.y1a2{bottom:463.173333pt;}
.yea{bottom:467.653333pt;}
.y1b{bottom:469.600000pt;}
.y208{bottom:470.560000pt;}
.y224{bottom:472.160000pt;}
.y17b{bottom:472.762667pt;}
.y40{bottom:472.768000pt;}
.yd2{bottom:472.773333pt;}
.y105{bottom:472.800000pt;}
.ya8{bottom:476.000000pt;}
.yc9{bottom:478.560000pt;}
.y1b6{bottom:481.120000pt;}
.yd1{bottom:488.773333pt;}
.y17a{bottom:489.082667pt;}
.y3f{bottom:489.114667pt;}
.y1a1{bottom:489.760000pt;}
.y1c8{bottom:492.000000pt;}
.yce{bottom:492.640000pt;}
.y1a{bottom:496.160000pt;}
.y207{bottom:497.120000pt;}
.y104{bottom:499.360000pt;}
.y135{bottom:499.680000pt;}
.ya7{bottom:502.560000pt;}
.y1f8{bottom:503.200000pt;}
.y179{bottom:505.082667pt;}
.yd0{bottom:505.093333pt;}
.y3e{bottom:505.114667pt;}
.yc8{bottom:505.120000pt;}
.y78{bottom:505.434667pt;}
.y1b5{bottom:508.000000pt;}
.y223{bottom:513.440000pt;}
.y1a0{bottom:516.640000pt;}
.y178{bottom:521.402667pt;}
.ycf{bottom:521.413333pt;}
.y77{bottom:521.434667pt;}
.y19{bottom:523.040000pt;}
.y1f5{bottom:523.680000pt;}
.y206{bottom:524.000000pt;}
.y103{bottom:526.240000pt;}
.y134{bottom:526.560000pt;}
.y1c7{bottom:526.880000pt;}
.ya6{bottom:529.440000pt;}
.yc7{bottom:532.000000pt;}
.y20b{bottom:533.920000pt;}
.y1b4{bottom:534.560000pt;}
.y210{bottom:535.840000pt;}
.y177{bottom:537.722667pt;}
.y76{bottom:537.754667pt;}
.y19f{bottom:543.200000pt;}
.y205{bottom:550.560000pt;}
.y102{bottom:552.800000pt;}
.y133{bottom:553.120000pt;}
.y1c6{bottom:553.440000pt;}
.y176{bottom:553.722667pt;}
.y15e{bottom:553.754667pt;}
.y75{bottom:554.074667pt;}
.y255{bottom:556.000000pt;}
.y18{bottom:557.600000pt;}
.yc6{bottom:558.560000pt;}
.y24b{bottom:561.440000pt;}
.y1b3{bottom:569.440000pt;}
.y175{bottom:570.042667pt;}
.y74{bottom:570.074667pt;}
.ya5{bottom:570.720000pt;}
.y204{bottom:577.440000pt;}
.y101{bottom:579.680000pt;}
.y1c5{bottom:580.320000pt;}
.y254{bottom:582.880000pt;}
.y17{bottom:584.480000pt;}
.y19e{bottom:584.800000pt;}
.ya4{bottom:585.440000pt;}
.y174{bottom:586.362667pt;}
.y73{bottom:586.394667pt;}
.y132{bottom:588.000000pt;}
.y1b2{bottom:596.026667pt;}
.y173{bottom:602.402667pt;}
.y72{bottom:602.714667pt;}
.y203{bottom:604.026667pt;}
.y19c{bottom:605.306667pt;}
.y8a{bottom:605.946667pt;}
.y100{bottom:606.266667pt;}
.y253{bottom:609.466667pt;}
.y16{bottom:611.066667pt;}
.y264{bottom:611.706667pt;}
.yc5{bottom:612.026667pt;}
.y131{bottom:614.586667pt;}
.y172{bottom:618.722667pt;}
.y71{bottom:618.754667pt;}
.y1c4{bottom:621.626667pt;}
.y1b1{bottom:622.906667pt;}
.y37{bottom:626.426667pt;}
.y202{bottom:630.906667pt;}
.yff{bottom:633.146667pt;}
.y171{bottom:634.722667pt;}
.y70{bottom:635.074667pt;}
.y252{bottom:636.346667pt;}
.y15{bottom:637.946667pt;}
.yc4{bottom:638.906667pt;}
.y263{bottom:644.986667pt;}
.y130{bottom:648.506667pt;}
.y1b0{bottom:649.786667pt;}
.y170{bottom:651.042667pt;}
.y6f{bottom:651.074667pt;}
.y1e6{bottom:652.666667pt;}
.y1c3{bottom:654.906667pt;}
.y201{bottom:657.786667pt;}
.yfe{bottom:660.026667pt;}
.y251{bottom:663.226667pt;}
.y14{bottom:664.506667pt;}
.yc3{bottom:665.786667pt;}
.y16f{bottom:667.362667pt;}
.y6e{bottom:667.394667pt;}
.y1e9{bottom:670.266667pt;}
.y262{bottom:673.146667pt;}
.y1af{bottom:676.346667pt;}
.y1c2{bottom:682.426667pt;}
.y16e{bottom:683.362667pt;}
.y6d{bottom:683.714667pt;}
.y200{bottom:684.346667pt;}
.yfd{bottom:686.586667pt;}
.y12f{bottom:690.106667pt;}
.y13{bottom:691.386667pt;}
.yc2{bottom:692.346667pt;}
.y15b{bottom:694.586667pt;}
.y233{bottom:699.386667pt;}
.y16d{bottom:699.682667pt;}
.y6c{bottom:699.714667pt;}
.y36{bottom:703.226667pt;}
.y250{bottom:704.506667pt;}
.y222{bottom:705.786667pt;}
.y1c1{bottom:709.986667pt;}
.y1ff{bottom:711.266667pt;}
.y15a{bottom:711.586667pt;}
.y12e{bottom:712.546667pt;}
.yfc{bottom:713.506667pt;}
.y16c{bottom:716.029333pt;}
.y6b{bottom:716.034667pt;}
.y12{bottom:718.306667pt;}
.yc1{bottom:719.266667pt;}
.y261{bottom:721.506667pt;}
.y150{bottom:722.466667pt;}
.y35{bottom:729.826667pt;}
.y16b{bottom:732.029333pt;}
.y6a{bottom:732.381333pt;}
.y12d{bottom:737.506667pt;}
.yfb{bottom:740.066667pt;}
.y221{bottom:740.706667pt;}
.y11{bottom:744.866667pt;}
.yc0{bottom:745.826667pt;}
.y16a{bottom:748.349333pt;}
.y69{bottom:748.381333pt;}
.y1d9{bottom:753.506667pt;}
.y25b{bottom:758.306667pt;}
.y169{bottom:764.669333pt;}
.y68{bottom:764.701333pt;}
.y34{bottom:764.706667pt;}
.y12c{bottom:765.346667pt;}
.yfa{bottom:766.946667pt;}
.y276{bottom:768.226667pt;}
.y10{bottom:771.746667pt;}
.ybf{bottom:772.706667pt;}
.y220{bottom:775.266667pt;}
.y168{bottom:780.669333pt;}
.y67{bottom:781.021333pt;}
.y33{bottom:791.266667pt;}
.y12b{bottom:792.866667pt;}
.yf9{bottom:793.506667pt;}
.y1d3{bottom:795.426667pt;}
.y1e3{bottom:796.386667pt;}
.y167{bottom:796.989333pt;}
.y66{bottom:797.021333pt;}
.yf{bottom:798.626667pt;}
.ybe{bottom:799.266667pt;}
.y257{bottom:800.226667pt;}
.y1de{bottom:801.506667pt;}
.y21f{bottom:810.146667pt;}
.y278{bottom:812.706667pt;}
.y166{bottom:813.309333pt;}
.y65{bottom:813.341333pt;}
.y141{bottom:816.546667pt;}
.y32{bottom:818.146667pt;}
.yf8{bottom:820.386667pt;}
.ye{bottom:825.186667pt;}
.ybd{bottom:826.173333pt;}
.y165{bottom:829.349333pt;}
.y64{bottom:829.661333pt;}
.y31{bottom:844.733333pt;}
.y164{bottom:845.669333pt;}
.y63{bottom:845.701333pt;}
.yf7{bottom:846.973333pt;}
.y12a{bottom:847.933333pt;}
.y199{bottom:849.213333pt;}
.yd{bottom:852.093333pt;}
.ybc{bottom:852.733333pt;}
.y163{bottom:861.669333pt;}
.y62{bottom:862.021333pt;}
.y30{bottom:871.613333pt;}
.yf6{bottom:873.853333pt;}
.y129{bottom:875.773333pt;}
.y162{bottom:877.989333pt;}
.y61{bottom:878.021333pt;}
.yc{bottom:878.653333pt;}
.ybb{bottom:879.613333pt;}
.y269{bottom:884.733333pt;}
.y267{bottom:885.053333pt;}
.y273{bottom:888.893333pt;}
.y265{bottom:890.493333pt;}
.y26f{bottom:892.093333pt;}
.y26b{bottom:893.693333pt;}
.y161{bottom:894.309333pt;}
.y60{bottom:894.341333pt;}
.yb{bottom:896.893333pt;}
.y2f{bottom:898.493333pt;}
.yf5{bottom:900.413333pt;}
.y128{bottom:903.293333pt;}
.y26a{bottom:903.613333pt;}
.yba{bottom:906.493333pt;}
.y5f{bottom:910.661333pt;}
.y26e{bottom:912.573333pt;}
.ya{bottom:916.413333pt;}
.y26d{bottom:917.053333pt;}
.y2e{bottom:925.053333pt;}
.y127{bottom:930.813333pt;}
.yb9{bottom:933.053333pt;}
.y9{bottom:935.613333pt;}
.yf4{bottom:942.013333pt;}
.y231{bottom:943.293333pt;}
.y2d{bottom:951.973333pt;}
.y8{bottom:954.533333pt;}
.y126{bottom:958.373333pt;}
.yb8{bottom:959.973333pt;}
.y230{bottom:960.293333pt;}
.yf3{bottom:962.533333pt;}
.y2c{bottom:978.533333pt;}
.y7{bottom:980.453333pt;}
.y125{bottom:986.213333pt;}
.yb7{bottom:986.533333pt;}
.y1e8{bottom:994.853333pt;}
.y6{bottom:1006.373333pt;}
.y2b{bottom:1013.413333pt;}
.y124{bottom:1013.733333pt;}
.y1{bottom:1061.093333pt;}
.h4{height:11.840000pt;}
.h23{height:16.000000pt;}
.h1d{height:16.352000pt;}
.h15{height:24.352000pt;}
.h38{height:24.640000pt;}
.h35{height:24.960000pt;}
.h1c{height:32.320000pt;}
.h2b{height:32.640000pt;}
.h22{height:32.672000pt;}
.h37{height:33.920000pt;}
.h2a{height:45.760000pt;}
.h12{height:48.640000pt;}
.h11{height:48.663750pt;}
.ha{height:49.020000pt;}
.he{height:52.395000pt;}
.h27{height:52.762500pt;}
.h5{height:54.180000pt;}
.hc{height:54.495000pt;}
.hb{height:56.000000pt;}
.h9{height:57.385000pt;}
.h2e{height:57.787500pt;}
.h7{height:58.908750pt;}
.h18{height:59.685000pt;}
.h3{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:64.031250pt;}
.h1a{height:64.500000pt;}
.h17{height:64.960000pt;}
.h3a{height:71.712000pt;}
.h39{height:72.032000pt;}
.h36{height:74.820000pt;}
.h6{height:83.582500pt;}
.h29{height:121.632000pt;}
.h24{height:129.632000pt;}
.h3b{height:135.386667pt;}
.h3c{height:135.746667pt;}
.h2d{height:145.626667pt;}
.h34{height:170.626667pt;}
.h26{height:170.946667pt;}
.h20{height:178.266667pt;}
.h1b{height:187.866667pt;}
.h19{height:187.906667pt;}
.h25{height:194.306667pt;}
.h33{height:194.586667pt;}
.h30{height:209.346667pt;}
.h2f{height:211.266667pt;}
.h31{height:211.586667pt;}
.h28{height:233.666667pt;}
.h32{height:242.946667pt;}
.h21{height:243.266667pt;}
.h13{height:307.933333pt;}
.h2c{height:323.933333pt;}
.h16{height:356.893333pt;}
.h10{height:421.533333pt;}
.hd{height:518.560000pt;}
.h14{height:534.853333pt;}
.h1e{height:583.520000pt;}
.h1f{height:907.746667pt;}
.hf{height:924.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:18.560000pt;}
.w3{width:18.592000pt;}
.w1c{width:26.592000pt;}
.w1e{width:28.480000pt;}
.w1f{width:28.512000pt;}
.w1d{width:28.800000pt;}
.we{width:64.992000pt;}
.w22{width:71.712000pt;}
.w21{width:72.000000pt;}
.w15{width:78.752000pt;}
.w18{width:104.992000pt;}
.w17{width:105.312000pt;}
.w19{width:105.344000pt;}
.w7{width:113.024000pt;}
.w9{width:117.152000pt;}
.w6{width:119.072000pt;}
.w5{width:129.984000pt;}
.w8{width:130.304000pt;}
.wf{width:137.026667pt;}
.wd{width:139.266667pt;}
.w12{width:139.586667pt;}
.wb{width:143.386667pt;}
.wa{width:143.426667pt;}
.w1a{width:170.626667pt;}
.w13{width:171.906667pt;}
.w10{width:172.866667pt;}
.w14{width:197.826667pt;}
.w11{width:204.226667pt;}
.w20{width:205.186667pt;}
.w1b{width:206.466667pt;}
.w4{width:247.453333pt;}
.w16{width:269.853333pt;}
.wc{width:281.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x22{left:3.200000pt;}
.x3{left:5.760000pt;}
.x17{left:6.720000pt;}
.xf{left:8.000000pt;}
.x11{left:10.240000pt;}
.x13{left:11.840000pt;}
.x15{left:13.760000pt;}
.x32{left:15.360000pt;}
.x27{left:16.960000pt;}
.x2d{left:18.240000pt;}
.x34{left:20.800000pt;}
.x16{left:23.360000pt;}
.x28{left:24.640000pt;}
.x29{left:25.600000pt;}
.x42{left:26.560000pt;}
.x35{left:27.840000pt;}
.xe{left:29.466667pt;}
.x41{left:30.400000pt;}
.x20{left:32.320000pt;}
.x4d{left:33.960000pt;}
.x26{left:35.840000pt;}
.x2f{left:38.080000pt;}
.x4b{left:39.360000pt;}
.x49{left:41.600000pt;}
.x4f{left:42.880000pt;}
.x33{left:43.840000pt;}
.x4e{left:45.480000pt;}
.x38{left:46.400000pt;}
.x2e{left:47.360000pt;}
.x31{left:48.640000pt;}
.x2a{left:50.880000pt;}
.x48{left:52.480000pt;}
.x2b{left:54.426667pt;}
.x12{left:55.360000pt;}
.x63{left:60.826667pt;}
.x3f{left:68.520000pt;}
.x3a{left:71.720000pt;}
.x52{left:73.000000pt;}
.xc{left:77.474667pt;}
.xb{left:106.592000pt;}
.x1{left:113.312000pt;}
.xa{left:116.192000pt;}
.x50{left:117.152000pt;}
.x1e{left:121.952000pt;}
.x24{left:131.264000pt;}
.x21{left:133.184000pt;}
.x8{left:141.826667pt;}
.x19{left:144.066667pt;}
.x3d{left:146.946667pt;}
.x60{left:151.426667pt;}
.x54{left:156.866667pt;}
.x25{left:158.786667pt;}
.x4{left:159.746667pt;}
.x3c{left:160.706667pt;}
.x36{left:172.226667pt;}
.x58{left:194.306667pt;}
.x59{left:220.893333pt;}
.x3b{left:222.493333pt;}
.x55{left:226.333333pt;}
.x53{left:232.093333pt;}
.x46{left:235.613333pt;}
.x18{left:236.893333pt;}
.x1b{left:250.653333pt;}
.x1f{left:256.093333pt;}
.x5a{left:257.053333pt;}
.x4c{left:276.253333pt;}
.x5b{left:286.173333pt;}
.x7{left:290.973333pt;}
.x37{left:309.893333pt;}
.x3e{left:312.453333pt;}
.x5c{left:315.333333pt;}
.x30{left:327.813333pt;}
.x43{left:329.413333pt;}
.x5{left:330.693333pt;}
.x1a{left:345.413333pt;}
.x5d{left:352.133333pt;}
.x56{left:353.413333pt;}
.xd{left:354.693333pt;}
.x40{left:383.520000pt;}
.x61{left:391.520000pt;}
.x1c{left:394.720000pt;}
.x23{left:396.960000pt;}
.x6{left:411.040000pt;}
.x4a{left:412.640000pt;}
.x44{left:440.160000pt;}
.x62{left:459.706667pt;}
.x9{left:465.786667pt;}
.x57{left:470.266667pt;}
.x5e{left:474.746667pt;}
.x51{left:481.146667pt;}
.x39{left:483.386667pt;}
.x10{left:485.306667pt;}
.x2c{left:495.866667pt;}
.x45{left:500.666667pt;}
.x1d{left:539.066667pt;}
.x47{left:546.466667pt;}
.x5f{left:578.786667pt;}
.x14{left:605.026667pt;}
.x2{left:660.733333pt;}
}




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