
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d4e86f63d535ea084f16492e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4baf54999e1925884112623.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_a55098ca410198013bfbd560.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_9956e676c7a38081fd055374.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3fdc9c3d80b865eb041c9b67.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_a5f44071445a848580eb4031.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c746171bf3f904a7ef507c5b.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1ee40d567f32cba65dd4025c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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:-60.600000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.938000px;}
.lsb{letter-spacing:-1.254000px;}
.ls18{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.630000px;}
.ls14{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.466800px;}
.ls15{letter-spacing:0.486600px;}
.ls2{letter-spacing:0.493920px;}
.ls7{letter-spacing:0.498240px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.732000px;}
.ls6{letter-spacing:0.869760px;}
.ls3{letter-spacing:1.080000px;}
.ls13{letter-spacing:5.040000px;}
.ls4{letter-spacing:16.560000px;}
.ls12{letter-spacing:46.546560px;}
.ls16{letter-spacing:55.186560px;}
.ls11{letter-spacing:63.826560px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.wsd{word-spacing:-15.606600px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.633400px;}
.ws4{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws5{word-spacing:-12.426000px;}
.ws7{word-spacing:-11.742000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-3.559680px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:5.060640px;}
._7{width:6.229440px;}
._6{width:7.801920px;}
._11{width:8.859840px;}
._9{width:10.039680px;}
._a{width:11.119680px;}
._10{width:12.199680px;}
._12{width:13.297440px;}
._5{width:15.550560px;}
._15{width:17.746560px;}
._b{width:18.869760px;}
._c{width:19.958400px;}
._13{width:21.168000px;}
._14{width:22.541760px;}
._e{width:24.192000px;}
._d{width:25.824960px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.875500px;}
.y5{bottom:3.960000px;}
.y59{bottom:5.370000px;}
.y57{bottom:6.835500px;}
.y2{bottom:7.920000px;}
.y4a{bottom:10.435500px;}
.y4{bottom:21.240000px;}
.y56{bottom:24.115500px;}
.y41{bottom:38.520000px;}
.y49{bottom:39.955500px;}
.y3{bottom:44.280000px;}
.y55{bottom:45.715500px;}
.y48{bottom:52.231500px;}
.y40{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y54{bottom:64.834500px;}
.y47{bottom:65.194500px;}
.y3f{bottom:73.080000px;}
.y46{bottom:78.154500px;}
.y53{bottom:80.314500px;}
.y3e{bottom:90.360000px;}
.yf4{bottom:91.116000px;}
.y42{bottom:91.120500px;}
.y52{bottom:96.154500px;}
.y45{bottom:99.754500px;}
.y51{bottom:105.154500px;}
.y3d{bottom:107.280000px;}
.yc5{bottom:108.036000px;}
.yf3{bottom:108.756000px;}
.y92{bottom:113.076000px;}
.y50{bottom:124.234500px;}
.yc4{bottom:125.316000px;}
.yf2{bottom:126.036000px;}
.y91{bottom:130.356000px;}
.y3c{bottom:133.605000px;}
.y4f{bottom:139.714500px;}
.yc3{bottom:142.272000px;}
.yf1{bottom:143.352000px;}
.y90{bottom:147.672000px;}
.y3b{bottom:150.885000px;}
.y4e{bottom:155.194500px;}
.yc2{bottom:159.555000px;}
.yf0{bottom:160.275000px;}
.y44{bottom:162.034500px;}
.y8f{bottom:164.595000px;}
.y3a{bottom:168.165000px;}
.y4d{bottom:170.674500px;}
.y43{bottom:172.834500px;}
.yef{bottom:177.195000px;}
.y39{bottom:185.445000px;}
.y4c{bottom:185.824500px;}
.yc1{bottom:186.195000px;}
.y8e{bottom:191.235000px;}
.yee{bottom:194.835000px;}
.y38{bottom:202.725000px;}
.yc0{bottom:203.475000px;}
.y8d{bottom:208.515000px;}
.yed{bottom:212.115000px;}
.y37{bottom:220.005000px;}
.ybf{bottom:220.395000px;}
.y8c{bottom:225.795000px;}
.yec{bottom:229.395000px;}
.y36{bottom:237.285000px;}
.y8b{bottom:243.075000px;}
.yeb{bottom:246.675000px;}
.ybe{bottom:247.035000px;}
.y35{bottom:254.595000px;}
.y8a{bottom:260.355000px;}
.yea{bottom:263.955000px;}
.ybd{bottom:264.315000px;}
.y34{bottom:271.875000px;}
.y89{bottom:277.305000px;}
.ybc{bottom:281.265000px;}
.y33{bottom:289.155000px;}
.y10{bottom:293.505000px;}
.y88{bottom:294.585000px;}
.ybb{bottom:298.545000px;}
.y32{bottom:306.435000px;}
.y87{bottom:311.865000px;}
.ye9{bottom:315.465000px;}
.yba{bottom:315.825000px;}
.y31{bottom:323.715000px;}
.y86{bottom:329.145000px;}
.yb9{bottom:333.105000px;}
.y1e{bottom:338.475000px;}
.y30{bottom:340.635000px;}
.y85{bottom:346.425000px;}
.yb8{bottom:350.385000px;}
.y2f{bottom:357.915000px;}
.y1d{bottom:362.595000px;}
.y84{bottom:363.705000px;}
.ye8{bottom:367.305000px;}
.yb7{bottom:367.665000px;}
.y2e{bottom:375.195000px;}
.y83{bottom:380.625000px;}
.y108{bottom:380.985000px;}
.ye7{bottom:384.585000px;}
.yb6{bottom:384.945000px;}
.y1c{bottom:387.105000px;}
.y2d{bottom:392.505000px;}
.y107{bottom:398.265000px;}
.ye6{bottom:401.505000px;}
.yb5{bottom:402.225000px;}
.y82{bottom:407.310000px;}
.y2c{bottom:409.785000px;}
.y1b{bottom:411.225000px;}
.y106{bottom:415.590000px;}
.ye5{bottom:419.190000px;}
.yb4{bottom:419.550000px;}
.y81{bottom:424.590000px;}
.y2b{bottom:426.705000px;}
.y105{bottom:432.870000px;}
.y1a{bottom:435.345000px;}
.ye4{bottom:436.470000px;}
.yb3{bottom:436.830000px;}
.y80{bottom:441.870000px;}
.y2a{bottom:443.985000px;}
.y104{bottom:450.150000px;}
.ye3{bottom:453.390000px;}
.yb2{bottom:454.110000px;}
.y7f{bottom:458.790000px;}
.y19{bottom:459.465000px;}
.y103{bottom:467.430000px;}
.y29{bottom:469.905000px;}
.ye2{bottom:470.670000px;}
.yb1{bottom:471.030000px;}
.y7e{bottom:476.430000px;}
.y18{bottom:483.585000px;}
.y102{bottom:484.350000px;}
.y28{bottom:485.385000px;}
.yb0{bottom:488.310000px;}
.y7d{bottom:493.350000px;}
.ye1{bottom:497.310000px;}
.y27{bottom:500.865000px;}
.y101{bottom:501.630000px;}
.yaf{bottom:505.590000px;}
.y17{bottom:507.750000px;}
.y7c{bottom:510.630000px;}
.ye0{bottom:514.590000px;}
.y26{bottom:516.390000px;}
.y100{bottom:518.910000px;}
.yae{bottom:522.870000px;}
.y7b{bottom:527.550000px;}
.y16{bottom:531.870000px;}
.y25{bottom:532.230000px;}
.yff{bottom:536.190000px;}
.yad{bottom:540.180000px;}
.y7a{bottom:545.220000px;}
.y24{bottom:547.710000px;}
.ydf{bottom:549.180000px;}
.yfe{bottom:553.500000px;}
.y15{bottom:555.990000px;}
.yac{bottom:557.460000px;}
.y79{bottom:562.500000px;}
.y23{bottom:563.190000px;}
.yde{bottom:566.100000px;}
.yfd{bottom:570.780000px;}
.yab{bottom:574.740000px;}
.y22{bottom:578.670000px;}
.y78{bottom:579.780000px;}
.y14{bottom:580.110000px;}
.yfc{bottom:588.060000px;}
.yaa{bottom:592.020000px;}
.ydd{bottom:592.380000px;}
.y21{bottom:594.150000px;}
.y77{bottom:596.700000px;}
.y13{bottom:604.230000px;}
.yfb{bottom:604.980000px;}
.ya9{bottom:609.300000px;}
.y20{bottom:609.630000px;}
.ydc{bottom:609.660000px;}
.y76{bottom:614.340000px;}
.ya8{bottom:626.220000px;}
.ydb{bottom:626.940000px;}
.y12{bottom:628.350000px;}
.y75{bottom:631.620000px;}
.y1f{bottom:640.260000px;}
.yda{bottom:644.220000px;}
.y74{bottom:648.900000px;}
.y11{bottom:652.500000px;}
.ya7{bottom:652.860000px;}
.y73{bottom:665.820000px;}
.yfa{bottom:666.180000px;}
.ya6{bottom:670.170000px;}
.yd9{bottom:672.690000px;}
.y72{bottom:683.130000px;}
.ya5{bottom:687.090000px;}
.yd8{bottom:699.690000px;}
.y71{bottom:700.410000px;}
.ya4{bottom:704.370000px;}
.yd7{bottom:716.970000px;}
.y70{bottom:717.690000px;}
.ya3{bottom:721.650000px;}
.yd6{bottom:734.250000px;}
.y6f{bottom:734.610000px;}
.yf9{bottom:734.970000px;}
.ya2{bottom:738.930000px;}
.yd5{bottom:751.530000px;}
.y6e{bottom:752.250000px;}
.ya1{bottom:756.210000px;}
.yd4{bottom:768.810000px;}
.y6d{bottom:769.530000px;}
.ya0{bottom:773.490000px;}
.yd3{bottom:786.090000px;}
.y6c{bottom:786.810000px;}
.y9f{bottom:790.410000px;}
.y6b{bottom:803.775000px;}
.yf8{bottom:804.135000px;}
.yd2{bottom:812.415000px;}
.y9e{bottom:817.095000px;}
.y6a{bottom:821.415000px;}
.yd1{bottom:829.695000px;}
.y9d{bottom:834.375000px;}
.y69{bottom:838.695000px;}
.yd0{bottom:846.975000px;}
.y9c{bottom:851.655000px;}
.y68{bottom:855.975000px;}
.ycf{bottom:864.255000px;}
.y9b{bottom:870.015000px;}
.y67{bottom:872.895000px;}
.yf7{bottom:873.255000px;}
.yce{bottom:881.175000px;}
.y9a{bottom:886.935000px;}
.y66{bottom:890.175000px;}
.ycd{bottom:898.455000px;}
.y99{bottom:904.215000px;}
.y65{bottom:907.455000px;}
.ycc{bottom:915.735000px;}
.y98{bottom:922.575000px;}
.y64{bottom:924.735000px;}
.y97{bottom:939.885000px;}
.y63{bottom:941.685000px;}
.ycb{bottom:942.045000px;}
.yf{bottom:958.245000px;}
.y62{bottom:958.965000px;}
.yca{bottom:959.325000px;}
.ye{bottom:963.645000px;}
.yf6{bottom:968.325000px;}
.y96{bottom:975.525000px;}
.yc9{bottom:976.605000px;}
.y61{bottom:985.605000px;}
.yd{bottom:987.765000px;}
.y95{bottom:992.805000px;}
.yc8{bottom:993.885000px;}
.yc{bottom:998.205000px;}
.y60{bottom:1002.885000px;}
.y94{bottom:1010.805000px;}
.yc7{bottom:1011.165000px;}
.y5f{bottom:1020.165000px;}
.yb{bottom:1022.325000px;}
.yc6{bottom:1028.445000px;}
.ya{bottom:1032.405000px;}
.yf5{bottom:1037.085000px;}
.y5e{bottom:1037.445000px;}
.y5d{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y5c{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.y93{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hd{height:4.165313px;}
.h15{height:5.650313px;}
.h7{height:24.348516px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.hb{height:38.158594px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.h1b{height:42.229688px;}
.h11{height:53.677969px;}
.h14{height:55.147500px;}
.h8{height:58.050000px;}
.h16{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.hc{height:60.952500px;}
.h19{height:62.163910px;}
.h1a{height:62.960625px;}
.h18{height:63.455625px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h12{height:201.645000px;}
.he{height:661.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x19{left:8.295000px;}
.x4{left:13.305000px;}
.x17{left:16.546500px;}
.x1d{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:29.146500px;}
.x1b{left:35.295000px;}
.x6{left:43.575000px;}
.x1e{left:47.542500px;}
.x11{left:50.782500px;}
.x10{left:55.102500px;}
.x20{left:57.262500px;}
.x1a{left:62.295000px;}
.x1f{left:66.265500px;}
.x14{left:73.105500px;}
.x13{left:76.705500px;}
.x1{left:78.529500px;}
.x15{left:80.305500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x25{left:113.436000px;}
.x23{left:118.116000px;}
.x12{left:124.585500px;}
.x24{left:140.472000px;}
.xd{left:145.512000px;}
.xb{left:152.715000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xc{left:412.740000px;}
.xe{left:492.330000px;}
.xa{left:567.210000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v3{vertical-align:-53.866667pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.722667pt;}
.lsb{letter-spacing:-1.114667pt;}
.ls18{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.560000pt;}
.ls14{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.414933pt;}
.ls15{letter-spacing:0.432533pt;}
.ls2{letter-spacing:0.439040pt;}
.ls7{letter-spacing:0.442880pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650667pt;}
.ls6{letter-spacing:0.773120pt;}
.ls3{letter-spacing:0.960000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls12{letter-spacing:41.374720pt;}
.ls16{letter-spacing:49.054720pt;}
.ls11{letter-spacing:56.734720pt;}
.wsb{word-spacing:-53.760000pt;}
.wsd{word-spacing:-13.872533pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.025067pt;}
.wsc{word-spacing:-13.007467pt;}
.ws4{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws5{word-spacing:-11.045333pt;}
.ws7{word-spacing:-10.437333pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-3.164160pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:4.498347pt;}
._7{width:5.537280pt;}
._6{width:6.935040pt;}
._11{width:7.875413pt;}
._9{width:8.924160pt;}
._a{width:9.884160pt;}
._10{width:10.844160pt;}
._12{width:11.819947pt;}
._5{width:13.822720pt;}
._15{width:15.774720pt;}
._b{width:16.773120pt;}
._c{width:17.740800pt;}
._13{width:18.816000pt;}
._14{width:20.037120pt;}
._e{width:21.504000pt;}
._d{width:22.955520pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.556000pt;}
.y5{bottom:3.520000pt;}
.y59{bottom:4.773333pt;}
.y57{bottom:6.076000pt;}
.y2{bottom:7.040000pt;}
.y4a{bottom:9.276000pt;}
.y4{bottom:18.880000pt;}
.y56{bottom:21.436000pt;}
.y41{bottom:34.240000pt;}
.y49{bottom:35.516000pt;}
.y3{bottom:39.360000pt;}
.y55{bottom:40.636000pt;}
.y48{bottom:46.428000pt;}
.y40{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y54{bottom:57.630667pt;}
.y47{bottom:57.950667pt;}
.y3f{bottom:64.960000pt;}
.y46{bottom:69.470667pt;}
.y53{bottom:71.390667pt;}
.y3e{bottom:80.320000pt;}
.yf4{bottom:80.992000pt;}
.y42{bottom:80.996000pt;}
.y52{bottom:85.470667pt;}
.y45{bottom:88.670667pt;}
.y51{bottom:93.470667pt;}
.y3d{bottom:95.360000pt;}
.yc5{bottom:96.032000pt;}
.yf3{bottom:96.672000pt;}
.y92{bottom:100.512000pt;}
.y50{bottom:110.430667pt;}
.yc4{bottom:111.392000pt;}
.yf2{bottom:112.032000pt;}
.y91{bottom:115.872000pt;}
.y3c{bottom:118.760000pt;}
.y4f{bottom:124.190667pt;}
.yc3{bottom:126.464000pt;}
.yf1{bottom:127.424000pt;}
.y90{bottom:131.264000pt;}
.y3b{bottom:134.120000pt;}
.y4e{bottom:137.950667pt;}
.yc2{bottom:141.826667pt;}
.yf0{bottom:142.466667pt;}
.y44{bottom:144.030667pt;}
.y8f{bottom:146.306667pt;}
.y3a{bottom:149.480000pt;}
.y4d{bottom:151.710667pt;}
.y43{bottom:153.630667pt;}
.yef{bottom:157.506667pt;}
.y39{bottom:164.840000pt;}
.y4c{bottom:165.177333pt;}
.yc1{bottom:165.506667pt;}
.y8e{bottom:169.986667pt;}
.yee{bottom:173.186667pt;}
.y38{bottom:180.200000pt;}
.yc0{bottom:180.866667pt;}
.y8d{bottom:185.346667pt;}
.yed{bottom:188.546667pt;}
.y37{bottom:195.560000pt;}
.ybf{bottom:195.906667pt;}
.y8c{bottom:200.706667pt;}
.yec{bottom:203.906667pt;}
.y36{bottom:210.920000pt;}
.y8b{bottom:216.066667pt;}
.yeb{bottom:219.266667pt;}
.ybe{bottom:219.586667pt;}
.y35{bottom:226.306667pt;}
.y8a{bottom:231.426667pt;}
.yea{bottom:234.626667pt;}
.ybd{bottom:234.946667pt;}
.y34{bottom:241.666667pt;}
.y89{bottom:246.493333pt;}
.ybc{bottom:250.013333pt;}
.y33{bottom:257.026667pt;}
.y10{bottom:260.893333pt;}
.y88{bottom:261.853333pt;}
.ybb{bottom:265.373333pt;}
.y32{bottom:272.386667pt;}
.y87{bottom:277.213333pt;}
.ye9{bottom:280.413333pt;}
.yba{bottom:280.733333pt;}
.y31{bottom:287.746667pt;}
.y86{bottom:292.573333pt;}
.yb9{bottom:296.093333pt;}
.y1e{bottom:300.866667pt;}
.y30{bottom:302.786667pt;}
.y85{bottom:307.933333pt;}
.yb8{bottom:311.453333pt;}
.y2f{bottom:318.146667pt;}
.y1d{bottom:322.306667pt;}
.y84{bottom:323.293333pt;}
.ye8{bottom:326.493333pt;}
.yb7{bottom:326.813333pt;}
.y2e{bottom:333.506667pt;}
.y83{bottom:338.333333pt;}
.y108{bottom:338.653333pt;}
.ye7{bottom:341.853333pt;}
.yb6{bottom:342.173333pt;}
.y1c{bottom:344.093333pt;}
.y2d{bottom:348.893333pt;}
.y107{bottom:354.013333pt;}
.ye6{bottom:356.893333pt;}
.yb5{bottom:357.533333pt;}
.y82{bottom:362.053333pt;}
.y2c{bottom:364.253333pt;}
.y1b{bottom:365.533333pt;}
.y106{bottom:369.413333pt;}
.ye5{bottom:372.613333pt;}
.yb4{bottom:372.933333pt;}
.y81{bottom:377.413333pt;}
.y2b{bottom:379.293333pt;}
.y105{bottom:384.773333pt;}
.y1a{bottom:386.973333pt;}
.ye4{bottom:387.973333pt;}
.yb3{bottom:388.293333pt;}
.y80{bottom:392.773333pt;}
.y2a{bottom:394.653333pt;}
.y104{bottom:400.133333pt;}
.ye3{bottom:403.013333pt;}
.yb2{bottom:403.653333pt;}
.y7f{bottom:407.813333pt;}
.y19{bottom:408.413333pt;}
.y103{bottom:415.493333pt;}
.y29{bottom:417.693333pt;}
.ye2{bottom:418.373333pt;}
.yb1{bottom:418.693333pt;}
.y7e{bottom:423.493333pt;}
.y18{bottom:429.853333pt;}
.y102{bottom:430.533333pt;}
.y28{bottom:431.453333pt;}
.yb0{bottom:434.053333pt;}
.y7d{bottom:438.533333pt;}
.ye1{bottom:442.053333pt;}
.y27{bottom:445.213333pt;}
.y101{bottom:445.893333pt;}
.yaf{bottom:449.413333pt;}
.y17{bottom:451.333333pt;}
.y7c{bottom:453.893333pt;}
.ye0{bottom:457.413333pt;}
.y26{bottom:459.013333pt;}
.y100{bottom:461.253333pt;}
.yae{bottom:464.773333pt;}
.y7b{bottom:468.933333pt;}
.y16{bottom:472.773333pt;}
.y25{bottom:473.093333pt;}
.yff{bottom:476.613333pt;}
.yad{bottom:480.160000pt;}
.y7a{bottom:484.640000pt;}
.y24{bottom:486.853333pt;}
.ydf{bottom:488.160000pt;}
.yfe{bottom:492.000000pt;}
.y15{bottom:494.213333pt;}
.yac{bottom:495.520000pt;}
.y79{bottom:500.000000pt;}
.y23{bottom:500.613333pt;}
.yde{bottom:503.200000pt;}
.yfd{bottom:507.360000pt;}
.yab{bottom:510.880000pt;}
.y22{bottom:514.373333pt;}
.y78{bottom:515.360000pt;}
.y14{bottom:515.653333pt;}
.yfc{bottom:522.720000pt;}
.yaa{bottom:526.240000pt;}
.ydd{bottom:526.560000pt;}
.y21{bottom:528.133333pt;}
.y77{bottom:530.400000pt;}
.y13{bottom:537.093333pt;}
.yfb{bottom:537.760000pt;}
.ya9{bottom:541.600000pt;}
.y20{bottom:541.893333pt;}
.ydc{bottom:541.920000pt;}
.y76{bottom:546.080000pt;}
.ya8{bottom:556.640000pt;}
.ydb{bottom:557.280000pt;}
.y12{bottom:558.533333pt;}
.y75{bottom:561.440000pt;}
.y1f{bottom:569.120000pt;}
.yda{bottom:572.640000pt;}
.y74{bottom:576.800000pt;}
.y11{bottom:580.000000pt;}
.ya7{bottom:580.320000pt;}
.y73{bottom:591.840000pt;}
.yfa{bottom:592.160000pt;}
.ya6{bottom:595.706667pt;}
.yd9{bottom:597.946667pt;}
.y72{bottom:607.226667pt;}
.ya5{bottom:610.746667pt;}
.yd8{bottom:621.946667pt;}
.y71{bottom:622.586667pt;}
.ya4{bottom:626.106667pt;}
.yd7{bottom:637.306667pt;}
.y70{bottom:637.946667pt;}
.ya3{bottom:641.466667pt;}
.yd6{bottom:652.666667pt;}
.y6f{bottom:652.986667pt;}
.yf9{bottom:653.306667pt;}
.ya2{bottom:656.826667pt;}
.yd5{bottom:668.026667pt;}
.y6e{bottom:668.666667pt;}
.ya1{bottom:672.186667pt;}
.yd4{bottom:683.386667pt;}
.y6d{bottom:684.026667pt;}
.ya0{bottom:687.546667pt;}
.yd3{bottom:698.746667pt;}
.y6c{bottom:699.386667pt;}
.y9f{bottom:702.586667pt;}
.y6b{bottom:714.466667pt;}
.yf8{bottom:714.786667pt;}
.yd2{bottom:722.146667pt;}
.y9e{bottom:726.306667pt;}
.y6a{bottom:730.146667pt;}
.yd1{bottom:737.506667pt;}
.y9d{bottom:741.666667pt;}
.y69{bottom:745.506667pt;}
.yd0{bottom:752.866667pt;}
.y9c{bottom:757.026667pt;}
.y68{bottom:760.866667pt;}
.ycf{bottom:768.226667pt;}
.y9b{bottom:773.346667pt;}
.y67{bottom:775.906667pt;}
.yf7{bottom:776.226667pt;}
.yce{bottom:783.266667pt;}
.y9a{bottom:788.386667pt;}
.y66{bottom:791.266667pt;}
.ycd{bottom:798.626667pt;}
.y99{bottom:803.746667pt;}
.y65{bottom:806.626667pt;}
.ycc{bottom:813.986667pt;}
.y98{bottom:820.066667pt;}
.y64{bottom:821.986667pt;}
.y97{bottom:835.453333pt;}
.y63{bottom:837.053333pt;}
.ycb{bottom:837.373333pt;}
.yf{bottom:851.773333pt;}
.y62{bottom:852.413333pt;}
.yca{bottom:852.733333pt;}
.ye{bottom:856.573333pt;}
.yf6{bottom:860.733333pt;}
.y96{bottom:867.133333pt;}
.yc9{bottom:868.093333pt;}
.y61{bottom:876.093333pt;}
.yd{bottom:878.013333pt;}
.y95{bottom:882.493333pt;}
.yc8{bottom:883.453333pt;}
.yc{bottom:887.293333pt;}
.y60{bottom:891.453333pt;}
.y94{bottom:898.493333pt;}
.yc7{bottom:898.813333pt;}
.y5f{bottom:906.813333pt;}
.yb{bottom:908.733333pt;}
.yc6{bottom:914.173333pt;}
.ya{bottom:917.693333pt;}
.yf5{bottom:921.853333pt;}
.y5e{bottom:922.173333pt;}
.y5d{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y5c{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.y93{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hd{height:3.702500pt;}
.h15{height:5.022500pt;}
.h7{height:21.643125pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.hb{height:33.918750pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.h1b{height:37.537500pt;}
.h11{height:47.713750pt;}
.h14{height:49.020000pt;}
.h8{height:51.600000pt;}
.h16{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.hc{height:54.180000pt;}
.h19{height:55.256809pt;}
.h1a{height:55.965000pt;}
.h18{height:56.405000pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h12{height:179.240000pt;}
.he{height:588.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x19{left:7.373333pt;}
.x4{left:11.826667pt;}
.x17{left:14.708000pt;}
.x1d{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.908000pt;}
.x1b{left:31.373333pt;}
.x6{left:38.733333pt;}
.x1e{left:42.260000pt;}
.x11{left:45.140000pt;}
.x10{left:48.980000pt;}
.x20{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x1f{left:58.902667pt;}
.x14{left:64.982667pt;}
.x13{left:68.182667pt;}
.x1{left:69.804000pt;}
.x15{left:71.382667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x25{left:100.832000pt;}
.x23{left:104.992000pt;}
.x12{left:110.742667pt;}
.x24{left:124.864000pt;}
.xd{left:129.344000pt;}
.xb{left:135.746667pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xc{left:366.880000pt;}
.xe{left:437.626667pt;}
.xa{left:504.186667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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