
    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_b6c29b5937716851b558be05.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_61baa09cba9052a6205cb5b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_dbf7489caed9cf7beb08c040.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_9ab03eb7809b431020077053.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5b27f1ec8e7b8cf9734354f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_ae35fa0d87201214aa586333.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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_75f6566aa32e28250eefd768.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_4a2829eae647c22235827381.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_0ec2d44f2bbff4f97dfeb46f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_e175a37053230b21c86fe3ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.758160px;}
.ls12{letter-spacing:-0.336960px;}
.ls10{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.168480px;}
.ls7{letter-spacing:0.179280px;}
.lse{letter-spacing:0.233280px;}
.ls1d{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.496800px;}
.ls3{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.440000px;}
.ls14{letter-spacing:3.600000px;}
.ls19{letter-spacing:4.320000px;}
.ls15{letter-spacing:6.480000px;}
.ls1b{letter-spacing:12.240000px;}
.ls18{letter-spacing:13.680000px;}
.ls1e{letter-spacing:1324.080000px;}
.ls1f{letter-spacing:1332.000000px;}
.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;}
}
.ws28{word-spacing:-23.418720px;}
.ws29{word-spacing:-23.081760px;}
.ws51{word-spacing:-20.304000px;}
.ws50{word-spacing:-19.872000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws30{word-spacing:-4.320000px;}
.ws1a{word-spacing:-3.600000px;}
.ws43{word-spacing:-3.312000px;}
.ws3b{word-spacing:-3.024000px;}
.ws22{word-spacing:-2.880000px;}
.ws2b{word-spacing:-2.592000px;}
.ws4f{word-spacing:-2.304000px;}
.ws3a{word-spacing:-2.160000px;}
.ws39{word-spacing:-1.872000px;}
.ws15{word-spacing:-1.584000px;}
.ws16{word-spacing:-1.440000px;}
.ws18{word-spacing:-1.152000px;}
.ws19{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.168480px;}
.wsd{word-spacing:-0.155520px;}
.ws23{word-spacing:-0.144000px;}
.ws8{word-spacing:0.000000px;}
.ws48{word-spacing:0.072000px;}
.ws3{word-spacing:0.162000px;}
.ws13{word-spacing:0.216000px;}
.wsc{word-spacing:0.252720px;}
.ws9{word-spacing:0.264960px;}
.wsa{word-spacing:0.270000px;}
.wse{word-spacing:0.288000px;}
.ws37{word-spacing:0.336960px;}
.ws36{word-spacing:0.421200px;}
.ws38{word-spacing:0.576000px;}
.ws10{word-spacing:0.720000px;}
.ws12{word-spacing:1.008000px;}
.ws21{word-spacing:1.440000px;}
.wsf{word-spacing:2.160000px;}
.ws2f{word-spacing:2.448000px;}
.ws11{word-spacing:2.880000px;}
.ws2a{word-spacing:3.168000px;}
.ws31{word-spacing:3.600000px;}
.ws1b{word-spacing:3.888000px;}
.ws20{word-spacing:4.320000px;}
.ws33{word-spacing:4.608000px;}
.ws14{word-spacing:5.040000px;}
.ws46{word-spacing:5.328000px;}
.ws44{word-spacing:5.760000px;}
.ws24{word-spacing:6.048000px;}
.ws47{word-spacing:6.336000px;}
.ws35{word-spacing:6.480000px;}
.ws2c{word-spacing:7.200000px;}
.ws41{word-spacing:7.488000px;}
.ws32{word-spacing:7.920000px;}
.ws1e{word-spacing:8.208000px;}
.ws40{word-spacing:8.640000px;}
.ws45{word-spacing:8.928000px;}
.ws4b{word-spacing:11.088000px;}
.ws4d{word-spacing:11.520000px;}
.ws4e{word-spacing:11.808000px;}
.ws3d{word-spacing:12.240000px;}
.ws4c{word-spacing:12.528000px;}
.ws49{word-spacing:13.680000px;}
.ws4a{word-spacing:13.968000px;}
.ws17{word-spacing:15.120000px;}
.ws3f{word-spacing:15.408000px;}
.ws1d{word-spacing:15.840000px;}
.ws3c{word-spacing:16.128000px;}
.ws26{word-spacing:17.280000px;}
.ws25{word-spacing:17.568000px;}
.ws2d{word-spacing:18.720000px;}
.ws3e{word-spacing:20.880000px;}
.ws42{word-spacing:28.080000px;}
.ws27{word-spacing:35.280000px;}
.ws2e{word-spacing:52.416000px;}
.ws1c{word-spacing:53.568000px;}
.ws1f{word-spacing:103.968000px;}
._5{margin-left:-3.782880px;}
._7{margin-left:-2.421360px;}
._2{margin-left:-1.063800px;}
._3{width:1.374480px;}
._6{width:3.345120px;}
._4{width:54.072000px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
._14{width:843.984000px;}
._c{width:846.000000px;}
._f{width:890.640000px;}
._e{width:900.000000px;}
._1c{width:1138.320000px;}
._b{width:1156.320000px;}
._1b{width:1188.000000px;}
._1a{width:1214.640000px;}
._19{width:1224.000000px;}
._8{width:1268.640000px;}
._12{width:1278.000000px;}
._17{width:1286.640000px;}
._13{width:1299.600000px;}
._d{width:1304.640000px;}
._a{width:1308.240000px;}
._9{width:1318.320000px;}
._1e{width:1322.640000px;}
._1f{width:1326.960000px;}
._18{width:1332.065520px;}
._15{width:1342.800000px;}
._11{width:1350.000000px;}
._1d{width:1358.640000px;}
._10{width:1360.080000px;}
._16{width:1386.000000px;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(31,56,100);}
.fc7{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y30{bottom:-26.460000px;}
.y95{bottom:-25.740000px;}
.y5b{bottom:-9.540000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:6.480000px;}
.y2f{bottom:9.180000px;}
.y94{bottom:10.080000px;}
.y9{bottom:16.020000px;}
.y59{bottom:31.860000px;}
.y7e{bottom:42.300000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y2e{bottom:162.720000px;}
.y2d{bottom:167.940000px;}
.yd0{bottom:172.080000px;}
.y57{bottom:177.120000px;}
.y2c{bottom:191.700000px;}
.y56{bottom:200.880000px;}
.y7c{bottom:204.300000px;}
.y92{bottom:213.300000px;}
.y2b{bottom:215.460000px;}
.ye4{bottom:224.100000px;}
.y55{bottom:224.640000px;}
.y7b{bottom:228.060000px;}
.yc6{bottom:231.660000px;}
.y91{bottom:237.060000px;}
.y2a{bottom:239.400000px;}
.ye3{bottom:244.080000px;}
.yc5{bottom:251.640000px;}
.y7a{bottom:251.820000px;}
.y54{bottom:254.880000px;}
.yd6{bottom:255.780000px;}
.y90{bottom:260.820000px;}
.y29{bottom:263.160000px;}
.yb7{bottom:263.340000px;}
.y79{bottom:275.580000px;}
.yb6{bottom:282.960000px;}
.y28{bottom:286.920000px;}
.y8f{bottom:293.580000px;}
.y78{bottom:299.520000px;}
.yad{bottom:301.320000px;}
.ya6{bottom:301.860000px;}
.y53{bottom:302.580000px;}
.ybe{bottom:307.620000px;}
.y27{bottom:310.680000px;}
.y8e{bottom:317.520000px;}
.ya5{bottom:321.660000px;}
.y77{bottom:323.280000px;}
.yac{bottom:325.260000px;}
.y52{bottom:326.520000px;}
.ybd{bottom:331.380000px;}
.y26{bottom:334.620000px;}
.y8d{bottom:341.280000px;}
.yab{bottom:344.880000px;}
.y76{bottom:347.040000px;}
.y51{bottom:350.280000px;}
.ybc{bottom:351.360000px;}
.y25{bottom:358.380000px;}
.y8c{bottom:365.040000px;}
.y75{bottom:370.800000px;}
.y50{bottom:374.040000px;}
.y24{bottom:382.140000px;}
.y8b{bottom:388.800000px;}
.y74{bottom:394.740000px;}
.y4f{bottom:397.800000px;}
.ydc{bottom:401.400000px;}
.y23{bottom:405.900000px;}
.y8a{bottom:412.740000px;}
.y73{bottom:418.500000px;}
.ydb{bottom:421.380000px;}
.y4e{bottom:421.740000px;}
.y22{bottom:429.840000px;}
.ycf{bottom:434.160000px;}
.y89{bottom:436.500000px;}
.y72{bottom:442.260000px;}
.y4d{bottom:445.500000px;}
.y21{bottom:453.600000px;}
.yce{bottom:460.080000px;}
.y71{bottom:466.020000px;}
.y4c{bottom:469.260000px;}
.y20{bottom:477.360000px;}
.ycd{bottom:483.840000px;}
.y70{bottom:489.780000px;}
.y88{bottom:493.020000px;}
.y1f{bottom:501.120000px;}
.y4b{bottom:502.020000px;}
.ycc{bottom:507.600000px;}
.yd5{bottom:513.000000px;}
.yc4{bottom:516.240000px;}
.y87{bottom:516.780000px;}
.y6f{bottom:522.720000px;}
.y1e{bottom:525.060000px;}
.y4a{bottom:525.780000px;}
.ycb{bottom:527.580000px;}
.yd4{bottom:532.980000px;}
.ye2{bottom:533.160000px;}
.yc3{bottom:536.580000px;}
.y86{bottom:540.720000px;}
.y93{bottom:544.320000px;}
.ye7{bottom:545.040000px;}
.y6e{bottom:546.480000px;}
.y49{bottom:549.720000px;}
.y1d{bottom:555.120000px;}
.yb5{bottom:562.140000px;}
.yaa{bottom:568.980000px;}
.y6d{bottom:570.240000px;}
.y48{bottom:573.480000px;}
.y58{bottom:586.440000px;}
.yb4{bottom:588.240000px;}
.ya9{bottom:588.780000px;}
.y47{bottom:597.240000px;}
.ya4{bottom:597.420000px;}
.y5a{bottom:597.600000px;}
.y1c{bottom:603.000000px;}
.y7d{bottom:607.500000px;}
.yb3{bottom:612.180000px;}
.ybb{bottom:613.620000px;}
.y85{bottom:621.000000px;}
.ya3{bottom:623.520000px;}
.y1b{bottom:626.760000px;}
.y6c{bottom:626.940000px;}
.y46{bottom:630.000000px;}
.yba{bottom:633.600000px;}
.yb2{bottom:636.120000px;}
.y84{bottom:644.940000px;}
.ya2{bottom:647.280000px;}
.y6b{bottom:650.700000px;}
.yda{bottom:653.400000px;}
.y45{bottom:653.940000px;}
.yb1{bottom:655.920000px;}
.y1a{bottom:659.520000px;}
.y83{bottom:668.700000px;}
.ya1{bottom:671.040000px;}
.yd9{bottom:673.200000px;}
.y44{bottom:677.700000px;}
.y19{bottom:683.280000px;}
.y6a{bottom:683.460000px;}
.y82{bottom:692.460000px;}
.ya0{bottom:694.980000px;}
.y43{bottom:701.460000px;}
.y18{bottom:707.220000px;}
.y81{bottom:716.220000px;}
.y42{bottom:725.220000px;}
.y9f{bottom:727.920000px;}
.y17{bottom:730.980000px;}
.y69{bottom:731.160000px;}
.y41{bottom:749.160000px;}
.y9e{bottom:751.680000px;}
.y68{bottom:754.920000px;}
.y16{bottom:763.740000px;}
.y40{bottom:772.920000px;}
.y9d{bottom:775.440000px;}
.y67{bottom:787.680000px;}
.ye1{bottom:792.000000px;}
.yca{bottom:795.600000px;}
.y15{bottom:796.500000px;}
.y3f{bottom:796.680000px;}
.yc2{bottom:801.180000px;}
.yd3{bottom:803.160000px;}
.y9c{bottom:808.380000px;}
.y66{bottom:811.440000px;}
.ye0{bottom:818.100000px;}
.y14{bottom:820.260000px;}
.y3e{bottom:820.440000px;}
.yc1{bottom:820.980000px;}
.yc9{bottom:821.520000px;}
.yd2{bottom:829.260000px;}
.y9b{bottom:832.140000px;}
.yb0{bottom:834.480000px;}
.y65{bottom:835.380000px;}
.ydf{bottom:842.040000px;}
.y3d{bottom:844.380000px;}
.yc8{bottom:845.460000px;}
.y13{bottom:853.200000px;}
.y64{bottom:859.140000px;}
.y9a{bottom:864.900000px;}
.yc7{bottom:865.260000px;}
.yde{bottom:865.800000px;}
.y3c{bottom:868.140000px;}
.ye6{bottom:872.460000px;}
.yd1{bottom:873.000000px;}
.ya8{bottom:874.800000px;}
.y12{bottom:876.960000px;}
.yb9{bottom:881.460000px;}
.y63{bottom:882.900000px;}
.ydd{bottom:885.600000px;}
.y3b{bottom:891.900000px;}
.ye5{bottom:892.260000px;}
.ya7{bottom:894.600000px;}
.y99{bottom:897.660000px;}
.y11{bottom:900.720000px;}
.yb8{bottom:901.260000px;}
.y62{bottom:906.660000px;}
.yd8{bottom:914.400000px;}
.y3a{bottom:915.660000px;}
.y98{bottom:921.600000px;}
.y10{bottom:924.480000px;}
.y61{bottom:930.600000px;}
.yd7{bottom:934.200000px;}
.y39{bottom:939.600000px;}
.y60{bottom:954.360000px;}
.yf{bottom:957.240000px;}
.y38{bottom:963.360000px;}
.y5f{bottom:978.120000px;}
.y37{bottom:987.120000px;}
.ye{bottom:990.000000px;}
.y80{bottom:996.120000px;}
.y5e{bottom:1001.880000px;}
.y97{bottom:1010.880000px;}
.yd{bottom:1015.200000px;}
.y36{bottom:1019.880000px;}
.y5d{bottom:1034.640000px;}
.y35{bottom:1043.640000px;}
.yc{bottom:1058.040000px;}
.y5c{bottom:1058.580000px;}
.y34{bottom:1067.580000px;}
.y96{bottom:1082.340000px;}
.yc0{bottom:1088.820000px;}
.yaf{bottom:1089.000000px;}
.y33{bottom:1091.340000px;}
.yb{bottom:1108.973160px;}
.yae{bottom:1114.920000px;}
.y32{bottom:1115.100000px;}
.ya{bottom:1134.540000px;}
.ybf{bottom:1138.680000px;}
.y31{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.hc{height:25.920000px;}
.h10{height:26.820000px;}
.h5{height:32.758500px;}
.h3{height:38.759766px;}
.hf{height:47.988281px;}
.hd{height:48.600000px;}
.h9{height:48.656250px;}
.h12{height:51.679688px;}
.h11{height:52.417969px;}
.h8{height:58.921875px;}
.he{height:59.040000px;}
.ha{height:61.329023px;}
.h4{height:63.175781px;}
.hb{height:63.351562px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w6{width:270.540000px;}
.w3{width:297.721500px;}
.w4{width:387.361500px;}
.w5{width:399.420000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:51.120000px;}
.x10{left:55.980000px;}
.x16{left:79.920000px;}
.xe{left:83.520000px;}
.x13{left:120.420000px;}
.x3{left:127.624500px;}
.xd{left:136.260000px;}
.x1{left:152.640000px;}
.x8{left:165.060000px;}
.x6{left:283.140000px;}
.x4{left:297.180000px;}
.x1d{left:361.620000px;}
.x17{left:391.320000px;}
.x1b{left:399.780000px;}
.x29{left:401.760000px;}
.xf{left:406.260000px;}
.x28{left:413.280000px;}
.x27{left:418.320000px;}
.x26{left:420.120000px;}
.x21{left:429.300000px;}
.x1f{left:435.780000px;}
.xb{left:440.280000px;}
.x1e{left:443.700000px;}
.xc{left:447.480000px;}
.x1c{left:454.860000px;}
.x1a{left:457.020000px;}
.x2b{left:462.780000px;}
.x23{left:463.860000px;}
.x2a{left:465.120000px;}
.x5{left:466.740000px;}
.x19{left:469.620000px;}
.x18{left:472.320000px;}
.x22{left:474.120000px;}
.x25{left:478.620000px;}
.x11{left:523.620000px;}
.x12{left:531.000000px;}
.x2{left:532.624500px;}
.x7{left:534.069900px;}
.x15{left:540.000000px;}
.x9{left:577.980000px;}
.x24{left:649.260000px;}
.x20{left:675.180000px;}
.x2c{left:687.420000px;}
.xa{left:829.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.673920pt;}
.ls12{letter-spacing:-0.299520pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.149760pt;}
.ls7{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.207360pt;}
.ls1d{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.441600pt;}
.ls3{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:1176.960000pt;}
.ls1f{letter-spacing:1184.000000pt;}
.ws28{word-spacing:-20.816640pt;}
.ws29{word-spacing:-20.517120pt;}
.ws51{word-spacing:-18.048000pt;}
.ws50{word-spacing:-17.664000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws30{word-spacing:-3.840000pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws43{word-spacing:-2.944000pt;}
.ws3b{word-spacing:-2.688000pt;}
.ws22{word-spacing:-2.560000pt;}
.ws2b{word-spacing:-2.304000pt;}
.ws4f{word-spacing:-2.048000pt;}
.ws3a{word-spacing:-1.920000pt;}
.ws39{word-spacing:-1.664000pt;}
.ws15{word-spacing:-1.408000pt;}
.ws16{word-spacing:-1.280000pt;}
.ws18{word-spacing:-1.024000pt;}
.ws19{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.149760pt;}
.wsd{word-spacing:-0.138240pt;}
.ws23{word-spacing:-0.128000pt;}
.ws8{word-spacing:0.000000pt;}
.ws48{word-spacing:0.064000pt;}
.ws3{word-spacing:0.144000pt;}
.ws13{word-spacing:0.192000pt;}
.wsc{word-spacing:0.224640pt;}
.ws9{word-spacing:0.235520pt;}
.wsa{word-spacing:0.240000pt;}
.wse{word-spacing:0.256000pt;}
.ws37{word-spacing:0.299520pt;}
.ws36{word-spacing:0.374400pt;}
.ws38{word-spacing:0.512000pt;}
.ws10{word-spacing:0.640000pt;}
.ws12{word-spacing:0.896000pt;}
.ws21{word-spacing:1.280000pt;}
.wsf{word-spacing:1.920000pt;}
.ws2f{word-spacing:2.176000pt;}
.ws11{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.816000pt;}
.ws31{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.456000pt;}
.ws20{word-spacing:3.840000pt;}
.ws33{word-spacing:4.096000pt;}
.ws14{word-spacing:4.480000pt;}
.ws46{word-spacing:4.736000pt;}
.ws44{word-spacing:5.120000pt;}
.ws24{word-spacing:5.376000pt;}
.ws47{word-spacing:5.632000pt;}
.ws35{word-spacing:5.760000pt;}
.ws2c{word-spacing:6.400000pt;}
.ws41{word-spacing:6.656000pt;}
.ws32{word-spacing:7.040000pt;}
.ws1e{word-spacing:7.296000pt;}
.ws40{word-spacing:7.680000pt;}
.ws45{word-spacing:7.936000pt;}
.ws4b{word-spacing:9.856000pt;}
.ws4d{word-spacing:10.240000pt;}
.ws4e{word-spacing:10.496000pt;}
.ws3d{word-spacing:10.880000pt;}
.ws4c{word-spacing:11.136000pt;}
.ws49{word-spacing:12.160000pt;}
.ws4a{word-spacing:12.416000pt;}
.ws17{word-spacing:13.440000pt;}
.ws3f{word-spacing:13.696000pt;}
.ws1d{word-spacing:14.080000pt;}
.ws3c{word-spacing:14.336000pt;}
.ws26{word-spacing:15.360000pt;}
.ws25{word-spacing:15.616000pt;}
.ws2d{word-spacing:16.640000pt;}
.ws3e{word-spacing:18.560000pt;}
.ws42{word-spacing:24.960000pt;}
.ws27{word-spacing:31.360000pt;}
.ws2e{word-spacing:46.592000pt;}
.ws1c{word-spacing:47.616000pt;}
.ws1f{word-spacing:92.416000pt;}
._5{margin-left:-3.362560pt;}
._7{margin-left:-2.152320pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.221760pt;}
._6{width:2.973440pt;}
._4{width:48.064000pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
._14{width:750.208000pt;}
._c{width:752.000000pt;}
._f{width:791.680000pt;}
._e{width:800.000000pt;}
._1c{width:1011.840000pt;}
._b{width:1027.840000pt;}
._1b{width:1056.000000pt;}
._1a{width:1079.680000pt;}
._19{width:1088.000000pt;}
._8{width:1127.680000pt;}
._12{width:1136.000000pt;}
._17{width:1143.680000pt;}
._13{width:1155.200000pt;}
._d{width:1159.680000pt;}
._a{width:1162.880000pt;}
._9{width:1171.840000pt;}
._1e{width:1175.680000pt;}
._1f{width:1179.520000pt;}
._18{width:1184.058240pt;}
._15{width:1193.600000pt;}
._11{width:1200.000000pt;}
._1d{width:1207.680000pt;}
._10{width:1208.960000pt;}
._16{width:1232.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y30{bottom:-23.520000pt;}
.y95{bottom:-22.880000pt;}
.y5b{bottom:-8.480000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:5.760000pt;}
.y2f{bottom:8.160000pt;}
.y94{bottom:8.960000pt;}
.y9{bottom:14.240000pt;}
.y59{bottom:28.320000pt;}
.y7e{bottom:37.600000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y2e{bottom:144.640000pt;}
.y2d{bottom:149.280000pt;}
.yd0{bottom:152.960000pt;}
.y57{bottom:157.440000pt;}
.y2c{bottom:170.400000pt;}
.y56{bottom:178.560000pt;}
.y7c{bottom:181.600000pt;}
.y92{bottom:189.600000pt;}
.y2b{bottom:191.520000pt;}
.ye4{bottom:199.200000pt;}
.y55{bottom:199.680000pt;}
.y7b{bottom:202.720000pt;}
.yc6{bottom:205.920000pt;}
.y91{bottom:210.720000pt;}
.y2a{bottom:212.800000pt;}
.ye3{bottom:216.960000pt;}
.yc5{bottom:223.680000pt;}
.y7a{bottom:223.840000pt;}
.y54{bottom:226.560000pt;}
.yd6{bottom:227.360000pt;}
.y90{bottom:231.840000pt;}
.y29{bottom:233.920000pt;}
.yb7{bottom:234.080000pt;}
.y79{bottom:244.960000pt;}
.yb6{bottom:251.520000pt;}
.y28{bottom:255.040000pt;}
.y8f{bottom:260.960000pt;}
.y78{bottom:266.240000pt;}
.yad{bottom:267.840000pt;}
.ya6{bottom:268.320000pt;}
.y53{bottom:268.960000pt;}
.ybe{bottom:273.440000pt;}
.y27{bottom:276.160000pt;}
.y8e{bottom:282.240000pt;}
.ya5{bottom:285.920000pt;}
.y77{bottom:287.360000pt;}
.yac{bottom:289.120000pt;}
.y52{bottom:290.240000pt;}
.ybd{bottom:294.560000pt;}
.y26{bottom:297.440000pt;}
.y8d{bottom:303.360000pt;}
.yab{bottom:306.560000pt;}
.y76{bottom:308.480000pt;}
.y51{bottom:311.360000pt;}
.ybc{bottom:312.320000pt;}
.y25{bottom:318.560000pt;}
.y8c{bottom:324.480000pt;}
.y75{bottom:329.600000pt;}
.y50{bottom:332.480000pt;}
.y24{bottom:339.680000pt;}
.y8b{bottom:345.600000pt;}
.y74{bottom:350.880000pt;}
.y4f{bottom:353.600000pt;}
.ydc{bottom:356.800000pt;}
.y23{bottom:360.800000pt;}
.y8a{bottom:366.880000pt;}
.y73{bottom:372.000000pt;}
.ydb{bottom:374.560000pt;}
.y4e{bottom:374.880000pt;}
.y22{bottom:382.080000pt;}
.ycf{bottom:385.920000pt;}
.y89{bottom:388.000000pt;}
.y72{bottom:393.120000pt;}
.y4d{bottom:396.000000pt;}
.y21{bottom:403.200000pt;}
.yce{bottom:408.960000pt;}
.y71{bottom:414.240000pt;}
.y4c{bottom:417.120000pt;}
.y20{bottom:424.320000pt;}
.ycd{bottom:430.080000pt;}
.y70{bottom:435.360000pt;}
.y88{bottom:438.240000pt;}
.y1f{bottom:445.440000pt;}
.y4b{bottom:446.240000pt;}
.ycc{bottom:451.200000pt;}
.yd5{bottom:456.000000pt;}
.yc4{bottom:458.880000pt;}
.y87{bottom:459.360000pt;}
.y6f{bottom:464.640000pt;}
.y1e{bottom:466.720000pt;}
.y4a{bottom:467.360000pt;}
.ycb{bottom:468.960000pt;}
.yd4{bottom:473.760000pt;}
.ye2{bottom:473.920000pt;}
.yc3{bottom:476.960000pt;}
.y86{bottom:480.640000pt;}
.y93{bottom:483.840000pt;}
.ye7{bottom:484.480000pt;}
.y6e{bottom:485.760000pt;}
.y49{bottom:488.640000pt;}
.y1d{bottom:493.440000pt;}
.yb5{bottom:499.680000pt;}
.yaa{bottom:505.760000pt;}
.y6d{bottom:506.880000pt;}
.y48{bottom:509.760000pt;}
.y58{bottom:521.280000pt;}
.yb4{bottom:522.880000pt;}
.ya9{bottom:523.360000pt;}
.y47{bottom:530.880000pt;}
.ya4{bottom:531.040000pt;}
.y5a{bottom:531.200000pt;}
.y1c{bottom:536.000000pt;}
.y7d{bottom:540.000000pt;}
.yb3{bottom:544.160000pt;}
.ybb{bottom:545.440000pt;}
.y85{bottom:552.000000pt;}
.ya3{bottom:554.240000pt;}
.y1b{bottom:557.120000pt;}
.y6c{bottom:557.280000pt;}
.y46{bottom:560.000000pt;}
.yba{bottom:563.200000pt;}
.yb2{bottom:565.440000pt;}
.y84{bottom:573.280000pt;}
.ya2{bottom:575.360000pt;}
.y6b{bottom:578.400000pt;}
.yda{bottom:580.800000pt;}
.y45{bottom:581.280000pt;}
.yb1{bottom:583.040000pt;}
.y1a{bottom:586.240000pt;}
.y83{bottom:594.400000pt;}
.ya1{bottom:596.480000pt;}
.yd9{bottom:598.400000pt;}
.y44{bottom:602.400000pt;}
.y19{bottom:607.360000pt;}
.y6a{bottom:607.520000pt;}
.y82{bottom:615.520000pt;}
.ya0{bottom:617.760000pt;}
.y43{bottom:623.520000pt;}
.y18{bottom:628.640000pt;}
.y81{bottom:636.640000pt;}
.y42{bottom:644.640000pt;}
.y9f{bottom:647.040000pt;}
.y17{bottom:649.760000pt;}
.y69{bottom:649.920000pt;}
.y41{bottom:665.920000pt;}
.y9e{bottom:668.160000pt;}
.y68{bottom:671.040000pt;}
.y16{bottom:678.880000pt;}
.y40{bottom:687.040000pt;}
.y9d{bottom:689.280000pt;}
.y67{bottom:700.160000pt;}
.ye1{bottom:704.000000pt;}
.yca{bottom:707.200000pt;}
.y15{bottom:708.000000pt;}
.y3f{bottom:708.160000pt;}
.yc2{bottom:712.160000pt;}
.yd3{bottom:713.920000pt;}
.y9c{bottom:718.560000pt;}
.y66{bottom:721.280000pt;}
.ye0{bottom:727.200000pt;}
.y14{bottom:729.120000pt;}
.y3e{bottom:729.280000pt;}
.yc1{bottom:729.760000pt;}
.yc9{bottom:730.240000pt;}
.yd2{bottom:737.120000pt;}
.y9b{bottom:739.680000pt;}
.yb0{bottom:741.760000pt;}
.y65{bottom:742.560000pt;}
.ydf{bottom:748.480000pt;}
.y3d{bottom:750.560000pt;}
.yc8{bottom:751.520000pt;}
.y13{bottom:758.400000pt;}
.y64{bottom:763.680000pt;}
.y9a{bottom:768.800000pt;}
.yc7{bottom:769.120000pt;}
.yde{bottom:769.600000pt;}
.y3c{bottom:771.680000pt;}
.ye6{bottom:775.520000pt;}
.yd1{bottom:776.000000pt;}
.ya8{bottom:777.600000pt;}
.y12{bottom:779.520000pt;}
.yb9{bottom:783.520000pt;}
.y63{bottom:784.800000pt;}
.ydd{bottom:787.200000pt;}
.y3b{bottom:792.800000pt;}
.ye5{bottom:793.120000pt;}
.ya7{bottom:795.200000pt;}
.y99{bottom:797.920000pt;}
.y11{bottom:800.640000pt;}
.yb8{bottom:801.120000pt;}
.y62{bottom:805.920000pt;}
.yd8{bottom:812.800000pt;}
.y3a{bottom:813.920000pt;}
.y98{bottom:819.200000pt;}
.y10{bottom:821.760000pt;}
.y61{bottom:827.200000pt;}
.yd7{bottom:830.400000pt;}
.y39{bottom:835.200000pt;}
.y60{bottom:848.320000pt;}
.yf{bottom:850.880000pt;}
.y38{bottom:856.320000pt;}
.y5f{bottom:869.440000pt;}
.y37{bottom:877.440000pt;}
.ye{bottom:880.000000pt;}
.y80{bottom:885.440000pt;}
.y5e{bottom:890.560000pt;}
.y97{bottom:898.560000pt;}
.yd{bottom:902.400000pt;}
.y36{bottom:906.560000pt;}
.y5d{bottom:919.680000pt;}
.y35{bottom:927.680000pt;}
.yc{bottom:940.480000pt;}
.y5c{bottom:940.960000pt;}
.y34{bottom:948.960000pt;}
.y96{bottom:962.080000pt;}
.yc0{bottom:967.840000pt;}
.yaf{bottom:968.000000pt;}
.y33{bottom:970.080000pt;}
.yb{bottom:985.753920pt;}
.yae{bottom:991.040000pt;}
.y32{bottom:991.200000pt;}
.ya{bottom:1008.480000pt;}
.ybf{bottom:1012.160000pt;}
.y31{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.hc{height:23.040000pt;}
.h10{height:23.840000pt;}
.h5{height:29.118667pt;}
.h3{height:34.453125pt;}
.hf{height:42.656250pt;}
.hd{height:43.200000pt;}
.h9{height:43.250000pt;}
.h12{height:45.937500pt;}
.h11{height:46.593750pt;}
.h8{height:52.375000pt;}
.he{height:52.480000pt;}
.ha{height:54.514687pt;}
.h4{height:56.156250pt;}
.hb{height:56.312500pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w6{width:240.480000pt;}
.w3{width:264.641333pt;}
.w4{width:344.321333pt;}
.w5{width:355.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:45.440000pt;}
.x10{left:49.760000pt;}
.x16{left:71.040000pt;}
.xe{left:74.240000pt;}
.x13{left:107.040000pt;}
.x3{left:113.444000pt;}
.xd{left:121.120000pt;}
.x1{left:135.680000pt;}
.x8{left:146.720000pt;}
.x6{left:251.680000pt;}
.x4{left:264.160000pt;}
.x1d{left:321.440000pt;}
.x17{left:347.840000pt;}
.x1b{left:355.360000pt;}
.x29{left:357.120000pt;}
.xf{left:361.120000pt;}
.x28{left:367.360000pt;}
.x27{left:371.840000pt;}
.x26{left:373.440000pt;}
.x21{left:381.600000pt;}
.x1f{left:387.360000pt;}
.xb{left:391.360000pt;}
.x1e{left:394.400000pt;}
.xc{left:397.760000pt;}
.x1c{left:404.320000pt;}
.x1a{left:406.240000pt;}
.x2b{left:411.360000pt;}
.x23{left:412.320000pt;}
.x2a{left:413.440000pt;}
.x5{left:414.880000pt;}
.x19{left:417.440000pt;}
.x18{left:419.840000pt;}
.x22{left:421.440000pt;}
.x25{left:425.440000pt;}
.x11{left:465.440000pt;}
.x12{left:472.000000pt;}
.x2{left:473.444000pt;}
.x7{left:474.728800pt;}
.x15{left:480.000000pt;}
.x9{left:513.760000pt;}
.x24{left:577.120000pt;}
.x20{left:600.160000pt;}
.x2c{left:611.040000pt;}
.xa{left:736.960000pt;}
}




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