
    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_f519abe2fe9a17089ad276cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_a28fbd91797d057be589aaf2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2b1aac0fd66c6018a11f82ee.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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0aa65170d9ab5918e0bc81e3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dcff6d8e9ec5fd80f9c26132.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_230c6db8850bbb3e9c04942d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_468f4663c5282b42d78a2edf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-23.760000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.lsb{letter-spacing:16.506720px;}
.ls3{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.lsa{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws7{word-spacing:-54.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-1.170720px;}
._0{width:1.135440px;}
._16{width:2.270880px;}
._6{width:3.346560px;}
._10{width:4.482000px;}
._7{width:5.736960px;}
._8{width:6.752880px;}
._a{width:8.246880px;}
._e{width:9.504000px;}
._b{width:10.876320px;}
._f{width:11.889360px;}
._13{width:13.233840px;}
._12{width:14.733840px;}
._11{width:16.254720px;}
._9{width:17.928000px;}
._d{width:19.008000px;}
._1b{width:20.318400px;}
._1a{width:21.931920px;}
._c{width:23.922000px;}
._1c{width:25.217040px;}
._1d{width:27.599040px;}
._24{width:28.744560px;}
._18{width:29.820240px;}
._17{width:31.553280px;}
._19{width:32.808240px;}
._20{width:34.122960px;}
._15{width:35.497440px;}
._14{width:36.573120px;}
._22{width:38.137680px;}
._21{width:39.142800px;}
._23{width:40.338000px;}
._28{width:41.863680px;}
._1e{width:45.776160px;}
._1f{width:46.911600px;}
._26{width:53.185680px;}
._27{width:54.384480px;}
._4{width:63.604560px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._5{width:696.540000px;}
._25{width:1054.465200px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y36{bottom:2.880000px;}
.y1b{bottom:3.240000px;}
.yfb{bottom:4.860000px;}
.y2f{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.yb4{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.yb8{bottom:16.380000px;}
.y35{bottom:18.360000px;}
.yfa{bottom:18.720000px;}
.y2d{bottom:19.260000px;}
.ybb{bottom:27.720000px;}
.yb3{bottom:30.060000px;}
.yb7{bottom:30.240000px;}
.yf9{bottom:32.580000px;}
.y34{bottom:33.885000px;}
.y7{bottom:35.460000px;}
.y2c{bottom:35.820000px;}
.yb2{bottom:43.920000px;}
.yf8{bottom:46.305000px;}
.y33{bottom:49.545000px;}
.y2b{bottom:51.300000px;}
.yb1{bottom:57.600000px;}
.yb6{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.yf7{bottom:60.165000px;}
.y32{bottom:65.025000px;}
.y2a{bottom:66.780000px;}
.y31{bottom:80.505000px;}
.y29{bottom:82.260000px;}
.y28{bottom:97.740000px;}
.y37{bottom:106.200000px;}
.y27{bottom:113.400000px;}
.ydd{bottom:113.616000px;}
.yce{bottom:115.776000px;}
.y71{bottom:121.716000px;}
.y3a{bottom:122.616000px;}
.ya7{bottom:122.976000px;}
.y26{bottom:128.880000px;}
.ydc{bottom:130.896000px;}
.ycd{bottom:133.056000px;}
.y39{bottom:138.276000px;}
.y70{bottom:140.076000px;}
.ya6{bottom:141.156000px;}
.ydb{bottom:148.176000px;}
.ycc{bottom:150.330000px;}
.y38{bottom:154.110000px;}
.y6f{bottom:158.430000px;}
.ya5{bottom:159.510000px;}
.yda{bottom:165.450000px;}
.ycb{bottom:168.690000px;}
.y1c{bottom:168.870000px;}
.y6e{bottom:175.710000px;}
.ya4{bottom:177.870000px;}
.yd9{bottom:182.730000px;}
.yca{bottom:185.970000px;}
.y6d{bottom:192.990000px;}
.ya3{bottom:196.230000px;}
.yd8{bottom:200.010000px;}
.yc9{bottom:203.250000px;}
.yf2{bottom:210.090000px;}
.y6c{bottom:211.350000px;}
.ya2{bottom:214.590000px;}
.yd7{bottom:217.110000px;}
.yc8{bottom:220.350000px;}
.yf1{bottom:227.370000px;}
.y6b{bottom:229.530000px;}
.ya1{bottom:232.770000px;}
.yd6{bottom:234.390000px;}
.yc7{bottom:237.630000px;}
.y24{bottom:240.885000px;}
.yf0{bottom:244.650000px;}
.y6a{bottom:247.890000px;}
.ya0{bottom:251.130000px;}
.yd5{bottom:251.670000px;}
.yc6{bottom:254.910000px;}
.y23{bottom:258.165000px;}
.yef{bottom:261.930000px;}
.y69{bottom:266.250000px;}
.yd4{bottom:268.950000px;}
.y9f{bottom:269.490000px;}
.yf6{bottom:272.010000px;}
.yc5{bottom:272.190000px;}
.y22{bottom:275.445000px;}
.yee{bottom:279.210000px;}
.y68{bottom:284.610000px;}
.yd3{bottom:286.230000px;}
.y9e{bottom:286.770000px;}
.y30{bottom:288.390000px;}
.yc4{bottom:289.470000px;}
.y21{bottom:292.725000px;}
.yed{bottom:296.490000px;}
.y67{bottom:301.890000px;}
.y9d{bottom:304.050000px;}
.yd2{bottom:304.590000px;}
.yc3{bottom:306.750000px;}
.y20{bottom:310.005000px;}
.yec{bottom:313.590000px;}
.y66{bottom:320.115000px;}
.y9c{bottom:321.195000px;}
.yd1{bottom:321.735000px;}
.yc2{bottom:323.895000px;}
.y1f{bottom:327.105000px;}
.yeb{bottom:330.915000px;}
.y65{bottom:337.395000px;}
.y9b{bottom:339.555000px;}
.yd0{bottom:340.095000px;}
.yc1{bottom:341.175000px;}
.yf5{bottom:344.235000px;}
.y1e{bottom:344.385000px;}
.yea{bottom:348.195000px;}
.y64{bottom:355.755000px;}
.ycf{bottom:357.375000px;}
.y9a{bottom:357.915000px;}
.yc0{bottom:358.455000px;}
.yf4{bottom:358.815000px;}
.y1d{bottom:361.665000px;}
.ye9{bottom:365.475000px;}
.y63{bottom:373.035000px;}
.ybf{bottom:375.735000px;}
.y99{bottom:376.275000px;}
.y2e{bottom:382.215000px;}
.ye8{bottom:382.755000px;}
.y62{bottom:390.315000px;}
.ybe{bottom:390.495000px;}
.y98{bottom:394.635000px;}
.ye7{bottom:399.855000px;}
.y25{bottom:403.095000px;}
.y61{bottom:408.495000px;}
.y97{bottom:411.915000px;}
.yf3{bottom:414.615000px;}
.ye6{bottom:417.135000px;}
.ybd{bottom:418.755000px;}
.y60{bottom:425.775000px;}
.y96{bottom:430.095000px;}
.ye5{bottom:434.415000px;}
.y5f{bottom:443.055000px;}
.y95{bottom:447.375000px;}
.ye4{bottom:451.695000px;}
.y5e{bottom:461.415000px;}
.y94{bottom:465.735000px;}
.ye3{bottom:468.975000px;}
.ybc{bottom:474.735000px;}
.y5d{bottom:479.775000px;}
.y93{bottom:484.095000px;}
.ye2{bottom:486.255000px;}
.y5c{bottom:497.055000px;}
.y92{bottom:502.455000px;}
.ye1{bottom:503.355000px;}
.y5b{bottom:515.235000px;}
.yba{bottom:516.855000px;}
.y91{bottom:519.555000px;}
.ye0{bottom:520.635000px;}
.y5a{bottom:533.595000px;}
.y90{bottom:537.915000px;}
.y1a{bottom:545.295000px;}
.y59{bottom:551.955000px;}
.y8f{bottom:555.195000px;}
.y58{bottom:570.345000px;}
.ydf{bottom:572.505000px;}
.yb9{bottom:572.865000px;}
.y8e{bottom:573.585000px;}
.y19{bottom:579.885000px;}
.y57{bottom:588.705000px;}
.yde{bottom:589.785000px;}
.y8d{bottom:590.865000px;}
.y18{bottom:603.825000px;}
.y56{bottom:606.885000px;}
.y8c{bottom:609.045000px;}
.yb5{bottom:614.985000px;}
.y55{bottom:624.165000px;}
.y8b{bottom:626.325000px;}
.y17{bottom:632.625000px;}
.y54{bottom:641.445000px;}
.y8a{bottom:643.605000px;}
.y16{bottom:657.645000px;}
.y53{bottom:658.725000px;}
.y89{bottom:660.885000px;}
.y15{bottom:670.605000px;}
.y52{bottom:676.005000px;}
.y88{bottom:678.165000px;}
.yb0{bottom:684.825000px;}
.y51{bottom:693.285000px;}
.y87{bottom:695.445000px;}
.y14{bottom:695.625000px;}
.y13{bottom:708.585000px;}
.y50{bottom:710.385000px;}
.y86{bottom:712.545000px;}
.y4f{bottom:727.665000px;}
.y85{bottom:730.905000px;}
.y12{bottom:733.425000px;}
.y4e{bottom:744.945000px;}
.y11{bottom:746.565000px;}
.y84{bottom:748.185000px;}
.yaf{bottom:754.485000px;}
.y4d{bottom:762.225000px;}
.y83{bottom:766.545000px;}
.y10{bottom:771.405000px;}
.y4c{bottom:779.505000px;}
.yae{bottom:783.645000px;}
.yf{bottom:784.365000px;}
.y82{bottom:784.905000px;}
.y4b{bottom:796.605000px;}
.yac{bottom:797.505000px;}
.y81{bottom:803.085000px;}
.ye{bottom:808.125000px;}
.yab{bottom:811.185000px;}
.y4a{bottom:813.885000px;}
.y80{bottom:820.410000px;}
.yaa{bottom:822.570000px;}
.y49{bottom:831.210000px;}
.y7f{bottom:837.690000px;}
.yd{bottom:839.310000px;}
.y48{bottom:848.490000px;}
.y7e{bottom:854.970000px;}
.y47{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.y7d{bottom:872.250000px;}
.y46{bottom:883.050000px;}
.y7c{bottom:889.530000px;}
.y45{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y7b{bottom:907.710000px;}
.y44{bottom:917.430000px;}
.y7a{bottom:926.070000px;}
.ya{bottom:930.210000px;}
.y43{bottom:934.710000px;}
.ya9{bottom:938.670000px;}
.y79{bottom:944.430000px;}
.y8{bottom:945.510000px;}
.y42{bottom:951.990000px;}
.ya8{bottom:952.710000px;}
.y78{bottom:962.790000px;}
.yad{bottom:969.270000px;}
.y41{bottom:974.490000px;}
.y77{bottom:981.150000px;}
.y40{bottom:986.550000px;}
.y76{bottom:999.330000px;}
.y3f{bottom:1003.650000px;}
.y75{bottom:1016.610000px;}
.y3e{bottom:1020.930000px;}
.y74{bottom:1034.970000px;}
.y3d{bottom:1038.210000px;}
.y73{bottom:1053.330000px;}
.y3c{bottom:1055.490000px;}
.y72{bottom:1071.720000px;}
.y3b{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h26{height:13.680000px;}
.h1d{height:13.860000px;}
.hf{height:17.280000px;}
.h14{height:20.160000px;}
.h1a{height:27.147656px;}
.h23{height:27.540000px;}
.h3{height:27.576000px;}
.hc{height:29.158594px;}
.h5{height:33.683203px;}
.h1c{height:34.036523px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.336328px;}
.h12{height:39.999023px;}
.h20{height:41.400000px;}
.h4{height:41.726953px;}
.he{height:42.164648px;}
.h1b{height:43.506914px;}
.h13{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h19{height:48.027656px;}
.h24{height:49.255313px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h25{height:55.080000px;}
.h22{height:55.260000px;}
.h21{height:55.296000px;}
.h1e{height:68.940000px;}
.h1f{height:69.120000px;}
.h27{height:71.496000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:93.096000px;}
.h18{height:118.800000px;}
.h11{height:141.480000px;}
.h7{height:153.930000px;}
.h10{height:375.690000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.wb{width:60.480000px;}
.w7{width:140.976000px;}
.w6{width:220.170000px;}
.w9{width:286.410000px;}
.wc{width:328.935000px;}
.w8{width:357.375000px;}
.wa{width:390.135000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x20{left:-45.000014px;}
.x0{left:0.000000px;}
.x14{left:6.480000px;}
.x3{left:8.460000px;}
.x34{left:10.440000px;}
.x35{left:11.700000px;}
.x13{left:19.980000px;}
.x32{left:21.600000px;}
.x22{left:24.840000px;}
.x17{left:27.360000px;}
.x33{left:31.860000px;}
.x15{left:34.065000px;}
.x16{left:35.865000px;}
.x6{left:45.540000px;}
.x27{left:49.176000px;}
.x2{left:53.999986px;}
.x9{left:57.959986px;}
.x1{left:60.659986px;}
.x28{left:64.260000px;}
.x18{left:65.519986px;}
.x31{left:71.100000px;}
.x37{left:73.620000px;}
.x38{left:86.759986px;}
.x19{left:88.199986px;}
.x2e{left:93.105000px;}
.xf{left:96.695986px;}
.x36{left:99.180000px;}
.x4{left:100.836000px;}
.xd{left:103.535986px;}
.x5{left:108.035986px;}
.x26{left:111.465000px;}
.x29{left:114.885000px;}
.x2d{left:118.305000px;}
.x30{left:121.725000px;}
.x2b{left:126.045000px;}
.x24{left:135.225000px;}
.x2a{left:140.445000px;}
.x2f{left:143.145000px;}
.xa{left:147.275986px;}
.x1f{left:149.435986px;}
.xc{left:162.749986px;}
.x2c{left:178.605000px;}
.x23{left:207.570000px;}
.xe{left:233.849986px;}
.x10{left:266.789986px;}
.x21{left:395.714986px;}
.x1e{left:421.274986px;}
.x1d{left:422.354986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.x11{left:465.374986px;}
.x1b{left:478.334986px;}
.x1a{left:479.804986px;}
.x39{left:491.145000px;}
.x1c{left:506.804986px;}
.x3a{left:552.345000px;}
.x25{left:565.665000px;}
.x12{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls3{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.lsa{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-1.040640pt;}
._0{width:1.009280pt;}
._16{width:2.018560pt;}
._6{width:2.974720pt;}
._10{width:3.984000pt;}
._7{width:5.099520pt;}
._8{width:6.002560pt;}
._a{width:7.330560pt;}
._e{width:8.448000pt;}
._b{width:9.667840pt;}
._f{width:10.568320pt;}
._13{width:11.763413pt;}
._12{width:13.096747pt;}
._11{width:14.448640pt;}
._9{width:15.936000pt;}
._d{width:16.896000pt;}
._1b{width:18.060800pt;}
._1a{width:19.495040pt;}
._c{width:21.264000pt;}
._1c{width:22.415147pt;}
._1d{width:24.532480pt;}
._24{width:25.550720pt;}
._18{width:26.506880pt;}
._17{width:28.047360pt;}
._19{width:29.162880pt;}
._20{width:30.331520pt;}
._15{width:31.553280pt;}
._14{width:32.509440pt;}
._22{width:33.900160pt;}
._21{width:34.793600pt;}
._23{width:35.856000pt;}
._28{width:37.212160pt;}
._1e{width:40.689920pt;}
._1f{width:41.699200pt;}
._26{width:47.276160pt;}
._27{width:48.341760pt;}
._4{width:56.537387pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._5{width:619.146667pt;}
._25{width:937.302400pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y36{bottom:2.560000pt;}
.y1b{bottom:2.880000pt;}
.yfb{bottom:4.320000pt;}
.y2f{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.yb4{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.yb8{bottom:14.560000pt;}
.y35{bottom:16.320000pt;}
.yfa{bottom:16.640000pt;}
.y2d{bottom:17.120000pt;}
.ybb{bottom:24.640000pt;}
.yb3{bottom:26.720000pt;}
.yb7{bottom:26.880000pt;}
.yf9{bottom:28.960000pt;}
.y34{bottom:30.120000pt;}
.y7{bottom:31.520000pt;}
.y2c{bottom:31.840000pt;}
.yb2{bottom:39.040000pt;}
.yf8{bottom:41.160000pt;}
.y33{bottom:44.040000pt;}
.y2b{bottom:45.600000pt;}
.yb1{bottom:51.200000pt;}
.yb6{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.yf7{bottom:53.480000pt;}
.y32{bottom:57.800000pt;}
.y2a{bottom:59.360000pt;}
.y31{bottom:71.560000pt;}
.y29{bottom:73.120000pt;}
.y28{bottom:86.880000pt;}
.y37{bottom:94.400000pt;}
.y27{bottom:100.800000pt;}
.ydd{bottom:100.992000pt;}
.yce{bottom:102.912000pt;}
.y71{bottom:108.192000pt;}
.y3a{bottom:108.992000pt;}
.ya7{bottom:109.312000pt;}
.y26{bottom:114.560000pt;}
.ydc{bottom:116.352000pt;}
.ycd{bottom:118.272000pt;}
.y39{bottom:122.912000pt;}
.y70{bottom:124.512000pt;}
.ya6{bottom:125.472000pt;}
.ydb{bottom:131.712000pt;}
.ycc{bottom:133.626667pt;}
.y38{bottom:136.986667pt;}
.y6f{bottom:140.826667pt;}
.ya5{bottom:141.786667pt;}
.yda{bottom:147.066667pt;}
.ycb{bottom:149.946667pt;}
.y1c{bottom:150.106667pt;}
.y6e{bottom:156.186667pt;}
.ya4{bottom:158.106667pt;}
.yd9{bottom:162.426667pt;}
.yca{bottom:165.306667pt;}
.y6d{bottom:171.546667pt;}
.ya3{bottom:174.426667pt;}
.yd8{bottom:177.786667pt;}
.yc9{bottom:180.666667pt;}
.yf2{bottom:186.746667pt;}
.y6c{bottom:187.866667pt;}
.ya2{bottom:190.746667pt;}
.yd7{bottom:192.986667pt;}
.yc8{bottom:195.866667pt;}
.yf1{bottom:202.106667pt;}
.y6b{bottom:204.026667pt;}
.ya1{bottom:206.906667pt;}
.yd6{bottom:208.346667pt;}
.yc7{bottom:211.226667pt;}
.y24{bottom:214.120000pt;}
.yf0{bottom:217.466667pt;}
.y6a{bottom:220.346667pt;}
.ya0{bottom:223.226667pt;}
.yd5{bottom:223.706667pt;}
.yc6{bottom:226.586667pt;}
.y23{bottom:229.480000pt;}
.yef{bottom:232.826667pt;}
.y69{bottom:236.666667pt;}
.yd4{bottom:239.066667pt;}
.y9f{bottom:239.546667pt;}
.yf6{bottom:241.786667pt;}
.yc5{bottom:241.946667pt;}
.y22{bottom:244.840000pt;}
.yee{bottom:248.186667pt;}
.y68{bottom:252.986667pt;}
.yd3{bottom:254.426667pt;}
.y9e{bottom:254.906667pt;}
.y30{bottom:256.346667pt;}
.yc4{bottom:257.306667pt;}
.y21{bottom:260.200000pt;}
.yed{bottom:263.546667pt;}
.y67{bottom:268.346667pt;}
.y9d{bottom:270.266667pt;}
.yd2{bottom:270.746667pt;}
.yc3{bottom:272.666667pt;}
.y20{bottom:275.560000pt;}
.yec{bottom:278.746667pt;}
.y66{bottom:284.546667pt;}
.y9c{bottom:285.506667pt;}
.yd1{bottom:285.986667pt;}
.yc2{bottom:287.906667pt;}
.y1f{bottom:290.760000pt;}
.yeb{bottom:294.146667pt;}
.y65{bottom:299.906667pt;}
.y9b{bottom:301.826667pt;}
.yd0{bottom:302.306667pt;}
.yc1{bottom:303.266667pt;}
.yf5{bottom:305.986667pt;}
.y1e{bottom:306.120000pt;}
.yea{bottom:309.506667pt;}
.y64{bottom:316.226667pt;}
.ycf{bottom:317.666667pt;}
.y9a{bottom:318.146667pt;}
.yc0{bottom:318.626667pt;}
.yf4{bottom:318.946667pt;}
.y1d{bottom:321.480000pt;}
.ye9{bottom:324.866667pt;}
.y63{bottom:331.586667pt;}
.ybf{bottom:333.986667pt;}
.y99{bottom:334.466667pt;}
.y2e{bottom:339.746667pt;}
.ye8{bottom:340.226667pt;}
.y62{bottom:346.946667pt;}
.ybe{bottom:347.106667pt;}
.y98{bottom:350.786667pt;}
.ye7{bottom:355.426667pt;}
.y25{bottom:358.306667pt;}
.y61{bottom:363.106667pt;}
.y97{bottom:366.146667pt;}
.yf3{bottom:368.546667pt;}
.ye6{bottom:370.786667pt;}
.ybd{bottom:372.226667pt;}
.y60{bottom:378.466667pt;}
.y96{bottom:382.306667pt;}
.ye5{bottom:386.146667pt;}
.y5f{bottom:393.826667pt;}
.y95{bottom:397.666667pt;}
.ye4{bottom:401.506667pt;}
.y5e{bottom:410.146667pt;}
.y94{bottom:413.986667pt;}
.ye3{bottom:416.866667pt;}
.ybc{bottom:421.986667pt;}
.y5d{bottom:426.466667pt;}
.y93{bottom:430.306667pt;}
.ye2{bottom:432.226667pt;}
.y5c{bottom:441.826667pt;}
.y92{bottom:446.626667pt;}
.ye1{bottom:447.426667pt;}
.y5b{bottom:457.986667pt;}
.yba{bottom:459.426667pt;}
.y91{bottom:461.826667pt;}
.ye0{bottom:462.786667pt;}
.y5a{bottom:474.306667pt;}
.y90{bottom:478.146667pt;}
.y1a{bottom:484.706667pt;}
.y59{bottom:490.626667pt;}
.y8f{bottom:493.506667pt;}
.y58{bottom:506.973333pt;}
.ydf{bottom:508.893333pt;}
.yb9{bottom:509.213333pt;}
.y8e{bottom:509.853333pt;}
.y19{bottom:515.453333pt;}
.y57{bottom:523.293333pt;}
.yde{bottom:524.253333pt;}
.y8d{bottom:525.213333pt;}
.y18{bottom:536.733333pt;}
.y56{bottom:539.453333pt;}
.y8c{bottom:541.373333pt;}
.yb5{bottom:546.653333pt;}
.y55{bottom:554.813333pt;}
.y8b{bottom:556.733333pt;}
.y17{bottom:562.333333pt;}
.y54{bottom:570.173333pt;}
.y8a{bottom:572.093333pt;}
.y16{bottom:584.573333pt;}
.y53{bottom:585.533333pt;}
.y89{bottom:587.453333pt;}
.y15{bottom:596.093333pt;}
.y52{bottom:600.893333pt;}
.y88{bottom:602.813333pt;}
.yb0{bottom:608.733333pt;}
.y51{bottom:616.253333pt;}
.y87{bottom:618.173333pt;}
.y14{bottom:618.333333pt;}
.y13{bottom:629.853333pt;}
.y50{bottom:631.453333pt;}
.y86{bottom:633.373333pt;}
.y4f{bottom:646.813333pt;}
.y85{bottom:649.693333pt;}
.y12{bottom:651.933333pt;}
.y4e{bottom:662.173333pt;}
.y11{bottom:663.613333pt;}
.y84{bottom:665.053333pt;}
.yaf{bottom:670.653333pt;}
.y4d{bottom:677.533333pt;}
.y83{bottom:681.373333pt;}
.y10{bottom:685.693333pt;}
.y4c{bottom:692.893333pt;}
.yae{bottom:696.573333pt;}
.yf{bottom:697.213333pt;}
.y82{bottom:697.693333pt;}
.y4b{bottom:708.093333pt;}
.yac{bottom:708.893333pt;}
.y81{bottom:713.853333pt;}
.ye{bottom:718.333333pt;}
.yab{bottom:721.053333pt;}
.y4a{bottom:723.453333pt;}
.y80{bottom:729.253333pt;}
.yaa{bottom:731.173333pt;}
.y49{bottom:738.853333pt;}
.y7f{bottom:744.613333pt;}
.yd{bottom:746.053333pt;}
.y48{bottom:754.213333pt;}
.y7e{bottom:759.973333pt;}
.y47{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.y7d{bottom:775.333333pt;}
.y46{bottom:784.933333pt;}
.y7c{bottom:790.693333pt;}
.y45{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y7b{bottom:806.853333pt;}
.y44{bottom:815.493333pt;}
.y7a{bottom:823.173333pt;}
.ya{bottom:826.853333pt;}
.y43{bottom:830.853333pt;}
.ya9{bottom:834.373333pt;}
.y79{bottom:839.493333pt;}
.y8{bottom:840.453333pt;}
.y42{bottom:846.213333pt;}
.ya8{bottom:846.853333pt;}
.y78{bottom:855.813333pt;}
.yad{bottom:861.573333pt;}
.y41{bottom:866.213333pt;}
.y77{bottom:872.133333pt;}
.y40{bottom:876.933333pt;}
.y76{bottom:888.293333pt;}
.y3f{bottom:892.133333pt;}
.y75{bottom:903.653333pt;}
.y3e{bottom:907.493333pt;}
.y74{bottom:919.973333pt;}
.y3d{bottom:922.853333pt;}
.y73{bottom:936.293333pt;}
.y3c{bottom:938.213333pt;}
.y72{bottom:952.640000pt;}
.y3b{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h26{height:12.160000pt;}
.h1d{height:12.320000pt;}
.hf{height:15.360000pt;}
.h14{height:17.920000pt;}
.h1a{height:24.131250pt;}
.h23{height:24.480000pt;}
.h3{height:24.512000pt;}
.hc{height:25.918750pt;}
.h5{height:29.940625pt;}
.h1c{height:30.254687pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.965625pt;}
.h12{height:35.554688pt;}
.h20{height:36.800000pt;}
.h4{height:37.090625pt;}
.he{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h13{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h19{height:42.691250pt;}
.h24{height:43.782500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h25{height:48.960000pt;}
.h22{height:49.120000pt;}
.h21{height:49.152000pt;}
.h1e{height:61.280000pt;}
.h1f{height:61.440000pt;}
.h27{height:63.552000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:82.752000pt;}
.h18{height:105.600000pt;}
.h11{height:125.760000pt;}
.h7{height:136.826667pt;}
.h10{height:333.946667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.wb{width:53.760000pt;}
.w7{width:125.312000pt;}
.w6{width:195.706667pt;}
.w9{width:254.586667pt;}
.wc{width:292.386667pt;}
.w8{width:317.666667pt;}
.wa{width:346.786667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x20{left:-40.000012pt;}
.x0{left:0.000000pt;}
.x14{left:5.760000pt;}
.x3{left:7.520000pt;}
.x34{left:9.280000pt;}
.x35{left:10.400000pt;}
.x13{left:17.760000pt;}
.x32{left:19.200000pt;}
.x22{left:22.080000pt;}
.x17{left:24.320000pt;}
.x33{left:28.320000pt;}
.x15{left:30.280000pt;}
.x16{left:31.880000pt;}
.x6{left:40.480000pt;}
.x27{left:43.712000pt;}
.x2{left:47.999988pt;}
.x9{left:51.519988pt;}
.x1{left:53.919988pt;}
.x28{left:57.120000pt;}
.x18{left:58.239988pt;}
.x31{left:63.200000pt;}
.x37{left:65.440000pt;}
.x38{left:77.119988pt;}
.x19{left:78.399988pt;}
.x2e{left:82.760000pt;}
.xf{left:85.951988pt;}
.x36{left:88.160000pt;}
.x4{left:89.632000pt;}
.xd{left:92.031988pt;}
.x5{left:96.031988pt;}
.x26{left:99.080000pt;}
.x29{left:102.120000pt;}
.x2d{left:105.160000pt;}
.x30{left:108.200000pt;}
.x2b{left:112.040000pt;}
.x24{left:120.200000pt;}
.x2a{left:124.840000pt;}
.x2f{left:127.240000pt;}
.xa{left:130.911988pt;}
.x1f{left:132.831988pt;}
.xc{left:144.666655pt;}
.x2c{left:158.760000pt;}
.x23{left:184.506667pt;}
.xe{left:207.866655pt;}
.x10{left:237.146655pt;}
.x21{left:351.746655pt;}
.x1e{left:374.466655pt;}
.x1d{left:375.426655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.x11{left:413.666655pt;}
.x1b{left:425.186655pt;}
.x1a{left:426.493321pt;}
.x39{left:436.573333pt;}
.x1c{left:450.493321pt;}
.x3a{left:490.973333pt;}
.x25{left:502.813333pt;}
.x12{left:570.973333pt;}
.x7{left:722.213333pt;}
}




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