
    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_af0ad1e55376b9898d7894ab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4f7d26720695443439c38e2d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_d50048f1331069bfec677bb4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_31cad46bf44e8528c7c131d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_6aa30c860b4ea21b94e066e1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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_cf9f6d16430008c58f469fb1.woff')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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.259800px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.ls1{letter-spacing:0.900000px;}
.ls2{letter-spacing:3.780000px;}
.lsc{letter-spacing:4.500000px;}
.ls4{letter-spacing:60.426720px;}
.lsd{letter-spacing:64.026720px;}
.lsb{letter-spacing:124.506720px;}
.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:-59.760000px;}
.ws1{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.718600px;}
.ws9{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-4.303680px;}
._5{margin-left:-3.223680px;}
._b{margin-left:-2.207280px;}
._0{margin-left:-1.188000px;}
._1{width:1.842000px;}
._3{width:3.267360px;}
._2{width:4.269360px;}
._4{width:6.215040px;}
._a{width:7.659840px;}
._e{width:8.675760px;}
._c{width:10.229520px;}
._8{width:11.234880px;}
._7{width:12.310560px;}
._9{width:13.755360px;}
._d{width:16.015680px;}
._12{width:17.509680px;}
._13{width:18.776400px;}
._f{width:20.427840px;}
._17{width:21.573360px;}
._16{width:22.828320px;}
._14{width:24.501600px;}
._11{width:27.350640px;}
._10{width:28.375920px;}
._19{width:43.501920px;}
._18{width:44.524560px;}
._1c{width:58.095120px;}
._1b{width:59.461200px;}
._1a{width:64.481040px;}
._15{width:94.026000px;}
._1e{width:179.698320px;}
._1d{width:181.132560px;}
.fc2{color:rgb(116,27,71);}
.fc3{color:rgb(255,0,255);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:18.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.880000px;}
.yb5{bottom:3.240000px;}
.yab{bottom:5.220000px;}
.yb3{bottom:11.880000px;}
.y3{bottom:18.390000px;}
.yb7{bottom:20.520000px;}
.yb4{bottom:20.565000px;}
.y4b{bottom:110.736000px;}
.yc1{bottom:111.096000px;}
.yf9{bottom:111.636000px;}
.yde{bottom:117.216000px;}
.y62{bottom:117.756000px;}
.yea{bottom:119.196000px;}
.y39{bottom:123.336000px;}
.yf8{bottom:125.676000px;}
.y4a{bottom:128.016000px;}
.yc0{bottom:128.376000px;}
.ydd{bottom:134.316000px;}
.y61{bottom:135.036000px;}
.ye9{bottom:136.476000px;}
.y38{bottom:140.616000px;}
.y49{bottom:145.296000px;}
.ybf{bottom:145.656000px;}
.ydc{bottom:151.590000px;}
.y60{bottom:152.310000px;}
.ye8{bottom:153.750000px;}
.y97{bottom:153.930000px;}
.y11a{bottom:155.910000px;}
.y37{bottom:157.890000px;}
.y48{bottom:162.570000px;}
.ybe{bottom:162.750000px;}
.ydb{bottom:168.870000px;}
.y5f{bottom:169.410000px;}
.ye7{bottom:171.030000px;}
.y96{bottom:171.210000px;}
.y119{bottom:173.190000px;}
.y36{bottom:174.990000px;}
.ybd{bottom:177.510000px;}
.yda{bottom:186.150000px;}
.y5e{bottom:186.690000px;}
.ye6{bottom:188.130000px;}
.y95{bottom:188.490000px;}
.y118{bottom:190.470000px;}
.y35{bottom:192.270000px;}
.y47{bottom:197.670000px;}
.ybc{bottom:198.750000px;}
.yd9{bottom:200.190000px;}
.y5d{bottom:203.970000px;}
.ye5{bottom:205.410000px;}
.y94{bottom:205.770000px;}
.y117{bottom:207.750000px;}
.y34{bottom:209.550000px;}
.ybb{bottom:219.990000px;}
.y5c{bottom:221.250000px;}
.ye4{bottom:222.690000px;}
.y93{bottom:223.050000px;}
.y33{bottom:226.830000px;}
.y46{bottom:232.950000px;}
.y116{bottom:234.030000px;}
.ye3{bottom:236.730000px;}
.y5b{bottom:238.530000px;}
.y92{bottom:240.330000px;}
.yba{bottom:241.230000px;}
.y32{bottom:244.110000px;}
.y115{bottom:251.310000px;}
.y45{bottom:251.490000px;}
.y5a{bottom:255.630000px;}
.y91{bottom:257.430000px;}
.y31{bottom:261.390000px;}
.yb9{bottom:262.470000px;}
.y114{bottom:268.590000px;}
.y59{bottom:272.910000px;}
.y90{bottom:274.710000px;}
.y30{bottom:278.490000px;}
.yb8{bottom:283.710000px;}
.y113{bottom:285.690000px;}
.y58{bottom:290.190000px;}
.y8f{bottom:291.990000px;}
.y2f{bottom:295.770000px;}
.yb6{bottom:304.950000px;}
.y57{bottom:307.470000px;}
.y112{bottom:311.970000px;}
.y2e{bottom:313.050000px;}
.y8e{bottom:327.270000px;}
.y111{bottom:329.250000px;}
.y2d{bottom:330.330000px;}
.yb2{bottom:339.330000px;}
.y56{bottom:342.750000px;}
.y110{bottom:346.530000px;}
.y138{bottom:355.575000px;}
.y8d{bottom:362.595000px;}
.y2c{bottom:365.475000px;}
.y10f{bottom:372.675000px;}
.y137{bottom:372.855000px;}
.yb1{bottom:373.935000px;}
.y55{bottom:377.895000px;}
.y8c{bottom:379.875000px;}
.y10e{bottom:389.955000px;}
.yb0{bottom:395.175000px;}
.y54{bottom:396.435000px;}
.y8b{bottom:396.975000px;}
.y2b{bottom:397.515000px;}
.y136{bottom:398.955000px;}
.y10d{bottom:407.235000px;}
.y8a{bottom:415.335000px;}
.y135{bottom:416.235000px;}
.yaf{bottom:416.415000px;}
.y2a{bottom:427.035000px;}
.y89{bottom:432.615000px;}
.y10c{bottom:433.515000px;}
.yae{bottom:437.655000px;}
.y134{bottom:442.515000px;}
.y29{bottom:444.315000px;}
.y88{bottom:449.895000px;}
.y10b{bottom:450.795000px;}
.yad{bottom:458.895000px;}
.y133{bottom:459.795000px;}
.y28{bottom:461.595000px;}
.y87{bottom:467.175000px;}
.y10a{bottom:477.075000px;}
.y27{bottom:478.875000px;}
.yac{bottom:480.135000px;}
.y86{bottom:484.455000px;}
.y109{bottom:494.355000px;}
.y26{bottom:496.155000px;}
.yaa{bottom:502.095000px;}
.y85{bottom:502.635000px;}
.ye2{bottom:507.675000px;}
.y108{bottom:511.455000px;}
.y25{bottom:513.255000px;}
.y84{bottom:519.915000px;}
.y132{bottom:520.455000px;}
.ye1{bottom:524.955000px;}
.ya9{bottom:527.295000px;}
.y24{bottom:530.535000px;}
.y131{bottom:537.735000px;}
.y83{bottom:538.275000px;}
.ye0{bottom:542.235000px;}
.ya8{bottom:544.575000px;}
.y107{bottom:546.735000px;}
.y23{bottom:547.815000px;}
.y130{bottom:555.015000px;}
.y82{bottom:555.555000px;}
.ydf{bottom:556.275000px;}
.ya7{bottom:561.855000px;}
.y22{bottom:565.095000px;}
.y12f{bottom:572.295000px;}
.y81{bottom:572.835000px;}
.ya6{bottom:578.955000px;}
.y106{bottom:582.015000px;}
.y21{bottom:582.375000px;}
.y80{bottom:589.935000px;}
.y12e{bottom:598.575000px;}
.y105{bottom:599.295000px;}
.y20{bottom:599.655000px;}
.yf7{bottom:601.455000px;}
.y7f{bottom:607.215000px;}
.ya5{bottom:614.235000px;}
.y12d{bottom:615.885000px;}
.y104{bottom:616.605000px;}
.y1f{bottom:616.785000px;}
.yf6{bottom:618.765000px;}
.y7e{bottom:624.525000px;}
.y12c{bottom:632.985000px;}
.y103{bottom:633.885000px;}
.y1e{bottom:634.065000px;}
.yf5{bottom:636.045000px;}
.y7d{bottom:641.805000px;}
.ya4{bottom:649.545000px;}
.y12b{bottom:650.265000px;}
.y102{bottom:650.985000px;}
.y1d{bottom:651.345000px;}
.yf4{bottom:653.325000px;}
.y7c{bottom:659.085000px;}
.ya3{bottom:666.825000px;}
.y101{bottom:668.265000px;}
.y1c{bottom:668.625000px;}
.yf3{bottom:670.605000px;}
.yd8{bottom:676.005000px;}
.y7b{bottom:676.365000px;}
.y12a{bottom:676.545000px;}
.ya2{bottom:684.105000px;}
.y100{bottom:685.545000px;}
.y1b{bottom:685.905000px;}
.yf2{bottom:687.705000px;}
.yd7{bottom:693.105000px;}
.y7a{bottom:693.465000px;}
.y129{bottom:693.825000px;}
.ya1{bottom:701.205000px;}
.yff{bottom:702.825000px;}
.y1a{bottom:703.005000px;}
.yf1{bottom:704.985000px;}
.yd6{bottom:710.385000px;}
.y128{bottom:711.105000px;}
.y79{bottom:711.825000px;}
.ya0{bottom:718.485000px;}
.yfe{bottom:720.105000px;}
.y19{bottom:720.285000px;}
.yf0{bottom:722.265000px;}
.yd5{bottom:727.665000px;}
.y127{bottom:728.205000px;}
.y78{bottom:729.105000px;}
.y9f{bottom:735.765000px;}
.yfd{bottom:737.205000px;}
.y18{bottom:737.565000px;}
.yef{bottom:739.545000px;}
.yd4{bottom:744.945000px;}
.y77{bottom:746.385000px;}
.yfc{bottom:754.485000px;}
.y17{bottom:754.845000px;}
.yee{bottom:756.825000px;}
.yd3{bottom:762.225000px;}
.y76{bottom:763.665000px;}
.y9e{bottom:771.045000px;}
.yfb{bottom:771.765000px;}
.y16{bottom:773.385000px;}
.yd2{bottom:779.505000px;}
.y75{bottom:781.845000px;}
.yfa{bottom:789.045000px;}
.yed{bottom:791.925000px;}
.yd1{bottom:796.605000px;}
.y74{bottom:799.125000px;}
.y15{bottom:802.905000px;}
.y9d{bottom:806.325000px;}
.yd0{bottom:811.365000px;}
.y73{bottom:817.485000px;}
.y14{bottom:820.005000px;}
.y9c{bottom:823.605000px;}
.yec{bottom:827.205000px;}
.ycf{bottom:828.645000px;}
.y126{bottom:832.425000px;}
.y72{bottom:834.765000px;}
.y13{bottom:837.285000px;}
.y9b{bottom:840.705000px;}
.yeb{bottom:841.245000px;}
.yce{bottom:845.925000px;}
.y125{bottom:849.705000px;}
.y71{bottom:853.125000px;}
.y9a{bottom:857.985000px;}
.y12{bottom:859.785000px;}
.ycd{bottom:863.925000px;}
.y124{bottom:866.985000px;}
.y70{bottom:871.485000px;}
.y99{bottom:875.265000px;}
.y53{bottom:876.705000px;}
.y11{bottom:877.065000px;}
.y123{bottom:884.310000px;}
.ycc{bottom:885.210000px;}
.y6f{bottom:888.630000px;}
.y10{bottom:889.170000px;}
.y44{bottom:892.590000px;}
.y52{bottom:894.030000px;}
.ycb{bottom:902.490000px;}
.y6e{bottom:905.910000px;}
.yf{bottom:906.450000px;}
.y43{bottom:909.870000px;}
.y122{bottom:910.590000px;}
.y51{bottom:911.310000px;}
.yca{bottom:919.770000px;}
.y6d{bottom:923.190000px;}
.ye{bottom:923.550000px;}
.y42{bottom:927.150000px;}
.y98{bottom:927.870000px;}
.y50{bottom:928.590000px;}
.yc9{bottom:937.050000px;}
.y6c{bottom:940.470000px;}
.yd{bottom:940.830000px;}
.y41{bottom:944.250000px;}
.y121{bottom:945.150000px;}
.y4f{bottom:945.870000px;}
.yc8{bottom:954.150000px;}
.y6b{bottom:957.750000px;}
.yc{bottom:958.110000px;}
.y120{bottom:962.250000px;}
.y4e{bottom:963.150000px;}
.yc7{bottom:968.910000px;}
.yb{bottom:975.390000px;}
.y6a{bottom:975.930000px;}
.y40{bottom:979.530000px;}
.y4d{bottom:980.250000px;}
.y11f{bottom:988.530000px;}
.yc6{bottom:990.150000px;}
.ya{bottom:992.670000px;}
.y69{bottom:993.210000px;}
.y4c{bottom:997.530000px;}
.y11e{bottom:1005.810000px;}
.yc5{bottom:1011.390000px;}
.y68{bottom:1011.570000px;}
.y3f{bottom:1014.810000px;}
.y11d{bottom:1023.090000px;}
.y67{bottom:1028.850000px;}
.y9{bottom:1029.210000px;}
.y3e{bottom:1032.090000px;}
.yc4{bottom:1032.630000px;}
.y11c{bottom:1040.370000px;}
.y66{bottom:1047.210000px;}
.y3d{bottom:1049.370000px;}
.y8{bottom:1053.330000px;}
.yc3{bottom:1053.870000px;}
.y65{bottom:1064.490000px;}
.y11b{bottom:1066.470000px;}
.y3c{bottom:1066.650000px;}
.yc2{bottom:1075.830000px;}
.y7{bottom:1077.450000px;}
.y64{bottom:1082.670000px;}
.y3b{bottom:1083.750000px;}
.y63{bottom:1099.950000px;}
.y3a{bottom:1101.030000px;}
.y6{bottom:1115.970000px;}
.y5{bottom:1121.190000px;}
.y2{bottom:1126.950000px;}
.y1{bottom:1163.880000px;}
.h5{height:16.136719px;}
.he{height:17.280000px;}
.hd{height:17.316000px;}
.ha{height:21.240000px;}
.h3{height:30.996000px;}
.hc{height:34.380000px;}
.hb{height:34.596000px;}
.h8{height:34.855313px;}
.h4{height:40.684570px;}
.h9{height:53.077852px;}
.h2{height:53.573906px;}
.h7{height:55.735312px;}
.h6{height:74.820586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:225.750000px;}
.w7{width:337.935000px;}
.w9{width:342.435000px;}
.w8{width:380.415000px;}
.w6{width:384.915000px;}
.w5{width:497.085000px;}
.w3{width:723.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.400000px;}
.x1c{left:7.380000px;}
.x20{left:58.680000px;}
.x1{left:84.995987px;}
.x11{left:88.775987px;}
.x28{left:104.400000px;}
.x4{left:112.355987px;}
.x2d{left:113.795987px;}
.x13{left:127.475987px;}
.x26{left:133.014000px;}
.x1e{left:135.354000px;}
.x24{left:137.555987px;}
.x3{left:143.675987px;}
.x2c{left:147.635987px;}
.x19{left:154.469987px;}
.x21{left:157.725000px;}
.x29{left:159.885000px;}
.x22{left:161.505000px;}
.x2a{left:163.665000px;}
.x23{left:165.105000px;}
.x1a{left:181.469987px;}
.x17{left:199.469987px;}
.x1b{left:212.790000px;}
.x1d{left:243.434987px;}
.x31{left:264.494987px;}
.x2f{left:271.874987px;}
.xe{left:275.834987px;}
.x7{left:294.734987px;}
.xd{left:296.714987px;}
.x14{left:300.494987px;}
.x5{left:306.794987px;}
.x10{left:310.214987px;}
.x8{left:320.294987px;}
.x6{left:333.254987px;}
.xa{left:342.434987px;}
.x25{left:343.694987px;}
.x9{left:345.674987px;}
.xb{left:351.074987px;}
.xf{left:363.494987px;}
.x16{left:369.794987px;}
.x2b{left:401.294987px;}
.xc{left:446.504987px;}
.x27{left:465.585000px;}
.x1f{left:470.085000px;}
.x2e{left:668.129987px;}
.x18{left:704.129987px;}
.x30{left:730.589987px;}
.x15{left:772.199987px;}
.x12{left:807.659987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.ls1{letter-spacing:0.800000pt;}
.ls2{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.000000pt;}
.ls4{letter-spacing:53.712640pt;}
.lsd{letter-spacing:56.912640pt;}
.lsb{letter-spacing:110.672640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws1{word-spacing:-19.056533pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.416533pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-3.825493pt;}
._5{margin-left:-2.865493pt;}
._b{margin-left:-1.962027pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.637333pt;}
._3{width:2.904320pt;}
._2{width:3.794987pt;}
._4{width:5.524480pt;}
._a{width:6.808747pt;}
._e{width:7.711787pt;}
._c{width:9.092907pt;}
._8{width:9.986560pt;}
._7{width:10.942720pt;}
._9{width:12.226987pt;}
._d{width:14.236160pt;}
._12{width:15.564160pt;}
._13{width:16.690133pt;}
._f{width:18.158080pt;}
._17{width:19.176320pt;}
._16{width:20.291840pt;}
._14{width:21.779200pt;}
._11{width:24.311680pt;}
._10{width:25.223040pt;}
._19{width:38.668373pt;}
._18{width:39.577387pt;}
._1c{width:51.640107pt;}
._1b{width:52.854400pt;}
._1a{width:57.316480pt;}
._15{width:83.578667pt;}
._1e{width:159.731840pt;}
._1d{width:161.006720pt;}
.fs2{font-size:16.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.560000pt;}
.yb5{bottom:2.880000pt;}
.yab{bottom:4.640000pt;}
.yb3{bottom:10.560000pt;}
.y3{bottom:16.346667pt;}
.yb7{bottom:18.240000pt;}
.yb4{bottom:18.280000pt;}
.y4b{bottom:98.432000pt;}
.yc1{bottom:98.752000pt;}
.yf9{bottom:99.232000pt;}
.yde{bottom:104.192000pt;}
.y62{bottom:104.672000pt;}
.yea{bottom:105.952000pt;}
.y39{bottom:109.632000pt;}
.yf8{bottom:111.712000pt;}
.y4a{bottom:113.792000pt;}
.yc0{bottom:114.112000pt;}
.ydd{bottom:119.392000pt;}
.y61{bottom:120.032000pt;}
.ye9{bottom:121.312000pt;}
.y38{bottom:124.992000pt;}
.y49{bottom:129.152000pt;}
.ybf{bottom:129.472000pt;}
.ydc{bottom:134.746667pt;}
.y60{bottom:135.386667pt;}
.ye8{bottom:136.666667pt;}
.y97{bottom:136.826667pt;}
.y11a{bottom:138.586667pt;}
.y37{bottom:140.346667pt;}
.y48{bottom:144.506667pt;}
.ybe{bottom:144.666667pt;}
.ydb{bottom:150.106667pt;}
.y5f{bottom:150.586667pt;}
.ye7{bottom:152.026667pt;}
.y96{bottom:152.186667pt;}
.y119{bottom:153.946667pt;}
.y36{bottom:155.546667pt;}
.ybd{bottom:157.786667pt;}
.yda{bottom:165.466667pt;}
.y5e{bottom:165.946667pt;}
.ye6{bottom:167.226667pt;}
.y95{bottom:167.546667pt;}
.y118{bottom:169.306667pt;}
.y35{bottom:170.906667pt;}
.y47{bottom:175.706667pt;}
.ybc{bottom:176.666667pt;}
.yd9{bottom:177.946667pt;}
.y5d{bottom:181.306667pt;}
.ye5{bottom:182.586667pt;}
.y94{bottom:182.906667pt;}
.y117{bottom:184.666667pt;}
.y34{bottom:186.266667pt;}
.ybb{bottom:195.546667pt;}
.y5c{bottom:196.666667pt;}
.ye4{bottom:197.946667pt;}
.y93{bottom:198.266667pt;}
.y33{bottom:201.626667pt;}
.y46{bottom:207.066667pt;}
.y116{bottom:208.026667pt;}
.ye3{bottom:210.426667pt;}
.y5b{bottom:212.026667pt;}
.y92{bottom:213.626667pt;}
.yba{bottom:214.426667pt;}
.y32{bottom:216.986667pt;}
.y115{bottom:223.386667pt;}
.y45{bottom:223.546667pt;}
.y5a{bottom:227.226667pt;}
.y91{bottom:228.826667pt;}
.y31{bottom:232.346667pt;}
.yb9{bottom:233.306667pt;}
.y114{bottom:238.746667pt;}
.y59{bottom:242.586667pt;}
.y90{bottom:244.186667pt;}
.y30{bottom:247.546667pt;}
.yb8{bottom:252.186667pt;}
.y113{bottom:253.946667pt;}
.y58{bottom:257.946667pt;}
.y8f{bottom:259.546667pt;}
.y2f{bottom:262.906667pt;}
.yb6{bottom:271.066667pt;}
.y57{bottom:273.306667pt;}
.y112{bottom:277.306667pt;}
.y2e{bottom:278.266667pt;}
.y8e{bottom:290.906667pt;}
.y111{bottom:292.666667pt;}
.y2d{bottom:293.626667pt;}
.yb2{bottom:301.626667pt;}
.y56{bottom:304.666667pt;}
.y110{bottom:308.026667pt;}
.y138{bottom:316.066667pt;}
.y8d{bottom:322.306667pt;}
.y2c{bottom:324.866667pt;}
.y10f{bottom:331.266667pt;}
.y137{bottom:331.426667pt;}
.yb1{bottom:332.386667pt;}
.y55{bottom:335.906667pt;}
.y8c{bottom:337.666667pt;}
.y10e{bottom:346.626667pt;}
.yb0{bottom:351.266667pt;}
.y54{bottom:352.386667pt;}
.y8b{bottom:352.866667pt;}
.y2b{bottom:353.346667pt;}
.y136{bottom:354.626667pt;}
.y10d{bottom:361.986667pt;}
.y8a{bottom:369.186667pt;}
.y135{bottom:369.986667pt;}
.yaf{bottom:370.146667pt;}
.y2a{bottom:379.586667pt;}
.y89{bottom:384.546667pt;}
.y10c{bottom:385.346667pt;}
.yae{bottom:389.026667pt;}
.y134{bottom:393.346667pt;}
.y29{bottom:394.946667pt;}
.y88{bottom:399.906667pt;}
.y10b{bottom:400.706667pt;}
.yad{bottom:407.906667pt;}
.y133{bottom:408.706667pt;}
.y28{bottom:410.306667pt;}
.y87{bottom:415.266667pt;}
.y10a{bottom:424.066667pt;}
.y27{bottom:425.666667pt;}
.yac{bottom:426.786667pt;}
.y86{bottom:430.626667pt;}
.y109{bottom:439.426667pt;}
.y26{bottom:441.026667pt;}
.yaa{bottom:446.306667pt;}
.y85{bottom:446.786667pt;}
.ye2{bottom:451.266667pt;}
.y108{bottom:454.626667pt;}
.y25{bottom:456.226667pt;}
.y84{bottom:462.146667pt;}
.y132{bottom:462.626667pt;}
.ye1{bottom:466.626667pt;}
.ya9{bottom:468.706667pt;}
.y24{bottom:471.586667pt;}
.y131{bottom:477.986667pt;}
.y83{bottom:478.466667pt;}
.ye0{bottom:481.986667pt;}
.ya8{bottom:484.066667pt;}
.y107{bottom:485.986667pt;}
.y23{bottom:486.946667pt;}
.y130{bottom:493.346667pt;}
.y82{bottom:493.826667pt;}
.ydf{bottom:494.466667pt;}
.ya7{bottom:499.426667pt;}
.y22{bottom:502.306667pt;}
.y12f{bottom:508.706667pt;}
.y81{bottom:509.186667pt;}
.ya6{bottom:514.626667pt;}
.y106{bottom:517.346667pt;}
.y21{bottom:517.666667pt;}
.y80{bottom:524.386667pt;}
.y12e{bottom:532.066667pt;}
.y105{bottom:532.706667pt;}
.y20{bottom:533.026667pt;}
.yf7{bottom:534.626667pt;}
.y7f{bottom:539.746667pt;}
.ya5{bottom:545.986667pt;}
.y12d{bottom:547.453333pt;}
.y104{bottom:548.093333pt;}
.y1f{bottom:548.253333pt;}
.yf6{bottom:550.013333pt;}
.y7e{bottom:555.133333pt;}
.y12c{bottom:562.653333pt;}
.y103{bottom:563.453333pt;}
.y1e{bottom:563.613333pt;}
.yf5{bottom:565.373333pt;}
.y7d{bottom:570.493333pt;}
.ya4{bottom:577.373333pt;}
.y12b{bottom:578.013333pt;}
.y102{bottom:578.653333pt;}
.y1d{bottom:578.973333pt;}
.yf4{bottom:580.733333pt;}
.y7c{bottom:585.853333pt;}
.ya3{bottom:592.733333pt;}
.y101{bottom:594.013333pt;}
.y1c{bottom:594.333333pt;}
.yf3{bottom:596.093333pt;}
.yd8{bottom:600.893333pt;}
.y7b{bottom:601.213333pt;}
.y12a{bottom:601.373333pt;}
.ya2{bottom:608.093333pt;}
.y100{bottom:609.373333pt;}
.y1b{bottom:609.693333pt;}
.yf2{bottom:611.293333pt;}
.yd7{bottom:616.093333pt;}
.y7a{bottom:616.413333pt;}
.y129{bottom:616.733333pt;}
.ya1{bottom:623.293333pt;}
.yff{bottom:624.733333pt;}
.y1a{bottom:624.893333pt;}
.yf1{bottom:626.653333pt;}
.yd6{bottom:631.453333pt;}
.y128{bottom:632.093333pt;}
.y79{bottom:632.733333pt;}
.ya0{bottom:638.653333pt;}
.yfe{bottom:640.093333pt;}
.y19{bottom:640.253333pt;}
.yf0{bottom:642.013333pt;}
.yd5{bottom:646.813333pt;}
.y127{bottom:647.293333pt;}
.y78{bottom:648.093333pt;}
.y9f{bottom:654.013333pt;}
.yfd{bottom:655.293333pt;}
.y18{bottom:655.613333pt;}
.yef{bottom:657.373333pt;}
.yd4{bottom:662.173333pt;}
.y77{bottom:663.453333pt;}
.yfc{bottom:670.653333pt;}
.y17{bottom:670.973333pt;}
.yee{bottom:672.733333pt;}
.yd3{bottom:677.533333pt;}
.y76{bottom:678.813333pt;}
.y9e{bottom:685.373333pt;}
.yfb{bottom:686.013333pt;}
.y16{bottom:687.453333pt;}
.yd2{bottom:692.893333pt;}
.y75{bottom:694.973333pt;}
.yfa{bottom:701.373333pt;}
.yed{bottom:703.933333pt;}
.yd1{bottom:708.093333pt;}
.y74{bottom:710.333333pt;}
.y15{bottom:713.693333pt;}
.y9d{bottom:716.733333pt;}
.yd0{bottom:721.213333pt;}
.y73{bottom:726.653333pt;}
.y14{bottom:728.893333pt;}
.y9c{bottom:732.093333pt;}
.yec{bottom:735.293333pt;}
.ycf{bottom:736.573333pt;}
.y126{bottom:739.933333pt;}
.y72{bottom:742.013333pt;}
.y13{bottom:744.253333pt;}
.y9b{bottom:747.293333pt;}
.yeb{bottom:747.773333pt;}
.yce{bottom:751.933333pt;}
.y125{bottom:755.293333pt;}
.y71{bottom:758.333333pt;}
.y9a{bottom:762.653333pt;}
.y12{bottom:764.253333pt;}
.ycd{bottom:767.933333pt;}
.y124{bottom:770.653333pt;}
.y70{bottom:774.653333pt;}
.y99{bottom:778.013333pt;}
.y53{bottom:779.293333pt;}
.y11{bottom:779.613333pt;}
.y123{bottom:786.053333pt;}
.ycc{bottom:786.853333pt;}
.y6f{bottom:789.893333pt;}
.y10{bottom:790.373333pt;}
.y44{bottom:793.413333pt;}
.y52{bottom:794.693333pt;}
.ycb{bottom:802.213333pt;}
.y6e{bottom:805.253333pt;}
.yf{bottom:805.733333pt;}
.y43{bottom:808.773333pt;}
.y122{bottom:809.413333pt;}
.y51{bottom:810.053333pt;}
.yca{bottom:817.573333pt;}
.y6d{bottom:820.613333pt;}
.ye{bottom:820.933333pt;}
.y42{bottom:824.133333pt;}
.y98{bottom:824.773333pt;}
.y50{bottom:825.413333pt;}
.yc9{bottom:832.933333pt;}
.y6c{bottom:835.973333pt;}
.yd{bottom:836.293333pt;}
.y41{bottom:839.333333pt;}
.y121{bottom:840.133333pt;}
.y4f{bottom:840.773333pt;}
.yc8{bottom:848.133333pt;}
.y6b{bottom:851.333333pt;}
.yc{bottom:851.653333pt;}
.y120{bottom:855.333333pt;}
.y4e{bottom:856.133333pt;}
.yc7{bottom:861.253333pt;}
.yb{bottom:867.013333pt;}
.y6a{bottom:867.493333pt;}
.y40{bottom:870.693333pt;}
.y4d{bottom:871.333333pt;}
.y11f{bottom:878.693333pt;}
.yc6{bottom:880.133333pt;}
.ya{bottom:882.373333pt;}
.y69{bottom:882.853333pt;}
.y4c{bottom:886.693333pt;}
.y11e{bottom:894.053333pt;}
.yc5{bottom:899.013333pt;}
.y68{bottom:899.173333pt;}
.y3f{bottom:902.053333pt;}
.y11d{bottom:909.413333pt;}
.y67{bottom:914.533333pt;}
.y9{bottom:914.853333pt;}
.y3e{bottom:917.413333pt;}
.yc4{bottom:917.893333pt;}
.y11c{bottom:924.773333pt;}
.y66{bottom:930.853333pt;}
.y3d{bottom:932.773333pt;}
.y8{bottom:936.293333pt;}
.yc3{bottom:936.773333pt;}
.y65{bottom:946.213333pt;}
.y11b{bottom:947.973333pt;}
.y3c{bottom:948.133333pt;}
.yc2{bottom:956.293333pt;}
.y7{bottom:957.733333pt;}
.y64{bottom:962.373333pt;}
.y3b{bottom:963.333333pt;}
.y63{bottom:977.733333pt;}
.y3a{bottom:978.693333pt;}
.y6{bottom:991.973333pt;}
.y5{bottom:996.613333pt;}
.y2{bottom:1001.733333pt;}
.y1{bottom:1034.560000pt;}
.h5{height:14.343750pt;}
.he{height:15.360000pt;}
.hd{height:15.392000pt;}
.ha{height:18.880000pt;}
.h3{height:27.552000pt;}
.hc{height:30.560000pt;}
.hb{height:30.752000pt;}
.h8{height:30.982500pt;}
.h4{height:36.164062pt;}
.h9{height:47.180312pt;}
.h2{height:47.621250pt;}
.h7{height:49.542500pt;}
.h6{height:66.507188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:200.666667pt;}
.w7{width:300.386667pt;}
.w9{width:304.386667pt;}
.w8{width:338.146667pt;}
.w6{width:342.146667pt;}
.w5{width:441.853333pt;}
.w3{width:642.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.800000pt;}
.x1c{left:6.560000pt;}
.x20{left:52.160000pt;}
.x1{left:75.551988pt;}
.x11{left:78.911988pt;}
.x28{left:92.800000pt;}
.x4{left:99.871988pt;}
.x2d{left:101.151988pt;}
.x13{left:113.311988pt;}
.x26{left:118.234667pt;}
.x1e{left:120.314667pt;}
.x24{left:122.271988pt;}
.x3{left:127.711988pt;}
.x2c{left:131.231988pt;}
.x19{left:137.306655pt;}
.x21{left:140.200000pt;}
.x29{left:142.120000pt;}
.x22{left:143.560000pt;}
.x2a{left:145.480000pt;}
.x23{left:146.760000pt;}
.x1a{left:161.306655pt;}
.x17{left:177.306655pt;}
.x1b{left:189.146667pt;}
.x1d{left:216.386655pt;}
.x31{left:235.106655pt;}
.x2f{left:241.666655pt;}
.xe{left:245.186655pt;}
.x7{left:261.986655pt;}
.xd{left:263.746655pt;}
.x14{left:267.106655pt;}
.x5{left:272.706655pt;}
.x10{left:275.746655pt;}
.x8{left:284.706655pt;}
.x6{left:296.226655pt;}
.xa{left:304.386655pt;}
.x25{left:305.506655pt;}
.x9{left:307.266655pt;}
.xb{left:312.066655pt;}
.xf{left:323.106655pt;}
.x16{left:328.706655pt;}
.x2b{left:356.706655pt;}
.xc{left:396.893322pt;}
.x27{left:413.853333pt;}
.x1f{left:417.853333pt;}
.x2e{left:593.893322pt;}
.x18{left:625.893322pt;}
.x30{left:649.413322pt;}
.x15{left:686.399988pt;}
.x12{left:717.919988pt;}
}




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