
    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_e2867bf0722f728bc2ff7a76.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8547f182e4fc68c7af04fc0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb14b0655819ce73343e8453.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a5dfd1cae5a1c39653c24244.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_8c48d7bdfc2aecb1e26f55a7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_c05d0f57947bbe5e7929e31a.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;}
.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;}
.ls15{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.090600px;}
.ls7{letter-spacing:-0.045360px;}
.lse{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.223800px;}
.lsa{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.540000px;}
.ls11{letter-spacing:1.260000px;}
.ls13{letter-spacing:12.780000px;}
.ls1{letter-spacing:13.500000px;}
.ls14{letter-spacing:18.540000px;}
.lsd{letter-spacing:19.260000px;}
.lsb{letter-spacing:19.980000px;}
.ls9{letter-spacing:63.900000px;}
.ls4{letter-spacing:73.980000px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.wsa{word-spacing:-21.420000px;}
.wse{word-spacing:-21.097440px;}
.wsd{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.041280px;}
.wsc{word-spacing:-20.700000px;}
.wsf{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.283800px;}
.ws9{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.014640px;}
.ws8{word-spacing:-11.969400px;}
.ws5{word-spacing:-11.878800px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-5.076720px;}
._d{margin-left:-3.979920px;}
._28{margin-left:-2.315760px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._2{width:2.184000px;}
._12{width:3.312000px;}
._6{width:4.548960px;}
._9{width:6.289200px;}
._10{width:7.618560px;}
._5{width:9.519120px;}
._a{width:11.119680px;}
._b{width:12.132240px;}
._4{width:13.135920px;}
._3{width:14.380560px;}
._17{width:16.348320px;}
._13{width:17.521920px;}
._11{width:19.186080px;}
._c{width:22.134480px;}
._21{width:23.145360px;}
._24{width:24.152640px;}
._15{width:25.440480px;}
._1d{width:26.451360px;}
._8{width:27.696000px;}
._7{width:28.894320px;}
._22{width:29.968800px;}
._25{width:31.699920px;}
._23{width:32.849040px;}
._18{width:34.791120px;}
._1b{width:35.967600px;}
._2c{width:39.720000px;}
._14{width:40.835760px;}
._1c{width:42.541200px;}
._e{width:44.226000px;}
._1f{width:47.005920px;}
._29{width:52.060320px;}
._2a{width:53.127360px;}
._2b{width:54.387840px;}
._1a{width:57.009840px;}
._19{width:58.189200px;}
._20{width:59.958240px;}
._26{width:70.845840px;}
._27{width:72.107520px;}
._16{width:73.790160px;}
._f{width:91.548240px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y69{bottom:-43.740000px;}
.y68{bottom:-27.900000px;}
.y79{bottom:-13.530000px;}
.y76{bottom:-12.780000px;}
.y81{bottom:-12.420000px;}
.y70{bottom:-12.240000px;}
.y7c{bottom:-12.060000px;}
.y67{bottom:-11.880000px;}
.y56{bottom:-6.660000px;}
.y6{bottom:-6.120000px;}
.y8e{bottom:-1.980000px;}
.y63{bottom:-0.720000px;}
.y0{bottom:0.000000px;}
.y78{bottom:2.340000px;}
.y75{bottom:3.060000px;}
.y80{bottom:3.420000px;}
.y6f{bottom:3.780000px;}
.y66{bottom:3.960000px;}
.yb8{bottom:4.500000px;}
.yb5{bottom:4.680000px;}
.yd3{bottom:4.860000px;}
.y55{bottom:9.180000px;}
.y92{bottom:9.225000px;}
.y85{bottom:9.360000px;}
.y5d{bottom:9.900000px;}
.y53{bottom:10.800000px;}
.ybd{bottom:12.780000px;}
.yc3{bottom:12.825000px;}
.yc0{bottom:12.960000px;}
.y8d{bottom:13.860000px;}
.y50{bottom:14.220000px;}
.y62{bottom:15.120000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y77{bottom:18.180000px;}
.y74{bottom:18.900000px;}
.y9{bottom:19.440000px;}
.y6e{bottom:19.620000px;}
.y65{bottom:19.800000px;}
.y58{bottom:20.520000px;}
.yd2{bottom:20.880000px;}
.yba{bottom:21.060000px;}
.y52{bottom:22.680000px;}
.y5c{bottom:25.740000px;}
.y4{bottom:27.900000px;}
.y8c{bottom:29.700000px;}
.y87{bottom:30.420000px;}
.y90{bottom:30.465000px;}
.y83{bottom:30.600000px;}
.y61{bottom:30.960000px;}
.y4e{bottom:32.940000px;}
.yb4{bottom:36.360000px;}
.y2{bottom:36.720000px;}
.y5b{bottom:37.125000px;}
.y51{bottom:38.520000px;}
.y4a{bottom:39.960000px;}
.y7e{bottom:40.680000px;}
.y6c{bottom:40.860000px;}
.y8{bottom:44.640000px;}
.y4d{bottom:48.780000px;}
.y72{bottom:49.140000px;}
.y8a{bottom:51.120000px;}
.y5f{bottom:52.200000px;}
.yb3{bottom:52.230000px;}
.y49{bottom:55.800000px;}
.y4c{bottom:64.800000px;}
.y48{bottom:67.140000px;}
.yb7{bottom:68.040000px;}
.yb2{bottom:68.070000px;}
.y47{bottom:71.640000px;}
.yb6{bottom:83.880000px;}
.yb1{bottom:83.910000px;}
.y46{bottom:87.660000px;}
.yd1{bottom:95.436000px;}
.yb0{bottom:99.930000px;}
.y28{bottom:106.956000px;}
.yd4{bottom:111.996000px;}
.y43{bottom:115.596000px;}
.yae{bottom:116.460000px;}
.ye7{bottom:121.536000px;}
.y98{bottom:123.876000px;}
.ycf{bottom:128.736000px;}
.yad{bottom:132.300000px;}
.y27{bottom:143.136000px;}
.yd0{bottom:145.296000px;}
.yac{bottom:148.170000px;}
.ye6{bottom:149.436000px;}
.y97{bottom:151.590000px;}
.y42{bottom:151.770000px;}
.ycd{bottom:161.850000px;}
.yab{bottom:164.010000px;}
.ye5{bottom:177.150000px;}
.yce{bottom:178.590000px;}
.y26{bottom:179.310000px;}
.yaa{bottom:179.850000px;}
.y41{bottom:187.950000px;}
.ycb{bottom:195.150000px;}
.ya9{bottom:195.870000px;}
.ye4{bottom:204.870000px;}
.y96{bottom:207.210000px;}
.ycc{bottom:211.710000px;}
.y25{bottom:215.670000px;}
.y40{bottom:224.310000px;}
.yc9{bottom:228.450000px;}
.ye3{bottom:232.770000px;}
.y95{bottom:234.930000px;}
.yca{bottom:245.010000px;}
.y24{bottom:251.850000px;}
.y3f{bottom:260.490000px;}
.yc7{bottom:261.570000px;}
.y94{bottom:262.650000px;}
.yc8{bottom:278.310000px;}
.y23{bottom:288.030000px;}
.ye2{bottom:288.210000px;}
.y93{bottom:290.550000px;}
.yc5{bottom:294.870000px;}
.y3e{bottom:296.670000px;}
.y8f{bottom:310.890000px;}
.yc6{bottom:311.430000px;}
.ye1{bottom:315.930000px;}
.y22{bottom:324.210000px;}
.yc2{bottom:328.170000px;}
.y91{bottom:332.130000px;}
.y3d{bottom:332.850000px;}
.ye0{bottom:343.875000px;}
.yc4{bottom:344.775000px;}
.y89{bottom:353.415000px;}
.y21{bottom:360.615000px;}
.ybf{bottom:361.335000px;}
.y3c{bottom:369.255000px;}
.ydf{bottom:371.595000px;}
.yc1{bottom:378.075000px;}
.ybc{bottom:394.635000px;}
.y8b{bottom:395.175000px;}
.y20{bottom:396.795000px;}
.yde{bottom:399.315000px;}
.y3b{bottom:405.435000px;}
.ybe{bottom:411.195000px;}
.y86{bottom:416.595000px;}
.ydd{bottom:427.215000px;}
.yb9{bottom:427.935000px;}
.y1f{bottom:432.975000px;}
.y88{bottom:437.835000px;}
.y3a{bottom:441.615000px;}
.ybb{bottom:444.495000px;}
.ydc{bottom:454.935000px;}
.y82{bottom:459.075000px;}
.ya8{bottom:461.055000px;}
.y1e{bottom:469.155000px;}
.y39{bottom:477.795000px;}
.y84{bottom:480.495000px;}
.ydb{bottom:482.655000px;}
.y7d{bottom:501.735000px;}
.y1d{bottom:505.515000px;}
.yda{bottom:510.375000px;}
.y38{bottom:513.975000px;}
.y7f{bottom:533.235000px;}
.yd9{bottom:538.275000px;}
.y1c{bottom:539.355000px;}
.y37{bottom:550.335000px;}
.y7a{bottom:554.475000px;}
.yaf{bottom:556.995000px;}
.yd8{bottom:565.995000px;}
.y1b{bottom:572.655000px;}
.y7b{bottom:575.715000px;}
.y36{bottom:586.515000px;}
.yd7{bottom:593.715000px;}
.y71{bottom:607.425000px;}
.y1a{bottom:609.045000px;}
.yd6{bottom:621.465000px;}
.y35{bottom:622.725000px;}
.y73{bottom:637.665000px;}
.y19{bottom:645.225000px;}
.yd5{bottom:649.365000px;}
.y34{bottom:658.905000px;}
.y6b{bottom:668.805000px;}
.ya7{bottom:677.085000px;}
.y18{bottom:681.405000px;}
.y33{bottom:695.265000px;}
.y6d{bottom:700.485000px;}
.ya6{bottom:704.805000px;}
.y17{bottom:717.585000px;}
.y6a{bottom:721.725000px;}
.y32{bottom:731.445000px;}
.ya5{bottom:732.705000px;}
.y64{bottom:743.145000px;}
.y16{bottom:753.765000px;}
.ya4{bottom:760.425000px;}
.y31{bottom:767.625000px;}
.y5e{bottom:775.005000px;}
.y15{bottom:787.785000px;}
.ya3{bottom:788.145000px;}
.y30{bottom:803.805000px;}
.ya2{bottom:815.865000px;}
.y60{bottom:818.025000px;}
.y14{bottom:821.085000px;}
.y5a{bottom:839.445000px;}
.y2f{bottom:840.165000px;}
.ya1{bottom:843.765000px;}
.y13{bottom:857.265000px;}
.ya0{bottom:871.530000px;}
.y2e{bottom:876.390000px;}
.y59{bottom:877.290000px;}
.y12{bottom:893.670000px;}
.y57{bottom:898.530000px;}
.y9f{bottom:899.250000px;}
.y2d{bottom:912.570000px;}
.y54{bottom:919.950000px;}
.y9e{bottom:927.150000px;}
.y11{bottom:927.510000px;}
.y45{bottom:941.190000px;}
.y2c{bottom:948.750000px;}
.y9d{bottom:954.870000px;}
.y10{bottom:960.810000px;}
.y4b{bottom:964.050000px;}
.y9c{bottom:982.590000px;}
.y2b{bottom:984.930000px;}
.yf{bottom:997.170000px;}
.y9b{bottom:1010.310000px;}
.y4f{bottom:1014.630000px;}
.y2a{bottom:1021.290000px;}
.ye{bottom:1033.350000px;}
.y9a{bottom:1038.210000px;}
.y44{bottom:1045.410000px;}
.y29{bottom:1057.470000px;}
.y99{bottom:1065.930000px;}
.yd{bottom:1069.530000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h2f{height:15.840000px;}
.h33{height:15.876000px;}
.h31{height:16.020000px;}
.h14{height:20.520000px;}
.h29{height:20.556000px;}
.h24{height:20.700000px;}
.h13{height:22.140000px;}
.h11{height:25.560000px;}
.h1e{height:29.520000px;}
.h1d{height:30.240000px;}
.h22{height:30.780000px;}
.h1b{height:30.960000px;}
.h20{height:30.996000px;}
.h19{height:31.140000px;}
.h2e{height:32.400000px;}
.h32{height:32.436000px;}
.h30{height:32.580000px;}
.h2d{height:34.036523px;}
.h16{height:37.116000px;}
.h7{height:39.636000px;}
.h27{height:41.040000px;}
.h25{height:41.760000px;}
.h28{height:41.796000px;}
.h23{height:41.940000px;}
.h18{height:42.300000px;}
.h15{height:47.344922px;}
.hf{height:48.616875px;}
.h12{height:49.860000px;}
.h21{height:52.020000px;}
.h1a{height:52.200000px;}
.h1f{height:52.236000px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.hc{height:59.066719px;}
.hb{height:59.436914px;}
.h1c{height:60.480000px;}
.h26{height:62.460000px;}
.h17{height:63.540000px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.h10{height:76.140000px;}
.ha{height:82.676953px;}
.hd{height:84.034336px;}
.h6{height:84.898125px;}
.h34{height:86.585445px;}
.h2c{height:95.220000px;}
.h9{height:96.508125px;}
.he{height:99.000000px;}
.h2b{height:111.276000px;}
.h2a{height:207.210000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:30.456000px;}
.w12{width:31.140000px;}
.w9{width:41.760000px;}
.wf{width:52.200000px;}
.w11{width:52.380000px;}
.w10{width:52.416000px;}
.w16{width:52.596000px;}
.w13{width:52.920000px;}
.w18{width:63.000000px;}
.w1d{width:63.036000px;}
.w1f{width:63.180000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w17{width:73.296000px;}
.w1c{width:73.620000px;}
.wa{width:73.656000px;}
.w1e{width:73.800000px;}
.w15{width:73.836000px;}
.wd{width:84.240000px;}
.w8{width:94.860000px;}
.wb{width:94.896000px;}
.w20{width:105.336000px;}
.we{width:106.056000px;}
.w14{width:126.576000px;}
.w19{width:137.376000px;}
.w1b{width:137.520000px;}
.w1a{width:222.510000px;}
.wc{width:286.590000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:6.876000px;}
.x2{left:8.640000px;}
.x19{left:10.260000px;}
.x7{left:13.860000px;}
.x34{left:20.880000px;}
.x36{left:26.280000px;}
.x33{left:28.296000px;}
.x35{left:29.385000px;}
.x1{left:31.860000px;}
.x2a{left:53.640000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x26{left:86.399987px;}
.xc{left:88.955987px;}
.x15{left:110.195987px;}
.xf{left:117.395987px;}
.x14{left:127.475987px;}
.x9{left:129.815987px;}
.x12{left:138.995987px;}
.x8{left:148.355987px;}
.x2b{left:159.690000px;}
.x10{left:165.449987px;}
.x2c{left:202.170000px;}
.x1a{left:212.430000px;}
.x27{left:245.909987px;}
.x1b{left:254.910000px;}
.x2d{left:265.890000px;}
.x11{left:278.354987px;}
.x16{left:297.074987px;}
.x1c{left:329.475000px;}
.x2e{left:340.455000px;}
.x13{left:368.894987px;}
.xb{left:377.354987px;}
.xe{left:380.414987px;}
.x21{left:382.575000px;}
.x28{left:385.814987px;}
.xd{left:389.234987px;}
.x17{left:409.754987px;}
.x2f{left:414.795000px;}
.x1d{left:425.055000px;}
.xa{left:446.474987px;}
.x22{left:478.185000px;}
.x1e{left:520.845000px;}
.x30{left:563.685000px;}
.x23{left:573.945000px;}
.x1f{left:605.805000px;}
.x31{left:638.205000px;}
.x24{left:658.950000px;}
.x29{left:702.689987px;}
.x20{left:712.590000px;}
.x25{left:765.690000px;}
.x32{left:776.310000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.080533pt;}
.ls7{letter-spacing:-0.040320pt;}
.lse{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.198933pt;}
.lsa{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls11{letter-spacing:1.120000pt;}
.ls13{letter-spacing:11.360000pt;}
.ls1{letter-spacing:12.000000pt;}
.ls14{letter-spacing:16.480000pt;}
.lsd{letter-spacing:17.120000pt;}
.lsb{letter-spacing:17.760000pt;}
.ls9{letter-spacing:56.800000pt;}
.ls4{letter-spacing:65.760000pt;}
.ws1{word-spacing:-21.600000pt;}
.wsa{word-spacing:-19.040000pt;}
.wse{word-spacing:-18.753280pt;}
.wsd{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.703360pt;}
.wsc{word-spacing:-18.400000pt;}
.wsf{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.918933pt;}
.ws9{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.679680pt;}
.ws8{word-spacing:-10.639467pt;}
.ws5{word-spacing:-10.558933pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-4.512640pt;}
._d{margin-left:-3.537707pt;}
._28{margin-left:-2.058453pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._2{width:1.941333pt;}
._12{width:2.944000pt;}
._6{width:4.043520pt;}
._9{width:5.590400pt;}
._10{width:6.772053pt;}
._5{width:8.461440pt;}
._a{width:9.884160pt;}
._b{width:10.784213pt;}
._4{width:11.676373pt;}
._3{width:12.782720pt;}
._17{width:14.531840pt;}
._13{width:15.575040pt;}
._11{width:17.054293pt;}
._c{width:19.675093pt;}
._21{width:20.573653pt;}
._24{width:21.469013pt;}
._15{width:22.613760pt;}
._1d{width:23.512320pt;}
._8{width:24.618667pt;}
._7{width:25.683840pt;}
._22{width:26.638933pt;}
._25{width:28.177707pt;}
._23{width:29.199147pt;}
._18{width:30.925440pt;}
._1b{width:31.971200pt;}
._2c{width:35.306667pt;}
._14{width:36.298453pt;}
._1c{width:37.814400pt;}
._e{width:39.312000pt;}
._1f{width:41.783040pt;}
._29{width:46.275840pt;}
._2a{width:47.224320pt;}
._2b{width:48.344747pt;}
._1a{width:50.675413pt;}
._19{width:51.723733pt;}
._20{width:53.296213pt;}
._26{width:62.974080pt;}
._27{width:64.095573pt;}
._16{width:65.591253pt;}
._f{width:81.376213pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y69{bottom:-38.880000pt;}
.y68{bottom:-24.800000pt;}
.y79{bottom:-12.026667pt;}
.y76{bottom:-11.360000pt;}
.y81{bottom:-11.040000pt;}
.y70{bottom:-10.880000pt;}
.y7c{bottom:-10.720000pt;}
.y67{bottom:-10.560000pt;}
.y56{bottom:-5.920000pt;}
.y6{bottom:-5.440000pt;}
.y8e{bottom:-1.760000pt;}
.y63{bottom:-0.640000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.080000pt;}
.y75{bottom:2.720000pt;}
.y80{bottom:3.040000pt;}
.y6f{bottom:3.360000pt;}
.y66{bottom:3.520000pt;}
.yb8{bottom:4.000000pt;}
.yb5{bottom:4.160000pt;}
.yd3{bottom:4.320000pt;}
.y55{bottom:8.160000pt;}
.y92{bottom:8.200000pt;}
.y85{bottom:8.320000pt;}
.y5d{bottom:8.800000pt;}
.y53{bottom:9.600000pt;}
.ybd{bottom:11.360000pt;}
.yc3{bottom:11.400000pt;}
.yc0{bottom:11.520000pt;}
.y8d{bottom:12.320000pt;}
.y50{bottom:12.640000pt;}
.y62{bottom:13.440000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y77{bottom:16.160000pt;}
.y74{bottom:16.800000pt;}
.y9{bottom:17.280000pt;}
.y6e{bottom:17.440000pt;}
.y65{bottom:17.600000pt;}
.y58{bottom:18.240000pt;}
.yd2{bottom:18.560000pt;}
.yba{bottom:18.720000pt;}
.y52{bottom:20.160000pt;}
.y5c{bottom:22.880000pt;}
.y4{bottom:24.800000pt;}
.y8c{bottom:26.400000pt;}
.y87{bottom:27.040000pt;}
.y90{bottom:27.080000pt;}
.y83{bottom:27.200000pt;}
.y61{bottom:27.520000pt;}
.y4e{bottom:29.280000pt;}
.yb4{bottom:32.320000pt;}
.y2{bottom:32.640000pt;}
.y5b{bottom:33.000000pt;}
.y51{bottom:34.240000pt;}
.y4a{bottom:35.520000pt;}
.y7e{bottom:36.160000pt;}
.y6c{bottom:36.320000pt;}
.y8{bottom:39.680000pt;}
.y4d{bottom:43.360000pt;}
.y72{bottom:43.680000pt;}
.y8a{bottom:45.440000pt;}
.y5f{bottom:46.400000pt;}
.yb3{bottom:46.426667pt;}
.y49{bottom:49.600000pt;}
.y4c{bottom:57.600000pt;}
.y48{bottom:59.680000pt;}
.yb7{bottom:60.480000pt;}
.yb2{bottom:60.506667pt;}
.y47{bottom:63.680000pt;}
.yb6{bottom:74.560000pt;}
.yb1{bottom:74.586667pt;}
.y46{bottom:77.920000pt;}
.yd1{bottom:84.832000pt;}
.yb0{bottom:88.826667pt;}
.y28{bottom:95.072000pt;}
.yd4{bottom:99.552000pt;}
.y43{bottom:102.752000pt;}
.yae{bottom:103.520000pt;}
.ye7{bottom:108.032000pt;}
.y98{bottom:110.112000pt;}
.ycf{bottom:114.432000pt;}
.yad{bottom:117.600000pt;}
.y27{bottom:127.232000pt;}
.yd0{bottom:129.152000pt;}
.yac{bottom:131.706667pt;}
.ye6{bottom:132.832000pt;}
.y97{bottom:134.746667pt;}
.y42{bottom:134.906667pt;}
.ycd{bottom:143.866667pt;}
.yab{bottom:145.786667pt;}
.ye5{bottom:157.466667pt;}
.yce{bottom:158.746667pt;}
.y26{bottom:159.386667pt;}
.yaa{bottom:159.866667pt;}
.y41{bottom:167.066667pt;}
.ycb{bottom:173.466667pt;}
.ya9{bottom:174.106667pt;}
.ye4{bottom:182.106667pt;}
.y96{bottom:184.186667pt;}
.ycc{bottom:188.186667pt;}
.y25{bottom:191.706667pt;}
.y40{bottom:199.386667pt;}
.yc9{bottom:203.066667pt;}
.ye3{bottom:206.906667pt;}
.y95{bottom:208.826667pt;}
.yca{bottom:217.786667pt;}
.y24{bottom:223.866667pt;}
.y3f{bottom:231.546667pt;}
.yc7{bottom:232.506667pt;}
.y94{bottom:233.466667pt;}
.yc8{bottom:247.386667pt;}
.y23{bottom:256.026667pt;}
.ye2{bottom:256.186667pt;}
.y93{bottom:258.266667pt;}
.yc5{bottom:262.106667pt;}
.y3e{bottom:263.706667pt;}
.y8f{bottom:276.346667pt;}
.yc6{bottom:276.826667pt;}
.ye1{bottom:280.826667pt;}
.y22{bottom:288.186667pt;}
.yc2{bottom:291.706667pt;}
.y91{bottom:295.226667pt;}
.y3d{bottom:295.866667pt;}
.ye0{bottom:305.666667pt;}
.yc4{bottom:306.466667pt;}
.y89{bottom:314.146667pt;}
.y21{bottom:320.546667pt;}
.ybf{bottom:321.186667pt;}
.y3c{bottom:328.226667pt;}
.ydf{bottom:330.306667pt;}
.yc1{bottom:336.066667pt;}
.ybc{bottom:350.786667pt;}
.y8b{bottom:351.266667pt;}
.y20{bottom:352.706667pt;}
.yde{bottom:354.946667pt;}
.y3b{bottom:360.386667pt;}
.ybe{bottom:365.506667pt;}
.y86{bottom:370.306667pt;}
.ydd{bottom:379.746667pt;}
.yb9{bottom:380.386667pt;}
.y1f{bottom:384.866667pt;}
.y88{bottom:389.186667pt;}
.y3a{bottom:392.546667pt;}
.ybb{bottom:395.106667pt;}
.ydc{bottom:404.386667pt;}
.y82{bottom:408.066667pt;}
.ya8{bottom:409.826667pt;}
.y1e{bottom:417.026667pt;}
.y39{bottom:424.706667pt;}
.y84{bottom:427.106667pt;}
.ydb{bottom:429.026667pt;}
.y7d{bottom:445.986667pt;}
.y1d{bottom:449.346667pt;}
.yda{bottom:453.666667pt;}
.y38{bottom:456.866667pt;}
.y7f{bottom:473.986667pt;}
.yd9{bottom:478.466667pt;}
.y1c{bottom:479.426667pt;}
.y37{bottom:489.186667pt;}
.y7a{bottom:492.866667pt;}
.yaf{bottom:495.106667pt;}
.yd8{bottom:503.106667pt;}
.y1b{bottom:509.026667pt;}
.y7b{bottom:511.746667pt;}
.y36{bottom:521.346667pt;}
.yd7{bottom:527.746667pt;}
.y71{bottom:539.933333pt;}
.y1a{bottom:541.373333pt;}
.yd6{bottom:552.413333pt;}
.y35{bottom:553.533333pt;}
.y73{bottom:566.813333pt;}
.y19{bottom:573.533333pt;}
.yd5{bottom:577.213333pt;}
.y34{bottom:585.693333pt;}
.y6b{bottom:594.493333pt;}
.ya7{bottom:601.853333pt;}
.y18{bottom:605.693333pt;}
.y33{bottom:618.013333pt;}
.y6d{bottom:622.653333pt;}
.ya6{bottom:626.493333pt;}
.y17{bottom:637.853333pt;}
.y6a{bottom:641.533333pt;}
.y32{bottom:650.173333pt;}
.ya5{bottom:651.293333pt;}
.y64{bottom:660.573333pt;}
.y16{bottom:670.013333pt;}
.ya4{bottom:675.933333pt;}
.y31{bottom:682.333333pt;}
.y5e{bottom:688.893333pt;}
.y15{bottom:700.253333pt;}
.ya3{bottom:700.573333pt;}
.y30{bottom:714.493333pt;}
.ya2{bottom:725.213333pt;}
.y60{bottom:727.133333pt;}
.y14{bottom:729.853333pt;}
.y5a{bottom:746.173333pt;}
.y2f{bottom:746.813333pt;}
.ya1{bottom:750.013333pt;}
.y13{bottom:762.013333pt;}
.ya0{bottom:774.693333pt;}
.y2e{bottom:779.013333pt;}
.y59{bottom:779.813333pt;}
.y12{bottom:794.373333pt;}
.y57{bottom:798.693333pt;}
.y9f{bottom:799.333333pt;}
.y2d{bottom:811.173333pt;}
.y54{bottom:817.733333pt;}
.y9e{bottom:824.133333pt;}
.y11{bottom:824.453333pt;}
.y45{bottom:836.613333pt;}
.y2c{bottom:843.333333pt;}
.y9d{bottom:848.773333pt;}
.y10{bottom:854.053333pt;}
.y4b{bottom:856.933333pt;}
.y9c{bottom:873.413333pt;}
.y2b{bottom:875.493333pt;}
.yf{bottom:886.373333pt;}
.y9b{bottom:898.053333pt;}
.y4f{bottom:901.893333pt;}
.y2a{bottom:907.813333pt;}
.ye{bottom:918.533333pt;}
.y9a{bottom:922.853333pt;}
.y44{bottom:929.253333pt;}
.y29{bottom:939.973333pt;}
.y99{bottom:947.493333pt;}
.yd{bottom:950.693333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h2f{height:14.080000pt;}
.h33{height:14.112000pt;}
.h31{height:14.240000pt;}
.h14{height:18.240000pt;}
.h29{height:18.272000pt;}
.h24{height:18.400000pt;}
.h13{height:19.680000pt;}
.h11{height:22.720000pt;}
.h1e{height:26.240000pt;}
.h1d{height:26.880000pt;}
.h22{height:27.360000pt;}
.h1b{height:27.520000pt;}
.h20{height:27.552000pt;}
.h19{height:27.680000pt;}
.h2e{height:28.800000pt;}
.h32{height:28.832000pt;}
.h30{height:28.960000pt;}
.h2d{height:30.254687pt;}
.h16{height:32.992000pt;}
.h7{height:35.232000pt;}
.h27{height:36.480000pt;}
.h25{height:37.120000pt;}
.h28{height:37.152000pt;}
.h23{height:37.280000pt;}
.h18{height:37.600000pt;}
.h15{height:42.084375pt;}
.hf{height:43.215000pt;}
.h12{height:44.320000pt;}
.h21{height:46.240000pt;}
.h1a{height:46.400000pt;}
.h1f{height:46.432000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.hc{height:52.503750pt;}
.hb{height:52.832812pt;}
.h1c{height:53.760000pt;}
.h26{height:55.520000pt;}
.h17{height:56.480000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.h10{height:67.680000pt;}
.ha{height:73.490625pt;}
.hd{height:74.697187pt;}
.h6{height:75.465000pt;}
.h34{height:76.964840pt;}
.h2c{height:84.640000pt;}
.h9{height:85.785000pt;}
.he{height:88.000000pt;}
.h2b{height:98.912000pt;}
.h2a{height:184.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.072000pt;}
.w12{width:27.680000pt;}
.w9{width:37.120000pt;}
.wf{width:46.400000pt;}
.w11{width:46.560000pt;}
.w10{width:46.592000pt;}
.w16{width:46.752000pt;}
.w13{width:47.040000pt;}
.w18{width:56.000000pt;}
.w1d{width:56.032000pt;}
.w1f{width:56.160000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w17{width:65.152000pt;}
.w1c{width:65.440000pt;}
.wa{width:65.472000pt;}
.w1e{width:65.600000pt;}
.w15{width:65.632000pt;}
.wd{width:74.880000pt;}
.w8{width:84.320000pt;}
.wb{width:84.352000pt;}
.w20{width:93.632000pt;}
.we{width:94.272000pt;}
.w14{width:112.512000pt;}
.w19{width:122.112000pt;}
.w1b{width:122.240000pt;}
.w1a{width:197.786667pt;}
.wc{width:254.746667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.112000pt;}
.x2{left:7.680000pt;}
.x19{left:9.120000pt;}
.x7{left:12.320000pt;}
.x34{left:18.560000pt;}
.x36{left:23.360000pt;}
.x33{left:25.152000pt;}
.x35{left:26.120000pt;}
.x1{left:28.320000pt;}
.x2a{left:47.680000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x26{left:76.799988pt;}
.xc{left:79.071988pt;}
.x15{left:97.951988pt;}
.xf{left:104.351988pt;}
.x14{left:113.311988pt;}
.x9{left:115.391988pt;}
.x12{left:123.551988pt;}
.x8{left:131.871988pt;}
.x2b{left:141.946667pt;}
.x10{left:147.066655pt;}
.x2c{left:179.706667pt;}
.x1a{left:188.826667pt;}
.x27{left:218.586655pt;}
.x1b{left:226.586667pt;}
.x2d{left:236.346667pt;}
.x11{left:247.426655pt;}
.x16{left:264.066655pt;}
.x1c{left:292.866667pt;}
.x2e{left:302.626667pt;}
.x13{left:327.906655pt;}
.xb{left:335.426655pt;}
.xe{left:338.146655pt;}
.x21{left:340.066667pt;}
.x28{left:342.946655pt;}
.xd{left:345.986655pt;}
.x17{left:364.226655pt;}
.x2f{left:368.706667pt;}
.x1d{left:377.826667pt;}
.xa{left:396.866655pt;}
.x22{left:425.053333pt;}
.x1e{left:462.973333pt;}
.x30{left:501.053333pt;}
.x23{left:510.173333pt;}
.x1f{left:538.493333pt;}
.x31{left:567.293333pt;}
.x24{left:585.733333pt;}
.x29{left:624.613322pt;}
.x20{left:633.413333pt;}
.x25{left:680.613333pt;}
.x32{left:690.053333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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