
    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_244a934e9cba2e4aaa5aca9e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a48349a05d74e635ea7694d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_01bd9d1c70fbe22e7d0b2952.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8018d443fdba45ec3f8f413c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4ce9c9d808cf0ad0f89a646c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_206a745e2c8d7373f154b159.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_6f48e4cc2c80e050e65d4758.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ddffd0ac5f0ad312194c6c2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_83b365ea9e02c6b464d287d5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_496f0bae78a4d463da600b25.woff')format("woff");}.ffb{font-family:ffb;line-height:1.038086;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:ffc;src:url('chunks/assets/font_6c99e180e5c8d6d7f8c6f081.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_188005efd90de7ce671ef198.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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:ffe;src:url('chunks/assets/font_846a521bb430f1e4b58963f9.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a0c0090c68eaf94096ae56f7.woff')format("woff");}.fff{font-family:fff;line-height:1.372070;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:ff10;src:url('chunks/assets/font_53f232b9dd1477e69dd61cf8.woff')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.176000px;}
.ls21{letter-spacing:-1.134000px;}
.ls33{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls35{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.ls10{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.262200px;}
.ls2e{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.094800px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.109200px;}
.ls1d{letter-spacing:0.109440px;}
.ls1c{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls25{letter-spacing:0.264960px;}
.lsb{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.414600px;}
.lsc{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.870000px;}
.ls31{letter-spacing:1.440000px;}
.ls2{letter-spacing:2.160000px;}
.ls4{letter-spacing:3.600000px;}
.ls14{letter-spacing:5.040000px;}
.ls2f{letter-spacing:6.480000px;}
.ls30{letter-spacing:7.200000px;}
.ls2a{letter-spacing:8.201280px;}
.ls1a{letter-spacing:8.640000px;}
.ls19{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.800000px;}
.ls2b{letter-spacing:12.521280px;}
.ls18{letter-spacing:20.160000px;}
.ls32{letter-spacing:21.600000px;}
.ls29{letter-spacing:26.921280px;}
.ls2c{letter-spacing:30.521280px;}
.ls26{letter-spacing:41.321280px;}
.ls27{letter-spacing:44.921280px;}
.ls24{letter-spacing:60.041280px;}
.ls28{letter-spacing:63.641280px;}
.ls11{letter-spacing:68.760000px;}
.ls20{letter-spacing:74.441280px;}
.ls22{letter-spacing:78.041280px;}
.ls1f{letter-spacing:93.161280px;}
.ls23{letter-spacing:96.761280px;}
.ls1e{letter-spacing:111.161280px;}
.ls1b{letter-spacing:199.416000px;}
.ls1{letter-spacing:201.403200px;}
.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;}
}
.ws18{word-spacing:-37.468560px;}
.ws9{word-spacing:-37.359360px;}
.ws1d{word-spacing:-17.430000px;}
.ws6{word-spacing:-17.280000px;}
.ws19{word-spacing:-16.974600px;}
.ws5{word-spacing:-16.865400px;}
.ws1a{word-spacing:-16.824960px;}
.ws14{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.ws1b{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.297800px;}
.ws2{word-spacing:-16.254600px;}
.ws4{word-spacing:-16.145400px;}
.ws1e{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.948000px;}
.ws13{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.534000px;}
.ws17{word-spacing:-15.426000px;}
.ws12{word-spacing:-15.384000px;}
.ws8{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.572800px;}
.wsf{word-spacing:-13.860000px;}
.wse{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.420000px;}
.ws0{word-spacing:-9.187200px;}
.ws1{word-spacing:-9.092400px;}
.ws10{word-spacing:0.000000px;}
._e{margin-left:-422.495280px;}
._f{margin-left:-357.678000px;}
._c{margin-left:-4.748400px;}
._d{margin-left:-3.366720px;}
._4{margin-left:-1.263600px;}
._1{width:1.044000px;}
._5{width:2.337600px;}
._a{width:3.678240px;}
._0{width:4.802400px;}
._2{width:5.888160px;}
._3{width:7.610880px;}
._8{width:8.744400px;}
._b{width:10.341120px;}
._7{width:11.934720px;}
._9{width:12.987840px;}
._14{width:14.500560px;}
._17{width:15.534720px;}
._6{width:17.978880px;}
._16{width:18.983280px;}
._12{width:20.398080px;}
._13{width:21.414000px;}
._10{width:22.820160px;}
._11{width:23.999280px;}
._15{width:25.180560px;}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:120.240000px;}
.y2d{bottom:-29.160000px;}
.y39{bottom:-27.570000px;}
.y3c{bottom:-6.660000px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.300000px;}
.y38{bottom:10.080000px;}
.y33{bottom:10.260000px;}
.y2c{bottom:10.620000px;}
.y5{bottom:12.420000px;}
.y3{bottom:18.720000px;}
.y6{bottom:22.320000px;}
.y3b{bottom:22.680000px;}
.y32{bottom:26.100000px;}
.y37{bottom:34.740000px;}
.y2{bottom:38.016000px;}
.y31{bottom:41.580000px;}
.y2b{bottom:45.720000px;}
.y30{bottom:57.240000px;}
.y2f{bottom:72.750000px;}
.y57{bottom:77.256000px;}
.y7f{bottom:83.196000px;}
.yb5{bottom:85.176000px;}
.y6b{bottom:86.076000px;}
.y99{bottom:92.916000px;}
.y7e{bottom:103.716000px;}
.y6a{bottom:104.976000px;}
.y56{bottom:109.296000px;}
.y98{bottom:115.596000px;}
.yb4{bottom:119.196000px;}
.y69{bottom:124.056000px;}
.y7d{bottom:124.236000px;}
.yb3{bottom:138.096000px;}
.y29{bottom:153.570000px;}
.yb2{bottom:157.170000px;}
.y68{bottom:157.890000px;}
.y7c{bottom:158.070000px;}
.y28{bottom:172.470000px;}
.yb1{bottom:176.070000px;}
.y67{bottom:176.970000px;}
.y27{bottom:191.370000px;}
.y7b{bottom:192.090000px;}
.yb0{bottom:194.970000px;}
.y26{bottom:210.450000px;}
.y66{bottom:210.810000px;}
.y7a{bottom:211.170000px;}
.yaf{bottom:228.630000px;}
.y25{bottom:229.350000px;}
.y65{bottom:229.890000px;}
.y79{bottom:230.070000px;}
.y64{bottom:248.790000px;}
.y78{bottom:248.970000px;}
.y24{bottom:263.370000px;}
.y63{bottom:267.870000px;}
.y23{bottom:282.270000px;}
.y77{bottom:286.590000px;}
.yd3{bottom:286.950000px;}
.y22{bottom:301.395000px;}
.y62{bottom:305.535000px;}
.y76{bottom:305.715000px;}
.yd2{bottom:305.895000px;}
.y21{bottom:320.295000px;}
.yd1{bottom:324.795000px;}
.y61{bottom:326.235000px;}
.y75{bottom:328.395000px;}
.y20{bottom:339.375000px;}
.yd0{bottom:343.515000px;}
.y60{bottom:349.095000px;}
.y74{bottom:351.255000px;}
.y1f{bottom:358.275000px;}
.ycf{bottom:362.415000px;}
.y1e{bottom:377.175000px;}
.yce{bottom:381.495000px;}
.yae{bottom:396.255000px;}
.ycd{bottom:400.395000px;}
.y1d{bottom:410.835000px;}
.yad{bottom:415.155000px;}
.ycc{bottom:419.295000px;}
.yac{bottom:434.235000px;}
.ycb{bottom:438.375000px;}
.y1c{bottom:445.575000px;}
.yab{bottom:453.135000px;}
.yca{bottom:457.275000px;}
.yc9{bottom:476.355000px;}
.y1b{bottom:479.595000px;}
.yaa{bottom:486.795000px;}
.y1a{bottom:513.795000px;}
.ya9{bottom:521.175000px;}
.y55{bottom:528.195000px;}
.y19{bottom:532.875000px;}
.y97{bottom:534.855000px;}
.ya8{bottom:540.075000px;}
.y54{bottom:547.095000px;}
.y18{bottom:551.805000px;}
.y96{bottom:553.605000px;}
.ya7{bottom:559.005000px;}
.y53{bottom:566.205000px;}
.y17{bottom:570.885000px;}
.y95{bottom:572.685000px;}
.y52{bottom:585.105000px;}
.y16{bottom:589.785000px;}
.yc8{bottom:592.665000px;}
.ya6{bottom:593.025000px;}
.y94{bottom:593.205000px;}
.y51{bottom:604.005000px;}
.y15{bottom:608.685000px;}
.yc7{bottom:611.565000px;}
.ya5{bottom:611.925000px;}
.y93{bottom:613.545000px;}
.y50{bottom:623.085000px;}
.y14{bottom:627.765000px;}
.ya4{bottom:631.005000px;}
.y92{bottom:634.065000px;}
.yc6{bottom:638.205000px;}
.y4f{bottom:641.985000px;}
.y13{bottom:646.665000px;}
.ya3{bottom:649.905000px;}
.y91{bottom:654.585000px;}
.yc5{bottom:657.105000px;}
.y4e{bottom:661.065000px;}
.y90{bottom:674.925000px;}
.y4d{bottom:679.965000px;}
.yc4{bottom:683.565000px;}
.ya2{bottom:683.925000px;}
.y12{bottom:684.285000px;}
.y8f{bottom:695.445000px;}
.ya1{bottom:702.825000px;}
.y11{bottom:703.725000px;}
.yc3{bottom:710.025000px;}
.y4c{bottom:713.625000px;}
.y8e{bottom:715.965000px;}
.y10{bottom:723.345000px;}
.y8d{bottom:736.485000px;}
.ya0{bottom:736.845000px;}
.yf{bottom:744.225000px;}
.y4b{bottom:747.825000px;}
.yc2{bottom:755.565000px;}
.y9f{bottom:755.925000px;}
.y8c{bottom:756.825000px;}
.ye{bottom:759.705000px;}
.y4a{bottom:766.905000px;}
.y9e{bottom:774.825000px;}
.y8b{bottom:777.345000px;}
.yc1{bottom:782.025000px;}
.y49{bottom:785.805000px;}
.yd{bottom:790.665000px;}
.y8a{bottom:797.865000px;}
.y5f{bottom:800.925000px;}
.y48{bottom:804.885000px;}
.yc0{bottom:808.530000px;}
.y9d{bottom:808.890000px;}
.y89{bottom:818.430000px;}
.y5e{bottom:819.870000px;}
.y73{bottom:823.830000px;}
.yc{bottom:825.990000px;}
.ybf{bottom:827.430000px;}
.y9c{bottom:827.790000px;}
.y47{bottom:838.770000px;}
.y72{bottom:842.730000px;}
.y9b{bottom:846.870000px;}
.ybe{bottom:853.890000px;}
.y46{bottom:857.850000px;}
.y88{bottom:859.290000px;}
.y71{bottom:861.810000px;}
.yb{bottom:861.990000px;}
.ybd{bottom:872.970000px;}
.y45{bottom:876.750000px;}
.y87{bottom:879.810000px;}
.y9a{bottom:880.350000px;}
.y70{bottom:880.710000px;}
.y44{bottom:895.830000px;}
.ybc{bottom:899.430000px;}
.y6f{bottom:899.790000px;}
.y86{bottom:900.330000px;}
.ya{bottom:900.870000px;}
.y43{bottom:914.730000px;}
.ybb{bottom:918.330000px;}
.y6e{bottom:918.690000px;}
.y85{bottom:920.670000px;}
.y9{bottom:924.990000px;}
.y5d{bottom:933.630000px;}
.y6d{bottom:937.770000px;}
.y84{bottom:941.190000px;}
.yba{bottom:944.790000px;}
.y42{bottom:948.750000px;}
.y8{bottom:949.650000px;}
.y5c{bottom:952.710000px;}
.y83{bottom:961.710000px;}
.yb9{bottom:963.870000px;}
.y41{bottom:967.650000px;}
.y6c{bottom:971.250000px;}
.y5b{bottom:971.610000px;}
.y82{bottom:982.230000px;}
.y7{bottom:983.670000px;}
.y40{bottom:986.730000px;}
.yb8{bottom:990.330000px;}
.y5a{bottom:990.690000px;}
.y2e{bottom:998.250000px;}
.y81{bottom:1002.570000px;}
.y2a{bottom:1003.650000px;}
.y3f{bottom:1005.630000px;}
.yb7{bottom:1009.230000px;}
.y59{bottom:1009.590000px;}
.y80{bottom:1023.090000px;}
.y3e{bottom:1024.530000px;}
.yb6{bottom:1042.890000px;}
.y58{bottom:1043.250000px;}
.y3d{bottom:1043.610000px;}
.y36{bottom:1089.720000px;}
.y3a{bottom:1096.560000px;}
.y35{bottom:1101.600000px;}
.y1{bottom:1123.200000px;}
.y34{bottom:1129.500000px;}
.h2{height:32.400000px;}
.h14{height:33.480000px;}
.h15{height:33.494766px;}
.h3{height:35.357344px;}
.h1{height:47.344922px;}
.h11{height:48.224531px;}
.h9{height:52.998047px;}
.h12{height:54.540000px;}
.hb{height:56.084062px;}
.h8{height:58.651172px;}
.hd{height:64.978594px;}
.ha{height:65.010937px;}
.h4{height:65.884219px;}
.h16{height:66.757500px;}
.h17{height:68.084282px;}
.h19{height:68.956875px;}
.h7{height:70.664062px;}
.h13{height:71.324297px;}
.hc{height:71.766417px;}
.h18{height:71.824219px;}
.he{height:74.196000px;}
.h5{height:82.676953px;}
.h6{height:84.898125px;}
.h10{height:84.996000px;}
.hf{height:101.804766px;}
.h0{height:1188.000000px;}
.w2{width:38.340000px;}
.w7{width:119.016000px;}
.w4{width:130.860000px;}
.w3{width:446.475000px;}
.w6{width:461.625000px;}
.w1{width:690.045000px;}
.w5{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1c{left:9.765000px;}
.x11{left:12.600000px;}
.x14{left:16.560000px;}
.x5{left:18.540000px;}
.x13{left:22.500000px;}
.x15{left:26.820000px;}
.x16{left:30.240000px;}
.x1d{left:50.805000px;}
.x19{left:85.545000px;}
.x8{left:88.020000px;}
.x1a{left:89.685000px;}
.x2{left:94.896000px;}
.x1{left:108.036000px;}
.x23{left:110.555986px;}
.x20{left:113.615986px;}
.x1e{left:115.955986px;}
.x9{left:123.876000px;}
.x25{left:129.275986px;}
.x22{left:150.509986px;}
.xf{left:162.030000px;}
.x10{left:234.570000px;}
.x18{left:242.490000px;}
.x24{left:288.389986px;}
.xc{left:330.195000px;}
.xb{left:332.355000px;}
.xd{left:340.275000px;}
.x1f{left:356.834986px;}
.xa{left:403.095000px;}
.x21{left:435.854986px;}
.x7{left:459.075000px;}
.x1b{left:682.845000px;}
.xe{left:704.850000px;}
.x12{left:708.630000px;}
.x4{left:784.950000px;}
.x17{left:801.329986px;}
.x6{left:854.070000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.045333pt;}
.ls21{letter-spacing:-1.008000pt;}
.ls33{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls35{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls2e{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls1d{letter-spacing:0.097280pt;}
.ls1c{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls25{letter-spacing:0.235520pt;}
.lsb{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.368533pt;}
.lsc{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.773333pt;}
.ls31{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:5.760000pt;}
.ls30{letter-spacing:6.400000pt;}
.ls2a{letter-spacing:7.290027pt;}
.ls1a{letter-spacing:7.680000pt;}
.ls19{letter-spacing:8.320000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls2b{letter-spacing:11.130027pt;}
.ls18{letter-spacing:17.920000pt;}
.ls32{letter-spacing:19.200000pt;}
.ls29{letter-spacing:23.930027pt;}
.ls2c{letter-spacing:27.130027pt;}
.ls26{letter-spacing:36.730027pt;}
.ls27{letter-spacing:39.930027pt;}
.ls24{letter-spacing:53.370027pt;}
.ls28{letter-spacing:56.570027pt;}
.ls11{letter-spacing:61.120000pt;}
.ls20{letter-spacing:66.170027pt;}
.ls22{letter-spacing:69.370027pt;}
.ls1f{letter-spacing:82.810027pt;}
.ls23{letter-spacing:86.010027pt;}
.ls1e{letter-spacing:98.810027pt;}
.ls1b{letter-spacing:177.258667pt;}
.ls1{letter-spacing:179.025067pt;}
.ws18{word-spacing:-33.305387pt;}
.ws9{word-spacing:-33.208320pt;}
.ws1d{word-spacing:-15.493333pt;}
.ws6{word-spacing:-15.360000pt;}
.ws19{word-spacing:-15.088533pt;}
.ws5{word-spacing:-14.991467pt;}
.ws1a{word-spacing:-14.955520pt;}
.ws14{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.ws1b{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.486933pt;}
.ws2{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.351467pt;}
.ws1e{word-spacing:-14.313067pt;}
.ws7{word-spacing:-14.176000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-13.808000pt;}
.ws17{word-spacing:-13.712000pt;}
.ws12{word-spacing:-13.674667pt;}
.ws8{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws0{word-spacing:-8.166400pt;}
.ws1{word-spacing:-8.082133pt;}
.ws10{word-spacing:0.000000pt;}
._e{margin-left:-375.551360pt;}
._f{margin-left:-317.936000pt;}
._c{margin-left:-4.220800pt;}
._d{margin-left:-2.992640pt;}
._4{margin-left:-1.123200pt;}
._1{width:0.928000pt;}
._5{width:2.077867pt;}
._a{width:3.269547pt;}
._0{width:4.268800pt;}
._2{width:5.233920pt;}
._3{width:6.765227pt;}
._8{width:7.772800pt;}
._b{width:9.192107pt;}
._7{width:10.608640pt;}
._9{width:11.544747pt;}
._14{width:12.889387pt;}
._17{width:13.808640pt;}
._6{width:15.981227pt;}
._16{width:16.874027pt;}
._12{width:18.131627pt;}
._13{width:19.034667pt;}
._10{width:20.284587pt;}
._11{width:21.332693pt;}
._15{width:22.382720pt;}
.fs2{font-size:26.880000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:106.880000pt;}
.y2d{bottom:-25.920000pt;}
.y39{bottom:-24.506667pt;}
.y3c{bottom:-5.920000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.600000pt;}
.y38{bottom:8.960000pt;}
.y33{bottom:9.120000pt;}
.y2c{bottom:9.440000pt;}
.y5{bottom:11.040000pt;}
.y3{bottom:16.640000pt;}
.y6{bottom:19.840000pt;}
.y3b{bottom:20.160000pt;}
.y32{bottom:23.200000pt;}
.y37{bottom:30.880000pt;}
.y2{bottom:33.792000pt;}
.y31{bottom:36.960000pt;}
.y2b{bottom:40.640000pt;}
.y30{bottom:50.880000pt;}
.y2f{bottom:64.666667pt;}
.y57{bottom:68.672000pt;}
.y7f{bottom:73.952000pt;}
.yb5{bottom:75.712000pt;}
.y6b{bottom:76.512000pt;}
.y99{bottom:82.592000pt;}
.y7e{bottom:92.192000pt;}
.y6a{bottom:93.312000pt;}
.y56{bottom:97.152000pt;}
.y98{bottom:102.752000pt;}
.yb4{bottom:105.952000pt;}
.y69{bottom:110.272000pt;}
.y7d{bottom:110.432000pt;}
.yb3{bottom:122.752000pt;}
.y29{bottom:136.506667pt;}
.yb2{bottom:139.706667pt;}
.y68{bottom:140.346667pt;}
.y7c{bottom:140.506667pt;}
.y28{bottom:153.306667pt;}
.yb1{bottom:156.506667pt;}
.y67{bottom:157.306667pt;}
.y27{bottom:170.106667pt;}
.y7b{bottom:170.746667pt;}
.yb0{bottom:173.306667pt;}
.y26{bottom:187.066667pt;}
.y66{bottom:187.386667pt;}
.y7a{bottom:187.706667pt;}
.yaf{bottom:203.226667pt;}
.y25{bottom:203.866667pt;}
.y65{bottom:204.346667pt;}
.y79{bottom:204.506667pt;}
.y64{bottom:221.146667pt;}
.y78{bottom:221.306667pt;}
.y24{bottom:234.106667pt;}
.y63{bottom:238.106667pt;}
.y23{bottom:250.906667pt;}
.y77{bottom:254.746667pt;}
.yd3{bottom:255.066667pt;}
.y22{bottom:267.906667pt;}
.y62{bottom:271.586667pt;}
.y76{bottom:271.746667pt;}
.yd2{bottom:271.906667pt;}
.y21{bottom:284.706667pt;}
.yd1{bottom:288.706667pt;}
.y61{bottom:289.986667pt;}
.y75{bottom:291.906667pt;}
.y20{bottom:301.666667pt;}
.yd0{bottom:305.346667pt;}
.y60{bottom:310.306667pt;}
.y74{bottom:312.226667pt;}
.y1f{bottom:318.466667pt;}
.ycf{bottom:322.146667pt;}
.y1e{bottom:335.266667pt;}
.yce{bottom:339.106667pt;}
.yae{bottom:352.226667pt;}
.ycd{bottom:355.906667pt;}
.y1d{bottom:365.186667pt;}
.yad{bottom:369.026667pt;}
.ycc{bottom:372.706667pt;}
.yac{bottom:385.986667pt;}
.ycb{bottom:389.666667pt;}
.y1c{bottom:396.066667pt;}
.yab{bottom:402.786667pt;}
.yca{bottom:406.466667pt;}
.yc9{bottom:423.426667pt;}
.y1b{bottom:426.306667pt;}
.yaa{bottom:432.706667pt;}
.y1a{bottom:456.706667pt;}
.ya9{bottom:463.266667pt;}
.y55{bottom:469.506667pt;}
.y19{bottom:473.666667pt;}
.y97{bottom:475.426667pt;}
.ya8{bottom:480.066667pt;}
.y54{bottom:486.306667pt;}
.y18{bottom:490.493333pt;}
.y96{bottom:492.093333pt;}
.ya7{bottom:496.893333pt;}
.y53{bottom:503.293333pt;}
.y17{bottom:507.453333pt;}
.y95{bottom:509.053333pt;}
.y52{bottom:520.093333pt;}
.y16{bottom:524.253333pt;}
.yc8{bottom:526.813333pt;}
.ya6{bottom:527.133333pt;}
.y94{bottom:527.293333pt;}
.y51{bottom:536.893333pt;}
.y15{bottom:541.053333pt;}
.yc7{bottom:543.613333pt;}
.ya5{bottom:543.933333pt;}
.y93{bottom:545.373333pt;}
.y50{bottom:553.853333pt;}
.y14{bottom:558.013333pt;}
.ya4{bottom:560.893333pt;}
.y92{bottom:563.613333pt;}
.yc6{bottom:567.293333pt;}
.y4f{bottom:570.653333pt;}
.y13{bottom:574.813333pt;}
.ya3{bottom:577.693333pt;}
.y91{bottom:581.853333pt;}
.yc5{bottom:584.093333pt;}
.y4e{bottom:587.613333pt;}
.y90{bottom:599.933333pt;}
.y4d{bottom:604.413333pt;}
.yc4{bottom:607.613333pt;}
.ya2{bottom:607.933333pt;}
.y12{bottom:608.253333pt;}
.y8f{bottom:618.173333pt;}
.ya1{bottom:624.733333pt;}
.y11{bottom:625.533333pt;}
.yc3{bottom:631.133333pt;}
.y4c{bottom:634.333333pt;}
.y8e{bottom:636.413333pt;}
.y10{bottom:642.973333pt;}
.y8d{bottom:654.653333pt;}
.ya0{bottom:654.973333pt;}
.yf{bottom:661.533333pt;}
.y4b{bottom:664.733333pt;}
.yc2{bottom:671.613333pt;}
.y9f{bottom:671.933333pt;}
.y8c{bottom:672.733333pt;}
.ye{bottom:675.293333pt;}
.y4a{bottom:681.693333pt;}
.y9e{bottom:688.733333pt;}
.y8b{bottom:690.973333pt;}
.yc1{bottom:695.133333pt;}
.y49{bottom:698.493333pt;}
.yd{bottom:702.813333pt;}
.y8a{bottom:709.213333pt;}
.y5f{bottom:711.933333pt;}
.y48{bottom:715.453333pt;}
.yc0{bottom:718.693333pt;}
.y9d{bottom:719.013333pt;}
.y89{bottom:727.493333pt;}
.y5e{bottom:728.773333pt;}
.y73{bottom:732.293333pt;}
.yc{bottom:734.213333pt;}
.ybf{bottom:735.493333pt;}
.y9c{bottom:735.813333pt;}
.y47{bottom:745.573333pt;}
.y72{bottom:749.093333pt;}
.y9b{bottom:752.773333pt;}
.ybe{bottom:759.013333pt;}
.y46{bottom:762.533333pt;}
.y88{bottom:763.813333pt;}
.y71{bottom:766.053333pt;}
.yb{bottom:766.213333pt;}
.ybd{bottom:775.973333pt;}
.y45{bottom:779.333333pt;}
.y87{bottom:782.053333pt;}
.y9a{bottom:782.533333pt;}
.y70{bottom:782.853333pt;}
.y44{bottom:796.293333pt;}
.ybc{bottom:799.493333pt;}
.y6f{bottom:799.813333pt;}
.y86{bottom:800.293333pt;}
.ya{bottom:800.773333pt;}
.y43{bottom:813.093333pt;}
.ybb{bottom:816.293333pt;}
.y6e{bottom:816.613333pt;}
.y85{bottom:818.373333pt;}
.y9{bottom:822.213333pt;}
.y5d{bottom:829.893333pt;}
.y6d{bottom:833.573333pt;}
.y84{bottom:836.613333pt;}
.yba{bottom:839.813333pt;}
.y42{bottom:843.333333pt;}
.y8{bottom:844.133333pt;}
.y5c{bottom:846.853333pt;}
.y83{bottom:854.853333pt;}
.yb9{bottom:856.773333pt;}
.y41{bottom:860.133333pt;}
.y6c{bottom:863.333333pt;}
.y5b{bottom:863.653333pt;}
.y82{bottom:873.093333pt;}
.y7{bottom:874.373333pt;}
.y40{bottom:877.093333pt;}
.yb8{bottom:880.293333pt;}
.y5a{bottom:880.613333pt;}
.y2e{bottom:887.333333pt;}
.y81{bottom:891.173333pt;}
.y2a{bottom:892.133333pt;}
.y3f{bottom:893.893333pt;}
.yb7{bottom:897.093333pt;}
.y59{bottom:897.413333pt;}
.y80{bottom:909.413333pt;}
.y3e{bottom:910.693333pt;}
.yb6{bottom:927.013333pt;}
.y58{bottom:927.333333pt;}
.y3d{bottom:927.653333pt;}
.y36{bottom:968.640000pt;}
.y3a{bottom:974.720000pt;}
.y35{bottom:979.200000pt;}
.y1{bottom:998.400000pt;}
.y34{bottom:1004.000000pt;}
.h2{height:28.800000pt;}
.h14{height:29.760000pt;}
.h15{height:29.773125pt;}
.h3{height:31.428750pt;}
.h1{height:42.084375pt;}
.h11{height:42.866250pt;}
.h9{height:47.109375pt;}
.h12{height:48.480000pt;}
.hb{height:49.852500pt;}
.h8{height:52.134375pt;}
.hd{height:57.758750pt;}
.ha{height:57.787500pt;}
.h4{height:58.563750pt;}
.h16{height:59.340000pt;}
.h17{height:60.519362pt;}
.h19{height:61.295000pt;}
.h7{height:62.812500pt;}
.h13{height:63.399375pt;}
.hc{height:63.792371pt;}
.h18{height:63.843750pt;}
.he{height:65.952000pt;}
.h5{height:73.490625pt;}
.h6{height:75.465000pt;}
.h10{height:75.552000pt;}
.hf{height:90.493125pt;}
.h0{height:1056.000000pt;}
.w2{width:34.080000pt;}
.w7{width:105.792000pt;}
.w4{width:116.320000pt;}
.w3{width:396.866667pt;}
.w6{width:410.333333pt;}
.w1{width:613.373333pt;}
.w5{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1c{left:8.680000pt;}
.x11{left:11.200000pt;}
.x14{left:14.720000pt;}
.x5{left:16.480000pt;}
.x13{left:20.000000pt;}
.x15{left:23.840000pt;}
.x16{left:26.880000pt;}
.x1d{left:45.160000pt;}
.x19{left:76.040000pt;}
.x8{left:78.240000pt;}
.x1a{left:79.720000pt;}
.x2{left:84.352000pt;}
.x1{left:96.032000pt;}
.x23{left:98.271988pt;}
.x20{left:100.991988pt;}
.x1e{left:103.071988pt;}
.x9{left:110.112000pt;}
.x25{left:114.911988pt;}
.x22{left:133.786655pt;}
.xf{left:144.026667pt;}
.x10{left:208.506667pt;}
.x18{left:215.546667pt;}
.x24{left:256.346655pt;}
.xc{left:293.506667pt;}
.xb{left:295.426667pt;}
.xd{left:302.466667pt;}
.x1f{left:317.186655pt;}
.xa{left:358.306667pt;}
.x21{left:387.426655pt;}
.x7{left:408.066667pt;}
.x1b{left:606.973333pt;}
.xe{left:626.533333pt;}
.x12{left:629.893333pt;}
.x4{left:697.733333pt;}
.x17{left:712.293321pt;}
.x6{left:759.173333pt;}
}




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