
    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_b8c327195112a0643c21cae7.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_74a19de48ff31e6d42d46a3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_a7fc446d3055984d399d87be.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_5563a313c20cf57427510f2c.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_131e6e862c85c3a87f58a5ed.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d20dc789feae328a1b070367.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91722b6a3a7587ec400cdf7c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18cf7caeb322d0b31cab91de.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c83b77c47cad55615ade7eb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ec886ba260b9983b829e8161.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7bf96e2d19c6544244b7eb34.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4675a9922e22bf734803e385.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d8975e69a6ca035eb5d2f4e3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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;}
.ls10{letter-spacing:-0.391800px;}
.lse{letter-spacing:-0.291600px;}
.ls19{letter-spacing:-0.266400px;}
.ls16{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.063600px;}
.lsf{letter-spacing:-0.013200px;}
.ls11{letter-spacing:-0.009000px;}
.ls1b{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls1f{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.153000px;}
.lsd{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.207000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:3.960000px;}
.ls18{letter-spacing:6.840000px;}
.ls15{letter-spacing:12.960000px;}
.ls1e{letter-spacing:47.726640px;}
.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;}
}
.ws13{word-spacing:-60.120000px;}
.ws8{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws3{word-spacing:-14.067000px;}
.ws6{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.ws14{word-spacing:-13.300800px;}
.wsf{word-spacing:-13.275360px;}
.ws7{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.220280px;}
.wsa{word-spacing:-13.217400px;}
.ws9{word-spacing:-13.213200px;}
.ws10{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws4{word-spacing:-8.553600px;}
.ws5{word-spacing:-0.060120px;}
.wsc{word-spacing:0.000000px;}
.wsb{word-spacing:4.304880px;}
._d{margin-left:-4.051801px;}
._5{margin-left:-2.233200px;}
._0{margin-left:-1.110000px;}
._1{width:1.002000px;}
._e{width:2.233200px;}
._4{width:3.366600px;}
._7{width:5.170200px;}
._3{width:6.613200px;}
._6{width:7.815600px;}
._c{width:8.890200px;}
._a{width:10.701600px;}
._b{width:11.992199px;}
._21{width:14.368680px;}
._8{width:15.631200px;}
._9{width:16.930200px;}
._24{width:18.958440px;}
._23{width:19.959840px;}
._2{width:21.684960px;}
._25{width:22.887360px;}
._10{width:24.949800px;}
._1f{width:26.092080px;}
._18{width:28.316520px;}
._13{width:29.759400px;}
._26{width:31.322520px;}
._14{width:34.208280px;}
._16{width:35.951760px;}
._1d{width:41.242320px;}
._20{width:43.827480px;}
._22{width:48.697200px;}
._1c{width:51.162120px;}
._11{width:57.294360px;}
._1e{width:66.612960px;}
._f{width:70.099920px;}
._12{width:71.963640px;}
._1a{width:75.270240px;}
._15{width:85.430520px;}
._17{width:125.410320px;}
._1b{width:202.363920px;}
._19{width:250.580160px;}
.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:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y80{bottom:7.830000px;}
.yf4{bottom:7.860000px;}
.y72{bottom:7.920000px;}
.yda{bottom:7.950000px;}
.y7d{bottom:12.420000px;}
.y7f{bottom:25.470000px;}
.y71{bottom:29.970000px;}
.y82{bottom:34.470000px;}
.y91{bottom:43.020000px;}
.y99{bottom:43.110000px;}
.y8c{bottom:47.520000px;}
.y7c{bottom:47.610000px;}
.y7b{bottom:52.110000px;}
.y77{bottom:56.160000px;}
.y90{bottom:60.660000px;}
.y7a{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y9e{bottom:77.850000px;}
.y76{bottom:78.210000px;}
.y79{bottom:87.210000px;}
.y8b{bottom:91.710000px;}
.y8f{bottom:95.760000px;}
.y98{bottom:95.850000px;}
.y9d{bottom:99.900000px;}
.y75{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.y78{bottom:104.850000px;}
.y8e{bottom:113.400000px;}
.y8a{bottom:113.760000px;}
.yd7{bottom:115.320000px;}
.y97{bottom:117.900000px;}
.y9c{bottom:121.950000px;}
.y74{bottom:122.400000px;}
.y140{bottom:122.790000px;}
.y62{bottom:126.660000px;}
.y2a{bottom:130.080000px;}
.yd6{bottom:132.870000px;}
.y53{bottom:134.580000px;}
.y96{bottom:135.450000px;}
.y89{bottom:135.900000px;}
.y73{bottom:137.370000px;}
.y13f{bottom:140.430000px;}
.y16c{bottom:141.510000px;}
.y9b{bottom:144.090000px;}
.y61{bottom:144.300000px;}
.y114{bottom:147.000000px;}
.y29{bottom:147.720000px;}
.y86{bottom:148.950000px;}
.yd5{bottom:150.420000px;}
.y52{bottom:152.130000px;}
.yaf{bottom:153.030000px;}
.y95{bottom:153.090000px;}
.y88{bottom:153.450000px;}
.y16b{bottom:159.150000px;}
.y60{bottom:161.850000px;}
.y113{bottom:164.640000px;}
.y28{bottom:165.270000px;}
.y9a{bottom:166.140000px;}
.y13e{bottom:166.980000px;}
.yd4{bottom:168.060000px;}
.y51{bottom:169.770000px;}
.y94{bottom:170.640000px;}
.yae{bottom:170.670000px;}
.y85{bottom:171.090000px;}
.yef{bottom:171.570000px;}
.y87{bottom:175.590000px;}
.y16a{bottom:176.700000px;}
.y5f{bottom:179.490000px;}
.y27{bottom:182.910000px;}
.y13d{bottom:184.530000px;}
.yd3{bottom:185.610000px;}
.y50{bottom:187.320000px;}
.yad{bottom:188.220000px;}
.y93{bottom:188.280000px;}
.yee{bottom:189.210000px;}
.y112{bottom:191.190000px;}
.y84{bottom:193.170000px;}
.y5e{bottom:197.040000px;}
.y26{bottom:200.460000px;}
.y169{bottom:203.340000px;}
.y4f{bottom:204.870000px;}
.yac{bottom:205.770000px;}
.yed{bottom:206.760000px;}
.y13c{bottom:211.170000px;}
.yd2{bottom:212.160000px;}
.y5d{bottom:214.590000px;}
.y25{bottom:218.010000px;}
.y111{bottom:218.100000px;}
.y168{bottom:220.890000px;}
.y4e{bottom:222.510000px;}
.yab{bottom:223.410000px;}
.yec{bottom:224.310000px;}
.y13b{bottom:228.720000px;}
.y5c{bottom:232.230000px;}
.y24{bottom:235.650000px;}
.y4d{bottom:240.060000px;}
.yaa{bottom:240.960000px;}
.yeb{bottom:241.950000px;}
.yd1{bottom:244.830000px;}
.y167{bottom:247.440000px;}
.y5b{bottom:249.780000px;}
.y23{bottom:253.200000px;}
.y13a{bottom:255.270000px;}
.y4c{bottom:257.700000px;}
.ya9{bottom:258.600000px;}
.yea{bottom:259.500000px;}
.y166{bottom:265.080000px;}
.y110{bottom:266.430000px;}
.y5a{bottom:267.420000px;}
.y22{bottom:270.840000px;}
.y139{bottom:272.910000px;}
.ya8{bottom:276.150000px;}
.ye9{bottom:277.140000px;}
.y70{bottom:279.210000px;}
.yd0{bottom:280.740000px;}
.y59{bottom:284.970000px;}
.y21{bottom:288.390000px;}
.y165{bottom:291.630000px;}
.y4b{bottom:293.250000px;}
.ya7{bottom:293.700000px;}
.ye8{bottom:294.690000px;}
.y138{bottom:299.460000px;}
.y20{bottom:305.940000px;}
.y164{bottom:309.270000px;}
.ya6{bottom:311.340000px;}
.ye7{bottom:312.240000px;}
.y58{bottom:320.520000px;}
.y1f{bottom:323.580000px;}
.y4a{bottom:325.470000px;}
.y137{bottom:326.100000px;}
.y163{bottom:326.820000px;}
.ya5{bottom:328.890000px;}
.ycf{bottom:328.980000px;}
.ye6{bottom:329.880000px;}
.y10f{bottom:330.600000px;}
.y1e{bottom:341.130000px;}
.ya4{bottom:346.440000px;}
.yce{bottom:346.530000px;}
.ye5{bottom:347.430000px;}
.y6f{bottom:350.040000px;}
.y136{bottom:352.650000px;}
.y57{bottom:352.740000px;}
.y162{bottom:353.370000px;}
.y1d{bottom:358.770000px;}
.ya3{bottom:364.080000px;}
.ycd{bottom:364.170000px;}
.ye4{bottom:365.070000px;}
.y135{bottom:370.200000px;}
.y161{bottom:371.010000px;}
.y10e{bottom:378.930000px;}
.ya2{bottom:381.630000px;}
.ycc{bottom:381.720000px;}
.y1c{bottom:385.590000px;}
.y134{bottom:387.840000px;}
.ye3{bottom:391.980000px;}
.y10d{bottom:396.480000px;}
.y160{bottom:397.560000px;}
.ya1{bottom:399.270000px;}
.ycb{bottom:399.360000px;}
.y10c{bottom:414.120000px;}
.y133{bottom:414.390000px;}
.y15f{bottom:415.200000px;}
.ya0{bottom:416.820000px;}
.yca{bottom:416.910000px;}
.y6e{bottom:417.810000px;}
.y10b{bottom:431.670000px;}
.y132{bottom:432.030000px;}
.y15e{bottom:432.750000px;}
.y1b{bottom:434.190000px;}
.yc9{bottom:434.460000px;}
.ye2{bottom:440.220000px;}
.y9f{bottom:443.730000px;}
.y10a{bottom:449.220000px;}
.yc8{bottom:452.100000px;}
.y131{bottom:458.580000px;}
.y15d{bottom:459.300000px;}
.y109{bottom:466.860000px;}
.yc7{bottom:469.650000px;}
.y1a{bottom:471.300000px;}
.ye1{bottom:472.470000px;}
.y130{bottom:476.160000px;}
.y15c{bottom:476.970000px;}
.yc6{bottom:487.230000px;}
.y19{bottom:488.850000px;}
.y92{bottom:489.390000px;}
.y108{bottom:493.800000px;}
.y12f{bottom:502.800000px;}
.y15b{bottom:503.520000px;}
.yc5{bottom:504.870000px;}
.y18{bottom:506.490000px;}
.y15a{bottom:521.160000px;}
.y17{bottom:524.040000px;}
.y12e{bottom:529.350000px;}
.yc4{bottom:531.420000px;}
.y16{bottom:541.590000px;}
.y107{bottom:542.040000px;}
.y12d{bottom:546.990000px;}
.y159{bottom:547.710000px;}
.y15{bottom:559.230000px;}
.y106{bottom:559.590000px;}
.y158{bottom:565.260000px;}
.yc3{bottom:567.330000px;}
.y12c{bottom:573.540000px;}
.y14{bottom:576.780000px;}
.y105{bottom:577.230000px;}
.y12b{bottom:591.090000px;}
.y157{bottom:591.900000px;}
.y13{bottom:594.420000px;}
.y104{bottom:594.780000px;}
.y49{bottom:599.190000px;}
.y156{bottom:609.450000px;}
.y12{bottom:611.970000px;}
.y103{bottom:612.420000px;}
.yc2{bottom:615.660000px;}
.y12a{bottom:617.730000px;}
.y11{bottom:629.520000px;}
.y102{bottom:629.970000px;}
.yc1{bottom:633.210000px;}
.y129{bottom:635.280000px;}
.y155{bottom:636.090000px;}
.y10{bottom:647.160000px;}
.y48{bottom:647.430000px;}
.y101{bottom:647.520000px;}
.yc0{bottom:650.760000px;}
.y154{bottom:653.640000px;}
.y128{bottom:661.920000px;}
.yf{bottom:664.710000px;}
.y47{bottom:665.070000px;}
.ybf{bottom:668.400000px;}
.y56{bottom:677.940000px;}
.y127{bottom:679.470000px;}
.y153{bottom:680.190000px;}
.ye{bottom:682.350000px;}
.y46{bottom:682.620000px;}
.y100{bottom:683.160000px;}
.ybe{bottom:685.950000px;}
.y126{bottom:697.020000px;}
.y8d{bottom:697.110000px;}
.y152{bottom:697.830000px;}
.yd{bottom:699.900000px;}
.y45{bottom:700.260000px;}
.yff{bottom:700.710000px;}
.ybd{bottom:703.590000px;}
.y55{bottom:710.160000px;}
.yc{bottom:717.450000px;}
.y44{bottom:717.810000px;}
.yfe{bottom:718.350000px;}
.ybc{bottom:721.140000px;}
.y125{bottom:723.660000px;}
.y151{bottom:724.380000px;}
.y43{bottom:735.360000px;}
.ybb{bottom:738.690000px;}
.y124{bottom:741.210000px;}
.y150{bottom:742.020000px;}
.yb{bottom:744.360000px;}
.yfd{bottom:745.260000px;}
.y42{bottom:753.000000px;}
.yba{bottom:756.330000px;}
.y123{bottom:767.850000px;}
.y14f{bottom:768.570000px;}
.y41{bottom:770.550000px;}
.yb9{bottom:773.880000px;}
.y122{bottom:785.400000px;}
.y14e{bottom:786.120000px;}
.y40{bottom:788.190000px;}
.yfc{bottom:790.890000px;}
.ya{bottom:792.690000px;}
.yb8{bottom:800.520000px;}
.y3f{bottom:805.740000px;}
.y121{bottom:811.950000px;}
.y14d{bottom:812.760000px;}
.yfb{bottom:818.250000px;}
.y3e{bottom:823.290000px;}
.y9{bottom:828.510000px;}
.y120{bottom:829.590000px;}
.y83{bottom:829.950000px;}
.y14c{bottom:830.310000px;}
.ye0{bottom:833.550000px;}
.yb7{bottom:836.070000px;}
.y3d{bottom:840.930000px;}
.yfa{bottom:845.520000px;}
.yb6{bottom:853.620000px;}
.y11f{bottom:856.140000px;}
.y14b{bottom:856.860000px;}
.y3c{bottom:858.480000px;}
.y8{bottom:864.510000px;}
.ydf{bottom:866.580000px;}
.yb5{bottom:871.260000px;}
.yf9{bottom:872.880000px;}
.y11e{bottom:873.780000px;}
.y14a{bottom:874.500000px;}
.y3b{bottom:876.030000px;}
.yb4{bottom:888.810000px;}
.y6d{bottom:889.260000px;}
.y3a{bottom:893.670000px;}
.yde{bottom:893.850000px;}
.yf8{bottom:900.240000px;}
.y11d{bottom:900.330000px;}
.y149{bottom:901.050000px;}
.y7{bottom:904.290000px;}
.yb3{bottom:906.450000px;}
.y6c{bottom:906.810000px;}
.y39{bottom:911.220000px;}
.y11c{bottom:917.880000px;}
.y6{bottom:918.510000px;}
.y148{bottom:918.690000px;}
.ydd{bottom:921.210000px;}
.y6b{bottom:924.450000px;}
.yf7{bottom:927.600000px;}
.y38{bottom:928.860000px;}
.yb2{bottom:933.000000px;}
.y147{bottom:936.240000px;}
.y5{bottom:940.290000px;}
.y6a{bottom:942.000000px;}
.y11b{bottom:945.240000px;}
.y37{bottom:946.410000px;}
.ydc{bottom:948.570000px;}
.y146{bottom:953.790000px;}
.yf6{bottom:954.870000px;}
.y69{bottom:959.550000px;}
.y11a{bottom:962.790000px;}
.y36{bottom:963.960000px;}
.yb1{bottom:968.910000px;}
.y4{bottom:972.420000px;}
.ydb{bottom:975.930000px;}
.y68{bottom:977.190000px;}
.y145{bottom:980.430000px;}
.y35{bottom:981.600000px;}
.yf5{bottom:982.230000px;}
.y119{bottom:989.430000px;}
.y67{bottom:994.740000px;}
.y34{bottom:999.150000px;}
.yd9{bottom:1003.200000px;}
.y54{bottom:1004.100000px;}
.y144{bottom:1006.980000px;}
.yf3{bottom:1009.590000px;}
.y3{bottom:1009.980000px;}
.y66{bottom:1012.320000px;}
.y118{bottom:1016.010000px;}
.yb0{bottom:1017.180000px;}
.y143{bottom:1024.560000px;}
.y65{bottom:1029.960000px;}
.y16e{bottom:1034.370000px;}
.y33{bottom:1034.820000px;}
.yf2{bottom:1036.890000px;}
.y81{bottom:1042.560000px;}
.y117{bottom:1042.650000px;}
.y64{bottom:1047.510000px;}
.yd8{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.y116{bottom:1060.200000px;}
.yf1{bottom:1064.250000px;}
.y142{bottom:1069.560000px;}
.y31{bottom:1069.920000px;}
.y63{bottom:1074.420000px;}
.y115{bottom:1077.750000px;}
.y16d{bottom:1078.560000px;}
.y30{bottom:1087.560000px;}
.yf0{bottom:1091.610000px;}
.y141{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.y7e{bottom:1114.110000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h1a{height:26.550000px;}
.h1c{height:26.580000px;}
.h1b{height:26.640000px;}
.h19{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:39.690000px;}
.h10{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.hd{height:52.781133px;}
.h5{height:54.817383px;}
.h1d{height:55.779258px;}
.h9{height:57.838008px;}
.h18{height:59.973223px;}
.hf{height:61.793886px;}
.h17{height:62.585859px;}
.ha{height:62.648438px;}
.hb{height:68.582109px;}
.h13{height:70.830000px;}
.h4{height:72.985430px;}
.hc{height:73.640742px;}
.he{height:87.320391px;}
.h15{height:132.120000px;}
.h11{height:141.120000px;}
.h16{height:207.000000px;}
.h14{height:211.890000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:53.010000px;}
.wd{width:71.010000px;}
.w9{width:96.300000px;}
.w3{width:118.560000px;}
.wb{width:132.660000px;}
.w8{width:182.280000px;}
.wc{width:206.220000px;}
.w6{width:206.550000px;}
.w4{width:209.700000px;}
.w5{width:218.640000px;}
.w7{width:243.570000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x18{left:111.239987px;}
.x10{left:157.950000px;}
.xd{left:188.040000px;}
.x2{left:192.719987px;}
.x15{left:240.870000px;}
.x7{left:294.599987px;}
.xb{left:305.849987px;}
.x5{left:318.269987px;}
.x9{left:368.129987px;}
.x16{left:374.340000px;}
.xe{left:398.550000px;}
.x11{left:402.330000px;}
.x17{left:581.370000px;}
.x12{left:585.330000px;}
.xf{left:617.910000px;}
.x13{left:682.350000px;}
.x14{left:743.639987px;}
.x8{left:748.139987px;}
.x6{left:750.389987px;}
.xa{left:760.559987px;}
.x3{left:800.339987px;}
.x4{left:803.849987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.348267pt;}
.lse{letter-spacing:-0.259200pt;}
.ls19{letter-spacing:-0.236800pt;}
.ls16{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.056533pt;}
.lsf{letter-spacing:-0.011733pt;}
.ls11{letter-spacing:-0.008000pt;}
.ls1b{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls1f{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.136000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.184000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:3.520000pt;}
.ls18{letter-spacing:6.080000pt;}
.ls15{letter-spacing:11.520000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws13{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws3{word-spacing:-12.504000pt;}
.ws6{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.ws14{word-spacing:-11.822933pt;}
.wsf{word-spacing:-11.800320pt;}
.ws7{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.751360pt;}
.wsa{word-spacing:-11.748800pt;}
.ws9{word-spacing:-11.745067pt;}
.ws10{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws4{word-spacing:-7.603200pt;}
.ws5{word-spacing:-0.053440pt;}
.wsc{word-spacing:0.000000pt;}
.wsb{word-spacing:3.826560pt;}
._d{margin-left:-3.601601pt;}
._5{margin-left:-1.985066pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.890667pt;}
._e{width:1.985066pt;}
._4{width:2.992533pt;}
._7{width:4.595733pt;}
._3{width:5.878400pt;}
._6{width:6.947200pt;}
._c{width:7.902400pt;}
._a{width:9.512534pt;}
._b{width:10.659732pt;}
._21{width:12.772160pt;}
._8{width:13.894400pt;}
._9{width:15.049066pt;}
._24{width:16.851947pt;}
._23{width:17.742080pt;}
._2{width:19.275520pt;}
._25{width:20.344320pt;}
._10{width:22.177600pt;}
._1f{width:23.192960pt;}
._18{width:25.170240pt;}
._13{width:26.452800pt;}
._26{width:27.842240pt;}
._14{width:30.407360pt;}
._16{width:31.957120pt;}
._1d{width:36.659840pt;}
._20{width:38.957760pt;}
._22{width:43.286400pt;}
._1c{width:45.477440pt;}
._11{width:50.928320pt;}
._1e{width:59.211520pt;}
._f{width:62.311040pt;}
._12{width:63.967680pt;}
._1a{width:66.906880pt;}
._15{width:75.938240pt;}
._17{width:111.475840pt;}
._1b{width:179.879040pt;}
._19{width:222.737920pt;}
.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:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:6.960000pt;}
.yf4{bottom:6.986667pt;}
.y72{bottom:7.040000pt;}
.yda{bottom:7.066667pt;}
.y7d{bottom:11.040000pt;}
.y7f{bottom:22.640000pt;}
.y71{bottom:26.640000pt;}
.y82{bottom:30.640000pt;}
.y91{bottom:38.240000pt;}
.y99{bottom:38.320000pt;}
.y8c{bottom:42.240000pt;}
.y7c{bottom:42.320000pt;}
.y7b{bottom:46.320000pt;}
.y77{bottom:49.920000pt;}
.y90{bottom:53.920000pt;}
.y7a{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y9e{bottom:69.200000pt;}
.y76{bottom:69.520000pt;}
.y79{bottom:77.520000pt;}
.y8b{bottom:81.520000pt;}
.y8f{bottom:85.120000pt;}
.y98{bottom:85.200000pt;}
.y9d{bottom:88.800000pt;}
.y75{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.y78{bottom:93.200000pt;}
.y8e{bottom:100.800000pt;}
.y8a{bottom:101.120000pt;}
.yd7{bottom:102.506667pt;}
.y97{bottom:104.800000pt;}
.y9c{bottom:108.400000pt;}
.y74{bottom:108.800000pt;}
.y140{bottom:109.146667pt;}
.y62{bottom:112.586667pt;}
.y2a{bottom:115.626667pt;}
.yd6{bottom:118.106667pt;}
.y53{bottom:119.626667pt;}
.y96{bottom:120.400000pt;}
.y89{bottom:120.800000pt;}
.y73{bottom:122.106667pt;}
.y13f{bottom:124.826667pt;}
.y16c{bottom:125.786667pt;}
.y9b{bottom:128.080000pt;}
.y61{bottom:128.266667pt;}
.y114{bottom:130.666667pt;}
.y29{bottom:131.306667pt;}
.y86{bottom:132.400000pt;}
.yd5{bottom:133.706667pt;}
.y52{bottom:135.226667pt;}
.yaf{bottom:136.026667pt;}
.y95{bottom:136.080000pt;}
.y88{bottom:136.400000pt;}
.y16b{bottom:141.466667pt;}
.y60{bottom:143.866667pt;}
.y113{bottom:146.346667pt;}
.y28{bottom:146.906667pt;}
.y9a{bottom:147.680000pt;}
.y13e{bottom:148.426667pt;}
.yd4{bottom:149.386667pt;}
.y51{bottom:150.906667pt;}
.y94{bottom:151.680000pt;}
.yae{bottom:151.706667pt;}
.y85{bottom:152.080000pt;}
.yef{bottom:152.506667pt;}
.y87{bottom:156.080000pt;}
.y16a{bottom:157.066667pt;}
.y5f{bottom:159.546667pt;}
.y27{bottom:162.586667pt;}
.y13d{bottom:164.026667pt;}
.yd3{bottom:164.986667pt;}
.y50{bottom:166.506667pt;}
.yad{bottom:167.306667pt;}
.y93{bottom:167.360000pt;}
.yee{bottom:168.186667pt;}
.y112{bottom:169.946667pt;}
.y84{bottom:171.706667pt;}
.y5e{bottom:175.146667pt;}
.y26{bottom:178.186667pt;}
.y169{bottom:180.746667pt;}
.y4f{bottom:182.106667pt;}
.yac{bottom:182.906667pt;}
.yed{bottom:183.786667pt;}
.y13c{bottom:187.706667pt;}
.yd2{bottom:188.586667pt;}
.y5d{bottom:190.746667pt;}
.y25{bottom:193.786667pt;}
.y111{bottom:193.866667pt;}
.y168{bottom:196.346667pt;}
.y4e{bottom:197.786667pt;}
.yab{bottom:198.586667pt;}
.yec{bottom:199.386667pt;}
.y13b{bottom:203.306667pt;}
.y5c{bottom:206.426667pt;}
.y24{bottom:209.466667pt;}
.y4d{bottom:213.386667pt;}
.yaa{bottom:214.186667pt;}
.yeb{bottom:215.066667pt;}
.yd1{bottom:217.626667pt;}
.y167{bottom:219.946667pt;}
.y5b{bottom:222.026667pt;}
.y23{bottom:225.066667pt;}
.y13a{bottom:226.906667pt;}
.y4c{bottom:229.066667pt;}
.ya9{bottom:229.866667pt;}
.yea{bottom:230.666667pt;}
.y166{bottom:235.626667pt;}
.y110{bottom:236.826667pt;}
.y5a{bottom:237.706667pt;}
.y22{bottom:240.746667pt;}
.y139{bottom:242.586667pt;}
.ya8{bottom:245.466667pt;}
.ye9{bottom:246.346667pt;}
.y70{bottom:248.186667pt;}
.yd0{bottom:249.546667pt;}
.y59{bottom:253.306667pt;}
.y21{bottom:256.346667pt;}
.y165{bottom:259.226667pt;}
.y4b{bottom:260.666667pt;}
.ya7{bottom:261.066667pt;}
.ye8{bottom:261.946667pt;}
.y138{bottom:266.186667pt;}
.y20{bottom:271.946667pt;}
.y164{bottom:274.906667pt;}
.ya6{bottom:276.746667pt;}
.ye7{bottom:277.546667pt;}
.y58{bottom:284.906667pt;}
.y1f{bottom:287.626667pt;}
.y4a{bottom:289.306667pt;}
.y137{bottom:289.866667pt;}
.y163{bottom:290.506667pt;}
.ya5{bottom:292.346667pt;}
.ycf{bottom:292.426667pt;}
.ye6{bottom:293.226667pt;}
.y10f{bottom:293.866667pt;}
.y1e{bottom:303.226667pt;}
.ya4{bottom:307.946667pt;}
.yce{bottom:308.026667pt;}
.ye5{bottom:308.826667pt;}
.y6f{bottom:311.146667pt;}
.y136{bottom:313.466667pt;}
.y57{bottom:313.546667pt;}
.y162{bottom:314.106667pt;}
.y1d{bottom:318.906667pt;}
.ya3{bottom:323.626667pt;}
.ycd{bottom:323.706667pt;}
.ye4{bottom:324.506667pt;}
.y135{bottom:329.066667pt;}
.y161{bottom:329.786667pt;}
.y10e{bottom:336.826667pt;}
.ya2{bottom:339.226667pt;}
.ycc{bottom:339.306667pt;}
.y1c{bottom:342.746667pt;}
.y134{bottom:344.746667pt;}
.ye3{bottom:348.426667pt;}
.y10d{bottom:352.426667pt;}
.y160{bottom:353.386667pt;}
.ya1{bottom:354.906667pt;}
.ycb{bottom:354.986667pt;}
.y10c{bottom:368.106667pt;}
.y133{bottom:368.346667pt;}
.y15f{bottom:369.066667pt;}
.ya0{bottom:370.506667pt;}
.yca{bottom:370.586667pt;}
.y6e{bottom:371.386667pt;}
.y10b{bottom:383.706667pt;}
.y132{bottom:384.026667pt;}
.y15e{bottom:384.666667pt;}
.y1b{bottom:385.946667pt;}
.yc9{bottom:386.186667pt;}
.ye2{bottom:391.306667pt;}
.y9f{bottom:394.426667pt;}
.y10a{bottom:399.306667pt;}
.yc8{bottom:401.866667pt;}
.y131{bottom:407.626667pt;}
.y15d{bottom:408.266667pt;}
.y109{bottom:414.986667pt;}
.yc7{bottom:417.466667pt;}
.y1a{bottom:418.933333pt;}
.ye1{bottom:419.973333pt;}
.y130{bottom:423.253333pt;}
.y15c{bottom:423.973333pt;}
.yc6{bottom:433.093333pt;}
.y19{bottom:434.533333pt;}
.y92{bottom:435.013333pt;}
.y108{bottom:438.933333pt;}
.y12f{bottom:446.933333pt;}
.y15b{bottom:447.573333pt;}
.yc5{bottom:448.773333pt;}
.y18{bottom:450.213333pt;}
.y15a{bottom:463.253333pt;}
.y17{bottom:465.813333pt;}
.y12e{bottom:470.533333pt;}
.yc4{bottom:472.373333pt;}
.y16{bottom:481.413333pt;}
.y107{bottom:481.813333pt;}
.y12d{bottom:486.213333pt;}
.y159{bottom:486.853333pt;}
.y15{bottom:497.093333pt;}
.y106{bottom:497.413333pt;}
.y158{bottom:502.453333pt;}
.yc3{bottom:504.293333pt;}
.y12c{bottom:509.813333pt;}
.y14{bottom:512.693333pt;}
.y105{bottom:513.093333pt;}
.y12b{bottom:525.413333pt;}
.y157{bottom:526.133333pt;}
.y13{bottom:528.373333pt;}
.y104{bottom:528.693333pt;}
.y49{bottom:532.613333pt;}
.y156{bottom:541.733333pt;}
.y12{bottom:543.973333pt;}
.y103{bottom:544.373333pt;}
.yc2{bottom:547.253333pt;}
.y12a{bottom:549.093333pt;}
.y11{bottom:559.573333pt;}
.y102{bottom:559.973333pt;}
.yc1{bottom:562.853333pt;}
.y129{bottom:564.693333pt;}
.y155{bottom:565.413333pt;}
.y10{bottom:575.253333pt;}
.y48{bottom:575.493333pt;}
.y101{bottom:575.573333pt;}
.yc0{bottom:578.453333pt;}
.y154{bottom:581.013333pt;}
.y128{bottom:588.373333pt;}
.yf{bottom:590.853333pt;}
.y47{bottom:591.173333pt;}
.ybf{bottom:594.133333pt;}
.y56{bottom:602.613333pt;}
.y127{bottom:603.973333pt;}
.y153{bottom:604.613333pt;}
.ye{bottom:606.533333pt;}
.y46{bottom:606.773333pt;}
.y100{bottom:607.253333pt;}
.ybe{bottom:609.733333pt;}
.y126{bottom:619.573333pt;}
.y8d{bottom:619.653333pt;}
.y152{bottom:620.293333pt;}
.yd{bottom:622.133333pt;}
.y45{bottom:622.453333pt;}
.yff{bottom:622.853333pt;}
.ybd{bottom:625.413333pt;}
.y55{bottom:631.253333pt;}
.yc{bottom:637.733333pt;}
.y44{bottom:638.053333pt;}
.yfe{bottom:638.533333pt;}
.ybc{bottom:641.013333pt;}
.y125{bottom:643.253333pt;}
.y151{bottom:643.893333pt;}
.y43{bottom:653.653333pt;}
.ybb{bottom:656.613333pt;}
.y124{bottom:658.853333pt;}
.y150{bottom:659.573333pt;}
.yb{bottom:661.653333pt;}
.yfd{bottom:662.453333pt;}
.y42{bottom:669.333333pt;}
.yba{bottom:672.293333pt;}
.y123{bottom:682.533333pt;}
.y14f{bottom:683.173333pt;}
.y41{bottom:684.933333pt;}
.yb9{bottom:687.893333pt;}
.y122{bottom:698.133333pt;}
.y14e{bottom:698.773333pt;}
.y40{bottom:700.613333pt;}
.yfc{bottom:703.013333pt;}
.ya{bottom:704.613333pt;}
.yb8{bottom:711.573333pt;}
.y3f{bottom:716.213333pt;}
.y121{bottom:721.733333pt;}
.y14d{bottom:722.453333pt;}
.yfb{bottom:727.333333pt;}
.y3e{bottom:731.813333pt;}
.y9{bottom:736.453333pt;}
.y120{bottom:737.413333pt;}
.y83{bottom:737.733333pt;}
.y14c{bottom:738.053333pt;}
.ye0{bottom:740.933333pt;}
.yb7{bottom:743.173333pt;}
.y3d{bottom:747.493333pt;}
.yfa{bottom:751.573333pt;}
.yb6{bottom:758.773333pt;}
.y11f{bottom:761.013333pt;}
.y14b{bottom:761.653333pt;}
.y3c{bottom:763.093333pt;}
.y8{bottom:768.453333pt;}
.ydf{bottom:770.293333pt;}
.yb5{bottom:774.453333pt;}
.yf9{bottom:775.893333pt;}
.y11e{bottom:776.693333pt;}
.y14a{bottom:777.333333pt;}
.y3b{bottom:778.693333pt;}
.yb4{bottom:790.053333pt;}
.y6d{bottom:790.453333pt;}
.y3a{bottom:794.373333pt;}
.yde{bottom:794.533333pt;}
.yf8{bottom:800.213333pt;}
.y11d{bottom:800.293333pt;}
.y149{bottom:800.933333pt;}
.y7{bottom:803.813333pt;}
.yb3{bottom:805.733333pt;}
.y6c{bottom:806.053333pt;}
.y39{bottom:809.973333pt;}
.y11c{bottom:815.893333pt;}
.y6{bottom:816.453333pt;}
.y148{bottom:816.613333pt;}
.ydd{bottom:818.853333pt;}
.y6b{bottom:821.733333pt;}
.yf7{bottom:824.533333pt;}
.y38{bottom:825.653333pt;}
.yb2{bottom:829.333333pt;}
.y147{bottom:832.213333pt;}
.y5{bottom:835.813333pt;}
.y6a{bottom:837.333333pt;}
.y11b{bottom:840.213333pt;}
.y37{bottom:841.253333pt;}
.ydc{bottom:843.173333pt;}
.y146{bottom:847.813333pt;}
.yf6{bottom:848.773333pt;}
.y69{bottom:852.933333pt;}
.y11a{bottom:855.813333pt;}
.y36{bottom:856.853333pt;}
.yb1{bottom:861.253333pt;}
.y4{bottom:864.373333pt;}
.ydb{bottom:867.493333pt;}
.y68{bottom:868.613333pt;}
.y145{bottom:871.493333pt;}
.y35{bottom:872.533333pt;}
.yf5{bottom:873.093333pt;}
.y119{bottom:879.493333pt;}
.y67{bottom:884.213333pt;}
.y34{bottom:888.133333pt;}
.yd9{bottom:891.733333pt;}
.y54{bottom:892.533333pt;}
.y144{bottom:895.093333pt;}
.yf3{bottom:897.413333pt;}
.y3{bottom:897.760000pt;}
.y66{bottom:899.840000pt;}
.y118{bottom:903.120000pt;}
.yb0{bottom:904.160000pt;}
.y143{bottom:910.720000pt;}
.y65{bottom:915.520000pt;}
.y16e{bottom:919.440000pt;}
.y33{bottom:919.840000pt;}
.yf2{bottom:921.680000pt;}
.y81{bottom:926.720000pt;}
.y117{bottom:926.800000pt;}
.y64{bottom:931.120000pt;}
.yd8{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.y116{bottom:942.400000pt;}
.yf1{bottom:946.000000pt;}
.y142{bottom:950.720000pt;}
.y31{bottom:951.040000pt;}
.y63{bottom:955.040000pt;}
.y115{bottom:958.000000pt;}
.y16d{bottom:958.720000pt;}
.y30{bottom:966.720000pt;}
.yf0{bottom:970.320000pt;}
.y141{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.y7e{bottom:990.320000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h1a{height:23.600000pt;}
.h1c{height:23.626667pt;}
.h1b{height:23.680000pt;}
.h19{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:35.280000pt;}
.h10{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.hd{height:46.916562pt;}
.h5{height:48.726562pt;}
.h1d{height:49.581562pt;}
.h9{height:51.411562pt;}
.h18{height:53.309531pt;}
.hf{height:54.927899pt;}
.h17{height:55.631875pt;}
.ha{height:55.687500pt;}
.hb{height:60.961875pt;}
.h13{height:62.960000pt;}
.h4{height:64.875937pt;}
.hc{height:65.458437pt;}
.he{height:77.618125pt;}
.h15{height:117.440000pt;}
.h11{height:125.440000pt;}
.h16{height:184.000000pt;}
.h14{height:188.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:47.120000pt;}
.wd{width:63.120000pt;}
.w9{width:85.600000pt;}
.w3{width:105.386667pt;}
.wb{width:117.920000pt;}
.w8{width:162.026667pt;}
.wc{width:183.306667pt;}
.w6{width:183.600000pt;}
.w4{width:186.400000pt;}
.w5{width:194.346667pt;}
.w7{width:216.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x18{left:98.879988pt;}
.x10{left:140.400000pt;}
.xd{left:167.146667pt;}
.x2{left:171.306655pt;}
.x15{left:214.106667pt;}
.x7{left:261.866655pt;}
.xb{left:271.866655pt;}
.x5{left:282.906655pt;}
.x9{left:327.226655pt;}
.x16{left:332.746667pt;}
.xe{left:354.266667pt;}
.x11{left:357.626667pt;}
.x17{left:516.773333pt;}
.x12{left:520.293333pt;}
.xf{left:549.253333pt;}
.x13{left:606.533333pt;}
.x14{left:661.013322pt;}
.x8{left:665.013322pt;}
.x6{left:667.013322pt;}
.xa{left:676.053322pt;}
.x3{left:711.413322pt;}
.x4{left:714.533322pt;}
}




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