
    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_9ad5c80585cd34ca69d61265.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_769f8b3bbe1c1f29d42a554f.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_881a0031f10188877af3d758.woff2')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_decfc69d9aae750fe5445c98.woff2')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_253e5c10f2b5c49cff6818ac.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_209f120b9c39a8c563579c04.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04401a3e629accc2bc99f783.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-4.676640px;}
._a{margin-left:-2.980800px;}
._2{margin-left:-1.258560px;}
._0{width:1.135440px;}
._1{width:2.756640px;}
._3{width:4.638720px;}
._4{width:5.944560px;}
._d{width:7.087680px;}
._10{width:8.605200px;}
._8{width:9.671040px;}
._9{width:10.863360px;}
._f{width:12.176640px;}
._5{width:13.314240px;}
._6{width:14.837760px;}
._11{width:16.560000px;}
._7{width:19.673280px;}
._1e{width:21.024000px;}
._e{width:22.057920px;}
._18{width:23.117760px;}
._12{width:24.192000px;}
._13{width:25.392000px;}
._1a{width:26.490240px;}
._19{width:27.528000px;}
._15{width:28.656000px;}
._14{width:29.736000px;}
._c{width:30.773280px;}
._b{width:31.795200px;}
._20{width:33.442560px;}
._22{width:34.885440px;}
._16{width:37.440000px;}
._17{width:38.448000px;}
._1b{width:40.392000px;}
._1c{width:41.488560px;}
._1f{width:45.682560px;}
._21{width:57.058560px;}
._23{width:59.112000px;}
._24{width:60.424560px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.ydd{bottom:114.876000px;}
.y10e{bottom:115.596000px;}
.y152{bottom:117.216000px;}
.ya7{bottom:117.576000px;}
.y42{bottom:120.996000px;}
.ycd{bottom:128.196000px;}
.yd1{bottom:129.996000px;}
.y135{bottom:131.256000px;}
.yef{bottom:135.396000px;}
.y151{bottom:136.296000px;}
.y70{bottom:137.196000px;}
.y23{bottom:140.976000px;}
.ydc{bottom:146.016000px;}
.y10d{bottom:146.556000px;}
.y8d{bottom:147.996000px;}
.ya6{bottom:148.716000px;}
.y41{bottom:151.950000px;}
.yf7{bottom:156.090000px;}
.ycc{bottom:159.330000px;}
.yb3{bottom:160.950000px;}
.y134{bottom:162.390000px;}
.y150{bottom:164.010000px;}
.yee{bottom:166.350000px;}
.y125{bottom:167.790000px;}
.y6f{bottom:168.330000px;}
.y22{bottom:172.110000px;}
.ydb{bottom:176.970000px;}
.y10c{bottom:177.690000px;}
.ya5{bottom:178.230000px;}
.y8c{bottom:178.950000px;}
.y52{bottom:183.090000px;}
.y14f{bottom:183.270000px;}
.yb2{bottom:192.090000px;}
.y133{bottom:193.350000px;}
.yed{bottom:197.490000px;}
.y40{bottom:198.030000px;}
.y124{bottom:198.750000px;}
.y6e{bottom:199.290000px;}
.y21{bottom:201.810000px;}
.ycb{bottom:205.410000px;}
.yda{bottom:208.110000px;}
.y10b{bottom:208.650000px;}
.y8b{bottom:210.090000px;}
.y14e{bottom:210.990000px;}
.y51{bottom:214.050000px;}
.yb1{bottom:223.050000px;}
.ya4{bottom:227.370000px;}
.yec{bottom:228.450000px;}
.y3f{bottom:228.990000px;}
.y14d{bottom:230.250000px;}
.y6d{bottom:230.430000px;}
.yca{bottom:236.370000px;}
.y132{bottom:239.430000px;}
.y10a{bottom:239.790000px;}
.y8a{bottom:241.050000px;}
.y75{bottom:245.190000px;}
.y179{bottom:247.350000px;}
.yb0{bottom:254.190000px;}
.y14c{bottom:257.970000px;}
.yeb{bottom:258.150000px;}
.ya3{bottom:258.510000px;}
.y20{bottom:259.770000px;}
.y3e{bottom:260.130000px;}
.y178{bottom:266.430000px;}
.yc9{bottom:267.510000px;}
.y131{bottom:270.390000px;}
.y89{bottom:272.190000px;}
.yf6{bottom:276.150000px;}
.y6c{bottom:276.510000px;}
.y14b{bottom:277.050000px;}
.y123{bottom:277.590000px;}
.yaf{bottom:285.150000px;}
.y177{bottom:285.330000px;}
.y109{bottom:285.690000px;}
.ya2{bottom:289.470000px;}
.y1f{bottom:290.910000px;}
.y3d{bottom:291.090000px;}
.yc8{bottom:298.470000px;}
.y130{bottom:301.530000px;}
.y88{bottom:303.150000px;}
.y14a{bottom:304.950000px;}
.yf5{bottom:307.290000px;}
.y6b{bottom:307.470000px;}
.y122{bottom:308.550000px;}
.y176{bottom:313.230000px;}
.yd9{bottom:316.290000px;}
.y108{bottom:316.830000px;}
.ya1{bottom:320.610000px;}
.y3c{bottom:322.230000px;}
.y149{bottom:324.030000px;}
.y1e{bottom:329.070000px;}
.yc7{bottom:329.610000px;}
.yae{bottom:331.230000px;}
.y175{bottom:332.310000px;}
.y12f{bottom:332.490000px;}
.yf4{bottom:338.295000px;}
.y6a{bottom:338.655000px;}
.y121{bottom:339.555000px;}
.yd8{bottom:347.295000px;}
.y107{bottom:347.835000px;}
.y1d{bottom:348.375000px;}
.y87{bottom:349.275000px;}
.ya0{bottom:351.615000px;}
.y148{bottom:351.975000px;}
.y3b{bottom:353.235000px;}
.y174{bottom:360.255000px;}
.yc6{bottom:360.615000px;}
.yad{bottom:362.235000px;}
.y12e{bottom:363.675000px;}
.y1c{bottom:367.275000px;}
.y69{bottom:369.615000px;}
.y120{bottom:370.695000px;}
.y147{bottom:371.055000px;}
.yea{bottom:378.255000px;}
.y106{bottom:378.975000px;}
.y173{bottom:379.335000px;}
.y86{bottom:380.235000px;}
.y3a{bottom:384.375000px;}
.y1b{bottom:386.175000px;}
.yd0{bottom:391.935000px;}
.yac{bottom:393.375000px;}
.y12d{bottom:394.635000px;}
.y9f{bottom:397.695000px;}
.y146{bottom:398.955000px;}
.y68{bottom:399.315000px;}
.y1a{bottom:405.255000px;}
.yc5{bottom:406.695000px;}
.y172{bottom:407.055000px;}
.y105{bottom:409.935000px;}
.y85{bottom:411.375000px;}
.y39{bottom:415.335000px;}
.y11f{bottom:416.775000px;}
.y145{bottom:418.035000px;}
.y19{bottom:424.155000px;}
.yab{bottom:424.335000px;}
.y12c{bottom:425.775000px;}
.y171{bottom:426.315000px;}
.y9e{bottom:428.655000px;}
.y50{bottom:430.455000px;}
.yc4{bottom:437.655000px;}
.ycf{bottom:441.075000px;}
.y84{bottom:442.335000px;}
.y18{bottom:443.235000px;}
.y38{bottom:445.035000px;}
.y170{bottom:445.215000px;}
.y144{bottom:445.755000px;}
.yf3{bottom:446.475000px;}
.y11e{bottom:447.735000px;}
.y12b{bottom:455.295000px;}
.yaa{bottom:455.475000px;}
.y104{bottom:456.015000px;}
.y67{bottom:457.455000px;}
.y9d{bottom:459.795000px;}
.y4f{bottom:461.415000px;}
.y17{bottom:462.135000px;}
.y143{bottom:465.015000px;}
.yc3{bottom:468.795000px;}
.yce{bottom:472.035000px;}
.y16f{bottom:473.115000px;}
.y83{bottom:473.475000px;}
.yf2{bottom:477.435000px;}
.y11d{bottom:478.875000px;}
.y16{bottom:481.035000px;}
.ya9{bottom:486.435000px;}
.y103{bottom:487.155000px;}
.y66{bottom:488.415000px;}
.y9c{bottom:490.755000px;}
.y16e{bottom:492.195000px;}
.y4e{bottom:492.555000px;}
.y142{bottom:492.735000px;}
.yc2{bottom:498.495000px;}
.y15{bottom:500.115000px;}
.y37{bottom:503.175000px;}
.y82{bottom:504.435000px;}
.y141{bottom:511.995000px;}
.ya8{bottom:516.135000px;}
.yd7{bottom:517.575000px;}
.y102{bottom:518.115000px;}
.y14{bottom:519.015000px;}
.y65{bottom:519.555000px;}
.y16d{bottom:519.915000px;}
.y9b{bottom:521.895000px;}
.y4d{bottom:523.515000px;}
.y11c{bottom:524.955000px;}
.y36{bottom:534.135000px;}
.y81{bottom:535.575000px;}
.y13{bottom:538.095000px;}
.y16c{bottom:539.175000px;}
.y140{bottom:539.715000px;}
.yc1{bottom:547.455000px;}
.yd6{bottom:548.535000px;}
.y101{bottom:549.255000px;}
.y64{bottom:550.515000px;}
.y4c{bottom:554.655000px;}
.y11b{bottom:555.915000px;}
.y12{bottom:556.995000px;}
.y35{bottom:565.275000px;}
.y12a{bottom:566.535000px;}
.y16b{bottom:566.895000px;}
.y13f{bottom:567.615000px;}
.y9a{bottom:567.975000px;}
.y11{bottom:576.075000px;}
.yc0{bottom:578.595000px;}
.ye9{bottom:579.675000px;}
.y100{bottom:580.215000px;}
.y63{bottom:581.655000px;}
.y4b{bottom:585.615000px;}
.y16a{bottom:586.155000px;}
.y13e{bottom:586.875000px;}
.y11a{bottom:587.055000px;}
.yd5{bottom:594.615000px;}
.y10{bottom:594.975000px;}
.y34{bottom:596.235000px;}
.y129{bottom:597.675000px;}
.y99{bottom:598.935000px;}
.y13d{bottom:605.805000px;}
.ybf{bottom:609.585000px;}
.yff{bottom:611.385000px;}
.y62{bottom:612.645000px;}
.y169{bottom:613.905000px;}
.y4a{bottom:615.345000px;}
.yf1{bottom:616.785000px;}
.y119{bottom:618.045000px;}
.yf{bottom:623.265000px;}
.yd4{bottom:625.785000px;}
.y33{bottom:627.405000px;}
.y128{bottom:628.665000px;}
.y98{bottom:630.105000px;}
.y168{bottom:632.985000px;}
.y13c{bottom:633.705000px;}
.ybe{bottom:640.725000px;}
.y74{bottom:642.345000px;}
.y80{bottom:643.785000px;}
.yf0{bottom:646.305000px;}
.y118{bottom:647.745000px;}
.y13b{bottom:652.785000px;}
.y126{bottom:655.305000px;}
.yd3{bottom:656.745000px;}
.yfe{bottom:657.285000px;}
.y32{bottom:658.365000px;}
.y61{bottom:658.725000px;}
.y167{bottom:660.885000px;}
.y97{bottom:661.065000px;}
.y117{bottom:662.685000px;}
.ybd{bottom:671.685000px;}
.y49{bottom:673.485000px;}
.y7f{bottom:674.745000px;}
.y166{bottom:679.965000px;}
.y13a{bottom:680.505000px;}
.yd2{bottom:686.445000px;}
.ye8{bottom:687.885000px;}
.yfd{bottom:688.425000px;}
.ye{bottom:688.965000px;}
.y31{bottom:689.505000px;}
.y60{bottom:689.685000px;}
.y96{bottom:692.205000px;}
.y116{bottom:693.825000px;}
.y139{bottom:699.765000px;}
.y48{bottom:704.445000px;}
.y7e{bottom:705.885000px;}
.y165{bottom:707.865000px;}
.yd{bottom:717.405000px;}
.ybc{bottom:717.765000px;}
.y138{bottom:718.665000px;}
.ye7{bottom:718.845000px;}
.yfc{bottom:719.385000px;}
.y30{bottom:720.465000px;}
.y5f{bottom:720.825000px;}
.y95{bottom:723.165000px;}
.y115{bottom:724.785000px;}
.y164{bottom:726.945000px;}
.y47{bottom:735.585000px;}
.y7d{bottom:736.845000px;}
.y137{bottom:746.565000px;}
.ybb{bottom:748.905000px;}
.yfb{bottom:750.525000px;}
.y5e{bottom:751.785000px;}
.y94{bottom:752.865000px;}
.y163{bottom:754.665000px;}
.y114{bottom:755.925000px;}
.yc{bottom:760.965000px;}
.ye6{bottom:764.925000px;}
.y2f{bottom:766.545000px;}
.y7c{bottom:767.805000px;}
.y162{bottom:773.925000px;}
.y136{bottom:774.825000px;}
.yba{bottom:779.865000px;}
.yfa{bottom:781.485000px;}
.y5d{bottom:782.925000px;}
.y113{bottom:786.885000px;}
.ye5{bottom:795.885000px;}
.y2e{bottom:797.505000px;}
.y127{bottom:798.945000px;}
.y161{bottom:801.645000px;}
.y93{bottom:802.005000px;}
.yb{bottom:804.345000px;}
.yb9{bottom:811.005000px;}
.yf9{bottom:812.625000px;}
.y5c{bottom:813.885000px;}
.y112{bottom:818.025000px;}
.ye4{bottom:827.025000px;}
.y2d{bottom:828.645000px;}
.y160{bottom:829.725000px;}
.ya{bottom:832.785000px;}
.y92{bottom:832.965000px;}
.yb8{bottom:841.965000px;}
.y73{bottom:843.585000px;}
.y5b{bottom:845.025000px;}
.y15f{bottom:848.805000px;}
.ye3{bottom:857.985000px;}
.y2c{bottom:859.605000px;}
.y91{bottom:864.105000px;}
.yb7{bottom:873.150000px;}
.y46{bottom:874.770000px;}
.y7b{bottom:876.030000px;}
.y15e{bottom:876.750000px;}
.y9{bottom:888.270000px;}
.ye2{bottom:889.170000px;}
.y2b{bottom:890.790000px;}
.y5a{bottom:891.150000px;}
.y90{bottom:895.110000px;}
.y15d{bottom:895.830000px;}
.yb6{bottom:904.110000px;}
.y45{bottom:905.730000px;}
.y7a{bottom:907.170000px;}
.y2a{bottom:921.750000px;}
.y59{bottom:922.110000px;}
.y15c{bottom:923.550000px;}
.y8f{bottom:926.250000px;}
.yb5{bottom:933.810000px;}
.ye1{bottom:935.250000px;}
.y44{bottom:936.870000px;}
.y79{bottom:938.130000px;}
.y15b{bottom:942.810000px;}
.y8{bottom:944.610000px;}
.yf8{bottom:951.810000px;}
.y58{bottom:953.250000px;}
.y8e{bottom:955.770000px;}
.y111{bottom:957.210000px;}
.ye0{bottom:966.210000px;}
.y29{bottom:967.830000px;}
.y78{bottom:969.270000px;}
.y15a{bottom:970.530000px;}
.y7{bottom:972.510000px;}
.yb4{bottom:982.950000px;}
.y57{bottom:984.210000px;}
.y110{bottom:988.350000px;}
.ydf{bottom:997.350000px;}
.y159{bottom:998.610000px;}
.y28{bottom:998.970000px;}
.y77{bottom:1000.230000px;}
.y6{bottom:1000.410000px;}
.y72{bottom:1013.910000px;}
.y56{bottom:1015.350000px;}
.y158{bottom:1017.690000px;}
.y10f{bottom:1017.870000px;}
.yde{bottom:1026.870000px;}
.y5{bottom:1028.850000px;}
.y27{bottom:1029.930000px;}
.y76{bottom:1031.370000px;}
.y71{bottom:1045.050000px;}
.y157{bottom:1045.410000px;}
.y55{bottom:1046.310000px;}
.y26{bottom:1061.070000px;}
.y156{bottom:1064.670000px;}
.y43{bottom:1076.010000px;}
.y54{bottom:1077.450000px;}
.y4{bottom:1086.990000px;}
.y155{bottom:1092.390000px;}
.y25{bottom:1107.150000px;}
.y53{bottom:1108.410000px;}
.y154{bottom:1120.470000px;}
.y3{bottom:1132.530000px;}
.y24{bottom:1138.140000px;}
.y153{bottom:1139.580000px;}
.y1{bottom:1195.740000px;}
.h5{height:46.251562px;}
.h6{height:46.736719px;}
.h2{height:50.273438px;}
.h7{height:50.800781px;}
.h4{height:54.596250px;}
.h9{height:58.429688px;}
.h8{height:59.343750px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.035987px;}
.xb{left:162.029987px;}
.x3{left:179.129987px;}
.x4{left:285.734987px;}
.x9{left:305.534987px;}
.x6{left:313.814987px;}
.x7{left:385.814987px;}
.x8{left:394.094987px;}
.x5{left:401.294987px;}
.xc{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:668.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-4.157013pt;}
._a{margin-left:-2.649600pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.009280pt;}
._1{width:2.450347pt;}
._3{width:4.123307pt;}
._4{width:5.284053pt;}
._d{width:6.300160pt;}
._10{width:7.649067pt;}
._8{width:8.596480pt;}
._9{width:9.656320pt;}
._f{width:10.823680pt;}
._5{width:11.834880pt;}
._6{width:13.189120pt;}
._11{width:14.720000pt;}
._7{width:17.487360pt;}
._1e{width:18.688000pt;}
._e{width:19.607040pt;}
._18{width:20.549120pt;}
._12{width:21.504000pt;}
._13{width:22.570667pt;}
._1a{width:23.546880pt;}
._19{width:24.469333pt;}
._15{width:25.472000pt;}
._14{width:26.432000pt;}
._c{width:27.354027pt;}
._b{width:28.262400pt;}
._20{width:29.726720pt;}
._22{width:31.009280pt;}
._16{width:33.280000pt;}
._17{width:34.176000pt;}
._1b{width:35.904000pt;}
._1c{width:36.878720pt;}
._1f{width:40.606720pt;}
._21{width:50.718720pt;}
._23{width:52.544000pt;}
._24{width:53.710720pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.ydd{bottom:102.112000pt;}
.y10e{bottom:102.752000pt;}
.y152{bottom:104.192000pt;}
.ya7{bottom:104.512000pt;}
.y42{bottom:107.552000pt;}
.ycd{bottom:113.952000pt;}
.yd1{bottom:115.552000pt;}
.y135{bottom:116.672000pt;}
.yef{bottom:120.352000pt;}
.y151{bottom:121.152000pt;}
.y70{bottom:121.952000pt;}
.y23{bottom:125.312000pt;}
.ydc{bottom:129.792000pt;}
.y10d{bottom:130.272000pt;}
.y8d{bottom:131.552000pt;}
.ya6{bottom:132.192000pt;}
.y41{bottom:135.066667pt;}
.yf7{bottom:138.746667pt;}
.ycc{bottom:141.626667pt;}
.yb3{bottom:143.066667pt;}
.y134{bottom:144.346667pt;}
.y150{bottom:145.786667pt;}
.yee{bottom:147.866667pt;}
.y125{bottom:149.146667pt;}
.y6f{bottom:149.626667pt;}
.y22{bottom:152.986667pt;}
.ydb{bottom:157.306667pt;}
.y10c{bottom:157.946667pt;}
.ya5{bottom:158.426667pt;}
.y8c{bottom:159.066667pt;}
.y52{bottom:162.746667pt;}
.y14f{bottom:162.906667pt;}
.yb2{bottom:170.746667pt;}
.y133{bottom:171.866667pt;}
.yed{bottom:175.546667pt;}
.y40{bottom:176.026667pt;}
.y124{bottom:176.666667pt;}
.y6e{bottom:177.146667pt;}
.y21{bottom:179.386667pt;}
.ycb{bottom:182.586667pt;}
.yda{bottom:184.986667pt;}
.y10b{bottom:185.466667pt;}
.y8b{bottom:186.746667pt;}
.y14e{bottom:187.546667pt;}
.y51{bottom:190.266667pt;}
.yb1{bottom:198.266667pt;}
.ya4{bottom:202.106667pt;}
.yec{bottom:203.066667pt;}
.y3f{bottom:203.546667pt;}
.y14d{bottom:204.666667pt;}
.y6d{bottom:204.826667pt;}
.yca{bottom:210.106667pt;}
.y132{bottom:212.826667pt;}
.y10a{bottom:213.146667pt;}
.y8a{bottom:214.266667pt;}
.y75{bottom:217.946667pt;}
.y179{bottom:219.866667pt;}
.yb0{bottom:225.946667pt;}
.y14c{bottom:229.306667pt;}
.yeb{bottom:229.466667pt;}
.ya3{bottom:229.786667pt;}
.y20{bottom:230.906667pt;}
.y3e{bottom:231.226667pt;}
.y178{bottom:236.826667pt;}
.yc9{bottom:237.786667pt;}
.y131{bottom:240.346667pt;}
.y89{bottom:241.946667pt;}
.yf6{bottom:245.466667pt;}
.y6c{bottom:245.786667pt;}
.y14b{bottom:246.266667pt;}
.y123{bottom:246.746667pt;}
.yaf{bottom:253.466667pt;}
.y177{bottom:253.626667pt;}
.y109{bottom:253.946667pt;}
.ya2{bottom:257.306667pt;}
.y1f{bottom:258.586667pt;}
.y3d{bottom:258.746667pt;}
.yc8{bottom:265.306667pt;}
.y130{bottom:268.026667pt;}
.y88{bottom:269.466667pt;}
.y14a{bottom:271.066667pt;}
.yf5{bottom:273.146667pt;}
.y6b{bottom:273.306667pt;}
.y122{bottom:274.266667pt;}
.y176{bottom:278.426667pt;}
.yd9{bottom:281.146667pt;}
.y108{bottom:281.626667pt;}
.ya1{bottom:284.986667pt;}
.y3c{bottom:286.426667pt;}
.y149{bottom:288.026667pt;}
.y1e{bottom:292.506667pt;}
.yc7{bottom:292.986667pt;}
.yae{bottom:294.426667pt;}
.y175{bottom:295.386667pt;}
.y12f{bottom:295.546667pt;}
.yf4{bottom:300.706667pt;}
.y6a{bottom:301.026667pt;}
.y121{bottom:301.826667pt;}
.yd8{bottom:308.706667pt;}
.y107{bottom:309.186667pt;}
.y1d{bottom:309.666667pt;}
.y87{bottom:310.466667pt;}
.ya0{bottom:312.546667pt;}
.y148{bottom:312.866667pt;}
.y3b{bottom:313.986667pt;}
.y174{bottom:320.226667pt;}
.yc6{bottom:320.546667pt;}
.yad{bottom:321.986667pt;}
.y12e{bottom:323.266667pt;}
.y1c{bottom:326.466667pt;}
.y69{bottom:328.546667pt;}
.y120{bottom:329.506667pt;}
.y147{bottom:329.826667pt;}
.yea{bottom:336.226667pt;}
.y106{bottom:336.866667pt;}
.y173{bottom:337.186667pt;}
.y86{bottom:337.986667pt;}
.y3a{bottom:341.666667pt;}
.y1b{bottom:343.266667pt;}
.yd0{bottom:348.386667pt;}
.yac{bottom:349.666667pt;}
.y12d{bottom:350.786667pt;}
.y9f{bottom:353.506667pt;}
.y146{bottom:354.626667pt;}
.y68{bottom:354.946667pt;}
.y1a{bottom:360.226667pt;}
.yc5{bottom:361.506667pt;}
.y172{bottom:361.826667pt;}
.y105{bottom:364.386667pt;}
.y85{bottom:365.666667pt;}
.y39{bottom:369.186667pt;}
.y11f{bottom:370.466667pt;}
.y145{bottom:371.586667pt;}
.y19{bottom:377.026667pt;}
.yab{bottom:377.186667pt;}
.y12c{bottom:378.466667pt;}
.y171{bottom:378.946667pt;}
.y9e{bottom:381.026667pt;}
.y50{bottom:382.626667pt;}
.yc4{bottom:389.026667pt;}
.ycf{bottom:392.066667pt;}
.y84{bottom:393.186667pt;}
.y18{bottom:393.986667pt;}
.y38{bottom:395.586667pt;}
.y170{bottom:395.746667pt;}
.y144{bottom:396.226667pt;}
.yf3{bottom:396.866667pt;}
.y11e{bottom:397.986667pt;}
.y12b{bottom:404.706667pt;}
.yaa{bottom:404.866667pt;}
.y104{bottom:405.346667pt;}
.y67{bottom:406.626667pt;}
.y9d{bottom:408.706667pt;}
.y4f{bottom:410.146667pt;}
.y17{bottom:410.786667pt;}
.y143{bottom:413.346667pt;}
.yc3{bottom:416.706667pt;}
.yce{bottom:419.586667pt;}
.y16f{bottom:420.546667pt;}
.y83{bottom:420.866667pt;}
.yf2{bottom:424.386667pt;}
.y11d{bottom:425.666667pt;}
.y16{bottom:427.586667pt;}
.ya9{bottom:432.386667pt;}
.y103{bottom:433.026667pt;}
.y66{bottom:434.146667pt;}
.y9c{bottom:436.226667pt;}
.y16e{bottom:437.506667pt;}
.y4e{bottom:437.826667pt;}
.y142{bottom:437.986667pt;}
.yc2{bottom:443.106667pt;}
.y15{bottom:444.546667pt;}
.y37{bottom:447.266667pt;}
.y82{bottom:448.386667pt;}
.y141{bottom:455.106667pt;}
.ya8{bottom:458.786667pt;}
.yd7{bottom:460.066667pt;}
.y102{bottom:460.546667pt;}
.y14{bottom:461.346667pt;}
.y65{bottom:461.826667pt;}
.y16d{bottom:462.146667pt;}
.y9b{bottom:463.906667pt;}
.y4d{bottom:465.346667pt;}
.y11c{bottom:466.626667pt;}
.y36{bottom:474.786667pt;}
.y81{bottom:476.066667pt;}
.y13{bottom:478.306667pt;}
.y16c{bottom:479.266667pt;}
.y140{bottom:479.746667pt;}
.yc1{bottom:486.626667pt;}
.yd6{bottom:487.586667pt;}
.y101{bottom:488.226667pt;}
.y64{bottom:489.346667pt;}
.y4c{bottom:493.026667pt;}
.y11b{bottom:494.146667pt;}
.y12{bottom:495.106667pt;}
.y35{bottom:502.466667pt;}
.y12a{bottom:503.586667pt;}
.y16b{bottom:503.906667pt;}
.y13f{bottom:504.546667pt;}
.y9a{bottom:504.866667pt;}
.y11{bottom:512.066667pt;}
.yc0{bottom:514.306667pt;}
.ye9{bottom:515.266667pt;}
.y100{bottom:515.746667pt;}
.y63{bottom:517.026667pt;}
.y4b{bottom:520.546667pt;}
.y16a{bottom:521.026667pt;}
.y13e{bottom:521.666667pt;}
.y11a{bottom:521.826667pt;}
.yd5{bottom:528.546667pt;}
.y10{bottom:528.866667pt;}
.y34{bottom:529.986667pt;}
.y129{bottom:531.266667pt;}
.y99{bottom:532.386667pt;}
.y13d{bottom:538.493333pt;}
.ybf{bottom:541.853333pt;}
.yff{bottom:543.453333pt;}
.y62{bottom:544.573333pt;}
.y169{bottom:545.693333pt;}
.y4a{bottom:546.973333pt;}
.yf1{bottom:548.253333pt;}
.y119{bottom:549.373333pt;}
.yf{bottom:554.013333pt;}
.yd4{bottom:556.253333pt;}
.y33{bottom:557.693333pt;}
.y128{bottom:558.813333pt;}
.y98{bottom:560.093333pt;}
.y168{bottom:562.653333pt;}
.y13c{bottom:563.293333pt;}
.ybe{bottom:569.533333pt;}
.y74{bottom:570.973333pt;}
.y80{bottom:572.253333pt;}
.yf0{bottom:574.493333pt;}
.y118{bottom:575.773333pt;}
.y13b{bottom:580.253333pt;}
.y126{bottom:582.493333pt;}
.yd3{bottom:583.773333pt;}
.yfe{bottom:584.253333pt;}
.y32{bottom:585.213333pt;}
.y61{bottom:585.533333pt;}
.y167{bottom:587.453333pt;}
.y97{bottom:587.613333pt;}
.y117{bottom:589.053333pt;}
.ybd{bottom:597.053333pt;}
.y49{bottom:598.653333pt;}
.y7f{bottom:599.773333pt;}
.y166{bottom:604.413333pt;}
.y13a{bottom:604.893333pt;}
.yd2{bottom:610.173333pt;}
.ye8{bottom:611.453333pt;}
.yfd{bottom:611.933333pt;}
.ye{bottom:612.413333pt;}
.y31{bottom:612.893333pt;}
.y60{bottom:613.053333pt;}
.y96{bottom:615.293333pt;}
.y116{bottom:616.733333pt;}
.y139{bottom:622.013333pt;}
.y48{bottom:626.173333pt;}
.y7e{bottom:627.453333pt;}
.y165{bottom:629.213333pt;}
.yd{bottom:637.693333pt;}
.ybc{bottom:638.013333pt;}
.y138{bottom:638.813333pt;}
.ye7{bottom:638.973333pt;}
.yfc{bottom:639.453333pt;}
.y30{bottom:640.413333pt;}
.y5f{bottom:640.733333pt;}
.y95{bottom:642.813333pt;}
.y115{bottom:644.253333pt;}
.y164{bottom:646.173333pt;}
.y47{bottom:653.853333pt;}
.y7d{bottom:654.973333pt;}
.y137{bottom:663.613333pt;}
.ybb{bottom:665.693333pt;}
.yfb{bottom:667.133333pt;}
.y5e{bottom:668.253333pt;}
.y94{bottom:669.213333pt;}
.y163{bottom:670.813333pt;}
.y114{bottom:671.933333pt;}
.yc{bottom:676.413333pt;}
.ye6{bottom:679.933333pt;}
.y2f{bottom:681.373333pt;}
.y7c{bottom:682.493333pt;}
.y162{bottom:687.933333pt;}
.y136{bottom:688.733333pt;}
.yba{bottom:693.213333pt;}
.yfa{bottom:694.653333pt;}
.y5d{bottom:695.933333pt;}
.y113{bottom:699.453333pt;}
.ye5{bottom:707.453333pt;}
.y2e{bottom:708.893333pt;}
.y127{bottom:710.173333pt;}
.y161{bottom:712.573333pt;}
.y93{bottom:712.893333pt;}
.yb{bottom:714.973333pt;}
.yb9{bottom:720.893333pt;}
.yf9{bottom:722.333333pt;}
.y5c{bottom:723.453333pt;}
.y112{bottom:727.133333pt;}
.ye4{bottom:735.133333pt;}
.y2d{bottom:736.573333pt;}
.y160{bottom:737.533333pt;}
.ya{bottom:740.253333pt;}
.y92{bottom:740.413333pt;}
.yb8{bottom:748.413333pt;}
.y73{bottom:749.853333pt;}
.y5b{bottom:751.133333pt;}
.y15f{bottom:754.493333pt;}
.ye3{bottom:762.653333pt;}
.y2c{bottom:764.093333pt;}
.y91{bottom:768.093333pt;}
.yb7{bottom:776.133333pt;}
.y46{bottom:777.573333pt;}
.y7b{bottom:778.693333pt;}
.y15e{bottom:779.333333pt;}
.y9{bottom:789.573333pt;}
.ye2{bottom:790.373333pt;}
.y2b{bottom:791.813333pt;}
.y5a{bottom:792.133333pt;}
.y90{bottom:795.653333pt;}
.y15d{bottom:796.293333pt;}
.yb6{bottom:803.653333pt;}
.y45{bottom:805.093333pt;}
.y7a{bottom:806.373333pt;}
.y2a{bottom:819.333333pt;}
.y59{bottom:819.653333pt;}
.y15c{bottom:820.933333pt;}
.y8f{bottom:823.333333pt;}
.yb5{bottom:830.053333pt;}
.ye1{bottom:831.333333pt;}
.y44{bottom:832.773333pt;}
.y79{bottom:833.893333pt;}
.y15b{bottom:838.053333pt;}
.y8{bottom:839.653333pt;}
.yf8{bottom:846.053333pt;}
.y58{bottom:847.333333pt;}
.y8e{bottom:849.573333pt;}
.y111{bottom:850.853333pt;}
.ye0{bottom:858.853333pt;}
.y29{bottom:860.293333pt;}
.y78{bottom:861.573333pt;}
.y15a{bottom:862.693333pt;}
.y7{bottom:864.453333pt;}
.yb4{bottom:873.733333pt;}
.y57{bottom:874.853333pt;}
.y110{bottom:878.533333pt;}
.ydf{bottom:886.533333pt;}
.y159{bottom:887.653333pt;}
.y28{bottom:887.973333pt;}
.y77{bottom:889.093333pt;}
.y6{bottom:889.253333pt;}
.y72{bottom:901.253333pt;}
.y56{bottom:902.533333pt;}
.y158{bottom:904.613333pt;}
.y10f{bottom:904.773333pt;}
.yde{bottom:912.773333pt;}
.y5{bottom:914.533333pt;}
.y27{bottom:915.493333pt;}
.y76{bottom:916.773333pt;}
.y71{bottom:928.933333pt;}
.y157{bottom:929.253333pt;}
.y55{bottom:930.053333pt;}
.y26{bottom:943.173333pt;}
.y156{bottom:946.373333pt;}
.y43{bottom:956.453333pt;}
.y54{bottom:957.733333pt;}
.y4{bottom:966.213333pt;}
.y155{bottom:971.013333pt;}
.y25{bottom:984.133333pt;}
.y53{bottom:985.253333pt;}
.y154{bottom:995.973333pt;}
.y3{bottom:1006.693333pt;}
.y24{bottom:1011.680000pt;}
.y153{bottom:1012.960000pt;}
.y1{bottom:1062.880000pt;}
.h5{height:41.112500pt;}
.h6{height:41.543750pt;}
.h2{height:44.687500pt;}
.h7{height:45.156250pt;}
.h4{height:48.530000pt;}
.h9{height:51.937500pt;}
.h8{height:52.750000pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.031988pt;}
.xb{left:144.026655pt;}
.x3{left:159.226655pt;}
.x4{left:253.986655pt;}
.x9{left:271.586655pt;}
.x6{left:278.946655pt;}
.x7{left:342.946655pt;}
.x8{left:350.306655pt;}
.x5{left:356.706655pt;}
.xc{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:593.893322pt;}
}




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