
    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_82d2b709d5dd48cd14b5e15d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7b2909e97f510fe1b0f93326.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_c97528339cc62af86555de18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063477;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5eb640ddbcc4dc6223815cf.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_ce03c5d7c58020e6c5ba8cca.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e42ad2a87cdb077a78d756c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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;}
.lsa{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.305280px;}
.lse{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.720000px;}
.ls3{letter-spacing:6.240000px;}
.lsf{letter-spacing:6.696000px;}
.ls10{letter-spacing:6.960000px;}
.ls9{letter-spacing:8.784000px;}
.lsc{letter-spacing:31.104000px;}
.ls14{letter-spacing:37.025280px;}
.lsb{letter-spacing:51.264000px;}
.ls1{letter-spacing:54.864000px;}
.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(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
.sc1{text-shadow:-0.015em 0 rgb(58,4,139),0 0.015em rgb(58,4,139),0.015em 0 rgb(58,4,139),0 -0.015em  rgb(58,4,139);}
.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(112,48,160);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(58,4,139);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.240000px;}
.ws4{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.wse{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.960000px;}
.ws0{word-spacing:-15.240000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-1.049760px;}
._7{width:1.537680px;}
._f{width:3.528000px;}
._14{width:4.608000px;}
._2{width:5.652000px;}
._1{width:6.660000px;}
._3{width:7.884000px;}
._11{width:9.216000px;}
._18{width:10.236000px;}
._4{width:11.508000px;}
._10{width:12.624000px;}
._12{width:14.112000px;}
._a{width:15.120000px;}
._e{width:16.560000px;}
._b{width:19.246320px;}
._c{width:20.376000px;}
._d{width:21.793680px;}
._6{width:23.755680px;}
._8{width:25.058160px;}
._13{width:26.256000px;}
._19{width:27.286320px;}
._1a{width:28.444560px;}
._1b{width:29.736000px;}
._16{width:31.157760px;}
._15{width:32.328000px;}
._17{width:33.438240px;}
._1d{width:36.312000px;}
._1c{width:37.416000px;}
._5{width:51.386400px;}
._0{width:500.760000px;}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(58,4,139);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y7d{bottom:-14.790000px;}
.y107{bottom:-14.775000px;}
.y76{bottom:-14.760000px;}
.y0{bottom:0.000000px;}
.y101{bottom:5.565000px;}
.y29{bottom:5.580000px;}
.y105{bottom:5.745000px;}
.y24{bottom:5.760000px;}
.y100{bottom:6.645000px;}
.y6b{bottom:6.660000px;}
.y104{bottom:6.825000px;}
.y25{bottom:6.840000px;}
.y70{bottom:8.100000px;}
.y5d{bottom:12.945000px;}
.y5f{bottom:13.125000px;}
.ye0{bottom:13.140000px;}
.y64{bottom:13.170000px;}
.y30{bottom:15.840000px;}
.yec{bottom:18.180000px;}
.y74{bottom:18.360000px;}
.yff{bottom:18.390000px;}
.y6f{bottom:18.405000px;}
.y4{bottom:25.740000px;}
.y39{bottom:25.920000px;}
.y2c{bottom:25.965000px;}
.y27{bottom:26.100000px;}
.y35{bottom:26.130000px;}
.y3a{bottom:36.180000px;}
.y2f{bottom:36.360000px;}
.y3{bottom:42.120000px;}
.y28{bottom:46.440000px;}
.y2d{bottom:46.485000px;}
.y2{bottom:52.200000px;}
.y136{bottom:133.560000px;}
.yde{bottom:135.720000px;}
.y65{bottom:136.620000px;}
.y130{bottom:141.300000px;}
.y10e{bottom:149.220000px;}
.y22{bottom:149.760000px;}
.y8e{bottom:152.640000px;}
.y97{bottom:154.080000px;}
.yaa{bottom:156.780000px;}
.yc3{bottom:159.120000px;}
.y10d{bottom:162.405000px;}
.y135{bottom:164.190000px;}
.y44{bottom:164.370000px;}
.ydd{bottom:166.350000px;}
.y12f{bottom:171.930000px;}
.y21{bottom:180.390000px;}
.y113{bottom:182.370000px;}
.y8d{bottom:183.270000px;}
.ye7{bottom:183.450000px;}
.y96{bottom:184.710000px;}
.y63{bottom:184.725000px;}
.y10c{bottom:185.625000px;}
.ya9{bottom:187.410000px;}
.yc2{bottom:189.750000px;}
.y134{bottom:194.790000px;}
.y43{bottom:194.970000px;}
.ydc{bottom:196.950000px;}
.ye6{bottom:197.685000px;}
.y12e{bottom:202.530000px;}
.y10b{bottom:209.025000px;}
.y20{bottom:210.990000px;}
.y112{bottom:212.970000px;}
.y116{bottom:213.510000px;}
.y8c{bottom:213.870000px;}
.y95{bottom:215.310000px;}
.ya8{bottom:216.750000px;}
.y62{bottom:219.465000px;}
.yc1{bottom:220.350000px;}
.y133{bottom:225.390000px;}
.y42{bottom:225.570000px;}
.ydb{bottom:227.550000px;}
.y10a{bottom:232.245000px;}
.ye5{bottom:232.425000px;}
.y12d{bottom:233.130000px;}
.y1f{bottom:241.590000px;}
.y111{bottom:243.570000px;}
.y115{bottom:244.110000px;}
.y8b{bottom:244.470000px;}
.y94{bottom:245.910000px;}
.ya7{bottom:247.170000px;}
.yc0{bottom:250.950000px;}
.y61{bottom:254.205000px;}
.y109{bottom:255.465000px;}
.y132{bottom:255.990000px;}
.y41{bottom:256.170000px;}
.yda{bottom:258.150000px;}
.y12c{bottom:263.730000px;}
.ye4{bottom:267.345000px;}
.y1e{bottom:272.190000px;}
.y110{bottom:274.170000px;}
.y114{bottom:274.710000px;}
.y8a{bottom:275.070000px;}
.y93{bottom:276.510000px;}
.ya6{bottom:277.770000px;}
.y108{bottom:278.685000px;}
.ybf{bottom:281.550000px;}
.yd9{bottom:286.050000px;}
.y131{bottom:286.590000px;}
.y40{bottom:286.770000px;}
.y60{bottom:289.125000px;}
.y12b{bottom:294.330000px;}
.y106{bottom:301.905000px;}
.ye3{bottom:302.085000px;}
.y1d{bottom:302.970000px;}
.y89{bottom:305.670000px;}
.y92{bottom:307.110000px;}
.y10f{bottom:307.290000px;}
.ya5{bottom:308.370000px;}
.ybe{bottom:312.150000px;}
.y3f{bottom:317.370000px;}
.y5e{bottom:323.865000px;}
.y12a{bottom:324.930000px;}
.y103{bottom:325.125000px;}
.y1c{bottom:335.190000px;}
.y88{bottom:336.270000px;}
.ye2{bottom:336.825000px;}
.y91{bottom:337.710000px;}
.ya4{bottom:338.970000px;}
.ybd{bottom:342.750000px;}
.y129{bottom:345.270000px;}
.yd8{bottom:347.970000px;}
.y3e{bottom:348.150000px;}
.y102{bottom:348.525000px;}
.y5c{bottom:360.225000px;}
.y87{bottom:366.870000px;}
.y1b{bottom:367.410000px;}
.y90{bottom:368.310000px;}
.ya3{bottom:369.570000px;}
.ye1{bottom:371.745000px;}
.ybc{bottom:373.350000px;}
.y128{bottom:376.050000px;}
.yd7{bottom:378.570000px;}
.y3d{bottom:378.750000px;}
.yfe{bottom:394.965000px;}
.y86{bottom:397.470000px;}
.y8f{bottom:398.910000px;}
.y1a{bottom:399.630000px;}
.y5b{bottom:399.810000px;}
.ya2{bottom:400.170000px;}
.ybb{bottom:403.950000px;}
.y127{bottom:406.695000px;}
.ydf{bottom:407.955000px;}
.y3c{bottom:408.135000px;}
.yd6{bottom:409.215000px;}
.yfd{bottom:418.215000px;}
.y3b{bottom:422.355000px;}
.y85{bottom:428.115000px;}
.y5a{bottom:429.555000px;}
.ya1{bottom:430.815000px;}
.y19{bottom:431.895000px;}
.yba{bottom:434.595000px;}
.y126{bottom:437.295000px;}
.yd5{bottom:439.815000px;}
.yfc{bottom:441.435000px;}
.y84{bottom:458.715000px;}
.y59{bottom:460.155000px;}
.ya0{bottom:461.415000px;}
.y38{bottom:463.935000px;}
.y18{bottom:464.115000px;}
.yfb{bottom:464.655000px;}
.yb9{bottom:465.375000px;}
.y125{bottom:467.895000px;}
.yd4{bottom:470.415000px;}
.y83{bottom:489.315000px;}
.y58{bottom:490.755000px;}
.y9f{bottom:492.015000px;}
.yb8{bottom:495.975000px;}
.y17{bottom:496.155000px;}
.y124{bottom:498.495000px;}
.yd3{bottom:501.015000px;}
.yfa{bottom:503.895000px;}
.y82{bottom:519.915000px;}
.y57{bottom:521.355000px;}
.y9e{bottom:522.615000px;}
.yb7{bottom:523.875000px;}
.y37{bottom:525.855000px;}
.y16{bottom:528.375000px;}
.y123{bottom:529.095000px;}
.yd2{bottom:531.615000px;}
.yf9{bottom:534.495000px;}
.y81{bottom:550.695000px;}
.y56{bottom:551.955000px;}
.yb6{bottom:552.315000px;}
.y9d{bottom:553.215000px;}
.y122{bottom:559.695000px;}
.y15{bottom:560.595000px;}
.yd1{bottom:562.215000px;}
.yf8{bottom:565.095000px;}
.y36{bottom:567.435000px;}
.y80{bottom:581.295000px;}
.y55{bottom:582.555000px;}
.yb5{bottom:584.175000px;}
.y9c{bottom:585.795000px;}
.y121{bottom:590.295000px;}
.y14{bottom:592.815000px;}
.yf7{bottom:594.435000px;}
.yf6{bottom:608.655000px;}
.y7f{bottom:611.895000px;}
.y54{bottom:613.335000px;}
.yb4{bottom:614.775000px;}
.y9b{bottom:616.215000px;}
.y120{bottom:620.895000px;}
.yd0{bottom:623.415000px;}
.y13{bottom:625.035000px;}
.y34{bottom:629.355000px;}
.yf5{bottom:631.875000px;}
.y7e{bottom:639.615000px;}
.y53{bottom:643.935000px;}
.yb3{bottom:645.375000px;}
.y9a{bottom:645.555000px;}
.y11f{bottom:651.525000px;}
.y7c{bottom:652.965000px;}
.ycf{bottom:654.045000px;}
.yf4{bottom:655.125000px;}
.y12{bottom:657.285000px;}
.y33{bottom:670.965000px;}
.y52{bottom:674.565000px;}
.y99{bottom:676.005000px;}
.y7b{bottom:676.185000px;}
.yf3{bottom:678.345000px;}
.y11e{bottom:682.125000px;}
.yce{bottom:684.645000px;}
.y11{bottom:689.325000px;}
.y7a{bottom:699.405000px;}
.yf2{bottom:701.745000px;}
.y51{bottom:705.165000px;}
.y98{bottom:705.345000px;}
.yb2{bottom:706.605000px;}
.y32{bottom:712.545000px;}
.y11d{bottom:712.725000px;}
.ycd{bottom:715.245000px;}
.y10{bottom:719.925000px;}
.y79{bottom:722.625000px;}
.yf1{bottom:724.965000px;}
.y50{bottom:735.765000px;}
.yb1{bottom:737.205000px;}
.y11c{bottom:743.325000px;}
.y78{bottom:745.845000px;}
.ycc{bottom:746.025000px;}
.yf0{bottom:748.185000px;}
.yf{bottom:750.525000px;}
.y31{bottom:754.125000px;}
.y4f{bottom:766.365000px;}
.yb0{bottom:767.805000px;}
.y77{bottom:769.065000px;}
.yef{bottom:771.405000px;}
.y11b{bottom:773.925000px;}
.ycb{bottom:776.625000px;}
.ye{bottom:781.305000px;}
.y75{bottom:792.465000px;}
.yee{bottom:794.625000px;}
.y4e{bottom:796.965000px;}
.yaf{bottom:798.405000px;}
.y11a{bottom:804.525000px;}
.yca{bottom:807.225000px;}
.yd{bottom:811.905000px;}
.y73{bottom:815.685000px;}
.y2e{bottom:816.045000px;}
.yed{bottom:817.845000px;}
.y4d{bottom:827.565000px;}
.yae{bottom:829.005000px;}
.y119{bottom:835.305000px;}
.yc9{bottom:837.825000px;}
.y72{bottom:838.905000px;}
.yeb{bottom:841.245000px;}
.yc{bottom:842.505000px;}
.y4c{bottom:858.165000px;}
.yad{bottom:859.605000px;}
.y71{bottom:862.125000px;}
.yea{bottom:864.465000px;}
.yc8{bottom:868.425000px;}
.yb{bottom:873.105000px;}
.y2b{bottom:878.145000px;}
.y6e{bottom:885.345000px;}
.ye9{bottom:887.685000px;}
.y4b{bottom:888.765000px;}
.yac{bottom:890.205000px;}
.y118{bottom:892.545000px;}
.yc7{bottom:899.070000px;}
.ya{bottom:903.750000px;}
.y6d{bottom:908.610000px;}
.ye8{bottom:910.950000px;}
.y4a{bottom:919.410000px;}
.yab{bottom:919.590000px;}
.y117{bottom:920.670000px;}
.yc6{bottom:929.670000px;}
.y6c{bottom:932.010000px;}
.y9{bottom:934.350000px;}
.y2a{bottom:940.110000px;}
.y49{bottom:950.010000px;}
.y6a{bottom:955.230000px;}
.yc5{bottom:960.270000px;}
.y8{bottom:967.470000px;}
.y48{bottom:980.610000px;}
.yc4{bottom:990.870000px;}
.y69{bottom:994.290000px;}
.y26{bottom:1002.030000px;}
.y7{bottom:1003.290000px;}
.y47{bottom:1011.210000px;}
.y68{bottom:1024.890000px;}
.y6{bottom:1038.930000px;}
.y46{bottom:1041.990000px;}
.y67{bottom:1055.490000px;}
.y23{bottom:1063.950000px;}
.y5{bottom:1070.970000px;}
.y45{bottom:1072.590000px;}
.y66{bottom:1074.930000px;}
.y1{bottom:1087.350000px;}
.h8{height:22.485000px;}
.h17{height:22.500000px;}
.h1e{height:22.521000px;}
.h16{height:22.522500px;}
.h1c{height:22.530000px;}
.h3{height:31.587891px;}
.h12{height:34.005000px;}
.h1b{height:34.041000px;}
.h14{height:34.056000px;}
.h1a{height:34.185000px;}
.hf{height:40.665000px;}
.he{height:40.845000px;}
.hc{height:40.860000px;}
.hd{height:40.890000px;}
.h18{height:45.720000px;}
.h1d{height:45.741000px;}
.h15{height:45.742500px;}
.h13{height:52.435898px;}
.h10{height:58.121719px;}
.h9{height:61.185000px;}
.hb{height:61.200000px;}
.ha{height:61.222500px;}
.h2{height:61.423863px;}
.h11{height:62.211094px;}
.h6{height:63.175781px;}
.h19{height:69.086250px;}
.h5{height:73.915664px;}
.h4{height:74.004654px;}
.h7{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:56.145000px;}
.we{width:68.029500px;}
.wc{width:68.389500px;}
.wa{width:83.325000px;}
.wf{width:100.101000px;}
.w10{width:100.440000px;}
.w11{width:105.696000px;}
.w13{width:110.181000px;}
.w6{width:120.981000px;}
.w12{width:127.605000px;}
.wb{width:129.621000px;}
.w14{width:140.040000px;}
.w15{width:145.296000px;}
.w5{width:167.430000px;}
.w9{width:201.990000px;}
.w7{width:230.599500px;}
.w3{width:245.535000px;}
.w4{width:246.315000px;}
.w8{width:416.415000px;}
.wd{width:545.490000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:4.845000px;}
.x30{left:5.925000px;}
.x1d{left:7.725000px;}
.x42{left:9.000000px;}
.x24{left:10.789500px;}
.xd{left:12.945000px;}
.xe{left:15.285000px;}
.xb{left:16.905000px;}
.x2f{left:18.883500px;}
.x31{left:21.403500px;}
.xc{left:23.025000px;}
.x2e{left:25.920000px;}
.x2d{left:28.963500px;}
.x32{left:31.140000px;}
.x21{left:34.363500px;}
.x29{left:37.605000px;}
.x40{left:39.405000px;}
.x2a{left:40.500000px;}
.x43{left:42.480000px;}
.x41{left:45.000000px;}
.x33{left:48.060000px;}
.x44{left:49.845000px;}
.x2b{left:51.465000px;}
.x35{left:52.905000px;}
.x2c{left:55.290000px;}
.x45{left:58.485000px;}
.x14{left:60.510000px;}
.x34{left:61.545000px;}
.x1f{left:64.785000px;}
.x4{left:67.680000px;}
.x3c{left:70.020000px;}
.x12{left:82.290000px;}
.x3f{left:85.890000px;}
.xa{left:87.150000px;}
.x16{left:89.803500px;}
.x5{left:94.680000px;}
.x1b{left:100.980000px;}
.x15{left:110.566500px;}
.x39{left:115.956000px;}
.x37{left:120.816000px;}
.x47{left:123.510000px;}
.x22{left:132.330000px;}
.x1a{left:137.503500px;}
.x23{left:138.646500px;}
.x3{left:140.256000px;}
.x38{left:142.236000px;}
.x48{left:147.636000px;}
.x3e{left:154.963500px;}
.x6{left:171.405000px;}
.x19{left:179.443500px;}
.x3b{left:180.703500px;}
.x3a{left:190.288500px;}
.x36{left:205.050000px;}
.x18{left:208.290000px;}
.x8{left:227.925000px;}
.x1{left:257.790000px;}
.x25{left:307.875000px;}
.x46{left:330.555000px;}
.x17{left:342.075000px;}
.x26{left:408.675000px;}
.xf{left:419.655000px;}
.x20{left:421.995000px;}
.x2{left:428.655000px;}
.x10{left:445.755000px;}
.x11{left:467.175000px;}
.x9{left:473.835000px;}
.x3d{left:482.835000px;}
.x27{left:514.740000px;}
.x1c{left:544.800000px;}
.x1e{left:628.860000px;}
.x13{left:636.780000px;}
.x28{left:642.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.271360pt;}
.lse{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls3{letter-spacing:5.546667pt;}
.lsf{letter-spacing:5.952000pt;}
.ls10{letter-spacing:6.186667pt;}
.ls9{letter-spacing:7.808000pt;}
.lsc{letter-spacing:27.648000pt;}
.ls14{letter-spacing:32.911360pt;}
.lsb{letter-spacing:45.568000pt;}
.ls1{letter-spacing:48.768000pt;}
.ws7{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.186667pt;}
.ws0{word-spacing:-13.546667pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-0.933120pt;}
._7{width:1.366827pt;}
._f{width:3.136000pt;}
._14{width:4.096000pt;}
._2{width:5.024000pt;}
._1{width:5.920000pt;}
._3{width:7.008000pt;}
._11{width:8.192000pt;}
._18{width:9.098667pt;}
._4{width:10.229333pt;}
._10{width:11.221333pt;}
._12{width:12.544000pt;}
._a{width:13.440000pt;}
._e{width:14.720000pt;}
._b{width:17.107840pt;}
._c{width:18.112000pt;}
._d{width:19.372160pt;}
._6{width:21.116160pt;}
._8{width:22.273920pt;}
._13{width:23.338667pt;}
._19{width:24.254507pt;}
._1a{width:25.284053pt;}
._1b{width:26.432000pt;}
._16{width:27.695787pt;}
._15{width:28.736000pt;}
._17{width:29.722880pt;}
._1d{width:32.277333pt;}
._1c{width:33.258667pt;}
._5{width:45.676800pt;}
._0{width:445.120000pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y7d{bottom:-13.146667pt;}
.y107{bottom:-13.133333pt;}
.y76{bottom:-13.120000pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:4.946667pt;}
.y29{bottom:4.960000pt;}
.y105{bottom:5.106667pt;}
.y24{bottom:5.120000pt;}
.y100{bottom:5.906667pt;}
.y6b{bottom:5.920000pt;}
.y104{bottom:6.066667pt;}
.y25{bottom:6.080000pt;}
.y70{bottom:7.200000pt;}
.y5d{bottom:11.506667pt;}
.y5f{bottom:11.666667pt;}
.ye0{bottom:11.680000pt;}
.y64{bottom:11.706667pt;}
.y30{bottom:14.080000pt;}
.yec{bottom:16.160000pt;}
.y74{bottom:16.320000pt;}
.yff{bottom:16.346667pt;}
.y6f{bottom:16.360000pt;}
.y4{bottom:22.880000pt;}
.y39{bottom:23.040000pt;}
.y2c{bottom:23.080000pt;}
.y27{bottom:23.200000pt;}
.y35{bottom:23.226667pt;}
.y3a{bottom:32.160000pt;}
.y2f{bottom:32.320000pt;}
.y3{bottom:37.440000pt;}
.y28{bottom:41.280000pt;}
.y2d{bottom:41.320000pt;}
.y2{bottom:46.400000pt;}
.y136{bottom:118.720000pt;}
.yde{bottom:120.640000pt;}
.y65{bottom:121.440000pt;}
.y130{bottom:125.600000pt;}
.y10e{bottom:132.640000pt;}
.y22{bottom:133.120000pt;}
.y8e{bottom:135.680000pt;}
.y97{bottom:136.960000pt;}
.yaa{bottom:139.360000pt;}
.yc3{bottom:141.440000pt;}
.y10d{bottom:144.360000pt;}
.y135{bottom:145.946667pt;}
.y44{bottom:146.106667pt;}
.ydd{bottom:147.866667pt;}
.y12f{bottom:152.826667pt;}
.y21{bottom:160.346667pt;}
.y113{bottom:162.106667pt;}
.y8d{bottom:162.906667pt;}
.ye7{bottom:163.066667pt;}
.y96{bottom:164.186667pt;}
.y63{bottom:164.200000pt;}
.y10c{bottom:165.000000pt;}
.ya9{bottom:166.586667pt;}
.yc2{bottom:168.666667pt;}
.y134{bottom:173.146667pt;}
.y43{bottom:173.306667pt;}
.ydc{bottom:175.066667pt;}
.ye6{bottom:175.720000pt;}
.y12e{bottom:180.026667pt;}
.y10b{bottom:185.800000pt;}
.y20{bottom:187.546667pt;}
.y112{bottom:189.306667pt;}
.y116{bottom:189.786667pt;}
.y8c{bottom:190.106667pt;}
.y95{bottom:191.386667pt;}
.ya8{bottom:192.666667pt;}
.y62{bottom:195.080000pt;}
.yc1{bottom:195.866667pt;}
.y133{bottom:200.346667pt;}
.y42{bottom:200.506667pt;}
.ydb{bottom:202.266667pt;}
.y10a{bottom:206.440000pt;}
.ye5{bottom:206.600000pt;}
.y12d{bottom:207.226667pt;}
.y1f{bottom:214.746667pt;}
.y111{bottom:216.506667pt;}
.y115{bottom:216.986667pt;}
.y8b{bottom:217.306667pt;}
.y94{bottom:218.586667pt;}
.ya7{bottom:219.706667pt;}
.yc0{bottom:223.066667pt;}
.y61{bottom:225.960000pt;}
.y109{bottom:227.080000pt;}
.y132{bottom:227.546667pt;}
.y41{bottom:227.706667pt;}
.yda{bottom:229.466667pt;}
.y12c{bottom:234.426667pt;}
.ye4{bottom:237.640000pt;}
.y1e{bottom:241.946667pt;}
.y110{bottom:243.706667pt;}
.y114{bottom:244.186667pt;}
.y8a{bottom:244.506667pt;}
.y93{bottom:245.786667pt;}
.ya6{bottom:246.906667pt;}
.y108{bottom:247.720000pt;}
.ybf{bottom:250.266667pt;}
.yd9{bottom:254.266667pt;}
.y131{bottom:254.746667pt;}
.y40{bottom:254.906667pt;}
.y60{bottom:257.000000pt;}
.y12b{bottom:261.626667pt;}
.y106{bottom:268.360000pt;}
.ye3{bottom:268.520000pt;}
.y1d{bottom:269.306667pt;}
.y89{bottom:271.706667pt;}
.y92{bottom:272.986667pt;}
.y10f{bottom:273.146667pt;}
.ya5{bottom:274.106667pt;}
.ybe{bottom:277.466667pt;}
.y3f{bottom:282.106667pt;}
.y5e{bottom:287.880000pt;}
.y12a{bottom:288.826667pt;}
.y103{bottom:289.000000pt;}
.y1c{bottom:297.946667pt;}
.y88{bottom:298.906667pt;}
.ye2{bottom:299.400000pt;}
.y91{bottom:300.186667pt;}
.ya4{bottom:301.306667pt;}
.ybd{bottom:304.666667pt;}
.y129{bottom:306.906667pt;}
.yd8{bottom:309.306667pt;}
.y3e{bottom:309.466667pt;}
.y102{bottom:309.800000pt;}
.y5c{bottom:320.200000pt;}
.y87{bottom:326.106667pt;}
.y1b{bottom:326.586667pt;}
.y90{bottom:327.386667pt;}
.ya3{bottom:328.506667pt;}
.ye1{bottom:330.440000pt;}
.ybc{bottom:331.866667pt;}
.y128{bottom:334.266667pt;}
.yd7{bottom:336.506667pt;}
.y3d{bottom:336.666667pt;}
.yfe{bottom:351.080000pt;}
.y86{bottom:353.306667pt;}
.y8f{bottom:354.586667pt;}
.y1a{bottom:355.226667pt;}
.y5b{bottom:355.386667pt;}
.ya2{bottom:355.706667pt;}
.ybb{bottom:359.066667pt;}
.y127{bottom:361.506667pt;}
.ydf{bottom:362.626667pt;}
.y3c{bottom:362.786667pt;}
.yd6{bottom:363.746667pt;}
.yfd{bottom:371.746667pt;}
.y3b{bottom:375.426667pt;}
.y85{bottom:380.546667pt;}
.y5a{bottom:381.826667pt;}
.ya1{bottom:382.946667pt;}
.y19{bottom:383.906667pt;}
.yba{bottom:386.306667pt;}
.y126{bottom:388.706667pt;}
.yd5{bottom:390.946667pt;}
.yfc{bottom:392.386667pt;}
.y84{bottom:407.746667pt;}
.y59{bottom:409.026667pt;}
.ya0{bottom:410.146667pt;}
.y38{bottom:412.386667pt;}
.y18{bottom:412.546667pt;}
.yfb{bottom:413.026667pt;}
.yb9{bottom:413.666667pt;}
.y125{bottom:415.906667pt;}
.yd4{bottom:418.146667pt;}
.y83{bottom:434.946667pt;}
.y58{bottom:436.226667pt;}
.y9f{bottom:437.346667pt;}
.yb8{bottom:440.866667pt;}
.y17{bottom:441.026667pt;}
.y124{bottom:443.106667pt;}
.yd3{bottom:445.346667pt;}
.yfa{bottom:447.906667pt;}
.y82{bottom:462.146667pt;}
.y57{bottom:463.426667pt;}
.y9e{bottom:464.546667pt;}
.yb7{bottom:465.666667pt;}
.y37{bottom:467.426667pt;}
.y16{bottom:469.666667pt;}
.y123{bottom:470.306667pt;}
.yd2{bottom:472.546667pt;}
.yf9{bottom:475.106667pt;}
.y81{bottom:489.506667pt;}
.y56{bottom:490.626667pt;}
.yb6{bottom:490.946667pt;}
.y9d{bottom:491.746667pt;}
.y122{bottom:497.506667pt;}
.y15{bottom:498.306667pt;}
.yd1{bottom:499.746667pt;}
.yf8{bottom:502.306667pt;}
.y36{bottom:504.386667pt;}
.y80{bottom:516.706667pt;}
.y55{bottom:517.826667pt;}
.yb5{bottom:519.266667pt;}
.y9c{bottom:520.706667pt;}
.y121{bottom:524.706667pt;}
.y14{bottom:526.946667pt;}
.yf7{bottom:528.386667pt;}
.yf6{bottom:541.026667pt;}
.y7f{bottom:543.906667pt;}
.y54{bottom:545.186667pt;}
.yb4{bottom:546.466667pt;}
.y9b{bottom:547.746667pt;}
.y120{bottom:551.906667pt;}
.yd0{bottom:554.146667pt;}
.y13{bottom:555.586667pt;}
.y34{bottom:559.426667pt;}
.yf5{bottom:561.666667pt;}
.y7e{bottom:568.546667pt;}
.y53{bottom:572.386667pt;}
.yb3{bottom:573.666667pt;}
.y9a{bottom:573.826667pt;}
.y11f{bottom:579.133333pt;}
.y7c{bottom:580.413333pt;}
.ycf{bottom:581.373333pt;}
.yf4{bottom:582.333333pt;}
.y12{bottom:584.253333pt;}
.y33{bottom:596.413333pt;}
.y52{bottom:599.613333pt;}
.y99{bottom:600.893333pt;}
.y7b{bottom:601.053333pt;}
.yf3{bottom:602.973333pt;}
.y11e{bottom:606.333333pt;}
.yce{bottom:608.573333pt;}
.y11{bottom:612.733333pt;}
.y7a{bottom:621.693333pt;}
.yf2{bottom:623.773333pt;}
.y51{bottom:626.813333pt;}
.y98{bottom:626.973333pt;}
.yb2{bottom:628.093333pt;}
.y32{bottom:633.373333pt;}
.y11d{bottom:633.533333pt;}
.ycd{bottom:635.773333pt;}
.y10{bottom:639.933333pt;}
.y79{bottom:642.333333pt;}
.yf1{bottom:644.413333pt;}
.y50{bottom:654.013333pt;}
.yb1{bottom:655.293333pt;}
.y11c{bottom:660.733333pt;}
.y78{bottom:662.973333pt;}
.ycc{bottom:663.133333pt;}
.yf0{bottom:665.053333pt;}
.yf{bottom:667.133333pt;}
.y31{bottom:670.333333pt;}
.y4f{bottom:681.213333pt;}
.yb0{bottom:682.493333pt;}
.y77{bottom:683.613333pt;}
.yef{bottom:685.693333pt;}
.y11b{bottom:687.933333pt;}
.ycb{bottom:690.333333pt;}
.ye{bottom:694.493333pt;}
.y75{bottom:704.413333pt;}
.yee{bottom:706.333333pt;}
.y4e{bottom:708.413333pt;}
.yaf{bottom:709.693333pt;}
.y11a{bottom:715.133333pt;}
.yca{bottom:717.533333pt;}
.yd{bottom:721.693333pt;}
.y73{bottom:725.053333pt;}
.y2e{bottom:725.373333pt;}
.yed{bottom:726.973333pt;}
.y4d{bottom:735.613333pt;}
.yae{bottom:736.893333pt;}
.y119{bottom:742.493333pt;}
.yc9{bottom:744.733333pt;}
.y72{bottom:745.693333pt;}
.yeb{bottom:747.773333pt;}
.yc{bottom:748.893333pt;}
.y4c{bottom:762.813333pt;}
.yad{bottom:764.093333pt;}
.y71{bottom:766.333333pt;}
.yea{bottom:768.413333pt;}
.yc8{bottom:771.933333pt;}
.yb{bottom:776.093333pt;}
.y2b{bottom:780.573333pt;}
.y6e{bottom:786.973333pt;}
.ye9{bottom:789.053333pt;}
.y4b{bottom:790.013333pt;}
.yac{bottom:791.293333pt;}
.y118{bottom:793.373333pt;}
.yc7{bottom:799.173333pt;}
.ya{bottom:803.333333pt;}
.y6d{bottom:807.653333pt;}
.ye8{bottom:809.733333pt;}
.y4a{bottom:817.253333pt;}
.yab{bottom:817.413333pt;}
.y117{bottom:818.373333pt;}
.yc6{bottom:826.373333pt;}
.y6c{bottom:828.453333pt;}
.y9{bottom:830.533333pt;}
.y2a{bottom:835.653333pt;}
.y49{bottom:844.453333pt;}
.y6a{bottom:849.093333pt;}
.yc5{bottom:853.573333pt;}
.y8{bottom:859.973333pt;}
.y48{bottom:871.653333pt;}
.yc4{bottom:880.773333pt;}
.y69{bottom:883.813333pt;}
.y26{bottom:890.693333pt;}
.y7{bottom:891.813333pt;}
.y47{bottom:898.853333pt;}
.y68{bottom:911.013333pt;}
.y6{bottom:923.493333pt;}
.y46{bottom:926.213333pt;}
.y67{bottom:938.213333pt;}
.y23{bottom:945.733333pt;}
.y5{bottom:951.973333pt;}
.y45{bottom:953.413333pt;}
.y66{bottom:955.493333pt;}
.y1{bottom:966.533333pt;}
.h8{height:19.986667pt;}
.h17{height:20.000000pt;}
.h1e{height:20.018667pt;}
.h16{height:20.020000pt;}
.h1c{height:20.026667pt;}
.h3{height:28.078125pt;}
.h12{height:30.226667pt;}
.h1b{height:30.258667pt;}
.h14{height:30.272000pt;}
.h1a{height:30.386667pt;}
.hf{height:36.146667pt;}
.he{height:36.306667pt;}
.hc{height:36.320000pt;}
.hd{height:36.346667pt;}
.h18{height:40.640000pt;}
.h1d{height:40.658667pt;}
.h15{height:40.660000pt;}
.h13{height:46.609688pt;}
.h10{height:51.663750pt;}
.h9{height:54.386667pt;}
.hb{height:54.400000pt;}
.ha{height:54.420000pt;}
.h2{height:54.598989pt;}
.h11{height:55.298750pt;}
.h6{height:56.156250pt;}
.h19{height:61.410000pt;}
.h5{height:65.702812pt;}
.h4{height:65.781915pt;}
.h7{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:49.906667pt;}
.we{width:60.470667pt;}
.wc{width:60.790667pt;}
.wa{width:74.066667pt;}
.wf{width:88.978667pt;}
.w10{width:89.280000pt;}
.w11{width:93.952000pt;}
.w13{width:97.938667pt;}
.w6{width:107.538667pt;}
.w12{width:113.426667pt;}
.wb{width:115.218667pt;}
.w14{width:124.480000pt;}
.w15{width:129.152000pt;}
.w5{width:148.826667pt;}
.w9{width:179.546667pt;}
.w7{width:204.977333pt;}
.w3{width:218.253333pt;}
.w4{width:218.946667pt;}
.w8{width:370.146667pt;}
.wd{width:484.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.306667pt;}
.x30{left:5.266667pt;}
.x1d{left:6.866667pt;}
.x42{left:8.000000pt;}
.x24{left:9.590667pt;}
.xd{left:11.506667pt;}
.xe{left:13.586667pt;}
.xb{left:15.026667pt;}
.x2f{left:16.785333pt;}
.x31{left:19.025333pt;}
.xc{left:20.466667pt;}
.x2e{left:23.040000pt;}
.x2d{left:25.745333pt;}
.x32{left:27.680000pt;}
.x21{left:30.545333pt;}
.x29{left:33.426667pt;}
.x40{left:35.026667pt;}
.x2a{left:36.000000pt;}
.x43{left:37.760000pt;}
.x41{left:40.000000pt;}
.x33{left:42.720000pt;}
.x44{left:44.306667pt;}
.x2b{left:45.746667pt;}
.x35{left:47.026667pt;}
.x2c{left:49.146667pt;}
.x45{left:51.986667pt;}
.x14{left:53.786667pt;}
.x34{left:54.706667pt;}
.x1f{left:57.586667pt;}
.x4{left:60.160000pt;}
.x3c{left:62.240000pt;}
.x12{left:73.146667pt;}
.x3f{left:76.346667pt;}
.xa{left:77.466667pt;}
.x16{left:79.825333pt;}
.x5{left:84.160000pt;}
.x1b{left:89.760000pt;}
.x15{left:98.281333pt;}
.x39{left:103.072000pt;}
.x37{left:107.392000pt;}
.x47{left:109.786667pt;}
.x22{left:117.626667pt;}
.x1a{left:122.225333pt;}
.x23{left:123.241333pt;}
.x3{left:124.672000pt;}
.x38{left:126.432000pt;}
.x48{left:131.232000pt;}
.x3e{left:137.745333pt;}
.x6{left:152.360000pt;}
.x19{left:159.505333pt;}
.x3b{left:160.625333pt;}
.x3a{left:169.145333pt;}
.x36{left:182.266667pt;}
.x18{left:185.146667pt;}
.x8{left:202.600000pt;}
.x1{left:229.146667pt;}
.x25{left:273.666667pt;}
.x46{left:293.826667pt;}
.x17{left:304.066667pt;}
.x26{left:363.266667pt;}
.xf{left:373.026667pt;}
.x20{left:375.106667pt;}
.x2{left:381.026667pt;}
.x10{left:396.226667pt;}
.x11{left:415.266667pt;}
.x9{left:421.186667pt;}
.x3d{left:429.186667pt;}
.x27{left:457.546667pt;}
.x1c{left:484.266667pt;}
.x1e{left:558.986667pt;}
.x13{left:566.026667pt;}
.x28{left:571.306667pt;}
}




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