
    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_dd19433e71d5081cbe643559.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e113310482a8c0d72af28e69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4eabcc1cfa6635e7e54804b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c4df8dfc6f91f4f2c9f28145.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4935f4547665c0c44ae585ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0dd2140ad4d3ccaf5cfdff65.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_3b66febef73f64f2e49e1a9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls2a{letter-spacing:-1.134000px;}
.ls26{letter-spacing:-1.026000px;}
.ls3{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.457800px;}
.ls1d{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.414600px;}
.ls24{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.269400px;}
.ls2c{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.149760px;}
.ls23{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.195600px;}
.ls19{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.666000px;}
.ls18{letter-spacing:1.025280px;}
.ls1e{letter-spacing:1.476000px;}
.ls15{letter-spacing:1.745280px;}
.ls13{letter-spacing:4.625280px;}
.ls12{letter-spacing:5.345280px;}
.ls8{letter-spacing:6.065280px;}
.ls1f{letter-spacing:6.516000px;}
.ls25{letter-spacing:8.676000px;}
.ls1b{letter-spacing:10.254240px;}
.ls28{letter-spacing:15.425280px;}
.ls22{letter-spacing:37.614240px;}
.ls7{letter-spacing:47.105280px;}
.ls29{letter-spacing:111.905280px;}
.ls2b{letter-spacing:135.665280px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.wsb{word-spacing:-23.418720px;}
.ws12{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.720120px;}
.wsa{word-spacing:-18.676920px;}
.ws16{word-spacing:-18.610320px;}
.ws0{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws1c{word-spacing:-18.152520px;}
.ws8{word-spacing:-18.109320px;}
.ws9{word-spacing:-17.956920px;}
.ws1{word-spacing:-17.586720px;}
.ws1b{word-spacing:-17.388720px;}
.ws10{word-spacing:-16.973280px;}
.ws13{word-spacing:-16.819680px;}
.ws14{word-spacing:-16.666560px;}
.wsd{word-spacing:-16.613280px;}
.wsc{word-spacing:-16.506480px;}
.wsf{word-spacing:-16.353480px;}
.ws6{word-spacing:-15.012000px;}
.wse{word-spacing:-13.410720px;}
.ws15{word-spacing:-13.141320px;}
.ws19{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.609280px;}
.ws18{word-spacing:-0.048240px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-2.109360px;}
._0{margin-left:-1.059840px;}
._1{width:1.094040px;}
._11{width:2.318400px;}
._d{width:3.576960px;}
._c{width:4.769280px;}
._b{width:6.063360px;}
._a{width:7.395600px;}
._19{width:8.401440px;}
._6{width:9.406080px;}
._e{width:10.423680px;}
._9{width:11.459520px;}
._8{width:12.651840px;}
._7{width:13.844160px;}
._f{width:15.301440px;}
._10{width:17.156160px;}
._30{width:18.473040px;}
._13{width:19.474560px;}
._14{width:20.604960px;}
._18{width:21.627960px;}
._1c{width:22.852800px;}
._1d{width:24.072240px;}
._22{width:25.510440px;}
._1b{width:27.127440px;}
._1a{width:28.218240px;}
._31{width:29.874240px;}
._1e{width:31.000320px;}
._1f{width:32.096160px;}
._2e{width:33.282720px;}
._24{width:34.511040px;}
._28{width:36.222960px;}
._2c{width:38.419200px;}
._2a{width:39.545280px;}
._2b{width:40.661040px;}
._2d{width:42.373440px;}
._20{width:44.580960px;}
._16{width:46.500480px;}
._25{width:57.650880px;}
._23{width:66.599640px;}
._3e{width:82.119360px;}
._3f{width:83.175600px;}
._3{width:99.917760px;}
._34{width:110.796720px;}
._33{width:112.740480px;}
._5{width:119.879040px;}
._38{width:121.576080px;}
._36{width:126.464640px;}
._35{width:127.886640px;}
._3b{width:134.798400px;}
._3c{width:136.263120px;}
._3d{width:179.170560px;}
._37{width:203.423040px;}
._21{width:218.243520px;}
._39{width:225.149760px;}
._3a{width:226.596720px;}
._32{width:416.789760px;}
._27{width:470.789760px;}
._17{width:561.881280px;}
._15{width:845.741280px;}
._4{width:1029.341280px;}
._2{width:1045.901280px;}
._26{width:1408.205280px;}
._29{width:1650.821280px;}
._2f{width:2443.296480px;}
.fc3{color:rgb(51,51,255);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:3.240000px;}
.yaf{bottom:3.600000px;}
.y19b{bottom:7.785000px;}
.y184{bottom:11.700000px;}
.yb1{bottom:11.880000px;}
.yba{bottom:12.240000px;}
.yd3{bottom:12.645000px;}
.y199{bottom:14.265000px;}
.ybc{bottom:20.340000px;}
.yb2{bottom:20.520000px;}
.y1cd{bottom:20.700000px;}
.yae{bottom:20.880000px;}
.ycd{bottom:21.240000px;}
.y183{bottom:24.660000px;}
.y19a{bottom:25.065000px;}
.yb9{bottom:29.520000px;}
.yd2{bottom:29.925000px;}
.ybd{bottom:37.620000px;}
.y1a4{bottom:37.800000px;}
.y1ec{bottom:38.160000px;}
.ycc{bottom:38.520000px;}
.y4{bottom:56.556000px;}
.y3{bottom:75.456000px;}
.y2{bottom:94.536000px;}
.y27{bottom:113.256000px;}
.y1b6{bottom:116.856000px;}
.y26{bottom:117.756000px;}
.y55{bottom:117.936000px;}
.y250{bottom:119.736000px;}
.y297{bottom:121.356000px;}
.y23c{bottom:123.516000px;}
.y16c{bottom:124.776000px;}
.y101{bottom:128.016000px;}
.y25{bottom:130.716000px;}
.yda{bottom:132.336000px;}
.ya4{bottom:134.316000px;}
.y1d9{bottom:136.656000px;}
.y1b5{bottom:137.556000px;}
.y2aa{bottom:140.076000px;}
.y24f{bottom:140.256000px;}
.y23b{bottom:142.416000px;}
.y16b{bottom:143.856000px;}
.y100{bottom:146.916000px;}
.yd9{bottom:151.230000px;}
.y148{bottom:153.750000px;}
.y1d8{bottom:155.730000px;}
.y2a9{bottom:159.150000px;}
.y24{bottom:159.330000px;}
.y54{bottom:160.590000px;}
.y274{bottom:161.130000px;}
.y23a{bottom:161.490000px;}
.y16a{bottom:162.750000px;}
.y81{bottom:163.290000px;}
.ya3{bottom:168.330000px;}
.y192{bottom:168.510000px;}
.y1fc{bottom:169.410000px;}
.y1b4{bottom:172.830000px;}
.y147{bottom:173.010000px;}
.y296{bottom:174.090000px;}
.y21d{bottom:174.630000px;}
.y1d7{bottom:174.810000px;}
.y23{bottom:178.410000px;}
.y53{bottom:179.490000px;}
.y239{bottom:180.390000px;}
.yff{bottom:180.750000px;}
.y24e{bottom:181.110000px;}
.y169{bottom:181.830000px;}
.y80{bottom:182.550000px;}
.y120{bottom:183.270000px;}
.yd8{bottom:185.070000px;}
.y191{bottom:187.410000px;}
.y146{bottom:191.910000px;}
.y2a8{bottom:192.990000px;}
.y295{bottom:193.170000px;}
.y21c{bottom:193.530000px;}
.y1d6{bottom:193.710000px;}
.y22{bottom:197.310000px;}
.y52{bottom:198.570000px;}
.y238{bottom:199.290000px;}
.yfe{bottom:199.830000px;}
.y168{bottom:200.730000px;}
.y7f{bottom:201.450000px;}
.ya2{bottom:202.350000px;}
.y1fb{bottom:203.430000px;}
.y190{bottom:206.490000px;}
.y1b3{bottom:206.670000px;}
.y145{bottom:210.810000px;}
.y2a7{bottom:212.250000px;}
.y1d5{bottom:212.610000px;}
.y21{bottom:216.210000px;}
.y24d{bottom:216.750000px;}
.y51{bottom:217.470000px;}
.y11f{bottom:217.650000px;}
.yd7{bottom:218.190000px;}
.y237{bottom:218.370000px;}
.yfd{bottom:218.910000px;}
.y167{bottom:219.810000px;}
.y7e{bottom:220.350000px;}
.y1fa{bottom:222.510000px;}
.y18f{bottom:225.390000px;}
.y1b2{bottom:225.930000px;}
.y294{bottom:227.010000px;}
.y144{bottom:229.890000px;}
.y2a6{bottom:231.150000px;}
.y21b{bottom:231.510000px;}
.y1d4{bottom:231.690000px;}
.y273{bottom:233.130000px;}
.yd6{bottom:234.750000px;}
.ya1{bottom:236.370000px;}
.y24c{bottom:237.090000px;}
.yfc{bottom:237.810000px;}
.y166{bottom:238.710000px;}
.y7d{bottom:239.430000px;}
.y1f9{bottom:241.590000px;}
.y18e{bottom:244.470000px;}
.y1b1{bottom:244.830000px;}
.y293{bottom:246.090000px;}
.y143{bottom:248.790000px;}
.y20{bottom:250.590000px;}
.y50{bottom:251.310000px;}
.y236{bottom:252.030000px;}
.y272{bottom:252.210000px;}
.y11e{bottom:252.930000px;}
.yfb{bottom:256.710000px;}
.y165{bottom:257.610000px;}
.y7c{bottom:258.330000px;}
.y1f8{bottom:260.490000px;}
.y18d{bottom:263.370000px;}
.y1b0{bottom:263.910000px;}
.y2a5{bottom:264.990000px;}
.y21a{bottom:265.350000px;}
.yd5{bottom:270.030000px;}
.ya0{bottom:270.210000px;}
.y235{bottom:271.290000px;}
.yfa{bottom:275.790000px;}
.y164{bottom:276.690000px;}
.y7b{bottom:277.410000px;}
.y24b{bottom:278.130000px;}
.y1f7{bottom:279.570000px;}
.y292{bottom:279.930000px;}
.y142{bottom:282.630000px;}
.y1af{bottom:282.810000px;}
.y1d3{bottom:283.530000px;}
.y2a4{bottom:284.070000px;}
.y219{bottom:284.430000px;}
.y4f{bottom:285.330000px;}
.y1f{bottom:285.870000px;}
.yd1{bottom:288.030000px;}
.y11d{bottom:288.210000px;}
.y234{bottom:290.190000px;}
.yf9{bottom:294.690000px;}
.y163{bottom:295.590000px;}
.y18c{bottom:297.255000px;}
.y1f6{bottom:298.515000px;}
.y2c2{bottom:298.875000px;}
.y291{bottom:299.055000px;}
.y1ae{bottom:301.755000px;}
.y218{bottom:303.555000px;}
.y9f{bottom:304.275000px;}
.yd4{bottom:306.075000px;}
.y233{bottom:309.315000px;}
.y7a{bottom:311.115000px;}
.y1d2{bottom:312.375000px;}
.yf8{bottom:313.815000px;}
.y162{bottom:314.715000px;}
.y18b{bottom:316.335000px;}
.y141{bottom:317.055000px;}
.y1f5{bottom:317.415000px;}
.y2a3{bottom:317.955000px;}
.y290{bottom:318.135000px;}
.y24a{bottom:319.035000px;}
.y4e{bottom:319.215000px;}
.y1e{bottom:319.755000px;}
.y1ad{bottom:320.835000px;}
.y217{bottom:322.455000px;}
.yd0{bottom:324.075000px;}
.y1d1{bottom:326.235000px;}
.y11c{bottom:326.595000px;}
.y232{bottom:328.215000px;}
.y79{bottom:330.375000px;}
.yf7{bottom:332.715000px;}
.y2c1{bottom:332.895000px;}
.y18a{bottom:335.415000px;}
.y1f4{bottom:336.495000px;}
.y2a2{bottom:337.035000px;}
.y9e{bottom:338.295000px;}
.y4d{bottom:338.475000px;}
.y249{bottom:339.555000px;}
.y216{bottom:341.535000px;}
.ycf{bottom:342.075000px;}
.y1d0{bottom:342.795000px;}
.y271{bottom:343.155000px;}
.y231{bottom:347.295000px;}
.y161{bottom:348.375000px;}
.y78{bottom:349.275000px;}
.yf6{bottom:351.795000px;}
.y28f{bottom:351.975000px;}
.y140{bottom:352.335000px;}
.y1d{bottom:353.775000px;}
.y189{bottom:354.315000px;}
.y1ac{bottom:354.675000px;}
.y2a1{bottom:356.115000px;}
.ycb{bottom:360.075000px;}
.y215{bottom:360.435000px;}
.y11b{bottom:361.875000px;}
.y230{bottom:366.195000px;}
.y2c0{bottom:366.915000px;}
.y77{bottom:368.355000px;}
.y1f3{bottom:369.435000px;}
.yf5{bottom:370.695000px;}
.y28e{bottom:371.055000px;}
.y4c{bottom:372.315000px;}
.y1ab{bottom:373.755000px;}
.y1cf{bottom:377.355000px;}
.yce{bottom:378.075000px;}
.y270{bottom:378.255000px;}
.y248{bottom:380.415000px;}
.y160{bottom:382.935000px;}
.y22f{bottom:385.095000px;}
.y13f{bottom:386.355000px;}
.y76{bottom:387.255000px;}
.y1c{bottom:387.795000px;}
.y188{bottom:388.155000px;}
.yf4{bottom:389.595000px;}
.y2a0{bottom:389.775000px;}
.y28d{bottom:389.955000px;}
.y9d{bottom:391.395000px;}
.y1aa{bottom:392.655000px;}
.y1ce{bottom:394.635000px;}
.y214{bottom:395.355000px;}
.y11a{bottom:395.895000px;}
.y1f2{bottom:398.415000px;}
.y247{bottom:400.935000px;}
.y22e{bottom:404.175000px;}
.y13e{bottom:405.435000px;}
.y4b{bottom:406.155000px;}
.y1b{bottom:406.875000px;}
.yf3{bottom:408.675000px;}
.y29f{bottom:409.035000px;}
.y9c{bottom:410.295000px;}
.y1a9{bottom:411.735000px;}
.y1cc{bottom:412.635000px;}
.yca{bottom:413.355000px;}
.y1f1{bottom:413.715000px;}
.y26f{bottom:417.315000px;}
.y15f{bottom:418.035000px;}
.y187{bottom:421.275000px;}
.y246{bottom:421.455000px;}
.y22d{bottom:423.075000px;}
.y28c{bottom:423.795000px;}
.y13d{bottom:424.515000px;}
.y4a{bottom:425.415000px;}
.yf2{bottom:427.575000px;}
.y9b{bottom:429.375000px;}
.y119{bottom:429.735000px;}
.y1f0{bottom:430.275000px;}
.y1a8{bottom:430.635000px;}
.yc9{bottom:431.355000px;}
.y213{bottom:434.595000px;}
.y2bf{bottom:434.775000px;}
.y186{bottom:437.835000px;}
.y75{bottom:439.995000px;}
.y1a{bottom:440.715000px;}
.y245{bottom:441.975000px;}
.y29e{bottom:442.875000px;}
.y28b{bottom:443.055000px;}
.y13c{bottom:443.415000px;}
.y49{bottom:444.315000px;}
.yf1{bottom:446.655000px;}
.y1ef{bottom:447.555000px;}
.y9a{bottom:448.275000px;}
.y118{bottom:448.995000px;}
.yc8{bottom:449.355000px;}
.y1a7{bottom:449.715000px;}
.y15e{bottom:452.055000px;}
.y26e{bottom:455.295000px;}
.y22c{bottom:456.915000px;}
.y74{bottom:459.255000px;}
.y28a{bottom:461.955000px;}
.y13b{bottom:462.315000px;}
.y48{bottom:463.215000px;}
.y185{bottom:463.755000px;}
.y1ee{bottom:464.835000px;}
.yf0{bottom:465.555000px;}
.y1cb{bottom:466.815000px;}
.y99{bottom:467.355000px;}
.y117{bottom:467.895000px;}
.y2be{bottom:468.795000px;}
.y15d{bottom:471.315000px;}
.y212{bottom:472.575000px;}
.y19{bottom:474.735000px;}
.y244{bottom:475.815000px;}
.y22b{bottom:475.995000px;}
.y73{bottom:478.155000px;}
.y289{bottom:480.855000px;}
.y13a{bottom:481.395000px;}
.y1ed{bottom:482.115000px;}
.y47{bottom:482.295000px;}
.y1a6{bottom:483.375000px;}
.yef{bottom:484.455000px;}
.yc7{bottom:485.535000px;}
.y98{bottom:486.255000px;}
.y116{bottom:486.795000px;}
.y26d{bottom:489.315000px;}
.y15c{bottom:490.215000px;}
.y182{bottom:490.395000px;}
.y18{bottom:493.815000px;}
.y22a{bottom:495.075000px;}
.y72{bottom:497.055000px;}
.y1ca{bottom:499.035000px;}
.y1ea{bottom:500.115000px;}
.y139{bottom:500.295000px;}
.y46{bottom:501.195000px;}
.y2bd{bottom:502.815000px;}
.y97{bottom:505.155000px;}
.y115{bottom:505.875000px;}
.y211{bottom:506.415000px;}
.y15b{bottom:509.115000px;}
.yc6{bottom:511.815000px;}
.y229{bottom:513.975000px;}
.y288{bottom:514.695000px;}
.y71{bottom:516.135000px;}
.y1a5{bottom:516.495000px;}
.yee{bottom:518.295000px;}
.y138{bottom:519.375000px;}
.y45{bottom:520.275000px;}
.y2bc{bottom:521.895000px;}
.y26c{bottom:523.155000px;}
.y96{bottom:524.235000px;}
.y114{bottom:524.775000px;}
.y17{bottom:527.655000px;}
.y1c9{bottom:531.435000px;}
.y1a3{bottom:533.055000px;}
.y287{bottom:533.955000px;}
.y70{bottom:535.035000px;}
.y1eb{bottom:535.395000px;}
.yed{bottom:537.555000px;}
.y137{bottom:538.275000px;}
.y44{bottom:539.175000px;}
.y210{bottom:540.435000px;}
.y2bb{bottom:540.975000px;}
.y15a{bottom:542.955000px;}
.y95{bottom:543.135000px;}
.yc5{bottom:544.035000px;}
.y228{bottom:551.955000px;}
.y286{bottom:552.855000px;}
.y6f{bottom:554.115000px;}
.yec{bottom:556.455000px;}
.y43{bottom:558.255000px;}
.y26b{bottom:558.795000px;}
.y113{bottom:559.695000px;}
.y181{bottom:560.955000px;}
.y16{bottom:561.675000px;}
.y94{bottom:562.215000px;}
.y1c8{bottom:565.275000px;}
.y227{bottom:570.855000px;}
.y1e9{bottom:571.575000px;}
.y136{bottom:572.115000px;}
.y6e{bottom:573.015000px;}
.y20f{bottom:574.455000px;}
.y2ba{bottom:574.635000px;}
.yeb{bottom:575.385000px;}
.y42{bottom:577.185000px;}
.y159{bottom:577.545000px;}
.yc4{bottom:578.085000px;}
.y112{bottom:578.985000px;}
.y26a{bottom:579.165000px;}
.y15{bottom:580.785000px;}
.y93{bottom:581.145000px;}
.y1c7{bottom:584.565000px;}
.y285{bottom:586.725000px;}
.y243{bottom:589.965000px;}
.y6d{bottom:591.945000px;}
.y180{bottom:593.385000px;}
.y20e{bottom:593.565000px;}
.y2b9{bottom:593.925000px;}
.yea{bottom:594.465000px;}
.y1a2{bottom:594.645000px;}
.y41{bottom:596.085000px;}
.yc3{bottom:597.345000px;}
.y111{bottom:597.885000px;}
.y269{bottom:599.685000px;}
.y92{bottom:600.045000px;}
.y1c6{bottom:603.465000px;}
.y1e8{bottom:603.825000px;}
.y226{bottom:604.725000px;}
.y135{bottom:605.265000px;}
.y284{bottom:605.805000px;}
.y242{bottom:608.865000px;}
.y158{bottom:612.645000px;}
.y2b8{bottom:612.825000px;}
.ye9{bottom:613.365000px;}
.y14{bottom:614.625000px;}
.y40{bottom:615.165000px;}
.yc2{bottom:616.245000px;}
.y110{bottom:616.785000px;}
.y91{bottom:619.125000px;}
.y268{bottom:620.205000px;}
.y134{bottom:621.825000px;}
.y1c5{bottom:622.545000px;}
.y225{bottom:623.985000px;}
.y283{bottom:624.705000px;}
.y17f{bottom:625.605000px;}
.y6c{bottom:625.785000px;}
.y241{bottom:627.945000px;}
.y20d{bottom:631.545000px;}
.ye8{bottom:632.445000px;}
.y3f{bottom:634.065000px;}
.yc1{bottom:635.145000px;}
.y10f{bottom:635.865000px;}
.y1e7{bottom:636.225000px;}
.y1a1{bottom:638.925000px;}
.y133{bottom:639.105000px;}
.y267{bottom:640.545000px;}
.y1c4{bottom:641.445000px;}
.y224{bottom:642.885000px;}
.y282{bottom:643.785000px;}
.y6b{bottom:645.045000px;}
.y157{bottom:646.665000px;}
.y13{bottom:648.465000px;}
.ye7{bottom:651.345000px;}
.y90{bottom:652.965000px;}
.y3e{bottom:653.145000px;}
.yc0{bottom:654.225000px;}
.y10e{bottom:654.765000px;}
.y132{bottom:656.385000px;}
.y29d{bottom:658.545000px;}
.y17e{bottom:659.625000px;}
.y1c3{bottom:660.345000px;}
.y266{bottom:661.065000px;}
.y240{bottom:661.605000px;}
.y223{bottom:661.785000px;}
.y6a{bottom:663.945000px;}
.y20c{bottom:664.485000px;}
.y156{bottom:665.745000px;}
.y1a0{bottom:665.925000px;}
.y12{bottom:667.725000px;}
.y1e6{bottom:670.065000px;}
.ye6{bottom:670.245000px;}
.y3d{bottom:672.045000px;}
.y131{bottom:673.485000px;}
.y10d{bottom:673.845000px;}
.y281{bottom:677.625000px;}
.y29c{bottom:677.805000px;}
.y17d{bottom:678.705000px;}
.y1c2{bottom:679.425000px;}
.y222{bottom:680.865000px;}
.y265{bottom:681.585000px;}
.y69{bottom:682.845000px;}
.y2b7{bottom:684.825000px;}
.ybf{bottom:687.165000px;}
.ye5{bottom:689.325000px;}
.y3c{bottom:690.945000px;}
.y12f{bottom:691.485000px;}
.y10c{bottom:692.745000px;}
.y20b{bottom:693.285000px;}
.y280{bottom:696.705000px;}
.y17c{bottom:697.785000px;}
.y1c1{bottom:698.325000px;}
.y155{bottom:699.585000px;}
.y221{bottom:699.765000px;}
.y10{bottom:701.565000px;}
.y68{bottom:701.925000px;}
.y264{bottom:702.105000px;}
.y2b6{bottom:703.725000px;}
.ybe{bottom:705.525000px;}
.y20a{bottom:707.145000px;}
.y11{bottom:707.505000px;}
.ye4{bottom:708.225000px;}
.y130{bottom:709.485000px;}
.y8f{bottom:710.025000px;}
.y19f{bottom:710.205000px;}
.y27f{bottom:715.605000px;}
.y17b{bottom:716.685000px;}
.ybb{bottom:717.585000px;}
.y154{bottom:718.845000px;}
.y67{bottom:720.825000px;}
.y263{bottom:722.445000px;}
.y2b5{bottom:722.805000px;}
.y209{bottom:723.705000px;}
.y3b{bottom:725.325000px;}
.ye3{bottom:727.305000px;}
.y10b{bottom:727.665000px;}
.y8e{bottom:728.925000px;}
.y29b{bottom:730.545000px;}
.y1c0{bottom:732.165000px;}
.yf{bottom:735.405000px;}
.y17a{bottom:735.765000px;}
.y19e{bottom:737.205000px;}
.y153{bottom:737.745000px;}
.y66{bottom:739.905000px;}
.y208{bottom:740.985000px;}
.y2b4{bottom:741.705000px;}
.y1e5{bottom:742.065000px;}
.y262{bottom:742.965000px;}
.y12e{bottom:745.845000px;}
.ye2{bottom:746.205000px;}
.y10a{bottom:746.745000px;}
.y8d{bottom:748.005000px;}
.y27e{bottom:749.445000px;}
.y29a{bottom:749.625000px;}
.y179{bottom:754.665000px;}
.y152{bottom:756.645000px;}
.y207{bottom:758.265000px;}
.y65{bottom:758.805000px;}
.y3a{bottom:760.425000px;}
.y2b3{bottom:760.605000px;}
.y1e4{bottom:761.145000px;}
.y261{bottom:763.485000px;}
.ye1{bottom:765.105000px;}
.y1bf{bottom:765.285000px;}
.y109{bottom:765.645000px;}
.y8c{bottom:766.905000px;}
.y27d{bottom:768.705000px;}
.ye{bottom:769.965000px;}
.y178{bottom:773.565000px;}
.y206{bottom:775.545000px;}
.y151{bottom:775.725000px;}
.y64{bottom:777.705000px;}
.y12d{bottom:778.065000px;}
.y1be{bottom:779.145000px;}
.y2b2{bottom:779.685000px;}
.y1e3{bottom:780.225000px;}
.y19d{bottom:781.485000px;}
.y260{bottom:784.005000px;}
.ye0{bottom:784.185000px;}
.y27c{bottom:787.605000px;}
.yb8{bottom:787.965000px;}
.y220{bottom:790.485000px;}
.yd{bottom:790.665000px;}
.y176{bottom:792.645000px;}
.y205{bottom:793.545000px;}
.y39{bottom:794.445000px;}
.y150{bottom:794.625000px;}
.y1bd{bottom:795.705000px;}
.y63{bottom:796.785000px;}
.y177{bottom:798.585000px;}
.y1e2{bottom:799.125000px;}
.y8b{bottom:800.745000px;}
.y19c{bottom:808.485000px;}
.y21f{bottom:809.745000px;}
.y12c{bottom:810.285000px;}
.y175{bottom:811.545000px;}
.y1bc{bottom:812.985000px;}
.y38{bottom:813.705000px;}
.y62{bottom:815.685000px;}
.y2b1{bottom:817.665000px;}
.ydf{bottom:818.025000px;}
.y1e1{bottom:818.205000px;}
.y25f{bottom:819.645000px;}
.y108{bottom:819.825000px;}
.y27b{bottom:821.445000px;}
.yb7{bottom:823.245000px;}
.yc{bottom:825.765000px;}
.y14f{bottom:828.465000px;}
.y21e{bottom:828.645000px;}
.y1bb{bottom:830.085000px;}
.y174{bottom:830.625000px;}
.y23f{bottom:832.605000px;}
.y61{bottom:834.765000px;}
.y8a{bottom:835.125000px;}
.y2b0{bottom:836.565000px;}
.y1e0{bottom:837.105000px;}
.y107{bottom:838.905000px;}
.y25e{bottom:839.805000px;}
.y27a{bottom:840.525000px;}
.yb6{bottom:841.245000px;}
.y12b{bottom:842.685000px;}
.y37{bottom:847.365000px;}
.y14e{bottom:847.545000px;}
.y204{bottom:847.725000px;}
.y173{bottom:849.525000px;}
.y23e{bottom:851.505000px;}
.yde{bottom:852.405000px;}
.y198{bottom:852.585000px;}
.y60{bottom:853.665000px;}
.y2af{bottom:855.510000px;}
.y1df{bottom:856.050000px;}
.y106{bottom:857.850000px;}
.yb5{bottom:859.290000px;}
.y279{bottom:859.650000px;}
.y25d{bottom:860.370000px;}
.yb{bottom:861.090000px;}
.y12a{bottom:861.810000px;}
.y1ba{bottom:865.410000px;}
.y14d{bottom:866.670000px;}
.y89{bottom:870.450000px;}
.ydd{bottom:873.150000px;}
.y2ae{bottom:874.590000px;}
.y1de{bottom:875.130000px;}
.y203{bottom:879.990000px;}
.y129{bottom:880.710000px;}
.y25c{bottom:880.890000px;}
.y36{bottom:881.430000px;}
.y172{bottom:883.410000px;}
.ya{bottom:885.210000px;}
.y23d{bottom:885.390000px;}
.y14c{bottom:885.570000px;}
.y5f{bottom:887.550000px;}
.y105{bottom:891.690000px;}
.y278{bottom:893.310000px;}
.y2ad{bottom:893.490000px;}
.yb4{bottom:894.570000px;}
.y128{bottom:899.790000px;}
.y35{bottom:900.510000px;}
.y25b{bottom:901.410000px;}
.y171{bottom:902.490000px;}
.y88{bottom:904.470000px;}
.y14b{bottom:904.650000px;}
.y5e{bottom:906.630000px;}
.ydc{bottom:908.430000px;}
.y1dd{bottom:908.970000px;}
.y9{bottom:909.330000px;}
.y202{bottom:912.390000px;}
.yb3{bottom:912.570000px;}
.y127{bottom:918.690000px;}
.y34{bottom:919.590000px;}
.y25a{bottom:921.750000px;}
.y87{bottom:923.550000px;}
.y5d{bottom:925.710000px;}
.y104{bottom:926.070000px;}
.y2ac{bottom:927.330000px;}
.yb0{bottom:929.850000px;}
.y277{bottom:931.470000px;}
.y170{bottom:936.330000px;}
.y126{bottom:937.770000px;}
.y33{bottom:938.490000px;}
.ydb{bottom:942.270000px;}
.y86{bottom:942.450000px;}
.y1dc{bottom:943.350000px;}
.y5c{bottom:944.610000px;}
.y201{bottom:946.230000px;}
.y2ab{bottom:946.410000px;}
.y8{bottom:948.570000px;}
.y276{bottom:950.550000px;}
.y197{bottom:951.990000px;}
.y32{bottom:957.570000px;}
.y103{bottom:961.350000px;}
.y85{bottom:961.530000px;}
.y259{bottom:962.790000px;}
.y5b{bottom:963.510000px;}
.y1db{bottom:964.050000px;}
.yad{bottom:964.230000px;}
.y299{bottom:965.310000px;}
.y200{bottom:965.490000px;}
.y16f{bottom:970.710000px;}
.y125{bottom:971.430000px;}
.y31{bottom:976.470000px;}
.y84{bottom:980.430000px;}
.yac{bottom:982.230000px;}
.y258{bottom:983.310000px;}
.y196{bottom:984.210000px;}
.y1ff{bottom:984.390000px;}
.y7{bottom:986.370000px;}
.y102{bottom:995.370000px;}
.y30{bottom:995.550000px;}
.y5a{bottom:997.350000px;}
.y1da{bottom:999.330000px;}
.y83{bottom:999.510000px;}
.yab{bottom:1000.230000px;}
.y1fe{bottom:1003.470000px;}
.y257{bottom:1003.650000px;}
.y124{bottom:1005.990000px;}
.y2f{bottom:1014.450000px;}
.ya9{bottom:1018.230000px;}
.y14a{bottom:1018.410000px;}
.y6{bottom:1021.650000px;}
.y1fd{bottom:1022.370000px;}
.y256{bottom:1024.170000px;}
.y59{bottom:1032.630000px;}
.y82{bottom:1033.170000px;}
.y2e{bottom:1033.350000px;}
.y298{bottom:1037.130000px;}
.y195{bottom:1037.310000px;}
.y123{bottom:1041.090000px;}
.y16e{bottom:1041.270000px;}
.y255{bottom:1044.690000px;}
.y149{bottom:1052.250000px;}
.y2d{bottom:1052.430000px;}
.ya8{bottom:1054.410000px;}
.y5{bottom:1056.210000px;}
.y194{bottom:1056.390000px;}
.y254{bottom:1065.210000px;}
.y2c{bottom:1071.330000px;}
.y58{bottom:1071.690000px;}
.y122{bottom:1075.110000px;}
.y1b9{bottom:1075.290000px;}
.y16d{bottom:1079.070000px;}
.ya7{bottom:1080.690000px;}
.y253{bottom:1085.730000px;}
.y193{bottom:1090.230000px;}
.y2b{bottom:1090.410000px;}
.y1b8{bottom:1094.370000px;}
.y252{bottom:1106.070000px;}
.y121{bottom:1109.130000px;}
.y2a{bottom:1109.310000px;}
.y57{bottom:1110.030000px;}
.ya6{bottom:1113.090000px;}
.y1b7{bottom:1113.270000px;}
.y251{bottom:1126.590000px;}
.y275{bottom:1128.030000px;}
.y29{bottom:1128.210000px;}
.y56{bottom:1145.880000px;}
.ya5{bottom:1147.140000px;}
.y28{bottom:1147.320000px;}
.y1{bottom:1194.120000px;}
.h13{height:17.100000px;}
.h9{height:17.280000px;}
.hd{height:17.316000px;}
.h16{height:25.740000px;}
.h15{height:25.920000px;}
.h19{height:26.100000px;}
.h1a{height:26.280000px;}
.hb{height:34.380000px;}
.hc{height:34.560000px;}
.h1d{height:35.100000px;}
.ha{height:35.280000px;}
.h6{height:40.550625px;}
.h18{height:43.380000px;}
.h5{height:43.554375px;}
.h1b{height:43.560000px;}
.h17{height:48.096000px;}
.h10{height:50.312812px;}
.hf{height:51.660000px;}
.h1e{height:52.380000px;}
.he{height:52.560000px;}
.h1f{height:52.998047px;}
.h12{height:53.316000px;}
.h14{height:59.383125px;}
.h1c{height:60.876000px;}
.h7{height:62.327813px;}
.h2{height:69.086250px;}
.h11{height:70.560000px;}
.h8{height:70.664062px;}
.h4{height:75.093750px;}
.h3{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:65.736000px;}
.w27{width:71.136000px;}
.w2e{width:73.800000px;}
.w2f{width:75.456000px;}
.w1a{width:79.056000px;}
.w18{width:79.416000px;}
.w29{width:80.460000px;}
.w2c{width:82.080000px;}
.w2d{width:82.116000px;}
.w2b{width:90.216000px;}
.w31{width:90.540000px;}
.w19{width:91.800000px;}
.w17{width:92.160000px;}
.w30{width:93.456000px;}
.we{width:101.196000px;}
.wf{width:111.276000px;}
.w26{width:112.176000px;}
.w10{width:113.076000px;}
.wc{width:113.976000px;}
.wb{width:116.280000px;}
.w22{width:116.676000px;}
.w11{width:117.540000px;}
.w25{width:123.120000px;}
.w5{width:124.056000px;}
.w20{width:126.396000px;}
.w23{width:126.576000px;}
.w24{width:134.136000px;}
.w4{width:146.016000px;}
.w1e{width:164.520000px;}
.w2a{width:183.810000px;}
.w1b{width:187.275000px;}
.w1f{width:187.590000px;}
.w1d{width:199.695000px;}
.wd{width:230.610000px;}
.w9{width:234.390000px;}
.w12{width:240.015000px;}
.w14{width:242.850000px;}
.w15{width:256.215000px;}
.w28{width:313.455000px;}
.w1c{width:352.110000px;}
.w8{width:417.705000px;}
.w6{width:469.005000px;}
.w21{width:496.005000px;}
.w13{width:499.065000px;}
.w16{width:567.510000px;}
.w7{width:652.110000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.956000px;}
.x39{left:9.720000px;}
.x1c{left:11.016000px;}
.x56{left:12.600000px;}
.x3b{left:13.860000px;}
.x1d{left:15.114000px;}
.x28{left:16.740000px;}
.x2d{left:18.585000px;}
.x48{left:20.880000px;}
.x26{left:22.680000px;}
.x29{left:25.776000px;}
.x2b{left:28.845000px;}
.x4c{left:31.680000px;}
.x1f{left:33.705000px;}
.x49{left:34.920000px;}
.x25{left:37.620000px;}
.x2a{left:38.874000px;}
.x4d{left:40.320000px;}
.x3a{left:41.400000px;}
.x4e{left:44.100000px;}
.x2c{left:47.160000px;}
.x23{left:50.625000px;}
.x42{left:59.220000px;}
.x3f{left:62.280000px;}
.x41{left:65.370000px;}
.x43{left:70.770000px;}
.x36{left:74.880000px;}
.x15{left:77.040000px;}
.x31{left:81.570000px;}
.x44{left:83.205000px;}
.x1{left:84.995987px;}
.x57{left:87.120000px;}
.x5{left:90.035987px;}
.x3c{left:93.450000px;}
.x21{left:97.410000px;}
.x9{left:111.275987px;}
.x2{left:114.695987px;}
.x35{left:118.125000px;}
.xc{left:120.455987px;}
.x6{left:131.255987px;}
.xe{left:139.355987px;}
.x19{left:142.055987px;}
.x4f{left:148.176000px;}
.x11{left:159.329987px;}
.x33{left:160.770000px;}
.x1a{left:168.689987px;}
.x46{left:185.445000px;}
.x45{left:203.430000px;}
.x17{left:223.050000px;}
.x52{left:230.250000px;}
.x1e{left:259.050000px;}
.x3d{left:264.315000px;}
.xd{left:276.194987px;}
.x12{left:277.634987px;}
.xf{left:310.214987px;}
.x53{left:312.375000px;}
.x59{left:315.614987px;}
.x32{left:317.055000px;}
.x2f{left:321.734973px;}
.x7{left:324.434987px;}
.x30{left:327.494987px;}
.x13{left:330.734987px;}
.x58{left:331.814987px;}
.xa{left:347.474987px;}
.x10{left:359.894987px;}
.x20{left:373.035000px;}
.x14{left:382.934987px;}
.x54{left:386.175000px;}
.x2e{left:389.774987px;}
.x1b{left:409.034987px;}
.x40{left:428.835000px;}
.x4{left:446.504987px;}
.x8{left:461.264987px;}
.x4a{left:464.145000px;}
.x27{left:486.105000px;}
.x18{left:494.745000px;}
.x5c{left:525.344987px;}
.x50{left:542.085000px;}
.x5a{left:551.984987px;}
.x5b{left:557.564987px;}
.x34{left:559.905000px;}
.x3{left:570.164987px;}
.xb{left:575.204987px;}
.x4b{left:587.265000px;}
.x22{left:603.645000px;}
.x3e{left:616.425000px;}
.x55{left:635.550000px;}
.x37{left:644.550000px;}
.x47{left:699.450000px;}
.x24{left:704.850000px;}
.x51{left:725.910000px;}
.x38{left:736.710000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls2a{letter-spacing:-1.008000pt;}
.ls26{letter-spacing:-0.912000pt;}
.ls3{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.239467pt;}
.ls2c{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.133120pt;}
.ls23{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.173867pt;}
.ls19{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.911360pt;}
.ls1e{letter-spacing:1.312000pt;}
.ls15{letter-spacing:1.551360pt;}
.ls13{letter-spacing:4.111360pt;}
.ls12{letter-spacing:4.751360pt;}
.ls8{letter-spacing:5.391360pt;}
.ls1f{letter-spacing:5.792000pt;}
.ls25{letter-spacing:7.712000pt;}
.ls1b{letter-spacing:9.114880pt;}
.ls28{letter-spacing:13.711360pt;}
.ls22{letter-spacing:33.434880pt;}
.ls7{letter-spacing:41.871360pt;}
.ls29{letter-spacing:99.471360pt;}
.ls2b{letter-spacing:120.591360pt;}
.ws11{word-spacing:-58.880000pt;}
.wsb{word-spacing:-20.816640pt;}
.ws12{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.640107pt;}
.wsa{word-spacing:-16.601707pt;}
.ws16{word-spacing:-16.542507pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws1c{word-spacing:-16.135573pt;}
.ws8{word-spacing:-16.097173pt;}
.ws9{word-spacing:-15.961707pt;}
.ws1{word-spacing:-15.632640pt;}
.ws1b{word-spacing:-15.456640pt;}
.ws10{word-spacing:-15.087360pt;}
.ws13{word-spacing:-14.950827pt;}
.ws14{word-spacing:-14.814720pt;}
.wsd{word-spacing:-14.767360pt;}
.wsc{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.536427pt;}
.ws6{word-spacing:-13.344000pt;}
.wse{word-spacing:-11.920640pt;}
.ws15{word-spacing:-11.681173pt;}
.ws19{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.319360pt;}
.ws18{word-spacing:-0.042880pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-1.874987pt;}
._0{margin-left:-0.942080pt;}
._1{width:0.972480pt;}
._11{width:2.060800pt;}
._d{width:3.179520pt;}
._c{width:4.239360pt;}
._b{width:5.389653pt;}
._a{width:6.573867pt;}
._19{width:7.467947pt;}
._6{width:8.360960pt;}
._e{width:9.265493pt;}
._9{width:10.186240pt;}
._8{width:11.246080pt;}
._7{width:12.305920pt;}
._f{width:13.601280pt;}
._10{width:15.249920pt;}
._30{width:16.420480pt;}
._13{width:17.310720pt;}
._14{width:18.315520pt;}
._18{width:19.224853pt;}
._1c{width:20.313600pt;}
._1d{width:21.397547pt;}
._22{width:22.675947pt;}
._1b{width:24.113280pt;}
._1a{width:25.082880pt;}
._31{width:26.554880pt;}
._1e{width:27.555840pt;}
._1f{width:28.529920pt;}
._2e{width:29.584640pt;}
._24{width:30.676480pt;}
._28{width:32.198187pt;}
._2c{width:34.150400pt;}
._2a{width:35.151360pt;}
._2b{width:36.143147pt;}
._2d{width:37.665280pt;}
._20{width:39.627520pt;}
._16{width:41.333760pt;}
._25{width:51.245227pt;}
._23{width:59.199680pt;}
._3e{width:72.994987pt;}
._3f{width:73.933867pt;}
._3{width:88.815787pt;}
._34{width:98.485973pt;}
._33{width:100.213760pt;}
._5{width:106.559147pt;}
._38{width:108.067627pt;}
._36{width:112.413013pt;}
._35{width:113.677013pt;}
._3b{width:119.820800pt;}
._3c{width:121.122773pt;}
._3d{width:159.262720pt;}
._37{width:180.820480pt;}
._21{width:193.994240pt;}
._39{width:200.133120pt;}
._3a{width:201.419307pt;}
._32{width:370.479787pt;}
._27{width:418.479787pt;}
._17{width:499.450027pt;}
._15{width:751.770027pt;}
._4{width:914.970027pt;}
._2{width:929.690027pt;}
._26{width:1251.738027pt;}
._29{width:1467.396693pt;}
._2f{width:2171.819093pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:2.880000pt;}
.yaf{bottom:3.200000pt;}
.y19b{bottom:6.920000pt;}
.y184{bottom:10.400000pt;}
.yb1{bottom:10.560000pt;}
.yba{bottom:10.880000pt;}
.yd3{bottom:11.240000pt;}
.y199{bottom:12.680000pt;}
.ybc{bottom:18.080000pt;}
.yb2{bottom:18.240000pt;}
.y1cd{bottom:18.400000pt;}
.yae{bottom:18.560000pt;}
.ycd{bottom:18.880000pt;}
.y183{bottom:21.920000pt;}
.y19a{bottom:22.280000pt;}
.yb9{bottom:26.240000pt;}
.yd2{bottom:26.600000pt;}
.ybd{bottom:33.440000pt;}
.y1a4{bottom:33.600000pt;}
.y1ec{bottom:33.920000pt;}
.ycc{bottom:34.240000pt;}
.y4{bottom:50.272000pt;}
.y3{bottom:67.072000pt;}
.y2{bottom:84.032000pt;}
.y27{bottom:100.672000pt;}
.y1b6{bottom:103.872000pt;}
.y26{bottom:104.672000pt;}
.y55{bottom:104.832000pt;}
.y250{bottom:106.432000pt;}
.y297{bottom:107.872000pt;}
.y23c{bottom:109.792000pt;}
.y16c{bottom:110.912000pt;}
.y101{bottom:113.792000pt;}
.y25{bottom:116.192000pt;}
.yda{bottom:117.632000pt;}
.ya4{bottom:119.392000pt;}
.y1d9{bottom:121.472000pt;}
.y1b5{bottom:122.272000pt;}
.y2aa{bottom:124.512000pt;}
.y24f{bottom:124.672000pt;}
.y23b{bottom:126.592000pt;}
.y16b{bottom:127.872000pt;}
.y100{bottom:130.592000pt;}
.yd9{bottom:134.426667pt;}
.y148{bottom:136.666667pt;}
.y1d8{bottom:138.426667pt;}
.y2a9{bottom:141.466667pt;}
.y24{bottom:141.626667pt;}
.y54{bottom:142.746667pt;}
.y274{bottom:143.226667pt;}
.y23a{bottom:143.546667pt;}
.y16a{bottom:144.666667pt;}
.y81{bottom:145.146667pt;}
.ya3{bottom:149.626667pt;}
.y192{bottom:149.786667pt;}
.y1fc{bottom:150.586667pt;}
.y1b4{bottom:153.626667pt;}
.y147{bottom:153.786667pt;}
.y296{bottom:154.746667pt;}
.y21d{bottom:155.226667pt;}
.y1d7{bottom:155.386667pt;}
.y23{bottom:158.586667pt;}
.y53{bottom:159.546667pt;}
.y239{bottom:160.346667pt;}
.yff{bottom:160.666667pt;}
.y24e{bottom:160.986667pt;}
.y169{bottom:161.626667pt;}
.y80{bottom:162.266667pt;}
.y120{bottom:162.906667pt;}
.yd8{bottom:164.506667pt;}
.y191{bottom:166.586667pt;}
.y146{bottom:170.586667pt;}
.y2a8{bottom:171.546667pt;}
.y295{bottom:171.706667pt;}
.y21c{bottom:172.026667pt;}
.y1d6{bottom:172.186667pt;}
.y22{bottom:175.386667pt;}
.y52{bottom:176.506667pt;}
.y238{bottom:177.146667pt;}
.yfe{bottom:177.626667pt;}
.y168{bottom:178.426667pt;}
.y7f{bottom:179.066667pt;}
.ya2{bottom:179.866667pt;}
.y1fb{bottom:180.826667pt;}
.y190{bottom:183.546667pt;}
.y1b3{bottom:183.706667pt;}
.y145{bottom:187.386667pt;}
.y2a7{bottom:188.666667pt;}
.y1d5{bottom:188.986667pt;}
.y21{bottom:192.186667pt;}
.y24d{bottom:192.666667pt;}
.y51{bottom:193.306667pt;}
.y11f{bottom:193.466667pt;}
.yd7{bottom:193.946667pt;}
.y237{bottom:194.106667pt;}
.yfd{bottom:194.586667pt;}
.y167{bottom:195.386667pt;}
.y7e{bottom:195.866667pt;}
.y1fa{bottom:197.786667pt;}
.y18f{bottom:200.346667pt;}
.y1b2{bottom:200.826667pt;}
.y294{bottom:201.786667pt;}
.y144{bottom:204.346667pt;}
.y2a6{bottom:205.466667pt;}
.y21b{bottom:205.786667pt;}
.y1d4{bottom:205.946667pt;}
.y273{bottom:207.226667pt;}
.yd6{bottom:208.666667pt;}
.ya1{bottom:210.106667pt;}
.y24c{bottom:210.746667pt;}
.yfc{bottom:211.386667pt;}
.y166{bottom:212.186667pt;}
.y7d{bottom:212.826667pt;}
.y1f9{bottom:214.746667pt;}
.y18e{bottom:217.306667pt;}
.y1b1{bottom:217.626667pt;}
.y293{bottom:218.746667pt;}
.y143{bottom:221.146667pt;}
.y20{bottom:222.746667pt;}
.y50{bottom:223.386667pt;}
.y236{bottom:224.026667pt;}
.y272{bottom:224.186667pt;}
.y11e{bottom:224.826667pt;}
.yfb{bottom:228.186667pt;}
.y165{bottom:228.986667pt;}
.y7c{bottom:229.626667pt;}
.y1f8{bottom:231.546667pt;}
.y18d{bottom:234.106667pt;}
.y1b0{bottom:234.586667pt;}
.y2a5{bottom:235.546667pt;}
.y21a{bottom:235.866667pt;}
.yd5{bottom:240.026667pt;}
.ya0{bottom:240.186667pt;}
.y235{bottom:241.146667pt;}
.yfa{bottom:245.146667pt;}
.y164{bottom:245.946667pt;}
.y7b{bottom:246.586667pt;}
.y24b{bottom:247.226667pt;}
.y1f7{bottom:248.506667pt;}
.y292{bottom:248.826667pt;}
.y142{bottom:251.226667pt;}
.y1af{bottom:251.386667pt;}
.y1d3{bottom:252.026667pt;}
.y2a4{bottom:252.506667pt;}
.y219{bottom:252.826667pt;}
.y4f{bottom:253.626667pt;}
.y1f{bottom:254.106667pt;}
.yd1{bottom:256.026667pt;}
.y11d{bottom:256.186667pt;}
.y234{bottom:257.946667pt;}
.yf9{bottom:261.946667pt;}
.y163{bottom:262.746667pt;}
.y18c{bottom:264.226667pt;}
.y1f6{bottom:265.346667pt;}
.y2c2{bottom:265.666667pt;}
.y291{bottom:265.826667pt;}
.y1ae{bottom:268.226667pt;}
.y218{bottom:269.826667pt;}
.y9f{bottom:270.466667pt;}
.yd4{bottom:272.066667pt;}
.y233{bottom:274.946667pt;}
.y7a{bottom:276.546667pt;}
.y1d2{bottom:277.666667pt;}
.yf8{bottom:278.946667pt;}
.y162{bottom:279.746667pt;}
.y18b{bottom:281.186667pt;}
.y141{bottom:281.826667pt;}
.y1f5{bottom:282.146667pt;}
.y2a3{bottom:282.626667pt;}
.y290{bottom:282.786667pt;}
.y24a{bottom:283.586667pt;}
.y4e{bottom:283.746667pt;}
.y1e{bottom:284.226667pt;}
.y1ad{bottom:285.186667pt;}
.y217{bottom:286.626667pt;}
.yd0{bottom:288.066667pt;}
.y1d1{bottom:289.986667pt;}
.y11c{bottom:290.306667pt;}
.y232{bottom:291.746667pt;}
.y79{bottom:293.666667pt;}
.yf7{bottom:295.746667pt;}
.y2c1{bottom:295.906667pt;}
.y18a{bottom:298.146667pt;}
.y1f4{bottom:299.106667pt;}
.y2a2{bottom:299.586667pt;}
.y9e{bottom:300.706667pt;}
.y4d{bottom:300.866667pt;}
.y249{bottom:301.826667pt;}
.y216{bottom:303.586667pt;}
.ycf{bottom:304.066667pt;}
.y1d0{bottom:304.706667pt;}
.y271{bottom:305.026667pt;}
.y231{bottom:308.706667pt;}
.y161{bottom:309.666667pt;}
.y78{bottom:310.466667pt;}
.yf6{bottom:312.706667pt;}
.y28f{bottom:312.866667pt;}
.y140{bottom:313.186667pt;}
.y1d{bottom:314.466667pt;}
.y189{bottom:314.946667pt;}
.y1ac{bottom:315.266667pt;}
.y2a1{bottom:316.546667pt;}
.ycb{bottom:320.066667pt;}
.y215{bottom:320.386667pt;}
.y11b{bottom:321.666667pt;}
.y230{bottom:325.506667pt;}
.y2c0{bottom:326.146667pt;}
.y77{bottom:327.426667pt;}
.y1f3{bottom:328.386667pt;}
.yf5{bottom:329.506667pt;}
.y28e{bottom:329.826667pt;}
.y4c{bottom:330.946667pt;}
.y1ab{bottom:332.226667pt;}
.y1cf{bottom:335.426667pt;}
.yce{bottom:336.066667pt;}
.y270{bottom:336.226667pt;}
.y248{bottom:338.146667pt;}
.y160{bottom:340.386667pt;}
.y22f{bottom:342.306667pt;}
.y13f{bottom:343.426667pt;}
.y76{bottom:344.226667pt;}
.y1c{bottom:344.706667pt;}
.y188{bottom:345.026667pt;}
.yf4{bottom:346.306667pt;}
.y2a0{bottom:346.466667pt;}
.y28d{bottom:346.626667pt;}
.y9d{bottom:347.906667pt;}
.y1aa{bottom:349.026667pt;}
.y1ce{bottom:350.786667pt;}
.y214{bottom:351.426667pt;}
.y11a{bottom:351.906667pt;}
.y1f2{bottom:354.146667pt;}
.y247{bottom:356.386667pt;}
.y22e{bottom:359.266667pt;}
.y13e{bottom:360.386667pt;}
.y4b{bottom:361.026667pt;}
.y1b{bottom:361.666667pt;}
.yf3{bottom:363.266667pt;}
.y29f{bottom:363.586667pt;}
.y9c{bottom:364.706667pt;}
.y1a9{bottom:365.986667pt;}
.y1cc{bottom:366.786667pt;}
.yca{bottom:367.426667pt;}
.y1f1{bottom:367.746667pt;}
.y26f{bottom:370.946667pt;}
.y15f{bottom:371.586667pt;}
.y187{bottom:374.466667pt;}
.y246{bottom:374.626667pt;}
.y22d{bottom:376.066667pt;}
.y28c{bottom:376.706667pt;}
.y13d{bottom:377.346667pt;}
.y4a{bottom:378.146667pt;}
.yf2{bottom:380.066667pt;}
.y9b{bottom:381.666667pt;}
.y119{bottom:381.986667pt;}
.y1f0{bottom:382.466667pt;}
.y1a8{bottom:382.786667pt;}
.yc9{bottom:383.426667pt;}
.y213{bottom:386.306667pt;}
.y2bf{bottom:386.466667pt;}
.y186{bottom:389.186667pt;}
.y75{bottom:391.106667pt;}
.y1a{bottom:391.746667pt;}
.y245{bottom:392.866667pt;}
.y29e{bottom:393.666667pt;}
.y28b{bottom:393.826667pt;}
.y13c{bottom:394.146667pt;}
.y49{bottom:394.946667pt;}
.yf1{bottom:397.026667pt;}
.y1ef{bottom:397.826667pt;}
.y9a{bottom:398.466667pt;}
.y118{bottom:399.106667pt;}
.yc8{bottom:399.426667pt;}
.y1a7{bottom:399.746667pt;}
.y15e{bottom:401.826667pt;}
.y26e{bottom:404.706667pt;}
.y22c{bottom:406.146667pt;}
.y74{bottom:408.226667pt;}
.y28a{bottom:410.626667pt;}
.y13b{bottom:410.946667pt;}
.y48{bottom:411.746667pt;}
.y185{bottom:412.226667pt;}
.y1ee{bottom:413.186667pt;}
.yf0{bottom:413.826667pt;}
.y1cb{bottom:414.946667pt;}
.y99{bottom:415.426667pt;}
.y117{bottom:415.906667pt;}
.y2be{bottom:416.706667pt;}
.y15d{bottom:418.946667pt;}
.y212{bottom:420.066667pt;}
.y19{bottom:421.986667pt;}
.y244{bottom:422.946667pt;}
.y22b{bottom:423.106667pt;}
.y73{bottom:425.026667pt;}
.y289{bottom:427.426667pt;}
.y13a{bottom:427.906667pt;}
.y1ed{bottom:428.546667pt;}
.y47{bottom:428.706667pt;}
.y1a6{bottom:429.666667pt;}
.yef{bottom:430.626667pt;}
.yc7{bottom:431.586667pt;}
.y98{bottom:432.226667pt;}
.y116{bottom:432.706667pt;}
.y26d{bottom:434.946667pt;}
.y15c{bottom:435.746667pt;}
.y182{bottom:435.906667pt;}
.y18{bottom:438.946667pt;}
.y22a{bottom:440.066667pt;}
.y72{bottom:441.826667pt;}
.y1ca{bottom:443.586667pt;}
.y1ea{bottom:444.546667pt;}
.y139{bottom:444.706667pt;}
.y46{bottom:445.506667pt;}
.y2bd{bottom:446.946667pt;}
.y97{bottom:449.026667pt;}
.y115{bottom:449.666667pt;}
.y211{bottom:450.146667pt;}
.y15b{bottom:452.546667pt;}
.yc6{bottom:454.946667pt;}
.y229{bottom:456.866667pt;}
.y288{bottom:457.506667pt;}
.y71{bottom:458.786667pt;}
.y1a5{bottom:459.106667pt;}
.yee{bottom:460.706667pt;}
.y138{bottom:461.666667pt;}
.y45{bottom:462.466667pt;}
.y2bc{bottom:463.906667pt;}
.y26c{bottom:465.026667pt;}
.y96{bottom:465.986667pt;}
.y114{bottom:466.466667pt;}
.y17{bottom:469.026667pt;}
.y1c9{bottom:472.386667pt;}
.y1a3{bottom:473.826667pt;}
.y287{bottom:474.626667pt;}
.y70{bottom:475.586667pt;}
.y1eb{bottom:475.906667pt;}
.yed{bottom:477.826667pt;}
.y137{bottom:478.466667pt;}
.y44{bottom:479.266667pt;}
.y210{bottom:480.386667pt;}
.y2bb{bottom:480.866667pt;}
.y15a{bottom:482.626667pt;}
.y95{bottom:482.786667pt;}
.yc5{bottom:483.586667pt;}
.y228{bottom:490.626667pt;}
.y286{bottom:491.426667pt;}
.y6f{bottom:492.546667pt;}
.yec{bottom:494.626667pt;}
.y43{bottom:496.226667pt;}
.y26b{bottom:496.706667pt;}
.y113{bottom:497.506667pt;}
.y181{bottom:498.626667pt;}
.y16{bottom:499.266667pt;}
.y94{bottom:499.746667pt;}
.y1c8{bottom:502.466667pt;}
.y227{bottom:507.426667pt;}
.y1e9{bottom:508.066667pt;}
.y136{bottom:508.546667pt;}
.y6e{bottom:509.346667pt;}
.y20f{bottom:510.626667pt;}
.y2ba{bottom:510.786667pt;}
.yeb{bottom:511.453333pt;}
.y42{bottom:513.053333pt;}
.y159{bottom:513.373333pt;}
.yc4{bottom:513.853333pt;}
.y112{bottom:514.653333pt;}
.y26a{bottom:514.813333pt;}
.y15{bottom:516.253333pt;}
.y93{bottom:516.573333pt;}
.y1c7{bottom:519.613333pt;}
.y285{bottom:521.533333pt;}
.y243{bottom:524.413333pt;}
.y6d{bottom:526.173333pt;}
.y180{bottom:527.453333pt;}
.y20e{bottom:527.613333pt;}
.y2b9{bottom:527.933333pt;}
.yea{bottom:528.413333pt;}
.y1a2{bottom:528.573333pt;}
.y41{bottom:529.853333pt;}
.yc3{bottom:530.973333pt;}
.y111{bottom:531.453333pt;}
.y269{bottom:533.053333pt;}
.y92{bottom:533.373333pt;}
.y1c6{bottom:536.413333pt;}
.y1e8{bottom:536.733333pt;}
.y226{bottom:537.533333pt;}
.y135{bottom:538.013333pt;}
.y284{bottom:538.493333pt;}
.y242{bottom:541.213333pt;}
.y158{bottom:544.573333pt;}
.y2b8{bottom:544.733333pt;}
.ye9{bottom:545.213333pt;}
.y14{bottom:546.333333pt;}
.y40{bottom:546.813333pt;}
.yc2{bottom:547.773333pt;}
.y110{bottom:548.253333pt;}
.y91{bottom:550.333333pt;}
.y268{bottom:551.293333pt;}
.y134{bottom:552.733333pt;}
.y1c5{bottom:553.373333pt;}
.y225{bottom:554.653333pt;}
.y283{bottom:555.293333pt;}
.y17f{bottom:556.093333pt;}
.y6c{bottom:556.253333pt;}
.y241{bottom:558.173333pt;}
.y20d{bottom:561.373333pt;}
.ye8{bottom:562.173333pt;}
.y3f{bottom:563.613333pt;}
.yc1{bottom:564.573333pt;}
.y10f{bottom:565.213333pt;}
.y1e7{bottom:565.533333pt;}
.y1a1{bottom:567.933333pt;}
.y133{bottom:568.093333pt;}
.y267{bottom:569.373333pt;}
.y1c4{bottom:570.173333pt;}
.y224{bottom:571.453333pt;}
.y282{bottom:572.253333pt;}
.y6b{bottom:573.373333pt;}
.y157{bottom:574.813333pt;}
.y13{bottom:576.413333pt;}
.ye7{bottom:578.973333pt;}
.y90{bottom:580.413333pt;}
.y3e{bottom:580.573333pt;}
.yc0{bottom:581.533333pt;}
.y10e{bottom:582.013333pt;}
.y132{bottom:583.453333pt;}
.y29d{bottom:585.373333pt;}
.y17e{bottom:586.333333pt;}
.y1c3{bottom:586.973333pt;}
.y266{bottom:587.613333pt;}
.y240{bottom:588.093333pt;}
.y223{bottom:588.253333pt;}
.y6a{bottom:590.173333pt;}
.y20c{bottom:590.653333pt;}
.y156{bottom:591.773333pt;}
.y1a0{bottom:591.933333pt;}
.y12{bottom:593.533333pt;}
.y1e6{bottom:595.613333pt;}
.ye6{bottom:595.773333pt;}
.y3d{bottom:597.373333pt;}
.y131{bottom:598.653333pt;}
.y10d{bottom:598.973333pt;}
.y281{bottom:602.333333pt;}
.y29c{bottom:602.493333pt;}
.y17d{bottom:603.293333pt;}
.y1c2{bottom:603.933333pt;}
.y222{bottom:605.213333pt;}
.y265{bottom:605.853333pt;}
.y69{bottom:606.973333pt;}
.y2b7{bottom:608.733333pt;}
.ybf{bottom:610.813333pt;}
.ye5{bottom:612.733333pt;}
.y3c{bottom:614.173333pt;}
.y12f{bottom:614.653333pt;}
.y10c{bottom:615.773333pt;}
.y20b{bottom:616.253333pt;}
.y280{bottom:619.293333pt;}
.y17c{bottom:620.253333pt;}
.y1c1{bottom:620.733333pt;}
.y155{bottom:621.853333pt;}
.y221{bottom:622.013333pt;}
.y10{bottom:623.613333pt;}
.y68{bottom:623.933333pt;}
.y264{bottom:624.093333pt;}
.y2b6{bottom:625.533333pt;}
.ybe{bottom:627.133333pt;}
.y20a{bottom:628.573333pt;}
.y11{bottom:628.893333pt;}
.ye4{bottom:629.533333pt;}
.y130{bottom:630.653333pt;}
.y8f{bottom:631.133333pt;}
.y19f{bottom:631.293333pt;}
.y27f{bottom:636.093333pt;}
.y17b{bottom:637.053333pt;}
.ybb{bottom:637.853333pt;}
.y154{bottom:638.973333pt;}
.y67{bottom:640.733333pt;}
.y263{bottom:642.173333pt;}
.y2b5{bottom:642.493333pt;}
.y209{bottom:643.293333pt;}
.y3b{bottom:644.733333pt;}
.ye3{bottom:646.493333pt;}
.y10b{bottom:646.813333pt;}
.y8e{bottom:647.933333pt;}
.y29b{bottom:649.373333pt;}
.y1c0{bottom:650.813333pt;}
.yf{bottom:653.693333pt;}
.y17a{bottom:654.013333pt;}
.y19e{bottom:655.293333pt;}
.y153{bottom:655.773333pt;}
.y66{bottom:657.693333pt;}
.y208{bottom:658.653333pt;}
.y2b4{bottom:659.293333pt;}
.y1e5{bottom:659.613333pt;}
.y262{bottom:660.413333pt;}
.y12e{bottom:662.973333pt;}
.ye2{bottom:663.293333pt;}
.y10a{bottom:663.773333pt;}
.y8d{bottom:664.893333pt;}
.y27e{bottom:666.173333pt;}
.y29a{bottom:666.333333pt;}
.y179{bottom:670.813333pt;}
.y152{bottom:672.573333pt;}
.y207{bottom:674.013333pt;}
.y65{bottom:674.493333pt;}
.y3a{bottom:675.933333pt;}
.y2b3{bottom:676.093333pt;}
.y1e4{bottom:676.573333pt;}
.y261{bottom:678.653333pt;}
.ye1{bottom:680.093333pt;}
.y1bf{bottom:680.253333pt;}
.y109{bottom:680.573333pt;}
.y8c{bottom:681.693333pt;}
.y27d{bottom:683.293333pt;}
.ye{bottom:684.413333pt;}
.y178{bottom:687.613333pt;}
.y206{bottom:689.373333pt;}
.y151{bottom:689.533333pt;}
.y64{bottom:691.293333pt;}
.y12d{bottom:691.613333pt;}
.y1be{bottom:692.573333pt;}
.y2b2{bottom:693.053333pt;}
.y1e3{bottom:693.533333pt;}
.y19d{bottom:694.653333pt;}
.y260{bottom:696.893333pt;}
.ye0{bottom:697.053333pt;}
.y27c{bottom:700.093333pt;}
.yb8{bottom:700.413333pt;}
.y220{bottom:702.653333pt;}
.yd{bottom:702.813333pt;}
.y176{bottom:704.573333pt;}
.y205{bottom:705.373333pt;}
.y39{bottom:706.173333pt;}
.y150{bottom:706.333333pt;}
.y1bd{bottom:707.293333pt;}
.y63{bottom:708.253333pt;}
.y177{bottom:709.853333pt;}
.y1e2{bottom:710.333333pt;}
.y8b{bottom:711.773333pt;}
.y19c{bottom:718.653333pt;}
.y21f{bottom:719.773333pt;}
.y12c{bottom:720.253333pt;}
.y175{bottom:721.373333pt;}
.y1bc{bottom:722.653333pt;}
.y38{bottom:723.293333pt;}
.y62{bottom:725.053333pt;}
.y2b1{bottom:726.813333pt;}
.ydf{bottom:727.133333pt;}
.y1e1{bottom:727.293333pt;}
.y25f{bottom:728.573333pt;}
.y108{bottom:728.733333pt;}
.y27b{bottom:730.173333pt;}
.yb7{bottom:731.773333pt;}
.yc{bottom:734.013333pt;}
.y14f{bottom:736.413333pt;}
.y21e{bottom:736.573333pt;}
.y1bb{bottom:737.853333pt;}
.y174{bottom:738.333333pt;}
.y23f{bottom:740.093333pt;}
.y61{bottom:742.013333pt;}
.y8a{bottom:742.333333pt;}
.y2b0{bottom:743.613333pt;}
.y1e0{bottom:744.093333pt;}
.y107{bottom:745.693333pt;}
.y25e{bottom:746.493333pt;}
.y27a{bottom:747.133333pt;}
.yb6{bottom:747.773333pt;}
.y12b{bottom:749.053333pt;}
.y37{bottom:753.213333pt;}
.y14e{bottom:753.373333pt;}
.y204{bottom:753.533333pt;}
.y173{bottom:755.133333pt;}
.y23e{bottom:756.893333pt;}
.yde{bottom:757.693333pt;}
.y198{bottom:757.853333pt;}
.y60{bottom:758.813333pt;}
.y2af{bottom:760.453333pt;}
.y1df{bottom:760.933333pt;}
.y106{bottom:762.533333pt;}
.yb5{bottom:763.813333pt;}
.y279{bottom:764.133333pt;}
.y25d{bottom:764.773333pt;}
.yb{bottom:765.413333pt;}
.y12a{bottom:766.053333pt;}
.y1ba{bottom:769.253333pt;}
.y14d{bottom:770.373333pt;}
.y89{bottom:773.733333pt;}
.ydd{bottom:776.133333pt;}
.y2ae{bottom:777.413333pt;}
.y1de{bottom:777.893333pt;}
.y203{bottom:782.213333pt;}
.y129{bottom:782.853333pt;}
.y25c{bottom:783.013333pt;}
.y36{bottom:783.493333pt;}
.y172{bottom:785.253333pt;}
.ya{bottom:786.853333pt;}
.y23d{bottom:787.013333pt;}
.y14c{bottom:787.173333pt;}
.y5f{bottom:788.933333pt;}
.y105{bottom:792.613333pt;}
.y278{bottom:794.053333pt;}
.y2ad{bottom:794.213333pt;}
.yb4{bottom:795.173333pt;}
.y128{bottom:799.813333pt;}
.y35{bottom:800.453333pt;}
.y25b{bottom:801.253333pt;}
.y171{bottom:802.213333pt;}
.y88{bottom:803.973333pt;}
.y14b{bottom:804.133333pt;}
.y5e{bottom:805.893333pt;}
.ydc{bottom:807.493333pt;}
.y1dd{bottom:807.973333pt;}
.y9{bottom:808.293333pt;}
.y202{bottom:811.013333pt;}
.yb3{bottom:811.173333pt;}
.y127{bottom:816.613333pt;}
.y34{bottom:817.413333pt;}
.y25a{bottom:819.333333pt;}
.y87{bottom:820.933333pt;}
.y5d{bottom:822.853333pt;}
.y104{bottom:823.173333pt;}
.y2ac{bottom:824.293333pt;}
.yb0{bottom:826.533333pt;}
.y277{bottom:827.973333pt;}
.y170{bottom:832.293333pt;}
.y126{bottom:833.573333pt;}
.y33{bottom:834.213333pt;}
.ydb{bottom:837.573333pt;}
.y86{bottom:837.733333pt;}
.y1dc{bottom:838.533333pt;}
.y5c{bottom:839.653333pt;}
.y201{bottom:841.093333pt;}
.y2ab{bottom:841.253333pt;}
.y8{bottom:843.173333pt;}
.y276{bottom:844.933333pt;}
.y197{bottom:846.213333pt;}
.y32{bottom:851.173333pt;}
.y103{bottom:854.533333pt;}
.y85{bottom:854.693333pt;}
.y259{bottom:855.813333pt;}
.y5b{bottom:856.453333pt;}
.y1db{bottom:856.933333pt;}
.yad{bottom:857.093333pt;}
.y299{bottom:858.053333pt;}
.y200{bottom:858.213333pt;}
.y16f{bottom:862.853333pt;}
.y125{bottom:863.493333pt;}
.y31{bottom:867.973333pt;}
.y84{bottom:871.493333pt;}
.yac{bottom:873.093333pt;}
.y258{bottom:874.053333pt;}
.y196{bottom:874.853333pt;}
.y1ff{bottom:875.013333pt;}
.y7{bottom:876.773333pt;}
.y102{bottom:884.773333pt;}
.y30{bottom:884.933333pt;}
.y5a{bottom:886.533333pt;}
.y1da{bottom:888.293333pt;}
.y83{bottom:888.453333pt;}
.yab{bottom:889.093333pt;}
.y1fe{bottom:891.973333pt;}
.y257{bottom:892.133333pt;}
.y124{bottom:894.213333pt;}
.y2f{bottom:901.733333pt;}
.ya9{bottom:905.093333pt;}
.y14a{bottom:905.253333pt;}
.y6{bottom:908.133333pt;}
.y1fd{bottom:908.773333pt;}
.y256{bottom:910.373333pt;}
.y59{bottom:917.893333pt;}
.y82{bottom:918.373333pt;}
.y2e{bottom:918.533333pt;}
.y298{bottom:921.893333pt;}
.y195{bottom:922.053333pt;}
.y123{bottom:925.413333pt;}
.y16e{bottom:925.573333pt;}
.y255{bottom:928.613333pt;}
.y149{bottom:935.333333pt;}
.y2d{bottom:935.493333pt;}
.ya8{bottom:937.253333pt;}
.y5{bottom:938.853333pt;}
.y194{bottom:939.013333pt;}
.y254{bottom:946.853333pt;}
.y2c{bottom:952.293333pt;}
.y58{bottom:952.613333pt;}
.y122{bottom:955.653333pt;}
.y1b9{bottom:955.813333pt;}
.y16d{bottom:959.173333pt;}
.ya7{bottom:960.613333pt;}
.y253{bottom:965.093333pt;}
.y193{bottom:969.093333pt;}
.y2b{bottom:969.253333pt;}
.y1b8{bottom:972.773333pt;}
.y252{bottom:983.173333pt;}
.y121{bottom:985.893333pt;}
.y2a{bottom:986.053333pt;}
.y57{bottom:986.693333pt;}
.ya6{bottom:989.413333pt;}
.y1b7{bottom:989.573333pt;}
.y251{bottom:1001.413333pt;}
.y275{bottom:1002.693333pt;}
.y29{bottom:1002.853333pt;}
.y56{bottom:1018.560000pt;}
.ya5{bottom:1019.680000pt;}
.y28{bottom:1019.840000pt;}
.y1{bottom:1061.440000pt;}
.h13{height:15.200000pt;}
.h9{height:15.360000pt;}
.hd{height:15.392000pt;}
.h16{height:22.880000pt;}
.h15{height:23.040000pt;}
.h19{height:23.200000pt;}
.h1a{height:23.360000pt;}
.hb{height:30.560000pt;}
.hc{height:30.720000pt;}
.h1d{height:31.200000pt;}
.ha{height:31.360000pt;}
.h6{height:36.045000pt;}
.h18{height:38.560000pt;}
.h5{height:38.715000pt;}
.h1b{height:38.720000pt;}
.h17{height:42.752000pt;}
.h10{height:44.722500pt;}
.hf{height:45.920000pt;}
.h1e{height:46.560000pt;}
.he{height:46.720000pt;}
.h1f{height:47.109375pt;}
.h12{height:47.392000pt;}
.h14{height:52.785000pt;}
.h1c{height:54.112000pt;}
.h7{height:55.402500pt;}
.h2{height:61.410000pt;}
.h11{height:62.720000pt;}
.h8{height:62.812500pt;}
.h4{height:66.750000pt;}
.h3{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:58.432000pt;}
.w27{width:63.232000pt;}
.w2e{width:65.600000pt;}
.w2f{width:67.072000pt;}
.w1a{width:70.272000pt;}
.w18{width:70.592000pt;}
.w29{width:71.520000pt;}
.w2c{width:72.960000pt;}
.w2d{width:72.992000pt;}
.w2b{width:80.192000pt;}
.w31{width:80.480000pt;}
.w19{width:81.600000pt;}
.w17{width:81.920000pt;}
.w30{width:83.072000pt;}
.we{width:89.952000pt;}
.wf{width:98.912000pt;}
.w26{width:99.712000pt;}
.w10{width:100.512000pt;}
.wc{width:101.312000pt;}
.wb{width:103.360000pt;}
.w22{width:103.712000pt;}
.w11{width:104.480000pt;}
.w25{width:109.440000pt;}
.w5{width:110.272000pt;}
.w20{width:112.352000pt;}
.w23{width:112.512000pt;}
.w24{width:119.232000pt;}
.w4{width:129.792000pt;}
.w1e{width:146.240000pt;}
.w2a{width:163.386667pt;}
.w1b{width:166.466667pt;}
.w1f{width:166.746667pt;}
.w1d{width:177.506667pt;}
.wd{width:204.986667pt;}
.w9{width:208.346667pt;}
.w12{width:213.346667pt;}
.w14{width:215.866667pt;}
.w15{width:227.746667pt;}
.w28{width:278.626667pt;}
.w1c{width:312.986667pt;}
.w8{width:371.293333pt;}
.w6{width:416.893333pt;}
.w21{width:440.893333pt;}
.w13{width:443.613333pt;}
.w16{width:504.453333pt;}
.w7{width:579.653333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.072000pt;}
.x39{left:8.640000pt;}
.x1c{left:9.792000pt;}
.x56{left:11.200000pt;}
.x3b{left:12.320000pt;}
.x1d{left:13.434667pt;}
.x28{left:14.880000pt;}
.x2d{left:16.520000pt;}
.x48{left:18.560000pt;}
.x26{left:20.160000pt;}
.x29{left:22.912000pt;}
.x2b{left:25.640000pt;}
.x4c{left:28.160000pt;}
.x1f{left:29.960000pt;}
.x49{left:31.040000pt;}
.x25{left:33.440000pt;}
.x2a{left:34.554667pt;}
.x4d{left:35.840000pt;}
.x3a{left:36.800000pt;}
.x4e{left:39.200000pt;}
.x2c{left:41.920000pt;}
.x23{left:45.000000pt;}
.x42{left:52.640000pt;}
.x3f{left:55.360000pt;}
.x41{left:58.106667pt;}
.x43{left:62.906667pt;}
.x36{left:66.560000pt;}
.x15{left:68.480000pt;}
.x31{left:72.506667pt;}
.x44{left:73.960000pt;}
.x1{left:75.551988pt;}
.x57{left:77.440000pt;}
.x5{left:80.031988pt;}
.x3c{left:83.066667pt;}
.x21{left:86.586667pt;}
.x9{left:98.911988pt;}
.x2{left:101.951988pt;}
.x35{left:105.000000pt;}
.xc{left:107.071988pt;}
.x6{left:116.671988pt;}
.xe{left:123.871988pt;}
.x19{left:126.271988pt;}
.x4f{left:131.712000pt;}
.x11{left:141.626655pt;}
.x33{left:142.906667pt;}
.x1a{left:149.946655pt;}
.x46{left:164.840000pt;}
.x45{left:180.826667pt;}
.x17{left:198.266667pt;}
.x52{left:204.666667pt;}
.x1e{left:230.266667pt;}
.x3d{left:234.946667pt;}
.xd{left:245.506655pt;}
.x12{left:246.786655pt;}
.xf{left:275.746655pt;}
.x53{left:277.666667pt;}
.x59{left:280.546655pt;}
.x32{left:281.826667pt;}
.x2f{left:285.986643pt;}
.x7{left:288.386655pt;}
.x30{left:291.106655pt;}
.x13{left:293.986655pt;}
.x58{left:294.946655pt;}
.xa{left:308.866655pt;}
.x10{left:319.906655pt;}
.x20{left:331.586667pt;}
.x14{left:340.386655pt;}
.x54{left:343.266667pt;}
.x2e{left:346.466655pt;}
.x1b{left:363.586655pt;}
.x40{left:381.186667pt;}
.x4{left:396.893322pt;}
.x8{left:410.013322pt;}
.x4a{left:412.573333pt;}
.x27{left:432.093333pt;}
.x18{left:439.773333pt;}
.x5c{left:466.973322pt;}
.x50{left:481.853333pt;}
.x5a{left:490.653322pt;}
.x5b{left:495.613322pt;}
.x34{left:497.693333pt;}
.x3{left:506.813322pt;}
.xb{left:511.293322pt;}
.x4b{left:522.013333pt;}
.x22{left:536.573333pt;}
.x3e{left:547.933333pt;}
.x55{left:564.933333pt;}
.x37{left:572.933333pt;}
.x47{left:621.733333pt;}
.x24{left:626.533333pt;}
.x51{left:645.253333pt;}
.x38{left:654.853333pt;}
}




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