
    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_6e775bf0e88ae08c14e5b140.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9a37144753895782b1e84b2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_0ad66e49e1d4cd1f715c91dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700195;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_83616b17d648bea85d2fa1d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923340;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_961fa919e98a9d339abe24f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7f464ad0e1524bdd82e4e06c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_59c509375f6fc60718b3d3ea.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_49b78a64ca897301e82b58b2.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_982ac23e47a979d79e99b13e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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:27.360000px;}
.ls12{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.366000px;}
.ls9{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.060000px;}
.lsb{letter-spacing:4.500000px;}
.lsf{letter-spacing:10.800000px;}
.ls5{letter-spacing:10.944000px;}
.ls11{letter-spacing:11.520000px;}
.lse{letter-spacing:11.880000px;}
.lsd{letter-spacing:22.320000px;}
.ls6{letter-spacing:26.640000px;}
.ls7{letter-spacing:31.104000px;}
.ls14{letter-spacing:33.984000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws3{word-spacing:-18.353760px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.453200px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.067040px;}
._1{width:1.031040px;}
._6{width:2.042880px;}
._7{width:3.168000px;}
._8{width:4.176000px;}
._d{width:5.330880px;}
._4{width:6.827040px;}
._3{width:7.848000px;}
._b{width:9.432000px;}
._f{width:10.584000px;}
._10{width:11.868960px;}
._14{width:13.680000px;}
._19{width:15.120000px;}
._18{width:16.968000px;}
._11{width:19.104960px;}
._15{width:20.160000px;}
._2{width:21.659040px;}
._5{width:22.968000px;}
._13{width:24.336000px;}
._9{width:25.344000px;}
._a{width:26.568000px;}
._c{width:27.851040px;}
._1b{width:28.872000px;}
._12{width:30.096000px;}
._1c{width:31.152000px;}
._1f{width:32.184000px;}
._16{width:34.104000px;}
._17{width:35.162880px;}
._e{width:36.792000px;}
._1a{width:37.944000px;}
._1e{width:39.072000px;}
._1d{width:40.152000px;}
.fc2{color:rgb(78,103,200);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(6,60,100);}
.fs7{font-size:23.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.960000px;}
.y6{bottom:4.320000px;}
.y32{bottom:7.020000px;}
.y3{bottom:8.820000px;}
.yb{bottom:13.500000px;}
.yb3{bottom:14.220000px;}
.ybc{bottom:14.400000px;}
.y5{bottom:22.860000px;}
.yb4{bottom:24.660000px;}
.y31{bottom:30.780000px;}
.y2{bottom:34.740000px;}
.yb7{bottom:34.920000px;}
.y4{bottom:41.580000px;}
.yb8{bottom:45.360000px;}
.y30{bottom:54.765000px;}
.y9{bottom:56.736000px;}
.ya{bottom:57.996000px;}
.y8{bottom:75.636000px;}
.y2f{bottom:84.465000px;}
.y2e{bottom:105.165000px;}
.y63{bottom:108.396000px;}
.y38{bottom:108.936000px;}
.yd1{bottom:115.056000px;}
.y8b{bottom:123.696000px;}
.y2d{bottom:125.865000px;}
.y11c{bottom:126.396000px;}
.yaf{bottom:127.656000px;}
.y62{bottom:129.096000px;}
.y37{bottom:129.636000px;}
.yd0{bottom:135.756000px;}
.y105{bottom:138.096000px;}
.y2c{bottom:146.565000px;}
.y11b{bottom:147.096000px;}
.yae{bottom:148.356000px;}
.y61{bottom:149.796000px;}
.y36{bottom:150.330000px;}
.y8a{bottom:153.390000px;}
.ycf{bottom:156.450000px;}
.y2b{bottom:167.265000px;}
.y104{bottom:167.790000px;}
.yad{bottom:169.050000px;}
.y60{bottom:170.490000px;}
.y35{bottom:171.030000px;}
.y89{bottom:174.090000px;}
.y11a{bottom:176.790000px;}
.yce{bottom:186.150000px;}
.y2a{bottom:187.965000px;}
.y103{bottom:188.490000px;}
.yac{bottom:189.750000px;}
.y5f{bottom:191.190000px;}
.y88{bottom:194.790000px;}
.y119{bottom:197.490000px;}
.y34{bottom:200.730000px;}
.ycd{bottom:206.850000px;}
.y29{bottom:208.665000px;}
.y102{bottom:209.190000px;}
.y87{bottom:215.490000px;}
.yab{bottom:218.010000px;}
.y118{bottom:218.190000px;}
.y5e{bottom:220.890000px;}
.y33{bottom:224.490000px;}
.y101{bottom:229.890000px;}
.y86{bottom:236.190000px;}
.ycc{bottom:236.550000px;}
.y28{bottom:238.365000px;}
.yaa{bottom:238.710000px;}
.y15{bottom:241.230000px;}
.y5d{bottom:241.590000px;}
.y117{bottom:247.890000px;}
.y85{bottom:256.890000px;}
.ycb{bottom:257.250000px;}
.y27{bottom:259.065000px;}
.ya9{bottom:259.410000px;}
.y100{bottom:259.590000px;}
.y5c{bottom:262.290000px;}
.y116{bottom:268.590000px;}
.y84{bottom:277.590000px;}
.yca{bottom:277.950000px;}
.y26{bottom:279.765000px;}
.yff{bottom:280.290000px;}
.y5b{bottom:283.035000px;}
.ya8{bottom:287.535000px;}
.y115{bottom:298.335000px;}
.y25{bottom:300.465000px;}
.yfe{bottom:301.035000px;}
.y5a{bottom:303.735000px;}
.y83{bottom:307.335000px;}
.yc9{bottom:307.695000px;}
.yed{bottom:312.735000px;}
.ya7{bottom:315.795000px;}
.y24{bottom:321.165000px;}
.yfd{bottom:321.735000px;}
.y59{bottom:324.435000px;}
.y82{bottom:328.035000px;}
.yec{bottom:333.435000px;}
.ya6{bottom:336.495000px;}
.yc8{bottom:337.395000px;}
.y23{bottom:341.895000px;}
.y81{bottom:348.735000px;}
.yfc{bottom:351.435000px;}
.y58{bottom:354.135000px;}
.ya5{bottom:357.195000px;}
.y114{bottom:357.735000px;}
.y22{bottom:362.595000px;}
.yc7{bottom:367.095000px;}
.y80{bottom:369.435000px;}
.yfb{bottom:372.135000px;}
.yeb{bottom:374.835000px;}
.y113{bottom:378.435000px;}
.y21{bottom:383.295000px;}
.y57{bottom:383.835000px;}
.ya4{bottom:385.455000px;}
.yc6{bottom:387.795000px;}
.y7f{bottom:390.135000px;}
.yfa{bottom:392.835000px;}
.yea{bottom:395.535000px;}
.y112{bottom:399.135000px;}
.y20{bottom:403.995000px;}
.y56{bottom:404.535000px;}
.yc5{bottom:408.495000px;}
.ya3{bottom:413.535000px;}
.ye9{bottom:416.235000px;}
.y7e{bottom:419.835000px;}
.yf9{bottom:422.535000px;}
.y55{bottom:425.235000px;}
.yc4{bottom:429.195000px;}
.y1f{bottom:433.695000px;}
.ya2{bottom:434.235000px;}
.y7d{bottom:440.535000px;}
.ye8{bottom:445.935000px;}
.y111{bottom:449.535000px;}
.yc3{bottom:449.895000px;}
.yf8{bottom:452.235000px;}
.y1e{bottom:454.395000px;}
.y54{bottom:454.935000px;}
.y7c{bottom:461.235000px;}
.ya1{bottom:462.495000px;}
.yf7{bottom:472.935000px;}
.y1d{bottom:474.915000px;}
.ye7{bottom:475.635000px;}
.y110{bottom:479.235000px;}
.yc2{bottom:479.595000px;}
.y7b{bottom:481.935000px;}
.y53{bottom:484.635000px;}
.ya0{bottom:490.755000px;}
.yf6{bottom:493.635000px;}
.y1c{bottom:495.615000px;}
.ye6{bottom:496.335000px;}
.y10f{bottom:499.935000px;}
.yc1{bottom:500.295000px;}
.y52{bottom:505.335000px;}
.y9f{bottom:511.455000px;}
.y7a{bottom:511.635000px;}
.yf5{bottom:514.335000px;}
.y1b{bottom:516.315000px;}
.ye5{bottom:517.035000px;}
.y10e{bottom:520.635000px;}
.yc0{bottom:520.995000px;}
.y51{bottom:526.035000px;}
.yf4{bottom:535.035000px;}
.y1a{bottom:537.015000px;}
.ye4{bottom:537.735000px;}
.y9e{bottom:539.535000px;}
.y79{bottom:541.335000px;}
.ybf{bottom:541.695000px;}
.y50{bottom:546.735000px;}
.y125{bottom:548.535000px;}
.yf3{bottom:555.735000px;}
.y19{bottom:557.715000px;}
.ye3{bottom:558.435000px;}
.y9d{bottom:560.235000px;}
.y78{bottom:562.035000px;}
.ybe{bottom:562.395000px;}
.y4f{bottom:567.465000px;}
.y124{bottom:576.285000px;}
.y18{bottom:578.415000px;}
.y77{bottom:582.765000px;}
.yf2{bottom:585.465000px;}
.ye2{bottom:588.165000px;}
.y9c{bottom:588.525000px;}
.ybd{bottom:589.425000px;}
.ybb{bottom:595.725000px;}
.y4e{bottom:597.165000px;}
.y17{bottom:599.115000px;}
.y76{bottom:603.465000px;}
.yf1{bottom:606.165000px;}
.y123{bottom:608.865000px;}
.y9b{bottom:609.225000px;}
.y4d{bottom:617.865000px;}
.y16{bottom:619.860000px;}
.y75{bottom:624.165000px;}
.yf0{bottom:626.865000px;}
.y122{bottom:629.565000px;}
.y9a{bottom:629.925000px;}
.y10d{bottom:633.165000px;}
.yba{bottom:638.025000px;}
.ye1{bottom:638.565000px;}
.y74{bottom:644.865000px;}
.y4c{bottom:647.565000px;}
.y10c{bottom:653.865000px;}
.yef{bottom:656.565000px;}
.y99{bottom:658.185000px;}
.ye0{bottom:659.265000px;}
.y73{bottom:665.565000px;}
.y4b{bottom:668.265000px;}
.y10b{bottom:674.565000px;}
.yee{bottom:677.265000px;}
.y98{bottom:678.885000px;}
.y121{bottom:679.965000px;}
.yb9{bottom:680.145000px;}
.y72{bottom:686.265000px;}
.ydf{bottom:688.965000px;}
.y10a{bottom:695.265000px;}
.y4a{bottom:697.965000px;}
.y97{bottom:699.585000px;}
.y71{bottom:706.965000px;}
.yde{bottom:709.665000px;}
.y109{bottom:715.965000px;}
.yb6{bottom:722.265000px;}
.y49{bottom:727.665000px;}
.ydd{bottom:730.365000px;}
.y70{bottom:736.665000px;}
.y120{bottom:739.365000px;}
.y48{bottom:748.365000px;}
.ydc{bottom:751.065000px;}
.y96{bottom:755.925000px;}
.y6f{bottom:757.365000px;}
.y11f{bottom:760.065000px;}
.y47{bottom:778.065000px;}
.ydb{bottom:780.765000px;}
.y95{bottom:784.005000px;}
.yb2{bottom:785.085000px;}
.y108{bottom:787.065000px;}
.y46{bottom:798.765000px;}
.yda{bottom:801.465000px;}
.y107{bottom:807.765000px;}
.y94{bottom:812.265000px;}
.y6e{bottom:819.465000px;}
.y45{bottom:828.465000px;}
.yd9{bottom:831.165000px;}
.y93{bottom:832.965000px;}
.y6d{bottom:840.165000px;}
.y44{bottom:849.210000px;}
.y11e{bottom:851.910000px;}
.y92{bottom:853.710000px;}
.y6c{bottom:860.910000px;}
.yb1{bottom:869.910000px;}
.y11d{bottom:872.610000px;}
.y91{bottom:874.410000px;}
.y43{bottom:878.910000px;}
.yd8{bottom:881.610000px;}
.y14{bottom:886.110000px;}
.y6b{bottom:890.610000px;}
.y90{bottom:895.110000px;}
.y42{bottom:899.610000px;}
.yd7{bottom:902.310000px;}
.y13{bottom:909.690000px;}
.y6a{bottom:911.310000px;}
.yb0{bottom:920.310000px;}
.yd6{bottom:923.010000px;}
.y8f{bottom:923.370000px;}
.y41{bottom:929.310000px;}
.y69{bottom:932.010000px;}
.y12{bottom:933.450000px;}
.y106{bottom:941.010000px;}
.y40{bottom:950.010000px;}
.y8e{bottom:951.450000px;}
.yd5{bottom:952.710000px;}
.y68{bottom:961.710000px;}
.y3f{bottom:970.710000px;}
.y11{bottom:972.150000px;}
.y8d{bottom:979.710000px;}
.yd4{bottom:982.410000px;}
.y3e{bottom:991.410000px;}
.y10{bottom:992.850000px;}
.y8c{bottom:1000.410000px;}
.yd3{bottom:1003.110000px;}
.y67{bottom:1012.110000px;}
.yf{bottom:1017.690000px;}
.y3d{bottom:1021.110000px;}
.yd2{bottom:1023.810000px;}
.y66{bottom:1032.810000px;}
.y3c{bottom:1041.810000px;}
.ye{bottom:1045.410000px;}
.y65{bottom:1053.510000px;}
.y3b{bottom:1062.510000px;}
.yd{bottom:1073.310000px;}
.y64{bottom:1074.210000px;}
.y3a{bottom:1083.210000px;}
.yc{bottom:1101.030000px;}
.y39{bottom:1103.910000px;}
.y7{bottom:1124.250000px;}
.y1{bottom:1148.580000px;}
.h13{height:23.319141px;}
.h7{height:27.540000px;}
.h11{height:41.400000px;}
.h8{height:44.061328px;}
.h4{height:44.860781px;}
.h5{height:48.839062px;}
.hf{height:50.273438px;}
.h2{height:55.800000px;}
.h12{height:62.100000px;}
.h6{height:65.010937px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.he{height:74.004654px;}
.h10{height:74.704922px;}
.hc{height:82.676953px;}
.h9{height:84.898125px;}
.h3{height:90.703125px;}
.hd{height:636.585000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:42.120000px;}
.w7{width:111.420000px;}
.w8{width:156.810000px;}
.w3{width:176.970000px;}
.wa{width:202.710000px;}
.w9{width:235.650000px;}
.w2{width:559.875000px;}
.w6{width:734.145000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.020000px;}
.x14{left:8.100000px;}
.x1f{left:10.440000px;}
.x27{left:12.600000px;}
.x1d{left:13.860000px;}
.x8{left:15.840000px;}
.x25{left:17.460000px;}
.x2f{left:18.900000px;}
.x24{left:21.420000px;}
.x26{left:23.940000px;}
.x18{left:25.920000px;}
.x2b{left:27.900000px;}
.x2d{left:30.780000px;}
.x21{left:31.860000px;}
.x2a{left:32.940000px;}
.x29{left:35.460000px;}
.x22{left:39.780000px;}
.x1b{left:41.400000px;}
.x1a{left:45.900000px;}
.x2{left:50.400000px;}
.x2c{left:55.980000px;}
.x13{left:61.194000px;}
.x20{left:68.400000px;}
.x23{left:81.180000px;}
.x28{left:84.420000px;}
.x2e{left:93.240000px;}
.x1{left:97.776000px;}
.x12{left:100.656000px;}
.x6{left:106.415987px;}
.x17{left:113.436000px;}
.x9{left:115.235987px;}
.x15{left:127.655987px;}
.x16{left:133.415987px;}
.x10{left:135.755987px;}
.xa{left:140.075987px;}
.xe{left:201.629987px;}
.x3{left:206.319000px;}
.x19{left:225.570000px;}
.xd{left:361.334987px;}
.xb{left:381.314987px;}
.x1c{left:383.115000px;}
.xf{left:417.854987px;}
.xc{left:467.714987px;}
.x11{left:494.384987px;}
.x1e{left:619.485000px;}
.x4{left:660.885000px;}
.x7{left:787.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.325333pt;}
.ls9{letter-spacing:0.640000pt;}
.lsc{letter-spacing:2.720000pt;}
.lsb{letter-spacing:4.000000pt;}
.lsf{letter-spacing:9.600000pt;}
.ls5{letter-spacing:9.728000pt;}
.ls11{letter-spacing:10.240000pt;}
.lse{letter-spacing:10.560000pt;}
.lsd{letter-spacing:19.840000pt;}
.ls6{letter-spacing:23.680000pt;}
.ls7{letter-spacing:27.648000pt;}
.ls14{letter-spacing:30.208000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws3{word-spacing:-16.314453pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.625067pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.948480pt;}
._1{width:0.916480pt;}
._6{width:1.815893pt;}
._7{width:2.816000pt;}
._8{width:3.712000pt;}
._d{width:4.738560pt;}
._4{width:6.068480pt;}
._3{width:6.976000pt;}
._b{width:8.384000pt;}
._f{width:9.408000pt;}
._10{width:10.550187pt;}
._14{width:12.160000pt;}
._19{width:13.440000pt;}
._18{width:15.082667pt;}
._11{width:16.982187pt;}
._15{width:17.920000pt;}
._2{width:19.252480pt;}
._5{width:20.416000pt;}
._13{width:21.632000pt;}
._9{width:22.528000pt;}
._a{width:23.616000pt;}
._c{width:24.756480pt;}
._1b{width:25.664000pt;}
._12{width:26.752000pt;}
._1c{width:27.690667pt;}
._1f{width:28.608000pt;}
._16{width:30.314667pt;}
._17{width:31.255893pt;}
._e{width:32.704000pt;}
._1a{width:33.728000pt;}
._1e{width:34.730667pt;}
._1d{width:35.690667pt;}
.fs7{font-size:21.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.520000pt;}
.y6{bottom:3.840000pt;}
.y32{bottom:6.240000pt;}
.y3{bottom:7.840000pt;}
.yb{bottom:12.000000pt;}
.yb3{bottom:12.640000pt;}
.ybc{bottom:12.800000pt;}
.y5{bottom:20.320000pt;}
.yb4{bottom:21.920000pt;}
.y31{bottom:27.360000pt;}
.y2{bottom:30.880000pt;}
.yb7{bottom:31.040000pt;}
.y4{bottom:36.960000pt;}
.yb8{bottom:40.320000pt;}
.y30{bottom:48.680000pt;}
.y9{bottom:50.432000pt;}
.ya{bottom:51.552000pt;}
.y8{bottom:67.232000pt;}
.y2f{bottom:75.080000pt;}
.y2e{bottom:93.480000pt;}
.y63{bottom:96.352000pt;}
.y38{bottom:96.832000pt;}
.yd1{bottom:102.272000pt;}
.y8b{bottom:109.952000pt;}
.y2d{bottom:111.880000pt;}
.y11c{bottom:112.352000pt;}
.yaf{bottom:113.472000pt;}
.y62{bottom:114.752000pt;}
.y37{bottom:115.232000pt;}
.yd0{bottom:120.672000pt;}
.y105{bottom:122.752000pt;}
.y2c{bottom:130.280000pt;}
.y11b{bottom:130.752000pt;}
.yae{bottom:131.872000pt;}
.y61{bottom:133.152000pt;}
.y36{bottom:133.626667pt;}
.y8a{bottom:136.346667pt;}
.ycf{bottom:139.066667pt;}
.y2b{bottom:148.680000pt;}
.y104{bottom:149.146667pt;}
.yad{bottom:150.266667pt;}
.y60{bottom:151.546667pt;}
.y35{bottom:152.026667pt;}
.y89{bottom:154.746667pt;}
.y11a{bottom:157.146667pt;}
.yce{bottom:165.466667pt;}
.y2a{bottom:167.080000pt;}
.y103{bottom:167.546667pt;}
.yac{bottom:168.666667pt;}
.y5f{bottom:169.946667pt;}
.y88{bottom:173.146667pt;}
.y119{bottom:175.546667pt;}
.y34{bottom:178.426667pt;}
.ycd{bottom:183.866667pt;}
.y29{bottom:185.480000pt;}
.y102{bottom:185.946667pt;}
.y87{bottom:191.546667pt;}
.yab{bottom:193.786667pt;}
.y118{bottom:193.946667pt;}
.y5e{bottom:196.346667pt;}
.y33{bottom:199.546667pt;}
.y101{bottom:204.346667pt;}
.y86{bottom:209.946667pt;}
.ycc{bottom:210.266667pt;}
.y28{bottom:211.880000pt;}
.yaa{bottom:212.186667pt;}
.y15{bottom:214.426667pt;}
.y5d{bottom:214.746667pt;}
.y117{bottom:220.346667pt;}
.y85{bottom:228.346667pt;}
.ycb{bottom:228.666667pt;}
.y27{bottom:230.280000pt;}
.ya9{bottom:230.586667pt;}
.y100{bottom:230.746667pt;}
.y5c{bottom:233.146667pt;}
.y116{bottom:238.746667pt;}
.y84{bottom:246.746667pt;}
.yca{bottom:247.066667pt;}
.y26{bottom:248.680000pt;}
.yff{bottom:249.146667pt;}
.y5b{bottom:251.586667pt;}
.ya8{bottom:255.586667pt;}
.y115{bottom:265.186667pt;}
.y25{bottom:267.080000pt;}
.yfe{bottom:267.586667pt;}
.y5a{bottom:269.986667pt;}
.y83{bottom:273.186667pt;}
.yc9{bottom:273.506667pt;}
.yed{bottom:277.986667pt;}
.ya7{bottom:280.706667pt;}
.y24{bottom:285.480000pt;}
.yfd{bottom:285.986667pt;}
.y59{bottom:288.386667pt;}
.y82{bottom:291.586667pt;}
.yec{bottom:296.386667pt;}
.ya6{bottom:299.106667pt;}
.yc8{bottom:299.906667pt;}
.y23{bottom:303.906667pt;}
.y81{bottom:309.986667pt;}
.yfc{bottom:312.386667pt;}
.y58{bottom:314.786667pt;}
.ya5{bottom:317.506667pt;}
.y114{bottom:317.986667pt;}
.y22{bottom:322.306667pt;}
.yc7{bottom:326.306667pt;}
.y80{bottom:328.386667pt;}
.yfb{bottom:330.786667pt;}
.yeb{bottom:333.186667pt;}
.y113{bottom:336.386667pt;}
.y21{bottom:340.706667pt;}
.y57{bottom:341.186667pt;}
.ya4{bottom:342.626667pt;}
.yc6{bottom:344.706667pt;}
.y7f{bottom:346.786667pt;}
.yfa{bottom:349.186667pt;}
.yea{bottom:351.586667pt;}
.y112{bottom:354.786667pt;}
.y20{bottom:359.106667pt;}
.y56{bottom:359.586667pt;}
.yc5{bottom:363.106667pt;}
.ya3{bottom:367.586667pt;}
.ye9{bottom:369.986667pt;}
.y7e{bottom:373.186667pt;}
.yf9{bottom:375.586667pt;}
.y55{bottom:377.986667pt;}
.yc4{bottom:381.506667pt;}
.y1f{bottom:385.506667pt;}
.ya2{bottom:385.986667pt;}
.y7d{bottom:391.586667pt;}
.ye8{bottom:396.386667pt;}
.y111{bottom:399.586667pt;}
.yc3{bottom:399.906667pt;}
.yf8{bottom:401.986667pt;}
.y1e{bottom:403.906667pt;}
.y54{bottom:404.386667pt;}
.y7c{bottom:409.986667pt;}
.ya1{bottom:411.106667pt;}
.yf7{bottom:420.386667pt;}
.y1d{bottom:422.146667pt;}
.ye7{bottom:422.786667pt;}
.y110{bottom:425.986667pt;}
.yc2{bottom:426.306667pt;}
.y7b{bottom:428.386667pt;}
.y53{bottom:430.786667pt;}
.ya0{bottom:436.226667pt;}
.yf6{bottom:438.786667pt;}
.y1c{bottom:440.546667pt;}
.ye6{bottom:441.186667pt;}
.y10f{bottom:444.386667pt;}
.yc1{bottom:444.706667pt;}
.y52{bottom:449.186667pt;}
.y9f{bottom:454.626667pt;}
.y7a{bottom:454.786667pt;}
.yf5{bottom:457.186667pt;}
.y1b{bottom:458.946667pt;}
.ye5{bottom:459.586667pt;}
.y10e{bottom:462.786667pt;}
.yc0{bottom:463.106667pt;}
.y51{bottom:467.586667pt;}
.yf4{bottom:475.586667pt;}
.y1a{bottom:477.346667pt;}
.ye4{bottom:477.986667pt;}
.y9e{bottom:479.586667pt;}
.y79{bottom:481.186667pt;}
.ybf{bottom:481.506667pt;}
.y50{bottom:485.986667pt;}
.y125{bottom:487.586667pt;}
.yf3{bottom:493.986667pt;}
.y19{bottom:495.746667pt;}
.ye3{bottom:496.386667pt;}
.y9d{bottom:497.986667pt;}
.y78{bottom:499.586667pt;}
.ybe{bottom:499.906667pt;}
.y4f{bottom:504.413333pt;}
.y124{bottom:512.253333pt;}
.y18{bottom:514.146667pt;}
.y77{bottom:518.013333pt;}
.yf2{bottom:520.413333pt;}
.ye2{bottom:522.813333pt;}
.y9c{bottom:523.133333pt;}
.ybd{bottom:523.933333pt;}
.ybb{bottom:529.533333pt;}
.y4e{bottom:530.813333pt;}
.y17{bottom:532.546667pt;}
.y76{bottom:536.413333pt;}
.yf1{bottom:538.813333pt;}
.y123{bottom:541.213333pt;}
.y9b{bottom:541.533333pt;}
.y4d{bottom:549.213333pt;}
.y16{bottom:550.986667pt;}
.y75{bottom:554.813333pt;}
.yf0{bottom:557.213333pt;}
.y122{bottom:559.613333pt;}
.y9a{bottom:559.933333pt;}
.y10d{bottom:562.813333pt;}
.yba{bottom:567.133333pt;}
.ye1{bottom:567.613333pt;}
.y74{bottom:573.213333pt;}
.y4c{bottom:575.613333pt;}
.y10c{bottom:581.213333pt;}
.yef{bottom:583.613333pt;}
.y99{bottom:585.053333pt;}
.ye0{bottom:586.013333pt;}
.y73{bottom:591.613333pt;}
.y4b{bottom:594.013333pt;}
.y10b{bottom:599.613333pt;}
.yee{bottom:602.013333pt;}
.y98{bottom:603.453333pt;}
.y121{bottom:604.413333pt;}
.yb9{bottom:604.573333pt;}
.y72{bottom:610.013333pt;}
.ydf{bottom:612.413333pt;}
.y10a{bottom:618.013333pt;}
.y4a{bottom:620.413333pt;}
.y97{bottom:621.853333pt;}
.y71{bottom:628.413333pt;}
.yde{bottom:630.813333pt;}
.y109{bottom:636.413333pt;}
.yb6{bottom:642.013333pt;}
.y49{bottom:646.813333pt;}
.ydd{bottom:649.213333pt;}
.y70{bottom:654.813333pt;}
.y120{bottom:657.213333pt;}
.y48{bottom:665.213333pt;}
.ydc{bottom:667.613333pt;}
.y96{bottom:671.933333pt;}
.y6f{bottom:673.213333pt;}
.y11f{bottom:675.613333pt;}
.y47{bottom:691.613333pt;}
.ydb{bottom:694.013333pt;}
.y95{bottom:696.893333pt;}
.yb2{bottom:697.853333pt;}
.y108{bottom:699.613333pt;}
.y46{bottom:710.013333pt;}
.yda{bottom:712.413333pt;}
.y107{bottom:718.013333pt;}
.y94{bottom:722.013333pt;}
.y6e{bottom:728.413333pt;}
.y45{bottom:736.413333pt;}
.yd9{bottom:738.813333pt;}
.y93{bottom:740.413333pt;}
.y6d{bottom:746.813333pt;}
.y44{bottom:754.853333pt;}
.y11e{bottom:757.253333pt;}
.y92{bottom:758.853333pt;}
.y6c{bottom:765.253333pt;}
.yb1{bottom:773.253333pt;}
.y11d{bottom:775.653333pt;}
.y91{bottom:777.253333pt;}
.y43{bottom:781.253333pt;}
.yd8{bottom:783.653333pt;}
.y14{bottom:787.653333pt;}
.y6b{bottom:791.653333pt;}
.y90{bottom:795.653333pt;}
.y42{bottom:799.653333pt;}
.yd7{bottom:802.053333pt;}
.y13{bottom:808.613333pt;}
.y6a{bottom:810.053333pt;}
.yb0{bottom:818.053333pt;}
.yd6{bottom:820.453333pt;}
.y8f{bottom:820.773333pt;}
.y41{bottom:826.053333pt;}
.y69{bottom:828.453333pt;}
.y12{bottom:829.733333pt;}
.y106{bottom:836.453333pt;}
.y40{bottom:844.453333pt;}
.y8e{bottom:845.733333pt;}
.yd5{bottom:846.853333pt;}
.y68{bottom:854.853333pt;}
.y3f{bottom:862.853333pt;}
.y11{bottom:864.133333pt;}
.y8d{bottom:870.853333pt;}
.yd4{bottom:873.253333pt;}
.y3e{bottom:881.253333pt;}
.y10{bottom:882.533333pt;}
.y8c{bottom:889.253333pt;}
.yd3{bottom:891.653333pt;}
.y67{bottom:899.653333pt;}
.yf{bottom:904.613333pt;}
.y3d{bottom:907.653333pt;}
.yd2{bottom:910.053333pt;}
.y66{bottom:918.053333pt;}
.y3c{bottom:926.053333pt;}
.ye{bottom:929.253333pt;}
.y65{bottom:936.453333pt;}
.y3b{bottom:944.453333pt;}
.yd{bottom:954.053333pt;}
.y64{bottom:954.853333pt;}
.y3a{bottom:962.853333pt;}
.yc{bottom:978.693333pt;}
.y39{bottom:981.253333pt;}
.y7{bottom:999.333333pt;}
.y1{bottom:1020.960000pt;}
.h13{height:20.728125pt;}
.h7{height:24.480000pt;}
.h11{height:36.800000pt;}
.h8{height:39.165625pt;}
.h4{height:39.876250pt;}
.h5{height:43.412500pt;}
.hf{height:44.687500pt;}
.h2{height:49.600000pt;}
.h12{height:55.200000pt;}
.h6{height:57.787500pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.he{height:65.781915pt;}
.h10{height:66.404375pt;}
.hc{height:73.490625pt;}
.h9{height:75.465000pt;}
.h3{height:80.625000pt;}
.hd{height:565.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:37.440000pt;}
.w7{width:99.040000pt;}
.w8{width:139.386667pt;}
.w3{width:157.306667pt;}
.wa{width:180.186667pt;}
.w9{width:209.466667pt;}
.w2{width:497.666667pt;}
.w6{width:652.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.240000pt;}
.x14{left:7.200000pt;}
.x1f{left:9.280000pt;}
.x27{left:11.200000pt;}
.x1d{left:12.320000pt;}
.x8{left:14.080000pt;}
.x25{left:15.520000pt;}
.x2f{left:16.800000pt;}
.x24{left:19.040000pt;}
.x26{left:21.280000pt;}
.x18{left:23.040000pt;}
.x2b{left:24.800000pt;}
.x2d{left:27.360000pt;}
.x21{left:28.320000pt;}
.x2a{left:29.280000pt;}
.x29{left:31.520000pt;}
.x22{left:35.360000pt;}
.x1b{left:36.800000pt;}
.x1a{left:40.800000pt;}
.x2{left:44.800000pt;}
.x2c{left:49.760000pt;}
.x13{left:54.394667pt;}
.x20{left:60.800000pt;}
.x23{left:72.160000pt;}
.x28{left:75.040000pt;}
.x2e{left:82.880000pt;}
.x1{left:86.912000pt;}
.x12{left:89.472000pt;}
.x6{left:94.591988pt;}
.x17{left:100.832000pt;}
.x9{left:102.431988pt;}
.x15{left:113.471988pt;}
.x16{left:118.591988pt;}
.x10{left:120.671988pt;}
.xa{left:124.511988pt;}
.xe{left:179.226655pt;}
.x3{left:183.394667pt;}
.x19{left:200.506667pt;}
.xd{left:321.186655pt;}
.xb{left:338.946655pt;}
.x1c{left:340.546667pt;}
.xf{left:371.426655pt;}
.xc{left:415.746655pt;}
.x11{left:439.453322pt;}
.x1e{left:550.653333pt;}
.x4{left:587.453333pt;}
.x7{left:699.653333pt;}
}




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