
    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_957ab04d909f6d4c36e88c6d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ef91abb3ac12c2e04371886.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_670569a505deb55a7ab29bcb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_e5fa420ef1c02edf208bf5bd.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_7d05aab0c8a1daaaa8633c98.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_df452f2fc013e9d250ca841d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2bce28103a9ab16b747f4851.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7d829dda707306ad3c0c64ff.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);}
.v3{vertical-align:-69.600000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.660000px;}
.ls12{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.208800px;}
.lsf{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.600000px;}
.ls14{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.320000px;}
.ls11{letter-spacing:21.720000px;}
.ls4{letter-spacing:45.720000px;}
.ls3{letter-spacing:63.720000px;}
.lsd{letter-spacing:99.000000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws9{word-spacing:-16.320000px;}
.wsf{word-spacing:-16.080000px;}
.wsc{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.880000px;}
.wse{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.460000px;}
.ws7{word-spacing:-13.920000px;}
.ws2{word-spacing:-13.800000px;}
.wsd{word-spacing:-13.680000px;}
.ws6{word-spacing:-12.900000px;}
.ws5{word-spacing:-9.900000px;}
.wsa{word-spacing:-9.691200px;}
.ws8{word-spacing:0.000000px;}
._32{margin-left:-8.640000px;}
._9{margin-left:-2.820000px;}
._0{margin-left:-1.740000px;}
._1{width:1.020000px;}
._2{width:2.370000px;}
._13{width:3.540000px;}
._a{width:4.560000px;}
._b{width:6.000000px;}
._e{width:7.140000px;}
._f{width:8.400000px;}
._10{width:9.600000px;}
._1c{width:10.860000px;}
._1f{width:12.030000px;}
._20{width:13.410000px;}
._c{width:16.080000px;}
._11{width:17.580000px;}
._12{width:18.660000px;}
._22{width:20.400000px;}
._23{width:21.480000px;}
._d{width:22.680000px;}
._1b{width:24.120000px;}
._21{width:25.500000px;}
._4{width:27.300000px;}
._3{width:28.860000px;}
._25{width:30.240000px;}
._1a{width:31.260000px;}
._18{width:32.340000px;}
._19{width:34.020000px;}
._24{width:35.430000px;}
._7{width:36.960000px;}
._8{width:38.880000px;}
._6{width:40.740000px;}
._5{width:42.120000px;}
._16{width:44.220000px;}
._17{width:45.420000px;}
._1e{width:47.460000px;}
._15{width:49.260000px;}
._14{width:50.340000px;}
._29{width:54.630000px;}
._2a{width:56.250000px;}
._2e{width:61.620000px;}
._2c{width:73.230000px;}
._2b{width:74.400000px;}
._28{width:90.030000px;}
._27{width:97.260000px;}
._26{width:109.320000px;}
._31{width:128.640000px;}
._30{width:160.890000px;}
._2f{width:175.020000px;}
._2d{width:191.580000px;}
._1d{width:201.000000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:6.000000px;}
.ya7{bottom:6.285000px;}
.ya9{bottom:6.300000px;}
.ya5{bottom:6.315000px;}
.yee{bottom:6.600000px;}
.ye5{bottom:7.200000px;}
.yaf{bottom:7.500000px;}
.ya3{bottom:7.800000px;}
.yf3{bottom:8.415000px;}
.yb7{bottom:8.700000px;}
.yec{bottom:9.000000px;}
.yc9{bottom:15.300000px;}
.y9c{bottom:25.800000px;}
.yd3{bottom:25.845000px;}
.yba{bottom:26.100000px;}
.yf1{bottom:26.115000px;}
.yc6{bottom:26.145000px;}
.yd9{bottom:26.400000px;}
.ydb{bottom:26.415000px;}
.yeb{bottom:28.800000px;}
.yad{bottom:34.230000px;}
.y4{bottom:35.737500px;}
.y3{bottom:53.137500px;}
.yac{bottom:54.030000px;}
.yb5{bottom:55.200000px;}
.ybe{bottom:56.392500px;}
.yab{bottom:73.845000px;}
.yb4{bottom:75.000000px;}
.ya1{bottom:76.215000px;}
.ybd{bottom:76.237500px;}
.ye9{bottom:78.937500px;}
.yc3{bottom:79.837500px;}
.y51{bottom:80.737500px;}
.y36{bottom:84.937500px;}
.yb3{bottom:94.800000px;}
.ybb{bottom:95.437500px;}
.y9f{bottom:96.030000px;}
.ybc{bottom:96.037500px;}
.y50{bottom:100.537500px;}
.y35{bottom:104.737500px;}
.y112{bottom:106.237500px;}
.y83{bottom:106.537500px;}
.yc2{bottom:117.637500px;}
.y4f{bottom:120.337500px;}
.ye8{bottom:120.937500px;}
.y34{bottom:124.837500px;}
.y111{bottom:126.037500px;}
.y82{bottom:126.337500px;}
.yc1{bottom:139.537500px;}
.y4e{bottom:140.137500px;}
.y33{bottom:144.637500px;}
.y110{bottom:145.837500px;}
.y81{bottom:146.137500px;}
.y4d{bottom:159.930000px;}
.yc0{bottom:161.745000px;}
.ye7{bottom:162.930000px;}
.y32{bottom:164.430000px;}
.y10f{bottom:165.645000px;}
.y80{bottom:166.245000px;}
.y4c{bottom:180.075000px;}
.ybf{bottom:183.975000px;}
.y31{bottom:184.275000px;}
.y10e{bottom:185.475000px;}
.y7f{bottom:186.375000px;}
.y4b{bottom:199.875000px;}
.y30{bottom:204.075000px;}
.ye6{bottom:204.675000px;}
.y10d{bottom:205.275000px;}
.y7e{bottom:206.175000px;}
.yb2{bottom:207.075000px;}
.y4a{bottom:219.675000px;}
.y2f{bottom:223.875000px;}
.y10c{bottom:224.775000px;}
.y7d{bottom:225.975000px;}
.yb9{bottom:229.275000px;}
.y49{bottom:239.475000px;}
.y2e{bottom:243.675000px;}
.y10b{bottom:245.175000px;}
.y7c{bottom:245.775000px;}
.ye4{bottom:246.675000px;}
.y48{bottom:259.275000px;}
.y2d{bottom:263.475000px;}
.y10a{bottom:264.975000px;}
.y7b{bottom:265.575000px;}
.yb8{bottom:271.275000px;}
.ye3{bottom:276.075000px;}
.y47{bottom:279.075000px;}
.y2c{bottom:283.275000px;}
.y109{bottom:284.775000px;}
.y7a{bottom:285.375000px;}
.yb6{bottom:293.175000px;}
.ye2{bottom:296.175000px;}
.y46{bottom:298.875000px;}
.y2b{bottom:303.375000px;}
.y108{bottom:304.575000px;}
.y79{bottom:305.175000px;}
.ye1{bottom:315.975000px;}
.yaa{bottom:317.475000px;}
.y45{bottom:318.675000px;}
.y2a{bottom:323.175000px;}
.y107{bottom:324.375000px;}
.y78{bottom:324.675000px;}
.y116{bottom:324.975000px;}
.ye0{bottom:335.820000px;}
.y44{bottom:338.205000px;}
.yb1{bottom:339.705000px;}
.y29{bottom:343.005000px;}
.y106{bottom:344.205000px;}
.y77{bottom:344.505000px;}
.y115{bottom:344.820000px;}
.ydf{bottom:355.620000px;}
.y43{bottom:358.620000px;}
.yb0{bottom:361.905000px;}
.y28{bottom:362.505000px;}
.y105{bottom:364.005000px;}
.y76{bottom:364.920000px;}
.yde{bottom:375.705000px;}
.y42{bottom:378.120000px;}
.y27{bottom:382.320000px;}
.yae{bottom:383.820000px;}
.y75{bottom:384.705000px;}
.ydd{bottom:395.505000px;}
.y41{bottom:397.905000px;}
.y26{bottom:402.420000px;}
.y104{bottom:403.920000px;}
.y74{bottom:404.505000px;}
.ya0{bottom:407.205000px;}
.y9e{bottom:407.220000px;}
.ydc{bottom:415.320000px;}
.y40{bottom:418.005000px;}
.y25{bottom:422.220000px;}
.y103{bottom:423.720000px;}
.y73{bottom:424.320000px;}
.ya8{bottom:429.405000px;}
.yda{bottom:430.905000px;}
.yd8{bottom:430.920000px;}
.y3f{bottom:438.120000px;}
.y24{bottom:442.005000px;}
.y102{bottom:443.520000px;}
.y72{bottom:444.105000px;}
.ya6{bottom:451.320000px;}
.y3e{bottom:458.820000px;}
.y23{bottom:462.120000px;}
.y101{bottom:463.320000px;}
.y71{bottom:463.905000px;}
.yd7{bottom:472.905000px;}
.ya4{bottom:473.505000px;}
.y3d{bottom:478.905000px;}
.y22{bottom:481.920000px;}
.y100{bottom:483.105000px;}
.y70{bottom:483.720000px;}
.ya2{bottom:495.450000px;}
.y3c{bottom:499.650000px;}
.y21{bottom:501.750000px;}
.yff{bottom:502.950000px;}
.y6f{bottom:503.550000px;}
.yd6{bottom:514.950000px;}
.y9b{bottom:518.850000px;}
.y3b{bottom:519.450000px;}
.y20{bottom:521.550000px;}
.yfe{bottom:522.750000px;}
.y6e{bottom:523.650000px;}
.y3a{bottom:540.450000px;}
.y1f{bottom:541.350000px;}
.yfd{bottom:542.550000px;}
.y6d{bottom:543.450000px;}
.yd5{bottom:556.950000px;}
.y39{bottom:560.850000px;}
.y1e{bottom:561.150000px;}
.yfc{bottom:562.650000px;}
.y6c{bottom:563.250000px;}
.y9a{bottom:566.850000px;}
.y38{bottom:580.650000px;}
.y1d{bottom:580.950000px;}
.yfb{bottom:582.150000px;}
.y6b{bottom:583.050000px;}
.y99{bottom:586.650000px;}
.yd4{bottom:598.650000px;}
.y37{bottom:600.450000px;}
.y1c{bottom:600.750000px;}
.yfa{bottom:601.950000px;}
.y6a{bottom:602.850000px;}
.y98{bottom:606.750000px;}
.y1b{bottom:620.850000px;}
.yf9{bottom:622.050000px;}
.y69{bottom:622.650000px;}
.y97{bottom:626.550000px;}
.y1a{bottom:640.650000px;}
.yf8{bottom:641.880000px;}
.y68{bottom:642.495000px;}
.y96{bottom:646.380000px;}
.y19{bottom:660.480000px;}
.yf7{bottom:661.695000px;}
.y67{bottom:662.295000px;}
.y95{bottom:666.495000px;}
.yd2{bottom:668.880000px;}
.y18{bottom:680.280000px;}
.yf6{bottom:681.495000px;}
.y66{bottom:682.095000px;}
.y94{bottom:686.295000px;}
.yd1{bottom:688.980000px;}
.y17{bottom:700.095000px;}
.yf5{bottom:701.295000px;}
.y65{bottom:702.195000px;}
.y93{bottom:706.080000px;}
.yd0{bottom:708.780000px;}
.y16{bottom:719.895000px;}
.yf4{bottom:721.080000px;}
.y64{bottom:721.695000px;}
.y114{bottom:721.995000px;}
.y92{bottom:725.880000px;}
.ycf{bottom:728.595000px;}
.yf2{bottom:736.980000px;}
.y15{bottom:739.695000px;}
.y63{bottom:741.480000px;}
.y113{bottom:741.795000px;}
.yce{bottom:748.380000px;}
.y14{bottom:759.495000px;}
.yf0{bottom:761.280000px;}
.y62{bottom:761.595000px;}
.y91{bottom:763.095000px;}
.ycd{bottom:768.195000px;}
.y90{bottom:777.195000px;}
.y13{bottom:779.295000px;}
.y61{bottom:781.395000px;}
.ycc{bottom:787.980000px;}
.y8f{bottom:797.295000px;}
.y12{bottom:799.425000px;}
.y60{bottom:801.225000px;}
.yef{bottom:803.325000px;}
.ycb{bottom:803.925000px;}
.y8e{bottom:817.125000px;}
.y11{bottom:819.225000px;}
.y5f{bottom:821.025000px;}
.yca{bottom:827.325000px;}
.y8d{bottom:836.925000px;}
.y10{bottom:839.025000px;}
.y5e{bottom:840.825000px;}
.yed{bottom:845.025000px;}
.y8c{bottom:856.725000px;}
.yc8{bottom:858.525000px;}
.yf{bottom:858.825000px;}
.y5d{bottom:860.925000px;}
.y8b{bottom:876.525000px;}
.ye{bottom:878.625000px;}
.y5c{bottom:880.725000px;}
.yea{bottom:887.025000px;}
.yc7{bottom:889.725000px;}
.y8a{bottom:896.625000px;}
.yd{bottom:898.425000px;}
.y5b{bottom:900.525000px;}
.y89{bottom:916.425000px;}
.yc{bottom:918.225000px;}
.y5a{bottom:920.325000px;}
.yc5{bottom:931.425000px;}
.y88{bottom:936.225000px;}
.y59{bottom:940.125000px;}
.yb{bottom:942.225000px;}
.y87{bottom:956.025000px;}
.ya{bottom:959.955000px;}
.y86{bottom:973.455000px;}
.y9{bottom:977.955000px;}
.yc4{bottom:979.455000px;}
.y58{bottom:979.755000px;}
.y85{bottom:987.570000px;}
.y8{bottom:991.455000px;}
.y57{bottom:999.570000px;}
.y84{bottom:1004.955000px;}
.y7{bottom:1011.255000px;}
.y56{bottom:1019.670000px;}
.y6{bottom:1038.255000px;}
.y55{bottom:1039.455000px;}
.y54{bottom:1059.255000px;}
.y53{bottom:1079.070000px;}
.y5{bottom:1081.755000px;}
.y52{bottom:1098.870000px;}
.y2{bottom:1125.000000px;}
.y1{bottom:1141.800000px;}
.he{height:19.785000px;}
.hf{height:19.800000px;}
.h16{height:19.822500px;}
.hd{height:19.837500px;}
.h11{height:20.985000px;}
.h15{height:21.000000px;}
.hc{height:21.300000px;}
.h1c{height:21.900000px;}
.h14{height:22.200000px;}
.h18{height:28.800000px;}
.h5{height:35.332031px;}
.h9{height:36.281250px;}
.ha{height:39.600000px;}
.h19{height:39.637500px;}
.h1a{height:39.900000px;}
.h17{height:39.937500px;}
.h1b{height:42.300000px;}
.h7{height:43.857422px;}
.h6{height:58.857422px;}
.h2{height:58.886719px;}
.h12{height:60.465234px;}
.h1{height:60.468750px;}
.h4{height:61.569375px;}
.h8{height:61.670545px;}
.h10{height:87.337500px;}
.h13{height:108.300000px;}
.hb{height:109.537500px;}
.h3{height:133.031250px;}
.h0{height:1188.000000px;}
.w4{width:72.937500px;}
.w1{width:89.437500px;}
.w10{width:93.337500px;}
.w9{width:98.437500px;}
.w3{width:98.700000px;}
.w2{width:99.037500px;}
.w5{width:100.237500px;}
.w7{width:104.137500px;}
.wa{width:105.937500px;}
.wf{width:110.722500px;}
.we{width:111.637500px;}
.w8{width:113.437500px;}
.wd{width:115.237500px;}
.wb{width:124.237500px;}
.w6{width:133.537500px;}
.wc{width:141.637500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:43.200000px;}
.x21{left:66.637500px;}
.x1{left:70.237500px;}
.x9{left:85.537500px;}
.x1b{left:87.937500px;}
.x1a{left:94.237500px;}
.x10{left:97.237500px;}
.x20{left:107.737500px;}
.x2{left:115.237500px;}
.x12{left:124.237500px;}
.x3{left:140.737500px;}
.x11{left:147.937500px;}
.x1c{left:190.575000px;}
.x22{left:192.975000px;}
.x8{left:197.775000px;}
.xa{left:200.175000px;}
.x1e{left:213.675000px;}
.x1f{left:314.520000px;}
.x1d{left:326.520000px;}
.x23{left:336.720000px;}
.x5{left:338.220000px;}
.x6{left:346.020000px;}
.x7{left:356.205000px;}
.xf{left:442.950000px;}
.x4{left:459.150000px;}
.xb{left:469.950000px;}
.x16{left:475.650000px;}
.x14{left:481.050000px;}
.xd{left:496.950000px;}
.x24{left:498.750000px;}
.x13{left:523.950000px;}
.xe{left:551.295000px;}
.x17{left:567.195000px;}
.x27{left:598.995000px;}
.xc{left:601.695000px;}
.x15{left:603.495000px;}
.x28{left:608.595000px;}
.x25{left:612.795000px;}
.x18{left:668.325000px;}
.x26{left:725.625000px;}
.x19{left:769.425000px;}
@media print{
.v3{vertical-align:-61.866667pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.253333pt;}
.ls12{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.185600pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.173333pt;}
.ls11{letter-spacing:19.306667pt;}
.ls4{letter-spacing:40.640000pt;}
.ls3{letter-spacing:56.640000pt;}
.lsd{letter-spacing:88.000000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws9{word-spacing:-14.506667pt;}
.wsf{word-spacing:-14.293333pt;}
.wsc{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.226667pt;}
.wse{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.853333pt;}
.ws7{word-spacing:-12.373333pt;}
.ws2{word-spacing:-12.266667pt;}
.wsd{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.466667pt;}
.ws5{word-spacing:-8.800000pt;}
.wsa{word-spacing:-8.614400pt;}
.ws8{word-spacing:0.000000pt;}
._32{margin-left:-7.680000pt;}
._9{margin-left:-2.506667pt;}
._0{margin-left:-1.546667pt;}
._1{width:0.906667pt;}
._2{width:2.106667pt;}
._13{width:3.146667pt;}
._a{width:4.053333pt;}
._b{width:5.333333pt;}
._e{width:6.346667pt;}
._f{width:7.466667pt;}
._10{width:8.533333pt;}
._1c{width:9.653333pt;}
._1f{width:10.693333pt;}
._20{width:11.920000pt;}
._c{width:14.293333pt;}
._11{width:15.626667pt;}
._12{width:16.586667pt;}
._22{width:18.133333pt;}
._23{width:19.093333pt;}
._d{width:20.160000pt;}
._1b{width:21.440000pt;}
._21{width:22.666667pt;}
._4{width:24.266667pt;}
._3{width:25.653333pt;}
._25{width:26.880000pt;}
._1a{width:27.786667pt;}
._18{width:28.746667pt;}
._19{width:30.240000pt;}
._24{width:31.493333pt;}
._7{width:32.853333pt;}
._8{width:34.560000pt;}
._6{width:36.213333pt;}
._5{width:37.440000pt;}
._16{width:39.306667pt;}
._17{width:40.373333pt;}
._1e{width:42.186667pt;}
._15{width:43.786667pt;}
._14{width:44.746667pt;}
._29{width:48.560000pt;}
._2a{width:50.000000pt;}
._2e{width:54.773333pt;}
._2c{width:65.093333pt;}
._2b{width:66.133333pt;}
._28{width:80.026667pt;}
._27{width:86.453333pt;}
._26{width:97.173333pt;}
._31{width:114.346667pt;}
._30{width:143.013333pt;}
._2f{width:155.573333pt;}
._2d{width:170.293333pt;}
._1d{width:178.666667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:5.333333pt;}
.ya7{bottom:5.586667pt;}
.ya9{bottom:5.600000pt;}
.ya5{bottom:5.613333pt;}
.yee{bottom:5.866667pt;}
.ye5{bottom:6.400000pt;}
.yaf{bottom:6.666667pt;}
.ya3{bottom:6.933333pt;}
.yf3{bottom:7.480000pt;}
.yb7{bottom:7.733333pt;}
.yec{bottom:8.000000pt;}
.yc9{bottom:13.600000pt;}
.y9c{bottom:22.933333pt;}
.yd3{bottom:22.973333pt;}
.yba{bottom:23.200000pt;}
.yf1{bottom:23.213333pt;}
.yc6{bottom:23.240000pt;}
.yd9{bottom:23.466667pt;}
.ydb{bottom:23.480000pt;}
.yeb{bottom:25.600000pt;}
.yad{bottom:30.426667pt;}
.y4{bottom:31.766667pt;}
.y3{bottom:47.233333pt;}
.yac{bottom:48.026667pt;}
.yb5{bottom:49.066667pt;}
.ybe{bottom:50.126667pt;}
.yab{bottom:65.640000pt;}
.yb4{bottom:66.666667pt;}
.ya1{bottom:67.746667pt;}
.ybd{bottom:67.766667pt;}
.ye9{bottom:70.166667pt;}
.yc3{bottom:70.966667pt;}
.y51{bottom:71.766667pt;}
.y36{bottom:75.500000pt;}
.yb3{bottom:84.266667pt;}
.ybb{bottom:84.833333pt;}
.y9f{bottom:85.360000pt;}
.ybc{bottom:85.366667pt;}
.y50{bottom:89.366667pt;}
.y35{bottom:93.100000pt;}
.y112{bottom:94.433333pt;}
.y83{bottom:94.700000pt;}
.yc2{bottom:104.566667pt;}
.y4f{bottom:106.966667pt;}
.ye8{bottom:107.500000pt;}
.y34{bottom:110.966667pt;}
.y111{bottom:112.033333pt;}
.y82{bottom:112.300000pt;}
.yc1{bottom:124.033333pt;}
.y4e{bottom:124.566667pt;}
.y33{bottom:128.566667pt;}
.y110{bottom:129.633333pt;}
.y81{bottom:129.900000pt;}
.y4d{bottom:142.160000pt;}
.yc0{bottom:143.773333pt;}
.ye7{bottom:144.826667pt;}
.y32{bottom:146.160000pt;}
.y10f{bottom:147.240000pt;}
.y80{bottom:147.773333pt;}
.y4c{bottom:160.066667pt;}
.ybf{bottom:163.533333pt;}
.y31{bottom:163.800000pt;}
.y10e{bottom:164.866667pt;}
.y7f{bottom:165.666667pt;}
.y4b{bottom:177.666667pt;}
.y30{bottom:181.400000pt;}
.ye6{bottom:181.933333pt;}
.y10d{bottom:182.466667pt;}
.y7e{bottom:183.266667pt;}
.yb2{bottom:184.066667pt;}
.y4a{bottom:195.266667pt;}
.y2f{bottom:199.000000pt;}
.y10c{bottom:199.800000pt;}
.y7d{bottom:200.866667pt;}
.yb9{bottom:203.800000pt;}
.y49{bottom:212.866667pt;}
.y2e{bottom:216.600000pt;}
.y10b{bottom:217.933333pt;}
.y7c{bottom:218.466667pt;}
.ye4{bottom:219.266667pt;}
.y48{bottom:230.466667pt;}
.y2d{bottom:234.200000pt;}
.y10a{bottom:235.533333pt;}
.y7b{bottom:236.066667pt;}
.yb8{bottom:241.133333pt;}
.ye3{bottom:245.400000pt;}
.y47{bottom:248.066667pt;}
.y2c{bottom:251.800000pt;}
.y109{bottom:253.133333pt;}
.y7a{bottom:253.666667pt;}
.yb6{bottom:260.600000pt;}
.ye2{bottom:263.266667pt;}
.y46{bottom:265.666667pt;}
.y2b{bottom:269.666667pt;}
.y108{bottom:270.733333pt;}
.y79{bottom:271.266667pt;}
.ye1{bottom:280.866667pt;}
.yaa{bottom:282.200000pt;}
.y45{bottom:283.266667pt;}
.y2a{bottom:287.266667pt;}
.y107{bottom:288.333333pt;}
.y78{bottom:288.600000pt;}
.y116{bottom:288.866667pt;}
.ye0{bottom:298.506667pt;}
.y44{bottom:300.626667pt;}
.yb1{bottom:301.960000pt;}
.y29{bottom:304.893333pt;}
.y106{bottom:305.960000pt;}
.y77{bottom:306.226667pt;}
.y115{bottom:306.506667pt;}
.ydf{bottom:316.106667pt;}
.y43{bottom:318.773333pt;}
.yb0{bottom:321.693333pt;}
.y28{bottom:322.226667pt;}
.y105{bottom:323.560000pt;}
.y76{bottom:324.373333pt;}
.yde{bottom:333.960000pt;}
.y42{bottom:336.106667pt;}
.y27{bottom:339.840000pt;}
.yae{bottom:341.173333pt;}
.y75{bottom:341.960000pt;}
.ydd{bottom:351.560000pt;}
.y41{bottom:353.693333pt;}
.y26{bottom:357.706667pt;}
.y104{bottom:359.040000pt;}
.y74{bottom:359.560000pt;}
.ya0{bottom:361.960000pt;}
.y9e{bottom:361.973333pt;}
.ydc{bottom:369.173333pt;}
.y40{bottom:371.560000pt;}
.y25{bottom:375.306667pt;}
.y103{bottom:376.640000pt;}
.y73{bottom:377.173333pt;}
.ya8{bottom:381.693333pt;}
.yda{bottom:383.026667pt;}
.yd8{bottom:383.040000pt;}
.y3f{bottom:389.440000pt;}
.y24{bottom:392.893333pt;}
.y102{bottom:394.240000pt;}
.y72{bottom:394.760000pt;}
.ya6{bottom:401.173333pt;}
.y3e{bottom:407.840000pt;}
.y23{bottom:410.773333pt;}
.y101{bottom:411.840000pt;}
.y71{bottom:412.360000pt;}
.yd7{bottom:420.360000pt;}
.ya4{bottom:420.893333pt;}
.y3d{bottom:425.693333pt;}
.y22{bottom:428.373333pt;}
.y100{bottom:429.426667pt;}
.y70{bottom:429.973333pt;}
.ya2{bottom:440.400000pt;}
.y3c{bottom:444.133333pt;}
.y21{bottom:446.000000pt;}
.yff{bottom:447.066667pt;}
.y6f{bottom:447.600000pt;}
.yd6{bottom:457.733333pt;}
.y9b{bottom:461.200000pt;}
.y3b{bottom:461.733333pt;}
.y20{bottom:463.600000pt;}
.yfe{bottom:464.666667pt;}
.y6e{bottom:465.466667pt;}
.y3a{bottom:480.400000pt;}
.y1f{bottom:481.200000pt;}
.yfd{bottom:482.266667pt;}
.y6d{bottom:483.066667pt;}
.yd5{bottom:495.066667pt;}
.y39{bottom:498.533333pt;}
.y1e{bottom:498.800000pt;}
.yfc{bottom:500.133333pt;}
.y6c{bottom:500.666667pt;}
.y9a{bottom:503.866667pt;}
.y38{bottom:516.133333pt;}
.y1d{bottom:516.400000pt;}
.yfb{bottom:517.466667pt;}
.y6b{bottom:518.266667pt;}
.y99{bottom:521.466667pt;}
.yd4{bottom:532.133333pt;}
.y37{bottom:533.733333pt;}
.y1c{bottom:534.000000pt;}
.yfa{bottom:535.066667pt;}
.y6a{bottom:535.866667pt;}
.y98{bottom:539.333333pt;}
.y1b{bottom:551.866667pt;}
.yf9{bottom:552.933333pt;}
.y69{bottom:553.466667pt;}
.y97{bottom:556.933333pt;}
.y1a{bottom:569.466667pt;}
.yf8{bottom:570.560000pt;}
.y68{bottom:571.106667pt;}
.y96{bottom:574.560000pt;}
.y19{bottom:587.093333pt;}
.yf7{bottom:588.173333pt;}
.y67{bottom:588.706667pt;}
.y95{bottom:592.440000pt;}
.yd2{bottom:594.560000pt;}
.y18{bottom:604.693333pt;}
.yf6{bottom:605.773333pt;}
.y66{bottom:606.306667pt;}
.y94{bottom:610.040000pt;}
.yd1{bottom:612.426667pt;}
.y17{bottom:622.306667pt;}
.yf5{bottom:623.373333pt;}
.y65{bottom:624.173333pt;}
.y93{bottom:627.626667pt;}
.yd0{bottom:630.026667pt;}
.y16{bottom:639.906667pt;}
.yf4{bottom:640.960000pt;}
.y64{bottom:641.506667pt;}
.y114{bottom:641.773333pt;}
.y92{bottom:645.226667pt;}
.ycf{bottom:647.640000pt;}
.yf2{bottom:655.093333pt;}
.y15{bottom:657.506667pt;}
.y63{bottom:659.093333pt;}
.y113{bottom:659.373333pt;}
.yce{bottom:665.226667pt;}
.y14{bottom:675.106667pt;}
.yf0{bottom:676.693333pt;}
.y62{bottom:676.973333pt;}
.y91{bottom:678.306667pt;}
.ycd{bottom:682.840000pt;}
.y90{bottom:690.840000pt;}
.y13{bottom:692.706667pt;}
.y61{bottom:694.573333pt;}
.ycc{bottom:700.426667pt;}
.y8f{bottom:708.706667pt;}
.y12{bottom:710.600000pt;}
.y60{bottom:712.200000pt;}
.yef{bottom:714.066667pt;}
.ycb{bottom:714.600000pt;}
.y8e{bottom:726.333333pt;}
.y11{bottom:728.200000pt;}
.y5f{bottom:729.800000pt;}
.yca{bottom:735.400000pt;}
.y8d{bottom:743.933333pt;}
.y10{bottom:745.800000pt;}
.y5e{bottom:747.400000pt;}
.yed{bottom:751.133333pt;}
.y8c{bottom:761.533333pt;}
.yc8{bottom:763.133333pt;}
.yf{bottom:763.400000pt;}
.y5d{bottom:765.266667pt;}
.y8b{bottom:779.133333pt;}
.ye{bottom:781.000000pt;}
.y5c{bottom:782.866667pt;}
.yea{bottom:788.466667pt;}
.yc7{bottom:790.866667pt;}
.y8a{bottom:797.000000pt;}
.yd{bottom:798.600000pt;}
.y5b{bottom:800.466667pt;}
.y89{bottom:814.600000pt;}
.yc{bottom:816.200000pt;}
.y5a{bottom:818.066667pt;}
.yc5{bottom:827.933333pt;}
.y88{bottom:832.200000pt;}
.y59{bottom:835.666667pt;}
.yb{bottom:837.533333pt;}
.y87{bottom:849.800000pt;}
.ya{bottom:853.293333pt;}
.y86{bottom:865.293333pt;}
.y9{bottom:869.293333pt;}
.yc4{bottom:870.626667pt;}
.y58{bottom:870.893333pt;}
.y85{bottom:877.840000pt;}
.y8{bottom:881.293333pt;}
.y57{bottom:888.506667pt;}
.y84{bottom:893.293333pt;}
.y7{bottom:898.893333pt;}
.y56{bottom:906.373333pt;}
.y6{bottom:922.893333pt;}
.y55{bottom:923.960000pt;}
.y54{bottom:941.560000pt;}
.y53{bottom:959.173333pt;}
.y5{bottom:961.560000pt;}
.y52{bottom:976.773333pt;}
.y2{bottom:1000.000000pt;}
.y1{bottom:1014.933333pt;}
.he{height:17.586667pt;}
.hf{height:17.600000pt;}
.h16{height:17.620000pt;}
.hd{height:17.633333pt;}
.h11{height:18.653333pt;}
.h15{height:18.666667pt;}
.hc{height:18.933333pt;}
.h1c{height:19.466667pt;}
.h14{height:19.733333pt;}
.h18{height:25.600000pt;}
.h5{height:31.406250pt;}
.h9{height:32.250000pt;}
.ha{height:35.200000pt;}
.h19{height:35.233333pt;}
.h1a{height:35.466667pt;}
.h17{height:35.500000pt;}
.h1b{height:37.600000pt;}
.h7{height:38.984375pt;}
.h6{height:52.317708pt;}
.h2{height:52.343750pt;}
.h12{height:53.746875pt;}
.h1{height:53.750000pt;}
.h4{height:54.728333pt;}
.h8{height:54.818262pt;}
.h10{height:77.633333pt;}
.h13{height:96.266667pt;}
.hb{height:97.366667pt;}
.h3{height:118.250000pt;}
.h0{height:1056.000000pt;}
.w4{width:64.833333pt;}
.w1{width:79.500000pt;}
.w10{width:82.966667pt;}
.w9{width:87.500000pt;}
.w3{width:87.733333pt;}
.w2{width:88.033333pt;}
.w5{width:89.100000pt;}
.w7{width:92.566667pt;}
.wa{width:94.166667pt;}
.wf{width:98.420000pt;}
.we{width:99.233333pt;}
.w8{width:100.833333pt;}
.wd{width:102.433333pt;}
.wb{width:110.433333pt;}
.w6{width:118.700000pt;}
.wc{width:125.900000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:38.400000pt;}
.x21{left:59.233333pt;}
.x1{left:62.433333pt;}
.x9{left:76.033333pt;}
.x1b{left:78.166667pt;}
.x1a{left:83.766667pt;}
.x10{left:86.433333pt;}
.x20{left:95.766667pt;}
.x2{left:102.433333pt;}
.x12{left:110.433333pt;}
.x3{left:125.100000pt;}
.x11{left:131.500000pt;}
.x1c{left:169.400000pt;}
.x22{left:171.533333pt;}
.x8{left:175.800000pt;}
.xa{left:177.933333pt;}
.x1e{left:189.933333pt;}
.x1f{left:279.573333pt;}
.x1d{left:290.240000pt;}
.x23{left:299.306667pt;}
.x5{left:300.640000pt;}
.x6{left:307.573333pt;}
.x7{left:316.626667pt;}
.xf{left:393.733333pt;}
.x4{left:408.133333pt;}
.xb{left:417.733333pt;}
.x16{left:422.800000pt;}
.x14{left:427.600000pt;}
.xd{left:441.733333pt;}
.x24{left:443.333333pt;}
.x13{left:465.733333pt;}
.xe{left:490.040000pt;}
.x17{left:504.173333pt;}
.x27{left:532.440000pt;}
.xc{left:534.840000pt;}
.x15{left:536.440000pt;}
.x28{left:540.973333pt;}
.x25{left:544.706667pt;}
.x18{left:594.066667pt;}
.x26{left:645.000000pt;}
.x19{left:683.933333pt;}
}




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