
    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_60b8ae8168d53c9f79bab13b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_69e0a07f36a79ab95f1da631.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_a150f4e378a07b2496218d3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d8e4821f5a234e6e17bfd433.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_fa697dfbe24cfc819860e520.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_4edb83815528da52691931bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_e3c641d54baa04e056e3c541.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_7afa512c23918d5d6ada8aa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-82.980000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.512000px;}
.lsa{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls11{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.944000px;}
.lse{letter-spacing:352.056000px;}
.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;}
}
.ws8{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.254600px;}
.wse{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.146400px;}
.ws2{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-2.934000px;}
._7{margin-left:-1.179360px;}
._0{width:1.209360px;}
._3{width:2.259840px;}
._d{width:3.539760px;}
._4{width:4.780800px;}
._5{width:5.810640px;}
._6{width:7.025040px;}
._9{width:8.605440px;}
._10{width:9.810480px;}
._a{width:10.816560px;}
._b{width:11.893680px;}
._8{width:13.147200px;}
._13{width:14.299440px;}
._e{width:16.121040px;}
._c{width:17.509680px;}
._1{width:19.081440px;}
._2{width:20.856240px;}
._1a{width:21.888000px;}
._1b{width:22.947120px;}
._15{width:23.976000px;}
._16{width:25.124640px;}
._18{width:26.210640px;}
._17{width:27.375360px;}
._20{width:29.352000px;}
._19{width:30.648000px;}
._14{width:32.184000px;}
._11{width:33.192000px;}
._12{width:34.272000px;}
._27{width:35.309280px;}
._1d{width:36.980640px;}
._1c{width:38.043360px;}
._25{width:39.744000px;}
._23{width:40.752000px;}
._24{width:41.760000px;}
._26{width:44.712000px;}
._28{width:46.601280px;}
._22{width:47.835360px;}
._21{width:49.104000px;}
._1e{width:60.696000px;}
._1f{width:61.848000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.780000px;}
.yd2{bottom:3.945000px;}
.yd0{bottom:4.125000px;}
.yf3{bottom:13.485000px;}
.y33{bottom:20.880000px;}
.y63{bottom:66.600000px;}
.y5{bottom:67.500000px;}
.y36{bottom:77.220000px;}
.y4{bottom:84.780000px;}
.y3{bottom:101.880000px;}
.ya4{bottom:114.480000px;}
.y2{bottom:119.160000px;}
.y62{bottom:123.480000px;}
.yfe{bottom:124.920000px;}
.yb6{bottom:126.180000px;}
.y114{bottom:128.880000px;}
.ya3{bottom:135.180000px;}
.y61{bottom:144.216000px;}
.ydb{bottom:145.476000px;}
.yfd{bottom:145.656000px;}
.yb5{bottom:146.916000px;}
.y113{bottom:149.616000px;}
.ya2{bottom:155.910000px;}
.y60{bottom:164.910000px;}
.yda{bottom:166.170000px;}
.yfc{bottom:166.350000px;}
.y112{bottom:170.310000px;}
.y31{bottom:173.190000px;}
.ya1{bottom:176.610000px;}
.y5f{bottom:185.610000px;}
.yd9{bottom:186.870000px;}
.yfb{bottom:187.050000px;}
.y111{bottom:191.010000px;}
.y76{bottom:193.710000px;}
.y30{bottom:193.890000px;}
.ya0{bottom:197.310000px;}
.y5e{bottom:206.310000px;}
.yd8{bottom:207.570000px;}
.yfa{bottom:207.750000px;}
.y110{bottom:211.710000px;}
.y75{bottom:214.410000px;}
.y2f{bottom:214.590000px;}
.y9f{bottom:218.010000px;}
.ybf{bottom:227.010000px;}
.yd7{bottom:228.270000px;}
.yf9{bottom:228.450000px;}
.y74{bottom:235.110000px;}
.y2e{bottom:235.290000px;}
.y5d{bottom:236.010000px;}
.y9e{bottom:238.710000px;}
.ybe{bottom:247.710000px;}
.yd6{bottom:248.970000px;}
.yf8{bottom:249.150000px;}
.y10f{bottom:250.050000px;}
.y73{bottom:255.810000px;}
.y2d{bottom:255.990000px;}
.y5c{bottom:256.710000px;}
.y9d{bottom:259.410000px;}
.ybd{bottom:268.410000px;}
.yf7{bottom:269.850000px;}
.y2c{bottom:276.690000px;}
.y5b{bottom:277.410000px;}
.yd5{bottom:278.670000px;}
.y9c{bottom:280.110000px;}
.ybc{bottom:289.110000px;}
.yf6{bottom:290.550000px;}
.y72{bottom:294.150000px;}
.yd4{bottom:295.605000px;}
.y2b{bottom:297.390000px;}
.y5a{bottom:298.110000px;}
.y9b{bottom:300.810000px;}
.ybb{bottom:309.810000px;}
.yd3{bottom:314.505000px;}
.y2a{bottom:318.090000px;}
.y59{bottom:318.810000px;}
.yf5{bottom:320.250000px;}
.yb4{bottom:321.510000px;}
.y9a{bottom:330.510000px;}
.y71{bottom:333.210000px;}
.yd1{bottom:333.585000px;}
.yf4{bottom:337.185000px;}
.y29{bottom:338.790000px;}
.y10e{bottom:339.150000px;}
.y58{bottom:339.510000px;}
.yb3{bottom:342.210000px;}
.y99{bottom:351.210000px;}
.y12e{bottom:352.110000px;}
.ycf{bottom:353.205000px;}
.y70{bottom:353.910000px;}
.y28{bottom:359.490000px;}
.y57{bottom:360.210000px;}
.yb2{bottom:362.910000px;}
.yf2{bottom:367.605000px;}
.y10d{bottom:369.210000px;}
.y98{bottom:371.910000px;}
.y12d{bottom:372.810000px;}
.y27{bottom:380.190000px;}
.y56{bottom:380.910000px;}
.y6f{bottom:383.610000px;}
.y10c{bottom:389.910000px;}
.y97{bottom:392.655000px;}
.y12c{bottom:393.555000px;}
.yba{bottom:397.155000px;}
.y55{bottom:401.655000px;}
.y6e{bottom:404.355000px;}
.yce{bottom:407.235000px;}
.y10b{bottom:410.655000px;}
.yf1{bottom:411.555000px;}
.y96{bottom:413.355000px;}
.y12b{bottom:414.255000px;}
.y26{bottom:418.575000px;}
.y54{bottom:422.355000px;}
.y6d{bottom:425.055000px;}
.ycd{bottom:427.935000px;}
.y10a{bottom:431.355000px;}
.yf0{bottom:432.255000px;}
.y95{bottom:434.055000px;}
.y12a{bottom:434.955000px;}
.y53{bottom:443.055000px;}
.y6c{bottom:445.755000px;}
.ycc{bottom:448.635000px;}
.y109{bottom:452.055000px;}
.y94{bottom:454.755000px;}
.y129{bottom:455.655000px;}
.y25{bottom:456.915000px;}
.yef{bottom:461.955000px;}
.y52{bottom:463.755000px;}
.ycb{bottom:469.335000px;}
.y108{bottom:472.755000px;}
.y24{bottom:474.195000px;}
.y6b{bottom:475.455000px;}
.y128{bottom:476.355000px;}
.yee{bottom:482.655000px;}
.y51{bottom:484.455000px;}
.yca{bottom:490.035000px;}
.y93{bottom:493.095000px;}
.y107{bottom:493.455000px;}
.y6a{bottom:496.155000px;}
.y127{bottom:497.055000px;}
.y23{bottom:500.475000px;}
.yed{bottom:503.355000px;}
.y50{bottom:505.155000px;}
.yc9{bottom:510.735000px;}
.y106{bottom:514.155000px;}
.y22{bottom:517.575000px;}
.y126{bottom:517.755000px;}
.yec{bottom:524.055000px;}
.y4f{bottom:525.855000px;}
.yc8{bottom:531.435000px;}
.y92{bottom:532.155000px;}
.yb1{bottom:534.495000px;}
.y21{bottom:534.855000px;}
.y125{bottom:538.455000px;}
.yeb{bottom:544.755000px;}
.y4e{bottom:546.555000px;}
.y20{bottom:552.135000px;}
.y91{bottom:552.855000px;}
.y105{bottom:555.555000px;}
.y124{bottom:559.155000px;}
.yea{bottom:565.455000px;}
.y4d{bottom:567.255000px;}
.y1f{bottom:569.415000px;}
.yc7{bottom:572.835000px;}
.yb0{bottom:573.195000px;}
.y90{bottom:573.555000px;}
.y69{bottom:576.255000px;}
.y123{bottom:579.855000px;}
.y104{bottom:585.255000px;}
.ye9{bottom:586.155000px;}
.y1e{bottom:586.695000px;}
.yc6{bottom:593.535000px;}
.y8f{bottom:594.255000px;}
.y68{bottom:596.955000px;}
.y122{bottom:600.555000px;}
.y1d{bottom:603.975000px;}
.y4c{bottom:605.595000px;}
.y103{bottom:605.955000px;}
.ye8{bottom:606.855000px;}
.yaf{bottom:612.255000px;}
.yc5{bottom:614.235000px;}
.y8e{bottom:614.955000px;}
.y67{bottom:617.655000px;}
.y1c{bottom:621.075000px;}
.y121{bottom:621.255000px;}
.y102{bottom:626.655000px;}
.ye7{bottom:627.555000px;}
.yae{bottom:632.955000px;}
.y8d{bottom:635.655000px;}
.y1b{bottom:638.355000px;}
.y120{bottom:641.985000px;}
.yc4{bottom:643.605000px;}
.y4b{bottom:644.685000px;}
.y101{bottom:647.385000px;}
.yad{bottom:653.685000px;}
.y1a{bottom:655.665000px;}
.y8c{bottom:656.385000px;}
.y66{bottom:659.085000px;}
.y11f{bottom:662.685000px;}
.yc3{bottom:664.665000px;}
.y4a{bottom:665.385000px;}
.ye6{bottom:665.925000px;}
.y100{bottom:668.085000px;}
.yac{bottom:674.385000px;}
.y8b{bottom:677.085000px;}
.y19{bottom:682.305000px;}
.y11e{bottom:683.385000px;}
.yc2{bottom:685.365000px;}
.y49{bottom:686.085000px;}
.yab{bottom:695.085000px;}
.y65{bottom:697.425000px;}
.y8a{bottom:697.785000px;}
.y11d{bottom:704.085000px;}
.ye5{bottom:704.985000px;}
.yc1{bottom:706.065000px;}
.y48{bottom:706.785000px;}
.yaa{bottom:715.785000px;}
.y89{bottom:718.485000px;}
.y18{bottom:720.645000px;}
.yc0{bottom:722.445000px;}
.y11c{bottom:724.785000px;}
.ye4{bottom:725.685000px;}
.y47{bottom:727.485000px;}
.y64{bottom:736.485000px;}
.y17{bottom:737.925000px;}
.y88{bottom:739.185000px;}
.y11b{bottom:745.485000px;}
.ye3{bottom:746.385000px;}
.y46{bottom:757.185000px;}
.y87{bottom:759.885000px;}
.y16{bottom:764.025000px;}
.y11a{bottom:766.185000px;}
.ye2{bottom:767.085000px;}
.y45{bottom:777.885000px;}
.y86{bottom:780.585000px;}
.y15{bottom:781.305000px;}
.y119{bottom:786.885000px;}
.ye1{bottom:787.785000px;}
.y14{bottom:798.585000px;}
.y85{bottom:801.285000px;}
.y118{bottom:807.585000px;}
.ye0{bottom:808.485000px;}
.y13{bottom:815.865000px;}
.y44{bottom:819.285000px;}
.y84{bottom:821.985000px;}
.y117{bottom:828.285000px;}
.ydf{bottom:829.185000px;}
.y12{bottom:833.145000px;}
.y43{bottom:839.985000px;}
.y83{bottom:842.685000px;}
.y116{bottom:848.985000px;}
.y11{bottom:850.425000px;}
.yde{bottom:858.885000px;}
.y42{bottom:860.685000px;}
.y82{bottom:863.385000px;}
.y10{bottom:867.525000px;}
.yb9{bottom:869.325000px;}
.y115{bottom:869.685000px;}
.ydd{bottom:879.585000px;}
.y41{bottom:881.385000px;}
.y81{bottom:884.085000px;}
.yf{bottom:884.805000px;}
.yb8{bottom:890.430000px;}
.ye{bottom:902.130000px;}
.y80{bottom:904.830000px;}
.ydc{bottom:905.010000px;}
.yb7{bottom:911.130000px;}
.yd{bottom:919.410000px;}
.y40{bottom:922.830000px;}
.y7f{bottom:925.530000px;}
.ya9{bottom:931.830000px;}
.y3f{bottom:943.530000px;}
.yc{bottom:946.050000px;}
.y7e{bottom:946.230000px;}
.ya8{bottom:952.530000px;}
.y3e{bottom:964.230000px;}
.y7d{bottom:966.930000px;}
.ya7{bottom:973.230000px;}
.y3d{bottom:984.930000px;}
.y7c{bottom:987.630000px;}
.yb{bottom:991.950000px;}
.ya6{bottom:993.930000px;}
.yff{bottom:996.630000px;}
.y3c{bottom:1005.630000px;}
.ya5{bottom:1014.630000px;}
.ya{bottom:1014.810000px;}
.y7b{bottom:1017.330000px;}
.y3b{bottom:1035.330000px;}
.y7a{bottom:1038.030000px;}
.y9{bottom:1053.150000px;}
.y3a{bottom:1056.030000px;}
.y79{bottom:1058.730000px;}
.y8{bottom:1073.850000px;}
.y39{bottom:1076.730000px;}
.y78{bottom:1079.430000px;}
.y38{bottom:1097.430000px;}
.y7{bottom:1113.090000px;}
.y77{bottom:1117.770000px;}
.y37{bottom:1118.130000px;}
.y6{bottom:1137.210000px;}
.y35{bottom:1147.860000px;}
.y32{bottom:1164.780000px;}
.y1{bottom:1182.960000px;}
.h10{height:18.885000px;}
.he{height:19.065000px;}
.h14{height:29.685000px;}
.h12{height:29.721000px;}
.hb{height:34.380000px;}
.h7{height:47.344922px;}
.h9{height:53.573906px;}
.hc{height:55.503491px;}
.h3{height:58.651172px;}
.h8{height:60.226875px;}
.hd{height:64.546875px;}
.h11{height:64.978594px;}
.hf{height:65.010937px;}
.h13{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:74.704922px;}
.ha{height:74.953125px;}
.h4{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:39.960000px;}
.w2{width:40.311000px;}
.w7{width:58.320000px;}
.wa{width:59.385000px;}
.w8{width:74.016000px;}
.w6{width:97.941000px;}
.we{width:107.985000px;}
.wb{width:107.991000px;}
.wc{width:108.021000px;}
.wf{width:108.210000px;}
.wd{width:108.216000px;}
.w9{width:135.381000px;}
.w3{width:614.115000px;}
.w4{width:614.295000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.631000px;}
.x21{left:15.300000px;}
.x1e{left:18.900000px;}
.x1f{left:22.530000px;}
.x10{left:23.760000px;}
.x23{left:25.560000px;}
.x2e{left:29.865000px;}
.x22{left:32.790000px;}
.x2c{left:37.440000px;}
.x31{left:39.960000px;}
.x2a{left:41.070000px;}
.x20{left:53.265000px;}
.xa{left:119.025000px;}
.x1{left:127.656000px;}
.x17{left:131.436000px;}
.x4{left:132.876000px;}
.x2{left:136.116000px;}
.x25{left:158.070000px;}
.xc{left:160.065000px;}
.x32{left:161.670000px;}
.x27{left:166.170000px;}
.x8{left:170.130000px;}
.x26{left:172.470000px;}
.x13{left:182.370000px;}
.x29{left:227.565000px;}
.x19{left:234.045000px;}
.x6{left:245.595000px;}
.x7{left:255.495000px;}
.xd{left:281.190000px;}
.x28{left:298.335000px;}
.x3{left:330.195000px;}
.x1a{left:331.995000px;}
.x2b{left:335.595000px;}
.x1b{left:390.315000px;}
.x14{left:391.575000px;}
.x5{left:411.405000px;}
.x9{left:413.205000px;}
.x18{left:433.545000px;}
.x2d{left:443.820000px;}
.x1c{left:464.340000px;}
.x15{left:467.925000px;}
.x2f{left:551.820000px;}
.x24{left:577.230000px;}
.x1d{left:599.730000px;}
.xe{left:606.165000px;}
.x30{left:659.850000px;}
.xf{left:734.220000px;}
.x11{left:765.720000px;}
.x16{left:766.800000px;}
.x12{left:774.000000px;}
@media print{
.v3{vertical-align:-73.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.344000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls1{letter-spacing:9.728000pt;}
.lse{letter-spacing:312.938667pt;}
.ws8{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.448533pt;}
.wse{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.463467pt;}
.ws2{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-2.608000pt;}
._7{margin-left:-1.048320pt;}
._0{width:1.074987pt;}
._3{width:2.008747pt;}
._d{width:3.146453pt;}
._4{width:4.249600pt;}
._5{width:5.165013pt;}
._6{width:6.244480pt;}
._9{width:7.649280pt;}
._10{width:8.720427pt;}
._a{width:9.614720pt;}
._b{width:10.572160pt;}
._8{width:11.686400pt;}
._13{width:12.710613pt;}
._e{width:14.329813pt;}
._c{width:15.564160pt;}
._1{width:16.961280pt;}
._2{width:18.538880pt;}
._1a{width:19.456000pt;}
._1b{width:20.397440pt;}
._15{width:21.312000pt;}
._16{width:22.333013pt;}
._18{width:23.298347pt;}
._17{width:24.333653pt;}
._20{width:26.090667pt;}
._19{width:27.242667pt;}
._14{width:28.608000pt;}
._11{width:29.504000pt;}
._12{width:30.464000pt;}
._27{width:31.386027pt;}
._1d{width:32.871680pt;}
._1c{width:33.816320pt;}
._25{width:35.328000pt;}
._23{width:36.224000pt;}
._24{width:37.120000pt;}
._26{width:39.744000pt;}
._28{width:41.423360pt;}
._22{width:42.520320pt;}
._21{width:43.648000pt;}
._1e{width:53.952000pt;}
._1f{width:54.976000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.360000pt;}
.yd2{bottom:3.506667pt;}
.yd0{bottom:3.666667pt;}
.yf3{bottom:11.986667pt;}
.y33{bottom:18.560000pt;}
.y63{bottom:59.200000pt;}
.y5{bottom:60.000000pt;}
.y36{bottom:68.640000pt;}
.y4{bottom:75.360000pt;}
.y3{bottom:90.560000pt;}
.ya4{bottom:101.760000pt;}
.y2{bottom:105.920000pt;}
.y62{bottom:109.760000pt;}
.yfe{bottom:111.040000pt;}
.yb6{bottom:112.160000pt;}
.y114{bottom:114.560000pt;}
.ya3{bottom:120.160000pt;}
.y61{bottom:128.192000pt;}
.ydb{bottom:129.312000pt;}
.yfd{bottom:129.472000pt;}
.yb5{bottom:130.592000pt;}
.y113{bottom:132.992000pt;}
.ya2{bottom:138.586667pt;}
.y60{bottom:146.586667pt;}
.yda{bottom:147.706667pt;}
.yfc{bottom:147.866667pt;}
.y112{bottom:151.386667pt;}
.y31{bottom:153.946667pt;}
.ya1{bottom:156.986667pt;}
.y5f{bottom:164.986667pt;}
.yd9{bottom:166.106667pt;}
.yfb{bottom:166.266667pt;}
.y111{bottom:169.786667pt;}
.y76{bottom:172.186667pt;}
.y30{bottom:172.346667pt;}
.ya0{bottom:175.386667pt;}
.y5e{bottom:183.386667pt;}
.yd8{bottom:184.506667pt;}
.yfa{bottom:184.666667pt;}
.y110{bottom:188.186667pt;}
.y75{bottom:190.586667pt;}
.y2f{bottom:190.746667pt;}
.y9f{bottom:193.786667pt;}
.ybf{bottom:201.786667pt;}
.yd7{bottom:202.906667pt;}
.yf9{bottom:203.066667pt;}
.y74{bottom:208.986667pt;}
.y2e{bottom:209.146667pt;}
.y5d{bottom:209.786667pt;}
.y9e{bottom:212.186667pt;}
.ybe{bottom:220.186667pt;}
.yd6{bottom:221.306667pt;}
.yf8{bottom:221.466667pt;}
.y10f{bottom:222.266667pt;}
.y73{bottom:227.386667pt;}
.y2d{bottom:227.546667pt;}
.y5c{bottom:228.186667pt;}
.y9d{bottom:230.586667pt;}
.ybd{bottom:238.586667pt;}
.yf7{bottom:239.866667pt;}
.y2c{bottom:245.946667pt;}
.y5b{bottom:246.586667pt;}
.yd5{bottom:247.706667pt;}
.y9c{bottom:248.986667pt;}
.ybc{bottom:256.986667pt;}
.yf6{bottom:258.266667pt;}
.y72{bottom:261.466667pt;}
.yd4{bottom:262.760000pt;}
.y2b{bottom:264.346667pt;}
.y5a{bottom:264.986667pt;}
.y9b{bottom:267.386667pt;}
.ybb{bottom:275.386667pt;}
.yd3{bottom:279.560000pt;}
.y2a{bottom:282.746667pt;}
.y59{bottom:283.386667pt;}
.yf5{bottom:284.666667pt;}
.yb4{bottom:285.786667pt;}
.y9a{bottom:293.786667pt;}
.y71{bottom:296.186667pt;}
.yd1{bottom:296.520000pt;}
.yf4{bottom:299.720000pt;}
.y29{bottom:301.146667pt;}
.y10e{bottom:301.466667pt;}
.y58{bottom:301.786667pt;}
.yb3{bottom:304.186667pt;}
.y99{bottom:312.186667pt;}
.y12e{bottom:312.986667pt;}
.ycf{bottom:313.960000pt;}
.y70{bottom:314.586667pt;}
.y28{bottom:319.546667pt;}
.y57{bottom:320.186667pt;}
.yb2{bottom:322.586667pt;}
.yf2{bottom:326.760000pt;}
.y10d{bottom:328.186667pt;}
.y98{bottom:330.586667pt;}
.y12d{bottom:331.386667pt;}
.y27{bottom:337.946667pt;}
.y56{bottom:338.586667pt;}
.y6f{bottom:340.986667pt;}
.y10c{bottom:346.586667pt;}
.y97{bottom:349.026667pt;}
.y12c{bottom:349.826667pt;}
.yba{bottom:353.026667pt;}
.y55{bottom:357.026667pt;}
.y6e{bottom:359.426667pt;}
.yce{bottom:361.986667pt;}
.y10b{bottom:365.026667pt;}
.yf1{bottom:365.826667pt;}
.y96{bottom:367.426667pt;}
.y12b{bottom:368.226667pt;}
.y26{bottom:372.066667pt;}
.y54{bottom:375.426667pt;}
.y6d{bottom:377.826667pt;}
.ycd{bottom:380.386667pt;}
.y10a{bottom:383.426667pt;}
.yf0{bottom:384.226667pt;}
.y95{bottom:385.826667pt;}
.y12a{bottom:386.626667pt;}
.y53{bottom:393.826667pt;}
.y6c{bottom:396.226667pt;}
.ycc{bottom:398.786667pt;}
.y109{bottom:401.826667pt;}
.y94{bottom:404.226667pt;}
.y129{bottom:405.026667pt;}
.y25{bottom:406.146667pt;}
.yef{bottom:410.626667pt;}
.y52{bottom:412.226667pt;}
.ycb{bottom:417.186667pt;}
.y108{bottom:420.226667pt;}
.y24{bottom:421.506667pt;}
.y6b{bottom:422.626667pt;}
.y128{bottom:423.426667pt;}
.yee{bottom:429.026667pt;}
.y51{bottom:430.626667pt;}
.yca{bottom:435.586667pt;}
.y93{bottom:438.306667pt;}
.y107{bottom:438.626667pt;}
.y6a{bottom:441.026667pt;}
.y127{bottom:441.826667pt;}
.y23{bottom:444.866667pt;}
.yed{bottom:447.426667pt;}
.y50{bottom:449.026667pt;}
.yc9{bottom:453.986667pt;}
.y106{bottom:457.026667pt;}
.y22{bottom:460.066667pt;}
.y126{bottom:460.226667pt;}
.yec{bottom:465.826667pt;}
.y4f{bottom:467.426667pt;}
.yc8{bottom:472.386667pt;}
.y92{bottom:473.026667pt;}
.yb1{bottom:475.106667pt;}
.y21{bottom:475.426667pt;}
.y125{bottom:478.626667pt;}
.yeb{bottom:484.226667pt;}
.y4e{bottom:485.826667pt;}
.y20{bottom:490.786667pt;}
.y91{bottom:491.426667pt;}
.y105{bottom:493.826667pt;}
.y124{bottom:497.026667pt;}
.yea{bottom:502.626667pt;}
.y4d{bottom:504.226667pt;}
.y1f{bottom:506.146667pt;}
.yc7{bottom:509.186667pt;}
.yb0{bottom:509.506667pt;}
.y90{bottom:509.826667pt;}
.y69{bottom:512.226667pt;}
.y123{bottom:515.426667pt;}
.y104{bottom:520.226667pt;}
.ye9{bottom:521.026667pt;}
.y1e{bottom:521.506667pt;}
.yc6{bottom:527.586667pt;}
.y8f{bottom:528.226667pt;}
.y68{bottom:530.626667pt;}
.y122{bottom:533.826667pt;}
.y1d{bottom:536.866667pt;}
.y4c{bottom:538.306667pt;}
.y103{bottom:538.626667pt;}
.ye8{bottom:539.426667pt;}
.yaf{bottom:544.226667pt;}
.yc5{bottom:545.986667pt;}
.y8e{bottom:546.626667pt;}
.y67{bottom:549.026667pt;}
.y1c{bottom:552.066667pt;}
.y121{bottom:552.226667pt;}
.y102{bottom:557.026667pt;}
.ye7{bottom:557.826667pt;}
.yae{bottom:562.626667pt;}
.y8d{bottom:565.026667pt;}
.y1b{bottom:567.426667pt;}
.y120{bottom:570.653333pt;}
.yc4{bottom:572.093333pt;}
.y4b{bottom:573.053333pt;}
.y101{bottom:575.453333pt;}
.yad{bottom:581.053333pt;}
.y1a{bottom:582.813333pt;}
.y8c{bottom:583.453333pt;}
.y66{bottom:585.853333pt;}
.y11f{bottom:589.053333pt;}
.yc3{bottom:590.813333pt;}
.y4a{bottom:591.453333pt;}
.ye6{bottom:591.933333pt;}
.y100{bottom:593.853333pt;}
.yac{bottom:599.453333pt;}
.y8b{bottom:601.853333pt;}
.y19{bottom:606.493333pt;}
.y11e{bottom:607.453333pt;}
.yc2{bottom:609.213333pt;}
.y49{bottom:609.853333pt;}
.yab{bottom:617.853333pt;}
.y65{bottom:619.933333pt;}
.y8a{bottom:620.253333pt;}
.y11d{bottom:625.853333pt;}
.ye5{bottom:626.653333pt;}
.yc1{bottom:627.613333pt;}
.y48{bottom:628.253333pt;}
.yaa{bottom:636.253333pt;}
.y89{bottom:638.653333pt;}
.y18{bottom:640.573333pt;}
.yc0{bottom:642.173333pt;}
.y11c{bottom:644.253333pt;}
.ye4{bottom:645.053333pt;}
.y47{bottom:646.653333pt;}
.y64{bottom:654.653333pt;}
.y17{bottom:655.933333pt;}
.y88{bottom:657.053333pt;}
.y11b{bottom:662.653333pt;}
.ye3{bottom:663.453333pt;}
.y46{bottom:673.053333pt;}
.y87{bottom:675.453333pt;}
.y16{bottom:679.133333pt;}
.y11a{bottom:681.053333pt;}
.ye2{bottom:681.853333pt;}
.y45{bottom:691.453333pt;}
.y86{bottom:693.853333pt;}
.y15{bottom:694.493333pt;}
.y119{bottom:699.453333pt;}
.ye1{bottom:700.253333pt;}
.y14{bottom:709.853333pt;}
.y85{bottom:712.253333pt;}
.y118{bottom:717.853333pt;}
.ye0{bottom:718.653333pt;}
.y13{bottom:725.213333pt;}
.y44{bottom:728.253333pt;}
.y84{bottom:730.653333pt;}
.y117{bottom:736.253333pt;}
.ydf{bottom:737.053333pt;}
.y12{bottom:740.573333pt;}
.y43{bottom:746.653333pt;}
.y83{bottom:749.053333pt;}
.y116{bottom:754.653333pt;}
.y11{bottom:755.933333pt;}
.yde{bottom:763.453333pt;}
.y42{bottom:765.053333pt;}
.y82{bottom:767.453333pt;}
.y10{bottom:771.133333pt;}
.yb9{bottom:772.733333pt;}
.y115{bottom:773.053333pt;}
.ydd{bottom:781.853333pt;}
.y41{bottom:783.453333pt;}
.y81{bottom:785.853333pt;}
.yf{bottom:786.493333pt;}
.yb8{bottom:791.493333pt;}
.ye{bottom:801.893333pt;}
.y80{bottom:804.293333pt;}
.ydc{bottom:804.453333pt;}
.yb7{bottom:809.893333pt;}
.yd{bottom:817.253333pt;}
.y40{bottom:820.293333pt;}
.y7f{bottom:822.693333pt;}
.ya9{bottom:828.293333pt;}
.y3f{bottom:838.693333pt;}
.yc{bottom:840.933333pt;}
.y7e{bottom:841.093333pt;}
.ya8{bottom:846.693333pt;}
.y3e{bottom:857.093333pt;}
.y7d{bottom:859.493333pt;}
.ya7{bottom:865.093333pt;}
.y3d{bottom:875.493333pt;}
.y7c{bottom:877.893333pt;}
.yb{bottom:881.733333pt;}
.ya6{bottom:883.493333pt;}
.yff{bottom:885.893333pt;}
.y3c{bottom:893.893333pt;}
.ya5{bottom:901.893333pt;}
.ya{bottom:902.053333pt;}
.y7b{bottom:904.293333pt;}
.y3b{bottom:920.293333pt;}
.y7a{bottom:922.693333pt;}
.y9{bottom:936.133333pt;}
.y3a{bottom:938.693333pt;}
.y79{bottom:941.093333pt;}
.y8{bottom:954.533333pt;}
.y39{bottom:957.093333pt;}
.y78{bottom:959.493333pt;}
.y38{bottom:975.493333pt;}
.y7{bottom:989.413333pt;}
.y77{bottom:993.573333pt;}
.y37{bottom:993.893333pt;}
.y6{bottom:1010.853333pt;}
.y35{bottom:1020.320000pt;}
.y32{bottom:1035.360000pt;}
.y1{bottom:1051.520000pt;}
.h10{height:16.786667pt;}
.he{height:16.946667pt;}
.h14{height:26.386667pt;}
.h12{height:26.418667pt;}
.hb{height:30.560000pt;}
.h7{height:42.084375pt;}
.h9{height:47.621250pt;}
.hc{height:49.336436pt;}
.h3{height:52.134375pt;}
.h8{height:53.535000pt;}
.hd{height:57.375000pt;}
.h11{height:57.758750pt;}
.hf{height:57.787500pt;}
.h13{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:66.404375pt;}
.ha{height:66.625000pt;}
.h4{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:35.520000pt;}
.w2{width:35.832000pt;}
.w7{width:51.840000pt;}
.wa{width:52.786667pt;}
.w8{width:65.792000pt;}
.w6{width:87.058667pt;}
.we{width:95.986667pt;}
.wb{width:95.992000pt;}
.wc{width:96.018667pt;}
.wf{width:96.186667pt;}
.wd{width:96.192000pt;}
.w9{width:120.338667pt;}
.w3{width:545.880000pt;}
.w4{width:546.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.672000pt;}
.x21{left:13.600000pt;}
.x1e{left:16.800000pt;}
.x1f{left:20.026667pt;}
.x10{left:21.120000pt;}
.x23{left:22.720000pt;}
.x2e{left:26.546667pt;}
.x22{left:29.146667pt;}
.x2c{left:33.280000pt;}
.x31{left:35.520000pt;}
.x2a{left:36.506667pt;}
.x20{left:47.346667pt;}
.xa{left:105.800000pt;}
.x1{left:113.472000pt;}
.x17{left:116.832000pt;}
.x4{left:118.112000pt;}
.x2{left:120.992000pt;}
.x25{left:140.506667pt;}
.xc{left:142.280000pt;}
.x32{left:143.706667pt;}
.x27{left:147.706667pt;}
.x8{left:151.226667pt;}
.x26{left:153.306667pt;}
.x13{left:162.106667pt;}
.x29{left:202.280000pt;}
.x19{left:208.040000pt;}
.x6{left:218.306667pt;}
.x7{left:227.106667pt;}
.xd{left:249.946667pt;}
.x28{left:265.186667pt;}
.x3{left:293.506667pt;}
.x1a{left:295.106667pt;}
.x2b{left:298.306667pt;}
.x1b{left:346.946667pt;}
.x14{left:348.066667pt;}
.x5{left:365.693333pt;}
.x9{left:367.293333pt;}
.x18{left:385.373333pt;}
.x2d{left:394.506667pt;}
.x1c{left:412.746667pt;}
.x15{left:415.933333pt;}
.x2f{left:490.506667pt;}
.x24{left:513.093333pt;}
.x1d{left:533.093333pt;}
.xe{left:538.813333pt;}
.x30{left:586.533333pt;}
.xf{left:652.640000pt;}
.x11{left:680.640000pt;}
.x16{left:681.600000pt;}
.x12{left:688.000000pt;}
}




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