
    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_23888f193df3b70b8d30ab75.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_2bd44c3579f71561c1073ec9.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_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_06f94ebc85f496aa4b8c4ade.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_59727a109d3aeb15c2e50f55.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_e0d6a20d5c4673cf61cdcad4.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000001px;}
.ls8{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls7{letter-spacing:33.984000px;}
.ls0{letter-spacing:410.940000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-88.467840px;}
._1b{margin-left:-4.680000px;}
._9{margin-left:-3.635520px;}
._8{margin-left:-2.592000px;}
._0{margin-left:-1.398240px;}
._2{width:1.347840px;}
._b{width:2.390880px;}
._5{width:3.469920px;}
._e{width:4.679520px;}
._d{width:5.927040px;}
._c{width:7.014240px;}
._16{width:8.058240px;}
._17{width:9.768960px;}
._11{width:11.304000px;}
._12{width:12.312000px;}
._15{width:13.920000px;}
._13{width:15.168000px;}
._14{width:16.944000px;}
._a{width:19.800000px;}
._f{width:21.168000px;}
._10{width:22.464000px;}
._1c{width:24.048000px;}
._6{width:25.128000px;}
._7{width:26.372160px;}
._1d{width:27.420480px;}
._18{width:28.512000px;}
._1e{width:29.666880px;}
._21{width:30.669120px;}
._1f{width:33.696000px;}
._20{width:34.848000px;}
._19{width:36.288000px;}
._1a{width:37.440000px;}
._22{width:38.808000px;}
._2f{width:40.248000px;}
._27{width:43.200000px;}
._28{width:44.294400px;}
._23{width:45.504000px;}
._2c{width:48.672000px;}
._2b{width:50.076000px;}
._25{width:53.640000px;}
._26{width:54.936000px;}
._24{width:74.016000px;}
._4{width:83.380080px;}
._30{width:90.504000px;}
._35{width:107.856000px;}
._1{width:109.380000px;}
._29{width:135.504000px;}
._2a{width:136.872000px;}
._31{width:144.504000px;}
._32{width:145.764000px;}
._33{width:207.144000px;}
._34{width:208.980000px;}
._2d{width:312.552000px;}
._2e{width:313.848000px;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(0,0,8);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs1{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y32{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y30{bottom:10.800000px;}
.y7{bottom:21.600000px;}
.y31{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.y2f{bottom:112.176000px;}
.y5d{bottom:114.696000px;}
.y7a{bottom:119.556000px;}
.yb6{bottom:123.156000px;}
.y121{bottom:123.876000px;}
.yd2{bottom:124.416000px;}
.y105{bottom:126.936000px;}
.y152{bottom:131.616000px;}
.y2e{bottom:132.876000px;}
.yeb{bottom:134.136000px;}
.y5c{bottom:135.396000px;}
.y12d{bottom:138.996000px;}
.y79{bottom:140.256000px;}
.yb5{bottom:143.856000px;}
.y120{bottom:144.576000px;}
.yd1{bottom:145.116000px;}
.y151{bottom:152.310000px;}
.y96{bottom:153.570000px;}
.yea{bottom:154.830000px;}
.y5b{bottom:156.090000px;}
.y12c{bottom:159.690000px;}
.y78{bottom:160.950000px;}
.y104{bottom:163.470000px;}
.yb4{bottom:164.550000px;}
.y11f{bottom:165.270000px;}
.yd0{bottom:165.810000px;}
.y2d{bottom:169.230000px;}
.y150{bottom:173.010000px;}
.y95{bottom:174.270000px;}
.ye9{bottom:175.530000px;}
.y129{bottom:176.790000px;}
.yee{bottom:181.650000px;}
.yb3{bottom:185.250000px;}
.y11e{bottom:185.970000px;}
.ycf{bottom:186.510000px;}
.y5a{bottom:192.630000px;}
.y14f{bottom:193.710000px;}
.y94{bottom:194.970000px;}
.ye8{bottom:196.230000px;}
.y77{bottom:197.490000px;}
.y103{bottom:199.830000px;}
.yed{bottom:202.350000px;}
.y2c{bottom:205.770000px;}
.yd7{bottom:207.210000px;}
.y59{bottom:213.330000px;}
.y14e{bottom:214.410000px;}
.ye7{bottom:216.930000px;}
.y76{bottom:218.190000px;}
.y102{bottom:220.530000px;}
.yb2{bottom:221.790000px;}
.y11d{bottom:222.510000px;}
.yce{bottom:223.050000px;}
.y2b{bottom:226.470000px;}
.yd6{bottom:227.910000px;}
.y93{bottom:231.510000px;}
.y58{bottom:234.030000px;}
.y14d{bottom:235.110000px;}
.ye6{bottom:237.630000px;}
.y75{bottom:238.890000px;}
.y101{bottom:241.230000px;}
.y11c{bottom:243.210000px;}
.ycd{bottom:243.750000px;}
.y92{bottom:252.210000px;}
.y57{bottom:254.730000px;}
.y14c{bottom:255.810000px;}
.yb1{bottom:258.330000px;}
.y74{bottom:259.590000px;}
.y100{bottom:261.930000px;}
.y2a{bottom:263.010000px;}
.y11b{bottom:263.730000px;}
.ycc{bottom:264.450000px;}
.ye5{bottom:274.170000px;}
.y56{bottom:275.430000px;}
.y14b{bottom:276.510000px;}
.yb0{bottom:279.030000px;}
.y73{bottom:280.290000px;}
.y29{bottom:283.710000px;}
.y11a{bottom:284.430000px;}
.ycb{bottom:285.150000px;}
.y91{bottom:288.750000px;}
.ye4{bottom:294.870000px;}
.y55{bottom:296.130000px;}
.y14a{bottom:297.210000px;}
.yff{bottom:298.470000px;}
.yaf{bottom:299.730000px;}
.y72{bottom:300.990000px;}
.y28{bottom:304.410000px;}
.y119{bottom:305.130000px;}
.yca{bottom:305.850000px;}
.y90{bottom:309.495000px;}
.y12b{bottom:315.615000px;}
.y54{bottom:316.875000px;}
.y149{bottom:317.955000px;}
.yae{bottom:320.475000px;}
.y71{bottom:321.735000px;}
.y27{bottom:325.155000px;}
.y118{bottom:325.875000px;}
.yc9{bottom:326.595000px;}
.ye3{bottom:331.455000px;}
.yfe{bottom:335.055000px;}
.y53{bottom:337.575000px;}
.y148{bottom:338.655000px;}
.yad{bottom:341.175000px;}
.y70{bottom:342.435000px;}
.y26{bottom:345.855000px;}
.y8f{bottom:346.035000px;}
.y117{bottom:346.575000px;}
.yc8{bottom:347.295000px;}
.y12a{bottom:352.155000px;}
.yfd{bottom:355.755000px;}
.y52{bottom:358.275000px;}
.y147{bottom:359.355000px;}
.yac{bottom:361.875000px;}
.y6f{bottom:363.135000px;}
.y25{bottom:366.555000px;}
.y116{bottom:367.275000px;}
.yc7{bottom:367.995000px;}
.y128{bottom:378.975000px;}
.y146{bottom:380.055000px;}
.y8e{bottom:382.575000px;}
.yec{bottom:383.835000px;}
.y24{bottom:387.255000px;}
.y115{bottom:387.975000px;}
.yd5{bottom:388.695000px;}
.yfc{bottom:392.295000px;}
.y51{bottom:394.815000px;}
.y6e{bottom:399.675000px;}
.y145{bottom:400.755000px;}
.y8d{bottom:403.275000px;}
.yc6{bottom:404.535000px;}
.y23{bottom:407.955000px;}
.y114{bottom:408.675000px;}
.ye2{bottom:409.395000px;}
.y50{bottom:415.515000px;}
.yab{bottom:419.115000px;}
.y6d{bottom:420.375000px;}
.y144{bottom:421.455000px;}
.yc5{bottom:425.235000px;}
.y22{bottom:428.655000px;}
.yfb{bottom:428.835000px;}
.ye1{bottom:430.095000px;}
.y4f{bottom:436.215000px;}
.y8c{bottom:439.815000px;}
.y6c{bottom:441.075000px;}
.y143{bottom:442.155000px;}
.y113{bottom:445.215000px;}
.yc4{bottom:445.935000px;}
.y21{bottom:449.355000px;}
.yfa{bottom:449.535000px;}
.ye0{bottom:450.795000px;}
.yaa{bottom:455.655000px;}
.y4e{bottom:456.915000px;}
.y8b{bottom:460.515000px;}
.y6b{bottom:461.775000px;}
.y142{bottom:462.855000px;}
.yc3{bottom:466.635000px;}
.y20{bottom:470.055000px;}
.yf9{bottom:470.235000px;}
.ydf{bottom:471.495000px;}
.y4d{bottom:477.615000px;}
.y112{bottom:481.755000px;}
.y6a{bottom:482.475000px;}
.y141{bottom:483.555000px;}
.yc2{bottom:487.335000px;}
.y1f{bottom:490.755000px;}
.yf8{bottom:490.935000px;}
.ya9{bottom:492.195000px;}
.y8a{bottom:497.055000px;}
.y4c{bottom:498.315000px;}
.y111{bottom:502.455000px;}
.y69{bottom:503.175000px;}
.y140{bottom:504.255000px;}
.yc1{bottom:508.035000px;}
.y1e{bottom:511.455000px;}
.ya8{bottom:512.895000px;}
.y89{bottom:517.755000px;}
.y4b{bottom:518.835000px;}
.y68{bottom:523.875000px;}
.y13f{bottom:524.955000px;}
.yf7{bottom:527.475000px;}
.yc0{bottom:528.735000px;}
.y1d{bottom:532.155000px;}
.ya7{bottom:533.595000px;}
.y110{bottom:538.995000px;}
.y67{bottom:544.575000px;}
.y13e{bottom:545.655000px;}
.ybf{bottom:549.435000px;}
.y1c{bottom:552.855000px;}
.y88{bottom:554.295000px;}
.y4a{bottom:555.375000px;}
.y10f{bottom:559.695000px;}
.yf6{bottom:564.045000px;}
.yd4{bottom:565.305000px;}
.y13d{bottom:566.385000px;}
.y130{bottom:570.165000px;}
.y1b{bottom:573.585000px;}
.ya6{bottom:575.025000px;}
.y49{bottom:576.105000px;}
.y66{bottom:580.965000px;}
.ybe{bottom:586.005000px;}
.y13c{bottom:587.085000px;}
.y87{bottom:590.865000px;}
.y1a{bottom:594.285000px;}
.ya5{bottom:595.725000px;}
.y10e{bottom:596.265000px;}
.y48{bottom:596.805000px;}
.yf5{bottom:600.585000px;}
.y65{bottom:601.665000px;}
.ybd{bottom:606.705000px;}
.y13b{bottom:607.785000px;}
.yde{bottom:611.565000px;}
.y19{bottom:614.985000px;}
.ya4{bottom:616.425000px;}
.y47{bottom:617.505000px;}
.y64{bottom:622.365000px;}
.y86{bottom:627.405000px;}
.y13a{bottom:628.485000px;}
.ydd{bottom:632.265000px;}
.y18{bottom:635.685000px;}
.ya3{bottom:637.125000px;}
.y46{bottom:638.205000px;}
.y63{bottom:643.065000px;}
.y85{bottom:648.105000px;}
.y139{bottom:649.185000px;}
.ydc{bottom:652.965000px;}
.y17{bottom:656.385000px;}
.ya2{bottom:657.825000px;}
.y10d{bottom:658.365000px;}
.y45{bottom:658.905000px;}
.y62{bottom:663.765000px;}
.y84{bottom:668.625000px;}
.y138{bottom:669.885000px;}
.y12f{bottom:673.665000px;}
.y16{bottom:677.085000px;}
.yf4{bottom:678.525000px;}
.y44{bottom:679.605000px;}
.y61{bottom:684.465000px;}
.y83{bottom:689.325000px;}
.y137{bottom:690.585000px;}
.ya1{bottom:694.365000px;}
.y15{bottom:697.785000px;}
.yf3{bottom:699.225000px;}
.y43{bottom:700.305000px;}
.y60{bottom:705.165000px;}
.y82{bottom:710.025000px;}
.y136{bottom:711.285000px;}
.ya0{bottom:715.065000px;}
.yf2{bottom:719.925000px;}
.y10c{bottom:720.465000px;}
.y42{bottom:721.005000px;}
.ydb{bottom:725.865000px;}
.y81{bottom:730.725000px;}
.y135{bottom:731.985000px;}
.y14{bottom:734.325000px;}
.y9f{bottom:735.765000px;}
.y127{bottom:736.845000px;}
.y5f{bottom:741.705000px;}
.ybc{bottom:746.565000px;}
.y10b{bottom:751.425000px;}
.y134{bottom:752.685000px;}
.y9e{bottom:756.465000px;}
.y41{bottom:757.545000px;}
.yd3{bottom:762.405000px;}
.y80{bottom:767.265000px;}
.y13{bottom:770.865000px;}
.y133{bottom:773.385000px;}
.y9d{bottom:777.165000px;}
.y40{bottom:778.245000px;}
.y10a{bottom:782.565000px;}
.ybb{bottom:783.105000px;}
.y7f{bottom:787.965000px;}
.y12{bottom:791.565000px;}
.yf1{bottom:792.825000px;}
.y132{bottom:794.085000px;}
.y9c{bottom:797.865000px;}
.y3f{bottom:798.945000px;}
.yba{bottom:803.805000px;}
.y7e{bottom:808.665000px;}
.yf0{bottom:813.570000px;}
.y131{bottom:814.830000px;}
.y11{bottom:819.150000px;}
.y3e{bottom:819.690000px;}
.yb9{bottom:824.550000px;}
.y12e{bottom:829.410000px;}
.y10{bottom:833.010000px;}
.y9b{bottom:834.270000px;}
.y126{bottom:835.530000px;}
.y3d{bottom:840.390000px;}
.y109{bottom:844.710000px;}
.y7d{bottom:845.250000px;}
.yef{bottom:850.110000px;}
.y125{bottom:856.230000px;}
.yf{bottom:859.650000px;}
.y3c{bottom:861.090000px;}
.yb8{bottom:865.950000px;}
.y9a{bottom:870.810000px;}
.y108{bottom:875.670000px;}
.y124{bottom:876.930000px;}
.y3b{bottom:881.790000px;}
.yb7{bottom:886.650000px;}
.ye{bottom:890.250000px;}
.y123{bottom:897.630000px;}
.y3a{bottom:902.490000px;}
.y99{bottom:907.350000px;}
.yd{bottom:910.950000px;}
.y107{bottom:912.210000px;}
.y122{bottom:918.330000px;}
.y5e{bottom:923.190000px;}
.y98{bottom:928.050000px;}
.yc{bottom:931.650000px;}
.y39{bottom:939.030000px;}
.y7c{bottom:943.890000px;}
.yda{bottom:948.750000px;}
.y38{bottom:959.730000px;}
.y7b{bottom:964.590000px;}
.yb{bottom:968.190000px;}
.yd9{bottom:969.450000px;}
.y37{bottom:980.430000px;}
.y97{bottom:985.290000px;}
.y36{bottom:1001.130000px;}
.yd8{bottom:1005.990000px;}
.y4{bottom:1009.770000px;}
.y35{bottom:1021.830000px;}
.y106{bottom:1026.690000px;}
.y34{bottom:1042.530000px;}
.y3{bottom:1052.070000px;}
.y33{bottom:1063.260000px;}
.y2{bottom:1089.180000px;}
.y1{bottom:1114.920000px;}
.h9{height:33.683203px;}
.h8{height:34.036523px;}
.h4{height:49.500000px;}
.h3{height:50.273438px;}
.h7{height:50.800781px;}
.hb{height:52.417969px;}
.h6{height:54.316406px;}
.h5{height:58.320000px;}
.ha{height:59.343750px;}
.h1{height:59.436914px;}
.h2{height:67.565039px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:9.719986px;}
.x7{left:38.339986px;}
.x5{left:106.955986px;}
.xc{left:108.035986px;}
.x9{left:132.875986px;}
.xe{left:133.955986px;}
.xd{left:165.629986px;}
.x1{left:176.249986px;}
.xf{left:182.549986px;}
.x2{left:206.309986px;}
.xa{left:283.349986px;}
.x8{left:423.074986px;}
.xb{left:458.534986px;}
.x4{left:792.149986px;}
.x3{left:810.149986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000001pt;}
.ls8{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls0{letter-spacing:365.280000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-78.638080pt;}
._1b{margin-left:-4.160000pt;}
._9{margin-left:-3.231573pt;}
._8{margin-left:-2.304000pt;}
._0{margin-left:-1.242880pt;}
._2{width:1.198080pt;}
._b{width:2.125227pt;}
._5{width:3.084373pt;}
._e{width:4.159573pt;}
._d{width:5.268480pt;}
._c{width:6.234880pt;}
._16{width:7.162880pt;}
._17{width:8.683520pt;}
._11{width:10.048000pt;}
._12{width:10.944000pt;}
._15{width:12.373333pt;}
._13{width:13.482667pt;}
._14{width:15.061333pt;}
._a{width:17.600000pt;}
._f{width:18.816000pt;}
._10{width:19.968000pt;}
._1c{width:21.376000pt;}
._6{width:22.336000pt;}
._7{width:23.441920pt;}
._1d{width:24.373760pt;}
._18{width:25.344000pt;}
._1e{width:26.370560pt;}
._21{width:27.261440pt;}
._1f{width:29.952000pt;}
._20{width:30.976000pt;}
._19{width:32.256000pt;}
._1a{width:33.280000pt;}
._22{width:34.496000pt;}
._2f{width:35.776000pt;}
._27{width:38.400000pt;}
._28{width:39.372800pt;}
._23{width:40.448000pt;}
._2c{width:43.264000pt;}
._2b{width:44.512000pt;}
._25{width:47.680000pt;}
._26{width:48.832000pt;}
._24{width:65.792000pt;}
._4{width:74.115627pt;}
._30{width:80.448000pt;}
._35{width:95.872000pt;}
._1{width:97.226667pt;}
._29{width:120.448000pt;}
._2a{width:121.664000pt;}
._31{width:128.448000pt;}
._32{width:129.568000pt;}
._33{width:184.128000pt;}
._34{width:185.760000pt;}
._2d{width:277.824000pt;}
._2e{width:278.976000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs1{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y30{bottom:9.600000pt;}
.y7{bottom:19.200000pt;}
.y31{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.y2f{bottom:99.712000pt;}
.y5d{bottom:101.952000pt;}
.y7a{bottom:106.272000pt;}
.yb6{bottom:109.472000pt;}
.y121{bottom:110.112000pt;}
.yd2{bottom:110.592000pt;}
.y105{bottom:112.832000pt;}
.y152{bottom:116.992000pt;}
.y2e{bottom:118.112000pt;}
.yeb{bottom:119.232000pt;}
.y5c{bottom:120.352000pt;}
.y12d{bottom:123.552000pt;}
.y79{bottom:124.672000pt;}
.yb5{bottom:127.872000pt;}
.y120{bottom:128.512000pt;}
.yd1{bottom:128.992000pt;}
.y151{bottom:135.386667pt;}
.y96{bottom:136.506667pt;}
.yea{bottom:137.626667pt;}
.y5b{bottom:138.746667pt;}
.y12c{bottom:141.946667pt;}
.y78{bottom:143.066667pt;}
.y104{bottom:145.306667pt;}
.yb4{bottom:146.266667pt;}
.y11f{bottom:146.906667pt;}
.yd0{bottom:147.386667pt;}
.y2d{bottom:150.426667pt;}
.y150{bottom:153.786667pt;}
.y95{bottom:154.906667pt;}
.ye9{bottom:156.026667pt;}
.y129{bottom:157.146667pt;}
.yee{bottom:161.466667pt;}
.yb3{bottom:164.666667pt;}
.y11e{bottom:165.306667pt;}
.ycf{bottom:165.786667pt;}
.y5a{bottom:171.226667pt;}
.y14f{bottom:172.186667pt;}
.y94{bottom:173.306667pt;}
.ye8{bottom:174.426667pt;}
.y77{bottom:175.546667pt;}
.y103{bottom:177.626667pt;}
.yed{bottom:179.866667pt;}
.y2c{bottom:182.906667pt;}
.yd7{bottom:184.186667pt;}
.y59{bottom:189.626667pt;}
.y14e{bottom:190.586667pt;}
.ye7{bottom:192.826667pt;}
.y76{bottom:193.946667pt;}
.y102{bottom:196.026667pt;}
.yb2{bottom:197.146667pt;}
.y11d{bottom:197.786667pt;}
.yce{bottom:198.266667pt;}
.y2b{bottom:201.306667pt;}
.yd6{bottom:202.586667pt;}
.y93{bottom:205.786667pt;}
.y58{bottom:208.026667pt;}
.y14d{bottom:208.986667pt;}
.ye6{bottom:211.226667pt;}
.y75{bottom:212.346667pt;}
.y101{bottom:214.426667pt;}
.y11c{bottom:216.186667pt;}
.ycd{bottom:216.666667pt;}
.y92{bottom:224.186667pt;}
.y57{bottom:226.426667pt;}
.y14c{bottom:227.386667pt;}
.yb1{bottom:229.626667pt;}
.y74{bottom:230.746667pt;}
.y100{bottom:232.826667pt;}
.y2a{bottom:233.786667pt;}
.y11b{bottom:234.426667pt;}
.ycc{bottom:235.066667pt;}
.ye5{bottom:243.706667pt;}
.y56{bottom:244.826667pt;}
.y14b{bottom:245.786667pt;}
.yb0{bottom:248.026667pt;}
.y73{bottom:249.146667pt;}
.y29{bottom:252.186667pt;}
.y11a{bottom:252.826667pt;}
.ycb{bottom:253.466667pt;}
.y91{bottom:256.666667pt;}
.ye4{bottom:262.106667pt;}
.y55{bottom:263.226667pt;}
.y14a{bottom:264.186667pt;}
.yff{bottom:265.306667pt;}
.yaf{bottom:266.426667pt;}
.y72{bottom:267.546667pt;}
.y28{bottom:270.586667pt;}
.y119{bottom:271.226667pt;}
.yca{bottom:271.866667pt;}
.y90{bottom:275.106667pt;}
.y12b{bottom:280.546667pt;}
.y54{bottom:281.666667pt;}
.y149{bottom:282.626667pt;}
.yae{bottom:284.866667pt;}
.y71{bottom:285.986667pt;}
.y27{bottom:289.026667pt;}
.y118{bottom:289.666667pt;}
.yc9{bottom:290.306667pt;}
.ye3{bottom:294.626667pt;}
.yfe{bottom:297.826667pt;}
.y53{bottom:300.066667pt;}
.y148{bottom:301.026667pt;}
.yad{bottom:303.266667pt;}
.y70{bottom:304.386667pt;}
.y26{bottom:307.426667pt;}
.y8f{bottom:307.586667pt;}
.y117{bottom:308.066667pt;}
.yc8{bottom:308.706667pt;}
.y12a{bottom:313.026667pt;}
.yfd{bottom:316.226667pt;}
.y52{bottom:318.466667pt;}
.y147{bottom:319.426667pt;}
.yac{bottom:321.666667pt;}
.y6f{bottom:322.786667pt;}
.y25{bottom:325.826667pt;}
.y116{bottom:326.466667pt;}
.yc7{bottom:327.106667pt;}
.y128{bottom:336.866667pt;}
.y146{bottom:337.826667pt;}
.y8e{bottom:340.066667pt;}
.yec{bottom:341.186667pt;}
.y24{bottom:344.226667pt;}
.y115{bottom:344.866667pt;}
.yd5{bottom:345.506667pt;}
.yfc{bottom:348.706667pt;}
.y51{bottom:350.946667pt;}
.y6e{bottom:355.266667pt;}
.y145{bottom:356.226667pt;}
.y8d{bottom:358.466667pt;}
.yc6{bottom:359.586667pt;}
.y23{bottom:362.626667pt;}
.y114{bottom:363.266667pt;}
.ye2{bottom:363.906667pt;}
.y50{bottom:369.346667pt;}
.yab{bottom:372.546667pt;}
.y6d{bottom:373.666667pt;}
.y144{bottom:374.626667pt;}
.yc5{bottom:377.986667pt;}
.y22{bottom:381.026667pt;}
.yfb{bottom:381.186667pt;}
.ye1{bottom:382.306667pt;}
.y4f{bottom:387.746667pt;}
.y8c{bottom:390.946667pt;}
.y6c{bottom:392.066667pt;}
.y143{bottom:393.026667pt;}
.y113{bottom:395.746667pt;}
.yc4{bottom:396.386667pt;}
.y21{bottom:399.426667pt;}
.yfa{bottom:399.586667pt;}
.ye0{bottom:400.706667pt;}
.yaa{bottom:405.026667pt;}
.y4e{bottom:406.146667pt;}
.y8b{bottom:409.346667pt;}
.y6b{bottom:410.466667pt;}
.y142{bottom:411.426667pt;}
.yc3{bottom:414.786667pt;}
.y20{bottom:417.826667pt;}
.yf9{bottom:417.986667pt;}
.ydf{bottom:419.106667pt;}
.y4d{bottom:424.546667pt;}
.y112{bottom:428.226667pt;}
.y6a{bottom:428.866667pt;}
.y141{bottom:429.826667pt;}
.yc2{bottom:433.186667pt;}
.y1f{bottom:436.226667pt;}
.yf8{bottom:436.386667pt;}
.ya9{bottom:437.506667pt;}
.y8a{bottom:441.826667pt;}
.y4c{bottom:442.946667pt;}
.y111{bottom:446.626667pt;}
.y69{bottom:447.266667pt;}
.y140{bottom:448.226667pt;}
.yc1{bottom:451.586667pt;}
.y1e{bottom:454.626667pt;}
.ya8{bottom:455.906667pt;}
.y89{bottom:460.226667pt;}
.y4b{bottom:461.186667pt;}
.y68{bottom:465.666667pt;}
.y13f{bottom:466.626667pt;}
.yf7{bottom:468.866667pt;}
.yc0{bottom:469.986667pt;}
.y1d{bottom:473.026667pt;}
.ya7{bottom:474.306667pt;}
.y110{bottom:479.106667pt;}
.y67{bottom:484.066667pt;}
.y13e{bottom:485.026667pt;}
.ybf{bottom:488.386667pt;}
.y1c{bottom:491.426667pt;}
.y88{bottom:492.706667pt;}
.y4a{bottom:493.666667pt;}
.y10f{bottom:497.506667pt;}
.yf6{bottom:501.373333pt;}
.yd4{bottom:502.493333pt;}
.y13d{bottom:503.453333pt;}
.y130{bottom:506.813333pt;}
.y1b{bottom:509.853333pt;}
.ya6{bottom:511.133333pt;}
.y49{bottom:512.093333pt;}
.y66{bottom:516.413333pt;}
.ybe{bottom:520.893333pt;}
.y13c{bottom:521.853333pt;}
.y87{bottom:525.213333pt;}
.y1a{bottom:528.253333pt;}
.ya5{bottom:529.533333pt;}
.y10e{bottom:530.013333pt;}
.y48{bottom:530.493333pt;}
.yf5{bottom:533.853333pt;}
.y65{bottom:534.813333pt;}
.ybd{bottom:539.293333pt;}
.y13b{bottom:540.253333pt;}
.yde{bottom:543.613333pt;}
.y19{bottom:546.653333pt;}
.ya4{bottom:547.933333pt;}
.y47{bottom:548.893333pt;}
.y64{bottom:553.213333pt;}
.y86{bottom:557.693333pt;}
.y13a{bottom:558.653333pt;}
.ydd{bottom:562.013333pt;}
.y18{bottom:565.053333pt;}
.ya3{bottom:566.333333pt;}
.y46{bottom:567.293333pt;}
.y63{bottom:571.613333pt;}
.y85{bottom:576.093333pt;}
.y139{bottom:577.053333pt;}
.ydc{bottom:580.413333pt;}
.y17{bottom:583.453333pt;}
.ya2{bottom:584.733333pt;}
.y10d{bottom:585.213333pt;}
.y45{bottom:585.693333pt;}
.y62{bottom:590.013333pt;}
.y84{bottom:594.333333pt;}
.y138{bottom:595.453333pt;}
.y12f{bottom:598.813333pt;}
.y16{bottom:601.853333pt;}
.yf4{bottom:603.133333pt;}
.y44{bottom:604.093333pt;}
.y61{bottom:608.413333pt;}
.y83{bottom:612.733333pt;}
.y137{bottom:613.853333pt;}
.ya1{bottom:617.213333pt;}
.y15{bottom:620.253333pt;}
.yf3{bottom:621.533333pt;}
.y43{bottom:622.493333pt;}
.y60{bottom:626.813333pt;}
.y82{bottom:631.133333pt;}
.y136{bottom:632.253333pt;}
.ya0{bottom:635.613333pt;}
.yf2{bottom:639.933333pt;}
.y10c{bottom:640.413333pt;}
.y42{bottom:640.893333pt;}
.ydb{bottom:645.213333pt;}
.y81{bottom:649.533333pt;}
.y135{bottom:650.653333pt;}
.y14{bottom:652.733333pt;}
.y9f{bottom:654.013333pt;}
.y127{bottom:654.973333pt;}
.y5f{bottom:659.293333pt;}
.ybc{bottom:663.613333pt;}
.y10b{bottom:667.933333pt;}
.y134{bottom:669.053333pt;}
.y9e{bottom:672.413333pt;}
.y41{bottom:673.373333pt;}
.yd3{bottom:677.693333pt;}
.y80{bottom:682.013333pt;}
.y13{bottom:685.213333pt;}
.y133{bottom:687.453333pt;}
.y9d{bottom:690.813333pt;}
.y40{bottom:691.773333pt;}
.y10a{bottom:695.613333pt;}
.ybb{bottom:696.093333pt;}
.y7f{bottom:700.413333pt;}
.y12{bottom:703.613333pt;}
.yf1{bottom:704.733333pt;}
.y132{bottom:705.853333pt;}
.y9c{bottom:709.213333pt;}
.y3f{bottom:710.173333pt;}
.yba{bottom:714.493333pt;}
.y7e{bottom:718.813333pt;}
.yf0{bottom:723.173333pt;}
.y131{bottom:724.293333pt;}
.y11{bottom:728.133333pt;}
.y3e{bottom:728.613333pt;}
.yb9{bottom:732.933333pt;}
.y12e{bottom:737.253333pt;}
.y10{bottom:740.453333pt;}
.y9b{bottom:741.573333pt;}
.y126{bottom:742.693333pt;}
.y3d{bottom:747.013333pt;}
.y109{bottom:750.853333pt;}
.y7d{bottom:751.333333pt;}
.yef{bottom:755.653333pt;}
.y125{bottom:761.093333pt;}
.yf{bottom:764.133333pt;}
.y3c{bottom:765.413333pt;}
.yb8{bottom:769.733333pt;}
.y9a{bottom:774.053333pt;}
.y108{bottom:778.373333pt;}
.y124{bottom:779.493333pt;}
.y3b{bottom:783.813333pt;}
.yb7{bottom:788.133333pt;}
.ye{bottom:791.333333pt;}
.y123{bottom:797.893333pt;}
.y3a{bottom:802.213333pt;}
.y99{bottom:806.533333pt;}
.yd{bottom:809.733333pt;}
.y107{bottom:810.853333pt;}
.y122{bottom:816.293333pt;}
.y5e{bottom:820.613333pt;}
.y98{bottom:824.933333pt;}
.yc{bottom:828.133333pt;}
.y39{bottom:834.693333pt;}
.y7c{bottom:839.013333pt;}
.yda{bottom:843.333333pt;}
.y38{bottom:853.093333pt;}
.y7b{bottom:857.413333pt;}
.yb{bottom:860.613333pt;}
.yd9{bottom:861.733333pt;}
.y37{bottom:871.493333pt;}
.y97{bottom:875.813333pt;}
.y36{bottom:889.893333pt;}
.yd8{bottom:894.213333pt;}
.y4{bottom:897.573333pt;}
.y35{bottom:908.293333pt;}
.y106{bottom:912.613333pt;}
.y34{bottom:926.693333pt;}
.y3{bottom:935.173333pt;}
.y33{bottom:945.120000pt;}
.y2{bottom:968.160000pt;}
.y1{bottom:991.040000pt;}
.h9{height:29.940625pt;}
.h8{height:30.254687pt;}
.h4{height:44.000000pt;}
.h3{height:44.687500pt;}
.h7{height:45.156250pt;}
.hb{height:46.593750pt;}
.h6{height:48.281250pt;}
.h5{height:51.840000pt;}
.ha{height:52.750000pt;}
.h1{height:52.832812pt;}
.h2{height:60.057813pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:8.639988pt;}
.x7{left:34.079988pt;}
.x5{left:95.071988pt;}
.xc{left:96.031988pt;}
.x9{left:118.111988pt;}
.xe{left:119.071988pt;}
.xd{left:147.226655pt;}
.x1{left:156.666655pt;}
.xf{left:162.266655pt;}
.x2{left:183.386655pt;}
.xa{left:251.866655pt;}
.x8{left:376.066655pt;}
.xb{left:407.586655pt;}
.x4{left:704.133321pt;}
.x3{left:720.133321pt;}
}




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