
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c93cfb1b6442954eb15b5c39.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_4dece5c578dfc28c100d5e73.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_a37baa82be278e3e223f8db3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_bc9f009b1db234d81a349ae8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_78a9dcc2015bc184db185549.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8808ba28a3f950bf7638f1a0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_b9b585e4f276578c1396444e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_c1f6eda2c2738286ce43924b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls21{letter-spacing:-0.291600px;}
.ls12{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.178800px;}
.lsa{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.093000px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.032760px;}
.ls1b{letter-spacing:-0.013320px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.072000px;}
.lse{letter-spacing:0.074160px;}
.ls5{letter-spacing:0.086400px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.160800px;}
.ls14{letter-spacing:0.168480px;}
.ls11{letter-spacing:0.173400px;}
.ls20{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199200px;}
.ls16{letter-spacing:0.201240px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.453600px;}
.ls1a{letter-spacing:4.773600px;}
.ls1f{letter-spacing:48.446640px;}
.ls1e{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.133400px;}
.ws9{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.934800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.814800px;}
._8{margin-left:-2.803800px;}
._0{margin-left:-1.104000px;}
._1{width:1.006812px;}
._9{width:2.247203px;}
._7{width:3.251160px;}
._6{width:4.274280px;}
._4{width:5.651400px;}
._d{width:7.575120px;}
._2{width:9.569760px;}
._3{width:10.898757px;}
._e{width:11.903760px;}
._5{width:14.226840px;}
._f{width:15.664645px;}
._c{width:17.076122px;}
._b{width:18.096000px;}
._10{width:30.754800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.830000px;}
.yab{bottom:7.860000px;}
.y69{bottom:7.920000px;}
.y78{bottom:7.950000px;}
.y76{bottom:17.550000px;}
.y65{bottom:17.640000px;}
.y71{bottom:25.470000px;}
.y62{bottom:35.190000px;}
.y75{bottom:35.220000px;}
.y67{bottom:35.280000px;}
.ya8{bottom:44.940000px;}
.y9b{bottom:62.550000px;}
.ya7{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y6f{bottom:107.460000px;}
.y87{bottom:116.130000px;}
.y26{bottom:131.340000px;}
.y86{bottom:133.770000px;}
.yfb{bottom:134.760000px;}
.y54{bottom:137.100000px;}
.y25{bottom:148.890000px;}
.y85{bottom:151.320000px;}
.yfa{bottom:152.400000px;}
.y53{bottom:154.650000px;}
.yd2{bottom:159.780000px;}
.y24{bottom:166.530000px;}
.y84{bottom:168.960000px;}
.ya4{bottom:173.460000px;}
.yd1{bottom:177.420000px;}
.y52{bottom:181.200000px;}
.y23{bottom:184.080000px;}
.y83{bottom:186.510000px;}
.yd0{bottom:194.970000px;}
.yf9{bottom:195.150000px;}
.y82{bottom:204.060000px;}
.ya3{bottom:209.100000px;}
.ycf{bottom:212.610000px;}
.y51{bottom:216.840000px;}
.y22{bottom:219.630000px;}
.yf8{bottom:220.080000px;}
.y81{bottom:221.700000px;}
.yce{bottom:230.160000px;}
.y50{bottom:234.390000px;}
.y21{bottom:237.270000px;}
.y80{bottom:239.250000px;}
.ya2{bottom:244.650000px;}
.yf7{bottom:245.190000px;}
.ycd{bottom:247.710000px;}
.y20{bottom:254.820000px;}
.y7f{bottom:256.800000px;}
.y4f{bottom:260.940000px;}
.ya1{bottom:262.290000px;}
.yf6{bottom:262.830000px;}
.ycc{bottom:265.350000px;}
.y1f{bottom:272.460000px;}
.ya0{bottom:279.840000px;}
.yf5{bottom:287.850000px;}
.y1e{bottom:290.010000px;}
.ycb{bottom:292.260000px;}
.y7e{bottom:294.690000px;}
.y4e{bottom:296.580000px;}
.y9f{bottom:297.390000px;}
.y7d{bottom:303.870000px;}
.yf4{bottom:305.580000px;}
.y1d{bottom:307.560000px;}
.y4d{bottom:314.130000px;}
.y9e{bottom:315.030000px;}
.yf3{bottom:330.510000px;}
.y7b{bottom:331.230000px;}
.y4c{bottom:331.770000px;}
.y1c{bottom:334.470000px;}
.yca{bottom:340.500000px;}
.y9a{bottom:347.970000px;}
.yf2{bottom:348.240000px;}
.y4b{bottom:349.320000px;}
.yc9{bottom:358.050000px;}
.y7c{bottom:358.590000px;}
.y4a{bottom:366.870000px;}
.yf1{bottom:373.170000px;}
.y9d{bottom:375.330000px;}
.yc8{bottom:375.690000px;}
.y1b{bottom:383.070000px;}
.y49{bottom:384.510000px;}
.y79{bottom:385.860000px;}
.yf0{bottom:390.900000px;}
.yc7{bottom:393.240000px;}
.y9c{bottom:402.690000px;}
.yc6{bottom:410.880000px;}
.y48{bottom:411.060000px;}
.y7a{bottom:413.220000px;}
.yef{bottom:415.920000px;}
.y1a{bottom:420.150000px;}
.yc5{bottom:428.430000px;}
.y98{bottom:429.960000px;}
.yee{bottom:433.560000px;}
.y19{bottom:437.700000px;}
.y74{bottom:440.580000px;}
.yc4{bottom:445.980000px;}
.y47{bottom:446.700000px;}
.y99{bottom:457.320000px;}
.yed{bottom:458.580000px;}
.y46{bottom:464.250000px;}
.y77{bottom:467.850000px;}
.y18{bottom:473.370000px;}
.yec{bottom:476.250000px;}
.yc3{bottom:481.650000px;}
.y45{bottom:490.830000px;}
.y17{bottom:490.920000px;}
.y6e{bottom:495.240000px;}
.yc2{bottom:499.200000px;}
.yeb{bottom:501.270000px;}
.y97{bottom:506.040000px;}
.y16{bottom:508.470000px;}
.y73{bottom:522.600000px;}
.y15{bottom:526.110000px;}
.yea{bottom:526.380000px;}
.y44{bottom:526.470000px;}
.yc1{bottom:534.840000px;}
.y96{bottom:541.590000px;}
.y14{bottom:543.660000px;}
.y43{bottom:544.020000px;}
.y72{bottom:549.960000px;}
.yc0{bottom:552.390000px;}
.y95{bottom:559.230000px;}
.y13{bottom:561.210000px;}
.y42{bottom:561.660000px;}
.ye9{bottom:569.040000px;}
.ybf{bottom:569.940000px;}
.y94{bottom:576.780000px;}
.y70{bottom:577.230000px;}
.y41{bottom:579.210000px;}
.ybe{bottom:587.580000px;}
.ye8{bottom:594.060000px;}
.y93{bottom:594.420000px;}
.y40{bottom:596.760000px;}
.y12{bottom:596.850000px;}
.y92{bottom:611.970000px;}
.y11{bottom:614.400000px;}
.ye7{bottom:619.170000px;}
.y6c{bottom:622.230000px;}
.ybd{bottom:623.130000px;}
.y3f{bottom:623.400000px;}
.y10{bottom:632.040000px;}
.ye6{bottom:636.810000px;}
.ybc{bottom:640.770000px;}
.y91{bottom:644.910000px;}
.y6d{bottom:649.500000px;}
.ybb{bottom:658.320000px;}
.y3e{bottom:658.950000px;}
.ye5{bottom:661.830000px;}
.yf{bottom:667.590000px;}
.y90{bottom:672.270000px;}
.yba{bottom:675.870000px;}
.y3d{bottom:676.590000px;}
.y6a{bottom:676.860000px;}
.ye4{bottom:679.560000px;}
.ye{bottom:685.140000px;}
.yb9{bottom:693.510000px;}
.y3c{bottom:694.140000px;}
.y8f{bottom:699.630000px;}
.yd{bottom:702.780000px;}
.y6b{bottom:704.220000px;}
.ye3{bottom:704.490000px;}
.yb8{bottom:711.060000px;}
.y3b{bottom:711.690000px;}
.ye2{bottom:722.220000px;}
.y8e{bottom:726.990000px;}
.yc{bottom:729.690000px;}
.y66{bottom:731.490000px;}
.y3a{bottom:738.330000px;}
.yb7{bottom:746.700000px;}
.ye1{bottom:747.150000px;}
.y8d{bottom:754.260000px;}
.y68{bottom:758.850000px;}
.yb6{bottom:764.250000px;}
.ye0{bottom:764.880000px;}
.y39{bottom:774.240000px;}
.yb{bottom:776.490000px;}
.y8b{bottom:781.620000px;}
.yb5{bottom:781.800000px;}
.ydf{bottom:782.430000px;}
.y61{bottom:786.210000px;}
.yb4{bottom:799.440000px;}
.yde{bottom:807.450000px;}
.y8c{bottom:808.980000px;}
.ya{bottom:812.040000px;}
.y63{bottom:813.570000px;}
.yb3{bottom:816.990000px;}
.y38{bottom:822.480000px;}
.ydd{bottom:825.090000px;}
.yb2{bottom:834.630000px;}
.y37{bottom:840.030000px;}
.y9{bottom:847.860000px;}
.ydc{bottom:852.000000px;}
.y36{bottom:857.670000px;}
.y60{bottom:862.260000px;}
.yb1{bottom:870.180000px;}
.y8{bottom:883.860000px;}
.yb0{bottom:887.730000px;}
.y5f{bottom:889.170000px;}
.y35{bottom:893.220000px;}
.ydb{bottom:900.330000px;}
.yaf{bottom:905.370000px;}
.y7{bottom:905.640000px;}
.y34{bottom:910.860000px;}
.yae{bottom:922.920000px;}
.y6{bottom:923.640000px;}
.yda{bottom:927.240000px;}
.y33{bottom:928.410000px;}
.y5e{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.y32{bottom:945.960000px;}
.yad{bottom:949.830000px;}
.y5d{bottom:954.960000px;}
.y8a{bottom:963.600000px;}
.yd9{bottom:964.230000px;}
.y5c{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y89{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.yd8{bottom:991.140000px;}
.yac{bottom:997.350000px;}
.y88{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.y5b{bottom:1008.150000px;}
.ya6{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y2f{bottom:1016.820000px;}
.y5a{bottom:1025.820000px;}
.yd7{bottom:1028.160000px;}
.y2e{bottom:1034.370000px;}
.yaa{bottom:1036.890000px;}
.y59{bottom:1043.370000px;}
.yd6{bottom:1045.800000px;}
.y2d{bottom:1051.920000px;}
.y58{bottom:1060.920000px;}
.yd5{bottom:1063.350000px;}
.ya9{bottom:1064.250000px;}
.y57{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.yd4{bottom:1090.260000px;}
.ya5{bottom:1091.610000px;}
.y56{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y55{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yd3{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h15{height:26.580000px;}
.hf{height:26.640000px;}
.h13{height:26.670000px;}
.h14{height:29.781211px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h18{height:41.661211px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.hc{height:53.910000px;}
.h12{height:53.940000px;}
.he{height:54.000000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h19{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:81.270000px;}
.h17{height:81.300000px;}
.h10{height:126.180000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1d{width:35.820000px;}
.w13{width:44.100000px;}
.w14{width:45.630000px;}
.w17{width:49.050000px;}
.w12{width:49.140000px;}
.w7{width:50.580000px;}
.w9{width:57.240000px;}
.w20{width:61.380000px;}
.w1f{width:61.500000px;}
.w6{width:68.130000px;}
.wa{width:75.780000px;}
.w8{width:75.810000px;}
.w1e{width:80.820000px;}
.w1c{width:82.800000px;}
.wc{width:98.370000px;}
.w18{width:103.770000px;}
.w16{width:103.800000px;}
.w15{width:103.860000px;}
.w21{width:117.300000px;}
.wd{width:119.430000px;}
.w26{width:126.930000px;}
.we{width:131.700000px;}
.w5{width:133.740000px;}
.w4{width:133.770000px;}
.w1b{width:143.010000px;}
.w1a{width:143.040000px;}
.w22{width:143.190000px;}
.w10{width:150.150000px;}
.wf{width:150.210000px;}
.w11{width:153.630000px;}
.w27{width:169.380000px;}
.w25{width:207.810000px;}
.w24{width:243.750000px;}
.w19{width:261.210000px;}
.wb{width:267.510000px;}
.w23{width:297.030000px;}
.w3{width:366.600000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x1e{left:71.550000px;}
.xd{left:105.300000px;}
.x16{left:112.140000px;}
.x21{left:199.200000px;}
.x2{left:202.799987px;}
.x1d{left:230.160000px;}
.xe{left:237.720000px;}
.x13{left:284.070000px;}
.x22{left:311.249987px;}
.xb{left:336.990000px;}
.xc{left:365.429987px;}
.x1f{left:369.300000px;}
.x17{left:374.160000px;}
.xf{left:388.650000px;}
.x14{left:435.000000px;}
.x5{left:436.080000px;}
.x1b{left:455.700000px;}
.x9{left:512.610000px;}
.x18{left:517.920000px;}
.x10{left:539.610000px;}
.x6{left:570.570000px;}
.x15{left:589.470000px;}
.x1c{left:599.550000px;}
.x20{left:613.860000px;}
.xa{left:647.070000px;}
.x19{left:661.740000px;}
.x11{left:693.960000px;}
.x7{left:705.030000px;}
.x12{left:743.910000px;}
.x1a{left:745.260000px;}
.x8{left:773.880000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls21{letter-spacing:-0.259200pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.158933pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.082667pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.029120pt;}
.ls1b{letter-spacing:-0.011840pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.065920pt;}
.ls5{letter-spacing:0.076800pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.142933pt;}
.ls14{letter-spacing:0.149760pt;}
.ls11{letter-spacing:0.154133pt;}
.ls20{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177067pt;}
.ls16{letter-spacing:0.178880pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.403200pt;}
.ls1a{letter-spacing:4.243200pt;}
.ls1f{letter-spacing:43.063680pt;}
.ls1e{letter-spacing:72.503680pt;}
.ws4{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.674133pt;}
.ws9{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.497600pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.390933pt;}
._8{margin-left:-2.492267pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.894944pt;}
._9{width:1.997514pt;}
._7{width:2.889920pt;}
._6{width:3.799360pt;}
._4{width:5.023467pt;}
._d{width:6.733440pt;}
._2{width:8.506454pt;}
._3{width:9.687784pt;}
._e{width:10.581120pt;}
._5{width:12.646080pt;}
._f{width:13.924129pt;}
._c{width:15.178775pt;}
._b{width:16.085333pt;}
._10{width:27.337600pt;}
.fs7{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.960000pt;}
.yab{bottom:6.986667pt;}
.y69{bottom:7.040000pt;}
.y78{bottom:7.066667pt;}
.y76{bottom:15.600000pt;}
.y65{bottom:15.680000pt;}
.y71{bottom:22.640000pt;}
.y62{bottom:31.280000pt;}
.y75{bottom:31.306667pt;}
.y67{bottom:31.360000pt;}
.ya8{bottom:39.946667pt;}
.y9b{bottom:55.600000pt;}
.ya7{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y6f{bottom:95.520000pt;}
.y87{bottom:103.226667pt;}
.y26{bottom:116.746667pt;}
.y86{bottom:118.906667pt;}
.yfb{bottom:119.786667pt;}
.y54{bottom:121.866667pt;}
.y25{bottom:132.346667pt;}
.y85{bottom:134.506667pt;}
.yfa{bottom:135.466667pt;}
.y53{bottom:137.466667pt;}
.yd2{bottom:142.026667pt;}
.y24{bottom:148.026667pt;}
.y84{bottom:150.186667pt;}
.ya4{bottom:154.186667pt;}
.yd1{bottom:157.706667pt;}
.y52{bottom:161.066667pt;}
.y23{bottom:163.626667pt;}
.y83{bottom:165.786667pt;}
.yd0{bottom:173.306667pt;}
.yf9{bottom:173.466667pt;}
.y82{bottom:181.386667pt;}
.ya3{bottom:185.866667pt;}
.ycf{bottom:188.986667pt;}
.y51{bottom:192.746667pt;}
.y22{bottom:195.226667pt;}
.yf8{bottom:195.626667pt;}
.y81{bottom:197.066667pt;}
.yce{bottom:204.586667pt;}
.y50{bottom:208.346667pt;}
.y21{bottom:210.906667pt;}
.y80{bottom:212.666667pt;}
.ya2{bottom:217.466667pt;}
.yf7{bottom:217.946667pt;}
.ycd{bottom:220.186667pt;}
.y20{bottom:226.506667pt;}
.y7f{bottom:228.266667pt;}
.y4f{bottom:231.946667pt;}
.ya1{bottom:233.146667pt;}
.yf6{bottom:233.626667pt;}
.ycc{bottom:235.866667pt;}
.y1f{bottom:242.186667pt;}
.ya0{bottom:248.746667pt;}
.yf5{bottom:255.866667pt;}
.y1e{bottom:257.786667pt;}
.ycb{bottom:259.786667pt;}
.y7e{bottom:261.946667pt;}
.y4e{bottom:263.626667pt;}
.y9f{bottom:264.346667pt;}
.y7d{bottom:270.106667pt;}
.yf4{bottom:271.626667pt;}
.y1d{bottom:273.386667pt;}
.y4d{bottom:279.226667pt;}
.y9e{bottom:280.026667pt;}
.yf3{bottom:293.786667pt;}
.y7b{bottom:294.426667pt;}
.y4c{bottom:294.906667pt;}
.y1c{bottom:297.306667pt;}
.yca{bottom:302.666667pt;}
.y9a{bottom:309.306667pt;}
.yf2{bottom:309.546667pt;}
.y4b{bottom:310.506667pt;}
.yc9{bottom:318.266667pt;}
.y7c{bottom:318.746667pt;}
.y4a{bottom:326.106667pt;}
.yf1{bottom:331.706667pt;}
.y9d{bottom:333.626667pt;}
.yc8{bottom:333.946667pt;}
.y1b{bottom:340.506667pt;}
.y49{bottom:341.786667pt;}
.y79{bottom:342.986667pt;}
.yf0{bottom:347.466667pt;}
.yc7{bottom:349.546667pt;}
.y9c{bottom:357.946667pt;}
.yc6{bottom:365.226667pt;}
.y48{bottom:365.386667pt;}
.y7a{bottom:367.306667pt;}
.yef{bottom:369.706667pt;}
.y1a{bottom:373.466667pt;}
.yc5{bottom:380.826667pt;}
.y98{bottom:382.186667pt;}
.yee{bottom:385.386667pt;}
.y19{bottom:389.066667pt;}
.y74{bottom:391.626667pt;}
.yc4{bottom:396.426667pt;}
.y47{bottom:397.066667pt;}
.y99{bottom:406.506667pt;}
.yed{bottom:407.626667pt;}
.y46{bottom:412.666667pt;}
.y77{bottom:415.866667pt;}
.y18{bottom:420.773333pt;}
.yec{bottom:423.333333pt;}
.yc3{bottom:428.133333pt;}
.y45{bottom:436.293333pt;}
.y17{bottom:436.373333pt;}
.y6e{bottom:440.213333pt;}
.yc2{bottom:443.733333pt;}
.yeb{bottom:445.573333pt;}
.y97{bottom:449.813333pt;}
.y16{bottom:451.973333pt;}
.y73{bottom:464.533333pt;}
.y15{bottom:467.653333pt;}
.yea{bottom:467.893333pt;}
.y44{bottom:467.973333pt;}
.yc1{bottom:475.413333pt;}
.y96{bottom:481.413333pt;}
.y14{bottom:483.253333pt;}
.y43{bottom:483.573333pt;}
.y72{bottom:488.853333pt;}
.yc0{bottom:491.013333pt;}
.y95{bottom:497.093333pt;}
.y13{bottom:498.853333pt;}
.y42{bottom:499.253333pt;}
.ye9{bottom:505.813333pt;}
.ybf{bottom:506.613333pt;}
.y94{bottom:512.693333pt;}
.y70{bottom:513.093333pt;}
.y41{bottom:514.853333pt;}
.ybe{bottom:522.293333pt;}
.ye8{bottom:528.053333pt;}
.y93{bottom:528.373333pt;}
.y40{bottom:530.453333pt;}
.y12{bottom:530.533333pt;}
.y92{bottom:543.973333pt;}
.y11{bottom:546.133333pt;}
.ye7{bottom:550.373333pt;}
.y6c{bottom:553.093333pt;}
.ybd{bottom:553.893333pt;}
.y3f{bottom:554.133333pt;}
.y10{bottom:561.813333pt;}
.ye6{bottom:566.053333pt;}
.ybc{bottom:569.573333pt;}
.y91{bottom:573.253333pt;}
.y6d{bottom:577.333333pt;}
.ybb{bottom:585.173333pt;}
.y3e{bottom:585.733333pt;}
.ye5{bottom:588.293333pt;}
.yf{bottom:593.413333pt;}
.y90{bottom:597.573333pt;}
.yba{bottom:600.773333pt;}
.y3d{bottom:601.413333pt;}
.y6a{bottom:601.653333pt;}
.ye4{bottom:604.053333pt;}
.ye{bottom:609.013333pt;}
.yb9{bottom:616.453333pt;}
.y3c{bottom:617.013333pt;}
.y8f{bottom:621.893333pt;}
.yd{bottom:624.693333pt;}
.y6b{bottom:625.973333pt;}
.ye3{bottom:626.213333pt;}
.yb8{bottom:632.053333pt;}
.y3b{bottom:632.613333pt;}
.ye2{bottom:641.973333pt;}
.y8e{bottom:646.213333pt;}
.yc{bottom:648.613333pt;}
.y66{bottom:650.213333pt;}
.y3a{bottom:656.293333pt;}
.yb7{bottom:663.733333pt;}
.ye1{bottom:664.133333pt;}
.y8d{bottom:670.453333pt;}
.y68{bottom:674.533333pt;}
.yb6{bottom:679.333333pt;}
.ye0{bottom:679.893333pt;}
.y39{bottom:688.213333pt;}
.yb{bottom:690.213333pt;}
.y8b{bottom:694.773333pt;}
.yb5{bottom:694.933333pt;}
.ydf{bottom:695.493333pt;}
.y61{bottom:698.853333pt;}
.yb4{bottom:710.613333pt;}
.yde{bottom:717.733333pt;}
.y8c{bottom:719.093333pt;}
.ya{bottom:721.813333pt;}
.y63{bottom:723.173333pt;}
.yb3{bottom:726.213333pt;}
.y38{bottom:731.093333pt;}
.ydd{bottom:733.413333pt;}
.yb2{bottom:741.893333pt;}
.y37{bottom:746.693333pt;}
.y9{bottom:753.653333pt;}
.ydc{bottom:757.333333pt;}
.y36{bottom:762.373333pt;}
.y60{bottom:766.453333pt;}
.yb1{bottom:773.493333pt;}
.y8{bottom:785.653333pt;}
.yb0{bottom:789.093333pt;}
.y5f{bottom:790.373333pt;}
.y35{bottom:793.973333pt;}
.ydb{bottom:800.293333pt;}
.yaf{bottom:804.773333pt;}
.y7{bottom:805.013333pt;}
.y34{bottom:809.653333pt;}
.yae{bottom:820.373333pt;}
.y6{bottom:821.013333pt;}
.yda{bottom:824.213333pt;}
.y33{bottom:825.253333pt;}
.y5e{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.y32{bottom:840.853333pt;}
.yad{bottom:844.293333pt;}
.y5d{bottom:848.853333pt;}
.y8a{bottom:856.533333pt;}
.yd9{bottom:857.093333pt;}
.y5c{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y89{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.yd8{bottom:881.013333pt;}
.yac{bottom:886.533333pt;}
.y88{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.y5b{bottom:896.133333pt;}
.ya6{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y2f{bottom:903.840000pt;}
.y5a{bottom:911.840000pt;}
.yd7{bottom:913.920000pt;}
.y2e{bottom:919.440000pt;}
.yaa{bottom:921.680000pt;}
.y59{bottom:927.440000pt;}
.yd6{bottom:929.600000pt;}
.y2d{bottom:935.040000pt;}
.y58{bottom:943.040000pt;}
.yd5{bottom:945.200000pt;}
.ya9{bottom:946.000000pt;}
.y57{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.yd4{bottom:969.120000pt;}
.ya5{bottom:970.320000pt;}
.y56{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y55{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yd3{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h15{height:23.626667pt;}
.hf{height:23.680000pt;}
.h13{height:23.706667pt;}
.h14{height:26.472188pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h18{height:37.032187pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.hc{height:47.920000pt;}
.h12{height:47.946667pt;}
.he{height:48.000000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h19{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:72.240000pt;}
.h17{height:72.266667pt;}
.h10{height:112.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1d{width:31.840000pt;}
.w13{width:39.200000pt;}
.w14{width:40.560000pt;}
.w17{width:43.600000pt;}
.w12{width:43.680000pt;}
.w7{width:44.960000pt;}
.w9{width:50.880000pt;}
.w20{width:54.560000pt;}
.w1f{width:54.666667pt;}
.w6{width:60.560000pt;}
.wa{width:67.360000pt;}
.w8{width:67.386667pt;}
.w1e{width:71.840000pt;}
.w1c{width:73.600000pt;}
.wc{width:87.440000pt;}
.w18{width:92.240000pt;}
.w16{width:92.266667pt;}
.w15{width:92.320000pt;}
.w21{width:104.266667pt;}
.wd{width:106.160000pt;}
.w26{width:112.826667pt;}
.we{width:117.066667pt;}
.w5{width:118.880000pt;}
.w4{width:118.906667pt;}
.w1b{width:127.120000pt;}
.w1a{width:127.146667pt;}
.w22{width:127.280000pt;}
.w10{width:133.466667pt;}
.wf{width:133.520000pt;}
.w11{width:136.560000pt;}
.w27{width:150.560000pt;}
.w25{width:184.720000pt;}
.w24{width:216.666667pt;}
.w19{width:232.186667pt;}
.wb{width:237.786667pt;}
.w23{width:264.026667pt;}
.w3{width:325.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x1e{left:63.600000pt;}
.xd{left:93.600000pt;}
.x16{left:99.680000pt;}
.x21{left:177.066667pt;}
.x2{left:180.266655pt;}
.x1d{left:204.586667pt;}
.xe{left:211.306667pt;}
.x13{left:252.506667pt;}
.x22{left:276.666655pt;}
.xb{left:299.546667pt;}
.xc{left:324.826655pt;}
.x1f{left:328.266667pt;}
.x17{left:332.586667pt;}
.xf{left:345.466667pt;}
.x14{left:386.666667pt;}
.x5{left:387.626667pt;}
.x1b{left:405.066667pt;}
.x9{left:455.653333pt;}
.x18{left:460.373333pt;}
.x10{left:479.653333pt;}
.x6{left:507.173333pt;}
.x15{left:523.973333pt;}
.x1c{left:532.933333pt;}
.x20{left:545.653333pt;}
.xa{left:575.173333pt;}
.x19{left:588.213333pt;}
.x11{left:616.853333pt;}
.x7{left:626.693333pt;}
.x12{left:661.253333pt;}
.x1a{left:662.453333pt;}
.x8{left:687.893333pt;}
.x3{left:704.053322pt;}
}




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