
    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_b45f2ac76888442f750b087f.woff2')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_6dc1c288360c63d7d09bbd30.woff2')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_4027aa6dc0fec1389d1cb04c.woff2')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_96279379ba1e0f068b0c5b1d.woff2')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_7b3a4ac7401f0c79de19a304.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ef48438872f40f3e91e34acf.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_39478c846c0a2eaabfcfcd6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_720085c7f45fbda30551a335.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a90e9ac26685bbe74bf3ec1b.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls1d{letter-spacing:-1.704000px;}
.ls1a{letter-spacing:-1.506000px;}
.ls1b{letter-spacing:-1.386000px;}
.ls14{letter-spacing:-1.368000px;}
.ls13{letter-spacing:-1.266000px;}
.ls1c{letter-spacing:-1.128000px;}
.ls19{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.178800px;}
.ls18{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.011160px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.019080px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.199200px;}
.ls5{letter-spacing:0.266400px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1e{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws17{word-spacing:-13.425600px;}
.ws18{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.245480px;}
.ws2{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.215240px;}
.wsa{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws14{word-spacing:-12.098400px;}
.wsb{word-spacing:-11.960400px;}
.wsc{word-spacing:-11.858400px;}
.ws13{word-spacing:-11.840400px;}
.ws12{word-spacing:-11.720400px;}
.ws15{word-spacing:-11.522400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._12{margin-left:-4.660621px;}
._10{margin-left:-3.621419px;}
._1{margin-left:-2.432436px;}
._0{margin-left:-1.110000px;}
._2{width:1.173901px;}
._a{width:2.417693px;}
._e{width:3.558607px;}
._8{width:4.569000px;}
._9{width:6.072601px;}
._5{width:7.842153px;}
._4{width:8.958000px;}
._3{width:10.280400px;}
._d{width:11.362800px;}
._11{width:14.849640px;}
._b{width:16.112400px;}
._c{width:17.493597px;}
._f{width:18.915608px;}
._17{width:20.566800px;}
._18{width:22.332360px;}
._14{width:24.467400px;}
._16{width:26.010960px;}
._15{width:27.293880px;}
._6{width:28.497000px;}
._7{width:29.781597px;}
._13{width:55.550880px;}
.fc1{color:rgb(0,0,255);}
.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;}
.y6e{bottom:6.300000px;}
.y85{bottom:7.830000px;}
.y88{bottom:7.920000px;}
.y99{bottom:9.450000px;}
.y96{bottom:9.540000px;}
.ybb{bottom:12.330000px;}
.yc2{bottom:20.790000px;}
.ybe{bottom:25.470000px;}
.y7a{bottom:28.350000px;}
.y75{bottom:28.440000px;}
.y72{bottom:28.470000px;}
.yba{bottom:29.970000px;}
.yc1{bottom:38.430000px;}
.y74{bottom:50.490000px;}
.y71{bottom:50.520000px;}
.y79{bottom:72.450000px;}
.y77{bottom:72.540000px;}
.y70{bottom:72.570000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb8{bottom:112.440000px;}
.y110{bottom:116.940000px;}
.ya3{bottom:119.190000px;}
.y10f{bottom:134.490000px;}
.y28{bottom:142.050000px;}
.ye4{bottom:145.830000px;}
.ya2{bottom:146.460000px;}
.yb7{bottom:148.080000px;}
.y10e{bottom:152.130000px;}
.y27{bottom:159.600000px;}
.yb6{bottom:165.630000px;}
.ya1{bottom:173.820000px;}
.y26{bottom:177.240000px;}
.y10d{bottom:178.680000px;}
.y7b{bottom:178.770000px;}
.ye3{bottom:181.470000px;}
.y55{bottom:182.910000px;}
.yb5{bottom:183.270000px;}
.y78{bottom:191.010000px;}
.ye2{bottom:199.020000px;}
.yb4{bottom:200.820000px;}
.ya0{bottom:201.180000px;}
.y10c{bottom:205.320000px;}
.y25{bottom:212.790000px;}
.ye1{bottom:216.660000px;}
.yb3{bottom:218.370000px;}
.y54{bottom:219.360000px;}
.y10b{bottom:222.870000px;}
.y9f{bottom:228.540000px;}
.y24{bottom:230.340000px;}
.ye0{bottom:234.210000px;}
.yb2{bottom:236.010000px;}
.y53{bottom:237.000000px;}
.y23{bottom:247.980000px;}
.y10a{bottom:249.420000px;}
.y52{bottom:254.550000px;}
.y9e{bottom:255.810000px;}
.y22{bottom:265.530000px;}
.y109{bottom:267.060000px;}
.ydf{bottom:269.760000px;}
.yb1{bottom:270.840000px;}
.y51{bottom:272.190000px;}
.y76{bottom:283.080000px;}
.y21{bottom:283.170000px;}
.yde{bottom:287.400000px;}
.y50{bottom:289.740000px;}
.y108{bottom:293.610000px;}
.y20{bottom:300.720000px;}
.ydd{bottom:304.950000px;}
.y9d{bottom:310.530000px;}
.y107{bottom:311.250000px;}
.y4f{bottom:316.290000px;}
.y1f{bottom:318.270000px;}
.ydc{bottom:322.500000px;}
.y1e{bottom:335.910000px;}
.y9c{bottom:337.800000px;}
.ydb{bottom:340.140000px;}
.y4e{bottom:351.840000px;}
.y1d{bottom:353.460000px;}
.y106{bottom:355.350000px;}
.yda{bottom:357.690000px;}
.yb0{bottom:359.220000px;}
.y9b{bottom:365.160000px;}
.y1c{bottom:371.100000px;}
.y73{bottom:375.150000px;}
.yd9{bottom:375.330000px;}
.y105{bottom:381.990000px;}
.y4d{bottom:388.290000px;}
.y9a{bottom:392.520000px;}
.yaf{bottom:394.770000px;}
.y1b{bottom:398.010000px;}
.y104{bottom:399.540000px;}
.y4c{bottom:405.930000px;}
.yd8{bottom:410.880000px;}
.yae{bottom:412.410000px;}
.y103{bottom:417.090000px;}
.y98{bottom:419.880000px;}
.y4b{bottom:423.480000px;}
.yd7{bottom:428.430000px;}
.yad{bottom:429.960000px;}
.y4a{bottom:441.120000px;}
.y102{bottom:443.730000px;}
.y6f{bottom:445.170000px;}
.yd6{bottom:446.070000px;}
.y1a{bottom:446.610000px;}
.y97{bottom:447.150000px;}
.yac{bottom:447.510000px;}
.yd5{bottom:463.620000px;}
.yab{bottom:465.150000px;}
.y49{bottom:467.670000px;}
.y101{bottom:470.310000px;}
.y95{bottom:474.540000px;}
.yd4{bottom:481.290000px;}
.yaa{bottom:482.730000px;}
.y19{bottom:483.630000px;}
.y100{bottom:487.950000px;}
.yd3{bottom:498.840000px;}
.y18{bottom:501.180000px;}
.y94{bottom:501.900000px;}
.y48{bottom:503.250000px;}
.yff{bottom:514.500000px;}
.ya9{bottom:518.370000px;}
.y17{bottom:518.820000px;}
.y47{bottom:520.890000px;}
.yfe{bottom:532.050000px;}
.yd2{bottom:534.390000px;}
.y16{bottom:536.370000px;}
.y6d{bottom:537.270000px;}
.y46{bottom:538.440000px;}
.y93{bottom:550.590000px;}
.yd1{bottom:552.030000px;}
.y15{bottom:553.920000px;}
.y45{bottom:556.080000px;}
.yfd{bottom:558.690000px;}
.yd0{bottom:569.580000px;}
.y14{bottom:571.560000px;}
.y44{bottom:573.630000px;}
.yfc{bottom:576.240000px;}
.y92{bottom:577.140000px;}
.y6c{bottom:584.520000px;}
.ycf{bottom:587.220000px;}
.y13{bottom:589.110000px;}
.y43{bottom:591.180000px;}
.yfb{bottom:593.880000px;}
.yce{bottom:604.770000px;}
.y12{bottom:606.750000px;}
.y91{bottom:612.780000px;}
.y42{bottom:617.730000px;}
.y6b{bottom:619.980000px;}
.yfa{bottom:620.430000px;}
.ycd{bottom:622.320000px;}
.y11{bottom:624.300000px;}
.y90{bottom:630.330000px;}
.yf9{bottom:637.980000px;}
.y6a{bottom:638.430000px;}
.ycc{bottom:639.960000px;}
.y10{bottom:641.850000px;}
.y8f{bottom:647.970000px;}
.y41{bottom:650.400000px;}
.ycb{bottom:657.510000px;}
.yf{bottom:659.490000px;}
.y11f{bottom:663.360000px;}
.yf8{bottom:664.890000px;}
.y8e{bottom:665.520000px;}
.y69{bottom:674.880000px;}
.ye{bottom:677.040000px;}
.y11e{bottom:681.000000px;}
.y8d{bottom:683.070000px;}
.y40{bottom:686.310000px;}
.y68{bottom:692.520000px;}
.yca{bottom:693.150000px;}
.yd{bottom:694.680000px;}
.y8c{bottom:700.710000px;}
.y11d{bottom:707.550000px;}
.y67{bottom:710.070000px;}
.yc9{bottom:710.700000px;}
.yc{bottom:712.230000px;}
.yf7{bottom:713.220000px;}
.y11c{bottom:725.190000px;}
.y66{bottom:727.620000px;}
.yc8{bottom:728.250000px;}
.yf6{bottom:730.770000px;}
.y3f{bottom:734.550000px;}
.y8b{bottom:735.630000px;}
.yb{bottom:739.140000px;}
.y65{bottom:745.260000px;}
.yc7{bottom:745.890000px;}
.y8a{bottom:747.960000px;}
.y11b{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.yf5{bottom:757.680000px;}
.y64{bottom:762.810000px;}
.yc6{bottom:763.440000px;}
.y11a{bottom:769.290000px;}
.y3d{bottom:769.740000px;}
.y89{bottom:775.320000px;}
.yc5{bottom:781.080000px;}
.y3c{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y63{bottom:789.720000px;}
.yf4{bottom:794.670000px;}
.y119{bottom:795.930000px;}
.y87{bottom:802.590000px;}
.y3b{bottom:804.930000px;}
.yc4{bottom:807.900000px;}
.yf3{bottom:812.310000px;}
.y118{bottom:813.480000px;}
.y3a{bottom:822.480000px;}
.y9{bottom:823.200000px;}
.y86{bottom:829.950000px;}
.y117{bottom:831.030000px;}
.y62{bottom:837.960000px;}
.yf2{bottom:839.220000px;}
.yc3{bottom:855.420000px;}
.y84{bottom:857.310000px;}
.y116{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.yc0{bottom:867.840000px;}
.y61{bottom:874.410000px;}
.y38{bottom:875.670000px;}
.yf1{bottom:876.570000px;}
.y115{bottom:884.220000px;}
.y60{bottom:891.960000px;}
.y37{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y114{bottom:901.860000px;}
.y83{bottom:906.000000px;}
.y5f{bottom:909.600000px;}
.y36{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yf0{bottom:924.810000px;}
.ybf{bottom:925.710000px;}
.y5e{bottom:927.150000px;}
.y35{bottom:928.410000px;}
.y82{bottom:941.550000px;}
.yef{bottom:942.450000px;}
.y5d{bottom:944.790000px;}
.y34{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y81{bottom:959.190000px;}
.yee{bottom:960.000000px;}
.y33{bottom:963.600000px;}
.ybd{bottom:970.620000px;}
.y5c{bottom:971.340000px;}
.y113{bottom:972.600000px;}
.y80{bottom:976.740000px;}
.yed{bottom:977.550000px;}
.y32{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y112{bottom:990.150000px;}
.y7f{bottom:994.290000px;}
.yec{bottom:995.190000px;}
.y31{bottom:998.790000px;}
.y5b{bottom:1006.890000px;}
.y3{bottom:1012.320000px;}
.yeb{bottom:1012.770000px;}
.ybc{bottom:1015.560000px;}
.y111{bottom:1016.820000px;}
.y7e{bottom:1020.960000px;}
.yea{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.yb9{bottom:1042.920000px;}
.y5a{bottom:1043.370000px;}
.ya8{bottom:1044.450000px;}
.ye9{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y7d{bottom:1056.870000px;}
.y59{bottom:1060.920000px;}
.ya7{bottom:1062.000000px;}
.ye8{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.y58{bottom:1078.560000px;}
.ya6{bottom:1079.640000px;}
.ye7{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y57{bottom:1096.110000px;}
.ye6{bottom:1100.700000px;}
.y7c{bottom:1105.110000px;}
.y56{bottom:1113.750000px;}
.ya5{bottom:1114.470000px;}
.y2c{bottom:1122.750000px;}
.ya4{bottom:1127.160000px;}
.ye5{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:25.110000px;}
.h11{height:26.550000px;}
.h12{height:26.640000px;}
.h14{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h10{height:40.539023px;}
.h17{height:44.190000px;}
.h16{height:44.220000px;}
.h15{height:48.690000px;}
.h6{height:50.902383px;}
.h13{height:55.503491px;}
.h5{height:55.779258px;}
.h18{height:57.150000px;}
.h9{height:59.973223px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.hd{height:69.300000px;}
.h4{height:71.019492px;}
.hf{height:91.260000px;}
.he{height:91.350000px;}
.hc{height:91.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:33.390000px;}
.w14{width:61.380000px;}
.w10{width:77.160000px;}
.wa{width:86.430000px;}
.w15{width:110.880000px;}
.w7{width:134.820000px;}
.w13{width:139.590000px;}
.w11{width:142.020000px;}
.wb{width:143.190000px;}
.wd{width:145.110000px;}
.wc{width:149.760000px;}
.w5{width:180.000000px;}
.w4{width:184.710000px;}
.w6{width:186.870000px;}
.w3{width:187.560000px;}
.we{width:199.620000px;}
.w9{width:201.060000px;}
.w8{width:205.950000px;}
.wf{width:209.610000px;}
.w17{width:407.310000px;}
.w12{width:441.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:72.359987px;}
.xa{left:81.180000px;}
.xf{left:83.070000px;}
.x4{left:95.039987px;}
.x1a{left:102.870000px;}
.x1b{left:111.239987px;}
.x5{left:169.770000px;}
.x2{left:209.819987px;}
.x14{left:231.510000px;}
.xb{left:268.770000px;}
.x10{left:314.130000px;}
.x7{left:358.050000px;}
.x9{left:363.269987px;}
.x13{left:377.669987px;}
.xc{left:404.400000px;}
.x15{left:441.840000px;}
.x11{left:464.700000px;}
.x17{left:510.990000px;}
.x16{left:519.720000px;}
.x8{left:543.480000px;}
.xd{left:611.070000px;}
.x18{left:651.390000px;}
.x19{left:713.580000px;}
.x12{left:781.889987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1d{letter-spacing:-1.514667pt;}
.ls1a{letter-spacing:-1.338667pt;}
.ls1b{letter-spacing:-1.232000pt;}
.ls14{letter-spacing:-1.216000pt;}
.ls13{letter-spacing:-1.125333pt;}
.ls1c{letter-spacing:-1.002667pt;}
.ls19{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.009920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016960pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.177067pt;}
.ls5{letter-spacing:0.236800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws17{word-spacing:-11.933867pt;}
.ws18{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.773760pt;}
.ws2{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.746880pt;}
.wsa{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws14{word-spacing:-10.754133pt;}
.wsb{word-spacing:-10.631467pt;}
.wsc{word-spacing:-10.540800pt;}
.ws13{word-spacing:-10.524800pt;}
.ws12{word-spacing:-10.418133pt;}
.ws15{word-spacing:-10.242133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._12{margin-left:-4.142774pt;}
._10{margin-left:-3.219039pt;}
._1{margin-left:-2.162165pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043467pt;}
._a{width:2.149061pt;}
._e{width:3.163206pt;}
._8{width:4.061333pt;}
._9{width:5.397868pt;}
._5{width:6.970803pt;}
._4{width:7.962667pt;}
._3{width:9.138133pt;}
._d{width:10.100267pt;}
._11{width:13.199680pt;}
._b{width:14.322134pt;}
._c{width:15.549864pt;}
._f{width:16.813874pt;}
._17{width:18.281600pt;}
._18{width:19.850987pt;}
._14{width:21.748800pt;}
._16{width:23.120853pt;}
._15{width:24.261227pt;}
._6{width:25.330667pt;}
._7{width:26.472531pt;}
._13{width:49.378560pt;}
.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;}
.y6e{bottom:5.600000pt;}
.y85{bottom:6.960000pt;}
.y88{bottom:7.040000pt;}
.y99{bottom:8.400000pt;}
.y96{bottom:8.480000pt;}
.ybb{bottom:10.960000pt;}
.yc2{bottom:18.480000pt;}
.ybe{bottom:22.640000pt;}
.y7a{bottom:25.200000pt;}
.y75{bottom:25.280000pt;}
.y72{bottom:25.306667pt;}
.yba{bottom:26.640000pt;}
.yc1{bottom:34.160000pt;}
.y74{bottom:44.880000pt;}
.y71{bottom:44.906667pt;}
.y79{bottom:64.400000pt;}
.y77{bottom:64.480000pt;}
.y70{bottom:64.506667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb8{bottom:99.946667pt;}
.y110{bottom:103.946667pt;}
.ya3{bottom:105.946667pt;}
.y10f{bottom:119.546667pt;}
.y28{bottom:126.266667pt;}
.ye4{bottom:129.626667pt;}
.ya2{bottom:130.186667pt;}
.yb7{bottom:131.626667pt;}
.y10e{bottom:135.226667pt;}
.y27{bottom:141.866667pt;}
.yb6{bottom:147.226667pt;}
.ya1{bottom:154.506667pt;}
.y26{bottom:157.546667pt;}
.y10d{bottom:158.826667pt;}
.y7b{bottom:158.906667pt;}
.ye3{bottom:161.306667pt;}
.y55{bottom:162.586667pt;}
.yb5{bottom:162.906667pt;}
.y78{bottom:169.786667pt;}
.ye2{bottom:176.906667pt;}
.yb4{bottom:178.506667pt;}
.ya0{bottom:178.826667pt;}
.y10c{bottom:182.506667pt;}
.y25{bottom:189.146667pt;}
.ye1{bottom:192.586667pt;}
.yb3{bottom:194.106667pt;}
.y54{bottom:194.986667pt;}
.y10b{bottom:198.106667pt;}
.y9f{bottom:203.146667pt;}
.y24{bottom:204.746667pt;}
.ye0{bottom:208.186667pt;}
.yb2{bottom:209.786667pt;}
.y53{bottom:210.666667pt;}
.y23{bottom:220.426667pt;}
.y10a{bottom:221.706667pt;}
.y52{bottom:226.266667pt;}
.y9e{bottom:227.386667pt;}
.y22{bottom:236.026667pt;}
.y109{bottom:237.386667pt;}
.ydf{bottom:239.786667pt;}
.yb1{bottom:240.746667pt;}
.y51{bottom:241.946667pt;}
.y76{bottom:251.626667pt;}
.y21{bottom:251.706667pt;}
.yde{bottom:255.466667pt;}
.y50{bottom:257.546667pt;}
.y108{bottom:260.986667pt;}
.y20{bottom:267.306667pt;}
.ydd{bottom:271.066667pt;}
.y9d{bottom:276.026667pt;}
.y107{bottom:276.666667pt;}
.y4f{bottom:281.146667pt;}
.y1f{bottom:282.906667pt;}
.ydc{bottom:286.666667pt;}
.y1e{bottom:298.586667pt;}
.y9c{bottom:300.266667pt;}
.ydb{bottom:302.346667pt;}
.y4e{bottom:312.746667pt;}
.y1d{bottom:314.186667pt;}
.y106{bottom:315.866667pt;}
.yda{bottom:317.946667pt;}
.yb0{bottom:319.306667pt;}
.y9b{bottom:324.586667pt;}
.y1c{bottom:329.866667pt;}
.y73{bottom:333.466667pt;}
.yd9{bottom:333.626667pt;}
.y105{bottom:339.546667pt;}
.y4d{bottom:345.146667pt;}
.y9a{bottom:348.906667pt;}
.yaf{bottom:350.906667pt;}
.y1b{bottom:353.786667pt;}
.y104{bottom:355.146667pt;}
.y4c{bottom:360.826667pt;}
.yd8{bottom:365.226667pt;}
.yae{bottom:366.586667pt;}
.y103{bottom:370.746667pt;}
.y98{bottom:373.226667pt;}
.y4b{bottom:376.426667pt;}
.yd7{bottom:380.826667pt;}
.yad{bottom:382.186667pt;}
.y4a{bottom:392.106667pt;}
.y102{bottom:394.426667pt;}
.y6f{bottom:395.706667pt;}
.yd6{bottom:396.506667pt;}
.y1a{bottom:396.986667pt;}
.y97{bottom:397.466667pt;}
.yac{bottom:397.786667pt;}
.yd5{bottom:412.106667pt;}
.yab{bottom:413.466667pt;}
.y49{bottom:415.706667pt;}
.y101{bottom:418.053333pt;}
.y95{bottom:421.813333pt;}
.yd4{bottom:427.813333pt;}
.yaa{bottom:429.093333pt;}
.y19{bottom:429.893333pt;}
.y100{bottom:433.733333pt;}
.yd3{bottom:443.413333pt;}
.y18{bottom:445.493333pt;}
.y94{bottom:446.133333pt;}
.y48{bottom:447.333333pt;}
.yff{bottom:457.333333pt;}
.ya9{bottom:460.773333pt;}
.y17{bottom:461.173333pt;}
.y47{bottom:463.013333pt;}
.yfe{bottom:472.933333pt;}
.yd2{bottom:475.013333pt;}
.y16{bottom:476.773333pt;}
.y6d{bottom:477.573333pt;}
.y46{bottom:478.613333pt;}
.y93{bottom:489.413333pt;}
.yd1{bottom:490.693333pt;}
.y15{bottom:492.373333pt;}
.y45{bottom:494.293333pt;}
.yfd{bottom:496.613333pt;}
.yd0{bottom:506.293333pt;}
.y14{bottom:508.053333pt;}
.y44{bottom:509.893333pt;}
.yfc{bottom:512.213333pt;}
.y92{bottom:513.013333pt;}
.y6c{bottom:519.573333pt;}
.ycf{bottom:521.973333pt;}
.y13{bottom:523.653333pt;}
.y43{bottom:525.493333pt;}
.yfb{bottom:527.893333pt;}
.yce{bottom:537.573333pt;}
.y12{bottom:539.333333pt;}
.y91{bottom:544.693333pt;}
.y42{bottom:549.093333pt;}
.y6b{bottom:551.093333pt;}
.yfa{bottom:551.493333pt;}
.ycd{bottom:553.173333pt;}
.y11{bottom:554.933333pt;}
.y90{bottom:560.293333pt;}
.yf9{bottom:567.093333pt;}
.y6a{bottom:567.493333pt;}
.ycc{bottom:568.853333pt;}
.y10{bottom:570.533333pt;}
.y8f{bottom:575.973333pt;}
.y41{bottom:578.133333pt;}
.ycb{bottom:584.453333pt;}
.yf{bottom:586.213333pt;}
.y11f{bottom:589.653333pt;}
.yf8{bottom:591.013333pt;}
.y8e{bottom:591.573333pt;}
.y69{bottom:599.893333pt;}
.ye{bottom:601.813333pt;}
.y11e{bottom:605.333333pt;}
.y8d{bottom:607.173333pt;}
.y40{bottom:610.053333pt;}
.y68{bottom:615.573333pt;}
.yca{bottom:616.133333pt;}
.yd{bottom:617.493333pt;}
.y8c{bottom:622.853333pt;}
.y11d{bottom:628.933333pt;}
.y67{bottom:631.173333pt;}
.yc9{bottom:631.733333pt;}
.yc{bottom:633.093333pt;}
.yf7{bottom:633.973333pt;}
.y11c{bottom:644.613333pt;}
.y66{bottom:646.773333pt;}
.yc8{bottom:647.333333pt;}
.yf6{bottom:649.573333pt;}
.y3f{bottom:652.933333pt;}
.y8b{bottom:653.893333pt;}
.yb{bottom:657.013333pt;}
.y65{bottom:662.453333pt;}
.yc7{bottom:663.013333pt;}
.y8a{bottom:664.853333pt;}
.y11b{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.yf5{bottom:673.493333pt;}
.y64{bottom:678.053333pt;}
.yc6{bottom:678.613333pt;}
.y11a{bottom:683.813333pt;}
.y3d{bottom:684.213333pt;}
.y89{bottom:689.173333pt;}
.yc5{bottom:694.293333pt;}
.y3c{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y63{bottom:701.973333pt;}
.yf4{bottom:706.373333pt;}
.y119{bottom:707.493333pt;}
.y87{bottom:713.413333pt;}
.y3b{bottom:715.493333pt;}
.yc4{bottom:718.133333pt;}
.yf3{bottom:722.053333pt;}
.y118{bottom:723.093333pt;}
.y3a{bottom:731.093333pt;}
.y9{bottom:731.733333pt;}
.y86{bottom:737.733333pt;}
.y117{bottom:738.693333pt;}
.y62{bottom:744.853333pt;}
.yf2{bottom:745.973333pt;}
.yc3{bottom:760.373333pt;}
.y84{bottom:762.053333pt;}
.y116{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.yc0{bottom:771.413333pt;}
.y61{bottom:777.253333pt;}
.y38{bottom:778.373333pt;}
.yf1{bottom:779.173333pt;}
.y115{bottom:785.973333pt;}
.y60{bottom:792.853333pt;}
.y37{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y114{bottom:801.653333pt;}
.y83{bottom:805.333333pt;}
.y5f{bottom:808.533333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yf0{bottom:822.053333pt;}
.ybf{bottom:822.853333pt;}
.y5e{bottom:824.133333pt;}
.y35{bottom:825.253333pt;}
.y82{bottom:836.933333pt;}
.yef{bottom:837.733333pt;}
.y5d{bottom:839.813333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y81{bottom:852.613333pt;}
.yee{bottom:853.333333pt;}
.y33{bottom:856.533333pt;}
.ybd{bottom:862.773333pt;}
.y5c{bottom:863.413333pt;}
.y113{bottom:864.533333pt;}
.y80{bottom:868.213333pt;}
.yed{bottom:868.933333pt;}
.y32{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y112{bottom:880.133333pt;}
.y7f{bottom:883.813333pt;}
.yec{bottom:884.613333pt;}
.y31{bottom:887.813333pt;}
.y5b{bottom:895.013333pt;}
.y3{bottom:899.840000pt;}
.yeb{bottom:900.240000pt;}
.ybc{bottom:902.720000pt;}
.y111{bottom:903.840000pt;}
.y7e{bottom:907.520000pt;}
.yea{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.yb9{bottom:927.040000pt;}
.y5a{bottom:927.440000pt;}
.ya8{bottom:928.400000pt;}
.ye9{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y7d{bottom:939.440000pt;}
.y59{bottom:943.040000pt;}
.ya7{bottom:944.000000pt;}
.ye8{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.y58{bottom:958.720000pt;}
.ya6{bottom:959.680000pt;}
.ye7{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y57{bottom:974.320000pt;}
.ye6{bottom:978.400000pt;}
.y7c{bottom:982.320000pt;}
.y56{bottom:990.000000pt;}
.ya5{bottom:990.640000pt;}
.y2c{bottom:998.000000pt;}
.ya4{bottom:1001.920000pt;}
.ye5{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:22.320000pt;}
.h11{height:23.600000pt;}
.h12{height:23.680000pt;}
.h14{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h10{height:36.034687pt;}
.h17{height:39.280000pt;}
.h16{height:39.306667pt;}
.h15{height:43.280000pt;}
.h6{height:45.246562pt;}
.h13{height:49.336436pt;}
.h5{height:49.581562pt;}
.h18{height:50.800000pt;}
.h9{height:53.309531pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.hd{height:61.600000pt;}
.h4{height:63.128437pt;}
.hf{height:81.120000pt;}
.he{height:81.200000pt;}
.hc{height:81.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:29.680000pt;}
.w14{width:54.560000pt;}
.w10{width:68.586667pt;}
.wa{width:76.826667pt;}
.w15{width:98.560000pt;}
.w7{width:119.840000pt;}
.w13{width:124.080000pt;}
.w11{width:126.240000pt;}
.wb{width:127.280000pt;}
.wd{width:128.986667pt;}
.wc{width:133.120000pt;}
.w5{width:160.000000pt;}
.w4{width:164.186667pt;}
.w6{width:166.106667pt;}
.w3{width:166.720000pt;}
.we{width:177.440000pt;}
.w9{width:178.720000pt;}
.w8{width:183.066667pt;}
.wf{width:186.320000pt;}
.w17{width:362.053333pt;}
.w12{width:392.373333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:64.319988pt;}
.xa{left:72.160000pt;}
.xf{left:73.840000pt;}
.x4{left:84.479988pt;}
.x1a{left:91.440000pt;}
.x1b{left:98.879988pt;}
.x5{left:150.906667pt;}
.x2{left:186.506655pt;}
.x14{left:205.786667pt;}
.xb{left:238.906667pt;}
.x10{left:279.226667pt;}
.x7{left:318.266667pt;}
.x9{left:322.906655pt;}
.x13{left:335.706655pt;}
.xc{left:359.466667pt;}
.x15{left:392.746667pt;}
.x11{left:413.066667pt;}
.x17{left:454.213333pt;}
.x16{left:461.973333pt;}
.x8{left:483.093333pt;}
.xd{left:543.173333pt;}
.x18{left:579.013333pt;}
.x19{left:634.293333pt;}
.x12{left:695.013322pt;}
.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; }
  