
    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_5b1663efe1bc81c7a4fc650e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_356a08d4edcd65396fe9fbb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_726d089351bdd98d7783a3c6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6bd4a777a36b5e2272e14a2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_9e367e5865d2fc159a716bd8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9819f70b041a3716aaf5b361.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_ac35d47a9b1fd419ab42ca1f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1adf65bf6139b1d2b3933ff1.woff2')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_50181ae881d0ab95e362fbe8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b240cd272d1e53ee776b5f1c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a079191b2065f3811c2b849d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_398aae80c4305da5707543a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.206400px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.ls13{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.940000px;}
.ls15{letter-spacing:16.506720px;}
.ls1{letter-spacing:28.260000px;}
.ls12{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-1782.548640px;}
._9{margin-left:-1507.660320px;}
._6{margin-left:-681.448320px;}
._b{margin-left:-429.840000px;}
._7{margin-left:-262.517760px;}
._11{margin-left:-232.839360px;}
._f{margin-left:-231.264000px;}
._8{margin-left:-140.955840px;}
._e{margin-left:-115.200000px;}
._1e{margin-left:-99.360000px;}
._d{margin-left:-82.776000px;}
._c{margin-left:-66.240000px;}
._22{margin-left:-10.330560px;}
._21{margin-left:-7.753440px;}
._1f{margin-left:-6.036480px;}
._1d{margin-left:-4.152960px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._12{width:2.777040px;}
._13{width:3.897600px;}
._14{width:5.079600px;}
._16{width:6.555840px;}
._15{width:7.768800px;}
._19{width:8.784480px;}
._17{width:10.520400px;}
._18{width:11.770800px;}
._1a{width:13.266720px;}
._20{width:16.613280px;}
._10{width:18.216000px;}
._23{width:22.529280px;}
._1b{width:27.430560px;}
._1c{width:28.565280px;}
._27{width:54.919440px;}
._26{width:56.293920px;}
._24{width:59.299920px;}
._25{width:60.641280px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1275.429120px;}
.fc6{color:transparent;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:5.760000px;}
.y28{bottom:5.940000px;}
.ycb{bottom:5.970000px;}
.yb6{bottom:6.480000px;}
.ybf{bottom:6.660000px;}
.yc2{bottom:7.200000px;}
.ybc{bottom:7.560000px;}
.y3a{bottom:8.460000px;}
.y13{bottom:10.440000px;}
.y6{bottom:23.760000px;}
.yb2{bottom:25.560000px;}
.y27{bottom:25.740000px;}
.yb5{bottom:26.460000px;}
.y39{bottom:28.260000px;}
.y26{bottom:45.540000px;}
.y38{bottom:48.060000px;}
.y5{bottom:52.380000px;}
.ya{bottom:62.100000px;}
.y25{bottom:65.340000px;}
.y37{bottom:68.040000px;}
.y4{bottom:80.820000px;}
.y24{bottom:85.140000px;}
.y36{bottom:87.840000px;}
.y100{bottom:99.360000px;}
.y4b{bottom:100.800000px;}
.yaf{bottom:101.160000px;}
.y8{bottom:102.090000px;}
.y23{bottom:105.120000px;}
.y35{bottom:107.640000px;}
.y3{bottom:109.470000px;}
.yff{bottom:119.160000px;}
.y4a{bottom:120.600000px;}
.y80{bottom:120.960000px;}
.y22{bottom:124.920000px;}
.y34{bottom:127.440000px;}
.yfe{bottom:138.960000px;}
.y49{bottom:140.400000px;}
.y2{bottom:140.430000px;}
.y7{bottom:140.610000px;}
.y7f{bottom:140.760000px;}
.y21{bottom:144.720000px;}
.y33{bottom:147.240000px;}
.yca{bottom:149.220000px;}
.yfd{bottom:158.790000px;}
.y48{bottom:160.410000px;}
.yae{bottom:160.770000px;}
.y20{bottom:164.520000px;}
.y32{bottom:167.220000px;}
.yc9{bottom:169.590000px;}
.y7e{bottom:178.770000px;}
.y47{bottom:180.210000px;}
.yad{bottom:180.570000px;}
.y1f{bottom:184.320000px;}
.y31{bottom:187.020000px;}
.yc8{bottom:190.110000px;}
.y7d{bottom:198.570000px;}
.y46{bottom:200.010000px;}
.yac{bottom:200.370000px;}
.y1e{bottom:204.300000px;}
.y30{bottom:206.820000px;}
.yc7{bottom:211.890000px;}
.y7c{bottom:218.370000px;}
.y45{bottom:219.810000px;}
.yab{bottom:220.170000px;}
.y1d{bottom:224.130000px;}
.y2f{bottom:226.650000px;}
.yc6{bottom:232.950000px;}
.y7b{bottom:238.170000px;}
.y44{bottom:239.610000px;}
.yaa{bottom:239.970000px;}
.y1c{bottom:243.930000px;}
.y2e{bottom:246.450000px;}
.yc5{bottom:254.190000px;}
.y7a{bottom:257.970000px;}
.y43{bottom:259.590000px;}
.ya9{bottom:259.950000px;}
.y1b{bottom:263.730000px;}
.y2d{bottom:266.430000px;}
.y79{bottom:277.950000px;}
.y42{bottom:279.390000px;}
.ya8{bottom:279.750000px;}
.y1a{bottom:283.530000px;}
.y2c{bottom:286.230000px;}
.yc4{bottom:294.330000px;}
.y78{bottom:297.750000px;}
.y41{bottom:299.190000px;}
.ya7{bottom:299.550000px;}
.y19{bottom:303.510000px;}
.y2b{bottom:306.030000px;}
.yc3{bottom:316.110000px;}
.y77{bottom:317.550000px;}
.y40{bottom:318.990000px;}
.ya6{bottom:319.350000px;}
.y18{bottom:323.310000px;}
.y2a{bottom:325.830000px;}
.yc1{bottom:336.630000px;}
.y76{bottom:337.350000px;}
.y3f{bottom:338.790000px;}
.ya5{bottom:339.150000px;}
.y17{bottom:343.110000px;}
.y29{bottom:345.630000px;}
.yfc{bottom:357.150000px;}
.yc0{bottom:358.410000px;}
.y3e{bottom:358.770000px;}
.ya4{bottom:359.130000px;}
.y16{bottom:362.910000px;}
.y75{bottom:366.150000px;}
.yfb{bottom:377.130000px;}
.y3d{bottom:378.570000px;}
.ya3{bottom:378.930000px;}
.ybe{bottom:379.470000px;}
.y15{bottom:382.710000px;}
.y74{bottom:386.130000px;}
.yfa{bottom:396.930000px;}
.y3c{bottom:398.370000px;}
.ya2{bottom:398.730000px;}
.ybd{bottom:400.755000px;}
.y73{bottom:405.975000px;}
.yf9{bottom:416.775000px;}
.y3b{bottom:418.215000px;}
.ya1{bottom:418.575000px;}
.y72{bottom:425.775000px;}
.y14{bottom:432.975000px;}
.yf8{bottom:436.575000px;}
.ya0{bottom:438.375000px;}
.ybb{bottom:440.895000px;}
.y71{bottom:445.575000px;}
.yf7{bottom:456.375000px;}
.y9f{bottom:458.355000px;}
.yba{bottom:463.035000px;}
.y70{bottom:465.375000px;}
.yf6{bottom:476.355000px;}
.y9e{bottom:478.155000px;}
.yb9{bottom:483.375000px;}
.y6f{bottom:485.355000px;}
.yf5{bottom:496.155000px;}
.y9d{bottom:497.955000px;}
.yb8{bottom:503.715000px;}
.y6e{bottom:505.155000px;}
.ydd{bottom:506.955000px;}
.yf4{bottom:515.955000px;}
.y9c{bottom:517.755000px;}
.yb7{bottom:524.055000px;}
.y6d{bottom:524.955000px;}
.ydc{bottom:526.755000px;}
.yf3{bottom:535.755000px;}
.y9b{bottom:537.555000px;}
.yb4{bottom:544.395000px;}
.y6c{bottom:544.755000px;}
.ydb{bottom:546.555000px;}
.yf2{bottom:555.555000px;}
.y9a{bottom:557.355000px;}
.y6b{bottom:564.555000px;}
.yda{bottom:566.355000px;}
.yf1{bottom:575.355000px;}
.y99{bottom:577.335000px;}
.y6a{bottom:584.355000px;}
.yb1{bottom:586.155000px;}
.yd9{bottom:586.335000px;}
.yf0{bottom:595.335000px;}
.y98{bottom:597.135000px;}
.y69{bottom:604.335000px;}
.yd8{bottom:606.135000px;}
.yef{bottom:615.135000px;}
.y97{bottom:616.935000px;}
.y68{bottom:624.135000px;}
.yd7{bottom:625.935000px;}
.yb0{bottom:627.015000px;}
.yee{bottom:634.935000px;}
.y96{bottom:636.735000px;}
.y67{bottom:643.935000px;}
.yd6{bottom:645.735000px;}
.yed{bottom:654.765000px;}
.y95{bottom:656.565000px;}
.y66{bottom:663.765000px;}
.yd5{bottom:665.565000px;}
.yec{bottom:674.565000px;}
.y94{bottom:676.545000px;}
.y65{bottom:683.565000px;}
.yd4{bottom:685.545000px;}
.yeb{bottom:694.545000px;}
.y93{bottom:696.345000px;}
.y64{bottom:703.545000px;}
.yd3{bottom:705.345000px;}
.yea{bottom:714.345000px;}
.y92{bottom:716.145000px;}
.y63{bottom:723.345000px;}
.yd2{bottom:725.145000px;}
.ye9{bottom:734.145000px;}
.y91{bottom:735.945000px;}
.y62{bottom:743.145000px;}
.yd1{bottom:744.945000px;}
.ye8{bottom:753.945000px;}
.y90{bottom:755.745000px;}
.y61{bottom:762.945000px;}
.yd0{bottom:764.745000px;}
.ye7{bottom:773.745000px;}
.y8f{bottom:775.725000px;}
.y60{bottom:782.745000px;}
.ycf{bottom:784.725000px;}
.ye6{bottom:793.725000px;}
.y8e{bottom:795.525000px;}
.y5f{bottom:802.725000px;}
.yce{bottom:804.525000px;}
.ye5{bottom:813.525000px;}
.y8d{bottom:815.325000px;}
.y5e{bottom:822.525000px;}
.ycd{bottom:824.325000px;}
.y12{bottom:830.445000px;}
.ye4{bottom:833.325000px;}
.y5d{bottom:842.325000px;}
.y8c{bottom:844.125000px;}
.ye3{bottom:853.125000px;}
.y5c{bottom:862.125000px;}
.y8b{bottom:863.925000px;}
.y11{bottom:865.905000px;}
.ye2{bottom:872.925000px;}
.y5b{bottom:881.925000px;}
.y8a{bottom:883.905000px;}
.y10{bottom:890.925000px;}
.ye1{bottom:892.905000px;}
.y5a{bottom:901.950000px;}
.y89{bottom:903.750000px;}
.yf{bottom:910.770000px;}
.ye0{bottom:912.750000px;}
.y59{bottom:921.750000px;}
.y88{bottom:923.550000px;}
.ye{bottom:926.070000px;}
.ydf{bottom:932.550000px;}
.y58{bottom:941.550000px;}
.y87{bottom:943.350000px;}
.yd{bottom:947.310000px;}
.yde{bottom:952.350000px;}
.y57{bottom:961.350000px;}
.ycc{bottom:963.150000px;}
.yc{bottom:970.710000px;}
.y86{bottom:972.150000px;}
.y56{bottom:981.150000px;}
.y85{bottom:992.130000px;}
.y55{bottom:1001.130000px;}
.yb{bottom:1002.570000px;}
.y84{bottom:1011.930000px;}
.y54{bottom:1020.930000px;}
.y9{bottom:1028.850000px;}
.y83{bottom:1031.730000px;}
.y53{bottom:1040.730000px;}
.y1{bottom:1046.310000px;}
.y82{bottom:1051.530000px;}
.y52{bottom:1060.530000px;}
.y81{bottom:1071.330000px;}
.y51{bottom:1080.330000px;}
.y50{bottom:1100.310000px;}
.y4f{bottom:1120.110000px;}
.y4e{bottom:1139.910000px;}
.y4d{bottom:1169.820000px;}
.y4c{bottom:1192.680000px;}
.h15{height:19.800000px;}
.h12{height:19.980000px;}
.h1a{height:20.016000px;}
.h18{height:20.520000px;}
.h17{height:20.700000px;}
.h19{height:21.240000px;}
.h16{height:21.600000px;}
.hb{height:27.147656px;}
.hc{height:28.980000px;}
.h13{height:39.600000px;}
.h14{height:40.500000px;}
.h9{height:41.726953px;}
.h10{height:42.164648px;}
.h1b{height:43.506914px;}
.hf{height:45.549492px;}
.hd{height:48.027656px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h6{height:50.273438px;}
.h11{height:51.706406px;}
.h5{height:53.015625px;}
.ha{height:53.224453px;}
.h3{height:62.028281px;}
.h8{height:67.565039px;}
.h2{height:162.570000px;}
.he{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:93.456000px;}
.w9{width:106.956000px;}
.wc{width:111.420000px;}
.we{width:111.456000px;}
.w3{width:129.636000px;}
.wa{width:132.480000px;}
.wd{width:147.420000px;}
.w7{width:181.650000px;}
.w8{width:258.870000px;}
.w6{width:603.690000px;}
.w2{width:676.950000px;}
.w5{width:785.340000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x12{left:-6.840000px;}
.x1a{left:-3.780000px;}
.x0{left:0.000000px;}
.x18{left:1.440000px;}
.x1b{left:4.140000px;}
.x13{left:5.220000px;}
.x15{left:6.840000px;}
.x2{left:7.920000px;}
.xe{left:9.360000px;}
.x1c{left:10.800000px;}
.x10{left:12.780000px;}
.x19{left:14.940000px;}
.x17{left:19.440000px;}
.x1d{left:23.580000px;}
.x14{left:25.560000px;}
.x16{left:38.340000px;}
.x1{left:43.200000px;}
.x6{left:52.919987px;}
.x4{left:53.999987px;}
.x1e{left:80.999987px;}
.x20{left:84.815987px;}
.xf{left:87.654000px;}
.x8{left:94.535987px;}
.x9{left:96.515987px;}
.x1f{left:108.035987px;}
.x11{left:241.770000px;}
.xa{left:353.235000px;}
.xb{left:460.185000px;}
.xc{left:592.665000px;}
.x7{left:657.510000px;}
.xd{left:686.130000px;}
.x3{left:720.150000px;}
.x5{left:727.529987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls13{letter-spacing:4.000000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls1{letter-spacing:25.120000pt;}
.ls12{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-1584.487680pt;}
._9{margin-left:-1340.142507pt;}
._6{margin-left:-605.731840pt;}
._b{margin-left:-382.080000pt;}
._7{margin-left:-233.349120pt;}
._11{margin-left:-206.968320pt;}
._f{margin-left:-205.568000pt;}
._8{margin-left:-125.294080pt;}
._e{margin-left:-102.400000pt;}
._1e{margin-left:-88.320000pt;}
._d{margin-left:-73.578667pt;}
._c{margin-left:-58.880000pt;}
._22{margin-left:-9.182720pt;}
._21{margin-left:-6.891947pt;}
._1f{margin-left:-5.365760pt;}
._1d{margin-left:-3.691520pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._12{width:2.468480pt;}
._13{width:3.464533pt;}
._14{width:4.515200pt;}
._16{width:5.827413pt;}
._15{width:6.905600pt;}
._19{width:7.808427pt;}
._17{width:9.351467pt;}
._18{width:10.462933pt;}
._1a{width:11.792640pt;}
._20{width:14.767360pt;}
._10{width:16.192000pt;}
._23{width:20.026027pt;}
._1b{width:24.382720pt;}
._1c{width:25.391360pt;}
._27{width:48.817280pt;}
._26{width:50.039040pt;}
._24{width:52.711040pt;}
._25{width:53.903360pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1133.714773pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:5.120000pt;}
.y28{bottom:5.280000pt;}
.ycb{bottom:5.306667pt;}
.yb6{bottom:5.760000pt;}
.ybf{bottom:5.920000pt;}
.yc2{bottom:6.400000pt;}
.ybc{bottom:6.720000pt;}
.y3a{bottom:7.520000pt;}
.y13{bottom:9.280000pt;}
.y6{bottom:21.120000pt;}
.yb2{bottom:22.720000pt;}
.y27{bottom:22.880000pt;}
.yb5{bottom:23.520000pt;}
.y39{bottom:25.120000pt;}
.y26{bottom:40.480000pt;}
.y38{bottom:42.720000pt;}
.y5{bottom:46.560000pt;}
.ya{bottom:55.200000pt;}
.y25{bottom:58.080000pt;}
.y37{bottom:60.480000pt;}
.y4{bottom:71.840000pt;}
.y24{bottom:75.680000pt;}
.y36{bottom:78.080000pt;}
.y100{bottom:88.320000pt;}
.y4b{bottom:89.600000pt;}
.yaf{bottom:89.920000pt;}
.y8{bottom:90.746667pt;}
.y23{bottom:93.440000pt;}
.y35{bottom:95.680000pt;}
.y3{bottom:97.306667pt;}
.yff{bottom:105.920000pt;}
.y4a{bottom:107.200000pt;}
.y80{bottom:107.520000pt;}
.y22{bottom:111.040000pt;}
.y34{bottom:113.280000pt;}
.yfe{bottom:123.520000pt;}
.y49{bottom:124.800000pt;}
.y2{bottom:124.826667pt;}
.y7{bottom:124.986667pt;}
.y7f{bottom:125.120000pt;}
.y21{bottom:128.640000pt;}
.y33{bottom:130.880000pt;}
.yca{bottom:132.640000pt;}
.yfd{bottom:141.146667pt;}
.y48{bottom:142.586667pt;}
.yae{bottom:142.906667pt;}
.y20{bottom:146.240000pt;}
.y32{bottom:148.640000pt;}
.yc9{bottom:150.746667pt;}
.y7e{bottom:158.906667pt;}
.y47{bottom:160.186667pt;}
.yad{bottom:160.506667pt;}
.y1f{bottom:163.840000pt;}
.y31{bottom:166.240000pt;}
.yc8{bottom:168.986667pt;}
.y7d{bottom:176.506667pt;}
.y46{bottom:177.786667pt;}
.yac{bottom:178.106667pt;}
.y1e{bottom:181.600000pt;}
.y30{bottom:183.840000pt;}
.yc7{bottom:188.346667pt;}
.y7c{bottom:194.106667pt;}
.y45{bottom:195.386667pt;}
.yab{bottom:195.706667pt;}
.y1d{bottom:199.226667pt;}
.y2f{bottom:201.466667pt;}
.yc6{bottom:207.066667pt;}
.y7b{bottom:211.706667pt;}
.y44{bottom:212.986667pt;}
.yaa{bottom:213.306667pt;}
.y1c{bottom:216.826667pt;}
.y2e{bottom:219.066667pt;}
.yc5{bottom:225.946667pt;}
.y7a{bottom:229.306667pt;}
.y43{bottom:230.746667pt;}
.ya9{bottom:231.066667pt;}
.y1b{bottom:234.426667pt;}
.y2d{bottom:236.826667pt;}
.y79{bottom:247.066667pt;}
.y42{bottom:248.346667pt;}
.ya8{bottom:248.666667pt;}
.y1a{bottom:252.026667pt;}
.y2c{bottom:254.426667pt;}
.yc4{bottom:261.626667pt;}
.y78{bottom:264.666667pt;}
.y41{bottom:265.946667pt;}
.ya7{bottom:266.266667pt;}
.y19{bottom:269.786667pt;}
.y2b{bottom:272.026667pt;}
.yc3{bottom:280.986667pt;}
.y77{bottom:282.266667pt;}
.y40{bottom:283.546667pt;}
.ya6{bottom:283.866667pt;}
.y18{bottom:287.386667pt;}
.y2a{bottom:289.626667pt;}
.yc1{bottom:299.226667pt;}
.y76{bottom:299.866667pt;}
.y3f{bottom:301.146667pt;}
.ya5{bottom:301.466667pt;}
.y17{bottom:304.986667pt;}
.y29{bottom:307.226667pt;}
.yfc{bottom:317.466667pt;}
.yc0{bottom:318.586667pt;}
.y3e{bottom:318.906667pt;}
.ya4{bottom:319.226667pt;}
.y16{bottom:322.586667pt;}
.y75{bottom:325.466667pt;}
.yfb{bottom:335.226667pt;}
.y3d{bottom:336.506667pt;}
.ya3{bottom:336.826667pt;}
.ybe{bottom:337.306667pt;}
.y15{bottom:340.186667pt;}
.y74{bottom:343.226667pt;}
.yfa{bottom:352.826667pt;}
.y3c{bottom:354.106667pt;}
.ya2{bottom:354.426667pt;}
.ybd{bottom:356.226667pt;}
.y73{bottom:360.866667pt;}
.yf9{bottom:370.466667pt;}
.y3b{bottom:371.746667pt;}
.ya1{bottom:372.066667pt;}
.y72{bottom:378.466667pt;}
.y14{bottom:384.866667pt;}
.yf8{bottom:388.066667pt;}
.ya0{bottom:389.666667pt;}
.ybb{bottom:391.906667pt;}
.y71{bottom:396.066667pt;}
.yf7{bottom:405.666667pt;}
.y9f{bottom:407.426667pt;}
.yba{bottom:411.586667pt;}
.y70{bottom:413.666667pt;}
.yf6{bottom:423.426667pt;}
.y9e{bottom:425.026667pt;}
.yb9{bottom:429.666667pt;}
.y6f{bottom:431.426667pt;}
.yf5{bottom:441.026667pt;}
.y9d{bottom:442.626667pt;}
.yb8{bottom:447.746667pt;}
.y6e{bottom:449.026667pt;}
.ydd{bottom:450.626667pt;}
.yf4{bottom:458.626667pt;}
.y9c{bottom:460.226667pt;}
.yb7{bottom:465.826667pt;}
.y6d{bottom:466.626667pt;}
.ydc{bottom:468.226667pt;}
.yf3{bottom:476.226667pt;}
.y9b{bottom:477.826667pt;}
.yb4{bottom:483.906667pt;}
.y6c{bottom:484.226667pt;}
.ydb{bottom:485.826667pt;}
.yf2{bottom:493.826667pt;}
.y9a{bottom:495.426667pt;}
.y6b{bottom:501.826667pt;}
.yda{bottom:503.426667pt;}
.yf1{bottom:511.426667pt;}
.y99{bottom:513.186667pt;}
.y6a{bottom:519.426667pt;}
.yb1{bottom:521.026667pt;}
.yd9{bottom:521.186667pt;}
.yf0{bottom:529.186667pt;}
.y98{bottom:530.786667pt;}
.y69{bottom:537.186667pt;}
.yd8{bottom:538.786667pt;}
.yef{bottom:546.786667pt;}
.y97{bottom:548.386667pt;}
.y68{bottom:554.786667pt;}
.yd7{bottom:556.386667pt;}
.yb0{bottom:557.346667pt;}
.yee{bottom:564.386667pt;}
.y96{bottom:565.986667pt;}
.y67{bottom:572.386667pt;}
.yd6{bottom:573.986667pt;}
.yed{bottom:582.013333pt;}
.y95{bottom:583.613333pt;}
.y66{bottom:590.013333pt;}
.yd5{bottom:591.613333pt;}
.yec{bottom:599.613333pt;}
.y94{bottom:601.373333pt;}
.y65{bottom:607.613333pt;}
.yd4{bottom:609.373333pt;}
.yeb{bottom:617.373333pt;}
.y93{bottom:618.973333pt;}
.y64{bottom:625.373333pt;}
.yd3{bottom:626.973333pt;}
.yea{bottom:634.973333pt;}
.y92{bottom:636.573333pt;}
.y63{bottom:642.973333pt;}
.yd2{bottom:644.573333pt;}
.ye9{bottom:652.573333pt;}
.y91{bottom:654.173333pt;}
.y62{bottom:660.573333pt;}
.yd1{bottom:662.173333pt;}
.ye8{bottom:670.173333pt;}
.y90{bottom:671.773333pt;}
.y61{bottom:678.173333pt;}
.yd0{bottom:679.773333pt;}
.ye7{bottom:687.773333pt;}
.y8f{bottom:689.533333pt;}
.y60{bottom:695.773333pt;}
.ycf{bottom:697.533333pt;}
.ye6{bottom:705.533333pt;}
.y8e{bottom:707.133333pt;}
.y5f{bottom:713.533333pt;}
.yce{bottom:715.133333pt;}
.ye5{bottom:723.133333pt;}
.y8d{bottom:724.733333pt;}
.y5e{bottom:731.133333pt;}
.ycd{bottom:732.733333pt;}
.y12{bottom:738.173333pt;}
.ye4{bottom:740.733333pt;}
.y5d{bottom:748.733333pt;}
.y8c{bottom:750.333333pt;}
.ye3{bottom:758.333333pt;}
.y5c{bottom:766.333333pt;}
.y8b{bottom:767.933333pt;}
.y11{bottom:769.693333pt;}
.ye2{bottom:775.933333pt;}
.y5b{bottom:783.933333pt;}
.y8a{bottom:785.693333pt;}
.y10{bottom:791.933333pt;}
.ye1{bottom:793.693333pt;}
.y5a{bottom:801.733333pt;}
.y89{bottom:803.333333pt;}
.yf{bottom:809.573333pt;}
.ye0{bottom:811.333333pt;}
.y59{bottom:819.333333pt;}
.y88{bottom:820.933333pt;}
.ye{bottom:823.173333pt;}
.ydf{bottom:828.933333pt;}
.y58{bottom:836.933333pt;}
.y87{bottom:838.533333pt;}
.yd{bottom:842.053333pt;}
.yde{bottom:846.533333pt;}
.y57{bottom:854.533333pt;}
.ycc{bottom:856.133333pt;}
.yc{bottom:862.853333pt;}
.y86{bottom:864.133333pt;}
.y56{bottom:872.133333pt;}
.y85{bottom:881.893333pt;}
.y55{bottom:889.893333pt;}
.yb{bottom:891.173333pt;}
.y84{bottom:899.493333pt;}
.y54{bottom:907.493333pt;}
.y9{bottom:914.533333pt;}
.y83{bottom:917.093333pt;}
.y53{bottom:925.093333pt;}
.y1{bottom:930.053333pt;}
.y82{bottom:934.693333pt;}
.y52{bottom:942.693333pt;}
.y81{bottom:952.293333pt;}
.y51{bottom:960.293333pt;}
.y50{bottom:978.053333pt;}
.y4f{bottom:995.653333pt;}
.y4e{bottom:1013.253333pt;}
.y4d{bottom:1039.840000pt;}
.y4c{bottom:1060.160000pt;}
.h15{height:17.600000pt;}
.h12{height:17.760000pt;}
.h1a{height:17.792000pt;}
.h18{height:18.240000pt;}
.h17{height:18.400000pt;}
.h19{height:18.880000pt;}
.h16{height:19.200000pt;}
.hb{height:24.131250pt;}
.hc{height:25.760000pt;}
.h13{height:35.200000pt;}
.h14{height:36.000000pt;}
.h9{height:37.090625pt;}
.h10{height:37.479688pt;}
.h1b{height:38.672812pt;}
.hf{height:40.488438pt;}
.hd{height:42.691250pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h6{height:44.687500pt;}
.h11{height:45.961250pt;}
.h5{height:47.125000pt;}
.ha{height:47.310625pt;}
.h3{height:55.136250pt;}
.h8{height:60.057813pt;}
.h2{height:144.506667pt;}
.he{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:83.072000pt;}
.w9{width:95.072000pt;}
.wc{width:99.040000pt;}
.we{width:99.072000pt;}
.w3{width:115.232000pt;}
.wa{width:117.760000pt;}
.wd{width:131.040000pt;}
.w7{width:161.466667pt;}
.w8{width:230.106667pt;}
.w6{width:536.613333pt;}
.w2{width:601.733333pt;}
.w5{width:698.080000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x12{left:-6.080000pt;}
.x1a{left:-3.360000pt;}
.x0{left:0.000000pt;}
.x18{left:1.280000pt;}
.x1b{left:3.680000pt;}
.x13{left:4.640000pt;}
.x15{left:6.080000pt;}
.x2{left:7.040000pt;}
.xe{left:8.320000pt;}
.x1c{left:9.600000pt;}
.x10{left:11.360000pt;}
.x19{left:13.280000pt;}
.x17{left:17.280000pt;}
.x1d{left:20.960000pt;}
.x14{left:22.720000pt;}
.x16{left:34.080000pt;}
.x1{left:38.400000pt;}
.x6{left:47.039988pt;}
.x4{left:47.999988pt;}
.x1e{left:71.999988pt;}
.x20{left:75.391988pt;}
.xf{left:77.914667pt;}
.x8{left:84.031988pt;}
.x9{left:85.791988pt;}
.x1f{left:96.031988pt;}
.x11{left:214.906667pt;}
.xa{left:313.986667pt;}
.xb{left:409.053333pt;}
.xc{left:526.813333pt;}
.x7{left:584.453333pt;}
.xd{left:609.893333pt;}
.x3{left:640.133333pt;}
.x5{left:646.693322pt;}
}




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