
    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_3e3acbd68f207ae99455258c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_76689a050e7eb95d6f8cb66d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_a77180ffd9b0f298552b51dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc8cc70daaf329920b8c1a07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_905cfb2bfebb8a16201d2c91.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb0d9375c94347e764875dd5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ccdd6801bda4825713152fa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.332000px;}
.ls5{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.654000px;}
.lse{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.566400px;}
.ls13{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.198600px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.233280px;}
.ls8{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-17.818560px;}
.ws2{word-spacing:-17.619960px;}
.ws1{word-spacing:-16.954560px;}
.ws3{word-spacing:-16.691760px;}
.ws4{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.328000px;}
.ws5{word-spacing:-10.080000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-3198.839520px;}
._22{margin-left:-3172.781040px;}
._3a{margin-left:-3170.552400px;}
._37{margin-left:-3169.492560px;}
._44{margin-left:-3167.558160px;}
._43{margin-left:-3166.206480px;}
._28{margin-left:-3163.810320px;}
._34{margin-left:-3159.136800px;}
._2a{margin-left:-3155.993040px;}
._4d{margin-left:-3150.952560px;}
._23{margin-left:-2576.004240px;}
._2d{margin-left:-2517.176880px;}
._46{margin-left:-2292.003360px;}
._48{margin-left:-2219.617440px;}
._33{margin-left:-2213.014080px;}
._f{margin-left:-2179.886880px;}
._49{margin-left:-2129.276880px;}
._39{margin-left:-1856.086560px;}
._45{margin-left:-1827.091440px;}
._32{margin-left:-1812.679200px;}
._4b{margin-left:-1739.564640px;}
._e{margin-left:-1674.101280px;}
._4c{margin-left:-1594.586160px;}
._4f{margin-left:-1589.546160px;}
._40{margin-left:-1563.511680px;}
._3c{margin-left:-1435.266720px;}
._5{margin-left:-1431.941760px;}
._2e{margin-left:-1382.865120px;}
._42{margin-left:-1376.481840px;}
._3f{margin-left:-1235.132640px;}
._47{margin-left:-1183.918320px;}
._3e{margin-left:-1169.952480px;}
._30{margin-left:-1140.264000px;}
._35{margin-left:-1133.478720px;}
._1c{margin-left:-1094.952720px;}
._4{margin-left:-1087.505280px;}
._38{margin-left:-950.812560px;}
._41{margin-left:-942.246720px;}
._10{margin-left:-936.295920px;}
._2b{margin-left:-922.785120px;}
._3d{margin-left:-908.624880px;}
._6{margin-left:-610.974720px;}
._24{margin-left:-572.552640px;}
._7{margin-left:-544.421040px;}
._4e{margin-left:-529.346160px;}
._2c{margin-left:-519.366240px;}
._3b{margin-left:-504.545760px;}
._4a{margin-left:-497.933280px;}
._18{margin-left:-485.100960px;}
._3{margin-left:-467.576640px;}
._50{margin-left:-434.886480px;}
._1{margin-left:-419.958720px;}
._11{margin-left:-407.643120px;}
._c{margin-left:-258.480000px;}
._d{margin-left:-202.898880px;}
._2f{margin-left:-195.786720px;}
._9{margin-left:-179.922000px;}
._a{margin-left:-160.459200px;}
._31{margin-left:-129.718560px;}
._b{margin-left:-120.173760px;}
._8{margin-left:-115.836480px;}
._1b{margin-left:-49.320000px;}
._17{margin-left:-41.760000px;}
._1a{margin-left:-39.240000px;}
._19{margin-left:-33.120000px;}
._1f{margin-left:-4.130880px;}
._15{margin-left:-2.362080px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._21{width:2.629440px;}
._20{width:4.014000px;}
._1e{width:5.385600px;}
._1d{width:6.390720px;}
._27{width:8.067600px;}
._36{width:9.660240px;}
._26{width:10.777680px;}
._25{width:11.892240px;}
._29{width:13.505760px;}
._52{width:16.275600px;}
._14{width:18.202560px;}
._13{width:19.247760px;}
._51{width:20.492160px;}
._54{width:23.148000px;}
._53{width:24.561360px;}
._56{width:27.510480px;}
._55{width:28.565280px;}
._57{width:36.256320px;}
._58{width:37.801440px;}
._12{width:43.726080px;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(74,74,74);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:6.120000px;}
.ya{bottom:8.100000px;}
.y6{bottom:26.100000px;}
.y9{bottom:32.400000px;}
.y5{bottom:45.900000px;}
.y8{bottom:59.250000px;}
.yd{bottom:59.760000px;}
.y4{bottom:65.730000px;}
.y3{bottom:85.530000px;}
.y82{bottom:86.400000px;}
.yd5{bottom:86.760000px;}
.ya4{bottom:88.020000px;}
.y79{bottom:89.820000px;}
.y7{bottom:93.450000px;}
.y2{bottom:105.330000px;}
.y81{bottom:106.200000px;}
.yd4{bottom:106.560000px;}
.ya3{bottom:108.000000px;}
.y78{bottom:109.620000px;}
.y3d{bottom:119.700000px;}
.y3c{bottom:120.420000px;}
.y80{bottom:126.000000px;}
.yd3{bottom:126.360000px;}
.ya2{bottom:127.800000px;}
.y77{bottom:129.420000px;}
.y3b{bottom:140.220000px;}
.y7f{bottom:145.980000px;}
.yd2{bottom:146.160000px;}
.ya1{bottom:147.600000px;}
.y76{bottom:149.220000px;}
.y3a{bottom:160.230000px;}
.y7e{bottom:165.810000px;}
.yd1{bottom:165.990000px;}
.ya0{bottom:167.430000px;}
.y75{bottom:169.230000px;}
.y39{bottom:180.030000px;}
.y7d{bottom:185.610000px;}
.yd0{bottom:185.970000px;}
.y9f{bottom:187.230000px;}
.y74{bottom:189.030000px;}
.y38{bottom:199.830000px;}
.y7c{bottom:202.170000px;}
.ycf{bottom:205.770000px;}
.y9e{bottom:207.210000px;}
.y73{bottom:208.830000px;}
.y37{bottom:219.630000px;}
.yce{bottom:225.570000px;}
.y9d{bottom:227.010000px;}
.y72{bottom:237.630000px;}
.y36{bottom:239.430000px;}
.ycd{bottom:245.370000px;}
.y9c{bottom:246.810000px;}
.y92{bottom:256.530000px;}
.y71{bottom:257.430000px;}
.y35{bottom:259.410000px;}
.ycc{bottom:265.170000px;}
.y9b{bottom:266.610000px;}
.y91{bottom:276.510000px;}
.y34{bottom:279.210000px;}
.ycb{bottom:285.150000px;}
.y70{bottom:286.410000px;}
.y90{bottom:296.310000px;}
.y33{bottom:299.010000px;}
.yca{bottom:304.950000px;}
.y9a{bottom:306.390000px;}
.y6f{bottom:315.210000px;}
.y8f{bottom:316.110000px;}
.y32{bottom:318.810000px;}
.yc9{bottom:324.750000px;}
.y99{bottom:326.190000px;}
.y6e{bottom:335.010000px;}
.y8e{bottom:335.910000px;}
.y31{bottom:338.610000px;}
.yc8{bottom:344.550000px;}
.y98{bottom:345.990000px;}
.y6d{bottom:354.810000px;}
.y8d{bottom:355.710000px;}
.y30{bottom:358.590000px;}
.y68{bottom:362.550000px;}
.yc7{bottom:364.350000px;}
.y97{bottom:365.790000px;}
.y6c{bottom:374.610000px;}
.y8c{bottom:375.690000px;}
.y2f{bottom:378.390000px;}
.y67{bottom:382.350000px;}
.yc6{bottom:384.330000px;}
.y96{bottom:385.590000px;}
.y6b{bottom:394.590000px;}
.y8b{bottom:395.490000px;}
.y2e{bottom:398.190000px;}
.y66{bottom:402.375000px;}
.yc5{bottom:404.175000px;}
.y95{bottom:405.615000px;}
.y6a{bottom:414.435000px;}
.y8a{bottom:415.335000px;}
.y2d{bottom:418.035000px;}
.y65{bottom:422.175000px;}
.yc4{bottom:423.975000px;}
.y94{bottom:425.415000px;}
.y69{bottom:430.995000px;}
.y89{bottom:435.135000px;}
.y2c{bottom:437.835000px;}
.y64{bottom:441.975000px;}
.yc3{bottom:443.775000px;}
.y93{bottom:445.215000px;}
.y88{bottom:454.935000px;}
.y2b{bottom:457.815000px;}
.y63{bottom:461.775000px;}
.yc2{bottom:463.575000px;}
.y87{bottom:474.915000px;}
.y2a{bottom:477.615000px;}
.y62{bottom:481.575000px;}
.yc1{bottom:483.555000px;}
.y86{bottom:494.715000px;}
.y29{bottom:497.415000px;}
.y61{bottom:501.555000px;}
.yc0{bottom:503.355000px;}
.y85{bottom:514.515000px;}
.y28{bottom:517.215000px;}
.y60{bottom:521.355000px;}
.ybf{bottom:523.155000px;}
.yee{bottom:526.935000px;}
.y84{bottom:531.075000px;}
.y27{bottom:537.015000px;}
.y5f{bottom:541.155000px;}
.ybe{bottom:542.955000px;}
.yed{bottom:548.355000px;}
.y26{bottom:556.995000px;}
.y5e{bottom:560.955000px;}
.ybd{bottom:562.755000px;}
.yec{bottom:568.155000px;}
.y25{bottom:576.795000px;}
.y5d{bottom:580.755000px;}
.ybc{bottom:582.555000px;}
.yeb{bottom:587.955000px;}
.y24{bottom:598.755000px;}
.y5c{bottom:600.555000px;}
.ybb{bottom:602.535000px;}
.yea{bottom:607.755000px;}
.y5b{bottom:620.535000px;}
.yba{bottom:622.335000px;}
.ye9{bottom:627.555000px;}
.y23{bottom:636.735000px;}
.y5a{bottom:640.335000px;}
.y7b{bottom:642.135000px;}
.ye8{bottom:647.535000px;}
.y22{bottom:656.565000px;}
.y7a{bottom:658.725000px;}
.yb9{bottom:661.965000px;}
.ye7{bottom:667.365000px;}
.y59{bottom:669.165000px;}
.y21{bottom:676.365000px;}
.yb8{bottom:681.765000px;}
.ye6{bottom:687.165000px;}
.y58{bottom:688.965000px;}
.y20{bottom:696.165000px;}
.yb7{bottom:701.745000px;}
.ye5{bottom:706.965000px;}
.y57{bottom:708.765000px;}
.y1f{bottom:715.965000px;}
.yb6{bottom:721.545000px;}
.ye4{bottom:726.765000px;}
.y56{bottom:728.745000px;}
.y1e{bottom:735.945000px;}
.yb5{bottom:741.345000px;}
.ye3{bottom:746.745000px;}
.y55{bottom:748.545000px;}
.y1d{bottom:755.745000px;}
.yb4{bottom:761.145000px;}
.ye2{bottom:766.545000px;}
.y54{bottom:768.345000px;}
.y1c{bottom:775.545000px;}
.yb3{bottom:780.945000px;}
.ye1{bottom:786.345000px;}
.y53{bottom:788.145000px;}
.y1b{bottom:795.345000px;}
.yb2{bottom:800.925000px;}
.ye0{bottom:806.145000px;}
.y52{bottom:807.945000px;}
.y1a{bottom:815.145000px;}
.yb1{bottom:820.725000px;}
.ydf{bottom:825.945000px;}
.y51{bottom:826.485000px;}
.y50{bottom:827.925000px;}
.y19{bottom:835.125000px;}
.yb0{bottom:840.525000px;}
.yde{bottom:845.925000px;}
.y4f{bottom:847.725000px;}
.y18{bottom:854.745000px;}
.yaf{bottom:860.325000px;}
.ydd{bottom:865.725000px;}
.y4e{bottom:876.525000px;}
.yae{bottom:880.125000px;}
.ydc{bottom:885.525000px;}
.y16{bottom:886.065000px;}
.y17{bottom:891.285000px;}
.y4d{bottom:896.325000px;}
.yad{bottom:900.150000px;}
.ydb{bottom:905.370000px;}
.y14{bottom:914.910000px;}
.y4c{bottom:916.170000px;}
.yac{bottom:919.950000px;}
.y15{bottom:920.130000px;}
.yda{bottom:925.170000px;}
.y13{bottom:935.250000px;}
.y4b{bottom:936.150000px;}
.yab{bottom:939.750000px;}
.y12{bottom:941.190000px;}
.yd9{bottom:945.150000px;}
.y4a{bottom:955.950000px;}
.y11{bottom:956.490000px;}
.yaa{bottom:959.550000px;}
.yd8{bottom:964.950000px;}
.y49{bottom:975.750000px;}
.y10{bottom:979.890000px;}
.yd7{bottom:984.750000px;}
.ya9{bottom:988.350000px;}
.y48{bottom:995.550000px;}
.yd6{bottom:1004.550000px;}
.ya8{bottom:1008.330000px;}
.yf{bottom:1011.750000px;}
.y47{bottom:1015.350000px;}
.y83{bottom:1024.350000px;}
.ya7{bottom:1037.130000px;}
.ye{bottom:1043.430000px;}
.y46{bottom:1044.330000px;}
.y45{bottom:1064.130000px;}
.ya6{bottom:1065.930000px;}
.yc{bottom:1070.250000px;}
.y44{bottom:1083.930000px;}
.y1{bottom:1088.070000px;}
.ya5{bottom:1094.730000px;}
.y43{bottom:1103.730000px;}
.y42{bottom:1123.530000px;}
.y41{bottom:1143.510000px;}
.y40{bottom:1161.180000px;}
.y3f{bottom:1179.180000px;}
.y3e{bottom:1197.180000px;}
.he{height:27.432422px;}
.ha{height:29.464453px;}
.hd{height:34.855313px;}
.hf{height:38.100586px;}
.h9{height:42.164648px;}
.hb{height:46.736719px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.hc{height:53.573906px;}
.h10{height:53.709961px;}
.h5{height:55.987031px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:116.676000px;}
.w4{width:167.610000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.xd{left:33.660000px;}
.x6{left:36.720000px;}
.x17{left:45.899987px;}
.x3{left:47.016000px;}
.x13{left:48.239987px;}
.x1{left:54.000000px;}
.x18{left:56.519987px;}
.x15{left:66.419987px;}
.x14{left:68.939987px;}
.x9{left:76.320000px;}
.x28{left:80.999987px;}
.x1b{left:95.075987px;}
.x2{left:97.230000px;}
.x22{left:98.315987px;}
.x1a{left:103.715987px;}
.x29{left:108.035987px;}
.x24{left:119.015987px;}
.x8{left:120.285000px;}
.xc{left:148.170000px;}
.x25{left:164.189987px;}
.x5{left:170.670000px;}
.x26{left:172.649987px;}
.x12{left:179.489987px;}
.x1f{left:183.269987px;}
.x27{left:184.529987px;}
.x11{left:198.209987px;}
.x7{left:201.645000px;}
.x16{left:216.749987px;}
.x23{left:222.329987px;}
.x20{left:255.269987px;}
.x21{left:277.994987px;}
.x10{left:320.294987px;}
.x1e{left:373.754987px;}
.x1d{left:382.934987px;}
.xa{left:670.830000px;}
.x1c{left:816.299987px;}
.xe{left:820.079987px;}
.x2a{left:829.439987px;}
.xf{left:831.059987px;}
.x19{left:832.319987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.184000pt;}
.ls5{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.581333pt;}
.lse{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.503467pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.176533pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls8{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws0{word-spacing:-15.838720pt;}
.ws2{word-spacing:-15.662187pt;}
.ws1{word-spacing:-15.070720pt;}
.ws3{word-spacing:-14.837120pt;}
.ws4{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.736000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-2843.412907pt;}
._22{margin-left:-2820.249813pt;}
._3a{margin-left:-2818.268800pt;}
._37{margin-left:-2817.326720pt;}
._44{margin-left:-2815.607253pt;}
._43{margin-left:-2814.405760pt;}
._28{margin-left:-2812.275840pt;}
._34{margin-left:-2808.121600pt;}
._2a{margin-left:-2805.327147pt;}
._4d{margin-left:-2800.846720pt;}
._23{margin-left:-2289.781547pt;}
._2d{margin-left:-2237.490560pt;}
._46{margin-left:-2037.336320pt;}
._48{margin-left:-1972.993280pt;}
._33{margin-left:-1967.123627pt;}
._f{margin-left:-1937.677227pt;}
._49{margin-left:-1892.690560pt;}
._39{margin-left:-1649.854720pt;}
._45{margin-left:-1624.081280pt;}
._32{margin-left:-1611.270400pt;}
._4b{margin-left:-1546.279680pt;}
._e{margin-left:-1488.090027pt;}
._4c{margin-left:-1417.409920pt;}
._4f{margin-left:-1412.929920pt;}
._40{margin-left:-1389.788160pt;}
._3c{margin-left:-1275.792640pt;}
._5{margin-left:-1272.837120pt;}
._2e{margin-left:-1229.213440pt;}
._42{margin-left:-1223.539413pt;}
._3f{margin-left:-1097.895680pt;}
._47{margin-left:-1052.371840pt;}
._3e{margin-left:-1039.957760pt;}
._30{margin-left:-1013.568000pt;}
._35{margin-left:-1007.536640pt;}
._1c{margin-left:-973.291307pt;}
._4{margin-left:-966.671360pt;}
._38{margin-left:-845.166720pt;}
._41{margin-left:-837.552640pt;}
._10{margin-left:-832.263040pt;}
._2b{margin-left:-820.253440pt;}
._3d{margin-left:-807.666560pt;}
._6{margin-left:-543.088640pt;}
._24{margin-left:-508.935680pt;}
._7{margin-left:-483.929813pt;}
._4e{margin-left:-470.529920pt;}
._2c{margin-left:-461.658880pt;}
._3b{margin-left:-448.485120pt;}
._4a{margin-left:-442.607360pt;}
._18{margin-left:-431.200853pt;}
._3{margin-left:-415.623680pt;}
._50{margin-left:-386.565760pt;}
._1{margin-left:-373.296640pt;}
._11{margin-left:-362.349440pt;}
._c{margin-left:-229.760000pt;}
._d{margin-left:-180.354560pt;}
._2f{margin-left:-174.032640pt;}
._9{margin-left:-159.930667pt;}
._a{margin-left:-142.630400pt;}
._31{margin-left:-115.305387pt;}
._b{margin-left:-106.821120pt;}
._8{margin-left:-102.965760pt;}
._1b{margin-left:-43.840000pt;}
._17{margin-left:-37.120000pt;}
._1a{margin-left:-34.880000pt;}
._19{margin-left:-29.440000pt;}
._1f{margin-left:-3.671893pt;}
._15{margin-left:-2.099627pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._21{width:2.337280pt;}
._20{width:3.568000pt;}
._1e{width:4.787200pt;}
._1d{width:5.680640pt;}
._27{width:7.171200pt;}
._36{width:8.586880pt;}
._26{width:9.580160pt;}
._25{width:10.570880pt;}
._29{width:12.005120pt;}
._52{width:14.467200pt;}
._14{width:16.180053pt;}
._13{width:17.109120pt;}
._51{width:18.215253pt;}
._54{width:20.576000pt;}
._53{width:21.832320pt;}
._56{width:24.453760pt;}
._55{width:25.391360pt;}
._57{width:32.227840pt;}
._58{width:33.601280pt;}
._12{width:38.867627pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.200000pt;}
.y6{bottom:23.200000pt;}
.y9{bottom:28.800000pt;}
.y5{bottom:40.800000pt;}
.y8{bottom:52.666667pt;}
.yd{bottom:53.120000pt;}
.y4{bottom:58.426667pt;}
.y3{bottom:76.026667pt;}
.y82{bottom:76.800000pt;}
.yd5{bottom:77.120000pt;}
.ya4{bottom:78.240000pt;}
.y79{bottom:79.840000pt;}
.y7{bottom:83.066667pt;}
.y2{bottom:93.626667pt;}
.y81{bottom:94.400000pt;}
.yd4{bottom:94.720000pt;}
.ya3{bottom:96.000000pt;}
.y78{bottom:97.440000pt;}
.y3d{bottom:106.400000pt;}
.y3c{bottom:107.040000pt;}
.y80{bottom:112.000000pt;}
.yd3{bottom:112.320000pt;}
.ya2{bottom:113.600000pt;}
.y77{bottom:115.040000pt;}
.y3b{bottom:124.640000pt;}
.y7f{bottom:129.760000pt;}
.yd2{bottom:129.920000pt;}
.ya1{bottom:131.200000pt;}
.y76{bottom:132.640000pt;}
.y3a{bottom:142.426667pt;}
.y7e{bottom:147.386667pt;}
.yd1{bottom:147.546667pt;}
.ya0{bottom:148.826667pt;}
.y75{bottom:150.426667pt;}
.y39{bottom:160.026667pt;}
.y7d{bottom:164.986667pt;}
.yd0{bottom:165.306667pt;}
.y9f{bottom:166.426667pt;}
.y74{bottom:168.026667pt;}
.y38{bottom:177.626667pt;}
.y7c{bottom:179.706667pt;}
.ycf{bottom:182.906667pt;}
.y9e{bottom:184.186667pt;}
.y73{bottom:185.626667pt;}
.y37{bottom:195.226667pt;}
.yce{bottom:200.506667pt;}
.y9d{bottom:201.786667pt;}
.y72{bottom:211.226667pt;}
.y36{bottom:212.826667pt;}
.ycd{bottom:218.106667pt;}
.y9c{bottom:219.386667pt;}
.y92{bottom:228.026667pt;}
.y71{bottom:228.826667pt;}
.y35{bottom:230.586667pt;}
.ycc{bottom:235.706667pt;}
.y9b{bottom:236.986667pt;}
.y91{bottom:245.786667pt;}
.y34{bottom:248.186667pt;}
.ycb{bottom:253.466667pt;}
.y70{bottom:254.586667pt;}
.y90{bottom:263.386667pt;}
.y33{bottom:265.786667pt;}
.yca{bottom:271.066667pt;}
.y9a{bottom:272.346667pt;}
.y6f{bottom:280.186667pt;}
.y8f{bottom:280.986667pt;}
.y32{bottom:283.386667pt;}
.yc9{bottom:288.666667pt;}
.y99{bottom:289.946667pt;}
.y6e{bottom:297.786667pt;}
.y8e{bottom:298.586667pt;}
.y31{bottom:300.986667pt;}
.yc8{bottom:306.266667pt;}
.y98{bottom:307.546667pt;}
.y6d{bottom:315.386667pt;}
.y8d{bottom:316.186667pt;}
.y30{bottom:318.746667pt;}
.y68{bottom:322.266667pt;}
.yc7{bottom:323.866667pt;}
.y97{bottom:325.146667pt;}
.y6c{bottom:332.986667pt;}
.y8c{bottom:333.946667pt;}
.y2f{bottom:336.346667pt;}
.y67{bottom:339.866667pt;}
.yc6{bottom:341.626667pt;}
.y96{bottom:342.746667pt;}
.y6b{bottom:350.746667pt;}
.y8b{bottom:351.546667pt;}
.y2e{bottom:353.946667pt;}
.y66{bottom:357.666667pt;}
.yc5{bottom:359.266667pt;}
.y95{bottom:360.546667pt;}
.y6a{bottom:368.386667pt;}
.y8a{bottom:369.186667pt;}
.y2d{bottom:371.586667pt;}
.y65{bottom:375.266667pt;}
.yc4{bottom:376.866667pt;}
.y94{bottom:378.146667pt;}
.y69{bottom:383.106667pt;}
.y89{bottom:386.786667pt;}
.y2c{bottom:389.186667pt;}
.y64{bottom:392.866667pt;}
.yc3{bottom:394.466667pt;}
.y93{bottom:395.746667pt;}
.y88{bottom:404.386667pt;}
.y2b{bottom:406.946667pt;}
.y63{bottom:410.466667pt;}
.yc2{bottom:412.066667pt;}
.y87{bottom:422.146667pt;}
.y2a{bottom:424.546667pt;}
.y62{bottom:428.066667pt;}
.yc1{bottom:429.826667pt;}
.y86{bottom:439.746667pt;}
.y29{bottom:442.146667pt;}
.y61{bottom:445.826667pt;}
.yc0{bottom:447.426667pt;}
.y85{bottom:457.346667pt;}
.y28{bottom:459.746667pt;}
.y60{bottom:463.426667pt;}
.ybf{bottom:465.026667pt;}
.yee{bottom:468.386667pt;}
.y84{bottom:472.066667pt;}
.y27{bottom:477.346667pt;}
.y5f{bottom:481.026667pt;}
.ybe{bottom:482.626667pt;}
.yed{bottom:487.426667pt;}
.y26{bottom:495.106667pt;}
.y5e{bottom:498.626667pt;}
.ybd{bottom:500.226667pt;}
.yec{bottom:505.026667pt;}
.y25{bottom:512.706667pt;}
.y5d{bottom:516.226667pt;}
.ybc{bottom:517.826667pt;}
.yeb{bottom:522.626667pt;}
.y24{bottom:532.226667pt;}
.y5c{bottom:533.826667pt;}
.ybb{bottom:535.586667pt;}
.yea{bottom:540.226667pt;}
.y5b{bottom:551.586667pt;}
.yba{bottom:553.186667pt;}
.ye9{bottom:557.826667pt;}
.y23{bottom:565.986667pt;}
.y5a{bottom:569.186667pt;}
.y7b{bottom:570.786667pt;}
.ye8{bottom:575.586667pt;}
.y22{bottom:583.613333pt;}
.y7a{bottom:585.533333pt;}
.yb9{bottom:588.413333pt;}
.ye7{bottom:593.213333pt;}
.y59{bottom:594.813333pt;}
.y21{bottom:601.213333pt;}
.yb8{bottom:606.013333pt;}
.ye6{bottom:610.813333pt;}
.y58{bottom:612.413333pt;}
.y20{bottom:618.813333pt;}
.yb7{bottom:623.773333pt;}
.ye5{bottom:628.413333pt;}
.y57{bottom:630.013333pt;}
.y1f{bottom:636.413333pt;}
.yb6{bottom:641.373333pt;}
.ye4{bottom:646.013333pt;}
.y56{bottom:647.773333pt;}
.y1e{bottom:654.173333pt;}
.yb5{bottom:658.973333pt;}
.ye3{bottom:663.773333pt;}
.y55{bottom:665.373333pt;}
.y1d{bottom:671.773333pt;}
.yb4{bottom:676.573333pt;}
.ye2{bottom:681.373333pt;}
.y54{bottom:682.973333pt;}
.y1c{bottom:689.373333pt;}
.yb3{bottom:694.173333pt;}
.ye1{bottom:698.973333pt;}
.y53{bottom:700.573333pt;}
.y1b{bottom:706.973333pt;}
.yb2{bottom:711.933333pt;}
.ye0{bottom:716.573333pt;}
.y52{bottom:718.173333pt;}
.y1a{bottom:724.573333pt;}
.yb1{bottom:729.533333pt;}
.ydf{bottom:734.173333pt;}
.y51{bottom:734.653333pt;}
.y50{bottom:735.933333pt;}
.y19{bottom:742.333333pt;}
.yb0{bottom:747.133333pt;}
.yde{bottom:751.933333pt;}
.y4f{bottom:753.533333pt;}
.y18{bottom:759.773333pt;}
.yaf{bottom:764.733333pt;}
.ydd{bottom:769.533333pt;}
.y4e{bottom:779.133333pt;}
.yae{bottom:782.333333pt;}
.ydc{bottom:787.133333pt;}
.y16{bottom:787.613333pt;}
.y17{bottom:792.253333pt;}
.y4d{bottom:796.733333pt;}
.yad{bottom:800.133333pt;}
.ydb{bottom:804.773333pt;}
.y14{bottom:813.253333pt;}
.y4c{bottom:814.373333pt;}
.yac{bottom:817.733333pt;}
.y15{bottom:817.893333pt;}
.yda{bottom:822.373333pt;}
.y13{bottom:831.333333pt;}
.y4b{bottom:832.133333pt;}
.yab{bottom:835.333333pt;}
.y12{bottom:836.613333pt;}
.yd9{bottom:840.133333pt;}
.y4a{bottom:849.733333pt;}
.y11{bottom:850.213333pt;}
.yaa{bottom:852.933333pt;}
.yd8{bottom:857.733333pt;}
.y49{bottom:867.333333pt;}
.y10{bottom:871.013333pt;}
.yd7{bottom:875.333333pt;}
.ya9{bottom:878.533333pt;}
.y48{bottom:884.933333pt;}
.yd6{bottom:892.933333pt;}
.ya8{bottom:896.293333pt;}
.yf{bottom:899.333333pt;}
.y47{bottom:902.533333pt;}
.y83{bottom:910.533333pt;}
.ya7{bottom:921.893333pt;}
.ye{bottom:927.493333pt;}
.y46{bottom:928.293333pt;}
.y45{bottom:945.893333pt;}
.ya6{bottom:947.493333pt;}
.yc{bottom:951.333333pt;}
.y44{bottom:963.493333pt;}
.y1{bottom:967.173333pt;}
.ya5{bottom:973.093333pt;}
.y43{bottom:981.093333pt;}
.y42{bottom:998.693333pt;}
.y41{bottom:1016.453333pt;}
.y40{bottom:1032.160000pt;}
.y3f{bottom:1048.160000pt;}
.y3e{bottom:1064.160000pt;}
.he{height:24.384375pt;}
.ha{height:26.190625pt;}
.hd{height:30.982500pt;}
.hf{height:33.867188pt;}
.h9{height:37.479688pt;}
.hb{height:41.543750pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.hc{height:47.621250pt;}
.h10{height:47.742188pt;}
.h5{height:49.766250pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:103.712000pt;}
.w4{width:148.986667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.xd{left:29.920000pt;}
.x6{left:32.640000pt;}
.x17{left:40.799988pt;}
.x3{left:41.792000pt;}
.x13{left:42.879988pt;}
.x1{left:48.000000pt;}
.x18{left:50.239988pt;}
.x15{left:59.039988pt;}
.x14{left:61.279988pt;}
.x9{left:67.840000pt;}
.x28{left:71.999988pt;}
.x1b{left:84.511988pt;}
.x2{left:86.426667pt;}
.x22{left:87.391988pt;}
.x1a{left:92.191988pt;}
.x29{left:96.031988pt;}
.x24{left:105.791988pt;}
.x8{left:106.920000pt;}
.xc{left:131.706667pt;}
.x25{left:145.946655pt;}
.x5{left:151.706667pt;}
.x26{left:153.466655pt;}
.x12{left:159.546655pt;}
.x1f{left:162.906655pt;}
.x27{left:164.026655pt;}
.x11{left:176.186655pt;}
.x7{left:179.240000pt;}
.x16{left:192.666655pt;}
.x23{left:197.626655pt;}
.x20{left:226.906655pt;}
.x21{left:247.106655pt;}
.x10{left:284.706655pt;}
.x1e{left:332.226655pt;}
.x1d{left:340.386655pt;}
.xa{left:596.293333pt;}
.x1c{left:725.599988pt;}
.xe{left:728.959988pt;}
.x2a{left:737.279988pt;}
.xf{left:738.719988pt;}
.x19{left:739.839988pt;}
}




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