
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_2556f802a0cbc5e42a4bb33c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ac62243b12d0c76970b0db93.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_f65890cd9836922c151663e5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9dfde3178b7f874cd394638d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b3689cedd01c1bec890b505d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_3a83ac541352be8f0d381f8f.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.014760px;}
.ls12{letter-spacing:-0.013320px;}
.ls11{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.041760px;}
.ls8{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.064800px;}
.ls14{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lse{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.lsb{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.wse{word-spacing:-13.213080px;}
.wsf{word-spacing:-13.211640px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-8.625600px;}
.ws10{word-spacing:-8.614200px;}
.ws5{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._13{margin-left:-4.254756px;}
._1{margin-left:-3.019764px;}
._0{margin-left:-1.080000px;}
._2{width:1.006728px;}
._7{width:2.101800px;}
._6{width:3.141672px;}
._5{width:4.880520px;}
._4{width:6.184802px;}
._3{width:7.274400px;}
._c{width:8.450040px;}
._8{width:9.532080px;}
._9{width:10.541760px;}
._d{width:11.723400px;}
._10{width:14.549040px;}
._a{width:16.533000px;}
._b{width:17.555040px;}
._15{width:18.577080px;}
._16{width:19.659240px;}
._12{width:20.681280px;}
._14{width:21.902040px;}
._e{width:22.905720px;}
._f{width:24.168240px;}
._11{width:415.910160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y74{bottom:7.830000px;}
.y79{bottom:7.860000px;}
.y76{bottom:7.920000px;}
.yb9{bottom:13.050000px;}
.yb6{bottom:13.140000px;}
.yb0{bottom:25.470000px;}
.yb5{bottom:35.190000px;}
.yc0{bottom:35.220000px;}
.ybf{bottom:35.280000px;}
.yc9{bottom:45.720000px;}
.yc8{bottom:67.770000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.yc6{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y98{bottom:121.080000px;}
.y111{bottom:121.980000px;}
.y13a{bottom:129.540000px;}
.ye0{bottom:134.040000px;}
.y53{bottom:139.170000px;}
.y110{bottom:139.530000px;}
.y139{bottom:147.090000px;}
.y97{bottom:148.440000px;}
.y72{bottom:149.160000px;}
.ydf{bottom:151.590000px;}
.y52{bottom:156.720000px;}
.y10f{bottom:157.170000px;}
.y24{bottom:160.320000px;}
.y71{bottom:166.800000px;}
.yde{bottom:169.140000px;}
.y138{bottom:173.730000px;}
.y10e{bottom:174.720000px;}
.y96{bottom:175.710000px;}
.y23{bottom:177.870000px;}
.y51{bottom:183.360000px;}
.ybe{bottom:184.080000px;}
.y137{bottom:191.280000px;}
.y10d{bottom:192.270000px;}
.y70{bottom:193.350000px;}
.y22{bottom:195.510000px;}
.y95{bottom:203.070000px;}
.ydd{bottom:204.780000px;}
.y136{bottom:208.830000px;}
.y10c{bottom:209.910000px;}
.y21{bottom:213.060000px;}
.y50{bottom:218.910000px;}
.ybd{bottom:219.000000px;}
.ydc{bottom:222.330000px;}
.y10b{bottom:227.460000px;}
.y6f{bottom:228.900000px;}
.y94{bottom:230.430000px;}
.y20{bottom:230.610000px;}
.ybb{bottom:231.150000px;}
.y135{bottom:235.470000px;}
.ydb{bottom:239.970000px;}
.y10a{bottom:245.100000px;}
.y4f{bottom:245.460000px;}
.y6e{bottom:246.540000px;}
.y1f{bottom:248.250000px;}
.y134{bottom:253.020000px;}
.yda{bottom:257.520000px;}
.y93{bottom:257.700000px;}
.ybc{bottom:258.510000px;}
.y6d{bottom:264.090000px;}
.y1e{bottom:265.800000px;}
.y109{bottom:271.920000px;}
.y133{bottom:279.660000px;}
.y4e{bottom:281.370000px;}
.y1d{bottom:283.440000px;}
.y92{bottom:285.060000px;}
.yb8{bottom:285.870000px;}
.y6c{bottom:290.730000px;}
.yd9{bottom:293.070000px;}
.y132{bottom:297.210000px;}
.y1c{bottom:300.990000px;}
.yd8{bottom:310.710000px;}
.y91{bottom:312.420000px;}
.yba{bottom:313.140000px;}
.y108{bottom:320.250000px;}
.y131{bottom:323.760000px;}
.y6b{bottom:326.280000px;}
.y1b{bottom:327.900000px;}
.yd7{bottom:328.260000px;}
.y4d{bottom:329.700000px;}
.y107{bottom:337.800000px;}
.y90{bottom:339.780000px;}
.yb4{bottom:340.500000px;}
.y130{bottom:341.400000px;}
.y6a{bottom:343.830000px;}
.y4c{bottom:347.250000px;}
.y106{bottom:355.440000px;}
.y69{bottom:361.470000px;}
.yd6{bottom:363.900000px;}
.y8f{bottom:367.050000px;}
.yb7{bottom:367.860000px;}
.y12f{bottom:367.950000px;}
.y105{bottom:372.990000px;}
.y4b{bottom:373.800000px;}
.y1a{bottom:376.500000px;}
.y68{bottom:379.020000px;}
.yd5{bottom:381.450000px;}
.y12e{bottom:385.590000px;}
.y104{bottom:390.540000px;}
.y8e{bottom:394.410000px;}
.yb3{bottom:395.130000px;}
.yd4{bottom:399.000000px;}
.y67{bottom:405.660000px;}
.y103{bottom:408.180000px;}
.y4a{bottom:409.440000px;}
.y12d{bottom:412.140000px;}
.y19{bottom:413.490000px;}
.y8d{bottom:421.770000px;}
.y102{bottom:425.730000px;}
.y49{bottom:426.990000px;}
.y12c{bottom:429.690000px;}
.y18{bottom:431.130000px;}
.yd3{bottom:434.640000px;}
.y66{bottom:441.210000px;}
.y101{bottom:443.370000px;}
.yb2{bottom:443.910000px;}
.y48{bottom:444.630000px;}
.y8c{bottom:449.130000px;}
.yd2{bottom:452.190000px;}
.y12b{bottom:456.330000px;}
.y65{bottom:458.760000px;}
.y100{bottom:460.920000px;}
.y47{bottom:462.180000px;}
.y17{bottom:466.680000px;}
.yd1{bottom:469.740000px;}
.y12a{bottom:473.910000px;}
.y64{bottom:476.430000px;}
.yff{bottom:478.500000px;}
.yb1{bottom:479.490000px;}
.y46{bottom:480.660000px;}
.y16{bottom:484.260000px;}
.yd0{bottom:487.410000px;}
.y129{bottom:491.550000px;}
.yaf{bottom:494.430000px;}
.yfe{bottom:496.140000px;}
.y45{bottom:498.210000px;}
.y15{bottom:501.900000px;}
.y63{bottom:502.980000px;}
.y8b{bottom:503.790000px;}
.y128{bottom:509.100000px;}
.yfd{bottom:513.690000px;}
.ycf{bottom:514.320000px;}
.y44{bottom:516.660000px;}
.y14{bottom:519.450000px;}
.yfc{bottom:531.330000px;}
.y43{bottom:534.210000px;}
.y127{bottom:535.650000px;}
.y62{bottom:538.530000px;}
.yae{bottom:539.340000px;}
.yfb{bottom:548.880000px;}
.y8a{bottom:552.480000px;}
.y42{bottom:552.570000px;}
.y126{bottom:553.290000px;}
.y13{bottom:555.090000px;}
.y61{bottom:556.170000px;}
.yce{bottom:559.950000px;}
.yad{bottom:566.700000px;}
.y125{bottom:570.840000px;}
.y12{bottom:572.640000px;}
.yfa{bottom:575.430000px;}
.y89{bottom:587.310000px;}
.y41{bottom:589.020000px;}
.y11{bottom:590.190000px;}
.y60{bottom:591.720000px;}
.yac{bottom:594.060000px;}
.y124{bottom:597.480000px;}
.y88{bottom:599.550000px;}
.y40{bottom:606.660000px;}
.y10{bottom:607.830000px;}
.yf9{bottom:611.070000px;}
.ycd{bottom:614.670000px;}
.y123{bottom:615.030000px;}
.yab{bottom:621.420000px;}
.y5f{bottom:623.940000px;}
.y3f{bottom:624.210000px;}
.y87{bottom:626.910000px;}
.yf8{bottom:628.620000px;}
.y122{bottom:641.580000px;}
.ycc{bottom:641.940000px;}
.yf{bottom:643.380000px;}
.yf7{bottom:646.260000px;}
.yaa{bottom:648.690000px;}
.y3e{bottom:650.760000px;}
.y86{bottom:654.180000px;}
.y121{bottom:659.220000px;}
.ye{bottom:661.020000px;}
.yf6{bottom:663.810000px;}
.yc5{bottom:669.300000px;}
.ya9{bottom:676.050000px;}
.y85{bottom:681.540000px;}
.y120{bottom:685.770000px;}
.y3d{bottom:686.400000px;}
.yd{bottom:696.570000px;}
.ycb{bottom:696.660000px;}
.yf5{bottom:699.360000px;}
.ya8{bottom:703.410000px;}
.y3c{bottom:703.950000px;}
.y84{bottom:708.900000px;}
.yc{bottom:714.120000px;}
.yf4{bottom:717.000000px;}
.y3b{bottom:721.590000px;}
.yca{bottom:724.020000px;}
.y11f{bottom:729.960000px;}
.ya7{bottom:730.770000px;}
.yb{bottom:731.760000px;}
.yf3{bottom:734.550000px;}
.y83{bottom:736.170000px;}
.y3a{bottom:739.140000px;}
.y11e{bottom:747.510000px;}
.yc7{bottom:751.290000px;}
.y39{bottom:756.690000px;}
.ya6{bottom:758.040000px;}
.ya{bottom:758.670000px;}
.y82{bottom:763.530000px;}
.y11d{bottom:765.150000px;}
.yf2{bottom:770.190000px;}
.yc4{bottom:778.650000px;}
.y38{bottom:783.330000px;}
.ya5{bottom:785.400000px;}
.yf1{bottom:787.740000px;}
.y81{bottom:790.890000px;}
.y11c{bottom:791.700000px;}
.yf0{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y11b{bottom:809.340000px;}
.y80{bottom:818.250000px;}
.y37{bottom:818.880000px;}
.yef{bottom:822.930000px;}
.ya4{bottom:834.090000px;}
.y11a{bottom:835.890000px;}
.y36{bottom:836.520000px;}
.yee{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.yc3{bottom:844.890000px;}
.y7f{bottom:845.520000px;}
.y119{bottom:853.440000px;}
.y35{bottom:854.070000px;}
.yed{bottom:858.030000px;}
.ya3{bottom:868.920000px;}
.y118{bottom:871.080000px;}
.y34{bottom:871.620000px;}
.y7e{bottom:872.880000px;}
.y7{bottom:877.200000px;}
.yc2{bottom:880.530000px;}
.ya2{bottom:881.160000px;}
.y5e{bottom:883.860000px;}
.y33{bottom:889.260000px;}
.yec{bottom:893.670000px;}
.y117{bottom:897.990000px;}
.y7d{bottom:900.240000px;}
.y5d{bottom:901.410000px;}
.ya1{bottom:908.430000px;}
.yeb{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.yc1{bottom:915.360000px;}
.y32{bottom:916.170000px;}
.y5c{bottom:918.960000px;}
.y7c{bottom:927.600000px;}
.yea{bottom:928.860000px;}
.ya0{bottom:935.790000px;}
.y5b{bottom:936.600000px;}
.y116{bottom:946.230000px;}
.ye9{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y5a{bottom:954.150000px;}
.y7b{bottom:954.870000px;}
.y9f{bottom:963.150000px;}
.ye8{bottom:963.960000px;}
.y31{bottom:964.410000px;}
.y115{bottom:973.140000px;}
.y59{bottom:980.790000px;}
.ye7{bottom:981.600000px;}
.y30{bottom:981.960000px;}
.y7a{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y9e{bottom:990.510000px;}
.ye6{bottom:999.150000px;}
.y2f{bottom:999.600000px;}
.y78{bottom:1009.590000px;}
.y114{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.y58{bottom:1016.370000px;}
.ye5{bottom:1016.820000px;}
.y2e{bottom:1017.180000px;}
.y9d{bottom:1017.810000px;}
.y57{bottom:1033.920000px;}
.ye4{bottom:1034.370000px;}
.y2d{bottom:1034.820000px;}
.y77{bottom:1036.890000px;}
.y113{bottom:1037.070000px;}
.y9c{bottom:1045.170000px;}
.ye3{bottom:1051.920000px;}
.y2c{bottom:1052.370000px;}
.y56{bottom:1060.560000px;}
.y75{bottom:1064.250000px;}
.ye2{bottom:1069.560000px;}
.y2b{bottom:1069.920000px;}
.y9b{bottom:1072.530000px;}
.y112{bottom:1074.420000px;}
.y13b{bottom:1078.560000px;}
.ye1{bottom:1087.110000px;}
.y2a{bottom:1087.560000px;}
.y73{bottom:1091.610000px;}
.y55{bottom:1096.110000px;}
.y9a{bottom:1099.890000px;}
.y29{bottom:1105.110000px;}
.y54{bottom:1113.750000px;}
.y28{bottom:1122.750000px;}
.y99{bottom:1127.160000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.he{height:44.190000px;}
.h6{height:50.902383px;}
.hf{height:53.910000px;}
.h11{height:53.940000px;}
.h10{height:54.000000px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:108.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w22{width:32.130000px;}
.w6{width:59.670000px;}
.w7{width:60.030000px;}
.w1c{width:67.230000px;}
.w1d{width:67.590000px;}
.w1f{width:85.500000px;}
.wf{width:85.680000px;}
.w15{width:86.040000px;}
.w10{width:86.130000px;}
.w18{width:89.280000px;}
.w1b{width:94.710000px;}
.w5{width:97.860000px;}
.wb{width:98.220000px;}
.w4{width:101.790000px;}
.wa{width:102.150000px;}
.w23{width:112.680000px;}
.we{width:139.860000px;}
.w14{width:140.310000px;}
.wd{width:145.470000px;}
.w21{width:145.530000px;}
.w13{width:145.830000px;}
.w17{width:152.760000px;}
.w1a{width:160.380000px;}
.w1e{width:163.560000px;}
.w19{width:167.580000px;}
.w16{width:182.520000px;}
.w3{width:210.690000px;}
.w9{width:211.050000px;}
.w20{width:284.970000px;}
.wc{width:295.500000px;}
.w12{width:295.860000px;}
.w8{width:533.010000px;}
.w11{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.960000px;}
.x1b{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:70.829987px;}
.x4{left:95.039987px;}
.x1f{left:105.750000px;}
.x23{left:111.239987px;}
.xf{left:113.129987px;}
.x5{left:122.039987px;}
.x19{left:149.309987px;}
.x1a{left:166.350000px;}
.x14{left:173.100000px;}
.x8{left:180.120000px;}
.x2{left:192.719987px;}
.x7{left:216.929987px;}
.x20{left:270.030000px;}
.x1c{left:334.650000px;}
.x15{left:356.340000px;}
.x10{left:364.980000px;}
.xa{left:391.530000px;}
.xb{left:494.130000px;}
.x1d{left:495.750000px;}
.x16{left:509.820000px;}
.x11{left:511.170000px;}
.x1e{left:591.270000px;}
.xc{left:592.710000px;}
.x17{left:599.820000px;}
.x21{left:642.030000px;}
.x12{left:651.840000px;}
.xd{left:653.100000px;}
.x18{left:660.210000px;}
.x22{left:674.880000px;}
.x6{left:706.559987px;}
.x13{left:738.330000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls12{letter-spacing:-0.011840pt;}
.ls11{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.037120pt;}
.ls8{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.057600pt;}
.ls14{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.lsb{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.744960pt;}
.wsf{word-spacing:-11.743680pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-7.667200pt;}
.ws10{word-spacing:-7.657067pt;}
.ws5{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._13{margin-left:-3.782005pt;}
._1{margin-left:-2.684235pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.894869pt;}
._7{width:1.868266pt;}
._6{width:2.792598pt;}
._5{width:4.338240pt;}
._4{width:5.497602pt;}
._3{width:6.466133pt;}
._c{width:7.511147pt;}
._8{width:8.472960pt;}
._9{width:9.370453pt;}
._d{width:10.420800pt;}
._10{width:12.932480pt;}
._a{width:14.696000pt;}
._b{width:15.604480pt;}
._15{width:16.512960pt;}
._16{width:17.474880pt;}
._12{width:18.383360pt;}
._14{width:19.468480pt;}
._e{width:20.360640pt;}
._f{width:21.482880pt;}
._11{width:369.697920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:6.960000pt;}
.y79{bottom:6.986667pt;}
.y76{bottom:7.040000pt;}
.yb9{bottom:11.600000pt;}
.yb6{bottom:11.680000pt;}
.yb0{bottom:22.640000pt;}
.yb5{bottom:31.280000pt;}
.yc0{bottom:31.306667pt;}
.ybf{bottom:31.360000pt;}
.yc9{bottom:40.640000pt;}
.yc8{bottom:60.240000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.yc6{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y98{bottom:107.626667pt;}
.y111{bottom:108.426667pt;}
.y13a{bottom:115.146667pt;}
.ye0{bottom:119.146667pt;}
.y53{bottom:123.706667pt;}
.y110{bottom:124.026667pt;}
.y139{bottom:130.746667pt;}
.y97{bottom:131.946667pt;}
.y72{bottom:132.586667pt;}
.ydf{bottom:134.746667pt;}
.y52{bottom:139.306667pt;}
.y10f{bottom:139.706667pt;}
.y24{bottom:142.506667pt;}
.y71{bottom:148.266667pt;}
.yde{bottom:150.346667pt;}
.y138{bottom:154.426667pt;}
.y10e{bottom:155.306667pt;}
.y96{bottom:156.186667pt;}
.y23{bottom:158.106667pt;}
.y51{bottom:162.986667pt;}
.ybe{bottom:163.626667pt;}
.y137{bottom:170.026667pt;}
.y10d{bottom:170.906667pt;}
.y70{bottom:171.866667pt;}
.y22{bottom:173.786667pt;}
.y95{bottom:180.506667pt;}
.ydd{bottom:182.026667pt;}
.y136{bottom:185.626667pt;}
.y10c{bottom:186.586667pt;}
.y21{bottom:189.386667pt;}
.y50{bottom:194.586667pt;}
.ybd{bottom:194.666667pt;}
.ydc{bottom:197.626667pt;}
.y10b{bottom:202.186667pt;}
.y6f{bottom:203.466667pt;}
.y94{bottom:204.826667pt;}
.y20{bottom:204.986667pt;}
.ybb{bottom:205.466667pt;}
.y135{bottom:209.306667pt;}
.ydb{bottom:213.306667pt;}
.y10a{bottom:217.866667pt;}
.y4f{bottom:218.186667pt;}
.y6e{bottom:219.146667pt;}
.y1f{bottom:220.666667pt;}
.y134{bottom:224.906667pt;}
.yda{bottom:228.906667pt;}
.y93{bottom:229.066667pt;}
.ybc{bottom:229.786667pt;}
.y6d{bottom:234.746667pt;}
.y1e{bottom:236.266667pt;}
.y109{bottom:241.706667pt;}
.y133{bottom:248.586667pt;}
.y4e{bottom:250.106667pt;}
.y1d{bottom:251.946667pt;}
.y92{bottom:253.386667pt;}
.yb8{bottom:254.106667pt;}
.y6c{bottom:258.426667pt;}
.yd9{bottom:260.506667pt;}
.y132{bottom:264.186667pt;}
.y1c{bottom:267.546667pt;}
.yd8{bottom:276.186667pt;}
.y91{bottom:277.706667pt;}
.yba{bottom:278.346667pt;}
.y108{bottom:284.666667pt;}
.y131{bottom:287.786667pt;}
.y6b{bottom:290.026667pt;}
.y1b{bottom:291.466667pt;}
.yd7{bottom:291.786667pt;}
.y4d{bottom:293.066667pt;}
.y107{bottom:300.266667pt;}
.y90{bottom:302.026667pt;}
.yb4{bottom:302.666667pt;}
.y130{bottom:303.466667pt;}
.y6a{bottom:305.626667pt;}
.y4c{bottom:308.666667pt;}
.y106{bottom:315.946667pt;}
.y69{bottom:321.306667pt;}
.yd6{bottom:323.466667pt;}
.y8f{bottom:326.266667pt;}
.yb7{bottom:326.986667pt;}
.y12f{bottom:327.066667pt;}
.y105{bottom:331.546667pt;}
.y4b{bottom:332.266667pt;}
.y1a{bottom:334.666667pt;}
.y68{bottom:336.906667pt;}
.yd5{bottom:339.066667pt;}
.y12e{bottom:342.746667pt;}
.y104{bottom:347.146667pt;}
.y8e{bottom:350.586667pt;}
.yb3{bottom:351.226667pt;}
.yd4{bottom:354.666667pt;}
.y67{bottom:360.586667pt;}
.y103{bottom:362.826667pt;}
.y4a{bottom:363.946667pt;}
.y12d{bottom:366.346667pt;}
.y19{bottom:367.546667pt;}
.y8d{bottom:374.906667pt;}
.y102{bottom:378.426667pt;}
.y49{bottom:379.546667pt;}
.y12c{bottom:381.946667pt;}
.y18{bottom:383.226667pt;}
.yd3{bottom:386.346667pt;}
.y66{bottom:392.186667pt;}
.y101{bottom:394.106667pt;}
.yb2{bottom:394.586667pt;}
.y48{bottom:395.226667pt;}
.y8c{bottom:399.226667pt;}
.yd2{bottom:401.946667pt;}
.y12b{bottom:405.626667pt;}
.y65{bottom:407.786667pt;}
.y100{bottom:409.706667pt;}
.y47{bottom:410.826667pt;}
.y17{bottom:414.826667pt;}
.yd1{bottom:417.546667pt;}
.y12a{bottom:421.253333pt;}
.y64{bottom:423.493333pt;}
.yff{bottom:425.333333pt;}
.yb1{bottom:426.213333pt;}
.y46{bottom:427.253333pt;}
.y16{bottom:430.453333pt;}
.yd0{bottom:433.253333pt;}
.y129{bottom:436.933333pt;}
.yaf{bottom:439.493333pt;}
.yfe{bottom:441.013333pt;}
.y45{bottom:442.853333pt;}
.y15{bottom:446.133333pt;}
.y63{bottom:447.093333pt;}
.y8b{bottom:447.813333pt;}
.y128{bottom:452.533333pt;}
.yfd{bottom:456.613333pt;}
.ycf{bottom:457.173333pt;}
.y44{bottom:459.253333pt;}
.y14{bottom:461.733333pt;}
.yfc{bottom:472.293333pt;}
.y43{bottom:474.853333pt;}
.y127{bottom:476.133333pt;}
.y62{bottom:478.693333pt;}
.yae{bottom:479.413333pt;}
.yfb{bottom:487.893333pt;}
.y8a{bottom:491.093333pt;}
.y42{bottom:491.173333pt;}
.y126{bottom:491.813333pt;}
.y13{bottom:493.413333pt;}
.y61{bottom:494.373333pt;}
.yce{bottom:497.733333pt;}
.yad{bottom:503.733333pt;}
.y125{bottom:507.413333pt;}
.y12{bottom:509.013333pt;}
.yfa{bottom:511.493333pt;}
.y89{bottom:522.053333pt;}
.y41{bottom:523.573333pt;}
.y11{bottom:524.613333pt;}
.y60{bottom:525.973333pt;}
.yac{bottom:528.053333pt;}
.y124{bottom:531.093333pt;}
.y88{bottom:532.933333pt;}
.y40{bottom:539.253333pt;}
.y10{bottom:540.293333pt;}
.yf9{bottom:543.173333pt;}
.ycd{bottom:546.373333pt;}
.y123{bottom:546.693333pt;}
.yab{bottom:552.373333pt;}
.y5f{bottom:554.613333pt;}
.y3f{bottom:554.853333pt;}
.y87{bottom:557.253333pt;}
.yf8{bottom:558.773333pt;}
.y122{bottom:570.293333pt;}
.ycc{bottom:570.613333pt;}
.yf{bottom:571.893333pt;}
.yf7{bottom:574.453333pt;}
.yaa{bottom:576.613333pt;}
.y3e{bottom:578.453333pt;}
.y86{bottom:581.493333pt;}
.y121{bottom:585.973333pt;}
.ye{bottom:587.573333pt;}
.yf6{bottom:590.053333pt;}
.yc5{bottom:594.933333pt;}
.ya9{bottom:600.933333pt;}
.y85{bottom:605.813333pt;}
.y120{bottom:609.573333pt;}
.y3d{bottom:610.133333pt;}
.yd{bottom:619.173333pt;}
.ycb{bottom:619.253333pt;}
.yf5{bottom:621.653333pt;}
.ya8{bottom:625.253333pt;}
.y3c{bottom:625.733333pt;}
.y84{bottom:630.133333pt;}
.yc{bottom:634.773333pt;}
.yf4{bottom:637.333333pt;}
.y3b{bottom:641.413333pt;}
.yca{bottom:643.573333pt;}
.y11f{bottom:648.853333pt;}
.ya7{bottom:649.573333pt;}
.yb{bottom:650.453333pt;}
.yf3{bottom:652.933333pt;}
.y83{bottom:654.373333pt;}
.y3a{bottom:657.013333pt;}
.y11e{bottom:664.453333pt;}
.yc7{bottom:667.813333pt;}
.y39{bottom:672.613333pt;}
.ya6{bottom:673.813333pt;}
.ya{bottom:674.373333pt;}
.y82{bottom:678.693333pt;}
.y11d{bottom:680.133333pt;}
.yf2{bottom:684.613333pt;}
.yc4{bottom:692.133333pt;}
.y38{bottom:696.293333pt;}
.ya5{bottom:698.133333pt;}
.yf1{bottom:700.213333pt;}
.y81{bottom:703.013333pt;}
.y11c{bottom:703.733333pt;}
.yf0{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y11b{bottom:719.413333pt;}
.y80{bottom:727.333333pt;}
.y37{bottom:727.893333pt;}
.yef{bottom:731.493333pt;}
.ya4{bottom:741.413333pt;}
.y11a{bottom:743.013333pt;}
.y36{bottom:743.573333pt;}
.yee{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.yc3{bottom:751.013333pt;}
.y7f{bottom:751.573333pt;}
.y119{bottom:758.613333pt;}
.y35{bottom:759.173333pt;}
.yed{bottom:762.693333pt;}
.ya3{bottom:772.373333pt;}
.y118{bottom:774.293333pt;}
.y34{bottom:774.773333pt;}
.y7e{bottom:775.893333pt;}
.y7{bottom:779.733333pt;}
.yc2{bottom:782.693333pt;}
.ya2{bottom:783.253333pt;}
.y5e{bottom:785.653333pt;}
.y33{bottom:790.453333pt;}
.yec{bottom:794.373333pt;}
.y117{bottom:798.213333pt;}
.y7d{bottom:800.213333pt;}
.y5d{bottom:801.253333pt;}
.ya1{bottom:807.493333pt;}
.yeb{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.yc1{bottom:813.653333pt;}
.y32{bottom:814.373333pt;}
.y5c{bottom:816.853333pt;}
.y7c{bottom:824.533333pt;}
.yea{bottom:825.653333pt;}
.ya0{bottom:831.813333pt;}
.y5b{bottom:832.533333pt;}
.y116{bottom:841.093333pt;}
.ye9{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y5a{bottom:848.133333pt;}
.y7b{bottom:848.773333pt;}
.y9f{bottom:856.133333pt;}
.ye8{bottom:856.853333pt;}
.y31{bottom:857.253333pt;}
.y115{bottom:865.013333pt;}
.y59{bottom:871.813333pt;}
.ye7{bottom:872.533333pt;}
.y30{bottom:872.853333pt;}
.y7a{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y9e{bottom:880.453333pt;}
.ye6{bottom:888.133333pt;}
.y2f{bottom:888.533333pt;}
.y78{bottom:897.413333pt;}
.y114{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.y58{bottom:903.440000pt;}
.ye5{bottom:903.840000pt;}
.y2e{bottom:904.160000pt;}
.y9d{bottom:904.720000pt;}
.y57{bottom:919.040000pt;}
.ye4{bottom:919.440000pt;}
.y2d{bottom:919.840000pt;}
.y77{bottom:921.680000pt;}
.y113{bottom:921.840000pt;}
.y9c{bottom:929.040000pt;}
.ye3{bottom:935.040000pt;}
.y2c{bottom:935.440000pt;}
.y56{bottom:942.720000pt;}
.y75{bottom:946.000000pt;}
.ye2{bottom:950.720000pt;}
.y2b{bottom:951.040000pt;}
.y9b{bottom:953.360000pt;}
.y112{bottom:955.040000pt;}
.y13b{bottom:958.720000pt;}
.ye1{bottom:966.320000pt;}
.y2a{bottom:966.720000pt;}
.y73{bottom:970.320000pt;}
.y55{bottom:974.320000pt;}
.y9a{bottom:977.680000pt;}
.y29{bottom:982.320000pt;}
.y54{bottom:990.000000pt;}
.y28{bottom:998.000000pt;}
.y99{bottom:1001.920000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.he{height:39.280000pt;}
.h6{height:45.246562pt;}
.hf{height:47.920000pt;}
.h11{height:47.946667pt;}
.h10{height:48.000000pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:96.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w22{width:28.560000pt;}
.w6{width:53.040000pt;}
.w7{width:53.360000pt;}
.w1c{width:59.760000pt;}
.w1d{width:60.080000pt;}
.w1f{width:76.000000pt;}
.wf{width:76.160000pt;}
.w15{width:76.480000pt;}
.w10{width:76.560000pt;}
.w18{width:79.360000pt;}
.w1b{width:84.186667pt;}
.w5{width:86.986667pt;}
.wb{width:87.306667pt;}
.w4{width:90.480000pt;}
.wa{width:90.800000pt;}
.w23{width:100.160000pt;}
.we{width:124.320000pt;}
.w14{width:124.720000pt;}
.wd{width:129.306667pt;}
.w21{width:129.360000pt;}
.w13{width:129.626667pt;}
.w17{width:135.786667pt;}
.w1a{width:142.560000pt;}
.w1e{width:145.386667pt;}
.w19{width:148.960000pt;}
.w16{width:162.240000pt;}
.w3{width:187.280000pt;}
.w9{width:187.600000pt;}
.w20{width:253.306667pt;}
.wc{width:262.666667pt;}
.w12{width:262.986667pt;}
.w8{width:473.786667pt;}
.w11{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.520000pt;}
.x1b{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:62.959988pt;}
.x4{left:84.479988pt;}
.x1f{left:94.000000pt;}
.x23{left:98.879988pt;}
.xf{left:100.559988pt;}
.x5{left:108.479988pt;}
.x19{left:132.719988pt;}
.x1a{left:147.866667pt;}
.x14{left:153.866667pt;}
.x8{left:160.106667pt;}
.x2{left:171.306655pt;}
.x7{left:192.826655pt;}
.x20{left:240.026667pt;}
.x1c{left:297.466667pt;}
.x15{left:316.746667pt;}
.x10{left:324.426667pt;}
.xa{left:348.026667pt;}
.xb{left:439.226667pt;}
.x1d{left:440.666667pt;}
.x16{left:453.173333pt;}
.x11{left:454.373333pt;}
.x1e{left:525.573333pt;}
.xc{left:526.853333pt;}
.x17{left:533.173333pt;}
.x21{left:570.693333pt;}
.x12{left:579.413333pt;}
.xd{left:580.533333pt;}
.x18{left:586.853333pt;}
.x22{left:599.893333pt;}
.x6{left:628.053322pt;}
.x13{left:656.293333pt;}
.x3{left:711.413322pt;}
}




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