
    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_97fe0559340534a3fe69ce37.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942383;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_23a20104151d56ecea5733e6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.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_5efa667cdfb9ac3a2899df70.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c07ce9d6ab5d5079d71dec84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2aa24486ca23f56f8c10c460.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5c50e0282b2e572f0ccd1a6d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_febf50e12753985e88a3dfb4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m2{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257149,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v8{vertical-align:-20.880000px;}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.640000px;}
.v6{vertical-align:12.240000px;}
.v7{vertical-align:20.880000px;}
.v5{vertical-align:30.240000px;}
.v9{vertical-align:32.692285px;}
.v1{vertical-align:35.280000px;}
.v4{vertical-align:38.880000px;}
.ls15{letter-spacing:-2.262000px;}
.ls14{letter-spacing:-2.160000px;}
.ls5{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-1.039436px;}
.ls7{letter-spacing:-0.924000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.253200px;}
.ls11{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.100200px;}
.ls1c{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.028800px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.226080px;}
.ls1f{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306720px;}
.ls19{letter-spacing:0.311760px;}
.lse{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.463680px;}
.lsa{letter-spacing:22.291200px;}
.ls1e{letter-spacing:22.962720px;}
.ls1a{letter-spacing:22.986720px;}
.lsb{letter-spacing:98.681164px;}
.lsd{letter-spacing:102.985751px;}
.lsc{letter-spacing:104.233649px;}
.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;}
}
.ws5{word-spacing:-43.200720px;}
.ws8{word-spacing:-42.223680px;}
.ws6{word-spacing:-41.760000px;}
.ws7{word-spacing:-36.324000px;}
.wsf{word-spacing:-17.258377px;}
.ws10{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.686800px;}
.ws11{word-spacing:-14.580000px;}
.wse{word-spacing:-12.678000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.wsd{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:26.532000px;}
._2e{margin-left:-136.941439px;}
._2f{margin-left:-135.693541px;}
._2d{margin-left:-131.388954px;}
._38{margin-left:-7.457280px;}
._13{margin-left:-3.347760px;}
._0{margin-left:-1.373280px;}
._1{width:1.135440px;}
._2{width:2.556240px;}
._3{width:3.884400px;}
._18{width:5.317440px;}
._7{width:6.513840px;}
._f{width:7.888320px;}
._12{width:9.322560px;}
._6{width:10.338480px;}
._5{width:11.412960px;}
._4{width:12.848400px;}
._28{width:13.922880px;}
._e{width:16.075440px;}
._17{width:18.046320px;}
._16{width:19.063440px;}
._26{width:20.799360px;}
._1a{width:21.931920px;}
._25{width:23.545440px;}
._1d{width:24.561360px;}
._15{width:25.756560px;}
._14{width:26.951760px;}
._27{width:28.027440px;}
._24{width:29.162880px;}
._1c{width:30.222960px;}
._1b{width:31.314240px;}
._2a{width:33.237360px;}
._22{width:35.138880px;}
._30{width:36.334080px;}
._d{width:37.885440px;}
._c{width:39.441600px;}
._b{width:40.517280px;}
._29{width:41.712480px;}
._1e{width:43.146720px;}
._34{width:44.162640px;}
._32{width:45.357840px;}
._21{width:47.628720px;}
._37{width:48.823920px;}
._8{width:51.214320px;}
._31{width:52.708320px;}
._23{width:54.051120px;}
._36{width:59.819760px;}
._a{width:60.955200px;}
._9{width:61.971120px;}
._33{width:66.333600px;}
._11{width:67.528800px;}
._10{width:68.544720px;}
._35{width:79.660080px;}
._19{width:101.532240px;}
._20{width:156.152880px;}
._1f{width:157.228560px;}
._2b{width:196.584240px;}
._2c{width:215.724240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:42.637567px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:73.191254px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.240000px;}
.y7f{bottom:4.225064px;}
.y7c{bottom:4.225066px;}
.y80{bottom:4.225068px;}
.y7d{bottom:4.225070px;}
.yb3{bottom:4.500000px;}
.ya3{bottom:12.240000px;}
.y7b{bottom:12.398117px;}
.y6d{bottom:20.520000px;}
.y6a{bottom:20.880000px;}
.y83{bottom:29.520000px;}
.y5{bottom:57.636000px;}
.y4{bottom:77.076000px;}
.yd2{bottom:97.056000px;}
.y79{bottom:109.296000px;}
.ya1{bottom:112.176000px;}
.y42{bottom:112.896000px;}
.yd1{bottom:114.336000px;}
.y78{bottom:126.576000px;}
.ya0{bottom:129.456000px;}
.y41{bottom:130.176000px;}
.yd0{bottom:131.616000px;}
.y77{bottom:141.336000px;}
.y9f{bottom:146.736000px;}
.y40{bottom:147.456000px;}
.ycf{bottom:148.896000px;}
.y76{bottom:159.330000px;}
.y9e{bottom:163.830000px;}
.y3f{bottom:164.730000px;}
.yce{bottom:166.170000px;}
.y75{bottom:177.330000px;}
.y9d{bottom:181.110000px;}
.y3e{bottom:181.830000px;}
.ycd{bottom:183.450000px;}
.y74{bottom:195.330000px;}
.y9c{bottom:198.390000px;}
.y3d{bottom:199.110000px;}
.ycc{bottom:200.550000px;}
.y73{bottom:213.330000px;}
.y9b{bottom:215.670000px;}
.y3c{bottom:216.390000px;}
.ycb{bottom:217.830000px;}
.y72{bottom:231.330000px;}
.y9a{bottom:232.950000px;}
.y3b{bottom:233.670000px;}
.yca{bottom:235.110000px;}
.y99{bottom:247.710000px;}
.y71{bottom:249.330000px;}
.y3a{bottom:250.950000px;}
.yc9{bottom:252.390000px;}
.y98{bottom:265.710000px;}
.y70{bottom:267.330000px;}
.y39{bottom:268.050000px;}
.yc8{bottom:269.670000px;}
.y97{bottom:283.755000px;}
.y38{bottom:285.375000px;}
.yc7{bottom:286.995000px;}
.y96{bottom:301.755000px;}
.y37{bottom:302.655000px;}
.y6f{bottom:303.375000px;}
.yc6{bottom:304.095000px;}
.y95{bottom:319.755000px;}
.y36{bottom:319.935000px;}
.y6e{bottom:321.375000px;}
.y35{bottom:337.215000px;}
.y94{bottom:337.755000px;}
.yc5{bottom:338.655000px;}
.y69{bottom:339.375000px;}
.y34{bottom:354.495000px;}
.y93{bottom:355.755000px;}
.yc4{bottom:355.935000px;}
.y33{bottom:371.595000px;}
.yc3{bottom:373.215000px;}
.y92{bottom:373.755000px;}
.y6b{bottom:374.655000px;}
.y32{bottom:388.875000px;}
.yc2{bottom:390.495000px;}
.y91{bottom:391.755000px;}
.y68{bottom:395.895000px;}
.y31{bottom:406.155000px;}
.yc1{bottom:407.595000px;}
.y90{bottom:409.755000px;}
.y67{bottom:413.175000px;}
.y30{bottom:423.435000px;}
.yc0{bottom:424.875000px;}
.y8f{bottom:427.755000px;}
.y52{bottom:430.455000px;}
.y2f{bottom:440.715000px;}
.ybf{bottom:442.155000px;}
.y66{bottom:443.055000px;}
.y8e{bottom:445.755000px;}
.y51{bottom:447.735000px;}
.y2e{bottom:457.995000px;}
.ybe{bottom:459.435000px;}
.y65{bottom:460.335000px;}
.y8d{bottom:463.755000px;}
.y50{bottom:464.835000px;}
.y2d{bottom:475.095000px;}
.ybd{bottom:476.715000px;}
.y64{bottom:477.615000px;}
.y8c{bottom:481.755000px;}
.y4f{bottom:482.115000px;}
.y2c{bottom:492.375000px;}
.ybc{bottom:493.815000px;}
.y63{bottom:494.895000px;}
.y4e{bottom:499.395000px;}
.y8b{bottom:499.755000px;}
.y2b{bottom:509.655000px;}
.ybb{bottom:511.095000px;}
.y62{bottom:512.175000px;}
.y4d{bottom:516.675000px;}
.y8a{bottom:517.755000px;}
.y2a{bottom:526.935000px;}
.yba{bottom:528.375000px;}
.y61{bottom:529.455000px;}
.y4c{bottom:533.955000px;}
.y89{bottom:535.575000px;}
.y29{bottom:544.215000px;}
.yb9{bottom:545.655000px;}
.y60{bottom:546.555000px;}
.y4b{bottom:551.055000px;}
.y88{bottom:553.575000px;}
.y28{bottom:561.345000px;}
.yb8{bottom:562.965000px;}
.y5f{bottom:563.865000px;}
.y4a{bottom:568.365000px;}
.y87{bottom:571.605000px;}
.y27{bottom:578.625000px;}
.yb7{bottom:580.245000px;}
.y5e{bottom:581.145000px;}
.y49{bottom:585.645000px;}
.y86{bottom:589.605000px;}
.y26{bottom:595.905000px;}
.yb6{bottom:597.345000px;}
.y5d{bottom:598.425000px;}
.y48{bottom:602.925000px;}
.y85{bottom:607.605000px;}
.y25{bottom:613.185000px;}
.y81{bottom:613.245000px;}
.yb5{bottom:614.625000px;}
.y5c{bottom:616.965000px;}
.y47{bottom:620.205000px;}
.y82{bottom:625.605000px;}
.y24{bottom:630.465000px;}
.yb4{bottom:631.905000px;}
.y46{bottom:637.485000px;}
.y7e{bottom:637.995000px;}
.y5b{bottom:641.625000px;}
.y23{bottom:647.745000px;}
.y45{bottom:654.585000px;}
.y84{bottom:660.885000px;}
.y7a{bottom:662.745000px;}
.y22{bottom:664.845000px;}
.y5a{bottom:666.465000px;}
.yb2{bottom:667.005000px;}
.y44{bottom:670.785000px;}
.y43{bottom:678.345000px;}
.y21{bottom:682.125000px;}
.yb1{bottom:685.005000px;}
.y59{bottom:689.865000px;}
.y20{bottom:699.405000px;}
.yb0{bottom:703.005000px;}
.y58{bottom:707.145000px;}
.y1f{bottom:716.685000px;}
.yaf{bottom:721.005000px;}
.y57{bottom:724.245000px;}
.y1e{bottom:733.965000px;}
.yae{bottom:739.005000px;}
.y56{bottom:744.585000px;}
.y1d{bottom:751.245000px;}
.yad{bottom:757.005000px;}
.y55{bottom:761.865000px;}
.y1c{bottom:768.345000px;}
.yac{bottom:775.005000px;}
.y54{bottom:775.905000px;}
.y53{bottom:783.465000px;}
.y1b{bottom:785.625000px;}
.yab{bottom:793.005000px;}
.y1a{bottom:802.905000px;}
.yaa{bottom:811.005000px;}
.y19{bottom:820.185000px;}
.ya9{bottom:829.005000px;}
.y18{bottom:837.465000px;}
.ya8{bottom:847.050000px;}
.y17{bottom:854.790000px;}
.ya7{bottom:865.050000px;}
.y16{bottom:871.890000px;}
.ya6{bottom:882.870000px;}
.y15{bottom:889.170000px;}
.ya5{bottom:900.870000px;}
.y14{bottom:906.450000px;}
.ya2{bottom:918.870000px;}
.y13{bottom:923.730000px;}
.ya4{bottom:936.870000px;}
.y12{bottom:941.010000px;}
.y11{bottom:958.110000px;}
.y10{bottom:975.390000px;}
.yf{bottom:992.670000px;}
.ye{bottom:1009.950000px;}
.yd{bottom:1027.230000px;}
.yc{bottom:1044.510000px;}
.yb{bottom:1061.610000px;}
.ya{bottom:1078.890000px;}
.y9{bottom:1096.170000px;}
.y8{bottom:1113.450000px;}
.y7{bottom:1130.760000px;}
.y6{bottom:1148.040000px;}
.y3{bottom:1166.400000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1198.440000px;}
.h16{height:17.100000px;}
.h17{height:17.136000px;}
.he{height:17.280000px;}
.h10{height:17.316000px;}
.h19{height:18.360000px;}
.h11{height:24.000000px;}
.h12{height:29.771348px;}
.hf{height:34.560000px;}
.h2{height:35.261367px;}
.h18{height:35.280000px;}
.h7{height:41.726953px;}
.h6{height:42.164648px;}
.h1b{height:43.156758px;}
.h1a{height:43.506914px;}
.ha{height:43.681992px;}
.hc{height:48.027656px;}
.h14{height:50.819318px;}
.hd{height:52.560000px;}
.hb{height:53.966953px;}
.h5{height:58.819922px;}
.h13{height:62.297080px;}
.h4{height:65.884219px;}
.h15{height:69.840000px;}
.h8{height:70.474219px;}
.h9{height:71.966953px;}
.h3{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:49.500000px;}
.w7{width:52.498338px;}
.wb{width:176.970000px;}
.w5{width:196.770000px;}
.wa{width:211.710000px;}
.wd{width:266.070000px;}
.we{width:266.115000px;}
.w8{width:285.870000px;}
.w3{width:315.615000px;}
.w4{width:394.455000px;}
.w9{width:424.155000px;}
.wc{width:532.905000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:3.960000px;}
.x1d{left:10.892857px;}
.x21{left:14.285341px;}
.x13{left:16.020000px;}
.x20{left:19.641645px;}
.x26{left:23.400000px;}
.x24{left:27.540000px;}
.x3c{left:30.774000px;}
.x16{left:34.560000px;}
.x32{left:35.814000px;}
.x3a{left:37.074000px;}
.x1c{left:41.249716px;}
.x37{left:42.474000px;}
.x1f{left:44.642247px;}
.x17{left:46.440000px;}
.x31{left:47.874000px;}
.x34{left:49.494000px;}
.x38{left:52.014000px;}
.x2b{left:54.894000px;}
.x12{left:56.880000px;}
.x39{left:59.574000px;}
.x1a{left:64.080000px;}
.x19{left:67.860000px;}
.x14{left:72.360000px;}
.x2a{left:75.420000px;}
.x27{left:79.920000px;}
.x2f{left:83.700000px;}
.x29{left:85.140000px;}
.x33{left:87.525000px;}
.x22{left:89.634000px;}
.x30{left:91.260000px;}
.x35{left:95.040000px;}
.x36{left:98.865000px;}
.x3b{left:102.600000px;}
.x10{left:109.794000px;}
.x3d{left:115.590000px;}
.x1{left:138.275987px;}
.x8{left:141.875987px;}
.x2{left:152.669987px;}
.x5{left:156.989987px;}
.x25{left:177.525000px;}
.x3{left:182.189987px;}
.x2d{left:185.070000px;}
.x9{left:191.369987px;}
.x7{left:214.229987px;}
.x6{left:228.269987px;}
.xc{left:269.894987px;}
.x4{left:308.414987px;}
.xd{left:313.274987px;}
.x2c{left:316.875000px;}
.x23{left:425.625000px;}
.x11{left:455.325000px;}
.xa{left:510.404987px;}
.xb{left:563.504987px;}
.x2e{left:583.665000px;}
.x1e{left:618.000000px;}
.x28{left:638.070000px;}
.x15{left:653.010000px;}
.xe{left:654.629987px;}
.xf{left:687.749987px;}
.x1b{left:774.045000px;}
@media print{
.v8{vertical-align:-18.560000pt;}
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.680000pt;}
.v6{vertical-align:10.880000pt;}
.v7{vertical-align:18.560000pt;}
.v5{vertical-align:26.880000pt;}
.v9{vertical-align:29.059809pt;}
.v1{vertical-align:31.360000pt;}
.v4{vertical-align:34.560000pt;}
.ls15{letter-spacing:-2.010667pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.923943pt;}
.ls7{letter-spacing:-0.821333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.225067pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.089067pt;}
.ls1c{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.025600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.200960pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272640pt;}
.ls19{letter-spacing:0.277120pt;}
.lse{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.412160pt;}
.lsa{letter-spacing:19.814400pt;}
.ls1e{letter-spacing:20.411307pt;}
.ls1a{letter-spacing:20.432640pt;}
.lsb{letter-spacing:87.716590pt;}
.lsd{letter-spacing:91.542890pt;}
.lsc{letter-spacing:92.652132pt;}
.ws5{word-spacing:-38.400640pt;}
.ws8{word-spacing:-37.532160pt;}
.ws6{word-spacing:-37.120000pt;}
.ws7{word-spacing:-32.288000pt;}
.wsf{word-spacing:-15.340780pt;}
.ws10{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.054933pt;}
.ws11{word-spacing:-12.960000pt;}
.wse{word-spacing:-11.269333pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.wsd{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:23.584000pt;}
._2e{margin-left:-121.725724pt;}
._2f{margin-left:-120.616481pt;}
._2d{margin-left:-116.790181pt;}
._38{margin-left:-6.628693pt;}
._13{margin-left:-2.975787pt;}
._0{margin-left:-1.220693pt;}
._1{width:1.009280pt;}
._2{width:2.272213pt;}
._3{width:3.452800pt;}
._18{width:4.726613pt;}
._7{width:5.790080pt;}
._f{width:7.011840pt;}
._12{width:8.286720pt;}
._6{width:9.189760pt;}
._5{width:10.144853pt;}
._4{width:11.420800pt;}
._28{width:12.375893pt;}
._e{width:14.289280pt;}
._17{width:16.041173pt;}
._16{width:16.945280pt;}
._26{width:18.488320pt;}
._1a{width:19.495040pt;}
._25{width:20.929280pt;}
._1d{width:21.832320pt;}
._15{width:22.894720pt;}
._14{width:23.957120pt;}
._27{width:24.913280pt;}
._24{width:25.922560pt;}
._1c{width:26.864853pt;}
._1b{width:27.834880pt;}
._2a{width:29.544320pt;}
._22{width:31.234560pt;}
._30{width:32.296960pt;}
._d{width:33.675947pt;}
._c{width:35.059200pt;}
._b{width:36.015360pt;}
._29{width:37.077760pt;}
._1e{width:38.352640pt;}
._34{width:39.255680pt;}
._32{width:40.318080pt;}
._21{width:42.336640pt;}
._37{width:43.399040pt;}
._8{width:45.523840pt;}
._31{width:46.851840pt;}
._23{width:48.045440pt;}
._36{width:53.173120pt;}
._a{width:54.182400pt;}
._9{width:55.085440pt;}
._33{width:58.963200pt;}
._11{width:60.025600pt;}
._10{width:60.928640pt;}
._35{width:70.808960pt;}
._19{width:90.250880pt;}
._20{width:138.802560pt;}
._1f{width:139.758720pt;}
._2b{width:174.741547pt;}
._2c{width:191.754880pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:37.900059pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:65.058893pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:2.880000pt;}
.y7f{bottom:3.755612pt;}
.y7c{bottom:3.755614pt;}
.y80{bottom:3.755616pt;}
.y7d{bottom:3.755618pt;}
.yb3{bottom:4.000000pt;}
.ya3{bottom:10.880000pt;}
.y7b{bottom:11.020548pt;}
.y6d{bottom:18.240000pt;}
.y6a{bottom:18.560000pt;}
.y83{bottom:26.240000pt;}
.y5{bottom:51.232000pt;}
.y4{bottom:68.512000pt;}
.yd2{bottom:86.272000pt;}
.y79{bottom:97.152000pt;}
.ya1{bottom:99.712000pt;}
.y42{bottom:100.352000pt;}
.yd1{bottom:101.632000pt;}
.y78{bottom:112.512000pt;}
.ya0{bottom:115.072000pt;}
.y41{bottom:115.712000pt;}
.yd0{bottom:116.992000pt;}
.y77{bottom:125.632000pt;}
.y9f{bottom:130.432000pt;}
.y40{bottom:131.072000pt;}
.ycf{bottom:132.352000pt;}
.y76{bottom:141.626667pt;}
.y9e{bottom:145.626667pt;}
.y3f{bottom:146.426667pt;}
.yce{bottom:147.706667pt;}
.y75{bottom:157.626667pt;}
.y9d{bottom:160.986667pt;}
.y3e{bottom:161.626667pt;}
.ycd{bottom:163.066667pt;}
.y74{bottom:173.626667pt;}
.y9c{bottom:176.346667pt;}
.y3d{bottom:176.986667pt;}
.ycc{bottom:178.266667pt;}
.y73{bottom:189.626667pt;}
.y9b{bottom:191.706667pt;}
.y3c{bottom:192.346667pt;}
.ycb{bottom:193.626667pt;}
.y72{bottom:205.626667pt;}
.y9a{bottom:207.066667pt;}
.y3b{bottom:207.706667pt;}
.yca{bottom:208.986667pt;}
.y99{bottom:220.186667pt;}
.y71{bottom:221.626667pt;}
.y3a{bottom:223.066667pt;}
.yc9{bottom:224.346667pt;}
.y98{bottom:236.186667pt;}
.y70{bottom:237.626667pt;}
.y39{bottom:238.266667pt;}
.yc8{bottom:239.706667pt;}
.y97{bottom:252.226667pt;}
.y38{bottom:253.666667pt;}
.yc7{bottom:255.106667pt;}
.y96{bottom:268.226667pt;}
.y37{bottom:269.026667pt;}
.y6f{bottom:269.666667pt;}
.yc6{bottom:270.306667pt;}
.y95{bottom:284.226667pt;}
.y36{bottom:284.386667pt;}
.y6e{bottom:285.666667pt;}
.y35{bottom:299.746667pt;}
.y94{bottom:300.226667pt;}
.yc5{bottom:301.026667pt;}
.y69{bottom:301.666667pt;}
.y34{bottom:315.106667pt;}
.y93{bottom:316.226667pt;}
.yc4{bottom:316.386667pt;}
.y33{bottom:330.306667pt;}
.yc3{bottom:331.746667pt;}
.y92{bottom:332.226667pt;}
.y6b{bottom:333.026667pt;}
.y32{bottom:345.666667pt;}
.yc2{bottom:347.106667pt;}
.y91{bottom:348.226667pt;}
.y68{bottom:351.906667pt;}
.y31{bottom:361.026667pt;}
.yc1{bottom:362.306667pt;}
.y90{bottom:364.226667pt;}
.y67{bottom:367.266667pt;}
.y30{bottom:376.386667pt;}
.yc0{bottom:377.666667pt;}
.y8f{bottom:380.226667pt;}
.y52{bottom:382.626667pt;}
.y2f{bottom:391.746667pt;}
.ybf{bottom:393.026667pt;}
.y66{bottom:393.826667pt;}
.y8e{bottom:396.226667pt;}
.y51{bottom:397.986667pt;}
.y2e{bottom:407.106667pt;}
.ybe{bottom:408.386667pt;}
.y65{bottom:409.186667pt;}
.y8d{bottom:412.226667pt;}
.y50{bottom:413.186667pt;}
.y2d{bottom:422.306667pt;}
.ybd{bottom:423.746667pt;}
.y64{bottom:424.546667pt;}
.y8c{bottom:428.226667pt;}
.y4f{bottom:428.546667pt;}
.y2c{bottom:437.666667pt;}
.ybc{bottom:438.946667pt;}
.y63{bottom:439.906667pt;}
.y4e{bottom:443.906667pt;}
.y8b{bottom:444.226667pt;}
.y2b{bottom:453.026667pt;}
.ybb{bottom:454.306667pt;}
.y62{bottom:455.266667pt;}
.y4d{bottom:459.266667pt;}
.y8a{bottom:460.226667pt;}
.y2a{bottom:468.386667pt;}
.yba{bottom:469.666667pt;}
.y61{bottom:470.626667pt;}
.y4c{bottom:474.626667pt;}
.y89{bottom:476.066667pt;}
.y29{bottom:483.746667pt;}
.yb9{bottom:485.026667pt;}
.y60{bottom:485.826667pt;}
.y4b{bottom:489.826667pt;}
.y88{bottom:492.066667pt;}
.y28{bottom:498.973333pt;}
.yb8{bottom:500.413333pt;}
.y5f{bottom:501.213333pt;}
.y4a{bottom:505.213333pt;}
.y87{bottom:508.093333pt;}
.y27{bottom:514.333333pt;}
.yb7{bottom:515.773333pt;}
.y5e{bottom:516.573333pt;}
.y49{bottom:520.573333pt;}
.y86{bottom:524.093333pt;}
.y26{bottom:529.693333pt;}
.yb6{bottom:530.973333pt;}
.y5d{bottom:531.933333pt;}
.y48{bottom:535.933333pt;}
.y85{bottom:540.093333pt;}
.y25{bottom:545.053333pt;}
.y81{bottom:545.106667pt;}
.yb5{bottom:546.333333pt;}
.y5c{bottom:548.413333pt;}
.y47{bottom:551.293333pt;}
.y82{bottom:556.093333pt;}
.y24{bottom:560.413333pt;}
.yb4{bottom:561.693333pt;}
.y46{bottom:566.653333pt;}
.y7e{bottom:567.106667pt;}
.y5b{bottom:570.333333pt;}
.y23{bottom:575.773333pt;}
.y45{bottom:581.853333pt;}
.y84{bottom:587.453333pt;}
.y7a{bottom:589.106667pt;}
.y22{bottom:590.973333pt;}
.y5a{bottom:592.413333pt;}
.yb2{bottom:592.893333pt;}
.y44{bottom:596.253333pt;}
.y43{bottom:602.973333pt;}
.y21{bottom:606.333333pt;}
.yb1{bottom:608.893333pt;}
.y59{bottom:613.213333pt;}
.y20{bottom:621.693333pt;}
.yb0{bottom:624.893333pt;}
.y58{bottom:628.573333pt;}
.y1f{bottom:637.053333pt;}
.yaf{bottom:640.893333pt;}
.y57{bottom:643.773333pt;}
.y1e{bottom:652.413333pt;}
.yae{bottom:656.893333pt;}
.y56{bottom:661.853333pt;}
.y1d{bottom:667.773333pt;}
.yad{bottom:672.893333pt;}
.y55{bottom:677.213333pt;}
.y1c{bottom:682.973333pt;}
.yac{bottom:688.893333pt;}
.y54{bottom:689.693333pt;}
.y53{bottom:696.413333pt;}
.y1b{bottom:698.333333pt;}
.yab{bottom:704.893333pt;}
.y1a{bottom:713.693333pt;}
.yaa{bottom:720.893333pt;}
.y19{bottom:729.053333pt;}
.ya9{bottom:736.893333pt;}
.y18{bottom:744.413333pt;}
.ya8{bottom:752.933333pt;}
.y17{bottom:759.813333pt;}
.ya7{bottom:768.933333pt;}
.y16{bottom:775.013333pt;}
.ya6{bottom:784.773333pt;}
.y15{bottom:790.373333pt;}
.ya5{bottom:800.773333pt;}
.y14{bottom:805.733333pt;}
.ya2{bottom:816.773333pt;}
.y13{bottom:821.093333pt;}
.ya4{bottom:832.773333pt;}
.y12{bottom:836.453333pt;}
.y11{bottom:851.653333pt;}
.y10{bottom:867.013333pt;}
.yf{bottom:882.373333pt;}
.ye{bottom:897.733333pt;}
.yd{bottom:913.093333pt;}
.yc{bottom:928.453333pt;}
.yb{bottom:943.653333pt;}
.ya{bottom:959.013333pt;}
.y9{bottom:974.373333pt;}
.y8{bottom:989.733333pt;}
.y7{bottom:1005.120000pt;}
.y6{bottom:1020.480000pt;}
.y3{bottom:1036.800000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1065.280000pt;}
.h16{height:15.200000pt;}
.h17{height:15.232000pt;}
.he{height:15.360000pt;}
.h10{height:15.392000pt;}
.h19{height:16.320000pt;}
.h11{height:21.333333pt;}
.h12{height:26.463420pt;}
.hf{height:30.720000pt;}
.h2{height:31.343437pt;}
.h18{height:31.360000pt;}
.h7{height:37.090625pt;}
.h6{height:37.479688pt;}
.h1b{height:38.361562pt;}
.h1a{height:38.672812pt;}
.ha{height:38.828437pt;}
.hc{height:42.691250pt;}
.h14{height:45.172727pt;}
.hd{height:46.720000pt;}
.hb{height:47.970625pt;}
.h5{height:52.284375pt;}
.h13{height:55.375182pt;}
.h4{height:58.563750pt;}
.h15{height:62.080000pt;}
.h8{height:62.643750pt;}
.h9{height:63.970625pt;}
.h3{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.000000pt;}
.w7{width:46.665189pt;}
.wb{width:157.306667pt;}
.w5{width:174.906667pt;}
.wa{width:188.186667pt;}
.wd{width:236.506667pt;}
.we{width:236.546667pt;}
.w8{width:254.106667pt;}
.w3{width:280.546667pt;}
.w4{width:350.626667pt;}
.w9{width:377.026667pt;}
.wc{width:473.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:3.520000pt;}
.x1d{left:9.682540pt;}
.x21{left:12.698081pt;}
.x13{left:14.240000pt;}
.x20{left:17.459240pt;}
.x26{left:20.800000pt;}
.x24{left:24.480000pt;}
.x3c{left:27.354667pt;}
.x16{left:30.720000pt;}
.x32{left:31.834667pt;}
.x3a{left:32.954667pt;}
.x1c{left:36.666414pt;}
.x37{left:37.754667pt;}
.x1f{left:39.681997pt;}
.x17{left:41.280000pt;}
.x31{left:42.554667pt;}
.x34{left:43.994667pt;}
.x38{left:46.234667pt;}
.x2b{left:48.794667pt;}
.x12{left:50.560000pt;}
.x39{left:52.954667pt;}
.x1a{left:56.960000pt;}
.x19{left:60.320000pt;}
.x14{left:64.320000pt;}
.x2a{left:67.040000pt;}
.x27{left:71.040000pt;}
.x2f{left:74.400000pt;}
.x29{left:75.680000pt;}
.x33{left:77.800000pt;}
.x22{left:79.674667pt;}
.x30{left:81.120000pt;}
.x35{left:84.480000pt;}
.x36{left:87.880000pt;}
.x3b{left:91.200000pt;}
.x10{left:97.594667pt;}
.x3d{left:102.746667pt;}
.x1{left:122.911988pt;}
.x8{left:126.111988pt;}
.x2{left:135.706655pt;}
.x5{left:139.546655pt;}
.x25{left:157.800000pt;}
.x3{left:161.946655pt;}
.x2d{left:164.506667pt;}
.x9{left:170.106655pt;}
.x7{left:190.426655pt;}
.x6{left:202.906655pt;}
.xc{left:239.906655pt;}
.x4{left:274.146655pt;}
.xd{left:278.466655pt;}
.x2c{left:281.666667pt;}
.x23{left:378.333333pt;}
.x11{left:404.733333pt;}
.xa{left:453.693322pt;}
.xb{left:500.893322pt;}
.x2e{left:518.813333pt;}
.x1e{left:549.333333pt;}
.x28{left:567.173333pt;}
.x15{left:580.453333pt;}
.xe{left:581.893322pt;}
.xf{left:611.333322pt;}
.x1b{left:688.040000pt;}
}




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