
    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_8ca2a0556dc19d31d8269600.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_be4a9d1a462e842a7b02cc56.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_09a29f9b31810401da18bab6.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_0c5e0d9348363dc606bea208.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_c99417fbd927436ccb84366d.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_1706b9c0fce5dd760aff81d3.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_1ad38b5e88c97df4cf8d4491.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a2d36ff61ca953647ba0eec6.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1d{letter-spacing:-0.444600px;}
.ls15{letter-spacing:-0.299400px;}
.ls13{letter-spacing:-0.186600px;}
.ls20{letter-spacing:-0.159600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.067200px;}
.ls14{letter-spacing:-0.063600px;}
.ls1a{letter-spacing:-0.060600px;}
.ls7{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.116400px;}
.ls16{letter-spacing:0.118200px;}
.ls18{letter-spacing:0.136080px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.160800px;}
.ls12{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1c{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;}
}
.wse{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.387200px;}
.wsc{word-spacing:-13.344600px;}
.ws10{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.165800px;}
.wsb{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.159200px;}
.ws11{word-spacing:-13.066800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._1{margin-left:-3.606588px;}
._5{margin-left:-2.256600px;}
._0{margin-left:-1.110000px;}
._2{width:1.019573px;}
._7{width:2.404800px;}
._b{width:3.429428px;}
._3{width:4.629000px;}
._4{width:5.892000px;}
._a{width:6.942602px;}
._9{width:8.055599px;}
._c{width:9.318600px;}
._d{width:10.701480px;}
._8{width:11.783400px;}
._12{width:14.503333px;}
._11{width:15.767334px;}
._6{width:16.905666px;}
._e{width:17.975587px;}
._f{width:19.959840px;}
._10{width:21.883680px;}
._17{width:22.965840px;}
._13{width:24.228360px;}
._14{width:25.334040px;}
._15{width:66.252240px;}
._16{width:88.797240px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:7.830000px;}
.y7c{bottom:7.920000px;}
.y87{bottom:7.950000px;}
.yea{bottom:13.050000px;}
.yfd{bottom:13.140000px;}
.ye6{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd3{bottom:119.280000px;}
.y83{bottom:120.090000px;}
.y123{bottom:120.450000px;}
.yd2{bottom:136.830000px;}
.y82{bottom:137.730000px;}
.y122{bottom:138.000000px;}
.y28{bottom:144.390000px;}
.y55{bottom:145.470000px;}
.y146{bottom:153.840000px;}
.yd1{bottom:154.380000px;}
.y27{bottom:161.940000px;}
.y54{bottom:163.920000px;}
.y145{bottom:171.480000px;}
.yd0{bottom:172.020000px;}
.y81{bottom:172.560000px;}
.y121{bottom:173.550000px;}
.y26{bottom:179.580000px;}
.y80{bottom:184.710000px;}
.ycf{bottom:189.570000px;}
.y120{bottom:191.190000px;}
.y53{bottom:191.280000px;}
.y25{bottom:197.130000px;}
.y144{bottom:198.030000px;}
.yaa{bottom:199.380000px;}
.y11f{bottom:208.740000px;}
.y7f{bottom:212.070000px;}
.y24{bottom:214.680000px;}
.y143{bottom:215.580000px;}
.ya9{bottom:216.930000px;}
.y52{bottom:223.860000px;}
.yce{bottom:224.400000px;}
.y11e{bottom:226.380000px;}
.y23{bottom:232.320000px;}
.ya8{bottom:234.570000px;}
.ycd{bottom:238.530000px;}
.y7e{bottom:239.430000px;}
.y142{bottom:242.220000px;}
.y51{bottom:242.310000px;}
.y11d{bottom:243.930000px;}
.y22{bottom:249.870000px;}
.ycc{bottom:250.680000px;}
.ya7{bottom:252.120000px;}
.y141{bottom:259.770000px;}
.y11c{bottom:261.480000px;}
.y7d{bottom:266.790000px;}
.y21{bottom:267.510000px;}
.ya6{bottom:269.670000px;}
.y50{bottom:269.760000px;}
.ycb{bottom:278.040000px;}
.y11b{bottom:279.120000px;}
.y140{bottom:286.410000px;}
.ya5{bottom:287.310000px;}
.y7b{bottom:294.060000px;}
.y4f{bottom:302.250000px;}
.y20{bottom:303.060000px;}
.ya4{bottom:304.860000px;}
.yca{bottom:305.400000px;}
.yf4{bottom:309.180000px;}
.y13f{bottom:312.960000px;}
.y11a{bottom:314.670000px;}
.y4e{bottom:319.980000px;}
.y1f{bottom:320.610000px;}
.y79{bottom:321.420000px;}
.ya3{bottom:322.410000px;}
.yf3{bottom:326.730000px;}
.y119{bottom:332.310000px;}
.y4d{bottom:337.530000px;}
.y1e{bottom:338.250000px;}
.y13e{bottom:339.510000px;}
.yf2{bottom:344.280000px;}
.ya2{bottom:349.050000px;}
.y118{bottom:349.860000px;}
.yc9{bottom:354.090000px;}
.y1d{bottom:355.800000px;}
.y13d{bottom:357.150000px;}
.yf1{bottom:361.920000px;}
.y4c{bottom:364.890000px;}
.y107{bottom:367.410000px;}
.y78{bottom:370.110000px;}
.y1c{bottom:373.440000px;}
.yf0{bottom:379.470000px;}
.y13c{bottom:383.700000px;}
.ya1{bottom:384.600000px;}
.y106{bottom:384.960000px;}
.y117{bottom:385.050000px;}
.y77{bottom:387.750000px;}
.yc8{bottom:389.640000px;}
.y1b{bottom:390.990000px;}
.yef{bottom:397.020000px;}
.y4b{bottom:400.440000px;}
.y13b{bottom:401.340000px;}
.ya0{bottom:402.240000px;}
.y105{bottom:402.600000px;}
.yc7{bottom:407.190000px;}
.y1a{bottom:408.540000px;}
.y76{bottom:414.300000px;}
.y4a{bottom:418.080000px;}
.y9f{bottom:419.790000px;}
.y104{bottom:420.150000px;}
.y116{bottom:420.600000px;}
.yc6{bottom:424.830000px;}
.y162{bottom:425.370000px;}
.y19{bottom:426.180000px;}
.y13a{bottom:427.890000px;}
.yee{bottom:431.940000px;}
.y49{bottom:435.630000px;}
.y9e{bottom:437.340000px;}
.y103{bottom:437.700000px;}
.y115{bottom:438.240000px;}
.yc5{bottom:442.380000px;}
.y161{bottom:442.920000px;}
.yed{bottom:444.090000px;}
.y139{bottom:445.440000px;}
.y75{bottom:450.210000px;}
.y18{bottom:453.090000px;}
.y48{bottom:454.080000px;}
.y9d{bottom:454.980000px;}
.y102{bottom:455.340000px;}
.y114{bottom:455.790000px;}
.yc4{bottom:460.020000px;}
.y160{bottom:460.470000px;}
.y138{bottom:463.080000px;}
.yec{bottom:471.480000px;}
.y47{bottom:471.750000px;}
.y9c{bottom:472.560000px;}
.y113{bottom:473.370000px;}
.y15f{bottom:487.140000px;}
.y46{bottom:489.300000px;}
.y137{bottom:489.660000px;}
.y101{bottom:490.200000px;}
.y112{bottom:491.010000px;}
.yc3{bottom:495.600000px;}
.y74{bottom:498.480000px;}
.ye9{bottom:498.840000px;}
.y17{bottom:501.720000px;}
.y100{bottom:502.350000px;}
.y15e{bottom:504.690000px;}
.y136{bottom:507.300000px;}
.y9b{bottom:507.480000px;}
.y45{bottom:507.750000px;}
.yc2{bottom:513.150000px;}
.y9a{bottom:519.630000px;}
.y15d{bottom:522.330000px;}
.y135{bottom:524.850000px;}
.y73{bottom:525.030000px;}
.y44{bottom:525.300000px;}
.yeb{bottom:526.110000px;}
.y111{bottom:526.560000px;}
.yff{bottom:529.710000px;}
.yc1{bottom:530.790000px;}
.y16{bottom:538.710000px;}
.y43{bottom:542.850000px;}
.y110{bottom:544.200000px;}
.y99{bottom:546.990000px;}
.yc0{bottom:548.340000px;}
.y15c{bottom:548.880000px;}
.y134{bottom:551.760000px;}
.ye8{bottom:553.470000px;}
.y15{bottom:556.260000px;}
.yfc{bottom:557.070000px;}
.y72{bottom:560.580000px;}
.y10f{bottom:561.750000px;}
.y15b{bottom:566.430000px;}
.y42{bottom:570.300000px;}
.y14{bottom:573.900000px;}
.y98{bottom:574.260000px;}
.y71{bottom:579.120000px;}
.y10e{bottom:579.300000px;}
.ye5{bottom:580.830000px;}
.ybf{bottom:583.170000px;}
.y15a{bottom:584.070000px;}
.yfe{bottom:584.430000px;}
.y13{bottom:591.450000px;}
.y70{bottom:596.670000px;}
.y10d{bottom:596.940000px;}
.ybe{bottom:597.300000px;}
.y133{bottom:600.000000px;}
.y97{bottom:601.620000px;}
.y41{bottom:605.940000px;}
.ye7{bottom:608.100000px;}
.y12{bottom:609.090000px;}
.ybd{bottom:609.450000px;}
.y159{bottom:610.620000px;}
.yfb{bottom:611.700000px;}
.y6f{bottom:615.120000px;}
.y11{bottom:626.640000px;}
.y132{bottom:626.910000px;}
.y158{bottom:628.260000px;}
.y96{bottom:628.980000px;}
.y40{bottom:632.490000px;}
.y6e{bottom:632.670000px;}
.ye4{bottom:635.460000px;}
.ybc{bottom:636.810000px;}
.yf9{bottom:639.060000px;}
.y10{bottom:644.190000px;}
.y10c{bottom:650.040000px;}
.y6d{bottom:651.120000px;}
.y157{bottom:654.810000px;}
.yf{bottom:661.830000px;}
.ybb{bottom:664.170000px;}
.y131{bottom:664.260000px;}
.yfa{bottom:666.420000px;}
.y10b{bottom:667.680000px;}
.y3f{bottom:667.950000px;}
.y6c{bottom:668.670000px;}
.y156{bottom:672.360000px;}
.y95{bottom:677.670000px;}
.ye{bottom:679.380000px;}
.ye3{bottom:684.150000px;}
.y10a{bottom:685.230000px;}
.y3e{bottom:685.590000px;}
.y6b{bottom:687.120000px;}
.y155{bottom:690.000000px;}
.yf8{bottom:693.690000px;}
.y94{bottom:695.220000px;}
.yd{bottom:697.020000px;}
.y109{bottom:702.870000px;}
.y3d{bottom:704.040000px;}
.y6a{bottom:704.670000px;}
.ye2{bottom:710.790000px;}
.y130{bottom:712.590000px;}
.yba{bottom:712.860000px;}
.yc{bottom:714.570000px;}
.y154{bottom:716.550000px;}
.y3c{bottom:722.490000px;}
.y108{bottom:729.780000px;}
.y12f{bottom:730.140000px;}
.y93{bottom:730.860000px;}
.y69{bottom:732.030000px;}
.yb{bottom:732.120000px;}
.y153{bottom:734.190000px;}
.yb9{bottom:739.410000px;}
.yf7{bottom:742.470000px;}
.ye1{bottom:746.340000px;}
.y12e{bottom:747.690000px;}
.y92{bottom:748.410000px;}
.y3b{bottom:750.210000px;}
.y152{bottom:751.740000px;}
.ya{bottom:759.120000px;}
.ye0{bottom:763.980000px;}
.y12d{bottom:765.330000px;}
.y91{bottom:766.050000px;}
.y68{bottom:767.580000px;}
.yb8{bottom:775.050000px;}
.yf6{bottom:778.020000px;}
.y151{bottom:778.290000px;}
.ydf{bottom:781.530000px;}
.y12c{bottom:782.880000px;}
.y90{bottom:783.600000px;}
.y67{bottom:785.220000px;}
.y3a{bottom:787.110000px;}
.yb7{bottom:792.600000px;}
.y150{bottom:795.930000px;}
.yde{bottom:799.080000px;}
.y12b{bottom:800.520000px;}
.y8f{bottom:801.150000px;}
.y66{bottom:802.860000px;}
.y39{bottom:804.750000px;}
.y9{bottom:805.830000px;}
.yb6{bottom:810.150000px;}
.yf5{bottom:810.240000px;}
.ydd{bottom:816.720000px;}
.y8e{bottom:818.790000px;}
.y65{bottom:820.410000px;}
.y14f{bottom:822.480000px;}
.y38{bottom:823.200000px;}
.yb5{bottom:827.790000px;}
.y12a{bottom:836.070000px;}
.y64{bottom:837.960000px;}
.y14e{bottom:840.030000px;}
.y8{bottom:841.380000px;}
.y37{bottom:841.650000px;}
.yb4{bottom:845.340000px;}
.ydc{bottom:852.270000px;}
.y8d{bottom:853.620000px;}
.y63{bottom:856.410000px;}
.y14d{bottom:857.670000px;}
.yb3{bottom:862.890000px;}
.y8c{bottom:866.580000px;}
.y36{bottom:869.370000px;}
.ydb{bottom:869.820000px;}
.y129{bottom:871.260000px;}
.y62{bottom:873.960000px;}
.y7{bottom:877.200000px;}
.y14c{bottom:884.220000px;}
.yda{bottom:887.460000px;}
.y128{bottom:888.810000px;}
.y61{bottom:891.600000px;}
.y8b{bottom:893.850000px;}
.yb2{bottom:897.810000px;}
.yd9{bottom:905.010000px;}
.y35{bottom:906.450000px;}
.y60{bottom:909.150000px;}
.yb1{bottom:909.960000px;}
.y14b{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y8a{bottom:921.210000px;}
.y34{bottom:924.000000px;}
.y5f{bottom:926.700000px;}
.y14a{bottom:928.410000px;}
.yb0{bottom:937.320000px;}
.yd8{bottom:939.930000px;}
.y127{bottom:941.550000px;}
.y5e{bottom:945.150000px;}
.y89{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y33{bottom:950.550000px;}
.yd7{bottom:953.970000px;}
.y149{bottom:954.960000px;}
.y5d{bottom:962.790000px;}
.yaf{bottom:964.680000px;}
.yd6{bottom:966.120000px;}
.y126{bottom:968.460000px;}
.y148{bottom:972.600000px;}
.y88{bottom:975.930000px;}
.y5c{bottom:980.340000px;}
.y32{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y147{bottom:990.150000px;}
.yae{bottom:991.950000px;}
.yd5{bottom:993.480000px;}
.y5b{bottom:997.890000px;}
.y86{bottom:1003.200000px;}
.y3{bottom:1012.320000px;}
.y125{bottom:1016.820000px;}
.yad{bottom:1019.340000px;}
.yd4{bottom:1020.870000px;}
.y5a{bottom:1025.370000px;}
.y124{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yac{bottom:1046.700000px;}
.y85{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y59{bottom:1060.920000px;}
.y84{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.yab{bottom:1073.970000px;}
.y58{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y57{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y56{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h11{height:26.580000px;}
.he{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hf{height:41.661211px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h12{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w32{width:14.310000px;}
.w14{width:19.170000px;}
.w31{width:25.650000px;}
.w16{width:35.820000px;}
.w1f{width:35.910000px;}
.w7{width:36.000000px;}
.w6{width:36.030000px;}
.w33{width:40.770000px;}
.w1e{width:43.470000px;}
.w27{width:44.010000px;}
.w2a{width:44.100000px;}
.w8{width:44.370000px;}
.w30{width:49.050000px;}
.w29{width:50.760000px;}
.w28{width:51.480000px;}
.w1c{width:51.750000px;}
.w2f{width:52.380000px;}
.w2b{width:54.990000px;}
.wd{width:56.070000px;}
.w1a{width:58.260000px;}
.w20{width:58.350000px;}
.we{width:59.940000px;}
.wc{width:59.970000px;}
.w17{width:63.360000px;}
.w18{width:63.390000px;}
.w19{width:68.310000px;}
.w26{width:68.430000px;}
.w5{width:68.760000px;}
.w11{width:71.460000px;}
.w12{width:79.500000px;}
.w23{width:82.170000px;}
.w13{width:84.870000px;}
.wb{width:87.930000px;}
.wa{width:93.960000px;}
.w1d{width:96.780000px;}
.w10{width:110.610000px;}
.w4{width:116.460000px;}
.w1b{width:196.740000px;}
.w21{width:196.830000px;}
.w15{width:201.180000px;}
.w2e{width:296.640000px;}
.w2d{width:302.430000px;}
.w3{width:304.590000px;}
.w24{width:317.820000px;}
.wf{width:348.690000px;}
.w25{width:354.270000px;}
.w9{width:360.930000px;}
.w2c{width:751.920000px;}
.w22{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.xe{left:7.740000px;}
.x1{left:68.040000px;}
.x40{left:70.650000px;}
.x35{left:73.799987px;}
.x33{left:75.059987px;}
.x4b{left:82.799987px;}
.x2a{left:84.059987px;}
.x4{left:95.039987px;}
.x4c{left:111.239987px;}
.x49{left:116.099987px;}
.x3e{left:117.629987px;}
.x5{left:122.039987px;}
.x21{left:132.390000px;}
.x17{left:136.710000px;}
.x2b{left:141.029987px;}
.x37{left:151.650000px;}
.x41{left:153.540000px;}
.x18{left:156.600000px;}
.x36{left:169.859987px;}
.x2c{left:181.470000px;}
.x22{left:191.460000px;}
.x34{left:197.129987px;}
.x2{left:202.799987px;}
.xd{left:266.160000px;}
.x13{left:272.280000px;}
.x6{left:294.330000px;}
.xc{left:302.789987px;}
.x20{left:352.559987px;}
.x19{left:358.500000px;}
.xf{left:360.930000px;}
.x2d{left:379.020000px;}
.x14{left:383.610000px;}
.x23{left:389.010000px;}
.x1a{left:395.130000px;}
.x8{left:411.510000px;}
.x1b{left:431.670000px;}
.x24{left:441.480000px;}
.x10{left:449.580000px;}
.x15{left:455.880000px;}
.x38{left:470.190000px;}
.x9{left:481.080000px;}
.x2e{left:484.050000px;}
.x25{left:493.950000px;}
.x1c{left:495.840000px;}
.x11{left:510.360000px;}
.xa{left:517.830000px;}
.x42{left:525.930000px;}
.x16{left:536.100000px;}
.x39{left:539.430000px;}
.xb{left:554.550000px;}
.x1d{left:559.950000px;}
.x12{left:567.150000px;}
.x43{left:570.750000px;}
.x2f{left:581.550000px;}
.x3a{left:584.250000px;}
.x26{left:591.540000px;}
.x44{left:623.040000px;}
.x1e{left:624.120000px;}
.x30{left:634.110000px;}
.x27{left:635.730000px;}
.x31{left:670.740000px;}
.x28{left:672.450000px;}
.x45{left:676.230000px;}
.x3f{left:679.559987px;}
.x3b{left:688.020000px;}
.x1f{left:693.150000px;}
.x4a{left:695.309987px;}
.x32{left:707.460000px;}
.x29{left:709.080000px;}
.x46{left:726.090000px;}
.x3c{left:732.930000px;}
.x47{left:752.550000px;}
.x48{left:767.580000px;}
.x3d{left:769.470000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-0.395200pt;}
.ls15{letter-spacing:-0.266133pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls20{letter-spacing:-0.141867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.059733pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls1a{letter-spacing:-0.053867pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls16{letter-spacing:0.105067pt;}
.ls18{letter-spacing:0.120960pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.142933pt;}
.ls12{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.wse{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.899733pt;}
.wsc{word-spacing:-11.861867pt;}
.ws10{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.702933pt;}
.wsb{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.697067pt;}
.ws11{word-spacing:-11.614933pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._1{margin-left:-3.205856pt;}
._5{margin-left:-2.005866pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.906287pt;}
._7{width:2.137600pt;}
._b{width:3.048380pt;}
._3{width:4.114666pt;}
._4{width:5.237334pt;}
._a{width:6.171202pt;}
._9{width:7.160532pt;}
._c{width:8.283200pt;}
._d{width:9.512427pt;}
._8{width:10.474133pt;}
._12{width:12.891852pt;}
._11{width:14.015408pt;}
._6{width:15.027258pt;}
._e{width:15.978300pt;}
._f{width:17.742080pt;}
._10{width:19.452160pt;}
._17{width:20.414080pt;}
._13{width:21.536320pt;}
._14{width:22.519147pt;}
._15{width:58.890880pt;}
._16{width:78.930880pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:6.960000pt;}
.y7c{bottom:7.040000pt;}
.y87{bottom:7.066667pt;}
.yea{bottom:11.600000pt;}
.yfd{bottom:11.680000pt;}
.ye6{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd3{bottom:106.026667pt;}
.y83{bottom:106.746667pt;}
.y123{bottom:107.066667pt;}
.yd2{bottom:121.626667pt;}
.y82{bottom:122.426667pt;}
.y122{bottom:122.666667pt;}
.y28{bottom:128.346667pt;}
.y55{bottom:129.306667pt;}
.y146{bottom:136.746667pt;}
.yd1{bottom:137.226667pt;}
.y27{bottom:143.946667pt;}
.y54{bottom:145.706667pt;}
.y145{bottom:152.426667pt;}
.yd0{bottom:152.906667pt;}
.y81{bottom:153.386667pt;}
.y121{bottom:154.266667pt;}
.y26{bottom:159.626667pt;}
.y80{bottom:164.186667pt;}
.ycf{bottom:168.506667pt;}
.y120{bottom:169.946667pt;}
.y53{bottom:170.026667pt;}
.y25{bottom:175.226667pt;}
.y144{bottom:176.026667pt;}
.yaa{bottom:177.226667pt;}
.y11f{bottom:185.546667pt;}
.y7f{bottom:188.506667pt;}
.y24{bottom:190.826667pt;}
.y143{bottom:191.626667pt;}
.ya9{bottom:192.826667pt;}
.y52{bottom:198.986667pt;}
.yce{bottom:199.466667pt;}
.y11e{bottom:201.226667pt;}
.y23{bottom:206.506667pt;}
.ya8{bottom:208.506667pt;}
.ycd{bottom:212.026667pt;}
.y7e{bottom:212.826667pt;}
.y142{bottom:215.306667pt;}
.y51{bottom:215.386667pt;}
.y11d{bottom:216.826667pt;}
.y22{bottom:222.106667pt;}
.ycc{bottom:222.826667pt;}
.ya7{bottom:224.106667pt;}
.y141{bottom:230.906667pt;}
.y11c{bottom:232.426667pt;}
.y7d{bottom:237.146667pt;}
.y21{bottom:237.786667pt;}
.ya6{bottom:239.706667pt;}
.y50{bottom:239.786667pt;}
.ycb{bottom:247.146667pt;}
.y11b{bottom:248.106667pt;}
.y140{bottom:254.586667pt;}
.ya5{bottom:255.386667pt;}
.y7b{bottom:261.386667pt;}
.y4f{bottom:268.666667pt;}
.y20{bottom:269.386667pt;}
.ya4{bottom:270.986667pt;}
.yca{bottom:271.466667pt;}
.yf4{bottom:274.826667pt;}
.y13f{bottom:278.186667pt;}
.y11a{bottom:279.706667pt;}
.y4e{bottom:284.426667pt;}
.y1f{bottom:284.986667pt;}
.y79{bottom:285.706667pt;}
.ya3{bottom:286.586667pt;}
.yf3{bottom:290.426667pt;}
.y119{bottom:295.386667pt;}
.y4d{bottom:300.026667pt;}
.y1e{bottom:300.666667pt;}
.y13e{bottom:301.786667pt;}
.yf2{bottom:306.026667pt;}
.ya2{bottom:310.266667pt;}
.y118{bottom:310.986667pt;}
.yc9{bottom:314.746667pt;}
.y1d{bottom:316.266667pt;}
.y13d{bottom:317.466667pt;}
.yf1{bottom:321.706667pt;}
.y4c{bottom:324.346667pt;}
.y107{bottom:326.586667pt;}
.y78{bottom:328.986667pt;}
.y1c{bottom:331.946667pt;}
.yf0{bottom:337.306667pt;}
.y13c{bottom:341.066667pt;}
.ya1{bottom:341.866667pt;}
.y106{bottom:342.186667pt;}
.y117{bottom:342.266667pt;}
.y77{bottom:344.666667pt;}
.yc8{bottom:346.346667pt;}
.y1b{bottom:347.546667pt;}
.yef{bottom:352.906667pt;}
.y4b{bottom:355.946667pt;}
.y13b{bottom:356.746667pt;}
.ya0{bottom:357.546667pt;}
.y105{bottom:357.866667pt;}
.yc7{bottom:361.946667pt;}
.y1a{bottom:363.146667pt;}
.y76{bottom:368.266667pt;}
.y4a{bottom:371.626667pt;}
.y9f{bottom:373.146667pt;}
.y104{bottom:373.466667pt;}
.y116{bottom:373.866667pt;}
.yc6{bottom:377.626667pt;}
.y162{bottom:378.106667pt;}
.y19{bottom:378.826667pt;}
.y13a{bottom:380.346667pt;}
.yee{bottom:383.946667pt;}
.y49{bottom:387.226667pt;}
.y9e{bottom:388.746667pt;}
.y103{bottom:389.066667pt;}
.y115{bottom:389.546667pt;}
.yc5{bottom:393.226667pt;}
.y161{bottom:393.706667pt;}
.yed{bottom:394.746667pt;}
.y139{bottom:395.946667pt;}
.y75{bottom:400.186667pt;}
.y18{bottom:402.746667pt;}
.y48{bottom:403.626667pt;}
.y9d{bottom:404.426667pt;}
.y102{bottom:404.746667pt;}
.y114{bottom:405.146667pt;}
.yc4{bottom:408.906667pt;}
.y160{bottom:409.306667pt;}
.y138{bottom:411.626667pt;}
.yec{bottom:419.093333pt;}
.y47{bottom:419.333333pt;}
.y9c{bottom:420.053333pt;}
.y113{bottom:420.773333pt;}
.y15f{bottom:433.013333pt;}
.y46{bottom:434.933333pt;}
.y137{bottom:435.253333pt;}
.y101{bottom:435.733333pt;}
.y112{bottom:436.453333pt;}
.yc3{bottom:440.533333pt;}
.y74{bottom:443.093333pt;}
.ye9{bottom:443.413333pt;}
.y17{bottom:445.973333pt;}
.y100{bottom:446.533333pt;}
.y15e{bottom:448.613333pt;}
.y136{bottom:450.933333pt;}
.y9b{bottom:451.093333pt;}
.y45{bottom:451.333333pt;}
.yc2{bottom:456.133333pt;}
.y9a{bottom:461.893333pt;}
.y15d{bottom:464.293333pt;}
.y135{bottom:466.533333pt;}
.y73{bottom:466.693333pt;}
.y44{bottom:466.933333pt;}
.yeb{bottom:467.653333pt;}
.y111{bottom:468.053333pt;}
.yff{bottom:470.853333pt;}
.yc1{bottom:471.813333pt;}
.y16{bottom:478.853333pt;}
.y43{bottom:482.533333pt;}
.y110{bottom:483.733333pt;}
.y99{bottom:486.213333pt;}
.yc0{bottom:487.413333pt;}
.y15c{bottom:487.893333pt;}
.y134{bottom:490.453333pt;}
.ye8{bottom:491.973333pt;}
.y15{bottom:494.453333pt;}
.yfc{bottom:495.173333pt;}
.y72{bottom:498.293333pt;}
.y10f{bottom:499.333333pt;}
.y15b{bottom:503.493333pt;}
.y42{bottom:506.933333pt;}
.y14{bottom:510.133333pt;}
.y98{bottom:510.453333pt;}
.y71{bottom:514.773333pt;}
.y10e{bottom:514.933333pt;}
.ye5{bottom:516.293333pt;}
.ybf{bottom:518.373333pt;}
.y15a{bottom:519.173333pt;}
.yfe{bottom:519.493333pt;}
.y13{bottom:525.733333pt;}
.y70{bottom:530.373333pt;}
.y10d{bottom:530.613333pt;}
.ybe{bottom:530.933333pt;}
.y133{bottom:533.333333pt;}
.y97{bottom:534.773333pt;}
.y41{bottom:538.613333pt;}
.ye7{bottom:540.533333pt;}
.y12{bottom:541.413333pt;}
.ybd{bottom:541.733333pt;}
.y159{bottom:542.773333pt;}
.yfb{bottom:543.733333pt;}
.y6f{bottom:546.773333pt;}
.y11{bottom:557.013333pt;}
.y132{bottom:557.253333pt;}
.y158{bottom:558.453333pt;}
.y96{bottom:559.093333pt;}
.y40{bottom:562.213333pt;}
.y6e{bottom:562.373333pt;}
.ye4{bottom:564.853333pt;}
.ybc{bottom:566.053333pt;}
.yf9{bottom:568.053333pt;}
.y10{bottom:572.613333pt;}
.y10c{bottom:577.813333pt;}
.y6d{bottom:578.773333pt;}
.y157{bottom:582.053333pt;}
.yf{bottom:588.293333pt;}
.ybb{bottom:590.373333pt;}
.y131{bottom:590.453333pt;}
.yfa{bottom:592.373333pt;}
.y10b{bottom:593.493333pt;}
.y3f{bottom:593.733333pt;}
.y6c{bottom:594.373333pt;}
.y156{bottom:597.653333pt;}
.y95{bottom:602.373333pt;}
.ye{bottom:603.893333pt;}
.ye3{bottom:608.133333pt;}
.y10a{bottom:609.093333pt;}
.y3e{bottom:609.413333pt;}
.y6b{bottom:610.773333pt;}
.y155{bottom:613.333333pt;}
.yf8{bottom:616.613333pt;}
.y94{bottom:617.973333pt;}
.yd{bottom:619.573333pt;}
.y109{bottom:624.773333pt;}
.y3d{bottom:625.813333pt;}
.y6a{bottom:626.373333pt;}
.ye2{bottom:631.813333pt;}
.y130{bottom:633.413333pt;}
.yba{bottom:633.653333pt;}
.yc{bottom:635.173333pt;}
.y154{bottom:636.933333pt;}
.y3c{bottom:642.213333pt;}
.y108{bottom:648.693333pt;}
.y12f{bottom:649.013333pt;}
.y93{bottom:649.653333pt;}
.y69{bottom:650.693333pt;}
.yb{bottom:650.773333pt;}
.y153{bottom:652.613333pt;}
.yb9{bottom:657.253333pt;}
.yf7{bottom:659.973333pt;}
.ye1{bottom:663.413333pt;}
.y12e{bottom:664.613333pt;}
.y92{bottom:665.253333pt;}
.y3b{bottom:666.853333pt;}
.y152{bottom:668.213333pt;}
.ya{bottom:674.773333pt;}
.ye0{bottom:679.093333pt;}
.y12d{bottom:680.293333pt;}
.y91{bottom:680.933333pt;}
.y68{bottom:682.293333pt;}
.yb8{bottom:688.933333pt;}
.yf6{bottom:691.573333pt;}
.y151{bottom:691.813333pt;}
.ydf{bottom:694.693333pt;}
.y12c{bottom:695.893333pt;}
.y90{bottom:696.533333pt;}
.y67{bottom:697.973333pt;}
.y3a{bottom:699.653333pt;}
.yb7{bottom:704.533333pt;}
.y150{bottom:707.493333pt;}
.yde{bottom:710.293333pt;}
.y12b{bottom:711.573333pt;}
.y8f{bottom:712.133333pt;}
.y66{bottom:713.653333pt;}
.y39{bottom:715.333333pt;}
.y9{bottom:716.293333pt;}
.yb6{bottom:720.133333pt;}
.yf5{bottom:720.213333pt;}
.ydd{bottom:725.973333pt;}
.y8e{bottom:727.813333pt;}
.y65{bottom:729.253333pt;}
.y14f{bottom:731.093333pt;}
.y38{bottom:731.733333pt;}
.yb5{bottom:735.813333pt;}
.y12a{bottom:743.173333pt;}
.y64{bottom:744.853333pt;}
.y14e{bottom:746.693333pt;}
.y8{bottom:747.893333pt;}
.y37{bottom:748.133333pt;}
.yb4{bottom:751.413333pt;}
.ydc{bottom:757.573333pt;}
.y8d{bottom:758.773333pt;}
.y63{bottom:761.253333pt;}
.y14d{bottom:762.373333pt;}
.yb3{bottom:767.013333pt;}
.y8c{bottom:770.293333pt;}
.y36{bottom:772.773333pt;}
.ydb{bottom:773.173333pt;}
.y129{bottom:774.453333pt;}
.y62{bottom:776.853333pt;}
.y7{bottom:779.733333pt;}
.y14c{bottom:785.973333pt;}
.yda{bottom:788.853333pt;}
.y128{bottom:790.053333pt;}
.y61{bottom:792.533333pt;}
.y8b{bottom:794.533333pt;}
.yb2{bottom:798.053333pt;}
.yd9{bottom:804.453333pt;}
.y35{bottom:805.733333pt;}
.y60{bottom:808.133333pt;}
.yb1{bottom:808.853333pt;}
.y14b{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y8a{bottom:818.853333pt;}
.y34{bottom:821.333333pt;}
.y5f{bottom:823.733333pt;}
.y14a{bottom:825.253333pt;}
.yb0{bottom:833.173333pt;}
.yd8{bottom:835.493333pt;}
.y127{bottom:836.933333pt;}
.y5e{bottom:840.133333pt;}
.y89{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y33{bottom:844.933333pt;}
.yd7{bottom:847.973333pt;}
.y149{bottom:848.853333pt;}
.y5d{bottom:855.813333pt;}
.yaf{bottom:857.493333pt;}
.yd6{bottom:858.773333pt;}
.y126{bottom:860.853333pt;}
.y148{bottom:864.533333pt;}
.y88{bottom:867.493333pt;}
.y5c{bottom:871.413333pt;}
.y32{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y147{bottom:880.133333pt;}
.yae{bottom:881.733333pt;}
.yd5{bottom:883.093333pt;}
.y5b{bottom:887.013333pt;}
.y86{bottom:891.733333pt;}
.y3{bottom:899.840000pt;}
.y125{bottom:903.840000pt;}
.yad{bottom:906.080000pt;}
.yd4{bottom:907.440000pt;}
.y5a{bottom:911.440000pt;}
.y124{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yac{bottom:930.400000pt;}
.y85{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y59{bottom:943.040000pt;}
.y84{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.yab{bottom:954.640000pt;}
.y58{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y57{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y56{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h11{height:23.626667pt;}
.he{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hf{height:37.032187pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h12{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w32{width:12.720000pt;}
.w14{width:17.040000pt;}
.w31{width:22.800000pt;}
.w16{width:31.840000pt;}
.w1f{width:31.920000pt;}
.w7{width:32.000000pt;}
.w6{width:32.026667pt;}
.w33{width:36.240000pt;}
.w1e{width:38.640000pt;}
.w27{width:39.120000pt;}
.w2a{width:39.200000pt;}
.w8{width:39.440000pt;}
.w30{width:43.600000pt;}
.w29{width:45.120000pt;}
.w28{width:45.760000pt;}
.w1c{width:46.000000pt;}
.w2f{width:46.560000pt;}
.w2b{width:48.880000pt;}
.wd{width:49.840000pt;}
.w1a{width:51.786667pt;}
.w20{width:51.866667pt;}
.we{width:53.280000pt;}
.wc{width:53.306667pt;}
.w17{width:56.320000pt;}
.w18{width:56.346667pt;}
.w19{width:60.720000pt;}
.w26{width:60.826667pt;}
.w5{width:61.120000pt;}
.w11{width:63.520000pt;}
.w12{width:70.666667pt;}
.w23{width:73.040000pt;}
.w13{width:75.440000pt;}
.wb{width:78.160000pt;}
.wa{width:83.520000pt;}
.w1d{width:86.026667pt;}
.w10{width:98.320000pt;}
.w4{width:103.520000pt;}
.w1b{width:174.880000pt;}
.w21{width:174.960000pt;}
.w15{width:178.826667pt;}
.w2e{width:263.680000pt;}
.w2d{width:268.826667pt;}
.w3{width:270.746667pt;}
.w24{width:282.506667pt;}
.wf{width:309.946667pt;}
.w25{width:314.906667pt;}
.w9{width:320.826667pt;}
.w2c{width:668.373333pt;}
.w22{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.xe{left:6.880000pt;}
.x1{left:60.480000pt;}
.x40{left:62.800000pt;}
.x35{left:65.599988pt;}
.x33{left:66.719988pt;}
.x4b{left:73.599988pt;}
.x2a{left:74.719988pt;}
.x4{left:84.479988pt;}
.x4c{left:98.879988pt;}
.x49{left:103.199988pt;}
.x3e{left:104.559988pt;}
.x5{left:108.479988pt;}
.x21{left:117.680000pt;}
.x17{left:121.520000pt;}
.x2b{left:125.359988pt;}
.x37{left:134.800000pt;}
.x41{left:136.480000pt;}
.x18{left:139.200000pt;}
.x36{left:150.986655pt;}
.x2c{left:161.306667pt;}
.x22{left:170.186667pt;}
.x34{left:175.226655pt;}
.x2{left:180.266655pt;}
.xd{left:236.586667pt;}
.x13{left:242.026667pt;}
.x6{left:261.626667pt;}
.xc{left:269.146655pt;}
.x20{left:313.386655pt;}
.x19{left:318.666667pt;}
.xf{left:320.826667pt;}
.x2d{left:336.906667pt;}
.x14{left:340.986667pt;}
.x23{left:345.786667pt;}
.x1a{left:351.226667pt;}
.x8{left:365.786667pt;}
.x1b{left:383.706667pt;}
.x24{left:392.426667pt;}
.x10{left:399.626667pt;}
.x15{left:405.226667pt;}
.x38{left:417.946667pt;}
.x9{left:427.626667pt;}
.x2e{left:430.266667pt;}
.x25{left:439.066667pt;}
.x1c{left:440.746667pt;}
.x11{left:453.653333pt;}
.xa{left:460.293333pt;}
.x42{left:467.493333pt;}
.x16{left:476.533333pt;}
.x39{left:479.493333pt;}
.xb{left:492.933333pt;}
.x1d{left:497.733333pt;}
.x12{left:504.133333pt;}
.x43{left:507.333333pt;}
.x2f{left:516.933333pt;}
.x3a{left:519.333333pt;}
.x26{left:525.813333pt;}
.x44{left:553.813333pt;}
.x1e{left:554.773333pt;}
.x30{left:563.653333pt;}
.x27{left:565.093333pt;}
.x31{left:596.213333pt;}
.x28{left:597.733333pt;}
.x45{left:601.093333pt;}
.x3f{left:604.053322pt;}
.x3b{left:611.573333pt;}
.x1f{left:616.133333pt;}
.x4a{left:618.053322pt;}
.x32{left:628.853333pt;}
.x29{left:630.293333pt;}
.x46{left:645.413333pt;}
.x3c{left:651.493333pt;}
.x47{left:668.933333pt;}
.x48{left:682.293333pt;}
.x3d{left:683.973333pt;}
.x3{left:704.053322pt;}
}




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