
    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_4ea7b7cf5d88e8175ba2c9da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6675331479b3de941febdb09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce130ac422bbd02b306da889.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_aba43af2d426c1a2f8d2e2c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de3442017f41b45f4564c92a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_54bc54ba49b74b42cb7f8e2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls19{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.408000px;}
.ls11{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.024000px;}
.ls20{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.078000px;}
.ls13{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.ls14{letter-spacing:0.408000px;}
.lse{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.660000px;}
.ls21{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.960000px;}
.ls1e{letter-spacing:1.800000px;}
.ls16{letter-spacing:3.000000px;}
.ls24{letter-spacing:4.260000px;}
.ls22{letter-spacing:11.400000px;}
.ls1f{letter-spacing:12.600000px;}
.ls15{letter-spacing:15.000000px;}
.ls23{letter-spacing:15.720000px;}
.ls1c{letter-spacing:45.720000px;}
.ls18{letter-spacing:63.720000px;}
.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;}
}
.ws13{word-spacing:-60.000000px;}
.ws15{word-spacing:-18.816000px;}
.wsf{word-spacing:-18.408000px;}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.024000px;}
.ws11{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.592000px;}
.ws12{word-spacing:-15.960000px;}
.wsa{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.wse{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.880000px;}
.wsc{word-spacing:-14.760000px;}
.ws10{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.460000px;}
.wsb{word-spacing:-14.220000px;}
.ws4{word-spacing:-13.800000px;}
.ws7{word-spacing:-12.900000px;}
.ws8{word-spacing:-11.136000px;}
.ws3{word-spacing:-9.900000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-3.342000px;}
._e{margin-left:-2.124000px;}
._3{margin-left:-1.014000px;}
._0{width:1.122000px;}
._c{width:2.136000px;}
._11{width:3.420000px;}
._10{width:4.440000px;}
._d{width:6.180000px;}
._f{width:7.620000px;}
._6{width:8.640000px;}
._7{width:9.924000px;}
._12{width:11.340000px;}
._13{width:12.354000px;}
._14{width:13.962000px;}
._8{width:15.300000px;}
._a{width:17.124000px;}
._9{width:18.690000px;}
._b{width:19.740000px;}
._16{width:21.558000px;}
._15{width:23.280000px;}
._1{width:43.800000px;}
._4{width:336.180000px;}
._2{width:1162.530000px;}
._5{width:1178.820000px;}
.fc5{color:transparent;}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:3.585000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3b{bottom:6.315000px;}
.y5{bottom:12.337500px;}
.yfe{bottom:20.700000px;}
.y3a{bottom:26.745000px;}
.y39{bottom:43.845000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y38{bottom:61.245000px;}
.y3d{bottom:74.137500px;}
.y37{bottom:78.345000px;}
.y3{bottom:81.337500px;}
.y36{bottom:95.745000px;}
.y35{bottom:112.845000px;}
.yd2{bottom:113.737500px;}
.yb1{bottom:114.337500px;}
.y95{bottom:116.137500px;}
.yee{bottom:122.437500px;}
.y71{bottom:126.937500px;}
.yfa{bottom:130.237500px;}
.y34{bottom:130.245000px;}
.y2b{bottom:131.737500px;}
.yb0{bottom:132.037500px;}
.y94{bottom:133.537500px;}
.yd1{bottom:134.437500px;}
.yed{bottom:139.537500px;}
.y70{bottom:144.637500px;}
.y12f{bottom:146.137500px;}
.y33{bottom:147.345000px;}
.yaf{bottom:148.837500px;}
.y2a{bottom:149.137500px;}
.y93{bottom:150.630000px;}
.yf9{bottom:150.930000px;}
.yec{bottom:156.930000px;}
.yd0{bottom:158.730000px;}
.y6f{bottom:161.745000px;}
.y12e{bottom:163.245000px;}
.y32{bottom:164.745000px;}
.y92{bottom:168.045000px;}
.yf8{bottom:171.630000px;}
.yeb{bottom:174.045000px;}
.y29{bottom:177.975000px;}
.y6e{bottom:179.175000px;}
.y12d{bottom:180.675000px;}
.y31{bottom:181.890000px;}
.y91{bottom:185.175000px;}
.yea{bottom:191.475000px;}
.yf7{bottom:191.775000px;}
.y28{bottom:195.675000px;}
.y6d{bottom:196.275000px;}
.y12c{bottom:197.775000px;}
.y30{bottom:199.290000px;}
.y90{bottom:202.575000px;}
.yf6{bottom:205.575000px;}
.ye9{bottom:208.575000px;}
.y27{bottom:212.775000px;}
.y6c{bottom:213.675000px;}
.y12b{bottom:215.175000px;}
.y2f{bottom:216.390000px;}
.y8f{bottom:219.675000px;}
.ye8{bottom:225.975000px;}
.y6b{bottom:230.775000px;}
.y12a{bottom:232.275000px;}
.y2e{bottom:233.790000px;}
.y8e{bottom:237.075000px;}
.y26{bottom:241.875000px;}
.ye7{bottom:243.675000px;}
.y129{bottom:249.675000px;}
.y2d{bottom:251.475000px;}
.y8d{bottom:254.775000px;}
.y25{bottom:259.275000px;}
.y6a{bottom:259.875000px;}
.ye6{bottom:264.375000px;}
.y128{bottom:266.775000px;}
.y8c{bottom:275.475000px;}
.y69{bottom:277.275000px;}
.y127{bottom:284.175000px;}
.ye5{bottom:284.475000px;}
.yae{bottom:287.175000px;}
.y24{bottom:288.375000px;}
.y68{bottom:294.675000px;}
.y8b{bottom:296.175000px;}
.ye4{bottom:298.275000px;}
.y126{bottom:301.275000px;}
.yad{bottom:304.575000px;}
.y23{bottom:305.775000px;}
.y67{bottom:311.775000px;}
.y8a{bottom:316.275000px;}
.y125{bottom:318.675000px;}
.yac{bottom:321.675000px;}
.y22{bottom:323.175000px;}
.y66{bottom:329.175000px;}
.y89{bottom:330.075000px;}
.y124{bottom:335.775000px;}
.yab{bottom:339.075000px;}
.y21{bottom:340.275000px;}
.y65{bottom:346.320000px;}
.y123{bottom:353.205000px;}
.yaa{bottom:356.220000px;}
.y20{bottom:357.705000px;}
.y122{bottom:370.320000px;}
.ya9{bottom:373.620000px;}
.y1f{bottom:374.820000px;}
.y64{bottom:375.420000px;}
.ycf{bottom:376.320000px;}
.yce{bottom:386.820000px;}
.y121{bottom:387.705000px;}
.ya8{bottom:390.705000px;}
.y1e{bottom:392.205000px;}
.y63{bottom:392.820000px;}
.ycd{bottom:404.220000px;}
.y120{bottom:404.820000px;}
.ya7{bottom:408.120000px;}
.y1d{bottom:409.920000px;}
.y62{bottom:410.205000px;}
.ycc{bottom:421.320000px;}
.y11f{bottom:422.205000px;}
.ya6{bottom:425.820000px;}
.y61{bottom:427.320000px;}
.y1c{bottom:430.005000px;}
.ycb{bottom:438.705000px;}
.y11e{bottom:439.320000px;}
.ya5{bottom:444.120000px;}
.y60{bottom:444.720000px;}
.ya4{bottom:454.920000px;}
.yca{bottom:455.820000px;}
.y11d{bottom:457.005000px;}
.y5f{bottom:461.820000px;}
.ya3{bottom:475.320000px;}
.y11c{bottom:477.420000px;}
.y5e{bottom:479.205000px;}
.yc9{bottom:484.905000px;}
.ya2{bottom:489.120000px;}
.y11b{bottom:494.505000px;}
.yc8{bottom:502.320000px;}
.y2c{bottom:503.805000px;}
.y5d{bottom:508.020000px;}
.y11a{bottom:511.905000px;}
.yc7{bottom:519.750000px;}
.y5c{bottom:525.750000px;}
.y119{bottom:529.650000px;}
.yc6{bottom:536.850000px;}
.y5b{bottom:542.850000px;}
.y118{bottom:549.750000px;}
.yc5{bottom:554.550000px;}
.y5a{bottom:560.250000px;}
.y117{bottom:567.150000px;}
.yc4{bottom:572.850000px;}
.y59{bottom:577.350000px;}
.yc3{bottom:583.950000px;}
.y116{bottom:584.250000px;}
.y58{bottom:594.750000px;}
.y115{bottom:601.650000px;}
.yc2{bottom:604.050000px;}
.y57{bottom:611.850000px;}
.yc1{bottom:617.850000px;}
.y114{bottom:618.750000px;}
.y56{bottom:629.250000px;}
.y113{bottom:636.150000px;}
.y112{bottom:653.850000px;}
.y55{bottom:658.050000px;}
.ya1{bottom:663.750000px;}
.yf5{bottom:673.050000px;}
.ya0{bottom:674.550000px;}
.y54{bottom:675.750000px;}
.y111{bottom:688.695000px;}
.yf4{bottom:690.195000px;}
.y9f{bottom:691.695000px;}
.y53{bottom:692.880000px;}
.y88{bottom:704.880000px;}
.y110{bottom:706.380000px;}
.yf3{bottom:707.595000px;}
.y9e{bottom:709.095000px;}
.y52{bottom:710.295000px;}
.y87{bottom:722.295000px;}
.y10f{bottom:723.480000px;}
.yf2{bottom:725.280000px;}
.y9d{bottom:726.195000px;}
.ye3{bottom:727.080000px;}
.y51{bottom:727.395000px;}
.y86{bottom:739.995000px;}
.y10e{bottom:740.895000px;}
.y9c{bottom:743.595000px;}
.ye2{bottom:744.495000px;}
.y50{bottom:744.780000px;}
.yf1{bottom:745.380000px;}
.y10d{bottom:757.995000px;}
.yf0{bottom:759.195000px;}
.y85{bottom:760.095000px;}
.y9b{bottom:761.295000px;}
.ye1{bottom:761.595000px;}
.y4f{bottom:761.880000px;}
.y84{bottom:777.480000px;}
.ye0{bottom:779.295000px;}
.y9a{bottom:779.580000px;}
.y10c{bottom:787.080000px;}
.y99{bottom:790.380000px;}
.y4e{bottom:790.980000px;}
.y83{bottom:794.580000px;}
.y13e{bottom:796.080000px;}
.ydf{bottom:799.995000px;}
.y10b{bottom:804.480000px;}
.y1b{bottom:808.395000px;}
.y98{bottom:810.795000px;}
.y82{bottom:811.995000px;}
.y13d{bottom:813.495000px;}
.yde{bottom:820.695000px;}
.y10a{bottom:821.895000px;}
.y97{bottom:824.580000px;}
.y4d{bottom:825.795000px;}
.y1a{bottom:828.495000px;}
.y13c{bottom:830.580000px;}
.y109{bottom:838.995000px;}
.y81{bottom:840.795000px;}
.ydd{bottom:841.380000px;}
.y4c{bottom:842.895000px;}
.y13b{bottom:847.995000px;}
.y19{bottom:848.295000px;}
.y108{bottom:856.425000px;}
.y80{bottom:858.525000px;}
.y4b{bottom:860.325000px;}
.ydc{bottom:862.125000px;}
.y13a{bottom:865.125000px;}
.y18{bottom:866.925000px;}
.yc0{bottom:873.525000px;}
.y7f{bottom:875.625000px;}
.y4a{bottom:877.425000px;}
.y139{bottom:882.525000px;}
.ydb{bottom:882.825000px;}
.ybf{bottom:890.625000px;}
.y17{bottom:890.925000px;}
.y7e{bottom:893.025000px;}
.y49{bottom:894.825000px;}
.y138{bottom:899.625000px;}
.yda{bottom:903.525000px;}
.y16{bottom:908.625000px;}
.ybe{bottom:908.925000px;}
.y7d{bottom:910.125000px;}
.y137{bottom:917.025000px;}
.y107{bottom:919.725000px;}
.y15{bottom:920.325000px;}
.y48{bottom:923.625000px;}
.yd9{bottom:924.225000px;}
.ybd{bottom:927.225000px;}
.y136{bottom:934.125000px;}
.y106{bottom:937.425000px;}
.y7c{bottom:939.225000px;}
.y47{bottom:941.325000px;}
.y14{bottom:943.125000px;}
.yd8{bottom:944.925000px;}
.ybc{bottom:945.825000px;}
.y135{bottom:951.525000px;}
.y105{bottom:954.525000px;}
.y7b{bottom:956.625000px;}
.y46{bottom:958.425000px;}
.y13{bottom:960.225000px;}
.yd7{bottom:965.625000px;}
.y134{bottom:968.625000px;}
.ybb{bottom:970.125000px;}
.y104{bottom:971.925000px;}
.y7a{bottom:974.025000px;}
.y12{bottom:975.225000px;}
.y45{bottom:975.825000px;}
.y133{bottom:986.025000px;}
.yd6{bottom:986.325000px;}
.yba{bottom:987.825000px;}
.y103{bottom:989.025000px;}
.y79{bottom:991.125000px;}
.y44{bottom:992.925000px;}
.y11{bottom:995.925000px;}
.y132{bottom:1003.125000px;}
.yb9{bottom:1004.925000px;}
.y102{bottom:1006.425000px;}
.yd5{bottom:1007.025000px;}
.y78{bottom:1008.525000px;}
.y10{bottom:1016.670000px;}
.y131{bottom:1020.570000px;}
.y101{bottom:1020.870000px;}
.y43{bottom:1022.070000px;}
.yd4{bottom:1027.755000px;}
.yb8{bottom:1034.070000px;}
.y77{bottom:1037.370000px;}
.y130{bottom:1037.670000px;}
.y100{bottom:1038.870000px;}
.y42{bottom:1039.455000px;}
.yd{bottom:1040.955000px;}
.yd3{bottom:1048.455000px;}
.yb7{bottom:1051.455000px;}
.y76{bottom:1055.070000px;}
.y41{bottom:1056.870000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yb6{bottom:1068.870000px;}
.y75{bottom:1072.170000px;}
.y40{bottom:1073.955000px;}
.yfd{bottom:1074.870000px;}
.ya{bottom:1083.570000px;}
.yb5{bottom:1085.955000px;}
.y74{bottom:1089.570000px;}
.y3f{bottom:1091.670000px;}
.y96{bottom:1096.170000px;}
.y9{bottom:1097.955000px;}
.yef{bottom:1103.070000px;}
.yb4{bottom:1103.370000px;}
.y73{bottom:1106.670000px;}
.yfc{bottom:1110.870000px;}
.y8{bottom:1115.670000px;}
.yfb{bottom:1117.455000px;}
.yb3{bottom:1120.455000px;}
.y3e{bottom:1123.755000px;}
.y72{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb2{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3c{bottom:1196.400000px;}
.h9{height:10.757812px;}
.h5{height:12.700195px;}
.h18{height:17.385000px;}
.h17{height:17.400000px;}
.ha{height:21.000000px;}
.h15{height:26.894531px;}
.h7{height:33.867188px;}
.h16{height:34.500000px;}
.hc{height:35.500781px;}
.h3{height:36.000000px;}
.he{height:38.100586px;}
.h4{height:42.333984px;}
.h12{height:43.330078px;}
.h13{height:44.507812px;}
.h8{height:48.410156px;}
.h11{height:49.453125px;}
.h6{height:50.800781px;}
.h10{height:51.996094px;}
.hd{height:53.789062px;}
.hb{height:57.100781px;}
.h14{height:64.546875px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.hf{height:268.275000px;}
.h0{height:1263.000000px;}
.w8{width:57.300000px;}
.w4{width:72.300000px;}
.w9{width:89.737500px;}
.w3{width:108.000000px;}
.wa{width:244.875000px;}
.w6{width:253.875000px;}
.wb{width:344.820000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.800000px;}
.x2{left:10.799998px;}
.x10{left:16.200000px;}
.x3{left:22.200000px;}
.x2a{left:23.700000px;}
.x4{left:27.600000px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.xf{left:82.237500px;}
.x1b{left:108.037487px;}
.xe{left:117.330000px;}
.x27{left:139.537500px;}
.x9{left:153.629987px;}
.x14{left:166.229987px;}
.x28{left:229.875000px;}
.xc{left:241.582500px;}
.x22{left:291.974987px;}
.x18{left:308.204987px;}
.x6{left:311.219987px;}
.x1d{left:323.219987px;}
.x25{left:328.319987px;}
.x16{left:330.719987px;}
.x20{left:352.319987px;}
.x1a{left:356.204987px;}
.x1f{left:357.419987px;}
.x13{left:446.549987px;}
.x29{left:475.350000px;}
.x11{left:549.194987px;}
.xd{left:561.495000px;}
.x8{left:619.379987px;}
.x1e{left:634.379987px;}
.x1c{left:642.494987px;}
.x7{left:648.194987px;}
.x15{left:652.394987px;}
.x19{left:672.824987px;}
.x5{left:697.124987px;}
.x23{left:713.624987px;}
.x24{left:714.824987px;}
.x17{left:766.124987px;}
.x12{left:776.369987px;}
.x21{left:797.669987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.362667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls20{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.069333pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.ls14{letter-spacing:0.362667pt;}
.lse{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls21{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls16{letter-spacing:2.666667pt;}
.ls24{letter-spacing:3.786667pt;}
.ls22{letter-spacing:10.133333pt;}
.ls1f{letter-spacing:11.200000pt;}
.ls15{letter-spacing:13.333333pt;}
.ls23{letter-spacing:13.973333pt;}
.ls1c{letter-spacing:40.640000pt;}
.ls18{letter-spacing:56.640000pt;}
.ws13{word-spacing:-53.333333pt;}
.ws15{word-spacing:-16.725333pt;}
.wsf{word-spacing:-16.362667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.021333pt;}
.ws11{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.637333pt;}
.ws12{word-spacing:-14.186667pt;}
.wsa{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.wse{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.226667pt;}
.wsc{word-spacing:-13.120000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.853333pt;}
.wsb{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.266667pt;}
.ws7{word-spacing:-11.466667pt;}
.ws8{word-spacing:-9.898667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-2.970667pt;}
._e{margin-left:-1.888000pt;}
._3{margin-left:-0.901333pt;}
._0{width:0.997333pt;}
._c{width:1.898667pt;}
._11{width:3.040000pt;}
._10{width:3.946667pt;}
._d{width:5.493333pt;}
._f{width:6.773333pt;}
._6{width:7.680000pt;}
._7{width:8.821333pt;}
._12{width:10.080000pt;}
._13{width:10.981333pt;}
._14{width:12.410667pt;}
._8{width:13.600000pt;}
._a{width:15.221333pt;}
._9{width:16.613333pt;}
._b{width:17.546667pt;}
._16{width:19.162667pt;}
._15{width:20.693333pt;}
._1{width:38.933333pt;}
._4{width:298.826667pt;}
._2{width:1033.360000pt;}
._5{width:1047.840000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:3.186667pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3b{bottom:5.613333pt;}
.y5{bottom:10.966667pt;}
.yfe{bottom:18.400000pt;}
.y3a{bottom:23.773333pt;}
.y39{bottom:38.973333pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y38{bottom:54.440000pt;}
.y3d{bottom:65.900000pt;}
.y37{bottom:69.640000pt;}
.y3{bottom:72.300000pt;}
.y36{bottom:85.106667pt;}
.y35{bottom:100.306667pt;}
.yd2{bottom:101.100000pt;}
.yb1{bottom:101.633333pt;}
.y95{bottom:103.233333pt;}
.yee{bottom:108.833333pt;}
.y71{bottom:112.833333pt;}
.yfa{bottom:115.766667pt;}
.y34{bottom:115.773333pt;}
.y2b{bottom:117.100000pt;}
.yb0{bottom:117.366667pt;}
.y94{bottom:118.700000pt;}
.yd1{bottom:119.500000pt;}
.yed{bottom:124.033333pt;}
.y70{bottom:128.566667pt;}
.y12f{bottom:129.900000pt;}
.y33{bottom:130.973333pt;}
.yaf{bottom:132.300000pt;}
.y2a{bottom:132.566667pt;}
.y93{bottom:133.893333pt;}
.yf9{bottom:134.160000pt;}
.yec{bottom:139.493333pt;}
.yd0{bottom:141.093333pt;}
.y6f{bottom:143.773333pt;}
.y12e{bottom:145.106667pt;}
.y32{bottom:146.440000pt;}
.y92{bottom:149.373333pt;}
.yf8{bottom:152.560000pt;}
.yeb{bottom:154.706667pt;}
.y29{bottom:158.200000pt;}
.y6e{bottom:159.266667pt;}
.y12d{bottom:160.600000pt;}
.y31{bottom:161.680000pt;}
.y91{bottom:164.600000pt;}
.yea{bottom:170.200000pt;}
.yf7{bottom:170.466667pt;}
.y28{bottom:173.933333pt;}
.y6d{bottom:174.466667pt;}
.y12c{bottom:175.800000pt;}
.y30{bottom:177.146667pt;}
.y90{bottom:180.066667pt;}
.yf6{bottom:182.733333pt;}
.ye9{bottom:185.400000pt;}
.y27{bottom:189.133333pt;}
.y6c{bottom:189.933333pt;}
.y12b{bottom:191.266667pt;}
.y2f{bottom:192.346667pt;}
.y8f{bottom:195.266667pt;}
.ye8{bottom:200.866667pt;}
.y6b{bottom:205.133333pt;}
.y12a{bottom:206.466667pt;}
.y2e{bottom:207.813333pt;}
.y8e{bottom:210.733333pt;}
.y26{bottom:215.000000pt;}
.ye7{bottom:216.600000pt;}
.y129{bottom:221.933333pt;}
.y2d{bottom:223.533333pt;}
.y8d{bottom:226.466667pt;}
.y25{bottom:230.466667pt;}
.y6a{bottom:231.000000pt;}
.ye6{bottom:235.000000pt;}
.y128{bottom:237.133333pt;}
.y8c{bottom:244.866667pt;}
.y69{bottom:246.466667pt;}
.y127{bottom:252.600000pt;}
.ye5{bottom:252.866667pt;}
.yae{bottom:255.266667pt;}
.y24{bottom:256.333333pt;}
.y68{bottom:261.933333pt;}
.y8b{bottom:263.266667pt;}
.ye4{bottom:265.133333pt;}
.y126{bottom:267.800000pt;}
.yad{bottom:270.733333pt;}
.y23{bottom:271.800000pt;}
.y67{bottom:277.133333pt;}
.y8a{bottom:281.133333pt;}
.y125{bottom:283.266667pt;}
.yac{bottom:285.933333pt;}
.y22{bottom:287.266667pt;}
.y66{bottom:292.600000pt;}
.y89{bottom:293.400000pt;}
.y124{bottom:298.466667pt;}
.yab{bottom:301.400000pt;}
.y21{bottom:302.466667pt;}
.y65{bottom:307.840000pt;}
.y123{bottom:313.960000pt;}
.yaa{bottom:316.640000pt;}
.y20{bottom:317.960000pt;}
.y122{bottom:329.173333pt;}
.ya9{bottom:332.106667pt;}
.y1f{bottom:333.173333pt;}
.y64{bottom:333.706667pt;}
.ycf{bottom:334.506667pt;}
.yce{bottom:343.840000pt;}
.y121{bottom:344.626667pt;}
.ya8{bottom:347.293333pt;}
.y1e{bottom:348.626667pt;}
.y63{bottom:349.173333pt;}
.ycd{bottom:359.306667pt;}
.y120{bottom:359.840000pt;}
.ya7{bottom:362.773333pt;}
.y1d{bottom:364.373333pt;}
.y62{bottom:364.626667pt;}
.ycc{bottom:374.506667pt;}
.y11f{bottom:375.293333pt;}
.ya6{bottom:378.506667pt;}
.y61{bottom:379.840000pt;}
.y1c{bottom:382.226667pt;}
.ycb{bottom:389.960000pt;}
.y11e{bottom:390.506667pt;}
.ya5{bottom:394.773333pt;}
.y60{bottom:395.306667pt;}
.ya4{bottom:404.373333pt;}
.yca{bottom:405.173333pt;}
.y11d{bottom:406.226667pt;}
.y5f{bottom:410.506667pt;}
.ya3{bottom:422.506667pt;}
.y11c{bottom:424.373333pt;}
.y5e{bottom:425.960000pt;}
.yc9{bottom:431.026667pt;}
.ya2{bottom:434.773333pt;}
.y11b{bottom:439.560000pt;}
.yc8{bottom:446.506667pt;}
.y2c{bottom:447.826667pt;}
.y5d{bottom:451.573333pt;}
.y11a{bottom:455.026667pt;}
.yc7{bottom:462.000000pt;}
.y5c{bottom:467.333333pt;}
.y119{bottom:470.800000pt;}
.yc6{bottom:477.200000pt;}
.y5b{bottom:482.533333pt;}
.y118{bottom:488.666667pt;}
.yc5{bottom:492.933333pt;}
.y5a{bottom:498.000000pt;}
.y117{bottom:504.133333pt;}
.yc4{bottom:509.200000pt;}
.y59{bottom:513.200000pt;}
.yc3{bottom:519.066667pt;}
.y116{bottom:519.333333pt;}
.y58{bottom:528.666667pt;}
.y115{bottom:534.800000pt;}
.yc2{bottom:536.933333pt;}
.y57{bottom:543.866667pt;}
.yc1{bottom:549.200000pt;}
.y114{bottom:550.000000pt;}
.y56{bottom:559.333333pt;}
.y113{bottom:565.466667pt;}
.y112{bottom:581.200000pt;}
.y55{bottom:584.933333pt;}
.ya1{bottom:590.000000pt;}
.yf5{bottom:598.266667pt;}
.ya0{bottom:599.600000pt;}
.y54{bottom:600.666667pt;}
.y111{bottom:612.173333pt;}
.yf4{bottom:613.506667pt;}
.y9f{bottom:614.840000pt;}
.y53{bottom:615.893333pt;}
.y88{bottom:626.560000pt;}
.y110{bottom:627.893333pt;}
.yf3{bottom:628.973333pt;}
.y9e{bottom:630.306667pt;}
.y52{bottom:631.373333pt;}
.y87{bottom:642.040000pt;}
.y10f{bottom:643.093333pt;}
.yf2{bottom:644.693333pt;}
.y9d{bottom:645.506667pt;}
.ye3{bottom:646.293333pt;}
.y51{bottom:646.573333pt;}
.y86{bottom:657.773333pt;}
.y10e{bottom:658.573333pt;}
.y9c{bottom:660.973333pt;}
.ye2{bottom:661.773333pt;}
.y50{bottom:662.026667pt;}
.yf1{bottom:662.560000pt;}
.y10d{bottom:673.773333pt;}
.yf0{bottom:674.840000pt;}
.y85{bottom:675.640000pt;}
.y9b{bottom:676.706667pt;}
.ye1{bottom:676.973333pt;}
.y4f{bottom:677.226667pt;}
.y84{bottom:691.093333pt;}
.ye0{bottom:692.706667pt;}
.y9a{bottom:692.960000pt;}
.y10c{bottom:699.626667pt;}
.y99{bottom:702.560000pt;}
.y4e{bottom:703.093333pt;}
.y83{bottom:706.293333pt;}
.y13e{bottom:707.626667pt;}
.ydf{bottom:711.106667pt;}
.y10b{bottom:715.093333pt;}
.y1b{bottom:718.573333pt;}
.y98{bottom:720.706667pt;}
.y82{bottom:721.773333pt;}
.y13d{bottom:723.106667pt;}
.yde{bottom:729.506667pt;}
.y10a{bottom:730.573333pt;}
.y97{bottom:732.960000pt;}
.y4d{bottom:734.040000pt;}
.y1a{bottom:736.440000pt;}
.y13c{bottom:738.293333pt;}
.y109{bottom:745.773333pt;}
.y81{bottom:747.373333pt;}
.ydd{bottom:747.893333pt;}
.y4c{bottom:749.240000pt;}
.y13b{bottom:753.773333pt;}
.y19{bottom:754.040000pt;}
.y108{bottom:761.266667pt;}
.y80{bottom:763.133333pt;}
.y4b{bottom:764.733333pt;}
.ydc{bottom:766.333333pt;}
.y13a{bottom:769.000000pt;}
.y18{bottom:770.600000pt;}
.yc0{bottom:776.466667pt;}
.y7f{bottom:778.333333pt;}
.y4a{bottom:779.933333pt;}
.y139{bottom:784.466667pt;}
.ydb{bottom:784.733333pt;}
.ybf{bottom:791.666667pt;}
.y17{bottom:791.933333pt;}
.y7e{bottom:793.800000pt;}
.y49{bottom:795.400000pt;}
.y138{bottom:799.666667pt;}
.yda{bottom:803.133333pt;}
.y16{bottom:807.666667pt;}
.ybe{bottom:807.933333pt;}
.y7d{bottom:809.000000pt;}
.y137{bottom:815.133333pt;}
.y107{bottom:817.533333pt;}
.y15{bottom:818.066667pt;}
.y48{bottom:821.000000pt;}
.yd9{bottom:821.533333pt;}
.ybd{bottom:824.200000pt;}
.y136{bottom:830.333333pt;}
.y106{bottom:833.266667pt;}
.y7c{bottom:834.866667pt;}
.y47{bottom:836.733333pt;}
.y14{bottom:838.333333pt;}
.yd8{bottom:839.933333pt;}
.ybc{bottom:840.733333pt;}
.y135{bottom:845.800000pt;}
.y105{bottom:848.466667pt;}
.y7b{bottom:850.333333pt;}
.y46{bottom:851.933333pt;}
.y13{bottom:853.533333pt;}
.yd7{bottom:858.333333pt;}
.y134{bottom:861.000000pt;}
.ybb{bottom:862.333333pt;}
.y104{bottom:863.933333pt;}
.y7a{bottom:865.800000pt;}
.y12{bottom:866.866667pt;}
.y45{bottom:867.400000pt;}
.y133{bottom:876.466667pt;}
.yd6{bottom:876.733333pt;}
.yba{bottom:878.066667pt;}
.y103{bottom:879.133333pt;}
.y79{bottom:881.000000pt;}
.y44{bottom:882.600000pt;}
.y11{bottom:885.266667pt;}
.y132{bottom:891.666667pt;}
.yb9{bottom:893.266667pt;}
.y102{bottom:894.600000pt;}
.yd5{bottom:895.133333pt;}
.y78{bottom:896.466667pt;}
.y10{bottom:903.706667pt;}
.y131{bottom:907.173333pt;}
.y101{bottom:907.440000pt;}
.y43{bottom:908.506667pt;}
.yd4{bottom:913.560000pt;}
.yb8{bottom:919.173333pt;}
.y77{bottom:922.106667pt;}
.y130{bottom:922.373333pt;}
.y100{bottom:923.440000pt;}
.y42{bottom:923.960000pt;}
.yd{bottom:925.293333pt;}
.yd3{bottom:931.960000pt;}
.yb7{bottom:934.626667pt;}
.y76{bottom:937.840000pt;}
.y41{bottom:939.440000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yb6{bottom:950.106667pt;}
.y75{bottom:953.040000pt;}
.y40{bottom:954.626667pt;}
.yfd{bottom:955.440000pt;}
.ya{bottom:963.173333pt;}
.yb5{bottom:965.293333pt;}
.y74{bottom:968.506667pt;}
.y3f{bottom:970.373333pt;}
.y96{bottom:974.373333pt;}
.y9{bottom:975.960000pt;}
.yef{bottom:980.506667pt;}
.yb4{bottom:980.773333pt;}
.y73{bottom:983.706667pt;}
.yfc{bottom:987.440000pt;}
.y8{bottom:991.706667pt;}
.yfb{bottom:993.293333pt;}
.yb3{bottom:995.960000pt;}
.y3e{bottom:998.893333pt;}
.y72{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb2{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3c{bottom:1063.466667pt;}
.h9{height:9.562500pt;}
.h5{height:11.289062pt;}
.h18{height:15.453333pt;}
.h17{height:15.466667pt;}
.ha{height:18.666667pt;}
.h15{height:23.906250pt;}
.h7{height:30.104167pt;}
.h16{height:30.666667pt;}
.hc{height:31.556250pt;}
.h3{height:32.000000pt;}
.he{height:33.867188pt;}
.h4{height:37.630208pt;}
.h12{height:38.515625pt;}
.h13{height:39.562500pt;}
.h8{height:43.031250pt;}
.h11{height:43.958333pt;}
.h6{height:45.156250pt;}
.h10{height:46.218750pt;}
.hd{height:47.812500pt;}
.hb{height:50.756250pt;}
.h14{height:57.375000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.hf{height:238.466667pt;}
.h0{height:1122.666667pt;}
.w8{width:50.933333pt;}
.w4{width:64.266667pt;}
.w9{width:79.766667pt;}
.w3{width:96.000000pt;}
.wa{width:217.666667pt;}
.w6{width:225.666667pt;}
.wb{width:306.506667pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.933333pt;}
.x2{left:9.599999pt;}
.x10{left:14.400000pt;}
.x3{left:19.733333pt;}
.x2a{left:21.066667pt;}
.x4{left:24.533333pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.xf{left:73.100000pt;}
.x1b{left:96.033322pt;}
.xe{left:104.293333pt;}
.x27{left:124.033333pt;}
.x9{left:136.559988pt;}
.x14{left:147.759988pt;}
.x28{left:204.333333pt;}
.xc{left:214.740000pt;}
.x22{left:259.533322pt;}
.x18{left:273.959988pt;}
.x6{left:276.639988pt;}
.x1d{left:287.306655pt;}
.x25{left:291.839988pt;}
.x16{left:293.973322pt;}
.x20{left:313.173322pt;}
.x1a{left:316.626655pt;}
.x1f{left:317.706655pt;}
.x13{left:396.933322pt;}
.x29{left:422.533333pt;}
.x11{left:488.173322pt;}
.xd{left:499.106667pt;}
.x8{left:550.559988pt;}
.x1e{left:563.893322pt;}
.x1c{left:571.106655pt;}
.x7{left:576.173322pt;}
.x15{left:579.906655pt;}
.x19{left:598.066655pt;}
.x5{left:619.666655pt;}
.x23{left:634.333322pt;}
.x24{left:635.399988pt;}
.x17{left:680.999988pt;}
.x12{left:690.106655pt;}
.x21{left:709.039988pt;}
.xa{left:722.106655pt;}
}




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