
    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_7ae3470040b02a5ca7863229.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c3581f529f49205c27f2f97.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25de5ba87e787025ed48b1ed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_722febf78fd8c5b96d6b63f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d4d659de670e8cd0d768098.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_e8129b81888c43a6c66c96a3.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-68.400000px;}
.va{vertical-align:-66.240000px;}
.v8{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v9{vertical-align:-60.480000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls23{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.342000px;}
.lse{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.900000px;}
.ls22{letter-spacing:2.988000px;}
.ls4{letter-spacing:5.940000px;}
.ls6{letter-spacing:6.840000px;}
.ls8{letter-spacing:8.100000px;}
.ls21{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.lsa{letter-spacing:55.620000px;}
.ls2{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1b{letter-spacing:770.100000px;}
.ls1a{letter-spacing:810.300000px;}
.ls1c{letter-spacing:1046.700000px;}
.ls19{letter-spacing:1207.500000px;}
.ls1f{letter-spacing:1248.300000px;}
.ls17{letter-spacing:1277.700000px;}
.ls12{letter-spacing:1286.040000px;}
.ls20{letter-spacing:1290.900000px;}
.ls9{letter-spacing:1377.900000px;}
.ls1e{letter-spacing:1410.900000px;}
.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:-21.420000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.ws6{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.906000px;}
.ws10{word-spacing:-12.672000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._6{width:3.083760px;}
._4{width:5.076000px;}
._5{width:6.204000px;}
._7{width:7.330560px;}
._8{width:8.694000px;}
._9{width:9.859200px;}
._a{width:10.962000px;}
._c{width:12.067920px;}
._b{width:15.130560px;}
._d{width:16.226880px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:2.850000px;}
.y90{bottom:3.150000px;}
.y8e{bottom:3.300000px;}
.ya6{bottom:3.450000px;}
.y7b{bottom:15.075000px;}
.y62{bottom:17.325000px;}
.y8b{bottom:18.450000px;}
.yd6{bottom:31.935000px;}
.y8c{bottom:33.900000px;}
.ya0{bottom:36.465000px;}
.yf8{bottom:49.542000px;}
.y37{bottom:54.060000px;}
.y2{bottom:57.960000px;}
.yf7{bottom:59.955000px;}
.y61{bottom:62.145000px;}
.y7a{bottom:62.850000px;}
.y9f{bottom:64.110000px;}
.yd5{bottom:68.550000px;}
.y1{bottom:76.890000px;}
.y60{bottom:77.655000px;}
.y79{bottom:78.360000px;}
.y9e{bottom:79.800000px;}
.yd4{bottom:84.060000px;}
.y5f{bottom:93.135000px;}
.y78{bottom:94.020000px;}
.yd3{bottom:99.720000px;}
.y5e{bottom:108.795000px;}
.y77{bottom:109.320000px;}
.y9d{bottom:111.300000px;}
.yd2{bottom:114.840000px;}
.y9c{bottom:123.540000px;}
.y5d{bottom:124.275000px;}
.y76{bottom:124.800000px;}
.yd1{bottom:130.500000px;}
.y5c{bottom:139.755000px;}
.y75{bottom:140.820000px;}
.yd0{bottom:146.520000px;}
.y5b{bottom:155.235000px;}
.y74{bottom:156.480000px;}
.y34{bottom:159.510000px;}
.ycf{bottom:162.000000px;}
.y5a{bottom:170.895000px;}
.y73{bottom:171.960000px;}
.yce{bottom:175.050000px;}
.y33{bottom:175.170000px;}
.y72{bottom:184.380000px;}
.y59{bottom:186.555000px;}
.y32{bottom:190.650000px;}
.ycd{bottom:197.550000px;}
.y58{bottom:201.675000px;}
.y31{bottom:206.310000px;}
.y57{bottom:217.695000px;}
.ycc{bottom:220.050000px;}
.y30{bottom:221.790000px;}
.y56{bottom:233.175000px;}
.y2f{bottom:237.270000px;}
.ycb{bottom:242.550000px;}
.y55{bottom:248.655000px;}
.y2e{bottom:252.930000px;}
.y54{bottom:264.315000px;}
.y2d{bottom:268.410000px;}
.y53{bottom:279.795000px;}
.yca{bottom:283.875000px;}
.y2c{bottom:283.890000px;}
.y52{bottom:295.455000px;}
.y2b{bottom:299.370000px;}
.yc9{bottom:299.535000px;}
.y51{bottom:310.935000px;}
.yc8{bottom:315.015000px;}
.y2a{bottom:315.030000px;}
.y50{bottom:326.415000px;}
.yc7{bottom:330.495000px;}
.y29{bottom:330.510000px;}
.y4f{bottom:341.940000px;}
.yc6{bottom:346.200000px;}
.y4e{bottom:357.600000px;}
.yc5{bottom:361.320000px;}
.y28{bottom:361.335000px;}
.y4d{bottom:373.080000px;}
.yc4{bottom:376.980000px;}
.y4c{bottom:388.740000px;}
.y27{bottom:392.835000px;}
.y4b{bottom:404.220000px;}
.yc3{bottom:409.200000px;}
.y9b{bottom:410.640000px;}
.y4a{bottom:419.700000px;}
.y26{bottom:420.375000px;}
.yc2{bottom:424.950000px;}
.y9a{bottom:426.300000px;}
.y49{bottom:435.360000px;}
.y25{bottom:435.855000px;}
.y99{bottom:438.720000px;}
.y48{bottom:450.840000px;}
.y24{bottom:451.515000px;}
.y47{bottom:466.320000px;}
.y23{bottom:466.995000px;}
.yc1{bottom:468.450000px;}
.y46{bottom:481.980000px;}
.y22{bottom:482.655000px;}
.y45{bottom:497.280000px;}
.yc0{bottom:511.950000px;}
.y44{bottom:512.760000px;}
.y21{bottom:514.515000px;}
.y43{bottom:528.420000px;}
.y20{bottom:532.695000px;}
.y1f{bottom:548.355000px;}
.yf6{bottom:551.055000px;}
.ybf{bottom:555.450000px;}
.y42{bottom:560.640000px;}
.y1e{bottom:563.835000px;}
.yf5{bottom:566.535000px;}
.y71{bottom:571.980000px;}
.y41{bottom:578.820000px;}
.y1d{bottom:579.315000px;}
.yf4{bottom:582.195000px;}
.y70{bottom:590.340000px;}
.y40{bottom:594.480000px;}
.y1c{bottom:594.795000px;}
.yf3{bottom:597.855000px;}
.ybe{bottom:598.950000px;}
.y6f{bottom:602.580000px;}
.y3f{bottom:609.990000px;}
.y1b{bottom:610.485000px;}
.yf2{bottom:613.365000px;}
.y3e{bottom:625.650000px;}
.y1a{bottom:625.965000px;}
.yf1{bottom:629.025000px;}
.y3d{bottom:641.310000px;}
.y19{bottom:641.625000px;}
.yf0{bottom:644.685000px;}
.y3c{bottom:653.550000px;}
.yef{bottom:660.165000px;}
.ybd{bottom:661.425000px;}
.y18{bottom:663.765000px;}
.yee{bottom:675.825000px;}
.ybc{bottom:676.905000px;}
.y98{bottom:678.120000px;}
.y17{bottom:690.405000px;}
.yed{bottom:691.485000px;}
.ybb{bottom:692.385000px;}
.y97{bottom:693.780000px;}
.y16{bottom:705.885000px;}
.yec{bottom:706.965000px;}
.yba{bottom:708.045000px;}
.y96{bottom:709.260000px;}
.y15{bottom:721.545000px;}
.yeb{bottom:722.265000px;}
.yb9{bottom:723.345000px;}
.y95{bottom:724.740000px;}
.yea{bottom:737.925000px;}
.yb8{bottom:738.825000px;}
.y94{bottom:740.400000px;}
.ye9{bottom:753.765000px;}
.yb7{bottom:754.845000px;}
.y93{bottom:755.520000px;}
.y14{bottom:756.105000px;}
.ye8{bottom:769.065000px;}
.yb6{bottom:770.325000px;}
.y92{bottom:771.180000px;}
.y13{bottom:777.705000px;}
.yb5{bottom:785.985000px;}
.y91{bottom:787.200000px;}
.y8f{bottom:800.250000px;}
.ye7{bottom:800.565000px;}
.yb4{bottom:801.465000px;}
.y12{bottom:812.265000px;}
.ye6{bottom:816.225000px;}
.yb3{bottom:816.945000px;}
.ye5{bottom:831.885000px;}
.yb2{bottom:832.245000px;}
.y11{bottom:847.005000px;}
.ye4{bottom:847.365000px;}
.yb1{bottom:847.905000px;}
.y8d{bottom:851.100000px;}
.yb0{bottom:863.745000px;}
.y10{bottom:876.030000px;}
.ye3{bottom:878.550000px;}
.yaf{bottom:879.450000px;}
.yae{bottom:892.350000px;}
.ye2{bottom:894.210000px;}
.y3b{bottom:895.500000px;}
.y89{bottom:902.100000px;}
.ye1{bottom:909.690000px;}
.y3a{bottom:910.980000px;}
.yad{bottom:914.850000px;}
.yf{bottom:915.270000px;}
.ye0{bottom:925.170000px;}
.y39{bottom:926.640000px;}
.yac{bottom:937.350000px;}
.y38{bottom:939.060000px;}
.ye{bottom:939.390000px;}
.ydf{bottom:940.650000px;}
.yde{bottom:956.310000px;}
.yab{bottom:959.850000px;}
.y6e{bottom:964.530000px;}
.y88{bottom:971.790000px;}
.y6d{bottom:980.010000px;}
.yd{bottom:981.690000px;}
.yaa{bottom:982.350000px;}
.ydd{bottom:987.090000px;}
.y87{bottom:987.270000px;}
.y6c{bottom:995.490000px;}
.y86{bottom:1002.750000px;}
.ya9{bottom:1004.850000px;}
.y6b{bottom:1011.150000px;}
.yc{bottom:1016.070000px;}
.y85{bottom:1018.410000px;}
.ydc{bottom:1018.590000px;}
.y6a{bottom:1026.630000px;}
.ya8{bottom:1027.350000px;}
.y84{bottom:1033.710000px;}
.y9{bottom:1034.070000px;}
.ydb{bottom:1034.250000px;}
.yb{bottom:1039.290000px;}
.y69{bottom:1042.110000px;}
.y83{bottom:1049.190000px;}
.yda{bottom:1049.730000px;}
.ya7{bottom:1049.850000px;}
.y8{bottom:1057.290000px;}
.y68{bottom:1057.590000px;}
.y82{bottom:1065.210000px;}
.ya{bottom:1071.330000px;}
.ya5{bottom:1072.350000px;}
.y67{bottom:1073.250000px;}
.y81{bottom:1080.690000px;}
.yd9{bottom:1080.870000px;}
.y7{bottom:1086.630000px;}
.y66{bottom:1088.730000px;}
.ya4{bottom:1094.850000px;}
.yd8{bottom:1095.990000px;}
.y80{bottom:1096.350000px;}
.y65{bottom:1104.030000px;}
.y6{bottom:1105.710000px;}
.y7f{bottom:1111.650000px;}
.ya3{bottom:1117.350000px;}
.y64{bottom:1119.690000px;}
.y5{bottom:1122.990000px;}
.y7e{bottom:1127.130000px;}
.yd7{bottom:1127.670000px;}
.y4{bottom:1140.300000px;}
.y7d{bottom:1143.180000px;}
.ya2{bottom:1143.210000px;}
.y3{bottom:1158.300000px;}
.ya1{bottom:1158.510000px;}
.y7c{bottom:1158.660000px;}
.y63{bottom:1158.960000px;}
.y36{bottom:1175.160000px;}
.y35{bottom:1193.700000px;}
.h17{height:21.780000px;}
.h16{height:21.810000px;}
.hb{height:35.314453px;}
.h1a{height:42.660000px;}
.h19{height:42.690000px;}
.h6{height:48.616875px;}
.h13{height:50.040000px;}
.h15{height:50.220000px;}
.h14{height:50.235000px;}
.hc{height:52.971680px;}
.h10{height:52.998047px;}
.hd{height:54.421875px;}
.h1c{height:55.503491px;}
.h7{height:55.796836px;}
.h11{height:55.824609px;}
.h8{height:58.621992px;}
.hf{height:59.074453px;}
.h12{height:59.092031px;}
.h1b{height:59.236031px;}
.h18{height:59.332031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.wa{width:71.640000px;}
.w2{width:103.140000px;}
.w3{width:103.335000px;}
.w7{width:132.690000px;}
.w8{width:133.050000px;}
.w9{width:154.050000px;}
.w4{width:186.900000px;}
.w5{width:223.350000px;}
.w1{width:235.350000px;}
.w6{width:410.550000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1a{left:7.500000px;}
.x35{left:10.350000px;}
.x3b{left:14.100000px;}
.x3c{left:16.500000px;}
.x2b{left:18.600000px;}
.x28{left:21.300000px;}
.x33{left:24.150000px;}
.x2{left:29.970000px;}
.x1e{left:40.050000px;}
.x37{left:44.700000px;}
.xc{left:46.950000px;}
.x1f{left:48.300000px;}
.x8{left:50.520000px;}
.x1d{left:51.750000px;}
.x38{left:54.000000px;}
.xb{left:55.770000px;}
.x31{left:62.100000px;}
.x20{left:64.350000px;}
.x2f{left:69.450000px;}
.x41{left:74.745000px;}
.x2d{left:78.150000px;}
.x2e{left:84.750000px;}
.x2c{left:85.950000px;}
.x30{left:89.850000px;}
.x2a{left:96.450000px;}
.x27{left:99.900000px;}
.x40{left:101.775000px;}
.x9{left:107.820000px;}
.xa{left:160.200000px;}
.x26{left:173.400000px;}
.x29{left:178.200000px;}
.x19{left:231.900000px;}
.x5{left:244.170000px;}
.x25{left:247.950000px;}
.x32{left:253.350000px;}
.x16{left:266.340000px;}
.x3{left:270.300000px;}
.x4{left:290.610000px;}
.xf{left:294.300000px;}
.x14{left:297.780000px;}
.x11{left:305.850000px;}
.x39{left:340.050000px;}
.x24{left:352.410000px;}
.x34{left:386.400000px;}
.x3f{left:404.175000px;}
.xd{left:412.620000px;}
.x12{left:415.200000px;}
.x42{left:425.460000px;}
.x23{left:433.200000px;}
.x18{left:435.450000px;}
.x1{left:440.700000px;}
.x17{left:449.250000px;}
.x3d{left:453.150000px;}
.x1b{left:467.550000px;}
.x3e{left:472.365000px;}
.x6{left:478.965000px;}
.x3a{left:494.550000px;}
.x7{left:506.580000px;}
.x36{left:519.750000px;}
.x1c{left:571.050000px;}
.x13{left:639.480000px;}
.x22{left:651.984000px;}
.x21{left:659.424000px;}
.xe{left:662.850000px;}
.x10{left:665.550000px;}
.x15{left:672.990000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.va{vertical-align:-58.880000pt;}
.v8{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v9{vertical-align:-53.760000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls23{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.304000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls22{letter-spacing:2.656000pt;}
.ls4{letter-spacing:5.280000pt;}
.ls6{letter-spacing:6.080000pt;}
.ls8{letter-spacing:7.200000pt;}
.ls21{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1b{letter-spacing:684.533333pt;}
.ls1a{letter-spacing:720.266667pt;}
.ls1c{letter-spacing:930.400000pt;}
.ls19{letter-spacing:1073.333333pt;}
.ls1f{letter-spacing:1109.600000pt;}
.ls17{letter-spacing:1135.733333pt;}
.ls12{letter-spacing:1143.146667pt;}
.ls20{letter-spacing:1147.466667pt;}
.ls9{letter-spacing:1224.800000pt;}
.ls1e{letter-spacing:1254.133333pt;}
.ws7{word-spacing:-19.040000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.472000pt;}
.ws10{word-spacing:-11.264000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._6{width:2.741120pt;}
._4{width:4.512000pt;}
._5{width:5.514667pt;}
._7{width:6.516053pt;}
._8{width:7.728000pt;}
._9{width:8.763733pt;}
._a{width:9.744000pt;}
._c{width:10.727040pt;}
._b{width:13.449387pt;}
._d{width:14.423893pt;}
._3{width:1399.520000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:2.533333pt;}
.y90{bottom:2.800000pt;}
.y8e{bottom:2.933333pt;}
.ya6{bottom:3.066667pt;}
.y7b{bottom:13.400000pt;}
.y62{bottom:15.400000pt;}
.y8b{bottom:16.400000pt;}
.yd6{bottom:28.386667pt;}
.y8c{bottom:30.133333pt;}
.ya0{bottom:32.413333pt;}
.yf8{bottom:44.037333pt;}
.y37{bottom:48.053333pt;}
.y2{bottom:51.520000pt;}
.yf7{bottom:53.293333pt;}
.y61{bottom:55.240000pt;}
.y7a{bottom:55.866667pt;}
.y9f{bottom:56.986667pt;}
.yd5{bottom:60.933333pt;}
.y1{bottom:68.346667pt;}
.y60{bottom:69.026667pt;}
.y79{bottom:69.653333pt;}
.y9e{bottom:70.933333pt;}
.yd4{bottom:74.720000pt;}
.y5f{bottom:82.786667pt;}
.y78{bottom:83.573333pt;}
.yd3{bottom:88.640000pt;}
.y5e{bottom:96.706667pt;}
.y77{bottom:97.173333pt;}
.y9d{bottom:98.933333pt;}
.yd2{bottom:102.080000pt;}
.y9c{bottom:109.813333pt;}
.y5d{bottom:110.466667pt;}
.y76{bottom:110.933333pt;}
.yd1{bottom:116.000000pt;}
.y5c{bottom:124.226667pt;}
.y75{bottom:125.173333pt;}
.yd0{bottom:130.240000pt;}
.y5b{bottom:137.986667pt;}
.y74{bottom:139.093333pt;}
.y34{bottom:141.786667pt;}
.ycf{bottom:144.000000pt;}
.y5a{bottom:151.906667pt;}
.y73{bottom:152.853333pt;}
.yce{bottom:155.600000pt;}
.y33{bottom:155.706667pt;}
.y72{bottom:163.893333pt;}
.y59{bottom:165.826667pt;}
.y32{bottom:169.466667pt;}
.ycd{bottom:175.600000pt;}
.y58{bottom:179.266667pt;}
.y31{bottom:183.386667pt;}
.y57{bottom:193.506667pt;}
.ycc{bottom:195.600000pt;}
.y30{bottom:197.146667pt;}
.y56{bottom:207.266667pt;}
.y2f{bottom:210.906667pt;}
.ycb{bottom:215.600000pt;}
.y55{bottom:221.026667pt;}
.y2e{bottom:224.826667pt;}
.y54{bottom:234.946667pt;}
.y2d{bottom:238.586667pt;}
.y53{bottom:248.706667pt;}
.yca{bottom:252.333333pt;}
.y2c{bottom:252.346667pt;}
.y52{bottom:262.626667pt;}
.y2b{bottom:266.106667pt;}
.yc9{bottom:266.253333pt;}
.y51{bottom:276.386667pt;}
.yc8{bottom:280.013333pt;}
.y2a{bottom:280.026667pt;}
.y50{bottom:290.146667pt;}
.yc7{bottom:293.773333pt;}
.y29{bottom:293.786667pt;}
.y4f{bottom:303.946667pt;}
.yc6{bottom:307.733333pt;}
.y4e{bottom:317.866667pt;}
.yc5{bottom:321.173333pt;}
.y28{bottom:321.186667pt;}
.y4d{bottom:331.626667pt;}
.yc4{bottom:335.093333pt;}
.y4c{bottom:345.546667pt;}
.y27{bottom:349.186667pt;}
.y4b{bottom:359.306667pt;}
.yc3{bottom:363.733333pt;}
.y9b{bottom:365.013333pt;}
.y4a{bottom:373.066667pt;}
.y26{bottom:373.666667pt;}
.yc2{bottom:377.733333pt;}
.y9a{bottom:378.933333pt;}
.y49{bottom:386.986667pt;}
.y25{bottom:387.426667pt;}
.y99{bottom:389.973333pt;}
.y48{bottom:400.746667pt;}
.y24{bottom:401.346667pt;}
.y47{bottom:414.506667pt;}
.y23{bottom:415.106667pt;}
.yc1{bottom:416.400000pt;}
.y46{bottom:428.426667pt;}
.y22{bottom:429.026667pt;}
.y45{bottom:442.026667pt;}
.yc0{bottom:455.066667pt;}
.y44{bottom:455.786667pt;}
.y21{bottom:457.346667pt;}
.y43{bottom:469.706667pt;}
.y20{bottom:473.506667pt;}
.y1f{bottom:487.426667pt;}
.yf6{bottom:489.826667pt;}
.ybf{bottom:493.733333pt;}
.y42{bottom:498.346667pt;}
.y1e{bottom:501.186667pt;}
.yf5{bottom:503.586667pt;}
.y71{bottom:508.426667pt;}
.y41{bottom:514.506667pt;}
.y1d{bottom:514.946667pt;}
.yf4{bottom:517.506667pt;}
.y70{bottom:524.746667pt;}
.y40{bottom:528.426667pt;}
.y1c{bottom:528.706667pt;}
.yf3{bottom:531.426667pt;}
.ybe{bottom:532.400000pt;}
.y6f{bottom:535.626667pt;}
.y3f{bottom:542.213333pt;}
.y1b{bottom:542.653333pt;}
.yf2{bottom:545.213333pt;}
.y3e{bottom:556.133333pt;}
.y1a{bottom:556.413333pt;}
.yf1{bottom:559.133333pt;}
.y3d{bottom:570.053333pt;}
.y19{bottom:570.333333pt;}
.yf0{bottom:573.053333pt;}
.y3c{bottom:580.933333pt;}
.yef{bottom:586.813333pt;}
.ybd{bottom:587.933333pt;}
.y18{bottom:590.013333pt;}
.yee{bottom:600.733333pt;}
.ybc{bottom:601.693333pt;}
.y98{bottom:602.773333pt;}
.y17{bottom:613.693333pt;}
.yed{bottom:614.653333pt;}
.ybb{bottom:615.453333pt;}
.y97{bottom:616.693333pt;}
.y16{bottom:627.453333pt;}
.yec{bottom:628.413333pt;}
.yba{bottom:629.373333pt;}
.y96{bottom:630.453333pt;}
.y15{bottom:641.373333pt;}
.yeb{bottom:642.013333pt;}
.yb9{bottom:642.973333pt;}
.y95{bottom:644.213333pt;}
.yea{bottom:655.933333pt;}
.yb8{bottom:656.733333pt;}
.y94{bottom:658.133333pt;}
.ye9{bottom:670.013333pt;}
.yb7{bottom:670.973333pt;}
.y93{bottom:671.573333pt;}
.y14{bottom:672.093333pt;}
.ye8{bottom:683.613333pt;}
.yb6{bottom:684.733333pt;}
.y92{bottom:685.493333pt;}
.y13{bottom:691.293333pt;}
.yb5{bottom:698.653333pt;}
.y91{bottom:699.733333pt;}
.y8f{bottom:711.333333pt;}
.ye7{bottom:711.613333pt;}
.yb4{bottom:712.413333pt;}
.y12{bottom:722.013333pt;}
.ye6{bottom:725.533333pt;}
.yb3{bottom:726.173333pt;}
.ye5{bottom:739.453333pt;}
.yb2{bottom:739.773333pt;}
.y11{bottom:752.893333pt;}
.ye4{bottom:753.213333pt;}
.yb1{bottom:753.693333pt;}
.y8d{bottom:756.533333pt;}
.yb0{bottom:767.773333pt;}
.y10{bottom:778.693333pt;}
.ye3{bottom:780.933333pt;}
.yaf{bottom:781.733333pt;}
.yae{bottom:793.200000pt;}
.ye2{bottom:794.853333pt;}
.y3b{bottom:796.000000pt;}
.y89{bottom:801.866667pt;}
.ye1{bottom:808.613333pt;}
.y3a{bottom:809.760000pt;}
.yad{bottom:813.200000pt;}
.yf{bottom:813.573333pt;}
.ye0{bottom:822.373333pt;}
.y39{bottom:823.680000pt;}
.yac{bottom:833.200000pt;}
.y38{bottom:834.720000pt;}
.ye{bottom:835.013333pt;}
.ydf{bottom:836.133333pt;}
.yde{bottom:850.053333pt;}
.yab{bottom:853.200000pt;}
.y6e{bottom:857.360000pt;}
.y88{bottom:863.813333pt;}
.y6d{bottom:871.120000pt;}
.yd{bottom:872.613333pt;}
.yaa{bottom:873.200000pt;}
.ydd{bottom:877.413333pt;}
.y87{bottom:877.573333pt;}
.y6c{bottom:884.880000pt;}
.y86{bottom:891.333333pt;}
.ya9{bottom:893.200000pt;}
.y6b{bottom:898.800000pt;}
.yc{bottom:903.173333pt;}
.y85{bottom:905.253333pt;}
.ydc{bottom:905.413333pt;}
.y6a{bottom:912.560000pt;}
.ya8{bottom:913.200000pt;}
.y84{bottom:918.853333pt;}
.y9{bottom:919.173333pt;}
.ydb{bottom:919.333333pt;}
.yb{bottom:923.813333pt;}
.y69{bottom:926.320000pt;}
.y83{bottom:932.613333pt;}
.yda{bottom:933.093333pt;}
.ya7{bottom:933.200000pt;}
.y8{bottom:939.813333pt;}
.y68{bottom:940.080000pt;}
.y82{bottom:946.853333pt;}
.ya{bottom:952.293333pt;}
.ya5{bottom:953.200000pt;}
.y67{bottom:954.000000pt;}
.y81{bottom:960.613333pt;}
.yd9{bottom:960.773333pt;}
.y7{bottom:965.893333pt;}
.y66{bottom:967.760000pt;}
.ya4{bottom:973.200000pt;}
.yd8{bottom:974.213333pt;}
.y80{bottom:974.533333pt;}
.y65{bottom:981.360000pt;}
.y6{bottom:982.853333pt;}
.y7f{bottom:988.133333pt;}
.ya3{bottom:993.200000pt;}
.y64{bottom:995.280000pt;}
.y5{bottom:998.213333pt;}
.y7e{bottom:1001.893333pt;}
.yd7{bottom:1002.373333pt;}
.y4{bottom:1013.600000pt;}
.y7d{bottom:1016.160000pt;}
.ya2{bottom:1016.186667pt;}
.y3{bottom:1029.600000pt;}
.ya1{bottom:1029.786667pt;}
.y7c{bottom:1029.920000pt;}
.y63{bottom:1030.186667pt;}
.y36{bottom:1044.586667pt;}
.y35{bottom:1061.066667pt;}
.h17{height:19.360000pt;}
.h16{height:19.386667pt;}
.hb{height:31.390625pt;}
.h1a{height:37.920000pt;}
.h19{height:37.946667pt;}
.h6{height:43.215000pt;}
.h13{height:44.480000pt;}
.h15{height:44.640000pt;}
.h14{height:44.653333pt;}
.hc{height:47.085938pt;}
.h10{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1c{height:49.336436pt;}
.h7{height:49.597187pt;}
.h11{height:49.621875pt;}
.h8{height:52.108438pt;}
.hf{height:52.510625pt;}
.h12{height:52.526250pt;}
.h1b{height:52.654250pt;}
.h18{height:52.739583pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.wa{width:63.680000pt;}
.w2{width:91.680000pt;}
.w3{width:91.853333pt;}
.w7{width:117.946667pt;}
.w8{width:118.266667pt;}
.w9{width:136.933333pt;}
.w4{width:166.133333pt;}
.w5{width:198.533333pt;}
.w1{width:209.200000pt;}
.w6{width:364.933333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:6.666667pt;}
.x35{left:9.200000pt;}
.x3b{left:12.533333pt;}
.x3c{left:14.666667pt;}
.x2b{left:16.533333pt;}
.x28{left:18.933333pt;}
.x33{left:21.466667pt;}
.x2{left:26.640000pt;}
.x1e{left:35.600000pt;}
.x37{left:39.733333pt;}
.xc{left:41.733333pt;}
.x1f{left:42.933333pt;}
.x8{left:44.906667pt;}
.x1d{left:46.000000pt;}
.x38{left:48.000000pt;}
.xb{left:49.573333pt;}
.x31{left:55.200000pt;}
.x20{left:57.200000pt;}
.x2f{left:61.733333pt;}
.x41{left:66.440000pt;}
.x2d{left:69.466667pt;}
.x2e{left:75.333333pt;}
.x2c{left:76.400000pt;}
.x30{left:79.866667pt;}
.x2a{left:85.733333pt;}
.x27{left:88.800000pt;}
.x40{left:90.466667pt;}
.x9{left:95.840000pt;}
.xa{left:142.400000pt;}
.x26{left:154.133333pt;}
.x29{left:158.400000pt;}
.x19{left:206.133333pt;}
.x5{left:217.040000pt;}
.x25{left:220.400000pt;}
.x32{left:225.200000pt;}
.x16{left:236.746667pt;}
.x3{left:240.266667pt;}
.x4{left:258.320000pt;}
.xf{left:261.600000pt;}
.x14{left:264.693333pt;}
.x11{left:271.866667pt;}
.x39{left:302.266667pt;}
.x24{left:313.253333pt;}
.x34{left:343.466667pt;}
.x3f{left:359.266667pt;}
.xd{left:366.773333pt;}
.x12{left:369.066667pt;}
.x42{left:378.186667pt;}
.x23{left:385.066667pt;}
.x18{left:387.066667pt;}
.x1{left:391.733333pt;}
.x17{left:399.333333pt;}
.x3d{left:402.800000pt;}
.x1b{left:415.600000pt;}
.x3e{left:419.880000pt;}
.x6{left:425.746667pt;}
.x3a{left:439.600000pt;}
.x7{left:450.293333pt;}
.x36{left:462.000000pt;}
.x1c{left:507.600000pt;}
.x13{left:568.426667pt;}
.x22{left:579.541333pt;}
.x21{left:586.154667pt;}
.xe{left:589.200000pt;}
.x10{left:591.600000pt;}
.x15{left:598.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  