
    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_b45f2ac76888442f750b087f.woff2')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_5ee8a297a5e668fffc8db434.woff2')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_795331491deb46ba1f4d77ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_bab04234831f0501112c5034.woff2')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_37ff388d7063315dfa580bcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089844;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_6c57054b44da7d9b1d4efb70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ecf8e623d0b9dd5179509a4.woff2')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;}
.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;}
.ls10{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.037800px;}
.ls1a{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.011160px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.115800px;}
.ls13{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.174600px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.453600px;}
.ls1c{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls18{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.215240px;}
.wsf{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.188600px;}
.ws11{word-spacing:-13.187520px;}
.ws7{word-spacing:-13.039800px;}
.ws8{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-3.667801px;}
._2{margin-left:-2.524800px;}
._0{margin-left:-1.110000px;}
._1{width:1.016448px;}
._10{width:2.055505px;}
._3{width:3.787800px;}
._a{width:4.822160px;}
._7{width:5.891399px;}
._d{width:7.201840px;}
._8{width:8.236200px;}
._9{width:9.379802px;}
._6{width:11.122200px;}
._11{width:12.169224px;}
._5{width:15.205800px;}
._4{width:16.232400px;}
._b{width:17.596152px;}
._e{width:19.419000px;}
._f{width:20.558395px;}
._12{width:21.675151px;}
._15{width:22.680199px;}
._13{width:23.867640px;}
._14{width:25.611120px;}
._24{width:27.562800px;}
._21{width:29.037960px;}
._16{width:31.442760px;}
._18{width:32.645160px;}
._1e{width:36.613080px;}
._1f{width:38.176200px;}
._25{width:39.207960px;}
._23{width:40.761360px;}
._30{width:41.870400px;}
._28{width:43.226280px;}
._29{width:44.488800px;}
._17{width:46.232280px;}
._20{width:49.118040px;}
._2a{width:50.140080px;}
._2e{width:52.905600px;}
._2d{width:54.108000px;}
._2c{width:56.873520px;}
._27{width:61.502760px;}
._26{width:62.524800px;}
._1d{width:66.733200px;}
._22{width:73.947600px;}
._2f{width:75.510720px;}
._1b{width:112.958280px;}
._2b{width:116.779680px;}
._19{width:136.492680px;}
._1a{width:194.839920px;}
._1c{width:215.470080px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y91{bottom:7.830000px;}
.yaa{bottom:7.860000px;}
.y80{bottom:7.920000px;}
.yc5{bottom:12.420000px;}
.ya9{bottom:25.410000px;}
.y8d{bottom:25.470000px;}
.ya3{bottom:29.970000px;}
.y8c{bottom:43.020000px;}
.yc6{bottom:43.110000px;}
.y90{bottom:47.520000px;}
.ya8{bottom:47.550000px;}
.ya0{bottom:47.610000px;}
.y2d{bottom:56.190000px;}
.ya5{bottom:56.460000px;}
.yb2{bottom:65.070000px;}
.ya7{bottom:65.100000px;}
.y8b{bottom:65.160000px;}
.ya2{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:73.830000px;}
.ya4{bottom:74.010000px;}
.y67{bottom:74.190000px;}
.y7d{bottom:74.460000px;}
.y8a{bottom:82.710000px;}
.yc2{bottom:82.740000px;}
.y9f{bottom:87.210000px;}
.yb5{bottom:87.240000px;}
.y9c{bottom:90.480000px;}
.yb6{bottom:99.480000px;}
.y89{bottom:100.260000px;}
.yb8{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.yc3{bottom:103.980000px;}
.y8f{bottom:104.760000px;}
.yb1{bottom:104.790000px;}
.y9e{bottom:104.850000px;}
.ya1{bottom:109.350000px;}
.y66{bottom:115.410000px;}
.y7b{bottom:120.270000px;}
.ybd{bottom:122.340000px;}
.y88{bottom:122.400000px;}
.yb0{bottom:122.430000px;}
.y101{bottom:124.410000px;}
.y143{bottom:125.130000px;}
.ybc{bottom:126.840000px;}
.y99{bottom:126.900000px;}
.yb4{bottom:126.930000px;}
.y65{bottom:133.050000px;}
.y2a{bottom:133.410000px;}
.y7a{bottom:137.910000px;}
.y87{bottom:139.950000px;}
.ybb{bottom:139.980000px;}
.yb7{bottom:140.040000px;}
.yd6{bottom:140.790000px;}
.y100{bottom:141.960000px;}
.y142{bottom:142.680000px;}
.yc0{bottom:144.450000px;}
.y9b{bottom:144.480000px;}
.y9d{bottom:144.540000px;}
.y98{bottom:148.980000px;}
.yc4{bottom:149.040000px;}
.y64{bottom:150.600000px;}
.y29{bottom:150.960000px;}
.y79{bottom:155.460000px;}
.yb9{bottom:157.590000px;}
.ybf{bottom:162.000000px;}
.yaf{bottom:162.030000px;}
.y86{bottom:162.090000px;}
.y9a{bottom:162.120000px;}
.yb3{bottom:166.530000px;}
.yad{bottom:166.590000px;}
.y97{bottom:166.620000px;}
.y63{bottom:168.240000px;}
.y28{bottom:168.600000px;}
.y12e{bottom:169.320000px;}
.y78{bottom:173.010000px;}
.yd5{bottom:176.340000px;}
.y85{bottom:179.640000px;}
.y95{bottom:179.670000px;}
.yac{bottom:184.140000px;}
.y96{bottom:184.170000px;}
.y62{bottom:185.790000px;}
.y27{bottom:186.150000px;}
.y12d{bottom:186.870000px;}
.y77{bottom:190.650000px;}
.y84{bottom:197.190000px;}
.y8e{bottom:201.690000px;}
.y94{bottom:201.720000px;}
.y61{bottom:203.340000px;}
.y26{bottom:203.790000px;}
.y12c{bottom:204.510000px;}
.y76{bottom:208.200000px;}
.yd4{bottom:208.560000px;}
.yff{bottom:212.700000px;}
.y141{bottom:213.510000px;}
.y83{bottom:219.330000px;}
.y93{bottom:219.360000px;}
.y60{bottom:220.980000px;}
.y25{bottom:221.340000px;}
.y75{bottom:225.840000px;}
.yfe{bottom:230.340000px;}
.y12b{bottom:231.060000px;}
.y82{bottom:236.880000px;}
.y5f{bottom:238.530000px;}
.y24{bottom:238.890000px;}
.y74{bottom:243.390000px;}
.yfd{bottom:247.890000px;}
.y12a{bottom:248.610000px;}
.y92{bottom:254.460000px;}
.y5e{bottom:256.170000px;}
.y23{bottom:256.530000px;}
.y73{bottom:260.940000px;}
.y5d{bottom:273.720000px;}
.y22{bottom:274.080000px;}
.yfc{bottom:274.530000px;}
.y129{bottom:275.250000px;}
.y72{bottom:278.580000px;}
.y5c{bottom:291.270000px;}
.y21{bottom:291.630000px;}
.yfb{bottom:292.080000px;}
.y128{bottom:292.800000px;}
.y71{bottom:296.130000px;}
.yae{bottom:298.650000px;}
.yc1{bottom:307.650000px;}
.y5b{bottom:308.910000px;}
.y20{bottom:309.270000px;}
.y70{bottom:313.680000px;}
.yfa{bottom:318.630000px;}
.y127{bottom:319.440000px;}
.y5a{bottom:326.460000px;}
.y1f{bottom:326.820000px;}
.y6f{bottom:331.320000px;}
.yf9{bottom:336.270000px;}
.y126{bottom:336.990000px;}
.y59{bottom:344.100000px;}
.y1e{bottom:344.460000px;}
.y6e{bottom:348.870000px;}
.yf8{bottom:353.820000px;}
.y125{bottom:354.540000px;}
.y58{bottom:361.650000px;}
.y140{bottom:363.540000px;}
.y6d{bottom:366.510000px;}
.y1d{bottom:371.370000px;}
.y57{bottom:379.200000px;}
.yf7{bottom:380.730000px;}
.y124{bottom:381.180000px;}
.y6c{bottom:384.060000px;}
.y56{bottom:396.840000px;}
.y123{bottom:398.730000px;}
.y6b{bottom:401.610000px;}
.y13f{bottom:407.730000px;}
.y6a{bottom:419.250000px;}
.y1c{bottom:419.970000px;}
.y55{bottom:423.750000px;}
.y122{bottom:425.370000px;}
.yf6{bottom:428.970000px;}
.y69{bottom:436.800000px;}
.y121{bottom:442.920000px;}
.ybe{bottom:449.520000px;}
.y13e{bottom:451.920000px;}
.y68{bottom:454.440000px;}
.yf5{bottom:455.880000px;}
.y1b{bottom:456.960000px;}
.y120{bottom:469.470000px;}
.y54{bottom:472.020000px;}
.y1a{bottom:474.540000px;}
.y11f{bottom:487.140000px;}
.y53{bottom:489.570000px;}
.y19{bottom:492.180000px;}
.y81{bottom:493.260000px;}
.y13d{bottom:496.140000px;}
.yd3{bottom:502.260000px;}
.y52{bottom:507.210000px;}
.y18{bottom:509.730000px;}
.y11e{bottom:513.690000px;}
.yab{bottom:519.810000px;}
.y51{bottom:524.760000px;}
.y17{bottom:527.370000px;}
.y11d{bottom:531.330000px;}
.yd2{bottom:537.450000px;}
.yf4{bottom:541.590000px;}
.y50{bottom:542.400000px;}
.y16{bottom:544.920000px;}
.y11c{bottom:548.880000px;}
.yd1{bottom:555.000000px;}
.y13c{bottom:557.880000px;}
.yf3{bottom:559.140000px;}
.y4f{bottom:559.950000px;}
.y15{bottom:562.470000px;}
.yd0{bottom:572.550000px;}
.y11b{bottom:575.430000px;}
.y4e{bottom:577.500000px;}
.yf2{bottom:577.590000px;}
.y14{bottom:580.110000px;}
.y11a{bottom:593.070000px;}
.y4d{bottom:595.140000px;}
.y13{bottom:597.660000px;}
.ycf{bottom:599.190000px;}
.y13b{bottom:610.620000px;}
.y4c{bottom:612.690000px;}
.yf1{bottom:613.590000px;}
.y12{bottom:615.210000px;}
.y119{bottom:619.620000px;}
.y4b{bottom:630.330000px;}
.yba{bottom:631.050000px;}
.yf0{bottom:631.140000px;}
.y11{bottom:632.850000px;}
.yce{bottom:634.740000px;}
.y118{bottom:637.260000px;}
.y4a{bottom:647.880000px;}
.yef{bottom:649.590000px;}
.y10{bottom:650.400000px;}
.y13a{bottom:654.810000px;}
.y117{bottom:663.810000px;}
.y49{bottom:665.430000px;}
.ycd{bottom:666.960000px;}
.yee{bottom:667.140000px;}
.yf{bottom:668.040000px;}
.y116{bottom:681.360000px;}
.y48{bottom:683.070000px;}
.yed{bottom:685.500000px;}
.ye{bottom:685.590000px;}
.y115{bottom:699.000000px;}
.y47{bottom:700.620000px;}
.yd{bottom:703.140000px;}
.y46{bottom:718.260000px;}
.yc{bottom:720.780000px;}
.yec{bottom:721.950000px;}
.ya6{bottom:723.480000px;}
.y114{bottom:725.550000px;}
.y45{bottom:735.810000px;}
.yb{bottom:738.330000px;}
.yeb{bottom:739.590000px;}
.y113{bottom:743.190000px;}
.y7f{bottom:749.610000px;}
.y44{bottom:753.360000px;}
.y112{bottom:760.740000px;}
.ya{bottom:765.330000px;}
.yea{bottom:766.140000px;}
.y139{bottom:769.740000px;}
.y43{bottom:771.000000px;}
.y111{bottom:787.290000px;}
.y42{bottom:788.550000px;}
.y7e{bottom:798.390000px;}
.ye9{bottom:801.690000px;}
.y110{bottom:804.930000px;}
.y41{bottom:806.190000px;}
.y9{bottom:812.040000px;}
.y138{bottom:813.930000px;}
.ye8{bottom:819.330000px;}
.y10f{bottom:822.480000px;}
.y40{bottom:823.740000px;}
.y7c{bottom:824.940000px;}
.y137{bottom:831.480000px;}
.ye7{bottom:836.880000px;}
.y14a{bottom:840.030000px;}
.y3f{bottom:841.290000px;}
.y8{bottom:847.860000px;}
.y10e{bottom:849.030000px;}
.ye6{bottom:854.520000px;}
.y149{bottom:857.670000px;}
.y136{bottom:858.030000px;}
.y3e{bottom:858.930000px;}
.y10d{bottom:866.670000px;}
.ye5{bottom:872.070000px;}
.y135{bottom:875.670000px;}
.y3d{bottom:876.480000px;}
.y7{bottom:883.860000px;}
.y10c{bottom:884.220000px;}
.ye4{bottom:889.620000px;}
.y134{bottom:893.220000px;}
.y3c{bottom:894.030000px;}
.y148{bottom:901.860000px;}
.ye3{bottom:907.260000px;}
.y10b{bottom:910.860000px;}
.y3b{bottom:911.670000px;}
.y147{bottom:919.410000px;}
.y6{bottom:919.860000px;}
.ye2{bottom:924.810000px;}
.y10a{bottom:928.410000px;}
.y3a{bottom:929.220000px;}
.y133{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.ye1{bottom:942.450000px;}
.y109{bottom:945.960000px;}
.y39{bottom:946.860000px;}
.y132{bottom:954.960000px;}
.ye0{bottom:960.000000px;}
.y146{bottom:963.600000px;}
.y38{bottom:964.410000px;}
.y108{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.ydf{bottom:977.550000px;}
.y131{bottom:981.600000px;}
.y37{bottom:981.960000px;}
.y107{bottom:990.150000px;}
.yde{bottom:995.190000px;}
.ycc{bottom:998.790000px;}
.y130{bottom:999.150000px;}
.y36{bottom:999.600000px;}
.y145{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.ydd{bottom:1012.770000px;}
.ycb{bottom:1016.460000px;}
.y106{bottom:1016.820000px;}
.y35{bottom:1017.180000px;}
.ydc{bottom:1030.320000px;}
.yca{bottom:1034.010000px;}
.y105{bottom:1034.370000px;}
.y34{bottom:1034.820000px;}
.y12f{bottom:1043.370000px;}
.ydb{bottom:1047.960000px;}
.yc9{bottom:1051.650000px;}
.y144{bottom:1051.920000px;}
.y33{bottom:1052.370000px;}
.y104{bottom:1060.920000px;}
.yda{bottom:1065.510000px;}
.y32{bottom:1069.920000px;}
.yc8{bottom:1078.200000px;}
.y103{bottom:1078.560000px;}
.yd9{bottom:1083.150000px;}
.y31{bottom:1087.560000px;}
.y102{bottom:1096.110000px;}
.yd8{bottom:1100.700000px;}
.y30{bottom:1105.110000px;}
.yc7{bottom:1114.110000px;}
.y2f{bottom:1122.750000px;}
.yd7{bottom:1127.610000px;}
.y2e{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.221191px;}
.h6{height:50.902383px;}
.h7{height:52.399512px;}
.h8{height:55.779258px;}
.h5{height:57.419824px;}
.h18{height:61.793886px;}
.h17{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:73.108301px;}
.h10{height:79.320000px;}
.h16{height:141.150000px;}
.hf{height:163.260000px;}
.h15{height:180.720000px;}
.h14{height:180.750000px;}
.h13{height:198.360000px;}
.h11{height:202.860000px;}
.h12{height:220.440000px;}
.he{height:238.080000px;}
.hd{height:255.630000px;}
.ha{height:893.160000px;}
.hb{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:39.960000px;}
.w8{width:158.220000px;}
.w7{width:224.400000px;}
.w9{width:305.940000px;}
.wa{width:313.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x1{left:68.040000px;}
.x10{left:95.039987px;}
.x6{left:107.999981px;}
.x12{left:111.239987px;}
.x11{left:122.039987px;}
.x8{left:149.400000px;}
.x2{left:202.799987px;}
.xd{left:267.599987px;}
.xf{left:298.829987px;}
.x9{left:374.610000px;}
.x4{left:387.389981px;}
.xa{left:533.550000px;}
.xe{left:703.139987px;}
.xc{left:711.059987px;}
.x3{left:792.059987px;}
.xb{left:840.210000px;}
.x5{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.033600pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.009920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.102933pt;}
.ls13{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.155200pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.403200pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.746880pt;}
.wsf{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.723200pt;}
.ws11{word-spacing:-11.722240pt;}
.ws7{word-spacing:-11.590933pt;}
.ws8{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.260268pt;}
._2{margin-left:-2.244266pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.903509pt;}
._10{width:1.827116pt;}
._3{width:3.366934pt;}
._a{width:4.286364pt;}
._7{width:5.236799pt;}
._d{width:6.401636pt;}
._8{width:7.321066pt;}
._9{width:8.337602pt;}
._6{width:9.886400pt;}
._11{width:10.817088pt;}
._5{width:13.516266pt;}
._4{width:14.428800pt;}
._b{width:15.641024pt;}
._e{width:17.261334pt;}
._f{width:18.274129pt;}
._12{width:19.266801pt;}
._15{width:20.160177pt;}
._13{width:21.215680pt;}
._14{width:22.765440pt;}
._24{width:24.500267pt;}
._21{width:25.811520pt;}
._16{width:27.949120pt;}
._18{width:29.017920pt;}
._1e{width:32.544960pt;}
._1f{width:33.934400pt;}
._25{width:34.851520pt;}
._23{width:36.232320pt;}
._30{width:37.218133pt;}
._28{width:38.423360pt;}
._29{width:39.545600pt;}
._17{width:41.095360pt;}
._20{width:43.660480pt;}
._2a{width:44.568960pt;}
._2e{width:47.027200pt;}
._2d{width:48.096000pt;}
._2c{width:50.554240pt;}
._27{width:54.669120pt;}
._26{width:55.577600pt;}
._1d{width:59.318400pt;}
._22{width:65.731200pt;}
._2f{width:67.120640pt;}
._1b{width:100.407360pt;}
._2b{width:103.804160pt;}
._19{width:121.326827pt;}
._1a{width:173.191040pt;}
._1c{width:191.528960pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:6.960000pt;}
.yaa{bottom:6.986667pt;}
.y80{bottom:7.040000pt;}
.yc5{bottom:11.040000pt;}
.ya9{bottom:22.586667pt;}
.y8d{bottom:22.640000pt;}
.ya3{bottom:26.640000pt;}
.y8c{bottom:38.240000pt;}
.yc6{bottom:38.320000pt;}
.y90{bottom:42.240000pt;}
.ya8{bottom:42.266667pt;}
.ya0{bottom:42.320000pt;}
.y2d{bottom:49.946667pt;}
.ya5{bottom:50.186667pt;}
.yb2{bottom:57.840000pt;}
.ya7{bottom:57.866667pt;}
.y8b{bottom:57.920000pt;}
.ya2{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.626667pt;}
.ya4{bottom:65.786667pt;}
.y67{bottom:65.946667pt;}
.y7d{bottom:66.186667pt;}
.y8a{bottom:73.520000pt;}
.yc2{bottom:73.546667pt;}
.y9f{bottom:77.520000pt;}
.yb5{bottom:77.546667pt;}
.y9c{bottom:80.426667pt;}
.yb6{bottom:88.426667pt;}
.y89{bottom:89.120000pt;}
.yb8{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.yc3{bottom:92.426667pt;}
.y8f{bottom:93.120000pt;}
.yb1{bottom:93.146667pt;}
.y9e{bottom:93.200000pt;}
.ya1{bottom:97.200000pt;}
.y66{bottom:102.586667pt;}
.y7b{bottom:106.906667pt;}
.ybd{bottom:108.746667pt;}
.y88{bottom:108.800000pt;}
.yb0{bottom:108.826667pt;}
.y101{bottom:110.586667pt;}
.y143{bottom:111.226667pt;}
.ybc{bottom:112.746667pt;}
.y99{bottom:112.800000pt;}
.yb4{bottom:112.826667pt;}
.y65{bottom:118.266667pt;}
.y2a{bottom:118.586667pt;}
.y7a{bottom:122.586667pt;}
.y87{bottom:124.400000pt;}
.ybb{bottom:124.426667pt;}
.yb7{bottom:124.480000pt;}
.yd6{bottom:125.146667pt;}
.y100{bottom:126.186667pt;}
.y142{bottom:126.826667pt;}
.yc0{bottom:128.400000pt;}
.y9b{bottom:128.426667pt;}
.y9d{bottom:128.480000pt;}
.y98{bottom:132.426667pt;}
.yc4{bottom:132.480000pt;}
.y64{bottom:133.866667pt;}
.y29{bottom:134.186667pt;}
.y79{bottom:138.186667pt;}
.yb9{bottom:140.080000pt;}
.ybf{bottom:144.000000pt;}
.yaf{bottom:144.026667pt;}
.y86{bottom:144.080000pt;}
.y9a{bottom:144.106667pt;}
.yb3{bottom:148.026667pt;}
.yad{bottom:148.080000pt;}
.y97{bottom:148.106667pt;}
.y63{bottom:149.546667pt;}
.y28{bottom:149.866667pt;}
.y12e{bottom:150.506667pt;}
.y78{bottom:153.786667pt;}
.yd5{bottom:156.746667pt;}
.y85{bottom:159.680000pt;}
.y95{bottom:159.706667pt;}
.yac{bottom:163.680000pt;}
.y96{bottom:163.706667pt;}
.y62{bottom:165.146667pt;}
.y27{bottom:165.466667pt;}
.y12d{bottom:166.106667pt;}
.y77{bottom:169.466667pt;}
.y84{bottom:175.280000pt;}
.y8e{bottom:179.280000pt;}
.y94{bottom:179.306667pt;}
.y61{bottom:180.746667pt;}
.y26{bottom:181.146667pt;}
.y12c{bottom:181.786667pt;}
.y76{bottom:185.066667pt;}
.yd4{bottom:185.386667pt;}
.yff{bottom:189.066667pt;}
.y141{bottom:189.786667pt;}
.y83{bottom:194.960000pt;}
.y93{bottom:194.986667pt;}
.y60{bottom:196.426667pt;}
.y25{bottom:196.746667pt;}
.y75{bottom:200.746667pt;}
.yfe{bottom:204.746667pt;}
.y12b{bottom:205.386667pt;}
.y82{bottom:210.560000pt;}
.y5f{bottom:212.026667pt;}
.y24{bottom:212.346667pt;}
.y74{bottom:216.346667pt;}
.yfd{bottom:220.346667pt;}
.y12a{bottom:220.986667pt;}
.y92{bottom:226.186667pt;}
.y5e{bottom:227.706667pt;}
.y23{bottom:228.026667pt;}
.y73{bottom:231.946667pt;}
.y5d{bottom:243.306667pt;}
.y22{bottom:243.626667pt;}
.yfc{bottom:244.026667pt;}
.y129{bottom:244.666667pt;}
.y72{bottom:247.626667pt;}
.y5c{bottom:258.906667pt;}
.y21{bottom:259.226667pt;}
.yfb{bottom:259.626667pt;}
.y128{bottom:260.266667pt;}
.y71{bottom:263.226667pt;}
.yae{bottom:265.466667pt;}
.yc1{bottom:273.466667pt;}
.y5b{bottom:274.586667pt;}
.y20{bottom:274.906667pt;}
.y70{bottom:278.826667pt;}
.yfa{bottom:283.226667pt;}
.y127{bottom:283.946667pt;}
.y5a{bottom:290.186667pt;}
.y1f{bottom:290.506667pt;}
.y6f{bottom:294.506667pt;}
.yf9{bottom:298.906667pt;}
.y126{bottom:299.546667pt;}
.y59{bottom:305.866667pt;}
.y1e{bottom:306.186667pt;}
.y6e{bottom:310.106667pt;}
.yf8{bottom:314.506667pt;}
.y125{bottom:315.146667pt;}
.y58{bottom:321.466667pt;}
.y140{bottom:323.146667pt;}
.y6d{bottom:325.786667pt;}
.y1d{bottom:330.106667pt;}
.y57{bottom:337.066667pt;}
.yf7{bottom:338.426667pt;}
.y124{bottom:338.826667pt;}
.y6c{bottom:341.386667pt;}
.y56{bottom:352.746667pt;}
.y123{bottom:354.426667pt;}
.y6b{bottom:356.986667pt;}
.y13f{bottom:362.426667pt;}
.y6a{bottom:372.666667pt;}
.y1c{bottom:373.306667pt;}
.y55{bottom:376.666667pt;}
.y122{bottom:378.106667pt;}
.yf6{bottom:381.306667pt;}
.y69{bottom:388.266667pt;}
.y121{bottom:393.706667pt;}
.ybe{bottom:399.573333pt;}
.y13e{bottom:401.706667pt;}
.y68{bottom:403.946667pt;}
.yf5{bottom:405.226667pt;}
.y1b{bottom:406.186667pt;}
.y120{bottom:417.306667pt;}
.y54{bottom:419.573333pt;}
.y1a{bottom:421.813333pt;}
.y11f{bottom:433.013333pt;}
.y53{bottom:435.173333pt;}
.y19{bottom:437.493333pt;}
.y81{bottom:438.453333pt;}
.y13d{bottom:441.013333pt;}
.yd3{bottom:446.453333pt;}
.y52{bottom:450.853333pt;}
.y18{bottom:453.093333pt;}
.y11e{bottom:456.613333pt;}
.yab{bottom:462.053333pt;}
.y51{bottom:466.453333pt;}
.y17{bottom:468.773333pt;}
.y11d{bottom:472.293333pt;}
.yd2{bottom:477.733333pt;}
.yf4{bottom:481.413333pt;}
.y50{bottom:482.133333pt;}
.y16{bottom:484.373333pt;}
.y11c{bottom:487.893333pt;}
.yd1{bottom:493.333333pt;}
.y13c{bottom:495.893333pt;}
.yf3{bottom:497.013333pt;}
.y4f{bottom:497.733333pt;}
.y15{bottom:499.973333pt;}
.yd0{bottom:508.933333pt;}
.y11b{bottom:511.493333pt;}
.y4e{bottom:513.333333pt;}
.yf2{bottom:513.413333pt;}
.y14{bottom:515.653333pt;}
.y11a{bottom:527.173333pt;}
.y4d{bottom:529.013333pt;}
.y13{bottom:531.253333pt;}
.ycf{bottom:532.613333pt;}
.y13b{bottom:542.773333pt;}
.y4c{bottom:544.613333pt;}
.yf1{bottom:545.413333pt;}
.y12{bottom:546.853333pt;}
.y119{bottom:550.773333pt;}
.y4b{bottom:560.293333pt;}
.yba{bottom:560.933333pt;}
.yf0{bottom:561.013333pt;}
.y11{bottom:562.533333pt;}
.yce{bottom:564.213333pt;}
.y118{bottom:566.453333pt;}
.y4a{bottom:575.893333pt;}
.yef{bottom:577.413333pt;}
.y10{bottom:578.133333pt;}
.y13a{bottom:582.053333pt;}
.y117{bottom:590.053333pt;}
.y49{bottom:591.493333pt;}
.ycd{bottom:592.853333pt;}
.yee{bottom:593.013333pt;}
.yf{bottom:593.813333pt;}
.y116{bottom:605.653333pt;}
.y48{bottom:607.173333pt;}
.yed{bottom:609.333333pt;}
.ye{bottom:609.413333pt;}
.y115{bottom:621.333333pt;}
.y47{bottom:622.773333pt;}
.yd{bottom:625.013333pt;}
.y46{bottom:638.453333pt;}
.yc{bottom:640.693333pt;}
.yec{bottom:641.733333pt;}
.ya6{bottom:643.093333pt;}
.y114{bottom:644.933333pt;}
.y45{bottom:654.053333pt;}
.yb{bottom:656.293333pt;}
.yeb{bottom:657.413333pt;}
.y113{bottom:660.613333pt;}
.y7f{bottom:666.320000pt;}
.y44{bottom:669.653333pt;}
.y112{bottom:676.213333pt;}
.ya{bottom:680.293333pt;}
.yea{bottom:681.013333pt;}
.y139{bottom:684.213333pt;}
.y43{bottom:685.333333pt;}
.y111{bottom:699.813333pt;}
.y42{bottom:700.933333pt;}
.y7e{bottom:709.680000pt;}
.ye9{bottom:712.613333pt;}
.y110{bottom:715.493333pt;}
.y41{bottom:716.613333pt;}
.y9{bottom:721.813333pt;}
.y138{bottom:723.493333pt;}
.ye8{bottom:728.293333pt;}
.y10f{bottom:731.093333pt;}
.y40{bottom:732.213333pt;}
.y7c{bottom:733.280000pt;}
.y137{bottom:739.093333pt;}
.ye7{bottom:743.893333pt;}
.y14a{bottom:746.693333pt;}
.y3f{bottom:747.813333pt;}
.y8{bottom:753.653333pt;}
.y10e{bottom:754.693333pt;}
.ye6{bottom:759.573333pt;}
.y149{bottom:762.373333pt;}
.y136{bottom:762.693333pt;}
.y3e{bottom:763.493333pt;}
.y10d{bottom:770.373333pt;}
.ye5{bottom:775.173333pt;}
.y135{bottom:778.373333pt;}
.y3d{bottom:779.093333pt;}
.y7{bottom:785.653333pt;}
.y10c{bottom:785.973333pt;}
.ye4{bottom:790.773333pt;}
.y134{bottom:793.973333pt;}
.y3c{bottom:794.693333pt;}
.y148{bottom:801.653333pt;}
.ye3{bottom:806.453333pt;}
.y10b{bottom:809.653333pt;}
.y3b{bottom:810.373333pt;}
.y147{bottom:817.253333pt;}
.y6{bottom:817.653333pt;}
.ye2{bottom:822.053333pt;}
.y10a{bottom:825.253333pt;}
.y3a{bottom:825.973333pt;}
.y133{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.ye1{bottom:837.733333pt;}
.y109{bottom:840.853333pt;}
.y39{bottom:841.653333pt;}
.y132{bottom:848.853333pt;}
.ye0{bottom:853.333333pt;}
.y146{bottom:856.533333pt;}
.y38{bottom:857.253333pt;}
.y108{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.ydf{bottom:868.933333pt;}
.y131{bottom:872.533333pt;}
.y37{bottom:872.853333pt;}
.y107{bottom:880.133333pt;}
.yde{bottom:884.613333pt;}
.ycc{bottom:887.813333pt;}
.y130{bottom:888.133333pt;}
.y36{bottom:888.533333pt;}
.y145{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.ydd{bottom:900.240000pt;}
.ycb{bottom:903.520000pt;}
.y106{bottom:903.840000pt;}
.y35{bottom:904.160000pt;}
.ydc{bottom:915.840000pt;}
.yca{bottom:919.120000pt;}
.y105{bottom:919.440000pt;}
.y34{bottom:919.840000pt;}
.y12f{bottom:927.440000pt;}
.ydb{bottom:931.520000pt;}
.yc9{bottom:934.800000pt;}
.y144{bottom:935.040000pt;}
.y33{bottom:935.440000pt;}
.y104{bottom:943.040000pt;}
.yda{bottom:947.120000pt;}
.y32{bottom:951.040000pt;}
.yc8{bottom:958.400000pt;}
.y103{bottom:958.720000pt;}
.yd9{bottom:962.800000pt;}
.y31{bottom:966.720000pt;}
.y102{bottom:974.320000pt;}
.yd8{bottom:978.400000pt;}
.y30{bottom:982.320000pt;}
.yc7{bottom:990.320000pt;}
.y2f{bottom:998.000000pt;}
.yd7{bottom:1002.320000pt;}
.y2e{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.863281pt;}
.h6{height:45.246562pt;}
.h7{height:46.577344pt;}
.h8{height:49.581562pt;}
.h5{height:51.039844pt;}
.h18{height:54.927899pt;}
.h17{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.985156pt;}
.h10{height:70.506667pt;}
.h16{height:125.466667pt;}
.hf{height:145.120000pt;}
.h15{height:160.640000pt;}
.h14{height:160.666667pt;}
.h13{height:176.320000pt;}
.h11{height:180.320000pt;}
.h12{height:195.946667pt;}
.he{height:211.626667pt;}
.hd{height:227.226667pt;}
.ha{height:793.920000pt;}
.hb{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:35.520000pt;}
.w8{width:140.640000pt;}
.w7{width:199.466667pt;}
.w9{width:271.946667pt;}
.wa{width:278.800000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x1{left:60.480000pt;}
.x10{left:84.479988pt;}
.x6{left:95.999983pt;}
.x12{left:98.879988pt;}
.x11{left:108.479988pt;}
.x8{left:132.800000pt;}
.x2{left:180.266655pt;}
.xd{left:237.866655pt;}
.xf{left:265.626655pt;}
.x9{left:332.986667pt;}
.x4{left:344.346650pt;}
.xa{left:474.266667pt;}
.xe{left:625.013322pt;}
.xc{left:632.053322pt;}
.x3{left:704.053322pt;}
.xb{left:746.853333pt;}
.x5{left:996.773317pt;}
}




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