
    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_1ff325f35321bd57b6c6daea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_fefe79082062c7db617f3ac7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_a154c6ba1261a904487b6678.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd60429bb787fc0f5b7f3fe0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_296fab34b4d6f55251c85d30.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5ceeacb5af6d540d1faaa38.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_05446c11dbff44a95d78e990.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b135c664a9058244c5023795.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-6.240000px;}
.ls7{letter-spacing:-4.776000px;}
.ls6{letter-spacing:-4.062000px;}
.ls11{letter-spacing:-2.772000px;}
.ls10{letter-spacing:-2.160000px;}
.lsf{letter-spacing:-1.362000px;}
.ls14{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.152400px;}
.ls1d{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.238080px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.828000px;}
.ls1a{letter-spacing:0.900000px;}
.ls4{letter-spacing:2.880000px;}
.ls1c{letter-spacing:38.340000px;}
.ls12{letter-spacing:153.360000px;}
.lsb{letter-spacing:180.720000px;}
.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;}
}
.ws3{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.272000px;}
.ws4{word-spacing:-16.145400px;}
.wsa{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wse{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.788000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-7.021440px;}
._15{margin-left:-5.850000px;}
._3{margin-left:-4.608000px;}
._4{margin-left:-3.600000px;}
._2{margin-left:-2.248080px;}
._0{margin-left:-1.136880px;}
._a{width:1.009920px;}
._1{width:2.031840px;}
._d{width:3.466080px;}
._9{width:4.877520px;}
._7{width:6.095520px;}
._8{width:7.290720px;}
._11{width:8.550000px;}
._10{width:9.671040px;}
._12{width:10.920480px;}
._b{width:12.011760px;}
._e{width:13.093200px;}
._1a{width:14.137440px;}
._19{width:15.433920px;}
._c{width:16.920960px;}
._5{width:18.047520px;}
._6{width:19.634880px;}
._18{width:21.201120px;}
._47{width:22.535520px;}
._13{width:23.581440px;}
._14{width:24.683040px;}
._26{width:26.066640px;}
._3b{width:28.179840px;}
._34{width:29.488560px;}
._2f{width:30.530880px;}
._45{width:33.265920px;}
._1d{width:35.305920px;}
._1e{width:37.486320px;}
._42{width:39.173760px;}
._21{width:42.857280px;}
._2e{width:44.713680px;}
._17{width:46.133760px;}
._16{width:47.664000px;}
._43{width:49.077360px;}
._27{width:50.143680px;}
._28{width:55.424160px;}
._48{width:57.309840px;}
._2a{width:64.915200px;}
._22{width:71.520240px;}
._2b{width:79.268880px;}
._37{width:81.990720px;}
._2c{width:84.343920px;}
._44{width:94.575600px;}
._30{width:96.751440px;}
._23{width:114.595200px;}
._35{width:124.426320px;}
._39{width:127.782240px;}
._25{width:128.923920px;}
._20{width:131.155200px;}
._31{width:136.576800px;}
._38{width:143.902080px;}
._40{width:146.471760px;}
._41{width:147.978240px;}
._32{width:162.979920px;}
._46{width:165.040080px;}
._24{width:167.918400px;}
._3f{width:173.178000px;}
._2d{width:178.384320px;}
._1c{width:191.301120px;}
._29{width:193.685760px;}
._1b{width:233.690640px;}
._1f{width:256.478400px;}
._3c{width:271.310400px;}
._3d{width:273.342240px;}
._36{width:386.288160px;}
._33{width:606.868800px;}
._3a{width:660.527280px;}
._3e{width:689.869440px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:3.240000px;}
.y79{bottom:3.600000px;}
.y81{bottom:3.960000px;}
.y7e{bottom:4.140000px;}
.yb2{bottom:4.320000px;}
.yb9{bottom:12.060000px;}
.ybf{bottom:20.520000px;}
.ye4{bottom:20.700000px;}
.yc8{bottom:20.874000px;}
.yce{bottom:20.880000px;}
.yfe{bottom:20.925000px;}
.yaf{bottom:21.240000px;}
.yb1{bottom:21.600000px;}
.y78{bottom:22.680000px;}
.y87{bottom:22.860000px;}
.y84{bottom:23.034000px;}
.y7d{bottom:23.040000px;}
.yb8{bottom:29.340000px;}
.yde{bottom:37.620000px;}
.ybe{bottom:37.800000px;}
.yd8{bottom:37.980000px;}
.yef{bottom:38.010000px;}
.yc7{bottom:38.154000px;}
.ycd{bottom:38.160000px;}
.yf5{bottom:38.205000px;}
.yae{bottom:38.520000px;}
.yb0{bottom:38.880000px;}
.y77{bottom:41.580000px;}
.y80{bottom:41.940000px;}
.y86{bottom:41.970000px;}
.y7c{bottom:41.985000px;}
.y83{bottom:42.114000px;}
.y8d{bottom:42.120000px;}
.yb7{bottom:46.620000px;}
.yd6{bottom:54.900000px;}
.yee{bottom:54.930000px;}
.yc5{bottom:55.074000px;}
.ybd{bottom:55.080000px;}
.yfd{bottom:55.125000px;}
.yd7{bottom:55.260000px;}
.ycc{bottom:55.290000px;}
.yc6{bottom:55.434000px;}
.yc3{bottom:55.440000px;}
.yf4{bottom:55.485000px;}
.y4{bottom:58.716000px;}
.y76{bottom:60.660000px;}
.y7b{bottom:61.065000px;}
.yb6{bottom:63.900000px;}
.yca{bottom:72.210000px;}
.ye8{bottom:72.225000px;}
.yeb{bottom:72.354000px;}
.yf8{bottom:72.360000px;}
.ybc{bottom:72.405000px;}
.yd4{bottom:72.540000px;}
.ycb{bottom:72.570000px;}
.ye9{bottom:72.585000px;}
.yec{bottom:72.714000px;}
.yf9{bottom:72.720000px;}
.yc2{bottom:72.765000px;}
.yb4{bottom:80.640000px;}
.y3{bottom:80.676000px;}
.yb5{bottom:81.000000px;}
.yd1{bottom:89.460000px;}
.yfc{bottom:89.505000px;}
.ybb{bottom:89.685000px;}
.yd3{bottom:89.820000px;}
.ydc{bottom:89.865000px;}
.yc1{bottom:90.045000px;}
.yd0{bottom:106.740000px;}
.yda{bottom:106.785000px;}
.yd2{bottom:107.100000px;}
.ydb{bottom:107.145000px;}
.y72{bottom:115.236000px;}
.yea{bottom:119.736000px;}
.yaa{bottom:124.416000px;}
.y3b{bottom:125.496000px;}
.y82{bottom:127.116000px;}
.y71{bottom:134.136000px;}
.yc4{bottom:134.856000px;}
.ya9{bottom:143.496000px;}
.y3a{bottom:144.576000px;}
.y70{bottom:153.210000px;}
.ya8{bottom:162.390000px;}
.y103{bottom:163.290000px;}
.y39{bottom:163.470000px;}
.y6f{bottom:172.110000px;}
.ya7{bottom:181.290000px;}
.y38{bottom:182.550000px;}
.y7f{bottom:184.890000px;}
.y6e{bottom:191.190000px;}
.y102{bottom:192.630000px;}
.ya6{bottom:200.370000px;}
.y37{bottom:201.450000px;}
.yba{bottom:203.790000px;}
.ye7{bottom:206.130000px;}
.y101{bottom:209.730000px;}
.y6d{bottom:210.090000px;}
.ya5{bottom:219.270000px;}
.y36{bottom:220.530000px;}
.y100{bottom:226.830000px;}
.y6c{bottom:228.990000px;}
.ya4{bottom:238.350000px;}
.y35{bottom:239.430000px;}
.y7a{bottom:242.490000px;}
.yff{bottom:244.110000px;}
.y6b{bottom:248.070000px;}
.ya3{bottom:257.250000px;}
.yfb{bottom:257.790000px;}
.y34{bottom:258.330000px;}
.y6a{bottom:266.970000px;}
.ya2{bottom:276.195000px;}
.y33{bottom:277.455000px;}
.y69{bottom:286.095000px;}
.ye6{bottom:292.395000px;}
.ya1{bottom:295.275000px;}
.y32{bottom:296.355000px;}
.y68{bottom:304.635000px;}
.yb3{bottom:307.335000px;}
.ya0{bottom:314.175000px;}
.y31{bottom:315.435000px;}
.y75{bottom:319.215000px;}
.y67{bottom:323.895000px;}
.y9f{bottom:332.895000px;}
.y30{bottom:334.335000px;}
.y66{bottom:342.975000px;}
.ye5{bottom:344.055000px;}
.y9e{bottom:352.155000px;}
.y2f{bottom:353.235000px;}
.yfa{bottom:361.335000px;}
.y65{bottom:361.875000px;}
.y9d{bottom:371.235000px;}
.y2e{bottom:372.315000px;}
.y64{bottom:380.955000px;}
.y9c{bottom:390.135000px;}
.y2d{bottom:391.215000px;}
.y74{bottom:399.495000px;}
.y63{bottom:399.855000px;}
.yad{bottom:402.015000px;}
.y9b{bottom:409.035000px;}
.y2c{bottom:410.295000px;}
.ye3{bottom:413.175000px;}
.y62{bottom:418.935000px;}
.y9a{bottom:428.115000px;}
.y2b{bottom:429.195000px;}
.yf7{bottom:430.275000px;}
.y61{bottom:437.835000px;}
.y99{bottom:447.015000px;}
.y2a{bottom:448.095000px;}
.y60{bottom:456.735000px;}
.yac{bottom:457.995000px;}
.ye2{bottom:464.835000px;}
.y98{bottom:466.095000px;}
.y29{bottom:467.175000px;}
.y5f{bottom:475.815000px;}
.y97{bottom:484.995000px;}
.y28{bottom:486.075000px;}
.y5e{bottom:494.715000px;}
.y96{bottom:503.895000px;}
.y27{bottom:505.155000px;}
.y5d{bottom:513.795000px;}
.ye1{bottom:516.495000px;}
.y95{bottom:522.975000px;}
.y26{bottom:524.055000px;}
.y5c{bottom:532.695000px;}
.y94{bottom:541.875000px;}
.y25{bottom:542.955000px;}
.y5b{bottom:551.595000px;}
.y93{bottom:557.565000px;}
.y24{bottom:562.065000px;}
.ye0{bottom:568.365000px;}
.y5a{bottom:570.705000px;}
.y23{bottom:580.965000px;}
.y59{bottom:589.605000px;}
.y92{bottom:596.265000px;}
.y22{bottom:600.045000px;}
.y58{bottom:608.685000px;}
.y21{bottom:618.945000px;}
.ydf{bottom:620.025000px;}
.y57{bottom:627.585000px;}
.yf6{bottom:637.305000px;}
.y20{bottom:637.845000px;}
.y56{bottom:646.485000px;}
.y91{bottom:654.045000px;}
.y1f{bottom:656.925000px;}
.y55{bottom:665.565000px;}
.y1e{bottom:675.825000px;}
.y54{bottom:684.465000px;}
.ydd{bottom:689.145000px;}
.y90{bottom:692.745000px;}
.y1d{bottom:694.905000px;}
.y53{bottom:703.545000px;}
.y1c{bottom:713.445000px;}
.y52{bottom:722.445000px;}
.y8f{bottom:731.445000px;}
.y1b{bottom:733.065000px;}
.y51{bottom:741.345000px;}
.y1a{bottom:753.045000px;}
.yd9{bottom:758.085000px;}
.y50{bottom:760.425000px;}
.y19{bottom:770.325000px;}
.y4f{bottom:779.325000px;}
.y18{bottom:787.605000px;}
.y8e{bottom:789.045000px;}
.y4e{bottom:798.405000px;}
.y17{bottom:804.885000px;}
.yf3{bottom:809.745000px;}
.y4d{bottom:817.305000px;}
.y16{bottom:821.985000px;}
.yab{bottom:835.845000px;}
.y4c{bottom:836.205000px;}
.y15{bottom:839.310000px;}
.y8c{bottom:846.690000px;}
.y4b{bottom:855.330000px;}
.y14{bottom:856.590000px;}
.y13{bottom:873.870000px;}
.y4a{bottom:874.230000px;}
.yd5{bottom:878.910000px;}
.y12{bottom:891.150000px;}
.y49{bottom:892.950000px;}
.y73{bottom:893.310000px;}
.y8b{bottom:904.470000px;}
.y11{bottom:908.430000px;}
.y48{bottom:912.210000px;}
.yf2{bottom:913.290000px;}
.y10{bottom:925.530000px;}
.y47{bottom:931.290000px;}
.yf{bottom:942.810000px;}
.y8a{bottom:943.170000px;}
.ycf{bottom:947.850000px;}
.y46{bottom:950.190000px;}
.ye{bottom:960.090000px;}
.yf1{bottom:965.130000px;}
.y45{bottom:969.090000px;}
.yd{bottom:978.090000px;}
.y89{bottom:981.870000px;}
.y44{bottom:988.170000px;}
.yc{bottom:998.790000px;}
.y43{bottom:1007.070000px;}
.yf0{bottom:1016.790000px;}
.yb{bottom:1019.130000px;}
.y42{bottom:1026.150000px;}
.ya{bottom:1038.210000px;}
.y88{bottom:1039.470000px;}
.y41{bottom:1045.050000px;}
.y9{bottom:1057.110000px;}
.y40{bottom:1063.950000px;}
.yc9{bottom:1068.630000px;}
.y8{bottom:1076.010000px;}
.y3f{bottom:1083.030000px;}
.yed{bottom:1085.910000px;}
.y7{bottom:1096.710000px;}
.y85{bottom:1097.250000px;}
.y3e{bottom:1101.930000px;}
.y6{bottom:1117.410000px;}
.y3d{bottom:1121.010000px;}
.y5{bottom:1138.140000px;}
.y3c{bottom:1139.940000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.h16{height:37.980000px;}
.hb{height:41.726953px;}
.h9{height:43.273477px;}
.he{height:46.251562px;}
.h11{height:47.965781px;}
.ha{height:49.255313px;}
.h20{height:51.660000px;}
.h24{height:51.840000px;}
.h21{height:51.876000px;}
.h4{height:52.136719px;}
.h17{height:52.380000px;}
.hf{height:54.596250px;}
.h13{height:56.880000px;}
.h15{height:56.916000px;}
.h14{height:57.060000px;}
.h1e{height:59.614102px;}
.hc{height:61.423863px;}
.h3{height:62.211094px;}
.h6{height:66.078281px;}
.h7{height:68.084282px;}
.h1a{height:68.940000px;}
.hd{height:68.956875px;}
.h23{height:68.976000px;}
.h1f{height:69.120000px;}
.h2{height:71.613281px;}
.h8{height:74.004654px;}
.h5{height:74.953125px;}
.h10{height:75.960000px;}
.h12{height:75.996000px;}
.h26{height:86.220000px;}
.h1b{height:86.256000px;}
.h22{height:86.400000px;}
.h18{height:94.680000px;}
.h19{height:103.536000px;}
.h25{height:120.600000px;}
.h1c{height:120.780000px;}
.h1d{height:120.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:79.920000px;}
.w4{width:137.556000px;}
.w5{width:143.460000px;}
.w7{width:153.750000px;}
.w8{width:159.120000px;}
.w6{width:164.010000px;}
.w9{width:518.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x14{left:10.800000px;}
.xd{left:50.574000px;}
.x13{left:104.574000px;}
.x4{left:106.415987px;}
.x6{left:123.155987px;}
.xc{left:148.895987px;}
.x5{left:180.209987px;}
.xf{left:186.330000px;}
.x2{left:192.269987px;}
.x12{left:265.530000px;}
.x10{left:323.895000px;}
.xb{left:334.694987px;}
.x7{left:344.594987px;}
.xa{left:363.314987px;}
.x9{left:412.274987px;}
.x1{left:421.634987px;}
.x3{left:432.074987px;}
.x8{left:466.994987px;}
.x11{left:631.365000px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-5.546667pt;}
.ls7{letter-spacing:-4.245333pt;}
.ls6{letter-spacing:-3.610667pt;}
.ls11{letter-spacing:-2.464000pt;}
.ls10{letter-spacing:-1.920000pt;}
.lsf{letter-spacing:-1.210667pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.135467pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.211627pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls4{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:34.080000pt;}
.ls12{letter-spacing:136.320000pt;}
.lsb{letter-spacing:160.640000pt;}
.ws3{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.464000pt;}
.ws4{word-spacing:-14.351467pt;}
.wsa{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.256000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-6.241280pt;}
._15{margin-left:-5.200000pt;}
._3{margin-left:-4.096000pt;}
._4{margin-left:-3.200000pt;}
._2{margin-left:-1.998293pt;}
._0{margin-left:-1.010560pt;}
._a{width:0.897707pt;}
._1{width:1.806080pt;}
._d{width:3.080960pt;}
._9{width:4.335573pt;}
._7{width:5.418240pt;}
._8{width:6.480640pt;}
._11{width:7.600000pt;}
._10{width:8.596480pt;}
._12{width:9.707093pt;}
._b{width:10.677120pt;}
._e{width:11.638400pt;}
._1a{width:12.566613pt;}
._19{width:13.719040pt;}
._c{width:15.040853pt;}
._5{width:16.042240pt;}
._6{width:17.453227pt;}
._18{width:18.845440pt;}
._47{width:20.031573pt;}
._13{width:20.961280pt;}
._14{width:21.940480pt;}
._26{width:23.170347pt;}
._3b{width:25.048747pt;}
._34{width:26.212053pt;}
._2f{width:27.138560pt;}
._45{width:29.569707pt;}
._1d{width:31.383040pt;}
._1e{width:33.321173pt;}
._42{width:34.821120pt;}
._21{width:38.095360pt;}
._2e{width:39.745493pt;}
._17{width:41.007787pt;}
._16{width:42.368000pt;}
._43{width:43.624320pt;}
._27{width:44.572160pt;}
._28{width:49.265920pt;}
._48{width:50.942080pt;}
._2a{width:57.702400pt;}
._22{width:63.573547pt;}
._2b{width:70.461227pt;}
._37{width:72.880640pt;}
._2c{width:74.972373pt;}
._44{width:84.067200pt;}
._30{width:86.001280pt;}
._23{width:101.862400pt;}
._35{width:110.601173pt;}
._39{width:113.584213pt;}
._25{width:114.599040pt;}
._20{width:116.582400pt;}
._31{width:121.401600pt;}
._38{width:127.912960pt;}
._40{width:130.197120pt;}
._41{width:131.536213pt;}
._32{width:144.871040pt;}
._46{width:146.702293pt;}
._24{width:149.260800pt;}
._3f{width:153.936000pt;}
._2d{width:158.563840pt;}
._1c{width:170.045440pt;}
._29{width:172.165120pt;}
._1b{width:207.725013pt;}
._1f{width:227.980800pt;}
._3c{width:241.164800pt;}
._3d{width:242.970880pt;}
._36{width:343.367253pt;}
._33{width:539.438933pt;}
._3a{width:587.135360pt;}
._3e{width:613.217280pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:2.880000pt;}
.y79{bottom:3.200000pt;}
.y81{bottom:3.520000pt;}
.y7e{bottom:3.680000pt;}
.yb2{bottom:3.840000pt;}
.yb9{bottom:10.720000pt;}
.ybf{bottom:18.240000pt;}
.ye4{bottom:18.400000pt;}
.yc8{bottom:18.554667pt;}
.yce{bottom:18.560000pt;}
.yfe{bottom:18.600000pt;}
.yaf{bottom:18.880000pt;}
.yb1{bottom:19.200000pt;}
.y78{bottom:20.160000pt;}
.y87{bottom:20.320000pt;}
.y84{bottom:20.474667pt;}
.y7d{bottom:20.480000pt;}
.yb8{bottom:26.080000pt;}
.yde{bottom:33.440000pt;}
.ybe{bottom:33.600000pt;}
.yd8{bottom:33.760000pt;}
.yef{bottom:33.786667pt;}
.yc7{bottom:33.914667pt;}
.ycd{bottom:33.920000pt;}
.yf5{bottom:33.960000pt;}
.yae{bottom:34.240000pt;}
.yb0{bottom:34.560000pt;}
.y77{bottom:36.960000pt;}
.y80{bottom:37.280000pt;}
.y86{bottom:37.306667pt;}
.y7c{bottom:37.320000pt;}
.y83{bottom:37.434667pt;}
.y8d{bottom:37.440000pt;}
.yb7{bottom:41.440000pt;}
.yd6{bottom:48.800000pt;}
.yee{bottom:48.826667pt;}
.yc5{bottom:48.954667pt;}
.ybd{bottom:48.960000pt;}
.yfd{bottom:49.000000pt;}
.yd7{bottom:49.120000pt;}
.ycc{bottom:49.146667pt;}
.yc6{bottom:49.274667pt;}
.yc3{bottom:49.280000pt;}
.yf4{bottom:49.320000pt;}
.y4{bottom:52.192000pt;}
.y76{bottom:53.920000pt;}
.y7b{bottom:54.280000pt;}
.yb6{bottom:56.800000pt;}
.yca{bottom:64.186667pt;}
.ye8{bottom:64.200000pt;}
.yeb{bottom:64.314667pt;}
.yf8{bottom:64.320000pt;}
.ybc{bottom:64.360000pt;}
.yd4{bottom:64.480000pt;}
.ycb{bottom:64.506667pt;}
.ye9{bottom:64.520000pt;}
.yec{bottom:64.634667pt;}
.yf9{bottom:64.640000pt;}
.yc2{bottom:64.680000pt;}
.yb4{bottom:71.680000pt;}
.y3{bottom:71.712000pt;}
.yb5{bottom:72.000000pt;}
.yd1{bottom:79.520000pt;}
.yfc{bottom:79.560000pt;}
.ybb{bottom:79.720000pt;}
.yd3{bottom:79.840000pt;}
.ydc{bottom:79.880000pt;}
.yc1{bottom:80.040000pt;}
.yd0{bottom:94.880000pt;}
.yda{bottom:94.920000pt;}
.yd2{bottom:95.200000pt;}
.ydb{bottom:95.240000pt;}
.y72{bottom:102.432000pt;}
.yea{bottom:106.432000pt;}
.yaa{bottom:110.592000pt;}
.y3b{bottom:111.552000pt;}
.y82{bottom:112.992000pt;}
.y71{bottom:119.232000pt;}
.yc4{bottom:119.872000pt;}
.ya9{bottom:127.552000pt;}
.y3a{bottom:128.512000pt;}
.y70{bottom:136.186667pt;}
.ya8{bottom:144.346667pt;}
.y103{bottom:145.146667pt;}
.y39{bottom:145.306667pt;}
.y6f{bottom:152.986667pt;}
.ya7{bottom:161.146667pt;}
.y38{bottom:162.266667pt;}
.y7f{bottom:164.346667pt;}
.y6e{bottom:169.946667pt;}
.y102{bottom:171.226667pt;}
.ya6{bottom:178.106667pt;}
.y37{bottom:179.066667pt;}
.yba{bottom:181.146667pt;}
.ye7{bottom:183.226667pt;}
.y101{bottom:186.426667pt;}
.y6d{bottom:186.746667pt;}
.ya5{bottom:194.906667pt;}
.y36{bottom:196.026667pt;}
.y100{bottom:201.626667pt;}
.y6c{bottom:203.546667pt;}
.ya4{bottom:211.866667pt;}
.y35{bottom:212.826667pt;}
.y7a{bottom:215.546667pt;}
.yff{bottom:216.986667pt;}
.y6b{bottom:220.506667pt;}
.ya3{bottom:228.666667pt;}
.yfb{bottom:229.146667pt;}
.y34{bottom:229.626667pt;}
.y6a{bottom:237.306667pt;}
.ya2{bottom:245.506667pt;}
.y33{bottom:246.626667pt;}
.y69{bottom:254.306667pt;}
.ye6{bottom:259.906667pt;}
.ya1{bottom:262.466667pt;}
.y32{bottom:263.426667pt;}
.y68{bottom:270.786667pt;}
.yb3{bottom:273.186667pt;}
.ya0{bottom:279.266667pt;}
.y31{bottom:280.386667pt;}
.y75{bottom:283.746667pt;}
.y67{bottom:287.906667pt;}
.y9f{bottom:295.906667pt;}
.y30{bottom:297.186667pt;}
.y66{bottom:304.866667pt;}
.ye5{bottom:305.826667pt;}
.y9e{bottom:313.026667pt;}
.y2f{bottom:313.986667pt;}
.yfa{bottom:321.186667pt;}
.y65{bottom:321.666667pt;}
.y9d{bottom:329.986667pt;}
.y2e{bottom:330.946667pt;}
.y64{bottom:338.626667pt;}
.y9c{bottom:346.786667pt;}
.y2d{bottom:347.746667pt;}
.y74{bottom:355.106667pt;}
.y63{bottom:355.426667pt;}
.yad{bottom:357.346667pt;}
.y9b{bottom:363.586667pt;}
.y2c{bottom:364.706667pt;}
.ye3{bottom:367.266667pt;}
.y62{bottom:372.386667pt;}
.y9a{bottom:380.546667pt;}
.y2b{bottom:381.506667pt;}
.yf7{bottom:382.466667pt;}
.y61{bottom:389.186667pt;}
.y99{bottom:397.346667pt;}
.y2a{bottom:398.306667pt;}
.y60{bottom:405.986667pt;}
.yac{bottom:407.106667pt;}
.ye2{bottom:413.186667pt;}
.y98{bottom:414.306667pt;}
.y29{bottom:415.266667pt;}
.y5f{bottom:422.946667pt;}
.y97{bottom:431.106667pt;}
.y28{bottom:432.066667pt;}
.y5e{bottom:439.746667pt;}
.y96{bottom:447.906667pt;}
.y27{bottom:449.026667pt;}
.y5d{bottom:456.706667pt;}
.ye1{bottom:459.106667pt;}
.y95{bottom:464.866667pt;}
.y26{bottom:465.826667pt;}
.y5c{bottom:473.506667pt;}
.y94{bottom:481.666667pt;}
.y25{bottom:482.626667pt;}
.y5b{bottom:490.306667pt;}
.y93{bottom:495.613333pt;}
.y24{bottom:499.613333pt;}
.ye0{bottom:505.213333pt;}
.y5a{bottom:507.293333pt;}
.y23{bottom:516.413333pt;}
.y59{bottom:524.093333pt;}
.y92{bottom:530.013333pt;}
.y22{bottom:533.373333pt;}
.y58{bottom:541.053333pt;}
.y21{bottom:550.173333pt;}
.ydf{bottom:551.133333pt;}
.y57{bottom:557.853333pt;}
.yf6{bottom:566.493333pt;}
.y20{bottom:566.973333pt;}
.y56{bottom:574.653333pt;}
.y91{bottom:581.373333pt;}
.y1f{bottom:583.933333pt;}
.y55{bottom:591.613333pt;}
.y1e{bottom:600.733333pt;}
.y54{bottom:608.413333pt;}
.ydd{bottom:612.573333pt;}
.y90{bottom:615.773333pt;}
.y1d{bottom:617.693333pt;}
.y53{bottom:625.373333pt;}
.y1c{bottom:634.173333pt;}
.y52{bottom:642.173333pt;}
.y8f{bottom:650.173333pt;}
.y1b{bottom:651.613333pt;}
.y51{bottom:658.973333pt;}
.y1a{bottom:669.373333pt;}
.yd9{bottom:673.853333pt;}
.y50{bottom:675.933333pt;}
.y19{bottom:684.733333pt;}
.y4f{bottom:692.733333pt;}
.y18{bottom:700.093333pt;}
.y8e{bottom:701.373333pt;}
.y4e{bottom:709.693333pt;}
.y17{bottom:715.453333pt;}
.yf3{bottom:719.773333pt;}
.y4d{bottom:726.493333pt;}
.y16{bottom:730.653333pt;}
.yab{bottom:742.973333pt;}
.y4c{bottom:743.293333pt;}
.y15{bottom:746.053333pt;}
.y8c{bottom:752.613333pt;}
.y4b{bottom:760.293333pt;}
.y14{bottom:761.413333pt;}
.y13{bottom:776.773333pt;}
.y4a{bottom:777.093333pt;}
.yd5{bottom:781.253333pt;}
.y12{bottom:792.133333pt;}
.y49{bottom:793.733333pt;}
.y73{bottom:794.053333pt;}
.y8b{bottom:803.973333pt;}
.y11{bottom:807.493333pt;}
.y48{bottom:810.853333pt;}
.yf2{bottom:811.813333pt;}
.y10{bottom:822.693333pt;}
.y47{bottom:827.813333pt;}
.yf{bottom:838.053333pt;}
.y8a{bottom:838.373333pt;}
.ycf{bottom:842.533333pt;}
.y46{bottom:844.613333pt;}
.ye{bottom:853.413333pt;}
.yf1{bottom:857.893333pt;}
.y45{bottom:861.413333pt;}
.yd{bottom:869.413333pt;}
.y89{bottom:872.773333pt;}
.y44{bottom:878.373333pt;}
.yc{bottom:887.813333pt;}
.y43{bottom:895.173333pt;}
.yf0{bottom:903.813333pt;}
.yb{bottom:905.893333pt;}
.y42{bottom:912.133333pt;}
.ya{bottom:922.853333pt;}
.y88{bottom:923.973333pt;}
.y41{bottom:928.933333pt;}
.y9{bottom:939.653333pt;}
.y40{bottom:945.733333pt;}
.yc9{bottom:949.893333pt;}
.y8{bottom:956.453333pt;}
.y3f{bottom:962.693333pt;}
.yed{bottom:965.253333pt;}
.y7{bottom:974.853333pt;}
.y85{bottom:975.333333pt;}
.y3e{bottom:979.493333pt;}
.y6{bottom:993.253333pt;}
.y3d{bottom:996.453333pt;}
.y5{bottom:1011.680000pt;}
.y3c{bottom:1013.280000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.h16{height:33.760000pt;}
.hb{height:37.090625pt;}
.h9{height:38.465312pt;}
.he{height:41.112500pt;}
.h11{height:42.636250pt;}
.ha{height:43.782500pt;}
.h20{height:45.920000pt;}
.h24{height:46.080000pt;}
.h21{height:46.112000pt;}
.h4{height:46.343750pt;}
.h17{height:46.560000pt;}
.hf{height:48.530000pt;}
.h13{height:50.560000pt;}
.h15{height:50.592000pt;}
.h14{height:50.720000pt;}
.h1e{height:52.990313pt;}
.hc{height:54.598989pt;}
.h3{height:55.298750pt;}
.h6{height:58.736250pt;}
.h7{height:60.519362pt;}
.h1a{height:61.280000pt;}
.hd{height:61.295000pt;}
.h23{height:61.312000pt;}
.h1f{height:61.440000pt;}
.h2{height:63.656250pt;}
.h8{height:65.781915pt;}
.h5{height:66.625000pt;}
.h10{height:67.520000pt;}
.h12{height:67.552000pt;}
.h26{height:76.640000pt;}
.h1b{height:76.672000pt;}
.h22{height:76.800000pt;}
.h18{height:84.160000pt;}
.h19{height:92.032000pt;}
.h25{height:107.200000pt;}
.h1c{height:107.360000pt;}
.h1d{height:107.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.040000pt;}
.w4{width:122.272000pt;}
.w5{width:127.520000pt;}
.w7{width:136.666667pt;}
.w8{width:141.440000pt;}
.w6{width:145.786667pt;}
.w9{width:461.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x14{left:9.600000pt;}
.xd{left:44.954667pt;}
.x13{left:92.954667pt;}
.x4{left:94.591988pt;}
.x6{left:109.471988pt;}
.xc{left:132.351988pt;}
.x5{left:160.186655pt;}
.xf{left:165.626667pt;}
.x2{left:170.906655pt;}
.x12{left:236.026667pt;}
.x10{left:287.906667pt;}
.xb{left:297.506655pt;}
.x7{left:306.306655pt;}
.xa{left:322.946655pt;}
.x9{left:366.466655pt;}
.x1{left:374.786655pt;}
.x3{left:384.066655pt;}
.x8{left:415.106655pt;}
.x11{left:561.213333pt;}
}




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