
    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_99b823234012c72c518117db.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1478b478f0cd3c373bb5fc4.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_8ea639fa5a64cdfa30aaf341.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f9b23d53fd26813ffb84358b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db485cf8bc094454ce537af3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_51039b70b8d52531f6145487.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051270;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_e9dcac219213bbc87d2e18bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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_4b19ca95bb228e838e931e5e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_23a21f6730b8b3eda9da0441.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_4329b74bdf51ca41b2d1818b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_530c02ec0626ad670c127646.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.800000px;}
.ls1{letter-spacing:-0.762000px;}
.ls5{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.384000px;}
.ls9{letter-spacing:-0.343200px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.229800px;}
.ls10{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.133200px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.186600px;}
.ls3{letter-spacing:0.306000px;}
.ls6{letter-spacing:11.988000px;}
.ls7{letter-spacing:19.747872px;}
.ls8{letter-spacing:19.908288px;}
.ls14{letter-spacing:85.110048px;}
.ls13{letter-spacing:85.176000px;}
.lse{letter-spacing:85.830048px;}
.lsd{letter-spacing:85.896000px;}
.lsf{letter-spacing:86.040000px;}
.ls15{letter-spacing:97.509600px;}
.ls12{letter-spacing:97.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-54.218304px;}
.ws13{word-spacing:-48.816000px;}
.ws29{word-spacing:-40.072032px;}
.ws28{word-spacing:-40.032000px;}
.ws2a{word-spacing:-33.426720px;}
.ws1b{word-spacing:-32.544000px;}
.ws1e{word-spacing:-30.064032px;}
.ws1d{word-spacing:-30.024000px;}
.ws0{word-spacing:-21.641760px;}
.ws17{word-spacing:-20.372544px;}
.ws16{word-spacing:-20.340000px;}
.ws1a{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.615280px;}
.ws9{word-spacing:-13.505760px;}
.ws15{word-spacing:-12.204000px;}
.ws19{word-spacing:-1.788000px;}
.ws18{word-spacing:-0.810000px;}
.wsf{word-spacing:-0.678240px;}
.wse{word-spacing:-0.660240px;}
.ws14{word-spacing:-0.216000px;}
.ws11{word-spacing:0.000000px;}
.ws10{word-spacing:0.099360px;}
.wsb{word-spacing:0.294120px;}
.wsd{word-spacing:0.544680px;}
.wsc{word-spacing:0.741600px;}
.wsa{word-spacing:0.843840px;}
.ws27{word-spacing:0.864000px;}
.ws1{word-spacing:9.558000px;}
.ws6{word-spacing:12.534120px;}
.ws7{word-spacing:12.772080px;}
.ws4{word-spacing:12.810960px;}
.ws5{word-spacing:12.972960px;}
.ws8{word-spacing:13.428720px;}
.ws3{word-spacing:13.629600px;}
.ws24{word-spacing:222.228000px;}
.ws20{word-spacing:222.840000px;}
.ws25{word-spacing:257.520000px;}
.ws1f{word-spacing:258.710448px;}
.ws21{word-spacing:558.672000px;}
.ws26{word-spacing:561.624000px;}
.ws22{word-spacing:563.928000px;}
.ws23{word-spacing:1234.632000px;}
.ws1c{word-spacing:2245.932000px;}
._10{margin-left:-23.976000px;}
._4{margin-left:-14.994720px;}
._c{margin-left:-12.744000px;}
._8{margin-left:-11.694816px;}
._1{margin-left:-10.380960px;}
._b{margin-left:-8.424000px;}
._7{margin-left:-6.948720px;}
._3{margin-left:-5.382720px;}
._2{margin-left:-4.229280px;}
._0{margin-left:-2.499120px;}
._5{margin-left:-1.153440px;}
._6{width:1.920096px;}
._f{width:3.436560px;}
._9{width:14.978880px;}
._a{width:24.444000px;}
._13{width:33.348192px;}
._11{width:60.639024px;}
._12{width:61.749024px;}
._d{width:619.848000px;}
._e{width:932.580000px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(15,111,198);}
.fc3{color:transparent;}
.fc2{color:rgb(23,64,109);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:64.080000px;}
.fs13{font-size:66.240000px;}
.fs14{font-size:66.384000px;}
.fs10{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs11{font-size:90.000000px;}
.fs12{font-size:90.144000px;}
.fs3{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fsd{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fsb{font-size:216.000000px;}
.fs17{font-size:216.144000px;}
.fs16{font-size:239.760000px;}
.fsa{font-size:239.904000px;}
.fs8{font-size:360.000000px;}
.fs7{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y10{bottom:2.415000px;}
.y1c{bottom:10.005000px;}
.yd{bottom:32.004000px;}
.y49{bottom:49.140000px;}
.yb3{bottom:63.936000px;}
.y91{bottom:65.916000px;}
.y48{bottom:68.976000px;}
.y1a{bottom:80.784000px;}
.y7d{bottom:82.872000px;}
.y58{bottom:88.668000px;}
.y88{bottom:92.340000px;}
.y90{bottom:93.024000px;}
.yb2{bottom:96.372000px;}
.y31{bottom:98.856000px;}
.y19{bottom:106.740000px;}
.y25{bottom:111.780000px;}
.y7c{bottom:115.308000px;}
.y47{bottom:124.740000px;}
.y39{bottom:124.956000px;}
.y30{bottom:125.892000px;}
.ya5{bottom:127.548000px;}
.y97{bottom:130.284000px;}
.y57{bottom:134.568000px;}
.y8f{bottom:136.224000px;}
.yb1{bottom:142.272000px;}
.y46{bottom:144.540000px;}
.y38{bottom:144.756000px;}
.y7b{bottom:147.708000px;}
.y2f{bottom:152.895000px;}
.ya4{bottom:159.945000px;}
.yb0{bottom:174.675000px;}
.ya{bottom:175.830000px;}
.y96{bottom:176.190000px;}
.y2e{bottom:179.895000px;}
.y7a{bottom:180.105000px;}
.y56{bottom:180.465000px;}
.y15{bottom:180.615000px;}
.y18{bottom:185.220000px;}
.y9{bottom:193.830000px;}
.y3b{bottom:200.085000px;}
.ya3{bottom:201.345000px;}
.y8{bottom:211.830000px;}
.y7e{bottom:212.505000px;}
.yb6{bottom:215.745000px;}
.y3a{bottom:219.885000px;}
.yaf{bottom:220.575000px;}
.y95{bottom:222.120000px;}
.y79{bottom:226.005000px;}
.y55{bottom:226.365000px;}
.ya2{bottom:233.745000px;}
.y7{bottom:234.075000px;}
.y23{bottom:246.450000px;}
.y29{bottom:246.630000px;}
.y6c{bottom:249.120000px;}
.y78{bottom:258.405000px;}
.y2d{bottom:260.130000px;}
.ya1{bottom:266.145000px;}
.y94{bottom:268.020000px;}
.y54{bottom:272.310000px;}
.y28{bottom:273.630000px;}
.y17{bottom:275.040000px;}
.y37{bottom:275.220000px;}
.yb5{bottom:281.130000px;}
.y6b{bottom:281.520000px;}
.y2c{bottom:287.130000px;}
.y77{bottom:290.850000px;}
.y3e{bottom:291.960000px;}
.y45{bottom:294.840000px;}
.y36{bottom:295.020000px;}
.y60{bottom:298.515000px;}
.ya0{bottom:298.590000px;}
.y22{bottom:300.630000px;}
.y16{bottom:300.960000px;}
.y8e{bottom:303.270000px;}
.y53{bottom:304.710000px;}
.y87{bottom:305.640000px;}
.yc{bottom:306.360000px;}
.yae{bottom:312.405000px;}
.y6a{bottom:313.920000px;}
.y2b{bottom:314.130000px;}
.y76{bottom:323.250000px;}
.y21{bottom:327.630000px;}
.y6{bottom:328.530000px;}
.y8d{bottom:335.670000px;}
.y9f{bottom:339.990000px;}
.y2a{bottom:341.130000px;}
.y84{bottom:341.850000px;}
.y5f{bottom:342.330000px;}
.yad{bottom:344.805000px;}
.y86{bottom:348.840000px;}
.y52{bottom:350.610000px;}
.y35{bottom:351.285000px;}
.y44{bottom:351.435000px;}
.y20{bottom:354.630000px;}
.y62{bottom:355.110000px;}
.y5{bottom:357.330000px;}
.y69{bottom:359.820000px;}
.y8c{bottom:368.100000px;}
.y75{bottom:369.150000px;}
.y34{bottom:371.085000px;}
.y43{bottom:371.235000px;}
.y9e{bottom:372.390000px;}
.y83{bottom:385.050000px;}
.y5e{bottom:386.130000px;}
.yac{bottom:390.705000px;}
.y85{bottom:392.040000px;}
.y51{bottom:396.510000px;}
.y8b{bottom:400.500000px;}
.y74{bottom:401.550000px;}
.yb{bottom:403.590000px;}
.y9d{bottom:404.790000px;}
.y14{bottom:404.925000px;}
.y68{bottom:405.750000px;}
.y27{bottom:406.545000px;}
.yb4{bottom:419.010000px;}
.y4{bottom:419.430000px;}
.yab{bottom:423.105000px;}
.y42{bottom:425.985000px;}
.y33{bottom:426.240000px;}
.y5d{bottom:429.945000px;}
.y1f{bottom:433.545000px;}
.y73{bottom:433.950000px;}
.y13{bottom:437.325000px;}
.y67{bottom:438.150000px;}
.y50{bottom:442.440000px;}
.y41{bottom:445.785000px;}
.y32{bottom:446.040000px;}
.y9c{bottom:446.190000px;}
.y93{bottom:451.650000px;}
.y3{bottom:457.275000px;}
.y1e{bottom:460.590000px;}
.y72{bottom:466.380000px;}
.yaa{bottom:469.050000px;}
.y12{bottom:469.770000px;}
.y5c{bottom:473.760000px;}
.y9b{bottom:478.620000px;}
.y66{bottom:484.050000px;}
.y1d{bottom:487.590000px;}
.y4f{bottom:488.340000px;}
.y3d{bottom:489.450000px;}
.y82{bottom:493.635000px;}
.y8a{bottom:497.700000px;}
.y4a{bottom:500.790000px;}
.y11{bottom:502.170000px;}
.y9a{bottom:511.020000px;}
.y71{bottom:512.280000px;}
.y26{bottom:514.590000px;}
.y3c{bottom:514.650000px;}
.y2{bottom:514.875000px;}
.y5b{bottom:517.575000px;}
.y65{bottom:529.950000px;}
.y89{bottom:530.100000px;}
.y4e{bottom:534.240000px;}
.y40{bottom:536.400000px;}
.y81{bottom:536.835000px;}
.y1b{bottom:543.600000px;}
.y70{bottom:544.680000px;}
.y99{bottom:556.920000px;}
.ya9{bottom:560.850000px;}
.y5a{bottom:561.390000px;}
.y64{bottom:562.350000px;}
.y1{bottom:572.475000px;}
.y6f{bottom:577.080000px;}
.y3f{bottom:579.600000px;}
.y4d{bottom:580.140000px;}
.ya8{bottom:593.250000px;}
.y24{bottom:594.360000px;}
.y98{bottom:603.540000px;}
.y59{bottom:605.190000px;}
.y63{bottom:608.295000px;}
.y80{bottom:610.485000px;}
.y6e{bottom:622.980000px;}
.y4c{bottom:626.070000px;}
.ya7{bottom:639.150000px;}
.y61{bottom:658.155000px;}
.yf{bottom:660.780000px;}
.ya6{bottom:688.065000px;}
.y92{bottom:689.325000px;}
.y4b{bottom:708.045000px;}
.y7f{bottom:709.200000px;}
.y6d{bottom:710.385000px;}
.ye{bottom:719.535000px;}
.hb{height:39.060000px;}
.h13{height:44.280000px;}
.h9{height:53.709961px;}
.h6{height:59.439023px;}
.h18{height:67.824844px;}
.h1b{height:67.972289px;}
.h23{height:78.943359px;}
.h21{height:79.048617px;}
.h24{height:79.681641px;}
.h1e{height:79.998047px;}
.h20{height:80.104711px;}
.h1f{height:81.210938px;}
.h1d{height:81.319219px;}
.h12{height:83.787539px;}
.h10{height:83.930766px;}
.h16{height:89.516602px;}
.h27{height:90.414844px;}
.h14{height:92.153320px;}
.h15{height:92.300766px;}
.hd{height:94.289062px;}
.he{height:94.414781px;}
.h4{height:95.245664px;}
.h11{height:95.388891px;}
.h25{height:105.257812px;}
.h26{height:105.363070px;}
.h3{height:107.419922px;}
.h22{height:107.563148px;}
.h5{height:108.281250px;}
.h17{height:110.583984px;}
.hf{height:119.594180px;}
.h28{height:140.519180px;}
.h1a{height:147.445312px;}
.h1c{height:157.886719px;}
.h19{height:191.207461px;}
.h1{height:196.839492px;}
.h2{height:196.986938px;}
.h2b{height:214.839844px;}
.h2a{height:214.983070px;}
.hc{height:221.167969px;}
.ha{height:238.615453px;}
.h29{height:245.496445px;}
.h8{height:263.144531px;}
.h7{height:263.249789px;}
.h0{height:810.000000px;}
.w2{width:237.420000px;}
.w4{width:250.200000px;}
.w3{width:978.840000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.xc{left:-1.770000px;}
.x0{left:0.000000px;}
.x12{left:1.152000px;}
.x4b{left:35.675979px;}
.x2{left:42.335979px;}
.x1{left:45.827979px;}
.x8{left:69.443979px;}
.x3{left:73.727979px;}
.x5{left:77.723979px;}
.xe{left:98.315979px;}
.x34{left:107.639979px;}
.x11{left:111.420000px;}
.x6{left:112.860000px;}
.x7{left:122.327979px;}
.x15{left:130.895979px;}
.xf{left:162.209979px;}
.xb{left:226.080000px;}
.x3b{left:262.799979px;}
.xd{left:277.844979px;}
.x4c{left:279.149979px;}
.x3c{left:286.199979px;}
.x45{left:287.564979px;}
.x47{left:306.719979px;}
.x46{left:341.744979px;}
.x13{left:421.634979px;}
.x14{left:424.109979px;}
.x10{left:444.779979px;}
.x9{left:521.714979px;}
.xa{left:532.514979px;}
.x3f{left:579.089979px;}
.x3a{left:594.509979px;}
.x33{left:625.529979px;}
.x41{left:664.409979px;}
.x40{left:679.349979px;}
.x42{left:698.249979px;}
.x20{left:824.864979px;}
.x21{left:839.264979px;}
.x17{left:848.774979px;}
.x23{left:851.189979px;}
.x19{left:855.689979px;}
.x18{left:863.279979px;}
.x16{left:875.414979px;}
.x1b{left:895.349979px;}
.x1a{left:903.269979px;}
.x1e{left:927.974979px;}
.x43{left:933.194979px;}
.x24{left:935.249979px;}
.x38{left:936.509979px;}
.x1c{left:959.009979px;}
.x1d{left:961.169979px;}
.x1f{left:963.434979px;}
.x44{left:967.034979px;}
.x3d{left:974.624979px;}
.x39{left:992.084979px;}
.x48{left:995.684979px;}
.x36{left:1003.784979px;}
.x37{left:1006.124979px;}
.x49{left:1012.784979px;}
.x4a{left:1046.444979px;}
.x3e{left:1064.669979px;}
.x22{left:1073.804979px;}
.x35{left:1078.709979px;}
.x2f{left:1102.649979px;}
.x30{left:1117.049979px;}
.x26{left:1122.404979px;}
.x28{left:1130.504979px;}
.x27{left:1138.064979px;}
.x25{left:1149.044979px;}
.x2a{left:1165.934979px;}
.x29{left:1173.854979px;}
.x2d{left:1199.264979px;}
.x2e{left:1234.724979px;}
.x2b{left:1243.154979px;}
.x2c{left:1276.844979px;}
.x32{left:1285.274979px;}
.x31{left:1293.734979px;}
.x4{left:1402.094979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.600000pt;}
.ls1{letter-spacing:-0.677333pt;}
.ls5{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.341333pt;}
.ls9{letter-spacing:-0.305067pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.204267pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.118400pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.165867pt;}
.ls3{letter-spacing:0.272000pt;}
.ls6{letter-spacing:10.656000pt;}
.ls7{letter-spacing:17.553664pt;}
.ls8{letter-spacing:17.696256pt;}
.ls14{letter-spacing:75.653376pt;}
.ls13{letter-spacing:75.712000pt;}
.lse{letter-spacing:76.293376pt;}
.lsd{letter-spacing:76.352000pt;}
.lsf{letter-spacing:76.480000pt;}
.ls15{letter-spacing:86.675200pt;}
.ls12{letter-spacing:86.720000pt;}
.ws12{word-spacing:-48.194048pt;}
.ws13{word-spacing:-43.392000pt;}
.ws29{word-spacing:-35.619584pt;}
.ws28{word-spacing:-35.584000pt;}
.ws2a{word-spacing:-29.712640pt;}
.ws1b{word-spacing:-28.928000pt;}
.ws1e{word-spacing:-26.723584pt;}
.ws1d{word-spacing:-26.688000pt;}
.ws0{word-spacing:-19.237120pt;}
.ws17{word-spacing:-18.108928pt;}
.ws16{word-spacing:-18.080000pt;}
.ws1a{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.991360pt;}
.ws9{word-spacing:-12.005120pt;}
.ws15{word-spacing:-10.848000pt;}
.ws19{word-spacing:-1.589333pt;}
.ws18{word-spacing:-0.720000pt;}
.wsf{word-spacing:-0.602880pt;}
.wse{word-spacing:-0.586880pt;}
.ws14{word-spacing:-0.192000pt;}
.ws11{word-spacing:0.000000pt;}
.ws10{word-spacing:0.088320pt;}
.wsb{word-spacing:0.261440pt;}
.wsd{word-spacing:0.484160pt;}
.wsc{word-spacing:0.659200pt;}
.wsa{word-spacing:0.750080pt;}
.ws27{word-spacing:0.768000pt;}
.ws1{word-spacing:8.496000pt;}
.ws6{word-spacing:11.141440pt;}
.ws7{word-spacing:11.352960pt;}
.ws4{word-spacing:11.387520pt;}
.ws5{word-spacing:11.531520pt;}
.ws8{word-spacing:11.936640pt;}
.ws3{word-spacing:12.115200pt;}
.ws24{word-spacing:197.536000pt;}
.ws20{word-spacing:198.080000pt;}
.ws25{word-spacing:228.906667pt;}
.ws1f{word-spacing:229.964843pt;}
.ws21{word-spacing:496.597333pt;}
.ws26{word-spacing:499.221333pt;}
.ws22{word-spacing:501.269333pt;}
.ws23{word-spacing:1097.450667pt;}
.ws1c{word-spacing:1996.384000pt;}
._10{margin-left:-21.312000pt;}
._4{margin-left:-13.328640pt;}
._c{margin-left:-11.328000pt;}
._8{margin-left:-10.395392pt;}
._1{margin-left:-9.227520pt;}
._b{margin-left:-7.488000pt;}
._7{margin-left:-6.176640pt;}
._3{margin-left:-4.784640pt;}
._2{margin-left:-3.759360pt;}
._0{margin-left:-2.221440pt;}
._5{margin-left:-1.025280pt;}
._6{width:1.706752pt;}
._f{width:3.054720pt;}
._9{width:13.314560pt;}
._a{width:21.728000pt;}
._13{width:29.642837pt;}
._11{width:53.901355pt;}
._12{width:54.888021pt;}
._d{width:550.976000pt;}
._e{width:828.960000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:56.960000pt;}
.fs13{font-size:58.880000pt;}
.fs14{font-size:59.008000pt;}
.fs10{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs11{font-size:80.000000pt;}
.fs12{font-size:80.128000pt;}
.fs3{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fsd{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fsb{font-size:192.000000pt;}
.fs17{font-size:192.128000pt;}
.fs16{font-size:213.120000pt;}
.fsa{font-size:213.248000pt;}
.fs8{font-size:320.000000pt;}
.fs7{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.146667pt;}
.y1c{bottom:8.893333pt;}
.yd{bottom:28.448000pt;}
.y49{bottom:43.680000pt;}
.yb3{bottom:56.832000pt;}
.y91{bottom:58.592000pt;}
.y48{bottom:61.312000pt;}
.y1a{bottom:71.808000pt;}
.y7d{bottom:73.664000pt;}
.y58{bottom:78.816000pt;}
.y88{bottom:82.080000pt;}
.y90{bottom:82.688000pt;}
.yb2{bottom:85.664000pt;}
.y31{bottom:87.872000pt;}
.y19{bottom:94.880000pt;}
.y25{bottom:99.360000pt;}
.y7c{bottom:102.496000pt;}
.y47{bottom:110.880000pt;}
.y39{bottom:111.072000pt;}
.y30{bottom:111.904000pt;}
.ya5{bottom:113.376000pt;}
.y97{bottom:115.808000pt;}
.y57{bottom:119.616000pt;}
.y8f{bottom:121.088000pt;}
.yb1{bottom:126.464000pt;}
.y46{bottom:128.480000pt;}
.y38{bottom:128.672000pt;}
.y7b{bottom:131.296000pt;}
.y2f{bottom:135.906667pt;}
.ya4{bottom:142.173333pt;}
.yb0{bottom:155.266667pt;}
.ya{bottom:156.293333pt;}
.y96{bottom:156.613333pt;}
.y2e{bottom:159.906667pt;}
.y7a{bottom:160.093333pt;}
.y56{bottom:160.413333pt;}
.y15{bottom:160.546667pt;}
.y18{bottom:164.640000pt;}
.y9{bottom:172.293333pt;}
.y3b{bottom:177.853333pt;}
.ya3{bottom:178.973333pt;}
.y8{bottom:188.293333pt;}
.y7e{bottom:188.893333pt;}
.yb6{bottom:191.773333pt;}
.y3a{bottom:195.453333pt;}
.yaf{bottom:196.066667pt;}
.y95{bottom:197.440000pt;}
.y79{bottom:200.893333pt;}
.y55{bottom:201.213333pt;}
.ya2{bottom:207.773333pt;}
.y7{bottom:208.066667pt;}
.y23{bottom:219.066667pt;}
.y29{bottom:219.226667pt;}
.y6c{bottom:221.440000pt;}
.y78{bottom:229.693333pt;}
.y2d{bottom:231.226667pt;}
.ya1{bottom:236.573333pt;}
.y94{bottom:238.240000pt;}
.y54{bottom:242.053333pt;}
.y28{bottom:243.226667pt;}
.y17{bottom:244.480000pt;}
.y37{bottom:244.640000pt;}
.yb5{bottom:249.893333pt;}
.y6b{bottom:250.240000pt;}
.y2c{bottom:255.226667pt;}
.y77{bottom:258.533333pt;}
.y3e{bottom:259.520000pt;}
.y45{bottom:262.080000pt;}
.y36{bottom:262.240000pt;}
.y60{bottom:265.346667pt;}
.ya0{bottom:265.413333pt;}
.y22{bottom:267.226667pt;}
.y16{bottom:267.520000pt;}
.y8e{bottom:269.573333pt;}
.y53{bottom:270.853333pt;}
.y87{bottom:271.680000pt;}
.yc{bottom:272.320000pt;}
.yae{bottom:277.693333pt;}
.y6a{bottom:279.040000pt;}
.y2b{bottom:279.226667pt;}
.y76{bottom:287.333333pt;}
.y21{bottom:291.226667pt;}
.y6{bottom:292.026667pt;}
.y8d{bottom:298.373333pt;}
.y9f{bottom:302.213333pt;}
.y2a{bottom:303.226667pt;}
.y84{bottom:303.866667pt;}
.y5f{bottom:304.293333pt;}
.yad{bottom:306.493333pt;}
.y86{bottom:310.080000pt;}
.y52{bottom:311.653333pt;}
.y35{bottom:312.253333pt;}
.y44{bottom:312.386667pt;}
.y20{bottom:315.226667pt;}
.y62{bottom:315.653333pt;}
.y5{bottom:317.626667pt;}
.y69{bottom:319.840000pt;}
.y8c{bottom:327.200000pt;}
.y75{bottom:328.133333pt;}
.y34{bottom:329.853333pt;}
.y43{bottom:329.986667pt;}
.y9e{bottom:331.013333pt;}
.y83{bottom:342.266667pt;}
.y5e{bottom:343.226667pt;}
.yac{bottom:347.293333pt;}
.y85{bottom:348.480000pt;}
.y51{bottom:352.453333pt;}
.y8b{bottom:356.000000pt;}
.y74{bottom:356.933333pt;}
.yb{bottom:358.746667pt;}
.y9d{bottom:359.813333pt;}
.y14{bottom:359.933333pt;}
.y68{bottom:360.666667pt;}
.y27{bottom:361.373333pt;}
.yb4{bottom:372.453333pt;}
.y4{bottom:372.826667pt;}
.yab{bottom:376.093333pt;}
.y42{bottom:378.653333pt;}
.y33{bottom:378.880000pt;}
.y5d{bottom:382.173333pt;}
.y1f{bottom:385.373333pt;}
.y73{bottom:385.733333pt;}
.y13{bottom:388.733333pt;}
.y67{bottom:389.466667pt;}
.y50{bottom:393.280000pt;}
.y41{bottom:396.253333pt;}
.y32{bottom:396.480000pt;}
.y9c{bottom:396.613333pt;}
.y93{bottom:401.466667pt;}
.y3{bottom:406.466667pt;}
.y1e{bottom:409.413333pt;}
.y72{bottom:414.560000pt;}
.yaa{bottom:416.933333pt;}
.y12{bottom:417.573333pt;}
.y5c{bottom:421.120000pt;}
.y9b{bottom:425.440000pt;}
.y66{bottom:430.266667pt;}
.y1d{bottom:433.413333pt;}
.y4f{bottom:434.080000pt;}
.y3d{bottom:435.066667pt;}
.y82{bottom:438.786667pt;}
.y8a{bottom:442.400000pt;}
.y4a{bottom:445.146667pt;}
.y11{bottom:446.373333pt;}
.y9a{bottom:454.240000pt;}
.y71{bottom:455.360000pt;}
.y26{bottom:457.413333pt;}
.y3c{bottom:457.466667pt;}
.y2{bottom:457.666667pt;}
.y5b{bottom:460.066667pt;}
.y65{bottom:471.066667pt;}
.y89{bottom:471.200000pt;}
.y4e{bottom:474.880000pt;}
.y40{bottom:476.800000pt;}
.y81{bottom:477.186667pt;}
.y1b{bottom:483.200000pt;}
.y70{bottom:484.160000pt;}
.y99{bottom:495.040000pt;}
.ya9{bottom:498.533333pt;}
.y5a{bottom:499.013333pt;}
.y64{bottom:499.866667pt;}
.y1{bottom:508.866667pt;}
.y6f{bottom:512.960000pt;}
.y3f{bottom:515.200000pt;}
.y4d{bottom:515.680000pt;}
.ya8{bottom:527.333333pt;}
.y24{bottom:528.320000pt;}
.y98{bottom:536.480000pt;}
.y59{bottom:537.946667pt;}
.y63{bottom:540.706667pt;}
.y80{bottom:542.653333pt;}
.y6e{bottom:553.760000pt;}
.y4c{bottom:556.506667pt;}
.ya7{bottom:568.133333pt;}
.y61{bottom:585.026667pt;}
.yf{bottom:587.360000pt;}
.ya6{bottom:611.613333pt;}
.y92{bottom:612.733333pt;}
.y4b{bottom:629.373333pt;}
.y7f{bottom:630.400000pt;}
.y6d{bottom:631.453333pt;}
.ye{bottom:639.586667pt;}
.hb{height:34.720000pt;}
.h13{height:39.360000pt;}
.h9{height:47.742188pt;}
.h6{height:52.834688pt;}
.h18{height:60.288750pt;}
.h1b{height:60.419812pt;}
.h23{height:70.171875pt;}
.h21{height:70.265437pt;}
.h24{height:70.828125pt;}
.h1e{height:71.109375pt;}
.h20{height:71.204188pt;}
.h1f{height:72.187500pt;}
.h1d{height:72.283750pt;}
.h12{height:74.477812pt;}
.h10{height:74.605125pt;}
.h16{height:79.570312pt;}
.h27{height:80.368750pt;}
.h14{height:81.914062pt;}
.h15{height:82.045125pt;}
.hd{height:83.812500pt;}
.he{height:83.924250pt;}
.h4{height:84.662813pt;}
.h11{height:84.790125pt;}
.h25{height:93.562500pt;}
.h26{height:93.656062pt;}
.h3{height:95.484375pt;}
.h22{height:95.611688pt;}
.h5{height:96.250000pt;}
.h17{height:98.296875pt;}
.hf{height:106.305937pt;}
.h28{height:124.905938pt;}
.h1a{height:131.062500pt;}
.h1c{height:140.343750pt;}
.h19{height:169.962187pt;}
.h1{height:174.968437pt;}
.h2{height:175.099500pt;}
.h2b{height:190.968750pt;}
.h2a{height:191.096063pt;}
.hc{height:196.593750pt;}
.ha{height:212.102625pt;}
.h29{height:218.219062pt;}
.h8{height:233.906250pt;}
.h7{height:233.999812pt;}
.h0{height:720.000000pt;}
.w2{width:211.040000pt;}
.w4{width:222.400000pt;}
.w3{width:870.080000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.xc{left:-1.573333pt;}
.x0{left:0.000000pt;}
.x12{left:1.024000pt;}
.x4b{left:31.711981pt;}
.x2{left:37.631981pt;}
.x1{left:40.735981pt;}
.x8{left:61.727981pt;}
.x3{left:65.535981pt;}
.x5{left:69.087981pt;}
.xe{left:87.391981pt;}
.x34{left:95.679981pt;}
.x11{left:99.040000pt;}
.x6{left:100.320000pt;}
.x7{left:108.735981pt;}
.x15{left:116.351981pt;}
.xf{left:144.186648pt;}
.xb{left:200.960000pt;}
.x3b{left:233.599981pt;}
.xd{left:246.973314pt;}
.x4c{left:248.133314pt;}
.x3c{left:254.399981pt;}
.x45{left:255.613314pt;}
.x47{left:272.639981pt;}
.x46{left:303.773314pt;}
.x13{left:374.786648pt;}
.x14{left:376.986648pt;}
.x10{left:395.359981pt;}
.x9{left:463.746648pt;}
.xa{left:473.346648pt;}
.x3f{left:514.746648pt;}
.x3a{left:528.453314pt;}
.x33{left:556.026648pt;}
.x41{left:590.586648pt;}
.x40{left:603.866648pt;}
.x42{left:620.666648pt;}
.x20{left:733.213314pt;}
.x21{left:746.013314pt;}
.x17{left:754.466648pt;}
.x23{left:756.613314pt;}
.x19{left:760.613314pt;}
.x18{left:767.359981pt;}
.x16{left:778.146648pt;}
.x1b{left:795.866648pt;}
.x1a{left:802.906648pt;}
.x1e{left:824.866648pt;}
.x43{left:829.506648pt;}
.x24{left:831.333314pt;}
.x38{left:832.453314pt;}
.x1c{left:852.453314pt;}
.x1d{left:854.373314pt;}
.x1f{left:856.386648pt;}
.x44{left:859.586648pt;}
.x3d{left:866.333314pt;}
.x39{left:881.853314pt;}
.x48{left:885.053314pt;}
.x36{left:892.253314pt;}
.x37{left:894.333314pt;}
.x49{left:900.253314pt;}
.x4a{left:930.173314pt;}
.x3e{left:946.373314pt;}
.x22{left:954.493314pt;}
.x35{left:958.853314pt;}
.x2f{left:980.133314pt;}
.x30{left:992.933314pt;}
.x26{left:997.693314pt;}
.x28{left:1004.893314pt;}
.x27{left:1011.613314pt;}
.x25{left:1021.373314pt;}
.x2a{left:1036.386648pt;}
.x29{left:1043.426648pt;}
.x2d{left:1066.013314pt;}
.x2e{left:1097.533314pt;}
.x2b{left:1105.026648pt;}
.x2c{left:1134.973314pt;}
.x32{left:1142.466648pt;}
.x31{left:1149.986648pt;}
.x4{left:1246.306648pt;}
}




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