
    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_bd94c69830a9ba3772f8a19b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_08ba6bab79a4eb5b62d0729e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_78c57a2211629775421dbf6d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_18874d56089b7670f33381a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_49dfd61483a286a388e3a075.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_577fe0bc7c4e6f1008591b70.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_dfa4472e42551d1503d3a3e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:17.568000px;}
.ls3{letter-spacing:17.784000px;}
.ls1{letter-spacing:188.597700px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws37{word-spacing:-40.536000px;}
.wse{word-spacing:-38.666400px;}
.wsb{word-spacing:-38.578800px;}
.ws0{word-spacing:-38.096400px;}
.ws71{word-spacing:-23.908200px;}
.ws3b{word-spacing:-23.900400px;}
.ws36{word-spacing:-23.895900px;}
.ws7{word-spacing:-23.824500px;}
.ws5{word-spacing:-23.687700px;}
.ws38{word-spacing:-23.687100px;}
.wsd{word-spacing:-23.675400px;}
.ws53{word-spacing:-23.670900px;}
.ws48{word-spacing:-23.590800px;}
.ws40{word-spacing:-23.452200px;}
.ws5c{word-spacing:-23.447700px;}
.ws7c{word-spacing:-23.400000px;}
.ws29{word-spacing:-23.397300px;}
.ws7a{word-spacing:-23.390100px;}
.ws8{word-spacing:-23.389200px;}
.ws4b{word-spacing:-23.253000px;}
.ws59{word-spacing:-23.252400px;}
.ws9a{word-spacing:-23.248800px;}
.ws47{word-spacing:-23.247900px;}
.ws4f{word-spacing:-23.240700px;}
.ws5e{word-spacing:-23.237100px;}
.ws98{word-spacing:-23.234400px;}
.ws68{word-spacing:-23.229900px;}
.ws1c{word-spacing:-23.228400px;}
.ws86{word-spacing:-23.190000px;}
.ws6e{word-spacing:-23.186400px;}
.ws50{word-spacing:-23.184000px;}
.ws64{word-spacing:-23.180400px;}
.ws28{word-spacing:-23.173200px;}
.wsa{word-spacing:-23.167800px;}
.ws9{word-spacing:-23.116200px;}
.ws72{word-spacing:-23.040000px;}
.ws6d{word-spacing:-23.036400px;}
.ws6b{word-spacing:-23.034000px;}
.ws5b{word-spacing:-23.031000px;}
.ws15{word-spacing:-23.023800px;}
.ws35{word-spacing:-23.022000px;}
.ws1{word-spacing:-22.968000px;}
.ws6f{word-spacing:-22.964400px;}
.ws2f{word-spacing:-22.960800px;}
.ws3{word-spacing:-22.955400px;}
.ws58{word-spacing:-22.954500px;}
.ws62{word-spacing:-22.892400px;}
.ws69{word-spacing:-22.752000px;}
.ws23{word-spacing:-22.748400px;}
.ws96{word-spacing:-22.746000px;}
.ws5f{word-spacing:-22.742400px;}
.ws2e{word-spacing:-22.741200px;}
.ws3a{word-spacing:-22.739400px;}
.ws8d{word-spacing:-22.738500px;}
.ws5a{word-spacing:-22.735800px;}
.ws60{word-spacing:-22.680600px;}
.ws66{word-spacing:-22.677300px;}
.ws99{word-spacing:-22.540200px;}
.ws93{word-spacing:-22.539300px;}
.ws39{word-spacing:-22.538400px;}
.ws18{word-spacing:-22.536000px;}
.ws70{word-spacing:-22.534200px;}
.ws41{word-spacing:-22.532400px;}
.ws78{word-spacing:-22.527000px;}
.ws92{word-spacing:-22.524300px;}
.ws1e{word-spacing:-22.523400px;}
.ws80{word-spacing:-22.522200px;}
.ws6c{word-spacing:-22.450500px;}
.ws79{word-spacing:-22.391100px;}
.ws16{word-spacing:-22.314000px;}
.ws6a{word-spacing:-22.244400px;}
.ws63{word-spacing:-22.023900px;}
.ws4e{word-spacing:-21.806100px;}
.ws61{word-spacing:-21.729600px;}
.ws74{word-spacing:-21.312000px;}
.ws67{word-spacing:-21.295800px;}
.ws65{word-spacing:-21.101100px;}
.ws82{word-spacing:-21.087900px;}
.ws88{word-spacing:-21.020400px;}
.ws30{word-spacing:-20.808000px;}
.ws31{word-spacing:-20.376000px;}
.ws44{word-spacing:-20.157900px;}
.ws75{word-spacing:-19.869900px;}
.ws49{word-spacing:-19.652400px;}
.ws26{word-spacing:-19.630800px;}
.ws19{word-spacing:-19.580400px;}
.ws32{word-spacing:-19.579200px;}
.ws8b{word-spacing:-19.152000px;}
.ws33{word-spacing:-18.940200px;}
.ws85{word-spacing:-18.927900px;}
.ws3e{word-spacing:-18.860400px;}
.ws11{word-spacing:-18.428400px;}
.ws46{word-spacing:-18.214200px;}
.ws90{word-spacing:-18.208800px;}
.ws84{word-spacing:-17.712000px;}
.ws22{word-spacing:-17.492400px;}
.ws1a{word-spacing:-17.479200px;}
.ws76{word-spacing:-16.988400px;}
.ws17{word-spacing:-16.975800px;}
.ws57{word-spacing:-16.778400px;}
.ws56{word-spacing:-16.494000px;}
.ws73{word-spacing:-16.266600px;}
.ws1f{word-spacing:-16.047900px;}
.ws24{word-spacing:-14.815800px;}
.ws12{word-spacing:-14.616000px;}
.ws52{word-spacing:-14.612400px;}
.ws95{word-spacing:-14.112000px;}
.ws34{word-spacing:-14.106600px;}
.ws3d{word-spacing:-13.595400px;}
.ws87{word-spacing:-13.398000px;}
.ws2b{word-spacing:-13.392000px;}
.ws94{word-spacing:-13.388400px;}
.ws45{word-spacing:-12.660000px;}
.ws7f{word-spacing:-12.456000px;}
.ws21{word-spacing:-11.952000px;}
.ws51{word-spacing:-11.724300px;}
.ws4c{word-spacing:-10.287900px;}
.ws4d{word-spacing:-10.220400px;}
.ws27{word-spacing:-9.788400px;}
.ws97{word-spacing:-9.786000px;}
.ws14{word-spacing:-9.574800px;}
.ws89{word-spacing:-9.072000px;}
.ws2d{word-spacing:-8.765400px;}
.ws77{word-spacing:-6.903600px;}
.ws13{word-spacing:-6.696600px;}
.ws43{word-spacing:-6.462000px;}
.ws83{word-spacing:-5.978400px;}
.ws20{word-spacing:-5.967900px;}
.ws54{word-spacing:-5.688000px;}
.ws55{word-spacing:-5.252400px;}
.ws4a{word-spacing:-5.230800px;}
.ws4{word-spacing:-5.177700px;}
.ws25{word-spacing:-4.527600px;}
.ws3c{word-spacing:-4.460400px;}
.ws10{word-spacing:-2.598000px;}
.wsf{word-spacing:-2.287800px;}
.ws1b{word-spacing:-1.638000px;}
.ws8f{word-spacing:-1.152000px;}
.ws3f{word-spacing:-0.133200px;}
.ws2c{word-spacing:0.000000px;}
.ws1d{word-spacing:0.505800px;}
.ws7e{word-spacing:0.586800px;}
.ws8e{word-spacing:1.731600px;}
.ws42{word-spacing:2.165400px;}
.ws8c{word-spacing:2.667600px;}
.ws81{word-spacing:3.258000px;}
.ws2a{word-spacing:4.107600px;}
.ws91{word-spacing:4.825800px;}
.ws7d{word-spacing:6.282000px;}
.ws5d{word-spacing:14.185200px;}
.ws8a{word-spacing:121.032000px;}
.ws7b{word-spacing:121.464000px;}
.ws2{word-spacing:552.245400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._4{width:18.775200px;}
._16{width:19.856100px;}
._14{width:21.361200px;}
._a{width:22.471800px;}
._6{width:23.900400px;}
._d{width:25.617900px;}
._7{width:27.066000px;}
._11{width:28.152000px;}
._e{width:29.592000px;}
._9{width:32.109600px;}
._12{width:33.750600px;}
._19{width:34.965300px;}
._8{width:36.144600px;}
._f{width:37.570500px;}
._5{width:38.947800px;}
._b{width:40.032000px;}
._c{width:42.752700px;}
._15{width:43.831800px;}
._10{width:46.004400px;}
._18{width:47.508600px;}
._1a{width:48.978000px;}
._17{width:56.373600px;}
._1{width:71.928000px;}
._1d{width:79.920000px;}
._1c{width:115.920000px;}
._1b{width:158.400000px;}
._13{width:162.000000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.700000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.486500px;}
.y83{bottom:12.765000px;}
.y85{bottom:12.796500px;}
.y7b{bottom:12.825000px;}
.y7d{bottom:12.855000px;}
.y7f{bottom:12.886500px;}
.y81{bottom:12.915000px;}
.y88{bottom:12.930000px;}
.yb2{bottom:13.695000px;}
.y79{bottom:17.550000px;}
.y77{bottom:27.811500px;}
.y8{bottom:34.725000px;}
.y78{bottom:38.071500px;}
.y9{bottom:42.571500px;}
.y87{bottom:105.225000px;}
.y4f{bottom:121.215000px;}
.y30{bottom:122.836500px;}
.yb0{bottom:125.175000px;}
.y86{bottom:135.750000px;}
.y6d{bottom:135.975000px;}
.y4e{bottom:141.915000px;}
.y2f{bottom:143.536500px;}
.yaf{bottom:145.875000px;}
.y6c{bottom:156.675000px;}
.y4d{bottom:162.615000px;}
.y2e{bottom:164.236500px;}
.y84{bottom:166.200000px;}
.yae{bottom:166.575000px;}
.y6b{bottom:177.375000px;}
.yad{bottom:187.275000px;}
.y82{bottom:196.650000px;}
.y4c{bottom:204.375000px;}
.y2d{bottom:205.815000px;}
.yac{bottom:207.975000px;}
.y6a{bottom:219.136500px;}
.y4b{bottom:225.075000px;}
.y80{bottom:227.100000px;}
.yab{bottom:228.675000px;}
.y4a{bottom:245.775000px;}
.y2c{bottom:247.575000px;}
.yaa{bottom:249.375000px;}
.y7e{bottom:257.550000px;}
.y69{bottom:260.715000px;}
.y2b{bottom:268.275000px;}
.ya9{bottom:270.075000px;}
.y68{bottom:281.415000px;}
.y49{bottom:287.536500px;}
.y7c{bottom:288.000000px;}
.y2a{bottom:288.975000px;}
.ya8{bottom:290.775000px;}
.y48{bottom:308.236500px;}
.y29{bottom:309.675000px;}
.ya7{bottom:311.475000px;}
.y7a{bottom:318.450000px;}
.y67{bottom:323.175000px;}
.y47{bottom:328.936500px;}
.y28{bottom:330.375000px;}
.ya6{bottom:332.175000px;}
.y76{bottom:348.825000px;}
.y46{bottom:349.636500px;}
.ya5{bottom:352.875000px;}
.y66{bottom:364.936500px;}
.y45{bottom:370.336500px;}
.y27{bottom:372.136500px;}
.ya4{bottom:373.575000px;}
.y65{bottom:385.636500px;}
.y44{bottom:391.036500px;}
.y26{bottom:392.836500px;}
.ya3{bottom:394.275000px;}
.y64{bottom:406.336500px;}
.y43{bottom:411.736500px;}
.y25{bottom:413.536500px;}
.ya2{bottom:414.975000px;}
.y63{bottom:427.036500px;}
.y42{bottom:432.436500px;}
.y24{bottom:434.236500px;}
.ya1{bottom:444.675000px;}
.y23{bottom:454.936500px;}
.y75{bottom:455.115000px;}
.ya0{bottom:465.375000px;}
.y62{bottom:468.615000px;}
.y41{bottom:474.015000px;}
.y74{bottom:475.815000px;}
.y22{bottom:496.515000px;}
.y9f{bottom:506.955000px;}
.y61{bottom:510.375000px;}
.y40{bottom:515.775000px;}
.y21{bottom:517.215000px;}
.y60{bottom:531.075000px;}
.y3f{bottom:536.475000px;}
.y20{bottom:537.915000px;}
.y9e{bottom:548.715000px;}
.y5f{bottom:551.775000px;}
.y3e{bottom:557.175000px;}
.y1f{bottom:558.615000px;}
.y9d{bottom:569.415000px;}
.y5e{bottom:572.475000px;}
.y1e{bottom:579.315000px;}
.y9c{bottom:590.115000px;}
.y5d{bottom:593.175000px;}
.y3d{bottom:598.936500px;}
.y73{bottom:600.015000px;}
.y9b{bottom:610.815000px;}
.y1d{bottom:621.075000px;}
.y72{bottom:629.715000px;}
.y9a{bottom:631.515000px;}
.y5c{bottom:634.936500px;}
.y3c{bottom:640.515000px;}
.y1c{bottom:641.775000px;}
.y71{bottom:650.415000px;}
.y99{bottom:652.215000px;}
.y3b{bottom:661.215000px;}
.y1b{bottom:662.475000px;}
.y98{bottom:672.915000px;}
.y5b{bottom:676.515000px;}
.y70{bottom:680.115000px;}
.y3a{bottom:681.915000px;}
.y1a{bottom:683.175000px;}
.y97{bottom:693.615000px;}
.y5a{bottom:697.215000px;}
.y19{bottom:703.875000px;}
.y6f{bottom:709.815000px;}
.y96{bottom:714.315000px;}
.y39{bottom:723.675000px;}
.y18{bottom:724.575000px;}
.y95{bottom:735.015000px;}
.y59{bottom:738.975000px;}
.y17{bottom:745.275000px;}
.y94{bottom:755.715000px;}
.y58{bottom:759.675000px;}
.y38{bottom:765.436500px;}
.y16{bottom:765.975000px;}
.y93{bottom:776.415000px;}
.y57{bottom:780.375000px;}
.y15{bottom:786.675000px;}
.y92{bottom:797.115000px;}
.y91{bottom:817.815000px;}
.y56{bottom:822.136500px;}
.y14{bottom:828.436500px;}
.y37{bottom:836.715000px;}
.y90{bottom:838.515000px;}
.y55{bottom:842.836500px;}
.y6e{bottom:857.415000px;}
.y8f{bottom:859.215000px;}
.y54{bottom:863.536500px;}
.y13{bottom:864.075000px;}
.y36{bottom:878.475000px;}
.y8e{bottom:879.915000px;}
.y12{bottom:884.775000px;}
.y35{bottom:899.175000px;}
.y8d{bottom:900.615000px;}
.y53{bottom:905.115000px;}
.y34{bottom:919.875000px;}
.y8c{bottom:921.315000px;}
.y52{bottom:925.815000px;}
.y11{bottom:926.175000px;}
.y33{bottom:940.575000px;}
.y8b{bottom:942.015000px;}
.y51{bottom:946.515000px;}
.y32{bottom:961.275000px;}
.y10{bottom:961.815000px;}
.y8a{bottom:962.715000px;}
.y50{bottom:967.215000px;}
.yf{bottom:982.515000px;}
.y31{bottom:1003.036500px;}
.y89{bottom:1004.475000px;}
.ye{bottom:1023.915000px;}
.yd{bottom:1044.615000px;}
.yb1{bottom:1050.900000px;}
.yc{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.ya{bottom:1231.650000px;}
.h7{height:20.175000px;}
.hb{height:30.375000px;}
.hc{height:30.450000px;}
.hd{height:31.200000px;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:50.027344px;}
.h5{height:58.275000px;}
.ha{height:60.075000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:8.325000px;}
.w3{width:41.775000px;}
.w6{width:145.800000px;}
.w5{width:181.125000px;}
.w4{width:186.750000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.145000px;}
.xf{left:119.475000px;}
.x2{left:127.620000px;}
.xd{left:132.120000px;}
.x5{left:137.160000px;}
.x4{left:138.238500px;}
.x11{left:161.175000px;}
.xe{left:180.720000px;}
.x1{left:201.060000px;}
.x6{left:300.060000px;}
.x12{left:347.850000px;}
.x8{left:369.538500px;}
.x3{left:469.875000px;}
.xc{left:487.620000px;}
.xa{left:525.600000px;}
.x13{left:528.900000px;}
.x9{left:571.500000px;}
.xb{left:577.080000px;}
.x7{left:596.160000px;}
.x14{left:674.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:15.616000pt;}
.ls3{letter-spacing:15.808000pt;}
.ls1{letter-spacing:167.642400pt;}
.wsc{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws37{word-spacing:-36.032000pt;}
.wse{word-spacing:-34.370133pt;}
.wsb{word-spacing:-34.292267pt;}
.ws0{word-spacing:-33.863467pt;}
.ws71{word-spacing:-21.251733pt;}
.ws3b{word-spacing:-21.244800pt;}
.ws36{word-spacing:-21.240800pt;}
.ws7{word-spacing:-21.177333pt;}
.ws5{word-spacing:-21.055733pt;}
.ws38{word-spacing:-21.055200pt;}
.wsd{word-spacing:-21.044800pt;}
.ws53{word-spacing:-21.040800pt;}
.ws48{word-spacing:-20.969600pt;}
.ws40{word-spacing:-20.846400pt;}
.ws5c{word-spacing:-20.842400pt;}
.ws7c{word-spacing:-20.800000pt;}
.ws29{word-spacing:-20.797600pt;}
.ws7a{word-spacing:-20.791200pt;}
.ws8{word-spacing:-20.790400pt;}
.ws4b{word-spacing:-20.669333pt;}
.ws59{word-spacing:-20.668800pt;}
.ws9a{word-spacing:-20.665600pt;}
.ws47{word-spacing:-20.664800pt;}
.ws4f{word-spacing:-20.658400pt;}
.ws5e{word-spacing:-20.655200pt;}
.ws98{word-spacing:-20.652800pt;}
.ws68{word-spacing:-20.648800pt;}
.ws1c{word-spacing:-20.647467pt;}
.ws86{word-spacing:-20.613333pt;}
.ws6e{word-spacing:-20.610133pt;}
.ws50{word-spacing:-20.608000pt;}
.ws64{word-spacing:-20.604800pt;}
.ws28{word-spacing:-20.598400pt;}
.wsa{word-spacing:-20.593600pt;}
.ws9{word-spacing:-20.547733pt;}
.ws72{word-spacing:-20.480000pt;}
.ws6d{word-spacing:-20.476800pt;}
.ws6b{word-spacing:-20.474667pt;}
.ws5b{word-spacing:-20.472000pt;}
.ws15{word-spacing:-20.465600pt;}
.ws35{word-spacing:-20.464000pt;}
.ws1{word-spacing:-20.416000pt;}
.ws6f{word-spacing:-20.412800pt;}
.ws2f{word-spacing:-20.409600pt;}
.ws3{word-spacing:-20.404800pt;}
.ws58{word-spacing:-20.404000pt;}
.ws62{word-spacing:-20.348800pt;}
.ws69{word-spacing:-20.224000pt;}
.ws23{word-spacing:-20.220800pt;}
.ws96{word-spacing:-20.218667pt;}
.ws5f{word-spacing:-20.215467pt;}
.ws2e{word-spacing:-20.214400pt;}
.ws3a{word-spacing:-20.212800pt;}
.ws8d{word-spacing:-20.212000pt;}
.ws5a{word-spacing:-20.209600pt;}
.ws60{word-spacing:-20.160533pt;}
.ws66{word-spacing:-20.157600pt;}
.ws99{word-spacing:-20.035733pt;}
.ws93{word-spacing:-20.034933pt;}
.ws39{word-spacing:-20.034133pt;}
.ws18{word-spacing:-20.032000pt;}
.ws70{word-spacing:-20.030400pt;}
.ws41{word-spacing:-20.028800pt;}
.ws78{word-spacing:-20.024000pt;}
.ws92{word-spacing:-20.021600pt;}
.ws1e{word-spacing:-20.020800pt;}
.ws80{word-spacing:-20.019733pt;}
.ws6c{word-spacing:-19.956000pt;}
.ws79{word-spacing:-19.903200pt;}
.ws16{word-spacing:-19.834667pt;}
.ws6a{word-spacing:-19.772800pt;}
.ws63{word-spacing:-19.576800pt;}
.ws4e{word-spacing:-19.383200pt;}
.ws61{word-spacing:-19.315200pt;}
.ws74{word-spacing:-18.944000pt;}
.ws67{word-spacing:-18.929600pt;}
.ws65{word-spacing:-18.756533pt;}
.ws82{word-spacing:-18.744800pt;}
.ws88{word-spacing:-18.684800pt;}
.ws30{word-spacing:-18.496000pt;}
.ws31{word-spacing:-18.112000pt;}
.ws44{word-spacing:-17.918133pt;}
.ws75{word-spacing:-17.662133pt;}
.ws49{word-spacing:-17.468800pt;}
.ws26{word-spacing:-17.449600pt;}
.ws19{word-spacing:-17.404800pt;}
.ws32{word-spacing:-17.403733pt;}
.ws8b{word-spacing:-17.024000pt;}
.ws33{word-spacing:-16.835733pt;}
.ws85{word-spacing:-16.824800pt;}
.ws3e{word-spacing:-16.764800pt;}
.ws11{word-spacing:-16.380800pt;}
.ws46{word-spacing:-16.190400pt;}
.ws90{word-spacing:-16.185600pt;}
.ws84{word-spacing:-15.744000pt;}
.ws22{word-spacing:-15.548800pt;}
.ws1a{word-spacing:-15.537067pt;}
.ws76{word-spacing:-15.100800pt;}
.ws17{word-spacing:-15.089600pt;}
.ws57{word-spacing:-14.914133pt;}
.ws56{word-spacing:-14.661333pt;}
.ws73{word-spacing:-14.459200pt;}
.ws1f{word-spacing:-14.264800pt;}
.ws24{word-spacing:-13.169600pt;}
.ws12{word-spacing:-12.992000pt;}
.ws52{word-spacing:-12.988800pt;}
.ws95{word-spacing:-12.544000pt;}
.ws34{word-spacing:-12.539200pt;}
.ws3d{word-spacing:-12.084800pt;}
.ws87{word-spacing:-11.909333pt;}
.ws2b{word-spacing:-11.904000pt;}
.ws94{word-spacing:-11.900800pt;}
.ws45{word-spacing:-11.253333pt;}
.ws7f{word-spacing:-11.072000pt;}
.ws21{word-spacing:-10.624000pt;}
.ws51{word-spacing:-10.421600pt;}
.ws4c{word-spacing:-9.144800pt;}
.ws4d{word-spacing:-9.084800pt;}
.ws27{word-spacing:-8.700800pt;}
.ws97{word-spacing:-8.698667pt;}
.ws14{word-spacing:-8.510933pt;}
.ws89{word-spacing:-8.064000pt;}
.ws2d{word-spacing:-7.791467pt;}
.ws77{word-spacing:-6.136533pt;}
.ws13{word-spacing:-5.952533pt;}
.ws43{word-spacing:-5.744000pt;}
.ws83{word-spacing:-5.314133pt;}
.ws20{word-spacing:-5.304800pt;}
.ws54{word-spacing:-5.056000pt;}
.ws55{word-spacing:-4.668800pt;}
.ws4a{word-spacing:-4.649600pt;}
.ws4{word-spacing:-4.602400pt;}
.ws25{word-spacing:-4.024533pt;}
.ws3c{word-spacing:-3.964800pt;}
.ws10{word-spacing:-2.309333pt;}
.wsf{word-spacing:-2.033600pt;}
.ws1b{word-spacing:-1.456000pt;}
.ws8f{word-spacing:-1.024000pt;}
.ws3f{word-spacing:-0.118400pt;}
.ws2c{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.449600pt;}
.ws7e{word-spacing:0.521600pt;}
.ws8e{word-spacing:1.539200pt;}
.ws42{word-spacing:1.924800pt;}
.ws8c{word-spacing:2.371200pt;}
.ws81{word-spacing:2.896000pt;}
.ws2a{word-spacing:3.651200pt;}
.ws91{word-spacing:4.289600pt;}
.ws7d{word-spacing:5.584000pt;}
.ws5d{word-spacing:12.609067pt;}
.ws8a{word-spacing:107.584000pt;}
.ws7b{word-spacing:107.968000pt;}
.ws2{word-spacing:490.884800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._4{width:16.689067pt;}
._16{width:17.649867pt;}
._14{width:18.987733pt;}
._a{width:19.974933pt;}
._6{width:21.244800pt;}
._d{width:22.771467pt;}
._7{width:24.058667pt;}
._11{width:25.024000pt;}
._e{width:26.304000pt;}
._9{width:28.541867pt;}
._12{width:30.000533pt;}
._19{width:31.080267pt;}
._8{width:32.128533pt;}
._f{width:33.396000pt;}
._5{width:34.620267pt;}
._b{width:35.584000pt;}
._c{width:38.002400pt;}
._15{width:38.961600pt;}
._10{width:40.892800pt;}
._18{width:42.229867pt;}
._1a{width:43.536000pt;}
._17{width:50.109867pt;}
._1{width:63.936000pt;}
._1d{width:71.040000pt;}
._1c{width:103.040000pt;}
._1b{width:140.800000pt;}
._13{width:144.000000pt;}
._2{width:384.064000pt;}
.fs3{font-size:53.066667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.988000pt;}
.y83{bottom:11.346667pt;}
.y85{bottom:11.374667pt;}
.y7b{bottom:11.400000pt;}
.y7d{bottom:11.426667pt;}
.y7f{bottom:11.454667pt;}
.y81{bottom:11.480000pt;}
.y88{bottom:11.493333pt;}
.yb2{bottom:12.173333pt;}
.y79{bottom:15.600000pt;}
.y77{bottom:24.721333pt;}
.y8{bottom:30.866667pt;}
.y78{bottom:33.841333pt;}
.y9{bottom:37.841333pt;}
.y87{bottom:93.533333pt;}
.y4f{bottom:107.746667pt;}
.y30{bottom:109.188000pt;}
.yb0{bottom:111.266667pt;}
.y86{bottom:120.666667pt;}
.y6d{bottom:120.866667pt;}
.y4e{bottom:126.146667pt;}
.y2f{bottom:127.588000pt;}
.yaf{bottom:129.666667pt;}
.y6c{bottom:139.266667pt;}
.y4d{bottom:144.546667pt;}
.y2e{bottom:145.988000pt;}
.y84{bottom:147.733333pt;}
.yae{bottom:148.066667pt;}
.y6b{bottom:157.666667pt;}
.yad{bottom:166.466667pt;}
.y82{bottom:174.800000pt;}
.y4c{bottom:181.666667pt;}
.y2d{bottom:182.946667pt;}
.yac{bottom:184.866667pt;}
.y6a{bottom:194.788000pt;}
.y4b{bottom:200.066667pt;}
.y80{bottom:201.866667pt;}
.yab{bottom:203.266667pt;}
.y4a{bottom:218.466667pt;}
.y2c{bottom:220.066667pt;}
.yaa{bottom:221.666667pt;}
.y7e{bottom:228.933333pt;}
.y69{bottom:231.746667pt;}
.y2b{bottom:238.466667pt;}
.ya9{bottom:240.066667pt;}
.y68{bottom:250.146667pt;}
.y49{bottom:255.588000pt;}
.y7c{bottom:256.000000pt;}
.y2a{bottom:256.866667pt;}
.ya8{bottom:258.466667pt;}
.y48{bottom:273.988000pt;}
.y29{bottom:275.266667pt;}
.ya7{bottom:276.866667pt;}
.y7a{bottom:283.066667pt;}
.y67{bottom:287.266667pt;}
.y47{bottom:292.388000pt;}
.y28{bottom:293.666667pt;}
.ya6{bottom:295.266667pt;}
.y76{bottom:310.066667pt;}
.y46{bottom:310.788000pt;}
.ya5{bottom:313.666667pt;}
.y66{bottom:324.388000pt;}
.y45{bottom:329.188000pt;}
.y27{bottom:330.788000pt;}
.ya4{bottom:332.066667pt;}
.y65{bottom:342.788000pt;}
.y44{bottom:347.588000pt;}
.y26{bottom:349.188000pt;}
.ya3{bottom:350.466667pt;}
.y64{bottom:361.188000pt;}
.y43{bottom:365.988000pt;}
.y25{bottom:367.588000pt;}
.ya2{bottom:368.866667pt;}
.y63{bottom:379.588000pt;}
.y42{bottom:384.388000pt;}
.y24{bottom:385.988000pt;}
.ya1{bottom:395.266667pt;}
.y23{bottom:404.388000pt;}
.y75{bottom:404.546667pt;}
.ya0{bottom:413.666667pt;}
.y62{bottom:416.546667pt;}
.y41{bottom:421.346667pt;}
.y74{bottom:422.946667pt;}
.y22{bottom:441.346667pt;}
.y9f{bottom:450.626667pt;}
.y61{bottom:453.666667pt;}
.y40{bottom:458.466667pt;}
.y21{bottom:459.746667pt;}
.y60{bottom:472.066667pt;}
.y3f{bottom:476.866667pt;}
.y20{bottom:478.146667pt;}
.y9e{bottom:487.746667pt;}
.y5f{bottom:490.466667pt;}
.y3e{bottom:495.266667pt;}
.y1f{bottom:496.546667pt;}
.y9d{bottom:506.146667pt;}
.y5e{bottom:508.866667pt;}
.y1e{bottom:514.946667pt;}
.y9c{bottom:524.546667pt;}
.y5d{bottom:527.266667pt;}
.y3d{bottom:532.388000pt;}
.y73{bottom:533.346667pt;}
.y9b{bottom:542.946667pt;}
.y1d{bottom:552.066667pt;}
.y72{bottom:559.746667pt;}
.y9a{bottom:561.346667pt;}
.y5c{bottom:564.388000pt;}
.y3c{bottom:569.346667pt;}
.y1c{bottom:570.466667pt;}
.y71{bottom:578.146667pt;}
.y99{bottom:579.746667pt;}
.y3b{bottom:587.746667pt;}
.y1b{bottom:588.866667pt;}
.y98{bottom:598.146667pt;}
.y5b{bottom:601.346667pt;}
.y70{bottom:604.546667pt;}
.y3a{bottom:606.146667pt;}
.y1a{bottom:607.266667pt;}
.y97{bottom:616.546667pt;}
.y5a{bottom:619.746667pt;}
.y19{bottom:625.666667pt;}
.y6f{bottom:630.946667pt;}
.y96{bottom:634.946667pt;}
.y39{bottom:643.266667pt;}
.y18{bottom:644.066667pt;}
.y95{bottom:653.346667pt;}
.y59{bottom:656.866667pt;}
.y17{bottom:662.466667pt;}
.y94{bottom:671.746667pt;}
.y58{bottom:675.266667pt;}
.y38{bottom:680.388000pt;}
.y16{bottom:680.866667pt;}
.y93{bottom:690.146667pt;}
.y57{bottom:693.666667pt;}
.y15{bottom:699.266667pt;}
.y92{bottom:708.546667pt;}
.y91{bottom:726.946667pt;}
.y56{bottom:730.788000pt;}
.y14{bottom:736.388000pt;}
.y37{bottom:743.746667pt;}
.y90{bottom:745.346667pt;}
.y55{bottom:749.188000pt;}
.y6e{bottom:762.146667pt;}
.y8f{bottom:763.746667pt;}
.y54{bottom:767.588000pt;}
.y13{bottom:768.066667pt;}
.y36{bottom:780.866667pt;}
.y8e{bottom:782.146667pt;}
.y12{bottom:786.466667pt;}
.y35{bottom:799.266667pt;}
.y8d{bottom:800.546667pt;}
.y53{bottom:804.546667pt;}
.y34{bottom:817.666667pt;}
.y8c{bottom:818.946667pt;}
.y52{bottom:822.946667pt;}
.y11{bottom:823.266667pt;}
.y33{bottom:836.066667pt;}
.y8b{bottom:837.346667pt;}
.y51{bottom:841.346667pt;}
.y32{bottom:854.466667pt;}
.y10{bottom:854.946667pt;}
.y8a{bottom:855.746667pt;}
.y50{bottom:859.746667pt;}
.yf{bottom:873.346667pt;}
.y31{bottom:891.588000pt;}
.y89{bottom:892.866667pt;}
.ye{bottom:910.146667pt;}
.yd{bottom:928.546667pt;}
.yb1{bottom:934.133333pt;}
.yc{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.ya{bottom:1094.800000pt;}
.h7{height:17.933333pt;}
.hb{height:27.000000pt;}
.hc{height:27.066667pt;}
.hd{height:27.733333pt;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:44.468750pt;}
.h5{height:51.800000pt;}
.ha{height:53.400000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:7.400000pt;}
.w3{width:37.133333pt;}
.w6{width:129.600000pt;}
.w5{width:161.000000pt;}
.w4{width:166.000000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.240000pt;}
.xf{left:106.200000pt;}
.x2{left:113.440000pt;}
.xd{left:117.440000pt;}
.x5{left:121.920000pt;}
.x4{left:122.878667pt;}
.x11{left:143.266667pt;}
.xe{left:160.640000pt;}
.x1{left:178.720000pt;}
.x6{left:266.720000pt;}
.x12{left:309.200000pt;}
.x8{left:328.478667pt;}
.x3{left:417.666667pt;}
.xc{left:433.440000pt;}
.xa{left:467.200000pt;}
.x13{left:470.133333pt;}
.x9{left:508.000000pt;}
.xb{left:512.960000pt;}
.x7{left:529.920000pt;}
.x14{left:599.666667pt;}
}




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