
    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_bbbdb30cb22d83bf08dbe556.woff')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_1a5b6188d818522e2ef04803.woff')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_30373827182331e1822dda59.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3e78244697e531a4367006ee.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9df795abce1d9ad0f41d0a4a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_130301694ab792f9947e2b7d.woff')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_3bc3fdc99befd2665e0a05c8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_5a2f6c698f74ba4dae8fe538.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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;}
.ls5{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.460080px;}
.ls2{letter-spacing:0.511800px;}
.ls11{letter-spacing:10.260000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{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;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-3.503520px;}
._17{margin-left:-2.129760px;}
._0{margin-left:-1.080000px;}
._f{width:1.053360px;}
._1{width:2.220000px;}
._16{width:3.578880px;}
._14{width:4.787520px;}
._13{width:6.058080px;}
._11{width:7.948080px;}
._10{width:9.501840px;}
._6{width:10.800000px;}
._12{width:11.815680px;}
._1a{width:12.848400px;}
._21{width:13.883040px;}
._20{width:17.031600px;}
._1c{width:18.525600px;}
._36{width:21.345120px;}
._2d{width:26.025840px;}
._28{width:28.027440px;}
._2b{width:33.704640px;}
._29{width:35.796240px;}
._2c{width:45.118800px;}
._1e{width:47.362320px;}
._1d{width:48.897360px;}
._31{width:53.446320px;}
._1f{width:57.640080px;}
._32{width:59.461200px;}
._2a{width:68.245920px;}
._26{width:75.228960px;}
._7{width:76.284960px;}
._37{width:80.676000px;}
._34{width:84.679920px;}
._33{width:85.815360px;}
._38{width:90.357120px;}
._25{width:96.990480px;}
._2f{width:99.739440px;}
._24{width:113.006160px;}
._2e{width:119.004480px;}
._30{width:130.993920px;}
._27{width:132.211440px;}
._22{width:146.232720px;}
._23{width:147.786480px;}
._8{width:154.080000px;}
._35{width:169.668720px;}
._c{width:195.120000px;}
._1b{width:201.204000px;}
._2{width:255.512640px;}
._18{width:256.562400px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._19{width:605.413920px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{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;}
.ya8{bottom:3.240000px;}
.y7a{bottom:5.760000px;}
.yd5{bottom:5.790000px;}
.y118{bottom:5.805000px;}
.y75{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.yb8{bottom:11.880000px;}
.y6{bottom:12.420000px;}
.y78{bottom:15.660000px;}
.y76{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.yb6{bottom:20.520000px;}
.y79{bottom:25.560000px;}
.y116{bottom:25.605000px;}
.y74{bottom:25.740000px;}
.yb7{bottom:29.160000px;}
.y11d{bottom:35.460000px;}
.y11b{bottom:35.640000px;}
.yc{bottom:36.000000px;}
.yb5{bottom:37.800000px;}
.y5{bottom:40.320000px;}
.y11e{bottom:45.360000px;}
.y11a{bottom:45.540000px;}
.y115{bottom:45.585000px;}
.yb{bottom:57.780000px;}
.y117{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.yb3{bottom:100.620000px;}
.y69{bottom:101.340000px;}
.y112{bottom:102.060000px;}
.y94{bottom:109.620000px;}
.y127{bottom:112.320000px;}
.yeb{bottom:112.500000px;}
.y3b{bottom:113.400000px;}
.y14b{bottom:115.380000px;}
.yb2{bottom:117.900000px;}
.yd2{bottom:118.800000px;}
.y68{bottom:121.320000px;}
.y111{bottom:121.860000px;}
.y2{bottom:125.670000px;}
.y93{bottom:129.420000px;}
.y126{bottom:132.120000px;}
.y3a{bottom:133.380000px;}
.yb1{bottom:135.000000px;}
.y14a{bottom:135.180000px;}
.yea{bottom:136.800000px;}
.y148{bottom:137.340000px;}
.y67{bottom:141.120000px;}
.y110{bottom:141.840000px;}
.yd1{bottom:143.100000px;}
.y92{bottom:149.220000px;}
.y125{bottom:151.950000px;}
.y39{bottom:153.210000px;}
.y149{bottom:155.010000px;}
.y147{bottom:157.350000px;}
.y66{bottom:160.950000px;}
.ye9{bottom:161.130000px;}
.y10f{bottom:161.670000px;}
.yd0{bottom:168.150000px;}
.y91{bottom:169.050000px;}
.y124{bottom:171.750000px;}
.y38{bottom:173.010000px;}
.yb0{bottom:174.990000px;}
.y146{bottom:177.150000px;}
.y65{bottom:180.750000px;}
.y10e{bottom:181.470000px;}
.ye8{bottom:185.430000px;}
.y90{bottom:189.030000px;}
.y37{bottom:192.810000px;}
.yaf{bottom:196.770000px;}
.y145{bottom:196.950000px;}
.ycf{bottom:198.030000px;}
.y64{bottom:200.550000px;}
.y10d{bottom:201.270000px;}
.y8f{bottom:208.830000px;}
.ye7{bottom:210.630000px;}
.y36{bottom:212.610000px;}
.y144{bottom:216.750000px;}
.yce{bottom:217.830000px;}
.yae{bottom:218.550000px;}
.y63{bottom:220.530000px;}
.y10c{bottom:221.070000px;}
.y8e{bottom:228.630000px;}
.y35{bottom:232.590000px;}
.y143{bottom:236.550000px;}
.ycd{bottom:237.630000px;}
.yad{bottom:240.150000px;}
.y62{bottom:240.330000px;}
.y10b{bottom:241.050000px;}
.y34{bottom:252.390000px;}
.y142{bottom:256.530000px;}
.y8d{bottom:257.430000px;}
.y61{bottom:260.130000px;}
.y10a{bottom:260.850000px;}
.yac{bottom:261.930000px;}
.y33{bottom:272.190000px;}
.y141{bottom:276.330000px;}
.y8c{bottom:277.230000px;}
.ye6{bottom:279.930000px;}
.y109{bottom:280.650000px;}
.yab{bottom:283.710000px;}
.y60{bottom:288.930000px;}
.y32{bottom:291.990000px;}
.y140{bottom:296.130000px;}
.y8b{bottom:297.210000px;}
.ye5{bottom:299.730000px;}
.y108{bottom:300.450000px;}
.yaa{bottom:305.490000px;}
.y5f{bottom:308.730000px;}
.y31{bottom:311.790000px;}
.y13f{bottom:315.930000px;}
.y8a{bottom:317.010000px;}
.y107{bottom:317.730000px;}
.ye4{bottom:319.710000px;}
.ya9{bottom:327.270000px;}
.y5e{bottom:328.710000px;}
.y30{bottom:331.770000px;}
.y13e{bottom:335.730000px;}
.y89{bottom:336.810000px;}
.ye3{bottom:339.510000px;}
.y106{bottom:346.530000px;}
.y5d{bottom:348.510000px;}
.ya7{bottom:349.770000px;}
.y2f{bottom:351.570000px;}
.y13d{bottom:355.710000px;}
.y88{bottom:356.610000px;}
.ye2{bottom:359.310000px;}
.y105{bottom:366.330000px;}
.y5c{bottom:368.310000px;}
.y2e{bottom:371.370000px;}
.ya6{bottom:374.430000px;}
.y13c{bottom:375.510000px;}
.y87{bottom:376.410000px;}
.ye1{bottom:379.110000px;}
.ycc{bottom:385.410000px;}
.y104{bottom:386.310000px;}
.y5b{bottom:388.110000px;}
.y2d{bottom:391.170000px;}
.y13b{bottom:395.310000px;}
.y86{bottom:396.390000px;}
.ye0{bottom:398.910000px;}
.ya5{bottom:403.275000px;}
.ycb{bottom:405.435000px;}
.y103{bottom:406.155000px;}
.y5a{bottom:407.955000px;}
.y2c{bottom:411.015000px;}
.y13a{bottom:415.155000px;}
.y85{bottom:416.235000px;}
.ydf{bottom:418.935000px;}
.ya4{bottom:423.075000px;}
.yca{bottom:425.235000px;}
.y102{bottom:425.955000px;}
.y59{bottom:427.935000px;}
.y2b{bottom:430.995000px;}
.y139{bottom:434.955000px;}
.y84{bottom:436.035000px;}
.yde{bottom:438.735000px;}
.ya3{bottom:442.875000px;}
.yc9{bottom:445.035000px;}
.y101{bottom:445.755000px;}
.y58{bottom:447.735000px;}
.y2a{bottom:450.795000px;}
.y138{bottom:454.935000px;}
.y83{bottom:455.835000px;}
.ya2{bottom:462.675000px;}
.yc8{bottom:464.835000px;}
.y100{bottom:465.555000px;}
.y57{bottom:467.535000px;}
.y29{bottom:470.595000px;}
.y82{bottom:474.015000px;}
.y137{bottom:474.735000px;}
.ya1{bottom:482.475000px;}
.yc7{bottom:484.635000px;}
.yff{bottom:485.535000px;}
.ydd{bottom:487.335000px;}
.y28{bottom:490.395000px;}
.y136{bottom:494.535000px;}
.y56{bottom:496.335000px;}
.ya0{bottom:502.455000px;}
.yc6{bottom:504.615000px;}
.yfe{bottom:505.335000px;}
.ydc{bottom:507.135000px;}
.y27{bottom:510.195000px;}
.y135{bottom:514.335000px;}
.y55{bottom:516.135000px;}
.y81{bottom:518.295000px;}
.y9f{bottom:522.255000px;}
.yc5{bottom:524.415000px;}
.yfd{bottom:525.135000px;}
.ydb{bottom:527.115000px;}
.y26{bottom:530.175000px;}
.y134{bottom:534.135000px;}
.y54{bottom:536.115000px;}
.y80{bottom:542.595000px;}
.yfc{bottom:544.935000px;}
.yda{bottom:546.915000px;}
.y25{bottom:549.975000px;}
.y9e{bottom:551.055000px;}
.y133{bottom:554.115000px;}
.y53{bottom:555.915000px;}
.yfb{bottom:564.735000px;}
.yd9{bottom:566.715000px;}
.y7f{bottom:566.895000px;}
.y24{bottom:569.775000px;}
.y9d{bottom:570.855000px;}
.y132{bottom:573.915000px;}
.y52{bottom:575.715000px;}
.yfa{bottom:584.715000px;}
.yd8{bottom:586.515000px;}
.y23{bottom:589.575000px;}
.y9c{bottom:590.655000px;}
.y7e{bottom:591.195000px;}
.y131{bottom:593.715000px;}
.y51{bottom:595.515000px;}
.yf9{bottom:604.515000px;}
.yd7{bottom:606.315000px;}
.y22{bottom:609.375000px;}
.y9b{bottom:610.635000px;}
.y130{bottom:613.515000px;}
.y7d{bottom:615.495000px;}
.y50{bottom:624.315000px;}
.yd6{bottom:624.495000px;}
.y123{bottom:626.295000px;}
.y21{bottom:629.355000px;}
.y9a{bottom:630.435000px;}
.y12f{bottom:633.315000px;}
.y7c{bottom:639.975000px;}
.yf8{bottom:644.115000px;}
.y4f{bottom:644.295000px;}
.y122{bottom:646.095000px;}
.yd4{bottom:648.975000px;}
.y20{bottom:649.185000px;}
.y99{bottom:650.265000px;}
.y12e{bottom:653.325000px;}
.yf7{bottom:663.945000px;}
.y4e{bottom:664.125000px;}
.y7b{bottom:664.305000px;}
.y121{bottom:665.925000px;}
.y98{bottom:667.545000px;}
.y1f{bottom:668.985000px;}
.y12d{bottom:673.125000px;}
.yd3{bottom:674.025000px;}
.y4d{bottom:683.925000px;}
.y97{bottom:684.825000px;}
.y120{bottom:685.725000px;}
.y77{bottom:688.605000px;}
.y1e{bottom:688.785000px;}
.y12c{bottom:692.925000px;}
.y96{bottom:702.105000px;}
.y4c{bottom:703.725000px;}
.y11f{bottom:703.905000px;}
.y1d{bottom:708.585000px;}
.y12b{bottom:712.725000px;}
.yc4{bottom:712.905000px;}
.y95{bottom:719.205000px;}
.y4b{bottom:723.525000px;}
.y1c{bottom:728.565000px;}
.y12a{bottom:732.525000px;}
.y73{bottom:733.425000px;}
.yc3{bottom:737.205000px;}
.yc1{bottom:737.385000px;}
.y4a{bottom:743.505000px;}
.y1b{bottom:748.365000px;}
.yf6{bottom:752.325000px;}
.y129{bottom:752.505000px;}
.yc0{bottom:759.165000px;}
.yc2{bottom:762.405000px;}
.y49{bottom:763.305000px;}
.y11c{bottom:767.985000px;}
.y1a{bottom:768.165000px;}
.yf5{bottom:772.125000px;}
.y128{bottom:772.305000px;}
.ybf{bottom:780.945000px;}
.y72{bottom:783.105000px;}
.y19{bottom:787.965000px;}
.y48{bottom:792.105000px;}
.ybe{bottom:802.725000px;}
.y71{bottom:802.905000px;}
.y18{bottom:807.765000px;}
.y47{bottom:811.905000px;}
.y70{bottom:822.705000px;}
.ybd{bottom:824.325000px;}
.y17{bottom:827.745000px;}
.y46{bottom:831.705000px;}
.y119{bottom:831.885000px;}
.y6f{bottom:842.685000px;}
.ybc{bottom:846.105000px;}
.y16{bottom:847.545000px;}
.yf4{bottom:851.505000px;}
.y45{bottom:851.685000px;}
.y6e{bottom:862.485000px;}
.yf3{bottom:871.305000px;}
.y44{bottom:871.485000px;}
.y15{bottom:872.565000px;}
.y6d{bottom:882.285000px;}
.ybb{bottom:885.165000px;}
.y14{bottom:887.145000px;}
.yf2{bottom:888.585000px;}
.y43{bottom:891.285000px;}
.y114{bottom:895.965000px;}
.y6c{bottom:902.130000px;}
.yba{bottom:906.990000px;}
.yf1{bottom:908.430000px;}
.y42{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.y6b{bottom:921.930000px;}
.y12{bottom:927.510000px;}
.yf0{bottom:928.410000px;}
.y41{bottom:930.930000px;}
.y6a{bottom:941.910000px;}
.yb9{bottom:945.870000px;}
.yef{bottom:946.590000px;}
.y11{bottom:948.750000px;}
.y40{bottom:950.910000px;}
.yb4{bottom:968.370000px;}
.y3f{bottom:970.710000px;}
.yee{bottom:970.890000px;}
.y10{bottom:972.150000px;}
.y113{bottom:980.610000px;}
.y3e{bottom:990.510000px;}
.yed{bottom:995.190000px;}
.yf{bottom:1003.830000px;}
.y3d{bottom:1010.310000px;}
.yec{bottom:1020.210000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h16{height:17.100000px;}
.h15{height:17.280000px;}
.h19{height:17.316000px;}
.h11{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.ha{height:21.780000px;}
.hd{height:27.147656px;}
.h7{height:33.480000px;}
.h18{height:34.380000px;}
.h1a{height:34.560000px;}
.h10{height:39.600000px;}
.hf{height:39.780000px;}
.h8{height:41.726953px;}
.he{height:42.164648px;}
.h14{height:42.835781px;}
.h1e{height:43.506914px;}
.h1f{height:45.024258px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h17{height:51.840000px;}
.h9{height:53.224453px;}
.h1d{height:59.400000px;}
.h1c{height:59.580000px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h1b{height:79.416000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w12{width:46.620000px;}
.w9{width:53.100000px;}
.w22{width:54.036000px;}
.w11{width:62.460000px;}
.w8{width:67.176000px;}
.w1e{width:68.400000px;}
.w21{width:77.580000px;}
.w1f{width:77.940000px;}
.w20{width:77.976000px;}
.w1d{width:78.156000px;}
.wd{width:83.340000px;}
.w15{width:87.120000px;}
.w6{width:90.036000px;}
.wa{width:93.816000px;}
.wc{width:93.996000px;}
.w14{width:98.136000px;}
.we{width:99.756000px;}
.w27{width:103.176000px;}
.w16{width:104.076000px;}
.w19{width:112.896000px;}
.wf{width:113.436000px;}
.w25{width:129.996000px;}
.w3{width:131.796000px;}
.w23{width:152.490000px;}
.w24{width:164.010000px;}
.w26{width:221.790000px;}
.w18{width:236.370000px;}
.w1c{width:333.075000px;}
.w1a{width:339.555000px;}
.w1b{width:346.395000px;}
.w17{width:426.525000px;}
.w10{width:454.755000px;}
.w7{width:467.175000px;}
.w13{width:484.305000px;}
.wb{width:496.545000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.080000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.xd{left:56.340000px;}
.x28{left:75.239987px;}
.x29{left:102.275987px;}
.xc{left:108.035987px;}
.x6{left:109.115987px;}
.x4{left:118.290000px;}
.x7{left:136.835987px;}
.xf{left:148.536000px;}
.x16{left:172.110000px;}
.x25{left:210.990000px;}
.x9{left:270.794987px;}
.xb{left:324.794987px;}
.xa{left:341.534987px;}
.x26{left:377.355000px;}
.x20{left:391.575000px;}
.x1e{left:398.235000px;}
.x8{left:446.504987px;}
.x21{left:471.885000px;}
.x1c{left:485.205000px;}
.x27{left:509.685000px;}
.x19{left:542.805000px;}
.x13{left:555.045000px;}
.x10{left:618.045000px;}
.x22{left:622.725000px;}
.x17{left:629.250000px;}
.x1a{left:643.290000px;}
.x14{left:651.390000px;}
.x11{left:687.570000px;}
.x18{left:694.050000px;}
.x23{left:703.050000px;}
.x3{left:707.910000px;}
.x1d{left:723.930000px;}
.x1b{left:732.750000px;}
.x15{left:737.070000px;}
.x12{left:743.010000px;}
.x1f{left:746.790000px;}
.x24{left:782.790000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.408960pt;}
.ls2{letter-spacing:0.454933pt;}
.ls11{letter-spacing:9.120000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-3.114240pt;}
._17{margin-left:-1.893120pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.936320pt;}
._1{width:1.973333pt;}
._16{width:3.181227pt;}
._14{width:4.255573pt;}
._13{width:5.384960pt;}
._11{width:7.064960pt;}
._10{width:8.446080pt;}
._6{width:9.600000pt;}
._12{width:10.502827pt;}
._1a{width:11.420800pt;}
._21{width:12.340480pt;}
._20{width:15.139200pt;}
._1c{width:16.467200pt;}
._36{width:18.973440pt;}
._2d{width:23.134080pt;}
._28{width:24.913280pt;}
._2b{width:29.959680pt;}
._29{width:31.818880pt;}
._2c{width:40.105600pt;}
._1e{width:42.099840pt;}
._1d{width:43.464320pt;}
._31{width:47.507840pt;}
._1f{width:51.235627pt;}
._32{width:52.854400pt;}
._2a{width:60.663040pt;}
._26{width:66.870187pt;}
._7{width:67.808853pt;}
._37{width:71.712000pt;}
._34{width:75.271040pt;}
._33{width:76.280320pt;}
._38{width:80.317440pt;}
._25{width:86.213760pt;}
._2f{width:88.657280pt;}
._24{width:100.449920pt;}
._2e{width:105.781760pt;}
._30{width:116.439040pt;}
._27{width:117.521280pt;}
._22{width:129.984640pt;}
._23{width:131.365760pt;}
._8{width:136.960000pt;}
._35{width:150.816640pt;}
._c{width:173.440000pt;}
._1b{width:178.848000pt;}
._2{width:227.122347pt;}
._18{width:228.055467pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._19{width:538.145707pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{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;}
.ya8{bottom:2.880000pt;}
.y7a{bottom:5.120000pt;}
.yd5{bottom:5.146667pt;}
.y118{bottom:5.160000pt;}
.y75{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.yb8{bottom:10.560000pt;}
.y6{bottom:11.040000pt;}
.y78{bottom:13.920000pt;}
.y76{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.yb6{bottom:18.240000pt;}
.y79{bottom:22.720000pt;}
.y116{bottom:22.760000pt;}
.y74{bottom:22.880000pt;}
.yb7{bottom:25.920000pt;}
.y11d{bottom:31.520000pt;}
.y11b{bottom:31.680000pt;}
.yc{bottom:32.000000pt;}
.yb5{bottom:33.600000pt;}
.y5{bottom:35.840000pt;}
.y11e{bottom:40.320000pt;}
.y11a{bottom:40.480000pt;}
.y115{bottom:40.520000pt;}
.yb{bottom:51.360000pt;}
.y117{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.yb3{bottom:89.440000pt;}
.y69{bottom:90.080000pt;}
.y112{bottom:90.720000pt;}
.y94{bottom:97.440000pt;}
.y127{bottom:99.840000pt;}
.yeb{bottom:100.000000pt;}
.y3b{bottom:100.800000pt;}
.y14b{bottom:102.560000pt;}
.yb2{bottom:104.800000pt;}
.yd2{bottom:105.600000pt;}
.y68{bottom:107.840000pt;}
.y111{bottom:108.320000pt;}
.y2{bottom:111.706667pt;}
.y93{bottom:115.040000pt;}
.y126{bottom:117.440000pt;}
.y3a{bottom:118.560000pt;}
.yb1{bottom:120.000000pt;}
.y14a{bottom:120.160000pt;}
.yea{bottom:121.600000pt;}
.y148{bottom:122.080000pt;}
.y67{bottom:125.440000pt;}
.y110{bottom:126.080000pt;}
.yd1{bottom:127.200000pt;}
.y92{bottom:132.640000pt;}
.y125{bottom:135.066667pt;}
.y39{bottom:136.186667pt;}
.y149{bottom:137.786667pt;}
.y147{bottom:139.866667pt;}
.y66{bottom:143.066667pt;}
.ye9{bottom:143.226667pt;}
.y10f{bottom:143.706667pt;}
.yd0{bottom:149.466667pt;}
.y91{bottom:150.266667pt;}
.y124{bottom:152.666667pt;}
.y38{bottom:153.786667pt;}
.yb0{bottom:155.546667pt;}
.y146{bottom:157.466667pt;}
.y65{bottom:160.666667pt;}
.y10e{bottom:161.306667pt;}
.ye8{bottom:164.826667pt;}
.y90{bottom:168.026667pt;}
.y37{bottom:171.386667pt;}
.yaf{bottom:174.906667pt;}
.y145{bottom:175.066667pt;}
.ycf{bottom:176.026667pt;}
.y64{bottom:178.266667pt;}
.y10d{bottom:178.906667pt;}
.y8f{bottom:185.626667pt;}
.ye7{bottom:187.226667pt;}
.y36{bottom:188.986667pt;}
.y144{bottom:192.666667pt;}
.yce{bottom:193.626667pt;}
.yae{bottom:194.266667pt;}
.y63{bottom:196.026667pt;}
.y10c{bottom:196.506667pt;}
.y8e{bottom:203.226667pt;}
.y35{bottom:206.746667pt;}
.y143{bottom:210.266667pt;}
.ycd{bottom:211.226667pt;}
.yad{bottom:213.466667pt;}
.y62{bottom:213.626667pt;}
.y10b{bottom:214.266667pt;}
.y34{bottom:224.346667pt;}
.y142{bottom:228.026667pt;}
.y8d{bottom:228.826667pt;}
.y61{bottom:231.226667pt;}
.y10a{bottom:231.866667pt;}
.yac{bottom:232.826667pt;}
.y33{bottom:241.946667pt;}
.y141{bottom:245.626667pt;}
.y8c{bottom:246.426667pt;}
.ye6{bottom:248.826667pt;}
.y109{bottom:249.466667pt;}
.yab{bottom:252.186667pt;}
.y60{bottom:256.826667pt;}
.y32{bottom:259.546667pt;}
.y140{bottom:263.226667pt;}
.y8b{bottom:264.186667pt;}
.ye5{bottom:266.426667pt;}
.y108{bottom:267.066667pt;}
.yaa{bottom:271.546667pt;}
.y5f{bottom:274.426667pt;}
.y31{bottom:277.146667pt;}
.y13f{bottom:280.826667pt;}
.y8a{bottom:281.786667pt;}
.y107{bottom:282.426667pt;}
.ye4{bottom:284.186667pt;}
.ya9{bottom:290.906667pt;}
.y5e{bottom:292.186667pt;}
.y30{bottom:294.906667pt;}
.y13e{bottom:298.426667pt;}
.y89{bottom:299.386667pt;}
.ye3{bottom:301.786667pt;}
.y106{bottom:308.026667pt;}
.y5d{bottom:309.786667pt;}
.ya7{bottom:310.906667pt;}
.y2f{bottom:312.506667pt;}
.y13d{bottom:316.186667pt;}
.y88{bottom:316.986667pt;}
.ye2{bottom:319.386667pt;}
.y105{bottom:325.626667pt;}
.y5c{bottom:327.386667pt;}
.y2e{bottom:330.106667pt;}
.ya6{bottom:332.826667pt;}
.y13c{bottom:333.786667pt;}
.y87{bottom:334.586667pt;}
.ye1{bottom:336.986667pt;}
.ycc{bottom:342.586667pt;}
.y104{bottom:343.386667pt;}
.y5b{bottom:344.986667pt;}
.y2d{bottom:347.706667pt;}
.y13b{bottom:351.386667pt;}
.y86{bottom:352.346667pt;}
.ye0{bottom:354.586667pt;}
.ya5{bottom:358.466667pt;}
.ycb{bottom:360.386667pt;}
.y103{bottom:361.026667pt;}
.y5a{bottom:362.626667pt;}
.y2c{bottom:365.346667pt;}
.y13a{bottom:369.026667pt;}
.y85{bottom:369.986667pt;}
.ydf{bottom:372.386667pt;}
.ya4{bottom:376.066667pt;}
.yca{bottom:377.986667pt;}
.y102{bottom:378.626667pt;}
.y59{bottom:380.386667pt;}
.y2b{bottom:383.106667pt;}
.y139{bottom:386.626667pt;}
.y84{bottom:387.586667pt;}
.yde{bottom:389.986667pt;}
.ya3{bottom:393.666667pt;}
.yc9{bottom:395.586667pt;}
.y101{bottom:396.226667pt;}
.y58{bottom:397.986667pt;}
.y2a{bottom:400.706667pt;}
.y138{bottom:404.386667pt;}
.y83{bottom:405.186667pt;}
.ya2{bottom:411.266667pt;}
.yc8{bottom:413.186667pt;}
.y100{bottom:413.826667pt;}
.y57{bottom:415.586667pt;}
.y29{bottom:418.306667pt;}
.y82{bottom:421.346667pt;}
.y137{bottom:421.986667pt;}
.ya1{bottom:428.866667pt;}
.yc7{bottom:430.786667pt;}
.yff{bottom:431.586667pt;}
.ydd{bottom:433.186667pt;}
.y28{bottom:435.906667pt;}
.y136{bottom:439.586667pt;}
.y56{bottom:441.186667pt;}
.ya0{bottom:446.626667pt;}
.yc6{bottom:448.546667pt;}
.yfe{bottom:449.186667pt;}
.ydc{bottom:450.786667pt;}
.y27{bottom:453.506667pt;}
.y135{bottom:457.186667pt;}
.y55{bottom:458.786667pt;}
.y81{bottom:460.706667pt;}
.y9f{bottom:464.226667pt;}
.yc5{bottom:466.146667pt;}
.yfd{bottom:466.786667pt;}
.ydb{bottom:468.546667pt;}
.y26{bottom:471.266667pt;}
.y134{bottom:474.786667pt;}
.y54{bottom:476.546667pt;}
.y80{bottom:482.306667pt;}
.yfc{bottom:484.386667pt;}
.yda{bottom:486.146667pt;}
.y25{bottom:488.866667pt;}
.y9e{bottom:489.826667pt;}
.y133{bottom:492.546667pt;}
.y53{bottom:494.146667pt;}
.yfb{bottom:501.986667pt;}
.yd9{bottom:503.746667pt;}
.y7f{bottom:503.906667pt;}
.y24{bottom:506.466667pt;}
.y9d{bottom:507.426667pt;}
.y132{bottom:510.146667pt;}
.y52{bottom:511.746667pt;}
.yfa{bottom:519.746667pt;}
.yd8{bottom:521.346667pt;}
.y23{bottom:524.066667pt;}
.y9c{bottom:525.026667pt;}
.y7e{bottom:525.506667pt;}
.y131{bottom:527.746667pt;}
.y51{bottom:529.346667pt;}
.yf9{bottom:537.346667pt;}
.yd7{bottom:538.946667pt;}
.y22{bottom:541.666667pt;}
.y9b{bottom:542.786667pt;}
.y130{bottom:545.346667pt;}
.y7d{bottom:547.106667pt;}
.y50{bottom:554.946667pt;}
.yd6{bottom:555.106667pt;}
.y123{bottom:556.706667pt;}
.y21{bottom:559.426667pt;}
.y9a{bottom:560.386667pt;}
.y12f{bottom:562.946667pt;}
.y7c{bottom:568.866667pt;}
.yf8{bottom:572.546667pt;}
.y4f{bottom:572.706667pt;}
.y122{bottom:574.306667pt;}
.yd4{bottom:576.866667pt;}
.y20{bottom:577.053333pt;}
.y99{bottom:578.013333pt;}
.y12e{bottom:580.733333pt;}
.yf7{bottom:590.173333pt;}
.y4e{bottom:590.333333pt;}
.y7b{bottom:590.493333pt;}
.y121{bottom:591.933333pt;}
.y98{bottom:593.373333pt;}
.y1f{bottom:594.653333pt;}
.y12d{bottom:598.333333pt;}
.yd3{bottom:599.133333pt;}
.y4d{bottom:607.933333pt;}
.y97{bottom:608.733333pt;}
.y120{bottom:609.533333pt;}
.y77{bottom:612.093333pt;}
.y1e{bottom:612.253333pt;}
.y12c{bottom:615.933333pt;}
.y96{bottom:624.093333pt;}
.y4c{bottom:625.533333pt;}
.y11f{bottom:625.693333pt;}
.y1d{bottom:629.853333pt;}
.y12b{bottom:633.533333pt;}
.yc4{bottom:633.693333pt;}
.y95{bottom:639.293333pt;}
.y4b{bottom:643.133333pt;}
.y1c{bottom:647.613333pt;}
.y12a{bottom:651.133333pt;}
.y73{bottom:651.933333pt;}
.yc3{bottom:655.293333pt;}
.yc1{bottom:655.453333pt;}
.y4a{bottom:660.893333pt;}
.y1b{bottom:665.213333pt;}
.yf6{bottom:668.733333pt;}
.y129{bottom:668.893333pt;}
.yc0{bottom:674.813333pt;}
.yc2{bottom:677.693333pt;}
.y49{bottom:678.493333pt;}
.y11c{bottom:682.653333pt;}
.y1a{bottom:682.813333pt;}
.yf5{bottom:686.333333pt;}
.y128{bottom:686.493333pt;}
.ybf{bottom:694.173333pt;}
.y72{bottom:696.093333pt;}
.y19{bottom:700.413333pt;}
.y48{bottom:704.093333pt;}
.ybe{bottom:713.533333pt;}
.y71{bottom:713.693333pt;}
.y18{bottom:718.013333pt;}
.y47{bottom:721.693333pt;}
.y70{bottom:731.293333pt;}
.ybd{bottom:732.733333pt;}
.y17{bottom:735.773333pt;}
.y46{bottom:739.293333pt;}
.y119{bottom:739.453333pt;}
.y6f{bottom:749.053333pt;}
.ybc{bottom:752.093333pt;}
.y16{bottom:753.373333pt;}
.yf4{bottom:756.893333pt;}
.y45{bottom:757.053333pt;}
.y6e{bottom:766.653333pt;}
.yf3{bottom:774.493333pt;}
.y44{bottom:774.653333pt;}
.y15{bottom:775.613333pt;}
.y6d{bottom:784.253333pt;}
.ybb{bottom:786.813333pt;}
.y14{bottom:788.573333pt;}
.yf2{bottom:789.853333pt;}
.y43{bottom:792.253333pt;}
.y114{bottom:796.413333pt;}
.y6c{bottom:801.893333pt;}
.yba{bottom:806.213333pt;}
.yf1{bottom:807.493333pt;}
.y42{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.y6b{bottom:819.493333pt;}
.y12{bottom:824.453333pt;}
.yf0{bottom:825.253333pt;}
.y41{bottom:827.493333pt;}
.y6a{bottom:837.253333pt;}
.yb9{bottom:840.773333pt;}
.yef{bottom:841.413333pt;}
.y11{bottom:843.333333pt;}
.y40{bottom:845.253333pt;}
.yb4{bottom:860.773333pt;}
.y3f{bottom:862.853333pt;}
.yee{bottom:863.013333pt;}
.y10{bottom:864.133333pt;}
.y113{bottom:871.653333pt;}
.y3e{bottom:880.453333pt;}
.yed{bottom:884.613333pt;}
.yf{bottom:892.293333pt;}
.y3d{bottom:898.053333pt;}
.yec{bottom:906.853333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h16{height:15.200000pt;}
.h15{height:15.360000pt;}
.h19{height:15.392000pt;}
.h11{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.ha{height:19.360000pt;}
.hd{height:24.131250pt;}
.h7{height:29.760000pt;}
.h18{height:30.560000pt;}
.h1a{height:30.720000pt;}
.h10{height:35.200000pt;}
.hf{height:35.360000pt;}
.h8{height:37.090625pt;}
.he{height:37.479688pt;}
.h14{height:38.076250pt;}
.h1e{height:38.672812pt;}
.h1f{height:40.021563pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h17{height:46.080000pt;}
.h9{height:47.310625pt;}
.h1d{height:52.800000pt;}
.h1c{height:52.960000pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h1b{height:70.592000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w12{width:41.440000pt;}
.w9{width:47.200000pt;}
.w22{width:48.032000pt;}
.w11{width:55.520000pt;}
.w8{width:59.712000pt;}
.w1e{width:60.800000pt;}
.w21{width:68.960000pt;}
.w1f{width:69.280000pt;}
.w20{width:69.312000pt;}
.w1d{width:69.472000pt;}
.wd{width:74.080000pt;}
.w15{width:77.440000pt;}
.w6{width:80.032000pt;}
.wa{width:83.392000pt;}
.wc{width:83.552000pt;}
.w14{width:87.232000pt;}
.we{width:88.672000pt;}
.w27{width:91.712000pt;}
.w16{width:92.512000pt;}
.w19{width:100.352000pt;}
.wf{width:100.832000pt;}
.w25{width:115.552000pt;}
.w3{width:117.152000pt;}
.w23{width:135.546667pt;}
.w24{width:145.786667pt;}
.w26{width:197.146667pt;}
.w18{width:210.106667pt;}
.w1c{width:296.066667pt;}
.w1a{width:301.826667pt;}
.w1b{width:307.906667pt;}
.w17{width:379.133333pt;}
.w10{width:404.226667pt;}
.w7{width:415.266667pt;}
.w13{width:430.493333pt;}
.wb{width:441.373333pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.960000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.xd{left:50.080000pt;}
.x28{left:66.879988pt;}
.x29{left:90.911988pt;}
.xc{left:96.031988pt;}
.x6{left:96.991988pt;}
.x4{left:105.146667pt;}
.x7{left:121.631988pt;}
.xf{left:132.032000pt;}
.x16{left:152.986667pt;}
.x25{left:187.546667pt;}
.x9{left:240.706655pt;}
.xb{left:288.706655pt;}
.xa{left:303.586655pt;}
.x26{left:335.426667pt;}
.x20{left:348.066667pt;}
.x1e{left:353.986667pt;}
.x8{left:396.893322pt;}
.x21{left:419.453333pt;}
.x1c{left:431.293333pt;}
.x27{left:453.053333pt;}
.x19{left:482.493333pt;}
.x13{left:493.373333pt;}
.x10{left:549.373333pt;}
.x22{left:553.533333pt;}
.x17{left:559.333333pt;}
.x1a{left:571.813333pt;}
.x14{left:579.013333pt;}
.x11{left:611.173333pt;}
.x18{left:616.933333pt;}
.x23{left:624.933333pt;}
.x3{left:629.253333pt;}
.x1d{left:643.493333pt;}
.x1b{left:651.333333pt;}
.x15{left:655.173333pt;}
.x12{left:660.453333pt;}
.x1f{left:663.813333pt;}
.x24{left:695.813333pt;}
.x5{left:737.120000pt;}
}




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