
    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_e7285ad0fb93d231d87cc539.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_913d71d201bb412b067415a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_8d1afe751c2c9ebe03c7e109.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_66658d5a65bc48d284dc8aa2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c0aa40e07fdfa9cb3bc004a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_e3455b0bbc25e66cdb575655.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.120000px;}
.ls0{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.078000px;}
.lse{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.420000px;}
.lsf{letter-spacing:15.720000px;}
.lsb{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws7{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws5{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.880000px;}
.ws3{word-spacing:-12.900000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-2.292000px;}
._3{margin-left:-1.254000px;}
._0{width:1.074000px;}
._10{width:2.076000px;}
._c{width:3.216000px;}
._b{width:4.722000px;}
._a{width:5.820000px;}
._7{width:7.080000px;}
._6{width:8.220000px;}
._d{width:9.714000px;}
._f{width:11.256000px;}
._9{width:12.288000px;}
._8{width:13.920000px;}
._e{width:16.200000px;}
._11{width:17.208000px;}
._15{width:18.480000px;}
._14{width:20.004000px;}
._13{width:21.480000px;}
._18{width:23.058000px;}
._16{width:26.760000px;}
._17{width:27.912000px;}
._1c{width:29.064000px;}
._1b{width:30.288000px;}
._19{width:31.980000px;}
._1a{width:33.660000px;}
._4{width:336.180000px;}
._1{width:559.950000px;}
._2{width:642.780000px;}
._5{width:1180.080000px;}
.fc5{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.300000px;}
.ya4{bottom:3.315000px;}
.y91{bottom:3.600000px;}
.ye2{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y86{bottom:5.700000px;}
.y89{bottom:8.100000px;}
.y7d{bottom:9.300000px;}
.y80{bottom:9.900000px;}
.y79{bottom:9.930000px;}
.y3c{bottom:10.230000px;}
.y99{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.y87{bottom:14.400000px;}
.y7b{bottom:15.000000px;}
.y83{bottom:16.200000px;}
.y81{bottom:18.300000px;}
.y77{bottom:18.645000px;}
.y8f{bottom:20.685000px;}
.yda{bottom:20.692500px;}
.y9a{bottom:20.700000px;}
.yad{bottom:20.707500px;}
.ye1{bottom:20.715000px;}
.y8b{bottom:21.945000px;}
.y8d{bottom:22.845000px;}
.y85{bottom:23.100000px;}
.y88{bottom:25.500000px;}
.y7c{bottom:26.700000px;}
.y7f{bottom:27.000000px;}
.y75{bottom:27.345000px;}
.y3b{bottom:30.345000px;}
.y82{bottom:33.300000px;}
.y76{bottom:35.730000px;}
.yd9{bottom:37.792500px;}
.yd6{bottom:37.800000px;}
.yac{bottom:37.807500px;}
.ya3{bottom:37.815000px;}
.y90{bottom:38.100000px;}
.ye0{bottom:38.115000px;}
.y8c{bottom:40.245000px;}
.y78{bottom:44.430000px;}
.y4{bottom:46.800000px;}
.y3a{bottom:47.730000px;}
.y9f{bottom:55.200000px;}
.ya6{bottom:55.215000px;}
.yab{bottom:55.237500px;}
.y1{bottom:57.037500px;}
.y39{bottom:64.830000px;}
.yd5{bottom:72.300000px;}
.ya2{bottom:72.315000px;}
.yaa{bottom:72.337500px;}
.y9e{bottom:72.600000px;}
.ydf{bottom:72.615000px;}
.y3e{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y38{bottom:82.245000px;}
.y9d{bottom:89.700000px;}
.yde{bottom:89.715000px;}
.ya9{bottom:89.737500px;}
.ya1{bottom:89.745000px;}
.y37{bottom:99.330000px;}
.ydd{bottom:106.800000px;}
.yd8{bottom:106.837500px;}
.yd4{bottom:106.845000px;}
.y110{bottom:114.037500px;}
.y36{bottom:116.730000px;}
.ydb{bottom:119.137500px;}
.yae{bottom:124.237500px;}
.yd3{bottom:124.245000px;}
.y2f{bottom:131.437500px;}
.y35{bottom:133.830000px;}
.yd7{bottom:137.137500px;}
.y71{bottom:137.737500px;}
.ya8{bottom:138.937500px;}
.y10f{bottom:148.537500px;}
.y2e{bottom:148.837500px;}
.y34{bottom:151.245000px;}
.y70{bottom:155.130000px;}
.y2d{bottom:165.930000px;}
.y33{bottom:168.330000px;}
.y6f{bottom:172.230000px;}
.y10e{bottom:183.075000px;}
.y2c{bottom:183.375000px;}
.y32{bottom:185.775000px;}
.y6e{bottom:189.675000px;}
.y10d{bottom:200.775000px;}
.y2b{bottom:201.075000px;}
.y31{bottom:203.475000px;}
.y6d{bottom:206.775000px;}
.y2a{bottom:220.575000px;}
.y10c{bottom:221.175000px;}
.y6c{bottom:224.175000px;}
.y29{bottom:234.975000px;}
.y10b{bottom:238.275000px;}
.y6b{bottom:241.275000px;}
.ya7{bottom:243.075000px;}
.y28{bottom:252.375000px;}
.y10a{bottom:255.675000px;}
.y6a{bottom:258.675000px;}
.y27{bottom:269.475000px;}
.y109{bottom:272.775000px;}
.y69{bottom:276.375000px;}
.y26{bottom:286.875000px;}
.y108{bottom:290.175000px;}
.y25{bottom:303.975000px;}
.y107{bottom:307.275000px;}
.y68{bottom:308.175000px;}
.y24{bottom:321.375000px;}
.y106{bottom:324.675000px;}
.y67{bottom:325.875000px;}
.y23{bottom:339.075000px;}
.y105{bottom:342.375000px;}
.y66{bottom:342.975000px;}
.ya5{bottom:347.505000px;}
.y104{bottom:362.520000px;}
.y65{bottom:372.105000px;}
.y22{bottom:373.920000px;}
.y103{bottom:379.920000px;}
.y64{bottom:389.520000px;}
.y21{bottom:391.605000px;}
.y102{bottom:397.005000px;}
.yd2{bottom:397.320000px;}
.y63{bottom:406.920000px;}
.y20{bottom:408.705000px;}
.y101{bottom:414.420000px;}
.y62{bottom:424.005000px;}
.y1f{bottom:426.120000px;}
.y100{bottom:431.505000px;}
.ya0{bottom:434.505000px;}
.y61{bottom:441.420000px;}
.y1e{bottom:443.220000px;}
.yd1{bottom:444.120000px;}
.yff{bottom:448.920000px;}
.y60{bottom:458.505000px;}
.yd0{bottom:463.620000px;}
.yfe{bottom:466.005000px;}
.y1d{bottom:472.320000px;}
.ycf{bottom:478.005000px;}
.yfd{bottom:483.420000px;}
.y5f{bottom:487.620000px;}
.y1c{bottom:489.705000px;}
.yce{bottom:495.405000px;}
.yfc{bottom:500.505000px;}
.y5e{bottom:505.020000px;}
.y1b{bottom:507.120000px;}
.ycd{bottom:512.505000px;}
.y134{bottom:513.750000px;}
.yfb{bottom:517.950000px;}
.y5d{bottom:522.450000px;}
.ycc{bottom:529.950000px;}
.y133{bottom:533.850000px;}
.yfa{bottom:535.050000px;}
.y1a{bottom:535.950000px;}
.y9c{bottom:538.650000px;}
.y5c{bottom:539.550000px;}
.ycb{bottom:547.050000px;}
.y132{bottom:551.250000px;}
.yf9{bottom:552.450000px;}
.y19{bottom:553.650000px;}
.yca{bottom:564.450000px;}
.y131{bottom:568.350000px;}
.y5b{bottom:568.650000px;}
.yf8{bottom:569.550000px;}
.y18{bottom:570.750000px;}
.yc9{bottom:581.550000px;}
.y130{bottom:585.750000px;}
.y5a{bottom:586.050000px;}
.yf7{bottom:586.950000px;}
.y17{bottom:588.150000px;}
.yc8{bottom:598.950000px;}
.y12f{bottom:602.850000px;}
.y59{bottom:603.450000px;}
.yf6{bottom:604.050000px;}
.y16{bottom:605.850000px;}
.yc7{bottom:616.050000px;}
.y12e{bottom:620.250000px;}
.y58{bottom:620.550000px;}
.yf5{bottom:621.450000px;}
.yc6{bottom:633.450000px;}
.y12d{bottom:637.350000px;}
.y57{bottom:637.950000px;}
.yf4{bottom:638.550000px;}
.y98{bottom:643.050000px;}
.yc5{bottom:650.550000px;}
.y12c{bottom:654.750000px;}
.y56{bottom:655.050000px;}
.yf3{bottom:655.950000px;}
.yc4{bottom:667.950000px;}
.y12b{bottom:671.850000px;}
.y55{bottom:672.450000px;}
.yf2{bottom:673.050000px;}
.y30{bottom:674.250000px;}
.y97{bottom:685.080000px;}
.y12a{bottom:689.280000px;}
.yf1{bottom:690.495000px;}
.y54{bottom:701.280000px;}
.yc3{bottom:702.495000px;}
.y96{bottom:704.595000px;}
.y129{bottom:706.380000px;}
.yf0{bottom:707.595000px;}
.y53{bottom:718.995000px;}
.y95{bottom:719.280000px;}
.yc2{bottom:719.595000px;}
.y128{bottom:723.795000px;}
.yef{bottom:724.980000px;}
.y52{bottom:736.095000px;}
.y94{bottom:736.380000px;}
.yc1{bottom:736.980000px;}
.y127{bottom:740.895000px;}
.yee{bottom:742.080000px;}
.y51{bottom:753.495000px;}
.y93{bottom:753.780000px;}
.yc0{bottom:754.080000px;}
.y126{bottom:758.280000px;}
.yed{bottom:759.495000px;}
.y92{bottom:769.080000px;}
.ybf{bottom:771.495000px;}
.y125{bottom:775.380000px;}
.yec{bottom:776.580000px;}
.y8e{bottom:776.895000px;}
.y50{bottom:782.295000px;}
.ybe{bottom:788.580000px;}
.y124{bottom:792.795000px;}
.yeb{bottom:793.995000px;}
.y4f{bottom:799.995000px;}
.ybd{bottom:805.980000px;}
.y123{bottom:809.880000px;}
.yea{bottom:811.080000px;}
.y4e{bottom:817.080000px;}
.ybc{bottom:823.080000px;}
.y122{bottom:827.295000px;}
.ye9{bottom:828.495000px;}
.y8a{bottom:829.380000px;}
.y4d{bottom:834.495000px;}
.ybb{bottom:840.495000px;}
.y121{bottom:844.380000px;}
.ye8{bottom:845.580000px;}
.y4c{bottom:851.625000px;}
.yba{bottom:857.625000px;}
.y120{bottom:861.825000px;}
.ye7{bottom:863.025000px;}
.y4b{bottom:869.025000px;}
.yb9{bottom:875.025000px;}
.y11f{bottom:878.925000px;}
.ye6{bottom:880.125000px;}
.y84{bottom:884.025000px;}
.yb8{bottom:892.125000px;}
.y11e{bottom:896.325000px;}
.ye5{bottom:897.525000px;}
.y4a{bottom:897.825000px;}
.yb7{bottom:909.525000px;}
.y11d{bottom:913.425000px;}
.ye4{bottom:914.625000px;}
.y49{bottom:915.525000px;}
.y7e{bottom:923.925000px;}
.yb6{bottom:926.625000px;}
.ye3{bottom:929.325000px;}
.y15{bottom:930.825000px;}
.y48{bottom:932.625000px;}
.yb5{bottom:944.025000px;}
.y11c{bottom:947.925000px;}
.yb4{bottom:961.125000px;}
.y47{bottom:961.725000px;}
.y11b{bottom:965.325000px;}
.y14{bottom:968.025000px;}
.y7a{bottom:971.925000px;}
.yb3{bottom:978.525000px;}
.y46{bottom:979.125000px;}
.y11a{bottom:982.425000px;}
.y13{bottom:985.725000px;}
.yb2{bottom:995.625000px;}
.y45{bottom:996.525000px;}
.y119{bottom:999.825000px;}
.y12{bottom:1002.825000px;}
.y74{bottom:1013.025000px;}
.y118{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.y44{bottom:1025.370000px;}
.yb1{bottom:1030.170000px;}
.ydc{bottom:1033.455000px;}
.y117{bottom:1034.370000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y43{bottom:1043.070000px;}
.yb0{bottom:1047.570000px;}
.y116{bottom:1051.455000px;}
.y42{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.yaf{bottom:1064.670000px;}
.yb{bottom:1068.255000px;}
.y115{bottom:1068.870000px;}
.ya{bottom:1083.570000px;}
.y114{bottom:1085.955000px;}
.y41{bottom:1089.255000px;}
.y73{bottom:1089.870000px;}
.y9{bottom:1097.955000px;}
.y113{bottom:1103.370000px;}
.y40{bottom:1106.670000px;}
.y72{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.y112{bottom:1120.455000px;}
.y3f{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y111{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3d{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h20{height:17.100000px;}
.ha{height:21.000000px;}
.h18{height:21.166992px;}
.hc{height:33.515625px;}
.h7{height:33.867188px;}
.h19{height:34.500000px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.h15{height:39.300000px;}
.h13{height:40.500000px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h10{height:43.330078px;}
.h1d{height:43.681641px;}
.h11{height:44.507812px;}
.h14{height:47.100000px;}
.hf{height:49.453125px;}
.h6{height:50.800781px;}
.h17{height:51.900000px;}
.he{height:51.996094px;}
.h16{height:54.037500px;}
.h12{height:64.837500px;}
.h1{height:65.645508px;}
.h1c{height:86.100000px;}
.h2{height:97.200000px;}
.h1a{height:103.500000px;}
.h1b{height:103.537500px;}
.h21{height:120.600000px;}
.h1f{height:120.637500px;}
.h1e{height:138.037500px;}
.hd{height:220.275000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w8{width:76.800000px;}
.w3{width:108.000000px;}
.w9{width:121.837500px;}
.wa{width:123.337500px;}
.wc{width:129.937500px;}
.wb{width:133.275000px;}
.w13{width:133.837500px;}
.we{width:149.737500px;}
.wd{width:150.045000px;}
.w10{width:179.745000px;}
.w14{width:190.275000px;}
.w12{width:192.030000px;}
.w11{width:201.075000px;}
.wf{width:206.175000px;}
.w15{width:220.275000px;}
.w6{width:253.275000px;}
.w5{width:483.450000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.800000px;}
.x17{left:9.585000px;}
.x2{left:10.799998px;}
.x1c{left:12.345000px;}
.x1a{left:13.800000px;}
.x14{left:16.200000px;}
.x1f{left:19.785000px;}
.x3{left:22.200000px;}
.x27{left:24.600000px;}
.x4{left:27.600000px;}
.x22{left:30.600000px;}
.x1b{left:35.145000px;}
.x19{left:37.845000px;}
.x2c{left:39.000000px;}
.x1e{left:41.700000px;}
.x23{left:42.900000px;}
.x2a{left:44.700000px;}
.x20{left:46.785000px;}
.x24{left:49.230000px;}
.x29{left:51.630000px;}
.x25{left:54.645000px;}
.x28{left:57.345000px;}
.x2d{left:67.230000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x13{left:108.037487px;}
.xe{left:116.745000px;}
.xf{left:128.737487px;}
.x9{left:153.629987px;}
.x16{left:158.745000px;}
.x12{left:190.274987px;}
.x2b{left:231.675000px;}
.xc{left:241.567500px;}
.x30{left:273.975000px;}
.x18{left:281.175000px;}
.x10{left:338.819987px;}
.x6{left:405.119987px;}
.x31{left:408.720000px;}
.x2e{left:438.750000px;}
.x11{left:446.549987px;}
.x1d{left:539.595000px;}
.xd{left:561.780000px;}
.x15{left:588.494987px;}
.x32{left:599.895000px;}
.x8{left:614.879987px;}
.x2f{left:619.095000px;}
.x7{left:648.194987px;}
.x21{left:670.125000px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.373333pt;}
.lsf{letter-spacing:13.973333pt;}
.lsb{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.226667pt;}
.ws3{word-spacing:-11.466667pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-2.037333pt;}
._3{margin-left:-1.114667pt;}
._0{width:0.954667pt;}
._10{width:1.845333pt;}
._c{width:2.858667pt;}
._b{width:4.197333pt;}
._a{width:5.173333pt;}
._7{width:6.293333pt;}
._6{width:7.306667pt;}
._d{width:8.634667pt;}
._f{width:10.005333pt;}
._9{width:10.922667pt;}
._8{width:12.373333pt;}
._e{width:14.400000pt;}
._11{width:15.296000pt;}
._15{width:16.426667pt;}
._14{width:17.781333pt;}
._13{width:19.093333pt;}
._18{width:20.496000pt;}
._16{width:23.786667pt;}
._17{width:24.810667pt;}
._1c{width:25.834667pt;}
._1b{width:26.922667pt;}
._19{width:28.426667pt;}
._1a{width:29.920000pt;}
._4{width:298.826667pt;}
._1{width:497.733333pt;}
._2{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.933333pt;}
.ya4{bottom:2.946667pt;}
.y91{bottom:3.200000pt;}
.ye2{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y86{bottom:5.066667pt;}
.y89{bottom:7.200000pt;}
.y7d{bottom:8.266667pt;}
.y80{bottom:8.800000pt;}
.y79{bottom:8.826667pt;}
.y3c{bottom:9.093333pt;}
.y99{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.y87{bottom:12.800000pt;}
.y7b{bottom:13.333333pt;}
.y83{bottom:14.400000pt;}
.y81{bottom:16.266667pt;}
.y77{bottom:16.573333pt;}
.y8f{bottom:18.386667pt;}
.yda{bottom:18.393333pt;}
.y9a{bottom:18.400000pt;}
.yad{bottom:18.406667pt;}
.ye1{bottom:18.413333pt;}
.y8b{bottom:19.506667pt;}
.y8d{bottom:20.306667pt;}
.y85{bottom:20.533333pt;}
.y88{bottom:22.666667pt;}
.y7c{bottom:23.733333pt;}
.y7f{bottom:24.000000pt;}
.y75{bottom:24.306667pt;}
.y3b{bottom:26.973333pt;}
.y82{bottom:29.600000pt;}
.y76{bottom:31.760000pt;}
.yd9{bottom:33.593333pt;}
.yd6{bottom:33.600000pt;}
.yac{bottom:33.606667pt;}
.ya3{bottom:33.613333pt;}
.y90{bottom:33.866667pt;}
.ye0{bottom:33.880000pt;}
.y8c{bottom:35.773333pt;}
.y78{bottom:39.493333pt;}
.y4{bottom:41.600000pt;}
.y3a{bottom:42.426667pt;}
.y9f{bottom:49.066667pt;}
.ya6{bottom:49.080000pt;}
.yab{bottom:49.100000pt;}
.y1{bottom:50.700000pt;}
.y39{bottom:57.626667pt;}
.yd5{bottom:64.266667pt;}
.ya2{bottom:64.280000pt;}
.yaa{bottom:64.300000pt;}
.y9e{bottom:64.533333pt;}
.ydf{bottom:64.546667pt;}
.y3e{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:73.106667pt;}
.y9d{bottom:79.733333pt;}
.yde{bottom:79.746667pt;}
.ya9{bottom:79.766667pt;}
.ya1{bottom:79.773333pt;}
.y37{bottom:88.293333pt;}
.ydd{bottom:94.933333pt;}
.yd8{bottom:94.966667pt;}
.yd4{bottom:94.973333pt;}
.y110{bottom:101.366667pt;}
.y36{bottom:103.760000pt;}
.ydb{bottom:105.900000pt;}
.yae{bottom:110.433333pt;}
.yd3{bottom:110.440000pt;}
.y2f{bottom:116.833333pt;}
.y35{bottom:118.960000pt;}
.yd7{bottom:121.900000pt;}
.y71{bottom:122.433333pt;}
.ya8{bottom:123.500000pt;}
.y10f{bottom:132.033333pt;}
.y2e{bottom:132.300000pt;}
.y34{bottom:134.440000pt;}
.y70{bottom:137.893333pt;}
.y2d{bottom:147.493333pt;}
.y33{bottom:149.626667pt;}
.y6f{bottom:153.093333pt;}
.y10e{bottom:162.733333pt;}
.y2c{bottom:163.000000pt;}
.y32{bottom:165.133333pt;}
.y6e{bottom:168.600000pt;}
.y10d{bottom:178.466667pt;}
.y2b{bottom:178.733333pt;}
.y31{bottom:180.866667pt;}
.y6d{bottom:183.800000pt;}
.y2a{bottom:196.066667pt;}
.y10c{bottom:196.600000pt;}
.y6c{bottom:199.266667pt;}
.y29{bottom:208.866667pt;}
.y10b{bottom:211.800000pt;}
.y6b{bottom:214.466667pt;}
.ya7{bottom:216.066667pt;}
.y28{bottom:224.333333pt;}
.y10a{bottom:227.266667pt;}
.y6a{bottom:229.933333pt;}
.y27{bottom:239.533333pt;}
.y109{bottom:242.466667pt;}
.y69{bottom:245.666667pt;}
.y26{bottom:255.000000pt;}
.y108{bottom:257.933333pt;}
.y25{bottom:270.200000pt;}
.y107{bottom:273.133333pt;}
.y68{bottom:273.933333pt;}
.y24{bottom:285.666667pt;}
.y106{bottom:288.600000pt;}
.y67{bottom:289.666667pt;}
.y23{bottom:301.400000pt;}
.y105{bottom:304.333333pt;}
.y66{bottom:304.866667pt;}
.ya5{bottom:308.893333pt;}
.y104{bottom:322.240000pt;}
.y65{bottom:330.760000pt;}
.y22{bottom:332.373333pt;}
.y103{bottom:337.706667pt;}
.y64{bottom:346.240000pt;}
.y21{bottom:348.093333pt;}
.y102{bottom:352.893333pt;}
.yd2{bottom:353.173333pt;}
.y63{bottom:361.706667pt;}
.y20{bottom:363.293333pt;}
.y101{bottom:368.373333pt;}
.y62{bottom:376.893333pt;}
.y1f{bottom:378.773333pt;}
.y100{bottom:383.560000pt;}
.ya0{bottom:386.226667pt;}
.y61{bottom:392.373333pt;}
.y1e{bottom:393.973333pt;}
.yd1{bottom:394.773333pt;}
.yff{bottom:399.040000pt;}
.y60{bottom:407.560000pt;}
.yd0{bottom:412.106667pt;}
.yfe{bottom:414.226667pt;}
.y1d{bottom:419.840000pt;}
.ycf{bottom:424.893333pt;}
.yfd{bottom:429.706667pt;}
.y5f{bottom:433.440000pt;}
.y1c{bottom:435.293333pt;}
.yce{bottom:440.360000pt;}
.yfc{bottom:444.893333pt;}
.y5e{bottom:448.906667pt;}
.y1b{bottom:450.773333pt;}
.ycd{bottom:455.560000pt;}
.y134{bottom:456.666667pt;}
.yfb{bottom:460.400000pt;}
.y5d{bottom:464.400000pt;}
.ycc{bottom:471.066667pt;}
.y133{bottom:474.533333pt;}
.yfa{bottom:475.600000pt;}
.y1a{bottom:476.400000pt;}
.y9c{bottom:478.800000pt;}
.y5c{bottom:479.600000pt;}
.ycb{bottom:486.266667pt;}
.y132{bottom:490.000000pt;}
.yf9{bottom:491.066667pt;}
.y19{bottom:492.133333pt;}
.yca{bottom:501.733333pt;}
.y131{bottom:505.200000pt;}
.y5b{bottom:505.466667pt;}
.yf8{bottom:506.266667pt;}
.y18{bottom:507.333333pt;}
.yc9{bottom:516.933333pt;}
.y130{bottom:520.666667pt;}
.y5a{bottom:520.933333pt;}
.yf7{bottom:521.733333pt;}
.y17{bottom:522.800000pt;}
.yc8{bottom:532.400000pt;}
.y12f{bottom:535.866667pt;}
.y59{bottom:536.400000pt;}
.yf6{bottom:536.933333pt;}
.y16{bottom:538.533333pt;}
.yc7{bottom:547.600000pt;}
.y12e{bottom:551.333333pt;}
.y58{bottom:551.600000pt;}
.yf5{bottom:552.400000pt;}
.yc6{bottom:563.066667pt;}
.y12d{bottom:566.533333pt;}
.y57{bottom:567.066667pt;}
.yf4{bottom:567.600000pt;}
.y98{bottom:571.600000pt;}
.yc5{bottom:578.266667pt;}
.y12c{bottom:582.000000pt;}
.y56{bottom:582.266667pt;}
.yf3{bottom:583.066667pt;}
.yc4{bottom:593.733333pt;}
.y12b{bottom:597.200000pt;}
.y55{bottom:597.733333pt;}
.yf2{bottom:598.266667pt;}
.y30{bottom:599.333333pt;}
.y97{bottom:608.960000pt;}
.y12a{bottom:612.693333pt;}
.yf1{bottom:613.773333pt;}
.y54{bottom:623.360000pt;}
.yc3{bottom:624.440000pt;}
.y96{bottom:626.306667pt;}
.y129{bottom:627.893333pt;}
.yf0{bottom:628.973333pt;}
.y53{bottom:639.106667pt;}
.y95{bottom:639.360000pt;}
.yc2{bottom:639.640000pt;}
.y128{bottom:643.373333pt;}
.yef{bottom:644.426667pt;}
.y52{bottom:654.306667pt;}
.y94{bottom:654.560000pt;}
.yc1{bottom:655.093333pt;}
.y127{bottom:658.573333pt;}
.yee{bottom:659.626667pt;}
.y51{bottom:669.773333pt;}
.y93{bottom:670.026667pt;}
.yc0{bottom:670.293333pt;}
.y126{bottom:674.026667pt;}
.yed{bottom:675.106667pt;}
.y92{bottom:683.626667pt;}
.ybf{bottom:685.773333pt;}
.y125{bottom:689.226667pt;}
.yec{bottom:690.293333pt;}
.y8e{bottom:690.573333pt;}
.y50{bottom:695.373333pt;}
.ybe{bottom:700.960000pt;}
.y124{bottom:704.706667pt;}
.yeb{bottom:705.773333pt;}
.y4f{bottom:711.106667pt;}
.ybd{bottom:716.426667pt;}
.y123{bottom:719.893333pt;}
.yea{bottom:720.960000pt;}
.y4e{bottom:726.293333pt;}
.ybc{bottom:731.626667pt;}
.y122{bottom:735.373333pt;}
.ye9{bottom:736.440000pt;}
.y8a{bottom:737.226667pt;}
.y4d{bottom:741.773333pt;}
.ybb{bottom:747.106667pt;}
.y121{bottom:750.560000pt;}
.ye8{bottom:751.626667pt;}
.y4c{bottom:757.000000pt;}
.yba{bottom:762.333333pt;}
.y120{bottom:766.066667pt;}
.ye7{bottom:767.133333pt;}
.y4b{bottom:772.466667pt;}
.yb9{bottom:777.800000pt;}
.y11f{bottom:781.266667pt;}
.ye6{bottom:782.333333pt;}
.y84{bottom:785.800000pt;}
.yb8{bottom:793.000000pt;}
.y11e{bottom:796.733333pt;}
.ye5{bottom:797.800000pt;}
.y4a{bottom:798.066667pt;}
.yb7{bottom:808.466667pt;}
.y11d{bottom:811.933333pt;}
.ye4{bottom:813.000000pt;}
.y49{bottom:813.800000pt;}
.y7e{bottom:821.266667pt;}
.yb6{bottom:823.666667pt;}
.ye3{bottom:826.066667pt;}
.y15{bottom:827.400000pt;}
.y48{bottom:829.000000pt;}
.yb5{bottom:839.133333pt;}
.y11c{bottom:842.600000pt;}
.yb4{bottom:854.333333pt;}
.y47{bottom:854.866667pt;}
.y11b{bottom:858.066667pt;}
.y14{bottom:860.466667pt;}
.y7a{bottom:863.933333pt;}
.yb3{bottom:869.800000pt;}
.y46{bottom:870.333333pt;}
.y11a{bottom:873.266667pt;}
.y13{bottom:876.200000pt;}
.yb2{bottom:885.000000pt;}
.y45{bottom:885.800000pt;}
.y119{bottom:888.733333pt;}
.y12{bottom:891.400000pt;}
.y74{bottom:900.466667pt;}
.y118{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.y44{bottom:911.440000pt;}
.yb1{bottom:915.706667pt;}
.ydc{bottom:918.626667pt;}
.y117{bottom:919.440000pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y43{bottom:927.173333pt;}
.yb0{bottom:931.173333pt;}
.y116{bottom:934.626667pt;}
.y42{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.yaf{bottom:946.373333pt;}
.yb{bottom:949.560000pt;}
.y115{bottom:950.106667pt;}
.ya{bottom:963.173333pt;}
.y114{bottom:965.293333pt;}
.y41{bottom:968.226667pt;}
.y73{bottom:968.773333pt;}
.y9{bottom:975.960000pt;}
.y113{bottom:980.773333pt;}
.y40{bottom:983.706667pt;}
.y72{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.y112{bottom:995.960000pt;}
.y3f{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y111{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3d{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h20{height:15.200000pt;}
.ha{height:18.666667pt;}
.h18{height:18.815104pt;}
.hc{height:29.791667pt;}
.h7{height:30.104167pt;}
.h19{height:30.666667pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.h15{height:34.933333pt;}
.h13{height:36.000000pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h10{height:38.515625pt;}
.h1d{height:38.828125pt;}
.h11{height:39.562500pt;}
.h14{height:41.866667pt;}
.hf{height:43.958333pt;}
.h6{height:45.156250pt;}
.h17{height:46.133333pt;}
.he{height:46.218750pt;}
.h16{height:48.033333pt;}
.h12{height:57.633333pt;}
.h1{height:58.351562pt;}
.h1c{height:76.533333pt;}
.h2{height:86.400000pt;}
.h1a{height:92.000000pt;}
.h1b{height:92.033333pt;}
.h21{height:107.200000pt;}
.h1f{height:107.233333pt;}
.h1e{height:122.700000pt;}
.hd{height:195.800000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w8{width:68.266667pt;}
.w3{width:96.000000pt;}
.w9{width:108.300000pt;}
.wa{width:109.633333pt;}
.wc{width:115.500000pt;}
.wb{width:118.466667pt;}
.w13{width:118.966667pt;}
.we{width:133.100000pt;}
.wd{width:133.373333pt;}
.w10{width:159.773333pt;}
.w14{width:169.133333pt;}
.w12{width:170.693333pt;}
.w11{width:178.733333pt;}
.wf{width:183.266667pt;}
.w15{width:195.800000pt;}
.w6{width:225.133333pt;}
.w5{width:429.733333pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.933333pt;}
.x17{left:8.520000pt;}
.x2{left:9.599999pt;}
.x1c{left:10.973333pt;}
.x1a{left:12.266667pt;}
.x14{left:14.400000pt;}
.x1f{left:17.586667pt;}
.x3{left:19.733333pt;}
.x27{left:21.866667pt;}
.x4{left:24.533333pt;}
.x22{left:27.200000pt;}
.x1b{left:31.240000pt;}
.x19{left:33.640000pt;}
.x2c{left:34.666667pt;}
.x1e{left:37.066667pt;}
.x23{left:38.133333pt;}
.x2a{left:39.733333pt;}
.x20{left:41.586667pt;}
.x24{left:43.760000pt;}
.x29{left:45.893333pt;}
.x25{left:48.573333pt;}
.x28{left:50.973333pt;}
.x2d{left:59.760000pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x13{left:96.033322pt;}
.xe{left:103.773333pt;}
.xf{left:114.433322pt;}
.x9{left:136.559988pt;}
.x16{left:141.106667pt;}
.x12{left:169.133322pt;}
.x2b{left:205.933333pt;}
.xc{left:214.726667pt;}
.x30{left:243.533333pt;}
.x18{left:249.933333pt;}
.x10{left:301.173322pt;}
.x6{left:360.106655pt;}
.x31{left:363.306667pt;}
.x2e{left:390.000000pt;}
.x11{left:396.933322pt;}
.x1d{left:479.640000pt;}
.xd{left:499.360000pt;}
.x15{left:523.106655pt;}
.x32{left:533.240000pt;}
.x8{left:546.559988pt;}
.x2f{left:550.306667pt;}
.x7{left:576.173322pt;}
.x21{left:595.666667pt;}
.x5{left:620.999988pt;}
.xa{left:722.106655pt;}
}




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