
    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_b65ed80ac1565de420478917.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a861c08e279ad0a200bfd5cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24f2c4eee13aac95f05a2753.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_03b7bd35355a5205ec7c4d3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0f5380da5d5856c3afb9f9cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_539721a6293da313f5cf7857.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_7bc199d835a1dfd4c1edd545.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_57ea5320038dcd558fa1eb2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.978000px;}
.ls1a{letter-spacing:4.500000px;}
.lse{letter-spacing:14.400000px;}
.ls15{letter-spacing:19.530720px;}
.ls16{letter-spacing:22.986720px;}
.ls6{letter-spacing:23.850720px;}
.ls5{letter-spacing:27.450720px;}
.lsa{letter-spacing:33.930720px;}
.ls19{letter-spacing:36.090720px;}
.lsb{letter-spacing:37.530720px;}
.ls17{letter-spacing:65.610720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wse{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._29{margin-left:-7.568640px;}
._1e{margin-left:-6.503520px;}
._1d{margin-left:-5.319360px;}
._18{margin-left:-3.420480px;}
._b{margin-left:-2.378400px;}
._0{margin-left:-1.080000px;}
._c{width:1.099680px;}
._1{width:2.220000px;}
._16{width:3.239520px;}
._19{width:4.251600px;}
._17{width:5.594640px;}
._1c{width:7.276080px;}
._14{width:8.700960px;}
._1a{width:9.799200px;}
._6{width:10.800000px;}
._15{width:12.155760px;}
._13{width:13.211040px;}
._1b{width:16.170960px;}
._21{width:17.844240px;}
._11{width:18.948000px;}
._23{width:23.103120px;}
._20{width:24.776400px;}
._1f{width:25.876080px;}
._22{width:27.023280px;}
._27{width:28.302240px;}
._28{width:30.378480px;}
._25{width:69.036960px;}
._7{width:76.284960px;}
._24{width:91.659840px;}
._12{width:99.660000px;}
._26{width:133.742880px;}
._8{width:154.080000px;}
._e{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._f{width:637.320000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.yef{bottom:5.790000px;}
.yb5{bottom:5.805000px;}
.y89{bottom:5.940000px;}
.y106{bottom:5.970000px;}
.y7e{bottom:6.300000px;}
.y7d{bottom:6.660000px;}
.yca{bottom:11.880000px;}
.y6{bottom:12.420000px;}
.y86{bottom:15.660000px;}
.y9b{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.ycb{bottom:18.720000px;}
.y6f{bottom:22.860000px;}
.y7b{bottom:25.560000px;}
.y77{bottom:25.740000px;}
.y109{bottom:25.770000px;}
.yc9{bottom:31.680000px;}
.ye2{bottom:36.765000px;}
.yc{bottom:37.260000px;}
.y5{bottom:40.320000px;}
.y6e{bottom:42.660000px;}
.ybd{bottom:49.140000px;}
.ya9{bottom:49.170000px;}
.y8f{bottom:49.320000px;}
.ye1{bottom:56.745000px;}
.yb{bottom:57.600000px;}
.y4{bottom:68.400000px;}
.y97{bottom:68.985000px;}
.y8e{bottom:69.120000px;}
.ya8{bottom:69.150000px;}
.y83{bottom:70.020000px;}
.yd{bottom:74.520000px;}
.ya{bottom:78.120000px;}
.y75{bottom:88.740000px;}
.y96{bottom:88.785000px;}
.y8d{bottom:88.920000px;}
.ya7{bottom:88.950000px;}
.y82{bottom:89.820000px;}
.yc7{bottom:94.860000px;}
.y3{bottom:96.330000px;}
.y142{bottom:99.900000px;}
.ya5{bottom:102.780000px;}
.y3b{bottom:108.540000px;}
.y8c{bottom:108.720000px;}
.ya6{bottom:108.750000px;}
.y74{bottom:108.765000px;}
.y81{bottom:109.620000px;}
.y145{bottom:112.320000px;}
.y6a{bottom:114.480000px;}
.yc6{bottom:114.660000px;}
.y122{bottom:114.840000px;}
.y141{bottom:119.700000px;}
.yad{bottom:123.300000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:128.340000px;}
.y9f{bottom:128.520000px;}
.y73{bottom:128.565000px;}
.y80{bottom:129.420000px;}
.y107{bottom:130.140000px;}
.y144{bottom:132.120000px;}
.y69{bottom:134.460000px;}
.yc5{bottom:134.640000px;}
.y140{bottom:139.500000px;}
.yac{bottom:144.000000px;}
.y39{bottom:148.140000px;}
.y72{bottom:148.365000px;}
.ydf{bottom:149.220000px;}
.y105{bottom:150.660000px;}
.y143{bottom:151.950000px;}
.y68{bottom:154.290000px;}
.yc4{bottom:154.470000px;}
.y121{bottom:154.650000px;}
.y13f{bottom:159.510000px;}
.yab{bottom:164.550000px;}
.y38{bottom:167.970000px;}
.yde{bottom:169.050000px;}
.y104{bottom:171.390000px;}
.y67{bottom:174.090000px;}
.y120{bottom:174.450000px;}
.y13e{bottom:179.310000px;}
.yaa{bottom:185.250000px;}
.y37{bottom:187.770000px;}
.ydd{bottom:188.850000px;}
.y103{bottom:191.910000px;}
.y66{bottom:193.890000px;}
.y11f{bottom:194.250000px;}
.y13d{bottom:196.590000px;}
.ya4{bottom:205.770000px;}
.y36{bottom:207.750000px;}
.ydc{bottom:208.830000px;}
.y102{bottom:212.610000px;}
.y65{bottom:213.690000px;}
.y11e{bottom:214.050000px;}
.y13c{bottom:216.390000px;}
.y9e{bottom:226.290000px;}
.y35{bottom:227.550000px;}
.ydb{bottom:228.630000px;}
.y101{bottom:233.130000px;}
.y64{bottom:233.670000px;}
.y11d{bottom:233.850000px;}
.y13b{bottom:236.190000px;}
.ya3{bottom:246.990000px;}
.y34{bottom:247.350000px;}
.yda{bottom:248.430000px;}
.y63{bottom:253.470000px;}
.y100{bottom:253.650000px;}
.y11c{bottom:253.830000px;}
.y13a{bottom:255.990000px;}
.y33{bottom:267.150000px;}
.yd9{bottom:268.230000px;}
.y62{bottom:273.270000px;}
.y11b{bottom:273.630000px;}
.yff{bottom:274.350000px;}
.y139{bottom:275.790000px;}
.y32{bottom:286.950000px;}
.ya2{bottom:287.310000px;}
.yd8{bottom:288.030000px;}
.y61{bottom:293.070000px;}
.y11a{bottom:293.430000px;}
.yfe{bottom:294.870000px;}
.y138{bottom:295.770000px;}
.y31{bottom:306.930000px;}
.ya1{bottom:308.010000px;}
.y60{bottom:312.870000px;}
.y119{bottom:313.230000px;}
.yfd{bottom:315.390000px;}
.y137{bottom:315.570000px;}
.y30{bottom:326.730000px;}
.yd7{bottom:327.810000px;}
.ya0{bottom:328.530000px;}
.y5f{bottom:332.850000px;}
.y118{bottom:333.030000px;}
.y136{bottom:335.370000px;}
.yfc{bottom:336.090000px;}
.y2f{bottom:346.530000px;}
.yd6{bottom:347.610000px;}
.y9d{bottom:349.050000px;}
.y5e{bottom:352.650000px;}
.y117{bottom:353.010000px;}
.y135{bottom:355.170000px;}
.y2e{bottom:366.330000px;}
.yd5{bottom:367.410000px;}
.y95{bottom:369.750000px;}
.y5d{bottom:372.450000px;}
.y116{bottom:372.810000px;}
.y134{bottom:374.970000px;}
.yfb{bottom:376.410000px;}
.y2d{bottom:386.130000px;}
.yd4{bottom:387.210000px;}
.y9c{bottom:390.270000px;}
.y5c{bottom:392.250000px;}
.y115{bottom:392.610000px;}
.y133{bottom:394.950000px;}
.yfa{bottom:397.110000px;}
.y2c{bottom:406.155000px;}
.yd3{bottom:407.235000px;}
.y9a{bottom:410.835000px;}
.y5b{bottom:412.095000px;}
.y114{bottom:412.455000px;}
.y132{bottom:414.795000px;}
.yf9{bottom:417.675000px;}
.y2b{bottom:425.955000px;}
.yd2{bottom:427.035000px;}
.y5a{bottom:432.075000px;}
.y113{bottom:432.255000px;}
.y131{bottom:434.595000px;}
.yf8{bottom:438.195000px;}
.y2a{bottom:445.755000px;}
.yd1{bottom:446.835000px;}
.y99{bottom:451.335000px;}
.y59{bottom:451.875000px;}
.y112{bottom:452.235000px;}
.y130{bottom:454.395000px;}
.yf7{bottom:458.895000px;}
.y29{bottom:465.555000px;}
.yd0{bottom:466.635000px;}
.y58{bottom:471.675000px;}
.y111{bottom:472.035000px;}
.y12f{bottom:474.195000px;}
.yf6{bottom:479.415000px;}
.y28{bottom:485.355000px;}
.ycf{bottom:486.435000px;}
.y57{bottom:491.475000px;}
.y98{bottom:491.655000px;}
.y110{bottom:491.835000px;}
.y12e{bottom:494.175000px;}
.yc3{bottom:501.375000px;}
.y27{bottom:505.335000px;}
.y10f{bottom:506.595000px;}
.y56{bottom:511.275000px;}
.y94{bottom:512.355000px;}
.y12d{bottom:513.975000px;}
.yf5{bottom:519.915000px;}
.y26{bottom:525.135000px;}
.y10e{bottom:527.295000px;}
.y55{bottom:531.255000px;}
.y8b{bottom:532.875000px;}
.y12c{bottom:533.775000px;}
.yf4{bottom:540.435000px;}
.yce{bottom:541.695000px;}
.y25{bottom:544.935000px;}
.y10d{bottom:547.815000px;}
.y54{bottom:551.055000px;}
.y93{bottom:553.575000px;}
.yf3{bottom:560.955000px;}
.ycd{bottom:562.395000px;}
.y24{bottom:564.735000px;}
.y10c{bottom:568.335000px;}
.y53{bottom:570.855000px;}
.y12b{bottom:573.375000px;}
.y92{bottom:574.095000px;}
.yf2{bottom:581.655000px;}
.ycc{bottom:582.915000px;}
.y23{bottom:584.535000px;}
.y10b{bottom:589.035000px;}
.y52{bottom:590.655000px;}
.y12a{bottom:593.355000px;}
.y91{bottom:594.615000px;}
.yf1{bottom:602.175000px;}
.yc8{bottom:603.435000px;}
.y22{bottom:604.515000px;}
.y10a{bottom:609.555000px;}
.y51{bottom:610.455000px;}
.y129{bottom:613.155000px;}
.y90{bottom:615.315000px;}
.yf0{bottom:622.875000px;}
.y21{bottom:624.315000px;}
.y108{bottom:630.075000px;}
.y50{bottom:630.435000px;}
.y128{bottom:632.955000px;}
.y8a{bottom:635.835000px;}
.yee{bottom:643.395000px;}
.y20{bottom:644.115000px;}
.yc2{bottom:650.085000px;}
.y4f{bottom:650.265000px;}
.y127{bottom:652.785000px;}
.y7f{bottom:656.385000px;}
.y1f{bottom:663.945000px;}
.y4e{bottom:670.065000px;}
.ybc{bottom:670.605000px;}
.y126{bottom:672.585000px;}
.y88{bottom:677.085000px;}
.y1e{bottom:683.745000px;}
.yed{bottom:684.645000px;}
.y4d{bottom:689.865000px;}
.yc1{bottom:691.125000px;}
.y125{bottom:692.565000px;}
.y87{bottom:697.605000px;}
.y1d{bottom:703.725000px;}
.yec{bottom:705.165000px;}
.y4c{bottom:709.665000px;}
.yc0{bottom:711.825000px;}
.y124{bottom:712.365000px;}
.y85{bottom:718.305000px;}
.y1c{bottom:723.525000px;}
.yeb{bottom:725.685000px;}
.y6c{bottom:729.465000px;}
.y4b{bottom:729.645000px;}
.y123{bottom:732.165000px;}
.ybf{bottom:732.345000px;}
.y1b{bottom:743.325000px;}
.yea{bottom:746.385000px;}
.y6b{bottom:749.265000px;}
.y4a{bottom:749.445000px;}
.ybe{bottom:752.865000px;}
.y84{bottom:758.625000px;}
.y1a{bottom:763.125000px;}
.ye9{bottom:766.905000px;}
.y49{bottom:769.245000px;}
.ybb{bottom:773.565000px;}
.y7c{bottom:779.145000px;}
.y19{bottom:782.925000px;}
.ye8{bottom:787.425000px;}
.y48{bottom:789.045000px;}
.yb6{bottom:794.085000px;}
.y71{bottom:800.745000px;}
.y18{bottom:802.725000px;}
.ye7{bottom:808.125000px;}
.y47{bottom:808.845000px;}
.yba{bottom:814.785000px;}
.y17{bottom:822.705000px;}
.ye6{bottom:828.645000px;}
.y46{bottom:828.825000px;}
.yb9{bottom:835.305000px;}
.y7a{bottom:841.065000px;}
.y16{bottom:842.505000px;}
.y45{bottom:848.625000px;}
.ye5{bottom:849.345000px;}
.yb8{bottom:855.825000px;}
.y79{bottom:861.765000px;}
.y15{bottom:862.305000px;}
.y44{bottom:868.425000px;}
.ye4{bottom:869.865000px;}
.yb7{bottom:876.525000px;}
.y78{bottom:882.285000px;}
.y14{bottom:887.325000px;}
.y43{bottom:888.225000px;}
.ye0{bottom:890.385000px;}
.yb4{bottom:897.045000px;}
.y76{bottom:902.850000px;}
.y13{bottom:907.170000px;}
.y42{bottom:908.070000px;}
.ye3{bottom:911.130000px;}
.yaf{bottom:917.610000px;}
.y12{bottom:922.470000px;}
.y41{bottom:928.050000px;}
.yb3{bottom:938.310000px;}
.y70{bottom:943.350000px;}
.y11{bottom:944.250000px;}
.y40{bottom:947.850000px;}
.yb2{bottom:958.830000px;}
.y6d{bottom:963.870000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.yb1{bottom:979.350000px;}
.y3e{bottom:987.450000px;}
.yb0{bottom:1000.050000px;}
.yf{bottom:1000.950000px;}
.y3d{bottom:1007.250000px;}
.yae{bottom:1020.570000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h13{height:19.800000px;}
.h16{height:19.836000px;}
.h1a{height:19.980000px;}
.h22{height:20.016000px;}
.h18{height:20.700000px;}
.ha{height:21.240000px;}
.hd{height:27.147656px;}
.h7{height:33.480000px;}
.h17{height:39.600000px;}
.h15{height:39.780000px;}
.h23{height:39.816000px;}
.he{height:41.726953px;}
.hf{height:42.164648px;}
.h11{height:42.446953px;}
.h24{height:43.506914px;}
.h1f{height:45.756000px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h25{height:48.496641px;}
.h10{height:49.255313px;}
.h21{height:50.040000px;}
.h9{height:53.224453px;}
.h12{height:56.700000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h20{height:70.776000px;}
.h5{height:112.536000px;}
.h1d{height:122.760000px;}
.h1b{height:122.796000px;}
.h1c{height:142.560000px;}
.h19{height:143.460000px;}
.h2{height:146.736000px;}
.h14{height:162.390000px;}
.h1e{height:168.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w12{width:82.476000px;}
.w11{width:83.160000px;}
.wb{width:83.196000px;}
.wf{width:83.700000px;}
.wc{width:83.880000px;}
.wd{width:84.096000px;}
.w7{width:84.240000px;}
.w8{width:84.276000px;}
.w9{width:84.456000px;}
.w10{width:93.816000px;}
.w3{width:137.556000px;}
.we{width:166.350000px;}
.wa{width:176.250000px;}
.w6{width:445.965000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x18{left:9.900000px;}
.x17{left:41.796000px;}
.x1{left:53.100000px;}
.x6{left:56.879987px;}
.x10{left:62.999987px;}
.xd{left:64.619987px;}
.x20{left:75.239987px;}
.xc{left:86.075987px;}
.x21{left:96.515987px;}
.x4{left:118.470000px;}
.x11{left:124.235987px;}
.xe{left:169.769987px;}
.x9{left:198.749987px;}
.x19{left:239.790000px;}
.x12{left:257.609987px;}
.xa{left:303.914987px;}
.xb{left:305.894987px;}
.x1a{left:323.715000px;}
.x7{left:385.814987px;}
.x1b{left:408.315000px;}
.x8{left:446.504987px;}
.x1c{left:493.125000px;}
.x13{left:509.505000px;}
.x1f{left:577.005000px;}
.x14{left:594.645000px;}
.x1d{left:660.210000px;}
.x15{left:679.650000px;}
.xf{left:691.529987px;}
.x3{left:702.510000px;}
.x1e{left:744.630000px;}
.x16{left:764.610000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.869333pt;}
.ls1a{letter-spacing:4.000000pt;}
.lse{letter-spacing:12.800000pt;}
.ls15{letter-spacing:17.360640pt;}
.ls16{letter-spacing:20.432640pt;}
.ls6{letter-spacing:21.200640pt;}
.ls5{letter-spacing:24.400640pt;}
.lsa{letter-spacing:30.160640pt;}
.ls19{letter-spacing:32.080640pt;}
.lsb{letter-spacing:33.360640pt;}
.ls17{letter-spacing:58.320640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._29{margin-left:-6.727680pt;}
._1e{margin-left:-5.780907pt;}
._1d{margin-left:-4.728320pt;}
._18{margin-left:-3.040427pt;}
._b{margin-left:-2.114133pt;}
._0{margin-left:-0.960000pt;}
._c{width:0.977493pt;}
._1{width:1.973333pt;}
._16{width:2.879573pt;}
._19{width:3.779200pt;}
._17{width:4.973013pt;}
._1c{width:6.467627pt;}
._14{width:7.734187pt;}
._1a{width:8.710400pt;}
._6{width:9.600000pt;}
._15{width:10.805120pt;}
._13{width:11.743147pt;}
._1b{width:14.374187pt;}
._21{width:15.861547pt;}
._11{width:16.842667pt;}
._23{width:20.536107pt;}
._20{width:22.023467pt;}
._1f{width:23.000960pt;}
._22{width:24.020693pt;}
._27{width:25.157547pt;}
._28{width:27.003093pt;}
._25{width:61.366187pt;}
._7{width:67.808853pt;}
._24{width:81.475413pt;}
._12{width:88.586667pt;}
._26{width:118.882560pt;}
._8{width:136.960000pt;}
._e{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._f{width:566.506667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.yef{bottom:5.146667pt;}
.yb5{bottom:5.160000pt;}
.y89{bottom:5.280000pt;}
.y106{bottom:5.306667pt;}
.y7e{bottom:5.600000pt;}
.y7d{bottom:5.920000pt;}
.yca{bottom:10.560000pt;}
.y6{bottom:11.040000pt;}
.y86{bottom:13.920000pt;}
.y9b{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.ycb{bottom:16.640000pt;}
.y6f{bottom:20.320000pt;}
.y7b{bottom:22.720000pt;}
.y77{bottom:22.880000pt;}
.y109{bottom:22.906667pt;}
.yc9{bottom:28.160000pt;}
.ye2{bottom:32.680000pt;}
.yc{bottom:33.120000pt;}
.y5{bottom:35.840000pt;}
.y6e{bottom:37.920000pt;}
.ybd{bottom:43.680000pt;}
.ya9{bottom:43.706667pt;}
.y8f{bottom:43.840000pt;}
.ye1{bottom:50.440000pt;}
.yb{bottom:51.200000pt;}
.y4{bottom:60.800000pt;}
.y97{bottom:61.320000pt;}
.y8e{bottom:61.440000pt;}
.ya8{bottom:61.466667pt;}
.y83{bottom:62.240000pt;}
.yd{bottom:66.240000pt;}
.ya{bottom:69.440000pt;}
.y75{bottom:78.880000pt;}
.y96{bottom:78.920000pt;}
.y8d{bottom:79.040000pt;}
.ya7{bottom:79.066667pt;}
.y82{bottom:79.840000pt;}
.yc7{bottom:84.320000pt;}
.y3{bottom:85.626667pt;}
.y142{bottom:88.800000pt;}
.ya5{bottom:91.360000pt;}
.y3b{bottom:96.480000pt;}
.y8c{bottom:96.640000pt;}
.ya6{bottom:96.666667pt;}
.y74{bottom:96.680000pt;}
.y81{bottom:97.440000pt;}
.y145{bottom:99.840000pt;}
.y6a{bottom:101.760000pt;}
.yc6{bottom:101.920000pt;}
.y122{bottom:102.080000pt;}
.y141{bottom:106.400000pt;}
.yad{bottom:109.600000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:114.080000pt;}
.y9f{bottom:114.240000pt;}
.y73{bottom:114.280000pt;}
.y80{bottom:115.040000pt;}
.y107{bottom:115.680000pt;}
.y144{bottom:117.440000pt;}
.y69{bottom:119.520000pt;}
.yc5{bottom:119.680000pt;}
.y140{bottom:124.000000pt;}
.yac{bottom:128.000000pt;}
.y39{bottom:131.680000pt;}
.y72{bottom:131.880000pt;}
.ydf{bottom:132.640000pt;}
.y105{bottom:133.920000pt;}
.y143{bottom:135.066667pt;}
.y68{bottom:137.146667pt;}
.yc4{bottom:137.306667pt;}
.y121{bottom:137.466667pt;}
.y13f{bottom:141.786667pt;}
.yab{bottom:146.266667pt;}
.y38{bottom:149.306667pt;}
.yde{bottom:150.266667pt;}
.y104{bottom:152.346667pt;}
.y67{bottom:154.746667pt;}
.y120{bottom:155.066667pt;}
.y13e{bottom:159.386667pt;}
.yaa{bottom:164.666667pt;}
.y37{bottom:166.906667pt;}
.ydd{bottom:167.866667pt;}
.y103{bottom:170.586667pt;}
.y66{bottom:172.346667pt;}
.y11f{bottom:172.666667pt;}
.y13d{bottom:174.746667pt;}
.ya4{bottom:182.906667pt;}
.y36{bottom:184.666667pt;}
.ydc{bottom:185.626667pt;}
.y102{bottom:188.986667pt;}
.y65{bottom:189.946667pt;}
.y11e{bottom:190.266667pt;}
.y13c{bottom:192.346667pt;}
.y9e{bottom:201.146667pt;}
.y35{bottom:202.266667pt;}
.ydb{bottom:203.226667pt;}
.y101{bottom:207.226667pt;}
.y64{bottom:207.706667pt;}
.y11d{bottom:207.866667pt;}
.y13b{bottom:209.946667pt;}
.ya3{bottom:219.546667pt;}
.y34{bottom:219.866667pt;}
.yda{bottom:220.826667pt;}
.y63{bottom:225.306667pt;}
.y100{bottom:225.466667pt;}
.y11c{bottom:225.626667pt;}
.y13a{bottom:227.546667pt;}
.y33{bottom:237.466667pt;}
.yd9{bottom:238.426667pt;}
.y62{bottom:242.906667pt;}
.y11b{bottom:243.226667pt;}
.yff{bottom:243.866667pt;}
.y139{bottom:245.146667pt;}
.y32{bottom:255.066667pt;}
.ya2{bottom:255.386667pt;}
.yd8{bottom:256.026667pt;}
.y61{bottom:260.506667pt;}
.y11a{bottom:260.826667pt;}
.yfe{bottom:262.106667pt;}
.y138{bottom:262.906667pt;}
.y31{bottom:272.826667pt;}
.ya1{bottom:273.786667pt;}
.y60{bottom:278.106667pt;}
.y119{bottom:278.426667pt;}
.yfd{bottom:280.346667pt;}
.y137{bottom:280.506667pt;}
.y30{bottom:290.426667pt;}
.yd7{bottom:291.386667pt;}
.ya0{bottom:292.026667pt;}
.y5f{bottom:295.866667pt;}
.y118{bottom:296.026667pt;}
.y136{bottom:298.106667pt;}
.yfc{bottom:298.746667pt;}
.y2f{bottom:308.026667pt;}
.yd6{bottom:308.986667pt;}
.y9d{bottom:310.266667pt;}
.y5e{bottom:313.466667pt;}
.y117{bottom:313.786667pt;}
.y135{bottom:315.706667pt;}
.y2e{bottom:325.626667pt;}
.yd5{bottom:326.586667pt;}
.y95{bottom:328.666667pt;}
.y5d{bottom:331.066667pt;}
.y116{bottom:331.386667pt;}
.y134{bottom:333.306667pt;}
.yfb{bottom:334.586667pt;}
.y2d{bottom:343.226667pt;}
.yd4{bottom:344.186667pt;}
.y9c{bottom:346.906667pt;}
.y5c{bottom:348.666667pt;}
.y115{bottom:348.986667pt;}
.y133{bottom:351.066667pt;}
.yfa{bottom:352.986667pt;}
.y2c{bottom:361.026667pt;}
.yd3{bottom:361.986667pt;}
.y9a{bottom:365.186667pt;}
.y5b{bottom:366.306667pt;}
.y114{bottom:366.626667pt;}
.y132{bottom:368.706667pt;}
.yf9{bottom:371.266667pt;}
.y2b{bottom:378.626667pt;}
.yd2{bottom:379.586667pt;}
.y5a{bottom:384.066667pt;}
.y113{bottom:384.226667pt;}
.y131{bottom:386.306667pt;}
.yf8{bottom:389.506667pt;}
.y2a{bottom:396.226667pt;}
.yd1{bottom:397.186667pt;}
.y99{bottom:401.186667pt;}
.y59{bottom:401.666667pt;}
.y112{bottom:401.986667pt;}
.y130{bottom:403.906667pt;}
.yf7{bottom:407.906667pt;}
.y29{bottom:413.826667pt;}
.yd0{bottom:414.786667pt;}
.y58{bottom:419.266667pt;}
.y111{bottom:419.586667pt;}
.y12f{bottom:421.506667pt;}
.yf6{bottom:426.146667pt;}
.y28{bottom:431.426667pt;}
.ycf{bottom:432.386667pt;}
.y57{bottom:436.866667pt;}
.y98{bottom:437.026667pt;}
.y110{bottom:437.186667pt;}
.y12e{bottom:439.266667pt;}
.yc3{bottom:445.666667pt;}
.y27{bottom:449.186667pt;}
.y10f{bottom:450.306667pt;}
.y56{bottom:454.466667pt;}
.y94{bottom:455.426667pt;}
.y12d{bottom:456.866667pt;}
.yf5{bottom:462.146667pt;}
.y26{bottom:466.786667pt;}
.y10e{bottom:468.706667pt;}
.y55{bottom:472.226667pt;}
.y8b{bottom:473.666667pt;}
.y12c{bottom:474.466667pt;}
.yf4{bottom:480.386667pt;}
.yce{bottom:481.506667pt;}
.y25{bottom:484.386667pt;}
.y10d{bottom:486.946667pt;}
.y54{bottom:489.826667pt;}
.y93{bottom:492.066667pt;}
.yf3{bottom:498.626667pt;}
.ycd{bottom:499.906667pt;}
.y24{bottom:501.986667pt;}
.y10c{bottom:505.186667pt;}
.y53{bottom:507.426667pt;}
.y12b{bottom:509.666667pt;}
.y92{bottom:510.306667pt;}
.yf2{bottom:517.026667pt;}
.ycc{bottom:518.146667pt;}
.y23{bottom:519.586667pt;}
.y10b{bottom:523.586667pt;}
.y52{bottom:525.026667pt;}
.y12a{bottom:527.426667pt;}
.y91{bottom:528.546667pt;}
.yf1{bottom:535.266667pt;}
.yc8{bottom:536.386667pt;}
.y22{bottom:537.346667pt;}
.y10a{bottom:541.826667pt;}
.y51{bottom:542.626667pt;}
.y129{bottom:545.026667pt;}
.y90{bottom:546.946667pt;}
.yf0{bottom:553.666667pt;}
.y21{bottom:554.946667pt;}
.y108{bottom:560.066667pt;}
.y50{bottom:560.386667pt;}
.y128{bottom:562.626667pt;}
.y8a{bottom:565.186667pt;}
.yee{bottom:571.906667pt;}
.y20{bottom:572.546667pt;}
.yc2{bottom:577.853333pt;}
.y4f{bottom:578.013333pt;}
.y127{bottom:580.253333pt;}
.y7f{bottom:583.453333pt;}
.y1f{bottom:590.173333pt;}
.y4e{bottom:595.613333pt;}
.ybc{bottom:596.093333pt;}
.y126{bottom:597.853333pt;}
.y88{bottom:601.853333pt;}
.y1e{bottom:607.773333pt;}
.yed{bottom:608.573333pt;}
.y4d{bottom:613.213333pt;}
.yc1{bottom:614.333333pt;}
.y125{bottom:615.613333pt;}
.y87{bottom:620.093333pt;}
.y1d{bottom:625.533333pt;}
.yec{bottom:626.813333pt;}
.y4c{bottom:630.813333pt;}
.yc0{bottom:632.733333pt;}
.y124{bottom:633.213333pt;}
.y85{bottom:638.493333pt;}
.y1c{bottom:643.133333pt;}
.yeb{bottom:645.053333pt;}
.y6c{bottom:648.413333pt;}
.y4b{bottom:648.573333pt;}
.y123{bottom:650.813333pt;}
.ybf{bottom:650.973333pt;}
.y1b{bottom:660.733333pt;}
.yea{bottom:663.453333pt;}
.y6b{bottom:666.013333pt;}
.y4a{bottom:666.173333pt;}
.ybe{bottom:669.213333pt;}
.y84{bottom:674.333333pt;}
.y1a{bottom:678.333333pt;}
.ye9{bottom:681.693333pt;}
.y49{bottom:683.773333pt;}
.ybb{bottom:687.613333pt;}
.y7c{bottom:692.573333pt;}
.y19{bottom:695.933333pt;}
.ye8{bottom:699.933333pt;}
.y48{bottom:701.373333pt;}
.yb6{bottom:705.853333pt;}
.y71{bottom:711.773333pt;}
.y18{bottom:713.533333pt;}
.ye7{bottom:718.333333pt;}
.y47{bottom:718.973333pt;}
.yba{bottom:724.253333pt;}
.y17{bottom:731.293333pt;}
.ye6{bottom:736.573333pt;}
.y46{bottom:736.733333pt;}
.yb9{bottom:742.493333pt;}
.y7a{bottom:747.613333pt;}
.y16{bottom:748.893333pt;}
.y45{bottom:754.333333pt;}
.ye5{bottom:754.973333pt;}
.yb8{bottom:760.733333pt;}
.y79{bottom:766.013333pt;}
.y15{bottom:766.493333pt;}
.y44{bottom:771.933333pt;}
.ye4{bottom:773.213333pt;}
.yb7{bottom:779.133333pt;}
.y78{bottom:784.253333pt;}
.y14{bottom:788.733333pt;}
.y43{bottom:789.533333pt;}
.ye0{bottom:791.453333pt;}
.yb4{bottom:797.373333pt;}
.y76{bottom:802.533333pt;}
.y13{bottom:806.373333pt;}
.y42{bottom:807.173333pt;}
.ye3{bottom:809.893333pt;}
.yaf{bottom:815.653333pt;}
.y12{bottom:819.973333pt;}
.y41{bottom:824.933333pt;}
.yb3{bottom:834.053333pt;}
.y70{bottom:838.533333pt;}
.y11{bottom:839.333333pt;}
.y40{bottom:842.533333pt;}
.yb2{bottom:852.293333pt;}
.y6d{bottom:856.773333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.yb1{bottom:870.533333pt;}
.y3e{bottom:877.733333pt;}
.yb0{bottom:888.933333pt;}
.yf{bottom:889.733333pt;}
.y3d{bottom:895.333333pt;}
.yae{bottom:907.173333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h13{height:17.600000pt;}
.h16{height:17.632000pt;}
.h1a{height:17.760000pt;}
.h22{height:17.792000pt;}
.h18{height:18.400000pt;}
.ha{height:18.880000pt;}
.hd{height:24.131250pt;}
.h7{height:29.760000pt;}
.h17{height:35.200000pt;}
.h15{height:35.360000pt;}
.h23{height:35.392000pt;}
.he{height:37.090625pt;}
.hf{height:37.479688pt;}
.h11{height:37.730625pt;}
.h24{height:38.672812pt;}
.h1f{height:40.672000pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h25{height:43.108125pt;}
.h10{height:43.782500pt;}
.h21{height:44.480000pt;}
.h9{height:47.310625pt;}
.h12{height:50.400000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h20{height:62.912000pt;}
.h5{height:100.032000pt;}
.h1d{height:109.120000pt;}
.h1b{height:109.152000pt;}
.h1c{height:126.720000pt;}
.h19{height:127.520000pt;}
.h2{height:130.432000pt;}
.h14{height:144.346667pt;}
.h1e{height:149.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w12{width:73.312000pt;}
.w11{width:73.920000pt;}
.wb{width:73.952000pt;}
.wf{width:74.400000pt;}
.wc{width:74.560000pt;}
.wd{width:74.752000pt;}
.w7{width:74.880000pt;}
.w8{width:74.912000pt;}
.w9{width:75.072000pt;}
.w10{width:83.392000pt;}
.w3{width:122.272000pt;}
.we{width:147.866667pt;}
.wa{width:156.666667pt;}
.w6{width:396.413333pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x18{left:8.800000pt;}
.x17{left:37.152000pt;}
.x1{left:47.200000pt;}
.x6{left:50.559988pt;}
.x10{left:55.999988pt;}
.xd{left:57.439988pt;}
.x20{left:66.879988pt;}
.xc{left:76.511988pt;}
.x21{left:85.791988pt;}
.x4{left:105.306667pt;}
.x11{left:110.431988pt;}
.xe{left:150.906655pt;}
.x9{left:176.666655pt;}
.x19{left:213.146667pt;}
.x12{left:228.986655pt;}
.xa{left:270.146655pt;}
.xb{left:271.906655pt;}
.x1a{left:287.746667pt;}
.x7{left:342.946655pt;}
.x1b{left:362.946667pt;}
.x8{left:396.893322pt;}
.x1c{left:438.333333pt;}
.x13{left:452.893333pt;}
.x1f{left:512.893333pt;}
.x14{left:528.573333pt;}
.x1d{left:586.853333pt;}
.x15{left:604.133333pt;}
.xf{left:614.693322pt;}
.x3{left:624.453333pt;}
.x1e{left:661.893333pt;}
.x16{left:679.653333pt;}
.x5{left:737.280000pt;}
}




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