
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7b164b3d7348290c98065f9d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1e6fbc93d2cc782039612941.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_01c3e353d7d77822e71cbe04.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a8e7c9554bba0b9114da0b40.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_8f210be0e723635d1e859029.woff')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_b3acc1c6c4e01f6a1258753a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_d576063d1ba5c0182f87e687.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.246600px;}
.lsb{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.014760px;}
.ls15{letter-spacing:-0.013320px;}
.ls14{letter-spacing:-0.011160px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.113400px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls13{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls5{letter-spacing:1.080000px;}
.ls18{letter-spacing:6.120000px;}
.ls1c{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.268160px;}
.ws5{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.215240px;}
.wsc{word-spacing:-13.213080px;}
.ws11{word-spacing:-13.211640px;}
.ws3{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.979800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.625600px;}
.ws2{word-spacing:-8.553600px;}
.wsf{word-spacing:-8.265600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._10{margin-left:-4.088160px;}
._2{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._1{width:1.098972px;}
._4{width:2.344800px;}
._5{width:3.392856px;}
._f{width:4.418880px;}
._6{width:5.470800px;}
._7{width:7.154400px;}
._a{width:8.717400px;}
._8{width:10.034280px;}
._9{width:11.625468px;}
._b{width:14.428800px;}
._c{width:15.478800px;}
._d{width:16.653240px;}
._e{width:17.901240px;}
._3{width:21.462600px;}
._12{width:23.171640px;}
._11{width:24.228360px;}
._13{width:26.452800px;}
._14{width:27.895680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y12f{bottom:4.500000px;}
.y57{bottom:7.830000px;}
.y9c{bottom:7.860000px;}
.y5b{bottom:7.920000px;}
.y74{bottom:24.660000px;}
.y9a{bottom:25.470000px;}
.y72{bottom:29.880000px;}
.y61{bottom:35.190000px;}
.y59{bottom:35.220000px;}
.y138{bottom:50.220000px;}
.y71{bottom:52.020000px;}
.y98{bottom:52.830000px;}
.y5d{bottom:62.550000px;}
.y137{bottom:72.270000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y7e{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y136{bottom:107.460000px;}
.ya9{bottom:124.770000px;}
.y135{bottom:125.100000px;}
.y54{bottom:128.100000px;}
.y26{bottom:129.810000px;}
.y82{bottom:130.440000px;}
.y113{bottom:130.620000px;}
.yc3{bottom:136.200000px;}
.ya7{bottom:139.710000px;}
.y134{bottom:142.650000px;}
.y7d{bottom:145.380000px;}
.y53{bottom:145.650000px;}
.y25{bottom:147.450000px;}
.y112{bottom:148.170000px;}
.yc2{bottom:153.840000px;}
.y133{bottom:160.200000px;}
.y52{bottom:163.290000px;}
.y24{bottom:165.000000px;}
.y111{bottom:165.720000px;}
.ya8{bottom:167.070000px;}
.yc1{bottom:171.390000px;}
.y81{bottom:172.740000px;}
.y132{bottom:177.840000px;}
.y51{bottom:180.840000px;}
.yc0{bottom:188.940000px;}
.y23{bottom:191.910000px;}
.y110{bottom:192.360000px;}
.ye9{bottom:192.450000px;}
.ya6{bottom:194.340000px;}
.y131{bottom:195.390000px;}
.y50{bottom:198.390000px;}
.y80{bottom:200.010000px;}
.ybf{bottom:206.580000px;}
.y10f{bottom:209.910000px;}
.ye8{bottom:210.090000px;}
.y130{bottom:213.030000px;}
.ya5{bottom:221.700000px;}
.y139{bottom:223.230000px;}
.y4f{bottom:225.030000px;}
.y7f{bottom:227.370000px;}
.y10e{bottom:227.550000px;}
.ye7{bottom:227.640000px;}
.y12e{bottom:238.260000px;}
.y22{bottom:240.150000px;}
.ybe{bottom:242.130000px;}
.ye6{bottom:245.280000px;}
.ya4{bottom:249.060000px;}
.y10d{bottom:254.100000px;}
.y7b{bottom:254.730000px;}
.y21{bottom:258.060000px;}
.ybd{bottom:259.770000px;}
.y4e{bottom:260.940000px;}
.ye5{bottom:262.830000px;}
.y10c{bottom:271.650000px;}
.ya3{bottom:276.420000px;}
.ye4{bottom:280.380000px;}
.ybc{bottom:281.100000px;}
.y7c{bottom:282.090000px;}
.ybb{bottom:294.870000px;}
.y20{bottom:295.140000px;}
.y10b{bottom:298.290000px;}
.ya2{bottom:303.690000px;}
.y4d{bottom:309.180000px;}
.y79{bottom:309.360000px;}
.yba{bottom:312.510000px;}
.y1f{bottom:312.690000px;}
.y10a{bottom:315.840000px;}
.ye3{bottom:315.930000px;}
.y4c{bottom:326.730000px;}
.ya1{bottom:331.050000px;}
.y7a{bottom:336.720000px;}
.y109{bottom:342.750000px;}
.y4b{bottom:344.370000px;}
.yb9{bottom:348.060000px;}
.y1e{bottom:348.240000px;}
.ye2{bottom:352.380000px;}
.ya0{bottom:358.410000px;}
.y4a{bottom:361.920000px;}
.y77{bottom:364.080000px;}
.yb8{bottom:365.700000px;}
.y1d{bottom:365.880000px;}
.ye1{bottom:370.020000px;}
.y49{bottom:379.560000px;}
.yb7{bottom:383.250000px;}
.y1c{bottom:383.430000px;}
.y9f{bottom:385.770000px;}
.ye0{bottom:387.570000px;}
.y108{bottom:391.080000px;}
.y78{bottom:391.440000px;}
.y48{bottom:397.110000px;}
.yb6{bottom:400.800000px;}
.y1b{bottom:401.070000px;}
.ydf{bottom:405.120000px;}
.y107{bottom:408.630000px;}
.y9e{bottom:413.040000px;}
.y47{bottom:414.660000px;}
.yb5{bottom:418.440000px;}
.y1a{bottom:418.620000px;}
.y75{bottom:418.710000px;}
.yde{bottom:422.760000px;}
.y106{bottom:426.180000px;}
.y46{bottom:432.300000px;}
.yb4{bottom:435.990000px;}
.y9d{bottom:440.400000px;}
.y76{bottom:446.070000px;}
.ydd{bottom:449.670000px;}
.y105{bottom:453.090000px;}
.y19{bottom:454.170000px;}
.y45{bottom:458.850000px;}
.y9b{bottom:467.760000px;}
.yb3{bottom:471.660000px;}
.y18{bottom:471.840000px;}
.y70{bottom:473.460000px;}
.y12d{bottom:483.450000px;}
.ydc{bottom:486.690000px;}
.yb2{bottom:489.210000px;}
.y17{bottom:489.390000px;}
.y104{bottom:490.200000px;}
.y44{bottom:494.520000px;}
.y97{bottom:495.060000px;}
.ydb{bottom:504.330000px;}
.yb1{bottom:506.760000px;}
.y103{bottom:507.750000px;}
.y43{bottom:512.070000px;}
.y73{bottom:517.560000px;}
.yda{bottom:521.880000px;}
.yb0{bottom:524.400000px;}
.y16{bottom:525.030000px;}
.y102{bottom:525.300000px;}
.y12c{bottom:531.690000px;}
.yd9{bottom:539.430000px;}
.y99{bottom:540.060000px;}
.y15{bottom:542.580000px;}
.y101{bottom:542.940000px;}
.y6f{bottom:544.920000px;}
.y42{bottom:548.520000px;}
.y12b{bottom:549.330000px;}
.yaf{bottom:551.310000px;}
.yd8{bottom:557.070000px;}
.y14{bottom:560.130000px;}
.y100{bottom:560.490000px;}
.y41{bottom:566.070000px;}
.y12a{bottom:575.880000px;}
.y13{bottom:577.770000px;}
.yff{bottom:578.130000px;}
.y96{bottom:585.690000px;}
.yd7{bottom:592.620000px;}
.y129{bottom:593.430000px;}
.y6e{bottom:593.610000px;}
.yad{bottom:596.940000px;}
.y40{bottom:602.520000px;}
.yfe{bottom:605.040000px;}
.yd6{bottom:610.260000px;}
.y128{bottom:611.070000px;}
.y12{bottom:613.320000px;}
.y3f{bottom:620.070000px;}
.y95{bottom:621.330000px;}
.yae{bottom:624.300000px;}
.yd5{bottom:627.810000px;}
.y6d{bottom:629.250000px;}
.y11{bottom:630.960000px;}
.y3e{bottom:637.620000px;}
.y94{bottom:638.880000px;}
.yfd{bottom:642.030000px;}
.yd4{bottom:645.360000px;}
.y6c{bottom:646.800000px;}
.y10{bottom:648.510000px;}
.yac{bottom:651.660000px;}
.y127{bottom:655.260000px;}
.y93{bottom:656.520000px;}
.y6b{bottom:664.440000px;}
.yf{bottom:666.060000px;}
.yfc{bottom:668.940000px;}
.y126{bottom:672.810000px;}
.y3d{bottom:674.070000px;}
.yab{bottom:678.930000px;}
.yd3{bottom:681.000000px;}
.y6a{bottom:681.990000px;}
.ye{bottom:683.700000px;}
.y3c{bottom:691.620000px;}
.yd2{bottom:698.550000px;}
.y125{bottom:699.360000px;}
.y69{bottom:699.540000px;}
.y92{bottom:700.620000px;}
.yd{bottom:701.250000px;}
.yaa{bottom:706.290000px;}
.y3b{bottom:709.170000px;}
.yd1{bottom:716.190000px;}
.y124{bottom:717.000000px;}
.y68{bottom:717.180000px;}
.yc{bottom:718.890000px;}
.y91{bottom:733.650000px;}
.yd0{bottom:733.740000px;}
.y123{bottom:734.550000px;}
.y67{bottom:734.730000px;}
.y3a{bottom:745.620000px;}
.yb{bottom:745.800000px;}
.y66{bottom:752.280000px;}
.yfb{bottom:754.530000px;}
.y90{bottom:760.920000px;}
.y122{bottom:761.190000px;}
.y39{bottom:763.260000px;}
.ycf{bottom:769.290000px;}
.y65{bottom:769.920000px;}
.yfa{bottom:772.170000px;}
.y121{bottom:778.740000px;}
.y38{bottom:780.810000px;}
.yce{bottom:786.930000px;}
.y64{bottom:787.470000px;}
.y8f{bottom:788.280000px;}
.yf9{bottom:789.720000px;}
.ya{bottom:794.040000px;}
.y120{bottom:796.290000px;}
.ycd{bottom:804.480000px;}
.yf8{bottom:807.270000px;}
.y63{bottom:814.110000px;}
.y8e{bottom:815.640000px;}
.y37{bottom:817.170000px;}
.y11f{bottom:822.930000px;}
.yf7{bottom:824.910000px;}
.y9{bottom:829.860000px;}
.ycc{bottom:840.030000px;}
.y11e{bottom:840.480000px;}
.y8d{bottom:843.000000px;}
.y36{bottom:844.980000px;}
.y60{bottom:847.050000px;}
.yf6{bottom:851.820000px;}
.ycb{bottom:857.670000px;}
.y11d{bottom:858.030000px;}
.y8{bottom:865.860000px;}
.y8c{bottom:870.270000px;}
.y62{bottom:874.410000px;}
.yca{bottom:875.220000px;}
.y11c{bottom:875.670000px;}
.yf5{bottom:888.810000px;}
.yc9{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.y8b{bottom:897.630000px;}
.y5c{bottom:901.680000px;}
.y11b{bottom:902.220000px;}
.y7{bottom:905.640000px;}
.yf4{bottom:906.450000px;}
.yc8{bottom:910.410000px;}
.y34{bottom:910.860000px;}
.y11a{bottom:919.860000px;}
.y6{bottom:923.640000px;}
.yf3{bottom:924.000000px;}
.y8a{bottom:924.990000px;}
.y33{bottom:928.410000px;}
.y5f{bottom:929.040000px;}
.y119{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.y32{bottom:945.960000px;}
.y88{bottom:952.350000px;}
.y5e{bottom:956.400000px;}
.yf2{bottom:959.550000px;}
.y31{bottom:963.600000px;}
.y118{bottom:963.960000px;}
.y4{bottom:973.950000px;}
.yf1{bottom:977.190000px;}
.y89{bottom:979.620000px;}
.y30{bottom:981.150000px;}
.y117{bottom:981.600000px;}
.y58{bottom:983.760000px;}
.yc7{bottom:998.790000px;}
.y116{bottom:999.150000px;}
.y5a{bottom:1011.060000px;}
.y3{bottom:1012.230000px;}
.yf0{bottom:1012.770000px;}
.yc6{bottom:1016.370000px;}
.y2f{bottom:1016.820000px;}
.y87{bottom:1025.370000px;}
.y115{bottom:1025.820000px;}
.yef{bottom:1030.320000px;}
.yc5{bottom:1033.920000px;}
.y2e{bottom:1034.370000px;}
.y56{bottom:1038.420000px;}
.y114{bottom:1043.370000px;}
.yee{bottom:1047.960000px;}
.y86{bottom:1060.920000px;}
.yed{bottom:1065.510000px;}
.yc4{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y85{bottom:1078.560000px;}
.yec{bottom:1083.150000px;}
.y55{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y84{bottom:1096.110000px;}
.yeb{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y83{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yea{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h11{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h19{height:37.191445px;}
.h3{height:39.155273px;}
.h15{height:43.380000px;}
.h18{height:44.190000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h13{height:53.910000px;}
.hf{height:53.940000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hb{height:61.793886px;}
.hc{height:62.585859px;}
.h1a{height:62.648438px;}
.ha{height:68.582109px;}
.h14{height:70.740000px;}
.h17{height:71.550000px;}
.h4{height:72.985430px;}
.h12{height:81.270000px;}
.h16{height:108.630000px;}
.h1b{height:231.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:51.750000px;}
.w5{width:56.880000px;}
.w12{width:56.970000px;}
.wf{width:67.320000px;}
.w7{width:68.220000px;}
.w15{width:73.530000px;}
.w8{width:88.140000px;}
.w4{width:88.500000px;}
.w10{width:93.240000px;}
.w11{width:93.270000px;}
.w18{width:93.780000px;}
.w1d{width:96.510000px;}
.w1e{width:102.960000px;}
.wb{width:106.110000px;}
.w19{width:106.140000px;}
.w1f{width:106.200000px;}
.wc{width:113.040000px;}
.w1a{width:113.130000px;}
.wd{width:163.800000px;}
.w20{width:166.260000px;}
.w16{width:169.020000px;}
.w17{width:181.560000px;}
.we{width:187.230000px;}
.w1c{width:200.280000px;}
.w9{width:214.830000px;}
.wa{width:219.960000px;}
.w13{width:219.990000px;}
.w1b{width:220.050000px;}
.w3{width:303.690000px;}
.w14{width:445.800000px;}
.w21{width:588.720000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.770000px;}
.x1{left:68.040000px;}
.x18{left:76.230000px;}
.x4{left:95.039987px;}
.x20{left:111.239987px;}
.x5{left:122.039987px;}
.x21{left:158.520000px;}
.x6{left:160.560000px;}
.x1d{left:183.090000px;}
.x2{left:192.719987px;}
.xd{left:202.440000px;}
.x13{left:236.730000px;}
.xc{left:249.420000px;}
.x19{left:296.940000px;}
.x12{left:309.360000px;}
.x17{left:343.560000px;}
.x14{left:401.340000px;}
.xe{left:423.210000px;}
.x8{left:465.060000px;}
.x1b{left:466.770000px;}
.x16{left:495.300000px;}
.xf{left:512.430000px;}
.x1f{left:520.170000px;}
.x9{left:554.280000px;}
.x10{left:570.030000px;}
.x15{left:589.290000px;}
.xa{left:611.880000px;}
.x11{left:622.590000px;}
.x1e{left:623.850000px;}
.x1c{left:649.050000px;}
.xb{left:664.440000px;}
.x1a{left:743.550000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.219200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.013120pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls14{letter-spacing:-0.009920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.100800pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls13{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls5{letter-spacing:0.960000pt;}
.ls18{letter-spacing:5.440000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.793920pt;}
.ws5{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.746880pt;}
.wsc{word-spacing:-11.744960pt;}
.ws11{word-spacing:-11.743680pt;}
.ws3{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.537600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.667200pt;}
.ws2{word-spacing:-7.603200pt;}
.wsf{word-spacing:-7.347200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._10{margin-left:-3.633920pt;}
._2{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.976864pt;}
._4{width:2.084267pt;}
._5{width:3.015872pt;}
._f{width:3.927893pt;}
._6{width:4.862933pt;}
._7{width:6.359467pt;}
._a{width:7.748800pt;}
._8{width:8.919360pt;}
._9{width:10.333749pt;}
._b{width:12.825600pt;}
._c{width:13.758934pt;}
._d{width:14.802880pt;}
._e{width:15.912213pt;}
._3{width:19.077866pt;}
._12{width:20.597013pt;}
._11{width:21.536320pt;}
._13{width:23.513600pt;}
._14{width:24.796160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y12f{bottom:4.000000pt;}
.y57{bottom:6.960000pt;}
.y9c{bottom:6.986667pt;}
.y5b{bottom:7.040000pt;}
.y74{bottom:21.920000pt;}
.y9a{bottom:22.640000pt;}
.y72{bottom:26.560000pt;}
.y61{bottom:31.280000pt;}
.y59{bottom:31.306667pt;}
.y138{bottom:44.640000pt;}
.y71{bottom:46.240000pt;}
.y98{bottom:46.960000pt;}
.y5d{bottom:55.600000pt;}
.y137{bottom:64.240000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y7e{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y136{bottom:95.520000pt;}
.ya9{bottom:110.906667pt;}
.y135{bottom:111.200000pt;}
.y54{bottom:113.866667pt;}
.y26{bottom:115.386667pt;}
.y82{bottom:115.946667pt;}
.y113{bottom:116.106667pt;}
.yc3{bottom:121.066667pt;}
.ya7{bottom:124.186667pt;}
.y134{bottom:126.800000pt;}
.y7d{bottom:129.226667pt;}
.y53{bottom:129.466667pt;}
.y25{bottom:131.066667pt;}
.y112{bottom:131.706667pt;}
.yc2{bottom:136.746667pt;}
.y133{bottom:142.400000pt;}
.y52{bottom:145.146667pt;}
.y24{bottom:146.666667pt;}
.y111{bottom:147.306667pt;}
.ya8{bottom:148.506667pt;}
.yc1{bottom:152.346667pt;}
.y81{bottom:153.546667pt;}
.y132{bottom:158.080000pt;}
.y51{bottom:160.746667pt;}
.yc0{bottom:167.946667pt;}
.y23{bottom:170.586667pt;}
.y110{bottom:170.986667pt;}
.ye9{bottom:171.066667pt;}
.ya6{bottom:172.746667pt;}
.y131{bottom:173.680000pt;}
.y50{bottom:176.346667pt;}
.y80{bottom:177.786667pt;}
.ybf{bottom:183.626667pt;}
.y10f{bottom:186.586667pt;}
.ye8{bottom:186.746667pt;}
.y130{bottom:189.360000pt;}
.ya5{bottom:197.066667pt;}
.y139{bottom:198.426667pt;}
.y4f{bottom:200.026667pt;}
.y7f{bottom:202.106667pt;}
.y10e{bottom:202.266667pt;}
.ye7{bottom:202.346667pt;}
.y12e{bottom:211.786667pt;}
.y22{bottom:213.466667pt;}
.ybe{bottom:215.226667pt;}
.ye6{bottom:218.026667pt;}
.ya4{bottom:221.386667pt;}
.y10d{bottom:225.866667pt;}
.y7b{bottom:226.426667pt;}
.y21{bottom:229.386667pt;}
.ybd{bottom:230.906667pt;}
.y4e{bottom:231.946667pt;}
.ye5{bottom:233.626667pt;}
.y10c{bottom:241.466667pt;}
.ya3{bottom:245.706667pt;}
.ye4{bottom:249.226667pt;}
.ybc{bottom:249.866667pt;}
.y7c{bottom:250.746667pt;}
.ybb{bottom:262.106667pt;}
.y20{bottom:262.346667pt;}
.y10b{bottom:265.146667pt;}
.ya2{bottom:269.946667pt;}
.y4d{bottom:274.826667pt;}
.y79{bottom:274.986667pt;}
.yba{bottom:277.786667pt;}
.y1f{bottom:277.946667pt;}
.y10a{bottom:280.746667pt;}
.ye3{bottom:280.826667pt;}
.y4c{bottom:290.426667pt;}
.ya1{bottom:294.266667pt;}
.y7a{bottom:299.306667pt;}
.y109{bottom:304.666667pt;}
.y4b{bottom:306.106667pt;}
.yb9{bottom:309.386667pt;}
.y1e{bottom:309.546667pt;}
.ye2{bottom:313.226667pt;}
.ya0{bottom:318.586667pt;}
.y4a{bottom:321.706667pt;}
.y77{bottom:323.626667pt;}
.yb8{bottom:325.066667pt;}
.y1d{bottom:325.226667pt;}
.ye1{bottom:328.906667pt;}
.y49{bottom:337.386667pt;}
.yb7{bottom:340.666667pt;}
.y1c{bottom:340.826667pt;}
.y9f{bottom:342.906667pt;}
.ye0{bottom:344.506667pt;}
.y108{bottom:347.626667pt;}
.y78{bottom:347.946667pt;}
.y48{bottom:352.986667pt;}
.yb6{bottom:356.266667pt;}
.y1b{bottom:356.506667pt;}
.ydf{bottom:360.106667pt;}
.y107{bottom:363.226667pt;}
.y9e{bottom:367.146667pt;}
.y47{bottom:368.586667pt;}
.yb5{bottom:371.946667pt;}
.y1a{bottom:372.106667pt;}
.y75{bottom:372.186667pt;}
.yde{bottom:375.786667pt;}
.y106{bottom:378.826667pt;}
.y46{bottom:384.266667pt;}
.yb4{bottom:387.546667pt;}
.y9d{bottom:391.466667pt;}
.y76{bottom:396.506667pt;}
.ydd{bottom:399.706667pt;}
.y105{bottom:402.746667pt;}
.y19{bottom:403.706667pt;}
.y45{bottom:407.866667pt;}
.y9b{bottom:415.786667pt;}
.yb3{bottom:419.253333pt;}
.y18{bottom:419.413333pt;}
.y70{bottom:420.853333pt;}
.y12d{bottom:429.733333pt;}
.ydc{bottom:432.613333pt;}
.yb2{bottom:434.853333pt;}
.y17{bottom:435.013333pt;}
.y104{bottom:435.733333pt;}
.y44{bottom:439.573333pt;}
.y97{bottom:440.053333pt;}
.ydb{bottom:448.293333pt;}
.yb1{bottom:450.453333pt;}
.y103{bottom:451.333333pt;}
.y43{bottom:455.173333pt;}
.y73{bottom:460.053333pt;}
.yda{bottom:463.893333pt;}
.yb0{bottom:466.133333pt;}
.y16{bottom:466.693333pt;}
.y102{bottom:466.933333pt;}
.y12c{bottom:472.613333pt;}
.yd9{bottom:479.493333pt;}
.y99{bottom:480.053333pt;}
.y15{bottom:482.293333pt;}
.y101{bottom:482.613333pt;}
.y6f{bottom:484.373333pt;}
.y42{bottom:487.573333pt;}
.y12b{bottom:488.293333pt;}
.yaf{bottom:490.053333pt;}
.yd8{bottom:495.173333pt;}
.y14{bottom:497.893333pt;}
.y100{bottom:498.213333pt;}
.y41{bottom:503.173333pt;}
.y12a{bottom:511.893333pt;}
.y13{bottom:513.573333pt;}
.yff{bottom:513.893333pt;}
.y96{bottom:520.613333pt;}
.yd7{bottom:526.773333pt;}
.y129{bottom:527.493333pt;}
.y6e{bottom:527.653333pt;}
.yad{bottom:530.613333pt;}
.y40{bottom:535.573333pt;}
.yfe{bottom:537.813333pt;}
.yd6{bottom:542.453333pt;}
.y128{bottom:543.173333pt;}
.y12{bottom:545.173333pt;}
.y3f{bottom:551.173333pt;}
.y95{bottom:552.293333pt;}
.yae{bottom:554.933333pt;}
.yd5{bottom:558.053333pt;}
.y6d{bottom:559.333333pt;}
.y11{bottom:560.853333pt;}
.y3e{bottom:566.773333pt;}
.y94{bottom:567.893333pt;}
.yfd{bottom:570.693333pt;}
.yd4{bottom:573.653333pt;}
.y6c{bottom:574.933333pt;}
.y10{bottom:576.453333pt;}
.yac{bottom:579.253333pt;}
.y127{bottom:582.453333pt;}
.y93{bottom:583.573333pt;}
.y6b{bottom:590.613333pt;}
.yf{bottom:592.053333pt;}
.yfc{bottom:594.613333pt;}
.y126{bottom:598.053333pt;}
.y3d{bottom:599.173333pt;}
.yab{bottom:603.493333pt;}
.yd3{bottom:605.333333pt;}
.y6a{bottom:606.213333pt;}
.ye{bottom:607.733333pt;}
.y3c{bottom:614.773333pt;}
.yd2{bottom:620.933333pt;}
.y125{bottom:621.653333pt;}
.y69{bottom:621.813333pt;}
.y92{bottom:622.773333pt;}
.yd{bottom:623.333333pt;}
.yaa{bottom:627.813333pt;}
.y3b{bottom:630.373333pt;}
.yd1{bottom:636.613333pt;}
.y124{bottom:637.333333pt;}
.y68{bottom:637.493333pt;}
.yc{bottom:639.013333pt;}
.y91{bottom:652.133333pt;}
.yd0{bottom:652.213333pt;}
.y123{bottom:652.933333pt;}
.y67{bottom:653.093333pt;}
.y3a{bottom:662.773333pt;}
.yb{bottom:662.933333pt;}
.y66{bottom:668.693333pt;}
.yfb{bottom:670.693333pt;}
.y90{bottom:676.373333pt;}
.y122{bottom:676.613333pt;}
.y39{bottom:678.453333pt;}
.ycf{bottom:683.813333pt;}
.y65{bottom:684.373333pt;}
.yfa{bottom:686.373333pt;}
.y121{bottom:692.213333pt;}
.y38{bottom:694.053333pt;}
.yce{bottom:699.493333pt;}
.y64{bottom:699.973333pt;}
.y8f{bottom:700.693333pt;}
.yf9{bottom:701.973333pt;}
.ya{bottom:705.813333pt;}
.y120{bottom:707.813333pt;}
.ycd{bottom:715.093333pt;}
.yf8{bottom:717.573333pt;}
.y63{bottom:723.653333pt;}
.y8e{bottom:725.013333pt;}
.y37{bottom:726.373333pt;}
.y11f{bottom:731.493333pt;}
.yf7{bottom:733.253333pt;}
.y9{bottom:737.653333pt;}
.ycc{bottom:746.693333pt;}
.y11e{bottom:747.093333pt;}
.y8d{bottom:749.333333pt;}
.y36{bottom:751.093333pt;}
.y60{bottom:752.933333pt;}
.yf6{bottom:757.173333pt;}
.ycb{bottom:762.373333pt;}
.y11d{bottom:762.693333pt;}
.y8{bottom:769.653333pt;}
.y8c{bottom:773.573333pt;}
.y62{bottom:777.253333pt;}
.yca{bottom:777.973333pt;}
.y11c{bottom:778.373333pt;}
.yf5{bottom:790.053333pt;}
.yc9{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.y8b{bottom:797.893333pt;}
.y5c{bottom:801.493333pt;}
.y11b{bottom:801.973333pt;}
.y7{bottom:805.013333pt;}
.yf4{bottom:805.733333pt;}
.yc8{bottom:809.253333pt;}
.y34{bottom:809.653333pt;}
.y11a{bottom:817.653333pt;}
.y6{bottom:821.013333pt;}
.yf3{bottom:821.333333pt;}
.y8a{bottom:822.213333pt;}
.y33{bottom:825.253333pt;}
.y5f{bottom:825.813333pt;}
.y119{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.y32{bottom:840.853333pt;}
.y88{bottom:846.533333pt;}
.y5e{bottom:850.133333pt;}
.yf2{bottom:852.933333pt;}
.y31{bottom:856.533333pt;}
.y118{bottom:856.853333pt;}
.y4{bottom:865.733333pt;}
.yf1{bottom:868.613333pt;}
.y89{bottom:870.773333pt;}
.y30{bottom:872.133333pt;}
.y117{bottom:872.533333pt;}
.y58{bottom:874.453333pt;}
.yc7{bottom:887.813333pt;}
.y116{bottom:888.133333pt;}
.y5a{bottom:898.720000pt;}
.y3{bottom:899.760000pt;}
.yf0{bottom:900.240000pt;}
.yc6{bottom:903.440000pt;}
.y2f{bottom:903.840000pt;}
.y87{bottom:911.440000pt;}
.y115{bottom:911.840000pt;}
.yef{bottom:915.840000pt;}
.yc5{bottom:919.040000pt;}
.y2e{bottom:919.440000pt;}
.y56{bottom:923.040000pt;}
.y114{bottom:927.440000pt;}
.yee{bottom:931.520000pt;}
.y86{bottom:943.040000pt;}
.yed{bottom:947.120000pt;}
.yc4{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y85{bottom:958.720000pt;}
.yec{bottom:962.800000pt;}
.y55{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y84{bottom:974.320000pt;}
.yeb{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y83{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yea{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h11{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h19{height:33.059063pt;}
.h3{height:34.804688pt;}
.h15{height:38.560000pt;}
.h18{height:39.280000pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h13{height:47.920000pt;}
.hf{height:47.946667pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hb{height:54.927899pt;}
.hc{height:55.631875pt;}
.h1a{height:55.687500pt;}
.ha{height:60.961875pt;}
.h14{height:62.880000pt;}
.h17{height:63.600000pt;}
.h4{height:64.875937pt;}
.h12{height:72.240000pt;}
.h16{height:96.560000pt;}
.h1b{height:206.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:46.000000pt;}
.w5{width:50.560000pt;}
.w12{width:50.640000pt;}
.wf{width:59.840000pt;}
.w7{width:60.640000pt;}
.w15{width:65.360000pt;}
.w8{width:78.346667pt;}
.w4{width:78.666667pt;}
.w10{width:82.880000pt;}
.w11{width:82.906667pt;}
.w18{width:83.360000pt;}
.w1d{width:85.786667pt;}
.w1e{width:91.520000pt;}
.wb{width:94.320000pt;}
.w19{width:94.346667pt;}
.w1f{width:94.400000pt;}
.wc{width:100.480000pt;}
.w1a{width:100.560000pt;}
.wd{width:145.600000pt;}
.w20{width:147.786667pt;}
.w16{width:150.240000pt;}
.w17{width:161.386667pt;}
.we{width:166.426667pt;}
.w1c{width:178.026667pt;}
.w9{width:190.960000pt;}
.wa{width:195.520000pt;}
.w13{width:195.546667pt;}
.w1b{width:195.600000pt;}
.w3{width:269.946667pt;}
.w14{width:396.266667pt;}
.w21{width:523.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.906667pt;}
.x1{left:60.480000pt;}
.x18{left:67.760000pt;}
.x4{left:84.479988pt;}
.x20{left:98.879988pt;}
.x5{left:108.479988pt;}
.x21{left:140.906667pt;}
.x6{left:142.720000pt;}
.x1d{left:162.746667pt;}
.x2{left:171.306655pt;}
.xd{left:179.946667pt;}
.x13{left:210.426667pt;}
.xc{left:221.706667pt;}
.x19{left:263.946667pt;}
.x12{left:274.986667pt;}
.x17{left:305.386667pt;}
.x14{left:356.746667pt;}
.xe{left:376.186667pt;}
.x8{left:413.386667pt;}
.x1b{left:414.906667pt;}
.x16{left:440.266667pt;}
.xf{left:455.493333pt;}
.x1f{left:462.373333pt;}
.x9{left:492.693333pt;}
.x10{left:506.693333pt;}
.x15{left:523.813333pt;}
.xa{left:543.893333pt;}
.x11{left:553.413333pt;}
.x1e{left:554.533333pt;}
.x1c{left:576.933333pt;}
.xb{left:590.613333pt;}
.x1a{left:660.933333pt;}
.x3{left:711.413322pt;}
}




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