
    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_4d10447c9c87edb37719079f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_62dc635f3f0246ac6930c915.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_5500c002a3ba8a2c6a2391dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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_ceb693315e1a397942953d0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_fe5598d653ea40547908e534.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_439fb8535933aa0984fcf69c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_46206a381affbdf2cf5b5f4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_6f340f9ae0c4aa4cb404d903.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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_1d45e98f06dcf1d52f0033c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914000;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;}
.v1{vertical-align:17.934000px;}
.ls2{letter-spacing:-2.016000px;}
.ls6{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.157008px;}
.ls8{letter-spacing:0.255000px;}
.ls4{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.918000px;}
.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;}
}
.ws5{word-spacing:-28.416000px;}
.ws0{word-spacing:-20.016000px;}
.ws59{word-spacing:-17.280000px;}
.ws1a{word-spacing:-15.930000px;}
.ws2a{word-spacing:-15.282000px;}
.ws2{word-spacing:-15.012000px;}
.ws71{word-spacing:-14.178000px;}
.ws1{word-spacing:-14.011200px;}
.ws17{word-spacing:-12.636000px;}
.ws1b{word-spacing:-12.480000px;}
.ws48{word-spacing:-12.144000px;}
.ws49{word-spacing:-8.751996px;}
.ws1c{word-spacing:-8.736000px;}
.ws54{word-spacing:-6.534000px;}
.ws38{word-spacing:-6.144000px;}
.ws4b{word-spacing:-5.940000px;}
.ws5a{word-spacing:-5.562000px;}
.ws35{word-spacing:-5.292000px;}
.ws4d{word-spacing:-4.428000px;}
.ws33{word-spacing:-4.266000px;}
.ws63{word-spacing:-4.104000px;}
.ws2e{word-spacing:-4.050000px;}
.ws46{word-spacing:-3.996000px;}
.ws6b{word-spacing:-3.618000px;}
.ws64{word-spacing:-2.916000px;}
.ws3f{word-spacing:-2.862000px;}
.ws37{word-spacing:-2.592000px;}
.ws2f{word-spacing:-2.484000px;}
.ws4c{word-spacing:-2.268000px;}
.ws22{word-spacing:-2.106000px;}
.ws5b{word-spacing:-1.890000px;}
.ws45{word-spacing:-1.836000px;}
.ws75{word-spacing:-1.734000px;}
.ws6d{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.134000px;}
.ws21{word-spacing:-0.972000px;}
.ws53{word-spacing:-0.918000px;}
.ws3d{word-spacing:-0.864000px;}
.ws6a{word-spacing:-0.648000px;}
.ws60{word-spacing:-0.576000px;}
.ws2c{word-spacing:-0.540000px;}
.ws3c{word-spacing:-0.432000px;}
.ws39{word-spacing:-0.270000px;}
.ws73{word-spacing:-0.255000px;}
.ws72{word-spacing:-0.216000px;}
.ws5f{word-spacing:-0.192000px;}
.ws55{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws7b{word-spacing:0.051000px;}
.wsc{word-spacing:0.180000px;}
.wsb{word-spacing:0.216000px;}
.ws36{word-spacing:0.540000px;}
.ws47{word-spacing:0.594000px;}
.ws78{word-spacing:0.765000px;}
.ws6c{word-spacing:0.864000px;}
.wse{word-spacing:0.918000px;}
.ws4e{word-spacing:1.080000px;}
.ws61{word-spacing:1.134000px;}
.ws4a{word-spacing:1.200000px;}
.ws65{word-spacing:1.350000px;}
.ws2b{word-spacing:1.620000px;}
.ws7a{word-spacing:1.632000px;}
.ws23{word-spacing:1.890000px;}
.ws10{word-spacing:1.944000px;}
.ws27{word-spacing:2.214000px;}
.ws42{word-spacing:2.268000px;}
.ws43{word-spacing:2.376000px;}
.ws6e{word-spacing:2.430000px;}
.ws40{word-spacing:2.538000px;}
.ws66{word-spacing:2.700000px;}
.ws8{word-spacing:2.808000px;}
.ws16{word-spacing:2.970000px;}
.ws6f{word-spacing:3.132000px;}
.ws77{word-spacing:3.876000px;}
.ws44{word-spacing:3.888000px;}
.ws3e{word-spacing:3.996000px;}
.ws5e{word-spacing:4.104000px;}
.ws4{word-spacing:4.128000px;}
.ws14{word-spacing:4.320000px;}
.ws34{word-spacing:4.536000px;}
.ws79{word-spacing:4.692000px;}
.ws50{word-spacing:5.130000px;}
.ws51{word-spacing:5.184000px;}
.ws62{word-spacing:5.346000px;}
.ws57{word-spacing:5.508000px;}
.ws24{word-spacing:5.562000px;}
.ws9{word-spacing:5.616000px;}
.ws70{word-spacing:5.670000px;}
.ws28{word-spacing:5.778000px;}
.ws20{word-spacing:5.940000px;}
.ws11{word-spacing:5.994000px;}
.ws32{word-spacing:6.210000px;}
.ws25{word-spacing:6.480000px;}
.ws68{word-spacing:6.588000px;}
.ws1f{word-spacing:6.642000px;}
.ws3b{word-spacing:6.750000px;}
.ws31{word-spacing:6.804000px;}
.ws4f{word-spacing:6.912000px;}
.ws41{word-spacing:6.966000px;}
.ws2d{word-spacing:7.074000px;}
.ws26{word-spacing:7.182000px;}
.wsf{word-spacing:8.316000px;}
.ws30{word-spacing:8.424000px;}
.ws5d{word-spacing:8.640000px;}
.ws5c{word-spacing:8.694000px;}
.ws13{word-spacing:8.856000px;}
.ws7c{word-spacing:10.098000px;}
.ws74{word-spacing:10.149000px;}
.ws67{word-spacing:10.746000px;}
.ws6{word-spacing:12.582000px;}
.ws69{word-spacing:12.906000px;}
.ws52{word-spacing:13.068000px;}
.ws15{word-spacing:13.284000px;}
.wsa{word-spacing:13.446000px;}
.ws7{word-spacing:13.500000px;}
.ws18{word-spacing:14.580000px;}
.ws3a{word-spacing:15.390000px;}
.ws12{word-spacing:15.768000px;}
.ws19{word-spacing:17.280000px;}
.ws56{word-spacing:17.496000px;}
.ws1d{word-spacing:20.574000px;}
.ws58{word-spacing:24.192000px;}
.ws76{word-spacing:25.245000px;}
.ws1e{word-spacing:36.018000px;}
.ws29{word-spacing:43.902000px;}
._6{margin-left:-27.486000px;}
._17{margin-left:-22.464000px;}
._11{margin-left:-18.522000px;}
._4{margin-left:-17.334000px;}
._18{margin-left:-14.148000px;}
._16{margin-left:-12.852000px;}
._d{margin-left:-10.728000px;}
._0{margin-left:-6.192000px;}
._9{margin-left:-4.968000px;}
._1{margin-left:-3.264000px;}
._2{margin-left:-2.016000px;}
._e{margin-left:-1.008000px;}
._12{width:1.008000px;}
._3{width:2.016000px;}
._f{width:3.024000px;}
._5{width:4.482000px;}
._8{width:5.670000px;}
._13{width:7.290000px;}
._c{width:8.550000px;}
._10{width:9.702000px;}
._14{width:10.854000px;}
._7{width:13.338000px;}
._a{width:20.358000px;}
._b{width:194.346000px;}
._15{width:232.128000px;}
.fc2{color:rgb(64,64,66);}
.fc5{color:rgb(152,152,152);}
.fc4{color:rgb(88,88,88);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(108,108,108);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.482000px;}
.fs8{font-size:33.600000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:26.749650px;}
.y1{bottom:41.149650px;}
.y95{bottom:75.127800px;}
.ybd{bottom:78.271200px;}
.y25{bottom:82.015500px;}
.y6c{bottom:82.768500px;}
.y94{bottom:91.327800px;}
.ybc{bottom:94.471200px;}
.y24{bottom:98.215500px;}
.y6b{bottom:98.968500px;}
.y93{bottom:107.527800px;}
.ybb{bottom:110.671200px;}
.y23{bottom:114.415500px;}
.y6a{bottom:115.168500px;}
.y92{bottom:123.727800px;}
.yba{bottom:126.871200px;}
.y69{bottom:131.368500px;}
.y91{bottom:139.927800px;}
.yb9{bottom:143.071200px;}
.y22{bottom:146.815500px;}
.y68{bottom:147.717000px;}
.y90{bottom:156.127800px;}
.yb8{bottom:159.271200px;}
.y21{bottom:163.015500px;}
.y67{bottom:164.077500px;}
.yb7{bottom:175.471200px;}
.y20{bottom:179.215500px;}
.y66{bottom:180.426000px;}
.y8f{bottom:181.327800px;}
.yb6{bottom:191.671200px;}
.y1f{bottom:195.415500px;}
.y65{bottom:196.774500px;}
.yb5{bottom:207.871200px;}
.y8e{bottom:210.127800px;}
.y1e{bottom:211.615500px;}
.y64{bottom:213.123000px;}
.yb4{bottom:224.071200px;}
.y1d{bottom:227.815500px;}
.y63{bottom:229.471500px;}
.yb3{bottom:240.271200px;}
.y1c{bottom:244.015500px;}
.y62{bottom:245.820000px;}
.y8d{bottom:255.277800px;}
.yb2{bottom:256.471200px;}
.y1b{bottom:260.215500px;}
.y61{bottom:262.020000px;}
.y8c{bottom:271.477800px;}
.yb1{bottom:272.671200px;}
.y1a{bottom:276.415500px;}
.y60{bottom:278.220000px;}
.y8b{bottom:287.677800px;}
.y19{bottom:292.615500px;}
.y5f{bottom:294.420000px;}
.y8a{bottom:303.877800px;}
.y18{bottom:308.815500px;}
.y5e{bottom:310.620000px;}
.yb0{bottom:317.821200px;}
.y89{bottom:320.077800px;}
.y17{bottom:325.015500px;}
.y5d{bottom:326.820000px;}
.yaf{bottom:334.021200px;}
.y88{bottom:336.277800px;}
.y16{bottom:341.215500px;}
.y5c{bottom:343.020000px;}
.yae{bottom:350.221200px;}
.y87{bottom:352.477800px;}
.y15{bottom:357.415500px;}
.y5b{bottom:359.220000px;}
.yad{bottom:366.421200px;}
.y86{bottom:368.677800px;}
.y14{bottom:373.615500px;}
.y5a{bottom:375.420000px;}
.yac{bottom:382.621200px;}
.y85{bottom:384.877800px;}
.y13{bottom:389.820000px;}
.y59{bottom:391.620000px;}
.yab{bottom:398.821200px;}
.y84{bottom:401.077800px;}
.y12{bottom:407.815500px;}
.y58{bottom:407.820000px;}
.yaa{bottom:415.021200px;}
.y83{bottom:417.277800px;}
.yd5{bottom:423.673350px;}
.y11{bottom:424.015500px;}
.y57{bottom:424.168500px;}
.ya9{bottom:431.221200px;}
.y82{bottom:433.477800px;}
.yd4{bottom:438.973350px;}
.y10{bottom:440.215500px;}
.y56{bottom:440.517000px;}
.ya8{bottom:447.421200px;}
.y81{bottom:449.677800px;}
.yd3{bottom:454.273350px;}
.yf{bottom:456.415500px;}
.y55{bottom:456.865500px;}
.ya7{bottom:463.621200px;}
.y80{bottom:465.877800px;}
.yd2{bottom:469.573350px;}
.ye{bottom:472.615500px;}
.ya6{bottom:479.821200px;}
.y7f{bottom:482.077800px;}
.y54{bottom:482.215500px;}
.yd1{bottom:484.873350px;}
.yd{bottom:488.815500px;}
.ya5{bottom:496.021200px;}
.y7e{bottom:498.277800px;}
.yd0{bottom:500.173350px;}
.yc{bottom:505.015500px;}
.y53{bottom:511.015500px;}
.ya4{bottom:512.221200px;}
.y7d{bottom:514.477800px;}
.ycf{bottom:515.473350px;}
.ya3{bottom:528.421200px;}
.y7c{bottom:530.677800px;}
.yce{bottom:530.773350px;}
.y3b{bottom:543.223350px;}
.ya2{bottom:544.621200px;}
.y7b{bottom:546.877800px;}
.yb{bottom:551.219250px;}
.y52{bottom:556.165500px;}
.y3a{bottom:559.423350px;}
.ya1{bottom:560.821200px;}
.ycd{bottom:561.373350px;}
.y7a{bottom:563.077800px;}
.ya{bottom:566.215500px;}
.y51{bottom:572.365500px;}
.ya0{bottom:577.021200px;}
.y79{bottom:579.277800px;}
.y9{bottom:581.215500px;}
.y50{bottom:588.565500px;}
.y39{bottom:591.823350px;}
.y78{bottom:595.477800px;}
.y4f{bottom:604.765500px;}
.ycc{bottom:607.273350px;}
.y38{bottom:608.023350px;}
.y9f{bottom:609.421200px;}
.y77{bottom:611.677800px;}
.y4e{bottom:620.965500px;}
.ycb{bottom:622.573350px;}
.y9e{bottom:623.821200px;}
.y37{bottom:624.223350px;}
.y76{bottom:627.877800px;}
.y4d{bottom:637.165500px;}
.yca{bottom:637.873350px;}
.y9d{bottom:638.221200px;}
.y36{bottom:640.423350px;}
.y75{bottom:644.077800px;}
.yc9{bottom:653.173350px;}
.y4c{bottom:653.365500px;}
.y35{bottom:656.623350px;}
.y74{bottom:660.277800px;}
.y8{bottom:667.015500px;}
.yc8{bottom:668.473350px;}
.y4b{bottom:669.565500px;}
.y34{bottom:672.823350px;}
.y73{bottom:676.477800px;}
.yc7{bottom:683.773350px;}
.y4a{bottom:685.765500px;}
.y33{bottom:689.023350px;}
.y72{bottom:692.677800px;}
.y7{bottom:695.815500px;}
.yc6{bottom:699.073350px;}
.y49{bottom:701.965500px;}
.y32{bottom:705.223350px;}
.y71{bottom:708.877800px;}
.yc5{bottom:714.373350px;}
.y48{bottom:718.165500px;}
.y31{bottom:721.423350px;}
.y6{bottom:724.615500px;}
.y70{bottom:725.077800px;}
.yc4{bottom:729.673350px;}
.y47{bottom:734.365500px;}
.y30{bottom:737.623350px;}
.yc3{bottom:744.973350px;}
.y46{bottom:750.565500px;}
.y2f{bottom:753.823350px;}
.y6f{bottom:757.477800px;}
.yc2{bottom:760.273350px;}
.y45{bottom:766.765500px;}
.y2e{bottom:770.023350px;}
.y6e{bottom:771.877800px;}
.yc1{bottom:775.573350px;}
.y44{bottom:782.965500px;}
.y2d{bottom:786.223350px;}
.yc0{bottom:790.873350px;}
.y43{bottom:799.165500px;}
.y2c{bottom:802.427850px;}
.y9c{bottom:803.473350px;}
.ybf{bottom:806.173350px;}
.y42{bottom:815.365500px;}
.y9b{bottom:819.673350px;}
.y2b{bottom:820.423350px;}
.y41{bottom:831.565500px;}
.y9a{bottom:835.873350px;}
.y2a{bottom:836.623350px;}
.ybe{bottom:836.773350px;}
.y40{bottom:847.765500px;}
.y99{bottom:852.073350px;}
.y29{bottom:852.823350px;}
.y3f{bottom:863.965500px;}
.y98{bottom:868.273350px;}
.y28{bottom:869.023350px;}
.y3e{bottom:880.165500px;}
.y97{bottom:884.473350px;}
.y27{bottom:885.223350px;}
.y3d{bottom:896.365500px;}
.y96{bottom:900.673350px;}
.y26{bottom:901.423350px;}
.y5{bottom:922.609650px;}
.y4{bottom:935.509650px;}
.y6d{bottom:948.094500px;}
.y3{bottom:948.409650px;}
.y3c{bottom:948.944850px;}
.h3{height:36.864000px;}
.hb{height:39.168000px;}
.h6{height:39.735000px;}
.h9{height:41.472000px;}
.h2{height:42.384000px;}
.ha{height:43.008000px;}
.h7{height:45.033000px;}
.h8{height:47.682000px;}
.h5{height:63.576000px;}
.h4{height:88.800000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:51.000000px;}
.x6{left:74.407950px;}
.x7{left:98.007750px;}
.x5{left:127.559100px;}
.x3{left:303.492000px;}
.x8{left:312.197850px;}
.x2{left:343.212000px;}
.x4{left:353.388000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.941333pt;}
.ls2{letter-spacing:-1.792000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.139563pt;}
.ls8{letter-spacing:0.226667pt;}
.ls4{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.816000pt;}
.ws5{word-spacing:-25.258667pt;}
.ws0{word-spacing:-17.792000pt;}
.ws59{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-14.160000pt;}
.ws2a{word-spacing:-13.584000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws71{word-spacing:-12.602667pt;}
.ws1{word-spacing:-12.454400pt;}
.ws17{word-spacing:-11.232000pt;}
.ws1b{word-spacing:-11.093333pt;}
.ws48{word-spacing:-10.794667pt;}
.ws49{word-spacing:-7.779552pt;}
.ws1c{word-spacing:-7.765333pt;}
.ws54{word-spacing:-5.808000pt;}
.ws38{word-spacing:-5.461333pt;}
.ws4b{word-spacing:-5.280000pt;}
.ws5a{word-spacing:-4.944000pt;}
.ws35{word-spacing:-4.704000pt;}
.ws4d{word-spacing:-3.936000pt;}
.ws33{word-spacing:-3.792000pt;}
.ws63{word-spacing:-3.648000pt;}
.ws2e{word-spacing:-3.600000pt;}
.ws46{word-spacing:-3.552000pt;}
.ws6b{word-spacing:-3.216000pt;}
.ws64{word-spacing:-2.592000pt;}
.ws3f{word-spacing:-2.544000pt;}
.ws37{word-spacing:-2.304000pt;}
.ws2f{word-spacing:-2.208000pt;}
.ws4c{word-spacing:-2.016000pt;}
.ws22{word-spacing:-1.872000pt;}
.ws5b{word-spacing:-1.680000pt;}
.ws45{word-spacing:-1.632000pt;}
.ws75{word-spacing:-1.541333pt;}
.ws6d{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws21{word-spacing:-0.864000pt;}
.ws53{word-spacing:-0.816000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws6a{word-spacing:-0.576000pt;}
.ws60{word-spacing:-0.512000pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws3c{word-spacing:-0.384000pt;}
.ws39{word-spacing:-0.240000pt;}
.ws73{word-spacing:-0.226667pt;}
.ws72{word-spacing:-0.192000pt;}
.ws5f{word-spacing:-0.170667pt;}
.ws55{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.045333pt;}
.wsc{word-spacing:0.160000pt;}
.wsb{word-spacing:0.192000pt;}
.ws36{word-spacing:0.480000pt;}
.ws47{word-spacing:0.528000pt;}
.ws78{word-spacing:0.680000pt;}
.ws6c{word-spacing:0.768000pt;}
.wse{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.960000pt;}
.ws61{word-spacing:1.008000pt;}
.ws4a{word-spacing:1.066667pt;}
.ws65{word-spacing:1.200000pt;}
.ws2b{word-spacing:1.440000pt;}
.ws7a{word-spacing:1.450667pt;}
.ws23{word-spacing:1.680000pt;}
.ws10{word-spacing:1.728000pt;}
.ws27{word-spacing:1.968000pt;}
.ws42{word-spacing:2.016000pt;}
.ws43{word-spacing:2.112000pt;}
.ws6e{word-spacing:2.160000pt;}
.ws40{word-spacing:2.256000pt;}
.ws66{word-spacing:2.400000pt;}
.ws8{word-spacing:2.496000pt;}
.ws16{word-spacing:2.640000pt;}
.ws6f{word-spacing:2.784000pt;}
.ws77{word-spacing:3.445333pt;}
.ws44{word-spacing:3.456000pt;}
.ws3e{word-spacing:3.552000pt;}
.ws5e{word-spacing:3.648000pt;}
.ws4{word-spacing:3.669333pt;}
.ws14{word-spacing:3.840000pt;}
.ws34{word-spacing:4.032000pt;}
.ws79{word-spacing:4.170667pt;}
.ws50{word-spacing:4.560000pt;}
.ws51{word-spacing:4.608000pt;}
.ws62{word-spacing:4.752000pt;}
.ws57{word-spacing:4.896000pt;}
.ws24{word-spacing:4.944000pt;}
.ws9{word-spacing:4.992000pt;}
.ws70{word-spacing:5.040000pt;}
.ws28{word-spacing:5.136000pt;}
.ws20{word-spacing:5.280000pt;}
.ws11{word-spacing:5.328000pt;}
.ws32{word-spacing:5.520000pt;}
.ws25{word-spacing:5.760000pt;}
.ws68{word-spacing:5.856000pt;}
.ws1f{word-spacing:5.904000pt;}
.ws3b{word-spacing:6.000000pt;}
.ws31{word-spacing:6.048000pt;}
.ws4f{word-spacing:6.144000pt;}
.ws41{word-spacing:6.192000pt;}
.ws2d{word-spacing:6.288000pt;}
.ws26{word-spacing:6.384000pt;}
.wsf{word-spacing:7.392000pt;}
.ws30{word-spacing:7.488000pt;}
.ws5d{word-spacing:7.680000pt;}
.ws5c{word-spacing:7.728000pt;}
.ws13{word-spacing:7.872000pt;}
.ws7c{word-spacing:8.976000pt;}
.ws74{word-spacing:9.021333pt;}
.ws67{word-spacing:9.552000pt;}
.ws6{word-spacing:11.184000pt;}
.ws69{word-spacing:11.472000pt;}
.ws52{word-spacing:11.616000pt;}
.ws15{word-spacing:11.808000pt;}
.wsa{word-spacing:11.952000pt;}
.ws7{word-spacing:12.000000pt;}
.ws18{word-spacing:12.960000pt;}
.ws3a{word-spacing:13.680000pt;}
.ws12{word-spacing:14.016000pt;}
.ws19{word-spacing:15.360000pt;}
.ws56{word-spacing:15.552000pt;}
.ws1d{word-spacing:18.288000pt;}
.ws58{word-spacing:21.504000pt;}
.ws76{word-spacing:22.440000pt;}
.ws1e{word-spacing:32.016000pt;}
.ws29{word-spacing:39.024000pt;}
._6{margin-left:-24.432000pt;}
._17{margin-left:-19.968000pt;}
._11{margin-left:-16.464000pt;}
._4{margin-left:-15.408000pt;}
._18{margin-left:-12.576000pt;}
._16{margin-left:-11.424000pt;}
._d{margin-left:-9.536000pt;}
._0{margin-left:-5.504000pt;}
._9{margin-left:-4.416000pt;}
._1{margin-left:-2.901333pt;}
._2{margin-left:-1.792000pt;}
._e{margin-left:-0.896000pt;}
._12{width:0.896000pt;}
._3{width:1.792000pt;}
._f{width:2.688000pt;}
._5{width:3.984000pt;}
._8{width:5.040000pt;}
._13{width:6.480000pt;}
._c{width:7.600000pt;}
._10{width:8.624000pt;}
._14{width:9.648000pt;}
._7{width:11.856000pt;}
._a{width:18.096000pt;}
._b{width:172.752000pt;}
._15{width:206.336000pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:29.866667pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:23.777467pt;}
.y1{bottom:36.577467pt;}
.y95{bottom:66.780267pt;}
.ybd{bottom:69.574400pt;}
.y25{bottom:72.902667pt;}
.y6c{bottom:73.572000pt;}
.y94{bottom:81.180267pt;}
.ybc{bottom:83.974400pt;}
.y24{bottom:87.302667pt;}
.y6b{bottom:87.972000pt;}
.y93{bottom:95.580267pt;}
.ybb{bottom:98.374400pt;}
.y23{bottom:101.702667pt;}
.y6a{bottom:102.372000pt;}
.y92{bottom:109.980267pt;}
.yba{bottom:112.774400pt;}
.y69{bottom:116.772000pt;}
.y91{bottom:124.380267pt;}
.yb9{bottom:127.174400pt;}
.y22{bottom:130.502667pt;}
.y68{bottom:131.304000pt;}
.y90{bottom:138.780267pt;}
.yb8{bottom:141.574400pt;}
.y21{bottom:144.902667pt;}
.y67{bottom:145.846667pt;}
.yb7{bottom:155.974400pt;}
.y20{bottom:159.302667pt;}
.y66{bottom:160.378667pt;}
.y8f{bottom:161.180267pt;}
.yb6{bottom:170.374400pt;}
.y1f{bottom:173.702667pt;}
.y65{bottom:174.910667pt;}
.yb5{bottom:184.774400pt;}
.y8e{bottom:186.780267pt;}
.y1e{bottom:188.102667pt;}
.y64{bottom:189.442667pt;}
.yb4{bottom:199.174400pt;}
.y1d{bottom:202.502667pt;}
.y63{bottom:203.974667pt;}
.yb3{bottom:213.574400pt;}
.y1c{bottom:216.902667pt;}
.y62{bottom:218.506667pt;}
.y8d{bottom:226.913600pt;}
.yb2{bottom:227.974400pt;}
.y1b{bottom:231.302667pt;}
.y61{bottom:232.906667pt;}
.y8c{bottom:241.313600pt;}
.yb1{bottom:242.374400pt;}
.y1a{bottom:245.702667pt;}
.y60{bottom:247.306667pt;}
.y8b{bottom:255.713600pt;}
.y19{bottom:260.102667pt;}
.y5f{bottom:261.706667pt;}
.y8a{bottom:270.113600pt;}
.y18{bottom:274.502667pt;}
.y5e{bottom:276.106667pt;}
.yb0{bottom:282.507733pt;}
.y89{bottom:284.513600pt;}
.y17{bottom:288.902667pt;}
.y5d{bottom:290.506667pt;}
.yaf{bottom:296.907733pt;}
.y88{bottom:298.913600pt;}
.y16{bottom:303.302667pt;}
.y5c{bottom:304.906667pt;}
.yae{bottom:311.307733pt;}
.y87{bottom:313.313600pt;}
.y15{bottom:317.702667pt;}
.y5b{bottom:319.306667pt;}
.yad{bottom:325.707733pt;}
.y86{bottom:327.713600pt;}
.y14{bottom:332.102667pt;}
.y5a{bottom:333.706667pt;}
.yac{bottom:340.107733pt;}
.y85{bottom:342.113600pt;}
.y13{bottom:346.506667pt;}
.y59{bottom:348.106667pt;}
.yab{bottom:354.507733pt;}
.y84{bottom:356.513600pt;}
.y12{bottom:362.502667pt;}
.y58{bottom:362.506667pt;}
.yaa{bottom:368.907733pt;}
.y83{bottom:370.913600pt;}
.yd5{bottom:376.598533pt;}
.y11{bottom:376.902667pt;}
.y57{bottom:377.038667pt;}
.ya9{bottom:383.307733pt;}
.y82{bottom:385.313600pt;}
.yd4{bottom:390.198533pt;}
.y10{bottom:391.302667pt;}
.y56{bottom:391.570667pt;}
.ya8{bottom:397.707733pt;}
.y81{bottom:399.713600pt;}
.yd3{bottom:403.798533pt;}
.yf{bottom:405.702667pt;}
.y55{bottom:406.102667pt;}
.ya7{bottom:412.107733pt;}
.y80{bottom:414.113600pt;}
.yd2{bottom:417.398533pt;}
.ye{bottom:420.102667pt;}
.ya6{bottom:426.507733pt;}
.y7f{bottom:428.513600pt;}
.y54{bottom:428.636000pt;}
.yd1{bottom:430.998533pt;}
.yd{bottom:434.502667pt;}
.ya5{bottom:440.907733pt;}
.y7e{bottom:442.913600pt;}
.yd0{bottom:444.598533pt;}
.yc{bottom:448.902667pt;}
.y53{bottom:454.236000pt;}
.ya4{bottom:455.307733pt;}
.y7d{bottom:457.313600pt;}
.ycf{bottom:458.198533pt;}
.ya3{bottom:469.707733pt;}
.y7c{bottom:471.713600pt;}
.yce{bottom:471.798533pt;}
.y3b{bottom:482.865200pt;}
.ya2{bottom:484.107733pt;}
.y7b{bottom:486.113600pt;}
.yb{bottom:489.972667pt;}
.y52{bottom:494.369333pt;}
.y3a{bottom:497.265200pt;}
.ya1{bottom:498.507733pt;}
.ycd{bottom:498.998533pt;}
.y7a{bottom:500.513600pt;}
.ya{bottom:503.302667pt;}
.y51{bottom:508.769333pt;}
.ya0{bottom:512.907733pt;}
.y79{bottom:514.913600pt;}
.y9{bottom:516.636000pt;}
.y50{bottom:523.169333pt;}
.y39{bottom:526.065200pt;}
.y78{bottom:529.313600pt;}
.y4f{bottom:537.569333pt;}
.ycc{bottom:539.798533pt;}
.y38{bottom:540.465200pt;}
.y9f{bottom:541.707733pt;}
.y77{bottom:543.713600pt;}
.y4e{bottom:551.969333pt;}
.ycb{bottom:553.398533pt;}
.y9e{bottom:554.507733pt;}
.y37{bottom:554.865200pt;}
.y76{bottom:558.113600pt;}
.y4d{bottom:566.369333pt;}
.yca{bottom:566.998533pt;}
.y9d{bottom:567.307733pt;}
.y36{bottom:569.265200pt;}
.y75{bottom:572.513600pt;}
.yc9{bottom:580.598533pt;}
.y4c{bottom:580.769333pt;}
.y35{bottom:583.665200pt;}
.y74{bottom:586.913600pt;}
.y8{bottom:592.902667pt;}
.yc8{bottom:594.198533pt;}
.y4b{bottom:595.169333pt;}
.y34{bottom:598.065200pt;}
.y73{bottom:601.313600pt;}
.yc7{bottom:607.798533pt;}
.y4a{bottom:609.569333pt;}
.y33{bottom:612.465200pt;}
.y72{bottom:615.713600pt;}
.y7{bottom:618.502667pt;}
.yc6{bottom:621.398533pt;}
.y49{bottom:623.969333pt;}
.y32{bottom:626.865200pt;}
.y71{bottom:630.113600pt;}
.yc5{bottom:634.998533pt;}
.y48{bottom:638.369333pt;}
.y31{bottom:641.265200pt;}
.y6{bottom:644.102667pt;}
.y70{bottom:644.513600pt;}
.yc4{bottom:648.598533pt;}
.y47{bottom:652.769333pt;}
.y30{bottom:655.665200pt;}
.yc3{bottom:662.198533pt;}
.y46{bottom:667.169333pt;}
.y2f{bottom:670.065200pt;}
.y6f{bottom:673.313600pt;}
.yc2{bottom:675.798533pt;}
.y45{bottom:681.569333pt;}
.y2e{bottom:684.465200pt;}
.y6e{bottom:686.113600pt;}
.yc1{bottom:689.398533pt;}
.y44{bottom:695.969333pt;}
.y2d{bottom:698.865200pt;}
.yc0{bottom:702.998533pt;}
.y43{bottom:710.369333pt;}
.y2c{bottom:713.269200pt;}
.y9c{bottom:714.198533pt;}
.ybf{bottom:716.598533pt;}
.y42{bottom:724.769333pt;}
.y9b{bottom:728.598533pt;}
.y2b{bottom:729.265200pt;}
.y41{bottom:739.169333pt;}
.y9a{bottom:742.998533pt;}
.y2a{bottom:743.665200pt;}
.ybe{bottom:743.798533pt;}
.y40{bottom:753.569333pt;}
.y99{bottom:757.398533pt;}
.y29{bottom:758.065200pt;}
.y3f{bottom:767.969333pt;}
.y98{bottom:771.798533pt;}
.y28{bottom:772.465200pt;}
.y3e{bottom:782.369333pt;}
.y97{bottom:786.198533pt;}
.y27{bottom:786.865200pt;}
.y3d{bottom:796.769333pt;}
.y96{bottom:800.598533pt;}
.y26{bottom:801.265200pt;}
.y5{bottom:820.097467pt;}
.y4{bottom:831.564133pt;}
.y6d{bottom:842.750667pt;}
.y3{bottom:843.030800pt;}
.y3c{bottom:843.506533pt;}
.h3{height:32.768000pt;}
.hb{height:34.816000pt;}
.h6{height:35.320000pt;}
.h9{height:36.864000pt;}
.h2{height:37.674667pt;}
.ha{height:38.229333pt;}
.h7{height:40.029333pt;}
.h8{height:42.384000pt;}
.h5{height:56.512000pt;}
.h4{height:78.933333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:45.333333pt;}
.x6{left:66.140400pt;}
.x7{left:87.118000pt;}
.x5{left:113.385867pt;}
.x3{left:269.770667pt;}
.x8{left:277.509200pt;}
.x2{left:305.077333pt;}
.x4{left:314.122667pt;}
}




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