
    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_e58666fc2dc087e032586a5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.241000;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_abf60ac09a0f705b839c2621.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c9ee70d6fce24dd17ea1cf7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_73ce4844a20b6a164592c4d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.332000;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_67846bf3a1c28bc838e9ce68.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.258000;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_50d3cc7bbcce6bd8b760de88.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7c5609aa350ed5f08db3ca85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.182000;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_eb10bfaa6ffcaf96bebe7e38.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.099000;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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:ffa;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a0dc488fcb1aa132bb9929c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.874000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.086400px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.046800px;}
.ls19{letter-spacing:0.123000px;}
.ls3{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.233400px;}
.ls4{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.633600px;}
.ls5{letter-spacing:0.636000px;}
.ls1e{letter-spacing:116.464800px;}
.ls1d{letter-spacing:538.384800px;}
.ls11{letter-spacing:616.144800px;}
.ls13{letter-spacing:698.404800px;}
.ls9{letter-spacing:702.544800px;}
.ls1a{letter-spacing:839.066880px;}
.ls1{letter-spacing:844.716000px;}
.ls1f{letter-spacing:844.740000px;}
.lsc{letter-spacing:865.444800px;}
.lsb{letter-spacing:1047.604800px;}
.lsd{letter-spacing:1163.524800px;}
.ls15{letter-spacing:1278.724800px;}
.lsf{letter-spacing:1320.484800px;}
.ls16{letter-spacing:1402.684800px;}
.ls1c{letter-spacing:1463.164800px;}
.ls18{letter-spacing:1507.084800px;}
.ls1b{letter-spacing:1522.924800px;}
.ls10{letter-spacing:1525.804800px;}
.ls14{letter-spacing:1565.404800px;}
.lsa{letter-spacing:1577.644800px;}
.ls17{letter-spacing:1620.844800px;}
.ls12{letter-spacing:1653.244800px;}
.lse{letter-spacing:1955.644800px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,10),0 0.015em rgb(0,0,10),0.015em 0 rgb(0,0,10),0 -0.015em  rgb(0,0,10);}
.sc1{text-shadow:-0.015em 0 rgb(0,88,65),0 0.015em rgb(0,88,65),0.015em 0 rgb(0,88,65),0 -0.015em  rgb(0,88,65);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,10);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,88,65);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-47.308320px;}
.wsd{word-spacing:-25.322520px;}
.wsc{word-spacing:-25.089120px;}
.wsb{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.224000px;}
.ws3{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.899120px;}
.ws5{word-spacing:-16.771200px;}
.ws6{word-spacing:-16.765920px;}
.ws4{word-spacing:-16.663200px;}
.wsa{word-spacing:-16.258200px;}
.ws9{word-spacing:-16.135200px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.330560px;}
._0{width:1.296000px;}
._4{width:3.000000px;}
._7{width:4.032000px;}
._6{width:5.650560px;}
._2{width:7.344000px;}
._3{width:8.976000px;}
._88{width:10.128000px;}
._79{width:11.304000px;}
._7e{width:12.312000px;}
._77{width:14.760000px;}
._7d{width:15.840000px;}
._8b{width:16.992000px;}
._82{width:18.406560px;}
._8{width:21.312000px;}
._85{width:22.464000px;}
._7c{width:25.776000px;}
._86{width:27.000000px;}
._7b{width:29.736000px;}
._7a{width:31.032000px;}
._5{width:32.400000px;}
._81{width:33.552000px;}
._80{width:34.632000px;}
._87{width:35.856000px;}
._8c{width:37.008000px;}
._78{width:39.672000px;}
._8a{width:46.872000px;}
._83{width:49.824000px;}
._84{width:50.832000px;}
._7f{width:51.979200px;}
._57{width:53.031360px;}
._6a{width:62.638800px;}
._8d{width:63.936000px;}
._68{width:137.458320px;}
._4c{width:139.170480px;}
._58{width:150.242160px;}
._4a{width:198.051360px;}
._70{width:239.767440px;}
._f{width:259.887600px;}
._46{width:287.232000px;}
._32{width:301.895520px;}
._54{width:306.335280px;}
._74{width:324.805920px;}
._72{width:340.915680px;}
._41{width:355.201440px;}
._33{width:384.055200px;}
._4b{width:519.439440px;}
._66{width:628.588320px;}
._3a{width:653.761200px;}
._38{width:658.703760px;}
._44{width:697.399200px;}
._42{width:712.977840px;}
._63{width:714.390000px;}
._67{width:744.433920px;}
._6e{width:811.298880px;}
._69{width:817.759440px;}
._71{width:820.746240px;}
._89{width:845.268000px;}
._3c{width:851.148480px;}
._12{width:853.281360px;}
._73{width:912.405600px;}
._29{width:934.749600px;}
._35{width:936.672000px;}
._49{width:959.050800px;}
._5f{width:971.523120px;}
._2a{width:984.155760px;}
._36{width:989.652960px;}
._6d{width:1016.171760px;}
._3b{width:1058.198160px;}
._17{width:1063.368000px;}
._3d{width:1072.999440px;}
._53{width:1078.451280px;}
._27{width:1100.304000px;}
._61{width:1116.888960px;}
._28{width:1129.473360px;}
._75{width:1145.449680px;}
._64{width:1164.945120px;}
._19{width:1183.854960px;}
._1e{width:1197.300960px;}
._6b{width:1209.741120px;}
._22{width:1236.967920px;}
._4d{width:1250.744880px;}
._55{width:1254.330480px;}
._39{width:1277.906640px;}
._5a{width:1281.570000px;}
._30{width:1287.468240px;}
._6c{width:1321.577280px;}
._24{width:1330.602000px;}
._14{width:1369.685040px;}
._20{width:1371.846720px;}
._43{width:1397.371680px;}
._11{width:1413.719280px;}
._31{width:1436.868240px;}
._23{width:1448.568240px;}
._1f{width:1450.301280px;}
._21{width:1459.090800px;}
._2d{width:1480.360560px;}
._4e{width:1494.039840px;}
._2c{width:1517.691840px;}
._76{width:1523.173920px;}
._6f{width:1537.231200px;}
._65{width:1545.001200px;}
._5d{width:1555.978560px;}
._13{width:1566.874320px;}
._51{width:1570.771680px;}
._25{width:1597.889760px;}
._5e{width:1607.737680px;}
._62{width:1610.814480px;}
._37{width:1625.259120px;}
._e{width:1637.352000px;}
._1d{width:1638.874320px;}
._18{width:1677.554640px;}
._5c{width:1683.777120px;}
._45{width:1695.417120px;}
._34{width:1706.937120px;}
._4f{width:1710.761760px;}
._16{width:1722.057120px;}
._26{width:1733.577120px;}
._2f{width:1743.459360px;}
._15{width:1745.961120px;}
._3f{width:1756.983840px;}
._1c{width:1761.143280px;}
._10{width:1765.069440px;}
._50{width:1789.419840px;}
._1a{width:1801.114800px;}
._1b{width:1828.962960px;}
._40{width:1845.036240px;}
._3e{width:1876.963200px;}
._5b{width:1884.970320px;}
._52{width:1892.804400px;}
._48{width:1948.960080px;}
._2b{width:1968.622080px;}
._a{width:1975.032000px;}
._2e{width:1985.115840px;}
._56{width:1988.102880px;}
._b{width:2001.456000px;}
._59{width:2003.520960px;}
._47{width:2049.894720px;}
._60{width:2262.840000px;}
._d{width:2269.440000px;}
._c{width:2309.328000px;}
._9{width:2434.608000px;}
.fc2{color:rgb(0,88,65);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs8{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:216.000000px;}
.y4{bottom:-12.750000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:14.580000px;}
.y2{bottom:15.840000px;}
.y38{bottom:16.920000px;}
.y19{bottom:21.960000px;}
.y39{bottom:30.960000px;}
.y37{bottom:33.480000px;}
.y3c{bottom:66.960000px;}
.yd5{bottom:104.976000px;}
.y83{bottom:108.576000px;}
.yb7{bottom:115.056000px;}
.y18{bottom:123.156000px;}
.y5e{bottom:123.336000px;}
.y82{bottom:135.576000px;}
.yd4{bottom:137.376000px;}
.yb6{bottom:142.056000px;}
.y34{bottom:144.756000px;}
.y5d{bottom:145.296000px;}
.yd8{bottom:151.770000px;}
.y81{bottom:162.570000px;}
.yb5{bottom:169.050000px;}
.y17{bottom:173.550000px;}
.y5c{bottom:184.170000px;}
.y94{bottom:186.510000px;}
.yd3{bottom:187.770000px;}
.y80{bottom:189.570000px;}
.y33{bottom:195.150000px;}
.yb4{bottom:196.050000px;}
.yd7{bottom:202.170000px;}
.y16{bottom:205.950000px;}
.y5b{bottom:211.170000px;}
.y7f{bottom:216.570000px;}
.yd2{bottom:220.170000px;}
.yb3{bottom:223.050000px;}
.yd6{bottom:234.570000px;}
.y93{bottom:237.810000px;}
.y5a{bottom:238.170000px;}
.y15{bottom:238.350000px;}
.y7e{bottom:238.530000px;}
.y32{bottom:245.550000px;}
.yb2{bottom:250.050000px;}
.yd1{bottom:252.570000px;}
.y92{bottom:262.290000px;}
.y59{bottom:265.170000px;}
.yb1{bottom:277.050000px;}
.y7d{bottom:277.410000px;}
.yd0{bottom:284.970000px;}
.y14{bottom:288.750000px;}
.y58{bottom:292.170000px;}
.y31{bottom:295.950000px;}
.y91{bottom:297.570000px;}
.yb0{bottom:304.050000px;}
.y7c{bottom:304.410000px;}
.ycf{bottom:317.370000px;}
.y57{bottom:319.170000px;}
.y90{bottom:324.570000px;}
.yaf{bottom:331.050000px;}
.y7b{bottom:331.410000px;}
.y13{bottom:337.350000px;}
.y3{bottom:339.480000px;}
.y56{bottom:346.170000px;}
.y30{bottom:346.350000px;}
.yce{bottom:349.770000px;}
.y8f{bottom:351.570000px;}
.yae{bottom:358.095000px;}
.y7a{bottom:358.455000px;}
.y12{bottom:367.455000px;}
.y55{bottom:373.215000px;}
.y8e{bottom:378.615000px;}
.ycd{bottom:382.215000px;}
.yad{bottom:385.095000px;}
.y79{bottom:385.455000px;}
.y2f{bottom:396.795000px;}
.y54{bottom:400.215000px;}
.y8d{bottom:400.575000px;}
.y11{bottom:409.035000px;}
.yac{bottom:412.095000px;}
.y78{bottom:412.455000px;}
.ycc{bottom:414.615000px;}
.y53{bottom:427.215000px;}
.y2e{bottom:429.195000px;}
.yab{bottom:439.095000px;}
.y77{bottom:439.455000px;}
.y10{bottom:445.755000px;}
.ycb{bottom:447.015000px;}
.y52{bottom:454.215000px;}
.yaa{bottom:466.095000px;}
.y76{bottom:466.455000px;}
.yca{bottom:479.415000px;}
.y2d{bottom:479.595000px;}
.y51{bottom:481.215000px;}
.yf{bottom:488.055000px;}
.ya9{bottom:493.095000px;}
.y75{bottom:493.455000px;}
.y50{bottom:508.215000px;}
.yc9{bottom:511.815000px;}
.y2c{bottom:511.995000px;}
.ya8{bottom:520.095000px;}
.y74{bottom:520.455000px;}
.y4f{bottom:535.215000px;}
.ye{bottom:538.455000px;}
.y8c{bottom:542.415000px;}
.yc8{bottom:544.215000px;}
.ya7{bottom:547.095000px;}
.y73{bottom:547.455000px;}
.y4e{bottom:562.215000px;}
.y2b{bottom:562.395000px;}
.ya6{bottom:574.095000px;}
.y72{bottom:574.455000px;}
.yc7{bottom:576.615000px;}
.y8b{bottom:581.295000px;}
.y4d{bottom:584.175000px;}
.yd{bottom:588.855000px;}
.y2a{bottom:594.795000px;}
.ya5{bottom:601.095000px;}
.y71{bottom:601.455000px;}
.y8a{bottom:608.295000px;}
.yc6{bottom:609.015000px;}
.y4c{bottom:623.085000px;}
.ya4{bottom:628.125000px;}
.y70{bottom:628.485000px;}
.y89{bottom:635.325000px;}
.yc{bottom:641.085000px;}
.yc5{bottom:641.445000px;}
.y29{bottom:645.225000px;}
.y4b{bottom:650.085000px;}
.ya3{bottom:655.125000px;}
.y6f{bottom:655.485000px;}
.yb9{bottom:655.845000px;}
.y88{bottom:662.325000px;}
.yc4{bottom:673.845000px;}
.y4a{bottom:677.085000px;}
.y28{bottom:677.625000px;}
.ya2{bottom:682.125000px;}
.y6e{bottom:682.485000px;}
.y87{bottom:689.325000px;}
.y49{bottom:704.085000px;}
.yb{bottom:705.885000px;}
.yc3{bottom:706.245000px;}
.ya1{bottom:709.125000px;}
.y6d{bottom:709.485000px;}
.y27{bottom:710.025000px;}
.y86{bottom:716.325000px;}
.y48{bottom:731.085000px;}
.ya0{bottom:736.125000px;}
.y6c{bottom:736.485000px;}
.yc2{bottom:738.645000px;}
.y85{bottom:743.325000px;}
.y47{bottom:758.085000px;}
.y6b{bottom:758.445000px;}
.y26{bottom:760.425000px;}
.y9f{bottom:763.125000px;}
.y84{bottom:770.325000px;}
.ya{bottom:770.685000px;}
.yc1{bottom:771.045000px;}
.y46{bottom:785.085000px;}
.y9e{bottom:790.125000px;}
.y25{bottom:792.825000px;}
.y6a{bottom:797.325000px;}
.yc0{bottom:803.445000px;}
.y45{bottom:812.085000px;}
.y9d{bottom:817.125000px;}
.yb8{bottom:823.785000px;}
.y69{bottom:824.325000px;}
.y24{bottom:825.225000px;}
.ybf{bottom:835.845000px;}
.y44{bottom:839.085000px;}
.y9c{bottom:844.125000px;}
.y68{bottom:851.325000px;}
.y43{bottom:861.045000px;}
.ybe{bottom:868.245000px;}
.y9b{bottom:871.125000px;}
.y23{bottom:875.670000px;}
.y67{bottom:878.370000px;}
.y9{bottom:889.350000px;}
.y42{bottom:894.930000px;}
.y9a{bottom:898.170000px;}
.ybd{bottom:900.690000px;}
.y66{bottom:905.370000px;}
.y22{bottom:908.070000px;}
.y99{bottom:925.170000px;}
.y41{bottom:928.770000px;}
.y65{bottom:932.370000px;}
.ybc{bottom:933.090000px;}
.y21{bottom:940.470000px;}
.y98{bottom:952.170000px;}
.y64{bottom:959.370000px;}
.y40{bottom:962.610000px;}
.ybb{bottom:965.490000px;}
.y8{bottom:971.970000px;}
.y20{bottom:972.870000px;}
.y97{bottom:979.170000px;}
.y63{bottom:986.370000px;}
.y3f{bottom:996.450000px;}
.yba{bottom:997.890000px;}
.y1f{bottom:1005.270000px;}
.y96{bottom:1006.170000px;}
.y62{bottom:1013.370000px;}
.y1c{bottom:1016.070000px;}
.y7{bottom:1021.470000px;}
.y3e{bottom:1030.290000px;}
.y95{bottom:1033.170000px;}
.y61{bottom:1040.370000px;}
.y1e{bottom:1055.670000px;}
.y1b{bottom:1066.470000px;}
.y60{bottom:1067.370000px;}
.y6{bottom:1070.430000px;}
.y3d{bottom:1084.830000px;}
.y5f{bottom:1094.370000px;}
.y1d{bottom:1110.210000px;}
.y1a{bottom:1116.870000px;}
.y5{bottom:1119.570000px;}
.y3b{bottom:1126.050000px;}
.y36{bottom:1142.100000px;}
.y1{bottom:1158.660000px;}
.y35{bottom:1193.580000px;}
.h3{height:6.479850px;}
.he{height:46.980000px;}
.hf{height:47.643840px;}
.hd{height:55.696320px;}
.h12{height:56.712240px;}
.hc{height:62.856000px;}
.h11{height:65.884219px;}
.h2{height:67.104000px;}
.h10{height:67.824844px;}
.h4{height:71.824219px;}
.ha{height:74.004654px;}
.h5{height:74.953125px;}
.h13{height:75.093750px;}
.hb{height:94.706640px;}
.h8{height:159.204240px;}
.h9{height:201.312000px;}
.h7{height:213.624000px;}
.h6{height:224.859375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:188.839500px;}
.w2{width:191.880000px;}
.w4{width:502.125000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.089500px;}
.x3{left:10.875000px;}
.x14{left:90.226500px;}
.x1{left:106.416000px;}
.x7{left:122.256000px;}
.x1a{left:148.896000px;}
.x20{left:159.510000px;}
.x8{left:167.790000px;}
.x1f{left:170.310000px;}
.x1c{left:177.510000px;}
.x18{left:185.430000px;}
.x17{left:189.030000px;}
.x4{left:211.170000px;}
.x1b{left:212.790000px;}
.x5{left:216.390000px;}
.x1e{left:223.410000px;}
.xa{left:241.050000px;}
.x6{left:249.870000px;}
.x9{left:251.310000px;}
.x16{left:279.075000px;}
.xf{left:313.995000px;}
.x10{left:344.955000px;}
.x2{left:354.960000px;}
.xc{left:368.175000px;}
.xb{left:385.455000px;}
.xe{left:403.815000px;}
.xd{left:447.765000px;}
.x11{left:474.405000px;}
.x13{left:551.265000px;}
.x1d{left:777.420000px;}
.x19{left:780.300000px;}
.x12{left:789.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.076800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.041600pt;}
.ls19{letter-spacing:0.109333pt;}
.ls3{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.207467pt;}
.ls4{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.563200pt;}
.ls5{letter-spacing:0.565333pt;}
.ls1e{letter-spacing:103.524267pt;}
.ls1d{letter-spacing:478.564267pt;}
.ls11{letter-spacing:547.684267pt;}
.ls13{letter-spacing:620.804267pt;}
.ls9{letter-spacing:624.484267pt;}
.ls1a{letter-spacing:745.837227pt;}
.ls1{letter-spacing:750.858667pt;}
.ls1f{letter-spacing:750.880000pt;}
.lsc{letter-spacing:769.284267pt;}
.lsb{letter-spacing:931.204267pt;}
.lsd{letter-spacing:1034.244267pt;}
.ls15{letter-spacing:1136.644267pt;}
.lsf{letter-spacing:1173.764267pt;}
.ls16{letter-spacing:1246.830933pt;}
.ls1c{letter-spacing:1300.590933pt;}
.ls18{letter-spacing:1339.630933pt;}
.ls1b{letter-spacing:1353.710933pt;}
.ls10{letter-spacing:1356.270933pt;}
.ls14{letter-spacing:1391.470933pt;}
.lsa{letter-spacing:1402.350933pt;}
.ls17{letter-spacing:1440.750933pt;}
.ls12{letter-spacing:1469.550933pt;}
.lse{letter-spacing:1738.350933pt;}
.ws0{word-spacing:-42.051840pt;}
.wsd{word-spacing:-22.508907pt;}
.wsc{word-spacing:-22.301440pt;}
.wsb{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.088000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.021440pt;}
.ws5{word-spacing:-14.907733pt;}
.ws6{word-spacing:-14.903040pt;}
.ws4{word-spacing:-14.811733pt;}
.wsa{word-spacing:-14.451733pt;}
.ws9{word-spacing:-14.342400pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.182720pt;}
._0{width:1.152000pt;}
._4{width:2.666667pt;}
._7{width:3.584000pt;}
._6{width:5.022720pt;}
._2{width:6.528000pt;}
._3{width:7.978667pt;}
._88{width:9.002667pt;}
._79{width:10.048000pt;}
._7e{width:10.944000pt;}
._77{width:13.120000pt;}
._7d{width:14.080000pt;}
._8b{width:15.104000pt;}
._82{width:16.361387pt;}
._8{width:18.944000pt;}
._85{width:19.968000pt;}
._7c{width:22.912000pt;}
._86{width:24.000000pt;}
._7b{width:26.432000pt;}
._7a{width:27.584000pt;}
._5{width:28.800000pt;}
._81{width:29.824000pt;}
._80{width:30.784000pt;}
._87{width:31.872000pt;}
._8c{width:32.896000pt;}
._78{width:35.264000pt;}
._8a{width:41.664000pt;}
._83{width:44.288000pt;}
._84{width:45.184000pt;}
._7f{width:46.203733pt;}
._57{width:47.138987pt;}
._6a{width:55.678933pt;}
._8d{width:56.832000pt;}
._68{width:122.185173pt;}
._4c{width:123.707093pt;}
._58{width:133.548587pt;}
._4a{width:176.045653pt;}
._70{width:213.126613pt;}
._f{width:231.011200pt;}
._46{width:255.317333pt;}
._32{width:268.351573pt;}
._54{width:272.298027pt;}
._74{width:288.716373pt;}
._72{width:303.036160pt;}
._41{width:315.734613pt;}
._33{width:341.382400pt;}
._4b{width:461.723947pt;}
._66{width:558.745173pt;}
._3a{width:581.121067pt;}
._38{width:585.514453pt;}
._44{width:619.910400pt;}
._42{width:633.758080pt;}
._63{width:635.013333pt;}
._67{width:661.719040pt;}
._6e{width:721.154560pt;}
._69{width:726.897280pt;}
._71{width:729.552213pt;}
._89{width:751.349333pt;}
._3c{width:756.576427pt;}
._12{width:758.472320pt;}
._73{width:811.027200pt;}
._29{width:830.888533pt;}
._35{width:832.597333pt;}
._49{width:852.489600pt;}
._5f{width:863.576107pt;}
._2a{width:874.805120pt;}
._36{width:879.691520pt;}
._6d{width:903.263787pt;}
._3b{width:940.620587pt;}
._17{width:945.216000pt;}
._3d{width:953.777280pt;}
._53{width:958.623360pt;}
._27{width:978.048000pt;}
._61{width:992.790187pt;}
._28{width:1003.976320pt;}
._75{width:1018.177493pt;}
._64{width:1035.506773pt;}
._19{width:1052.315520pt;}
._1e{width:1064.267520pt;}
._6b{width:1075.325440pt;}
._22{width:1099.527040pt;}
._4d{width:1111.773227pt;}
._55{width:1114.960427pt;}
._39{width:1135.917013pt;}
._5a{width:1139.173333pt;}
._30{width:1144.416213pt;}
._6c{width:1174.735360pt;}
._24{width:1182.757333pt;}
._14{width:1217.497813pt;}
._20{width:1219.419307pt;}
._43{width:1242.108160pt;}
._11{width:1256.639360pt;}
._31{width:1277.216213pt;}
._23{width:1287.616213pt;}
._1f{width:1289.156693pt;}
._21{width:1296.969600pt;}
._2d{width:1315.876053pt;}
._4e{width:1328.035413pt;}
._2c{width:1349.059413pt;}
._76{width:1353.932373pt;}
._6f{width:1366.427733pt;}
._65{width:1373.334400pt;}
._5d{width:1383.092053pt;}
._13{width:1392.777173pt;}
._51{width:1396.241493pt;}
._25{width:1420.346453pt;}
._5e{width:1429.100160pt;}
._62{width:1431.835093pt;}
._37{width:1444.674773pt;}
._e{width:1455.424000pt;}
._1d{width:1456.777173pt;}
._18{width:1491.159680pt;}
._5c{width:1496.690773pt;}
._45{width:1507.037440pt;}
._34{width:1517.277440pt;}
._4f{width:1520.677120pt;}
._16{width:1530.717440pt;}
._26{width:1540.957440pt;}
._2f{width:1549.741653pt;}
._15{width:1551.965440pt;}
._3f{width:1561.763413pt;}
._1c{width:1565.460693pt;}
._10{width:1568.950613pt;}
._50{width:1590.595413pt;}
._1a{width:1600.990933pt;}
._1b{width:1625.744853pt;}
._40{width:1640.032213pt;}
._3e{width:1668.411733pt;}
._5b{width:1675.529173pt;}
._52{width:1682.492800pt;}
._48{width:1732.408960pt;}
._2b{width:1749.886293pt;}
._a{width:1755.584000pt;}
._2e{width:1764.547413pt;}
._56{width:1767.202560pt;}
._b{width:1779.072000pt;}
._59{width:1780.907520pt;}
._47{width:1822.128640pt;}
._60{width:2011.413333pt;}
._d{width:2017.280000pt;}
._c{width:2052.736000pt;}
._9{width:2164.096000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:192.000000pt;}
.y4{bottom:-11.333333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:12.960000pt;}
.y2{bottom:14.080000pt;}
.y38{bottom:15.040000pt;}
.y19{bottom:19.520000pt;}
.y39{bottom:27.520000pt;}
.y37{bottom:29.760000pt;}
.y3c{bottom:59.520000pt;}
.yd5{bottom:93.312000pt;}
.y83{bottom:96.512000pt;}
.yb7{bottom:102.272000pt;}
.y18{bottom:109.472000pt;}
.y5e{bottom:109.632000pt;}
.y82{bottom:120.512000pt;}
.yd4{bottom:122.112000pt;}
.yb6{bottom:126.272000pt;}
.y34{bottom:128.672000pt;}
.y5d{bottom:129.152000pt;}
.yd8{bottom:134.906667pt;}
.y81{bottom:144.506667pt;}
.yb5{bottom:150.266667pt;}
.y17{bottom:154.266667pt;}
.y5c{bottom:163.706667pt;}
.y94{bottom:165.786667pt;}
.yd3{bottom:166.906667pt;}
.y80{bottom:168.506667pt;}
.y33{bottom:173.466667pt;}
.yb4{bottom:174.266667pt;}
.yd7{bottom:179.706667pt;}
.y16{bottom:183.066667pt;}
.y5b{bottom:187.706667pt;}
.y7f{bottom:192.506667pt;}
.yd2{bottom:195.706667pt;}
.yb3{bottom:198.266667pt;}
.yd6{bottom:208.506667pt;}
.y93{bottom:211.386667pt;}
.y5a{bottom:211.706667pt;}
.y15{bottom:211.866667pt;}
.y7e{bottom:212.026667pt;}
.y32{bottom:218.266667pt;}
.yb2{bottom:222.266667pt;}
.yd1{bottom:224.506667pt;}
.y92{bottom:233.146667pt;}
.y59{bottom:235.706667pt;}
.yb1{bottom:246.266667pt;}
.y7d{bottom:246.586667pt;}
.yd0{bottom:253.306667pt;}
.y14{bottom:256.666667pt;}
.y58{bottom:259.706667pt;}
.y31{bottom:263.066667pt;}
.y91{bottom:264.506667pt;}
.yb0{bottom:270.266667pt;}
.y7c{bottom:270.586667pt;}
.ycf{bottom:282.106667pt;}
.y57{bottom:283.706667pt;}
.y90{bottom:288.506667pt;}
.yaf{bottom:294.266667pt;}
.y7b{bottom:294.586667pt;}
.y13{bottom:299.866667pt;}
.y3{bottom:301.760000pt;}
.y56{bottom:307.706667pt;}
.y30{bottom:307.866667pt;}
.yce{bottom:310.906667pt;}
.y8f{bottom:312.506667pt;}
.yae{bottom:318.306667pt;}
.y7a{bottom:318.626667pt;}
.y12{bottom:326.626667pt;}
.y55{bottom:331.746667pt;}
.y8e{bottom:336.546667pt;}
.ycd{bottom:339.746667pt;}
.yad{bottom:342.306667pt;}
.y79{bottom:342.626667pt;}
.y2f{bottom:352.706667pt;}
.y54{bottom:355.746667pt;}
.y8d{bottom:356.066667pt;}
.y11{bottom:363.586667pt;}
.yac{bottom:366.306667pt;}
.y78{bottom:366.626667pt;}
.ycc{bottom:368.546667pt;}
.y53{bottom:379.746667pt;}
.y2e{bottom:381.506667pt;}
.yab{bottom:390.306667pt;}
.y77{bottom:390.626667pt;}
.y10{bottom:396.226667pt;}
.ycb{bottom:397.346667pt;}
.y52{bottom:403.746667pt;}
.yaa{bottom:414.306667pt;}
.y76{bottom:414.626667pt;}
.yca{bottom:426.146667pt;}
.y2d{bottom:426.306667pt;}
.y51{bottom:427.746667pt;}
.yf{bottom:433.826667pt;}
.ya9{bottom:438.306667pt;}
.y75{bottom:438.626667pt;}
.y50{bottom:451.746667pt;}
.yc9{bottom:454.946667pt;}
.y2c{bottom:455.106667pt;}
.ya8{bottom:462.306667pt;}
.y74{bottom:462.626667pt;}
.y4f{bottom:475.746667pt;}
.ye{bottom:478.626667pt;}
.y8c{bottom:482.146667pt;}
.yc8{bottom:483.746667pt;}
.ya7{bottom:486.306667pt;}
.y73{bottom:486.626667pt;}
.y4e{bottom:499.746667pt;}
.y2b{bottom:499.906667pt;}
.ya6{bottom:510.306667pt;}
.y72{bottom:510.626667pt;}
.yc7{bottom:512.546667pt;}
.y8b{bottom:516.706667pt;}
.y4d{bottom:519.266667pt;}
.yd{bottom:523.426667pt;}
.y2a{bottom:528.706667pt;}
.ya5{bottom:534.306667pt;}
.y71{bottom:534.626667pt;}
.y8a{bottom:540.706667pt;}
.yc6{bottom:541.346667pt;}
.y4c{bottom:553.853333pt;}
.ya4{bottom:558.333333pt;}
.y70{bottom:558.653333pt;}
.y89{bottom:564.733333pt;}
.yc{bottom:569.853333pt;}
.yc5{bottom:570.173333pt;}
.y29{bottom:573.533333pt;}
.y4b{bottom:577.853333pt;}
.ya3{bottom:582.333333pt;}
.y6f{bottom:582.653333pt;}
.yb9{bottom:582.973333pt;}
.y88{bottom:588.733333pt;}
.yc4{bottom:598.973333pt;}
.y4a{bottom:601.853333pt;}
.y28{bottom:602.333333pt;}
.ya2{bottom:606.333333pt;}
.y6e{bottom:606.653333pt;}
.y87{bottom:612.733333pt;}
.y49{bottom:625.853333pt;}
.yb{bottom:627.453333pt;}
.yc3{bottom:627.773333pt;}
.ya1{bottom:630.333333pt;}
.y6d{bottom:630.653333pt;}
.y27{bottom:631.133333pt;}
.y86{bottom:636.733333pt;}
.y48{bottom:649.853333pt;}
.ya0{bottom:654.333333pt;}
.y6c{bottom:654.653333pt;}
.yc2{bottom:656.573333pt;}
.y85{bottom:660.733333pt;}
.y47{bottom:673.853333pt;}
.y6b{bottom:674.173333pt;}
.y26{bottom:675.933333pt;}
.y9f{bottom:678.333333pt;}
.y84{bottom:684.733333pt;}
.ya{bottom:685.053333pt;}
.yc1{bottom:685.373333pt;}
.y46{bottom:697.853333pt;}
.y9e{bottom:702.333333pt;}
.y25{bottom:704.733333pt;}
.y6a{bottom:708.733333pt;}
.yc0{bottom:714.173333pt;}
.y45{bottom:721.853333pt;}
.y9d{bottom:726.333333pt;}
.yb8{bottom:732.253333pt;}
.y69{bottom:732.733333pt;}
.y24{bottom:733.533333pt;}
.ybf{bottom:742.973333pt;}
.y44{bottom:745.853333pt;}
.y9c{bottom:750.333333pt;}
.y68{bottom:756.733333pt;}
.y43{bottom:765.373333pt;}
.ybe{bottom:771.773333pt;}
.y9b{bottom:774.333333pt;}
.y23{bottom:778.373333pt;}
.y67{bottom:780.773333pt;}
.y9{bottom:790.533333pt;}
.y42{bottom:795.493333pt;}
.y9a{bottom:798.373333pt;}
.ybd{bottom:800.613333pt;}
.y66{bottom:804.773333pt;}
.y22{bottom:807.173333pt;}
.y99{bottom:822.373333pt;}
.y41{bottom:825.573333pt;}
.y65{bottom:828.773333pt;}
.ybc{bottom:829.413333pt;}
.y21{bottom:835.973333pt;}
.y98{bottom:846.373333pt;}
.y64{bottom:852.773333pt;}
.y40{bottom:855.653333pt;}
.ybb{bottom:858.213333pt;}
.y8{bottom:863.973333pt;}
.y20{bottom:864.773333pt;}
.y97{bottom:870.373333pt;}
.y63{bottom:876.773333pt;}
.y3f{bottom:885.733333pt;}
.yba{bottom:887.013333pt;}
.y1f{bottom:893.573333pt;}
.y96{bottom:894.373333pt;}
.y62{bottom:900.773333pt;}
.y1c{bottom:903.173333pt;}
.y7{bottom:907.973333pt;}
.y3e{bottom:915.813333pt;}
.y95{bottom:918.373333pt;}
.y61{bottom:924.773333pt;}
.y1e{bottom:938.373333pt;}
.y1b{bottom:947.973333pt;}
.y60{bottom:948.773333pt;}
.y6{bottom:951.493333pt;}
.y3d{bottom:964.293333pt;}
.y5f{bottom:972.773333pt;}
.y1d{bottom:986.853333pt;}
.y1a{bottom:992.773333pt;}
.y5{bottom:995.173333pt;}
.y3b{bottom:1000.933333pt;}
.y36{bottom:1015.200000pt;}
.y1{bottom:1029.920000pt;}
.y35{bottom:1060.960000pt;}
.h3{height:5.759867pt;}
.he{height:41.760000pt;}
.hf{height:42.350080pt;}
.hd{height:49.507840pt;}
.h12{height:50.410880pt;}
.hc{height:55.872000pt;}
.h11{height:58.563750pt;}
.h2{height:59.648000pt;}
.h10{height:60.288750pt;}
.h4{height:63.843750pt;}
.ha{height:65.781915pt;}
.h5{height:66.625000pt;}
.h13{height:66.750000pt;}
.hb{height:84.183680pt;}
.h8{height:141.514880pt;}
.h9{height:178.944000pt;}
.h7{height:189.888000pt;}
.h6{height:199.875000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:167.857333pt;}
.w2{width:170.560000pt;}
.w4{width:446.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.190667pt;}
.x3{left:9.666667pt;}
.x14{left:80.201333pt;}
.x1{left:94.592000pt;}
.x7{left:108.672000pt;}
.x1a{left:132.352000pt;}
.x20{left:141.786667pt;}
.x8{left:149.146667pt;}
.x1f{left:151.386667pt;}
.x1c{left:157.786667pt;}
.x18{left:164.826667pt;}
.x17{left:168.026667pt;}
.x4{left:187.706667pt;}
.x1b{left:189.146667pt;}
.x5{left:192.346667pt;}
.x1e{left:198.586667pt;}
.xa{left:214.266667pt;}
.x6{left:222.106667pt;}
.x9{left:223.386667pt;}
.x16{left:248.066667pt;}
.xf{left:279.106667pt;}
.x10{left:306.626667pt;}
.x2{left:315.520000pt;}
.xc{left:327.266667pt;}
.xb{left:342.626667pt;}
.xe{left:358.946667pt;}
.xd{left:398.013333pt;}
.x11{left:421.693333pt;}
.x13{left:490.013333pt;}
.x1d{left:691.040000pt;}
.x19{left:693.600000pt;}
.x12{left:701.600000pt;}
}




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