
    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_5e7523f3d01dc0e28aa53a3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_98eaca8851217441d590b199.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_bb5074cac2384cbd016b23fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a710ca23b6c15d092dc8bd5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ef035ba93d6fa545c0090e49.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_fa3b9648a4b37218f00df169.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_434dd5e459da16de8f044b30.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-85.140000px;}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-81.480000px;}
.v4{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.008000px;}
.ls32{letter-spacing:-0.948000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.414600px;}
.ls20{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.262200px;}
.ls1b{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.025920px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls2e{letter-spacing:0.066000px;}
.ls1c{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.109200px;}
.ls2b{letter-spacing:0.167040px;}
.ls17{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.272640px;}
.ls18{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.936000px;}
.ls1e{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.440000px;}
.ls22{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.ls2{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.760000px;}
.ls13{letter-spacing:6.480000px;}
.ls27{letter-spacing:7.200000px;}
.lsd{letter-spacing:7.920000px;}
.ls29{letter-spacing:8.640000px;}
.ls28{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.520000px;}
.ls11{letter-spacing:18.720000px;}
.ls2c{letter-spacing:21.600000px;}
.ls2d{letter-spacing:34.841280px;}
.ls4{letter-spacing:46.980000px;}
.ls1d{letter-spacing:52.560000px;}
.ls12{letter-spacing:56.280000px;}
.ls25{letter-spacing:62.040000px;}
.ls2a{letter-spacing:67.961280px;}
.lsb{letter-spacing:804.540000px;}
.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;}
}
.ws6{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.414080px;}
.ws7{word-spacing:-18.360000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.496000px;}
.ws8{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.297800px;}
.ws9{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-2.122080px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:2.292480px;}
._8{width:3.536640px;}
._b{width:4.680000px;}
._c{width:6.259200px;}
._a{width:8.147520px;}
._9{width:9.221760px;}
._10{width:10.584000px;}
._13{width:11.592000px;}
._e{width:13.394880px;}
._d{width:14.984640px;}
._17{width:16.738080px;}
._1a{width:17.752320px;}
._1b{width:18.920640px;}
._14{width:20.088000px;}
._18{width:22.032000px;}
._19{width:23.112000px;}
._16{width:24.336000px;}
._15{width:25.416000px;}
._12{width:31.896000px;}
._1e{width:37.584000px;}
._f{width:45.506880px;}
._1c{width:90.947520px;}
._1d{width:92.120160px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._2{width:751.980000px;}
._3{width:812.448480px;}
._6{width:1200.880320px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y63{bottom:4.320000px;}
.ya4{bottom:4.500000px;}
.yfe{bottom:4.530000px;}
.y100{bottom:14.760000px;}
.y9{bottom:21.240000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.ya2{bottom:143.316000px;}
.yfc{bottom:143.856000px;}
.yd2{bottom:144.756000px;}
.y81{bottom:144.936000px;}
.y61{bottom:147.816000px;}
.y37{bottom:149.616000px;}
.ya1{bottom:164.010000px;}
.yd1{bottom:165.450000px;}
.y80{bottom:165.630000px;}
.y36{bottom:168.510000px;}
.yfb{bottom:181.830000px;}
.ya0{bottom:184.710000px;}
.yd0{bottom:186.150000px;}
.y7f{bottom:186.330000px;}
.y35{bottom:187.590000px;}
.y60{bottom:189.210000px;}
.yfa{bottom:200.730000px;}
.y9f{bottom:205.410000px;}
.y34{bottom:206.490000px;}
.ycf{bottom:206.850000px;}
.y7e{bottom:207.030000px;}
.y5f{bottom:209.910000px;}
.yf9{bottom:219.810000px;}
.y33{bottom:225.570000px;}
.y9e{bottom:226.110000px;}
.yce{bottom:227.550000px;}
.y7d{bottom:227.730000px;}
.y5e{bottom:230.610000px;}
.yf8{bottom:238.710000px;}
.y32{bottom:244.470000px;}
.y9d{bottom:246.810000px;}
.ycd{bottom:248.250000px;}
.y7c{bottom:248.430000px;}
.y5d{bottom:251.310000px;}
.yf7{bottom:257.610000px;}
.y31{bottom:263.370000px;}
.y9c{bottom:267.510000px;}
.ycc{bottom:268.950000px;}
.y7b{bottom:269.130000px;}
.yf6{bottom:276.690000px;}
.y30{bottom:282.450000px;}
.y9b{bottom:288.210000px;}
.ycb{bottom:289.650000px;}
.y7a{bottom:289.830000px;}
.y5c{bottom:292.710000px;}
.yf5{bottom:295.590000px;}
.y2f{bottom:301.350000px;}
.y9a{bottom:308.910000px;}
.yca{bottom:310.350000px;}
.y79{bottom:310.530000px;}
.y5b{bottom:313.410000px;}
.yf4{bottom:314.670000px;}
.y2e{bottom:320.430000px;}
.y99{bottom:329.610000px;}
.yc9{bottom:331.050000px;}
.y78{bottom:331.230000px;}
.yf3{bottom:333.570000px;}
.y5a{bottom:334.110000px;}
.y2d{bottom:339.330000px;}
.y98{bottom:350.310000px;}
.yc8{bottom:351.750000px;}
.y77{bottom:351.930000px;}
.yf2{bottom:352.470000px;}
.y59{bottom:354.810000px;}
.y2c{bottom:358.230000px;}
.y97{bottom:371.010000px;}
.yf1{bottom:371.550000px;}
.yc7{bottom:372.450000px;}
.y76{bottom:372.630000px;}
.y58{bottom:375.510000px;}
.y2b{bottom:376.950000px;}
.yf0{bottom:390.495000px;}
.y96{bottom:391.755000px;}
.yc6{bottom:393.195000px;}
.y75{bottom:393.375000px;}
.y2a{bottom:396.255000px;}
.yef{bottom:409.575000px;}
.y95{bottom:412.455000px;}
.yc5{bottom:413.895000px;}
.y74{bottom:414.075000px;}
.y29{bottom:415.335000px;}
.y57{bottom:416.955000px;}
.yee{bottom:428.475000px;}
.y94{bottom:433.155000px;}
.y28{bottom:434.235000px;}
.yc4{bottom:434.595000px;}
.y73{bottom:434.775000px;}
.y56{bottom:437.655000px;}
.yed{bottom:447.375000px;}
.y27{bottom:453.135000px;}
.y93{bottom:453.855000px;}
.yc3{bottom:455.295000px;}
.y72{bottom:455.475000px;}
.yec{bottom:466.455000px;}
.y26{bottom:472.215000px;}
.y92{bottom:474.555000px;}
.yc2{bottom:475.995000px;}
.y71{bottom:476.175000px;}
.y55{bottom:479.055000px;}
.yeb{bottom:485.355000px;}
.y25{bottom:491.115000px;}
.y91{bottom:495.255000px;}
.yc1{bottom:496.695000px;}
.y54{bottom:499.575000px;}
.yea{bottom:504.435000px;}
.y24{bottom:510.195000px;}
.y90{bottom:515.955000px;}
.yc0{bottom:517.395000px;}
.y70{bottom:517.575000px;}
.y53{bottom:520.275000px;}
.ye9{bottom:523.335000px;}
.y23{bottom:529.095000px;}
.y8f{bottom:536.655000px;}
.ybf{bottom:538.095000px;}
.y6f{bottom:538.275000px;}
.y52{bottom:540.975000px;}
.ye8{bottom:542.235000px;}
.y22{bottom:548.175000px;}
.y8e{bottom:557.355000px;}
.ybe{bottom:558.795000px;}
.y6e{bottom:558.975000px;}
.ye7{bottom:561.315000px;}
.y51{bottom:561.675000px;}
.y21{bottom:567.075000px;}
.y8d{bottom:578.055000px;}
.ybd{bottom:579.495000px;}
.y6d{bottom:579.675000px;}
.ye6{bottom:580.215000px;}
.y50{bottom:582.375000px;}
.y20{bottom:586.875000px;}
.y8c{bottom:598.755000px;}
.ye5{bottom:599.295000px;}
.ybc{bottom:600.195000px;}
.y6c{bottom:600.375000px;}
.y4f{bottom:603.075000px;}
.y1f{bottom:609.195000px;}
.ye4{bottom:618.195000px;}
.y8b{bottom:619.455000px;}
.ybb{bottom:620.895000px;}
.y6b{bottom:621.075000px;}
.y1e{bottom:631.155000px;}
.y8a{bottom:635.865000px;}
.ye3{bottom:637.305000px;}
.yba{bottom:641.625000px;}
.y6a{bottom:641.805000px;}
.y4e{bottom:644.505000px;}
.y1d{bottom:654.045000px;}
.ye2{bottom:656.205000px;}
.yb9{bottom:662.325000px;}
.y69{bottom:662.505000px;}
.y4d{bottom:665.205000px;}
.ye1{bottom:675.105000px;}
.y1c{bottom:676.545000px;}
.yb8{bottom:683.025000px;}
.y68{bottom:683.205000px;}
.y4c{bottom:685.905000px;}
.ye0{bottom:694.185000px;}
.y1b{bottom:698.325000px;}
.yb7{bottom:703.725000px;}
.y67{bottom:703.905000px;}
.y4b{bottom:706.605000px;}
.ydf{bottom:713.085000px;}
.y1a{bottom:720.645000px;}
.yb6{bottom:724.425000px;}
.y66{bottom:724.605000px;}
.y4a{bottom:727.305000px;}
.yde{bottom:732.165000px;}
.y19{bottom:742.065000px;}
.yb5{bottom:745.125000px;}
.y65{bottom:745.305000px;}
.y49{bottom:748.005000px;}
.ydd{bottom:751.065000px;}
.y64{bottom:761.685000px;}
.y18{bottom:764.565000px;}
.yb4{bottom:765.825000px;}
.y48{bottom:768.705000px;}
.ydc{bottom:769.965000px;}
.y17{bottom:786.345000px;}
.yb3{bottom:786.525000px;}
.y47{bottom:789.405000px;}
.yb2{bottom:807.225000px;}
.y16{bottom:809.385000px;}
.ydb{bottom:809.745000px;}
.y46{bottom:810.105000px;}
.yb1{bottom:827.925000px;}
.yda{bottom:829.185000px;}
.y15{bottom:831.705000px;}
.yb0{bottom:848.625000px;}
.yd9{bottom:849.885000px;}
.y45{bottom:851.505000px;}
.y14{bottom:853.665000px;}
.yaf{bottom:869.325000px;}
.yd8{bottom:870.585000px;}
.y44{bottom:872.205000px;}
.yae{bottom:890.070000px;}
.yd7{bottom:891.330000px;}
.y43{bottom:892.950000px;}
.y13{bottom:897.270000px;}
.yad{bottom:910.770000px;}
.yd6{bottom:912.030000px;}
.y42{bottom:913.650000px;}
.y12{bottom:921.390000px;}
.yac{bottom:931.470000px;}
.yd5{bottom:932.730000px;}
.y41{bottom:934.350000px;}
.y11{bottom:945.510000px;}
.yab{bottom:952.170000px;}
.yd4{bottom:953.430000px;}
.y40{bottom:955.050000px;}
.y10{bottom:969.630000px;}
.yaa{bottom:972.870000px;}
.yd3{bottom:974.130000px;}
.y3f{bottom:975.750000px;}
.yf{bottom:993.570000px;}
.y89{bottom:994.830000px;}
.y3e{bottom:996.450000px;}
.ya9{bottom:1014.270000px;}
.ye{bottom:1014.630000px;}
.y88{bottom:1015.530000px;}
.y3d{bottom:1017.150000px;}
.ya8{bottom:1034.970000px;}
.y87{bottom:1036.230000px;}
.y3c{bottom:1037.850000px;}
.yd{bottom:1038.750000px;}
.y62{bottom:1054.050000px;}
.ya7{bottom:1055.130000px;}
.y86{bottom:1056.930000px;}
.y3b{bottom:1058.550000px;}
.yc{bottom:1062.150000px;}
.ya6{bottom:1070.790000px;}
.y6{bottom:1077.090000px;}
.y85{bottom:1077.630000px;}
.y3a{bottom:1079.250000px;}
.ya5{bottom:1092.210000px;}
.y84{bottom:1098.330000px;}
.y39{bottom:1099.950000px;}
.ya3{bottom:1113.630000px;}
.yff{bottom:1114.530000px;}
.y83{bottom:1119.030000px;}
.yfd{bottom:1135.230000px;}
.y82{bottom:1139.760000px;}
.y38{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h13{height:20.685000px;}
.h16{height:20.730000px;}
.h17{height:41.430000px;}
.h3{height:45.184219px;}
.hd{height:56.213437px;}
.h15{height:59.383125px;}
.h10{height:62.085000px;}
.he{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h14{height:68.084282px;}
.h12{height:70.628906px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h8{height:72.846211px;}
.hf{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w7{width:307.680000px;}
.w8{width:337.753500px;}
.w9{width:401.325000px;}
.w6{width:422.023500px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x23{left:29.734500px;}
.x22{left:39.045000px;}
.x21{left:72.028500px;}
.x2{left:77.041500px;}
.x1d{left:81.361500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x9{left:88.920000px;}
.xb{left:93.816000px;}
.x11{left:101.736000px;}
.x20{left:120.585000px;}
.x17{left:127.476000px;}
.xd{left:134.496000px;}
.x1b{left:139.716000px;}
.x18{left:141.156000px;}
.xc{left:147.096000px;}
.xa{left:160.410000px;}
.x5{left:172.650000px;}
.x1e{left:177.868500px;}
.x1c{left:275.655000px;}
.x15{left:290.595000px;}
.x24{left:346.935000px;}
.xe{left:390.495000px;}
.x25{left:414.795000px;}
.xf{left:424.155000px;}
.x14{left:439.095000px;}
.x8{left:446.505000px;}
.x12{left:452.985000px;}
.x16{left:468.285000px;}
.x10{left:479.445000px;}
.x1f{left:504.120000px;}
.x4{left:552.900000px;}
.x6{left:733.650000px;}
.x13{left:808.020000px;}
.x19{left:816.480000px;}
.x1a{left:844.740000px;}
@media print{
.v1{vertical-align:-75.680000pt;}
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-72.426667pt;}
.v4{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls32{letter-spacing:-0.842667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.368533pt;}
.ls20{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls2e{letter-spacing:0.058667pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.097067pt;}
.ls2b{letter-spacing:0.148480pt;}
.ls17{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.242347pt;}
.ls18{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.832000pt;}
.ls1e{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls23{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.ls2{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls13{letter-spacing:5.760000pt;}
.ls27{letter-spacing:6.400000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls29{letter-spacing:7.680000pt;}
.ls28{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.240000pt;}
.ls11{letter-spacing:16.640000pt;}
.ls2c{letter-spacing:19.200000pt;}
.ls2d{letter-spacing:30.970027pt;}
.ls4{letter-spacing:41.760000pt;}
.ls1d{letter-spacing:46.720000pt;}
.ls12{letter-spacing:50.026667pt;}
.ls25{letter-spacing:55.146667pt;}
.ls2a{letter-spacing:60.410027pt;}
.lsb{letter-spacing:715.146667pt;}
.ws6{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.256960pt;}
.ws7{word-spacing:-16.320000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.486933pt;}
.ws9{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-1.886293pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.037760pt;}
._8{width:3.143680pt;}
._b{width:4.160000pt;}
._c{width:5.563733pt;}
._a{width:7.242240pt;}
._9{width:8.197120pt;}
._10{width:9.408000pt;}
._13{width:10.304000pt;}
._e{width:11.906560pt;}
._d{width:13.319680pt;}
._17{width:14.878293pt;}
._1a{width:15.779840pt;}
._1b{width:16.818347pt;}
._14{width:17.856000pt;}
._18{width:19.584000pt;}
._19{width:20.544000pt;}
._16{width:21.632000pt;}
._15{width:22.592000pt;}
._12{width:28.352000pt;}
._1e{width:33.408000pt;}
._f{width:40.450560pt;}
._1c{width:80.842240pt;}
._1d{width:81.884587pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._2{width:668.426667pt;}
._3{width:722.176427pt;}
._6{width:1067.449173pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y63{bottom:3.840000pt;}
.ya4{bottom:4.000000pt;}
.yfe{bottom:4.026667pt;}
.y100{bottom:13.120000pt;}
.y9{bottom:18.880000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.ya2{bottom:127.392000pt;}
.yfc{bottom:127.872000pt;}
.yd2{bottom:128.672000pt;}
.y81{bottom:128.832000pt;}
.y61{bottom:131.392000pt;}
.y37{bottom:132.992000pt;}
.ya1{bottom:145.786667pt;}
.yd1{bottom:147.066667pt;}
.y80{bottom:147.226667pt;}
.y36{bottom:149.786667pt;}
.yfb{bottom:161.626667pt;}
.ya0{bottom:164.186667pt;}
.yd0{bottom:165.466667pt;}
.y7f{bottom:165.626667pt;}
.y35{bottom:166.746667pt;}
.y60{bottom:168.186667pt;}
.yfa{bottom:178.426667pt;}
.y9f{bottom:182.586667pt;}
.y34{bottom:183.546667pt;}
.ycf{bottom:183.866667pt;}
.y7e{bottom:184.026667pt;}
.y5f{bottom:186.586667pt;}
.yf9{bottom:195.386667pt;}
.y33{bottom:200.506667pt;}
.y9e{bottom:200.986667pt;}
.yce{bottom:202.266667pt;}
.y7d{bottom:202.426667pt;}
.y5e{bottom:204.986667pt;}
.yf8{bottom:212.186667pt;}
.y32{bottom:217.306667pt;}
.y9d{bottom:219.386667pt;}
.ycd{bottom:220.666667pt;}
.y7c{bottom:220.826667pt;}
.y5d{bottom:223.386667pt;}
.yf7{bottom:228.986667pt;}
.y31{bottom:234.106667pt;}
.y9c{bottom:237.786667pt;}
.ycc{bottom:239.066667pt;}
.y7b{bottom:239.226667pt;}
.yf6{bottom:245.946667pt;}
.y30{bottom:251.066667pt;}
.y9b{bottom:256.186667pt;}
.ycb{bottom:257.466667pt;}
.y7a{bottom:257.626667pt;}
.y5c{bottom:260.186667pt;}
.yf5{bottom:262.746667pt;}
.y2f{bottom:267.866667pt;}
.y9a{bottom:274.586667pt;}
.yca{bottom:275.866667pt;}
.y79{bottom:276.026667pt;}
.y5b{bottom:278.586667pt;}
.yf4{bottom:279.706667pt;}
.y2e{bottom:284.826667pt;}
.y99{bottom:292.986667pt;}
.yc9{bottom:294.266667pt;}
.y78{bottom:294.426667pt;}
.yf3{bottom:296.506667pt;}
.y5a{bottom:296.986667pt;}
.y2d{bottom:301.626667pt;}
.y98{bottom:311.386667pt;}
.yc8{bottom:312.666667pt;}
.y77{bottom:312.826667pt;}
.yf2{bottom:313.306667pt;}
.y59{bottom:315.386667pt;}
.y2c{bottom:318.426667pt;}
.y97{bottom:329.786667pt;}
.yf1{bottom:330.266667pt;}
.yc7{bottom:331.066667pt;}
.y76{bottom:331.226667pt;}
.y58{bottom:333.786667pt;}
.y2b{bottom:335.066667pt;}
.yf0{bottom:347.106667pt;}
.y96{bottom:348.226667pt;}
.yc6{bottom:349.506667pt;}
.y75{bottom:349.666667pt;}
.y2a{bottom:352.226667pt;}
.yef{bottom:364.066667pt;}
.y95{bottom:366.626667pt;}
.yc5{bottom:367.906667pt;}
.y74{bottom:368.066667pt;}
.y29{bottom:369.186667pt;}
.y57{bottom:370.626667pt;}
.yee{bottom:380.866667pt;}
.y94{bottom:385.026667pt;}
.y28{bottom:385.986667pt;}
.yc4{bottom:386.306667pt;}
.y73{bottom:386.466667pt;}
.y56{bottom:389.026667pt;}
.yed{bottom:397.666667pt;}
.y27{bottom:402.786667pt;}
.y93{bottom:403.426667pt;}
.yc3{bottom:404.706667pt;}
.y72{bottom:404.866667pt;}
.yec{bottom:414.626667pt;}
.y26{bottom:419.746667pt;}
.y92{bottom:421.826667pt;}
.yc2{bottom:423.106667pt;}
.y71{bottom:423.266667pt;}
.y55{bottom:425.826667pt;}
.yeb{bottom:431.426667pt;}
.y25{bottom:436.546667pt;}
.y91{bottom:440.226667pt;}
.yc1{bottom:441.506667pt;}
.y54{bottom:444.066667pt;}
.yea{bottom:448.386667pt;}
.y24{bottom:453.506667pt;}
.y90{bottom:458.626667pt;}
.yc0{bottom:459.906667pt;}
.y70{bottom:460.066667pt;}
.y53{bottom:462.466667pt;}
.ye9{bottom:465.186667pt;}
.y23{bottom:470.306667pt;}
.y8f{bottom:477.026667pt;}
.ybf{bottom:478.306667pt;}
.y6f{bottom:478.466667pt;}
.y52{bottom:480.866667pt;}
.ye8{bottom:481.986667pt;}
.y22{bottom:487.266667pt;}
.y8e{bottom:495.426667pt;}
.ybe{bottom:496.706667pt;}
.y6e{bottom:496.866667pt;}
.ye7{bottom:498.946667pt;}
.y51{bottom:499.266667pt;}
.y21{bottom:504.066667pt;}
.y8d{bottom:513.826667pt;}
.ybd{bottom:515.106667pt;}
.y6d{bottom:515.266667pt;}
.ye6{bottom:515.746667pt;}
.y50{bottom:517.666667pt;}
.y20{bottom:521.666667pt;}
.y8c{bottom:532.226667pt;}
.ye5{bottom:532.706667pt;}
.ybc{bottom:533.506667pt;}
.y6c{bottom:533.666667pt;}
.y4f{bottom:536.066667pt;}
.y1f{bottom:541.506667pt;}
.ye4{bottom:549.506667pt;}
.y8b{bottom:550.626667pt;}
.ybb{bottom:551.906667pt;}
.y6b{bottom:552.066667pt;}
.y1e{bottom:561.026667pt;}
.y8a{bottom:565.213333pt;}
.ye3{bottom:566.493333pt;}
.yba{bottom:570.333333pt;}
.y6a{bottom:570.493333pt;}
.y4e{bottom:572.893333pt;}
.y1d{bottom:581.373333pt;}
.ye2{bottom:583.293333pt;}
.yb9{bottom:588.733333pt;}
.y69{bottom:588.893333pt;}
.y4d{bottom:591.293333pt;}
.ye1{bottom:600.093333pt;}
.y1c{bottom:601.373333pt;}
.yb8{bottom:607.133333pt;}
.y68{bottom:607.293333pt;}
.y4c{bottom:609.693333pt;}
.ye0{bottom:617.053333pt;}
.y1b{bottom:620.733333pt;}
.yb7{bottom:625.533333pt;}
.y67{bottom:625.693333pt;}
.y4b{bottom:628.093333pt;}
.ydf{bottom:633.853333pt;}
.y1a{bottom:640.573333pt;}
.yb6{bottom:643.933333pt;}
.y66{bottom:644.093333pt;}
.y4a{bottom:646.493333pt;}
.yde{bottom:650.813333pt;}
.y19{bottom:659.613333pt;}
.yb5{bottom:662.333333pt;}
.y65{bottom:662.493333pt;}
.y49{bottom:664.893333pt;}
.ydd{bottom:667.613333pt;}
.y64{bottom:677.053333pt;}
.y18{bottom:679.613333pt;}
.yb4{bottom:680.733333pt;}
.y48{bottom:683.293333pt;}
.ydc{bottom:684.413333pt;}
.y17{bottom:698.973333pt;}
.yb3{bottom:699.133333pt;}
.y47{bottom:701.693333pt;}
.yb2{bottom:717.533333pt;}
.y16{bottom:719.453333pt;}
.ydb{bottom:719.773333pt;}
.y46{bottom:720.093333pt;}
.yb1{bottom:735.933333pt;}
.yda{bottom:737.053333pt;}
.y15{bottom:739.293333pt;}
.yb0{bottom:754.333333pt;}
.yd9{bottom:755.453333pt;}
.y45{bottom:756.893333pt;}
.y14{bottom:758.813333pt;}
.yaf{bottom:772.733333pt;}
.yd8{bottom:773.853333pt;}
.y44{bottom:775.293333pt;}
.yae{bottom:791.173333pt;}
.yd7{bottom:792.293333pt;}
.y43{bottom:793.733333pt;}
.y13{bottom:797.573333pt;}
.yad{bottom:809.573333pt;}
.yd6{bottom:810.693333pt;}
.y42{bottom:812.133333pt;}
.y12{bottom:819.013333pt;}
.yac{bottom:827.973333pt;}
.yd5{bottom:829.093333pt;}
.y41{bottom:830.533333pt;}
.y11{bottom:840.453333pt;}
.yab{bottom:846.373333pt;}
.yd4{bottom:847.493333pt;}
.y40{bottom:848.933333pt;}
.y10{bottom:861.893333pt;}
.yaa{bottom:864.773333pt;}
.yd3{bottom:865.893333pt;}
.y3f{bottom:867.333333pt;}
.yf{bottom:883.173333pt;}
.y89{bottom:884.293333pt;}
.y3e{bottom:885.733333pt;}
.ya9{bottom:901.573333pt;}
.ye{bottom:901.893333pt;}
.y88{bottom:902.693333pt;}
.y3d{bottom:904.133333pt;}
.ya8{bottom:919.973333pt;}
.y87{bottom:921.093333pt;}
.y3c{bottom:922.533333pt;}
.yd{bottom:923.333333pt;}
.y62{bottom:936.933333pt;}
.ya7{bottom:937.893333pt;}
.y86{bottom:939.493333pt;}
.y3b{bottom:940.933333pt;}
.yc{bottom:944.133333pt;}
.ya6{bottom:951.813333pt;}
.y6{bottom:957.413333pt;}
.y85{bottom:957.893333pt;}
.y3a{bottom:959.333333pt;}
.ya5{bottom:970.853333pt;}
.y84{bottom:976.293333pt;}
.y39{bottom:977.733333pt;}
.ya3{bottom:989.893333pt;}
.yff{bottom:990.693333pt;}
.y83{bottom:994.693333pt;}
.yfd{bottom:1009.093333pt;}
.y82{bottom:1013.120000pt;}
.y38{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h13{height:18.386667pt;}
.h16{height:18.426667pt;}
.h17{height:36.826667pt;}
.h3{height:40.163750pt;}
.hd{height:49.967500pt;}
.h15{height:52.785000pt;}
.h10{height:55.186667pt;}
.he{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h14{height:60.519362pt;}
.h12{height:62.781250pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h8{height:64.752187pt;}
.hf{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w7{width:273.493333pt;}
.w8{width:300.225333pt;}
.w9{width:356.733333pt;}
.w6{width:375.132000pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x23{left:26.430667pt;}
.x22{left:34.706667pt;}
.x21{left:64.025333pt;}
.x2{left:68.481333pt;}
.x1d{left:72.321333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x9{left:79.040000pt;}
.xb{left:83.392000pt;}
.x11{left:90.432000pt;}
.x20{left:107.186667pt;}
.x17{left:113.312000pt;}
.xd{left:119.552000pt;}
.x1b{left:124.192000pt;}
.x18{left:125.472000pt;}
.xc{left:130.752000pt;}
.xa{left:142.586667pt;}
.x5{left:153.466667pt;}
.x1e{left:158.105333pt;}
.x1c{left:245.026667pt;}
.x15{left:258.306667pt;}
.x24{left:308.386667pt;}
.xe{left:347.106667pt;}
.x25{left:368.706667pt;}
.xf{left:377.026667pt;}
.x14{left:390.306667pt;}
.x8{left:396.893333pt;}
.x12{left:402.653333pt;}
.x16{left:416.253333pt;}
.x10{left:426.173333pt;}
.x1f{left:448.106667pt;}
.x4{left:491.466667pt;}
.x6{left:652.133333pt;}
.x13{left:718.240000pt;}
.x19{left:725.760000pt;}
.x1a{left:750.880000pt;}
}




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