
    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_66c745c31c0bc63a7d150922.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_23ff93c311a52a2ec21b5cbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f9ac08a01cfcab9c7cedbf03.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_04c4a8011441c57b03584220.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9a9a2a8d4bf4ed90b127fc58.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fb6f1e09c9ff6ea8d5e49107.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.153360px;}
.lsd{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.273360px;}
.ls11{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.900000px;}
.ls15{letter-spacing:16.506720px;}
.ls10{letter-spacing:41.706720px;}
.lsf{letter-spacing:44.586720px;}
.ls1{letter-spacing:46.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wse{word-spacing:-14.686800px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.715680px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-3.315600px;}
._17{margin-left:-2.262240px;}
._0{margin-left:-1.080000px;}
._11{width:1.048080px;}
._1{width:2.220000px;}
._15{width:3.269760px;}
._14{width:4.330320px;}
._16{width:5.369520px;}
._13{width:7.298160px;}
._12{width:8.751120px;}
._1c{width:9.765840px;}
._6{width:10.800000px;}
._19{width:12.103920px;}
._1b{width:13.326480px;}
._1a{width:16.075200px;}
._23{width:17.138880px;}
._f{width:18.948000px;}
._1f{width:20.676960px;}
._1e{width:21.991680px;}
._24{width:23.991360px;}
._22{width:25.218720px;}
._21{width:26.234640px;}
._20{width:31.374000px;}
._25{width:38.805120px;}
._26{width:40.482480px;}
._28{width:48.580800px;}
._27{width:49.681440px;}
._29{width:50.691360px;}
._7{width:76.284960px;}
._10{width:132.780000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._1d{width:286.250400px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:5.760000px;}
.y90{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y6c{bottom:25.560000px;}
.yb9{bottom:25.740000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.ybe{bottom:45.360000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y122{bottom:102.420000px;}
.yfb{bottom:107.820000px;}
.y86{bottom:109.980000px;}
.y124{bottom:112.320000px;}
.y6a{bottom:114.480000px;}
.yd2{bottom:119.340000px;}
.yb3{bottom:120.060000px;}
.y3b{bottom:120.420000px;}
.y121{bottom:122.400000px;}
.y2{bottom:125.670000px;}
.yfa{bottom:127.620000px;}
.y85{bottom:129.960000px;}
.y123{bottom:132.120000px;}
.y69{bottom:134.460000px;}
.yd1{bottom:139.140000px;}
.yb2{bottom:140.040000px;}
.y3a{bottom:140.220000px;}
.y120{bottom:142.200000px;}
.yf9{bottom:147.420000px;}
.y84{bottom:149.760000px;}
.y68{bottom:154.290000px;}
.yd0{bottom:159.150000px;}
.yb1{bottom:159.870000px;}
.y39{bottom:160.050000px;}
.y11f{bottom:162.030000px;}
.yf8{bottom:167.430000px;}
.y83{bottom:169.590000px;}
.ycf{bottom:173.910000px;}
.y67{bottom:174.090000px;}
.yb0{bottom:179.670000px;}
.y38{bottom:179.850000px;}
.y11e{bottom:181.830000px;}
.yf7{bottom:187.230000px;}
.y82{bottom:189.390000px;}
.y66{bottom:193.890000px;}
.yce{bottom:194.430000px;}
.yaf{bottom:199.470000px;}
.y37{bottom:199.650000px;}
.y11d{bottom:201.630000px;}
.yf6{bottom:207.030000px;}
.y81{bottom:209.190000px;}
.y65{bottom:213.690000px;}
.ycd{bottom:215.130000px;}
.yae{bottom:219.270000px;}
.y36{bottom:219.630000px;}
.y11c{bottom:221.610000px;}
.yf5{bottom:226.830000px;}
.y80{bottom:229.170000px;}
.y64{bottom:233.670000px;}
.ycc{bottom:235.650000px;}
.yad{bottom:239.250000px;}
.y35{bottom:239.430000px;}
.y11b{bottom:241.410000px;}
.yf4{bottom:246.630000px;}
.y7f{bottom:248.970000px;}
.y63{bottom:253.470000px;}
.ycb{bottom:256.170000px;}
.yac{bottom:259.050000px;}
.y34{bottom:259.230000px;}
.y11a{bottom:261.210000px;}
.yf3{bottom:266.610000px;}
.y7e{bottom:268.770000px;}
.y62{bottom:273.270000px;}
.yca{bottom:276.870000px;}
.yab{bottom:278.850000px;}
.y33{bottom:279.030000px;}
.y119{bottom:281.010000px;}
.yf2{bottom:286.410000px;}
.y7d{bottom:288.570000px;}
.y61{bottom:293.070000px;}
.yc9{bottom:297.390000px;}
.yaa{bottom:298.650000px;}
.y32{bottom:298.830000px;}
.y118{bottom:300.810000px;}
.yf1{bottom:306.210000px;}
.y7c{bottom:308.370000px;}
.y60{bottom:312.870000px;}
.yc8{bottom:317.910000px;}
.ya9{bottom:318.450000px;}
.y31{bottom:318.810000px;}
.y117{bottom:320.790000px;}
.yf0{bottom:326.010000px;}
.y7b{bottom:328.350000px;}
.y5f{bottom:332.850000px;}
.ya8{bottom:338.430000px;}
.y30{bottom:338.610000px;}
.y116{bottom:340.590000px;}
.yc7{bottom:344.370000px;}
.yef{bottom:345.810000px;}
.y7a{bottom:348.150000px;}
.y5e{bottom:352.650000px;}
.ya7{bottom:358.230000px;}
.y2f{bottom:358.410000px;}
.y115{bottom:360.390000px;}
.yc6{bottom:364.170000px;}
.yee{bottom:365.790000px;}
.y79{bottom:367.950000px;}
.y5d{bottom:372.450000px;}
.ya6{bottom:378.030000px;}
.y2e{bottom:378.210000px;}
.y114{bottom:380.190000px;}
.yc5{bottom:383.970000px;}
.yed{bottom:385.590000px;}
.y78{bottom:387.750000px;}
.y5c{bottom:392.250000px;}
.ya5{bottom:397.830000px;}
.y2d{bottom:398.010000px;}
.y113{bottom:399.990000px;}
.yc4{bottom:403.995000px;}
.yec{bottom:405.435000px;}
.y77{bottom:407.595000px;}
.y5b{bottom:412.095000px;}
.ya4{bottom:417.675000px;}
.y2c{bottom:418.035000px;}
.y112{bottom:420.015000px;}
.yc3{bottom:423.795000px;}
.yeb{bottom:425.235000px;}
.y76{bottom:427.575000px;}
.y5a{bottom:432.075000px;}
.ya3{bottom:437.655000px;}
.y2b{bottom:437.835000px;}
.y111{bottom:439.815000px;}
.yc2{bottom:443.595000px;}
.yea{bottom:445.035000px;}
.y75{bottom:447.375000px;}
.y59{bottom:451.875000px;}
.ya2{bottom:457.455000px;}
.y2a{bottom:457.635000px;}
.yc1{bottom:458.355000px;}
.y110{bottom:459.615000px;}
.ye9{bottom:464.835000px;}
.y74{bottom:467.175000px;}
.y58{bottom:471.675000px;}
.ya1{bottom:477.255000px;}
.y29{bottom:477.435000px;}
.yc0{bottom:478.875000px;}
.y10f{bottom:479.415000px;}
.ye8{bottom:484.815000px;}
.y73{bottom:486.975000px;}
.y57{bottom:491.475000px;}
.ya0{bottom:497.055000px;}
.y28{bottom:497.235000px;}
.y10e{bottom:499.215000px;}
.ye7{bottom:504.615000px;}
.y72{bottom:506.775000px;}
.y56{bottom:511.275000px;}
.y9f{bottom:516.855000px;}
.y27{bottom:517.215000px;}
.y10d{bottom:519.195000px;}
.ybf{bottom:519.375000px;}
.y71{bottom:521.715000px;}
.ye6{bottom:524.415000px;}
.y55{bottom:531.255000px;}
.y10c{bottom:536.475000px;}
.y9e{bottom:536.835000px;}
.y26{bottom:537.015000px;}
.y70{bottom:542.235000px;}
.ye5{bottom:544.215000px;}
.y54{bottom:551.055000px;}
.y10b{bottom:553.575000px;}
.y9d{bottom:556.635000px;}
.y25{bottom:556.815000px;}
.ybd{bottom:559.875000px;}
.y6f{bottom:562.755000px;}
.ye4{bottom:564.015000px;}
.y53{bottom:570.855000px;}
.y10a{bottom:573.375000px;}
.y9c{bottom:576.435000px;}
.y24{bottom:576.615000px;}
.y6e{bottom:583.455000px;}
.ye3{bottom:583.995000px;}
.y52{bottom:590.655000px;}
.y109{bottom:593.355000px;}
.y9b{bottom:596.235000px;}
.y23{bottom:596.415000px;}
.ye2{bottom:603.795000px;}
.y6b{bottom:603.975000px;}
.y51{bottom:610.455000px;}
.y9a{bottom:610.995000px;}
.y108{bottom:613.155000px;}
.y22{bottom:616.395000px;}
.ye1{bottom:623.595000px;}
.ybc{bottom:625.935000px;}
.y50{bottom:630.435000px;}
.y99{bottom:631.695000px;}
.y107{bottom:632.955000px;}
.y21{bottom:636.195000px;}
.ye0{bottom:643.395000px;}
.ybb{bottom:645.735000px;}
.y4f{bottom:650.265000px;}
.y98{bottom:652.245000px;}
.y106{bottom:652.785000px;}
.y20{bottom:656.025000px;}
.ydf{bottom:663.225000px;}
.yba{bottom:665.565000px;}
.y4e{bottom:670.065000px;}
.y105{bottom:672.585000px;}
.y97{bottom:672.765000px;}
.y1f{bottom:675.825000px;}
.yb8{bottom:680.325000px;}
.yde{bottom:683.205000px;}
.y4d{bottom:689.865000px;}
.y104{bottom:692.565000px;}
.y96{bottom:693.465000px;}
.y1e{bottom:695.625000px;}
.ydd{bottom:703.005000px;}
.y4c{bottom:709.665000px;}
.y103{bottom:712.365000px;}
.y95{bottom:713.985000px;}
.y1d{bottom:715.605000px;}
.yb7{bottom:720.825000px;}
.ydc{bottom:722.805000px;}
.y4b{bottom:729.645000px;}
.y102{bottom:732.165000px;}
.y94{bottom:734.685000px;}
.y1c{bottom:735.405000px;}
.ydb{bottom:742.605000px;}
.y4a{bottom:749.445000px;}
.y101{bottom:751.965000px;}
.y1b{bottom:755.205000px;}
.yb6{bottom:761.145000px;}
.yda{bottom:762.405000px;}
.y49{bottom:769.245000px;}
.y100{bottom:771.765000px;}
.y1a{bottom:775.005000px;}
.y93{bottom:775.725000px;}
.yb5{bottom:781.845000px;}
.yd9{bottom:782.385000px;}
.y48{bottom:789.045000px;}
.yff{bottom:791.745000px;}
.y19{bottom:794.805000px;}
.y92{bottom:796.425000px;}
.yd8{bottom:802.185000px;}
.yb4{bottom:802.365000px;}
.y47{bottom:808.845000px;}
.yfe{bottom:811.545000px;}
.y18{bottom:814.785000px;}
.y91{bottom:816.945000px;}
.yd7{bottom:821.985000px;}
.y46{bottom:828.825000px;}
.yfd{bottom:831.345000px;}
.y17{bottom:834.585000px;}
.y8f{bottom:837.465000px;}
.yd6{bottom:841.785000px;}
.y45{bottom:848.625000px;}
.yfc{bottom:851.145000px;}
.y16{bottom:854.385000px;}
.yd5{bottom:856.545000px;}
.y8e{bottom:863.925000px;}
.y44{bottom:868.425000px;}
.y15{bottom:874.185000px;}
.yd4{bottom:877.245000px;}
.y8d{bottom:883.725000px;}
.y43{bottom:888.225000px;}
.y14{bottom:893.985000px;}
.yd3{bottom:897.810000px;}
.y8c{bottom:903.570000px;}
.y42{bottom:908.070000px;}
.y13{bottom:914.010000px;}
.y8b{bottom:918.510000px;}
.y41{bottom:928.050000px;}
.y12{bottom:933.810000px;}
.y8a{bottom:939.030000px;}
.y40{bottom:947.850000px;}
.y11{bottom:954.150000px;}
.y89{bottom:959.550000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:975.930000px;}
.y88{bottom:980.250000px;}
.y3e{bottom:987.450000px;}
.y87{bottom:1000.770000px;}
.yf{bottom:1000.950000px;}
.y3d{bottom:1007.250000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.h12{height:19.800000px;}
.h14{height:19.836000px;}
.h13{height:19.980000px;}
.hb{height:21.780000px;}
.h8{height:33.480000px;}
.h11{height:39.600000px;}
.h15{height:39.780000px;}
.hd{height:42.164648px;}
.he{height:43.506914px;}
.hf{height:43.681992px;}
.h17{height:45.024258px;}
.h4{height:46.736719px;}
.h5{height:53.573906px;}
.h10{height:55.735313px;}
.ha{height:59.383125px;}
.h16{height:59.400000px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w14{width:111.420000px;}
.w13{width:124.776000px;}
.w3{width:130.716000px;}
.w12{width:134.316000px;}
.w6{width:135.540000px;}
.w11{width:140.940000px;}
.wf{width:155.880000px;}
.w7{width:167.970000px;}
.w8{width:188.310000px;}
.w10{width:203.070000px;}
.w15{width:203.115000px;}
.w9{width:223.410000px;}
.wa{width:238.530000px;}
.wb{width:238.710000px;}
.wc{width:358.230000px;}
.wd{width:358.410000px;}
.w16{width:550.005000px;}
.we{width:560.805000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x16{left:69.660000px;}
.x19{left:80.999987px;}
.xb{left:87.876000px;}
.x18{left:108.035987px;}
.x4{left:118.290000px;}
.x7{left:165.449987px;}
.xa{left:216.929987px;}
.xc{left:224.130000px;}
.x17{left:273.495000px;}
.x12{left:291.675000px;}
.xf{left:327.315000px;}
.x9{left:383.474987px;}
.xd{left:392.835000px;}
.x13{left:433.335000px;}
.x8{left:446.504987px;}
.x10{left:566.565000px;}
.x14{left:568.365000px;}
.xe{left:581.865000px;}
.x11{left:649.410000px;}
.x15{left:693.870000px;}
.x3{left:705.930000px;}
.x6{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.136320pt;}
.lsd{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.242987pt;}
.ls11{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls10{letter-spacing:37.072640pt;}
.lsf{letter-spacing:39.632640pt;}
.ls1{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.054933pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.636160pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-2.947200pt;}
._17{margin-left:-2.010880pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.931627pt;}
._1{width:1.973333pt;}
._15{width:2.906453pt;}
._14{width:3.849173pt;}
._16{width:4.772907pt;}
._13{width:6.487253pt;}
._12{width:7.778773pt;}
._1c{width:8.680747pt;}
._6{width:9.600000pt;}
._19{width:10.759040pt;}
._1b{width:11.845760pt;}
._1a{width:14.289067pt;}
._23{width:15.234560pt;}
._f{width:16.842667pt;}
._1f{width:18.379520pt;}
._1e{width:19.548160pt;}
._24{width:21.325653pt;}
._22{width:22.416640pt;}
._21{width:23.319680pt;}
._20{width:27.888000pt;}
._25{width:34.493440pt;}
._26{width:35.984427pt;}
._28{width:43.182933pt;}
._27{width:44.161280pt;}
._29{width:45.058987pt;}
._7{width:67.808853pt;}
._10{width:118.026667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._1d{width:254.444800pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:5.120000pt;}
.y90{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y6c{bottom:22.720000pt;}
.yb9{bottom:22.880000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.ybe{bottom:40.320000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y122{bottom:91.040000pt;}
.yfb{bottom:95.840000pt;}
.y86{bottom:97.760000pt;}
.y124{bottom:99.840000pt;}
.y6a{bottom:101.760000pt;}
.yd2{bottom:106.080000pt;}
.yb3{bottom:106.720000pt;}
.y3b{bottom:107.040000pt;}
.y121{bottom:108.800000pt;}
.y2{bottom:111.706667pt;}
.yfa{bottom:113.440000pt;}
.y85{bottom:115.520000pt;}
.y123{bottom:117.440000pt;}
.y69{bottom:119.520000pt;}
.yd1{bottom:123.680000pt;}
.yb2{bottom:124.480000pt;}
.y3a{bottom:124.640000pt;}
.y120{bottom:126.400000pt;}
.yf9{bottom:131.040000pt;}
.y84{bottom:133.120000pt;}
.y68{bottom:137.146667pt;}
.yd0{bottom:141.466667pt;}
.yb1{bottom:142.106667pt;}
.y39{bottom:142.266667pt;}
.y11f{bottom:144.026667pt;}
.yf8{bottom:148.826667pt;}
.y83{bottom:150.746667pt;}
.ycf{bottom:154.586667pt;}
.y67{bottom:154.746667pt;}
.yb0{bottom:159.706667pt;}
.y38{bottom:159.866667pt;}
.y11e{bottom:161.626667pt;}
.yf7{bottom:166.426667pt;}
.y82{bottom:168.346667pt;}
.y66{bottom:172.346667pt;}
.yce{bottom:172.826667pt;}
.yaf{bottom:177.306667pt;}
.y37{bottom:177.466667pt;}
.y11d{bottom:179.226667pt;}
.yf6{bottom:184.026667pt;}
.y81{bottom:185.946667pt;}
.y65{bottom:189.946667pt;}
.ycd{bottom:191.226667pt;}
.yae{bottom:194.906667pt;}
.y36{bottom:195.226667pt;}
.y11c{bottom:196.986667pt;}
.yf5{bottom:201.626667pt;}
.y80{bottom:203.706667pt;}
.y64{bottom:207.706667pt;}
.ycc{bottom:209.466667pt;}
.yad{bottom:212.666667pt;}
.y35{bottom:212.826667pt;}
.y11b{bottom:214.586667pt;}
.yf4{bottom:219.226667pt;}
.y7f{bottom:221.306667pt;}
.y63{bottom:225.306667pt;}
.ycb{bottom:227.706667pt;}
.yac{bottom:230.266667pt;}
.y34{bottom:230.426667pt;}
.y11a{bottom:232.186667pt;}
.yf3{bottom:236.986667pt;}
.y7e{bottom:238.906667pt;}
.y62{bottom:242.906667pt;}
.yca{bottom:246.106667pt;}
.yab{bottom:247.866667pt;}
.y33{bottom:248.026667pt;}
.y119{bottom:249.786667pt;}
.yf2{bottom:254.586667pt;}
.y7d{bottom:256.506667pt;}
.y61{bottom:260.506667pt;}
.yc9{bottom:264.346667pt;}
.yaa{bottom:265.466667pt;}
.y32{bottom:265.626667pt;}
.y118{bottom:267.386667pt;}
.yf1{bottom:272.186667pt;}
.y7c{bottom:274.106667pt;}
.y60{bottom:278.106667pt;}
.yc8{bottom:282.586667pt;}
.ya9{bottom:283.066667pt;}
.y31{bottom:283.386667pt;}
.y117{bottom:285.146667pt;}
.yf0{bottom:289.786667pt;}
.y7b{bottom:291.866667pt;}
.y5f{bottom:295.866667pt;}
.ya8{bottom:300.826667pt;}
.y30{bottom:300.986667pt;}
.y116{bottom:302.746667pt;}
.yc7{bottom:306.106667pt;}
.yef{bottom:307.386667pt;}
.y7a{bottom:309.466667pt;}
.y5e{bottom:313.466667pt;}
.ya7{bottom:318.426667pt;}
.y2f{bottom:318.586667pt;}
.y115{bottom:320.346667pt;}
.yc6{bottom:323.706667pt;}
.yee{bottom:325.146667pt;}
.y79{bottom:327.066667pt;}
.y5d{bottom:331.066667pt;}
.ya6{bottom:336.026667pt;}
.y2e{bottom:336.186667pt;}
.y114{bottom:337.946667pt;}
.yc5{bottom:341.306667pt;}
.yed{bottom:342.746667pt;}
.y78{bottom:344.666667pt;}
.y5c{bottom:348.666667pt;}
.ya5{bottom:353.626667pt;}
.y2d{bottom:353.786667pt;}
.y113{bottom:355.546667pt;}
.yc4{bottom:359.106667pt;}
.yec{bottom:360.386667pt;}
.y77{bottom:362.306667pt;}
.y5b{bottom:366.306667pt;}
.ya4{bottom:371.266667pt;}
.y2c{bottom:371.586667pt;}
.y112{bottom:373.346667pt;}
.yc3{bottom:376.706667pt;}
.yeb{bottom:377.986667pt;}
.y76{bottom:380.066667pt;}
.y5a{bottom:384.066667pt;}
.ya3{bottom:389.026667pt;}
.y2b{bottom:389.186667pt;}
.y111{bottom:390.946667pt;}
.yc2{bottom:394.306667pt;}
.yea{bottom:395.586667pt;}
.y75{bottom:397.666667pt;}
.y59{bottom:401.666667pt;}
.ya2{bottom:406.626667pt;}
.y2a{bottom:406.786667pt;}
.yc1{bottom:407.426667pt;}
.y110{bottom:408.546667pt;}
.ye9{bottom:413.186667pt;}
.y74{bottom:415.266667pt;}
.y58{bottom:419.266667pt;}
.ya1{bottom:424.226667pt;}
.y29{bottom:424.386667pt;}
.yc0{bottom:425.666667pt;}
.y10f{bottom:426.146667pt;}
.ye8{bottom:430.946667pt;}
.y73{bottom:432.866667pt;}
.y57{bottom:436.866667pt;}
.ya0{bottom:441.826667pt;}
.y28{bottom:441.986667pt;}
.y10e{bottom:443.746667pt;}
.ye7{bottom:448.546667pt;}
.y72{bottom:450.466667pt;}
.y56{bottom:454.466667pt;}
.y9f{bottom:459.426667pt;}
.y27{bottom:459.746667pt;}
.y10d{bottom:461.506667pt;}
.ybf{bottom:461.666667pt;}
.y71{bottom:463.746667pt;}
.ye6{bottom:466.146667pt;}
.y55{bottom:472.226667pt;}
.y10c{bottom:476.866667pt;}
.y9e{bottom:477.186667pt;}
.y26{bottom:477.346667pt;}
.y70{bottom:481.986667pt;}
.ye5{bottom:483.746667pt;}
.y54{bottom:489.826667pt;}
.y10b{bottom:492.066667pt;}
.y9d{bottom:494.786667pt;}
.y25{bottom:494.946667pt;}
.ybd{bottom:497.666667pt;}
.y6f{bottom:500.226667pt;}
.ye4{bottom:501.346667pt;}
.y53{bottom:507.426667pt;}
.y10a{bottom:509.666667pt;}
.y9c{bottom:512.386667pt;}
.y24{bottom:512.546667pt;}
.y6e{bottom:518.626667pt;}
.ye3{bottom:519.106667pt;}
.y52{bottom:525.026667pt;}
.y109{bottom:527.426667pt;}
.y9b{bottom:529.986667pt;}
.y23{bottom:530.146667pt;}
.ye2{bottom:536.706667pt;}
.y6b{bottom:536.866667pt;}
.y51{bottom:542.626667pt;}
.y9a{bottom:543.106667pt;}
.y108{bottom:545.026667pt;}
.y22{bottom:547.906667pt;}
.ye1{bottom:554.306667pt;}
.ybc{bottom:556.386667pt;}
.y50{bottom:560.386667pt;}
.y99{bottom:561.506667pt;}
.y107{bottom:562.626667pt;}
.y21{bottom:565.506667pt;}
.ye0{bottom:571.906667pt;}
.ybb{bottom:573.986667pt;}
.y4f{bottom:578.013333pt;}
.y98{bottom:579.773333pt;}
.y106{bottom:580.253333pt;}
.y20{bottom:583.133333pt;}
.ydf{bottom:589.533333pt;}
.yba{bottom:591.613333pt;}
.y4e{bottom:595.613333pt;}
.y105{bottom:597.853333pt;}
.y97{bottom:598.013333pt;}
.y1f{bottom:600.733333pt;}
.yb8{bottom:604.733333pt;}
.yde{bottom:607.293333pt;}
.y4d{bottom:613.213333pt;}
.y104{bottom:615.613333pt;}
.y96{bottom:616.413333pt;}
.y1e{bottom:618.333333pt;}
.ydd{bottom:624.893333pt;}
.y4c{bottom:630.813333pt;}
.y103{bottom:633.213333pt;}
.y95{bottom:634.653333pt;}
.y1d{bottom:636.093333pt;}
.yb7{bottom:640.733333pt;}
.ydc{bottom:642.493333pt;}
.y4b{bottom:648.573333pt;}
.y102{bottom:650.813333pt;}
.y94{bottom:653.053333pt;}
.y1c{bottom:653.693333pt;}
.ydb{bottom:660.093333pt;}
.y4a{bottom:666.173333pt;}
.y101{bottom:668.413333pt;}
.y1b{bottom:671.293333pt;}
.yb6{bottom:676.573333pt;}
.yda{bottom:677.693333pt;}
.y49{bottom:683.773333pt;}
.y100{bottom:686.013333pt;}
.y1a{bottom:688.893333pt;}
.y93{bottom:689.533333pt;}
.yb5{bottom:694.973333pt;}
.yd9{bottom:695.453333pt;}
.y48{bottom:701.373333pt;}
.yff{bottom:703.773333pt;}
.y19{bottom:706.493333pt;}
.y92{bottom:707.933333pt;}
.yd8{bottom:713.053333pt;}
.yb4{bottom:713.213333pt;}
.y47{bottom:718.973333pt;}
.yfe{bottom:721.373333pt;}
.y18{bottom:724.253333pt;}
.y91{bottom:726.173333pt;}
.yd7{bottom:730.653333pt;}
.y46{bottom:736.733333pt;}
.yfd{bottom:738.973333pt;}
.y17{bottom:741.853333pt;}
.y8f{bottom:744.413333pt;}
.yd6{bottom:748.253333pt;}
.y45{bottom:754.333333pt;}
.yfc{bottom:756.573333pt;}
.y16{bottom:759.453333pt;}
.yd5{bottom:761.373333pt;}
.y8e{bottom:767.933333pt;}
.y44{bottom:771.933333pt;}
.y15{bottom:777.053333pt;}
.yd4{bottom:779.773333pt;}
.y8d{bottom:785.533333pt;}
.y43{bottom:789.533333pt;}
.y14{bottom:794.653333pt;}
.yd3{bottom:798.053333pt;}
.y8c{bottom:803.173333pt;}
.y42{bottom:807.173333pt;}
.y13{bottom:812.453333pt;}
.y8b{bottom:816.453333pt;}
.y41{bottom:824.933333pt;}
.y12{bottom:830.053333pt;}
.y8a{bottom:834.693333pt;}
.y40{bottom:842.533333pt;}
.y11{bottom:848.133333pt;}
.y89{bottom:852.933333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:867.493333pt;}
.y88{bottom:871.333333pt;}
.y3e{bottom:877.733333pt;}
.y87{bottom:889.573333pt;}
.yf{bottom:889.733333pt;}
.y3d{bottom:895.333333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.h12{height:17.600000pt;}
.h14{height:17.632000pt;}
.h13{height:17.760000pt;}
.hb{height:19.360000pt;}
.h8{height:29.760000pt;}
.h11{height:35.200000pt;}
.h15{height:35.360000pt;}
.hd{height:37.479688pt;}
.he{height:38.672812pt;}
.hf{height:38.828437pt;}
.h17{height:40.021563pt;}
.h4{height:41.543750pt;}
.h5{height:47.621250pt;}
.h10{height:49.542500pt;}
.ha{height:52.785000pt;}
.h16{height:52.800000pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w14{width:99.040000pt;}
.w13{width:110.912000pt;}
.w3{width:116.192000pt;}
.w12{width:119.392000pt;}
.w6{width:120.480000pt;}
.w11{width:125.280000pt;}
.wf{width:138.560000pt;}
.w7{width:149.306667pt;}
.w8{width:167.386667pt;}
.w10{width:180.506667pt;}
.w15{width:180.546667pt;}
.w9{width:198.586667pt;}
.wa{width:212.026667pt;}
.wb{width:212.186667pt;}
.wc{width:318.426667pt;}
.wd{width:318.586667pt;}
.w16{width:488.893333pt;}
.we{width:498.493333pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x16{left:61.920000pt;}
.x19{left:71.999988pt;}
.xb{left:78.112000pt;}
.x18{left:96.031988pt;}
.x4{left:105.146667pt;}
.x7{left:147.066655pt;}
.xa{left:192.826655pt;}
.xc{left:199.226667pt;}
.x17{left:243.106667pt;}
.x12{left:259.266667pt;}
.xf{left:290.946667pt;}
.x9{left:340.866655pt;}
.xd{left:349.186667pt;}
.x13{left:385.186667pt;}
.x8{left:396.893322pt;}
.x10{left:503.613333pt;}
.x14{left:505.213333pt;}
.xe{left:517.213333pt;}
.x11{left:577.253333pt;}
.x15{left:616.773333pt;}
.x3{left:627.493333pt;}
.x6{left:737.120000pt;}
}




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