
    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_3fcf4caabfb05cb7eb2b96d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_251bc1ad629befd3be266861.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')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_d42da250405cbf8c71e8bec8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fa485bd5e07e5ac547bfb988.woff')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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_33c1ccecc7a1f7dff1432491.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.106000px;}
.lsa{letter-spacing:-1.548000px;}
.lsc{letter-spacing:-1.332000px;}
.ls8{letter-spacing:-1.134000px;}
.ls4{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.666000px;}
.ls7{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106560px;}
.ls0{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.466800px;}
.lsf{letter-spacing:4.500000px;}
.ls12{letter-spacing:6.660000px;}
.ls11{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls2{letter-spacing:64.170720px;}
.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;}
}
.ws1{word-spacing:-59.760000px;}
.wsc{word-spacing:-15.406800px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsf{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wse{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.274000px;}
.ws3{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.806000px;}
.wsa{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.392000px;}
.ws9{word-spacing:-12.834000px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-8.575440px;}
._b{margin-left:-2.432880px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.925600px;}
._8{width:4.123440px;}
._9{width:5.322960px;}
._5{width:6.531120px;}
._3{width:7.589520px;}
._4{width:8.737680px;}
._7{width:10.277280px;}
._6{width:11.473920px;}
._d{width:12.553920px;}
._a{width:13.864320px;}
._e{width:17.951760px;}
._f{width:20.283840px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yd1{bottom:-5.040000px;}
.ybe{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.240000px;}
.y6c{bottom:3.420000px;}
.y66{bottom:3.600000px;}
.y6e{bottom:3.780000px;}
.ybd{bottom:3.825000px;}
.yb0{bottom:4.140000px;}
.y5{bottom:4.500000px;}
.y98{bottom:12.060000px;}
.ydc{bottom:12.234000px;}
.ybb{bottom:12.240000px;}
.ya2{bottom:12.420000px;}
.yae{bottom:12.600000px;}
.yce{bottom:12.960000px;}
.yc6{bottom:13.140000px;}
.yd9{bottom:13.176000px;}
.yb8{bottom:13.185000px;}
.y99{bottom:20.520000px;}
.ydb{bottom:20.874000px;}
.yba{bottom:20.880000px;}
.y9d{bottom:21.060000px;}
.yaf{bottom:21.240000px;}
.yc2{bottom:21.780000px;}
.yd5{bottom:21.816000px;}
.yb4{bottom:21.825000px;}
.y4{bottom:24.120000px;}
.ya0{bottom:29.520000px;}
.y9b{bottom:29.700000px;}
.ycc{bottom:30.240000px;}
.yc5{bottom:30.420000px;}
.yd8{bottom:30.456000px;}
.yb7{bottom:30.465000px;}
.ya4{bottom:38.160000px;}
.y9c{bottom:38.340000px;}
.yca{bottom:38.880000px;}
.yc0{bottom:39.060000px;}
.yd3{bottom:39.096000px;}
.yb2{bottom:39.105000px;}
.ya1{bottom:46.800000px;}
.ycb{bottom:47.520000px;}
.yd7{bottom:47.556000px;}
.yb6{bottom:47.565000px;}
.yc4{bottom:47.700000px;}
.ya3{bottom:55.440000px;}
.ya7{bottom:55.470000px;}
.y9e{bottom:55.620000px;}
.yd4{bottom:56.196000px;}
.yb3{bottom:56.205000px;}
.yc1{bottom:56.340000px;}
.y11b{bottom:60.480000px;}
.ycd{bottom:64.800000px;}
.yd6{bottom:64.830000px;}
.yb5{bottom:64.845000px;}
.yc3{bottom:64.980000px;}
.y85{bottom:71.280000px;}
.yde{bottom:73.260000px;}
.y11a{bottom:77.760000px;}
.yd2{bottom:87.840000px;}
.y84{bottom:89.280000px;}
.y119{bottom:95.040000px;}
.y43{bottom:95.940000px;}
.ydd{bottom:105.876000px;}
.y83{bottom:107.316000px;}
.y118{bottom:112.356000px;}
.y42{bottom:113.256000px;}
.y82{bottom:125.316000px;}
.y117{bottom:129.636000px;}
.y41{bottom:130.356000px;}
.yda{bottom:141.156000px;}
.y81{bottom:143.316000px;}
.y116{bottom:146.736000px;}
.y40{bottom:147.636000px;}
.y80{bottom:161.310000px;}
.y115{bottom:164.010000px;}
.y3f{bottom:164.910000px;}
.yc9{bottom:176.430000px;}
.y7f{bottom:179.310000px;}
.y114{bottom:181.290000px;}
.y3e{bottom:182.190000px;}
.yd0{bottom:194.430000px;}
.y7e{bottom:197.310000px;}
.y113{bottom:198.570000px;}
.y3d{bottom:199.470000px;}
.y7d{bottom:215.310000px;}
.y112{bottom:215.850000px;}
.y3c{bottom:216.750000px;}
.ycf{bottom:229.530000px;}
.y111{bottom:233.130000px;}
.y7c{bottom:233.310000px;}
.y3b{bottom:233.850000px;}
.y110{bottom:250.230000px;}
.y3a{bottom:251.130000px;}
.y7b{bottom:251.310000px;}
.ybf{bottom:264.810000px;}
.y10f{bottom:267.510000px;}
.y39{bottom:268.410000px;}
.y7a{bottom:269.310000px;}
.yc8{bottom:282.810000px;}
.y10e{bottom:284.790000px;}
.y38{bottom:285.330000px;}
.y79{bottom:287.310000px;}
.y10d{bottom:302.070000px;}
.y37{bottom:302.970000px;}
.y78{bottom:305.310000px;}
.yc7{bottom:318.090000px;}
.y10c{bottom:319.350000px;}
.y36{bottom:321.150000px;}
.y77{bottom:323.310000px;}
.y10b{bottom:336.630000px;}
.y35{bottom:338.430000px;}
.y76{bottom:341.310000px;}
.yb1{bottom:353.370000px;}
.y10a{bottom:353.730000px;}
.y34{bottom:356.430000px;}
.y75{bottom:359.355000px;}
.y109{bottom:371.055000px;}
.ybc{bottom:371.415000px;}
.y33{bottom:374.115000px;}
.y74{bottom:377.355000px;}
.y108{bottom:388.335000px;}
.y32{bottom:391.395000px;}
.y73{bottom:395.355000px;}
.y107{bottom:405.615000px;}
.yb9{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.y72{bottom:413.355000px;}
.y106{bottom:422.895000px;}
.y30{bottom:425.775000px;}
.y71{bottom:431.355000px;}
.y105{bottom:440.175000px;}
.yad{bottom:441.975000px;}
.y2f{bottom:442.695000px;}
.y70{bottom:449.355000px;}
.y104{bottom:457.275000px;}
.y2e{bottom:460.335000px;}
.y6f{bottom:467.355000px;}
.y103{bottom:474.555000px;}
.y2d{bottom:477.615000px;}
.yac{bottom:482.475000px;}
.y6d{bottom:485.355000px;}
.y102{bottom:491.835000px;}
.y2c{bottom:494.895000px;}
.yab{bottom:499.575000px;}
.y6b{bottom:503.355000px;}
.y101{bottom:508.755000px;}
.y2b{bottom:511.995000px;}
.yaa{bottom:516.855000px;}
.y6a{bottom:525.135000px;}
.y100{bottom:526.395000px;}
.y2a{bottom:529.275000px;}
.ya9{bottom:534.135000px;}
.y69{bottom:542.415000px;}
.yff{bottom:543.495000px;}
.y29{bottom:546.555000px;}
.ya8{bottom:551.055000px;}
.y68{bottom:559.695000px;}
.yfe{bottom:560.775000px;}
.y28{bottom:563.835000px;}
.ya6{bottom:565.635000px;}
.y67{bottom:576.435000px;}
.yfd{bottom:578.055000px;}
.y27{bottom:581.115000px;}
.y65{bottom:591.195000px;}
.yfc{bottom:595.335000px;}
.y26{bottom:598.395000px;}
.y63{bottom:609.195000px;}
.yfb{bottom:612.615000px;}
.y25{bottom:615.495000px;}
.yfa{bottom:629.925000px;}
.y24{bottom:632.805000px;}
.ya5{bottom:635.325000px;}
.yf9{bottom:647.025000px;}
.y62{bottom:647.745000px;}
.y23{bottom:649.725000px;}
.yf8{bottom:663.945000px;}
.y61{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.yf7{bottom:681.585000px;}
.y60{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y5f{bottom:699.945000px;}
.y20{bottom:701.925000px;}
.y9f{bottom:705.165000px;}
.y5e{bottom:717.225000px;}
.yf6{bottom:718.305000px;}
.y1f{bottom:719.025000px;}
.y5d{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.yf5{bottom:736.485000px;}
.y5c{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.yf4{bottom:754.845000px;}
.y5b{bottom:768.525000px;}
.y1c{bottom:770.865000px;}
.yf3{bottom:773.205000px;}
.y9a{bottom:774.825000px;}
.y5a{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.yf2{bottom:791.565000px;}
.y59{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.yf1{bottom:809.925000px;}
.y58{bottom:820.365000px;}
.y19{bottom:822.525000px;}
.yf0{bottom:828.105000px;}
.y57{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y97{bottom:844.665000px;}
.yef{bottom:846.465000px;}
.y56{bottom:855.105000px;}
.y17{bottom:857.085000px;}
.yee{bottom:864.825000px;}
.y55{bottom:872.385000px;}
.y16{bottom:874.365000px;}
.yed{bottom:883.230000px;}
.y96{bottom:883.590000px;}
.y54{bottom:889.710000px;}
.y15{bottom:891.330000px;}
.y95{bottom:900.870000px;}
.yec{bottom:901.590000px;}
.y53{bottom:906.990000px;}
.y14{bottom:909.330000px;}
.y94{bottom:918.150000px;}
.yeb{bottom:918.870000px;}
.y52{bottom:923.730000px;}
.y13{bottom:926.790000px;}
.y93{bottom:935.430000px;}
.yea{bottom:935.970000px;}
.y51{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.y92{bottom:952.710000px;}
.ye9{bottom:954.330000px;}
.y50{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y91{bottom:969.990000px;}
.ye8{bottom:971.610000px;}
.y4f{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y90{bottom:987.090000px;}
.ye7{bottom:988.890000px;}
.y4e{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y8f{bottom:1004.370000px;}
.ye6{bottom:1007.250000px;}
.y4d{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.y8e{bottom:1021.650000px;}
.ye5{bottom:1024.350000px;}
.y4c{bottom:1027.230000px;}
.yd{bottom:1031.190000px;}
.y8d{bottom:1038.930000px;}
.ye4{bottom:1041.630000px;}
.y4b{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.y8c{bottom:1053.150000px;}
.ye3{bottom:1059.990000px;}
.y4a{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y8b{bottom:1071.150000px;}
.ye2{bottom:1077.270000px;}
.y49{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y8a{bottom:1089.150000px;}
.ye1{bottom:1095.630000px;}
.y48{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y89{bottom:1107.150000px;}
.ye0{bottom:1113.630000px;}
.y47{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y88{bottom:1125.150000px;}
.y46{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y87{bottom:1143.180000px;}
.y45{bottom:1148.400000px;}
.y86{bottom:1161.180000px;}
.y6{bottom:1162.620000px;}
.ydf{bottom:1165.320000px;}
.y44{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h8{height:17.136000px;}
.ha{height:17.280000px;}
.hb{height:17.316000px;}
.h12{height:34.380000px;}
.hc{height:34.416000px;}
.h13{height:34.560000px;}
.h10{height:36.000000px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:65.884219px;}
.he{height:68.940000px;}
.hf{height:68.976000px;}
.hd{height:69.120000px;}
.h3{height:72.562500px;}
.h15{height:87.660000px;}
.h11{height:87.696000px;}
.h14{height:87.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:50.220000px;}
.we{width:51.876000px;}
.w7{width:53.316000px;}
.w16{width:54.540000px;}
.w13{width:58.140000px;}
.w14{width:65.376000px;}
.w12{width:67.320000px;}
.wa{width:69.876000px;}
.w11{width:73.476000px;}
.w17{width:75.816000px;}
.wf{width:91.260000px;}
.wb{width:93.780000px;}
.wd{width:107.136000px;}
.wc{width:113.076000px;}
.w8{width:124.560000px;}
.w10{width:183.270000px;}
.w6{width:186.330000px;}
.w9{width:200.190000px;}
.w3{width:212.295000px;}
.w2{width:220.710000px;}
.w5{width:225.390000px;}
.w4{width:254.010000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:7.740000px;}
.x40{left:9.180000px;}
.x48{left:10.260000px;}
.x29{left:11.880000px;}
.x36{left:13.140000px;}
.x39{left:14.220000px;}
.x3b{left:16.200000px;}
.x4e{left:17.460000px;}
.x33{left:18.540000px;}
.x4c{left:20.520000px;}
.x30{left:21.600000px;}
.x35{left:22.860000px;}
.x3c{left:24.300000px;}
.x2e{left:25.590000px;}
.x37{left:27.540000px;}
.x2b{left:28.620000px;}
.x32{left:30.825000px;}
.x38{left:32.805000px;}
.x3a{left:34.734000px;}
.x3e{left:37.614000px;}
.x3d{left:38.925000px;}
.x42{left:42.120000px;}
.x26{left:43.374000px;}
.x4d{left:46.440000px;}
.x5{left:54.000000px;}
.xf{left:56.025000px;}
.x3f{left:57.600000px;}
.x17{left:59.760000px;}
.x1e{left:62.325000px;}
.x28{left:63.540000px;}
.x19{left:66.465000px;}
.x4f{left:69.705000px;}
.x11{left:73.470000px;}
.x27{left:78.294000px;}
.xe{left:81.000000px;}
.x22{left:83.514000px;}
.x1d{left:86.265000px;}
.x1f{left:89.865000px;}
.x24{left:91.614000px;}
.x21{left:93.645000px;}
.x25{left:94.854000px;}
.x12{left:98.145000px;}
.x13{left:99.390000px;}
.x20{left:102.234000px;}
.x1c{left:106.050000px;}
.xd{left:108.036000px;}
.x1b{left:109.650000px;}
.x23{left:111.594000px;}
.x15{left:112.896000px;}
.x1a{left:116.274000px;}
.x2a{left:117.576000px;}
.x41{left:202.170000px;}
.xb{left:206.670000px;}
.x14{left:210.450000px;}
.x9{left:229.170000px;}
.x2c{left:242.850000px;}
.x3{left:254.550000px;}
.x6{left:265.710000px;}
.xc{left:273.855000px;}
.x1{left:291.855000px;}
.x2{left:300.675000px;}
.xa{left:333.795000px;}
.x16{left:367.815000px;}
.x43{left:386.175000px;}
.x8{left:396.975000px;}
.x7{left:441.255000px;}
.x2d{left:443.775000px;}
.x10{left:451.155000px;}
.x45{left:460.365000px;}
.x2f{left:514.365000px;}
.x46{left:528.405000px;}
.x47{left:587.265000px;}
.x18{left:593.925000px;}
.x31{left:608.865000px;}
.x49{left:653.550000px;}
.x4a{left:704.490000px;}
.x34{left:722.670000px;}
.x4b{left:759.750000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.872000pt;}
.lsa{letter-spacing:-1.376000pt;}
.lsc{letter-spacing:-1.184000pt;}
.ls8{letter-spacing:-1.008000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.592000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094720pt;}
.ls0{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.414933pt;}
.lsf{letter-spacing:4.000000pt;}
.ls12{letter-spacing:5.920000pt;}
.ls11{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls2{letter-spacing:57.040640pt;}
.ws1{word-spacing:-53.120000pt;}
.wsc{word-spacing:-13.694933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.688000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.272000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.408000pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-7.622613pt;}
._b{margin-left:-2.162560pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.600533pt;}
._8{width:3.665280pt;}
._9{width:4.731520pt;}
._5{width:5.805440pt;}
._3{width:6.746240pt;}
._4{width:7.766827pt;}
._7{width:9.135360pt;}
._6{width:10.199040pt;}
._d{width:11.159040pt;}
._a{width:12.323840pt;}
._e{width:15.957120pt;}
._f{width:18.030080pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yd1{bottom:-4.480000pt;}
.ybe{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.880000pt;}
.y6c{bottom:3.040000pt;}
.y66{bottom:3.200000pt;}
.y6e{bottom:3.360000pt;}
.ybd{bottom:3.400000pt;}
.yb0{bottom:3.680000pt;}
.y5{bottom:4.000000pt;}
.y98{bottom:10.720000pt;}
.ydc{bottom:10.874667pt;}
.ybb{bottom:10.880000pt;}
.ya2{bottom:11.040000pt;}
.yae{bottom:11.200000pt;}
.yce{bottom:11.520000pt;}
.yc6{bottom:11.680000pt;}
.yd9{bottom:11.712000pt;}
.yb8{bottom:11.720000pt;}
.y99{bottom:18.240000pt;}
.ydb{bottom:18.554667pt;}
.yba{bottom:18.560000pt;}
.y9d{bottom:18.720000pt;}
.yaf{bottom:18.880000pt;}
.yc2{bottom:19.360000pt;}
.yd5{bottom:19.392000pt;}
.yb4{bottom:19.400000pt;}
.y4{bottom:21.440000pt;}
.ya0{bottom:26.240000pt;}
.y9b{bottom:26.400000pt;}
.ycc{bottom:26.880000pt;}
.yc5{bottom:27.040000pt;}
.yd8{bottom:27.072000pt;}
.yb7{bottom:27.080000pt;}
.ya4{bottom:33.920000pt;}
.y9c{bottom:34.080000pt;}
.yca{bottom:34.560000pt;}
.yc0{bottom:34.720000pt;}
.yd3{bottom:34.752000pt;}
.yb2{bottom:34.760000pt;}
.ya1{bottom:41.600000pt;}
.ycb{bottom:42.240000pt;}
.yd7{bottom:42.272000pt;}
.yb6{bottom:42.280000pt;}
.yc4{bottom:42.400000pt;}
.ya3{bottom:49.280000pt;}
.ya7{bottom:49.306667pt;}
.y9e{bottom:49.440000pt;}
.yd4{bottom:49.952000pt;}
.yb3{bottom:49.960000pt;}
.yc1{bottom:50.080000pt;}
.y11b{bottom:53.760000pt;}
.ycd{bottom:57.600000pt;}
.yd6{bottom:57.626667pt;}
.yb5{bottom:57.640000pt;}
.yc3{bottom:57.760000pt;}
.y85{bottom:63.360000pt;}
.yde{bottom:65.120000pt;}
.y11a{bottom:69.120000pt;}
.yd2{bottom:78.080000pt;}
.y84{bottom:79.360000pt;}
.y119{bottom:84.480000pt;}
.y43{bottom:85.280000pt;}
.ydd{bottom:94.112000pt;}
.y83{bottom:95.392000pt;}
.y118{bottom:99.872000pt;}
.y42{bottom:100.672000pt;}
.y82{bottom:111.392000pt;}
.y117{bottom:115.232000pt;}
.y41{bottom:115.872000pt;}
.yda{bottom:125.472000pt;}
.y81{bottom:127.392000pt;}
.y116{bottom:130.432000pt;}
.y40{bottom:131.232000pt;}
.y80{bottom:143.386667pt;}
.y115{bottom:145.786667pt;}
.y3f{bottom:146.586667pt;}
.yc9{bottom:156.826667pt;}
.y7f{bottom:159.386667pt;}
.y114{bottom:161.146667pt;}
.y3e{bottom:161.946667pt;}
.yd0{bottom:172.826667pt;}
.y7e{bottom:175.386667pt;}
.y113{bottom:176.506667pt;}
.y3d{bottom:177.306667pt;}
.y7d{bottom:191.386667pt;}
.y112{bottom:191.866667pt;}
.y3c{bottom:192.666667pt;}
.ycf{bottom:204.026667pt;}
.y111{bottom:207.226667pt;}
.y7c{bottom:207.386667pt;}
.y3b{bottom:207.866667pt;}
.y110{bottom:222.426667pt;}
.y3a{bottom:223.226667pt;}
.y7b{bottom:223.386667pt;}
.ybf{bottom:235.386667pt;}
.y10f{bottom:237.786667pt;}
.y39{bottom:238.586667pt;}
.y7a{bottom:239.386667pt;}
.yc8{bottom:251.386667pt;}
.y10e{bottom:253.146667pt;}
.y38{bottom:253.626667pt;}
.y79{bottom:255.386667pt;}
.y10d{bottom:268.506667pt;}
.y37{bottom:269.306667pt;}
.y78{bottom:271.386667pt;}
.yc7{bottom:282.746667pt;}
.y10c{bottom:283.866667pt;}
.y36{bottom:285.466667pt;}
.y77{bottom:287.386667pt;}
.y10b{bottom:299.226667pt;}
.y35{bottom:300.826667pt;}
.y76{bottom:303.386667pt;}
.yb1{bottom:314.106667pt;}
.y10a{bottom:314.426667pt;}
.y34{bottom:316.826667pt;}
.y75{bottom:319.426667pt;}
.y109{bottom:329.826667pt;}
.ybc{bottom:330.146667pt;}
.y33{bottom:332.546667pt;}
.y74{bottom:335.426667pt;}
.y108{bottom:345.186667pt;}
.y32{bottom:347.906667pt;}
.y73{bottom:351.426667pt;}
.y107{bottom:360.546667pt;}
.yb9{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.y72{bottom:367.426667pt;}
.y106{bottom:375.906667pt;}
.y30{bottom:378.466667pt;}
.y71{bottom:383.426667pt;}
.y105{bottom:391.266667pt;}
.yad{bottom:392.866667pt;}
.y2f{bottom:393.506667pt;}
.y70{bottom:399.426667pt;}
.y104{bottom:406.466667pt;}
.y2e{bottom:409.186667pt;}
.y6f{bottom:415.426667pt;}
.y103{bottom:421.826667pt;}
.y2d{bottom:424.546667pt;}
.yac{bottom:428.866667pt;}
.y6d{bottom:431.426667pt;}
.y102{bottom:437.186667pt;}
.y2c{bottom:439.906667pt;}
.yab{bottom:444.066667pt;}
.y6b{bottom:447.426667pt;}
.y101{bottom:452.226667pt;}
.y2b{bottom:455.106667pt;}
.yaa{bottom:459.426667pt;}
.y6a{bottom:466.786667pt;}
.y100{bottom:467.906667pt;}
.y2a{bottom:470.466667pt;}
.ya9{bottom:474.786667pt;}
.y69{bottom:482.146667pt;}
.yff{bottom:483.106667pt;}
.y29{bottom:485.826667pt;}
.ya8{bottom:489.826667pt;}
.y68{bottom:497.506667pt;}
.yfe{bottom:498.466667pt;}
.y28{bottom:501.186667pt;}
.ya6{bottom:502.786667pt;}
.y67{bottom:512.386667pt;}
.yfd{bottom:513.826667pt;}
.y27{bottom:516.546667pt;}
.y65{bottom:525.506667pt;}
.yfc{bottom:529.186667pt;}
.y26{bottom:531.906667pt;}
.y63{bottom:541.506667pt;}
.yfb{bottom:544.546667pt;}
.y25{bottom:547.106667pt;}
.yfa{bottom:559.933333pt;}
.y24{bottom:562.493333pt;}
.ya5{bottom:564.733333pt;}
.yf9{bottom:575.133333pt;}
.y62{bottom:575.773333pt;}
.y23{bottom:577.533333pt;}
.yf8{bottom:590.173333pt;}
.y61{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.yf7{bottom:605.853333pt;}
.y60{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y5f{bottom:622.173333pt;}
.y20{bottom:623.933333pt;}
.y9f{bottom:626.813333pt;}
.y5e{bottom:637.533333pt;}
.yf6{bottom:638.493333pt;}
.y1f{bottom:639.133333pt;}
.y5d{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.yf5{bottom:654.653333pt;}
.y5c{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.yf4{bottom:670.973333pt;}
.y5b{bottom:683.133333pt;}
.y1c{bottom:685.213333pt;}
.yf3{bottom:687.293333pt;}
.y9a{bottom:688.733333pt;}
.y5a{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.yf2{bottom:703.613333pt;}
.y59{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.yf1{bottom:719.933333pt;}
.y58{bottom:729.213333pt;}
.y19{bottom:731.133333pt;}
.yf0{bottom:736.093333pt;}
.y57{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y97{bottom:750.813333pt;}
.yef{bottom:752.413333pt;}
.y56{bottom:760.093333pt;}
.y17{bottom:761.853333pt;}
.yee{bottom:768.733333pt;}
.y55{bottom:775.453333pt;}
.y16{bottom:777.213333pt;}
.yed{bottom:785.093333pt;}
.y96{bottom:785.413333pt;}
.y54{bottom:790.853333pt;}
.y15{bottom:792.293333pt;}
.y95{bottom:800.773333pt;}
.yec{bottom:801.413333pt;}
.y53{bottom:806.213333pt;}
.y14{bottom:808.293333pt;}
.y94{bottom:816.133333pt;}
.yeb{bottom:816.773333pt;}
.y52{bottom:821.093333pt;}
.y13{bottom:823.813333pt;}
.y93{bottom:831.493333pt;}
.yea{bottom:831.973333pt;}
.y51{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.y92{bottom:846.853333pt;}
.ye9{bottom:848.293333pt;}
.y50{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y91{bottom:862.213333pt;}
.ye8{bottom:863.653333pt;}
.y4f{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y90{bottom:877.413333pt;}
.ye7{bottom:879.013333pt;}
.y4e{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y8f{bottom:892.773333pt;}
.ye6{bottom:895.333333pt;}
.y4d{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.y8e{bottom:908.133333pt;}
.ye5{bottom:910.533333pt;}
.y4c{bottom:913.093333pt;}
.yd{bottom:916.613333pt;}
.y8d{bottom:923.493333pt;}
.ye4{bottom:925.893333pt;}
.y4b{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.y8c{bottom:936.133333pt;}
.ye3{bottom:942.213333pt;}
.y4a{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y8b{bottom:952.133333pt;}
.ye2{bottom:957.573333pt;}
.y49{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y8a{bottom:968.133333pt;}
.ye1{bottom:973.893333pt;}
.y48{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y89{bottom:984.133333pt;}
.ye0{bottom:989.893333pt;}
.y47{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y88{bottom:1000.133333pt;}
.y46{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y87{bottom:1016.160000pt;}
.y45{bottom:1020.800000pt;}
.y86{bottom:1032.160000pt;}
.y6{bottom:1033.440000pt;}
.ydf{bottom:1035.840000pt;}
.y44{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h8{height:15.232000pt;}
.ha{height:15.360000pt;}
.hb{height:15.392000pt;}
.h12{height:30.560000pt;}
.hc{height:30.592000pt;}
.h13{height:30.720000pt;}
.h10{height:32.000000pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:58.563750pt;}
.he{height:61.280000pt;}
.hf{height:61.312000pt;}
.hd{height:61.440000pt;}
.h3{height:64.500000pt;}
.h15{height:77.920000pt;}
.h11{height:77.952000pt;}
.h14{height:78.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:44.640000pt;}
.we{width:46.112000pt;}
.w7{width:47.392000pt;}
.w16{width:48.480000pt;}
.w13{width:51.680000pt;}
.w14{width:58.112000pt;}
.w12{width:59.840000pt;}
.wa{width:62.112000pt;}
.w11{width:65.312000pt;}
.w17{width:67.392000pt;}
.wf{width:81.120000pt;}
.wb{width:83.360000pt;}
.wd{width:95.232000pt;}
.wc{width:100.512000pt;}
.w8{width:110.720000pt;}
.w10{width:162.906667pt;}
.w6{width:165.626667pt;}
.w9{width:177.946667pt;}
.w3{width:188.706667pt;}
.w2{width:196.186667pt;}
.w5{width:200.346667pt;}
.w4{width:225.786667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:6.880000pt;}
.x40{left:8.160000pt;}
.x48{left:9.120000pt;}
.x29{left:10.560000pt;}
.x36{left:11.680000pt;}
.x39{left:12.640000pt;}
.x3b{left:14.400000pt;}
.x4e{left:15.520000pt;}
.x33{left:16.480000pt;}
.x4c{left:18.240000pt;}
.x30{left:19.200000pt;}
.x35{left:20.320000pt;}
.x3c{left:21.600000pt;}
.x2e{left:22.746667pt;}
.x37{left:24.480000pt;}
.x2b{left:25.440000pt;}
.x32{left:27.400000pt;}
.x38{left:29.160000pt;}
.x3a{left:30.874667pt;}
.x3e{left:33.434667pt;}
.x3d{left:34.600000pt;}
.x42{left:37.440000pt;}
.x26{left:38.554667pt;}
.x4d{left:41.280000pt;}
.x5{left:48.000000pt;}
.xf{left:49.800000pt;}
.x3f{left:51.200000pt;}
.x17{left:53.120000pt;}
.x1e{left:55.400000pt;}
.x28{left:56.480000pt;}
.x19{left:59.080000pt;}
.x4f{left:61.960000pt;}
.x11{left:65.306667pt;}
.x27{left:69.594667pt;}
.xe{left:72.000000pt;}
.x22{left:74.234667pt;}
.x1d{left:76.680000pt;}
.x1f{left:79.880000pt;}
.x24{left:81.434667pt;}
.x21{left:83.240000pt;}
.x25{left:84.314667pt;}
.x12{left:87.240000pt;}
.x13{left:88.346667pt;}
.x20{left:90.874667pt;}
.x1c{left:94.266667pt;}
.xd{left:96.032000pt;}
.x1b{left:97.466667pt;}
.x23{left:99.194667pt;}
.x15{left:100.352000pt;}
.x1a{left:103.354667pt;}
.x2a{left:104.512000pt;}
.x41{left:179.706667pt;}
.xb{left:183.706667pt;}
.x14{left:187.066667pt;}
.x9{left:203.706667pt;}
.x2c{left:215.866667pt;}
.x3{left:226.266667pt;}
.x6{left:236.186667pt;}
.xc{left:243.426667pt;}
.x1{left:259.426667pt;}
.x2{left:267.266667pt;}
.xa{left:296.706667pt;}
.x16{left:326.946667pt;}
.x43{left:343.266667pt;}
.x8{left:352.866667pt;}
.x7{left:392.226667pt;}
.x2d{left:394.466667pt;}
.x10{left:401.026667pt;}
.x45{left:409.213333pt;}
.x2f{left:457.213333pt;}
.x46{left:469.693333pt;}
.x47{left:522.013333pt;}
.x18{left:527.933333pt;}
.x31{left:541.213333pt;}
.x49{left:580.933333pt;}
.x4a{left:626.213333pt;}
.x34{left:642.373333pt;}
.x4b{left:675.333333pt;}
.x4{left:721.893333pt;}
}




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