
    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_3d4e9c6d5dcc9971aab1192c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_74ac51414c8dd8c4b94df3c2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a47514744f5ae9aed3693f5f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_715ff666d9e84195f504a77a.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_1af90b35a0f2519f98885e8a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_70b4b23d3f2150dae4ae25e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_130301694ab792f9947e2b7d.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3ae03645165ec50a03b7bcb3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.182000px;}
.ls9{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.109440px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.756000px;}
.lsa{letter-spacing:6.660000px;}
.lsf{letter-spacing:46.026720px;}
.lse{letter-spacing:46.170720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-6.094080px;}
._e{margin-left:-3.841920px;}
._c{margin-left:-2.367840px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:2.308800px;}
._10{width:3.882960px;}
._f{width:4.900320px;}
._19{width:6.366240px;}
._12{width:7.931520px;}
._3{width:9.540000px;}
._16{width:10.995840px;}
._1{width:12.420000px;}
._15{width:13.804560px;}
._1a{width:16.015680px;}
._2a{width:17.390160px;}
._20{width:19.302480px;}
._1f{width:20.318400px;}
._24{width:21.633120px;}
._25{width:22.667040px;}
._22{width:23.685120px;}
._21{width:24.740640px;}
._23{width:26.113680px;}
._1b{width:29.461680px;}
._1c{width:31.254480px;}
._14{width:32.569200px;}
._1d{width:33.577920px;}
._13{width:34.720560px;}
._2f{width:36.752400px;}
._2e{width:38.306160px;}
._1e{width:39.319920px;}
._29{width:40.338000px;}
._2d{width:41.711040px;}
._2c{width:42.967440px;}
._28{width:46.612800px;}
._30{width:54.441360px;}
._27{width:56.413440px;}
._18{width:57.608640px;}
._17{width:58.684320px;}
._26{width:66.453120px;}
._2b{width:69.978960px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.240000px;}
.y2{bottom:5.400000px;}
.y27{bottom:5.760000px;}
.y67{bottom:5.796000px;}
.yd2{bottom:5.805000px;}
.y51{bottom:5.940000px;}
.y6b{bottom:7.020000px;}
.y10{bottom:7.200000px;}
.y1a{bottom:8.820000px;}
.yeb{bottom:11.700000px;}
.yee{bottom:11.880000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.ya1{bottom:15.660000px;}
.ya8{bottom:15.696000px;}
.yd0{bottom:15.705000px;}
.ya5{bottom:15.840000px;}
.yec{bottom:20.340000px;}
.ye8{bottom:20.520000px;}
.yc4{bottom:22.320000px;}
.ya2{bottom:25.560000px;}
.ya9{bottom:25.596000px;}
.ya6{bottom:25.740000px;}
.y26{bottom:25.770000px;}
.yd1{bottom:25.785000px;}
.y7{bottom:38.880000px;}
.y11{bottom:40.320000px;}
.yc{bottom:44.100000px;}
.y25{bottom:45.570000px;}
.yf{bottom:59.940000px;}
.y6c{bottom:62.100000px;}
.y6{bottom:63.180000px;}
.y24{bottom:65.370000px;}
.yb{bottom:73.110000px;}
.y6a{bottom:81.720000px;}
.y5{bottom:84.450000px;}
.y69{bottom:85.140000px;}
.y23{bottom:85.170000px;}
.yc2{bottom:86.400000px;}
.ya{bottom:92.370000px;}
.y22{bottom:104.970000px;}
.y68{bottom:105.840000px;}
.yc1{bottom:106.200000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.y128{bottom:115.020000px;}
.ya7{bottom:115.380000px;}
.ye6{bottom:121.680000px;}
.y21{bottom:124.950000px;}
.yc0{bottom:126.000000px;}
.y66{bottom:126.360000px;}
.y3{bottom:126.750000px;}
.y127{bottom:134.856000px;}
.ye5{bottom:141.516000px;}
.y20{bottom:144.750000px;}
.y116{bottom:145.656000px;}
.ybf{bottom:146.016000px;}
.y65{bottom:152.850000px;}
.y126{bottom:154.650000px;}
.ya4{bottom:155.730000px;}
.y3e{bottom:157.890000px;}
.ye4{bottom:161.310000px;}
.ybe{bottom:162.570000px;}
.y1f{bottom:164.550000px;}
.y115{bottom:165.450000px;}
.y64{bottom:172.650000px;}
.y125{bottom:174.450000px;}
.y3d{bottom:177.870000px;}
.ye3{bottom:181.290000px;}
.y1e{bottom:184.350000px;}
.y114{bottom:185.430000px;}
.y63{bottom:187.410000px;}
.y124{bottom:194.430000px;}
.ya3{bottom:196.230000px;}
.y3c{bottom:197.670000px;}
.ye2{bottom:201.090000px;}
.y1d{bottom:204.150000px;}
.y113{bottom:205.230000px;}
.y62{bottom:207.930000px;}
.y123{bottom:214.230000px;}
.y3b{bottom:217.470000px;}
.ye1{bottom:220.890000px;}
.y1c{bottom:224.130000px;}
.y112{bottom:225.030000px;}
.y61{bottom:228.630000px;}
.y122{bottom:234.030000px;}
.ya0{bottom:236.730000px;}
.y3a{bottom:237.270000px;}
.ye0{bottom:240.690000px;}
.y111{bottom:244.830000px;}
.y60{bottom:249.150000px;}
.y121{bottom:253.830000px;}
.y39{bottom:257.070000px;}
.ydf{bottom:260.490000px;}
.y110{bottom:264.630000px;}
.y5f{bottom:269.850000px;}
.y120{bottom:273.630000px;}
.y38{bottom:277.050000px;}
.yde{bottom:280.470000px;}
.y9f{bottom:282.810000px;}
.y10f{bottom:284.610000px;}
.y5e{bottom:290.370000px;}
.y11f{bottom:293.610000px;}
.y37{bottom:296.850000px;}
.ydd{bottom:300.270000px;}
.y9e{bottom:302.790000px;}
.y10e{bottom:304.410000px;}
.y5d{bottom:310.890000px;}
.y11e{bottom:313.410000px;}
.y36{bottom:316.650000px;}
.ydc{bottom:320.070000px;}
.y9d{bottom:322.590000px;}
.y10d{bottom:324.210000px;}
.y5c{bottom:331.590000px;}
.y11d{bottom:333.210000px;}
.y35{bottom:336.450000px;}
.ydb{bottom:339.870000px;}
.y9c{bottom:342.390000px;}
.y10c{bottom:344.010000px;}
.y5b{bottom:352.110000px;}
.y11c{bottom:353.010000px;}
.y34{bottom:356.250000px;}
.yda{bottom:359.670000px;}
.y95{bottom:362.190000px;}
.y10b{bottom:363.810000px;}
.y11b{bottom:372.810000px;}
.y33{bottom:376.230000px;}
.y5a{bottom:378.570000px;}
.yd9{bottom:379.695000px;}
.y94{bottom:382.035000px;}
.y10a{bottom:383.655000px;}
.y11a{bottom:392.655000px;}
.y9b{bottom:393.015000px;}
.y32{bottom:396.075000px;}
.yd8{bottom:396.255000px;}
.y59{bottom:398.415000px;}
.y93{bottom:402.015000px;}
.y109{bottom:403.635000px;}
.y119{bottom:412.635000px;}
.y9a{bottom:412.815000px;}
.y31{bottom:415.875000px;}
.y58{bottom:418.215000px;}
.y92{bottom:421.815000px;}
.y108{bottom:423.435000px;}
.y118{bottom:432.435000px;}
.y99{bottom:432.615000px;}
.y57{bottom:432.975000px;}
.y30{bottom:435.675000px;}
.ybd{bottom:438.375000px;}
.y91{bottom:441.615000px;}
.y107{bottom:443.235000px;}
.y117{bottom:452.235000px;}
.y98{bottom:452.415000px;}
.y56{bottom:453.675000px;}
.y2f{bottom:455.475000px;}
.ybc{bottom:458.175000px;}
.y90{bottom:461.415000px;}
.y106{bottom:472.035000px;}
.y97{bottom:472.215000px;}
.y55{bottom:474.195000px;}
.y2e{bottom:475.455000px;}
.ybb{bottom:477.975000px;}
.y8f{bottom:481.215000px;}
.y105{bottom:491.835000px;}
.y96{bottom:492.195000px;}
.y54{bottom:494.715000px;}
.y2d{bottom:495.255000px;}
.yba{bottom:497.955000px;}
.y8e{bottom:501.195000px;}
.y104{bottom:511.815000px;}
.y2c{bottom:515.055000px;}
.y53{bottom:515.415000px;}
.yb9{bottom:517.755000px;}
.y8d{bottom:520.995000px;}
.y103{bottom:531.615000px;}
.y2b{bottom:534.855000px;}
.y52{bottom:535.935000px;}
.yb8{bottom:537.555000px;}
.y8c{bottom:540.795000px;}
.y102{bottom:551.415000px;}
.y2a{bottom:554.655000px;}
.y50{bottom:556.455000px;}
.yb7{bottom:557.355000px;}
.y8b{bottom:560.595000px;}
.y101{bottom:571.215000px;}
.y29{bottom:574.635000px;}
.yb6{bottom:577.155000px;}
.y8a{bottom:580.395000px;}
.y4f{bottom:582.915000px;}
.y28{bottom:589.395000px;}
.y100{bottom:591.015000px;}
.yb5{bottom:597.135000px;}
.y89{bottom:600.375000px;}
.y4e{bottom:602.715000px;}
.y1b{bottom:609.915000px;}
.yff{bottom:610.995000px;}
.yb4{bottom:616.935000px;}
.y88{bottom:620.175000px;}
.y4d{bottom:622.515000px;}
.yfe{bottom:630.795000px;}
.yb3{bottom:636.765000px;}
.y87{bottom:640.005000px;}
.y4c{bottom:642.525000px;}
.yfd{bottom:650.625000px;}
.yc3{bottom:650.805000px;}
.y86{bottom:659.805000px;}
.y4b{bottom:662.325000px;}
.yfc{bottom:670.425000px;}
.y85{bottom:679.605000px;}
.y4a{bottom:682.125000px;}
.yfb{bottom:690.225000px;}
.y84{bottom:694.365000px;}
.y49{bottom:701.925000px;}
.yfa{bottom:710.205000px;}
.y83{bottom:715.065000px;}
.y48{bottom:721.725000px;}
.yd7{bottom:726.045000px;}
.yf9{bottom:730.005000px;}
.y82{bottom:735.585000px;}
.y47{bottom:741.705000px;}
.yd6{bottom:745.845000px;}
.yf8{bottom:749.805000px;}
.y81{bottom:756.285000px;}
.y46{bottom:761.505000px;}
.yd5{bottom:765.825000px;}
.yf7{bottom:769.605000px;}
.y80{bottom:776.805000px;}
.y45{bottom:781.305000px;}
.yd4{bottom:785.625000px;}
.yf6{bottom:789.405000px;}
.y7f{bottom:797.325000px;}
.yd3{bottom:800.385000px;}
.y44{bottom:801.105000px;}
.yf5{bottom:809.385000px;}
.y7e{bottom:818.025000px;}
.y43{bottom:820.905000px;}
.yf4{bottom:824.145000px;}
.y42{bottom:840.885000px;}
.y7d{bottom:844.305000px;}
.y19{bottom:848.805000px;}
.yf3{bottom:859.425000px;}
.y41{bottom:860.685000px;}
.y7c{bottom:864.105000px;}
.y40{bottom:877.245000px;}
.y18{bottom:878.145000px;}
.ycf{bottom:881.205000px;}
.y7b{bottom:884.085000px;}
.yf2{bottom:894.570000px;}
.y17{bottom:903.210000px;}
.y7a{bottom:903.930000px;}
.yce{bottom:921.750000px;}
.y16{bottom:923.190000px;}
.y79{bottom:923.730000px;}
.yf1{bottom:929.850000px;}
.y15{bottom:938.310000px;}
.y78{bottom:943.530000px;}
.y14{bottom:959.550000px;}
.ycd{bottom:962.070000px;}
.y77{bottom:963.330000px;}
.yf0{bottom:965.130000px;}
.yb2{bottom:967.110000px;}
.y13{bottom:982.950000px;}
.y76{bottom:983.310000px;}
.yb1{bottom:986.910000px;}
.yef{bottom:1000.410000px;}
.y75{bottom:1003.110000px;}
.yb0{bottom:1006.890000px;}
.ycc{bottom:1008.330000px;}
.y12{bottom:1014.810000px;}
.y74{bottom:1022.910000px;}
.yaf{bottom:1026.690000px;}
.ycb{bottom:1028.130000px;}
.yed{bottom:1035.690000px;}
.ye{bottom:1041.630000px;}
.y73{bottom:1042.710000px;}
.yae{bottom:1046.490000px;}
.yca{bottom:1047.930000px;}
.y72{bottom:1057.470000px;}
.yad{bottom:1066.290000px;}
.y1{bottom:1067.910000px;}
.yea{bottom:1070.970000px;}
.y71{bottom:1078.170000px;}
.yac{bottom:1086.090000px;}
.yc9{bottom:1087.710000px;}
.y70{bottom:1098.690000px;}
.yab{bottom:1101.030000px;}
.ye7{bottom:1106.070000px;}
.yc8{bottom:1107.510000px;}
.y6f{bottom:1119.210000px;}
.yc7{bottom:1127.310000px;}
.y6e{bottom:1139.940000px;}
.yaa{bottom:1141.380000px;}
.yc6{bottom:1147.140000px;}
.y6d{bottom:1160.460000px;}
.yc5{bottom:1167.120000px;}
.y3f{bottom:1193.580000px;}
.h3{height:2.105156px;}
.h11{height:19.800000px;}
.h16{height:19.836000px;}
.h15{height:19.980000px;}
.h18{height:20.016000px;}
.h17{height:22.320000px;}
.ha{height:22.500000px;}
.hf{height:22.860000px;}
.he{height:27.147656px;}
.h1f{height:34.380000px;}
.h21{height:34.416000px;}
.h20{height:34.560000px;}
.h1e{height:34.596000px;}
.h8{height:37.705078px;}
.h19{height:39.600000px;}
.h1b{height:39.636000px;}
.h1a{height:39.780000px;}
.h1d{height:39.816000px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h12{height:43.156758px;}
.h22{height:43.506914px;}
.h13{height:43.681992px;}
.h14{height:46.251562px;}
.hb{height:46.736719px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h9{height:58.819922px;}
.hd{height:67.565039px;}
.h2{height:140.796000px;}
.h10{height:238.170000px;}
.h1c{height:299.190000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:35.460000px;}
.w18{width:85.680000px;}
.wd{width:135.540000px;}
.w10{width:143.820000px;}
.we{width:155.370000px;}
.wf{width:155.550000px;}
.w4{width:158.940000px;}
.wc{width:161.280000px;}
.wb{width:161.310000px;}
.w15{width:164.190000px;}
.w19{width:169.770000px;}
.w12{width:171.390000px;}
.w2{width:172.830000px;}
.w11{width:173.010000px;}
.w17{width:175.170000px;}
.w16{width:177.870000px;}
.w1b{width:181.830000px;}
.w1a{width:188.670000px;}
.w8{width:200.190000px;}
.w13{width:201.810000px;}
.w3{width:464.865000px;}
.w9{width:610.170000px;}
.w14{width:679.605000px;}
.w7{width:748.950000px;}
.wa{width:810.360000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xc{left:90.180000px;}
.x1c{left:101.016000px;}
.x21{left:106.236000px;}
.xe{left:108.035987px;}
.x11{left:111.815987px;}
.x24{left:119.556000px;}
.x14{left:122.976000px;}
.x2a{left:133.056000px;}
.x7{left:140.085000px;}
.x18{left:144.396000px;}
.x2{left:160.050000px;}
.x2e{left:184.529987px;}
.x2b{left:219.090000px;}
.x3{left:221.070000px;}
.x23{left:223.419000px;}
.x1d{left:245.190000px;}
.x5{left:248.265000px;}
.xd{left:254.190000px;}
.x25{left:255.450000px;}
.x19{left:280.830000px;}
.x15{left:285.015000px;}
.x13{left:334.514987px;}
.x2c{left:389.235000px;}
.x1e{left:418.575000px;}
.x26{left:420.195000px;}
.x1a{left:437.115000px;}
.x16{left:447.015000px;}
.xf{left:473.504987px;}
.x22{left:495.609000px;}
.x29{left:500.504987px;}
.x10{left:527.504987px;}
.x2d{left:578.265000px;}
.x1f{left:590.325000px;}
.x1b{left:593.205000px;}
.x27{left:598.425000px;}
.x17{left:609.045000px;}
.x20{left:611.024987px;}
.x28{left:622.004987px;}
.x12{left:650.804987px;}
.x8{left:685.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.050667pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.097280pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.672000pt;}
.lsa{letter-spacing:5.920000pt;}
.lsf{letter-spacing:40.912640pt;}
.lse{letter-spacing:41.040640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-5.416960pt;}
._e{margin-left:-3.415040pt;}
._c{margin-left:-2.104747pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.052267pt;}
._10{width:3.451520pt;}
._f{width:4.355840pt;}
._19{width:5.658880pt;}
._12{width:7.050240pt;}
._3{width:8.480000pt;}
._16{width:9.774080pt;}
._1{width:11.040000pt;}
._15{width:12.270720pt;}
._1a{width:14.236160pt;}
._2a{width:15.457920pt;}
._20{width:17.157760pt;}
._1f{width:18.060800pt;}
._24{width:19.229440pt;}
._25{width:20.148480pt;}
._22{width:21.053440pt;}
._21{width:21.991680pt;}
._23{width:23.212160pt;}
._1b{width:26.188160pt;}
._1c{width:27.781760pt;}
._14{width:28.950400pt;}
._1d{width:29.847040pt;}
._13{width:30.862720pt;}
._2f{width:32.668800pt;}
._2e{width:34.049920pt;}
._1e{width:34.951040pt;}
._29{width:35.856000pt;}
._2d{width:37.076480pt;}
._2c{width:38.193280pt;}
._28{width:41.433600pt;}
._30{width:48.392320pt;}
._27{width:50.145280pt;}
._18{width:51.207680pt;}
._17{width:52.163840pt;}
._26{width:59.069440pt;}
._2b{width:62.203520pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:2.880000pt;}
.y2{bottom:4.800000pt;}
.y27{bottom:5.120000pt;}
.y67{bottom:5.152000pt;}
.yd2{bottom:5.160000pt;}
.y51{bottom:5.280000pt;}
.y6b{bottom:6.240000pt;}
.y10{bottom:6.400000pt;}
.y1a{bottom:7.840000pt;}
.yeb{bottom:10.400000pt;}
.yee{bottom:10.560000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.ya1{bottom:13.920000pt;}
.ya8{bottom:13.952000pt;}
.yd0{bottom:13.960000pt;}
.ya5{bottom:14.080000pt;}
.yec{bottom:18.080000pt;}
.ye8{bottom:18.240000pt;}
.yc4{bottom:19.840000pt;}
.ya2{bottom:22.720000pt;}
.ya9{bottom:22.752000pt;}
.ya6{bottom:22.880000pt;}
.y26{bottom:22.906667pt;}
.yd1{bottom:22.920000pt;}
.y7{bottom:34.560000pt;}
.y11{bottom:35.840000pt;}
.yc{bottom:39.200000pt;}
.y25{bottom:40.506667pt;}
.yf{bottom:53.280000pt;}
.y6c{bottom:55.200000pt;}
.y6{bottom:56.160000pt;}
.y24{bottom:58.106667pt;}
.yb{bottom:64.986667pt;}
.y6a{bottom:72.640000pt;}
.y5{bottom:75.066667pt;}
.y69{bottom:75.680000pt;}
.y23{bottom:75.706667pt;}
.yc2{bottom:76.800000pt;}
.ya{bottom:82.106667pt;}
.y22{bottom:93.306667pt;}
.y68{bottom:94.080000pt;}
.yc1{bottom:94.400000pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.y128{bottom:102.240000pt;}
.ya7{bottom:102.560000pt;}
.ye6{bottom:108.160000pt;}
.y21{bottom:111.066667pt;}
.yc0{bottom:112.000000pt;}
.y66{bottom:112.320000pt;}
.y3{bottom:112.666667pt;}
.y127{bottom:119.872000pt;}
.ye5{bottom:125.792000pt;}
.y20{bottom:128.666667pt;}
.y116{bottom:129.472000pt;}
.ybf{bottom:129.792000pt;}
.y65{bottom:135.866667pt;}
.y126{bottom:137.466667pt;}
.ya4{bottom:138.426667pt;}
.y3e{bottom:140.346667pt;}
.ye4{bottom:143.386667pt;}
.ybe{bottom:144.506667pt;}
.y1f{bottom:146.266667pt;}
.y115{bottom:147.066667pt;}
.y64{bottom:153.466667pt;}
.y125{bottom:155.066667pt;}
.y3d{bottom:158.106667pt;}
.ye3{bottom:161.146667pt;}
.y1e{bottom:163.866667pt;}
.y114{bottom:164.826667pt;}
.y63{bottom:166.586667pt;}
.y124{bottom:172.826667pt;}
.ya3{bottom:174.426667pt;}
.y3c{bottom:175.706667pt;}
.ye2{bottom:178.746667pt;}
.y1d{bottom:181.466667pt;}
.y113{bottom:182.426667pt;}
.y62{bottom:184.826667pt;}
.y123{bottom:190.426667pt;}
.y3b{bottom:193.306667pt;}
.ye1{bottom:196.346667pt;}
.y1c{bottom:199.226667pt;}
.y112{bottom:200.026667pt;}
.y61{bottom:203.226667pt;}
.y122{bottom:208.026667pt;}
.ya0{bottom:210.426667pt;}
.y3a{bottom:210.906667pt;}
.ye0{bottom:213.946667pt;}
.y111{bottom:217.626667pt;}
.y60{bottom:221.466667pt;}
.y121{bottom:225.626667pt;}
.y39{bottom:228.506667pt;}
.ydf{bottom:231.546667pt;}
.y110{bottom:235.226667pt;}
.y5f{bottom:239.866667pt;}
.y120{bottom:243.226667pt;}
.y38{bottom:246.266667pt;}
.yde{bottom:249.306667pt;}
.y9f{bottom:251.386667pt;}
.y10f{bottom:252.986667pt;}
.y5e{bottom:258.106667pt;}
.y11f{bottom:260.986667pt;}
.y37{bottom:263.866667pt;}
.ydd{bottom:266.906667pt;}
.y9e{bottom:269.146667pt;}
.y10e{bottom:270.586667pt;}
.y5d{bottom:276.346667pt;}
.y11e{bottom:278.586667pt;}
.y36{bottom:281.466667pt;}
.ydc{bottom:284.506667pt;}
.y9d{bottom:286.746667pt;}
.y10d{bottom:288.186667pt;}
.y5c{bottom:294.746667pt;}
.y11d{bottom:296.186667pt;}
.y35{bottom:299.066667pt;}
.ydb{bottom:302.106667pt;}
.y9c{bottom:304.346667pt;}
.y10c{bottom:305.786667pt;}
.y5b{bottom:312.986667pt;}
.y11c{bottom:313.786667pt;}
.y34{bottom:316.666667pt;}
.yda{bottom:319.706667pt;}
.y95{bottom:321.946667pt;}
.y10b{bottom:323.386667pt;}
.y11b{bottom:331.386667pt;}
.y33{bottom:334.426667pt;}
.y5a{bottom:336.506667pt;}
.yd9{bottom:337.506667pt;}
.y94{bottom:339.586667pt;}
.y10a{bottom:341.026667pt;}
.y11a{bottom:349.026667pt;}
.y9b{bottom:349.346667pt;}
.y32{bottom:352.066667pt;}
.yd8{bottom:352.226667pt;}
.y59{bottom:354.146667pt;}
.y93{bottom:357.346667pt;}
.y109{bottom:358.786667pt;}
.y119{bottom:366.786667pt;}
.y9a{bottom:366.946667pt;}
.y31{bottom:369.666667pt;}
.y58{bottom:371.746667pt;}
.y92{bottom:374.946667pt;}
.y108{bottom:376.386667pt;}
.y118{bottom:384.386667pt;}
.y99{bottom:384.546667pt;}
.y57{bottom:384.866667pt;}
.y30{bottom:387.266667pt;}
.ybd{bottom:389.666667pt;}
.y91{bottom:392.546667pt;}
.y107{bottom:393.986667pt;}
.y117{bottom:401.986667pt;}
.y98{bottom:402.146667pt;}
.y56{bottom:403.266667pt;}
.y2f{bottom:404.866667pt;}
.ybc{bottom:407.266667pt;}
.y90{bottom:410.146667pt;}
.y106{bottom:419.586667pt;}
.y97{bottom:419.746667pt;}
.y55{bottom:421.506667pt;}
.y2e{bottom:422.626667pt;}
.ybb{bottom:424.866667pt;}
.y8f{bottom:427.746667pt;}
.y105{bottom:437.186667pt;}
.y96{bottom:437.506667pt;}
.y54{bottom:439.746667pt;}
.y2d{bottom:440.226667pt;}
.yba{bottom:442.626667pt;}
.y8e{bottom:445.506667pt;}
.y104{bottom:454.946667pt;}
.y2c{bottom:457.826667pt;}
.y53{bottom:458.146667pt;}
.yb9{bottom:460.226667pt;}
.y8d{bottom:463.106667pt;}
.y103{bottom:472.546667pt;}
.y2b{bottom:475.426667pt;}
.y52{bottom:476.386667pt;}
.yb8{bottom:477.826667pt;}
.y8c{bottom:480.706667pt;}
.y102{bottom:490.146667pt;}
.y2a{bottom:493.026667pt;}
.y50{bottom:494.626667pt;}
.yb7{bottom:495.426667pt;}
.y8b{bottom:498.306667pt;}
.y101{bottom:507.746667pt;}
.y29{bottom:510.786667pt;}
.yb6{bottom:513.026667pt;}
.y8a{bottom:515.906667pt;}
.y4f{bottom:518.146667pt;}
.y28{bottom:523.906667pt;}
.y100{bottom:525.346667pt;}
.yb5{bottom:530.786667pt;}
.y89{bottom:533.666667pt;}
.y4e{bottom:535.746667pt;}
.y1b{bottom:542.146667pt;}
.yff{bottom:543.106667pt;}
.yb4{bottom:548.386667pt;}
.y88{bottom:551.266667pt;}
.y4d{bottom:553.346667pt;}
.yfe{bottom:560.706667pt;}
.yb3{bottom:566.013333pt;}
.y87{bottom:568.893333pt;}
.y4c{bottom:571.133333pt;}
.yfd{bottom:578.333333pt;}
.yc3{bottom:578.493333pt;}
.y86{bottom:586.493333pt;}
.y4b{bottom:588.733333pt;}
.yfc{bottom:595.933333pt;}
.y85{bottom:604.093333pt;}
.y4a{bottom:606.333333pt;}
.yfb{bottom:613.533333pt;}
.y84{bottom:617.213333pt;}
.y49{bottom:623.933333pt;}
.yfa{bottom:631.293333pt;}
.y83{bottom:635.613333pt;}
.y48{bottom:641.533333pt;}
.yd7{bottom:645.373333pt;}
.yf9{bottom:648.893333pt;}
.y82{bottom:653.853333pt;}
.y47{bottom:659.293333pt;}
.yd6{bottom:662.973333pt;}
.yf8{bottom:666.493333pt;}
.y81{bottom:672.253333pt;}
.y46{bottom:676.893333pt;}
.yd5{bottom:680.733333pt;}
.yf7{bottom:684.093333pt;}
.y80{bottom:690.493333pt;}
.y45{bottom:694.493333pt;}
.yd4{bottom:698.333333pt;}
.yf6{bottom:701.693333pt;}
.y7f{bottom:708.733333pt;}
.yd3{bottom:711.453333pt;}
.y44{bottom:712.093333pt;}
.yf5{bottom:719.453333pt;}
.y7e{bottom:727.133333pt;}
.y43{bottom:729.693333pt;}
.yf4{bottom:732.573333pt;}
.y42{bottom:747.453333pt;}
.y7d{bottom:750.493333pt;}
.y19{bottom:754.493333pt;}
.yf3{bottom:763.933333pt;}
.y41{bottom:765.053333pt;}
.y7c{bottom:768.093333pt;}
.y40{bottom:779.773333pt;}
.y18{bottom:780.573333pt;}
.ycf{bottom:783.293333pt;}
.y7b{bottom:785.853333pt;}
.yf2{bottom:795.173333pt;}
.y17{bottom:802.853333pt;}
.y7a{bottom:803.493333pt;}
.yce{bottom:819.333333pt;}
.y16{bottom:820.613333pt;}
.y79{bottom:821.093333pt;}
.yf1{bottom:826.533333pt;}
.y15{bottom:834.053333pt;}
.y78{bottom:838.693333pt;}
.y14{bottom:852.933333pt;}
.ycd{bottom:855.173333pt;}
.y77{bottom:856.293333pt;}
.yf0{bottom:857.893333pt;}
.yb2{bottom:859.653333pt;}
.y13{bottom:873.733333pt;}
.y76{bottom:874.053333pt;}
.yb1{bottom:877.253333pt;}
.yef{bottom:889.253333pt;}
.y75{bottom:891.653333pt;}
.yb0{bottom:895.013333pt;}
.ycc{bottom:896.293333pt;}
.y12{bottom:902.053333pt;}
.y74{bottom:909.253333pt;}
.yaf{bottom:912.613333pt;}
.ycb{bottom:913.893333pt;}
.yed{bottom:920.613333pt;}
.ye{bottom:925.893333pt;}
.y73{bottom:926.853333pt;}
.yae{bottom:930.213333pt;}
.yca{bottom:931.493333pt;}
.y72{bottom:939.973333pt;}
.yad{bottom:947.813333pt;}
.y1{bottom:949.253333pt;}
.yea{bottom:951.973333pt;}
.y71{bottom:958.373333pt;}
.yac{bottom:965.413333pt;}
.yc9{bottom:966.853333pt;}
.y70{bottom:976.613333pt;}
.yab{bottom:978.693333pt;}
.ye7{bottom:983.173333pt;}
.yc8{bottom:984.453333pt;}
.y6f{bottom:994.853333pt;}
.yc7{bottom:1002.053333pt;}
.y6e{bottom:1013.280000pt;}
.yaa{bottom:1014.560000pt;}
.yc6{bottom:1019.680000pt;}
.y6d{bottom:1031.520000pt;}
.yc5{bottom:1037.440000pt;}
.y3f{bottom:1060.960000pt;}
.h3{height:1.871250pt;}
.h11{height:17.600000pt;}
.h16{height:17.632000pt;}
.h15{height:17.760000pt;}
.h18{height:17.792000pt;}
.h17{height:19.840000pt;}
.ha{height:20.000000pt;}
.hf{height:20.320000pt;}
.he{height:24.131250pt;}
.h1f{height:30.560000pt;}
.h21{height:30.592000pt;}
.h20{height:30.720000pt;}
.h1e{height:30.752000pt;}
.h8{height:33.515625pt;}
.h19{height:35.200000pt;}
.h1b{height:35.232000pt;}
.h1a{height:35.360000pt;}
.h1d{height:35.392000pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h12{height:38.361562pt;}
.h22{height:38.672812pt;}
.h13{height:38.828437pt;}
.h14{height:41.112500pt;}
.hb{height:41.543750pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h9{height:52.284375pt;}
.hd{height:60.057813pt;}
.h2{height:125.152000pt;}
.h10{height:211.706667pt;}
.h1c{height:265.946667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:31.520000pt;}
.w18{width:76.160000pt;}
.wd{width:120.480000pt;}
.w10{width:127.840000pt;}
.we{width:138.106667pt;}
.wf{width:138.266667pt;}
.w4{width:141.280000pt;}
.wc{width:143.360000pt;}
.wb{width:143.386667pt;}
.w15{width:145.946667pt;}
.w19{width:150.906667pt;}
.w12{width:152.346667pt;}
.w2{width:153.626667pt;}
.w11{width:153.786667pt;}
.w17{width:155.706667pt;}
.w16{width:158.106667pt;}
.w1b{width:161.626667pt;}
.w1a{width:167.706667pt;}
.w8{width:177.946667pt;}
.w13{width:179.386667pt;}
.w3{width:413.213333pt;}
.w9{width:542.373333pt;}
.w14{width:604.093333pt;}
.w7{width:665.733333pt;}
.wa{width:720.320000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xc{left:80.160000pt;}
.x1c{left:89.792000pt;}
.x21{left:94.432000pt;}
.xe{left:96.031988pt;}
.x11{left:99.391988pt;}
.x24{left:106.272000pt;}
.x14{left:109.312000pt;}
.x2a{left:118.272000pt;}
.x7{left:124.520000pt;}
.x18{left:128.352000pt;}
.x2{left:142.266667pt;}
.x2e{left:164.026655pt;}
.x2b{left:194.746667pt;}
.x3{left:196.506667pt;}
.x23{left:198.594667pt;}
.x1d{left:217.946667pt;}
.x5{left:220.680000pt;}
.xd{left:225.946667pt;}
.x25{left:227.066667pt;}
.x19{left:249.626667pt;}
.x15{left:253.346667pt;}
.x13{left:297.346655pt;}
.x2c{left:345.986667pt;}
.x1e{left:372.066667pt;}
.x26{left:373.506667pt;}
.x1a{left:388.546667pt;}
.x16{left:397.346667pt;}
.xf{left:420.893322pt;}
.x22{left:440.541333pt;}
.x29{left:444.893322pt;}
.x10{left:468.893322pt;}
.x2d{left:514.013333pt;}
.x1f{left:524.733333pt;}
.x1b{left:527.293333pt;}
.x27{left:531.933333pt;}
.x17{left:541.373333pt;}
.x20{left:543.133322pt;}
.x28{left:552.893322pt;}
.x12{left:578.493322pt;}
.x8{left:609.733333pt;}
}




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