
    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_14c7a7e9ed1b4f315d9bb37f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_0daaf7623990eb547dd112f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_c219d3eb34ec425e64116af0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_41a807ca2009d5d3035326bc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f77d0435acbd7ad237d7966f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_96e33fb4963a3dcaecaec139.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_d0469e5a6df27e9f84e4d72d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_6193fc93719873dbca485474.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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;}
.v1{vertical-align:12.240000px;}
.lsf{letter-spacing:-0.309600px;}
.ls12{letter-spacing:-0.245400px;}
.ls13{letter-spacing:-0.244800px;}
.ls4{letter-spacing:-0.186000px;}
.ls9{letter-spacing:-0.174000px;}
.ls6{letter-spacing:-0.147000px;}
.ls11{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.067200px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.lsb{letter-spacing:0.135600px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.309000px;}
.lsa{letter-spacing:0.312600px;}
.ls14{letter-spacing:0.335400px;}
.ls15{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.478560px;}
.ls7{letter-spacing:0.528480px;}
.ls3{letter-spacing:0.798000px;}
.lsd{letter-spacing:54.989280px;}
.lsc{letter-spacing:57.149280px;}
.lse{letter-spacing:60.029280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-19.038240px;}
.ws1{word-spacing:-18.852240px;}
.ws0{word-spacing:-15.497520px;}
.ws5{word-spacing:-13.814760px;}
.ws4{word-spacing:-13.505760px;}
.ws3{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.902240px;}
.ws11{word-spacing:-10.835040px;}
.ws12{word-spacing:-10.776240px;}
.ws13{word-spacing:-10.656840px;}
.ws15{word-spacing:-9.833760px;}
.ws8{word-spacing:-9.437760px;}
.ws7{word-spacing:-9.290760px;}
.wsb{word-spacing:-9.263760px;}
.ws14{word-spacing:-9.192960px;}
.wsf{word-spacing:-9.128160px;}
.ws9{word-spacing:-6.183360px;}
.wsd{word-spacing:-0.354360px;}
.wse{word-spacing:-0.177360px;}
.wsc{word-spacing:-0.048240px;}
.ws10{word-spacing:-0.041760px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-1.044000px;}
._0{width:1.002240px;}
._1{width:2.117280px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.360000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.340000px;}
.y2b{bottom:2.880000px;}
.y30{bottom:3.060000px;}
.yf1{bottom:3.240000px;}
.y51{bottom:3.600000px;}
.yab{bottom:5.580000px;}
.y10c{bottom:5.760000px;}
.yba{bottom:7.920000px;}
.yff{bottom:8.280000px;}
.y11{bottom:9.360000px;}
.y103{bottom:9.540000px;}
.yf5{bottom:9.900000px;}
.yc3{bottom:11.160000px;}
.y21{bottom:11.340000px;}
.ye0{bottom:11.385000px;}
.y81{bottom:11.520000px;}
.y1f{bottom:11.700000px;}
.y12{bottom:12.600000px;}
.yd{bottom:13.320000px;}
.y17{bottom:13.860000px;}
.yf3{bottom:14.580000px;}
.y40{bottom:14.940000px;}
.yea{bottom:15.480000px;}
.y2a{bottom:15.660000px;}
.y2f{bottom:15.840000px;}
.y50{bottom:16.410000px;}
.yfa{bottom:17.820000px;}
.yaa{bottom:18.360000px;}
.y10{bottom:18.900000px;}
.y10b{bottom:20.340000px;}
.yb9{bottom:20.700000px;}
.y7{bottom:22.140000px;}
.yfe{bottom:23.040000px;}
.y106{bottom:23.220000px;}
.y18{bottom:23.940000px;}
.yc{bottom:24.300000px;}
.yc1{bottom:24.840000px;}
.y3{bottom:25.416000px;}
.y3f{bottom:27.720000px;}
.y34{bottom:28.440000px;}
.y29{bottom:28.620000px;}
.y94{bottom:28.665000px;}
.y4f{bottom:29.190000px;}
.ye7{bottom:30.240000px;}
.ya9{bottom:31.140000px;}
.yf9{bottom:32.580000px;}
.y6{bottom:33.660000px;}
.y10a{bottom:34.920000px;}
.yb{bottom:35.280000px;}
.y80{bottom:37.260000px;}
.yfd{bottom:37.620000px;}
.yc0{bottom:37.800000px;}
.yd2{bottom:38.340000px;}
.y102{bottom:38.880000px;}
.y19{bottom:39.420000px;}
.y3e{bottom:40.500000px;}
.y5e{bottom:41.220000px;}
.y28{bottom:41.400000px;}
.y93{bottom:41.445000px;}
.y4e{bottom:41.970000px;}
.ye6{bottom:43.020000px;}
.ya8{bottom:44.100000px;}
.ya{bottom:46.260000px;}
.yb8{bottom:46.440000px;}
.yf8{bottom:47.160000px;}
.y111{bottom:49.320000px;}
.y109{bottom:49.680000px;}
.ybf{bottom:50.580000px;}
.y105{bottom:52.380000px;}
.yfc{bottom:52.410000px;}
.y3d{bottom:53.280000px;}
.ycf{bottom:54.174000px;}
.y27{bottom:54.180000px;}
.y92{bottom:54.225000px;}
.y3b{bottom:54.360000px;}
.y4d{bottom:54.930000px;}
.ya7{bottom:56.880000px;}
.y2{bottom:56.916000px;}
.y9{bottom:57.240000px;}
.yb7{bottom:59.220000px;}
.yf7{bottom:61.920000px;}
.y5{bottom:62.460000px;}
.ybe{bottom:63.360000px;}
.y110{bottom:63.900000px;}
.ye4{bottom:66.954000px;}
.y26{bottom:66.960000px;}
.y7e{bottom:66.990000px;}
.y59{bottom:67.005000px;}
.yce{bottom:67.134000px;}
.y2e{bottom:67.140000px;}
.y4c{bottom:67.710000px;}
.y8{bottom:68.220000px;}
.ya6{bottom:69.660000px;}
.y1{bottom:69.696000px;}
.yb6{bottom:72.000000px;}
.ybd{bottom:76.140000px;}
.y95{bottom:76.905000px;}
.y10f{bottom:78.660000px;}
.ye3{bottom:79.734000px;}
.y33{bottom:79.740000px;}
.y7d{bottom:79.770000px;}
.y25{bottom:79.785000px;}
.ycd{bottom:79.914000px;}
.y2d{bottom:79.920000px;}
.y44{bottom:79.965000px;}
.ya5{bottom:82.440000px;}
.y78{bottom:83.556000px;}
.y49{bottom:83.916000px;}
.yb5{bottom:84.780000px;}
.ybc{bottom:89.100000px;}
.y5d{bottom:92.520000px;}
.y7c{bottom:92.550000px;}
.ycc{bottom:92.694000px;}
.y3a{bottom:92.700000px;}
.y24{bottom:92.745000px;}
.y10e{bottom:93.285000px;}
.y1c{bottom:93.960000px;}
.ye2{bottom:93.996000px;}
.ya4{bottom:95.220000px;}
.y15{bottom:96.840000px;}
.yb4{bottom:97.740000px;}
.y77{bottom:98.136000px;}
.y48{bottom:100.296000px;}
.yc4{bottom:102.456000px;}
.y90{bottom:102.600000px;}
.y5c{bottom:105.300000px;}
.yd1{bottom:105.330000px;}
.ycb{bottom:105.474000px;}
.y39{bottom:105.480000px;}
.y7b{bottom:105.510000px;}
.y43{bottom:105.525000px;}
.y1b{bottom:106.740000px;}
.ya3{bottom:108.225000px;}
.yb3{bottom:110.520000px;}
.y76{bottom:112.896000px;}
.y14{bottom:115.200000px;}
.y47{bottom:116.856000px;}
.yca{bottom:118.254000px;}
.y16{bottom:118.260000px;}
.y7a{bottom:118.290000px;}
.y58{bottom:118.305000px;}
.y38{bottom:118.440000px;}
.y1a{bottom:119.700000px;}
.y46{bottom:122.076000px;}
.y75{bottom:127.476000px;}
.y54{bottom:131.040000px;}
.y9d{bottom:131.070000px;}
.y89{bottom:131.085000px;}
.yc9{bottom:131.214000px;}
.y37{bottom:131.220000px;}
.y45{bottom:134.676000px;}
.ya1{bottom:140.940000px;}
.y9b{bottom:142.056000px;}
.y74{bottom:142.776000px;}
.yaf{bottom:143.820000px;}
.ydc{bottom:143.850000px;}
.yc8{bottom:143.994000px;}
.yd6{bottom:144.000000px;}
.y63{bottom:144.030000px;}
.y88{bottom:144.045000px;}
.y73{bottom:147.996000px;}
.yc7{bottom:156.774000px;}
.yae{bottom:156.780000px;}
.y62{bottom:156.810000px;}
.y87{bottom:156.825000px;}
.y72{bottom:161.130000px;}
.y71{bottom:166.350000px;}
.y9e{bottom:166.710000px;}
.y112{bottom:169.050000px;}
.yc6{bottom:169.554000px;}
.yad{bottom:169.560000px;}
.y61{bottom:169.590000px;}
.y86{bottom:169.605000px;}
.y9a{bottom:171.390000px;}
.y70{bottom:178.770000px;}
.yb0{bottom:179.460000px;}
.ydd{bottom:179.490000px;}
.y10d{bottom:181.470000px;}
.yd5{bottom:182.340000px;}
.y60{bottom:182.370000px;}
.yc5{bottom:182.379000px;}
.y85{bottom:182.385000px;}
.ye1{bottom:183.990000px;}
.y99{bottom:186.690000px;}
.y98{bottom:191.910000px;}
.yda{bottom:192.240000px;}
.y6f{bottom:194.070000px;}
.yd4{bottom:195.120000px;}
.y84{bottom:195.345000px;}
.y42{bottom:199.110000px;}
.y6e{bottom:199.290000px;}
.y97{bottom:203.790000px;}
.y6d{bottom:212.430000px;}
.y6c{bottom:217.650000px;}
.y96{bottom:225.390000px;}
.y6b{bottom:230.070000px;}
.y6a{bottom:244.650000px;}
.y91{bottom:251.490000px;}
.y69{bottom:259.950000px;}
.ydf{bottom:261.390000px;}
.y68{bottom:265.170000px;}
.y67{bottom:277.095000px;}
.yde{bottom:283.035000px;}
.y108{bottom:286.455000px;}
.yc2{bottom:295.275000px;}
.y66{bottom:310.935000px;}
.y41{bottom:314.895000px;}
.ybb{bottom:316.875000px;}
.y8f{bottom:328.755000px;}
.y65{bottom:332.535000px;}
.y3c{bottom:336.495000px;}
.y107{bottom:347.835000px;}
.y104{bottom:369.435000px;}
.y64{bottom:396.975000px;}
.y36{bottom:400.035000px;}
.yb2{bottom:416.235000px;}
.y5f{bottom:418.575000px;}
.ydb{bottom:424.335000px;}
.y8e{bottom:431.715000px;}
.y101{bottom:433.695000px;}
.y8d{bottom:453.315000px;}
.y100{bottom:484.275000px;}
.yfb{bottom:505.875000px;}
.yb1{bottom:537.015000px;}
.y35{bottom:541.515000px;}
.yac{bottom:558.645000px;}
.y32{bottom:563.145000px;}
.y8c{bottom:569.085000px;}
.yf6{bottom:569.985000px;}
.yd9{bottom:604.185000px;}
.y5b{bottom:611.385000px;}
.yf4{bottom:643.605000px;}
.y8b{bottom:646.305000px;}
.y31{bottom:653.145000px;}
.yf2{bottom:665.205000px;}
.y2c{bottom:674.745000px;}
.yf0{bottom:680.145000px;}
.yef{bottom:716.865000px;}
.yee{bottom:730.005000px;}
.ya2{bottom:738.465000px;}
.y5a{bottom:752.685000px;}
.y8a{bottom:762.045000px;}
.y23{bottom:764.925000px;}
.y57{bottom:774.285000px;}
.y83{bottom:783.645000px;}
.yd8{bottom:796.785000px;}
.yd7{bottom:818.385000px;}
.yd3{bottom:840.030000px;}
.ya0{bottom:856.950000px;}
.yed{bottom:858.570000px;}
.y22{bottom:867.930000px;}
.yec{bottom:880.170000px;}
.y20{bottom:889.530000px;}
.y56{bottom:902.850000px;}
.y1e{bottom:911.130000px;}
.y55{bottom:924.450000px;}
.y53{bottom:946.050000px;}
.y1d{bottom:954.690000px;}
.yeb{bottom:957.570000px;}
.y13{bottom:968.010000px;}
.ye9{bottom:979.170000px;}
.y82{bottom:989.250000px;}
.y9f{bottom:998.250000px;}
.ye8{bottom:1005.090000px;}
.y7f{bottom:1010.850000px;}
.y9c{bottom:1019.850000px;}
.yd0{bottom:1045.590000px;}
.y79{bottom:1058.370000px;}
.y52{bottom:1087.350000px;}
.yf{bottom:1097.970000px;}
.y4b{bottom:1108.950000px;}
.y4{bottom:1131.660000px;}
.ye5{bottom:1133.640000px;}
.y4a{bottom:1186.920000px;}
.h32{height:14.580000px;}
.h2a{height:21.060000px;}
.he{height:21.240000px;}
.h13{height:21.276000px;}
.hd{height:21.600000px;}
.h31{height:25.380000px;}
.h24{height:25.740000px;}
.h17{height:29.539688px;}
.h2{height:31.727812px;}
.h8{height:33.336000px;}
.h7{height:35.806641px;}
.h1e{height:38.671172px;}
.h3{height:38.839219px;}
.h10{height:41.535703px;}
.hc{height:42.759141px;}
.h1f{height:47.160000px;}
.h6{height:47.980898px;}
.hb{height:49.394180px;}
.h35{height:50.220000px;}
.h39{height:50.845430px;}
.h30{height:52.920000px;}
.h18{height:53.709961px;}
.h37{height:61.020000px;}
.h5{height:61.189805px;}
.h15{height:63.180000px;}
.h36{height:63.720000px;}
.h34{height:63.756000px;}
.h1d{height:64.080000px;}
.h33{height:73.260000px;}
.h4{height:76.860000px;}
.h23{height:76.896000px;}
.h2f{height:77.040000px;}
.h19{height:77.616000px;}
.h9{height:86.255508px;}
.h12{height:89.640000px;}
.h11{height:89.820000px;}
.h29{height:99.000000px;}
.h22{height:102.600000px;}
.hf{height:102.636000px;}
.h38{height:104.616000px;}
.h21{height:115.380000px;}
.h16{height:115.416000px;}
.h26{height:118.116000px;}
.h28{height:120.420000px;}
.h1b{height:128.196000px;}
.ha{height:129.600000px;}
.h1a{height:140.940000px;}
.h2b{height:140.976000px;}
.h14{height:141.120000px;}
.h25{height:166.710000px;}
.h27{height:179.460000px;}
.h2e{height:179.490000px;}
.h2d{height:192.240000px;}
.h1c{height:192.270000px;}
.h2c{height:205.020000px;}
.h20{height:205.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:25.200000px;}
.w12{width:29.520000px;}
.wb{width:30.420000px;}
.w9{width:31.320000px;}
.w10{width:31.356000px;}
.w7{width:31.536000px;}
.wd{width:64.620000px;}
.w15{width:68.040000px;}
.we{width:109.656000px;}
.w3{width:111.456000px;}
.w19{width:115.056000px;}
.w1a{width:128.880000px;}
.w6{width:132.300000px;}
.wf{width:135.720000px;}
.w8{width:137.880000px;}
.wa{width:138.096000px;}
.wc{width:138.996000px;}
.w11{width:140.040000px;}
.w13{width:140.076000px;}
.w4{width:235.830000px;}
.w5{width:471.855000px;}
.w1b{width:541.875000px;}
.w18{width:818.250000px;}
.w16{width:822.210000px;}
.w17{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.220000px;}
.x7{left:8.100000px;}
.x15{left:9.540000px;}
.x1a{left:12.060000px;}
.x1e{left:13.680000px;}
.x21{left:14.760000px;}
.x13{left:18.540000px;}
.xa{left:19.845000px;}
.x14{left:27.720000px;}
.xc{left:34.740000px;}
.x8{left:38.160000px;}
.x1{left:42.479987px;}
.x22{left:47.339987px;}
.x20{left:48.599987px;}
.xf{left:55.470000px;}
.x23{left:69.479987px;}
.x24{left:96.479987px;}
.x5{left:137.700000px;}
.x16{left:152.850000px;}
.x4{left:154.650000px;}
.x25{left:158.070000px;}
.x1f{left:258.509987px;}
.x9{left:287.310000px;}
.x17{left:288.930000px;}
.xb{left:319.215000px;}
.x18{left:320.655000px;}
.x6{left:390.495000px;}
.xd{left:457.455000px;}
.x19{left:460.875000px;}
.xe{left:489.135000px;}
.x1b{left:490.755000px;}
.x10{left:627.585000px;}
.x1c{left:631.005000px;}
.x1d{left:656.565000px;}
.x11{left:658.365000px;}
.x12{left:797.730000px;}
.x2{left:850.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.lsf{letter-spacing:-0.275200pt;}
.ls12{letter-spacing:-0.218133pt;}
.ls13{letter-spacing:-0.217600pt;}
.ls4{letter-spacing:-0.165333pt;}
.ls9{letter-spacing:-0.154667pt;}
.ls6{letter-spacing:-0.130667pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.059733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.lsb{letter-spacing:0.120533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.274667pt;}
.lsa{letter-spacing:0.277867pt;}
.ls14{letter-spacing:0.298133pt;}
.ls15{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.425387pt;}
.ls7{letter-spacing:0.469760pt;}
.ls3{letter-spacing:0.709333pt;}
.lsd{letter-spacing:48.879360pt;}
.lsc{letter-spacing:50.799360pt;}
.lse{letter-spacing:53.359360pt;}
.ws2{word-spacing:-16.922880pt;}
.ws1{word-spacing:-16.757547pt;}
.ws0{word-spacing:-13.775573pt;}
.ws5{word-spacing:-12.279787pt;}
.ws4{word-spacing:-12.005120pt;}
.ws3{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.690880pt;}
.ws11{word-spacing:-9.631147pt;}
.ws12{word-spacing:-9.578880pt;}
.ws13{word-spacing:-9.472747pt;}
.ws15{word-spacing:-8.741120pt;}
.ws8{word-spacing:-8.389120pt;}
.ws7{word-spacing:-8.258453pt;}
.wsb{word-spacing:-8.234453pt;}
.ws14{word-spacing:-8.171520pt;}
.wsf{word-spacing:-8.113920pt;}
.ws9{word-spacing:-5.496320pt;}
.wsd{word-spacing:-0.314987pt;}
.wse{word-spacing:-0.157653pt;}
.wsc{word-spacing:-0.042880pt;}
.ws10{word-spacing:-0.037120pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-0.928000pt;}
._0{width:0.890880pt;}
._1{width:1.882027pt;}
.fs6{font-size:24.320000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.080000pt;}
.y2b{bottom:2.560000pt;}
.y30{bottom:2.720000pt;}
.yf1{bottom:2.880000pt;}
.y51{bottom:3.200000pt;}
.yab{bottom:4.960000pt;}
.y10c{bottom:5.120000pt;}
.yba{bottom:7.040000pt;}
.yff{bottom:7.360000pt;}
.y11{bottom:8.320000pt;}
.y103{bottom:8.480000pt;}
.yf5{bottom:8.800000pt;}
.yc3{bottom:9.920000pt;}
.y21{bottom:10.080000pt;}
.ye0{bottom:10.120000pt;}
.y81{bottom:10.240000pt;}
.y1f{bottom:10.400000pt;}
.y12{bottom:11.200000pt;}
.yd{bottom:11.840000pt;}
.y17{bottom:12.320000pt;}
.yf3{bottom:12.960000pt;}
.y40{bottom:13.280000pt;}
.yea{bottom:13.760000pt;}
.y2a{bottom:13.920000pt;}
.y2f{bottom:14.080000pt;}
.y50{bottom:14.586667pt;}
.yfa{bottom:15.840000pt;}
.yaa{bottom:16.320000pt;}
.y10{bottom:16.800000pt;}
.y10b{bottom:18.080000pt;}
.yb9{bottom:18.400000pt;}
.y7{bottom:19.680000pt;}
.yfe{bottom:20.480000pt;}
.y106{bottom:20.640000pt;}
.y18{bottom:21.280000pt;}
.yc{bottom:21.600000pt;}
.yc1{bottom:22.080000pt;}
.y3{bottom:22.592000pt;}
.y3f{bottom:24.640000pt;}
.y34{bottom:25.280000pt;}
.y29{bottom:25.440000pt;}
.y94{bottom:25.480000pt;}
.y4f{bottom:25.946667pt;}
.ye7{bottom:26.880000pt;}
.ya9{bottom:27.680000pt;}
.yf9{bottom:28.960000pt;}
.y6{bottom:29.920000pt;}
.y10a{bottom:31.040000pt;}
.yb{bottom:31.360000pt;}
.y80{bottom:33.120000pt;}
.yfd{bottom:33.440000pt;}
.yc0{bottom:33.600000pt;}
.yd2{bottom:34.080000pt;}
.y102{bottom:34.560000pt;}
.y19{bottom:35.040000pt;}
.y3e{bottom:36.000000pt;}
.y5e{bottom:36.640000pt;}
.y28{bottom:36.800000pt;}
.y93{bottom:36.840000pt;}
.y4e{bottom:37.306667pt;}
.ye6{bottom:38.240000pt;}
.ya8{bottom:39.200000pt;}
.ya{bottom:41.120000pt;}
.yb8{bottom:41.280000pt;}
.yf8{bottom:41.920000pt;}
.y111{bottom:43.840000pt;}
.y109{bottom:44.160000pt;}
.ybf{bottom:44.960000pt;}
.y105{bottom:46.560000pt;}
.yfc{bottom:46.586667pt;}
.y3d{bottom:47.360000pt;}
.ycf{bottom:48.154667pt;}
.y27{bottom:48.160000pt;}
.y92{bottom:48.200000pt;}
.y3b{bottom:48.320000pt;}
.y4d{bottom:48.826667pt;}
.ya7{bottom:50.560000pt;}
.y2{bottom:50.592000pt;}
.y9{bottom:50.880000pt;}
.yb7{bottom:52.640000pt;}
.yf7{bottom:55.040000pt;}
.y5{bottom:55.520000pt;}
.ybe{bottom:56.320000pt;}
.y110{bottom:56.800000pt;}
.ye4{bottom:59.514667pt;}
.y26{bottom:59.520000pt;}
.y7e{bottom:59.546667pt;}
.y59{bottom:59.560000pt;}
.yce{bottom:59.674667pt;}
.y2e{bottom:59.680000pt;}
.y4c{bottom:60.186667pt;}
.y8{bottom:60.640000pt;}
.ya6{bottom:61.920000pt;}
.y1{bottom:61.952000pt;}
.yb6{bottom:64.000000pt;}
.ybd{bottom:67.680000pt;}
.y95{bottom:68.360000pt;}
.y10f{bottom:69.920000pt;}
.ye3{bottom:70.874667pt;}
.y33{bottom:70.880000pt;}
.y7d{bottom:70.906667pt;}
.y25{bottom:70.920000pt;}
.ycd{bottom:71.034667pt;}
.y2d{bottom:71.040000pt;}
.y44{bottom:71.080000pt;}
.ya5{bottom:73.280000pt;}
.y78{bottom:74.272000pt;}
.y49{bottom:74.592000pt;}
.yb5{bottom:75.360000pt;}
.ybc{bottom:79.200000pt;}
.y5d{bottom:82.240000pt;}
.y7c{bottom:82.266667pt;}
.ycc{bottom:82.394667pt;}
.y3a{bottom:82.400000pt;}
.y24{bottom:82.440000pt;}
.y10e{bottom:82.920000pt;}
.y1c{bottom:83.520000pt;}
.ye2{bottom:83.552000pt;}
.ya4{bottom:84.640000pt;}
.y15{bottom:86.080000pt;}
.yb4{bottom:86.880000pt;}
.y77{bottom:87.232000pt;}
.y48{bottom:89.152000pt;}
.yc4{bottom:91.072000pt;}
.y90{bottom:91.200000pt;}
.y5c{bottom:93.600000pt;}
.yd1{bottom:93.626667pt;}
.ycb{bottom:93.754667pt;}
.y39{bottom:93.760000pt;}
.y7b{bottom:93.786667pt;}
.y43{bottom:93.800000pt;}
.y1b{bottom:94.880000pt;}
.ya3{bottom:96.200000pt;}
.yb3{bottom:98.240000pt;}
.y76{bottom:100.352000pt;}
.y14{bottom:102.400000pt;}
.y47{bottom:103.872000pt;}
.yca{bottom:105.114667pt;}
.y16{bottom:105.120000pt;}
.y7a{bottom:105.146667pt;}
.y58{bottom:105.160000pt;}
.y38{bottom:105.280000pt;}
.y1a{bottom:106.400000pt;}
.y46{bottom:108.512000pt;}
.y75{bottom:113.312000pt;}
.y54{bottom:116.480000pt;}
.y9d{bottom:116.506667pt;}
.y89{bottom:116.520000pt;}
.yc9{bottom:116.634667pt;}
.y37{bottom:116.640000pt;}
.y45{bottom:119.712000pt;}
.ya1{bottom:125.280000pt;}
.y9b{bottom:126.272000pt;}
.y74{bottom:126.912000pt;}
.yaf{bottom:127.840000pt;}
.ydc{bottom:127.866667pt;}
.yc8{bottom:127.994667pt;}
.yd6{bottom:128.000000pt;}
.y63{bottom:128.026667pt;}
.y88{bottom:128.040000pt;}
.y73{bottom:131.552000pt;}
.yc7{bottom:139.354667pt;}
.yae{bottom:139.360000pt;}
.y62{bottom:139.386667pt;}
.y87{bottom:139.400000pt;}
.y72{bottom:143.226667pt;}
.y71{bottom:147.866667pt;}
.y9e{bottom:148.186667pt;}
.y112{bottom:150.266667pt;}
.yc6{bottom:150.714667pt;}
.yad{bottom:150.720000pt;}
.y61{bottom:150.746667pt;}
.y86{bottom:150.760000pt;}
.y9a{bottom:152.346667pt;}
.y70{bottom:158.906667pt;}
.yb0{bottom:159.520000pt;}
.ydd{bottom:159.546667pt;}
.y10d{bottom:161.306667pt;}
.yd5{bottom:162.080000pt;}
.y60{bottom:162.106667pt;}
.yc5{bottom:162.114667pt;}
.y85{bottom:162.120000pt;}
.ye1{bottom:163.546667pt;}
.y99{bottom:165.946667pt;}
.y98{bottom:170.586667pt;}
.yda{bottom:170.880000pt;}
.y6f{bottom:172.506667pt;}
.yd4{bottom:173.440000pt;}
.y84{bottom:173.640000pt;}
.y42{bottom:176.986667pt;}
.y6e{bottom:177.146667pt;}
.y97{bottom:181.146667pt;}
.y6d{bottom:188.826667pt;}
.y6c{bottom:193.466667pt;}
.y96{bottom:200.346667pt;}
.y6b{bottom:204.506667pt;}
.y6a{bottom:217.466667pt;}
.y91{bottom:223.546667pt;}
.y69{bottom:231.066667pt;}
.ydf{bottom:232.346667pt;}
.y68{bottom:235.706667pt;}
.y67{bottom:246.306667pt;}
.yde{bottom:251.586667pt;}
.y108{bottom:254.626667pt;}
.yc2{bottom:262.466667pt;}
.y66{bottom:276.386667pt;}
.y41{bottom:279.906667pt;}
.ybb{bottom:281.666667pt;}
.y8f{bottom:292.226667pt;}
.y65{bottom:295.586667pt;}
.y3c{bottom:299.106667pt;}
.y107{bottom:309.186667pt;}
.y104{bottom:328.386667pt;}
.y64{bottom:352.866667pt;}
.y36{bottom:355.586667pt;}
.yb2{bottom:369.986667pt;}
.y5f{bottom:372.066667pt;}
.ydb{bottom:377.186667pt;}
.y8e{bottom:383.746667pt;}
.y101{bottom:385.506667pt;}
.y8d{bottom:402.946667pt;}
.y100{bottom:430.466667pt;}
.yfb{bottom:449.666667pt;}
.yb1{bottom:477.346667pt;}
.y35{bottom:481.346667pt;}
.yac{bottom:496.573333pt;}
.y32{bottom:500.573333pt;}
.y8c{bottom:505.853333pt;}
.yf6{bottom:506.653333pt;}
.yd9{bottom:537.053333pt;}
.y5b{bottom:543.453333pt;}
.yf4{bottom:572.093333pt;}
.y8b{bottom:574.493333pt;}
.y31{bottom:580.573333pt;}
.yf2{bottom:591.293333pt;}
.y2c{bottom:599.773333pt;}
.yf0{bottom:604.573333pt;}
.yef{bottom:637.213333pt;}
.yee{bottom:648.893333pt;}
.ya2{bottom:656.413333pt;}
.y5a{bottom:669.053333pt;}
.y8a{bottom:677.373333pt;}
.y23{bottom:679.933333pt;}
.y57{bottom:688.253333pt;}
.y83{bottom:696.573333pt;}
.yd8{bottom:708.253333pt;}
.yd7{bottom:727.453333pt;}
.yd3{bottom:746.693333pt;}
.ya0{bottom:761.733333pt;}
.yed{bottom:763.173333pt;}
.y22{bottom:771.493333pt;}
.yec{bottom:782.373333pt;}
.y20{bottom:790.693333pt;}
.y56{bottom:802.533333pt;}
.y1e{bottom:809.893333pt;}
.y55{bottom:821.733333pt;}
.y53{bottom:840.933333pt;}
.y1d{bottom:848.613333pt;}
.yeb{bottom:851.173333pt;}
.y13{bottom:860.453333pt;}
.ye9{bottom:870.373333pt;}
.y82{bottom:879.333333pt;}
.y9f{bottom:887.333333pt;}
.ye8{bottom:893.413333pt;}
.y7f{bottom:898.533333pt;}
.y9c{bottom:906.533333pt;}
.yd0{bottom:929.413333pt;}
.y79{bottom:940.773333pt;}
.y52{bottom:966.533333pt;}
.yf{bottom:975.973333pt;}
.y4b{bottom:985.733333pt;}
.y4{bottom:1005.920000pt;}
.ye5{bottom:1007.680000pt;}
.y4a{bottom:1055.040000pt;}
.h32{height:12.960000pt;}
.h2a{height:18.720000pt;}
.he{height:18.880000pt;}
.h13{height:18.912000pt;}
.hd{height:19.200000pt;}
.h31{height:22.560000pt;}
.h24{height:22.880000pt;}
.h17{height:26.257500pt;}
.h2{height:28.202500pt;}
.h8{height:29.632000pt;}
.h7{height:31.828125pt;}
.h1e{height:34.374375pt;}
.h3{height:34.523750pt;}
.h10{height:36.920625pt;}
.hc{height:38.008125pt;}
.h1f{height:41.920000pt;}
.h6{height:42.649687pt;}
.hb{height:43.905937pt;}
.h35{height:44.640000pt;}
.h39{height:45.195937pt;}
.h30{height:47.040000pt;}
.h18{height:47.742188pt;}
.h37{height:54.240000pt;}
.h5{height:54.390938pt;}
.h15{height:56.160000pt;}
.h36{height:56.640000pt;}
.h34{height:56.672000pt;}
.h1d{height:56.960000pt;}
.h33{height:65.120000pt;}
.h4{height:68.320000pt;}
.h23{height:68.352000pt;}
.h2f{height:68.480000pt;}
.h19{height:68.992000pt;}
.h9{height:76.671562pt;}
.h12{height:79.680000pt;}
.h11{height:79.840000pt;}
.h29{height:88.000000pt;}
.h22{height:91.200000pt;}
.hf{height:91.232000pt;}
.h38{height:92.992000pt;}
.h21{height:102.560000pt;}
.h16{height:102.592000pt;}
.h26{height:104.992000pt;}
.h28{height:107.040000pt;}
.h1b{height:113.952000pt;}
.ha{height:115.200000pt;}
.h1a{height:125.280000pt;}
.h2b{height:125.312000pt;}
.h14{height:125.440000pt;}
.h25{height:148.186667pt;}
.h27{height:159.520000pt;}
.h2e{height:159.546667pt;}
.h2d{height:170.880000pt;}
.h1c{height:170.906667pt;}
.h2c{height:182.240000pt;}
.h20{height:182.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:22.400000pt;}
.w12{width:26.240000pt;}
.wb{width:27.040000pt;}
.w9{width:27.840000pt;}
.w10{width:27.872000pt;}
.w7{width:28.032000pt;}
.wd{width:57.440000pt;}
.w15{width:60.480000pt;}
.we{width:97.472000pt;}
.w3{width:99.072000pt;}
.w19{width:102.272000pt;}
.w1a{width:114.560000pt;}
.w6{width:117.600000pt;}
.wf{width:120.640000pt;}
.w8{width:122.560000pt;}
.wa{width:122.752000pt;}
.wc{width:123.552000pt;}
.w11{width:124.480000pt;}
.w13{width:124.512000pt;}
.w4{width:209.626667pt;}
.w5{width:419.426667pt;}
.w1b{width:481.666667pt;}
.w18{width:727.333333pt;}
.w16{width:730.853333pt;}
.w17{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:4.640000pt;}
.x7{left:7.200000pt;}
.x15{left:8.480000pt;}
.x1a{left:10.720000pt;}
.x1e{left:12.160000pt;}
.x21{left:13.120000pt;}
.x13{left:16.480000pt;}
.xa{left:17.640000pt;}
.x14{left:24.640000pt;}
.xc{left:30.880000pt;}
.x8{left:33.920000pt;}
.x1{left:37.759988pt;}
.x22{left:42.079988pt;}
.x20{left:43.199988pt;}
.xf{left:49.306667pt;}
.x23{left:61.759988pt;}
.x24{left:85.759988pt;}
.x5{left:122.400000pt;}
.x16{left:135.866667pt;}
.x4{left:137.466667pt;}
.x25{left:140.506667pt;}
.x1f{left:229.786655pt;}
.x9{left:255.386667pt;}
.x17{left:256.826667pt;}
.xb{left:283.746667pt;}
.x18{left:285.026667pt;}
.x6{left:347.106667pt;}
.xd{left:406.626667pt;}
.x19{left:409.666667pt;}
.xe{left:434.786667pt;}
.x1b{left:436.226667pt;}
.x10{left:557.853333pt;}
.x1c{left:560.893333pt;}
.x1d{left:583.613333pt;}
.x11{left:585.213333pt;}
.x12{left:709.093333pt;}
.x2{left:755.973322pt;}
}




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