
    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_47bc2200683bf3e24299c944.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29a8b986c3a96c1687868e18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_286b03bbedc1315746a1d4b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_585162a4a000127e3bef2a77.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_14341b4ac4a2847a30649927.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_6d67364216fe79edb13e7a6b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_21402ad09088dec653f6ec6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_ccc8ed834c5b1bb124e3cf7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.864000px;}
.lsc{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.600000px;}
.ls11{letter-spacing:33.960000px;}
.ls7{letter-spacing:143.976000px;}
.lsa{letter-spacing:172.776000px;}
.ls1{letter-spacing:197.976000px;}
.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;}
}
.ws4{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.wsb{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.819680px;}
.ws2{word-spacing:-16.613280px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:0.000000px;}
._2b{margin-left:-8.921280px;}
._5{margin-left:-7.370880px;}
._0{margin-left:-6.094080px;}
._15{margin-left:-5.006880px;}
._6{margin-left:-3.737520px;}
._2{margin-left:-2.205120px;}
._1{margin-left:-1.173120px;}
._3{width:1.152000px;}
._11{width:2.179200px;}
._7{width:3.364800px;}
._a{width:4.374240px;}
._10{width:5.933280px;}
._13{width:7.112160px;}
._c{width:8.976000px;}
._8{width:10.584000px;}
._9{width:12.429120px;}
._12{width:14.352000px;}
._b{width:15.672000px;}
._d{width:16.704000px;}
._4{width:18.000000px;}
._14{width:19.584000px;}
._e{width:20.952000px;}
._f{width:22.176000px;}
._18{width:23.229120px;}
._1d{width:24.230400px;}
._16{width:25.293120px;}
._4c{width:26.342160px;}
._17{width:27.792000px;}
._3d{width:28.994640px;}
._19{width:30.024000px;}
._38{width:31.032000px;}
._4d{width:32.976000px;}
._1e{width:34.200000px;}
._1f{width:35.712000px;}
._2d{width:38.257920px;}
._29{width:41.400000px;}
._2c{width:43.750080px;}
._3a{width:47.232000px;}
._3b{width:48.729120px;}
._1c{width:49.896000px;}
._3c{width:52.776000px;}
._48{width:54.144000px;}
._2e{width:55.701120px;}
._24{width:58.629120px;}
._50{width:63.216000px;}
._40{width:64.584000px;}
._4f{width:65.689920px;}
._4e{width:66.862080px;}
._27{width:67.968000px;}
._44{width:69.696000px;}
._22{width:71.064000px;}
._52{width:73.440000px;}
._53{width:75.456000px;}
._21{width:83.955840px;}
._20{width:89.830080px;}
._2f{width:93.909120px;}
._32{width:101.422080px;}
._25{width:106.488000px;}
._33{width:111.168000px;}
._39{width:112.269120px;}
._49{width:114.948000px;}
._41{width:116.028000px;}
._26{width:117.864000px;}
._2a{width:121.392000px;}
._35{width:123.552000px;}
._3f{width:124.668000px;}
._28{width:129.888000px;}
._36{width:135.720000px;}
._37{width:147.312000px;}
._46{width:153.411840px;}
._47{width:155.413920px;}
._45{width:156.862080px;}
._51{width:158.055840px;}
._34{width:161.424000px;}
._23{width:176.184000px;}
._3e{width:177.192000px;}
._31{width:179.352000px;}
._4a{width:215.172000px;}
._4b{width:216.552000px;}
._43{width:223.731360px;}
._42{width:226.008000px;}
._30{width:258.192000px;}
._1a{width:997.992000px;}
._1b{width:1004.472000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:4.140000px;}
.yc5{bottom:4.500000px;}
.yc0{bottom:24.840000px;}
.yc4{bottom:25.200000px;}
.ybf{bottom:45.540000px;}
.yc3{bottom:45.900000px;}
.y5{bottom:58.716000px;}
.y8a{bottom:66.585000px;}
.y4{bottom:79.416000px;}
.ya0{bottom:87.150000px;}
.y89{bottom:87.285000px;}
.y3{bottom:97.956000px;}
.y9f{bottom:107.850000px;}
.y91{bottom:108.180000px;}
.y99{bottom:109.110000px;}
.ycf{bottom:122.076000px;}
.y9c{bottom:128.190000px;}
.y4d{bottom:128.376000px;}
.y9e{bottom:128.550000px;}
.yf9{bottom:128.556000px;}
.y90{bottom:128.880000px;}
.y95{bottom:129.450000px;}
.y98{bottom:129.810000px;}
.ydc{bottom:135.036000px;}
.y62{bottom:140.256000px;}
.yea{bottom:140.436000px;}
.yba{bottom:144.396000px;}
.yce{bottom:146.196000px;}
.y9b{bottom:148.890000px;}
.y8d{bottom:149.220000px;}
.y9d{bottom:149.250000px;}
.y8f{bottom:149.580000px;}
.y94{bottom:150.150000px;}
.y97{bottom:150.510000px;}
.y4c{bottom:152.310000px;}
.yf2{bottom:152.490000px;}
.ydb{bottom:158.790000px;}
.y88{bottom:160.065000px;}
.yae{bottom:161.490000px;}
.y61{bottom:164.190000px;}
.y27{bottom:167.250000px;}
.yb9{bottom:168.330000px;}
.y8c{bottom:169.950000px;}
.ycd{bottom:170.130000px;}
.y8e{bottom:170.310000px;}
.y93{bottom:170.850000px;}
.y96{bottom:171.210000px;}
.y4b{bottom:176.250000px;}
.ye9{bottom:176.430000px;}
.yda{bottom:182.730000px;}
.yad{bottom:185.430000px;}
.yff{bottom:188.310000px;}
.y26{bottom:191.190000px;}
.yb8{bottom:192.450000px;}
.ye8{bottom:200.190000px;}
.y4a{bottom:200.370000px;}
.ycc{bottom:206.310000px;}
.yd9{bottom:206.850000px;}
.yac{bottom:209.370000px;}
.yfe{bottom:212.250000px;}
.y76{bottom:212.430000px;}
.y25{bottom:215.310000px;}
.y49{bottom:224.310000px;}
.yb7{bottom:228.450000px;}
.ycb{bottom:230.070000px;}
.yd8{bottom:230.790000px;}
.yab{bottom:233.310000px;}
.y75{bottom:236.190000px;}
.yfd{bottom:236.370000px;}
.y24{bottom:239.250000px;}
.y48{bottom:248.250000px;}
.yb6{bottom:252.390000px;}
.yaa{bottom:257.250000px;}
.y74{bottom:260.130000px;}
.yfc{bottom:260.310000px;}
.y23{bottom:263.190000px;}
.yca{bottom:265.890000px;}
.yd7{bottom:266.970000px;}
.y60{bottom:272.190000px;}
.yfb{bottom:284.250000px;}
.y47{bottom:284.430000px;}
.y22{bottom:287.130000px;}
.yb5{bottom:288.030000px;}
.ya9{bottom:293.430000px;}
.y5f{bottom:296.130000px;}
.y73{bottom:296.310000px;}
.yd6{bottom:302.430000px;}
.yf8{bottom:308.010000px;}
.y46{bottom:308.190000px;}
.y21{bottom:311.115000px;}
.ya8{bottom:317.235000px;}
.yc9{bottom:319.215000px;}
.y72{bottom:320.115000px;}
.y101{bottom:320.295000px;}
.y87{bottom:331.815000px;}
.y45{bottom:332.175000px;}
.y5e{bottom:332.355000px;}
.y20{bottom:335.235000px;}
.yd5{bottom:338.835000px;}
.ya7{bottom:341.175000px;}
.y71{bottom:344.055000px;}
.ye7{bottom:344.235000px;}
.yf7{bottom:344.415000px;}
.y44{bottom:356.115000px;}
.yfa{bottom:356.295000px;}
.y1f{bottom:359.175000px;}
.ya6{bottom:365.295000px;}
.yf6{bottom:368.175000px;}
.y86{bottom:368.355000px;}
.yd4{bottom:370.515000px;}
.y5d{bottom:380.055000px;}
.y43{bottom:380.235000px;}
.ye6{bottom:380.415000px;}
.yc8{bottom:382.035000px;}
.y1e{bottom:383.115000px;}
.ya5{bottom:389.235000px;}
.y85{bottom:392.115000px;}
.y70{bottom:403.995000px;}
.y42{bottom:404.175000px;}
.y84{bottom:416.055000px;}
.y100{bottom:416.235000px;}
.y1d{bottom:418.935000px;}
.ya4{bottom:425.415000px;}
.y41{bottom:428.115000px;}
.y83{bottom:439.995000px;}
.y6f{bottom:440.175000px;}
.yc7{bottom:444.855000px;}
.ya3{bottom:449.175000px;}
.y40{bottom:452.055000px;}
.y1c{bottom:455.295000px;}
.y82{bottom:464.115000px;}
.y3f{bottom:475.995000px;}
.y6e{bottom:476.175000px;}
.ya2{bottom:484.995000px;}
.yf1{bottom:488.055000px;}
.y1b{bottom:491.295000px;}
.ye5{bottom:500.115000px;}
.y81{bottom:500.295000px;}
.yc6{bottom:507.675000px;}
.yf0{bottom:511.995000px;}
.y3e{bottom:512.175000px;}
.y1a{bottom:515.055000px;}
.ya1{bottom:520.995000px;}
.y80{bottom:524.055000px;}
.y5c{bottom:535.935000px;}
.y3d{bottom:536.115000px;}
.y9a{bottom:538.275000px;}
.y19{bottom:538.995000px;}
.y7f{bottom:547.995000px;}
.yef{bottom:548.175000px;}
.y6d{bottom:559.875000px;}
.y3c{bottom:560.055000px;}
.y18{bottom:562.965000px;}
.yc2{bottom:570.525000px;}
.y5b{bottom:571.785000px;}
.y7e{bottom:571.965000px;}
.yf5{bottom:572.145000px;}
.y3b{bottom:584.025000px;}
.ye4{bottom:584.205000px;}
.y17{bottom:586.905000px;}
.y7d{bottom:595.905000px;}
.y6c{bottom:596.085000px;}
.y3a{bottom:607.965000px;}
.y5a{bottom:608.145000px;}
.y16{bottom:611.025000px;}
.y6b{bottom:619.845000px;}
.y7c{bottom:620.025000px;}
.y39{bottom:631.905000px;}
.ybe{bottom:633.345000px;}
.y15{bottom:634.965000px;}
.yee{bottom:643.965000px;}
.ye3{bottom:644.145000px;}
.y59{bottom:655.845000px;}
.y38{bottom:656.025000px;}
.y14{bottom:658.905000px;}
.ye2{bottom:667.905000px;}
.y6a{bottom:679.785000px;}
.y37{bottom:679.965000px;}
.y13{bottom:682.845000px;}
.ye1{bottom:691.845000px;}
.y103{bottom:692.025000px;}
.y36{bottom:703.905000px;}
.yed{bottom:704.085000px;}
.y92{bottom:704.640000px;}
.y12{bottom:706.785000px;}
.ye0{bottom:715.785000px;}
.y69{bottom:715.965000px;}
.y58{bottom:727.845000px;}
.y102{bottom:728.025000px;}
.y11{bottom:730.905000px;}
.ybd{bottom:739.545000px;}
.y68{bottom:739.725000px;}
.ydf{bottom:739.905000px;}
.y35{bottom:740.085000px;}
.y57{bottom:751.785000px;}
.yf4{bottom:751.965000px;}
.y10{bottom:754.845000px;}
.yd3{bottom:763.665000px;}
.y34{bottom:763.845000px;}
.y7b{bottom:775.725000px;}
.y67{bottom:775.905000px;}
.yf{bottom:778.785000px;}
.y33{bottom:787.785000px;}
.y56{bottom:787.965000px;}
.yd2{bottom:799.665000px;}
.y66{bottom:799.845000px;}
.ye{bottom:802.725000px;}
.y32{bottom:811.770000px;}
.ybc{bottom:823.830000px;}
.y55{bottom:824.010000px;}
.yd{bottom:826.710000px;}
.yd1{bottom:835.530000px;}
.y31{bottom:835.890000px;}
.yde{bottom:847.590000px;}
.y54{bottom:847.770000px;}
.yc{bottom:850.830000px;}
.y30{bottom:859.830000px;}
.yd0{bottom:871.530000px;}
.y53{bottom:871.710000px;}
.yb{bottom:874.770000px;}
.yb4{bottom:883.410000px;}
.y2f{bottom:883.770000px;}
.ydd{bottom:883.950000px;}
.y8b{bottom:892.770000px;}
.y7a{bottom:895.470000px;}
.y52{bottom:895.650000px;}
.y65{bottom:895.830000px;}
.ya{bottom:898.710000px;}
.y2e{bottom:907.710000px;}
.ybb{bottom:907.890000px;}
.yb3{bottom:919.590000px;}
.y51{bottom:919.770000px;}
.yec{bottom:919.950000px;}
.y2d{bottom:931.650000px;}
.y79{bottom:931.830000px;}
.y9{bottom:933.630000px;}
.y50{bottom:943.710000px;}
.yb2{bottom:955.590000px;}
.y2c{bottom:955.770000px;}
.y64{bottom:955.950000px;}
.y8{bottom:966.390000px;}
.y4f{bottom:967.650000px;}
.yf3{bottom:967.830000px;}
.y2b{bottom:979.710000px;}
.yeb{bottom:991.590000px;}
.yb1{bottom:991.770000px;}
.y63{bottom:1003.290000px;}
.y4e{bottom:1003.470000px;}
.y2a{bottom:1003.650000px;}
.yb0{bottom:1015.710000px;}
.y7{bottom:1016.610000px;}
.y78{bottom:1027.590000px;}
.yaf{bottom:1039.650000px;}
.y29{bottom:1039.830000px;}
.y6{bottom:1057.650000px;}
.y77{bottom:1063.440000px;}
.y28{bottom:1063.620000px;}
.y2{bottom:1085.940000px;}
.y1{bottom:1118.700000px;}
.h8{height:50.273438px;}
.h7{height:50.800781px;}
.hb{height:59.343750px;}
.h12{height:62.085000px;}
.h10{height:62.100000px;}
.h11{height:62.130000px;}
.h5{height:62.184375px;}
.h6{height:65.958750px;}
.ha{height:70.664062px;}
.h1{height:71.613281px;}
.h9{height:72.562500px;}
.h2{height:73.722656px;}
.h13{height:74.004654px;}
.h3{height:74.953125px;}
.h4{height:82.676953px;}
.hc{height:103.845000px;}
.hf{height:165.450000px;}
.hd{height:186.510000px;}
.he{height:187.395000px;}
.h0{height:1188.000000px;}
.wa{width:100.425000px;}
.w2{width:100.461000px;}
.w5{width:115.401000px;}
.w1{width:123.465000px;}
.w7{width:132.681000px;}
.w3{width:133.056000px;}
.w4{width:138.585000px;}
.w9{width:149.421000px;}
.w6{width:154.791000px;}
.w8{width:160.410000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.725000px;}
.x2{left:108.036000px;}
.x12{left:135.036000px;}
.x1{left:141.156000px;}
.x6{left:152.145000px;}
.x13{left:162.030000px;}
.x4{left:173.730000px;}
.xc{left:264.285000px;}
.x8{left:276.345000px;}
.x11{left:280.650000px;}
.x5{left:343.155000px;}
.x3{left:372.495000px;}
.x9{left:377.535000px;}
.xd{left:397.695000px;}
.xa{left:511.320000px;}
.xe{left:558.840000px;}
.xb{left:650.640000px;}
.xf{left:708.990000px;}
.x10{left:765.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsc{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls11{letter-spacing:30.186667pt;}
.ls7{letter-spacing:127.978667pt;}
.lsa{letter-spacing:153.578667pt;}
.ls1{letter-spacing:175.978667pt;}
.ws4{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.wsb{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.950827pt;}
.ws2{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:0.000000pt;}
._2b{margin-left:-7.930027pt;}
._5{margin-left:-6.551893pt;}
._0{margin-left:-5.416960pt;}
._15{margin-left:-4.450560pt;}
._6{margin-left:-3.322240pt;}
._2{margin-left:-1.960107pt;}
._1{margin-left:-1.042773pt;}
._3{width:1.024000pt;}
._11{width:1.937067pt;}
._7{width:2.990933pt;}
._a{width:3.888213pt;}
._10{width:5.274027pt;}
._13{width:6.321920pt;}
._c{width:7.978667pt;}
._8{width:9.408000pt;}
._9{width:11.048107pt;}
._12{width:12.757333pt;}
._b{width:13.930667pt;}
._d{width:14.848000pt;}
._4{width:16.000000pt;}
._14{width:17.408000pt;}
._e{width:18.624000pt;}
._f{width:19.712000pt;}
._18{width:20.648107pt;}
._1d{width:21.538133pt;}
._16{width:22.482773pt;}
._4c{width:23.415253pt;}
._17{width:24.704000pt;}
._3d{width:25.773013pt;}
._19{width:26.688000pt;}
._38{width:27.584000pt;}
._4d{width:29.312000pt;}
._1e{width:30.400000pt;}
._1f{width:31.744000pt;}
._2d{width:34.007040pt;}
._29{width:36.800000pt;}
._2c{width:38.888960pt;}
._3a{width:41.984000pt;}
._3b{width:43.314773pt;}
._1c{width:44.352000pt;}
._3c{width:46.912000pt;}
._48{width:48.128000pt;}
._2e{width:49.512107pt;}
._24{width:52.114773pt;}
._50{width:56.192000pt;}
._40{width:57.408000pt;}
._4f{width:58.391040pt;}
._4e{width:59.432960pt;}
._27{width:60.416000pt;}
._44{width:61.952000pt;}
._22{width:63.168000pt;}
._52{width:65.280000pt;}
._53{width:67.072000pt;}
._21{width:74.627413pt;}
._20{width:79.848960pt;}
._2f{width:83.474773pt;}
._32{width:90.152960pt;}
._25{width:94.656000pt;}
._33{width:98.816000pt;}
._39{width:99.794773pt;}
._49{width:102.176000pt;}
._41{width:103.136000pt;}
._26{width:104.768000pt;}
._2a{width:107.904000pt;}
._35{width:109.824000pt;}
._3f{width:110.816000pt;}
._28{width:115.456000pt;}
._36{width:120.640000pt;}
._37{width:130.944000pt;}
._46{width:136.366080pt;}
._47{width:138.145707pt;}
._45{width:139.432960pt;}
._51{width:140.494080pt;}
._34{width:143.488000pt;}
._23{width:156.608000pt;}
._3e{width:157.504000pt;}
._31{width:159.424000pt;}
._4a{width:191.264000pt;}
._4b{width:192.490667pt;}
._43{width:198.872320pt;}
._42{width:200.896000pt;}
._30{width:229.504000pt;}
._1a{width:887.104000pt;}
._1b{width:892.864000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:3.680000pt;}
.yc5{bottom:4.000000pt;}
.yc0{bottom:22.080000pt;}
.yc4{bottom:22.400000pt;}
.ybf{bottom:40.480000pt;}
.yc3{bottom:40.800000pt;}
.y5{bottom:52.192000pt;}
.y8a{bottom:59.186667pt;}
.y4{bottom:70.592000pt;}
.ya0{bottom:77.466667pt;}
.y89{bottom:77.586667pt;}
.y3{bottom:87.072000pt;}
.y9f{bottom:95.866667pt;}
.y91{bottom:96.160000pt;}
.y99{bottom:96.986667pt;}
.ycf{bottom:108.512000pt;}
.y9c{bottom:113.946667pt;}
.y4d{bottom:114.112000pt;}
.y9e{bottom:114.266667pt;}
.yf9{bottom:114.272000pt;}
.y90{bottom:114.560000pt;}
.y95{bottom:115.066667pt;}
.y98{bottom:115.386667pt;}
.ydc{bottom:120.032000pt;}
.y62{bottom:124.672000pt;}
.yea{bottom:124.832000pt;}
.yba{bottom:128.352000pt;}
.yce{bottom:129.952000pt;}
.y9b{bottom:132.346667pt;}
.y8d{bottom:132.640000pt;}
.y9d{bottom:132.666667pt;}
.y8f{bottom:132.960000pt;}
.y94{bottom:133.466667pt;}
.y97{bottom:133.786667pt;}
.y4c{bottom:135.386667pt;}
.yf2{bottom:135.546667pt;}
.ydb{bottom:141.146667pt;}
.y88{bottom:142.280000pt;}
.yae{bottom:143.546667pt;}
.y61{bottom:145.946667pt;}
.y27{bottom:148.666667pt;}
.yb9{bottom:149.626667pt;}
.y8c{bottom:151.066667pt;}
.ycd{bottom:151.226667pt;}
.y8e{bottom:151.386667pt;}
.y93{bottom:151.866667pt;}
.y96{bottom:152.186667pt;}
.y4b{bottom:156.666667pt;}
.ye9{bottom:156.826667pt;}
.yda{bottom:162.426667pt;}
.yad{bottom:164.826667pt;}
.yff{bottom:167.386667pt;}
.y26{bottom:169.946667pt;}
.yb8{bottom:171.066667pt;}
.ye8{bottom:177.946667pt;}
.y4a{bottom:178.106667pt;}
.ycc{bottom:183.386667pt;}
.yd9{bottom:183.866667pt;}
.yac{bottom:186.106667pt;}
.yfe{bottom:188.666667pt;}
.y76{bottom:188.826667pt;}
.y25{bottom:191.386667pt;}
.y49{bottom:199.386667pt;}
.yb7{bottom:203.066667pt;}
.ycb{bottom:204.506667pt;}
.yd8{bottom:205.146667pt;}
.yab{bottom:207.386667pt;}
.y75{bottom:209.946667pt;}
.yfd{bottom:210.106667pt;}
.y24{bottom:212.666667pt;}
.y48{bottom:220.666667pt;}
.yb6{bottom:224.346667pt;}
.yaa{bottom:228.666667pt;}
.y74{bottom:231.226667pt;}
.yfc{bottom:231.386667pt;}
.y23{bottom:233.946667pt;}
.yca{bottom:236.346667pt;}
.yd7{bottom:237.306667pt;}
.y60{bottom:241.946667pt;}
.yfb{bottom:252.666667pt;}
.y47{bottom:252.826667pt;}
.y22{bottom:255.226667pt;}
.yb5{bottom:256.026667pt;}
.ya9{bottom:260.826667pt;}
.y5f{bottom:263.226667pt;}
.y73{bottom:263.386667pt;}
.yd6{bottom:268.826667pt;}
.yf8{bottom:273.786667pt;}
.y46{bottom:273.946667pt;}
.y21{bottom:276.546667pt;}
.ya8{bottom:281.986667pt;}
.yc9{bottom:283.746667pt;}
.y72{bottom:284.546667pt;}
.y101{bottom:284.706667pt;}
.y87{bottom:294.946667pt;}
.y45{bottom:295.266667pt;}
.y5e{bottom:295.426667pt;}
.y20{bottom:297.986667pt;}
.yd5{bottom:301.186667pt;}
.ya7{bottom:303.266667pt;}
.y71{bottom:305.826667pt;}
.ye7{bottom:305.986667pt;}
.yf7{bottom:306.146667pt;}
.y44{bottom:316.546667pt;}
.yfa{bottom:316.706667pt;}
.y1f{bottom:319.266667pt;}
.ya6{bottom:324.706667pt;}
.yf6{bottom:327.266667pt;}
.y86{bottom:327.426667pt;}
.yd4{bottom:329.346667pt;}
.y5d{bottom:337.826667pt;}
.y43{bottom:337.986667pt;}
.ye6{bottom:338.146667pt;}
.yc8{bottom:339.586667pt;}
.y1e{bottom:340.546667pt;}
.ya5{bottom:345.986667pt;}
.y85{bottom:348.546667pt;}
.y70{bottom:359.106667pt;}
.y42{bottom:359.266667pt;}
.y84{bottom:369.826667pt;}
.y100{bottom:369.986667pt;}
.y1d{bottom:372.386667pt;}
.ya4{bottom:378.146667pt;}
.y41{bottom:380.546667pt;}
.y83{bottom:391.106667pt;}
.y6f{bottom:391.266667pt;}
.yc7{bottom:395.426667pt;}
.ya3{bottom:399.266667pt;}
.y40{bottom:401.826667pt;}
.y1c{bottom:404.706667pt;}
.y82{bottom:412.546667pt;}
.y3f{bottom:423.106667pt;}
.y6e{bottom:423.266667pt;}
.ya2{bottom:431.106667pt;}
.yf1{bottom:433.826667pt;}
.y1b{bottom:436.706667pt;}
.ye5{bottom:444.546667pt;}
.y81{bottom:444.706667pt;}
.yc6{bottom:451.266667pt;}
.yf0{bottom:455.106667pt;}
.y3e{bottom:455.266667pt;}
.y1a{bottom:457.826667pt;}
.ya1{bottom:463.106667pt;}
.y80{bottom:465.826667pt;}
.y5c{bottom:476.386667pt;}
.y3d{bottom:476.546667pt;}
.y9a{bottom:478.466667pt;}
.y19{bottom:479.106667pt;}
.y7f{bottom:487.106667pt;}
.yef{bottom:487.266667pt;}
.y6d{bottom:497.666667pt;}
.y3c{bottom:497.826667pt;}
.y18{bottom:500.413333pt;}
.yc2{bottom:507.133333pt;}
.y5b{bottom:508.253333pt;}
.y7e{bottom:508.413333pt;}
.yf5{bottom:508.573333pt;}
.y3b{bottom:519.133333pt;}
.ye4{bottom:519.293333pt;}
.y17{bottom:521.693333pt;}
.y7d{bottom:529.693333pt;}
.y6c{bottom:529.853333pt;}
.y3a{bottom:540.413333pt;}
.y5a{bottom:540.573333pt;}
.y16{bottom:543.133333pt;}
.y6b{bottom:550.973333pt;}
.y7c{bottom:551.133333pt;}
.y39{bottom:561.693333pt;}
.ybe{bottom:562.973333pt;}
.y15{bottom:564.413333pt;}
.yee{bottom:572.413333pt;}
.ye3{bottom:572.573333pt;}
.y59{bottom:582.973333pt;}
.y38{bottom:583.133333pt;}
.y14{bottom:585.693333pt;}
.ye2{bottom:593.693333pt;}
.y6a{bottom:604.253333pt;}
.y37{bottom:604.413333pt;}
.y13{bottom:606.973333pt;}
.ye1{bottom:614.973333pt;}
.y103{bottom:615.133333pt;}
.y36{bottom:625.693333pt;}
.yed{bottom:625.853333pt;}
.y92{bottom:626.346667pt;}
.y12{bottom:628.253333pt;}
.ye0{bottom:636.253333pt;}
.y69{bottom:636.413333pt;}
.y58{bottom:646.973333pt;}
.y102{bottom:647.133333pt;}
.y11{bottom:649.693333pt;}
.ybd{bottom:657.373333pt;}
.y68{bottom:657.533333pt;}
.ydf{bottom:657.693333pt;}
.y35{bottom:657.853333pt;}
.y57{bottom:668.253333pt;}
.yf4{bottom:668.413333pt;}
.y10{bottom:670.973333pt;}
.yd3{bottom:678.813333pt;}
.y34{bottom:678.973333pt;}
.y7b{bottom:689.533333pt;}
.y67{bottom:689.693333pt;}
.yf{bottom:692.253333pt;}
.y33{bottom:700.253333pt;}
.y56{bottom:700.413333pt;}
.yd2{bottom:710.813333pt;}
.y66{bottom:710.973333pt;}
.ye{bottom:713.533333pt;}
.y32{bottom:721.573333pt;}
.ybc{bottom:732.293333pt;}
.y55{bottom:732.453333pt;}
.yd{bottom:734.853333pt;}
.yd1{bottom:742.693333pt;}
.y31{bottom:743.013333pt;}
.yde{bottom:753.413333pt;}
.y54{bottom:753.573333pt;}
.yc{bottom:756.293333pt;}
.y30{bottom:764.293333pt;}
.yd0{bottom:774.693333pt;}
.y53{bottom:774.853333pt;}
.yb{bottom:777.573333pt;}
.yb4{bottom:785.253333pt;}
.y2f{bottom:785.573333pt;}
.ydd{bottom:785.733333pt;}
.y8b{bottom:793.573333pt;}
.y7a{bottom:795.973333pt;}
.y52{bottom:796.133333pt;}
.y65{bottom:796.293333pt;}
.ya{bottom:798.853333pt;}
.y2e{bottom:806.853333pt;}
.ybb{bottom:807.013333pt;}
.yb3{bottom:817.413333pt;}
.y51{bottom:817.573333pt;}
.yec{bottom:817.733333pt;}
.y2d{bottom:828.133333pt;}
.y79{bottom:828.293333pt;}
.y9{bottom:829.893333pt;}
.y50{bottom:838.853333pt;}
.yb2{bottom:849.413333pt;}
.y2c{bottom:849.573333pt;}
.y64{bottom:849.733333pt;}
.y8{bottom:859.013333pt;}
.y4f{bottom:860.133333pt;}
.yf3{bottom:860.293333pt;}
.y2b{bottom:870.853333pt;}
.yeb{bottom:881.413333pt;}
.yb1{bottom:881.573333pt;}
.y63{bottom:891.813333pt;}
.y4e{bottom:891.973333pt;}
.y2a{bottom:892.133333pt;}
.yb0{bottom:902.853333pt;}
.y7{bottom:903.653333pt;}
.y78{bottom:913.413333pt;}
.yaf{bottom:924.133333pt;}
.y29{bottom:924.293333pt;}
.y6{bottom:940.133333pt;}
.y77{bottom:945.280000pt;}
.y28{bottom:945.440000pt;}
.y2{bottom:965.280000pt;}
.y1{bottom:994.400000pt;}
.h8{height:44.687500pt;}
.h7{height:45.156250pt;}
.hb{height:52.750000pt;}
.h12{height:55.186667pt;}
.h10{height:55.200000pt;}
.h11{height:55.226667pt;}
.h5{height:55.275000pt;}
.h6{height:58.630000pt;}
.ha{height:62.812500pt;}
.h1{height:63.656250pt;}
.h9{height:64.500000pt;}
.h2{height:65.531250pt;}
.h13{height:65.781915pt;}
.h3{height:66.625000pt;}
.h4{height:73.490625pt;}
.hc{height:92.306667pt;}
.hf{height:147.066667pt;}
.hd{height:165.786667pt;}
.he{height:166.573333pt;}
.h0{height:1056.000000pt;}
.wa{width:89.266667pt;}
.w2{width:89.298667pt;}
.w5{width:102.578667pt;}
.w1{width:109.746667pt;}
.w7{width:117.938667pt;}
.w3{width:118.272000pt;}
.w4{width:123.186667pt;}
.w9{width:132.818667pt;}
.w6{width:137.592000pt;}
.w8{width:142.586667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.866667pt;}
.x2{left:96.032000pt;}
.x12{left:120.032000pt;}
.x1{left:125.472000pt;}
.x6{left:135.240000pt;}
.x13{left:144.026667pt;}
.x4{left:154.426667pt;}
.xc{left:234.920000pt;}
.x8{left:245.640000pt;}
.x11{left:249.466667pt;}
.x5{left:305.026667pt;}
.x3{left:331.106667pt;}
.x9{left:335.586667pt;}
.xd{left:353.506667pt;}
.xa{left:454.506667pt;}
.xe{left:496.746667pt;}
.xb{left:578.346667pt;}
.xf{left:630.213333pt;}
.x10{left:680.133333pt;}
}




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