
    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_8855ad4cf4c8493b6367150b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_be0433a9397930a769956d57.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_00d17067318024eeaca01434.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_639ff75641ba71b0b6fbe66f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_772789f331ab01cf491f6254.woff')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_196d99f3b050970a00a065b8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1df5a748228618f17a080380.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.391800px;}
.ls11{letter-spacing:-0.267600px;}
.lse{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.031800px;}
.ls1a{letter-spacing:-0.014760px;}
.ls12{letter-spacing:-0.007560px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.115800px;}
.ls4{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.160800px;}
.lsf{letter-spacing:0.173400px;}
.ls7{letter-spacing:0.174600px;}
.ls10{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.300000px;}
.ls0{letter-spacing:13.347360px;}
.ls19{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.424400px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.387200px;}
.wsb{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.218840px;}
.wsf{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._f{margin-left:-3.294360px;}
._6{margin-left:-2.158800px;}
._0{margin-left:-1.110000px;}
._1{width:1.174320px;}
._e{width:2.309876px;}
._b{width:3.449881px;}
._a{width:4.569000px;}
._7{width:6.362520px;}
._c{width:7.815600px;}
._2{width:9.552600px;}
._3{width:11.006400px;}
._4{width:12.178854px;}
._5{width:14.428800px;}
._10{width:15.685091px;}
._d{width:16.844878px;}
._8{width:17.916000px;}
._9{width:19.392118px;}
._11{width:20.495655px;}
._1b{width:29.826724px;}
._1a{width:30.967319px;}
._16{width:32.227081px;}
._18{width:37.063800px;}
._19{width:39.318480px;}
._12{width:43.526880px;}
._15{width:48.452520px;}
._13{width:67.635000px;}
._14{width:68.717160px;}
._17{width:187.544160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:7.830000px;}
.y7c{bottom:7.920000px;}
.yb9{bottom:26.550000px;}
.yd0{bottom:35.190000px;}
.yd3{bottom:35.280000px;}
.yc3{bottom:62.550000px;}
.ybd{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y111{bottom:111.450000px;}
.y59{bottom:121.530000px;}
.y87{bottom:123.960000px;}
.yb2{bottom:125.940000px;}
.y13b{bottom:136.380000px;}
.y86{bottom:138.000000px;}
.y58{bottom:139.170000px;}
.yb1{bottom:143.580000px;}
.y25{bottom:145.110000px;}
.y110{bottom:147.000000px;}
.y85{bottom:150.150000px;}
.yc8{bottom:151.860000px;}
.y13a{bottom:153.930000px;}
.y57{bottom:156.720000px;}
.yb0{bottom:161.130000px;}
.y24{bottom:162.750000px;}
.y10f{bottom:164.640000px;}
.y56{bottom:174.270000px;}
.y84{bottom:177.510000px;}
.yaf{bottom:178.680000px;}
.yca{bottom:179.220000px;}
.y23{bottom:180.300000px;}
.y139{bottom:180.570000px;}
.y10e{bottom:182.190000px;}
.y55{bottom:191.910000px;}
.y22{bottom:197.940000px;}
.y138{bottom:198.120000px;}
.y83{bottom:204.870000px;}
.yc9{bottom:206.580000px;}
.ye5{bottom:206.850000px;}
.y54{bottom:209.460000px;}
.yae{bottom:214.320000px;}
.y10d{bottom:217.830000px;}
.ye4{bottom:224.400000px;}
.y137{bottom:224.670000px;}
.y53{bottom:227.100000px;}
.yad{bottom:231.870000px;}
.y82{bottom:232.230000px;}
.y21{bottom:233.490000px;}
.yc7{bottom:233.850000px;}
.y10c{bottom:235.380000px;}
.ye3{bottom:242.040000px;}
.y136{bottom:242.310000px;}
.y52{bottom:244.650000px;}
.yac{bottom:249.510000px;}
.y20{bottom:251.040000px;}
.y10b{bottom:252.930000px;}
.y81{bottom:259.500000px;}
.ye2{bottom:259.590000px;}
.yc6{bottom:261.210000px;}
.yab{bottom:267.060000px;}
.y1f{bottom:268.680000px;}
.y135{bottom:268.860000px;}
.y10a{bottom:270.570000px;}
.y51{bottom:280.200000px;}
.yaa{bottom:284.610000px;}
.ye1{bottom:286.140000px;}
.y1e{bottom:286.230000px;}
.y134{bottom:286.500000px;}
.y80{bottom:286.860000px;}
.y109{bottom:288.120000px;}
.yc2{bottom:288.570000px;}
.y50{bottom:297.840000px;}
.y1d{bottom:303.870000px;}
.y108{bottom:305.760000px;}
.y133{bottom:313.050000px;}
.y7f{bottom:314.220000px;}
.y4f{bottom:315.390000px;}
.yc5{bottom:315.840000px;}
.ya9{bottom:320.250000px;}
.ye0{bottom:321.780000px;}
.y132{bottom:330.600000px;}
.y1c{bottom:330.690000px;}
.y4e{bottom:332.940000px;}
.ya8{bottom:337.800000px;}
.ydf{bottom:339.330000px;}
.y107{bottom:341.310000px;}
.y7d{bottom:341.580000px;}
.yc4{bottom:343.200000px;}
.y4d{bottom:350.580000px;}
.ya7{bottom:355.440000px;}
.y131{bottom:357.240000px;}
.y106{bottom:358.860000px;}
.yde{bottom:365.970000px;}
.y4c{bottom:368.130000px;}
.y7b{bottom:368.850000px;}
.yc1{bottom:370.560000px;}
.ya6{bottom:372.990000px;}
.y130{bottom:374.790000px;}
.y1b{bottom:379.290000px;}
.y4b{bottom:385.770000px;}
.ya5{bottom:390.540000px;}
.y105{bottom:394.500000px;}
.yc0{bottom:397.920000px;}
.ydd{bottom:398.910000px;}
.y12f{bottom:401.340000px;}
.ya4{bottom:408.180000px;}
.y104{bottom:412.050000px;}
.y1a{bottom:416.370000px;}
.y7a{bottom:417.540000px;}
.y12e{bottom:418.980000px;}
.y4a{bottom:421.320000px;}
.ybc{bottom:425.190000px;}
.ya3{bottom:425.730000px;}
.ydb{bottom:426.270000px;}
.y103{bottom:429.690000px;}
.y19{bottom:433.920000px;}
.y12d{bottom:436.530000px;}
.y49{bottom:438.870000px;}
.ya2{bottom:443.370000px;}
.y18{bottom:451.560000px;}
.ybf{bottom:452.550000px;}
.y79{bottom:453.180000px;}
.ydc{bottom:453.540000px;}
.y48{bottom:456.510000px;}
.y12c{bottom:463.170000px;}
.y102{bottom:465.240000px;}
.y17{bottom:469.110000px;}
.y78{bottom:470.760000px;}
.y47{bottom:474.090000px;}
.ya1{bottom:478.950000px;}
.ybe{bottom:479.940000px;}
.y12b{bottom:480.750000px;}
.yd9{bottom:480.930000px;}
.y101{bottom:482.820000px;}
.y77{bottom:488.400000px;}
.y46{bottom:491.730000px;}
.ya0{bottom:496.500000px;}
.y100{bottom:500.460000px;}
.y16{bottom:504.690000px;}
.y76{bottom:505.950000px;}
.ybb{bottom:507.300000px;}
.yda{bottom:508.290000px;}
.y45{bottom:509.280000px;}
.y9f{bottom:514.140000px;}
.yff{bottom:518.010000px;}
.y15{bottom:522.330000px;}
.y75{bottom:523.500000px;}
.y12a{bottom:524.940000px;}
.y44{bottom:526.830000px;}
.y9e{bottom:531.690000px;}
.yba{bottom:534.570000px;}
.yd8{bottom:535.560000px;}
.yfe{bottom:535.650000px;}
.y14{bottom:539.880000px;}
.y74{bottom:541.140000px;}
.y43{bottom:544.470000px;}
.y9d{bottom:549.330000px;}
.y129{bottom:551.490000px;}
.y13{bottom:557.520000px;}
.y73{bottom:558.690000px;}
.yb8{bottom:561.930000px;}
.yfd{bottom:562.470000px;}
.yd7{bottom:562.920000px;}
.y9c{bottom:566.880000px;}
.y128{bottom:569.130000px;}
.y42{bottom:571.020000px;}
.y72{bottom:576.330000px;}
.y9b{bottom:584.430000px;}
.y127{bottom:586.680000px;}
.yd6{bottom:590.280000px;}
.y12{bottom:593.070000px;}
.y71{bottom:593.880000px;}
.y9a{bottom:602.070000px;}
.y41{bottom:606.660000px;}
.y11{bottom:610.620000px;}
.yfc{bottom:610.800000px;}
.y70{bottom:611.430000px;}
.y126{bottom:613.230000px;}
.yd5{bottom:617.640000px;}
.y99{bottom:619.620000px;}
.y40{bottom:624.210000px;}
.y10{bottom:628.260000px;}
.yfb{bottom:628.350000px;}
.y6f{bottom:629.070000px;}
.y125{bottom:630.870000px;}
.y3f{bottom:641.760000px;}
.yd2{bottom:644.910000px;}
.yf{bottom:645.810000px;}
.yfa{bottom:645.990000px;}
.y6e{bottom:646.620000px;}
.y98{bottom:655.260000px;}
.y124{bottom:657.420000px;}
.y3e{bottom:659.400000px;}
.yf9{bottom:663.540000px;}
.yb7{bottom:663.810000px;}
.yd4{bottom:672.270000px;}
.y97{bottom:672.810000px;}
.y123{bottom:675.060000px;}
.y3d{bottom:676.950000px;}
.yf8{bottom:681.090000px;}
.yb6{bottom:681.360000px;}
.ye{bottom:681.450000px;}
.y6d{bottom:682.260000px;}
.y96{bottom:690.360000px;}
.y3c{bottom:694.590000px;}
.yd{bottom:699.000000px;}
.ycf{bottom:699.630000px;}
.y6c{bottom:699.810000px;}
.y122{bottom:701.610000px;}
.y95{bottom:708.000000px;}
.y3b{bottom:712.140000px;}
.yc{bottom:716.550000px;}
.yf7{bottom:716.730000px;}
.y6b{bottom:717.360000px;}
.y121{bottom:719.160000px;}
.y94{bottom:725.550000px;}
.yd1{bottom:726.990000px;}
.y3a{bottom:729.690000px;}
.yb5{bottom:734.190000px;}
.yf6{bottom:734.280000px;}
.y6a{bottom:735.000000px;}
.y120{bottom:736.800000px;}
.y93{bottom:743.190000px;}
.yb{bottom:743.460000px;}
.y39{bottom:747.330000px;}
.yb4{bottom:751.740000px;}
.yf5{bottom:751.920000px;}
.y69{bottom:752.550000px;}
.yce{bottom:754.260000px;}
.y92{bottom:760.740000px;}
.y11f{bottom:763.350000px;}
.yf4{bottom:769.470000px;}
.y68{bottom:770.190000px;}
.y38{bottom:773.880000px;}
.yb3{bottom:778.290000px;}
.y11e{bottom:780.990000px;}
.ycd{bottom:781.620000px;}
.y67{bottom:787.740000px;}
.ya{bottom:791.790000px;}
.y91{bottom:796.290000px;}
.yf3{bottom:796.380000px;}
.y11d{bottom:798.540000px;}
.y141{bottom:804.930000px;}
.y66{bottom:805.290000px;}
.ycc{bottom:808.980000px;}
.y37{bottom:809.790000px;}
.y90{bottom:813.930000px;}
.y140{bottom:822.480000px;}
.y65{bottom:822.930000px;}
.y11c{bottom:825.090000px;}
.y9{bottom:827.340000px;}
.y8f{bottom:831.480000px;}
.y11b{bottom:842.730000px;}
.yf2{bottom:844.620000px;}
.y8e{bottom:849.030000px;}
.ycb{bottom:857.670000px;}
.y36{bottom:858.030000px;}
.y64{bottom:858.480000px;}
.y11a{bottom:860.280000px;}
.yf1{bottom:862.260000px;}
.y8{bottom:863.160000px;}
.y8d{bottom:866.670000px;}
.y35{bottom:875.670000px;}
.y63{bottom:876.030000px;}
.yf0{bottom:879.810000px;}
.y8c{bottom:884.220000px;}
.y119{bottom:887.190000px;}
.y34{bottom:893.220000px;}
.y62{bottom:893.670000px;}
.yef{bottom:897.450000px;}
.y7{bottom:899.160000px;}
.y8b{bottom:901.860000px;}
.y33{bottom:910.860000px;}
.y61{bottom:911.220000px;}
.yee{bottom:915.000000px;}
.y32{bottom:928.410000px;}
.y60{bottom:928.860000px;}
.y6{bottom:935.250000px;}
.y118{bottom:935.430000px;}
.y31{bottom:945.960000px;}
.y5f{bottom:946.410000px;}
.yed{bottom:950.550000px;}
.y5{bottom:954.600000px;}
.y13f{bottom:954.960000px;}
.y117{bottom:962.340000px;}
.y30{bottom:963.600000px;}
.y5e{bottom:963.960000px;}
.yec{bottom:968.190000px;}
.y13e{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y2f{bottom:981.150000px;}
.y5d{bottom:981.600000px;}
.yeb{bottom:985.740000px;}
.y5c{bottom:999.150000px;}
.y116{bottom:999.420000px;}
.yea{bottom:1003.290000px;}
.y3{bottom:1012.230000px;}
.y2e{bottom:1016.820000px;}
.y115{bottom:1026.360000px;}
.ye9{bottom:1030.230000px;}
.y2d{bottom:1034.370000px;}
.y8a{bottom:1034.820000px;}
.y13d{bottom:1043.370000px;}
.y2c{bottom:1051.920000px;}
.y89{bottom:1052.370000px;}
.y13c{bottom:1060.920000px;}
.y114{bottom:1063.350000px;}
.y2b{bottom:1069.560000px;}
.y88{bottom:1069.920000px;}
.ye8{bottom:1078.560000px;}
.y2a{bottom:1087.110000px;}
.y5b{bottom:1087.560000px;}
.y113{bottom:1090.260000px;}
.ye7{bottom:1096.110000px;}
.y5a{bottom:1105.110000px;}
.ye6{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y112{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.hb{height:40.539023px;}
.h6{height:50.902383px;}
.hf{height:53.910000px;}
.h11{height:53.940000px;}
.h10{height:54.000000px;}
.h5{height:55.779258px;}
.h12{height:59.973223px;}
.h13{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:81.270000px;}
.hc{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:48.420000px;}
.w15{width:48.780000px;}
.wa{width:64.890000px;}
.w19{width:69.210000px;}
.w18{width:69.300000px;}
.w4{width:73.800000px;}
.w13{width:74.610000px;}
.wf{width:83.430000px;}
.w6{width:89.670000px;}
.w8{width:93.060000px;}
.wb{width:101.280000px;}
.w5{width:104.220000px;}
.w11{width:104.310000px;}
.w14{width:104.430000px;}
.w7{width:113.310000px;}
.w12{width:139.230000px;}
.wc{width:141.210000px;}
.we{width:153.540000px;}
.w17{width:179.760000px;}
.w3{width:184.980000px;}
.w9{width:237.690000px;}
.w16{width:369.210000px;}
.wd{width:547.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:86.039987px;}
.x17{left:111.239987px;}
.x4{left:115.200000px;}
.xd{left:173.010000px;}
.x2{left:192.719987px;}
.x12{left:222.240000px;}
.x13{left:262.020000px;}
.x6{left:300.900000px;}
.x11{left:327.270000px;}
.x16{left:332.040000px;}
.xc{left:366.149987px;}
.x7{left:375.420000px;}
.x14{left:401.970000px;}
.xe{left:411.420000px;}
.xf{left:477.030000px;}
.x8{left:480.450000px;}
.x9{left:570.930000px;}
.x10{left:579.030000px;}
.x15{left:582.450000px;}
.xa{left:684.960000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.348267pt;}
.ls11{letter-spacing:-0.237867pt;}
.lse{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.028267pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls12{letter-spacing:-0.006720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.102933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.142933pt;}
.lsf{letter-spacing:0.154133pt;}
.ls7{letter-spacing:0.155200pt;}
.ls10{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.266667pt;}
.ls0{letter-spacing:11.864320pt;}
.ls19{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws2{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.932800pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.899733pt;}
.wsb{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.750080pt;}
.wsf{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._f{margin-left:-2.928320pt;}
._6{margin-left:-1.918934pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043840pt;}
._e{width:2.053223pt;}
._b{width:3.066561pt;}
._a{width:4.061333pt;}
._7{width:5.655573pt;}
._c{width:6.947200pt;}
._2{width:8.491200pt;}
._3{width:9.783467pt;}
._4{width:10.825648pt;}
._5{width:12.825600pt;}
._10{width:13.942303pt;}
._d{width:14.973225pt;}
._8{width:15.925334pt;}
._9{width:17.237438pt;}
._11{width:18.218360pt;}
._1b{width:26.512644pt;}
._1a{width:27.526505pt;}
._16{width:28.646294pt;}
._18{width:32.945600pt;}
._19{width:34.949760pt;}
._12{width:38.690560pt;}
._15{width:43.068907pt;}
._13{width:60.120000pt;}
._14{width:61.081920pt;}
._17{width:166.705920pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:6.960000pt;}
.y7c{bottom:7.040000pt;}
.yb9{bottom:23.600000pt;}
.yd0{bottom:31.280000pt;}
.yd3{bottom:31.360000pt;}
.yc3{bottom:55.600000pt;}
.ybd{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y111{bottom:99.066667pt;}
.y59{bottom:108.026667pt;}
.y87{bottom:110.186667pt;}
.yb2{bottom:111.946667pt;}
.y13b{bottom:121.226667pt;}
.y86{bottom:122.666667pt;}
.y58{bottom:123.706667pt;}
.yb1{bottom:127.626667pt;}
.y25{bottom:128.986667pt;}
.y110{bottom:130.666667pt;}
.y85{bottom:133.466667pt;}
.yc8{bottom:134.986667pt;}
.y13a{bottom:136.826667pt;}
.y57{bottom:139.306667pt;}
.yb0{bottom:143.226667pt;}
.y24{bottom:144.666667pt;}
.y10f{bottom:146.346667pt;}
.y56{bottom:154.906667pt;}
.y84{bottom:157.786667pt;}
.yaf{bottom:158.826667pt;}
.yca{bottom:159.306667pt;}
.y23{bottom:160.266667pt;}
.y139{bottom:160.506667pt;}
.y10e{bottom:161.946667pt;}
.y55{bottom:170.586667pt;}
.y22{bottom:175.946667pt;}
.y138{bottom:176.106667pt;}
.y83{bottom:182.106667pt;}
.yc9{bottom:183.626667pt;}
.ye5{bottom:183.866667pt;}
.y54{bottom:186.186667pt;}
.yae{bottom:190.506667pt;}
.y10d{bottom:193.626667pt;}
.ye4{bottom:199.466667pt;}
.y137{bottom:199.706667pt;}
.y53{bottom:201.866667pt;}
.yad{bottom:206.106667pt;}
.y82{bottom:206.426667pt;}
.y21{bottom:207.546667pt;}
.yc7{bottom:207.866667pt;}
.y10c{bottom:209.226667pt;}
.ye3{bottom:215.146667pt;}
.y136{bottom:215.386667pt;}
.y52{bottom:217.466667pt;}
.yac{bottom:221.786667pt;}
.y20{bottom:223.146667pt;}
.y10b{bottom:224.826667pt;}
.y81{bottom:230.666667pt;}
.ye2{bottom:230.746667pt;}
.yc6{bottom:232.186667pt;}
.yab{bottom:237.386667pt;}
.y1f{bottom:238.826667pt;}
.y135{bottom:238.986667pt;}
.y10a{bottom:240.506667pt;}
.y51{bottom:249.066667pt;}
.yaa{bottom:252.986667pt;}
.ye1{bottom:254.346667pt;}
.y1e{bottom:254.426667pt;}
.y134{bottom:254.666667pt;}
.y80{bottom:254.986667pt;}
.y109{bottom:256.106667pt;}
.yc2{bottom:256.506667pt;}
.y50{bottom:264.746667pt;}
.y1d{bottom:270.106667pt;}
.y108{bottom:271.786667pt;}
.y133{bottom:278.266667pt;}
.y7f{bottom:279.306667pt;}
.y4f{bottom:280.346667pt;}
.yc5{bottom:280.746667pt;}
.ya9{bottom:284.666667pt;}
.ye0{bottom:286.026667pt;}
.y132{bottom:293.866667pt;}
.y1c{bottom:293.946667pt;}
.y4e{bottom:295.946667pt;}
.ya8{bottom:300.266667pt;}
.ydf{bottom:301.626667pt;}
.y107{bottom:303.386667pt;}
.y7d{bottom:303.626667pt;}
.yc4{bottom:305.066667pt;}
.y4d{bottom:311.626667pt;}
.ya7{bottom:315.946667pt;}
.y131{bottom:317.546667pt;}
.y106{bottom:318.986667pt;}
.yde{bottom:325.306667pt;}
.y4c{bottom:327.226667pt;}
.y7b{bottom:327.866667pt;}
.yc1{bottom:329.386667pt;}
.ya6{bottom:331.546667pt;}
.y130{bottom:333.146667pt;}
.y1b{bottom:337.146667pt;}
.y4b{bottom:342.906667pt;}
.ya5{bottom:347.146667pt;}
.y105{bottom:350.666667pt;}
.yc0{bottom:353.706667pt;}
.ydd{bottom:354.586667pt;}
.y12f{bottom:356.746667pt;}
.ya4{bottom:362.826667pt;}
.y104{bottom:366.266667pt;}
.y1a{bottom:370.106667pt;}
.y7a{bottom:371.146667pt;}
.y12e{bottom:372.426667pt;}
.y4a{bottom:374.506667pt;}
.ybc{bottom:377.946667pt;}
.ya3{bottom:378.426667pt;}
.ydb{bottom:378.906667pt;}
.y103{bottom:381.946667pt;}
.y19{bottom:385.706667pt;}
.y12d{bottom:388.026667pt;}
.y49{bottom:390.106667pt;}
.ya2{bottom:394.106667pt;}
.y18{bottom:401.386667pt;}
.ybf{bottom:402.266667pt;}
.y79{bottom:402.826667pt;}
.ydc{bottom:403.146667pt;}
.y48{bottom:405.786667pt;}
.y12c{bottom:411.706667pt;}
.y102{bottom:413.546667pt;}
.y17{bottom:416.986667pt;}
.y78{bottom:418.453333pt;}
.y47{bottom:421.413333pt;}
.ya1{bottom:425.733333pt;}
.ybe{bottom:426.613333pt;}
.y12b{bottom:427.333333pt;}
.yd9{bottom:427.493333pt;}
.y101{bottom:429.173333pt;}
.y77{bottom:434.133333pt;}
.y46{bottom:437.093333pt;}
.ya0{bottom:441.333333pt;}
.y100{bottom:444.853333pt;}
.y16{bottom:448.613333pt;}
.y76{bottom:449.733333pt;}
.ybb{bottom:450.933333pt;}
.yda{bottom:451.813333pt;}
.y45{bottom:452.693333pt;}
.y9f{bottom:457.013333pt;}
.yff{bottom:460.453333pt;}
.y15{bottom:464.293333pt;}
.y75{bottom:465.333333pt;}
.y12a{bottom:466.613333pt;}
.y44{bottom:468.293333pt;}
.y9e{bottom:472.613333pt;}
.yba{bottom:475.173333pt;}
.yd8{bottom:476.053333pt;}
.yfe{bottom:476.133333pt;}
.y14{bottom:479.893333pt;}
.y74{bottom:481.013333pt;}
.y43{bottom:483.973333pt;}
.y9d{bottom:488.293333pt;}
.y129{bottom:490.213333pt;}
.y13{bottom:495.573333pt;}
.y73{bottom:496.613333pt;}
.yb8{bottom:499.493333pt;}
.yfd{bottom:499.973333pt;}
.yd7{bottom:500.373333pt;}
.y9c{bottom:503.893333pt;}
.y128{bottom:505.893333pt;}
.y42{bottom:507.573333pt;}
.y72{bottom:512.293333pt;}
.y9b{bottom:519.493333pt;}
.y127{bottom:521.493333pt;}
.yd6{bottom:524.693333pt;}
.y12{bottom:527.173333pt;}
.y71{bottom:527.893333pt;}
.y9a{bottom:535.173333pt;}
.y41{bottom:539.253333pt;}
.y11{bottom:542.773333pt;}
.yfc{bottom:542.933333pt;}
.y70{bottom:543.493333pt;}
.y126{bottom:545.093333pt;}
.yd5{bottom:549.013333pt;}
.y99{bottom:550.773333pt;}
.y40{bottom:554.853333pt;}
.y10{bottom:558.453333pt;}
.yfb{bottom:558.533333pt;}
.y6f{bottom:559.173333pt;}
.y125{bottom:560.773333pt;}
.y3f{bottom:570.453333pt;}
.yd2{bottom:573.253333pt;}
.yf{bottom:574.053333pt;}
.yfa{bottom:574.213333pt;}
.y6e{bottom:574.773333pt;}
.y98{bottom:582.453333pt;}
.y124{bottom:584.373333pt;}
.y3e{bottom:586.133333pt;}
.yf9{bottom:589.813333pt;}
.yb7{bottom:590.053333pt;}
.yd4{bottom:597.573333pt;}
.y97{bottom:598.053333pt;}
.y123{bottom:600.053333pt;}
.y3d{bottom:601.733333pt;}
.yf8{bottom:605.413333pt;}
.yb6{bottom:605.653333pt;}
.ye{bottom:605.733333pt;}
.y6d{bottom:606.453333pt;}
.y96{bottom:613.653333pt;}
.y3c{bottom:617.413333pt;}
.yd{bottom:621.333333pt;}
.ycf{bottom:621.893333pt;}
.y6c{bottom:622.053333pt;}
.y122{bottom:623.653333pt;}
.y95{bottom:629.333333pt;}
.y3b{bottom:633.013333pt;}
.yc{bottom:636.933333pt;}
.yf7{bottom:637.093333pt;}
.y6b{bottom:637.653333pt;}
.y121{bottom:639.253333pt;}
.y94{bottom:644.933333pt;}
.yd1{bottom:646.213333pt;}
.y3a{bottom:648.613333pt;}
.yb5{bottom:652.613333pt;}
.yf6{bottom:652.693333pt;}
.y6a{bottom:653.333333pt;}
.y120{bottom:654.933333pt;}
.y93{bottom:660.613333pt;}
.yb{bottom:660.853333pt;}
.y39{bottom:664.293333pt;}
.yb4{bottom:668.213333pt;}
.yf5{bottom:668.373333pt;}
.y69{bottom:668.933333pt;}
.yce{bottom:670.453333pt;}
.y92{bottom:676.213333pt;}
.y11f{bottom:678.533333pt;}
.yf4{bottom:683.973333pt;}
.y68{bottom:684.613333pt;}
.y38{bottom:687.893333pt;}
.yb3{bottom:691.813333pt;}
.y11e{bottom:694.213333pt;}
.ycd{bottom:694.773333pt;}
.y67{bottom:700.213333pt;}
.ya{bottom:703.813333pt;}
.y91{bottom:707.813333pt;}
.yf3{bottom:707.893333pt;}
.y11d{bottom:709.813333pt;}
.y141{bottom:715.493333pt;}
.y66{bottom:715.813333pt;}
.ycc{bottom:719.093333pt;}
.y37{bottom:719.813333pt;}
.y90{bottom:723.493333pt;}
.y140{bottom:731.093333pt;}
.y65{bottom:731.493333pt;}
.y11c{bottom:733.413333pt;}
.y9{bottom:735.413333pt;}
.y8f{bottom:739.093333pt;}
.y11b{bottom:749.093333pt;}
.yf2{bottom:750.773333pt;}
.y8e{bottom:754.693333pt;}
.ycb{bottom:762.373333pt;}
.y36{bottom:762.693333pt;}
.y64{bottom:763.093333pt;}
.y11a{bottom:764.693333pt;}
.yf1{bottom:766.453333pt;}
.y8{bottom:767.253333pt;}
.y8d{bottom:770.373333pt;}
.y35{bottom:778.373333pt;}
.y63{bottom:778.693333pt;}
.yf0{bottom:782.053333pt;}
.y8c{bottom:785.973333pt;}
.y119{bottom:788.613333pt;}
.y34{bottom:793.973333pt;}
.y62{bottom:794.373333pt;}
.yef{bottom:797.733333pt;}
.y7{bottom:799.253333pt;}
.y8b{bottom:801.653333pt;}
.y33{bottom:809.653333pt;}
.y61{bottom:809.973333pt;}
.yee{bottom:813.333333pt;}
.y32{bottom:825.253333pt;}
.y60{bottom:825.653333pt;}
.y6{bottom:831.333333pt;}
.y118{bottom:831.493333pt;}
.y31{bottom:840.853333pt;}
.y5f{bottom:841.253333pt;}
.yed{bottom:844.933333pt;}
.y5{bottom:848.533333pt;}
.y13f{bottom:848.853333pt;}
.y117{bottom:855.413333pt;}
.y30{bottom:856.533333pt;}
.y5e{bottom:856.853333pt;}
.yec{bottom:860.613333pt;}
.y13e{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y2f{bottom:872.133333pt;}
.y5d{bottom:872.533333pt;}
.yeb{bottom:876.213333pt;}
.y5c{bottom:888.133333pt;}
.y116{bottom:888.373333pt;}
.yea{bottom:891.813333pt;}
.y3{bottom:899.760000pt;}
.y2e{bottom:903.840000pt;}
.y115{bottom:912.320000pt;}
.ye9{bottom:915.760000pt;}
.y2d{bottom:919.440000pt;}
.y8a{bottom:919.840000pt;}
.y13d{bottom:927.440000pt;}
.y2c{bottom:935.040000pt;}
.y89{bottom:935.440000pt;}
.y13c{bottom:943.040000pt;}
.y114{bottom:945.200000pt;}
.y2b{bottom:950.720000pt;}
.y88{bottom:951.040000pt;}
.ye8{bottom:958.720000pt;}
.y2a{bottom:966.320000pt;}
.y5b{bottom:966.720000pt;}
.y113{bottom:969.120000pt;}
.ye7{bottom:974.320000pt;}
.y5a{bottom:982.320000pt;}
.ye6{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y112{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.hb{height:36.034687pt;}
.h6{height:45.246562pt;}
.hf{height:47.920000pt;}
.h11{height:47.946667pt;}
.h10{height:48.000000pt;}
.h5{height:49.581562pt;}
.h12{height:53.309531pt;}
.h13{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:72.240000pt;}
.hc{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:43.040000pt;}
.w15{width:43.360000pt;}
.wa{width:57.680000pt;}
.w19{width:61.520000pt;}
.w18{width:61.600000pt;}
.w4{width:65.600000pt;}
.w13{width:66.320000pt;}
.wf{width:74.160000pt;}
.w6{width:79.706667pt;}
.w8{width:82.720000pt;}
.wb{width:90.026667pt;}
.w5{width:92.640000pt;}
.w11{width:92.720000pt;}
.w14{width:92.826667pt;}
.w7{width:100.720000pt;}
.w12{width:123.760000pt;}
.wc{width:125.520000pt;}
.we{width:136.480000pt;}
.w17{width:159.786667pt;}
.w3{width:164.426667pt;}
.w9{width:211.280000pt;}
.w16{width:328.186667pt;}
.wd{width:486.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:76.479988pt;}
.x17{left:98.879988pt;}
.x4{left:102.400000pt;}
.xd{left:153.786667pt;}
.x2{left:171.306655pt;}
.x12{left:197.546667pt;}
.x13{left:232.906667pt;}
.x6{left:267.466667pt;}
.x11{left:290.906667pt;}
.x16{left:295.146667pt;}
.xc{left:325.466655pt;}
.x7{left:333.706667pt;}
.x14{left:357.306667pt;}
.xe{left:365.706667pt;}
.xf{left:424.026667pt;}
.x8{left:427.066667pt;}
.x9{left:507.493333pt;}
.x10{left:514.693333pt;}
.x15{left:517.733333pt;}
.xa{left:608.853333pt;}
.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; }
  