
    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_621cfd1d96f6b4fb5d04acb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19edd13b5419ccecd8494713.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955078;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_fdc7fb8a4690907f339392e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5fc88ceb6677d38465d4ce0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3e17a4e60759dc70b1f80327.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_333a1682301d05b03c5af227.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b5745a25db9b852d5a61f3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.567600px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.223800px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:44.225280px;}
.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;}
}
.ws8{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-4.438080px;}
._5{margin-left:-2.925360px;}
._0{margin-left:-1.254240px;}
._2{width:1.194240px;}
._3{width:3.180000px;}
._b{width:4.961040px;}
._a{width:6.631440px;}
._8{width:7.769760px;}
._9{width:9.022080px;}
._7{width:10.576560px;}
._6{width:12.072480px;}
._4{width:13.866240px;}
._d{width:15.540480px;}
._1a{width:17.686080px;}
._14{width:18.812160px;}
._11{width:19.982880px;}
._10{width:21.395520px;}
._12{width:22.632000px;}
._13{width:23.647680px;}
._19{width:25.100640px;}
._1b{width:26.115840px;}
._1c{width:27.132000px;}
._20{width:28.361280px;}
._f{width:31.243680px;}
._e{width:32.457600px;}
._15{width:34.842240px;}
._17{width:36.299520px;}
._18{width:37.752480px;}
._c{width:41.998080px;}
._1f{width:52.421280px;}
._1e{width:53.425920px;}
._1d{width:150.492960px;}
._1{width:1195.288800px;}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:6.300000px;}
.y70{bottom:6.480000px;}
.yc5{bottom:6.525000px;}
.y3{bottom:6.840000px;}
.ycf{bottom:7.425000px;}
.yd1{bottom:11.520000px;}
.yc0{bottom:15.300000px;}
.ya7{bottom:28.080000px;}
.y6f{bottom:28.260000px;}
.ya5{bottom:28.440000px;}
.y6c{bottom:28.620000px;}
.ya9{bottom:28.800000px;}
.y72{bottom:28.980000px;}
.y5{bottom:70.596000px;}
.y76{bottom:117.936000px;}
.ya3{bottom:122.796000px;}
.ycd{bottom:122.976000px;}
.y3d{bottom:123.336000px;}
.y11b{bottom:127.296000px;}
.yef{bottom:129.096000px;}
.y6a{bottom:129.636000px;}
.y75{bottom:140.616000px;}
.ya2{bottom:144.756000px;}
.y3c{bottom:145.116000px;}
.y11a{bottom:149.256000px;}
.yee{bottom:151.050000px;}
.y69{bottom:151.410000px;}
.y71{bottom:163.110000px;}
.ya1{bottom:166.530000px;}
.ycc{bottom:166.710000px;}
.y3b{bottom:166.890000px;}
.y119{bottom:171.030000px;}
.yed{bottom:172.830000px;}
.y68{bottom:173.190000px;}
.y74{bottom:185.790000px;}
.ya0{bottom:188.310000px;}
.ycb{bottom:188.490000px;}
.y3a{bottom:188.850000px;}
.y118{bottom:192.810000px;}
.y67{bottom:194.970000px;}
.yec{bottom:195.330000px;}
.y73{bottom:208.290000px;}
.y9f{bottom:210.090000px;}
.yca{bottom:210.270000px;}
.y39{bottom:210.630000px;}
.y117{bottom:214.590000px;}
.y66{bottom:216.930000px;}
.yeb{bottom:218.010000px;}
.y6b{bottom:230.790000px;}
.y9e{bottom:231.870000px;}
.yc9{bottom:232.050000px;}
.y38{bottom:232.410000px;}
.y116{bottom:236.370000px;}
.y65{bottom:238.710000px;}
.yea{bottom:239.790000px;}
.y9d{bottom:253.830000px;}
.y37{bottom:254.190000px;}
.y115{bottom:258.330000px;}
.y64{bottom:260.490000px;}
.ye9{bottom:261.570000px;}
.y36{bottom:272.190000px;}
.y6d{bottom:275.250000px;}
.y9c{bottom:275.610000px;}
.yc8{bottom:275.790000px;}
.y114{bottom:280.110000px;}
.y63{bottom:282.270000px;}
.ye8{bottom:283.350000px;}
.y35{bottom:286.050000px;}
.y9b{bottom:297.390000px;}
.yc7{bottom:297.570000px;}
.y34{bottom:300.630000px;}
.y113{bottom:301.890000px;}
.y62{bottom:304.230000px;}
.ye7{bottom:305.130000px;}
.yc6{bottom:313.770000px;}
.y33{bottom:317.730000px;}
.y9a{bottom:319.170000px;}
.y112{bottom:323.670000px;}
.y61{bottom:326.010000px;}
.ye6{bottom:327.090000px;}
.y32{bottom:335.010000px;}
.yc4{bottom:336.270000px;}
.y99{bottom:340.995000px;}
.y111{bottom:345.495000px;}
.y60{bottom:347.835000px;}
.ye5{bottom:348.915000px;}
.y31{bottom:352.335000px;}
.yc3{bottom:358.995000px;}
.y98{bottom:362.955000px;}
.y110{bottom:367.455000px;}
.y30{bottom:369.615000px;}
.ye4{bottom:370.695000px;}
.yc2{bottom:381.495000px;}
.y97{bottom:384.735000px;}
.y2f{bottom:386.895000px;}
.y10f{bottom:389.235000px;}
.y5f{bottom:391.395000px;}
.ye3{bottom:393.375000px;}
.y2e{bottom:403.995000px;}
.yc1{bottom:404.175000px;}
.y96{bottom:406.515000px;}
.y10e{bottom:411.015000px;}
.y5e{bottom:413.355000px;}
.ye2{bottom:415.875000px;}
.y2d{bottom:421.275000px;}
.ybf{bottom:426.675000px;}
.y95{bottom:428.295000px;}
.y10d{bottom:432.795000px;}
.y5d{bottom:435.135000px;}
.y2c{bottom:438.555000px;}
.y94{bottom:450.255000px;}
.y10c{bottom:454.755000px;}
.y2b{bottom:455.835000px;}
.y5c{bottom:456.915000px;}
.ye1{bottom:460.335000px;}
.y93{bottom:472.035000px;}
.y2a{bottom:473.115000px;}
.ybe{bottom:473.475000px;}
.y10b{bottom:476.535000px;}
.y5b{bottom:478.695000px;}
.ye0{bottom:482.835000px;}
.y29{bottom:490.395000px;}
.y92{bottom:493.815000px;}
.ybd{bottom:495.255000px;}
.y10a{bottom:498.315000px;}
.y5a{bottom:500.655000px;}
.ydf{bottom:504.615000px;}
.y28{bottom:507.495000px;}
.y91{bottom:515.595000px;}
.ybc{bottom:517.215000px;}
.y109{bottom:520.095000px;}
.y59{bottom:522.435000px;}
.y27{bottom:524.775000px;}
.yde{bottom:526.395000px;}
.y90{bottom:537.375000px;}
.ybb{bottom:538.995000px;}
.y108{bottom:541.875000px;}
.y26{bottom:542.055000px;}
.y58{bottom:544.215000px;}
.ydd{bottom:549.075000px;}
.y25{bottom:559.335000px;}
.yba{bottom:560.775000px;}
.y107{bottom:563.835000px;}
.y57{bottom:565.995000px;}
.ydc{bottom:571.575000px;}
.y24{bottom:576.615000px;}
.y8f{bottom:581.115000px;}
.yb9{bottom:582.555000px;}
.y106{bottom:585.615000px;}
.y56{bottom:587.775000px;}
.y23{bottom:593.895000px;}
.y8e{bottom:602.895000px;}
.yb8{bottom:604.365000px;}
.y105{bottom:607.425000px;}
.y55{bottom:609.765000px;}
.y22{bottom:611.025000px;}
.ydb{bottom:615.345000px;}
.y8d{bottom:624.705000px;}
.yb7{bottom:626.325000px;}
.y21{bottom:628.305000px;}
.y104{bottom:629.205000px;}
.y54{bottom:631.545000px;}
.yda{bottom:637.125000px;}
.y20{bottom:645.585000px;}
.y8c{bottom:646.665000px;}
.yb6{bottom:648.105000px;}
.y103{bottom:651.165000px;}
.y53{bottom:653.325000px;}
.yd9{bottom:658.905000px;}
.y1f{bottom:662.865000px;}
.y8b{bottom:668.445000px;}
.yb5{bottom:669.885000px;}
.y102{bottom:672.945000px;}
.y52{bottom:675.105000px;}
.y1e{bottom:680.145000px;}
.yd8{bottom:680.685000px;}
.y8a{bottom:690.225000px;}
.yb4{bottom:691.665000px;}
.y101{bottom:694.725000px;}
.y51{bottom:697.065000px;}
.y1d{bottom:697.245000px;}
.yd7{bottom:702.465000px;}
.y89{bottom:712.005000px;}
.yb3{bottom:713.625000px;}
.y1c{bottom:714.525000px;}
.y100{bottom:716.505000px;}
.y50{bottom:718.845000px;}
.yd6{bottom:724.425000px;}
.y1b{bottom:731.805000px;}
.y88{bottom:733.785000px;}
.yb2{bottom:735.405000px;}
.yff{bottom:738.285000px;}
.y4f{bottom:740.625000px;}
.yd5{bottom:746.925000px;}
.y1a{bottom:749.085000px;}
.y87{bottom:755.745000px;}
.yb1{bottom:757.185000px;}
.yfe{bottom:760.245000px;}
.y4e{bottom:762.405000px;}
.y19{bottom:766.365000px;}
.yd4{bottom:769.425000px;}
.y86{bottom:777.525000px;}
.yb0{bottom:778.965000px;}
.yfd{bottom:782.025000px;}
.y18{bottom:783.645000px;}
.y4d{bottom:784.185000px;}
.yd3{bottom:791.385000px;}
.y85{bottom:799.305000px;}
.y17{bottom:800.745000px;}
.yfc{bottom:803.805000px;}
.y4c{bottom:806.145000px;}
.yd2{bottom:813.165000px;}
.y16{bottom:818.025000px;}
.y84{bottom:821.085000px;}
.yaf{bottom:822.705000px;}
.yfb{bottom:825.585000px;}
.y4b{bottom:827.925000px;}
.y15{bottom:835.305000px;}
.yd0{bottom:835.665000px;}
.y83{bottom:843.045000px;}
.yae{bottom:844.485000px;}
.yfa{bottom:847.545000px;}
.y4a{bottom:849.705000px;}
.y14{bottom:852.585000px;}
.yce{bottom:863.385000px;}
.y82{bottom:864.825000px;}
.yad{bottom:866.265000px;}
.yf9{bottom:869.325000px;}
.y13{bottom:869.865000px;}
.y49{bottom:871.530000px;}
.yac{bottom:882.510000px;}
.y81{bottom:886.650000px;}
.y12{bottom:887.190000px;}
.yf8{bottom:891.150000px;}
.y48{bottom:893.310000px;}
.y11{bottom:904.290000px;}
.ya8{bottom:905.190000px;}
.y80{bottom:908.430000px;}
.yf7{bottom:912.930000px;}
.y47{bottom:915.270000px;}
.y10{bottom:926.790000px;}
.yab{bottom:927.690000px;}
.y7f{bottom:930.210000px;}
.yf6{bottom:934.710000px;}
.y46{bottom:937.050000px;}
.yf{bottom:939.210000px;}
.y7e{bottom:946.590000px;}
.yaa{bottom:950.190000px;}
.yf5{bottom:956.670000px;}
.ye{bottom:958.290000px;}
.y45{bottom:958.830000px;}
.y7b{bottom:969.090000px;}
.ya4{bottom:972.870000px;}
.yd{bottom:977.730000px;}
.yf4{bottom:978.450000px;}
.y44{bottom:980.610000px;}
.y7d{bottom:991.590000px;}
.yf3{bottom:994.650000px;}
.yc{bottom:1000.050000px;}
.y43{bottom:1002.570000px;}
.y7c{bottom:1014.270000px;}
.yf2{bottom:1016.430000px;}
.ya6{bottom:1017.150000px;}
.yb{bottom:1022.550000px;}
.y42{bottom:1024.350000px;}
.y7a{bottom:1036.770000px;}
.yf1{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y41{bottom:1046.130000px;}
.y79{bottom:1059.450000px;}
.yf0{bottom:1060.170000px;}
.y9{bottom:1061.250000px;}
.y40{bottom:1067.910000px;}
.y8{bottom:1078.530000px;}
.y78{bottom:1081.950000px;}
.y3f{bottom:1089.690000px;}
.y7{bottom:1095.810000px;}
.y77{bottom:1104.450000px;}
.y3e{bottom:1111.650000px;}
.y6{bottom:1113.090000px;}
.y4{bottom:1130.370000px;}
.y2{bottom:1144.440000px;}
.y1{bottom:1178.100000px;}
.h12{height:21.780000px;}
.h1c{height:21.816000px;}
.h15{height:21.960000px;}
.h18{height:21.996000px;}
.h19{height:22.896000px;}
.h3{height:26.640000px;}
.h1a{height:27.000000px;}
.hb{height:27.147656px;}
.he{height:34.036523px;}
.h6{height:39.760312px;}
.h17{height:39.780000px;}
.h5{height:41.726953px;}
.h7{height:42.164648px;}
.hd{height:43.156758px;}
.h16{height:43.560000px;}
.h13{height:43.740000px;}
.h1b{height:43.776000px;}
.h9{height:46.251562px;}
.hf{height:46.736719px;}
.h1d{height:48.224531px;}
.hc{height:49.255313px;}
.h2{height:50.273438px;}
.h4{height:51.996094px;}
.ha{height:53.224453px;}
.h10{height:54.596250px;}
.h8{height:54.864844px;}
.h11{height:66.240000px;}
.h14{height:66.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.100000px;}
.w8{width:85.176000px;}
.w9{width:93.276000px;}
.w7{width:116.820000px;}
.wd{width:126.036000px;}
.wc{width:131.796000px;}
.w10{width:170.850000px;}
.w6{width:201.990000px;}
.wb{width:211.530000px;}
.wa{width:214.770000px;}
.wf{width:223.230000px;}
.we{width:308.010000px;}
.w5{width:308.055000px;}
.w4{width:627.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.060000px;}
.x16{left:7.380000px;}
.x2{left:8.640000px;}
.x27{left:10.080000px;}
.x1f{left:11.520000px;}
.x14{left:19.260000px;}
.x18{left:24.840000px;}
.x17{left:27.540000px;}
.x13{left:32.040000px;}
.x12{left:33.840000px;}
.x1b{left:35.820000px;}
.x37{left:41.400000px;}
.x22{left:44.100000px;}
.x1c{left:47.700000px;}
.x2d{left:48.960000px;}
.x2f{left:50.580000px;}
.x1a{left:51.840000px;}
.x28{left:54.900000px;}
.x29{left:57.450000px;}
.x2c{left:58.860000px;}
.x2b{left:61.590000px;}
.x2a{left:64.440000px;}
.x36{left:67.134000px;}
.x10{left:69.660000px;}
.x2e{left:79.245000px;}
.x34{left:85.905000px;}
.x35{left:89.094000px;}
.x1{left:108.035987px;}
.x33{left:112.170000px;}
.x1e{left:124.965000px;}
.x5{left:126.395987px;}
.x1d{left:127.485000px;}
.x38{left:129.275987px;}
.x39{left:140.075987px;}
.xd{left:150.509987px;}
.x3{left:161.130000px;}
.x9{left:164.369987px;}
.xe{left:185.969987px;}
.xf{left:191.550000px;}
.x24{left:211.890000px;}
.x7{left:227.549987px;}
.x21{left:244.649987px;}
.x8{left:254.549987px;}
.x6{left:262.109987px;}
.x30{left:269.849987px;}
.x23{left:275.609987px;}
.x19{left:284.835000px;}
.xb{left:320.654987px;}
.xa{left:347.294987px;}
.x31{left:416.055000px;}
.xc{left:420.194987px;}
.x25{left:423.435000px;}
.x4{left:446.474987px;}
.x11{left:499.605000px;}
.x26{left:555.225000px;}
.x15{left:616.425000px;}
.x32{left:639.285000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.504533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:39.311360pt;}
.ws8{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.944960pt;}
._5{margin-left:-2.600320pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.061547pt;}
._3{width:2.826667pt;}
._b{width:4.409813pt;}
._a{width:5.894613pt;}
._8{width:6.906453pt;}
._9{width:8.019627pt;}
._7{width:9.401387pt;}
._6{width:10.731093pt;}
._4{width:12.325547pt;}
._d{width:13.813760pt;}
._1a{width:15.720960pt;}
._14{width:16.721920pt;}
._11{width:17.762560pt;}
._10{width:19.018240pt;}
._12{width:20.117333pt;}
._13{width:21.020160pt;}
._19{width:22.311680pt;}
._1b{width:23.214080pt;}
._1c{width:24.117333pt;}
._20{width:25.210027pt;}
._f{width:27.772160pt;}
._e{width:28.851200pt;}
._15{width:30.970880pt;}
._17{width:32.266240pt;}
._18{width:33.557760pt;}
._c{width:37.331627pt;}
._1f{width:46.596693pt;}
._1e{width:47.489707pt;}
._1d{width:133.771520pt;}
._1{width:1062.478933pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:5.600000pt;}
.y70{bottom:5.760000pt;}
.yc5{bottom:5.800000pt;}
.y3{bottom:6.080000pt;}
.ycf{bottom:6.600000pt;}
.yd1{bottom:10.240000pt;}
.yc0{bottom:13.600000pt;}
.ya7{bottom:24.960000pt;}
.y6f{bottom:25.120000pt;}
.ya5{bottom:25.280000pt;}
.y6c{bottom:25.440000pt;}
.ya9{bottom:25.600000pt;}
.y72{bottom:25.760000pt;}
.y5{bottom:62.752000pt;}
.y76{bottom:104.832000pt;}
.ya3{bottom:109.152000pt;}
.ycd{bottom:109.312000pt;}
.y3d{bottom:109.632000pt;}
.y11b{bottom:113.152000pt;}
.yef{bottom:114.752000pt;}
.y6a{bottom:115.232000pt;}
.y75{bottom:124.992000pt;}
.ya2{bottom:128.672000pt;}
.y3c{bottom:128.992000pt;}
.y11a{bottom:132.672000pt;}
.yee{bottom:134.266667pt;}
.y69{bottom:134.586667pt;}
.y71{bottom:144.986667pt;}
.ya1{bottom:148.026667pt;}
.ycc{bottom:148.186667pt;}
.y3b{bottom:148.346667pt;}
.y119{bottom:152.026667pt;}
.yed{bottom:153.626667pt;}
.y68{bottom:153.946667pt;}
.y74{bottom:165.146667pt;}
.ya0{bottom:167.386667pt;}
.ycb{bottom:167.546667pt;}
.y3a{bottom:167.866667pt;}
.y118{bottom:171.386667pt;}
.y67{bottom:173.306667pt;}
.yec{bottom:173.626667pt;}
.y73{bottom:185.146667pt;}
.y9f{bottom:186.746667pt;}
.yca{bottom:186.906667pt;}
.y39{bottom:187.226667pt;}
.y117{bottom:190.746667pt;}
.y66{bottom:192.826667pt;}
.yeb{bottom:193.786667pt;}
.y6b{bottom:205.146667pt;}
.y9e{bottom:206.106667pt;}
.yc9{bottom:206.266667pt;}
.y38{bottom:206.586667pt;}
.y116{bottom:210.106667pt;}
.y65{bottom:212.186667pt;}
.yea{bottom:213.146667pt;}
.y9d{bottom:225.626667pt;}
.y37{bottom:225.946667pt;}
.y115{bottom:229.626667pt;}
.y64{bottom:231.546667pt;}
.ye9{bottom:232.506667pt;}
.y36{bottom:241.946667pt;}
.y6d{bottom:244.666667pt;}
.y9c{bottom:244.986667pt;}
.yc8{bottom:245.146667pt;}
.y114{bottom:248.986667pt;}
.y63{bottom:250.906667pt;}
.ye8{bottom:251.866667pt;}
.y35{bottom:254.266667pt;}
.y9b{bottom:264.346667pt;}
.yc7{bottom:264.506667pt;}
.y34{bottom:267.226667pt;}
.y113{bottom:268.346667pt;}
.y62{bottom:270.426667pt;}
.ye7{bottom:271.226667pt;}
.yc6{bottom:278.906667pt;}
.y33{bottom:282.426667pt;}
.y9a{bottom:283.706667pt;}
.y112{bottom:287.706667pt;}
.y61{bottom:289.786667pt;}
.ye6{bottom:290.746667pt;}
.y32{bottom:297.786667pt;}
.yc4{bottom:298.906667pt;}
.y99{bottom:303.106667pt;}
.y111{bottom:307.106667pt;}
.y60{bottom:309.186667pt;}
.ye5{bottom:310.146667pt;}
.y31{bottom:313.186667pt;}
.yc3{bottom:319.106667pt;}
.y98{bottom:322.626667pt;}
.y110{bottom:326.626667pt;}
.y30{bottom:328.546667pt;}
.ye4{bottom:329.506667pt;}
.yc2{bottom:339.106667pt;}
.y97{bottom:341.986667pt;}
.y2f{bottom:343.906667pt;}
.y10f{bottom:345.986667pt;}
.y5f{bottom:347.906667pt;}
.ye3{bottom:349.666667pt;}
.y2e{bottom:359.106667pt;}
.yc1{bottom:359.266667pt;}
.y96{bottom:361.346667pt;}
.y10e{bottom:365.346667pt;}
.y5e{bottom:367.426667pt;}
.ye2{bottom:369.666667pt;}
.y2d{bottom:374.466667pt;}
.ybf{bottom:379.266667pt;}
.y95{bottom:380.706667pt;}
.y10d{bottom:384.706667pt;}
.y5d{bottom:386.786667pt;}
.y2c{bottom:389.826667pt;}
.y94{bottom:400.226667pt;}
.y10c{bottom:404.226667pt;}
.y2b{bottom:405.186667pt;}
.y5c{bottom:406.146667pt;}
.ye1{bottom:409.186667pt;}
.y93{bottom:419.586667pt;}
.y2a{bottom:420.546667pt;}
.ybe{bottom:420.866667pt;}
.y10b{bottom:423.586667pt;}
.y5b{bottom:425.506667pt;}
.ye0{bottom:429.186667pt;}
.y29{bottom:435.906667pt;}
.y92{bottom:438.946667pt;}
.ybd{bottom:440.226667pt;}
.y10a{bottom:442.946667pt;}
.y5a{bottom:445.026667pt;}
.ydf{bottom:448.546667pt;}
.y28{bottom:451.106667pt;}
.y91{bottom:458.306667pt;}
.ybc{bottom:459.746667pt;}
.y109{bottom:462.306667pt;}
.y59{bottom:464.386667pt;}
.y27{bottom:466.466667pt;}
.yde{bottom:467.906667pt;}
.y90{bottom:477.666667pt;}
.ybb{bottom:479.106667pt;}
.y108{bottom:481.666667pt;}
.y26{bottom:481.826667pt;}
.y58{bottom:483.746667pt;}
.ydd{bottom:488.066667pt;}
.y25{bottom:497.186667pt;}
.yba{bottom:498.466667pt;}
.y107{bottom:501.186667pt;}
.y57{bottom:503.106667pt;}
.ydc{bottom:508.066667pt;}
.y24{bottom:512.546667pt;}
.y8f{bottom:516.546667pt;}
.yb9{bottom:517.826667pt;}
.y106{bottom:520.546667pt;}
.y56{bottom:522.466667pt;}
.y23{bottom:527.906667pt;}
.y8e{bottom:535.906667pt;}
.yb8{bottom:537.213333pt;}
.y105{bottom:539.933333pt;}
.y55{bottom:542.013333pt;}
.y22{bottom:543.133333pt;}
.ydb{bottom:546.973333pt;}
.y8d{bottom:555.293333pt;}
.yb7{bottom:556.733333pt;}
.y21{bottom:558.493333pt;}
.y104{bottom:559.293333pt;}
.y54{bottom:561.373333pt;}
.yda{bottom:566.333333pt;}
.y20{bottom:573.853333pt;}
.y8c{bottom:574.813333pt;}
.yb6{bottom:576.093333pt;}
.y103{bottom:578.813333pt;}
.y53{bottom:580.733333pt;}
.yd9{bottom:585.693333pt;}
.y1f{bottom:589.213333pt;}
.y8b{bottom:594.173333pt;}
.yb5{bottom:595.453333pt;}
.y102{bottom:598.173333pt;}
.y52{bottom:600.093333pt;}
.y1e{bottom:604.573333pt;}
.yd8{bottom:605.053333pt;}
.y8a{bottom:613.533333pt;}
.yb4{bottom:614.813333pt;}
.y101{bottom:617.533333pt;}
.y51{bottom:619.613333pt;}
.y1d{bottom:619.773333pt;}
.yd7{bottom:624.413333pt;}
.y89{bottom:632.893333pt;}
.yb3{bottom:634.333333pt;}
.y1c{bottom:635.133333pt;}
.y100{bottom:636.893333pt;}
.y50{bottom:638.973333pt;}
.yd6{bottom:643.933333pt;}
.y1b{bottom:650.493333pt;}
.y88{bottom:652.253333pt;}
.yb2{bottom:653.693333pt;}
.yff{bottom:656.253333pt;}
.y4f{bottom:658.333333pt;}
.yd5{bottom:663.933333pt;}
.y1a{bottom:665.853333pt;}
.y87{bottom:671.773333pt;}
.yb1{bottom:673.053333pt;}
.yfe{bottom:675.773333pt;}
.y4e{bottom:677.693333pt;}
.y19{bottom:681.213333pt;}
.yd4{bottom:683.933333pt;}
.y86{bottom:691.133333pt;}
.yb0{bottom:692.413333pt;}
.yfd{bottom:695.133333pt;}
.y18{bottom:696.573333pt;}
.y4d{bottom:697.053333pt;}
.yd3{bottom:703.453333pt;}
.y85{bottom:710.493333pt;}
.y17{bottom:711.773333pt;}
.yfc{bottom:714.493333pt;}
.y4c{bottom:716.573333pt;}
.yd2{bottom:722.813333pt;}
.y16{bottom:727.133333pt;}
.y84{bottom:729.853333pt;}
.yaf{bottom:731.293333pt;}
.yfb{bottom:733.853333pt;}
.y4b{bottom:735.933333pt;}
.y15{bottom:742.493333pt;}
.yd0{bottom:742.813333pt;}
.y83{bottom:749.373333pt;}
.yae{bottom:750.653333pt;}
.yfa{bottom:753.373333pt;}
.y4a{bottom:755.293333pt;}
.y14{bottom:757.853333pt;}
.yce{bottom:767.453333pt;}
.y82{bottom:768.733333pt;}
.yad{bottom:770.013333pt;}
.yf9{bottom:772.733333pt;}
.y13{bottom:773.213333pt;}
.y49{bottom:774.693333pt;}
.yac{bottom:784.453333pt;}
.y81{bottom:788.133333pt;}
.y12{bottom:788.613333pt;}
.yf8{bottom:792.133333pt;}
.y48{bottom:794.053333pt;}
.y11{bottom:803.813333pt;}
.ya8{bottom:804.613333pt;}
.y80{bottom:807.493333pt;}
.yf7{bottom:811.493333pt;}
.y47{bottom:813.573333pt;}
.y10{bottom:823.813333pt;}
.yab{bottom:824.613333pt;}
.y7f{bottom:826.853333pt;}
.yf6{bottom:830.853333pt;}
.y46{bottom:832.933333pt;}
.yf{bottom:834.853333pt;}
.y7e{bottom:841.413333pt;}
.yaa{bottom:844.613333pt;}
.yf5{bottom:850.373333pt;}
.ye{bottom:851.813333pt;}
.y45{bottom:852.293333pt;}
.y7b{bottom:861.413333pt;}
.ya4{bottom:864.773333pt;}
.yd{bottom:869.093333pt;}
.yf4{bottom:869.733333pt;}
.y44{bottom:871.653333pt;}
.y7d{bottom:881.413333pt;}
.yf3{bottom:884.133333pt;}
.yc{bottom:888.933333pt;}
.y43{bottom:891.173333pt;}
.y7c{bottom:901.573333pt;}
.yf2{bottom:903.493333pt;}
.ya6{bottom:904.133333pt;}
.yb{bottom:908.933333pt;}
.y42{bottom:910.533333pt;}
.y7a{bottom:921.573333pt;}
.yf1{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y41{bottom:929.893333pt;}
.y79{bottom:941.733333pt;}
.yf0{bottom:942.373333pt;}
.y9{bottom:943.333333pt;}
.y40{bottom:949.253333pt;}
.y8{bottom:958.693333pt;}
.y78{bottom:961.733333pt;}
.y3f{bottom:968.613333pt;}
.y7{bottom:974.053333pt;}
.y77{bottom:981.733333pt;}
.y3e{bottom:988.133333pt;}
.y6{bottom:989.413333pt;}
.y4{bottom:1004.773333pt;}
.y2{bottom:1017.280000pt;}
.y1{bottom:1047.200000pt;}
.h12{height:19.360000pt;}
.h1c{height:19.392000pt;}
.h15{height:19.520000pt;}
.h18{height:19.552000pt;}
.h19{height:20.352000pt;}
.h3{height:23.680000pt;}
.h1a{height:24.000000pt;}
.hb{height:24.131250pt;}
.he{height:30.254687pt;}
.h6{height:35.342500pt;}
.h17{height:35.360000pt;}
.h5{height:37.090625pt;}
.h7{height:37.479688pt;}
.hd{height:38.361562pt;}
.h16{height:38.720000pt;}
.h13{height:38.880000pt;}
.h1b{height:38.912000pt;}
.h9{height:41.112500pt;}
.hf{height:41.543750pt;}
.h1d{height:42.866250pt;}
.hc{height:43.782500pt;}
.h2{height:44.687500pt;}
.h4{height:46.218750pt;}
.ha{height:47.310625pt;}
.h10{height:48.530000pt;}
.h8{height:48.768750pt;}
.h11{height:58.880000pt;}
.h14{height:59.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.200000pt;}
.w8{width:75.712000pt;}
.w9{width:82.912000pt;}
.w7{width:103.840000pt;}
.wd{width:112.032000pt;}
.wc{width:117.152000pt;}
.w10{width:151.866667pt;}
.w6{width:179.546667pt;}
.wb{width:188.026667pt;}
.wa{width:190.906667pt;}
.wf{width:198.426667pt;}
.we{width:273.786667pt;}
.w5{width:273.826667pt;}
.w4{width:557.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.720000pt;}
.x16{left:6.560000pt;}
.x2{left:7.680000pt;}
.x27{left:8.960000pt;}
.x1f{left:10.240000pt;}
.x14{left:17.120000pt;}
.x18{left:22.080000pt;}
.x17{left:24.480000pt;}
.x13{left:28.480000pt;}
.x12{left:30.080000pt;}
.x1b{left:31.840000pt;}
.x37{left:36.800000pt;}
.x22{left:39.200000pt;}
.x1c{left:42.400000pt;}
.x2d{left:43.520000pt;}
.x2f{left:44.960000pt;}
.x1a{left:46.080000pt;}
.x28{left:48.800000pt;}
.x29{left:51.066667pt;}
.x2c{left:52.320000pt;}
.x2b{left:54.746667pt;}
.x2a{left:57.280000pt;}
.x36{left:59.674667pt;}
.x10{left:61.920000pt;}
.x2e{left:70.440000pt;}
.x34{left:76.360000pt;}
.x35{left:79.194667pt;}
.x1{left:96.031988pt;}
.x33{left:99.706667pt;}
.x1e{left:111.080000pt;}
.x5{left:112.351988pt;}
.x1d{left:113.320000pt;}
.x38{left:114.911988pt;}
.x39{left:124.511988pt;}
.xd{left:133.786655pt;}
.x3{left:143.226667pt;}
.x9{left:146.106655pt;}
.xe{left:165.306655pt;}
.xf{left:170.266667pt;}
.x24{left:188.346667pt;}
.x7{left:202.266655pt;}
.x21{left:217.466655pt;}
.x8{left:226.266655pt;}
.x6{left:232.986655pt;}
.x30{left:239.866655pt;}
.x23{left:244.986655pt;}
.x19{left:253.186667pt;}
.xb{left:285.026655pt;}
.xa{left:308.706655pt;}
.x31{left:369.826667pt;}
.xc{left:373.506655pt;}
.x25{left:376.386667pt;}
.x4{left:396.866655pt;}
.x11{left:444.093333pt;}
.x26{left:493.533333pt;}
.x15{left:547.933333pt;}
.x32{left:568.253333pt;}
}




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