
    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_4057d35262ad618b55c4b6a3.woff')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_dedd3be1d2f2299d1be1f6cf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_53eb7b225beb3e4bc3424dd8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_912a22fac7c6bfe5341edd5b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d87ceb572617091d2bb585f4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_daee7fe2ad60d0b6f7b4a2af.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.379920px;}
.lsf{letter-spacing:0.403920px;}
.ls10{letter-spacing:0.540000px;}
.lsb{letter-spacing:10.260000px;}
.ls5{letter-spacing:64.026720px;}
.ls14{letter-spacing:155.700000px;}
.ls3{letter-spacing:695.820000px;}
.ls2{letter-spacing:837.720000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws1{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.426400px;}
.ws2{word-spacing:-12.420000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-4.045440px;}
._5{margin-left:-3.024240px;}
._0{margin-left:-1.434240px;}
._1{width:1.043040px;}
._2{width:2.346720px;}
._4{width:3.938640px;}
._3{width:4.960080px;}
._7{width:6.561840px;}
._6{width:7.828560px;}
._8{width:9.259920px;}
._d{width:10.517760px;}
._c{width:11.712960px;}
._19{width:12.831120px;}
._1f{width:13.864320px;}
._b{width:16.548720px;}
._18{width:17.718480px;}
._2b{width:18.857040px;}
._e{width:20.139120px;}
._2a{width:22.296000px;}
._17{width:23.811600px;}
._14{width:25.908720px;}
._15{width:28.538160px;}
._10{width:29.733360px;}
._1e{width:31.254480px;}
._22{width:32.270400px;}
._24{width:37.768320px;}
._28{width:47.568960px;}
._1d{width:51.453360px;}
._f{width:52.588800px;}
._16{width:60.297840px;}
._21{width:68.577360px;}
._23{width:75.954960px;}
._27{width:79.062480px;}
._13{width:90.987360px;}
._20{width:108.795840px;}
._2e{width:125.424000px;}
._11{width:134.101440px;}
._29{width:135.714960px;}
._25{width:143.842320px;}
._2d{width:155.664000px;}
._26{width:165.993120px;}
._12{width:180.056880px;}
._1c{width:214.056960px;}
._1b{width:336.361920px;}
._9{width:585.383040px;}
._2c{width:1431.120000px;}
._a{width:1461.360000px;}
.fc4{color:rgb(0,0,204);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.240000px;}
.y54{bottom:20.340000px;}
.y5a{bottom:20.514000px;}
.y4f{bottom:20.520000px;}
.y53{bottom:37.620000px;}
.yd0{bottom:37.656000px;}
.y59{bottom:37.794000px;}
.y56{bottom:37.800000px;}
.y52{bottom:54.900000px;}
.ycf{bottom:54.930000px;}
.y58{bottom:55.074000px;}
.ycc{bottom:55.080000px;}
.ycb{bottom:72.180000px;}
.yce{bottom:72.210000px;}
.yca{bottom:89.460000px;}
.yff{bottom:91.440000px;}
.y89{bottom:91.800000px;}
.y5b{bottom:99.180000px;}
.ycd{bottom:100.620000px;}
.yc9{bottom:106.740000px;}
.yfe{bottom:108.900000px;}
.y134{bottom:109.980000px;}
.yf7{bottom:112.860000px;}
.y71{bottom:113.940000px;}
.y2e{bottom:121.320000px;}
.y133{bottom:127.296000px;}
.y70{bottom:131.256000px;}
.yb7{bottom:134.856000px;}
.y88{bottom:137.016000px;}
.y2d{bottom:138.636000px;}
.y57{bottom:144.396000px;}
.y132{bottom:144.576000px;}
.y6f{bottom:148.356000px;}
.yf6{bottom:151.050000px;}
.y9e{bottom:152.130000px;}
.y2c{bottom:155.910000px;}
.y131{bottom:161.850000px;}
.y6e{bottom:165.630000px;}
.yf5{bottom:168.330000px;}
.y9d{bottom:169.410000px;}
.yb6{bottom:173.190000px;}
.y130{bottom:179.130000px;}
.y6d{bottom:182.910000px;}
.yf4{bottom:185.610000px;}
.y9c{bottom:186.690000px;}
.yb5{bottom:190.470000px;}
.y87{bottom:190.650000px;}
.y2b{bottom:194.070000px;}
.y12f{bottom:196.410000px;}
.y6c{bottom:200.190000px;}
.yf3{bottom:202.890000px;}
.y9b{bottom:203.970000px;}
.yc8{bottom:205.950000px;}
.yb4{bottom:207.750000px;}
.y2a{bottom:211.350000px;}
.y12e{bottom:213.510000px;}
.yf2{bottom:219.990000px;}
.yb3{bottom:225.030000px;}
.y29{bottom:228.630000px;}
.y12d{bottom:230.790000px;}
.y55{bottom:232.590000px;}
.yf1{bottom:237.270000px;}
.y6b{bottom:238.350000px;}
.y9a{bottom:242.130000px;}
.y86{bottom:244.290000px;}
.y28{bottom:245.910000px;}
.y12c{bottom:248.070000px;}
.y6a{bottom:255.630000px;}
.yb2{bottom:259.410000px;}
.y27{bottom:263.190000px;}
.y12b{bottom:265.350000px;}
.y69{bottom:272.910000px;}
.yf0{bottom:275.610000px;}
.yb1{bottom:276.690000px;}
.y99{bottom:280.470000px;}
.y12a{bottom:282.630000px;}
.y68{bottom:290.190000px;}
.y85{bottom:297.750000px;}
.y129{bottom:299.730000px;}
.y26{bottom:306.390000px;}
.yef{bottom:313.770000px;}
.yb0{bottom:314.850000px;}
.y98{bottom:315.030000px;}
.y128{bottom:317.010000px;}
.y51{bottom:320.790000px;}
.y67{bottom:328.350000px;}
.y25{bottom:328.890000px;}
.yee{bottom:331.050000px;}
.y97{bottom:332.130000px;}
.y127{bottom:334.290000px;}
.yc7{bottom:345.810000px;}
.yed{bottom:348.330000px;}
.y96{bottom:349.410000px;}
.y84{bottom:351.390000px;}
.y126{bottom:351.570000px;}
.yaf{bottom:353.190000px;}
.y66{bottom:366.690000px;}
.y24{bottom:367.230000px;}
.y125{bottom:368.850000px;}
.yae{bottom:370.470000px;}
.y65{bottom:384.015000px;}
.y23{bottom:384.555000px;}
.y124{bottom:386.175000px;}
.yec{bottom:386.535000px;}
.yad{bottom:387.795000px;}
.y64{bottom:401.115000px;}
.yfd{bottom:401.295000px;}
.y123{bottom:403.275000px;}
.yeb{bottom:403.815000px;}
.y95{bottom:404.895000px;}
.y83{bottom:405.075000px;}
.y4e{bottom:408.855000px;}
.yc6{bottom:414.615000px;}
.y63{bottom:418.395000px;}
.yfc{bottom:418.575000px;}
.y122{bottom:420.555000px;}
.yea{bottom:421.095000px;}
.y94{bottom:422.175000px;}
.y22{bottom:422.715000px;}
.yfb{bottom:435.675000px;}
.y121{bottom:437.835000px;}
.ye9{bottom:438.375000px;}
.y93{bottom:439.455000px;}
.y21{bottom:439.995000px;}
.yac{bottom:443.235000px;}
.yc5{bottom:452.955000px;}
.y120{bottom:455.115000px;}
.ye8{bottom:455.655000px;}
.y62{bottom:456.735000px;}
.y20{bottom:457.275000px;}
.yc4{bottom:470.235000px;}
.y11f{bottom:472.395000px;}
.ye7{bottom:472.935000px;}
.y92{bottom:474.015000px;}
.y1f{bottom:474.375000px;}
.y4d{bottom:477.615000px;}
.yab{bottom:481.395000px;}
.yc3{bottom:487.515000px;}
.y11e{bottom:489.675000px;}
.ye6{bottom:490.035000px;}
.y91{bottom:491.295000px;}
.y1e{bottom:491.655000px;}
.y61{bottom:494.895000px;}
.yaa{bottom:498.675000px;}
.y11d{bottom:506.775000px;}
.ye5{bottom:507.315000px;}
.yfa{bottom:508.395000px;}
.y1d{bottom:508.935000px;}
.y60{bottom:512.175000px;}
.y4c{bottom:515.955000px;}
.y11c{bottom:524.055000px;}
.ye4{bottom:524.595000px;}
.yc2{bottom:525.675000px;}
.y1c{bottom:526.215000px;}
.y5f{bottom:529.455000px;}
.y4b{bottom:533.235000px;}
.y11b{bottom:541.335000px;}
.yc1{bottom:542.955000px;}
.y1b{bottom:543.495000px;}
.y5e{bottom:546.735000px;}
.y4a{bottom:550.515000px;}
.y11a{bottom:558.615000px;}
.yc0{bottom:560.235000px;}
.y1a{bottom:560.775000px;}
.ye3{bottom:562.755000px;}
.y5d{bottom:564.015000px;}
.y49{bottom:567.795000px;}
.y119{bottom:575.895000px;}
.ybf{bottom:577.515000px;}
.y19{bottom:577.875000px;}
.ye2{bottom:580.035000px;}
.y90{bottom:581.295000px;}
.y48{bottom:584.895000px;}
.y118{bottom:592.995000px;}
.ybe{bottom:594.795000px;}
.y18{bottom:595.155000px;}
.ye1{bottom:597.315000px;}
.y8f{bottom:598.395000px;}
.y5c{bottom:598.935000px;}
.y82{bottom:602.175000px;}
.y117{bottom:610.275000px;}
.y17{bottom:612.435000px;}
.ye0{bottom:614.595000px;}
.y8e{bottom:615.675000px;}
.y81{bottom:619.455000px;}
.y47{bottom:623.235000px;}
.y116{bottom:627.555000px;}
.y16{bottom:629.715000px;}
.ydf{bottom:631.905000px;}
.ybd{bottom:632.985000px;}
.y80{bottom:636.765000px;}
.y46{bottom:640.545000px;}
.y115{bottom:644.865000px;}
.ybc{bottom:650.265000px;}
.y7f{bottom:654.045000px;}
.y45{bottom:657.825000px;}
.y114{bottom:662.145000px;}
.ybb{bottom:667.545000px;}
.yde{bottom:670.065000px;}
.y7e{bottom:671.325000px;}
.y15{bottom:673.125000px;}
.y44{bottom:674.925000px;}
.ya9{bottom:678.705000px;}
.y113{bottom:679.425000px;}
.yba{bottom:684.825000px;}
.ydd{bottom:687.345000px;}
.y8d{bottom:688.425000px;}
.y43{bottom:692.205000px;}
.ya8{bottom:695.985000px;}
.y112{bottom:696.525000px;}
.ydc{bottom:704.625000px;}
.y8c{bottom:705.705000px;}
.y42{bottom:709.485000px;}
.y14{bottom:711.285000px;}
.ya7{bottom:713.265000px;}
.y111{bottom:713.805000px;}
.yb9{bottom:722.985000px;}
.y41{bottom:726.765000px;}
.y13{bottom:728.565000px;}
.ya6{bottom:730.545000px;}
.y110{bottom:731.085000px;}
.ydb{bottom:742.785000px;}
.y40{bottom:744.045000px;}
.y12{bottom:746.925000px;}
.ya5{bottom:747.825000px;}
.y10f{bottom:748.365000px;}
.yb8{bottom:761.145000px;}
.y7d{bottom:761.325000px;}
.y11{bottom:764.205000px;}
.ya4{bottom:764.925000px;}
.y10e{bottom:765.645000px;}
.y7c{bottom:778.425000px;}
.yda{bottom:781.125000px;}
.y3f{bottom:782.205000px;}
.y10{bottom:782.565000px;}
.y10d{bottom:782.925000px;}
.y7b{bottom:795.705000px;}
.yd9{bottom:798.405000px;}
.y3e{bottom:799.485000px;}
.yf{bottom:799.845000px;}
.y10c{bottom:800.025000px;}
.yf9{bottom:812.985000px;}
.yd8{bottom:815.685000px;}
.y3d{bottom:816.765000px;}
.y10b{bottom:817.305000px;}
.yd7{bottom:832.785000px;}
.y3c{bottom:834.045000px;}
.y10a{bottom:834.585000px;}
.ye{bottom:844.305000px;}
.yd6{bottom:850.065000px;}
.yf8{bottom:851.145000px;}
.y3b{bottom:851.325000px;}
.y109{bottom:851.865000px;}
.yd{bottom:866.625000px;}
.yd5{bottom:867.345000px;}
.y7a{bottom:868.425000px;}
.y108{bottom:869.145000px;}
.ya3{bottom:872.205000px;}
.yd4{bottom:884.670000px;}
.y79{bottom:885.750000px;}
.y107{bottom:886.470000px;}
.yc{bottom:888.270000px;}
.y3a{bottom:889.530000px;}
.y39{bottom:906.810000px;}
.y106{bottom:908.790000px;}
.yb{bottom:909.330000px;}
.ya2{bottom:910.590000px;}
.yd3{bottom:922.830000px;}
.y78{bottom:923.910000px;}
.y38{bottom:924.090000px;}
.ya1{bottom:927.870000px;}
.y105{bottom:931.110000px;}
.ya{bottom:937.050000px;}
.y37{bottom:941.190000px;}
.ya0{bottom:944.970000px;}
.y104{bottom:953.610000px;}
.y9{bottom:956.310000px;}
.y77{bottom:958.470000px;}
.y9f{bottom:962.250000px;}
.yd2{bottom:968.010000px;}
.y8b{bottom:975.750000px;}
.y103{bottom:976.110000px;}
.y36{bottom:979.530000px;}
.y8{bottom:987.450000px;}
.y8a{bottom:993.030000px;}
.y35{bottom:996.810000px;}
.y102{bottom:998.430000px;}
.y7{bottom:1004.550000px;}
.y34{bottom:1014.090000px;}
.y101{bottom:1020.930000px;}
.y6{bottom:1028.850000px;}
.y33{bottom:1031.190000px;}
.y76{bottom:1034.970000px;}
.y100{bottom:1043.250000px;}
.y32{bottom:1048.470000px;}
.y75{bottom:1052.250000px;}
.y5{bottom:1055.670000px;}
.y31{bottom:1065.750000px;}
.y74{bottom:1069.530000px;}
.y4{bottom:1084.290000px;}
.y73{bottom:1086.810000px;}
.yd1{bottom:1090.590000px;}
.y30{bottom:1103.910000px;}
.y72{bottom:1104.090000px;}
.y3{bottom:1115.610000px;}
.y2f{bottom:1121.190000px;}
.y2{bottom:1165.500000px;}
.y1{bottom:1184.940000px;}
.hf{height:17.280000px;}
.h11{height:34.380000px;}
.hb{height:34.560000px;}
.h10{height:34.596000px;}
.h6{height:38.139609px;}
.ha{height:43.215117px;}
.h8{height:52.610625px;}
.h5{height:58.651172px;}
.h2{height:60.226875px;}
.h9{height:61.423863px;}
.hd{height:68.940000px;}
.hc{height:68.976000px;}
.he{height:69.120000px;}
.h4{height:72.562500px;}
.h7{height:73.490625px;}
.h3{height:84.898125px;}
.h13{height:86.256000px;}
.h14{height:103.500000px;}
.h12{height:120.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:100.296000px;}
.w3{width:119.916000px;}
.wa{width:139.320000px;}
.w9{width:139.356000px;}
.w5{width:221.790000px;}
.w8{width:232.950000px;}
.w7{width:232.995000px;}
.w6{width:256.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:12.996000px;}
.x3{left:79.919987px;}
.x2{left:84.959987px;}
.x6{left:86.220000px;}
.x4{left:111.995987px;}
.x12{left:119.555987px;}
.x5{left:138.995987px;}
.x1{left:144.395987px;}
.x8{left:207.030000px;}
.xe{left:226.650000px;}
.x9{left:308.415000px;}
.xc{left:320.295000px;}
.xf{left:367.095000px;}
.x10{left:507.525000px;}
.xa{left:531.105000px;}
.xd{left:554.325000px;}
.x11{left:647.970000px;}
.xb{left:807.839987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.337707pt;}
.lsf{letter-spacing:0.359040pt;}
.ls10{letter-spacing:0.480000pt;}
.lsb{letter-spacing:9.120000pt;}
.ls5{letter-spacing:56.912640pt;}
.ls14{letter-spacing:138.400000pt;}
.ls3{letter-spacing:618.506667pt;}
.ls2{letter-spacing:744.640000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws1{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.823467pt;}
.ws2{word-spacing:-11.040000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-3.595947pt;}
._5{margin-left:-2.688213pt;}
._0{margin-left:-1.274880pt;}
._1{width:0.927147pt;}
._2{width:2.085973pt;}
._4{width:3.501013pt;}
._3{width:4.408960pt;}
._7{width:5.832747pt;}
._6{width:6.958720pt;}
._8{width:8.231040pt;}
._d{width:9.349120pt;}
._c{width:10.411520pt;}
._19{width:11.405440pt;}
._1f{width:12.323840pt;}
._b{width:14.709973pt;}
._18{width:15.749760pt;}
._2b{width:16.761813pt;}
._e{width:17.901440pt;}
._2a{width:19.818667pt;}
._17{width:21.165867pt;}
._14{width:23.029973pt;}
._15{width:25.367253pt;}
._10{width:26.429653pt;}
._1e{width:27.781760pt;}
._22{width:28.684800pt;}
._24{width:33.571840pt;}
._28{width:42.283520pt;}
._1d{width:45.736320pt;}
._f{width:46.745600pt;}
._16{width:53.598080pt;}
._21{width:60.957653pt;}
._23{width:67.515520pt;}
._27{width:70.277760pt;}
._13{width:80.877653pt;}
._20{width:96.707413pt;}
._2e{width:111.488000pt;}
._11{width:119.201280pt;}
._29{width:120.635520pt;}
._25{width:127.859840pt;}
._2d{width:138.368000pt;}
._26{width:147.549440pt;}
._12{width:160.050560pt;}
._1c{width:190.272853pt;}
._1b{width:298.988373pt;}
._9{width:520.340480pt;}
._2c{width:1272.106667pt;}
._a{width:1298.986667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.880000pt;}
.y54{bottom:18.080000pt;}
.y5a{bottom:18.234667pt;}
.y4f{bottom:18.240000pt;}
.y53{bottom:33.440000pt;}
.yd0{bottom:33.472000pt;}
.y59{bottom:33.594667pt;}
.y56{bottom:33.600000pt;}
.y52{bottom:48.800000pt;}
.ycf{bottom:48.826667pt;}
.y58{bottom:48.954667pt;}
.ycc{bottom:48.960000pt;}
.ycb{bottom:64.160000pt;}
.yce{bottom:64.186667pt;}
.yca{bottom:79.520000pt;}
.yff{bottom:81.280000pt;}
.y89{bottom:81.600000pt;}
.y5b{bottom:88.160000pt;}
.ycd{bottom:89.440000pt;}
.yc9{bottom:94.880000pt;}
.yfe{bottom:96.800000pt;}
.y134{bottom:97.760000pt;}
.yf7{bottom:100.320000pt;}
.y71{bottom:101.280000pt;}
.y2e{bottom:107.840000pt;}
.y133{bottom:113.152000pt;}
.y70{bottom:116.672000pt;}
.yb7{bottom:119.872000pt;}
.y88{bottom:121.792000pt;}
.y2d{bottom:123.232000pt;}
.y57{bottom:128.352000pt;}
.y132{bottom:128.512000pt;}
.y6f{bottom:131.872000pt;}
.yf6{bottom:134.266667pt;}
.y9e{bottom:135.226667pt;}
.y2c{bottom:138.586667pt;}
.y131{bottom:143.866667pt;}
.y6e{bottom:147.226667pt;}
.yf5{bottom:149.626667pt;}
.y9d{bottom:150.586667pt;}
.yb6{bottom:153.946667pt;}
.y130{bottom:159.226667pt;}
.y6d{bottom:162.586667pt;}
.yf4{bottom:164.986667pt;}
.y9c{bottom:165.946667pt;}
.yb5{bottom:169.306667pt;}
.y87{bottom:169.466667pt;}
.y2b{bottom:172.506667pt;}
.y12f{bottom:174.586667pt;}
.y6c{bottom:177.946667pt;}
.yf3{bottom:180.346667pt;}
.y9b{bottom:181.306667pt;}
.yc8{bottom:183.066667pt;}
.yb4{bottom:184.666667pt;}
.y2a{bottom:187.866667pt;}
.y12e{bottom:189.786667pt;}
.yf2{bottom:195.546667pt;}
.yb3{bottom:200.026667pt;}
.y29{bottom:203.226667pt;}
.y12d{bottom:205.146667pt;}
.y55{bottom:206.746667pt;}
.yf1{bottom:210.906667pt;}
.y6b{bottom:211.866667pt;}
.y9a{bottom:215.226667pt;}
.y86{bottom:217.146667pt;}
.y28{bottom:218.586667pt;}
.y12c{bottom:220.506667pt;}
.y6a{bottom:227.226667pt;}
.yb2{bottom:230.586667pt;}
.y27{bottom:233.946667pt;}
.y12b{bottom:235.866667pt;}
.y69{bottom:242.586667pt;}
.yf0{bottom:244.986667pt;}
.yb1{bottom:245.946667pt;}
.y99{bottom:249.306667pt;}
.y12a{bottom:251.226667pt;}
.y68{bottom:257.946667pt;}
.y85{bottom:264.666667pt;}
.y129{bottom:266.426667pt;}
.y26{bottom:272.346667pt;}
.yef{bottom:278.906667pt;}
.yb0{bottom:279.866667pt;}
.y98{bottom:280.026667pt;}
.y128{bottom:281.786667pt;}
.y51{bottom:285.146667pt;}
.y67{bottom:291.866667pt;}
.y25{bottom:292.346667pt;}
.yee{bottom:294.266667pt;}
.y97{bottom:295.226667pt;}
.y127{bottom:297.146667pt;}
.yc7{bottom:307.386667pt;}
.yed{bottom:309.626667pt;}
.y96{bottom:310.586667pt;}
.y84{bottom:312.346667pt;}
.y126{bottom:312.506667pt;}
.yaf{bottom:313.946667pt;}
.y66{bottom:325.946667pt;}
.y24{bottom:326.426667pt;}
.y125{bottom:327.866667pt;}
.yae{bottom:329.306667pt;}
.y65{bottom:341.346667pt;}
.y23{bottom:341.826667pt;}
.y124{bottom:343.266667pt;}
.yec{bottom:343.586667pt;}
.yad{bottom:344.706667pt;}
.y64{bottom:356.546667pt;}
.yfd{bottom:356.706667pt;}
.y123{bottom:358.466667pt;}
.yeb{bottom:358.946667pt;}
.y95{bottom:359.906667pt;}
.y83{bottom:360.066667pt;}
.y4e{bottom:363.426667pt;}
.yc6{bottom:368.546667pt;}
.y63{bottom:371.906667pt;}
.yfc{bottom:372.066667pt;}
.y122{bottom:373.826667pt;}
.yea{bottom:374.306667pt;}
.y94{bottom:375.266667pt;}
.y22{bottom:375.746667pt;}
.yfb{bottom:387.266667pt;}
.y121{bottom:389.186667pt;}
.ye9{bottom:389.666667pt;}
.y93{bottom:390.626667pt;}
.y21{bottom:391.106667pt;}
.yac{bottom:393.986667pt;}
.yc5{bottom:402.626667pt;}
.y120{bottom:404.546667pt;}
.ye8{bottom:405.026667pt;}
.y62{bottom:405.986667pt;}
.y20{bottom:406.466667pt;}
.yc4{bottom:417.986667pt;}
.y11f{bottom:419.906667pt;}
.ye7{bottom:420.386667pt;}
.y92{bottom:421.346667pt;}
.y1f{bottom:421.666667pt;}
.y4d{bottom:424.546667pt;}
.yab{bottom:427.906667pt;}
.yc3{bottom:433.346667pt;}
.y11e{bottom:435.266667pt;}
.ye6{bottom:435.586667pt;}
.y91{bottom:436.706667pt;}
.y1e{bottom:437.026667pt;}
.y61{bottom:439.906667pt;}
.yaa{bottom:443.266667pt;}
.y11d{bottom:450.466667pt;}
.ye5{bottom:450.946667pt;}
.yfa{bottom:451.906667pt;}
.y1d{bottom:452.386667pt;}
.y60{bottom:455.266667pt;}
.y4c{bottom:458.626667pt;}
.y11c{bottom:465.826667pt;}
.ye4{bottom:466.306667pt;}
.yc2{bottom:467.266667pt;}
.y1c{bottom:467.746667pt;}
.y5f{bottom:470.626667pt;}
.y4b{bottom:473.986667pt;}
.y11b{bottom:481.186667pt;}
.yc1{bottom:482.626667pt;}
.y1b{bottom:483.106667pt;}
.y5e{bottom:485.986667pt;}
.y4a{bottom:489.346667pt;}
.y11a{bottom:496.546667pt;}
.yc0{bottom:497.986667pt;}
.y1a{bottom:498.466667pt;}
.ye3{bottom:500.226667pt;}
.y5d{bottom:501.346667pt;}
.y49{bottom:504.706667pt;}
.y119{bottom:511.906667pt;}
.ybf{bottom:513.346667pt;}
.y19{bottom:513.666667pt;}
.ye2{bottom:515.586667pt;}
.y90{bottom:516.706667pt;}
.y48{bottom:519.906667pt;}
.y118{bottom:527.106667pt;}
.ybe{bottom:528.706667pt;}
.y18{bottom:529.026667pt;}
.ye1{bottom:530.946667pt;}
.y8f{bottom:531.906667pt;}
.y5c{bottom:532.386667pt;}
.y82{bottom:535.266667pt;}
.y117{bottom:542.466667pt;}
.y17{bottom:544.386667pt;}
.ye0{bottom:546.306667pt;}
.y8e{bottom:547.266667pt;}
.y81{bottom:550.626667pt;}
.y47{bottom:553.986667pt;}
.y116{bottom:557.826667pt;}
.y16{bottom:559.746667pt;}
.ydf{bottom:561.693333pt;}
.ybd{bottom:562.653333pt;}
.y80{bottom:566.013333pt;}
.y46{bottom:569.373333pt;}
.y115{bottom:573.213333pt;}
.ybc{bottom:578.013333pt;}
.y7f{bottom:581.373333pt;}
.y45{bottom:584.733333pt;}
.y114{bottom:588.573333pt;}
.ybb{bottom:593.373333pt;}
.yde{bottom:595.613333pt;}
.y7e{bottom:596.733333pt;}
.y15{bottom:598.333333pt;}
.y44{bottom:599.933333pt;}
.ya9{bottom:603.293333pt;}
.y113{bottom:603.933333pt;}
.yba{bottom:608.733333pt;}
.ydd{bottom:610.973333pt;}
.y8d{bottom:611.933333pt;}
.y43{bottom:615.293333pt;}
.ya8{bottom:618.653333pt;}
.y112{bottom:619.133333pt;}
.ydc{bottom:626.333333pt;}
.y8c{bottom:627.293333pt;}
.y42{bottom:630.653333pt;}
.y14{bottom:632.253333pt;}
.ya7{bottom:634.013333pt;}
.y111{bottom:634.493333pt;}
.yb9{bottom:642.653333pt;}
.y41{bottom:646.013333pt;}
.y13{bottom:647.613333pt;}
.ya6{bottom:649.373333pt;}
.y110{bottom:649.853333pt;}
.ydb{bottom:660.253333pt;}
.y40{bottom:661.373333pt;}
.y12{bottom:663.933333pt;}
.ya5{bottom:664.733333pt;}
.y10f{bottom:665.213333pt;}
.yb8{bottom:676.573333pt;}
.y7d{bottom:676.733333pt;}
.y11{bottom:679.293333pt;}
.ya4{bottom:679.933333pt;}
.y10e{bottom:680.573333pt;}
.y7c{bottom:691.933333pt;}
.yda{bottom:694.333333pt;}
.y3f{bottom:695.293333pt;}
.y10{bottom:695.613333pt;}
.y10d{bottom:695.933333pt;}
.y7b{bottom:707.293333pt;}
.yd9{bottom:709.693333pt;}
.y3e{bottom:710.653333pt;}
.yf{bottom:710.973333pt;}
.y10c{bottom:711.133333pt;}
.yf9{bottom:722.653333pt;}
.yd8{bottom:725.053333pt;}
.y3d{bottom:726.013333pt;}
.y10b{bottom:726.493333pt;}
.yd7{bottom:740.253333pt;}
.y3c{bottom:741.373333pt;}
.y10a{bottom:741.853333pt;}
.ye{bottom:750.493333pt;}
.yd6{bottom:755.613333pt;}
.yf8{bottom:756.573333pt;}
.y3b{bottom:756.733333pt;}
.y109{bottom:757.213333pt;}
.yd{bottom:770.333333pt;}
.yd5{bottom:770.973333pt;}
.y7a{bottom:771.933333pt;}
.y108{bottom:772.573333pt;}
.ya3{bottom:775.293333pt;}
.yd4{bottom:786.373333pt;}
.y79{bottom:787.333333pt;}
.y107{bottom:787.973333pt;}
.yc{bottom:789.573333pt;}
.y3a{bottom:790.693333pt;}
.y39{bottom:806.053333pt;}
.y106{bottom:807.813333pt;}
.yb{bottom:808.293333pt;}
.ya2{bottom:809.413333pt;}
.yd3{bottom:820.293333pt;}
.y78{bottom:821.253333pt;}
.y38{bottom:821.413333pt;}
.ya1{bottom:824.773333pt;}
.y105{bottom:827.653333pt;}
.ya{bottom:832.933333pt;}
.y37{bottom:836.613333pt;}
.ya0{bottom:839.973333pt;}
.y104{bottom:847.653333pt;}
.y9{bottom:850.053333pt;}
.y77{bottom:851.973333pt;}
.y9f{bottom:855.333333pt;}
.yd2{bottom:860.453333pt;}
.y8b{bottom:867.333333pt;}
.y103{bottom:867.653333pt;}
.y36{bottom:870.693333pt;}
.y8{bottom:877.733333pt;}
.y8a{bottom:882.693333pt;}
.y35{bottom:886.053333pt;}
.y102{bottom:887.493333pt;}
.y7{bottom:892.933333pt;}
.y34{bottom:901.413333pt;}
.y101{bottom:907.493333pt;}
.y6{bottom:914.533333pt;}
.y33{bottom:916.613333pt;}
.y76{bottom:919.973333pt;}
.y100{bottom:927.333333pt;}
.y32{bottom:931.973333pt;}
.y75{bottom:935.333333pt;}
.y5{bottom:938.373333pt;}
.y31{bottom:947.333333pt;}
.y74{bottom:950.693333pt;}
.y4{bottom:963.813333pt;}
.y73{bottom:966.053333pt;}
.yd1{bottom:969.413333pt;}
.y30{bottom:981.253333pt;}
.y72{bottom:981.413333pt;}
.y3{bottom:991.653333pt;}
.y2f{bottom:996.613333pt;}
.y2{bottom:1036.000000pt;}
.y1{bottom:1053.280000pt;}
.hf{height:15.360000pt;}
.h11{height:30.560000pt;}
.hb{height:30.720000pt;}
.h10{height:30.752000pt;}
.h6{height:33.901875pt;}
.ha{height:38.413438pt;}
.h8{height:46.765000pt;}
.h5{height:52.134375pt;}
.h2{height:53.535000pt;}
.h9{height:54.598989pt;}
.hd{height:61.280000pt;}
.hc{height:61.312000pt;}
.he{height:61.440000pt;}
.h4{height:64.500000pt;}
.h7{height:65.325000pt;}
.h3{height:75.465000pt;}
.h13{height:76.672000pt;}
.h14{height:92.000000pt;}
.h12{height:107.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:89.152000pt;}
.w3{width:106.592000pt;}
.wa{width:123.840000pt;}
.w9{width:123.872000pt;}
.w5{width:197.146667pt;}
.w8{width:207.066667pt;}
.w7{width:207.106667pt;}
.w6{width:227.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:11.552000pt;}
.x3{left:71.039988pt;}
.x2{left:75.519988pt;}
.x6{left:76.640000pt;}
.x4{left:99.551988pt;}
.x12{left:106.271988pt;}
.x5{left:123.551988pt;}
.x1{left:128.351988pt;}
.x8{left:184.026667pt;}
.xe{left:201.466667pt;}
.x9{left:274.146667pt;}
.xc{left:284.706667pt;}
.xf{left:326.306667pt;}
.x10{left:451.133333pt;}
.xa{left:472.093333pt;}
.xd{left:492.733333pt;}
.x11{left:575.973333pt;}
.xb{left:718.079988pt;}
}




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