
    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_8f4c03000b72dc9834cfa014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_297ed366c6c7d32c1f3bd10e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_6bf75dbedfbc10364e742ba1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16a9972be997b3107c5dbd90.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_2d22462cc8e121b5714598d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962891;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_8db6f16f28aeb8ce7ff4c7a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_79c77625ffabecaec181719c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.564600px;}
.ls3{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.270600px;}
.lsf{letter-spacing:-0.265200px;}
.lse{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.316800px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.382800px;}
.ls6{letter-spacing:1.560000px;}
.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:-14.955600px;}
.ws9{word-spacing:-14.889600px;}
.wsb{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.463600px;}
.wsd{word-spacing:-14.307600px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.612800px;}
.ws8{word-spacing:-9.092400px;}
.ws6{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws3{word-spacing:-0.041760px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-5.166720px;}
._6{margin-left:-4.040640px;}
._7{margin-left:-2.622000px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._c{width:2.188560px;}
._a{width:3.286800px;}
._b{width:5.019840px;}
._f{width:6.581040px;}
._10{width:7.686240px;}
._20{width:8.694240px;}
._1a{width:9.729120px;}
._9{width:10.995840px;}
._15{width:12.850560px;}
._13{width:14.148000px;}
._14{width:15.632640px;}
._16{width:16.692480px;}
._1c{width:18.480960px;}
._e{width:20.198880px;}
._11{width:21.513600px;}
._12{width:23.127120px;}
._d{width:25.039440px;}
._22{width:26.250480px;}
._1d{width:27.622080px;}
._21{width:28.946880px;}
._26{width:30.205440px;}
._27{width:31.417200px;}
._25{width:33.490080px;}
._17{width:35.040960px;}
._1f{width:36.496320px;}
._8{width:37.768320px;}
._24{width:44.861760px;}
._23{width:45.923760px;}
._18{width:47.034480px;}
._1e{width:50.209920px;}
._0{width:75.000000px;}
._29{width:151.888320px;}
._28{width:180.106560px;}
._3{width:181.620000px;}
._4{width:197.349840px;}
._5{width:202.852800px;}
._2a{width:316.825920px;}
._19{width:1056.007200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:3.600000px;}
.yde{bottom:3.780000px;}
.ya1{bottom:15.660000px;}
.y85{bottom:15.840000px;}
.yf4{bottom:23.034000px;}
.yb6{bottom:23.040000px;}
.y50{bottom:26.280000px;}
.ya0{bottom:34.920000px;}
.yb3{bottom:35.100000px;}
.yf6{bottom:35.130000px;}
.yb5{bottom:42.294000px;}
.yf3{bottom:42.474000px;}
.y4f{bottom:46.980000px;}
.y9f{bottom:54.360000px;}
.yd6{bottom:54.390000px;}
.yb2{bottom:54.540000px;}
.y8{bottom:56.520000px;}
.yd4{bottom:61.734000px;}
.y4e{bottom:65.700000px;}
.y7{bottom:70.596000px;}
.y9e{bottom:73.620000px;}
.yb1{bottom:73.800000px;}
.y4d{bottom:76.140000px;}
.yd3{bottom:80.994000px;}
.yf2{bottom:81.174000px;}
.y6{bottom:84.636000px;}
.y4c{bottom:86.760000px;}
.y9d{bottom:93.060000px;}
.y4b{bottom:97.380000px;}
.yd2{bottom:100.434000px;}
.ydb{bottom:109.836000px;}
.y9c{bottom:112.320000px;}
.yb0{bottom:112.500000px;}
.y12d{bottom:113.796000px;}
.y4a{bottom:114.840000px;}
.yd1{bottom:119.694000px;}
.y129{bottom:119.736000px;}
.yf1{bottom:119.874000px;}
.yb4{bottom:122.616000px;}
.y9b{bottom:131.760000px;}
.ye0{bottom:131.790000px;}
.y12c{bottom:133.236000px;}
.y128{bottom:138.996000px;}
.yd0{bottom:139.134000px;}
.yee{bottom:141.876000px;}
.y3d{bottom:148.176000px;}
.y9a{bottom:151.020000px;}
.yaf{bottom:151.200000px;}
.y12b{bottom:152.490000px;}
.y84{bottom:155.370000px;}
.ycf{bottom:158.394000px;}
.y127{bottom:158.430000px;}
.yf0{bottom:158.574000px;}
.y49{bottom:159.300000px;}
.y3c{bottom:167.610000px;}
.y99{bottom:170.280000px;}
.yba{bottom:170.460000px;}
.yae{bottom:170.505000px;}
.y12a{bottom:171.930000px;}
.y126{bottom:177.690000px;}
.yce{bottom:177.834000px;}
.y48{bottom:178.740000px;}
.ya2{bottom:181.290000px;}
.y3b{bottom:186.870000px;}
.y98{bottom:189.720000px;}
.yad{bottom:189.945000px;}
.y83{bottom:191.190000px;}
.y47{bottom:192.960000px;}
.ycd{bottom:197.094000px;}
.y125{bottom:197.130000px;}
.yef{bottom:197.319000px;}
.y3a{bottom:206.310000px;}
.y46{bottom:207.000000px;}
.y97{bottom:208.980000px;}
.yda{bottom:209.160000px;}
.yc8{bottom:209.190000px;}
.yac{bottom:209.205000px;}
.y82{bottom:210.630000px;}
.y124{bottom:216.390000px;}
.ydd{bottom:216.534000px;}
.ycc{bottom:216.579000px;}
.y45{bottom:221.085000px;}
.y39{bottom:225.570000px;}
.y96{bottom:228.420000px;}
.yc7{bottom:228.450000px;}
.yd8{bottom:228.465000px;}
.yab{bottom:228.645000px;}
.y81{bottom:229.890000px;}
.y44{bottom:234.945000px;}
.y123{bottom:235.830000px;}
.ycb{bottom:235.839000px;}
.y38{bottom:245.010000px;}
.y95{bottom:247.680000px;}
.yed{bottom:247.710000px;}
.yc6{bottom:247.890000px;}
.yaa{bottom:247.905000px;}
.y43{bottom:248.985000px;}
.y80{bottom:249.330000px;}
.y122{bottom:255.090000px;}
.yca{bottom:255.099000px;}
.ydc{bottom:255.279000px;}
.y42{bottom:263.025000px;}
.y37{bottom:264.270000px;}
.yb9{bottom:267.150000px;}
.y94{bottom:267.165000px;}
.ya9{bottom:267.345000px;}
.y7f{bottom:268.590000px;}
.y121{bottom:274.350000px;}
.yc9{bottom:274.539000px;}
.y41{bottom:277.065000px;}
.y36{bottom:283.530000px;}
.yec{bottom:286.410000px;}
.y93{bottom:286.425000px;}
.yc5{bottom:286.590000px;}
.ya8{bottom:286.605000px;}
.y7e{bottom:287.850000px;}
.y40{bottom:291.105000px;}
.y120{bottom:293.790000px;}
.y35{bottom:302.970000px;}
.y3f{bottom:305.505000px;}
.yc4{bottom:305.850000px;}
.y92{bottom:305.865000px;}
.ya7{bottom:306.045000px;}
.y7d{bottom:307.290000px;}
.y11f{bottom:313.050000px;}
.y34{bottom:322.230000px;}
.yeb{bottom:325.110000px;}
.y91{bottom:325.125000px;}
.yc3{bottom:325.290000px;}
.ya6{bottom:325.305000px;}
.y7c{bottom:326.550000px;}
.y11e{bottom:332.490000px;}
.y33{bottom:341.715000px;}
.yc2{bottom:344.550000px;}
.y90{bottom:344.565000px;}
.ya5{bottom:344.745000px;}
.y7b{bottom:346.035000px;}
.y11d{bottom:351.795000px;}
.y32{bottom:360.975000px;}
.yea{bottom:363.810000px;}
.y8f{bottom:363.825000px;}
.yc1{bottom:363.990000px;}
.ya4{bottom:364.005000px;}
.y7a{bottom:365.295000px;}
.y11c{bottom:371.235000px;}
.y31{bottom:380.055000px;}
.yd9{bottom:381.495000px;}
.yc0{bottom:383.250000px;}
.y8e{bottom:383.265000px;}
.y79{bottom:384.735000px;}
.y11b{bottom:390.495000px;}
.ye1{bottom:394.275000px;}
.y30{bottom:397.695000px;}
.ye9{bottom:402.510000px;}
.y8d{bottom:402.525000px;}
.ybf{bottom:402.690000px;}
.ya3{bottom:402.705000px;}
.y78{bottom:403.995000px;}
.ybd{bottom:409.890000px;}
.y11a{bottom:409.935000px;}
.ybb{bottom:413.535000px;}
.y2f{bottom:415.335000px;}
.ybe{bottom:421.950000px;}
.y8c{bottom:421.965000px;}
.y77{bottom:423.435000px;}
.y119{bottom:429.195000px;}
.y2e{bottom:432.795000px;}
.ybc{bottom:441.210000px;}
.y8b{bottom:441.225000px;}
.y76{bottom:442.695000px;}
.y118{bottom:448.635000px;}
.y2d{bottom:450.435000px;}
.ye8{bottom:460.470000px;}
.y8a{bottom:460.485000px;}
.y75{bottom:462.135000px;}
.y117{bottom:467.895000px;}
.y2c{bottom:468.075000px;}
.y89{bottom:479.925000px;}
.ye7{bottom:479.955000px;}
.y74{bottom:481.395000px;}
.y2b{bottom:485.715000px;}
.y116{bottom:487.335000px;}
.y88{bottom:499.185000px;}
.ye6{bottom:499.215000px;}
.y73{bottom:500.835000px;}
.y2a{bottom:503.175000px;}
.y115{bottom:506.595000px;}
.y87{bottom:518.655000px;}
.y72{bottom:520.095000px;}
.y29{bottom:520.815000px;}
.y114{bottom:526.035000px;}
.ye5{bottom:537.915000px;}
.y28{bottom:538.455000px;}
.y71{bottom:539.535000px;}
.y113{bottom:545.295000px;}
.y27{bottom:555.915000px;}
.ye4{bottom:557.355000px;}
.y70{bottom:558.795000px;}
.y112{bottom:564.555000px;}
.y26{bottom:573.555000px;}
.ye3{bottom:576.615000px;}
.y6f{bottom:578.055000px;}
.y111{bottom:583.995000px;}
.y25{bottom:591.195000px;}
.ye2{bottom:596.055000px;}
.y6e{bottom:597.495000px;}
.y110{bottom:603.255000px;}
.y24{bottom:611.025000px;}
.y6d{bottom:616.785000px;}
.y86{bottom:619.845000px;}
.y10f{bottom:622.725000px;}
.y23{bottom:628.665000px;}
.y6c{bottom:636.225000px;}
.y10e{bottom:641.985000px;}
.y22{bottom:646.125000px;}
.y6b{bottom:655.485000px;}
.y3e{bottom:656.925000px;}
.y10d{bottom:661.425000px;}
.y21{bottom:663.765000px;}
.yd7{bottom:665.025000px;}
.y6a{bottom:674.925000px;}
.y10c{bottom:680.685000px;}
.y20{bottom:681.405000px;}
.y69{bottom:694.185000px;}
.y1f{bottom:698.865000px;}
.y10b{bottom:700.125000px;}
.y68{bottom:713.625000px;}
.y1e{bottom:716.505000px;}
.y10a{bottom:719.385000px;}
.y67{bottom:732.885000px;}
.y1d{bottom:734.145000px;}
.y109{bottom:738.825000px;}
.y1c{bottom:751.605000px;}
.y66{bottom:752.325000px;}
.y108{bottom:758.085000px;}
.y1b{bottom:769.245000px;}
.y65{bottom:771.585000px;}
.y107{bottom:777.525000px;}
.y1a{bottom:786.885000px;}
.y64{bottom:791.025000px;}
.y106{bottom:796.785000px;}
.y19{bottom:804.525000px;}
.y63{bottom:810.285000px;}
.y105{bottom:816.225000px;}
.y18{bottom:821.985000px;}
.y62{bottom:829.725000px;}
.y104{bottom:835.485000px;}
.y17{bottom:839.625000px;}
.y61{bottom:848.985000px;}
.y103{bottom:854.745000px;}
.y16{bottom:857.265000px;}
.y60{bottom:868.245000px;}
.yb8{bottom:871.350000px;}
.y102{bottom:874.230000px;}
.y15{bottom:874.770000px;}
.y5f{bottom:887.730000px;}
.y14{bottom:892.410000px;}
.y101{bottom:893.490000px;}
.y5e{bottom:906.990000px;}
.y13{bottom:910.050000px;}
.y100{bottom:912.930000px;}
.y5d{bottom:926.430000px;}
.y12{bottom:927.510000px;}
.yff{bottom:932.190000px;}
.y11{bottom:945.150000px;}
.y5c{bottom:945.690000px;}
.yfe{bottom:951.630000px;}
.y10{bottom:962.790000px;}
.y5b{bottom:965.130000px;}
.yfd{bottom:970.890000px;}
.yf{bottom:980.610000px;}
.y5a{bottom:984.390000px;}
.yfc{bottom:990.330000px;}
.ye{bottom:1001.670000px;}
.y59{bottom:1003.830000px;}
.ydf{bottom:1006.710000px;}
.yfb{bottom:1009.590000px;}
.yd{bottom:1019.850000px;}
.y58{bottom:1023.090000px;}
.yfa{bottom:1029.030000px;}
.yc{bottom:1042.530000px;}
.yf9{bottom:1048.290000px;}
.y57{bottom:1061.790000px;}
.yb{bottom:1062.510000px;}
.yf8{bottom:1067.730000px;}
.y56{bottom:1081.230000px;}
.yd5{bottom:1084.110000px;}
.ya{bottom:1085.370000px;}
.yf7{bottom:1086.990000px;}
.y55{bottom:1100.490000px;}
.yf5{bottom:1103.370000px;}
.y9{bottom:1108.230000px;}
.y54{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y53{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y52{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y51{bottom:1197.540000px;}
.hc{height:30.480469px;}
.he{height:31.500000px;}
.ha{height:33.683203px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.hb{height:50.273438px;}
.h8{height:50.597578px;}
.h1b{height:50.796000px;}
.h6{height:56.084062px;}
.h11{height:57.960000px;}
.hd{height:58.819922px;}
.h7{height:58.843828px;}
.h5{height:65.837812px;}
.h15{height:70.056000px;}
.h18{height:147.456000px;}
.h1a{height:251.490000px;}
.h17{height:270.930000px;}
.h12{height:282.810000px;}
.h14{height:290.190000px;}
.h9{height:318.270000px;}
.h16{height:418.350000px;}
.h10{height:437.655000px;}
.h13{height:456.870000px;}
.hf{height:534.315000px;}
.h19{height:611.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:41.220000px;}
.w7{width:136.260000px;}
.w8{width:151.590000px;}
.w5{width:158.070000px;}
.w6{width:167.970000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.xb{left:94.494000px;}
.x1{left:108.035987px;}
.xa{left:113.076000px;}
.x2{left:116.135987px;}
.xd{left:117.576000px;}
.x6{left:131.075987px;}
.x3{left:134.135987px;}
.xf{left:159.510000px;}
.x9{left:162.029987px;}
.x7{left:259.049987px;}
.x10{left:318.315000px;}
.x8{left:335.774987px;}
.xc{left:342.614987px;}
.x4{left:378.254987px;}
.x5{left:446.474987px;}
.x13{left:456.374987px;}
.x11{left:487.185000px;}
.x12{left:624.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.501867pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.240533pt;}
.lsf{letter-spacing:-0.235733pt;}
.lse{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.281600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.340267pt;}
.ls6{letter-spacing:1.386667pt;}
.wsa{word-spacing:-13.293867pt;}
.ws9{word-spacing:-13.235200pt;}
.wsb{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.856533pt;}
.wsd{word-spacing:-12.717867pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws8{word-spacing:-8.082133pt;}
.ws6{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws3{word-spacing:-0.037120pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-4.592640pt;}
._6{margin-left:-3.591680pt;}
._7{margin-left:-2.330667pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._c{width:1.945387pt;}
._a{width:2.921600pt;}
._b{width:4.462080pt;}
._f{width:5.849813pt;}
._10{width:6.832213pt;}
._20{width:7.728213pt;}
._1a{width:8.648107pt;}
._9{width:9.774080pt;}
._15{width:11.422720pt;}
._13{width:12.576000pt;}
._14{width:13.895680pt;}
._16{width:14.837760pt;}
._1c{width:16.427520pt;}
._e{width:17.954560pt;}
._11{width:19.123200pt;}
._12{width:20.557440pt;}
._d{width:22.257280pt;}
._22{width:23.333760pt;}
._1d{width:24.552960pt;}
._21{width:25.730560pt;}
._26{width:26.849280pt;}
._27{width:27.926400pt;}
._25{width:29.768960pt;}
._17{width:31.147520pt;}
._1f{width:32.441173pt;}
._8{width:33.571840pt;}
._24{width:39.877120pt;}
._23{width:40.821120pt;}
._18{width:41.808427pt;}
._1e{width:44.631040pt;}
._0{width:66.666667pt;}
._29{width:135.011840pt;}
._28{width:160.094720pt;}
._3{width:161.440000pt;}
._4{width:175.422080pt;}
._5{width:180.313600pt;}
._2a{width:281.623040pt;}
._19{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:3.200000pt;}
.yde{bottom:3.360000pt;}
.ya1{bottom:13.920000pt;}
.y85{bottom:14.080000pt;}
.yf4{bottom:20.474667pt;}
.yb6{bottom:20.480000pt;}
.y50{bottom:23.360000pt;}
.ya0{bottom:31.040000pt;}
.yb3{bottom:31.200000pt;}
.yf6{bottom:31.226667pt;}
.yb5{bottom:37.594667pt;}
.yf3{bottom:37.754667pt;}
.y4f{bottom:41.760000pt;}
.y9f{bottom:48.320000pt;}
.yd6{bottom:48.346667pt;}
.yb2{bottom:48.480000pt;}
.y8{bottom:50.240000pt;}
.yd4{bottom:54.874667pt;}
.y4e{bottom:58.400000pt;}
.y7{bottom:62.752000pt;}
.y9e{bottom:65.440000pt;}
.yb1{bottom:65.600000pt;}
.y4d{bottom:67.680000pt;}
.yd3{bottom:71.994667pt;}
.yf2{bottom:72.154667pt;}
.y6{bottom:75.232000pt;}
.y4c{bottom:77.120000pt;}
.y9d{bottom:82.720000pt;}
.y4b{bottom:86.560000pt;}
.yd2{bottom:89.274667pt;}
.ydb{bottom:97.632000pt;}
.y9c{bottom:99.840000pt;}
.yb0{bottom:100.000000pt;}
.y12d{bottom:101.152000pt;}
.y4a{bottom:102.080000pt;}
.yd1{bottom:106.394667pt;}
.y129{bottom:106.432000pt;}
.yf1{bottom:106.554667pt;}
.yb4{bottom:108.992000pt;}
.y9b{bottom:117.120000pt;}
.ye0{bottom:117.146667pt;}
.y12c{bottom:118.432000pt;}
.y128{bottom:123.552000pt;}
.yd0{bottom:123.674667pt;}
.yee{bottom:126.112000pt;}
.y3d{bottom:131.712000pt;}
.y9a{bottom:134.240000pt;}
.yaf{bottom:134.400000pt;}
.y12b{bottom:135.546667pt;}
.y84{bottom:138.106667pt;}
.ycf{bottom:140.794667pt;}
.y127{bottom:140.826667pt;}
.yf0{bottom:140.954667pt;}
.y49{bottom:141.600000pt;}
.y3c{bottom:148.986667pt;}
.y99{bottom:151.360000pt;}
.yba{bottom:151.520000pt;}
.yae{bottom:151.560000pt;}
.y12a{bottom:152.826667pt;}
.y126{bottom:157.946667pt;}
.yce{bottom:158.074667pt;}
.y48{bottom:158.880000pt;}
.ya2{bottom:161.146667pt;}
.y3b{bottom:166.106667pt;}
.y98{bottom:168.640000pt;}
.yad{bottom:168.840000pt;}
.y83{bottom:169.946667pt;}
.y47{bottom:171.520000pt;}
.ycd{bottom:175.194667pt;}
.y125{bottom:175.226667pt;}
.yef{bottom:175.394667pt;}
.y3a{bottom:183.386667pt;}
.y46{bottom:184.000000pt;}
.y97{bottom:185.760000pt;}
.yda{bottom:185.920000pt;}
.yc8{bottom:185.946667pt;}
.yac{bottom:185.960000pt;}
.y82{bottom:187.226667pt;}
.y124{bottom:192.346667pt;}
.ydd{bottom:192.474667pt;}
.ycc{bottom:192.514667pt;}
.y45{bottom:196.520000pt;}
.y39{bottom:200.506667pt;}
.y96{bottom:203.040000pt;}
.yc7{bottom:203.066667pt;}
.yd8{bottom:203.080000pt;}
.yab{bottom:203.240000pt;}
.y81{bottom:204.346667pt;}
.y44{bottom:208.840000pt;}
.y123{bottom:209.626667pt;}
.ycb{bottom:209.634667pt;}
.y38{bottom:217.786667pt;}
.y95{bottom:220.160000pt;}
.yed{bottom:220.186667pt;}
.yc6{bottom:220.346667pt;}
.yaa{bottom:220.360000pt;}
.y43{bottom:221.320000pt;}
.y80{bottom:221.626667pt;}
.y122{bottom:226.746667pt;}
.yca{bottom:226.754667pt;}
.ydc{bottom:226.914667pt;}
.y42{bottom:233.800000pt;}
.y37{bottom:234.906667pt;}
.yb9{bottom:237.466667pt;}
.y94{bottom:237.480000pt;}
.ya9{bottom:237.640000pt;}
.y7f{bottom:238.746667pt;}
.y121{bottom:243.866667pt;}
.yc9{bottom:244.034667pt;}
.y41{bottom:246.280000pt;}
.y36{bottom:252.026667pt;}
.yec{bottom:254.586667pt;}
.y93{bottom:254.600000pt;}
.yc5{bottom:254.746667pt;}
.ya8{bottom:254.760000pt;}
.y7e{bottom:255.866667pt;}
.y40{bottom:258.760000pt;}
.y120{bottom:261.146667pt;}
.y35{bottom:269.306667pt;}
.y3f{bottom:271.560000pt;}
.yc4{bottom:271.866667pt;}
.y92{bottom:271.880000pt;}
.ya7{bottom:272.040000pt;}
.y7d{bottom:273.146667pt;}
.y11f{bottom:278.266667pt;}
.y34{bottom:286.426667pt;}
.yeb{bottom:288.986667pt;}
.y91{bottom:289.000000pt;}
.yc3{bottom:289.146667pt;}
.ya6{bottom:289.160000pt;}
.y7c{bottom:290.266667pt;}
.y11e{bottom:295.546667pt;}
.y33{bottom:303.746667pt;}
.yc2{bottom:306.266667pt;}
.y90{bottom:306.280000pt;}
.ya5{bottom:306.440000pt;}
.y7b{bottom:307.586667pt;}
.y11d{bottom:312.706667pt;}
.y32{bottom:320.866667pt;}
.yea{bottom:323.386667pt;}
.y8f{bottom:323.400000pt;}
.yc1{bottom:323.546667pt;}
.ya4{bottom:323.560000pt;}
.y7a{bottom:324.706667pt;}
.y11c{bottom:329.986667pt;}
.y31{bottom:337.826667pt;}
.yd9{bottom:339.106667pt;}
.yc0{bottom:340.666667pt;}
.y8e{bottom:340.680000pt;}
.y79{bottom:341.986667pt;}
.y11b{bottom:347.106667pt;}
.ye1{bottom:350.466667pt;}
.y30{bottom:353.506667pt;}
.ye9{bottom:357.786667pt;}
.y8d{bottom:357.800000pt;}
.ybf{bottom:357.946667pt;}
.ya3{bottom:357.960000pt;}
.y78{bottom:359.106667pt;}
.ybd{bottom:364.346667pt;}
.y11a{bottom:364.386667pt;}
.ybb{bottom:367.586667pt;}
.y2f{bottom:369.186667pt;}
.ybe{bottom:375.066667pt;}
.y8c{bottom:375.080000pt;}
.y77{bottom:376.386667pt;}
.y119{bottom:381.506667pt;}
.y2e{bottom:384.706667pt;}
.ybc{bottom:392.186667pt;}
.y8b{bottom:392.200000pt;}
.y76{bottom:393.506667pt;}
.y118{bottom:398.786667pt;}
.y2d{bottom:400.386667pt;}
.ye8{bottom:409.306667pt;}
.y8a{bottom:409.320000pt;}
.y75{bottom:410.786667pt;}
.y117{bottom:415.906667pt;}
.y2c{bottom:416.066667pt;}
.y89{bottom:426.600000pt;}
.ye7{bottom:426.626667pt;}
.y74{bottom:427.906667pt;}
.y2b{bottom:431.746667pt;}
.y116{bottom:433.186667pt;}
.y88{bottom:443.720000pt;}
.ye6{bottom:443.746667pt;}
.y73{bottom:445.186667pt;}
.y2a{bottom:447.266667pt;}
.y115{bottom:450.306667pt;}
.y87{bottom:461.026667pt;}
.y72{bottom:462.306667pt;}
.y29{bottom:462.946667pt;}
.y114{bottom:467.586667pt;}
.ye5{bottom:478.146667pt;}
.y28{bottom:478.626667pt;}
.y71{bottom:479.586667pt;}
.y113{bottom:484.706667pt;}
.y27{bottom:494.146667pt;}
.ye4{bottom:495.426667pt;}
.y70{bottom:496.706667pt;}
.y112{bottom:501.826667pt;}
.y26{bottom:509.826667pt;}
.ye3{bottom:512.546667pt;}
.y6f{bottom:513.826667pt;}
.y111{bottom:519.106667pt;}
.y25{bottom:525.506667pt;}
.ye2{bottom:529.826667pt;}
.y6e{bottom:531.106667pt;}
.y110{bottom:536.226667pt;}
.y24{bottom:543.133333pt;}
.y6d{bottom:548.253333pt;}
.y86{bottom:550.973333pt;}
.y10f{bottom:553.533333pt;}
.y23{bottom:558.813333pt;}
.y6c{bottom:565.533333pt;}
.y10e{bottom:570.653333pt;}
.y22{bottom:574.333333pt;}
.y6b{bottom:582.653333pt;}
.y3e{bottom:583.933333pt;}
.y10d{bottom:587.933333pt;}
.y21{bottom:590.013333pt;}
.yd7{bottom:591.133333pt;}
.y6a{bottom:599.933333pt;}
.y10c{bottom:605.053333pt;}
.y20{bottom:605.693333pt;}
.y69{bottom:617.053333pt;}
.y1f{bottom:621.213333pt;}
.y10b{bottom:622.333333pt;}
.y68{bottom:634.333333pt;}
.y1e{bottom:636.893333pt;}
.y10a{bottom:639.453333pt;}
.y67{bottom:651.453333pt;}
.y1d{bottom:652.573333pt;}
.y109{bottom:656.733333pt;}
.y1c{bottom:668.093333pt;}
.y66{bottom:668.733333pt;}
.y108{bottom:673.853333pt;}
.y1b{bottom:683.773333pt;}
.y65{bottom:685.853333pt;}
.y107{bottom:691.133333pt;}
.y1a{bottom:699.453333pt;}
.y64{bottom:703.133333pt;}
.y106{bottom:708.253333pt;}
.y19{bottom:715.133333pt;}
.y63{bottom:720.253333pt;}
.y105{bottom:725.533333pt;}
.y18{bottom:730.653333pt;}
.y62{bottom:737.533333pt;}
.y104{bottom:742.653333pt;}
.y17{bottom:746.333333pt;}
.y61{bottom:754.653333pt;}
.y103{bottom:759.773333pt;}
.y16{bottom:762.013333pt;}
.y60{bottom:771.773333pt;}
.yb8{bottom:774.533333pt;}
.y102{bottom:777.093333pt;}
.y15{bottom:777.573333pt;}
.y5f{bottom:789.093333pt;}
.y14{bottom:793.253333pt;}
.y101{bottom:794.213333pt;}
.y5e{bottom:806.213333pt;}
.y13{bottom:808.933333pt;}
.y100{bottom:811.493333pt;}
.y5d{bottom:823.493333pt;}
.y12{bottom:824.453333pt;}
.yff{bottom:828.613333pt;}
.y11{bottom:840.133333pt;}
.y5c{bottom:840.613333pt;}
.yfe{bottom:845.893333pt;}
.y10{bottom:855.813333pt;}
.y5b{bottom:857.893333pt;}
.yfd{bottom:863.013333pt;}
.yf{bottom:871.653333pt;}
.y5a{bottom:875.013333pt;}
.yfc{bottom:880.293333pt;}
.ye{bottom:890.373333pt;}
.y59{bottom:892.293333pt;}
.ydf{bottom:894.853333pt;}
.yfb{bottom:897.413333pt;}
.yd{bottom:906.533333pt;}
.y58{bottom:909.413333pt;}
.yfa{bottom:914.693333pt;}
.yc{bottom:926.693333pt;}
.yf9{bottom:931.813333pt;}
.y57{bottom:943.813333pt;}
.yb{bottom:944.453333pt;}
.yf8{bottom:949.093333pt;}
.y56{bottom:961.093333pt;}
.yd5{bottom:963.653333pt;}
.ya{bottom:964.773333pt;}
.yf7{bottom:966.213333pt;}
.y55{bottom:978.213333pt;}
.yf5{bottom:980.773333pt;}
.y9{bottom:985.093333pt;}
.y54{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y53{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y52{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y51{bottom:1064.480000pt;}
.hc{height:27.093750pt;}
.he{height:28.000000pt;}
.ha{height:29.940625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.hb{height:44.687500pt;}
.h8{height:44.975625pt;}
.h1b{height:45.152000pt;}
.h6{height:49.852500pt;}
.h11{height:51.520000pt;}
.hd{height:52.284375pt;}
.h7{height:52.305625pt;}
.h5{height:58.522500pt;}
.h15{height:62.272000pt;}
.h18{height:131.072000pt;}
.h1a{height:223.546667pt;}
.h17{height:240.826667pt;}
.h12{height:251.386667pt;}
.h14{height:257.946667pt;}
.h9{height:282.906667pt;}
.h16{height:371.866667pt;}
.h10{height:389.026667pt;}
.h13{height:406.106667pt;}
.hf{height:474.946667pt;}
.h19{height:543.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:36.640000pt;}
.w7{width:121.120000pt;}
.w8{width:134.746667pt;}
.w5{width:140.506667pt;}
.w6{width:149.306667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.xb{left:83.994667pt;}
.x1{left:96.031988pt;}
.xa{left:100.512000pt;}
.x2{left:103.231988pt;}
.xd{left:104.512000pt;}
.x6{left:116.511988pt;}
.x3{left:119.231988pt;}
.xf{left:141.786667pt;}
.x9{left:144.026655pt;}
.x7{left:230.266655pt;}
.x10{left:282.946667pt;}
.x8{left:298.466655pt;}
.xc{left:304.546655pt;}
.x4{left:336.226655pt;}
.x5{left:396.866655pt;}
.x13{left:405.666655pt;}
.x11{left:433.053333pt;}
.x12{left:554.813333pt;}
}




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