
    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_45061ed6fcc09c531eb93b05.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_a2ed56bb1a1a5c80b7f0110e.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_aa9b26c9df0bb386fc8378a3.woff')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_bb7c3bd68d5ddac9a9b9a39e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7a9ee50359d8df74b1e9055.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff55a21858feedab4dd7c490.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lsb{letter-spacing:21.600000px;}
.ls2{letter-spacing:28.080000px;}
.lse{letter-spacing:33.960000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.ws8{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.419200px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._3{width:2.273280px;}
._8{width:4.003200px;}
._7{width:5.832000px;}
._b{width:7.260000px;}
._5{width:9.216000px;}
._4{width:10.224000px;}
._6{width:11.580000px;}
._c{width:12.744000px;}
._d{width:13.824000px;}
._a{width:14.832000px;}
._9{width:15.912000px;}
._11{width:16.992000px;}
._13{width:19.195200px;}
._12{width:20.280000px;}
._18{width:21.624000px;}
._1f{width:22.668000px;}
._19{width:23.976000px;}
._e{width:25.272000px;}
._24{width:26.455200px;}
._f{width:27.924000px;}
._10{width:28.934400px;}
._21{width:29.990400px;}
._20{width:31.032000px;}
._14{width:32.400000px;}
._1a{width:33.768000px;}
._1b{width:34.848000px;}
._23{width:35.947200px;}
._22{width:37.368000px;}
._16{width:38.616000px;}
._15{width:39.936000px;}
._17{width:40.992000px;}
._1e{width:48.487200px;}
._1c{width:49.507200px;}
._1d{width:50.544000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y66{bottom:14.205000px;}
.y8e{bottom:14.385000px;}
.y68{bottom:14.565000px;}
.y6a{bottom:14.745000px;}
.ya4{bottom:18.720000px;}
.yb9{bottom:18.900000px;}
.y81{bottom:19.080000px;}
.y7b{bottom:19.110000px;}
.y7e{bottom:19.260000px;}
.ybb{bottom:20.160000px;}
.ybf{bottom:20.205000px;}
.ybd{bottom:21.060000px;}
.y75{bottom:23.400000px;}
.y91{bottom:23.430000px;}
.yae{bottom:23.565000px;}
.y82{bottom:23.580000px;}
.y7c{bottom:23.610000px;}
.yb1{bottom:23.745000px;}
.y7f{bottom:23.760000px;}
.y64{bottom:26.640000px;}
.y94{bottom:35.640000px;}
.y79{bottom:38.880000px;}
.yaa{bottom:39.960000px;}
.y6{bottom:40.680000px;}
.y65{bottom:45.210000px;}
.ya6{bottom:49.680000px;}
.ya9{bottom:49.860000px;}
.y77{bottom:54.360000px;}
.y90{bottom:54.390000px;}
.yb8{bottom:57.060000px;}
.y62{bottom:57.990000px;}
.y5{bottom:58.680000px;}
.y78{bottom:70.020000px;}
.y73{bottom:79.380000px;}
.ya8{bottom:80.820000px;}
.y76{bottom:85.500000px;}
.y93{bottom:85.530000px;}
.ya2{bottom:85.680000px;}
.y8c{bottom:85.890000px;}
.ya7{bottom:111.780000px;}
.y92{bottom:116.490000px;}
.y54{bottom:135.900000px;}
.y8b{bottom:138.780000px;}
.yd4{bottom:144.540000px;}
.yf3{bottom:145.800000px;}
.y27{bottom:154.260000px;}
.yb6{bottom:158.220000px;}
.y4d{bottom:166.500000px;}
.y47{bottom:166.860000px;}
.yf2{bottom:176.940000px;}
.y26{bottom:185.400000px;}
.yb5{bottom:189.360000px;}
.yd3{bottom:196.920000px;}
.y46{bottom:198.000000px;}
.y6f{bottom:198.360000px;}
.y8f{bottom:200.880000px;}
.yf1{bottom:207.930000px;}
.yb4{bottom:220.350000px;}
.yd2{bottom:227.910000px;}
.y45{bottom:228.990000px;}
.y6e{bottom:229.350000px;}
.y25{bottom:237.450000px;}
.yf0{bottom:239.070000px;}
.y6d{bottom:246.465000px;}
.yb3{bottom:251.490000px;}
.yd1{bottom:259.050000px;}
.y58{bottom:259.770000px;}
.y44{bottom:260.130000px;}
.y24{bottom:268.590000px;}
.yef{bottom:270.030000px;}
.y6c{bottom:278.325000px;}
.y8d{bottom:281.745000px;}
.yb2{bottom:282.810000px;}
.yd0{bottom:290.010000px;}
.y53{bottom:290.730000px;}
.y43{bottom:291.090000px;}
.y23{bottom:299.550000px;}
.yb0{bottom:299.925000px;}
.yee{bottom:301.170000px;}
.y6b{bottom:310.185000px;}
.ycf{bottom:321.150000px;}
.y5b{bottom:321.870000px;}
.y42{bottom:322.230000px;}
.y8a{bottom:328.350000px;}
.y22{bottom:330.510000px;}
.yed{bottom:332.130000px;}
.y69{bottom:341.865000px;}
.yaf{bottom:349.785000px;}
.yce{bottom:352.110000px;}
.y4c{bottom:352.830000px;}
.y41{bottom:353.190000px;}
.y89{bottom:358.950000px;}
.y21{bottom:361.650000px;}
.yec{bottom:363.270000px;}
.y67{bottom:373.725000px;}
.ycd{bottom:383.250000px;}
.y4b{bottom:383.790000px;}
.y40{bottom:384.150000px;}
.y88{bottom:390.090000px;}
.y20{bottom:392.610000px;}
.yeb{bottom:394.230000px;}
.yad{bottom:399.645000px;}
.y61{bottom:405.585000px;}
.ycc{bottom:414.210000px;}
.y3f{bottom:415.290000px;}
.y87{bottom:421.050000px;}
.y1f{bottom:423.750000px;}
.yea{bottom:425.370000px;}
.ycb{bottom:445.395000px;}
.y52{bottom:445.935000px;}
.y3e{bottom:446.295000px;}
.yac{bottom:449.355000px;}
.y86{bottom:452.595000px;}
.y1e{bottom:454.755000px;}
.ye9{bottom:456.375000px;}
.y63{bottom:468.435000px;}
.yca{bottom:476.355000px;}
.y5a{bottom:477.075000px;}
.y3d{bottom:477.435000px;}
.y85{bottom:483.555000px;}
.y1d{bottom:485.895000px;}
.ye8{bottom:487.515000px;}
.yab{bottom:499.215000px;}
.y84{bottom:500.655000px;}
.yc9{bottom:507.495000px;}
.y4a{bottom:508.035000px;}
.y3c{bottom:508.395000px;}
.y1c{bottom:516.855000px;}
.ye7{bottom:518.475000px;}
.yc8{bottom:538.455000px;}
.y49{bottom:539.175000px;}
.y3b{bottom:539.535000px;}
.y83{bottom:541.515000px;}
.y1b{bottom:547.995000px;}
.ya1{bottom:549.075000px;}
.ye6{bottom:549.615000px;}
.yc7{bottom:569.595000px;}
.y60{bottom:570.135000px;}
.y3a{bottom:570.495000px;}
.y1a{bottom:578.955000px;}
.ye5{bottom:580.575000px;}
.y80{bottom:582.375000px;}
.yc6{bottom:600.555000px;}
.y51{bottom:601.275000px;}
.y39{bottom:601.635000px;}
.y19{bottom:610.095000px;}
.ya5{bottom:611.175000px;}
.ye4{bottom:611.715000px;}
.y7d{bottom:623.055000px;}
.yc5{bottom:631.695000px;}
.y38{bottom:632.595000px;}
.y18{bottom:641.055000px;}
.ye3{bottom:642.675000px;}
.y37{bottom:663.735000px;}
.y7a{bottom:663.915000px;}
.y17{bottom:672.195000px;}
.ye2{bottom:673.845000px;}
.ya3{bottom:683.025000px;}
.yc4{bottom:683.385000px;}
.y57{bottom:694.365000px;}
.y36{bottom:694.725000px;}
.y16{bottom:703.185000px;}
.y72{bottom:704.625000px;}
.ye1{bottom:704.805000px;}
.y35{bottom:725.865000px;}
.y15{bottom:734.325000px;}
.yc3{bottom:735.585000px;}
.ye0{bottom:735.945000px;}
.ya0{bottom:738.465000px;}
.y5f{bottom:756.465000px;}
.y34{bottom:756.825000px;}
.y14{bottom:765.285000px;}
.ydf{bottom:766.905000px;}
.y9f{bottom:769.065000px;}
.y50{bottom:787.605000px;}
.yc2{bottom:787.785000px;}
.y33{bottom:787.965000px;}
.y13{bottom:796.065000px;}
.yde{bottom:798.045000px;}
.y9e{bottom:800.205000px;}
.yc1{bottom:809.385000px;}
.y74{bottom:816.585000px;}
.y4f{bottom:818.565000px;}
.y32{bottom:818.925000px;}
.y12{bottom:827.565000px;}
.ydd{bottom:829.005000px;}
.y9d{bottom:831.165000px;}
.y11{bottom:848.625000px;}
.y5d{bottom:849.705000px;}
.y31{bottom:850.065000px;}
.yc0{bottom:853.845000px;}
.ydc{bottom:860.145000px;}
.y9c{bottom:862.305000px;}
.y10{bottom:876.345000px;}
.y56{bottom:880.665000px;}
.y30{bottom:881.025000px;}
.yf{bottom:887.865000px;}
.ydb{bottom:891.105000px;}
.y9b{bottom:893.265000px;}
.ybe{bottom:898.485000px;}
.ye{bottom:907.305000px;}
.y59{bottom:911.850000px;}
.y2f{bottom:912.210000px;}
.yda{bottom:922.290000px;}
.y9a{bottom:924.810000px;}
.yd{bottom:935.070000px;}
.ybc{bottom:941.370000px;}
.y99{bottom:941.910000px;}
.y71{bottom:942.810000px;}
.y2e{bottom:943.170000px;}
.yc{bottom:946.590000px;}
.yd9{bottom:953.250000px;}
.yb{bottom:966.750000px;}
.y4e{bottom:973.950000px;}
.y2d{bottom:974.310000px;}
.y98{bottom:982.770000px;}
.yd8{bottom:984.390000px;}
.yba{bottom:985.830000px;}
.ya{bottom:986.190000px;}
.y5e{bottom:1004.910000px;}
.y2c{bottom:1005.270000px;}
.yd7{bottom:1015.350000px;}
.y9{bottom:1020.750000px;}
.y97{bottom:1023.450000px;}
.yb7{bottom:1028.670000px;}
.y5c{bottom:1036.050000px;}
.y2b{bottom:1036.410000px;}
.yd6{bottom:1046.310000px;}
.y96{bottom:1064.310000px;}
.y55{bottom:1067.010000px;}
.y2a{bottom:1067.370000px;}
.y8{bottom:1072.230000px;}
.yd5{bottom:1077.450000px;}
.y29{bottom:1098.150000px;}
.y48{bottom:1098.510000px;}
.y95{bottom:1104.990000px;}
.y7{bottom:1108.410000px;}
.y70{bottom:1129.110000px;}
.y28{bottom:1129.470000px;}
.y4{bottom:1150.380000px;}
.y3{bottom:1170.720000px;}
.y2{bottom:1191.780000px;}
.y1{bottom:1212.120000px;}
.hd{height:30.945000px;}
.he{height:31.125000px;}
.h14{height:39.945000px;}
.h1b{height:39.960000px;}
.h12{height:39.990000px;}
.h13{height:40.125000px;}
.h19{height:40.170000px;}
.h24{height:42.105000px;}
.h26{height:42.142500px;}
.h25{height:43.725000px;}
.h27{height:43.740000px;}
.h8{height:47.344922px;}
.h1f{height:48.945000px;}
.h21{height:48.981000px;}
.h20{height:49.125000px;}
.h10{height:49.140000px;}
.h9{height:50.273438px;}
.hb{height:55.605000px;}
.h4{height:58.651172px;}
.h1e{height:61.185000px;}
.h18{height:61.378500px;}
.hc{height:61.941000px;}
.h3{height:70.664062px;}
.h1c{height:70.950000px;}
.h2{height:72.562500px;}
.h28{height:74.953125px;}
.h23{height:75.585000px;}
.h7{height:76.317188px;}
.h16{height:80.136000px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h11{height:111.240000px;}
.h22{height:116.490000px;}
.ha{height:118.461000px;}
.h1d{height:133.050000px;}
.h17{height:142.236000px;}
.hf{height:161.100000px;}
.h1a{height:173.910000px;}
.h15{height:174.090000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:44.301000px;}
.w9{width:46.641000px;}
.w1b{width:47.901000px;}
.w3{width:58.140000px;}
.w15{width:72.165000px;}
.w16{width:74.880000px;}
.w19{width:81.525000px;}
.w22{width:85.125000px;}
.w23{width:86.925000px;}
.w14{width:87.681000px;}
.w17{width:89.820000px;}
.w21{width:92.556000px;}
.w20{width:98.280000px;}
.w18{width:100.296000px;}
.we{width:109.065000px;}
.w25{width:113.400000px;}
.wb{width:125.640000px;}
.wc{width:125.676000px;}
.wd{width:136.641000px;}
.w1f{width:145.821000px;}
.w5{width:145.836000px;}
.wf{width:149.209500px;}
.w7{width:151.395000px;}
.w1a{width:151.549500px;}
.w6{width:159.825000px;}
.w12{width:165.420000px;}
.w8{width:170.989500px;}
.w1e{width:172.785000px;}
.w13{width:182.730000px;}
.w27{width:183.810000px;}
.w1d{width:191.550000px;}
.w2{width:193.879500px;}
.w28{width:200.535000px;}
.w24{width:214.039500px;}
.w26{width:385.275000px;}
.w4{width:458.535000px;}
.wa{width:499.575000px;}
.w11{width:510.195000px;}
.w1c{width:511.635000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:3.949500px;}
.x47{left:5.565000px;}
.x46{left:6.660000px;}
.x25{left:7.729500px;}
.x2f{left:9.345000px;}
.x17{left:10.800000px;}
.x45{left:12.600000px;}
.x14{left:14.220000px;}
.x1a{left:15.825000px;}
.x3d{left:17.265000px;}
.x1d{left:18.750000px;}
.x26{left:19.980000px;}
.x3f{left:21.060000px;}
.x3c{left:23.250000px;}
.x1e{left:24.480000px;}
.x52{left:26.805000px;}
.x44{left:28.110000px;}
.x33{left:29.160000px;}
.x2d{left:30.600000px;}
.x41{left:32.250000px;}
.x32{left:33.300000px;}
.x34{left:34.545000px;}
.x30{left:35.985000px;}
.x18{left:37.620000px;}
.x22{left:39.060000px;}
.x4f{left:40.710000px;}
.x24{left:41.970000px;}
.x53{left:43.590000px;}
.x2c{left:44.820000px;}
.x4e{left:46.290000px;}
.x58{left:47.700000px;}
.x1b{left:50.025000px;}
.x12{left:52.363500px;}
.x23{left:55.065000px;}
.x1f{left:57.060000px;}
.x5a{left:58.170000px;}
.x21{left:59.970000px;}
.x54{left:62.443500px;}
.x20{left:64.065000px;}
.x39{left:67.500000px;}
.x5b{left:75.270000px;}
.x4b{left:80.640000px;}
.x5c{left:84.270000px;}
.x11{left:100.306500px;}
.x49{left:104.086500px;}
.x4{left:108.036000px;}
.x57{left:110.910000px;}
.x7{left:112.536000px;}
.x6{left:114.696000px;}
.x27{left:119.196000px;}
.x5d{left:135.036000px;}
.x16{left:147.450000px;}
.x5e{left:162.030000px;}
.x2b{left:167.970000px;}
.x10{left:172.110000px;}
.x38{left:173.160000px;}
.xe{left:196.410000px;}
.xb{left:206.850000px;}
.x2{left:224.490000px;}
.xc{left:236.910000px;}
.x3{left:247.710000px;}
.x36{left:257.265000px;}
.x29{left:272.025000px;}
.x13{left:294.915000px;}
.x8{left:299.775000px;}
.x37{left:302.475000px;}
.x4a{left:304.995000px;}
.x55{left:315.075000px;}
.x2a{left:319.395000px;}
.x9{left:340.995000px;}
.x1{left:350.355000px;}
.x15{left:353.775000px;}
.xd{left:364.935000px;}
.x40{left:378.075000px;}
.xf{left:389.055000px;}
.x35{left:393.555000px;}
.x50{left:403.995000px;}
.x28{left:412.635000px;}
.x56{left:429.195000px;}
.x5{left:433.155000px;}
.xa{left:446.655000px;}
.x48{left:466.635000px;}
.x3a{left:468.615000px;}
.x4c{left:497.280000px;}
.x19{left:500.340000px;}
.x42{left:569.820000px;}
.x2e{left:572.340000px;}
.x51{left:583.140000px;}
.x59{left:613.920000px;}
.x3b{left:652.080000px;}
.x1c{left:660.900000px;}
.x4d{left:670.800000px;}
.x31{left:709.890000px;}
.x3e{left:740.490000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsb{letter-spacing:19.200000pt;}
.ls2{letter-spacing:24.960000pt;}
.lse{letter-spacing:30.186667pt;}
.ls0{letter-spacing:600.480000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.150400pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._3{width:2.020693pt;}
._8{width:3.558400pt;}
._7{width:5.184000pt;}
._b{width:6.453333pt;}
._5{width:8.192000pt;}
._4{width:9.088000pt;}
._6{width:10.293333pt;}
._c{width:11.328000pt;}
._d{width:12.288000pt;}
._a{width:13.184000pt;}
._9{width:14.144000pt;}
._11{width:15.104000pt;}
._13{width:17.062400pt;}
._12{width:18.026667pt;}
._18{width:19.221333pt;}
._1f{width:20.149333pt;}
._19{width:21.312000pt;}
._e{width:22.464000pt;}
._24{width:23.515733pt;}
._f{width:24.821333pt;}
._10{width:25.719467pt;}
._21{width:26.658133pt;}
._20{width:27.584000pt;}
._14{width:28.800000pt;}
._1a{width:30.016000pt;}
._1b{width:30.976000pt;}
._23{width:31.953067pt;}
._22{width:33.216000pt;}
._16{width:34.325333pt;}
._15{width:35.498667pt;}
._17{width:36.437333pt;}
._1e{width:43.099733pt;}
._1c{width:44.006400pt;}
._1d{width:44.928000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:12.626667pt;}
.y8e{bottom:12.786667pt;}
.y68{bottom:12.946667pt;}
.y6a{bottom:13.106667pt;}
.ya4{bottom:16.640000pt;}
.yb9{bottom:16.800000pt;}
.y81{bottom:16.960000pt;}
.y7b{bottom:16.986667pt;}
.y7e{bottom:17.120000pt;}
.ybb{bottom:17.920000pt;}
.ybf{bottom:17.960000pt;}
.ybd{bottom:18.720000pt;}
.y75{bottom:20.800000pt;}
.y91{bottom:20.826667pt;}
.yae{bottom:20.946667pt;}
.y82{bottom:20.960000pt;}
.y7c{bottom:20.986667pt;}
.yb1{bottom:21.106667pt;}
.y7f{bottom:21.120000pt;}
.y64{bottom:23.680000pt;}
.y94{bottom:31.680000pt;}
.y79{bottom:34.560000pt;}
.yaa{bottom:35.520000pt;}
.y6{bottom:36.160000pt;}
.y65{bottom:40.186667pt;}
.ya6{bottom:44.160000pt;}
.ya9{bottom:44.320000pt;}
.y77{bottom:48.320000pt;}
.y90{bottom:48.346667pt;}
.yb8{bottom:50.720000pt;}
.y62{bottom:51.546667pt;}
.y5{bottom:52.160000pt;}
.y78{bottom:62.240000pt;}
.y73{bottom:70.560000pt;}
.ya8{bottom:71.840000pt;}
.y76{bottom:76.000000pt;}
.y93{bottom:76.026667pt;}
.ya2{bottom:76.160000pt;}
.y8c{bottom:76.346667pt;}
.ya7{bottom:99.360000pt;}
.y92{bottom:103.546667pt;}
.y54{bottom:120.800000pt;}
.y8b{bottom:123.360000pt;}
.yd4{bottom:128.480000pt;}
.yf3{bottom:129.600000pt;}
.y27{bottom:137.120000pt;}
.yb6{bottom:140.640000pt;}
.y4d{bottom:148.000000pt;}
.y47{bottom:148.320000pt;}
.yf2{bottom:157.280000pt;}
.y26{bottom:164.800000pt;}
.yb5{bottom:168.320000pt;}
.yd3{bottom:175.040000pt;}
.y46{bottom:176.000000pt;}
.y6f{bottom:176.320000pt;}
.y8f{bottom:178.560000pt;}
.yf1{bottom:184.826667pt;}
.yb4{bottom:195.866667pt;}
.yd2{bottom:202.586667pt;}
.y45{bottom:203.546667pt;}
.y6e{bottom:203.866667pt;}
.y25{bottom:211.066667pt;}
.yf0{bottom:212.506667pt;}
.y6d{bottom:219.080000pt;}
.yb3{bottom:223.546667pt;}
.yd1{bottom:230.266667pt;}
.y58{bottom:230.906667pt;}
.y44{bottom:231.226667pt;}
.y24{bottom:238.746667pt;}
.yef{bottom:240.026667pt;}
.y6c{bottom:247.400000pt;}
.y8d{bottom:250.440000pt;}
.yb2{bottom:251.386667pt;}
.yd0{bottom:257.786667pt;}
.y53{bottom:258.426667pt;}
.y43{bottom:258.746667pt;}
.y23{bottom:266.266667pt;}
.yb0{bottom:266.600000pt;}
.yee{bottom:267.706667pt;}
.y6b{bottom:275.720000pt;}
.ycf{bottom:285.466667pt;}
.y5b{bottom:286.106667pt;}
.y42{bottom:286.426667pt;}
.y8a{bottom:291.866667pt;}
.y22{bottom:293.786667pt;}
.yed{bottom:295.226667pt;}
.y69{bottom:303.880000pt;}
.yaf{bottom:310.920000pt;}
.yce{bottom:312.986667pt;}
.y4c{bottom:313.626667pt;}
.y41{bottom:313.946667pt;}
.y89{bottom:319.066667pt;}
.y21{bottom:321.466667pt;}
.yec{bottom:322.906667pt;}
.y67{bottom:332.200000pt;}
.ycd{bottom:340.666667pt;}
.y4b{bottom:341.146667pt;}
.y40{bottom:341.466667pt;}
.y88{bottom:346.746667pt;}
.y20{bottom:348.986667pt;}
.yeb{bottom:350.426667pt;}
.yad{bottom:355.240000pt;}
.y61{bottom:360.520000pt;}
.ycc{bottom:368.186667pt;}
.y3f{bottom:369.146667pt;}
.y87{bottom:374.266667pt;}
.y1f{bottom:376.666667pt;}
.yea{bottom:378.106667pt;}
.ycb{bottom:395.906667pt;}
.y52{bottom:396.386667pt;}
.y3e{bottom:396.706667pt;}
.yac{bottom:399.426667pt;}
.y86{bottom:402.306667pt;}
.y1e{bottom:404.226667pt;}
.ye9{bottom:405.666667pt;}
.y63{bottom:416.386667pt;}
.yca{bottom:423.426667pt;}
.y5a{bottom:424.066667pt;}
.y3d{bottom:424.386667pt;}
.y85{bottom:429.826667pt;}
.y1d{bottom:431.906667pt;}
.ye8{bottom:433.346667pt;}
.yab{bottom:443.746667pt;}
.y84{bottom:445.026667pt;}
.yc9{bottom:451.106667pt;}
.y4a{bottom:451.586667pt;}
.y3c{bottom:451.906667pt;}
.y1c{bottom:459.426667pt;}
.ye7{bottom:460.866667pt;}
.yc8{bottom:478.626667pt;}
.y49{bottom:479.266667pt;}
.y3b{bottom:479.586667pt;}
.y83{bottom:481.346667pt;}
.y1b{bottom:487.106667pt;}
.ya1{bottom:488.066667pt;}
.ye6{bottom:488.546667pt;}
.yc7{bottom:506.306667pt;}
.y60{bottom:506.786667pt;}
.y3a{bottom:507.106667pt;}
.y1a{bottom:514.626667pt;}
.ye5{bottom:516.066667pt;}
.y80{bottom:517.666667pt;}
.yc6{bottom:533.826667pt;}
.y51{bottom:534.466667pt;}
.y39{bottom:534.786667pt;}
.y19{bottom:542.306667pt;}
.ya5{bottom:543.266667pt;}
.ye4{bottom:543.746667pt;}
.y7d{bottom:553.826667pt;}
.yc5{bottom:561.506667pt;}
.y38{bottom:562.306667pt;}
.y18{bottom:569.826667pt;}
.ye3{bottom:571.266667pt;}
.y37{bottom:589.986667pt;}
.y7a{bottom:590.146667pt;}
.y17{bottom:597.506667pt;}
.ye2{bottom:598.973333pt;}
.ya3{bottom:607.133333pt;}
.yc4{bottom:607.453333pt;}
.y57{bottom:617.213333pt;}
.y36{bottom:617.533333pt;}
.y16{bottom:625.053333pt;}
.y72{bottom:626.333333pt;}
.ye1{bottom:626.493333pt;}
.y35{bottom:645.213333pt;}
.y15{bottom:652.733333pt;}
.yc3{bottom:653.853333pt;}
.ye0{bottom:654.173333pt;}
.ya0{bottom:656.413333pt;}
.y5f{bottom:672.413333pt;}
.y34{bottom:672.733333pt;}
.y14{bottom:680.253333pt;}
.ydf{bottom:681.693333pt;}
.y9f{bottom:683.613333pt;}
.y50{bottom:700.093333pt;}
.yc2{bottom:700.253333pt;}
.y33{bottom:700.413333pt;}
.y13{bottom:707.613333pt;}
.yde{bottom:709.373333pt;}
.y9e{bottom:711.293333pt;}
.yc1{bottom:719.453333pt;}
.y74{bottom:725.853333pt;}
.y4f{bottom:727.613333pt;}
.y32{bottom:727.933333pt;}
.y12{bottom:735.613333pt;}
.ydd{bottom:736.893333pt;}
.y9d{bottom:738.813333pt;}
.y11{bottom:754.333333pt;}
.y5d{bottom:755.293333pt;}
.y31{bottom:755.613333pt;}
.yc0{bottom:758.973333pt;}
.ydc{bottom:764.573333pt;}
.y9c{bottom:766.493333pt;}
.y10{bottom:778.973333pt;}
.y56{bottom:782.813333pt;}
.y30{bottom:783.133333pt;}
.yf{bottom:789.213333pt;}
.ydb{bottom:792.093333pt;}
.y9b{bottom:794.013333pt;}
.ybe{bottom:798.653333pt;}
.ye{bottom:806.493333pt;}
.y59{bottom:810.533333pt;}
.y2f{bottom:810.853333pt;}
.yda{bottom:819.813333pt;}
.y9a{bottom:822.053333pt;}
.yd{bottom:831.173333pt;}
.ybc{bottom:836.773333pt;}
.y99{bottom:837.253333pt;}
.y71{bottom:838.053333pt;}
.y2e{bottom:838.373333pt;}
.yc{bottom:841.413333pt;}
.yd9{bottom:847.333333pt;}
.yb{bottom:859.333333pt;}
.y4e{bottom:865.733333pt;}
.y2d{bottom:866.053333pt;}
.y98{bottom:873.573333pt;}
.yd8{bottom:875.013333pt;}
.yba{bottom:876.293333pt;}
.ya{bottom:876.613333pt;}
.y5e{bottom:893.253333pt;}
.y2c{bottom:893.573333pt;}
.yd7{bottom:902.533333pt;}
.y9{bottom:907.333333pt;}
.y97{bottom:909.733333pt;}
.yb7{bottom:914.373333pt;}
.y5c{bottom:920.933333pt;}
.y2b{bottom:921.253333pt;}
.yd6{bottom:930.053333pt;}
.y96{bottom:946.053333pt;}
.y55{bottom:948.453333pt;}
.y2a{bottom:948.773333pt;}
.y8{bottom:953.093333pt;}
.yd5{bottom:957.733333pt;}
.y29{bottom:976.133333pt;}
.y48{bottom:976.453333pt;}
.y95{bottom:982.213333pt;}
.y7{bottom:985.253333pt;}
.y70{bottom:1003.653333pt;}
.y28{bottom:1003.973333pt;}
.y4{bottom:1022.560000pt;}
.y3{bottom:1040.640000pt;}
.y2{bottom:1059.360000pt;}
.y1{bottom:1077.440000pt;}
.hd{height:27.506667pt;}
.he{height:27.666667pt;}
.h14{height:35.506667pt;}
.h1b{height:35.520000pt;}
.h12{height:35.546667pt;}
.h13{height:35.666667pt;}
.h19{height:35.706667pt;}
.h24{height:37.426667pt;}
.h26{height:37.460000pt;}
.h25{height:38.866667pt;}
.h27{height:38.880000pt;}
.h8{height:42.084375pt;}
.h1f{height:43.506667pt;}
.h21{height:43.538667pt;}
.h20{height:43.666667pt;}
.h10{height:43.680000pt;}
.h9{height:44.687500pt;}
.hb{height:49.426667pt;}
.h4{height:52.134375pt;}
.h1e{height:54.386667pt;}
.h18{height:54.558667pt;}
.hc{height:55.058667pt;}
.h3{height:62.812500pt;}
.h1c{height:63.066667pt;}
.h2{height:64.500000pt;}
.h28{height:66.625000pt;}
.h23{height:67.186667pt;}
.h7{height:67.837500pt;}
.h16{height:71.232000pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h11{height:98.880000pt;}
.h22{height:103.546667pt;}
.ha{height:105.298667pt;}
.h1d{height:118.266667pt;}
.h17{height:126.432000pt;}
.hf{height:143.200000pt;}
.h1a{height:154.586667pt;}
.h15{height:154.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:39.378667pt;}
.w9{width:41.458667pt;}
.w1b{width:42.578667pt;}
.w3{width:51.680000pt;}
.w15{width:64.146667pt;}
.w16{width:66.560000pt;}
.w19{width:72.466667pt;}
.w22{width:75.666667pt;}
.w23{width:77.266667pt;}
.w14{width:77.938667pt;}
.w17{width:79.840000pt;}
.w21{width:82.272000pt;}
.w20{width:87.360000pt;}
.w18{width:89.152000pt;}
.we{width:96.946667pt;}
.w25{width:100.800000pt;}
.wb{width:111.680000pt;}
.wc{width:111.712000pt;}
.wd{width:121.458667pt;}
.w1f{width:129.618667pt;}
.w5{width:129.632000pt;}
.wf{width:132.630667pt;}
.w7{width:134.573333pt;}
.w1a{width:134.710667pt;}
.w6{width:142.066667pt;}
.w12{width:147.040000pt;}
.w8{width:151.990667pt;}
.w1e{width:153.586667pt;}
.w13{width:162.426667pt;}
.w27{width:163.386667pt;}
.w1d{width:170.266667pt;}
.w2{width:172.337333pt;}
.w28{width:178.253333pt;}
.w24{width:190.257333pt;}
.w26{width:342.466667pt;}
.w4{width:407.586667pt;}
.wa{width:444.066667pt;}
.w11{width:453.506667pt;}
.w1c{width:454.786667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:3.510667pt;}
.x47{left:4.946667pt;}
.x46{left:5.920000pt;}
.x25{left:6.870667pt;}
.x2f{left:8.306667pt;}
.x17{left:9.600000pt;}
.x45{left:11.200000pt;}
.x14{left:12.640000pt;}
.x1a{left:14.066667pt;}
.x3d{left:15.346667pt;}
.x1d{left:16.666667pt;}
.x26{left:17.760000pt;}
.x3f{left:18.720000pt;}
.x3c{left:20.666667pt;}
.x1e{left:21.760000pt;}
.x52{left:23.826667pt;}
.x44{left:24.986667pt;}
.x33{left:25.920000pt;}
.x2d{left:27.200000pt;}
.x41{left:28.666667pt;}
.x32{left:29.600000pt;}
.x34{left:30.706667pt;}
.x30{left:31.986667pt;}
.x18{left:33.440000pt;}
.x22{left:34.720000pt;}
.x4f{left:36.186667pt;}
.x24{left:37.306667pt;}
.x53{left:38.746667pt;}
.x2c{left:39.840000pt;}
.x4e{left:41.146667pt;}
.x58{left:42.400000pt;}
.x1b{left:44.466667pt;}
.x12{left:46.545333pt;}
.x23{left:48.946667pt;}
.x1f{left:50.720000pt;}
.x5a{left:51.706667pt;}
.x21{left:53.306667pt;}
.x54{left:55.505333pt;}
.x20{left:56.946667pt;}
.x39{left:60.000000pt;}
.x5b{left:66.906667pt;}
.x4b{left:71.680000pt;}
.x5c{left:74.906667pt;}
.x11{left:89.161333pt;}
.x49{left:92.521333pt;}
.x4{left:96.032000pt;}
.x57{left:98.586667pt;}
.x7{left:100.032000pt;}
.x6{left:101.952000pt;}
.x27{left:105.952000pt;}
.x5d{left:120.032000pt;}
.x16{left:131.066667pt;}
.x5e{left:144.026667pt;}
.x2b{left:149.306667pt;}
.x10{left:152.986667pt;}
.x38{left:153.920000pt;}
.xe{left:174.586667pt;}
.xb{left:183.866667pt;}
.x2{left:199.546667pt;}
.xc{left:210.586667pt;}
.x3{left:220.186667pt;}
.x36{left:228.680000pt;}
.x29{left:241.800000pt;}
.x13{left:262.146667pt;}
.x8{left:266.466667pt;}
.x37{left:268.866667pt;}
.x4a{left:271.106667pt;}
.x55{left:280.066667pt;}
.x2a{left:283.906667pt;}
.x9{left:303.106667pt;}
.x1{left:311.426667pt;}
.x15{left:314.466667pt;}
.xd{left:324.386667pt;}
.x40{left:336.066667pt;}
.xf{left:345.826667pt;}
.x35{left:349.826667pt;}
.x50{left:359.106667pt;}
.x28{left:366.786667pt;}
.x56{left:381.506667pt;}
.x5{left:385.026667pt;}
.xa{left:397.026667pt;}
.x48{left:414.786667pt;}
.x3a{left:416.546667pt;}
.x4c{left:442.026667pt;}
.x19{left:444.746667pt;}
.x42{left:506.506667pt;}
.x2e{left:508.746667pt;}
.x51{left:518.346667pt;}
.x59{left:545.706667pt;}
.x3b{left:579.626667pt;}
.x1c{left:587.466667pt;}
.x4d{left:596.266667pt;}
.x31{left:631.013333pt;}
.x3e{left:658.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; }
  