
    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_aa6c5b697e946a085ad56d0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_05bc1774b17e86bed5fea9e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_dca7ecd663ff268beeb8644d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_91d6e085e4b6a1c72501e01c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_e52141f122bfb185f9ff021c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_f29ed3db80d02132b09887ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_439486f321c0a7479024c809.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_03187479db997d565fa2eea2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_54af51032d3049c32594a719.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_d5e34ae0114b89e06e0ff7e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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:ffd;src:url('chunks/assets/font_8678cf388a96fc57f3bae6f7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752000;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.lsb{letter-spacing:-0.306600px;}
.lsd{letter-spacing:-0.231600px;}
.lsc{letter-spacing:-0.181200px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.108720px;}
.ls0{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.186600px;}
.ls15{letter-spacing:0.191400px;}
.ls12{letter-spacing:0.201600px;}
.lsf{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.287280px;}
.ls1{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.488400px;}
.ls14{letter-spacing:0.738000px;}
.ls5{letter-spacing:43.320000px;}
.ls6{letter-spacing:44.064000px;}
.ls8{letter-spacing:44.784000px;}
.ls7{letter-spacing:63.480000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-33.533520px;}
.ws7{word-spacing:-26.658720px;}
.ws2{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws6{word-spacing:-14.616000px;}
.ws9{word-spacing:-12.619680px;}
.wsa{word-spacing:-12.317880px;}
.ws3{word-spacing:-12.131280px;}
.ws8{word-spacing:-11.899680px;}
.wsf{word-spacing:-9.792720px;}
.wsd{word-spacing:-9.215280px;}
.wse{word-spacing:-8.668680px;}
.wsc{word-spacing:-8.477280px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-25.920480px;}
._4{margin-left:-4.056000px;}
._0{margin-left:-1.446000px;}
._2{width:1.364400px;}
._1{width:2.716800px;}
._10{width:4.680000px;}
._f{width:5.832000px;}
._e{width:6.984000px;}
._12{width:15.815280px;}
._d{width:16.854000px;}
._c{width:18.216000px;}
._11{width:21.768000px;}
._8{width:23.376000px;}
._9{width:43.032000px;}
._b{width:56.136000px;}
._a{width:63.480000px;}
._3{width:83.352000px;}
._13{width:87.888000px;}
._14{width:95.880000px;}
._6{width:123.888000px;}
._5{width:195.984000px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc4{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:5.040000px;}
.yb0{bottom:5.220000px;}
.y3{bottom:5.580000px;}
.yd3{bottom:27.174000px;}
.yaf{bottom:27.180000px;}
.ycb{bottom:27.360000px;}
.yd2{bottom:49.314000px;}
.ybd{bottom:49.320000px;}
.yca{bottom:49.365000px;}
.y7{bottom:57.960000px;}
.yd1{bottom:71.274000px;}
.ybc{bottom:71.280000px;}
.yd6{bottom:71.460000px;}
.yc9{bottom:71.505000px;}
.y6{bottom:74.916000px;}
.yd0{bottom:93.414000px;}
.ybb{bottom:93.420000px;}
.yc8{bottom:93.645000px;}
.y5{bottom:105.876000px;}
.ycf{bottom:115.554000px;}
.yba{bottom:115.560000px;}
.ye8{bottom:115.590000px;}
.yc7{bottom:115.605000px;}
.ycc{bottom:124.236000px;}
.y30{bottom:127.836000px;}
.y2f{bottom:133.776000px;}
.yce{bottom:137.514000px;}
.yb9{bottom:137.520000px;}
.ye7{bottom:137.550000px;}
.yd5{bottom:137.700000px;}
.yc6{bottom:137.745000px;}
.yab{bottom:148.896000px;}
.y2e{bottom:149.796000px;}
.y5c{bottom:155.730000px;}
.ycd{bottom:159.654000px;}
.yb8{bottom:159.660000px;}
.ye6{bottom:159.690000px;}
.yc5{bottom:159.885000px;}
.yaa{bottom:167.070000px;}
.y5b{bottom:170.850000px;}
.yef{bottom:171.750000px;}
.ye5{bottom:181.650000px;}
.yb7{bottom:181.800000px;}
.yc4{bottom:181.845000px;}
.y7e{bottom:185.430000px;}
.ya9{bottom:186.330000px;}
.y5a{bottom:189.030000px;}
.y2d{bottom:189.570000px;}
.ya8{bottom:192.270000px;}
.yb6{bottom:203.760000px;}
.ye4{bottom:203.790000px;}
.yc3{bottom:203.985000px;}
.ya7{bottom:207.390000px;}
.y7d{bottom:207.570000px;}
.y59{bottom:208.290000px;}
.y2c{bottom:211.710000px;}
.y58{bottom:214.230000px;}
.y113{bottom:218.010000px;}
.yed{bottom:221.430000px;}
.yb5{bottom:225.900000px;}
.ye3{bottom:225.930000px;}
.yc2{bottom:225.945000px;}
.ya6{bottom:226.650000px;}
.yee{bottom:227.370000px;}
.y7c{bottom:229.710000px;}
.y57{bottom:230.250000px;}
.ya5{bottom:232.590000px;}
.y2b{bottom:233.670000px;}
.y56{bottom:236.190000px;}
.y112{bottom:239.970000px;}
.yec{bottom:243.570000px;}
.yb4{bottom:247.860000px;}
.ye2{bottom:247.890000px;}
.yc1{bottom:248.085000px;}
.ya4{bottom:248.610000px;}
.y7b{bottom:251.670000px;}
.y55{bottom:252.210000px;}
.ya3{bottom:254.550000px;}
.y2a{bottom:255.810000px;}
.y54{bottom:258.150000px;}
.y111{bottom:262.110000px;}
.yeb{bottom:265.530000px;}
.ye1{bottom:270.030000px;}
.yb3{bottom:270.045000px;}
.yc0{bottom:270.225000px;}
.ya2{bottom:270.570000px;}
.y7a{bottom:273.810000px;}
.y53{bottom:274.170000px;}
.y29{bottom:277.950000px;}
.y110{bottom:284.250000px;}
.yea{bottom:291.270000px;}
.ye0{bottom:292.170000px;}
.yb2{bottom:292.185000px;}
.y79{bottom:295.950000px;}
.y28{bottom:299.910000px;}
.ybf{bottom:301.530000px;}
.y10f{bottom:306.210000px;}
.y51{bottom:312.510000px;}
.ya1{bottom:312.690000px;}
.ydf{bottom:314.130000px;}
.y52{bottom:318.450000px;}
.y27{bottom:325.650000px;}
.y10e{bottom:330.330000px;}
.y78{bottom:334.650000px;}
.yde{bottom:336.270000px;}
.y50{bottom:336.495000px;}
.ya0{bottom:336.855000px;}
.ye9{bottom:347.115000px;}
.y10d{bottom:354.315000px;}
.ydd{bottom:358.410000px;}
.y9f{bottom:358.815000px;}
.y4e{bottom:360.435000px;}
.y4f{bottom:366.375000px;}
.y77{bottom:374.475000px;}
.y10c{bottom:378.255000px;}
.ydc{bottom:380.415000px;}
.y9e{bottom:380.955000px;}
.y4d{bottom:384.375000px;}
.y26{bottom:385.815000px;}
.y76{bottom:396.435000px;}
.y10b{bottom:402.195000px;}
.ydb{bottom:402.555000px;}
.y9d{bottom:403.095000px;}
.y25{bottom:407.955000px;}
.y4b{bottom:408.315000px;}
.y4c{bottom:414.255000px;}
.y75{bottom:418.575000px;}
.yda{bottom:424.695000px;}
.y9c{bottom:425.055000px;}
.y10a{bottom:426.135000px;}
.y24{bottom:430.095000px;}
.y4a{bottom:432.435000px;}
.y74{bottom:440.715000px;}
.yd9{bottom:446.655000px;}
.y9b{bottom:447.195000px;}
.y109{bottom:450.255000px;}
.y23{bottom:452.055000px;}
.y73{bottom:462.675000px;}
.yd8{bottom:468.795000px;}
.y99{bottom:469.335000px;}
.y49{bottom:471.135000px;}
.y22{bottom:474.195000px;}
.y9a{bottom:475.275000px;}
.y72{bottom:484.815000px;}
.y98{bottom:491.295000px;}
.y21{bottom:496.335000px;}
.y108{bottom:498.135000px;}
.yd7{bottom:502.455000px;}
.y48{bottom:510.915000px;}
.y97{bottom:513.435000px;}
.y20{bottom:518.295000px;}
.y107{bottom:522.075000px;}
.y71{bottom:523.695000px;}
.y96{bottom:535.395000px;}
.y47{bottom:536.475000px;}
.y1f{bottom:540.435000px;}
.y95{bottom:557.535000px;}
.y106{bottom:558.075000px;}
.y1e{bottom:562.575000px;}
.y70{bottom:563.295000px;}
.y105{bottom:580.215000px;}
.y1d{bottom:584.535000px;}
.y93{bottom:593.535000px;}
.y46{bottom:598.575000px;}
.y94{bottom:599.475000px;}
.y6f{bottom:600.915000px;}
.y104{bottom:605.805000px;}
.y1c{bottom:606.705000px;}
.yb1{bottom:611.565000px;}
.y92{bottom:615.705000px;}
.y45{bottom:622.725000px;}
.y1b{bottom:628.845000px;}
.y91{bottom:637.665000px;}
.y44{bottom:646.665000px;}
.y1a{bottom:650.805000px;}
.y90{bottom:659.985000px;}
.y6e{bottom:663.225000px;}
.y103{bottom:666.105000px;}
.y43{bottom:670.605000px;}
.y19{bottom:672.945000px;}
.y8f{bottom:682.305000px;}
.y102{bottom:686.805000px;}
.y6c{bottom:687.165000px;}
.y6d{bottom:693.105000px;}
.y42{bottom:694.545000px;}
.y18{bottom:694.905000px;}
.y8e{bottom:704.445000px;}
.y101{bottom:707.505000px;}
.y6b{bottom:711.105000px;}
.y17{bottom:717.045000px;}
.y41{bottom:718.485000px;}
.y8d{bottom:726.765000px;}
.y100{bottom:728.205000px;}
.y6a{bottom:735.045000px;}
.y16{bottom:739.185000px;}
.y40{bottom:742.605000px;}
.yff{bottom:748.905000px;}
.y8c{bottom:749.265000px;}
.y69{bottom:758.985000px;}
.y14{bottom:761.145000px;}
.y3f{bottom:764.565000px;}
.y15{bottom:767.085000px;}
.yfe{bottom:769.605000px;}
.y8b{bottom:771.585000px;}
.y68{bottom:783.105000px;}
.y13{bottom:783.285000px;}
.y3e{bottom:790.305000px;}
.y8a{bottom:793.545000px;}
.y12{bottom:808.845000px;}
.yfd{bottom:811.005000px;}
.y89{bottom:815.685000px;}
.y11f{bottom:818.385000px;}
.y67{bottom:821.805000px;}
.yfb{bottom:831.705000px;}
.yfc{bottom:837.645000px;}
.y87{bottom:837.825000px;}
.y11e{bottom:840.525000px;}
.y88{bottom:843.765000px;}
.y3d{bottom:849.165000px;}
.yfa{bottom:852.405000px;}
.y11d{bottom:862.665000px;}
.y66{bottom:863.385000px;}
.y3c{bottom:869.865000px;}
.y11{bottom:871.170000px;}
.yf8{bottom:873.150000px;}
.yf9{bottom:879.090000px;}
.y11c{bottom:884.670000px;}
.y65{bottom:887.370000px;}
.y3b{bottom:890.610000px;}
.yf7{bottom:893.850000px;}
.y86{bottom:900.150000px;}
.y10{bottom:907.170000px;}
.y11b{bottom:910.230000px;}
.y3a{bottom:911.310000px;}
.y64{bottom:911.490000px;}
.yf6{bottom:914.550000px;}
.yae{bottom:921.390000px;}
.y39{bottom:934.530000px;}
.yf5{bottom:935.250000px;}
.y63{bottom:935.430000px;}
.yf{bottom:942.990000px;}
.yf4{bottom:955.950000px;}
.y62{bottom:959.370000px;}
.y85{bottom:960.450000px;}
.ye{bottom:965.130000px;}
.yad{bottom:971.430000px;}
.y11a{bottom:972.510000px;}
.yf3{bottom:976.650000px;}
.y84{bottom:982.590000px;}
.y61{bottom:983.310000px;}
.yd{bottom:987.270000px;}
.yd4{bottom:988.890000px;}
.y38{bottom:994.830000px;}
.y119{bottom:996.450000px;}
.yf2{bottom:997.350000px;}
.y83{bottom:1004.550000px;}
.y60{bottom:1007.430000px;}
.yc{bottom:1009.230000px;}
.y37{bottom:1016.970000px;}
.yf1{bottom:1019.310000px;}
.y118{bottom:1020.390000px;}
.y82{bottom:1026.690000px;}
.yb{bottom:1031.370000px;}
.y36{bottom:1038.930000px;}
.y117{bottom:1044.510000px;}
.yf0{bottom:1045.050000px;}
.y80{bottom:1048.830000px;}
.y81{bottom:1054.770000px;}
.y5f{bottom:1055.310000px;}
.y35{bottom:1061.070000px;}
.y116{bottom:1068.450000px;}
.ya{bottom:1068.630000px;}
.y5e{bottom:1079.430000px;}
.y34{bottom:1083.210000px;}
.y7f{bottom:1087.530000px;}
.y115{bottom:1090.590000px;}
.y9{bottom:1096.710000px;}
.yac{bottom:1103.370000px;}
.y32{bottom:1105.170000px;}
.y5d{bottom:1109.310000px;}
.y33{bottom:1111.110000px;}
.y114{bottom:1116.150000px;}
.y8{bottom:1124.610000px;}
.y31{bottom:1127.310000px;}
.y4{bottom:1149.300000px;}
.y2{bottom:1166.220000px;}
.y1{bottom:1195.560000px;}
.h3{height:22.500000px;}
.hb{height:36.193359px;}
.hd{height:36.274219px;}
.h1a{height:41.809570px;}
.h9{height:43.269961px;}
.h13{height:44.100000px;}
.h2{height:51.793945px;}
.hf{height:52.417969px;}
.ha{height:53.121094px;}
.h12{height:53.280000px;}
.h7{height:54.140625px;}
.h11{height:60.855469px;}
.h4{height:62.402344px;}
.h5{height:63.344531px;}
.h10{height:63.961367px;}
.h6{height:64.582031px;}
.hc{height:72.007031px;}
.he{height:90.414844px;}
.h8{height:107.851992px;}
.h19{height:154.440000px;}
.h17{height:154.650000px;}
.h16{height:176.580000px;}
.h14{height:309.090000px;}
.h15{height:309.135000px;}
.h18{height:485.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:100.476000px;}
.w6{width:102.600000px;}
.w9{width:136.116000px;}
.w4{width:226.470000px;}
.w3{width:226.650000px;}
.w8{width:337.170000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:7.740000px;}
.x1{left:106.235987px;}
.x9{left:111.815987px;}
.x3{left:113.220000px;}
.x27{left:117.395987px;}
.xa{left:133.235987px;}
.x2f{left:150.149973px;}
.x2c{left:155.189973px;}
.xb{left:160.229987px;}
.x30{left:163.469987px;}
.x25{left:169.229973px;}
.x26{left:182.549987px;}
.x29{left:210.630000px;}
.x5{left:227.025000px;}
.x15{left:239.429987px;}
.x11{left:292.574973px;}
.x12{left:299.234987px;}
.x2a{left:311.835000px;}
.x8{left:322.274987px;}
.x2{left:332.895000px;}
.x6{left:343.334973px;}
.x7{left:349.994987px;}
.xc{left:357.014987px;}
.x21{left:359.534987px;}
.x22{left:365.474987px;}
.x1d{left:399.494987px;}
.x1e{left:405.434987px;}
.xf{left:442.694973px;}
.x10{left:449.354987px;}
.x13{left:452.774973px;}
.x14{left:459.434987px;}
.x2d{left:487.724973px;}
.x16{left:498.344973px;}
.x2e{left:501.044987px;}
.x17{left:505.004987px;}
.xd{left:513.104973px;}
.xe{left:519.764987px;}
.x1a{left:534.524973px;}
.x1f{left:536.504987px;}
.x1b{left:541.184987px;}
.x20{left:542.444987px;}
.x4{left:559.365000px;}
.x2b{left:649.725000px;}
.x31{left:660.569973px;}
.x32{left:673.889987px;}
.x23{left:725.729973px;}
.x24{left:739.049987px;}
.x1c{left:745.709987px;}
.x18{left:769.829973px;}
.x19{left:776.489987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.272533pt;}
.lsd{letter-spacing:-0.205867pt;}
.lsc{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.096640pt;}
.ls0{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.165867pt;}
.ls15{letter-spacing:0.170133pt;}
.ls12{letter-spacing:0.179200pt;}
.lsf{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.255360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.434133pt;}
.ls14{letter-spacing:0.656000pt;}
.ls5{letter-spacing:38.506667pt;}
.ls6{letter-spacing:39.168000pt;}
.ls8{letter-spacing:39.808000pt;}
.ls7{letter-spacing:56.426667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-29.807573pt;}
.ws7{word-spacing:-23.696640pt;}
.ws2{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws6{word-spacing:-12.992000pt;}
.ws9{word-spacing:-11.217493pt;}
.wsa{word-spacing:-10.949227pt;}
.ws3{word-spacing:-10.783360pt;}
.ws8{word-spacing:-10.577493pt;}
.wsf{word-spacing:-8.704640pt;}
.wsd{word-spacing:-8.191360pt;}
.wse{word-spacing:-7.705493pt;}
.wsc{word-spacing:-7.535360pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-23.040427pt;}
._4{margin-left:-3.605333pt;}
._0{margin-left:-1.285333pt;}
._2{width:1.212800pt;}
._1{width:2.414933pt;}
._10{width:4.160000pt;}
._f{width:5.184000pt;}
._e{width:6.208000pt;}
._12{width:14.058027pt;}
._d{width:14.981333pt;}
._c{width:16.192000pt;}
._11{width:19.349333pt;}
._8{width:20.778667pt;}
._9{width:38.250667pt;}
._b{width:49.898667pt;}
._a{width:56.426667pt;}
._3{width:74.090667pt;}
._13{width:78.122667pt;}
._14{width:85.226667pt;}
._6{width:110.122667pt;}
._5{width:174.208000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:4.480000pt;}
.yb0{bottom:4.640000pt;}
.y3{bottom:4.960000pt;}
.yd3{bottom:24.154667pt;}
.yaf{bottom:24.160000pt;}
.ycb{bottom:24.320000pt;}
.yd2{bottom:43.834667pt;}
.ybd{bottom:43.840000pt;}
.yca{bottom:43.880000pt;}
.y7{bottom:51.520000pt;}
.yd1{bottom:63.354667pt;}
.ybc{bottom:63.360000pt;}
.yd6{bottom:63.520000pt;}
.yc9{bottom:63.560000pt;}
.y6{bottom:66.592000pt;}
.yd0{bottom:83.034667pt;}
.ybb{bottom:83.040000pt;}
.yc8{bottom:83.240000pt;}
.y5{bottom:94.112000pt;}
.ycf{bottom:102.714667pt;}
.yba{bottom:102.720000pt;}
.ye8{bottom:102.746667pt;}
.yc7{bottom:102.760000pt;}
.ycc{bottom:110.432000pt;}
.y30{bottom:113.632000pt;}
.y2f{bottom:118.912000pt;}
.yce{bottom:122.234667pt;}
.yb9{bottom:122.240000pt;}
.ye7{bottom:122.266667pt;}
.yd5{bottom:122.400000pt;}
.yc6{bottom:122.440000pt;}
.yab{bottom:132.352000pt;}
.y2e{bottom:133.152000pt;}
.y5c{bottom:138.426667pt;}
.ycd{bottom:141.914667pt;}
.yb8{bottom:141.920000pt;}
.ye6{bottom:141.946667pt;}
.yc5{bottom:142.120000pt;}
.yaa{bottom:148.506667pt;}
.y5b{bottom:151.866667pt;}
.yef{bottom:152.666667pt;}
.ye5{bottom:161.466667pt;}
.yb7{bottom:161.600000pt;}
.yc4{bottom:161.640000pt;}
.y7e{bottom:164.826667pt;}
.ya9{bottom:165.626667pt;}
.y5a{bottom:168.026667pt;}
.y2d{bottom:168.506667pt;}
.ya8{bottom:170.906667pt;}
.yb6{bottom:181.120000pt;}
.ye4{bottom:181.146667pt;}
.yc3{bottom:181.320000pt;}
.ya7{bottom:184.346667pt;}
.y7d{bottom:184.506667pt;}
.y59{bottom:185.146667pt;}
.y2c{bottom:188.186667pt;}
.y58{bottom:190.426667pt;}
.y113{bottom:193.786667pt;}
.yed{bottom:196.826667pt;}
.yb5{bottom:200.800000pt;}
.ye3{bottom:200.826667pt;}
.yc2{bottom:200.840000pt;}
.ya6{bottom:201.466667pt;}
.yee{bottom:202.106667pt;}
.y7c{bottom:204.186667pt;}
.y57{bottom:204.666667pt;}
.ya5{bottom:206.746667pt;}
.y2b{bottom:207.706667pt;}
.y56{bottom:209.946667pt;}
.y112{bottom:213.306667pt;}
.yec{bottom:216.506667pt;}
.yb4{bottom:220.320000pt;}
.ye2{bottom:220.346667pt;}
.yc1{bottom:220.520000pt;}
.ya4{bottom:220.986667pt;}
.y7b{bottom:223.706667pt;}
.y55{bottom:224.186667pt;}
.ya3{bottom:226.266667pt;}
.y2a{bottom:227.386667pt;}
.y54{bottom:229.466667pt;}
.y111{bottom:232.986667pt;}
.yeb{bottom:236.026667pt;}
.ye1{bottom:240.026667pt;}
.yb3{bottom:240.040000pt;}
.yc0{bottom:240.200000pt;}
.ya2{bottom:240.506667pt;}
.y7a{bottom:243.386667pt;}
.y53{bottom:243.706667pt;}
.y29{bottom:247.066667pt;}
.y110{bottom:252.666667pt;}
.yea{bottom:258.906667pt;}
.ye0{bottom:259.706667pt;}
.yb2{bottom:259.720000pt;}
.y79{bottom:263.066667pt;}
.y28{bottom:266.586667pt;}
.ybf{bottom:268.026667pt;}
.y10f{bottom:272.186667pt;}
.y51{bottom:277.786667pt;}
.ya1{bottom:277.946667pt;}
.ydf{bottom:279.226667pt;}
.y52{bottom:283.066667pt;}
.y27{bottom:289.466667pt;}
.y10e{bottom:293.626667pt;}
.y78{bottom:297.466667pt;}
.yde{bottom:298.906667pt;}
.y50{bottom:299.106667pt;}
.ya0{bottom:299.426667pt;}
.ye9{bottom:308.546667pt;}
.y10d{bottom:314.946667pt;}
.ydd{bottom:318.586667pt;}
.y9f{bottom:318.946667pt;}
.y4e{bottom:320.386667pt;}
.y4f{bottom:325.666667pt;}
.y77{bottom:332.866667pt;}
.y10c{bottom:336.226667pt;}
.ydc{bottom:338.146667pt;}
.y9e{bottom:338.626667pt;}
.y4d{bottom:341.666667pt;}
.y26{bottom:342.946667pt;}
.y76{bottom:352.386667pt;}
.y10b{bottom:357.506667pt;}
.ydb{bottom:357.826667pt;}
.y9d{bottom:358.306667pt;}
.y25{bottom:362.626667pt;}
.y4b{bottom:362.946667pt;}
.y4c{bottom:368.226667pt;}
.y75{bottom:372.066667pt;}
.yda{bottom:377.506667pt;}
.y9c{bottom:377.826667pt;}
.y10a{bottom:378.786667pt;}
.y24{bottom:382.306667pt;}
.y4a{bottom:384.386667pt;}
.y74{bottom:391.746667pt;}
.yd9{bottom:397.026667pt;}
.y9b{bottom:397.506667pt;}
.y109{bottom:400.226667pt;}
.y23{bottom:401.826667pt;}
.y73{bottom:411.266667pt;}
.yd8{bottom:416.706667pt;}
.y99{bottom:417.186667pt;}
.y49{bottom:418.786667pt;}
.y22{bottom:421.506667pt;}
.y9a{bottom:422.466667pt;}
.y72{bottom:430.946667pt;}
.y98{bottom:436.706667pt;}
.y21{bottom:441.186667pt;}
.y108{bottom:442.786667pt;}
.yd7{bottom:446.626667pt;}
.y48{bottom:454.146667pt;}
.y97{bottom:456.386667pt;}
.y20{bottom:460.706667pt;}
.y107{bottom:464.066667pt;}
.y71{bottom:465.506667pt;}
.y96{bottom:475.906667pt;}
.y47{bottom:476.866667pt;}
.y1f{bottom:480.386667pt;}
.y95{bottom:495.586667pt;}
.y106{bottom:496.066667pt;}
.y1e{bottom:500.066667pt;}
.y70{bottom:500.706667pt;}
.y105{bottom:515.746667pt;}
.y1d{bottom:519.586667pt;}
.y93{bottom:527.586667pt;}
.y46{bottom:532.066667pt;}
.y94{bottom:532.866667pt;}
.y6f{bottom:534.146667pt;}
.y104{bottom:538.493333pt;}
.y1c{bottom:539.293333pt;}
.yb1{bottom:543.613333pt;}
.y92{bottom:547.293333pt;}
.y45{bottom:553.533333pt;}
.y1b{bottom:558.973333pt;}
.y91{bottom:566.813333pt;}
.y44{bottom:574.813333pt;}
.y1a{bottom:578.493333pt;}
.y90{bottom:586.653333pt;}
.y6e{bottom:589.533333pt;}
.y103{bottom:592.093333pt;}
.y43{bottom:596.093333pt;}
.y19{bottom:598.173333pt;}
.y8f{bottom:606.493333pt;}
.y102{bottom:610.493333pt;}
.y6c{bottom:610.813333pt;}
.y6d{bottom:616.093333pt;}
.y42{bottom:617.373333pt;}
.y18{bottom:617.693333pt;}
.y8e{bottom:626.173333pt;}
.y101{bottom:628.893333pt;}
.y6b{bottom:632.093333pt;}
.y17{bottom:637.373333pt;}
.y41{bottom:638.653333pt;}
.y8d{bottom:646.013333pt;}
.y100{bottom:647.293333pt;}
.y6a{bottom:653.373333pt;}
.y16{bottom:657.053333pt;}
.y40{bottom:660.093333pt;}
.yff{bottom:665.693333pt;}
.y8c{bottom:666.013333pt;}
.y69{bottom:674.653333pt;}
.y14{bottom:676.573333pt;}
.y3f{bottom:679.613333pt;}
.y15{bottom:681.853333pt;}
.yfe{bottom:684.093333pt;}
.y8b{bottom:685.853333pt;}
.y68{bottom:696.093333pt;}
.y13{bottom:696.253333pt;}
.y3e{bottom:702.493333pt;}
.y8a{bottom:705.373333pt;}
.y12{bottom:718.973333pt;}
.yfd{bottom:720.893333pt;}
.y89{bottom:725.053333pt;}
.y11f{bottom:727.453333pt;}
.y67{bottom:730.493333pt;}
.yfb{bottom:739.293333pt;}
.yfc{bottom:744.573333pt;}
.y87{bottom:744.733333pt;}
.y11e{bottom:747.133333pt;}
.y88{bottom:750.013333pt;}
.y3d{bottom:754.813333pt;}
.yfa{bottom:757.693333pt;}
.y11d{bottom:766.813333pt;}
.y66{bottom:767.453333pt;}
.y3c{bottom:773.213333pt;}
.y11{bottom:774.373333pt;}
.yf8{bottom:776.133333pt;}
.yf9{bottom:781.413333pt;}
.y11c{bottom:786.373333pt;}
.y65{bottom:788.773333pt;}
.y3b{bottom:791.653333pt;}
.yf7{bottom:794.533333pt;}
.y86{bottom:800.133333pt;}
.y10{bottom:806.373333pt;}
.y11b{bottom:809.093333pt;}
.y3a{bottom:810.053333pt;}
.y64{bottom:810.213333pt;}
.yf6{bottom:812.933333pt;}
.yae{bottom:819.013333pt;}
.y39{bottom:830.693333pt;}
.yf5{bottom:831.333333pt;}
.y63{bottom:831.493333pt;}
.yf{bottom:838.213333pt;}
.yf4{bottom:849.733333pt;}
.y62{bottom:852.773333pt;}
.y85{bottom:853.733333pt;}
.ye{bottom:857.893333pt;}
.yad{bottom:863.493333pt;}
.y11a{bottom:864.453333pt;}
.yf3{bottom:868.133333pt;}
.y84{bottom:873.413333pt;}
.y61{bottom:874.053333pt;}
.yd{bottom:877.573333pt;}
.yd4{bottom:879.013333pt;}
.y38{bottom:884.293333pt;}
.y119{bottom:885.733333pt;}
.yf2{bottom:886.533333pt;}
.y83{bottom:892.933333pt;}
.y60{bottom:895.493333pt;}
.yc{bottom:897.093333pt;}
.y37{bottom:903.973333pt;}
.yf1{bottom:906.053333pt;}
.y118{bottom:907.013333pt;}
.y82{bottom:912.613333pt;}
.yb{bottom:916.773333pt;}
.y36{bottom:923.493333pt;}
.y117{bottom:928.453333pt;}
.yf0{bottom:928.933333pt;}
.y80{bottom:932.293333pt;}
.y81{bottom:937.573333pt;}
.y5f{bottom:938.053333pt;}
.y35{bottom:943.173333pt;}
.y116{bottom:949.733333pt;}
.ya{bottom:949.893333pt;}
.y5e{bottom:959.493333pt;}
.y34{bottom:962.853333pt;}
.y7f{bottom:966.693333pt;}
.y115{bottom:969.413333pt;}
.y9{bottom:974.853333pt;}
.yac{bottom:980.773333pt;}
.y32{bottom:982.373333pt;}
.y5d{bottom:986.053333pt;}
.y33{bottom:987.653333pt;}
.y114{bottom:992.133333pt;}
.y8{bottom:999.653333pt;}
.y31{bottom:1002.053333pt;}
.y4{bottom:1021.600000pt;}
.y2{bottom:1036.640000pt;}
.y1{bottom:1062.720000pt;}
.h3{height:20.000000pt;}
.hb{height:32.171875pt;}
.hd{height:32.243750pt;}
.h1a{height:37.164062pt;}
.h9{height:38.462187pt;}
.h13{height:39.200000pt;}
.h2{height:46.039063pt;}
.hf{height:46.593750pt;}
.ha{height:47.218750pt;}
.h12{height:47.360000pt;}
.h7{height:48.125000pt;}
.h11{height:54.093750pt;}
.h4{height:55.468750pt;}
.h5{height:56.306250pt;}
.h10{height:56.854549pt;}
.h6{height:57.406250pt;}
.hc{height:64.006250pt;}
.he{height:80.368750pt;}
.h8{height:95.868437pt;}
.h19{height:137.280000pt;}
.h17{height:137.466667pt;}
.h16{height:156.960000pt;}
.h14{height:274.746667pt;}
.h15{height:274.786667pt;}
.h18{height:431.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:89.312000pt;}
.w6{width:91.200000pt;}
.w9{width:120.992000pt;}
.w4{width:201.306667pt;}
.w3{width:201.466667pt;}
.w8{width:299.706667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.880000pt;}
.x1{left:94.431988pt;}
.x9{left:99.391988pt;}
.x3{left:100.640000pt;}
.x27{left:104.351988pt;}
.xa{left:118.431988pt;}
.x2f{left:133.466643pt;}
.x2c{left:137.946643pt;}
.xb{left:142.426655pt;}
.x30{left:145.306655pt;}
.x25{left:150.426643pt;}
.x26{left:162.266655pt;}
.x29{left:187.226667pt;}
.x5{left:201.800000pt;}
.x15{left:212.826655pt;}
.x11{left:260.066643pt;}
.x12{left:265.986655pt;}
.x2a{left:277.186667pt;}
.x8{left:286.466655pt;}
.x2{left:295.906667pt;}
.x6{left:305.186643pt;}
.x7{left:311.106655pt;}
.xc{left:317.346655pt;}
.x21{left:319.586655pt;}
.x22{left:324.866655pt;}
.x1d{left:355.106655pt;}
.x1e{left:360.386655pt;}
.xf{left:393.506643pt;}
.x10{left:399.426655pt;}
.x13{left:402.466643pt;}
.x14{left:408.386655pt;}
.x2d{left:433.533310pt;}
.x16{left:442.973310pt;}
.x2e{left:445.373322pt;}
.x17{left:448.893322pt;}
.xd{left:456.093310pt;}
.xe{left:462.013322pt;}
.x1a{left:475.133310pt;}
.x1f{left:476.893322pt;}
.x1b{left:481.053322pt;}
.x20{left:482.173322pt;}
.x4{left:497.213333pt;}
.x2b{left:577.533333pt;}
.x31{left:587.173310pt;}
.x32{left:599.013322pt;}
.x23{left:645.093310pt;}
.x24{left:656.933322pt;}
.x1c{left:662.853322pt;}
.x18{left:684.293310pt;}
.x19{left:690.213322pt;}
}




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