
    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_6f5fb5d56076ad435f1c4cc7.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_71ee55987c9363ed76629e78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_35b3876646648ffac5c5f3e8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_149683e39594af9d4694c5e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_646194df1e398425f36f85c7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_840e280e5e351c34542cf079.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_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e2a6969f12c5cfe6f462694.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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;}
.ls8{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.432000px;}
.lsc{letter-spacing:54.840000px;}
.ls6{letter-spacing:87.984000px;}
.ls7{letter-spacing:92.304000px;}
.ls5{letter-spacing:108.144000px;}
.ls4{letter-spacing:128.304000px;}
.ls0{letter-spacing:134.640000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-19.457280px;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.064000px;}
.ws1{word-spacing:-13.518000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.752000px;}
._12{margin-left:-3.456000px;}
._3{margin-left:-2.292000px;}
._0{margin-left:-1.152000px;}
._1{width:1.824000px;}
._4{width:2.868000px;}
._e{width:3.990000px;}
._5{width:5.454000px;}
._8{width:6.534000px;}
._10{width:8.100000px;}
._f{width:9.180000px;}
._9{width:11.124000px;}
._a{width:12.474000px;}
._17{width:13.584000px;}
._7{width:14.634000px;}
._b{width:16.590000px;}
._18{width:19.908000px;}
._6{width:21.060000px;}
._14{width:22.224000px;}
._c{width:26.892000px;}
._d{width:27.918000px;}
._1c{width:33.840000px;}
._1a{width:35.784000px;}
._1b{width:37.644000px;}
._1d{width:38.868000px;}
._15{width:59.760000px;}
._16{width:60.840000px;}
._19{width:63.432000px;}
._2{width:80.040000px;}
._11{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yef{bottom:7.371000px;}
.y5d{bottom:22.311000px;}
.y61{bottom:22.320000px;}
.y3d{bottom:22.485000px;}
.y44{bottom:22.500000px;}
.yee{bottom:31.305000px;}
.y5c{bottom:46.065000px;}
.y66{bottom:46.080000px;}
.y3c{bottom:46.245000px;}
.y43{bottom:46.260000px;}
.y56{bottom:46.290000px;}
.y49{bottom:46.305000px;}
.yed{bottom:55.065000px;}
.y5b{bottom:70.005000px;}
.y42{bottom:70.020000px;}
.y6c{bottom:70.050000px;}
.y48{bottom:70.065000px;}
.yec{bottom:78.825000px;}
.y5a{bottom:93.765000px;}
.y41{bottom:93.780000px;}
.y6b{bottom:93.810000px;}
.yea{bottom:93.945000px;}
.y4b{bottom:93.960000px;}
.yd6{bottom:93.990000px;}
.y47{bottom:94.005000px;}
.yd8{bottom:110.745000px;}
.y59{bottom:117.525000px;}
.y60{bottom:117.540000px;}
.y65{bottom:117.585000px;}
.y40{bottom:117.720000px;}
.y6a{bottom:117.750000px;}
.y46{bottom:117.765000px;}
.yeb{bottom:120.105000px;}
.y57{bottom:121.185000px;}
.y91{bottom:127.836000px;}
.y70{bottom:134.676000px;}
.y58{bottom:141.285000px;}
.y64{bottom:141.345000px;}
.ydb{bottom:141.465000px;}
.y3f{bottom:141.480000px;}
.yd5{bottom:141.510000px;}
.yc4{bottom:144.936000px;}
.y90{bottom:151.590000px;}
.y6f{bottom:158.430000px;}
.yda{bottom:165.225000px;}
.y5f{bottom:165.240000px;}
.yd4{bottom:165.270000px;}
.y63{bottom:165.285000px;}
.y3b{bottom:167.265000px;}
.yc3{bottom:168.690000px;}
.y8f{bottom:176.970000px;}
.y6e{bottom:183.270000px;}
.y121{bottom:186.690000px;}
.yd9{bottom:188.985000px;}
.yd3{bottom:189.030000px;}
.yc2{bottom:192.630000px;}
.y105{bottom:209.550000px;}
.y120{bottom:210.450000px;}
.ye9{bottom:216.045000px;}
.yc1{bottom:216.390000px;}
.y8e{bottom:217.470000px;}
.y11f{bottom:234.210000px;}
.yc0{bottom:241.230000px;}
.y8d{bottom:241.410000px;}
.y6d{bottom:246.090000px;}
.y104{bottom:248.430000px;}
.y3a{bottom:253.110000px;}
.y69{bottom:263.205000px;}
.y8c{bottom:266.430000px;}
.y11e{bottom:273.090000px;}
.y39{bottom:276.870000px;}
.y55{bottom:279.585000px;}
.y103{bottom:287.130000px;}
.y8b{bottom:290.190000px;}
.y11d{bottom:296.850000px;}
.y38{bottom:300.630000px;}
.ybf{bottom:303.870000px;}
.y102{bottom:310.890000px;}
.y8a{bottom:315.435000px;}
.y1f{bottom:315.795000px;}
.yd7{bottom:316.875000px;}
.y11c{bottom:320.655000px;}
.ybe{bottom:327.855000px;}
.yad{bottom:332.715000px;}
.y101{bottom:334.875000px;}
.y37{bottom:339.555000px;}
.y89{bottom:340.455000px;}
.ybd{bottom:351.615000px;}
.y1e{bottom:354.675000px;}
.yac{bottom:356.475000px;}
.y100{bottom:358.635000px;}
.y11b{bottom:359.535000px;}
.y36{bottom:363.315000px;}
.y88{bottom:364.215000px;}
.y54{bottom:365.475000px;}
.ye8{bottom:374.655000px;}
.ybc{bottom:375.375000px;}
.y1d{bottom:376.635000px;}
.yab{bottom:380.235000px;}
.y11a{bottom:383.295000px;}
.yff{bottom:383.475000px;}
.y35{bottom:388.155000px;}
.y53{bottom:389.235000px;}
.y87{bottom:389.415000px;}
.y1c{bottom:394.455000px;}
.y68{bottom:398.055000px;}
.ybb{bottom:399.315000px;}
.yaa{bottom:405.075000px;}
.y119{bottom:407.055000px;}
.y1b{bottom:412.275000px;}
.y52{bottom:412.995000px;}
.y86{bottom:413.175000px;}
.y1a{bottom:430.095000px;}
.y51{bottom:436.935000px;}
.y85{bottom:438.195000px;}
.yba{bottom:439.995000px;}
.y118{bottom:445.935000px;}
.yfe{bottom:446.115000px;}
.y19{bottom:448.095000px;}
.y34{bottom:450.975000px;}
.y50{bottom:461.775000px;}
.y84{bottom:462.135000px;}
.yb9{bottom:463.755000px;}
.y18{bottom:465.915000px;}
.ya9{bottom:467.895000px;}
.y117{bottom:469.695000px;}
.yfd{bottom:470.055000px;}
.y33{bottom:474.735000px;}
.yd2{bottom:475.455000px;}
.y17{bottom:483.735000px;}
.yb8{bottom:487.515000px;}
.ya8{bottom:491.655000px;}
.y116{bottom:493.455000px;}
.yfc{bottom:495.075000px;}
.y16{bottom:501.555000px;}
.y83{bottom:502.095000px;}
.yb7{bottom:511.455000px;}
.y32{bottom:513.435000px;}
.ya7{bottom:516.675000px;}
.yfb{bottom:518.835000px;}
.y15{bottom:519.375000px;}
.y4f{bottom:524.415000px;}
.y82{bottom:526.215000px;}
.y115{bottom:532.335000px;}
.ye7{bottom:533.235000px;}
.y14{bottom:537.375000px;}
.ya6{bottom:540.615000px;}
.yfa{bottom:544.035000px;}
.y4e{bottom:548.175000px;}
.yb6{bottom:550.155000px;}
.y13{bottom:555.195000px;}
.y114{bottom:556.095000px;}
.y31{bottom:561.135000px;}
.ya5{bottom:565.665000px;}
.y81{bottom:566.745000px;}
.yf9{bottom:567.825000px;}
.y4d{bottom:572.145000px;}
.y12{bottom:573.045000px;}
.yb5{bottom:573.945000px;}
.y113{bottom:579.885000px;}
.y67{bottom:580.425000px;}
.ye6{bottom:581.325000px;}
.y13e{bottom:583.485000px;}
.y30{bottom:584.925000px;}
.ya4{bottom:589.605000px;}
.y80{bottom:590.685000px;}
.y11{bottom:590.865000px;}
.yf8{bottom:592.845000px;}
.yb4{bottom:597.885000px;}
.y112{bottom:603.645000px;}
.y13d{bottom:607.245000px;}
.y10{bottom:608.685000px;}
.y4c{bottom:610.845000px;}
.ya3{bottom:614.625000px;}
.y7f{bottom:615.705000px;}
.yf7{bottom:616.785000px;}
.yb3{bottom:621.645000px;}
.yf{bottom:626.505000px;}
.y4a{bottom:627.945000px;}
.y13c{bottom:631.185000px;}
.y2f{bottom:632.625000px;}
.ya2{bottom:638.385000px;}
.y7e{bottom:639.465000px;}
.yf6{bottom:641.805000px;}
.y111{bottom:642.525000px;}
.ye5{bottom:643.965000px;}
.ye{bottom:644.505000px;}
.yb2{bottom:645.405000px;}
.y13b{bottom:654.945000px;}
.y2e{bottom:656.385000px;}
.yd{bottom:662.325000px;}
.ya1{bottom:663.585000px;}
.y7d{bottom:664.485000px;}
.yf5{bottom:665.565000px;}
.y110{bottom:666.285000px;}
.ye4{bottom:667.905000px;}
.yb1{bottom:669.165000px;}
.y13a{bottom:678.705000px;}
.yd1{bottom:681.765000px;}
.yc{bottom:681.945000px;}
.y12e{bottom:682.845000px;}
.y7c{bottom:688.425000px;}
.y10f{bottom:690.225000px;}
.yf4{bottom:691.665000px;}
.ye3{bottom:692.925000px;}
.yb0{bottom:693.285000px;}
.y2d{bottom:695.085000px;}
.y139{bottom:702.105000px;}
.ya0{bottom:704.265000px;}
.y7b{bottom:713.445000px;}
.y10e{bottom:713.985000px;}
.y62{bottom:715.245000px;}
.ye2{bottom:716.865000px;}
.y2c{bottom:719.025000px;}
.yb{bottom:720.825000px;}
.y12d{bottom:721.545000px;}
.y138{bottom:726.405000px;}
.y9f{bottom:728.025000px;}
.yaf{bottom:733.785000px;}
.y7a{bottom:737.385000px;}
.ye1{bottom:741.885000px;}
.y2b{bottom:743.865000px;}
.y12c{bottom:745.485000px;}
.y137{bottom:750.165000px;}
.y10d{bottom:752.685000px;}
.y9e{bottom:753.225000px;}
.yf3{bottom:754.485000px;}
.ya{bottom:757.725000px;}
.ye0{bottom:765.645000px;}
.yae{bottom:768.345000px;}
.y136{bottom:773.925000px;}
.yd0{bottom:776.445000px;}
.y10c{bottom:776.625000px;}
.y9d{bottom:776.985000px;}
.y9{bottom:777.345000px;}
.yf2{bottom:778.245000px;}
.y12b{bottom:784.185000px;}
.y45{bottom:786.525000px;}
.ydf{bottom:790.665000px;}
.y135{bottom:797.685000px;}
.y10b{bottom:800.385000px;}
.y79{bottom:801.105000px;}
.y9c{bottom:802.005000px;}
.y2a{bottom:806.505000px;}
.y12a{bottom:808.125000px;}
.yde{bottom:814.605000px;}
.y8{bottom:816.225000px;}
.ycf{bottom:817.125000px;}
.y134{bottom:821.670000px;}
.y78{bottom:825.270000px;}
.y9b{bottom:825.990000px;}
.y29{bottom:830.310000px;}
.y129{bottom:831.930000px;}
.y10a{bottom:839.130000px;}
.ydd{bottom:839.850000px;}
.y7{bottom:840.030000px;}
.yce{bottom:840.930000px;}
.y133{bottom:845.430000px;}
.y9a{bottom:851.010000px;}
.y28{bottom:854.250000px;}
.y128{bottom:855.690000px;}
.yf1{bottom:858.030000px;}
.y109{bottom:863.070000px;}
.y6{bottom:863.790000px;}
.ycd{bottom:865.950000px;}
.y77{bottom:866.850000px;}
.y132{bottom:869.190000px;}
.y99{bottom:874.770000px;}
.y27{bottom:878.010000px;}
.ydc{bottom:880.530000px;}
.y127{bottom:885.570000px;}
.y108{bottom:886.830000px;}
.ycc{bottom:889.890000px;}
.y131{bottom:892.950000px;}
.y5e{bottom:897.630000px;}
.y98{bottom:900.150000px;}
.y26{bottom:901.770000px;}
.y5{bottom:902.670000px;}
.ycb{bottom:914.910000px;}
.y126{bottom:915.270000px;}
.y130{bottom:916.530000px;}
.y3e{bottom:921.390000px;}
.y25{bottom:925.530000px;}
.y76{bottom:929.490000px;}
.y125{bottom:935.970000px;}
.yca{bottom:938.670000px;}
.y97{bottom:940.650000px;}
.y4{bottom:941.550000px;}
.y107{bottom:949.470000px;}
.y75{bottom:953.430000px;}
.y124{bottom:956.670000px;}
.yc9{bottom:963.870000px;}
.y24{bottom:964.410000px;}
.y96{bottom:964.590000px;}
.y106{bottom:973.230000px;}
.y74{bottom:977.190000px;}
.y123{bottom:977.370000px;}
.y3{bottom:983.490000px;}
.yc8{bottom:987.630000px;}
.y23{bottom:988.170000px;}
.y95{bottom:989.610000px;}
.y73{bottom:1000.950000px;}
.y22{bottom:1011.930000px;}
.yc7{bottom:1012.650000px;}
.y94{bottom:1013.370000px;}
.y122{bottom:1016.070000px;}
.yf0{bottom:1016.610000px;}
.y2{bottom:1019.310000px;}
.y12f{bottom:1035.510000px;}
.y21{bottom:1035.870000px;}
.yc6{bottom:1036.590000px;}
.y93{bottom:1038.570000px;}
.y72{bottom:1039.830000px;}
.y1{bottom:1054.950000px;}
.y20{bottom:1060.710000px;}
.yc5{bottom:1061.790000px;}
.y92{bottom:1062.330000px;}
.y71{bottom:1063.590000px;}
.h17{height:38.910000px;}
.h4{height:47.276367px;}
.h5{height:52.998047px;}
.h9{height:62.625000px;}
.hd{height:62.661000px;}
.h1b{height:62.670000px;}
.h7{height:63.035156px;}
.h3{height:70.664062px;}
.h8{height:74.004654px;}
.h2{height:76.201172px;}
.h13{height:76.279219px;}
.h6{height:84.898125px;}
.h14{height:86.400000px;}
.h1a{height:95.211000px;}
.h1{height:108.843750px;}
.h11{height:133.920000px;}
.h12{height:134.121000px;}
.hb{height:134.122500px;}
.he{height:157.671000px;}
.h18{height:157.845000px;}
.hc{height:157.860000px;}
.h19{height:157.875000px;}
.ha{height:157.890000px;}
.h10{height:181.635000px;}
.hf{height:181.650000px;}
.h16{height:205.401000px;}
.h15{height:205.410000px;}
.h0{height:1188.000000px;}
.wa{width:103.536000px;}
.w8{width:109.822500px;}
.w4{width:132.142500px;}
.wb{width:134.481000px;}
.wc{width:141.510000px;}
.w9{width:154.440000px;}
.w7{width:155.010000px;}
.w6{width:156.075000px;}
.w5{width:201.090000px;}
.w1{width:214.941000px;}
.w2{width:214.950000px;}
.wd{width:214.980000px;}
.w3{width:215.160000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.731000px;}
.x8{left:135.036000px;}
.x15{left:159.870000px;}
.xa{left:162.030000px;}
.x4{left:163.830000px;}
.x3{left:179.130000px;}
.x2{left:192.450000px;}
.x1{left:194.610000px;}
.x6{left:211.530000px;}
.xb{left:216.030000px;}
.x7{left:219.630000px;}
.x9{left:243.030000px;}
.x16{left:246.315000px;}
.xf{left:264.855000px;}
.x10{left:268.815000px;}
.x13{left:309.855000px;}
.x1b{left:336.495000px;}
.xd{left:351.615000px;}
.x1a{left:354.495000px;}
.x17{left:401.475000px;}
.x5{left:459.105000px;}
.x11{left:470.640000px;}
.x18{left:505.740000px;}
.xe{left:567.300000px;}
.x12{left:627.450000px;}
.x19{left:640.950000px;}
.x14{left:805.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.384000pt;}
.lsc{letter-spacing:48.746667pt;}
.ls6{letter-spacing:78.208000pt;}
.ls7{letter-spacing:82.048000pt;}
.ls5{letter-spacing:96.128000pt;}
.ls4{letter-spacing:114.048000pt;}
.ls0{letter-spacing:119.680000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-4.224000pt;}
._12{margin-left:-3.072000pt;}
._3{margin-left:-2.037333pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.621333pt;}
._4{width:2.549333pt;}
._e{width:3.546667pt;}
._5{width:4.848000pt;}
._8{width:5.808000pt;}
._10{width:7.200000pt;}
._f{width:8.160000pt;}
._9{width:9.888000pt;}
._a{width:11.088000pt;}
._17{width:12.074667pt;}
._7{width:13.008000pt;}
._b{width:14.746667pt;}
._18{width:17.696000pt;}
._6{width:18.720000pt;}
._14{width:19.754667pt;}
._c{width:23.904000pt;}
._d{width:24.816000pt;}
._1c{width:30.080000pt;}
._1a{width:31.808000pt;}
._1b{width:33.461333pt;}
._1d{width:34.549333pt;}
._15{width:53.120000pt;}
._16{width:54.080000pt;}
._19{width:56.384000pt;}
._2{width:71.146667pt;}
._11{width:752.138667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:6.552000pt;}
.y5d{bottom:19.832000pt;}
.y61{bottom:19.840000pt;}
.y3d{bottom:19.986667pt;}
.y44{bottom:20.000000pt;}
.yee{bottom:27.826667pt;}
.y5c{bottom:40.946667pt;}
.y66{bottom:40.960000pt;}
.y3c{bottom:41.106667pt;}
.y43{bottom:41.120000pt;}
.y56{bottom:41.146667pt;}
.y49{bottom:41.160000pt;}
.yed{bottom:48.946667pt;}
.y5b{bottom:62.226667pt;}
.y42{bottom:62.240000pt;}
.y6c{bottom:62.266667pt;}
.y48{bottom:62.280000pt;}
.yec{bottom:70.066667pt;}
.y5a{bottom:83.346667pt;}
.y41{bottom:83.360000pt;}
.y6b{bottom:83.386667pt;}
.yea{bottom:83.506667pt;}
.y4b{bottom:83.520000pt;}
.yd6{bottom:83.546667pt;}
.y47{bottom:83.560000pt;}
.yd8{bottom:98.440000pt;}
.y59{bottom:104.466667pt;}
.y60{bottom:104.480000pt;}
.y65{bottom:104.520000pt;}
.y40{bottom:104.640000pt;}
.y6a{bottom:104.666667pt;}
.y46{bottom:104.680000pt;}
.yeb{bottom:106.760000pt;}
.y57{bottom:107.720000pt;}
.y91{bottom:113.632000pt;}
.y70{bottom:119.712000pt;}
.y58{bottom:125.586667pt;}
.y64{bottom:125.640000pt;}
.ydb{bottom:125.746667pt;}
.y3f{bottom:125.760000pt;}
.yd5{bottom:125.786667pt;}
.yc4{bottom:128.832000pt;}
.y90{bottom:134.746667pt;}
.y6f{bottom:140.826667pt;}
.yda{bottom:146.866667pt;}
.y5f{bottom:146.880000pt;}
.yd4{bottom:146.906667pt;}
.y63{bottom:146.920000pt;}
.y3b{bottom:148.680000pt;}
.yc3{bottom:149.946667pt;}
.y8f{bottom:157.306667pt;}
.y6e{bottom:162.906667pt;}
.y121{bottom:165.946667pt;}
.yd9{bottom:167.986667pt;}
.yd3{bottom:168.026667pt;}
.yc2{bottom:171.226667pt;}
.y105{bottom:186.266667pt;}
.y120{bottom:187.066667pt;}
.ye9{bottom:192.040000pt;}
.yc1{bottom:192.346667pt;}
.y8e{bottom:193.306667pt;}
.y11f{bottom:208.186667pt;}
.yc0{bottom:214.426667pt;}
.y8d{bottom:214.586667pt;}
.y6d{bottom:218.746667pt;}
.y104{bottom:220.826667pt;}
.y3a{bottom:224.986667pt;}
.y69{bottom:233.960000pt;}
.y8c{bottom:236.826667pt;}
.y11e{bottom:242.746667pt;}
.y39{bottom:246.106667pt;}
.y55{bottom:248.520000pt;}
.y103{bottom:255.226667pt;}
.y8b{bottom:257.946667pt;}
.y11d{bottom:263.866667pt;}
.y38{bottom:267.226667pt;}
.ybf{bottom:270.106667pt;}
.y102{bottom:276.346667pt;}
.y8a{bottom:280.386667pt;}
.y1f{bottom:280.706667pt;}
.yd7{bottom:281.666667pt;}
.y11c{bottom:285.026667pt;}
.ybe{bottom:291.426667pt;}
.yad{bottom:295.746667pt;}
.y101{bottom:297.666667pt;}
.y37{bottom:301.826667pt;}
.y89{bottom:302.626667pt;}
.ybd{bottom:312.546667pt;}
.y1e{bottom:315.266667pt;}
.yac{bottom:316.866667pt;}
.y100{bottom:318.786667pt;}
.y11b{bottom:319.586667pt;}
.y36{bottom:322.946667pt;}
.y88{bottom:323.746667pt;}
.y54{bottom:324.866667pt;}
.ye8{bottom:333.026667pt;}
.ybc{bottom:333.666667pt;}
.y1d{bottom:334.786667pt;}
.yab{bottom:337.986667pt;}
.y11a{bottom:340.706667pt;}
.yff{bottom:340.866667pt;}
.y35{bottom:345.026667pt;}
.y53{bottom:345.986667pt;}
.y87{bottom:346.146667pt;}
.y1c{bottom:350.626667pt;}
.y68{bottom:353.826667pt;}
.ybb{bottom:354.946667pt;}
.yaa{bottom:360.066667pt;}
.y119{bottom:361.826667pt;}
.y1b{bottom:366.466667pt;}
.y52{bottom:367.106667pt;}
.y86{bottom:367.266667pt;}
.y1a{bottom:382.306667pt;}
.y51{bottom:388.386667pt;}
.y85{bottom:389.506667pt;}
.yba{bottom:391.106667pt;}
.y118{bottom:396.386667pt;}
.yfe{bottom:396.546667pt;}
.y19{bottom:398.306667pt;}
.y34{bottom:400.866667pt;}
.y50{bottom:410.466667pt;}
.y84{bottom:410.786667pt;}
.yb9{bottom:412.226667pt;}
.y18{bottom:414.146667pt;}
.ya9{bottom:415.906667pt;}
.y117{bottom:417.506667pt;}
.yfd{bottom:417.826667pt;}
.y33{bottom:421.986667pt;}
.yd2{bottom:422.626667pt;}
.y17{bottom:429.986667pt;}
.yb8{bottom:433.346667pt;}
.ya8{bottom:437.026667pt;}
.y116{bottom:438.626667pt;}
.yfc{bottom:440.066667pt;}
.y16{bottom:445.826667pt;}
.y83{bottom:446.306667pt;}
.yb7{bottom:454.626667pt;}
.y32{bottom:456.386667pt;}
.ya7{bottom:459.266667pt;}
.yfb{bottom:461.186667pt;}
.y15{bottom:461.666667pt;}
.y4f{bottom:466.146667pt;}
.y82{bottom:467.746667pt;}
.y115{bottom:473.186667pt;}
.ye7{bottom:473.986667pt;}
.y14{bottom:477.666667pt;}
.ya6{bottom:480.546667pt;}
.yfa{bottom:483.586667pt;}
.y4e{bottom:487.266667pt;}
.yb6{bottom:489.026667pt;}
.y13{bottom:493.506667pt;}
.y114{bottom:494.306667pt;}
.y31{bottom:498.786667pt;}
.ya5{bottom:502.813333pt;}
.y81{bottom:503.773333pt;}
.yf9{bottom:504.733333pt;}
.y4d{bottom:508.573333pt;}
.y12{bottom:509.373333pt;}
.yb5{bottom:510.173333pt;}
.y113{bottom:515.453333pt;}
.y67{bottom:515.933333pt;}
.ye6{bottom:516.733333pt;}
.y13e{bottom:518.653333pt;}
.y30{bottom:519.933333pt;}
.ya4{bottom:524.093333pt;}
.y80{bottom:525.053333pt;}
.y11{bottom:525.213333pt;}
.yf8{bottom:526.973333pt;}
.yb4{bottom:531.453333pt;}
.y112{bottom:536.573333pt;}
.y13d{bottom:539.773333pt;}
.y10{bottom:541.053333pt;}
.y4c{bottom:542.973333pt;}
.ya3{bottom:546.333333pt;}
.y7f{bottom:547.293333pt;}
.yf7{bottom:548.253333pt;}
.yb3{bottom:552.573333pt;}
.yf{bottom:556.893333pt;}
.y4a{bottom:558.173333pt;}
.y13c{bottom:561.053333pt;}
.y2f{bottom:562.333333pt;}
.ya2{bottom:567.453333pt;}
.y7e{bottom:568.413333pt;}
.yf6{bottom:570.493333pt;}
.y111{bottom:571.133333pt;}
.ye5{bottom:572.413333pt;}
.ye{bottom:572.893333pt;}
.yb2{bottom:573.693333pt;}
.y13b{bottom:582.173333pt;}
.y2e{bottom:583.453333pt;}
.yd{bottom:588.733333pt;}
.ya1{bottom:589.853333pt;}
.y7d{bottom:590.653333pt;}
.yf5{bottom:591.613333pt;}
.y110{bottom:592.253333pt;}
.ye4{bottom:593.693333pt;}
.yb1{bottom:594.813333pt;}
.y13a{bottom:603.293333pt;}
.yd1{bottom:606.013333pt;}
.yc{bottom:606.173333pt;}
.y12e{bottom:606.973333pt;}
.y7c{bottom:611.933333pt;}
.y10f{bottom:613.533333pt;}
.yf4{bottom:614.813333pt;}
.ye3{bottom:615.933333pt;}
.yb0{bottom:616.253333pt;}
.y2d{bottom:617.853333pt;}
.y139{bottom:624.093333pt;}
.ya0{bottom:626.013333pt;}
.y7b{bottom:634.173333pt;}
.y10e{bottom:634.653333pt;}
.y62{bottom:635.773333pt;}
.ye2{bottom:637.213333pt;}
.y2c{bottom:639.133333pt;}
.yb{bottom:640.733333pt;}
.y12d{bottom:641.373333pt;}
.y138{bottom:645.693333pt;}
.y9f{bottom:647.133333pt;}
.yaf{bottom:652.253333pt;}
.y7a{bottom:655.453333pt;}
.ye1{bottom:659.453333pt;}
.y2b{bottom:661.213333pt;}
.y12c{bottom:662.653333pt;}
.y137{bottom:666.813333pt;}
.y10d{bottom:669.053333pt;}
.y9e{bottom:669.533333pt;}
.yf3{bottom:670.653333pt;}
.ya{bottom:673.533333pt;}
.ye0{bottom:680.573333pt;}
.yae{bottom:682.973333pt;}
.y136{bottom:687.933333pt;}
.yd0{bottom:690.173333pt;}
.y10c{bottom:690.333333pt;}
.y9d{bottom:690.653333pt;}
.y9{bottom:690.973333pt;}
.yf2{bottom:691.773333pt;}
.y12b{bottom:697.053333pt;}
.y45{bottom:699.133333pt;}
.ydf{bottom:702.813333pt;}
.y135{bottom:709.053333pt;}
.y10b{bottom:711.453333pt;}
.y79{bottom:712.093333pt;}
.y9c{bottom:712.893333pt;}
.y2a{bottom:716.893333pt;}
.y12a{bottom:718.333333pt;}
.yde{bottom:724.093333pt;}
.y8{bottom:725.533333pt;}
.ycf{bottom:726.333333pt;}
.y134{bottom:730.373333pt;}
.y78{bottom:733.573333pt;}
.y9b{bottom:734.213333pt;}
.y29{bottom:738.053333pt;}
.y129{bottom:739.493333pt;}
.y10a{bottom:745.893333pt;}
.ydd{bottom:746.533333pt;}
.y7{bottom:746.693333pt;}
.yce{bottom:747.493333pt;}
.y133{bottom:751.493333pt;}
.y9a{bottom:756.453333pt;}
.y28{bottom:759.333333pt;}
.y128{bottom:760.613333pt;}
.yf1{bottom:762.693333pt;}
.y109{bottom:767.173333pt;}
.y6{bottom:767.813333pt;}
.ycd{bottom:769.733333pt;}
.y77{bottom:770.533333pt;}
.y132{bottom:772.613333pt;}
.y99{bottom:777.573333pt;}
.y27{bottom:780.453333pt;}
.ydc{bottom:782.693333pt;}
.y127{bottom:787.173333pt;}
.y108{bottom:788.293333pt;}
.ycc{bottom:791.013333pt;}
.y131{bottom:793.733333pt;}
.y5e{bottom:797.893333pt;}
.y98{bottom:800.133333pt;}
.y26{bottom:801.573333pt;}
.y5{bottom:802.373333pt;}
.ycb{bottom:813.253333pt;}
.y126{bottom:813.573333pt;}
.y130{bottom:814.693333pt;}
.y3e{bottom:819.013333pt;}
.y25{bottom:822.693333pt;}
.y76{bottom:826.213333pt;}
.y125{bottom:831.973333pt;}
.yca{bottom:834.373333pt;}
.y97{bottom:836.133333pt;}
.y4{bottom:836.933333pt;}
.y107{bottom:843.973333pt;}
.y75{bottom:847.493333pt;}
.y124{bottom:850.373333pt;}
.yc9{bottom:856.773333pt;}
.y24{bottom:857.253333pt;}
.y96{bottom:857.413333pt;}
.y106{bottom:865.093333pt;}
.y74{bottom:868.613333pt;}
.y123{bottom:868.773333pt;}
.y3{bottom:874.213333pt;}
.yc8{bottom:877.893333pt;}
.y23{bottom:878.373333pt;}
.y95{bottom:879.653333pt;}
.y73{bottom:889.733333pt;}
.y22{bottom:899.493333pt;}
.yc7{bottom:900.133333pt;}
.y94{bottom:900.773333pt;}
.y122{bottom:903.173333pt;}
.yf0{bottom:903.653333pt;}
.y2{bottom:906.053333pt;}
.y12f{bottom:920.453333pt;}
.y21{bottom:920.773333pt;}
.yc6{bottom:921.413333pt;}
.y93{bottom:923.173333pt;}
.y72{bottom:924.293333pt;}
.y1{bottom:937.733333pt;}
.y20{bottom:942.853333pt;}
.yc5{bottom:943.813333pt;}
.y92{bottom:944.293333pt;}
.y71{bottom:945.413333pt;}
.h17{height:34.586667pt;}
.h4{height:42.023438pt;}
.h5{height:47.109375pt;}
.h9{height:55.666667pt;}
.hd{height:55.698667pt;}
.h1b{height:55.706667pt;}
.h7{height:56.031250pt;}
.h3{height:62.812500pt;}
.h8{height:65.781915pt;}
.h2{height:67.734375pt;}
.h13{height:67.803750pt;}
.h6{height:75.465000pt;}
.h14{height:76.800000pt;}
.h1a{height:84.632000pt;}
.h1{height:96.750000pt;}
.h11{height:119.040000pt;}
.h12{height:119.218667pt;}
.hb{height:119.220000pt;}
.he{height:140.152000pt;}
.h18{height:140.306667pt;}
.hc{height:140.320000pt;}
.h19{height:140.333333pt;}
.ha{height:140.346667pt;}
.h10{height:161.453333pt;}
.hf{height:161.466667pt;}
.h16{height:182.578667pt;}
.h15{height:182.586667pt;}
.h0{height:1056.000000pt;}
.wa{width:92.032000pt;}
.w8{width:97.620000pt;}
.w4{width:117.460000pt;}
.wb{width:119.538667pt;}
.wc{width:125.786667pt;}
.w9{width:137.280000pt;}
.w7{width:137.786667pt;}
.w6{width:138.733333pt;}
.w5{width:178.746667pt;}
.w1{width:191.058667pt;}
.w2{width:191.066667pt;}
.wd{width:191.093333pt;}
.w3{width:191.253333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.872000pt;}
.x8{left:120.032000pt;}
.x15{left:142.106667pt;}
.xa{left:144.026667pt;}
.x4{left:145.626667pt;}
.x3{left:159.226667pt;}
.x2{left:171.066667pt;}
.x1{left:172.986667pt;}
.x6{left:188.026667pt;}
.xb{left:192.026667pt;}
.x7{left:195.226667pt;}
.x9{left:216.026667pt;}
.x16{left:218.946667pt;}
.xf{left:235.426667pt;}
.x10{left:238.946667pt;}
.x13{left:275.426667pt;}
.x1b{left:299.106667pt;}
.xd{left:312.546667pt;}
.x1a{left:315.106667pt;}
.x17{left:356.866667pt;}
.x5{left:408.093333pt;}
.x11{left:418.346667pt;}
.x18{left:449.546667pt;}
.xe{left:504.266667pt;}
.x12{left:557.733333pt;}
.x19{left:569.733333pt;}
.x14{left:716.160000pt;}
}




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