
    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_5bc83b73e6f5a86ec1e85a9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_9f1fc08d4c2df65c9c9a84bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b33284677703d91738e12dea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_18a9684a3643e09be0abe545.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0af81d0986839fda12e6c69d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_1fc00fe73fcecff238cf9787.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7f018873dbcce435049245d4.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-85.680000px;}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v4{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.618000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.169800px;}
.ls29{letter-spacing:-0.158400px;}
.ls13{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls2a{letter-spacing:0.034560px;}
.ls14{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.109200px;}
.ls2e{letter-spacing:0.123600px;}
.ls15{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.561600px;}
.ls1f{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.lse{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.600000px;}
.ls1{letter-spacing:4.320000px;}
.ls16{letter-spacing:5.760000px;}
.ls24{letter-spacing:6.480000px;}
.ls17{letter-spacing:12.240000px;}
.ls2b{letter-spacing:12.960000px;}
.lsa{letter-spacing:14.400000px;}
.ls2{letter-spacing:28.080000px;}
.ls25{letter-spacing:34.841280px;}
.lsc{letter-spacing:60.480000px;}
.ls23{letter-spacing:67.961280px;}
.ls2c{letter-spacing:763.500000px;}
.ls22{letter-spacing:859.836000px;}
.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:-80.280000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.422720px;}
.ws7{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.496000px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.297800px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-2.350080px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._b{width:3.245760px;}
._9{width:5.166720px;}
._a{width:6.684480px;}
._13{width:8.089920px;}
._8{width:9.377280px;}
._7{width:10.598400px;}
._f{width:11.675520px;}
._e{width:12.784320px;}
._12{width:13.896000px;}
._10{width:14.976000px;}
._11{width:15.984000px;}
._c{width:18.745920px;}
._d{width:19.964160px;}
._14{width:21.600000px;}
._16{width:24.048000px;}
._15{width:25.344000px;}
._17{width:71.208000px;}
._2{width:465.960000px;}
._1{width:480.335520px;}
._4{width:756.300000px;}
._3{width:831.888480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:321.120000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yac{bottom:4.500000px;}
.y8a{bottom:4.860000px;}
.y3a{bottom:5.025000px;}
.y97{bottom:5.040000px;}
.ybc{bottom:14.760000px;}
.yb0{bottom:14.940000px;}
.y87{bottom:15.480000px;}
.y84{bottom:15.660000px;}
.y9{bottom:21.240000px;}
.yb3{bottom:25.200000px;}
.y8c{bottom:26.100000px;}
.y89{bottom:26.280000px;}
.ya{bottom:31.140000px;}
.ybb{bottom:35.460000px;}
.yaf{bottom:35.640000px;}
.y94{bottom:36.720000px;}
.y86{bottom:36.900000px;}
.y8f{bottom:36.945000px;}
.y8{bottom:41.940000px;}
.yb2{bottom:45.900000px;}
.y88{bottom:47.520000px;}
.y91{bottom:47.565000px;}
.yba{bottom:56.160000px;}
.yae{bottom:56.340000px;}
.y5{bottom:57.600000px;}
.y93{bottom:58.140000px;}
.y8e{bottom:58.185000px;}
.y7{bottom:62.670000px;}
.yb1{bottom:66.600000px;}
.yb7{bottom:66.645000px;}
.y95{bottom:68.760000px;}
.y90{bottom:68.985000px;}
.ybf{bottom:76.860000px;}
.yb6{bottom:77.085000px;}
.y4{bottom:86.940000px;}
.ybe{bottom:87.300000px;}
.yb8{bottom:87.345000px;}
.y3{bottom:119.880000px;}
.y7f{bottom:143.316000px;}
.yc8{bottom:145.476000px;}
.y6a{bottom:146.016000px;}
.y38{bottom:146.556000px;}
.yaa{bottom:149.796000px;}
.ye4{bottom:152.490000px;}
.y7e{bottom:164.010000px;}
.yc7{bottom:166.170000px;}
.y69{bottom:166.710000px;}
.y37{bottom:167.250000px;}
.ya9{bottom:170.490000px;}
.ye3{bottom:171.390000px;}
.y7d{bottom:184.710000px;}
.yc6{bottom:186.870000px;}
.y68{bottom:187.410000px;}
.y36{bottom:187.950000px;}
.ye2{bottom:190.470000px;}
.ya8{bottom:191.190000px;}
.y7c{bottom:205.410000px;}
.yc5{bottom:206.850000px;}
.y67{bottom:208.110000px;}
.y35{bottom:208.650000px;}
.ya7{bottom:212.250000px;}
.yc4{bottom:220.350000px;}
.y7b{bottom:226.110000px;}
.ye1{bottom:228.270000px;}
.y66{bottom:228.810000px;}
.y34{bottom:229.350000px;}
.ya6{bottom:233.670000px;}
.y7a{bottom:246.810000px;}
.ye0{bottom:247.350000px;}
.y65{bottom:249.510000px;}
.y33{bottom:250.050000px;}
.ya5{bottom:254.910000px;}
.ydf{bottom:266.250000px;}
.y79{bottom:267.510000px;}
.y80{bottom:270.210000px;}
.y32{bottom:270.750000px;}
.ya4{bottom:276.150000px;}
.yde{bottom:285.330000px;}
.y39{bottom:286.965000px;}
.y78{bottom:288.210000px;}
.y64{bottom:290.910000px;}
.y31{bottom:291.450000px;}
.ya3{bottom:297.570000px;}
.ydd{bottom:304.230000px;}
.y77{bottom:308.910000px;}
.y63{bottom:311.610000px;}
.y30{bottom:312.150000px;}
.ya2{bottom:318.810000px;}
.ydc{bottom:323.130000px;}
.y76{bottom:329.610000px;}
.y62{bottom:332.310000px;}
.ydb{bottom:342.210000px;}
.y75{bottom:350.310000px;}
.y61{bottom:353.010000px;}
.y2f{bottom:353.190000px;}
.yda{bottom:361.110000px;}
.ya1{bottom:361.470000px;}
.y74{bottom:371.010000px;}
.y2e{bottom:372.090000px;}
.y60{bottom:373.710000px;}
.yd9{bottom:380.235000px;}
.ya0{bottom:382.755000px;}
.y2d{bottom:391.215000px;}
.y73{bottom:391.755000px;}
.y5f{bottom:394.455000px;}
.yd8{bottom:399.135000px;}
.y9f{bottom:404.175000px;}
.y2c{bottom:410.115000px;}
.y72{bottom:412.455000px;}
.y5e{bottom:415.155000px;}
.yd7{bottom:418.215000px;}
.y9e{bottom:425.415000px;}
.y2b{bottom:429.015000px;}
.y71{bottom:433.155000px;}
.y5d{bottom:435.855000px;}
.yd6{bottom:437.115000px;}
.y9d{bottom:446.655000px;}
.y2a{bottom:448.095000px;}
.y70{bottom:453.855000px;}
.yd5{bottom:456.015000px;}
.y5c{bottom:456.555000px;}
.y29{bottom:466.995000px;}
.y9c{bottom:468.075000px;}
.y6f{bottom:474.555000px;}
.yd4{bottom:475.095000px;}
.y5b{bottom:477.255000px;}
.y28{bottom:486.075000px;}
.y105{bottom:488.775000px;}
.y9b{bottom:490.215000px;}
.yd3{bottom:493.995000px;}
.y6e{bottom:495.255000px;}
.y5a{bottom:497.955000px;}
.y27{bottom:504.975000px;}
.y104{bottom:507.855000px;}
.y9a{bottom:510.015000px;}
.yd2{bottom:513.075000px;}
.y6d{bottom:515.955000px;}
.y59{bottom:518.655000px;}
.y26{bottom:523.875000px;}
.y103{bottom:527.295000px;}
.yd1{bottom:531.975000px;}
.y6c{bottom:536.655000px;}
.y58{bottom:539.355000px;}
.y25{bottom:542.955000px;}
.y102{bottom:543.495000px;}
.yd0{bottom:550.875000px;}
.y6b{bottom:552.855000px;}
.yc3{bottom:557.535000px;}
.y57{bottom:560.055000px;}
.y24{bottom:561.855000px;}
.y101{bottom:564.195000px;}
.ycf{bottom:569.955000px;}
.y99{bottom:574.635000px;}
.yc2{bottom:575.535000px;}
.y56{bottom:580.755000px;}
.y23{bottom:580.935000px;}
.yce{bottom:588.855000px;}
.yc1{bottom:596.235000px;}
.y22{bottom:599.835000px;}
.y55{bottom:601.455000px;}
.ycd{bottom:607.935000px;}
.y100{bottom:609.555000px;}
.yc0{bottom:616.935000px;}
.y21{bottom:618.735000px;}
.y54{bottom:622.155000px;}
.ycc{bottom:626.835000px;}
.yff{bottom:628.635000px;}
.ybd{bottom:633.885000px;}
.y20{bottom:637.845000px;}
.y98{bottom:639.285000px;}
.y53{bottom:642.885000px;}
.ycb{bottom:645.765000px;}
.yfe{bottom:647.565000px;}
.y1f{bottom:656.745000px;}
.y52{bottom:663.585000px;}
.yca{bottom:664.845000px;}
.y1e{bottom:675.825000px;}
.y51{bottom:684.285000px;}
.yfd{bottom:685.545000px;}
.y1d{bottom:694.725000px;}
.y96{bottom:703.905000px;}
.yfc{bottom:704.445000px;}
.y50{bottom:704.985000px;}
.y1c{bottom:713.625000px;}
.yfb{bottom:723.525000px;}
.y4f{bottom:725.685000px;}
.y1b{bottom:732.705000px;}
.yb9{bottom:738.105000px;}
.yfa{bottom:742.425000px;}
.y4e{bottom:746.385000px;}
.y1a{bottom:751.605000px;}
.yf9{bottom:761.325000px;}
.y4d{bottom:767.085000px;}
.y92{bottom:768.705000px;}
.y19{bottom:770.685000px;}
.yf8{bottom:780.405000px;}
.y4c{bottom:787.785000px;}
.y18{bottom:790.125000px;}
.yf7{bottom:799.305000px;}
.y4b{bottom:808.485000px;}
.y17{bottom:811.005000px;}
.yf6{bottom:818.385000px;}
.yb5{bottom:821.625000px;}
.y4a{bottom:829.185000px;}
.y16{bottom:832.965000px;}
.yf5{bottom:837.285000px;}
.y49{bottom:849.885000px;}
.y8d{bottom:854.565000px;}
.y15{bottom:855.825000px;}
.yf4{bottom:856.185000px;}
.y48{bottom:870.585000px;}
.yf3{bottom:875.265000px;}
.y14{bottom:878.325000px;}
.y47{bottom:891.330000px;}
.yf2{bottom:894.210000px;}
.y13{bottom:900.330000px;}
.y46{bottom:912.030000px;}
.yf1{bottom:913.290000px;}
.y12{bottom:922.650000px;}
.yb4{bottom:925.890000px;}
.yf0{bottom:932.190000px;}
.y45{bottom:932.730000px;}
.y8b{bottom:940.650000px;}
.y11{bottom:943.890000px;}
.yef{bottom:951.270000px;}
.y44{bottom:953.430000px;}
.y10{bottom:968.010000px;}
.yee{bottom:970.170000px;}
.y43{bottom:974.130000px;}
.yed{bottom:989.070000px;}
.yf{bottom:991.590000px;}
.y42{bottom:994.830000px;}
.y85{bottom:1005.270000px;}
.yec{bottom:1008.150000px;}
.yad{bottom:1009.410000px;}
.ye{bottom:1012.830000px;}
.yc9{bottom:1015.170000px;}
.y41{bottom:1015.530000px;}
.yeb{bottom:1027.050000px;}
.y40{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.yea{bottom:1046.130000px;}
.y3f{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.ye9{bottom:1065.030000px;}
.y83{bottom:1069.890000px;}
.y6{bottom:1077.090000px;}
.y3e{bottom:1077.630000px;}
.ye8{bottom:1083.930000px;}
.yab{bottom:1092.930000px;}
.y3d{bottom:1098.330000px;}
.ye7{bottom:1103.010000px;}
.y82{bottom:1118.130000px;}
.y3c{bottom:1119.030000px;}
.ye6{bottom:1121.910000px;}
.y81{bottom:1139.580000px;}
.y3b{bottom:1139.760000px;}
.ye5{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h19{height:20.685000px;}
.h22{height:41.385000px;}
.h12{height:42.645000px;}
.h3{height:45.184219px;}
.hc{height:56.213437px;}
.h1f{height:58.621992px;}
.h1e{height:58.651172px;}
.h21{height:59.383125px;}
.hf{height:62.085000px;}
.h13{height:63.885000px;}
.h16{height:63.900000px;}
.h17{height:63.930000px;}
.he{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h20{height:68.084282px;}
.h11{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h18{height:82.676953px;}
.h1a{height:82.785000px;}
.h1c{height:82.800000px;}
.h9{height:84.898125px;}
.h15{height:85.140000px;}
.h14{height:85.342500px;}
.h1d{height:103.500000px;}
.h1b{height:103.522500px;}
.h10{height:315.161719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.674500px;}
.w4{width:82.470000px;}
.w6{width:158.428500px;}
.w9{width:169.048500px;}
.w3{width:180.735000px;}
.wb{width:200.940000px;}
.w8{width:201.300000px;}
.wc{width:337.753500px;}
.wa{width:350.160000px;}
.w7{width:360.600000px;}
.wd{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:2.338500px;}
.x26{left:4.354500px;}
.x2b{left:5.565000px;}
.x1e{left:6.645000px;}
.x3{left:7.918500px;}
.x20{left:9.165000px;}
.x2e{left:10.245000px;}
.x27{left:11.505000px;}
.x22{left:12.585000px;}
.x25{left:13.714500px;}
.x35{left:15.825000px;}
.x2c{left:17.985000px;}
.x33{left:19.474500px;}
.x34{left:20.914500px;}
.x1b{left:22.174500px;}
.x1a{left:24.510000px;}
.x1d{left:26.130000px;}
.x2a{left:27.394500px;}
.x23{left:30.270000px;}
.x41{left:31.890000px;}
.x3e{left:33.154500px;}
.x1c{left:35.674500px;}
.x3f{left:36.930000px;}
.x29{left:38.190000px;}
.x36{left:40.174500px;}
.x40{left:41.430000px;}
.x17{left:44.134500px;}
.x24{left:48.814500px;}
.x32{left:59.610000px;}
.x2f{left:65.550000px;}
.x38{left:72.570000px;}
.x2{left:77.041500px;}
.x3c{left:81.930000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x15{left:93.276000px;}
.x14{left:95.076000px;}
.x9{left:104.076000px;}
.x30{left:107.130000px;}
.x21{left:108.930000px;}
.x28{left:110.550000px;}
.x37{left:111.810000px;}
.x3d{left:114.690000px;}
.x39{left:118.656000px;}
.x11{left:127.476000px;}
.x12{left:138.636000px;}
.x2d{left:149.970000px;}
.x31{left:159.150000px;}
.xb{left:167.430000px;}
.x5{left:172.650000px;}
.x43{left:196.590000px;}
.x45{left:207.210000px;}
.x47{left:214.095000px;}
.x44{left:218.010000px;}
.x18{left:244.845000px;}
.x3b{left:255.645000px;}
.x3a{left:325.875000px;}
.xe{left:362.775000px;}
.x16{left:412.095000px;}
.x46{left:414.795000px;}
.xa{left:446.505000px;}
.xc{left:467.745000px;}
.x10{left:476.025000px;}
.xf{left:498.885000px;}
.xd{left:506.985000px;}
.x4{left:552.900000px;}
.x19{left:606.180000px;}
.x42{left:679.830000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
.x13{left:826.200000px;}
@media print{
.v3{vertical-align:-76.160000pt;}
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v4{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.549333pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.150933pt;}
.ls29{letter-spacing:-0.140800pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls2a{letter-spacing:0.030720pt;}
.ls14{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.097067pt;}
.ls2e{letter-spacing:0.109867pt;}
.ls15{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.499200pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.lse{letter-spacing:1.920000pt;}
.lsb{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls16{letter-spacing:5.120000pt;}
.ls24{letter-spacing:5.760000pt;}
.ls17{letter-spacing:10.880000pt;}
.ls2b{letter-spacing:11.520000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls2{letter-spacing:24.960000pt;}
.ls25{letter-spacing:30.970027pt;}
.lsc{letter-spacing:53.760000pt;}
.ls23{letter-spacing:60.410027pt;}
.ls2c{letter-spacing:678.666667pt;}
.ls22{letter-spacing:764.298667pt;}
.ws2{word-spacing:-71.360000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.264640pt;}
.ws7{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.552000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.486933pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-2.088960pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._b{width:2.885120pt;}
._9{width:4.592640pt;}
._a{width:5.941760pt;}
._13{width:7.191040pt;}
._8{width:8.335360pt;}
._7{width:9.420800pt;}
._f{width:10.378240pt;}
._e{width:11.363840pt;}
._12{width:12.352000pt;}
._10{width:13.312000pt;}
._11{width:14.208000pt;}
._c{width:16.663040pt;}
._d{width:17.745920pt;}
._14{width:19.200000pt;}
._16{width:21.376000pt;}
._15{width:22.528000pt;}
._17{width:63.296000pt;}
._2{width:414.186667pt;}
._1{width:426.964907pt;}
._4{width:672.266667pt;}
._3{width:739.456427pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:285.440000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yac{bottom:4.000000pt;}
.y8a{bottom:4.320000pt;}
.y3a{bottom:4.466667pt;}
.y97{bottom:4.480000pt;}
.ybc{bottom:13.120000pt;}
.yb0{bottom:13.280000pt;}
.y87{bottom:13.760000pt;}
.y84{bottom:13.920000pt;}
.y9{bottom:18.880000pt;}
.yb3{bottom:22.400000pt;}
.y8c{bottom:23.200000pt;}
.y89{bottom:23.360000pt;}
.ya{bottom:27.680000pt;}
.ybb{bottom:31.520000pt;}
.yaf{bottom:31.680000pt;}
.y94{bottom:32.640000pt;}
.y86{bottom:32.800000pt;}
.y8f{bottom:32.840000pt;}
.y8{bottom:37.280000pt;}
.yb2{bottom:40.800000pt;}
.y88{bottom:42.240000pt;}
.y91{bottom:42.280000pt;}
.yba{bottom:49.920000pt;}
.yae{bottom:50.080000pt;}
.y5{bottom:51.200000pt;}
.y93{bottom:51.680000pt;}
.y8e{bottom:51.720000pt;}
.y7{bottom:55.706667pt;}
.yb1{bottom:59.200000pt;}
.yb7{bottom:59.240000pt;}
.y95{bottom:61.120000pt;}
.y90{bottom:61.320000pt;}
.ybf{bottom:68.320000pt;}
.yb6{bottom:68.520000pt;}
.y4{bottom:77.280000pt;}
.ybe{bottom:77.600000pt;}
.yb8{bottom:77.640000pt;}
.y3{bottom:106.560000pt;}
.y7f{bottom:127.392000pt;}
.yc8{bottom:129.312000pt;}
.y6a{bottom:129.792000pt;}
.y38{bottom:130.272000pt;}
.yaa{bottom:133.152000pt;}
.ye4{bottom:135.546667pt;}
.y7e{bottom:145.786667pt;}
.yc7{bottom:147.706667pt;}
.y69{bottom:148.186667pt;}
.y37{bottom:148.666667pt;}
.ya9{bottom:151.546667pt;}
.ye3{bottom:152.346667pt;}
.y7d{bottom:164.186667pt;}
.yc6{bottom:166.106667pt;}
.y68{bottom:166.586667pt;}
.y36{bottom:167.066667pt;}
.ye2{bottom:169.306667pt;}
.ya8{bottom:169.946667pt;}
.y7c{bottom:182.586667pt;}
.yc5{bottom:183.866667pt;}
.y67{bottom:184.986667pt;}
.y35{bottom:185.466667pt;}
.ya7{bottom:188.666667pt;}
.yc4{bottom:195.866667pt;}
.y7b{bottom:200.986667pt;}
.ye1{bottom:202.906667pt;}
.y66{bottom:203.386667pt;}
.y34{bottom:203.866667pt;}
.ya6{bottom:207.706667pt;}
.y7a{bottom:219.386667pt;}
.ye0{bottom:219.866667pt;}
.y65{bottom:221.786667pt;}
.y33{bottom:222.266667pt;}
.ya5{bottom:226.586667pt;}
.ydf{bottom:236.666667pt;}
.y79{bottom:237.786667pt;}
.y80{bottom:240.186667pt;}
.y32{bottom:240.666667pt;}
.ya4{bottom:245.466667pt;}
.yde{bottom:253.626667pt;}
.y39{bottom:255.080000pt;}
.y78{bottom:256.186667pt;}
.y64{bottom:258.586667pt;}
.y31{bottom:259.066667pt;}
.ya3{bottom:264.506667pt;}
.ydd{bottom:270.426667pt;}
.y77{bottom:274.586667pt;}
.y63{bottom:276.986667pt;}
.y30{bottom:277.466667pt;}
.ya2{bottom:283.386667pt;}
.ydc{bottom:287.226667pt;}
.y76{bottom:292.986667pt;}
.y62{bottom:295.386667pt;}
.ydb{bottom:304.186667pt;}
.y75{bottom:311.386667pt;}
.y61{bottom:313.786667pt;}
.y2f{bottom:313.946667pt;}
.yda{bottom:320.986667pt;}
.ya1{bottom:321.306667pt;}
.y74{bottom:329.786667pt;}
.y2e{bottom:330.746667pt;}
.y60{bottom:332.186667pt;}
.yd9{bottom:337.986667pt;}
.ya0{bottom:340.226667pt;}
.y2d{bottom:347.746667pt;}
.y73{bottom:348.226667pt;}
.y5f{bottom:350.626667pt;}
.yd8{bottom:354.786667pt;}
.y9f{bottom:359.266667pt;}
.y2c{bottom:364.546667pt;}
.y72{bottom:366.626667pt;}
.y5e{bottom:369.026667pt;}
.yd7{bottom:371.746667pt;}
.y9e{bottom:378.146667pt;}
.y2b{bottom:381.346667pt;}
.y71{bottom:385.026667pt;}
.y5d{bottom:387.426667pt;}
.yd6{bottom:388.546667pt;}
.y9d{bottom:397.026667pt;}
.y2a{bottom:398.306667pt;}
.y70{bottom:403.426667pt;}
.yd5{bottom:405.346667pt;}
.y5c{bottom:405.826667pt;}
.y29{bottom:415.106667pt;}
.y9c{bottom:416.066667pt;}
.y6f{bottom:421.826667pt;}
.yd4{bottom:422.306667pt;}
.y5b{bottom:424.226667pt;}
.y28{bottom:432.066667pt;}
.y105{bottom:434.466667pt;}
.y9b{bottom:435.746667pt;}
.yd3{bottom:439.106667pt;}
.y6e{bottom:440.226667pt;}
.y5a{bottom:442.626667pt;}
.y27{bottom:448.866667pt;}
.y104{bottom:451.426667pt;}
.y9a{bottom:453.346667pt;}
.yd2{bottom:456.066667pt;}
.y6d{bottom:458.626667pt;}
.y59{bottom:461.026667pt;}
.y26{bottom:465.666667pt;}
.y103{bottom:468.706667pt;}
.yd1{bottom:472.866667pt;}
.y6c{bottom:477.026667pt;}
.y58{bottom:479.426667pt;}
.y25{bottom:482.626667pt;}
.y102{bottom:483.106667pt;}
.yd0{bottom:489.666667pt;}
.y6b{bottom:491.426667pt;}
.yc3{bottom:495.586667pt;}
.y57{bottom:497.826667pt;}
.y24{bottom:499.426667pt;}
.y101{bottom:501.506667pt;}
.ycf{bottom:506.626667pt;}
.y99{bottom:510.786667pt;}
.yc2{bottom:511.586667pt;}
.y56{bottom:516.226667pt;}
.y23{bottom:516.386667pt;}
.yce{bottom:523.426667pt;}
.yc1{bottom:529.986667pt;}
.y22{bottom:533.186667pt;}
.y55{bottom:534.626667pt;}
.ycd{bottom:540.386667pt;}
.y100{bottom:541.826667pt;}
.yc0{bottom:548.386667pt;}
.y21{bottom:549.986667pt;}
.y54{bottom:553.026667pt;}
.ycc{bottom:557.186667pt;}
.yff{bottom:558.786667pt;}
.ybd{bottom:563.453333pt;}
.y20{bottom:566.973333pt;}
.y98{bottom:568.253333pt;}
.y53{bottom:571.453333pt;}
.ycb{bottom:574.013333pt;}
.yfe{bottom:575.613333pt;}
.y1f{bottom:583.773333pt;}
.y52{bottom:589.853333pt;}
.yca{bottom:590.973333pt;}
.y1e{bottom:600.733333pt;}
.y51{bottom:608.253333pt;}
.yfd{bottom:609.373333pt;}
.y1d{bottom:617.533333pt;}
.y96{bottom:625.693333pt;}
.yfc{bottom:626.173333pt;}
.y50{bottom:626.653333pt;}
.y1c{bottom:634.333333pt;}
.yfb{bottom:643.133333pt;}
.y4f{bottom:645.053333pt;}
.y1b{bottom:651.293333pt;}
.yb9{bottom:656.093333pt;}
.yfa{bottom:659.933333pt;}
.y4e{bottom:663.453333pt;}
.y1a{bottom:668.093333pt;}
.yf9{bottom:676.733333pt;}
.y4d{bottom:681.853333pt;}
.y92{bottom:683.293333pt;}
.y19{bottom:685.053333pt;}
.yf8{bottom:693.693333pt;}
.y4c{bottom:700.253333pt;}
.y18{bottom:702.333333pt;}
.yf7{bottom:710.493333pt;}
.y4b{bottom:718.653333pt;}
.y17{bottom:720.893333pt;}
.yf6{bottom:727.453333pt;}
.yb5{bottom:730.333333pt;}
.y4a{bottom:737.053333pt;}
.y16{bottom:740.413333pt;}
.yf5{bottom:744.253333pt;}
.y49{bottom:755.453333pt;}
.y8d{bottom:759.613333pt;}
.y15{bottom:760.733333pt;}
.yf4{bottom:761.053333pt;}
.y48{bottom:773.853333pt;}
.yf3{bottom:778.013333pt;}
.y14{bottom:780.733333pt;}
.y47{bottom:792.293333pt;}
.yf2{bottom:794.853333pt;}
.y13{bottom:800.293333pt;}
.y46{bottom:810.693333pt;}
.yf1{bottom:811.813333pt;}
.y12{bottom:820.133333pt;}
.yb4{bottom:823.013333pt;}
.yf0{bottom:828.613333pt;}
.y45{bottom:829.093333pt;}
.y8b{bottom:836.133333pt;}
.y11{bottom:839.013333pt;}
.yef{bottom:845.573333pt;}
.y44{bottom:847.493333pt;}
.y10{bottom:860.453333pt;}
.yee{bottom:862.373333pt;}
.y43{bottom:865.893333pt;}
.yed{bottom:879.173333pt;}
.yf{bottom:881.413333pt;}
.y42{bottom:884.293333pt;}
.y85{bottom:893.573333pt;}
.yec{bottom:896.133333pt;}
.yad{bottom:897.253333pt;}
.ye{bottom:900.293333pt;}
.yc9{bottom:902.373333pt;}
.y41{bottom:902.693333pt;}
.yeb{bottom:912.933333pt;}
.y40{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.yea{bottom:929.893333pt;}
.y3f{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.ye9{bottom:946.693333pt;}
.y83{bottom:951.013333pt;}
.y6{bottom:957.413333pt;}
.y3e{bottom:957.893333pt;}
.ye8{bottom:963.493333pt;}
.yab{bottom:971.493333pt;}
.y3d{bottom:976.293333pt;}
.ye7{bottom:980.453333pt;}
.y82{bottom:993.893333pt;}
.y3c{bottom:994.693333pt;}
.ye6{bottom:997.253333pt;}
.y81{bottom:1012.960000pt;}
.y3b{bottom:1013.120000pt;}
.ye5{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h19{height:18.386667pt;}
.h22{height:36.786667pt;}
.h12{height:37.906667pt;}
.h3{height:40.163750pt;}
.hc{height:49.967500pt;}
.h1f{height:52.108438pt;}
.h1e{height:52.134375pt;}
.h21{height:52.785000pt;}
.hf{height:55.186667pt;}
.h13{height:56.786667pt;}
.h16{height:56.800000pt;}
.h17{height:56.826667pt;}
.he{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h20{height:60.519362pt;}
.h11{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h18{height:73.490625pt;}
.h1a{height:73.586667pt;}
.h1c{height:73.600000pt;}
.h9{height:75.465000pt;}
.h15{height:75.680000pt;}
.h14{height:75.860000pt;}
.h1d{height:92.000000pt;}
.h1b{height:92.020000pt;}
.h10{height:280.143750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.710667pt;}
.w4{width:73.306667pt;}
.w6{width:140.825333pt;}
.w9{width:150.265333pt;}
.w3{width:160.653333pt;}
.wb{width:178.613333pt;}
.w8{width:178.933333pt;}
.wc{width:300.225333pt;}
.wa{width:311.253333pt;}
.w7{width:320.533333pt;}
.wd{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:2.078667pt;}
.x26{left:3.870667pt;}
.x2b{left:4.946667pt;}
.x1e{left:5.906667pt;}
.x3{left:7.038667pt;}
.x20{left:8.146667pt;}
.x2e{left:9.106667pt;}
.x27{left:10.226667pt;}
.x22{left:11.186667pt;}
.x25{left:12.190667pt;}
.x35{left:14.066667pt;}
.x2c{left:15.986667pt;}
.x33{left:17.310667pt;}
.x34{left:18.590667pt;}
.x1b{left:19.710667pt;}
.x1a{left:21.786667pt;}
.x1d{left:23.226667pt;}
.x2a{left:24.350667pt;}
.x23{left:26.906667pt;}
.x41{left:28.346667pt;}
.x3e{left:29.470667pt;}
.x1c{left:31.710667pt;}
.x3f{left:32.826667pt;}
.x29{left:33.946667pt;}
.x36{left:35.710667pt;}
.x40{left:36.826667pt;}
.x17{left:39.230667pt;}
.x24{left:43.390667pt;}
.x32{left:52.986667pt;}
.x2f{left:58.266667pt;}
.x38{left:64.506667pt;}
.x2{left:68.481333pt;}
.x3c{left:72.826667pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x15{left:82.912000pt;}
.x14{left:84.512000pt;}
.x9{left:92.512000pt;}
.x30{left:95.226667pt;}
.x21{left:96.826667pt;}
.x28{left:98.266667pt;}
.x37{left:99.386667pt;}
.x3d{left:101.946667pt;}
.x39{left:105.472000pt;}
.x11{left:113.312000pt;}
.x12{left:123.232000pt;}
.x2d{left:133.306667pt;}
.x31{left:141.466667pt;}
.xb{left:148.826667pt;}
.x5{left:153.466667pt;}
.x43{left:174.746667pt;}
.x45{left:184.186667pt;}
.x47{left:190.306667pt;}
.x44{left:193.786667pt;}
.x18{left:217.640000pt;}
.x3b{left:227.240000pt;}
.x3a{left:289.666667pt;}
.xe{left:322.466667pt;}
.x16{left:366.306667pt;}
.x46{left:368.706667pt;}
.xa{left:396.893333pt;}
.xc{left:415.773333pt;}
.x10{left:423.133333pt;}
.xf{left:443.453333pt;}
.xd{left:450.653333pt;}
.x4{left:491.466667pt;}
.x19{left:538.826667pt;}
.x42{left:604.293333pt;}
.x6{left:652.133333pt;}
.x8{left:718.240000pt;}
.x13{left:734.400000pt;}
}




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