
    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_ebad47573ad5a2b10897f7e6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_42d7ec61e1ee061a6a6c6831.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4438aaa7805d0cf49d3a1fa9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_87b802e06e71fe506f1eccbe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fe0aa1bef647180818481bc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9665e689717d39dfb8aa8521.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa1d9010e7bd25f71249ee26.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_11b134a8e0ce003162f03f94.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0098828a67ba7f6a74c710f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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:-94.320000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.374400px;}
.ls9{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.600000px;}
.ls10{letter-spacing:4.464000px;}
.ls7{letter-spacing:6.480000px;}
.lse{letter-spacing:8.064000px;}
.ls11{letter-spacing:15.984000px;}
.lsf{letter-spacing:21.744000px;}
.ls2{letter-spacing:35.280000px;}
.ls1{letter-spacing:928.980000px;}
.ls3{letter-spacing:1214.940000px;}
.ls15{letter-spacing:1342.956000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws1{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-4.464000px;}
._8{margin-left:-2.802240px;}
._1{margin-left:-1.010880px;}
._0{width:1.015920px;}
._6{width:2.728080px;}
._e{width:3.816000px;}
._a{width:5.040000px;}
._b{width:6.120000px;}
._10{width:7.992000px;}
._1c{width:9.069840px;}
._11{width:10.097280px;}
._4{width:11.448000px;}
._5{width:12.664080px;}
._c{width:14.256000px;}
._f{width:15.807840px;}
._14{width:16.937280px;}
._17{width:18.585360px;}
._7{width:19.661760px;}
._2{width:20.664000px;}
._3{width:22.248000px;}
._16{width:23.904000px;}
._15{width:25.130880px;}
._1e{width:26.250960px;}
._1a{width:27.408000px;}
._1b{width:29.342880px;}
._1d{width:30.528000px;}
._12{width:32.328000px;}
._13{width:33.480000px;}
._d{width:35.114880px;}
._18{width:37.080000px;}
._19{width:38.160000px;}
._1f{width:75.576000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(194,123,160);}
.fc3{color:rgb(33,33,33);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:9.360000px;}
.yac{bottom:11.340000px;}
.yb0{bottom:12.600000px;}
.yb2{bottom:14.040000px;}
.yb8{bottom:14.085000px;}
.y3{bottom:29.160000px;}
.yae{bottom:30.060000px;}
.y85{bottom:89.856000px;}
.yda{bottom:90.036000px;}
.y59{bottom:93.816000px;}
.y8d{bottom:96.516000px;}
.y32{bottom:99.576000px;}
.yaa{bottom:102.456000px;}
.yfa{bottom:102.996000px;}
.y109{bottom:104.256000px;}
.y8c{bottom:107.496000px;}
.y70{bottom:114.516000px;}
.y31{bottom:120.276000px;}
.y84{bottom:120.816000px;}
.yd9{bottom:120.996000px;}
.y7a{bottom:122.256000px;}
.ycf{bottom:124.236000px;}
.y58{bottom:124.956000px;}
.ya9{bottom:133.416000px;}
.yf9{bottom:134.136000px;}
.y8b{bottom:138.636000px;}
.y30{bottom:140.976000px;}
.y6f{bottom:145.656000px;}
.y83{bottom:151.950000px;}
.yd8{bottom:152.130000px;}
.y79{bottom:153.390000px;}
.yce{bottom:155.190000px;}
.y57{bottom:155.910000px;}
.y2f{bottom:161.670000px;}
.ya8{bottom:164.550000px;}
.yf8{bottom:165.090000px;}
.y108{bottom:166.350000px;}
.y8a{bottom:169.590000px;}
.y6e{bottom:176.610000px;}
.y2e{bottom:182.370000px;}
.y82{bottom:182.910000px;}
.yd7{bottom:183.090000px;}
.y78{bottom:184.350000px;}
.ycd{bottom:186.330000px;}
.y56{bottom:187.050000px;}
.ya7{bottom:195.510000px;}
.yf7{bottom:196.230000px;}
.y89{bottom:200.730000px;}
.y2d{bottom:203.070000px;}
.y6d{bottom:207.750000px;}
.y81{bottom:214.050000px;}
.yd6{bottom:214.230000px;}
.y77{bottom:215.490000px;}
.ycc{bottom:217.290000px;}
.y55{bottom:218.010000px;}
.y2c{bottom:223.770000px;}
.ya6{bottom:226.650000px;}
.yf6{bottom:227.190000px;}
.y107{bottom:228.450000px;}
.y88{bottom:231.690000px;}
.y6c{bottom:238.710000px;}
.y80{bottom:245.010000px;}
.yd5{bottom:245.190000px;}
.y11d{bottom:246.270000px;}
.y76{bottom:246.450000px;}
.ycb{bottom:248.430000px;}
.y54{bottom:249.150000px;}
.ya5{bottom:257.610000px;}
.yf5{bottom:258.330000px;}
.y87{bottom:260.310000px;}
.y2b{bottom:265.170000px;}
.y6b{bottom:269.850000px;}
.y11c{bottom:270.390000px;}
.y7f{bottom:276.150000px;}
.yd4{bottom:276.330000px;}
.y75{bottom:277.590000px;}
.yca{bottom:279.390000px;}
.y53{bottom:280.110000px;}
.y86{bottom:284.610000px;}
.y2a{bottom:285.870000px;}
.ya4{bottom:288.750000px;}
.yf4{bottom:289.290000px;}
.y106{bottom:290.550000px;}
.y11b{bottom:294.510000px;}
.y6a{bottom:300.810000px;}
.y29{bottom:306.570000px;}
.y7e{bottom:307.110000px;}
.yd3{bottom:307.290000px;}
.y74{bottom:308.550000px;}
.yc9{bottom:310.530000px;}
.y52{bottom:311.250000px;}
.y11a{bottom:318.630000px;}
.ya3{bottom:319.710000px;}
.yf3{bottom:320.430000px;}
.y28{bottom:327.270000px;}
.y69{bottom:331.995000px;}
.y7d{bottom:335.775000px;}
.yd2{bottom:335.955000px;}
.y73{bottom:339.735000px;}
.yc8{bottom:341.535000px;}
.y51{bottom:342.255000px;}
.y119{bottom:342.795000px;}
.y27{bottom:348.015000px;}
.ya2{bottom:350.895000px;}
.yf2{bottom:351.435000px;}
.y105{bottom:352.695000px;}
.y7c{bottom:360.075000px;}
.yd1{bottom:360.255000px;}
.y68{bottom:362.955000px;}
.y118{bottom:366.915000px;}
.y26{bottom:368.715000px;}
.y72{bottom:370.695000px;}
.yc7{bottom:372.675000px;}
.y50{bottom:373.395000px;}
.ya1{bottom:381.855000px;}
.yf1{bottom:382.575000px;}
.y25{bottom:389.415000px;}
.y117{bottom:391.215000px;}
.y67{bottom:394.095000px;}
.y71{bottom:402.735000px;}
.yc6{bottom:403.635000px;}
.y4f{bottom:404.355000px;}
.y24{bottom:410.115000px;}
.ya0{bottom:412.815000px;}
.yf0{bottom:413.535000px;}
.y104{bottom:414.795000px;}
.y116{bottom:415.335000px;}
.y66{bottom:425.055000px;}
.y23{bottom:430.815000px;}
.yc5{bottom:434.775000px;}
.y4e{bottom:435.495000px;}
.y115{bottom:439.455000px;}
.y9f{bottom:443.955000px;}
.yef{bottom:444.675000px;}
.y22{bottom:451.515000px;}
.y65{bottom:456.195000px;}
.y114{bottom:463.575000px;}
.yc4{bottom:465.735000px;}
.y4d{bottom:466.455000px;}
.y21{bottom:472.215000px;}
.y9e{bottom:474.915000px;}
.yee{bottom:475.635000px;}
.y64{bottom:476.175000px;}
.y103{bottom:476.895000px;}
.y113{bottom:487.695000px;}
.y20{bottom:492.915000px;}
.y63{bottom:493.275000px;}
.yc3{bottom:496.875000px;}
.y4c{bottom:497.595000px;}
.y7b{bottom:500.295000px;}
.y9d{bottom:506.055000px;}
.yed{bottom:506.775000px;}
.y62{bottom:510.555000px;}
.y112{bottom:511.815000px;}
.y1f{bottom:513.615000px;}
.y102{bottom:518.295000px;}
.y61{bottom:527.835000px;}
.y4b{bottom:528.555000px;}
.y1e{bottom:534.315000px;}
.yd0{bottom:535.395000px;}
.y111{bottom:536.115000px;}
.y9c{bottom:537.015000px;}
.yec{bottom:537.735000px;}
.y101{bottom:538.995000px;}
.y60{bottom:545.115000px;}
.y1d{bottom:555.015000px;}
.yc2{bottom:558.975000px;}
.y4a{bottom:559.695000px;}
.y110{bottom:560.235000px;}
.y5f{bottom:562.395000px;}
.y9b{bottom:568.155000px;}
.yeb{bottom:568.875000px;}
.y1c{bottom:575.715000px;}
.y100{bottom:580.395000px;}
.y10f{bottom:584.355000px;}
.yc1{bottom:589.935000px;}
.y49{bottom:590.655000px;}
.y1b{bottom:596.445000px;}
.y9a{bottom:599.145000px;}
.yea{bottom:599.865000px;}
.yff{bottom:601.125000px;}
.y10e{bottom:608.505000px;}
.y1a{bottom:617.145000px;}
.yc0{bottom:621.105000px;}
.y48{bottom:621.645000px;}
.y99{bottom:630.285000px;}
.ye9{bottom:631.005000px;}
.y10d{bottom:632.625000px;}
.y19{bottom:637.845000px;}
.yfe{bottom:642.345000px;}
.ybf{bottom:652.065000px;}
.y47{bottom:652.785000px;}
.y10c{bottom:656.745000px;}
.y18{bottom:658.545000px;}
.y98{bottom:661.245000px;}
.ye8{bottom:661.965000px;}
.yfd{bottom:663.045000px;}
.y17{bottom:679.245000px;}
.ybe{bottom:683.205000px;}
.y46{bottom:683.745000px;}
.y97{bottom:692.385000px;}
.ye7{bottom:693.105000px;}
.y16{bottom:699.945000px;}
.yfc{bottom:704.445000px;}
.ybd{bottom:714.165000px;}
.y45{bottom:714.885000px;}
.y96{bottom:723.345000px;}
.ye6{bottom:724.065000px;}
.yfb{bottom:725.145000px;}
.y15{bottom:741.345000px;}
.ybc{bottom:745.305000px;}
.y44{bottom:745.845000px;}
.y95{bottom:754.485000px;}
.ye5{bottom:755.205000px;}
.y14{bottom:762.045000px;}
.y10b{bottom:766.545000px;}
.ybb{bottom:776.265000px;}
.y43{bottom:776.985000px;}
.y13{bottom:782.745000px;}
.y94{bottom:785.445000px;}
.ye4{bottom:786.165000px;}
.y10a{bottom:787.245000px;}
.y12{bottom:803.445000px;}
.yba{bottom:807.405000px;}
.y42{bottom:807.945000px;}
.y93{bottom:816.585000px;}
.ye3{bottom:817.305000px;}
.y11{bottom:824.145000px;}
.y41{bottom:828.645000px;}
.yb9{bottom:838.365000px;}
.y5e{bottom:839.085000px;}
.y10{bottom:844.845000px;}
.ye2{bottom:845.745000px;}
.y92{bottom:847.545000px;}
.y40{bottom:849.345000px;}
.yb7{bottom:855.105000px;}
.yf{bottom:865.590000px;}
.y3f{bottom:870.090000px;}
.ye1{bottom:871.710000px;}
.y91{bottom:878.730000px;}
.yb6{bottom:881.970000px;}
.ye{bottom:886.290000px;}
.y3e{bottom:890.790000px;}
.ye0{bottom:897.630000px;}
.y5d{bottom:901.230000px;}
.yd{bottom:906.990000px;}
.y90{bottom:907.350000px;}
.yb5{bottom:908.790000px;}
.y3d{bottom:911.490000px;}
.ydf{bottom:923.550000px;}
.yc{bottom:927.690000px;}
.y8f{bottom:931.650000px;}
.y3c{bottom:932.190000px;}
.yb4{bottom:935.790000px;}
.yb{bottom:948.210000px;}
.yde{bottom:949.290000px;}
.y3b{bottom:952.890000px;}
.yb3{bottom:961.170000px;}
.y5c{bottom:963.330000px;}
.ya{bottom:968.910000px;}
.y3a{bottom:973.590000px;}
.ydd{bottom:975.210000px;}
.yb1{bottom:987.990000px;}
.y9{bottom:989.610000px;}
.y39{bottom:994.290000px;}
.ydc{bottom:1003.650000px;}
.y8{bottom:1010.310000px;}
.y38{bottom:1014.990000px;}
.y5b{bottom:1025.430000px;}
.ydb{bottom:1032.090000px;}
.y37{bottom:1035.690000px;}
.yad{bottom:1040.370000px;}
.y7{bottom:1046.130000px;}
.y36{bottom:1056.390000px;}
.y6{bottom:1067.370000px;}
.y35{bottom:1077.090000px;}
.yab{bottom:1085.190000px;}
.y5a{bottom:1087.530000px;}
.y5{bottom:1091.490000px;}
.y34{bottom:1097.790000px;}
.y4{bottom:1115.610000px;}
.y33{bottom:1118.490000px;}
.y8e{bottom:1121.190000px;}
.y2{bottom:1195.380000px;}
.y1{bottom:1231.740000px;}
.he{height:22.680000px;}
.h12{height:23.940000px;}
.h13{height:25.380000px;}
.h14{height:25.416000px;}
.h10{height:41.400000px;}
.h11{height:47.321367px;}
.h4{height:48.234023px;}
.hf{height:48.616875px;}
.h9{height:58.651172px;}
.hc{height:60.226875px;}
.h3{height:61.423863px;}
.ha{height:64.546875px;}
.h8{height:70.628906px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:74.004654px;}
.hb{height:74.704922px;}
.h2{height:76.317188px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:89.856000px;}
.w7{width:99.900000px;}
.w6{width:100.116000px;}
.wa{width:104.040000px;}
.w8{width:130.536000px;}
.w5{width:138.240000px;}
.w4{width:327.495000px;}
.w3{width:341.310000px;}
.wb{width:671.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.380000px;}
.x2c{left:32.754000px;}
.x12{left:127.655987px;}
.x25{left:129.096000px;}
.x8{left:133.775987px;}
.x4{left:138.635987px;}
.x9{left:139.715987px;}
.x5{left:142.415987px;}
.x24{left:153.029987px;}
.x21{left:160.589987px;}
.x17{left:180.749987px;}
.x11{left:191.549987px;}
.x31{left:199.649987px;}
.xc{left:208.289987px;}
.x20{left:212.609987px;}
.x6{left:215.129987px;}
.x1f{left:216.929987px;}
.x30{left:231.509987px;}
.x32{left:245.549987px;}
.x18{left:248.429987px;}
.x1e{left:255.269987px;}
.x2f{left:261.929987px;}
.x28{left:268.770000px;}
.xb{left:288.254987px;}
.x16{left:297.794987px;}
.xe{left:304.634987px;}
.xd{left:310.394987px;}
.x3{left:312.914987px;}
.x7{left:318.674987px;}
.x1a{left:334.334987px;}
.x10{left:341.714987px;}
.x29{left:370.515000px;}
.xa{left:375.734987px;}
.xf{left:389.054987px;}
.x23{left:398.414987px;}
.x2e{left:402.374987px;}
.x15{left:405.254987px;}
.x1c{left:417.134987px;}
.x14{left:421.814987px;}
.x2{left:467.894987px;}
.x27{left:472.035000px;}
.x13{left:499.784987px;}
.x22{left:568.004987px;}
.x2d{left:584.924987px;}
.x2a{left:604.005000px;}
.x1b{left:612.104987px;}
.x19{left:651.884987px;}
.x2b{left:695.490000px;}
.x1d{left:788.729987px;}
.x1{left:798.449987px;}
@media print{
.v3{vertical-align:-83.840000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.332800pt;}
.ls9{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls10{letter-spacing:3.968000pt;}
.ls7{letter-spacing:5.760000pt;}
.lse{letter-spacing:7.168000pt;}
.ls11{letter-spacing:14.208000pt;}
.lsf{letter-spacing:19.328000pt;}
.ls2{letter-spacing:31.360000pt;}
.ls1{letter-spacing:825.760000pt;}
.ls3{letter-spacing:1079.946667pt;}
.ls15{letter-spacing:1193.738667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-3.968000pt;}
._8{margin-left:-2.490880pt;}
._1{margin-left:-0.898560pt;}
._0{width:0.903040pt;}
._6{width:2.424960pt;}
._e{width:3.392000pt;}
._a{width:4.480000pt;}
._b{width:5.440000pt;}
._10{width:7.104000pt;}
._1c{width:8.062080pt;}
._11{width:8.975360pt;}
._4{width:10.176000pt;}
._5{width:11.256960pt;}
._c{width:12.672000pt;}
._f{width:14.051413pt;}
._14{width:15.055360pt;}
._17{width:16.520320pt;}
._7{width:17.477120pt;}
._2{width:18.368000pt;}
._3{width:19.776000pt;}
._16{width:21.248000pt;}
._15{width:22.338560pt;}
._1e{width:23.334187pt;}
._1a{width:24.362667pt;}
._1b{width:26.082560pt;}
._1d{width:27.136000pt;}
._12{width:28.736000pt;}
._13{width:29.760000pt;}
._d{width:31.213227pt;}
._18{width:32.960000pt;}
._19{width:33.920000pt;}
._1f{width:67.178667pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:8.320000pt;}
.yac{bottom:10.080000pt;}
.yb0{bottom:11.200000pt;}
.yb2{bottom:12.480000pt;}
.yb8{bottom:12.520000pt;}
.y3{bottom:25.920000pt;}
.yae{bottom:26.720000pt;}
.y85{bottom:79.872000pt;}
.yda{bottom:80.032000pt;}
.y59{bottom:83.392000pt;}
.y8d{bottom:85.792000pt;}
.y32{bottom:88.512000pt;}
.yaa{bottom:91.072000pt;}
.yfa{bottom:91.552000pt;}
.y109{bottom:92.672000pt;}
.y8c{bottom:95.552000pt;}
.y70{bottom:101.792000pt;}
.y31{bottom:106.912000pt;}
.y84{bottom:107.392000pt;}
.yd9{bottom:107.552000pt;}
.y7a{bottom:108.672000pt;}
.ycf{bottom:110.432000pt;}
.y58{bottom:111.072000pt;}
.ya9{bottom:118.592000pt;}
.yf9{bottom:119.232000pt;}
.y8b{bottom:123.232000pt;}
.y30{bottom:125.312000pt;}
.y6f{bottom:129.472000pt;}
.y83{bottom:135.066667pt;}
.yd8{bottom:135.226667pt;}
.y79{bottom:136.346667pt;}
.yce{bottom:137.946667pt;}
.y57{bottom:138.586667pt;}
.y2f{bottom:143.706667pt;}
.ya8{bottom:146.266667pt;}
.yf8{bottom:146.746667pt;}
.y108{bottom:147.866667pt;}
.y8a{bottom:150.746667pt;}
.y6e{bottom:156.986667pt;}
.y2e{bottom:162.106667pt;}
.y82{bottom:162.586667pt;}
.yd7{bottom:162.746667pt;}
.y78{bottom:163.866667pt;}
.ycd{bottom:165.626667pt;}
.y56{bottom:166.266667pt;}
.ya7{bottom:173.786667pt;}
.yf7{bottom:174.426667pt;}
.y89{bottom:178.426667pt;}
.y2d{bottom:180.506667pt;}
.y6d{bottom:184.666667pt;}
.y81{bottom:190.266667pt;}
.yd6{bottom:190.426667pt;}
.y77{bottom:191.546667pt;}
.ycc{bottom:193.146667pt;}
.y55{bottom:193.786667pt;}
.y2c{bottom:198.906667pt;}
.ya6{bottom:201.466667pt;}
.yf6{bottom:201.946667pt;}
.y107{bottom:203.066667pt;}
.y88{bottom:205.946667pt;}
.y6c{bottom:212.186667pt;}
.y80{bottom:217.786667pt;}
.yd5{bottom:217.946667pt;}
.y11d{bottom:218.906667pt;}
.y76{bottom:219.066667pt;}
.ycb{bottom:220.826667pt;}
.y54{bottom:221.466667pt;}
.ya5{bottom:228.986667pt;}
.yf5{bottom:229.626667pt;}
.y87{bottom:231.386667pt;}
.y2b{bottom:235.706667pt;}
.y6b{bottom:239.866667pt;}
.y11c{bottom:240.346667pt;}
.y7f{bottom:245.466667pt;}
.yd4{bottom:245.626667pt;}
.y75{bottom:246.746667pt;}
.yca{bottom:248.346667pt;}
.y53{bottom:248.986667pt;}
.y86{bottom:252.986667pt;}
.y2a{bottom:254.106667pt;}
.ya4{bottom:256.666667pt;}
.yf4{bottom:257.146667pt;}
.y106{bottom:258.266667pt;}
.y11b{bottom:261.786667pt;}
.y6a{bottom:267.386667pt;}
.y29{bottom:272.506667pt;}
.y7e{bottom:272.986667pt;}
.yd3{bottom:273.146667pt;}
.y74{bottom:274.266667pt;}
.yc9{bottom:276.026667pt;}
.y52{bottom:276.666667pt;}
.y11a{bottom:283.226667pt;}
.ya3{bottom:284.186667pt;}
.yf3{bottom:284.826667pt;}
.y28{bottom:290.906667pt;}
.y69{bottom:295.106667pt;}
.y7d{bottom:298.466667pt;}
.yd2{bottom:298.626667pt;}
.y73{bottom:301.986667pt;}
.yc8{bottom:303.586667pt;}
.y51{bottom:304.226667pt;}
.y119{bottom:304.706667pt;}
.y27{bottom:309.346667pt;}
.ya2{bottom:311.906667pt;}
.yf2{bottom:312.386667pt;}
.y105{bottom:313.506667pt;}
.y7c{bottom:320.066667pt;}
.yd1{bottom:320.226667pt;}
.y68{bottom:322.626667pt;}
.y118{bottom:326.146667pt;}
.y26{bottom:327.746667pt;}
.y72{bottom:329.506667pt;}
.yc7{bottom:331.266667pt;}
.y50{bottom:331.906667pt;}
.ya1{bottom:339.426667pt;}
.yf1{bottom:340.066667pt;}
.y25{bottom:346.146667pt;}
.y117{bottom:347.746667pt;}
.y67{bottom:350.306667pt;}
.y71{bottom:357.986667pt;}
.yc6{bottom:358.786667pt;}
.y4f{bottom:359.426667pt;}
.y24{bottom:364.546667pt;}
.ya0{bottom:366.946667pt;}
.yf0{bottom:367.586667pt;}
.y104{bottom:368.706667pt;}
.y116{bottom:369.186667pt;}
.y66{bottom:377.826667pt;}
.y23{bottom:382.946667pt;}
.yc5{bottom:386.466667pt;}
.y4e{bottom:387.106667pt;}
.y115{bottom:390.626667pt;}
.y9f{bottom:394.626667pt;}
.yef{bottom:395.266667pt;}
.y22{bottom:401.346667pt;}
.y65{bottom:405.506667pt;}
.y114{bottom:412.066667pt;}
.yc4{bottom:413.986667pt;}
.y4d{bottom:414.626667pt;}
.y21{bottom:419.746667pt;}
.y9e{bottom:422.146667pt;}
.yee{bottom:422.786667pt;}
.y64{bottom:423.266667pt;}
.y103{bottom:423.906667pt;}
.y113{bottom:433.506667pt;}
.y20{bottom:438.146667pt;}
.y63{bottom:438.466667pt;}
.yc3{bottom:441.666667pt;}
.y4c{bottom:442.306667pt;}
.y7b{bottom:444.706667pt;}
.y9d{bottom:449.826667pt;}
.yed{bottom:450.466667pt;}
.y62{bottom:453.826667pt;}
.y112{bottom:454.946667pt;}
.y1f{bottom:456.546667pt;}
.y102{bottom:460.706667pt;}
.y61{bottom:469.186667pt;}
.y4b{bottom:469.826667pt;}
.y1e{bottom:474.946667pt;}
.yd0{bottom:475.906667pt;}
.y111{bottom:476.546667pt;}
.y9c{bottom:477.346667pt;}
.yec{bottom:477.986667pt;}
.y101{bottom:479.106667pt;}
.y60{bottom:484.546667pt;}
.y1d{bottom:493.346667pt;}
.yc2{bottom:496.866667pt;}
.y4a{bottom:497.506667pt;}
.y110{bottom:497.986667pt;}
.y5f{bottom:499.906667pt;}
.y9b{bottom:505.026667pt;}
.yeb{bottom:505.666667pt;}
.y1c{bottom:511.746667pt;}
.y100{bottom:515.906667pt;}
.y10f{bottom:519.426667pt;}
.yc1{bottom:524.386667pt;}
.y49{bottom:525.026667pt;}
.y1b{bottom:530.173333pt;}
.y9a{bottom:532.573333pt;}
.yea{bottom:533.213333pt;}
.yff{bottom:534.333333pt;}
.y10e{bottom:540.893333pt;}
.y1a{bottom:548.573333pt;}
.yc0{bottom:552.093333pt;}
.y48{bottom:552.573333pt;}
.y99{bottom:560.253333pt;}
.ye9{bottom:560.893333pt;}
.y10d{bottom:562.333333pt;}
.y19{bottom:566.973333pt;}
.yfe{bottom:570.973333pt;}
.ybf{bottom:579.613333pt;}
.y47{bottom:580.253333pt;}
.y10c{bottom:583.773333pt;}
.y18{bottom:585.373333pt;}
.y98{bottom:587.773333pt;}
.ye8{bottom:588.413333pt;}
.yfd{bottom:589.373333pt;}
.y17{bottom:603.773333pt;}
.ybe{bottom:607.293333pt;}
.y46{bottom:607.773333pt;}
.y97{bottom:615.453333pt;}
.ye7{bottom:616.093333pt;}
.y16{bottom:622.173333pt;}
.yfc{bottom:626.173333pt;}
.ybd{bottom:634.813333pt;}
.y45{bottom:635.453333pt;}
.y96{bottom:642.973333pt;}
.ye6{bottom:643.613333pt;}
.yfb{bottom:644.573333pt;}
.y15{bottom:658.973333pt;}
.ybc{bottom:662.493333pt;}
.y44{bottom:662.973333pt;}
.y95{bottom:670.653333pt;}
.ye5{bottom:671.293333pt;}
.y14{bottom:677.373333pt;}
.y10b{bottom:681.373333pt;}
.ybb{bottom:690.013333pt;}
.y43{bottom:690.653333pt;}
.y13{bottom:695.773333pt;}
.y94{bottom:698.173333pt;}
.ye4{bottom:698.813333pt;}
.y10a{bottom:699.773333pt;}
.y12{bottom:714.173333pt;}
.yba{bottom:717.693333pt;}
.y42{bottom:718.173333pt;}
.y93{bottom:725.853333pt;}
.ye3{bottom:726.493333pt;}
.y11{bottom:732.573333pt;}
.y41{bottom:736.573333pt;}
.yb9{bottom:745.213333pt;}
.y5e{bottom:745.853333pt;}
.y10{bottom:750.973333pt;}
.ye2{bottom:751.773333pt;}
.y92{bottom:753.373333pt;}
.y40{bottom:754.973333pt;}
.yb7{bottom:760.093333pt;}
.yf{bottom:769.413333pt;}
.y3f{bottom:773.413333pt;}
.ye1{bottom:774.853333pt;}
.y91{bottom:781.093333pt;}
.yb6{bottom:783.973333pt;}
.ye{bottom:787.813333pt;}
.y3e{bottom:791.813333pt;}
.ye0{bottom:797.893333pt;}
.y5d{bottom:801.093333pt;}
.yd{bottom:806.213333pt;}
.y90{bottom:806.533333pt;}
.yb5{bottom:807.813333pt;}
.y3d{bottom:810.213333pt;}
.ydf{bottom:820.933333pt;}
.yc{bottom:824.613333pt;}
.y8f{bottom:828.133333pt;}
.y3c{bottom:828.613333pt;}
.yb4{bottom:831.813333pt;}
.yb{bottom:842.853333pt;}
.yde{bottom:843.813333pt;}
.y3b{bottom:847.013333pt;}
.yb3{bottom:854.373333pt;}
.y5c{bottom:856.293333pt;}
.ya{bottom:861.253333pt;}
.y3a{bottom:865.413333pt;}
.ydd{bottom:866.853333pt;}
.yb1{bottom:878.213333pt;}
.y9{bottom:879.653333pt;}
.y39{bottom:883.813333pt;}
.ydc{bottom:892.133333pt;}
.y8{bottom:898.053333pt;}
.y38{bottom:902.213333pt;}
.y5b{bottom:911.493333pt;}
.ydb{bottom:917.413333pt;}
.y37{bottom:920.613333pt;}
.yad{bottom:924.773333pt;}
.y7{bottom:929.893333pt;}
.y36{bottom:939.013333pt;}
.y6{bottom:948.773333pt;}
.y35{bottom:957.413333pt;}
.yab{bottom:964.613333pt;}
.y5a{bottom:966.693333pt;}
.y5{bottom:970.213333pt;}
.y34{bottom:975.813333pt;}
.y4{bottom:991.653333pt;}
.y33{bottom:994.213333pt;}
.y8e{bottom:996.613333pt;}
.y2{bottom:1062.560000pt;}
.y1{bottom:1094.880000pt;}
.he{height:20.160000pt;}
.h12{height:21.280000pt;}
.h13{height:22.560000pt;}
.h14{height:22.592000pt;}
.h10{height:36.800000pt;}
.h11{height:42.063437pt;}
.h4{height:42.874688pt;}
.hf{height:43.215000pt;}
.h9{height:52.134375pt;}
.hc{height:53.535000pt;}
.h3{height:54.598989pt;}
.ha{height:57.375000pt;}
.h8{height:62.781250pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:65.781915pt;}
.hb{height:66.404375pt;}
.h2{height:67.837500pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:79.872000pt;}
.w7{width:88.800000pt;}
.w6{width:88.992000pt;}
.wa{width:92.480000pt;}
.w8{width:116.032000pt;}
.w5{width:122.880000pt;}
.w4{width:291.106667pt;}
.w3{width:303.386667pt;}
.wb{width:597.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.560000pt;}
.x2c{left:29.114667pt;}
.x12{left:113.471988pt;}
.x25{left:114.752000pt;}
.x8{left:118.911988pt;}
.x4{left:123.231988pt;}
.x9{left:124.191988pt;}
.x5{left:126.591988pt;}
.x24{left:136.026655pt;}
.x21{left:142.746655pt;}
.x17{left:160.666655pt;}
.x11{left:170.266655pt;}
.x31{left:177.466655pt;}
.xc{left:185.146655pt;}
.x20{left:188.986655pt;}
.x6{left:191.226655pt;}
.x1f{left:192.826655pt;}
.x30{left:205.786655pt;}
.x32{left:218.266655pt;}
.x18{left:220.826655pt;}
.x1e{left:226.906655pt;}
.x2f{left:232.826655pt;}
.x28{left:238.906667pt;}
.xb{left:256.226655pt;}
.x16{left:264.706655pt;}
.xe{left:270.786655pt;}
.xd{left:275.906655pt;}
.x3{left:278.146655pt;}
.x7{left:283.266655pt;}
.x1a{left:297.186655pt;}
.x10{left:303.746655pt;}
.x29{left:329.346667pt;}
.xa{left:333.986655pt;}
.xf{left:345.826655pt;}
.x23{left:354.146655pt;}
.x2e{left:357.666655pt;}
.x15{left:360.226655pt;}
.x1c{left:370.786655pt;}
.x14{left:374.946655pt;}
.x2{left:415.906655pt;}
.x27{left:419.586667pt;}
.x13{left:444.253322pt;}
.x22{left:504.893322pt;}
.x2d{left:519.933322pt;}
.x2a{left:536.893333pt;}
.x1b{left:544.093322pt;}
.x19{left:579.453322pt;}
.x2b{left:618.213333pt;}
.x1d{left:701.093322pt;}
.x1{left:709.733322pt;}
}




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