
    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_64deb1c26f44d0f104cd028e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_70eaef9db32cbd651e26b819.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_0d93239b432d34b82dfc682f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_c57943ffc4860ef8ffcb9243.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_08a80fbb36df4bcc63670f14.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_d430c6069411d42d0437fe78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.540000px;}
.lsb{letter-spacing:1.620000px;}
.ls0{letter-spacing:9.509760px;}
.ls1{letter-spacing:10.368000px;}
.ls12{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.ws9{word-spacing:-21.060000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws3{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:94.650000px;}
.wsb{word-spacing:220.350000px;}
.ws8{word-spacing:241.950000px;}
._14{margin-left:-8.726400px;}
._17{margin-left:-7.298640px;}
._15{margin-left:-6.075840px;}
._d{margin-left:-4.246560px;}
._3{margin-left:-2.681280px;}
._2{margin-left:-1.104000px;}
._0{width:1.317600px;}
._8{width:2.324880px;}
._5{width:3.427200px;}
._4{width:4.939200px;}
._7{width:6.451200px;}
._6{width:7.470000px;}
._b{width:8.511360px;}
._9{width:9.621360px;}
._a{width:10.812720px;}
._c{width:12.191040px;}
._11{width:13.323600px;}
._e{width:18.582480px;}
._f{width:19.663920px;}
._10{width:35.346720px;}
._13{width:70.758000px;}
._12{width:94.002000px;}
._16{width:155.124000px;}
._1{width:1100.028000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc5{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y3a{bottom:5.760000px;}
.yb1{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y38{bottom:11.160000px;}
.yf4{bottom:12.390000px;}
.y113{bottom:12.456000px;}
.y148{bottom:12.495000px;}
.yd1{bottom:14.220000px;}
.y45{bottom:25.740000px;}
.yf3{bottom:27.900000px;}
.y10c{bottom:28.335000px;}
.y141{bottom:28.365000px;}
.y37{bottom:30.960000px;}
.y6{bottom:36.000000px;}
.yd0{bottom:38.010000px;}
.yf2{bottom:43.410000px;}
.y44{bottom:45.570000px;}
.y36{bottom:50.790000px;}
.y10d{bottom:54.330000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.ye8{bottom:59.295000px;}
.ycf{bottom:61.815000px;}
.y142{bottom:62.385000px;}
.y43{bottom:65.370000px;}
.y35{bottom:70.590000px;}
.y164{bottom:76.860000px;}
.ye9{bottom:77.580000px;}
.y13f{bottom:79.380000px;}
.y10e{bottom:80.310000px;}
.yaa{bottom:80.640000px;}
.y2c{bottom:81.540000px;}
.y4{bottom:81.720000px;}
.ye6{bottom:84.420000px;}
.y42{bottom:85.170000px;}
.yc5{bottom:86.400000px;}
.y7c{bottom:89.640000px;}
.y34{bottom:90.390000px;}
.ycc{bottom:90.570000px;}
.yea{bottom:95.910000px;}
.y143{bottom:96.405000px;}
.y163{bottom:96.660000px;}
.y13e{bottom:99.180000px;}
.ya9{bottom:100.440000px;}
.y2b{bottom:101.340000px;}
.ye5{bottom:104.220000px;}
.y41{bottom:104.970000px;}
.yc4{bottom:106.200000px;}
.y10f{bottom:106.350000px;}
.yc7{bottom:106.455000px;}
.y9{bottom:108.570000px;}
.y7b{bottom:109.440000px;}
.y10a{bottom:109.620000px;}
.y33{bottom:110.370000px;}
.yeb{bottom:114.195000px;}
.y162{bottom:116.640000px;}
.y3{bottom:118.110000px;}
.y13d{bottom:118.980000px;}
.ya8{bottom:120.240000px;}
.ye4{bottom:120.780000px;}
.y2a{bottom:121.140000px;}
.y40{bottom:124.950000px;}
.yc3{bottom:126.180000px;}
.y10b{bottom:127.260000px;}
.y32{bottom:130.170000px;}
.y144{bottom:130.425000px;}
.y8{bottom:130.530000px;}
.y110{bottom:132.330000px;}
.yec{bottom:132.480000px;}
.yc8{bottom:134.355000px;}
.y161{bottom:136.440000px;}
.y7a{bottom:138.240000px;}
.y13c{bottom:138.780000px;}
.ya7{bottom:140.040000px;}
.y29{bottom:141.120000px;}
.y3f{bottom:144.750000px;}
.yc2{bottom:145.980000px;}
.y31{bottom:149.970000px;}
.yed{bottom:150.810000px;}
.y160{bottom:156.270000px;}
.y79{bottom:158.070000px;}
.y111{bottom:158.325000px;}
.y13b{bottom:158.790000px;}
.ya6{bottom:159.870000px;}
.y28{bottom:160.950000px;}
.yc9{bottom:162.255000px;}
.y145{bottom:164.445000px;}
.y3e{bottom:164.550000px;}
.yc1{bottom:165.810000px;}
.yee{bottom:169.095000px;}
.y30{bottom:169.770000px;}
.y15f{bottom:176.070000px;}
.y78{bottom:177.870000px;}
.y13a{bottom:178.590000px;}
.ya5{bottom:179.850000px;}
.y27{bottom:180.750000px;}
.y112{bottom:184.320000px;}
.y3d{bottom:184.350000px;}
.yc0{bottom:185.610000px;}
.yef{bottom:187.410000px;}
.y2f{bottom:189.570000px;}
.yca{bottom:190.155000px;}
.y15e{bottom:195.870000px;}
.y77{bottom:197.850000px;}
.y139{bottom:198.390000px;}
.y146{bottom:198.510000px;}
.ya4{bottom:199.650000px;}
.y26{bottom:200.550000px;}
.y3c{bottom:204.150000px;}
.ybf{bottom:205.410000px;}
.yf0{bottom:205.710000px;}
.y115{bottom:211.860000px;}
.y15d{bottom:215.850000px;}
.y76{bottom:217.650000px;}
.ycb{bottom:218.055000px;}
.y138{bottom:218.190000px;}
.y25{bottom:220.350000px;}
.yf1{bottom:223.995000px;}
.y3b{bottom:224.130000px;}
.ybe{bottom:225.390000px;}
.ya3{bottom:228.450000px;}
.y147{bottom:232.530000px;}
.y15c{bottom:235.650000px;}
.y114{bottom:235.980000px;}
.y75{bottom:237.450000px;}
.y137{bottom:237.990000px;}
.y24{bottom:240.330000px;}
.ybd{bottom:245.190000px;}
.yce{bottom:245.595000px;}
.ya2{bottom:248.250000px;}
.y2e{bottom:249.150000px;}
.yf6{bottom:251.535000px;}
.y15b{bottom:255.450000px;}
.y74{bottom:257.250000px;}
.y136{bottom:257.970000px;}
.y149{bottom:260.025000px;}
.y23{bottom:260.130000px;}
.ybc{bottom:264.990000px;}
.ya1{bottom:268.050000px;}
.ycd{bottom:269.715000px;}
.y15a{bottom:275.250000px;}
.yf5{bottom:275.685000px;}
.y73{bottom:277.050000px;}
.y135{bottom:277.770000px;}
.y22{bottom:279.930000px;}
.ybb{bottom:284.790000px;}
.ya0{bottom:288.030000px;}
.y159{bottom:295.050000px;}
.y72{bottom:297.030000px;}
.y134{bottom:297.570000px;}
.y21{bottom:299.730000px;}
.yba{bottom:304.590000px;}
.y9f{bottom:307.830000px;}
.y158{bottom:315.030000px;}
.y71{bottom:316.830000px;}
.y133{bottom:317.370000px;}
.y20{bottom:319.530000px;}
.yb9{bottom:324.570000px;}
.y9e{bottom:327.630000px;}
.y157{bottom:334.830000px;}
.y70{bottom:336.630000px;}
.y132{bottom:337.170000px;}
.y1f{bottom:339.330000px;}
.yb8{bottom:344.370000px;}
.y9d{bottom:347.430000px;}
.y156{bottom:354.630000px;}
.y131{bottom:357.150000px;}
.y1e{bottom:359.310000px;}
.yb7{bottom:364.170000px;}
.y6f{bottom:365.430000px;}
.y9c{bottom:367.230000px;}
.y155{bottom:374.430000px;}
.y130{bottom:376.950000px;}
.y1d{bottom:379.110000px;}
.yb6{bottom:383.970000px;}
.y6e{bottom:385.230000px;}
.y9b{bottom:387.210000px;}
.y154{bottom:394.230000px;}
.y12f{bottom:396.750000px;}
.y1c{bottom:398.910000px;}
.y109{bottom:399.990000px;}
.yb5{bottom:403.815000px;}
.y6d{bottom:405.255000px;}
.y9a{bottom:407.055000px;}
.y153{bottom:414.255000px;}
.y12e{bottom:416.595000px;}
.y1b{bottom:418.755000px;}
.y108{bottom:419.835000px;}
.yb4{bottom:423.795000px;}
.y6c{bottom:425.055000px;}
.y99{bottom:426.855000px;}
.y152{bottom:434.055000px;}
.y12d{bottom:436.395000px;}
.y1a{bottom:438.555000px;}
.y107{bottom:439.635000px;}
.ye3{bottom:440.535000px;}
.yb3{bottom:443.595000px;}
.y6b{bottom:444.855000px;}
.y98{bottom:446.655000px;}
.y151{bottom:453.855000px;}
.y12c{bottom:456.375000px;}
.yb2{bottom:458.355000px;}
.y19{bottom:458.535000px;}
.y106{bottom:459.435000px;}
.ye2{bottom:460.335000px;}
.y6a{bottom:464.655000px;}
.y150{bottom:473.655000px;}
.y97{bottom:475.455000px;}
.y12b{bottom:476.175000px;}
.y18{bottom:478.335000px;}
.yb0{bottom:478.875000px;}
.y105{bottom:479.235000px;}
.ye1{bottom:480.315000px;}
.y69{bottom:484.455000px;}
.y14f{bottom:493.455000px;}
.y96{bottom:495.435000px;}
.y12a{bottom:495.975000px;}
.y17{bottom:498.135000px;}
.y104{bottom:499.035000px;}
.yaf{bottom:499.575000px;}
.ye0{bottom:500.115000px;}
.y68{bottom:504.435000px;}
.y14e{bottom:513.435000px;}
.y95{bottom:515.235000px;}
.y129{bottom:515.775000px;}
.y16{bottom:517.935000px;}
.y103{bottom:519.015000px;}
.ydf{bottom:519.915000px;}
.yae{bottom:520.095000px;}
.y67{bottom:524.235000px;}
.y14d{bottom:533.235000px;}
.y94{bottom:535.035000px;}
.y128{bottom:535.575000px;}
.y15{bottom:537.735000px;}
.y102{bottom:538.815000px;}
.yde{bottom:539.715000px;}
.y66{bottom:544.035000px;}
.yad{bottom:546.555000px;}
.y14c{bottom:553.035000px;}
.y93{bottom:554.835000px;}
.y127{bottom:555.555000px;}
.y14{bottom:557.715000px;}
.y101{bottom:558.615000px;}
.ydd{bottom:559.515000px;}
.y65{bottom:563.835000px;}
.yac{bottom:566.355000px;}
.y14b{bottom:572.835000px;}
.y92{bottom:574.635000px;}
.y126{bottom:575.355000px;}
.y13{bottom:577.515000px;}
.y100{bottom:578.415000px;}
.ydc{bottom:579.495000px;}
.yab{bottom:582.915000px;}
.y64{bottom:583.635000px;}
.yc6{bottom:583.920000px;}
.y14a{bottom:592.635000px;}
.y91{bottom:594.615000px;}
.y125{bottom:595.155000px;}
.y12{bottom:597.315000px;}
.yff{bottom:598.215000px;}
.ydb{bottom:599.295000px;}
.y63{bottom:612.615000px;}
.y90{bottom:614.415000px;}
.y124{bottom:614.955000px;}
.y2d{bottom:616.575000px;}
.yfe{bottom:618.195000px;}
.yda{bottom:619.095000px;}
.y62{bottom:632.415000px;}
.y8f{bottom:634.215000px;}
.y123{bottom:634.755000px;}
.yfd{bottom:637.995000px;}
.yd9{bottom:638.895000px;}
.y61{bottom:652.245000px;}
.y122{bottom:654.765000px;}
.yfc{bottom:657.825000px;}
.yd8{bottom:658.725000px;}
.y8e{bottom:663.045000px;}
.y60{bottom:672.045000px;}
.y121{bottom:674.565000px;}
.yfb{bottom:677.625000px;}
.yd7{bottom:678.705000px;}
.y8d{bottom:682.845000px;}
.y5f{bottom:691.845000px;}
.y120{bottom:694.365000px;}
.yfa{bottom:697.425000px;}
.yd6{bottom:698.505000px;}
.y8c{bottom:702.825000px;}
.y5e{bottom:711.825000px;}
.y11f{bottom:714.165000px;}
.yf9{bottom:717.405000px;}
.yd5{bottom:718.305000px;}
.y8b{bottom:722.625000px;}
.y5d{bottom:731.625000px;}
.y11e{bottom:733.965000px;}
.yf8{bottom:737.205000px;}
.yd4{bottom:738.105000px;}
.y8a{bottom:742.425000px;}
.y5c{bottom:751.425000px;}
.yf7{bottom:753.765000px;}
.y11d{bottom:753.945000px;}
.yd3{bottom:757.905000px;}
.y89{bottom:762.225000px;}
.y5b{bottom:771.225000px;}
.y11c{bottom:773.745000px;}
.yd2{bottom:774.465000px;}
.ye7{bottom:776.340000px;}
.y88{bottom:782.025000px;}
.y5a{bottom:791.025000px;}
.y11b{bottom:793.545000px;}
.y87{bottom:802.005000px;}
.y59{bottom:811.005000px;}
.y11a{bottom:813.345000px;}
.y86{bottom:821.805000px;}
.y58{bottom:830.805000px;}
.y119{bottom:833.145000px;}
.y85{bottom:841.605000px;}
.y57{bottom:850.605000px;}
.y118{bottom:853.125000px;}
.y39{bottom:859.965000px;}
.y84{bottom:861.405000px;}
.y56{bottom:870.405000px;}
.y117{bottom:872.925000px;}
.y83{bottom:881.205000px;}
.y116{bottom:889.485000px;}
.y55{bottom:890.205000px;}
.y140{bottom:891.180000px;}
.y11{bottom:893.445000px;}
.y82{bottom:901.230000px;}
.y54{bottom:910.230000px;}
.y10{bottom:913.290000px;}
.y81{bottom:921.030000px;}
.y53{bottom:930.030000px;}
.yf{bottom:933.630000px;}
.y80{bottom:940.830000px;}
.y52{bottom:949.830000px;}
.ye{bottom:954.870000px;}
.y7f{bottom:960.630000px;}
.y51{bottom:969.630000px;}
.yd{bottom:978.450000px;}
.y7e{bottom:980.430000px;}
.y50{bottom:989.430000px;}
.y7d{bottom:1000.410000px;}
.y4f{bottom:1009.410000px;}
.yc{bottom:1010.130000px;}
.y4e{bottom:1029.210000px;}
.ya{bottom:1036.050000px;}
.y4d{bottom:1049.010000px;}
.y1{bottom:1052.250000px;}
.y4c{bottom:1068.810000px;}
.y4b{bottom:1088.610000px;}
.y4a{bottom:1108.590000px;}
.y49{bottom:1128.390000px;}
.y48{bottom:1148.220000px;}
.y47{bottom:1168.020000px;}
.y46{bottom:1195.740000px;}
.hc{height:19.800000px;}
.he{height:19.980000px;}
.h10{height:38.759766px;}
.h9{height:42.164648px;}
.h7{height:42.894141px;}
.h17{height:43.506914px;}
.h16{height:43.681992px;}
.h5{height:47.545312px;}
.h8{height:53.734219px;}
.h11{height:60.465234px;}
.h13{height:60.568594px;}
.h6{height:67.565039px;}
.hb{height:71.613281px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.hd{height:238.170000px;}
.ha{height:263.190000px;}
.h14{height:266.940000px;}
.h15{height:290.880000px;}
.hf{height:300.600000px;}
.h12{height:306.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:107.460000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.w8{width:175.350000px;}
.w6{width:285.555000px;}
.wa{width:374.475000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.we{width:507.060000px;}
.wd{width:512.280000px;}
.wb{width:522.720000px;}
.wc{width:536.940000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x15{left:9.825000px;}
.x1e{left:16.665000px;}
.x14{left:23.325000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.x23{left:68.970000px;}
.x1f{left:73.260000px;}
.x29{left:76.530000px;}
.x2f{left:80.999987px;}
.x16{left:83.670000px;}
.x20{left:92.595000px;}
.xc{left:96.515987px;}
.x7{left:102.285000px;}
.x30{left:108.035987px;}
.x2b{left:113.835000px;}
.x17{left:114.840000px;}
.x2{left:115.950000px;}
.xf{left:117.036000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x2e{left:147.060000px;}
.x2a{left:150.015000px;}
.x19{left:152.565000px;}
.x12{left:163.829987px;}
.x18{left:170.640000px;}
.x1d{left:177.480000px;}
.x3{left:181.650000px;}
.x13{left:184.320000px;}
.x21{left:189.030000px;}
.x2d{left:192.060000px;}
.x1c{left:214.769987px;}
.x28{left:222.869987px;}
.xe{left:231.869987px;}
.x24{left:240.375000px;}
.xb{left:241.409987px;}
.x10{left:293.295000px;}
.x2c{left:333.794987px;}
.xa{left:342.795000px;}
.x26{left:346.394987px;}
.x11{left:401.655000px;}
.x22{left:443.955000px;}
.x25{left:660.389987px;}
.x9{left:681.450000px;}
.x1b{left:700.889987px;}
.x27{left:703.049987px;}
.xd{left:708.629987px;}
.x1a{left:715.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.480000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls0{letter-spacing:8.453120pt;}
.ls1{letter-spacing:9.216000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws9{word-spacing:-18.720000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:84.133333pt;}
.wsb{word-spacing:195.866667pt;}
.ws8{word-spacing:215.066667pt;}
._14{margin-left:-7.756800pt;}
._17{margin-left:-6.487680pt;}
._15{margin-left:-5.400747pt;}
._d{margin-left:-3.774720pt;}
._3{margin-left:-2.383360pt;}
._2{margin-left:-0.981333pt;}
._0{width:1.171200pt;}
._8{width:2.066560pt;}
._5{width:3.046400pt;}
._4{width:4.390400pt;}
._7{width:5.734400pt;}
._6{width:6.640000pt;}
._b{width:7.565653pt;}
._9{width:8.552320pt;}
._a{width:9.611307pt;}
._c{width:10.836480pt;}
._11{width:11.843200pt;}
._e{width:16.517760pt;}
._f{width:17.479040pt;}
._10{width:31.419307pt;}
._13{width:62.896000pt;}
._12{width:83.557333pt;}
._16{width:137.888000pt;}
._1{width:977.802667pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y3a{bottom:5.120000pt;}
.yb1{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y38{bottom:9.920000pt;}
.yf4{bottom:11.013333pt;}
.y113{bottom:11.072000pt;}
.y148{bottom:11.106667pt;}
.yd1{bottom:12.640000pt;}
.y45{bottom:22.880000pt;}
.yf3{bottom:24.800000pt;}
.y10c{bottom:25.186667pt;}
.y141{bottom:25.213333pt;}
.y37{bottom:27.520000pt;}
.y6{bottom:32.000000pt;}
.yd0{bottom:33.786667pt;}
.yf2{bottom:38.586667pt;}
.y44{bottom:40.506667pt;}
.y36{bottom:45.146667pt;}
.y10d{bottom:48.293333pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.ye8{bottom:52.706667pt;}
.ycf{bottom:54.946667pt;}
.y142{bottom:55.453333pt;}
.y43{bottom:58.106667pt;}
.y35{bottom:62.746667pt;}
.y164{bottom:68.320000pt;}
.ye9{bottom:68.960000pt;}
.y13f{bottom:70.560000pt;}
.y10e{bottom:71.386667pt;}
.yaa{bottom:71.680000pt;}
.y2c{bottom:72.480000pt;}
.y4{bottom:72.640000pt;}
.ye6{bottom:75.040000pt;}
.y42{bottom:75.706667pt;}
.yc5{bottom:76.800000pt;}
.y7c{bottom:79.680000pt;}
.y34{bottom:80.346667pt;}
.ycc{bottom:80.506667pt;}
.yea{bottom:85.253333pt;}
.y143{bottom:85.693333pt;}
.y163{bottom:85.920000pt;}
.y13e{bottom:88.160000pt;}
.ya9{bottom:89.280000pt;}
.y2b{bottom:90.080000pt;}
.ye5{bottom:92.640000pt;}
.y41{bottom:93.306667pt;}
.yc4{bottom:94.400000pt;}
.y10f{bottom:94.533333pt;}
.yc7{bottom:94.626667pt;}
.y9{bottom:96.506667pt;}
.y7b{bottom:97.280000pt;}
.y10a{bottom:97.440000pt;}
.y33{bottom:98.106667pt;}
.yeb{bottom:101.506667pt;}
.y162{bottom:103.680000pt;}
.y3{bottom:104.986667pt;}
.y13d{bottom:105.760000pt;}
.ya8{bottom:106.880000pt;}
.ye4{bottom:107.360000pt;}
.y2a{bottom:107.680000pt;}
.y40{bottom:111.066667pt;}
.yc3{bottom:112.160000pt;}
.y10b{bottom:113.120000pt;}
.y32{bottom:115.706667pt;}
.y144{bottom:115.933333pt;}
.y8{bottom:116.026667pt;}
.y110{bottom:117.626667pt;}
.yec{bottom:117.760000pt;}
.yc8{bottom:119.426667pt;}
.y161{bottom:121.280000pt;}
.y7a{bottom:122.880000pt;}
.y13c{bottom:123.360000pt;}
.ya7{bottom:124.480000pt;}
.y29{bottom:125.440000pt;}
.y3f{bottom:128.666667pt;}
.yc2{bottom:129.760000pt;}
.y31{bottom:133.306667pt;}
.yed{bottom:134.053333pt;}
.y160{bottom:138.906667pt;}
.y79{bottom:140.506667pt;}
.y111{bottom:140.733333pt;}
.y13b{bottom:141.146667pt;}
.ya6{bottom:142.106667pt;}
.y28{bottom:143.066667pt;}
.yc9{bottom:144.226667pt;}
.y145{bottom:146.173333pt;}
.y3e{bottom:146.266667pt;}
.yc1{bottom:147.386667pt;}
.yee{bottom:150.306667pt;}
.y30{bottom:150.906667pt;}
.y15f{bottom:156.506667pt;}
.y78{bottom:158.106667pt;}
.y13a{bottom:158.746667pt;}
.ya5{bottom:159.866667pt;}
.y27{bottom:160.666667pt;}
.y112{bottom:163.840000pt;}
.y3d{bottom:163.866667pt;}
.yc0{bottom:164.986667pt;}
.yef{bottom:166.586667pt;}
.y2f{bottom:168.506667pt;}
.yca{bottom:169.026667pt;}
.y15e{bottom:174.106667pt;}
.y77{bottom:175.866667pt;}
.y139{bottom:176.346667pt;}
.y146{bottom:176.453333pt;}
.ya4{bottom:177.466667pt;}
.y26{bottom:178.266667pt;}
.y3c{bottom:181.466667pt;}
.ybf{bottom:182.586667pt;}
.yf0{bottom:182.853333pt;}
.y115{bottom:188.320000pt;}
.y15d{bottom:191.866667pt;}
.y76{bottom:193.466667pt;}
.ycb{bottom:193.826667pt;}
.y138{bottom:193.946667pt;}
.y25{bottom:195.866667pt;}
.yf1{bottom:199.106667pt;}
.y3b{bottom:199.226667pt;}
.ybe{bottom:200.346667pt;}
.ya3{bottom:203.066667pt;}
.y147{bottom:206.693333pt;}
.y15c{bottom:209.466667pt;}
.y114{bottom:209.760000pt;}
.y75{bottom:211.066667pt;}
.y137{bottom:211.546667pt;}
.y24{bottom:213.626667pt;}
.ybd{bottom:217.946667pt;}
.yce{bottom:218.306667pt;}
.ya2{bottom:220.666667pt;}
.y2e{bottom:221.466667pt;}
.yf6{bottom:223.586667pt;}
.y15b{bottom:227.066667pt;}
.y74{bottom:228.666667pt;}
.y136{bottom:229.306667pt;}
.y149{bottom:231.133333pt;}
.y23{bottom:231.226667pt;}
.ybc{bottom:235.546667pt;}
.ya1{bottom:238.266667pt;}
.ycd{bottom:239.746667pt;}
.y15a{bottom:244.666667pt;}
.yf5{bottom:245.053333pt;}
.y73{bottom:246.266667pt;}
.y135{bottom:246.906667pt;}
.y22{bottom:248.826667pt;}
.ybb{bottom:253.146667pt;}
.ya0{bottom:256.026667pt;}
.y159{bottom:262.266667pt;}
.y72{bottom:264.026667pt;}
.y134{bottom:264.506667pt;}
.y21{bottom:266.426667pt;}
.yba{bottom:270.746667pt;}
.y9f{bottom:273.626667pt;}
.y158{bottom:280.026667pt;}
.y71{bottom:281.626667pt;}
.y133{bottom:282.106667pt;}
.y20{bottom:284.026667pt;}
.yb9{bottom:288.506667pt;}
.y9e{bottom:291.226667pt;}
.y157{bottom:297.626667pt;}
.y70{bottom:299.226667pt;}
.y132{bottom:299.706667pt;}
.y1f{bottom:301.626667pt;}
.yb8{bottom:306.106667pt;}
.y9d{bottom:308.826667pt;}
.y156{bottom:315.226667pt;}
.y131{bottom:317.466667pt;}
.y1e{bottom:319.386667pt;}
.yb7{bottom:323.706667pt;}
.y6f{bottom:324.826667pt;}
.y9c{bottom:326.426667pt;}
.y155{bottom:332.826667pt;}
.y130{bottom:335.066667pt;}
.y1d{bottom:336.986667pt;}
.yb6{bottom:341.306667pt;}
.y6e{bottom:342.426667pt;}
.y9b{bottom:344.186667pt;}
.y154{bottom:350.426667pt;}
.y12f{bottom:352.666667pt;}
.y1c{bottom:354.586667pt;}
.y109{bottom:355.546667pt;}
.yb5{bottom:358.946667pt;}
.y6d{bottom:360.226667pt;}
.y9a{bottom:361.826667pt;}
.y153{bottom:368.226667pt;}
.y12e{bottom:370.306667pt;}
.y1b{bottom:372.226667pt;}
.y108{bottom:373.186667pt;}
.yb4{bottom:376.706667pt;}
.y6c{bottom:377.826667pt;}
.y99{bottom:379.426667pt;}
.y152{bottom:385.826667pt;}
.y12d{bottom:387.906667pt;}
.y1a{bottom:389.826667pt;}
.y107{bottom:390.786667pt;}
.ye3{bottom:391.586667pt;}
.yb3{bottom:394.306667pt;}
.y6b{bottom:395.426667pt;}
.y98{bottom:397.026667pt;}
.y151{bottom:403.426667pt;}
.y12c{bottom:405.666667pt;}
.yb2{bottom:407.426667pt;}
.y19{bottom:407.586667pt;}
.y106{bottom:408.386667pt;}
.ye2{bottom:409.186667pt;}
.y6a{bottom:413.026667pt;}
.y150{bottom:421.026667pt;}
.y97{bottom:422.626667pt;}
.y12b{bottom:423.266667pt;}
.y18{bottom:425.186667pt;}
.yb0{bottom:425.666667pt;}
.y105{bottom:425.986667pt;}
.ye1{bottom:426.946667pt;}
.y69{bottom:430.626667pt;}
.y14f{bottom:438.626667pt;}
.y96{bottom:440.386667pt;}
.y12a{bottom:440.866667pt;}
.y17{bottom:442.786667pt;}
.y104{bottom:443.586667pt;}
.yaf{bottom:444.066667pt;}
.ye0{bottom:444.546667pt;}
.y68{bottom:448.386667pt;}
.y14e{bottom:456.386667pt;}
.y95{bottom:457.986667pt;}
.y129{bottom:458.466667pt;}
.y16{bottom:460.386667pt;}
.y103{bottom:461.346667pt;}
.ydf{bottom:462.146667pt;}
.yae{bottom:462.306667pt;}
.y67{bottom:465.986667pt;}
.y14d{bottom:473.986667pt;}
.y94{bottom:475.586667pt;}
.y128{bottom:476.066667pt;}
.y15{bottom:477.986667pt;}
.y102{bottom:478.946667pt;}
.yde{bottom:479.746667pt;}
.y66{bottom:483.586667pt;}
.yad{bottom:485.826667pt;}
.y14c{bottom:491.586667pt;}
.y93{bottom:493.186667pt;}
.y127{bottom:493.826667pt;}
.y14{bottom:495.746667pt;}
.y101{bottom:496.546667pt;}
.ydd{bottom:497.346667pt;}
.y65{bottom:501.186667pt;}
.yac{bottom:503.426667pt;}
.y14b{bottom:509.186667pt;}
.y92{bottom:510.786667pt;}
.y126{bottom:511.426667pt;}
.y13{bottom:513.346667pt;}
.y100{bottom:514.146667pt;}
.ydc{bottom:515.106667pt;}
.yab{bottom:518.146667pt;}
.y64{bottom:518.786667pt;}
.yc6{bottom:519.040000pt;}
.y14a{bottom:526.786667pt;}
.y91{bottom:528.546667pt;}
.y125{bottom:529.026667pt;}
.y12{bottom:530.946667pt;}
.yff{bottom:531.746667pt;}
.ydb{bottom:532.706667pt;}
.y63{bottom:544.546667pt;}
.y90{bottom:546.146667pt;}
.y124{bottom:546.626667pt;}
.y2d{bottom:548.066667pt;}
.yfe{bottom:549.506667pt;}
.yda{bottom:550.306667pt;}
.y62{bottom:562.146667pt;}
.y8f{bottom:563.746667pt;}
.y123{bottom:564.226667pt;}
.yfd{bottom:567.106667pt;}
.yd9{bottom:567.906667pt;}
.y61{bottom:579.773333pt;}
.y122{bottom:582.013333pt;}
.yfc{bottom:584.733333pt;}
.yd8{bottom:585.533333pt;}
.y8e{bottom:589.373333pt;}
.y60{bottom:597.373333pt;}
.y121{bottom:599.613333pt;}
.yfb{bottom:602.333333pt;}
.yd7{bottom:603.293333pt;}
.y8d{bottom:606.973333pt;}
.y5f{bottom:614.973333pt;}
.y120{bottom:617.213333pt;}
.yfa{bottom:619.933333pt;}
.yd6{bottom:620.893333pt;}
.y8c{bottom:624.733333pt;}
.y5e{bottom:632.733333pt;}
.y11f{bottom:634.813333pt;}
.yf9{bottom:637.693333pt;}
.yd5{bottom:638.493333pt;}
.y8b{bottom:642.333333pt;}
.y5d{bottom:650.333333pt;}
.y11e{bottom:652.413333pt;}
.yf8{bottom:655.293333pt;}
.yd4{bottom:656.093333pt;}
.y8a{bottom:659.933333pt;}
.y5c{bottom:667.933333pt;}
.yf7{bottom:670.013333pt;}
.y11d{bottom:670.173333pt;}
.yd3{bottom:673.693333pt;}
.y89{bottom:677.533333pt;}
.y5b{bottom:685.533333pt;}
.y11c{bottom:687.773333pt;}
.yd2{bottom:688.413333pt;}
.ye7{bottom:690.080000pt;}
.y88{bottom:695.133333pt;}
.y5a{bottom:703.133333pt;}
.y11b{bottom:705.373333pt;}
.y87{bottom:712.893333pt;}
.y59{bottom:720.893333pt;}
.y11a{bottom:722.973333pt;}
.y86{bottom:730.493333pt;}
.y58{bottom:738.493333pt;}
.y119{bottom:740.573333pt;}
.y85{bottom:748.093333pt;}
.y57{bottom:756.093333pt;}
.y118{bottom:758.333333pt;}
.y39{bottom:764.413333pt;}
.y84{bottom:765.693333pt;}
.y56{bottom:773.693333pt;}
.y117{bottom:775.933333pt;}
.y83{bottom:783.293333pt;}
.y116{bottom:790.653333pt;}
.y55{bottom:791.293333pt;}
.y140{bottom:792.160000pt;}
.y11{bottom:794.173333pt;}
.y82{bottom:801.093333pt;}
.y54{bottom:809.093333pt;}
.y10{bottom:811.813333pt;}
.y81{bottom:818.693333pt;}
.y53{bottom:826.693333pt;}
.yf{bottom:829.893333pt;}
.y80{bottom:836.293333pt;}
.y52{bottom:844.293333pt;}
.ye{bottom:848.773333pt;}
.y7f{bottom:853.893333pt;}
.y51{bottom:861.893333pt;}
.yd{bottom:869.733333pt;}
.y7e{bottom:871.493333pt;}
.y50{bottom:879.493333pt;}
.y7d{bottom:889.253333pt;}
.y4f{bottom:897.253333pt;}
.yc{bottom:897.893333pt;}
.y4e{bottom:914.853333pt;}
.ya{bottom:920.933333pt;}
.y4d{bottom:932.453333pt;}
.y1{bottom:935.333333pt;}
.y4c{bottom:950.053333pt;}
.y4b{bottom:967.653333pt;}
.y4a{bottom:985.413333pt;}
.y49{bottom:1003.013333pt;}
.y48{bottom:1020.640000pt;}
.y47{bottom:1038.240000pt;}
.y46{bottom:1062.880000pt;}
.hc{height:17.600000pt;}
.he{height:17.760000pt;}
.h10{height:34.453125pt;}
.h9{height:37.479688pt;}
.h7{height:38.128125pt;}
.h17{height:38.672812pt;}
.h16{height:38.828437pt;}
.h5{height:42.262500pt;}
.h8{height:47.763750pt;}
.h11{height:53.746875pt;}
.h13{height:53.838750pt;}
.h6{height:60.057813pt;}
.hb{height:63.656250pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.hd{height:211.706667pt;}
.ha{height:233.946667pt;}
.h14{height:237.280000pt;}
.h15{height:258.560000pt;}
.hf{height:267.200000pt;}
.h12{height:272.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:95.520000pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.w8{width:155.866667pt;}
.w6{width:253.826667pt;}
.wa{width:332.866667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.we{width:450.720000pt;}
.wd{width:455.360000pt;}
.wb{width:464.640000pt;}
.wc{width:477.280000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x15{left:8.733333pt;}
.x1e{left:14.813333pt;}
.x14{left:20.733333pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.x23{left:61.306667pt;}
.x1f{left:65.120000pt;}
.x29{left:68.026667pt;}
.x2f{left:71.999988pt;}
.x16{left:74.373333pt;}
.x20{left:82.306667pt;}
.xc{left:85.791988pt;}
.x7{left:90.920000pt;}
.x30{left:96.031988pt;}
.x2b{left:101.186667pt;}
.x17{left:102.080000pt;}
.x2{left:103.066667pt;}
.xf{left:104.032000pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x2e{left:130.720000pt;}
.x2a{left:133.346667pt;}
.x19{left:135.613333pt;}
.x12{left:145.626655pt;}
.x18{left:151.680000pt;}
.x1d{left:157.760000pt;}
.x3{left:161.466667pt;}
.x13{left:163.840000pt;}
.x21{left:168.026667pt;}
.x2d{left:170.720000pt;}
.x1c{left:190.906655pt;}
.x28{left:198.106655pt;}
.xe{left:206.106655pt;}
.x24{left:213.666667pt;}
.xb{left:214.586655pt;}
.x10{left:260.706667pt;}
.x2c{left:296.706655pt;}
.xa{left:304.706667pt;}
.x26{left:307.906655pt;}
.x11{left:357.026667pt;}
.x22{left:394.626667pt;}
.x25{left:587.013322pt;}
.x9{left:605.733333pt;}
.x1b{left:623.013322pt;}
.x27{left:624.933322pt;}
.xd{left:629.893322pt;}
.x1a{left:635.973322pt;}
}




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