
    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_f2784a2ddcf53c8ed24bcf50.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_39b3e825c0b0b103094a579b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_76a6751184a5bdf5fb5e9b4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e67369da547b9a3764fb90ae.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_abd5c1ee4cfd4a43d2fb32b4.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_888c680dbce03bb923d1a815.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1143b99871d40e526fc81655.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.310800px;}
.ls1f{letter-spacing:-0.216600px;}
.ls13{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.185400px;}
.lsf{letter-spacing:-0.160800px;}
.lse{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.027360px;}
.ls10{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.049680px;}
.ls11{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.173520px;}
.ls9{letter-spacing:0.174600px;}
.ls16{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.425520px;}
.lsa{letter-spacing:0.534600px;}
.lsc{letter-spacing:3.864000px;}
.ls21{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls1d{letter-spacing:80.846640px;}
.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;}
}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-13.009800px;}
.wse{word-spacing:-12.915600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws3{word-spacing:-8.553600px;}
.wsc{word-spacing:-8.458800px;}
.ws5{word-spacing:-8.395200px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-3.178440px;}
._c{margin-left:-2.111400px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._6{width:2.086977px;}
._5{width:3.647016px;}
._4{width:4.661040px;}
._8{width:5.995212px;}
._12{width:7.755480px;}
._9{width:9.618612px;}
._2{width:11.214360px;}
._e{width:12.222828px;}
._3{width:13.458809px;}
._d{width:14.571235px;}
._7{width:15.589668px;}
._13{width:16.646691px;}
._b{width:18.062640px;}
._f{width:19.091520px;}
._10{width:20.200320px;}
._11{width:21.402720px;}
._14{width:30.240360px;}
._16{width:68.596920px;}
._15{width:70.098240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y81{bottom:7.830000px;}
.yb2{bottom:7.860000px;}
.y7e{bottom:7.920000px;}
.ye0{bottom:7.950000px;}
.ye7{bottom:13.050000px;}
.ye6{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y88{bottom:110.730000px;}
.y10e{bottom:113.430000px;}
.y5b{bottom:115.500000px;}
.yef{bottom:119.910000px;}
.yad{bottom:125.760000px;}
.y29{bottom:127.200000px;}
.yd1{bottom:127.650000px;}
.y10d{bottom:130.980000px;}
.y5a{bottom:133.950000px;}
.yee{bottom:137.460000px;}
.y87{bottom:138.000000px;}
.y28{bottom:144.840000px;}
.yac{bottom:153.120000px;}
.yd0{bottom:155.010000px;}
.yed{bottom:155.100000px;}
.y10c{bottom:157.620000px;}
.y27{bottom:162.390000px;}
.y86{bottom:165.360000px;}
.y59{bottom:170.400000px;}
.yec{bottom:172.650000px;}
.y10b{bottom:175.170000px;}
.y26{bottom:179.940000px;}
.yab{bottom:180.480000px;}
.ycf{bottom:182.280000px;}
.y85{bottom:192.720000px;}
.yeb{bottom:199.560000px;}
.y58{bottom:205.950000px;}
.yaa{bottom:207.840000px;}
.yce{bottom:209.640000px;}
.y25{bottom:215.580000px;}
.y10a{bottom:219.360000px;}
.y84{bottom:220.080000px;}
.y57{bottom:223.500000px;}
.y24{bottom:233.130000px;}
.ya9{bottom:235.110000px;}
.y109{bottom:236.910000px;}
.ycd{bottom:237.000000px;}
.yea{bottom:245.190000px;}
.y83{bottom:247.350000px;}
.y56{bottom:250.410000px;}
.y23{bottom:250.770000px;}
.ya8{bottom:262.470000px;}
.y108{bottom:263.550000px;}
.ycc{bottom:264.270000px;}
.y22{bottom:268.320000px;}
.ye9{bottom:272.550000px;}
.y82{bottom:274.710000px;}
.y107{bottom:281.100000px;}
.y21{bottom:285.870000px;}
.y55{bottom:287.490000px;}
.ya7{bottom:289.830000px;}
.ycb{bottom:291.630000px;}
.ye8{bottom:299.910000px;}
.y80{bottom:302.070000px;}
.y20{bottom:303.510000px;}
.y54{bottom:305.040000px;}
.y106{bottom:308.010000px;}
.ya6{bottom:317.190000px;}
.yca{bottom:318.990000px;}
.ye5{bottom:327.270000px;}
.y7f{bottom:329.340000px;}
.y1f{bottom:339.060000px;}
.y53{bottom:340.680000px;}
.ya5{bottom:344.460000px;}
.yc9{bottom:346.350000px;}
.ye4{bottom:354.540000px;}
.y105{bottom:356.250000px;}
.y1e{bottom:356.700000px;}
.y52{bottom:358.230000px;}
.ya4{bottom:371.820000px;}
.yc8{bottom:373.620000px;}
.y51{bottom:375.780000px;}
.ye3{bottom:381.900000px;}
.y104{bottom:383.160000px;}
.y1d{bottom:392.250000px;}
.y50{bottom:393.420000px;}
.ya3{bottom:399.180000px;}
.yc7{bottom:400.980000px;}
.y7d{bottom:405.390000px;}
.ye2{bottom:409.260000px;}
.y1c{bottom:409.800000px;}
.y4f{bottom:410.970000px;}
.y103{bottom:420.240000px;}
.ya2{bottom:426.450000px;}
.y1b{bottom:427.440000px;}
.yc6{bottom:428.340000px;}
.y4e{bottom:428.610000px;}
.ye1{bottom:436.530000px;}
.y7c{bottom:441.030000px;}
.y4d{bottom:446.160000px;}
.y102{bottom:447.150000px;}
.ya1{bottom:453.810000px;}
.y1a{bottom:454.350000px;}
.yc5{bottom:455.700000px;}
.y7b{bottom:458.580000px;}
.y4c{bottom:463.710000px;}
.ydf{bottom:463.890000px;}
.y7a{bottom:476.250000px;}
.ya0{bottom:481.200000px;}
.y101{bottom:484.170000px;}
.yde{bottom:491.280000px;}
.y79{bottom:493.800000px;}
.y4b{bottom:499.380000px;}
.y19{bottom:502.620000px;}
.yc4{bottom:504.420000px;}
.y9f{bottom:508.560000px;}
.y100{bottom:511.080000px;}
.y78{bottom:511.350000px;}
.y4a{bottom:516.930000px;}
.ydd{bottom:518.640000px;}
.y77{bottom:528.990000px;}
.y49{bottom:534.480000px;}
.y9e{bottom:535.830000px;}
.y18{bottom:538.440000px;}
.yc3{bottom:539.970000px;}
.ydc{bottom:545.910000px;}
.y76{bottom:546.540000px;}
.yff{bottom:548.430000px;}
.y48{bottom:552.120000px;}
.yc2{bottom:554.910000px;}
.y9d{bottom:563.190000px;}
.y75{bottom:564.090000px;}
.y47{bottom:569.670000px;}
.ydb{bottom:573.270000px;}
.y17{bottom:574.440000px;}
.y74{bottom:581.730000px;}
.yc1{bottom:582.270000px;}
.y46{bottom:587.310000px;}
.y9c{bottom:590.550000px;}
.yfe{bottom:596.670000px;}
.y73{bottom:599.280000px;}
.yda{bottom:600.630000px;}
.y126{bottom:601.620000px;}
.y45{bottom:604.860000px;}
.yc0{bottom:609.630000px;}
.y16{bottom:614.220000px;}
.yfd{bottom:614.310000px;}
.y72{bottom:616.920000px;}
.y9b{bottom:617.910000px;}
.y125{bottom:619.260000px;}
.y44{bottom:622.410000px;}
.yd9{bottom:627.990000px;}
.yfc{bottom:631.860000px;}
.y15{bottom:632.220000px;}
.y71{bottom:634.470000px;}
.y124{bottom:636.810000px;}
.ybf{bottom:636.990000px;}
.y9a{bottom:645.180000px;}
.y14{bottom:650.220000px;}
.y70{bottom:652.020000px;}
.y43{bottom:658.050000px;}
.yfb{bottom:658.770000px;}
.y123{bottom:663.360000px;}
.ybe{bottom:664.260000px;}
.y13{bottom:664.440000px;}
.y6f{bottom:669.660000px;}
.y99{bottom:672.540000px;}
.y42{bottom:675.600000px;}
.yd8{bottom:676.680000px;}
.y122{bottom:681.000000px;}
.y12{bottom:686.220000px;}
.y6e{bottom:687.210000px;}
.ybd{bottom:691.620000px;}
.y41{bottom:693.240000px;}
.yfa{bottom:695.760000px;}
.y121{bottom:698.550000px;}
.y98{bottom:699.900000px;}
.y11{bottom:704.220000px;}
.y6d{bottom:704.850000px;}
.y40{bottom:710.790000px;}
.yd7{bottom:712.230000px;}
.yf9{bottom:713.400000px;}
.ybc{bottom:718.980000px;}
.y120{bottom:725.190000px;}
.yd6{bottom:727.170000px;}
.y3f{bottom:728.340000px;}
.yf8{bottom:730.950000px;}
.y6c{bottom:731.760000px;}
.y10{bottom:736.530000px;}
.y11f{bottom:742.740000px;}
.y3e{bottom:745.980000px;}
.ybb{bottom:746.250000px;}
.y97{bottom:748.590000px;}
.yd5{bottom:754.530000px;}
.yf{bottom:755.880000px;}
.yf7{bottom:757.860000px;}
.y11e{bottom:769.290000px;}
.y3d{bottom:772.890000px;}
.yba{bottom:773.610000px;}
.ye{bottom:775.230000px;}
.y6b{bottom:780.000000px;}
.yd4{bottom:781.890000px;}
.y96{bottom:784.140000px;}
.y11d{bottom:786.930000px;}
.yd{bottom:794.580000px;}
.y6a{bottom:797.550000px;}
.y95{bottom:799.170000px;}
.yf6{bottom:806.190000px;}
.yd3{bottom:809.250000px;}
.y11c{bottom:813.480000px;}
.yc{bottom:813.930000px;}
.y69{bottom:815.190000px;}
.y3c{bottom:821.490000px;}
.yb9{bottom:822.300000px;}
.yf5{bottom:823.740000px;}
.y94{bottom:826.440000px;}
.y68{bottom:832.740000px;}
.yb{bottom:833.280000px;}
.y11b{bottom:840.030000px;}
.yf4{bottom:841.290000px;}
.ya{bottom:852.630000px;}
.y93{bottom:853.800000px;}
.y11a{bottom:857.670000px;}
.yb8{bottom:857.940000px;}
.y3b{bottom:858.480000px;}
.yf3{bottom:858.930000px;}
.y67{bottom:859.380000px;}
.y9{bottom:871.980000px;}
.yb7{bottom:872.880000px;}
.y3a{bottom:876.030000px;}
.yf2{bottom:876.480000px;}
.y92{bottom:881.160000px;}
.y119{bottom:884.220000px;}
.y8{bottom:891.330000px;}
.yd2{bottom:893.490000px;}
.y39{bottom:893.670000px;}
.yf1{bottom:894.030000px;}
.y66{bottom:894.930000px;}
.yb6{bottom:900.240000px;}
.y118{bottom:901.860000px;}
.y91{bottom:908.430000px;}
.y7{bottom:910.590000px;}
.yf0{bottom:911.670000px;}
.y65{bottom:912.480000px;}
.yb5{bottom:927.600000px;}
.y117{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y64{bottom:930.120000px;}
.y90{bottom:935.790000px;}
.y116{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yb4{bottom:954.870000px;}
.y63{bottom:957.030000px;}
.y8f{bottom:963.150000px;}
.y115{bottom:963.600000px;}
.y36{bottom:964.410000px;}
.y35{bottom:981.960000px;}
.yb3{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y114{bottom:990.150000px;}
.y8e{bottom:990.510000px;}
.y34{bottom:999.600000px;}
.y62{bottom:1005.270000px;}
.y113{bottom:1007.790000px;}
.yb1{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y33{bottom:1017.180000px;}
.y8d{bottom:1017.810000px;}
.y61{bottom:1022.850000px;}
.y112{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yb0{bottom:1036.890000px;}
.y60{bottom:1040.490000px;}
.y8c{bottom:1045.170000px;}
.y111{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.yaf{bottom:1064.250000px;}
.y5f{bottom:1067.040000px;}
.y30{bottom:1069.920000px;}
.y8b{bottom:1072.530000px;}
.y110{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.yae{bottom:1091.610000px;}
.y10f{bottom:1096.110000px;}
.y8a{bottom:1099.890000px;}
.y5e{bottom:1102.590000px;}
.y2e{bottom:1105.110000px;}
.y5d{bottom:1121.040000px;}
.y2d{bottom:1122.750000px;}
.y89{bottom:1127.160000px;}
.y5c{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:50.667539px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h13{height:53.910000px;}
.ha{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:61.793886px;}
.hd{height:62.585859px;}
.h9{height:62.648438px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:71.550000px;}
.w4{width:88.500000px;}
.w9{width:88.590000px;}
.w7{width:99.720000px;}
.w5{width:99.810000px;}
.wf{width:107.850000px;}
.w13{width:109.260000px;}
.w10{width:109.980000px;}
.wc{width:113.940000px;}
.wb{width:113.970000px;}
.wa{width:122.040000px;}
.w3{width:146.250000px;}
.w8{width:149.220000px;}
.we{width:152.460000px;}
.wd{width:174.060000px;}
.w6{width:226.620000px;}
.w11{width:236.730000px;}
.w14{width:638.340000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x1d{left:111.239987px;}
.x18{left:127.440000px;}
.x2{left:192.719987px;}
.x19{left:236.010000px;}
.x9{left:238.440000px;}
.x12{left:264.720000px;}
.xf{left:270.840000px;}
.x15{left:275.520000px;}
.xc{left:277.140000px;}
.x5{left:278.580000px;}
.x1a{left:346.710000px;}
.x10{left:393.690000px;}
.x7{left:425.640000px;}
.xd{left:427.080000px;}
.x16{left:428.700000px;}
.x13{left:439.500000px;}
.xa{left:465.780000px;}
.x11{left:508.470000px;}
.x8{left:514.860000px;}
.xe{left:516.390000px;}
.x17{left:518.010000px;}
.x14{left:528.810000px;}
.xb{left:555.090000px;}
.x1b{left:584.250000px;}
.x1c{left:656.520000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.276267pt;}
.ls1f{letter-spacing:-0.192533pt;}
.ls13{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.164800pt;}
.lsf{letter-spacing:-0.142933pt;}
.lse{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.024320pt;}
.ls10{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.044160pt;}
.ls11{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.154240pt;}
.ls9{letter-spacing:0.155200pt;}
.ls16{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.378240pt;}
.lsa{letter-spacing:0.475200pt;}
.lsc{letter-spacing:3.434667pt;}
.ls21{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.564267pt;}
.wse{word-spacing:-11.480533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws3{word-spacing:-7.603200pt;}
.wsc{word-spacing:-7.518933pt;}
.ws5{word-spacing:-7.462400pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-2.825280pt;}
._c{margin-left:-1.876800pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._6{width:1.855090pt;}
._5{width:3.241792pt;}
._4{width:4.143147pt;}
._8{width:5.329077pt;}
._12{width:6.893760pt;}
._9{width:8.549877pt;}
._2{width:9.968320pt;}
._e{width:10.864736pt;}
._3{width:11.963386pt;}
._d{width:12.952209pt;}
._7{width:13.857483pt;}
._13{width:14.797059pt;}
._b{width:16.055680pt;}
._f{width:16.970240pt;}
._10{width:17.955840pt;}
._11{width:19.024640pt;}
._14{width:26.880320pt;}
._16{width:60.975040pt;}
._15{width:62.309547pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:6.960000pt;}
.yb2{bottom:6.986667pt;}
.y7e{bottom:7.040000pt;}
.ye0{bottom:7.066667pt;}
.ye7{bottom:11.600000pt;}
.ye6{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y88{bottom:98.426667pt;}
.y10e{bottom:100.826667pt;}
.y5b{bottom:102.666667pt;}
.yef{bottom:106.586667pt;}
.yad{bottom:111.786667pt;}
.y29{bottom:113.066667pt;}
.yd1{bottom:113.466667pt;}
.y10d{bottom:116.426667pt;}
.y5a{bottom:119.066667pt;}
.yee{bottom:122.186667pt;}
.y87{bottom:122.666667pt;}
.y28{bottom:128.746667pt;}
.yac{bottom:136.106667pt;}
.yd0{bottom:137.786667pt;}
.yed{bottom:137.866667pt;}
.y10c{bottom:140.106667pt;}
.y27{bottom:144.346667pt;}
.y86{bottom:146.986667pt;}
.y59{bottom:151.466667pt;}
.yec{bottom:153.466667pt;}
.y10b{bottom:155.706667pt;}
.y26{bottom:159.946667pt;}
.yab{bottom:160.426667pt;}
.ycf{bottom:162.026667pt;}
.y85{bottom:171.306667pt;}
.yeb{bottom:177.386667pt;}
.y58{bottom:183.066667pt;}
.yaa{bottom:184.746667pt;}
.yce{bottom:186.346667pt;}
.y25{bottom:191.626667pt;}
.y10a{bottom:194.986667pt;}
.y84{bottom:195.626667pt;}
.y57{bottom:198.666667pt;}
.y24{bottom:207.226667pt;}
.ya9{bottom:208.986667pt;}
.y109{bottom:210.586667pt;}
.ycd{bottom:210.666667pt;}
.yea{bottom:217.946667pt;}
.y83{bottom:219.866667pt;}
.y56{bottom:222.586667pt;}
.y23{bottom:222.906667pt;}
.ya8{bottom:233.306667pt;}
.y108{bottom:234.266667pt;}
.ycc{bottom:234.906667pt;}
.y22{bottom:238.506667pt;}
.ye9{bottom:242.266667pt;}
.y82{bottom:244.186667pt;}
.y107{bottom:249.866667pt;}
.y21{bottom:254.106667pt;}
.y55{bottom:255.546667pt;}
.ya7{bottom:257.626667pt;}
.ycb{bottom:259.226667pt;}
.ye8{bottom:266.586667pt;}
.y80{bottom:268.506667pt;}
.y20{bottom:269.786667pt;}
.y54{bottom:271.146667pt;}
.y106{bottom:273.786667pt;}
.ya6{bottom:281.946667pt;}
.yca{bottom:283.546667pt;}
.ye5{bottom:290.906667pt;}
.y7f{bottom:292.746667pt;}
.y1f{bottom:301.386667pt;}
.y53{bottom:302.826667pt;}
.ya5{bottom:306.186667pt;}
.yc9{bottom:307.866667pt;}
.ye4{bottom:315.146667pt;}
.y105{bottom:316.666667pt;}
.y1e{bottom:317.066667pt;}
.y52{bottom:318.426667pt;}
.ya4{bottom:330.506667pt;}
.yc8{bottom:332.106667pt;}
.y51{bottom:334.026667pt;}
.ye3{bottom:339.466667pt;}
.y104{bottom:340.586667pt;}
.y1d{bottom:348.666667pt;}
.y50{bottom:349.706667pt;}
.ya3{bottom:354.826667pt;}
.yc7{bottom:356.426667pt;}
.y7d{bottom:360.346667pt;}
.ye2{bottom:363.786667pt;}
.y1c{bottom:364.266667pt;}
.y4f{bottom:365.306667pt;}
.y103{bottom:373.546667pt;}
.ya2{bottom:379.066667pt;}
.y1b{bottom:379.946667pt;}
.yc6{bottom:380.746667pt;}
.y4e{bottom:380.986667pt;}
.ye1{bottom:388.026667pt;}
.y7c{bottom:392.026667pt;}
.y4d{bottom:396.586667pt;}
.y102{bottom:397.466667pt;}
.ya1{bottom:403.386667pt;}
.y1a{bottom:403.866667pt;}
.yc5{bottom:405.066667pt;}
.y7b{bottom:407.626667pt;}
.y4c{bottom:412.186667pt;}
.ydf{bottom:412.346667pt;}
.y7a{bottom:423.333333pt;}
.ya0{bottom:427.733333pt;}
.y101{bottom:430.373333pt;}
.yde{bottom:436.693333pt;}
.y79{bottom:438.933333pt;}
.y4b{bottom:443.893333pt;}
.y19{bottom:446.773333pt;}
.yc4{bottom:448.373333pt;}
.y9f{bottom:452.053333pt;}
.y100{bottom:454.293333pt;}
.y78{bottom:454.533333pt;}
.y4a{bottom:459.493333pt;}
.ydd{bottom:461.013333pt;}
.y77{bottom:470.213333pt;}
.y49{bottom:475.093333pt;}
.y9e{bottom:476.293333pt;}
.y18{bottom:478.613333pt;}
.yc3{bottom:479.973333pt;}
.ydc{bottom:485.253333pt;}
.y76{bottom:485.813333pt;}
.yff{bottom:487.493333pt;}
.y48{bottom:490.773333pt;}
.yc2{bottom:493.253333pt;}
.y9d{bottom:500.613333pt;}
.y75{bottom:501.413333pt;}
.y47{bottom:506.373333pt;}
.ydb{bottom:509.573333pt;}
.y17{bottom:510.613333pt;}
.y74{bottom:517.093333pt;}
.yc1{bottom:517.573333pt;}
.y46{bottom:522.053333pt;}
.y9c{bottom:524.933333pt;}
.yfe{bottom:530.373333pt;}
.y73{bottom:532.693333pt;}
.yda{bottom:533.893333pt;}
.y126{bottom:534.773333pt;}
.y45{bottom:537.653333pt;}
.yc0{bottom:541.893333pt;}
.y16{bottom:545.973333pt;}
.yfd{bottom:546.053333pt;}
.y72{bottom:548.373333pt;}
.y9b{bottom:549.253333pt;}
.y125{bottom:550.453333pt;}
.y44{bottom:553.253333pt;}
.yd9{bottom:558.213333pt;}
.yfc{bottom:561.653333pt;}
.y15{bottom:561.973333pt;}
.y71{bottom:563.973333pt;}
.y124{bottom:566.053333pt;}
.ybf{bottom:566.213333pt;}
.y9a{bottom:573.493333pt;}
.y14{bottom:577.973333pt;}
.y70{bottom:579.573333pt;}
.y43{bottom:584.933333pt;}
.yfb{bottom:585.573333pt;}
.y123{bottom:589.653333pt;}
.ybe{bottom:590.453333pt;}
.y13{bottom:590.613333pt;}
.y6f{bottom:595.253333pt;}
.y99{bottom:597.813333pt;}
.y42{bottom:600.533333pt;}
.yd8{bottom:601.493333pt;}
.y122{bottom:605.333333pt;}
.y12{bottom:609.973333pt;}
.y6e{bottom:610.853333pt;}
.ybd{bottom:614.773333pt;}
.y41{bottom:616.213333pt;}
.yfa{bottom:618.453333pt;}
.y121{bottom:620.933333pt;}
.y98{bottom:622.133333pt;}
.y11{bottom:625.973333pt;}
.y6d{bottom:626.533333pt;}
.y40{bottom:631.813333pt;}
.yd7{bottom:633.093333pt;}
.yf9{bottom:634.133333pt;}
.ybc{bottom:639.093333pt;}
.y120{bottom:644.613333pt;}
.yd6{bottom:646.373333pt;}
.y3f{bottom:647.413333pt;}
.yf8{bottom:649.733333pt;}
.y6c{bottom:650.453333pt;}
.y10{bottom:654.693333pt;}
.y11f{bottom:660.213333pt;}
.y3e{bottom:663.093333pt;}
.ybb{bottom:663.333333pt;}
.y97{bottom:665.413333pt;}
.yd5{bottom:670.693333pt;}
.yf{bottom:671.893333pt;}
.yf7{bottom:673.653333pt;}
.y11e{bottom:683.813333pt;}
.y3d{bottom:687.013333pt;}
.yba{bottom:687.653333pt;}
.ye{bottom:689.093333pt;}
.y6b{bottom:693.333333pt;}
.yd4{bottom:695.013333pt;}
.y96{bottom:697.013333pt;}
.y11d{bottom:699.493333pt;}
.yd{bottom:706.293333pt;}
.y6a{bottom:708.933333pt;}
.y95{bottom:710.373333pt;}
.yf6{bottom:716.613333pt;}
.yd3{bottom:719.333333pt;}
.y11c{bottom:723.093333pt;}
.yc{bottom:723.493333pt;}
.y69{bottom:724.613333pt;}
.y3c{bottom:730.213333pt;}
.yb9{bottom:730.933333pt;}
.yf5{bottom:732.213333pt;}
.y94{bottom:734.613333pt;}
.y68{bottom:740.213333pt;}
.yb{bottom:740.693333pt;}
.y11b{bottom:746.693333pt;}
.yf4{bottom:747.813333pt;}
.ya{bottom:757.893333pt;}
.y93{bottom:758.933333pt;}
.y11a{bottom:762.373333pt;}
.yb8{bottom:762.613333pt;}
.y3b{bottom:763.093333pt;}
.yf3{bottom:763.493333pt;}
.y67{bottom:763.893333pt;}
.y9{bottom:775.093333pt;}
.yb7{bottom:775.893333pt;}
.y3a{bottom:778.693333pt;}
.yf2{bottom:779.093333pt;}
.y92{bottom:783.253333pt;}
.y119{bottom:785.973333pt;}
.y8{bottom:792.293333pt;}
.yd2{bottom:794.213333pt;}
.y39{bottom:794.373333pt;}
.yf1{bottom:794.693333pt;}
.y66{bottom:795.493333pt;}
.yb6{bottom:800.213333pt;}
.y118{bottom:801.653333pt;}
.y91{bottom:807.493333pt;}
.y7{bottom:809.413333pt;}
.yf0{bottom:810.373333pt;}
.y65{bottom:811.093333pt;}
.yb5{bottom:824.533333pt;}
.y117{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y64{bottom:826.773333pt;}
.y90{bottom:831.813333pt;}
.y116{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yb4{bottom:848.773333pt;}
.y63{bottom:850.693333pt;}
.y8f{bottom:856.133333pt;}
.y115{bottom:856.533333pt;}
.y36{bottom:857.253333pt;}
.y35{bottom:872.853333pt;}
.yb3{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y114{bottom:880.133333pt;}
.y8e{bottom:880.453333pt;}
.y34{bottom:888.533333pt;}
.y62{bottom:893.573333pt;}
.y113{bottom:895.813333pt;}
.yb1{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y33{bottom:904.160000pt;}
.y8d{bottom:904.720000pt;}
.y61{bottom:909.200000pt;}
.y112{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yb0{bottom:921.680000pt;}
.y60{bottom:924.880000pt;}
.y8c{bottom:929.040000pt;}
.y111{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.yaf{bottom:946.000000pt;}
.y5f{bottom:948.480000pt;}
.y30{bottom:951.040000pt;}
.y8b{bottom:953.360000pt;}
.y110{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.yae{bottom:970.320000pt;}
.y10f{bottom:974.320000pt;}
.y8a{bottom:977.680000pt;}
.y5e{bottom:980.080000pt;}
.y2e{bottom:982.320000pt;}
.y5d{bottom:996.480000pt;}
.y2d{bottom:998.000000pt;}
.y89{bottom:1001.920000pt;}
.y5c{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:45.037812pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h13{height:47.920000pt;}
.ha{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:54.927899pt;}
.hd{height:55.631875pt;}
.h9{height:55.687500pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:63.600000pt;}
.w4{width:78.666667pt;}
.w9{width:78.746667pt;}
.w7{width:88.640000pt;}
.w5{width:88.720000pt;}
.wf{width:95.866667pt;}
.w13{width:97.120000pt;}
.w10{width:97.760000pt;}
.wc{width:101.280000pt;}
.wb{width:101.306667pt;}
.wa{width:108.480000pt;}
.w3{width:130.000000pt;}
.w8{width:132.640000pt;}
.we{width:135.520000pt;}
.wd{width:154.720000pt;}
.w6{width:201.440000pt;}
.w11{width:210.426667pt;}
.w14{width:567.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x1d{left:98.879988pt;}
.x18{left:113.280000pt;}
.x2{left:171.306655pt;}
.x19{left:209.786667pt;}
.x9{left:211.946667pt;}
.x12{left:235.306667pt;}
.xf{left:240.746667pt;}
.x15{left:244.906667pt;}
.xc{left:246.346667pt;}
.x5{left:247.626667pt;}
.x1a{left:308.186667pt;}
.x10{left:349.946667pt;}
.x7{left:378.346667pt;}
.xd{left:379.626667pt;}
.x16{left:381.066667pt;}
.x13{left:390.666667pt;}
.xa{left:414.026667pt;}
.x11{left:451.973333pt;}
.x8{left:457.653333pt;}
.xe{left:459.013333pt;}
.x17{left:460.453333pt;}
.x14{left:470.053333pt;}
.xb{left:493.413333pt;}
.x1b{left:519.333333pt;}
.x1c{left:583.573333pt;}
.x3{left:711.413322pt;}
}




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