
    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_21ff01fc522d662dd6b2abad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4a54a08ce5d5bf1316cd95b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99f5895f8c5ecd2ef32b2a0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_b05a997e3ba38550b5fdbba8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.630000px;}
.lsa{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.282000px;}
.ls1a{letter-spacing:-0.150000px;}
.ls1f{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.120000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.084000px;}
.ls1b{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.144000px;}
.lse{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.282000px;}
.ls2{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.390000px;}
.ls5{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.492000px;}
.ls13{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.564000px;}
.ls7{letter-spacing:0.744000px;}
.lsd{letter-spacing:0.822000px;}
.ls1{letter-spacing:1.038000px;}
.ls19{letter-spacing:1.206000px;}
.ls3{letter-spacing:1.428000px;}
.ls1e{letter-spacing:1.632000px;}
.lsc{letter-spacing:4.584000px;}
.ls18{letter-spacing:40.152000px;}
.ls14{letter-spacing:50.634000px;}
.ls17{letter-spacing:50.832000px;}
.lsf{letter-spacing:59.652000px;}
.ls16{letter-spacing:70.152000px;}
.ls4{letter-spacing:96.798000px;}
.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;}
}
.wsa{word-spacing:-66.000000px;}
.ws1{word-spacing:-25.152000px;}
.ws0{word-spacing:-24.408000px;}
.ws2{word-spacing:-24.048000px;}
.ws6{word-spacing:-18.984000px;}
.wsb{word-spacing:-15.738000px;}
.wse{word-spacing:-15.306000px;}
.ws3{word-spacing:-14.916000px;}
.wsd{word-spacing:-14.766000px;}
.ws4{word-spacing:-14.634000px;}
.ws5{word-spacing:-14.454000px;}
.ws7{word-spacing:-14.040000px;}
.ws8{word-spacing:-13.440000px;}
.wsc{word-spacing:-0.066000px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-11.916000px;}
._8{margin-left:-9.876000px;}
._7{margin-left:-4.980000px;}
._4{margin-left:-3.468000px;}
._a{margin-left:-2.310000px;}
._1{margin-left:-1.296000px;}
._0{width:1.620000px;}
._2{width:2.796000px;}
._11{width:4.074000px;}
._b{width:5.100000px;}
._12{width:6.444000px;}
._1e{width:8.262000px;}
._1d{width:9.918000px;}
._d{width:11.040000px;}
._c{width:12.408000px;}
._13{width:13.716000px;}
._17{width:16.170000px;}
._14{width:17.430000px;}
._f{width:18.474000px;}
._e{width:19.710000px;}
._10{width:21.126000px;}
._6{width:24.630000px;}
._15{width:26.070000px;}
._16{width:27.522000px;}
._20{width:45.450000px;}
._3{width:73.170000px;}
._1c{width:112.158000px;}
._1f{width:122.742000px;}
._18{width:133.476000px;}
._21{width:154.734000px;}
._1b{width:172.950000px;}
._19{width:196.764000px;}
._1a{width:198.204000px;}
._9{width:849.534000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:4.110000px;}
.y2{bottom:4.125000px;}
.y69{bottom:5.610000px;}
.y6e{bottom:5.625000px;}
.y72{bottom:5.632500px;}
.y66{bottom:6.375000px;}
.y5d{bottom:6.750000px;}
.y71{bottom:7.507500px;}
.y8{bottom:7.875000px;}
.yf{bottom:14.235000px;}
.y10f{bottom:24.000000px;}
.y10{bottom:24.360000px;}
.y113{bottom:24.375000px;}
.y111{bottom:24.390000px;}
.y11c{bottom:24.405000px;}
.y68{bottom:27.375000px;}
.y70{bottom:27.412500px;}
.y7{bottom:37.125000px;}
.y10d{bottom:44.610000px;}
.yb{bottom:57.037500px;}
.y4{bottom:64.125000px;}
.yd4{bottom:93.037500px;}
.y3{bottom:97.125000px;}
.yb9{bottom:99.787500px;}
.y4e{bottom:105.412500px;}
.y8d{bottom:107.287500px;}
.y74{bottom:111.787500px;}
.yd3{bottom:113.287500px;}
.yb8{bottom:119.662500px;}
.y4d{bottom:125.287500px;}
.y8c{bottom:127.537500px;}
.y73{bottom:131.662500px;}
.yd2{bottom:133.912500px;}
.yb7{bottom:139.912500px;}
.yf8{bottom:142.537500px;}
.y4c{bottom:146.287500px;}
.y8b{bottom:147.412500px;}
.y6f{bottom:148.912500px;}
.yd1{bottom:154.170000px;}
.yb6{bottom:160.170000px;}
.y4b{bottom:166.920000px;}
.y8a{bottom:167.670000px;}
.yf7{bottom:170.295000px;}
.yd0{bottom:174.825000px;}
.yb5{bottom:180.075000px;}
.y4a{bottom:187.575000px;}
.y89{bottom:187.950000px;}
.y6d{bottom:193.575000px;}
.ycf{bottom:195.075000px;}
.yb4{bottom:200.325000px;}
.y88{bottom:207.825000px;}
.y49{bottom:208.200000px;}
.yf6{bottom:213.075000px;}
.yce{bottom:217.200000px;}
.yb3{bottom:220.575000px;}
.y87{bottom:228.075000px;}
.y48{bottom:228.450000px;}
.yf5{bottom:232.950000px;}
.ycd{bottom:237.450000px;}
.y6c{bottom:238.200000px;}
.yb2{bottom:240.825000px;}
.y86{bottom:248.325000px;}
.y47{bottom:248.700000px;}
.yf4{bottom:253.200000px;}
.ycc{bottom:257.700000px;}
.yb1{bottom:260.700000px;}
.y6b{bottom:261.825000px;}
.y85{bottom:268.575000px;}
.y46{bottom:269.325000px;}
.yf3{bottom:273.450000px;}
.ycb{bottom:277.950000px;}
.yb0{bottom:280.950000px;}
.y84{bottom:284.325000px;}
.y6a{bottom:285.450000px;}
.y45{bottom:289.950000px;}
.yf2{bottom:293.325000px;}
.yca{bottom:297.825000px;}
.yaf{bottom:301.200000px;}
.y67{bottom:309.120000px;}
.y44{bottom:310.980000px;}
.yf1{bottom:313.620000px;}
.yc9{bottom:318.105000px;}
.yae{bottom:321.105000px;}
.y11e{bottom:325.995000px;}
.y43{bottom:331.605000px;}
.yf0{bottom:333.870000px;}
.yc8{bottom:338.355000px;}
.yad{bottom:341.355000px;}
.y42{bottom:351.480000px;}
.y65{bottom:353.745000px;}
.yc7{bottom:358.230000px;}
.yac{bottom:361.605000px;}
.yef{bottom:363.120000px;}
.y11d{bottom:367.245000px;}
.y23{bottom:369.120000px;}
.y41{bottom:371.730000px;}
.yc6{bottom:378.480000px;}
.y64{bottom:381.480000px;}
.yab{bottom:381.855000px;}
.y40{bottom:391.980000px;}
.y22{bottom:397.995000px;}
.y63{bottom:398.370000px;}
.yc5{bottom:398.730000px;}
.yaa{bottom:401.745000px;}
.yee{bottom:402.870000px;}
.y11b{bottom:408.120000px;}
.y3f{bottom:411.870000px;}
.yc4{bottom:418.995000px;}
.y62{bottom:421.995000px;}
.yed{bottom:423.120000px;}
.y3e{bottom:432.150000px;}
.y21{bottom:434.775000px;}
.yc3{bottom:438.900000px;}
.ya9{bottom:442.275000px;}
.yec{bottom:443.400000px;}
.y61{bottom:445.650000px;}
.y11a{bottom:449.025000px;}
.y3d{bottom:452.400000px;}
.yc2{bottom:459.150000px;}
.ya8{bottom:462.150000px;}
.yeb{bottom:463.275000px;}
.y60{bottom:469.275000px;}
.y20{bottom:471.150000px;}
.y3c{bottom:472.650000px;}
.yc1{bottom:479.400000px;}
.ya7{bottom:482.400000px;}
.yea{bottom:483.525000px;}
.y119{bottom:490.275000px;}
.y3b{bottom:492.525000px;}
.y5f{bottom:492.900000px;}
.y1f{bottom:498.150000px;}
.yc0{bottom:499.275000px;}
.ya6{bottom:502.650000px;}
.ye9{bottom:503.775000px;}
.y3a{bottom:512.775000px;}
.y5e{bottom:516.525000px;}
.ybf{bottom:521.025000px;}
.ya5{bottom:522.900000px;}
.ye8{bottom:523.650000px;}
.y1e{bottom:525.525000px;}
.y118{bottom:531.150000px;}
.y39{bottom:533.025000px;}
.y5c{bottom:540.150000px;}
.ybe{bottom:541.275000px;}
.ya4{bottom:542.775000px;}
.ye7{bottom:543.900000px;}
.y1d{bottom:552.900000px;}
.y10b{bottom:559.650000px;}
.ybd{bottom:561.570000px;}
.ya3{bottom:563.070000px;}
.ye6{bottom:564.195000px;}
.y117{bottom:572.445000px;}
.y38{bottom:573.195000px;}
.y5b{bottom:577.320000px;}
.y10a{bottom:579.945000px;}
.y1c{bottom:580.320000px;}
.ybc{bottom:581.445000px;}
.ya2{bottom:583.320000px;}
.ye5{bottom:584.445000px;}
.y37{bottom:593.445000px;}
.y109{bottom:599.820000px;}
.ybb{bottom:601.695000px;}
.ya1{bottom:603.195000px;}
.ye4{bottom:604.320000px;}
.y1b{bottom:607.695000px;}
.y36{bottom:613.320000px;}
.y5a{bottom:617.070000px;}
.y108{bottom:620.070000px;}
.yba{bottom:621.945000px;}
.ya0{bottom:623.445000px;}
.ye3{bottom:624.570000px;}
.y35{bottom:633.570000px;}
.y1a{bottom:634.695000px;}
.y59{bottom:637.320000px;}
.y107{bottom:640.695000px;}
.y9f{bottom:643.695000px;}
.y34{bottom:653.820000px;}
.y116{bottom:654.570000px;}
.y58{bottom:657.570000px;}
.y106{bottom:660.945000px;}
.y19{bottom:662.070000px;}
.y9e{bottom:663.945000px;}
.y83{bottom:673.695000px;}
.y33{bottom:674.070000px;}
.y105{bottom:681.195000px;}
.y9d{bottom:683.820000px;}
.y57{bottom:686.820000px;}
.ye2{bottom:693.600000px;}
.y32{bottom:693.975000px;}
.y115{bottom:695.475000px;}
.y18{bottom:698.475000px;}
.y104{bottom:701.850000px;}
.y9c{bottom:704.100000px;}
.y82{bottom:713.475000px;}
.ye1{bottom:713.850000px;}
.y31{bottom:714.225000px;}
.y103{bottom:722.100000px;}
.y9b{bottom:724.350000px;}
.y56{bottom:726.600000px;}
.y81{bottom:733.725000px;}
.ye0{bottom:734.100000px;}
.y30{bottom:734.475000px;}
.y17{bottom:734.850000px;}
.y114{bottom:736.350000px;}
.y102{bottom:742.350000px;}
.y9a{bottom:744.225000px;}
.y55{bottom:746.850000px;}
.y80{bottom:753.600000px;}
.ydf{bottom:753.975000px;}
.y2f{bottom:754.350000px;}
.y101{bottom:762.975000px;}
.y99{bottom:764.475000px;}
.y54{bottom:766.725000px;}
.y16{bottom:771.225000px;}
.y7f{bottom:773.850000px;}
.y2e{bottom:774.600000px;}
.y112{bottom:777.600000px;}
.y100{bottom:782.850000px;}
.yde{bottom:783.600000px;}
.y98{bottom:784.725000px;}
.y53{bottom:786.975000px;}
.y7e{bottom:794.100000px;}
.y2d{bottom:794.850000px;}
.yff{bottom:803.100000px;}
.y97{bottom:804.975000px;}
.y52{bottom:807.225000px;}
.y15{bottom:810.975000px;}
.y7d{bottom:813.975000px;}
.y2c{bottom:815.100000px;}
.y110{bottom:818.505000px;}
.ydd{bottom:823.380000px;}
.y96{bottom:824.880000px;}
.y51{bottom:827.145000px;}
.y7c{bottom:834.255000px;}
.y2b{bottom:835.005000px;}
.y14{bottom:838.380000px;}
.ydc{bottom:843.255000px;}
.yfe{bottom:844.005000px;}
.y95{bottom:845.130000px;}
.y50{bottom:847.380000px;}
.y7b{bottom:854.505000px;}
.y2a{bottom:855.255000px;}
.y10e{bottom:859.755000px;}
.ydb{bottom:863.505000px;}
.yfd{bottom:864.255000px;}
.y94{bottom:865.380000px;}
.y4f{bottom:873.270000px;}
.y7a{bottom:874.380000px;}
.y29{bottom:875.505000px;}
.y13{bottom:877.380000px;}
.yda{bottom:883.755000px;}
.yfc{bottom:884.130000px;}
.y93{bottom:885.255000px;}
.y79{bottom:894.630000px;}
.y28{bottom:895.380000px;}
.y12{bottom:898.380000px;}
.y10c{bottom:900.645000px;}
.yd9{bottom:904.005000px;}
.yfb{bottom:904.380000px;}
.y92{bottom:905.505000px;}
.y78{bottom:914.880000px;}
.y27{bottom:915.630000px;}
.ye{bottom:919.395000px;}
.yd8{bottom:923.880000px;}
.yfa{bottom:925.005000px;}
.y91{bottom:925.755000px;}
.y77{bottom:935.130000px;}
.y26{bottom:935.880000px;}
.yd7{bottom:944.880000px;}
.yf9{bottom:945.255000px;}
.y90{bottom:946.050000px;}
.y76{bottom:955.050000px;}
.y25{bottom:956.175000px;}
.yd{bottom:960.300000px;}
.yd6{bottom:965.550000px;}
.y8f{bottom:965.925000px;}
.yc{bottom:981.300000px;}
.y24{bottom:982.050000px;}
.y75{bottom:984.675000px;}
.yd5{bottom:985.800000px;}
.y8e{bottom:986.175000px;}
.ya{bottom:1006.425000px;}
.y6{bottom:1022.925000px;}
.y9{bottom:1043.925000px;}
.y5{bottom:1064.925000px;}
.y1{bottom:1085.580000px;}
.h4{height:19.912500px;}
.h8{height:20.250000px;}
.h10{height:22.500000px;}
.hf{height:22.537500px;}
.h14{height:40.125000px;}
.h9{height:40.147500px;}
.h16{height:40.162500px;}
.h15{height:40.500000px;}
.h17{height:40.537500px;}
.h11{height:43.500000px;}
.h12{height:43.537500px;}
.hd{height:48.281250px;}
.h13{height:60.397500px;}
.hc{height:61.435547px;}
.h6{height:61.912500px;}
.h2{height:65.645508px;}
.h5{height:67.579102px;}
.hb{height:71.613281px;}
.he{height:73.722656px;}
.ha{height:86.009766px;}
.h7{height:95.484375px;}
.h3{height:107.419922px;}
.h1{height:123.412500px;}
.h0{height:1263.000000px;}
.w12{width:64.537500px;}
.w13{width:70.537500px;}
.w10{width:73.162500px;}
.w7{width:79.912500px;}
.w5{width:116.287500px;}
.w4{width:145.575000px;}
.wf{width:156.075000px;}
.w9{width:181.575000px;}
.wa{width:193.200000px;}
.w8{width:222.105000px;}
.wd{width:246.105000px;}
.wb{width:249.105000px;}
.w2{width:262.620000px;}
.w11{width:309.495000px;}
.we{width:378.150000px;}
.wc{width:385.275000px;}
.w3{width:432.570000px;}
.w6{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.125000px;}
.x2{left:7.500000px;}
.x12{left:50.250000px;}
.x13{left:62.670000px;}
.x10{left:82.170000px;}
.x1{left:107.287500px;}
.xc{left:123.037487px;}
.xe{left:129.412487px;}
.x19{left:133.574987px;}
.x6{left:143.700000px;}
.x7{left:148.949987px;}
.x11{left:156.780000px;}
.xf{left:160.575000px;}
.x1a{left:164.324987px;}
.xd{left:175.949987px;}
.x9{left:187.950000px;}
.x16{left:202.949987px;}
.x15{left:210.060000px;}
.x17{left:229.994987px;}
.x4{left:253.620000px;}
.x1b{left:263.745000px;}
.x1c{left:337.650000px;}
.x3{left:370.650000px;}
.x14{left:407.820000px;}
.xa{left:410.820000px;}
.xb{left:593.145000px;}
.x1d{left:647.895000px;}
.x1e{left:713.175000px;}
.x8{left:723.299987px;}
.x18{left:829.829987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.560000pt;}
.lsa{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.250667pt;}
.ls1a{letter-spacing:-0.133333pt;}
.ls1f{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.074667pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.250667pt;}
.ls2{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.346667pt;}
.ls5{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.437333pt;}
.ls13{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.501333pt;}
.ls7{letter-spacing:0.661333pt;}
.lsd{letter-spacing:0.730667pt;}
.ls1{letter-spacing:0.922667pt;}
.ls19{letter-spacing:1.072000pt;}
.ls3{letter-spacing:1.269333pt;}
.ls1e{letter-spacing:1.450667pt;}
.lsc{letter-spacing:4.074667pt;}
.ls18{letter-spacing:35.690667pt;}
.ls14{letter-spacing:45.008000pt;}
.ls17{letter-spacing:45.184000pt;}
.lsf{letter-spacing:53.024000pt;}
.ls16{letter-spacing:62.357333pt;}
.ls4{letter-spacing:86.042667pt;}
.wsa{word-spacing:-58.666667pt;}
.ws1{word-spacing:-22.357333pt;}
.ws0{word-spacing:-21.696000pt;}
.ws2{word-spacing:-21.376000pt;}
.ws6{word-spacing:-16.874667pt;}
.wsb{word-spacing:-13.989333pt;}
.wse{word-spacing:-13.605333pt;}
.ws3{word-spacing:-13.258667pt;}
.wsd{word-spacing:-13.125333pt;}
.ws4{word-spacing:-13.008000pt;}
.ws5{word-spacing:-12.848000pt;}
.ws7{word-spacing:-12.480000pt;}
.ws8{word-spacing:-11.946667pt;}
.wsc{word-spacing:-0.058667pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-10.592000pt;}
._8{margin-left:-8.778667pt;}
._7{margin-left:-4.426667pt;}
._4{margin-left:-3.082667pt;}
._a{margin-left:-2.053333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.440000pt;}
._2{width:2.485333pt;}
._11{width:3.621333pt;}
._b{width:4.533333pt;}
._12{width:5.728000pt;}
._1e{width:7.344000pt;}
._1d{width:8.816000pt;}
._d{width:9.813333pt;}
._c{width:11.029333pt;}
._13{width:12.192000pt;}
._17{width:14.373333pt;}
._14{width:15.493333pt;}
._f{width:16.421333pt;}
._e{width:17.520000pt;}
._10{width:18.778667pt;}
._6{width:21.893333pt;}
._15{width:23.173333pt;}
._16{width:24.464000pt;}
._20{width:40.400000pt;}
._3{width:65.040000pt;}
._1c{width:99.696000pt;}
._1f{width:109.104000pt;}
._18{width:118.645333pt;}
._21{width:137.541333pt;}
._1b{width:153.733333pt;}
._19{width:174.901333pt;}
._1a{width:176.181333pt;}
._9{width:755.141333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.653333pt;}
.y2{bottom:3.666667pt;}
.y69{bottom:4.986667pt;}
.y6e{bottom:5.000000pt;}
.y72{bottom:5.006667pt;}
.y66{bottom:5.666667pt;}
.y5d{bottom:6.000000pt;}
.y71{bottom:6.673333pt;}
.y8{bottom:7.000000pt;}
.yf{bottom:12.653333pt;}
.y10f{bottom:21.333333pt;}
.y10{bottom:21.653333pt;}
.y113{bottom:21.666667pt;}
.y111{bottom:21.680000pt;}
.y11c{bottom:21.693333pt;}
.y68{bottom:24.333333pt;}
.y70{bottom:24.366667pt;}
.y7{bottom:33.000000pt;}
.y10d{bottom:39.653333pt;}
.yb{bottom:50.700000pt;}
.y4{bottom:57.000000pt;}
.yd4{bottom:82.700000pt;}
.y3{bottom:86.333333pt;}
.yb9{bottom:88.700000pt;}
.y4e{bottom:93.700000pt;}
.y8d{bottom:95.366667pt;}
.y74{bottom:99.366667pt;}
.yd3{bottom:100.700000pt;}
.yb8{bottom:106.366667pt;}
.y4d{bottom:111.366667pt;}
.y8c{bottom:113.366667pt;}
.y73{bottom:117.033333pt;}
.yd2{bottom:119.033333pt;}
.yb7{bottom:124.366667pt;}
.yf8{bottom:126.700000pt;}
.y4c{bottom:130.033333pt;}
.y8b{bottom:131.033333pt;}
.y6f{bottom:132.366667pt;}
.yd1{bottom:137.040000pt;}
.yb6{bottom:142.373333pt;}
.y4b{bottom:148.373333pt;}
.y8a{bottom:149.040000pt;}
.yf7{bottom:151.373333pt;}
.yd0{bottom:155.400000pt;}
.yb5{bottom:160.066667pt;}
.y4a{bottom:166.733333pt;}
.y89{bottom:167.066667pt;}
.y6d{bottom:172.066667pt;}
.ycf{bottom:173.400000pt;}
.yb4{bottom:178.066667pt;}
.y88{bottom:184.733333pt;}
.y49{bottom:185.066667pt;}
.yf6{bottom:189.400000pt;}
.yce{bottom:193.066667pt;}
.yb3{bottom:196.066667pt;}
.y87{bottom:202.733333pt;}
.y48{bottom:203.066667pt;}
.yf5{bottom:207.066667pt;}
.ycd{bottom:211.066667pt;}
.y6c{bottom:211.733333pt;}
.yb2{bottom:214.066667pt;}
.y86{bottom:220.733333pt;}
.y47{bottom:221.066667pt;}
.yf4{bottom:225.066667pt;}
.ycc{bottom:229.066667pt;}
.yb1{bottom:231.733333pt;}
.y6b{bottom:232.733333pt;}
.y85{bottom:238.733333pt;}
.y46{bottom:239.400000pt;}
.yf3{bottom:243.066667pt;}
.ycb{bottom:247.066667pt;}
.yb0{bottom:249.733333pt;}
.y84{bottom:252.733333pt;}
.y6a{bottom:253.733333pt;}
.y45{bottom:257.733333pt;}
.yf2{bottom:260.733333pt;}
.yca{bottom:264.733333pt;}
.yaf{bottom:267.733333pt;}
.y67{bottom:274.773333pt;}
.y44{bottom:276.426667pt;}
.yf1{bottom:278.773333pt;}
.yc9{bottom:282.760000pt;}
.yae{bottom:285.426667pt;}
.y11e{bottom:289.773333pt;}
.y43{bottom:294.760000pt;}
.yf0{bottom:296.773333pt;}
.yc8{bottom:300.760000pt;}
.yad{bottom:303.426667pt;}
.y42{bottom:312.426667pt;}
.y65{bottom:314.440000pt;}
.yc7{bottom:318.426667pt;}
.yac{bottom:321.426667pt;}
.yef{bottom:322.773333pt;}
.y11d{bottom:326.440000pt;}
.y23{bottom:328.106667pt;}
.y41{bottom:330.426667pt;}
.yc6{bottom:336.426667pt;}
.y64{bottom:339.093333pt;}
.yab{bottom:339.426667pt;}
.y40{bottom:348.426667pt;}
.y22{bottom:353.773333pt;}
.y63{bottom:354.106667pt;}
.yc5{bottom:354.426667pt;}
.yaa{bottom:357.106667pt;}
.yee{bottom:358.106667pt;}
.y11b{bottom:362.773333pt;}
.y3f{bottom:366.106667pt;}
.yc4{bottom:372.440000pt;}
.y62{bottom:375.106667pt;}
.yed{bottom:376.106667pt;}
.y3e{bottom:384.133333pt;}
.y21{bottom:386.466667pt;}
.yc3{bottom:390.133333pt;}
.ya9{bottom:393.133333pt;}
.yec{bottom:394.133333pt;}
.y61{bottom:396.133333pt;}
.y11a{bottom:399.133333pt;}
.y3d{bottom:402.133333pt;}
.yc2{bottom:408.133333pt;}
.ya8{bottom:410.800000pt;}
.yeb{bottom:411.800000pt;}
.y60{bottom:417.133333pt;}
.y20{bottom:418.800000pt;}
.y3c{bottom:420.133333pt;}
.yc1{bottom:426.133333pt;}
.ya7{bottom:428.800000pt;}
.yea{bottom:429.800000pt;}
.y119{bottom:435.800000pt;}
.y3b{bottom:437.800000pt;}
.y5f{bottom:438.133333pt;}
.y1f{bottom:442.800000pt;}
.yc0{bottom:443.800000pt;}
.ya6{bottom:446.800000pt;}
.ye9{bottom:447.800000pt;}
.y3a{bottom:455.800000pt;}
.y5e{bottom:459.133333pt;}
.ybf{bottom:463.133333pt;}
.ya5{bottom:464.800000pt;}
.ye8{bottom:465.466667pt;}
.y1e{bottom:467.133333pt;}
.y118{bottom:472.133333pt;}
.y39{bottom:473.800000pt;}
.y5c{bottom:480.133333pt;}
.ybe{bottom:481.133333pt;}
.ya4{bottom:482.466667pt;}
.ye7{bottom:483.466667pt;}
.y1d{bottom:491.466667pt;}
.y10b{bottom:497.466667pt;}
.ybd{bottom:499.173333pt;}
.ya3{bottom:500.506667pt;}
.ye6{bottom:501.506667pt;}
.y117{bottom:508.840000pt;}
.y38{bottom:509.506667pt;}
.y5b{bottom:513.173333pt;}
.y10a{bottom:515.506667pt;}
.y1c{bottom:515.840000pt;}
.ybc{bottom:516.840000pt;}
.ya2{bottom:518.506667pt;}
.ye5{bottom:519.506667pt;}
.y37{bottom:527.506667pt;}
.y109{bottom:533.173333pt;}
.ybb{bottom:534.840000pt;}
.ya1{bottom:536.173333pt;}
.ye4{bottom:537.173333pt;}
.y1b{bottom:540.173333pt;}
.y36{bottom:545.173333pt;}
.y5a{bottom:548.506667pt;}
.y108{bottom:551.173333pt;}
.yba{bottom:552.840000pt;}
.ya0{bottom:554.173333pt;}
.ye3{bottom:555.173333pt;}
.y35{bottom:563.173333pt;}
.y1a{bottom:564.173333pt;}
.y59{bottom:566.506667pt;}
.y107{bottom:569.506667pt;}
.y9f{bottom:572.173333pt;}
.y34{bottom:581.173333pt;}
.y116{bottom:581.840000pt;}
.y58{bottom:584.506667pt;}
.y106{bottom:587.506667pt;}
.y19{bottom:588.506667pt;}
.y9e{bottom:590.173333pt;}
.y83{bottom:598.840000pt;}
.y33{bottom:599.173333pt;}
.y105{bottom:605.506667pt;}
.y9d{bottom:607.840000pt;}
.y57{bottom:610.506667pt;}
.ye2{bottom:616.533333pt;}
.y32{bottom:616.866667pt;}
.y115{bottom:618.200000pt;}
.y18{bottom:620.866667pt;}
.y104{bottom:623.866667pt;}
.y9c{bottom:625.866667pt;}
.y82{bottom:634.200000pt;}
.ye1{bottom:634.533333pt;}
.y31{bottom:634.866667pt;}
.y103{bottom:641.866667pt;}
.y9b{bottom:643.866667pt;}
.y56{bottom:645.866667pt;}
.y81{bottom:652.200000pt;}
.ye0{bottom:652.533333pt;}
.y30{bottom:652.866667pt;}
.y17{bottom:653.200000pt;}
.y114{bottom:654.533333pt;}
.y102{bottom:659.866667pt;}
.y9a{bottom:661.533333pt;}
.y55{bottom:663.866667pt;}
.y80{bottom:669.866667pt;}
.ydf{bottom:670.200000pt;}
.y2f{bottom:670.533333pt;}
.y101{bottom:678.200000pt;}
.y99{bottom:679.533333pt;}
.y54{bottom:681.533333pt;}
.y16{bottom:685.533333pt;}
.y7f{bottom:687.866667pt;}
.y2e{bottom:688.533333pt;}
.y112{bottom:691.200000pt;}
.y100{bottom:695.866667pt;}
.yde{bottom:696.533333pt;}
.y98{bottom:697.533333pt;}
.y53{bottom:699.533333pt;}
.y7e{bottom:705.866667pt;}
.y2d{bottom:706.533333pt;}
.yff{bottom:713.866667pt;}
.y97{bottom:715.533333pt;}
.y52{bottom:717.533333pt;}
.y15{bottom:720.866667pt;}
.y7d{bottom:723.533333pt;}
.y2c{bottom:724.533333pt;}
.y110{bottom:727.560000pt;}
.ydd{bottom:731.893333pt;}
.y96{bottom:733.226667pt;}
.y51{bottom:735.240000pt;}
.y7c{bottom:741.560000pt;}
.y2b{bottom:742.226667pt;}
.y14{bottom:745.226667pt;}
.ydc{bottom:749.560000pt;}
.yfe{bottom:750.226667pt;}
.y95{bottom:751.226667pt;}
.y50{bottom:753.226667pt;}
.y7b{bottom:759.560000pt;}
.y2a{bottom:760.226667pt;}
.y10e{bottom:764.226667pt;}
.ydb{bottom:767.560000pt;}
.yfd{bottom:768.226667pt;}
.y94{bottom:769.226667pt;}
.y4f{bottom:776.240000pt;}
.y7a{bottom:777.226667pt;}
.y29{bottom:778.226667pt;}
.y13{bottom:779.893333pt;}
.yda{bottom:785.560000pt;}
.yfc{bottom:785.893333pt;}
.y93{bottom:786.893333pt;}
.y79{bottom:795.226667pt;}
.y28{bottom:795.893333pt;}
.y12{bottom:798.560000pt;}
.y10c{bottom:800.573333pt;}
.yd9{bottom:803.560000pt;}
.yfb{bottom:803.893333pt;}
.y92{bottom:804.893333pt;}
.y78{bottom:813.226667pt;}
.y27{bottom:813.893333pt;}
.ye{bottom:817.240000pt;}
.yd8{bottom:821.226667pt;}
.yfa{bottom:822.226667pt;}
.y91{bottom:822.893333pt;}
.y77{bottom:831.226667pt;}
.y26{bottom:831.893333pt;}
.yd7{bottom:839.893333pt;}
.yf9{bottom:840.226667pt;}
.y90{bottom:840.933333pt;}
.y76{bottom:848.933333pt;}
.y25{bottom:849.933333pt;}
.yd{bottom:853.600000pt;}
.yd6{bottom:858.266667pt;}
.y8f{bottom:858.600000pt;}
.yc{bottom:872.266667pt;}
.y24{bottom:872.933333pt;}
.y75{bottom:875.266667pt;}
.yd5{bottom:876.266667pt;}
.y8e{bottom:876.600000pt;}
.ya{bottom:894.600000pt;}
.y6{bottom:909.266667pt;}
.y9{bottom:927.933333pt;}
.y5{bottom:946.600000pt;}
.y1{bottom:964.960000pt;}
.h4{height:17.700000pt;}
.h8{height:18.000000pt;}
.h10{height:20.000000pt;}
.hf{height:20.033333pt;}
.h14{height:35.666667pt;}
.h9{height:35.686667pt;}
.h16{height:35.700000pt;}
.h15{height:36.000000pt;}
.h17{height:36.033333pt;}
.h11{height:38.666667pt;}
.h12{height:38.700000pt;}
.hd{height:42.916667pt;}
.h13{height:53.686667pt;}
.hc{height:54.609375pt;}
.h6{height:55.033333pt;}
.h2{height:58.351562pt;}
.h5{height:60.070312pt;}
.hb{height:63.656250pt;}
.he{height:65.531250pt;}
.ha{height:76.453125pt;}
.h7{height:84.875000pt;}
.h3{height:95.484375pt;}
.h1{height:109.700000pt;}
.h0{height:1122.666667pt;}
.w12{width:57.366667pt;}
.w13{width:62.700000pt;}
.w10{width:65.033333pt;}
.w7{width:71.033333pt;}
.w5{width:103.366667pt;}
.w4{width:129.400000pt;}
.wf{width:138.733333pt;}
.w9{width:161.400000pt;}
.wa{width:171.733333pt;}
.w8{width:197.426667pt;}
.wd{width:218.760000pt;}
.wb{width:221.426667pt;}
.w2{width:233.440000pt;}
.w11{width:275.106667pt;}
.we{width:336.133333pt;}
.wc{width:342.466667pt;}
.w3{width:384.506667pt;}
.w6{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.000000pt;}
.x2{left:6.666667pt;}
.x12{left:44.666667pt;}
.x13{left:55.706667pt;}
.x10{left:73.040000pt;}
.x1{left:95.366667pt;}
.xc{left:109.366655pt;}
.xe{left:115.033322pt;}
.x19{left:118.733322pt;}
.x6{left:127.733333pt;}
.x7{left:132.399988pt;}
.x11{left:139.360000pt;}
.xf{left:142.733333pt;}
.x1a{left:146.066655pt;}
.xd{left:156.399988pt;}
.x9{left:167.066667pt;}
.x16{left:180.399988pt;}
.x15{left:186.720000pt;}
.x17{left:204.439988pt;}
.x4{left:225.440000pt;}
.x1b{left:234.440000pt;}
.x1c{left:300.133333pt;}
.x3{left:329.466667pt;}
.x14{left:362.506667pt;}
.xa{left:365.173333pt;}
.xb{left:527.240000pt;}
.x1d{left:575.906667pt;}
.x1e{left:633.933333pt;}
.x8{left:642.933322pt;}
.x18{left:737.626655pt;}
}




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