
    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_06fddabb168f5206e1d2c30e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_d38cfd07a74c215563933c3c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_94f3e9ffb17905a252276d0a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65c934748b618f70fd33ca4e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_21547af888d76aa22f16596a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bffb51101f98b3a490c08356.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_7755ec367ac88037cfaa218a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689941;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_0884125d22365b4399dc6c47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_c17e47203a710f32f354167c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_20c06148d3fb674f9a3c8a13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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:ffb;src:url('chunks/assets/font_ef815200b6d81ed1ad307965.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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:ffc;src:url('chunks/assets/font_b2b9868c10abdf5a9dab95b9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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:ffd;src:url('chunks/assets/font_81c9d1e5fe8cc5b1d73b27af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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);}
.v3{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.ls8{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.234000px;}
.ls13{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.090000px;}
.ls4{letter-spacing:-0.027600px;}
.lsd{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.006000px;}
.ls11{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.024000px;}
.ls15{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.042000px;}
.ls14{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.090600px;}
.ls10{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.139200px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181800px;}
.lse{letter-spacing:0.360000px;}
.ls12{letter-spacing:3.060000px;}
.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;}
}
.ws17{word-spacing:-37.551600px;}
.ws0{word-spacing:-37.336320px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws11{word-spacing:-16.650000px;}
.ws10{word-spacing:-16.560600px;}
.ws7{word-spacing:-16.470000px;}
.ws6{word-spacing:-14.359200px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.ws12{word-spacing:-13.644000px;}
.ws19{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.374000px;}
.wsc{word-spacing:-13.356000px;}
.wsb{word-spacing:-13.140000px;}
.ws8{word-spacing:-9.000000px;}
.ws16{word-spacing:-0.990000px;}
.wse{word-spacing:-0.360000px;}
.wsf{word-spacing:0.000000px;}
.ws15{word-spacing:0.090000px;}
.ws18{word-spacing:0.162000px;}
.ws13{word-spacing:0.216000px;}
.ws38{word-spacing:2.160000px;}
.ws37{word-spacing:2.268000px;}
.ws3b{word-spacing:2.322000px;}
.ws39{word-spacing:2.376000px;}
.ws3a{word-spacing:2.430000px;}
.ws1b{word-spacing:4.446000px;}
.ws1f{word-spacing:5.022000px;}
.ws1c{word-spacing:5.184000px;}
.ws1d{word-spacing:5.292000px;}
.ws1e{word-spacing:5.346000px;}
.ws23{word-spacing:5.400000px;}
.ws35{word-spacing:5.454000px;}
.ws20{word-spacing:5.508000px;}
.ws24{word-spacing:5.562000px;}
.ws22{word-spacing:5.580000px;}
.ws36{word-spacing:5.616000px;}
.ws21{word-spacing:5.670000px;}
.ws32{word-spacing:7.344000px;}
.ws30{word-spacing:7.560000px;}
.ws31{word-spacing:7.668000px;}
.ws2f{word-spacing:7.722000px;}
.ws2e{word-spacing:7.776000px;}
.ws34{word-spacing:7.830000px;}
.ws33{word-spacing:8.046000px;}
.ws2d{word-spacing:11.286000px;}
.ws2a{word-spacing:11.502000px;}
.ws2b{word-spacing:11.664000px;}
.ws29{word-spacing:11.772000px;}
.ws25{word-spacing:12.366000px;}
.ws2c{word-spacing:12.450000px;}
.ws26{word-spacing:12.474000px;}
.ws28{word-spacing:12.528000px;}
.ws27{word-spacing:12.798000px;}
.ws1a{word-spacing:31.464000px;}
._1{margin-left:-3.141261px;}
._0{margin-left:-1.031976px;}
._3{width:1.107234px;}
._6{width:2.808000px;}
._9{width:4.296024px;}
._a{width:5.594706px;}
._4{width:6.858000px;}
._5{width:8.005566px;}
._b{width:9.652434px;}
._c{width:10.883869px;}
._7{width:11.897982px;}
._8{width:23.976000px;}
._2{width:166.149522px;}
._d{width:907.530726px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:2.880000px;}
.y3a{bottom:2.970000px;}
.y37{bottom:3.060000px;}
.y5a{bottom:3.238500px;}
.y53{bottom:3.240000px;}
.y46{bottom:3.328500px;}
.y3c{bottom:3.330000px;}
.y39{bottom:18.540000px;}
.y51{bottom:34.050000px;}
.y1{bottom:76.620000px;}
.y45{bottom:112.801500px;}
.y8b{bottom:117.750000px;}
.yb2{bottom:129.900000px;}
.y71{bottom:133.050000px;}
.y8a{bottom:133.320000px;}
.yb1{bottom:145.380000px;}
.y59{bottom:147.991500px;}
.y70{bottom:148.620000px;}
.y89{bottom:148.800000px;}
.y44{bottom:150.600000px;}
.yb0{bottom:160.950000px;}
.y6f{bottom:164.100000px;}
.y88{bottom:164.370000px;}
.yaf{bottom:176.430000px;}
.y2a{bottom:176.999955px;}
.y6e{bottom:179.580000px;}
.y87{bottom:179.850000px;}
.y58{bottom:185.520000px;}
.y43{bottom:188.400000px;}
.yae{bottom:192.000000px;}
.y29{bottom:192.569955px;}
.y6d{bottom:195.150000px;}
.y86{bottom:195.420000px;}
.yad{bottom:207.480000px;}
.y28{bottom:208.049955px;}
.yac{bottom:223.050000px;}
.y57{bottom:223.140000px;}
.y27{bottom:223.619955px;}
.y6c{bottom:226.020000px;}
.y42{bottom:226.200000px;}
.y85{bottom:226.650000px;}
.yab{bottom:238.530000px;}
.y26{bottom:239.099955px;}
.y84{bottom:242.130000px;}
.yaa{bottom:254.100000px;}
.y25{bottom:254.669955px;}
.y83{bottom:257.610000px;}
.y56{bottom:260.670000px;}
.y41{bottom:264.000000px;}
.ya9{bottom:269.580000px;}
.y24{bottom:270.149955px;}
.y6b{bottom:270.570000px;}
.ya8{bottom:285.150000px;}
.y23{bottom:285.719955px;}
.y82{bottom:288.570000px;}
.y6a{bottom:290.820000px;}
.y55{bottom:298.290000px;}
.ya7{bottom:300.630000px;}
.y22{bottom:301.199955px;}
.y40{bottom:301.800000px;}
.y69{bottom:311.070000px;}
.ya6{bottom:316.200000px;}
.y81{bottom:320.070000px;}
.y68{bottom:331.320000px;}
.ya5{bottom:331.680000px;}
.y21{bottom:332.429955px;}
.y80{bottom:335.550000px;}
.y54{bottom:335.820000px;}
.y3f{bottom:339.600000px;}
.ya4{bottom:347.250000px;}
.y20{bottom:347.909955px;}
.y7f{bottom:351.120000px;}
.y67{bottom:351.570000px;}
.y1f{bottom:363.479955px;}
.y7e{bottom:366.600000px;}
.y66{bottom:371.820000px;}
.y52{bottom:373.440000px;}
.y3e{bottom:377.400000px;}
.ya3{bottom:377.940000px;}
.y1e{bottom:378.959955px;}
.y7d{bottom:382.170000px;}
.y65{bottom:392.070000px;}
.y1d{bottom:394.529955px;}
.y7c{bottom:397.650000px;}
.ya2{bottom:409.437000px;}
.y1c{bottom:410.009955px;}
.y4f{bottom:410.970000px;}
.y63{bottom:412.320000px;}
.y3d{bottom:415.200000px;}
.ya1{bottom:425.007000px;}
.y1b{bottom:425.579955px;}
.y7b{bottom:428.610000px;}
.y64{bottom:432.570000px;}
.y1a{bottom:441.059955px;}
.y50{bottom:448.590000px;}
.y3b{bottom:453.000000px;}
.ya0{bottom:455.877000px;}
.y19{bottom:456.629955px;}
.y7a{bottom:457.500000px;}
.y18{bottom:472.109955px;}
.y62{bottom:483.270000px;}
.y9f{bottom:487.407000px;}
.y79{bottom:488.130000px;}
.y36{bottom:490.830000px;}
.y9e{bottom:502.926000px;}
.y17{bottom:503.099955px;}
.y61{bottom:514.500000px;}
.y4e{bottom:514.770000px;}
.y9d{bottom:518.445000px;}
.y78{bottom:518.640000px;}
.y38{bottom:528.630000px;}
.y9c{bottom:533.964000px;}
.y4d{bottom:546.000000px;}
.y77{bottom:549.150000px;}
.y16{bottom:549.359955px;}
.y9b{bottom:549.483000px;}
.y9a{bottom:565.002000px;}
.y76{bottom:579.660000px;}
.y99{bottom:580.521000px;}
.y15{bottom:583.919955px;}
.y35{bottom:585.330000px;}
.y98{bottom:596.040000px;}
.y14{bottom:599.399955px;}
.y74{bottom:610.170000px;}
.y13{bottom:614.969955px;}
.y34{bottom:616.560000px;}
.y97{bottom:627.000000px;}
.y12{bottom:630.449955px;}
.y33{bottom:632.040000px;}
.y75{bottom:640.680000px;}
.y11{bottom:646.019955px;}
.y32{bottom:647.610000px;}
.y96{bottom:655.980000px;}
.y10{bottom:661.589955px;}
.y31{bottom:663.090000px;}
.y30{bottom:678.570000px;}
.y95{bottom:678.660000px;}
.yf{bottom:683.819955px;}
.y73{bottom:690.090000px;}
.y94{bottom:701.430000px;}
.y2f{bottom:709.800000px;}
.ye{bottom:710.549955px;}
.y93{bottom:724.110000px;}
.yd{bottom:726.029955px;}
.y72{bottom:731.400000px;}
.y2e{bottom:740.760000px;}
.yc{bottom:741.599909px;}
.y92{bottom:746.880000px;}
.y91{bottom:769.560000px;}
.y2d{bottom:771.900000px;}
.yb{bottom:776.250000px;}
.y8e{bottom:792.330000px;}
.ya{bottom:797.850000px;}
.y2c{bottom:803.310000px;}
.y8f{bottom:815.010000px;}
.y9{bottom:828.720000px;}
.y8d{bottom:856.590000px;}
.y8{bottom:867.150000px;}
.y8c{bottom:897.900000px;}
.y7{bottom:906.210000px;}
.y6{bottom:930.330000px;}
.y4{bottom:1034.130000px;}
.y5{bottom:1039.170000px;}
.y60{bottom:1049.850000px;}
.y3{bottom:1057.350000px;}
.y5f{bottom:1065.330000px;}
.y5e{bottom:1080.900000px;}
.y4c{bottom:1081.170000px;}
.y5d{bottom:1096.380000px;}
.y4b{bottom:1096.650000px;}
.y4a{bottom:1112.220000px;}
.y5c{bottom:1127.340000px;}
.y49{bottom:1127.700000px;}
.y48{bottom:1143.270000px;}
.y2{bottom:1158.000000px;}
.y5b{bottom:1158.480000px;}
.y47{bottom:1158.750000px;}
.y2b{bottom:1193.670000px;}
.h1a{height:19.530000px;}
.h20{height:21.960000px;}
.h1d{height:29.700000px;}
.h1c{height:29.790000px;}
.h1e{height:29.820000px;}
.h19{height:31.050000px;}
.h9{height:35.314453px;}
.h17{height:36.808500px;}
.h16{height:36.810000px;}
.h15{height:36.900000px;}
.h11{height:37.078500px;}
.hf{height:37.080000px;}
.h10{height:37.110000px;}
.h1f{height:44.640000px;}
.h14{height:46.560000px;}
.h18{height:51.300000px;}
.h8{height:52.971680px;}
.hd{height:52.998047px;}
.hb{height:54.421875px;}
.ha{height:54.422061px;}
.h5{height:55.796836px;}
.h1b{height:60.300000px;}
.hc{height:61.800293px;}
.h12{height:64.625449px;}
.h1{height:64.657617px;}
.h7{height:72.329063px;}
.h2{height:72.562500px;}
.he{height:74.880000px;}
.h3{height:81.632812px;}
.h13{height:84.180000px;}
.h6{height:84.535312px;}
.h4{height:143.004375px;}
.h0{height:1263.000000px;}
.wd{width:90.900000px;}
.w11{width:91.260000px;}
.w10{width:91.470000px;}
.w19{width:94.080000px;}
.w1e{width:94.530000px;}
.wf{width:94.770000px;}
.w7{width:99.540000px;}
.w6{width:99.570000px;}
.wa{width:99.900000px;}
.wb{width:99.930000px;}
.w12{width:100.350000px;}
.w18{width:102.510000px;}
.w9{width:103.620000px;}
.w13{width:106.230000px;}
.w17{width:106.680000px;}
.w16{width:108.660000px;}
.w5{width:113.760000px;}
.w1c{width:116.580000px;}
.w1b{width:120.150000px;}
.w1d{width:127.170000px;}
.wc{width:128.820000px;}
.w3{width:153.480000px;}
.w2{width:160.650000px;}
.w4{width:161.100000px;}
.w1{width:166.980000px;}
.w15{width:185.310000px;}
.we{width:186.600000px;}
.w8{width:203.880000px;}
.w14{width:294.330000px;}
.w1a{width:364.710000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x29{left:8.100000px;}
.x46{left:12.090000px;}
.x36{left:14.760000px;}
.x3e{left:17.100000px;}
.x34{left:19.170000px;}
.x48{left:21.150000px;}
.x16{left:22.590000px;}
.x24{left:24.570000px;}
.x3c{left:26.280000px;}
.x49{left:27.900000px;}
.xd{left:29.970000px;}
.x1c{left:32.670000px;}
.x3d{left:33.750000px;}
.x1f{left:34.920000px;}
.x17{left:37.890000px;}
.x21{left:39.870000px;}
.x26{left:41.490000px;}
.x3a{left:42.510000px;}
.x39{left:43.560000px;}
.x43{left:44.730000px;}
.xa{left:46.575000px;}
.x6{left:48.555000px;}
.x1b{left:49.590000px;}
.x12{left:51.210000px;}
.x9{left:54.705000px;}
.x1e{left:56.700000px;}
.x3b{left:57.960000px;}
.x1d{left:59.310000px;}
.x37{left:61.020000px;}
.x2d{left:68.580000px;}
.x1a{left:70.140000px;}
.x14{left:72.000000px;}
.x19{left:73.620000px;}
.x2b{left:75.600000px;}
.x18{left:77.040000px;}
.x20{left:78.210000px;}
.x47{left:81.000000px;}
.x2c{left:82.350000px;}
.x4a{left:86.040000px;}
.x4d{left:171.840000px;}
.x3f{left:179.130000px;}
.x30{left:184.890000px;}
.x4b{left:187.410000px;}
.x23{left:193.710000px;}
.xe{left:199.200000px;}
.x41{left:201.990000px;}
.x22{left:208.020000px;}
.x11{left:211.890000px;}
.x7{left:229.305000px;}
.x4{left:243.960000px;}
.x32{left:249.330000px;}
.x31{left:256.260000px;}
.x40{left:263.640000px;}
.x4c{left:268.500000px;}
.x2{left:270.150000px;}
.x10{left:273.900000px;}
.x4e{left:275.160000px;}
.x3{left:290.400000px;}
.x8{left:297.885000px;}
.x42{left:303.150000px;}
.x25{left:308.190000px;}
.x53{left:332.410500px;}
.xf{left:355.530000px;}
.x2f{left:358.980000px;}
.x4f{left:369.600000px;}
.x38{left:378.510000px;}
.x13{left:379.680000px;}
.xc{left:394.867500px;}
.x52{left:403.260000px;}
.x27{left:408.480000px;}
.x44{left:409.740000px;}
.xb{left:412.027500px;}
.x54{left:430.620000px;}
.x1{left:440.550000px;}
.x33{left:470.130000px;}
.x50{left:490.110000px;}
.x5{left:506.430000px;}
.x28{left:508.380000px;}
.x2e{left:514.950000px;}
.x15{left:540.690000px;}
.x35{left:565.260000px;}
.x45{left:595.410000px;}
.x51{left:607.050000px;}
.x2a{left:612.360000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.208000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls4{letter-spacing:-0.024533pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.005333pt;}
.ls11{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.021333pt;}
.ls15{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.037333pt;}
.ls14{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.080533pt;}
.ls10{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.123733pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161600pt;}
.lse{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.720000pt;}
.ws17{word-spacing:-33.379200pt;}
.ws0{word-spacing:-33.187840pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws11{word-spacing:-14.800000pt;}
.ws10{word-spacing:-14.720533pt;}
.ws7{word-spacing:-14.640000pt;}
.ws6{word-spacing:-12.763733pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.ws12{word-spacing:-12.128000pt;}
.ws19{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.888000pt;}
.wsc{word-spacing:-11.872000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws16{word-spacing:-0.880000pt;}
.wse{word-spacing:-0.320000pt;}
.wsf{word-spacing:0.000000pt;}
.ws15{word-spacing:0.080000pt;}
.ws18{word-spacing:0.144000pt;}
.ws13{word-spacing:0.192000pt;}
.ws38{word-spacing:1.920000pt;}
.ws37{word-spacing:2.016000pt;}
.ws3b{word-spacing:2.064000pt;}
.ws39{word-spacing:2.112000pt;}
.ws3a{word-spacing:2.160000pt;}
.ws1b{word-spacing:3.952000pt;}
.ws1f{word-spacing:4.464000pt;}
.ws1c{word-spacing:4.608000pt;}
.ws1d{word-spacing:4.704000pt;}
.ws1e{word-spacing:4.752000pt;}
.ws23{word-spacing:4.800000pt;}
.ws35{word-spacing:4.848000pt;}
.ws20{word-spacing:4.896000pt;}
.ws24{word-spacing:4.944000pt;}
.ws22{word-spacing:4.960000pt;}
.ws36{word-spacing:4.992000pt;}
.ws21{word-spacing:5.040000pt;}
.ws32{word-spacing:6.528000pt;}
.ws30{word-spacing:6.720000pt;}
.ws31{word-spacing:6.816000pt;}
.ws2f{word-spacing:6.864000pt;}
.ws2e{word-spacing:6.912000pt;}
.ws34{word-spacing:6.960000pt;}
.ws33{word-spacing:7.152000pt;}
.ws2d{word-spacing:10.032000pt;}
.ws2a{word-spacing:10.224000pt;}
.ws2b{word-spacing:10.368000pt;}
.ws29{word-spacing:10.464000pt;}
.ws25{word-spacing:10.992000pt;}
.ws2c{word-spacing:11.066667pt;}
.ws26{word-spacing:11.088000pt;}
.ws28{word-spacing:11.136000pt;}
.ws27{word-spacing:11.376000pt;}
.ws1a{word-spacing:27.968000pt;}
._1{margin-left:-2.792232pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.984208pt;}
._6{width:2.496000pt;}
._9{width:3.818688pt;}
._a{width:4.973072pt;}
._4{width:6.096000pt;}
._5{width:7.116059pt;}
._b{width:8.579941pt;}
._c{width:9.674550pt;}
._7{width:10.575984pt;}
._8{width:21.312000pt;}
._2{width:147.688464pt;}
._d{width:806.693979pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:2.560000pt;}
.y3a{bottom:2.640000pt;}
.y37{bottom:2.720000pt;}
.y5a{bottom:2.878667pt;}
.y53{bottom:2.880000pt;}
.y46{bottom:2.958667pt;}
.y3c{bottom:2.960000pt;}
.y39{bottom:16.480000pt;}
.y51{bottom:30.266667pt;}
.y1{bottom:68.106667pt;}
.y45{bottom:100.268000pt;}
.y8b{bottom:104.666667pt;}
.yb2{bottom:115.466667pt;}
.y71{bottom:118.266667pt;}
.y8a{bottom:118.506667pt;}
.yb1{bottom:129.226667pt;}
.y59{bottom:131.548000pt;}
.y70{bottom:132.106667pt;}
.y89{bottom:132.266667pt;}
.y44{bottom:133.866667pt;}
.yb0{bottom:143.066667pt;}
.y6f{bottom:145.866667pt;}
.y88{bottom:146.106667pt;}
.yaf{bottom:156.826667pt;}
.y2a{bottom:157.333293pt;}
.y6e{bottom:159.626667pt;}
.y87{bottom:159.866667pt;}
.y58{bottom:164.906667pt;}
.y43{bottom:167.466667pt;}
.yae{bottom:170.666667pt;}
.y29{bottom:171.173293pt;}
.y6d{bottom:173.466667pt;}
.y86{bottom:173.706667pt;}
.yad{bottom:184.426667pt;}
.y28{bottom:184.933293pt;}
.yac{bottom:198.266667pt;}
.y57{bottom:198.346667pt;}
.y27{bottom:198.773293pt;}
.y6c{bottom:200.906667pt;}
.y42{bottom:201.066667pt;}
.y85{bottom:201.466667pt;}
.yab{bottom:212.026667pt;}
.y26{bottom:212.533293pt;}
.y84{bottom:215.226667pt;}
.yaa{bottom:225.866667pt;}
.y25{bottom:226.373293pt;}
.y83{bottom:228.986667pt;}
.y56{bottom:231.706667pt;}
.y41{bottom:234.666667pt;}
.ya9{bottom:239.626667pt;}
.y24{bottom:240.133293pt;}
.y6b{bottom:240.506667pt;}
.ya8{bottom:253.466667pt;}
.y23{bottom:253.973293pt;}
.y82{bottom:256.506667pt;}
.y6a{bottom:258.506667pt;}
.y55{bottom:265.146667pt;}
.ya7{bottom:267.226667pt;}
.y22{bottom:267.733293pt;}
.y40{bottom:268.266667pt;}
.y69{bottom:276.506667pt;}
.ya6{bottom:281.066667pt;}
.y81{bottom:284.506667pt;}
.y68{bottom:294.506667pt;}
.ya5{bottom:294.826667pt;}
.y21{bottom:295.493293pt;}
.y80{bottom:298.266667pt;}
.y54{bottom:298.506667pt;}
.y3f{bottom:301.866667pt;}
.ya4{bottom:308.666667pt;}
.y20{bottom:309.253293pt;}
.y7f{bottom:312.106667pt;}
.y67{bottom:312.506667pt;}
.y1f{bottom:323.093293pt;}
.y7e{bottom:325.866667pt;}
.y66{bottom:330.506667pt;}
.y52{bottom:331.946667pt;}
.y3e{bottom:335.466667pt;}
.ya3{bottom:335.946667pt;}
.y1e{bottom:336.853293pt;}
.y7d{bottom:339.706667pt;}
.y65{bottom:348.506667pt;}
.y1d{bottom:350.693293pt;}
.y7c{bottom:353.466667pt;}
.ya2{bottom:363.944000pt;}
.y1c{bottom:364.453293pt;}
.y4f{bottom:365.306667pt;}
.y63{bottom:366.506667pt;}
.y3d{bottom:369.066667pt;}
.ya1{bottom:377.784000pt;}
.y1b{bottom:378.293293pt;}
.y7b{bottom:380.986667pt;}
.y64{bottom:384.506667pt;}
.y1a{bottom:392.053293pt;}
.y50{bottom:398.746667pt;}
.y3b{bottom:402.666667pt;}
.ya0{bottom:405.224000pt;}
.y19{bottom:405.893293pt;}
.y7a{bottom:406.666667pt;}
.y18{bottom:419.653293pt;}
.y62{bottom:429.573333pt;}
.y9f{bottom:433.250667pt;}
.y79{bottom:433.893333pt;}
.y36{bottom:436.293333pt;}
.y9e{bottom:447.045333pt;}
.y17{bottom:447.199960pt;}
.y61{bottom:457.333333pt;}
.y4e{bottom:457.573333pt;}
.y9d{bottom:460.840000pt;}
.y78{bottom:461.013333pt;}
.y38{bottom:469.893333pt;}
.y9c{bottom:474.634667pt;}
.y4d{bottom:485.333333pt;}
.y77{bottom:488.133333pt;}
.y16{bottom:488.319960pt;}
.y9b{bottom:488.429333pt;}
.y9a{bottom:502.224000pt;}
.y76{bottom:515.253333pt;}
.y99{bottom:516.018667pt;}
.y15{bottom:519.039960pt;}
.y35{bottom:520.293333pt;}
.y98{bottom:529.813333pt;}
.y14{bottom:532.799960pt;}
.y74{bottom:542.373333pt;}
.y13{bottom:546.639960pt;}
.y34{bottom:548.053333pt;}
.y97{bottom:557.333333pt;}
.y12{bottom:560.399960pt;}
.y33{bottom:561.813333pt;}
.y75{bottom:569.493333pt;}
.y11{bottom:574.239960pt;}
.y32{bottom:575.653333pt;}
.y96{bottom:583.093333pt;}
.y10{bottom:588.079960pt;}
.y31{bottom:589.413333pt;}
.y30{bottom:603.173333pt;}
.y95{bottom:603.253333pt;}
.yf{bottom:607.839960pt;}
.y73{bottom:613.413333pt;}
.y94{bottom:623.493333pt;}
.y2f{bottom:630.933333pt;}
.ye{bottom:631.599960pt;}
.y93{bottom:643.653333pt;}
.yd{bottom:645.359960pt;}
.y72{bottom:650.133333pt;}
.y2e{bottom:658.453333pt;}
.yc{bottom:659.199919pt;}
.y92{bottom:663.893333pt;}
.y91{bottom:684.053333pt;}
.y2d{bottom:686.133333pt;}
.yb{bottom:690.000000pt;}
.y8e{bottom:704.293333pt;}
.ya{bottom:709.200000pt;}
.y2c{bottom:714.053333pt;}
.y8f{bottom:724.453333pt;}
.y9{bottom:736.640000pt;}
.y8d{bottom:761.413333pt;}
.y8{bottom:770.800000pt;}
.y8c{bottom:798.133333pt;}
.y7{bottom:805.520000pt;}
.y6{bottom:826.960000pt;}
.y4{bottom:919.226667pt;}
.y5{bottom:923.706667pt;}
.y60{bottom:933.200000pt;}
.y3{bottom:939.866667pt;}
.y5f{bottom:946.960000pt;}
.y5e{bottom:960.800000pt;}
.y4c{bottom:961.040000pt;}
.y5d{bottom:974.560000pt;}
.y4b{bottom:974.800000pt;}
.y4a{bottom:988.640000pt;}
.y5c{bottom:1002.080000pt;}
.y49{bottom:1002.400000pt;}
.y48{bottom:1016.240000pt;}
.y2{bottom:1029.333333pt;}
.y5b{bottom:1029.760000pt;}
.y47{bottom:1030.000000pt;}
.y2b{bottom:1061.040000pt;}
.h1a{height:17.360000pt;}
.h20{height:19.520000pt;}
.h1d{height:26.400000pt;}
.h1c{height:26.480000pt;}
.h1e{height:26.506667pt;}
.h19{height:27.600000pt;}
.h9{height:31.390625pt;}
.h17{height:32.718667pt;}
.h16{height:32.720000pt;}
.h15{height:32.800000pt;}
.h11{height:32.958667pt;}
.hf{height:32.960000pt;}
.h10{height:32.986667pt;}
.h1f{height:39.680000pt;}
.h14{height:41.386667pt;}
.h18{height:45.600000pt;}
.h8{height:47.085938pt;}
.hd{height:47.109375pt;}
.hb{height:48.375000pt;}
.ha{height:48.375165pt;}
.h5{height:49.597187pt;}
.h1b{height:53.600000pt;}
.hc{height:54.933594pt;}
.h12{height:57.444844pt;}
.h1{height:57.473437pt;}
.h7{height:64.292500pt;}
.h2{height:64.500000pt;}
.he{height:66.560000pt;}
.h3{height:72.562500pt;}
.h13{height:74.826667pt;}
.h6{height:75.142500pt;}
.h4{height:127.115000pt;}
.h0{height:1122.666667pt;}
.wd{width:80.800000pt;}
.w11{width:81.120000pt;}
.w10{width:81.306667pt;}
.w19{width:83.626667pt;}
.w1e{width:84.026667pt;}
.wf{width:84.240000pt;}
.w7{width:88.480000pt;}
.w6{width:88.506667pt;}
.wa{width:88.800000pt;}
.wb{width:88.826667pt;}
.w12{width:89.200000pt;}
.w18{width:91.120000pt;}
.w9{width:92.106667pt;}
.w13{width:94.426667pt;}
.w17{width:94.826667pt;}
.w16{width:96.586667pt;}
.w5{width:101.120000pt;}
.w1c{width:103.626667pt;}
.w1b{width:106.800000pt;}
.w1d{width:113.040000pt;}
.wc{width:114.506667pt;}
.w3{width:136.426667pt;}
.w2{width:142.800000pt;}
.w4{width:143.200000pt;}
.w1{width:148.426667pt;}
.w15{width:164.720000pt;}
.we{width:165.866667pt;}
.w8{width:181.226667pt;}
.w14{width:261.626667pt;}
.w1a{width:324.186667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x29{left:7.200000pt;}
.x46{left:10.746667pt;}
.x36{left:13.120000pt;}
.x3e{left:15.200000pt;}
.x34{left:17.040000pt;}
.x48{left:18.800000pt;}
.x16{left:20.080000pt;}
.x24{left:21.840000pt;}
.x3c{left:23.360000pt;}
.x49{left:24.800000pt;}
.xd{left:26.640000pt;}
.x1c{left:29.040000pt;}
.x3d{left:30.000000pt;}
.x1f{left:31.040000pt;}
.x17{left:33.680000pt;}
.x21{left:35.440000pt;}
.x26{left:36.880000pt;}
.x3a{left:37.786667pt;}
.x39{left:38.720000pt;}
.x43{left:39.760000pt;}
.xa{left:41.400000pt;}
.x6{left:43.160000pt;}
.x1b{left:44.080000pt;}
.x12{left:45.520000pt;}
.x9{left:48.626667pt;}
.x1e{left:50.400000pt;}
.x3b{left:51.520000pt;}
.x1d{left:52.720000pt;}
.x37{left:54.240000pt;}
.x2d{left:60.960000pt;}
.x1a{left:62.346667pt;}
.x14{left:64.000000pt;}
.x19{left:65.440000pt;}
.x2b{left:67.200000pt;}
.x18{left:68.480000pt;}
.x20{left:69.520000pt;}
.x47{left:72.000000pt;}
.x2c{left:73.200000pt;}
.x4a{left:76.480000pt;}
.x4d{left:152.746667pt;}
.x3f{left:159.226667pt;}
.x30{left:164.346667pt;}
.x4b{left:166.586667pt;}
.x23{left:172.186667pt;}
.xe{left:177.066667pt;}
.x41{left:179.546667pt;}
.x22{left:184.906667pt;}
.x11{left:188.346667pt;}
.x7{left:203.826667pt;}
.x4{left:216.853333pt;}
.x32{left:221.626667pt;}
.x31{left:227.786667pt;}
.x40{left:234.346667pt;}
.x4c{left:238.666667pt;}
.x2{left:240.133333pt;}
.x10{left:243.466667pt;}
.x4e{left:244.586667pt;}
.x3{left:258.133333pt;}
.x8{left:264.786667pt;}
.x42{left:269.466667pt;}
.x25{left:273.946667pt;}
.x53{left:295.476000pt;}
.xf{left:316.026667pt;}
.x2f{left:319.093333pt;}
.x4f{left:328.533333pt;}
.x38{left:336.453333pt;}
.x13{left:337.493333pt;}
.xc{left:350.993333pt;}
.x52{left:358.453333pt;}
.x27{left:363.093333pt;}
.x44{left:364.213333pt;}
.xb{left:366.246667pt;}
.x54{left:382.773333pt;}
.x1{left:391.600000pt;}
.x33{left:417.893333pt;}
.x50{left:435.653333pt;}
.x5{left:450.160000pt;}
.x28{left:451.893333pt;}
.x2e{left:457.733333pt;}
.x15{left:480.613333pt;}
.x35{left:502.453333pt;}
.x45{left:529.253333pt;}
.x51{left:539.600000pt;}
.x2a{left:544.320000pt;}
}




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