
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_2aa07d272ad9c2f1ec2593df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_749015027800ebefbc4488b6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_36bc4f0c8d0a360e22261246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_9648f37c1dfec65d14538c33.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_57e50bc1ca3ffa8fe0e4ed3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_df92c21140ddbef30b42442c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_3dc95d8c6ec3578cf2cc6627.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c8b3fbe6c7d908d4a5352f39.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9f626f118be00e51030a7e05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b01782fec7fd59d2c90c5177.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767578;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_ccc0da88a5e21d8150d172c7.woff2')format("woff");}.fff{font-family:fff;line-height:1.084961;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);}
.v4{vertical-align:-92.880000px;}
.v5{vertical-align:-62.640000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls24{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.414600px;}
.ls13{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.252000px;}
.ls26{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.126000px;}
.ls14{letter-spacing:-0.109200px;}
.lsf{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.109200px;}
.ls22{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.440000px;}
.ls1b{letter-spacing:2.880000px;}
.ls17{letter-spacing:6.480000px;}
.ls18{letter-spacing:10.080000px;}
.ls16{letter-spacing:10.800000px;}
.ls1d{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.829760px;}
.lse{letter-spacing:18.900000px;}
.ls4{letter-spacing:20.340000px;}
.lsd{letter-spacing:26.820000px;}
.ls20{letter-spacing:39.905280px;}
.ls1e{letter-spacing:67.680000px;}
.ls0{letter-spacing:197.429760px;}
.ls5{letter-spacing:198.900000px;}
.ls15{letter-spacing:200.340000px;}
.ls1f{letter-spacing:1380.516000px;}
.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;}
}
.wsb{word-spacing:-22.500000px;}
.ws10{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws11{word-spacing:-16.145400px;}
.ws12{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.ws6{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.248000px;}
.ws13{word-spacing:-12.168000px;}
.ws4{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
._12{margin-left:-4.631760px;}
._b{margin-left:-3.254400px;}
._2{margin-left:-1.710000px;}
._1{width:1.022400px;}
._a{width:2.775600px;}
._9{width:3.834000px;}
._c{width:5.076000px;}
._10{width:6.652080px;}
._13{width:8.544960px;}
._5{width:10.218000px;}
._3{width:11.280000px;}
._4{width:12.402000px;}
._19{width:13.431600px;}
._8{width:14.736000px;}
._e{width:18.090000px;}
._11{width:19.553040px;}
._14{width:20.841120px;}
._7{width:21.882000px;}
._6{width:23.418000px;}
._1e{width:25.158960px;}
._d{width:26.676000px;}
._15{width:28.039440px;}
._17{width:29.258160px;}
._1b{width:30.357840px;}
._1a{width:31.518000px;}
._20{width:32.742720px;}
._1d{width:33.903360px;}
._1c{width:34.974720px;}
._1f{width:36.817200px;}
._18{width:48.156480px;}
._16{width:59.549760px;}
._0{width:152.778240px;}
._21{width:847.596000px;}
._f{width:948.545760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:18.000000px;}
.fse{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y1d{bottom:1.440000px;}
.y2c{bottom:1.620000px;}
.y2a{bottom:2.880000px;}
.y37{bottom:3.060000px;}
.y30{bottom:4.860000px;}
.y1b{bottom:7.020000px;}
.y7{bottom:8.100000px;}
.y1f{bottom:9.180000px;}
.y16{bottom:9.720000px;}
.y1a{bottom:16.200000px;}
.y33{bottom:16.920000px;}
.y2e{bottom:18.360000px;}
.y29{bottom:18.540000px;}
.y3d{bottom:23.400000px;}
.y6{bottom:23.610000px;}
.y14{bottom:26.640000px;}
.y28{bottom:34.020000px;}
.y5{bottom:37.110000px;}
.y32{bottom:42.870000px;}
.y4{bottom:45.210000px;}
.y3c{bottom:49.320000px;}
.y27{bottom:49.500000px;}
.y13{bottom:52.560000px;}
.y7d{bottom:55.080000px;}
.yb{bottom:55.440000px;}
.y45{bottom:55.620000px;}
.y2{bottom:59.970000px;}
.y26{bottom:64.980000px;}
.y36{bottom:65.160000px;}
.y3{bottom:65.910000px;}
.ya{bottom:68.940000px;}
.y25{bottom:80.640000px;}
.y24{bottom:96.120000px;}
.y11{bottom:100.080000px;}
.y7e{bottom:105.480000px;}
.y23{bottom:111.600000px;}
.y10{bottom:118.980000px;}
.y7c{bottom:124.380000px;}
.y22{bottom:127.080000px;}
.y35{bottom:127.260000px;}
.yf{bottom:138.060000px;}
.yc8{bottom:141.480000px;}
.y7b{bottom:143.280000px;}
.yc7{bottom:151.770000px;}
.ye{bottom:156.990000px;}
.y7a{bottom:162.390000px;}
.yc6{bottom:168.870000px;}
.y40{bottom:172.290000px;}
.y79{bottom:181.290000px;}
.yc5{bottom:186.150000px;}
.y78{bottom:200.370000px;}
.y3f{bottom:203.250000px;}
.yc4{bottom:203.430000px;}
.y3e{bottom:207.210000px;}
.y77{bottom:219.270000px;}
.yc3{bottom:220.710000px;}
.y83{bottom:226.110000px;}
.yc2{bottom:237.990000px;}
.y76{bottom:238.170000px;}
.y82{bottom:245.190000px;}
.yc1{bottom:255.270000px;}
.y75{bottom:257.250000px;}
.y81{bottom:264.270000px;}
.yc0{bottom:272.370000px;}
.y74{bottom:276.150000px;}
.y80{bottom:283.170000px;}
.ybf{bottom:289.650000px;}
.y73{bottom:295.230000px;}
.ybe{bottom:306.930000px;}
.y72{bottom:314.130000px;}
.y7f{bottom:317.730000px;}
.ybd{bottom:327.270000px;}
.y71{bottom:333.030000px;}
.y3b{bottom:346.890000px;}
.ybc{bottom:349.050000px;}
.y70{bottom:352.110000px;}
.y6f{bottom:371.010000px;}
.y6e{bottom:390.090000px;}
.ybb{bottom:392.790000px;}
.y6d{bottom:409.035000px;}
.yba{bottom:414.615000px;}
.y6c{bottom:428.115000px;}
.yb9{bottom:433.695000px;}
.y3a{bottom:435.675000px;}
.y6b{bottom:447.015000px;}
.yb8{bottom:452.775000px;}
.y39{bottom:454.935000px;}
.y6a{bottom:465.915000px;}
.yb7{bottom:471.675000px;}
.y69{bottom:484.995000px;}
.y38{bottom:486.075000px;}
.y34{bottom:489.495000px;}
.yb6{bottom:490.755000px;}
.y68{bottom:503.895000px;}
.yb5{bottom:509.655000px;}
.y67{bottom:522.975000px;}
.yb4{bottom:528.555000px;}
.y66{bottom:541.875000px;}
.yb3{bottom:547.635000px;}
.y65{bottom:560.775000px;}
.yb2{bottom:566.535000px;}
.y64{bottom:579.855000px;}
.yb1{bottom:585.615000px;}
.y63{bottom:598.755000px;}
.yb0{bottom:604.515000px;}
.y62{bottom:617.835000px;}
.yaf{bottom:623.415000px;}
.y31{bottom:629.355000px;}
.y61{bottom:636.735000px;}
.yae{bottom:642.495000px;}
.y60{bottom:655.665000px;}
.yad{bottom:661.425000px;}
.y5f{bottom:674.745000px;}
.yac{bottom:680.505000px;}
.y5e{bottom:693.645000px;}
.yab{bottom:699.405000px;}
.y2f{bottom:705.525000px;}
.y5d{bottom:712.725000px;}
.yaa{bottom:718.305000px;}
.y2d{bottom:724.785000px;}
.y5c{bottom:731.625000px;}
.ya9{bottom:737.385000px;}
.y5b{bottom:750.525000px;}
.y2b{bottom:755.745000px;}
.ya8{bottom:756.285000px;}
.y21{bottom:759.705000px;}
.y5a{bottom:769.605000px;}
.ya7{bottom:775.365000px;}
.y59{bottom:788.505000px;}
.ya6{bottom:794.265000px;}
.y58{bottom:807.585000px;}
.ya5{bottom:813.345000px;}
.y57{bottom:826.485000px;}
.ya4{bottom:832.245000px;}
.y56{bottom:845.385000px;}
.ya3{bottom:851.145000px;}
.y92{bottom:859.605000px;}
.y55{bottom:864.465000px;}
.ya2{bottom:870.225000px;}
.y91{bottom:878.505000px;}
.y54{bottom:883.365000px;}
.ya1{bottom:889.125000px;}
.y20{bottom:899.430000px;}
.y53{bottom:902.490000px;}
.y1e{bottom:903.210000px;}
.ya0{bottom:908.250000px;}
.y90{bottom:910.950000px;}
.y52{bottom:921.390000px;}
.y1c{bottom:926.430000px;}
.y9f{bottom:927.150000px;}
.y8f{bottom:930.030000px;}
.y19{bottom:930.210000px;}
.y51{bottom:940.470000px;}
.y9e{bottom:946.050000px;}
.y8e{bottom:948.930000px;}
.y17{bottom:957.750000px;}
.y50{bottom:959.370000px;}
.y15{bottom:961.350000px;}
.y9d{bottom:965.130000px;}
.y8d{bottom:968.010000px;}
.y4f{bottom:978.270000px;}
.y9c{bottom:984.030000px;}
.y8c{bottom:986.910000px;}
.y12{bottom:991.770000px;}
.y4e{bottom:997.350000px;}
.y9b{bottom:1003.110000px;}
.y8b{bottom:1005.990000px;}
.y4d{bottom:1016.250000px;}
.y9a{bottom:1022.010000px;}
.y8a{bottom:1024.890000px;}
.y4c{bottom:1035.330000px;}
.y99{bottom:1040.910000px;}
.y89{bottom:1043.790000px;}
.y4b{bottom:1054.230000px;}
.y98{bottom:1060.710000px;}
.y88{bottom:1062.870000px;}
.y4a{bottom:1073.130000px;}
.y97{bottom:1080.150000px;}
.y87{bottom:1081.770000px;}
.y49{bottom:1092.210000px;}
.yd{bottom:1094.550000px;}
.y96{bottom:1099.050000px;}
.y86{bottom:1100.850000px;}
.y48{bottom:1111.110000px;}
.yc{bottom:1112.730000px;}
.y95{bottom:1118.130000px;}
.y85{bottom:1119.750000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y47{bottom:1130.190000px;}
.y94{bottom:1134.690000px;}
.y84{bottom:1137.210000px;}
.y93{bottom:1144.770000px;}
.y46{bottom:1149.120000px;}
.y44{bottom:1168.920000px;}
.y43{bottom:1189.800000px;}
.y42{bottom:1191.960000px;}
.y41{bottom:1194.840000px;}
.h26{height:3.420000px;}
.h13{height:3.600000px;}
.h18{height:3.780000px;}
.h1f{height:3.960000px;}
.h19{height:5.650313px;}
.h2e{height:5.653125px;}
.h8{height:5.729063px;}
.h14{height:5.805000px;}
.h2c{height:12.174258px;}
.h2a{height:15.120000px;}
.h7{height:17.666016px;}
.h5{height:17.956055px;}
.h22{height:19.260000px;}
.h1a{height:23.220000px;}
.h32{height:23.945625px;}
.h15{height:27.540000px;}
.h34{height:29.664141px;}
.h11{height:30.420000px;}
.h20{height:30.960000px;}
.h27{height:31.140000px;}
.h17{height:32.229844px;}
.h2f{height:36.281250px;}
.h25{height:37.863281px;}
.hb{height:38.812500px;}
.h9{height:40.985156px;}
.h2d{height:46.445625px;}
.h16{height:47.321367px;}
.h2b{height:47.344922px;}
.h1b{height:47.678906px;}
.h21{height:52.971680px;}
.h1e{height:52.998047px;}
.h1d{height:54.421875px;}
.h6{height:56.320312px;}
.h33{height:58.621992px;}
.h12{height:60.226875px;}
.hf{height:63.500977px;}
.hd{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h30{height:69.086250px;}
.h4{height:75.093750px;}
.h23{height:76.176000px;}
.h2{height:82.836000px;}
.h31{height:84.898125px;}
.h28{height:88.776000px;}
.h10{height:90.703125px;}
.he{height:95.385000px;}
.h29{height:139.680000px;}
.h1c{height:139.716000px;}
.h24{height:139.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:212.250000px;}
.w9{width:222.690000px;}
.w2{width:287.175000px;}
.w3{width:435.135000px;}
.w8{width:499.575000px;}
.w6{width:510.015000px;}
.w5{width:722.265000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xb{left:30.240000px;}
.x7{left:31.680000px;}
.x9{left:36.540000px;}
.x5{left:59.580000px;}
.xa{left:72.714000px;}
.x1{left:84.600000px;}
.x6{left:102.774000px;}
.x15{left:111.995987px;}
.x2{left:117.030000px;}
.x14{left:138.095987px;}
.xc{left:161.994000px;}
.x19{left:181.469987px;}
.xe{left:204.165000px;}
.x11{left:214.605000px;}
.x1b{left:276.374987px;}
.x1a{left:328.934987px;}
.x8{left:361.119000px;}
.x17{left:369.614987px;}
.x3{left:371.775000px;}
.x18{left:446.504987px;}
.x13{left:462.524987px;}
.x10{left:584.565000px;}
.xd{left:595.005000px;}
.x12{left:642.569987px;}
.x16{left:795.749987px;}
.xf{left:801.869987px;}
@media print{
.v4{vertical-align:-82.560000pt;}
.v5{vertical-align:-55.680000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.368533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls14{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.097067pt;}
.ls22{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls17{letter-spacing:5.760000pt;}
.ls18{letter-spacing:8.960000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.293120pt;}
.lse{letter-spacing:16.800000pt;}
.ls4{letter-spacing:18.080000pt;}
.lsd{letter-spacing:23.840000pt;}
.ls20{letter-spacing:35.471360pt;}
.ls1e{letter-spacing:60.160000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls5{letter-spacing:176.800000pt;}
.ls15{letter-spacing:178.080000pt;}
.ls1f{letter-spacing:1227.125333pt;}
.wsb{word-spacing:-20.000000pt;}
.ws10{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws11{word-spacing:-14.351467pt;}
.ws12{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.776000pt;}
.ws13{word-spacing:-10.816000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
._12{margin-left:-4.117120pt;}
._b{margin-left:-2.892800pt;}
._2{margin-left:-1.520000pt;}
._1{width:0.908800pt;}
._a{width:2.467200pt;}
._9{width:3.408000pt;}
._c{width:4.512000pt;}
._10{width:5.912960pt;}
._13{width:7.595520pt;}
._5{width:9.082667pt;}
._3{width:10.026667pt;}
._4{width:11.024000pt;}
._19{width:11.939200pt;}
._8{width:13.098667pt;}
._e{width:16.080000pt;}
._11{width:17.380480pt;}
._14{width:18.525440pt;}
._7{width:19.450667pt;}
._6{width:20.816000pt;}
._1e{width:22.363520pt;}
._d{width:23.712000pt;}
._15{width:24.923947pt;}
._17{width:26.007253pt;}
._1b{width:26.984747pt;}
._1a{width:28.016000pt;}
._20{width:29.104640pt;}
._1d{width:30.136320pt;}
._1c{width:31.088640pt;}
._1f{width:32.726400pt;}
._18{width:42.805760pt;}
._16{width:52.933120pt;}
._0{width:135.802880pt;}
._21{width:753.418667pt;}
._f{width:843.151787pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:16.000000pt;}
.fse{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y1d{bottom:1.280000pt;}
.y2c{bottom:1.440000pt;}
.y2a{bottom:2.560000pt;}
.y37{bottom:2.720000pt;}
.y30{bottom:4.320000pt;}
.y1b{bottom:6.240000pt;}
.y7{bottom:7.200000pt;}
.y1f{bottom:8.160000pt;}
.y16{bottom:8.640000pt;}
.y1a{bottom:14.400000pt;}
.y33{bottom:15.040000pt;}
.y2e{bottom:16.320000pt;}
.y29{bottom:16.480000pt;}
.y3d{bottom:20.800000pt;}
.y6{bottom:20.986667pt;}
.y14{bottom:23.680000pt;}
.y28{bottom:30.240000pt;}
.y5{bottom:32.986667pt;}
.y32{bottom:38.106667pt;}
.y4{bottom:40.186667pt;}
.y3c{bottom:43.840000pt;}
.y27{bottom:44.000000pt;}
.y13{bottom:46.720000pt;}
.y7d{bottom:48.960000pt;}
.yb{bottom:49.280000pt;}
.y45{bottom:49.440000pt;}
.y2{bottom:53.306667pt;}
.y26{bottom:57.760000pt;}
.y36{bottom:57.920000pt;}
.y3{bottom:58.586667pt;}
.ya{bottom:61.280000pt;}
.y25{bottom:71.680000pt;}
.y24{bottom:85.440000pt;}
.y11{bottom:88.960000pt;}
.y7e{bottom:93.760000pt;}
.y23{bottom:99.200000pt;}
.y10{bottom:105.760000pt;}
.y7c{bottom:110.560000pt;}
.y22{bottom:112.960000pt;}
.y35{bottom:113.120000pt;}
.yf{bottom:122.720000pt;}
.yc8{bottom:125.760000pt;}
.y7b{bottom:127.360000pt;}
.yc7{bottom:134.906667pt;}
.ye{bottom:139.546667pt;}
.y7a{bottom:144.346667pt;}
.yc6{bottom:150.106667pt;}
.y40{bottom:153.146667pt;}
.y79{bottom:161.146667pt;}
.yc5{bottom:165.466667pt;}
.y78{bottom:178.106667pt;}
.y3f{bottom:180.666667pt;}
.yc4{bottom:180.826667pt;}
.y3e{bottom:184.186667pt;}
.y77{bottom:194.906667pt;}
.yc3{bottom:196.186667pt;}
.y83{bottom:200.986667pt;}
.yc2{bottom:211.546667pt;}
.y76{bottom:211.706667pt;}
.y82{bottom:217.946667pt;}
.yc1{bottom:226.906667pt;}
.y75{bottom:228.666667pt;}
.y81{bottom:234.906667pt;}
.yc0{bottom:242.106667pt;}
.y74{bottom:245.466667pt;}
.y80{bottom:251.706667pt;}
.ybf{bottom:257.466667pt;}
.y73{bottom:262.426667pt;}
.ybe{bottom:272.826667pt;}
.y72{bottom:279.226667pt;}
.y7f{bottom:282.426667pt;}
.ybd{bottom:290.906667pt;}
.y71{bottom:296.026667pt;}
.y3b{bottom:308.346667pt;}
.ybc{bottom:310.266667pt;}
.y70{bottom:312.986667pt;}
.y6f{bottom:329.786667pt;}
.y6e{bottom:346.746667pt;}
.ybb{bottom:349.146667pt;}
.y6d{bottom:363.586667pt;}
.yba{bottom:368.546667pt;}
.y6c{bottom:380.546667pt;}
.yb9{bottom:385.506667pt;}
.y3a{bottom:387.266667pt;}
.y6b{bottom:397.346667pt;}
.yb8{bottom:402.466667pt;}
.y39{bottom:404.386667pt;}
.y6a{bottom:414.146667pt;}
.yb7{bottom:419.266667pt;}
.y69{bottom:431.106667pt;}
.y38{bottom:432.066667pt;}
.y34{bottom:435.106667pt;}
.yb6{bottom:436.226667pt;}
.y68{bottom:447.906667pt;}
.yb5{bottom:453.026667pt;}
.y67{bottom:464.866667pt;}
.yb4{bottom:469.826667pt;}
.y66{bottom:481.666667pt;}
.yb3{bottom:486.786667pt;}
.y65{bottom:498.466667pt;}
.yb2{bottom:503.586667pt;}
.y64{bottom:515.426667pt;}
.yb1{bottom:520.546667pt;}
.y63{bottom:532.226667pt;}
.yb0{bottom:537.346667pt;}
.y62{bottom:549.186667pt;}
.yaf{bottom:554.146667pt;}
.y31{bottom:559.426667pt;}
.y61{bottom:565.986667pt;}
.yae{bottom:571.106667pt;}
.y60{bottom:582.813333pt;}
.yad{bottom:587.933333pt;}
.y5f{bottom:599.773333pt;}
.yac{bottom:604.893333pt;}
.y5e{bottom:616.573333pt;}
.yab{bottom:621.693333pt;}
.y2f{bottom:627.133333pt;}
.y5d{bottom:633.533333pt;}
.yaa{bottom:638.493333pt;}
.y2d{bottom:644.253333pt;}
.y5c{bottom:650.333333pt;}
.ya9{bottom:655.453333pt;}
.y5b{bottom:667.133333pt;}
.y2b{bottom:671.773333pt;}
.ya8{bottom:672.253333pt;}
.y21{bottom:675.293333pt;}
.y5a{bottom:684.093333pt;}
.ya7{bottom:689.213333pt;}
.y59{bottom:700.893333pt;}
.ya6{bottom:706.013333pt;}
.y58{bottom:717.853333pt;}
.ya5{bottom:722.973333pt;}
.y57{bottom:734.653333pt;}
.ya4{bottom:739.773333pt;}
.y56{bottom:751.453333pt;}
.ya3{bottom:756.573333pt;}
.y92{bottom:764.093333pt;}
.y55{bottom:768.413333pt;}
.ya2{bottom:773.533333pt;}
.y91{bottom:780.893333pt;}
.y54{bottom:785.213333pt;}
.ya1{bottom:790.333333pt;}
.y20{bottom:799.493333pt;}
.y53{bottom:802.213333pt;}
.y1e{bottom:802.853333pt;}
.ya0{bottom:807.333333pt;}
.y90{bottom:809.733333pt;}
.y52{bottom:819.013333pt;}
.y1c{bottom:823.493333pt;}
.y9f{bottom:824.133333pt;}
.y8f{bottom:826.693333pt;}
.y19{bottom:826.853333pt;}
.y51{bottom:835.973333pt;}
.y9e{bottom:840.933333pt;}
.y8e{bottom:843.493333pt;}
.y17{bottom:851.333333pt;}
.y50{bottom:852.773333pt;}
.y15{bottom:854.533333pt;}
.y9d{bottom:857.893333pt;}
.y8d{bottom:860.453333pt;}
.y4f{bottom:869.573333pt;}
.y9c{bottom:874.693333pt;}
.y8c{bottom:877.253333pt;}
.y12{bottom:881.573333pt;}
.y4e{bottom:886.533333pt;}
.y9b{bottom:891.653333pt;}
.y8b{bottom:894.213333pt;}
.y4d{bottom:903.333333pt;}
.y9a{bottom:908.453333pt;}
.y8a{bottom:911.013333pt;}
.y4c{bottom:920.293333pt;}
.y99{bottom:925.253333pt;}
.y89{bottom:927.813333pt;}
.y4b{bottom:937.093333pt;}
.y98{bottom:942.853333pt;}
.y88{bottom:944.773333pt;}
.y4a{bottom:953.893333pt;}
.y97{bottom:960.133333pt;}
.y87{bottom:961.573333pt;}
.y49{bottom:970.853333pt;}
.yd{bottom:972.933333pt;}
.y96{bottom:976.933333pt;}
.y86{bottom:978.533333pt;}
.y48{bottom:987.653333pt;}
.yc{bottom:989.093333pt;}
.y95{bottom:993.893333pt;}
.y85{bottom:995.333333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y47{bottom:1004.613333pt;}
.y94{bottom:1008.613333pt;}
.y84{bottom:1010.853333pt;}
.y93{bottom:1017.573333pt;}
.y46{bottom:1021.440000pt;}
.y44{bottom:1039.040000pt;}
.y43{bottom:1057.600000pt;}
.y42{bottom:1059.520000pt;}
.y41{bottom:1062.080000pt;}
.h26{height:3.040000pt;}
.h13{height:3.200000pt;}
.h18{height:3.360000pt;}
.h1f{height:3.520000pt;}
.h19{height:5.022500pt;}
.h2e{height:5.025000pt;}
.h8{height:5.092500pt;}
.h14{height:5.160000pt;}
.h2c{height:10.821563pt;}
.h2a{height:13.440000pt;}
.h7{height:15.703125pt;}
.h5{height:15.960938pt;}
.h22{height:17.120000pt;}
.h1a{height:20.640000pt;}
.h32{height:21.285000pt;}
.h15{height:24.480000pt;}
.h34{height:26.368125pt;}
.h11{height:27.040000pt;}
.h20{height:27.520000pt;}
.h27{height:27.680000pt;}
.h17{height:28.648750pt;}
.h2f{height:32.250000pt;}
.h25{height:33.656250pt;}
.hb{height:34.500000pt;}
.h9{height:36.431250pt;}
.h2d{height:41.285000pt;}
.h16{height:42.063437pt;}
.h2b{height:42.084375pt;}
.h1b{height:42.381250pt;}
.h21{height:47.085938pt;}
.h1e{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h6{height:50.062500pt;}
.h33{height:52.108438pt;}
.h12{height:53.535000pt;}
.hf{height:56.445312pt;}
.hd{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h30{height:61.410000pt;}
.h4{height:66.750000pt;}
.h23{height:67.712000pt;}
.h2{height:73.632000pt;}
.h31{height:75.465000pt;}
.h28{height:78.912000pt;}
.h10{height:80.625000pt;}
.he{height:84.786667pt;}
.h29{height:124.160000pt;}
.h1c{height:124.192000pt;}
.h24{height:124.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:188.666667pt;}
.w9{width:197.946667pt;}
.w2{width:255.266667pt;}
.w3{width:386.786667pt;}
.w8{width:444.066667pt;}
.w6{width:453.346667pt;}
.w5{width:642.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xb{left:26.880000pt;}
.x7{left:28.160000pt;}
.x9{left:32.480000pt;}
.x5{left:52.960000pt;}
.xa{left:64.634667pt;}
.x1{left:75.200000pt;}
.x6{left:91.354667pt;}
.x15{left:99.551988pt;}
.x2{left:104.026667pt;}
.x14{left:122.751988pt;}
.xc{left:143.994667pt;}
.x19{left:161.306655pt;}
.xe{left:181.480000pt;}
.x11{left:190.760000pt;}
.x1b{left:245.666655pt;}
.x1a{left:292.386655pt;}
.x8{left:320.994667pt;}
.x17{left:328.546655pt;}
.x3{left:330.466667pt;}
.x18{left:396.893322pt;}
.x13{left:411.133322pt;}
.x10{left:519.613333pt;}
.xd{left:528.893333pt;}
.x12{left:571.173322pt;}
.x16{left:707.333322pt;}
.xf{left:712.773322pt;}
}




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