
    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_1b5bb962c028a0b7667554f8.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_67fefc3feaec4c988ce672cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_86a0684ecf392ec9ada6b863.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1fba03bdec4a09b43f9e4a27.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ce3b850012b0877b9ff0ce15.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_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_732a8906f696975c721eb483.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e40358941353cd2b429c5e9.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls9{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.600000px;}
.lsd{letter-spacing:3.060000px;}
.lsc{letter-spacing:7.800000px;}
.lse{letter-spacing:15.720000px;}
.lsa{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;}
}
.ws7{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.800000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-11.136000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-2.100000px;}
._0{margin-left:-1.056000px;}
._1{width:1.002000px;}
._5{width:2.106000px;}
._2{width:3.816000px;}
._d{width:4.974000px;}
._b{width:5.982000px;}
._9{width:7.620000px;}
._8{width:9.336000px;}
._7{width:10.536000px;}
._6{width:11.580000px;}
._f{width:12.690000px;}
._e{width:13.836000px;}
._c{width:16.140000px;}
._15{width:17.376000px;}
._12{width:18.576000px;}
._13{width:20.184000px;}
._14{width:21.312000px;}
._16{width:22.842000px;}
._10{width:24.900000px;}
._11{width:26.340000px;}
._17{width:27.600000px;}
._18{width:29.034000px;}
._19{width:30.096000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.ye9{bottom:5.685000px;}
.ydf{bottom:5.700000px;}
.yd2{bottom:5.715000px;}
.y114{bottom:5.745000px;}
.ye5{bottom:6.000000px;}
.yc7{bottom:8.100000px;}
.y42{bottom:9.600000px;}
.y5{bottom:12.337500px;}
.yd4{bottom:14.100000px;}
.yd8{bottom:15.600000px;}
.y10b{bottom:15.630000px;}
.yf1{bottom:15.645000px;}
.y11c{bottom:15.900000px;}
.ye4{bottom:15.915000px;}
.yc8{bottom:18.000000px;}
.yd6{bottom:22.500000px;}
.ydd{bottom:25.500000px;}
.yd9{bottom:25.515000px;}
.y10a{bottom:25.530000px;}
.yef{bottom:25.545000px;}
.yf4{bottom:25.800000px;}
.yd1{bottom:25.845000px;}
.yc6{bottom:27.900000px;}
.y41{bottom:29.100000px;}
.y104{bottom:35.385000px;}
.ye1{bottom:35.400000px;}
.yf8{bottom:35.430000px;}
.yf0{bottom:35.445000px;}
.yf5{bottom:35.685000px;}
.y112{bottom:35.700000px;}
.y118{bottom:35.715000px;}
.ycc{bottom:35.745000px;}
.y40{bottom:43.500000px;}
.y110{bottom:45.285000px;}
.ye2{bottom:45.300000px;}
.yff{bottom:45.307500px;}
.y10c{bottom:45.330000px;}
.yf2{bottom:45.345000px;}
.y10e{bottom:45.585000px;}
.ydb{bottom:45.600000px;}
.y116{bottom:45.615000px;}
.yce{bottom:45.645000px;}
.y4{bottom:46.800000px;}
.y103{bottom:55.185000px;}
.yeb{bottom:55.200000px;}
.yf7{bottom:55.230000px;}
.yfc{bottom:55.500000px;}
.ycb{bottom:55.545000px;}
.y1{bottom:57.037500px;}
.y3f{bottom:60.900000px;}
.ye8{bottom:65.100000px;}
.y100{bottom:65.107500px;}
.yf9{bottom:65.145000px;}
.yfd{bottom:65.400000px;}
.y117{bottom:65.415000px;}
.ydc{bottom:65.430000px;}
.ycd{bottom:65.445000px;}
.y44{bottom:74.137500px;}
.y107{bottom:75.300000px;}
.yca{bottom:75.345000px;}
.y3e{bottom:78.045000px;}
.y3{bottom:81.337500px;}
.y105{bottom:84.885000px;}
.yfa{bottom:84.930000px;}
.y101{bottom:84.937500px;}
.yed{bottom:85.200000px;}
.y119{bottom:85.215000px;}
.yde{bottom:85.230000px;}
.yd0{bottom:85.245000px;}
.y3d{bottom:95.430000px;}
.yec{bottom:105.000000px;}
.ycf{bottom:105.045000px;}
.yfe{bottom:111.937500px;}
.y3c{bottom:112.530000px;}
.yd3{bottom:113.737500px;}
.y108{bottom:124.830000px;}
.y123{bottom:128.137500px;}
.y3b{bottom:129.930000px;}
.y9e{bottom:130.237500px;}
.y7f{bottom:133.537500px;}
.y35{bottom:136.837500px;}
.y122{bottom:145.537500px;}
.y3a{bottom:147.030000px;}
.y9d{bottom:147.337500px;}
.y7e{bottom:150.930000px;}
.y34{bottom:154.245000px;}
.yc9{bottom:157.830000px;}
.y121{bottom:162.645000px;}
.y39{bottom:164.445000px;}
.y9c{bottom:164.745000px;}
.y7d{bottom:168.045000px;}
.y33{bottom:171.330000px;}
.y120{bottom:180.075000px;}
.y38{bottom:181.530000px;}
.y9b{bottom:181.875000px;}
.y7c{bottom:185.475000px;}
.y147{bottom:185.775000px;}
.y32{bottom:188.775000px;}
.y11f{bottom:197.175000px;}
.y37{bottom:199.230000px;}
.y9a{bottom:199.275000px;}
.y7b{bottom:202.575000px;}
.y31{bottom:205.875000px;}
.y146{bottom:206.175000px;}
.y11e{bottom:214.575000px;}
.y99{bottom:216.375000px;}
.yfb{bottom:218.475000px;}
.y7a{bottom:219.975000px;}
.y30{bottom:223.275000px;}
.y11d{bottom:231.675000px;}
.y98{bottom:233.775000px;}
.y79{bottom:237.075000px;}
.y2f{bottom:240.375000px;}
.y145{bottom:240.675000px;}
.y11b{bottom:250.275000px;}
.y97{bottom:250.875000px;}
.y78{bottom:254.475000px;}
.y2e{bottom:257.775000px;}
.y96{bottom:268.575000px;}
.y77{bottom:271.575000px;}
.y2d{bottom:274.875000px;}
.y144{bottom:275.175000px;}
.yc5{bottom:284.475000px;}
.y76{bottom:288.975000px;}
.y95{bottom:289.275000px;}
.y2c{bottom:292.275000px;}
.y75{bottom:306.675000px;}
.y94{bottom:308.775000px;}
.y2b{bottom:309.375000px;}
.y143{bottom:309.675000px;}
.y11a{bottom:317.475000px;}
.y93{bottom:323.475000px;}
.yf6{bottom:325.275000px;}
.y74{bottom:326.175000px;}
.y2a{bottom:326.775000px;}
.yc4{bottom:337.575000px;}
.y73{bottom:340.575000px;}
.y29{bottom:343.875000px;}
.y142{bottom:344.175000px;}
.y72{bottom:358.005000px;}
.yc3{bottom:358.320000px;}
.y28{bottom:361.320000px;}
.y71{bottom:375.105000px;}
.yc2{bottom:377.820000px;}
.y27{bottom:378.405000px;}
.y141{bottom:378.705000px;}
.y70{bottom:392.520000px;}
.y26{bottom:395.820000px;}
.y115{bottom:404.205000px;}
.y6f{bottom:409.620000px;}
.y25{bottom:412.920000px;}
.y140{bottom:413.205000px;}
.y6e{bottom:427.005000px;}
.y24{bottom:430.320000px;}
.yf3{bottom:431.820000px;}
.y6d{bottom:444.120000px;}
.y23{bottom:447.420000px;}
.y13f{bottom:447.705000px;}
.y6c{bottom:461.505000px;}
.y22{bottom:464.820000px;}
.y92{bottom:478.620000px;}
.y6b{bottom:479.205000px;}
.y21{bottom:481.920000px;}
.y13e{bottom:482.205000px;}
.yc1{bottom:495.120000px;}
.y91{bottom:496.005000px;}
.y6a{bottom:498.720000px;}
.yee{bottom:499.005000px;}
.y20{bottom:499.320000px;}
.yc0{bottom:509.820000px;}
.y113{bottom:511.005000px;}
.y69{bottom:513.120000px;}
.y1f{bottom:516.450000px;}
.y13d{bottom:516.750000px;}
.ybf{bottom:526.950000px;}
.y68{bottom:530.550000px;}
.y13c{bottom:533.850000px;}
.y1e{bottom:534.150000px;}
.ybe{bottom:544.350000px;}
.y67{bottom:547.650000px;}
.y13b{bottom:551.250000px;}
.y1d{bottom:554.550000px;}
.ybd{bottom:561.450000px;}
.y66{bottom:565.050000px;}
.y90{bottom:565.350000px;}
.yea{bottom:565.950000px;}
.y1c{bottom:568.350000px;}
.ybc{bottom:577.950000px;}
.y65{bottom:582.150000px;}
.y8f{bottom:584.850000px;}
.y13a{bottom:585.750000px;}
.ybb{bottom:592.650000px;}
.y111{bottom:597.750000px;}
.y64{bottom:599.550000px;}
.y139{bottom:602.850000px;}
.y36{bottom:608.850000px;}
.yba{bottom:609.750000px;}
.y63{bottom:616.650000px;}
.y138{bottom:620.250000px;}
.yb9{bottom:627.150000px;}
.y62{bottom:634.050000px;}
.y137{bottom:637.350000px;}
.yb8{bottom:644.250000px;}
.y61{bottom:651.150000px;}
.y136{bottom:654.750000px;}
.yb7{bottom:661.650000px;}
.y60{bottom:668.550000px;}
.y135{bottom:671.850000px;}
.yb6{bottom:678.750000px;}
.y5f{bottom:685.695000px;}
.y134{bottom:689.280000px;}
.ye7{bottom:692.595000px;}
.yb5{bottom:696.195000px;}
.y8e{bottom:703.095000px;}
.y5e{bottom:703.380000px;}
.y10f{bottom:704.595000px;}
.y133{bottom:706.380000px;}
.yb4{bottom:713.280000px;}
.y8d{bottom:720.195000px;}
.y5d{bottom:722.880000px;}
.y132{bottom:723.795000px;}
.yb3{bottom:730.695000px;}
.y5c{bottom:737.595000px;}
.y131{bottom:740.895000px;}
.yb2{bottom:747.195000px;}
.y5b{bottom:754.695000px;}
.y130{bottom:758.280000px;}
.yb1{bottom:761.595000px;}
.y10d{bottom:771.495000px;}
.y5a{bottom:772.080000px;}
.y12f{bottom:775.380000px;}
.yb0{bottom:778.980000px;}
.ye6{bottom:779.295000px;}
.y59{bottom:789.195000px;}
.y12e{bottom:792.795000px;}
.yaf{bottom:796.080000px;}
.y58{bottom:806.580000px;}
.y12d{bottom:809.880000px;}
.yae{bottom:813.495000px;}
.y57{bottom:823.695000px;}
.ye3{bottom:826.380000px;}
.y12c{bottom:827.295000px;}
.yad{bottom:830.580000px;}
.y109{bottom:838.695000px;}
.y1b{bottom:839.580000px;}
.y56{bottom:841.080000px;}
.y12b{bottom:844.380000px;}
.yac{bottom:847.995000px;}
.y55{bottom:858.225000px;}
.y1a{bottom:859.725000px;}
.y12a{bottom:861.825000px;}
.yab{bottom:865.125000px;}
.y54{bottom:875.625000px;}
.y129{bottom:878.925000px;}
.y19{bottom:879.525000px;}
.yaa{bottom:882.525000px;}
.y53{bottom:892.725000px;}
.ye0{bottom:893.625000px;}
.y128{bottom:896.325000px;}
.y18{bottom:898.125000px;}
.ya9{bottom:899.025000px;}
.y106{bottom:905.625000px;}
.y52{bottom:910.125000px;}
.y8c{bottom:910.425000px;}
.ya8{bottom:913.425000px;}
.y17{bottom:916.725000px;}
.y51{bottom:927.225000px;}
.ya7{bottom:930.825000px;}
.y8b{bottom:931.125000px;}
.y16{bottom:934.425000px;}
.y50{bottom:944.625000px;}
.ya6{bottom:947.925000px;}
.y15{bottom:951.525000px;}
.y8a{bottom:951.825000px;}
.yda{bottom:960.525000px;}
.y4f{bottom:961.725000px;}
.ya5{bottom:965.325000px;}
.y89{bottom:971.325000px;}
.y14{bottom:972.225000px;}
.y4e{bottom:979.125000px;}
.ya4{bottom:982.425000px;}
.y88{bottom:986.025000px;}
.y13{bottom:992.925000px;}
.y4d{bottom:996.825000px;}
.ya3{bottom:999.825000px;}
.y87{bottom:1003.125000px;}
.y12{bottom:1013.625000px;}
.y4c{bottom:1016.325000px;}
.ya2{bottom:1016.955000px;}
.y86{bottom:1020.570000px;}
.y4b{bottom:1030.755000px;}
.y11{bottom:1031.670000px;}
.ya1{bottom:1034.370000px;}
.y10{bottom:1036.755000px;}
.y85{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y4a{bottom:1048.170000px;}
.ya0{bottom:1051.455000px;}
.y102{bottom:1052.070000px;}
.y84{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.y49{bottom:1065.255000px;}
.yd7{bottom:1067.355000px;}
.yb{bottom:1068.255000px;}
.y127{bottom:1068.870000px;}
.y9f{bottom:1069.170000px;}
.y83{bottom:1072.170000px;}
.y48{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y126{bottom:1085.955000px;}
.y82{bottom:1089.870000px;}
.y9{bottom:1097.955000px;}
.y47{bottom:1099.755000px;}
.y125{bottom:1103.370000px;}
.y81{bottom:1109.370000px;}
.yd5{bottom:1114.455000px;}
.y8{bottom:1115.670000px;}
.y46{bottom:1117.455000px;}
.y124{bottom:1120.455000px;}
.y80{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y45{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y43{bottom:1196.400000px;}
.h9{height:8.378906px;}
.hb{height:12.568359px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h13{height:33.515625px;}
.h7{height:33.867188px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.h16{height:36.600000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.h17{height:39.600000px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h24{height:43.681641px;}
.h14{height:44.400000px;}
.h12{height:44.507812px;}
.he{height:49.453125px;}
.h25{height:50.273438px;}
.h6{height:50.800781px;}
.h10{height:51.996094px;}
.h19{height:59.400000px;}
.h1c{height:59.437500px;}
.h22{height:59.685000px;}
.h1d{height:59.700000px;}
.h1a{height:59.737500px;}
.h1{height:65.645508px;}
.h1b{height:79.200000px;}
.h23{height:79.237500px;}
.h2{height:97.200000px;}
.h20{height:99.000000px;}
.h1e{height:99.037500px;}
.h1f{height:99.300000px;}
.h18{height:99.337500px;}
.h15{height:119.137500px;}
.h21{height:138.937500px;}
.hf{height:216.030000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w8{width:92.400000px;}
.w3{width:108.000000px;}
.w9{width:114.300000px;}
.wa{width:119.737500px;}
.w6{width:243.975000px;}
.wb{width:389.505000px;}
.w5{width:483.450000px;}
.w7{width:726.825000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.200000px;}
.x17{left:5.700000px;}
.x19{left:8.400000px;}
.x2{left:10.799998px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.xd{left:99.037487px;}
.xc{left:107.445000px;}
.xe{left:121.537487px;}
.x1b{left:143.430000px;}
.x8{left:153.629987px;}
.x16{left:179.475000px;}
.x12{left:226.274987px;}
.xa{left:241.567500px;}
.x18{left:299.220000px;}
.xf{left:330.719987px;}
.x10{left:370.004987px;}
.x5{left:388.319987px;}
.x1a{left:424.050000px;}
.x11{left:446.549987px;}
.x15{left:546.779987px;}
.xb{left:566.280000px;}
.x6{left:695.624987px;}
.x13{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.533333pt;}
.lsd{letter-spacing:2.720000pt;}
.lsc{letter-spacing:6.933333pt;}
.lse{letter-spacing:13.973333pt;}
.lsa{letter-spacing:40.640000pt;}
.ws7{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.533333pt;}
.ws8{word-spacing:-12.266667pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.898667pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-1.866667pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.890667pt;}
._5{width:1.872000pt;}
._2{width:3.392000pt;}
._d{width:4.421333pt;}
._b{width:5.317333pt;}
._9{width:6.773333pt;}
._8{width:8.298667pt;}
._7{width:9.365333pt;}
._6{width:10.293333pt;}
._f{width:11.280000pt;}
._e{width:12.298667pt;}
._c{width:14.346667pt;}
._15{width:15.445333pt;}
._12{width:16.512000pt;}
._13{width:17.941333pt;}
._14{width:18.944000pt;}
._16{width:20.304000pt;}
._10{width:22.133333pt;}
._11{width:23.413333pt;}
._17{width:24.533333pt;}
._18{width:25.808000pt;}
._19{width:26.752000pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.ye9{bottom:5.053333pt;}
.ydf{bottom:5.066667pt;}
.yd2{bottom:5.080000pt;}
.y114{bottom:5.106667pt;}
.ye5{bottom:5.333333pt;}
.yc7{bottom:7.200000pt;}
.y42{bottom:8.533333pt;}
.y5{bottom:10.966667pt;}
.yd4{bottom:12.533333pt;}
.yd8{bottom:13.866667pt;}
.y10b{bottom:13.893333pt;}
.yf1{bottom:13.906667pt;}
.y11c{bottom:14.133333pt;}
.ye4{bottom:14.146667pt;}
.yc8{bottom:16.000000pt;}
.yd6{bottom:20.000000pt;}
.ydd{bottom:22.666667pt;}
.yd9{bottom:22.680000pt;}
.y10a{bottom:22.693333pt;}
.yef{bottom:22.706667pt;}
.yf4{bottom:22.933333pt;}
.yd1{bottom:22.973333pt;}
.yc6{bottom:24.800000pt;}
.y41{bottom:25.866667pt;}
.y104{bottom:31.453333pt;}
.ye1{bottom:31.466667pt;}
.yf8{bottom:31.493333pt;}
.yf0{bottom:31.506667pt;}
.yf5{bottom:31.720000pt;}
.y112{bottom:31.733333pt;}
.y118{bottom:31.746667pt;}
.ycc{bottom:31.773333pt;}
.y40{bottom:38.666667pt;}
.y110{bottom:40.253333pt;}
.ye2{bottom:40.266667pt;}
.yff{bottom:40.273333pt;}
.y10c{bottom:40.293333pt;}
.yf2{bottom:40.306667pt;}
.y10e{bottom:40.520000pt;}
.ydb{bottom:40.533333pt;}
.y116{bottom:40.546667pt;}
.yce{bottom:40.573333pt;}
.y4{bottom:41.600000pt;}
.y103{bottom:49.053333pt;}
.yeb{bottom:49.066667pt;}
.yf7{bottom:49.093333pt;}
.yfc{bottom:49.333333pt;}
.ycb{bottom:49.373333pt;}
.y1{bottom:50.700000pt;}
.y3f{bottom:54.133333pt;}
.ye8{bottom:57.866667pt;}
.y100{bottom:57.873333pt;}
.yf9{bottom:57.906667pt;}
.yfd{bottom:58.133333pt;}
.y117{bottom:58.146667pt;}
.ydc{bottom:58.160000pt;}
.ycd{bottom:58.173333pt;}
.y44{bottom:65.900000pt;}
.y107{bottom:66.933333pt;}
.yca{bottom:66.973333pt;}
.y3e{bottom:69.373333pt;}
.y3{bottom:72.300000pt;}
.y105{bottom:75.453333pt;}
.yfa{bottom:75.493333pt;}
.y101{bottom:75.500000pt;}
.yed{bottom:75.733333pt;}
.y119{bottom:75.746667pt;}
.yde{bottom:75.760000pt;}
.yd0{bottom:75.773333pt;}
.y3d{bottom:84.826667pt;}
.yec{bottom:93.333333pt;}
.ycf{bottom:93.373333pt;}
.yfe{bottom:99.500000pt;}
.y3c{bottom:100.026667pt;}
.yd3{bottom:101.100000pt;}
.y108{bottom:110.960000pt;}
.y123{bottom:113.900000pt;}
.y3b{bottom:115.493333pt;}
.y9e{bottom:115.766667pt;}
.y7f{bottom:118.700000pt;}
.y35{bottom:121.633333pt;}
.y122{bottom:129.366667pt;}
.y3a{bottom:130.693333pt;}
.y9d{bottom:130.966667pt;}
.y7e{bottom:134.160000pt;}
.y34{bottom:137.106667pt;}
.yc9{bottom:140.293333pt;}
.y121{bottom:144.573333pt;}
.y39{bottom:146.173333pt;}
.y9c{bottom:146.440000pt;}
.y7d{bottom:149.373333pt;}
.y33{bottom:152.293333pt;}
.y120{bottom:160.066667pt;}
.y38{bottom:161.360000pt;}
.y9b{bottom:161.666667pt;}
.y7c{bottom:164.866667pt;}
.y147{bottom:165.133333pt;}
.y32{bottom:167.800000pt;}
.y11f{bottom:175.266667pt;}
.y37{bottom:177.093333pt;}
.y9a{bottom:177.133333pt;}
.y7b{bottom:180.066667pt;}
.y31{bottom:183.000000pt;}
.y146{bottom:183.266667pt;}
.y11e{bottom:190.733333pt;}
.y99{bottom:192.333333pt;}
.yfb{bottom:194.200000pt;}
.y7a{bottom:195.533333pt;}
.y30{bottom:198.466667pt;}
.y11d{bottom:205.933333pt;}
.y98{bottom:207.800000pt;}
.y79{bottom:210.733333pt;}
.y2f{bottom:213.666667pt;}
.y145{bottom:213.933333pt;}
.y11b{bottom:222.466667pt;}
.y97{bottom:223.000000pt;}
.y78{bottom:226.200000pt;}
.y2e{bottom:229.133333pt;}
.y96{bottom:238.733333pt;}
.y77{bottom:241.400000pt;}
.y2d{bottom:244.333333pt;}
.y144{bottom:244.600000pt;}
.yc5{bottom:252.866667pt;}
.y76{bottom:256.866667pt;}
.y95{bottom:257.133333pt;}
.y2c{bottom:259.800000pt;}
.y75{bottom:272.600000pt;}
.y94{bottom:274.466667pt;}
.y2b{bottom:275.000000pt;}
.y143{bottom:275.266667pt;}
.y11a{bottom:282.200000pt;}
.y93{bottom:287.533333pt;}
.yf6{bottom:289.133333pt;}
.y74{bottom:289.933333pt;}
.y2a{bottom:290.466667pt;}
.yc4{bottom:300.066667pt;}
.y73{bottom:302.733333pt;}
.y29{bottom:305.666667pt;}
.y142{bottom:305.933333pt;}
.y72{bottom:318.226667pt;}
.yc3{bottom:318.506667pt;}
.y28{bottom:321.173333pt;}
.y71{bottom:333.426667pt;}
.yc2{bottom:335.840000pt;}
.y27{bottom:336.360000pt;}
.y141{bottom:336.626667pt;}
.y70{bottom:348.906667pt;}
.y26{bottom:351.840000pt;}
.y115{bottom:359.293333pt;}
.y6f{bottom:364.106667pt;}
.y25{bottom:367.040000pt;}
.y140{bottom:367.293333pt;}
.y6e{bottom:379.560000pt;}
.y24{bottom:382.506667pt;}
.yf3{bottom:383.840000pt;}
.y6d{bottom:394.773333pt;}
.y23{bottom:397.706667pt;}
.y13f{bottom:397.960000pt;}
.y6c{bottom:410.226667pt;}
.y22{bottom:413.173333pt;}
.y92{bottom:425.440000pt;}
.y6b{bottom:425.960000pt;}
.y21{bottom:428.373333pt;}
.y13e{bottom:428.626667pt;}
.yc1{bottom:440.106667pt;}
.y91{bottom:440.893333pt;}
.y6a{bottom:443.306667pt;}
.yee{bottom:443.560000pt;}
.y20{bottom:443.840000pt;}
.yc0{bottom:453.173333pt;}
.y113{bottom:454.226667pt;}
.y69{bottom:456.106667pt;}
.y1f{bottom:459.066667pt;}
.y13d{bottom:459.333333pt;}
.ybf{bottom:468.400000pt;}
.y68{bottom:471.600000pt;}
.y13c{bottom:474.533333pt;}
.y1e{bottom:474.800000pt;}
.ybe{bottom:483.866667pt;}
.y67{bottom:486.800000pt;}
.y13b{bottom:490.000000pt;}
.y1d{bottom:492.933333pt;}
.ybd{bottom:499.066667pt;}
.y66{bottom:502.266667pt;}
.y90{bottom:502.533333pt;}
.yea{bottom:503.066667pt;}
.y1c{bottom:505.200000pt;}
.ybc{bottom:513.733333pt;}
.y65{bottom:517.466667pt;}
.y8f{bottom:519.866667pt;}
.y13a{bottom:520.666667pt;}
.ybb{bottom:526.800000pt;}
.y111{bottom:531.333333pt;}
.y64{bottom:532.933333pt;}
.y139{bottom:535.866667pt;}
.y36{bottom:541.200000pt;}
.yba{bottom:542.000000pt;}
.y63{bottom:548.133333pt;}
.y138{bottom:551.333333pt;}
.yb9{bottom:557.466667pt;}
.y62{bottom:563.600000pt;}
.y137{bottom:566.533333pt;}
.yb8{bottom:572.666667pt;}
.y61{bottom:578.800000pt;}
.y136{bottom:582.000000pt;}
.yb7{bottom:588.133333pt;}
.y60{bottom:594.266667pt;}
.y135{bottom:597.200000pt;}
.yb6{bottom:603.333333pt;}
.y5f{bottom:609.506667pt;}
.y134{bottom:612.693333pt;}
.ye7{bottom:615.640000pt;}
.yb5{bottom:618.840000pt;}
.y8e{bottom:624.973333pt;}
.y5e{bottom:625.226667pt;}
.y10f{bottom:626.306667pt;}
.y133{bottom:627.893333pt;}
.yb4{bottom:634.026667pt;}
.y8d{bottom:640.173333pt;}
.y5d{bottom:642.560000pt;}
.y132{bottom:643.373333pt;}
.yb3{bottom:649.506667pt;}
.y5c{bottom:655.640000pt;}
.y131{bottom:658.573333pt;}
.yb2{bottom:664.173333pt;}
.y5b{bottom:670.840000pt;}
.y130{bottom:674.026667pt;}
.yb1{bottom:676.973333pt;}
.y10d{bottom:685.773333pt;}
.y5a{bottom:686.293333pt;}
.y12f{bottom:689.226667pt;}
.yb0{bottom:692.426667pt;}
.ye6{bottom:692.706667pt;}
.y59{bottom:701.506667pt;}
.y12e{bottom:704.706667pt;}
.yaf{bottom:707.626667pt;}
.y58{bottom:716.960000pt;}
.y12d{bottom:719.893333pt;}
.yae{bottom:723.106667pt;}
.y57{bottom:732.173333pt;}
.ye3{bottom:734.560000pt;}
.y12c{bottom:735.373333pt;}
.yad{bottom:738.293333pt;}
.y109{bottom:745.506667pt;}
.y1b{bottom:746.293333pt;}
.y56{bottom:747.626667pt;}
.y12b{bottom:750.560000pt;}
.yac{bottom:753.773333pt;}
.y55{bottom:762.866667pt;}
.y1a{bottom:764.200000pt;}
.y12a{bottom:766.066667pt;}
.yab{bottom:769.000000pt;}
.y54{bottom:778.333333pt;}
.y129{bottom:781.266667pt;}
.y19{bottom:781.800000pt;}
.yaa{bottom:784.466667pt;}
.y53{bottom:793.533333pt;}
.ye0{bottom:794.333333pt;}
.y128{bottom:796.733333pt;}
.y18{bottom:798.333333pt;}
.ya9{bottom:799.133333pt;}
.y106{bottom:805.000000pt;}
.y52{bottom:809.000000pt;}
.y8c{bottom:809.266667pt;}
.ya8{bottom:811.933333pt;}
.y17{bottom:814.866667pt;}
.y51{bottom:824.200000pt;}
.ya7{bottom:827.400000pt;}
.y8b{bottom:827.666667pt;}
.y16{bottom:830.600000pt;}
.y50{bottom:839.666667pt;}
.ya6{bottom:842.600000pt;}
.y15{bottom:845.800000pt;}
.y8a{bottom:846.066667pt;}
.yda{bottom:853.800000pt;}
.y4f{bottom:854.866667pt;}
.ya5{bottom:858.066667pt;}
.y89{bottom:863.400000pt;}
.y14{bottom:864.200000pt;}
.y4e{bottom:870.333333pt;}
.ya4{bottom:873.266667pt;}
.y88{bottom:876.466667pt;}
.y13{bottom:882.600000pt;}
.y4d{bottom:886.066667pt;}
.ya3{bottom:888.733333pt;}
.y87{bottom:891.666667pt;}
.y12{bottom:901.000000pt;}
.y4c{bottom:903.400000pt;}
.ya2{bottom:903.960000pt;}
.y86{bottom:907.173333pt;}
.y4b{bottom:916.226667pt;}
.y11{bottom:917.040000pt;}
.ya1{bottom:919.440000pt;}
.y10{bottom:921.560000pt;}
.y85{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y4a{bottom:931.706667pt;}
.ya0{bottom:934.626667pt;}
.y102{bottom:935.173333pt;}
.y84{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.y49{bottom:946.893333pt;}
.yd7{bottom:948.760000pt;}
.yb{bottom:949.560000pt;}
.y127{bottom:950.106667pt;}
.y9f{bottom:950.373333pt;}
.y83{bottom:953.040000pt;}
.y48{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y126{bottom:965.293333pt;}
.y82{bottom:968.773333pt;}
.y9{bottom:975.960000pt;}
.y47{bottom:977.560000pt;}
.y125{bottom:980.773333pt;}
.y81{bottom:986.106667pt;}
.yd5{bottom:990.626667pt;}
.y8{bottom:991.706667pt;}
.y46{bottom:993.293333pt;}
.y124{bottom:995.960000pt;}
.y80{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y45{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y43{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.hb{height:11.171875pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h13{height:29.791667pt;}
.h7{height:30.104167pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.h16{height:32.533333pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.h17{height:35.200000pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h24{height:38.828125pt;}
.h14{height:39.466667pt;}
.h12{height:39.562500pt;}
.he{height:43.958333pt;}
.h25{height:44.687500pt;}
.h6{height:45.156250pt;}
.h10{height:46.218750pt;}
.h19{height:52.800000pt;}
.h1c{height:52.833333pt;}
.h22{height:53.053333pt;}
.h1d{height:53.066667pt;}
.h1a{height:53.100000pt;}
.h1{height:58.351562pt;}
.h1b{height:70.400000pt;}
.h23{height:70.433333pt;}
.h2{height:86.400000pt;}
.h20{height:88.000000pt;}
.h1e{height:88.033333pt;}
.h1f{height:88.266667pt;}
.h18{height:88.300000pt;}
.h15{height:105.900000pt;}
.h21{height:123.500000pt;}
.hf{height:192.026667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w8{width:82.133333pt;}
.w3{width:96.000000pt;}
.w9{width:101.600000pt;}
.wa{width:106.433333pt;}
.w6{width:216.866667pt;}
.wb{width:346.226667pt;}
.w5{width:429.733333pt;}
.w7{width:646.066667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.066667pt;}
.x17{left:5.066667pt;}
.x19{left:7.466667pt;}
.x2{left:9.599999pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.xd{left:88.033322pt;}
.xc{left:95.506667pt;}
.xe{left:108.033322pt;}
.x1b{left:127.493333pt;}
.x8{left:136.559988pt;}
.x16{left:159.533333pt;}
.x12{left:201.133322pt;}
.xa{left:214.726667pt;}
.x18{left:265.973333pt;}
.xf{left:293.973322pt;}
.x10{left:328.893322pt;}
.x5{left:345.173322pt;}
.x1a{left:376.933333pt;}
.x11{left:396.933322pt;}
.x15{left:486.026655pt;}
.xb{left:503.360000pt;}
.x6{left:618.333322pt;}
.x13{left:720.226655pt;}
.x9{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; }
  