
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9cab934ff9b305993c2dc71.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_37ec51337bb247249fa45b68.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_02633ea955e77c42293935e1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b9dbaa71f72cc78d95cbe3c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a37fe467d802d64214612b32.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4a2697cf5ba8a84c4ea90fe.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_ae669e52f2d02ebc63e58fd2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fedaad0c7f7f2197e17846e1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a33b0ef06327dbc109ca6169.woff')format("woff");}.ffa{font-family:ffa;line-height:1.061523;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls9{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.370200px;}
.lsb{letter-spacing:-0.326400px;}
.ls15{letter-spacing:-0.097800px;}
.ls16{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.126600px;}
.ls5{letter-spacing:0.132960px;}
.ls8{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.211680px;}
.ls18{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.385800px;}
.lsc{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.080000px;}
.ls19{letter-spacing:47.466720px;}
.ls11{letter-spacing:56.609280px;}
.ls10{letter-spacing:64.026720px;}
.ls12{letter-spacing:71.226720px;}
.ls14{letter-spacing:80.586720px;}
.ls17{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.wsc{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.273800px;}
.ws5{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.111200px;}
.wse{word-spacing:-13.093920px;}
.wsd{word-spacing:-13.049400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:59.432040px;}
._10{margin-left:-3.386160px;}
._c{margin-left:-2.161440px;}
._0{margin-left:-1.159200px;}
._3{width:1.088401px;}
._5{width:2.552157px;}
._9{width:3.594380px;}
._d{width:5.160984px;}
._8{width:6.932399px;}
._6{width:8.067600px;}
._a{width:9.847799px;}
._b{width:10.899003px;}
._4{width:12.052800px;}
._7{width:14.940000px;}
._e{width:16.983840px;}
._12{width:18.228237px;}
._f{width:21.394080px;}
._2{width:39.688787px;}
._1{width:40.830240px;}
._11{width:78.534239px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:7.740000px;}
.y6a{bottom:7.920000px;}
.ybe{bottom:7.950000px;}
.yb3{bottom:7.965000px;}
.ybb{bottom:25.380000px;}
.ybc{bottom:25.560000px;}
.yad{bottom:35.100000px;}
.y2{bottom:73.260000px;}
.y27{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y9b{bottom:112.320000px;}
.y81{bottom:116.640000px;}
.ycc{bottom:127.260000px;}
.yef{bottom:128.700000px;}
.y9a{bottom:129.780000px;}
.y80{bottom:134.100000px;}
.y57{bottom:138.960000px;}
.ycb{bottom:144.900000px;}
.yee{bottom:146.340000px;}
.y99{bottom:147.420000px;}
.y56{bottom:156.600000px;}
.y25{bottom:157.860000px;}
.y7f{bottom:160.770000px;}
.yca{bottom:162.570000px;}
.yed{bottom:164.010000px;}
.y55{bottom:174.090000px;}
.y113{bottom:174.630000px;}
.y24{bottom:175.530000px;}
.y98{bottom:183.090000px;}
.yc9{bottom:189.390000px;}
.yec{bottom:190.830000px;}
.y54{bottom:192.630000px;}
.y23{bottom:193.170000px;}
.y7e{bottom:196.230000px;}
.y112{bottom:201.270000px;}
.y53{bottom:210.090000px;}
.y22{bottom:210.630000px;}
.y7d{bottom:213.870000px;}
.y97{bottom:215.310000px;}
.y52{bottom:227.730000px;}
.yeb{bottom:228.090000px;}
.yc8{bottom:235.110000px;}
.y51{bottom:245.370000px;}
.y21{bottom:246.270000px;}
.y7c{bottom:249.510000px;}
.y50{bottom:262.830000px;}
.y20{bottom:263.910000px;}
.y111{bottom:272.010000px;}
.yea{bottom:276.330000px;}
.yc7{bottom:279.930000px;}
.y4f{bottom:280.470000px;}
.y1f{bottom:281.370000px;}
.y7b{bottom:284.970000px;}
.ye9{bottom:293.970000px;}
.y4e{bottom:297.930000px;}
.y110{bottom:298.470000px;}
.y7a{bottom:302.610000px;}
.ye8{bottom:311.610000px;}
.y10f{bottom:316.110000px;}
.y4d{bottom:316.470000px;}
.y1e{bottom:317.010000px;}
.yc6{bottom:324.930000px;}
.y79{bottom:329.250000px;}
.y4c{bottom:334.110000px;}
.y1d{bottom:334.650000px;}
.y10e{bottom:342.750000px;}
.ye7{bottom:346.890000px;}
.yb5{bottom:350.850000px;}
.y4b{bottom:351.750000px;}
.y1c{bottom:352.290000px;}
.y10d{bottom:360.390000px;}
.ye6{bottom:364.350000px;}
.y78{bottom:365.070000px;}
.y4a{bottom:369.210000px;}
.yc5{bottom:369.750000px;}
.yb4{bottom:378.210000px;}
.y49{bottom:386.670000px;}
.y10c{bottom:386.850000px;}
.y1b{bottom:387.750000px;}
.ye5{bottom:391.170000px;}
.y10b{bottom:404.490000px;}
.y48{bottom:405.210000px;}
.y1a{bottom:405.390000px;}
.y77{bottom:410.835000px;}
.yc4{bottom:414.795000px;}
.y47{bottom:422.895000px;}
.y19{bottom:423.075000px;}
.y10a{bottom:431.175000px;}
.yb2{bottom:432.795000px;}
.y76{bottom:438.195000px;}
.ye4{bottom:439.455000px;}
.y18{bottom:440.535000px;}
.yc3{bottom:442.155000px;}
.y109{bottom:448.815000px;}
.y46{bottom:457.995000px;}
.y17{bottom:458.175000px;}
.yb1{bottom:460.155000px;}
.y75{bottom:465.555000px;}
.y108{bottom:475.275000px;}
.y45{bottom:475.635000px;}
.y16{bottom:475.815000px;}
.ye3{bottom:476.355000px;}
.yc2{bottom:486.975000px;}
.yb0{bottom:487.515000px;}
.y96{bottom:488.595000px;}
.y74{bottom:492.915000px;}
.y44{bottom:493.095000px;}
.ye2{bottom:494.715000px;}
.y15{bottom:502.455000px;}
.y95{bottom:503.535000px;}
.yaf{bottom:514.875000px;}
.y107{bottom:519.375000px;}
.y73{bottom:520.095000px;}
.ye1{bottom:522.255000px;}
.y94{bottom:529.455000px;}
.y43{bottom:529.635000px;}
.yc1{bottom:531.975000px;}
.y106{bottom:537.015000px;}
.yac{bottom:542.235000px;}
.y72{bottom:547.455000px;}
.y14{bottom:551.235000px;}
.y93{bottom:555.375000px;}
.y42{bottom:556.095000px;}
.ye0{bottom:557.715000px;}
.yc0{bottom:559.335000px;}
.y105{bottom:563.655000px;}
.yae{bottom:569.595000px;}
.y71{bottom:574.815000px;}
.ydf{bottom:575.355000px;}
.y92{bottom:581.115000px;}
.y104{bottom:581.295000px;}
.y13{bottom:588.315000px;}
.y41{bottom:591.735000px;}
.yde{bottom:592.995000px;}
.y70{bottom:602.175000px;}
.ybf{bottom:604.155000px;}
.y12{bottom:605.955000px;}
.y91{bottom:607.035000px;}
.y103{bottom:607.755000px;}
.y40{bottom:610.095000px;}
.ydd{bottom:610.635000px;}
.yab{bottom:618.195000px;}
.y11{bottom:623.415000px;}
.y102{bottom:625.395000px;}
.ydc{bottom:628.275000px;}
.y6f{bottom:629.535000px;}
.y90{bottom:632.775000px;}
.y3f{bottom:637.635000px;}
.y10{bottom:641.055000px;}
.ybd{bottom:649.155000px;}
.y101{bottom:652.035000px;}
.yaa{bottom:653.865000px;}
.y6e{bottom:656.925000px;}
.yf{bottom:658.725000px;}
.ydb{bottom:663.765000px;}
.ya9{bottom:668.805000px;}
.y3e{bottom:673.125000px;}
.ye{bottom:676.185000px;}
.yba{bottom:676.545000px;}
.y100{bottom:678.525000px;}
.yda{bottom:681.405000px;}
.y6c{bottom:684.285000px;}
.y8f{bottom:684.465000px;}
.y3d{bottom:690.765000px;}
.ya8{bottom:696.165000px;}
.yd9{bottom:699.045000px;}
.yd{bottom:703.005000px;}
.yff{bottom:705.165000px;}
.y8e{bottom:710.385000px;}
.y6b{bottom:711.465000px;}
.yd8{bottom:716.505000px;}
.y3c{bottom:717.405000px;}
.ya7{bottom:723.525000px;}
.yfe{bottom:731.805000px;}
.y8d{bottom:736.125000px;}
.y69{bottom:738.825000px;}
.yb9{bottom:742.785000px;}
.yfd{bottom:749.445000px;}
.ya6{bottom:750.885000px;}
.yc{bottom:751.425000px;}
.yd7{bottom:752.145000px;}
.y3b{bottom:753.225000px;}
.y8c{bottom:762.045000px;}
.yd6{bottom:769.785000px;}
.yfc{bottom:775.905000px;}
.ya5{bottom:778.245000px;}
.yb8{bottom:778.425000px;}
.yb{bottom:787.245000px;}
.y68{bottom:787.605000px;}
.y3a{bottom:801.465000px;}
.yfb{bottom:802.545000px;}
.yd5{bottom:804.885000px;}
.y67{bottom:805.245000px;}
.ya4{bottom:805.425000px;}
.y8b{bottom:809.205000px;}
.yb7{bottom:813.885000px;}
.y39{bottom:819.105000px;}
.ya{bottom:823.245000px;}
.yfa{bottom:829.005000px;}
.ya3{bottom:832.785000px;}
.y8a{bottom:833.145000px;}
.y38{bottom:836.745000px;}
.yd4{bottom:840.525000px;}
.y66{bottom:840.705000px;}
.yb6{bottom:846.105000px;}
.y37{bottom:854.205000px;}
.yf9{bottom:855.645000px;}
.yd3{bottom:858.165000px;}
.y65{bottom:859.065000px;}
.y9{bottom:859.245000px;}
.ya2{bottom:860.145000px;}
.y36{bottom:872.745000px;}
.yf8{bottom:873.285000px;}
.yd2{bottom:875.625000px;}
.y64{bottom:877.425000px;}
.y8{bottom:881.025000px;}
.y89{bottom:884.805000px;}
.ya1{bottom:887.505000px;}
.y35{bottom:890.385000px;}
.yd1{bottom:893.265000px;}
.y7{bottom:895.245000px;}
.yf7{bottom:900.150000px;}
.y34{bottom:907.890000px;}
.y88{bottom:910.770000px;}
.yd0{bottom:910.950000px;}
.y63{bottom:914.010000px;}
.ya0{bottom:914.910000px;}
.y6{bottom:917.070000px;}
.y33{bottom:926.430000px;}
.y62{bottom:931.650000px;}
.y87{bottom:936.510000px;}
.y32{bottom:943.890000px;}
.ycf{bottom:946.410000px;}
.yf6{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y61{bottom:958.290000px;}
.y31{bottom:962.430000px;}
.y9f{bottom:963.510000px;}
.yce{bottom:964.050000px;}
.yf5{bottom:975.390000px;}
.y30{bottom:980.070000px;}
.ycd{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.y86{bottom:988.170000px;}
.y60{bottom:993.750000px;}
.y2f{bottom:997.530000px;}
.y9e{bottom:999.150000px;}
.y5f{bottom:1012.110000px;}
.y3{bottom:1012.290000px;}
.yf4{bottom:1012.470000px;}
.y85{bottom:1014.090000px;}
.y2e{bottom:1016.070000px;}
.y9d{bottom:1016.790000px;}
.y5e{bottom:1030.470000px;}
.y2d{bottom:1033.530000px;}
.y9c{bottom:1034.430000px;}
.y84{bottom:1039.830000px;}
.yf3{bottom:1047.930000px;}
.y5d{bottom:1049.010000px;}
.y5c{bottom:1067.370000px;}
.y2c{bottom:1069.890000px;}
.yf2{bottom:1074.930000px;}
.y5b{bottom:1085.910000px;}
.y83{bottom:1087.170000px;}
.y2b{bottom:1087.530000px;}
.y5a{bottom:1103.370000px;}
.y2a{bottom:1105.170000px;}
.yf1{bottom:1112.010000px;}
.y59{bottom:1121.910000px;}
.y82{bottom:1122.630000px;}
.y29{bottom:1122.810000px;}
.yf0{bottom:1138.830000px;}
.y58{bottom:1139.370000px;}
.y28{bottom:1140.270000px;}
.y26{bottom:1194.300000px;}
.h11{height:25.020000px;}
.h13{height:25.056000px;}
.h10{height:25.200000px;}
.h12{height:25.236000px;}
.he{height:26.460000px;}
.hd{height:26.640000px;}
.hf{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.h16{height:44.100000px;}
.h17{height:44.280000px;}
.h18{height:44.316000px;}
.h7{height:50.597578px;}
.h15{height:53.820000px;}
.h5{height:56.084062px;}
.hc{height:59.614102px;}
.h8{height:60.960938px;}
.h9{height:61.423863px;}
.hb{height:62.211094px;}
.h14{height:68.885859px;}
.ha{height:68.956875px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:32.040000px;}
.w17{width:33.120000px;}
.w16{width:33.300000px;}
.wa{width:33.336000px;}
.w14{width:35.100000px;}
.w1f{width:65.880000px;}
.w1d{width:70.560000px;}
.w9{width:72.180000px;}
.w20{width:72.900000px;}
.wf{width:73.440000px;}
.w1c{width:74.196000px;}
.w1b{width:74.700000px;}
.wb{width:77.940000px;}
.w18{width:78.156000px;}
.w1a{width:79.020000px;}
.w1e{width:80.856000px;}
.w15{width:82.260000px;}
.w6{width:95.760000px;}
.w12{width:111.960000px;}
.w13{width:111.996000px;}
.w11{width:118.080000px;}
.w5{width:134.496000px;}
.w10{width:137.556000px;}
.w4{width:205.950000px;}
.w3{width:220.755000px;}
.w7{width:222.195000px;}
.wd{width:227.370000px;}
.w19{width:232.275000px;}
.w8{width:381.855000px;}
.wc{width:454.755000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:1.800000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x26{left:111.275987px;}
.x5{left:122.075987px;}
.xb{left:162.930000px;}
.x2{left:192.449987px;}
.x15{left:205.770000px;}
.x8{left:219.630000px;}
.x12{left:279.435000px;}
.x7{left:290.415000px;}
.x1f{left:301.755000px;}
.x11{left:325.874987px;}
.x1d{left:333.614987px;}
.x16{left:344.055000px;}
.x9{left:355.035000px;}
.x19{left:379.875000px;}
.x20{left:381.495000px;}
.xf{left:446.654987px;}
.xa{left:451.515000px;}
.x21{left:456.915000px;}
.x17{left:462.885000px;}
.x1a{left:496.905000px;}
.x13{left:507.705000px;}
.x22{left:532.005000px;}
.x14{left:540.465000px;}
.xc{left:545.505000px;}
.x18{left:575.745000px;}
.x23{left:603.465000px;}
.x1b{left:609.585000px;}
.xd{left:618.405000px;}
.xe{left:652.470000px;}
.x24{left:685.050000px;}
.x10{left:686.309987px;}
.x1c{left:727.889987px;}
.x25{left:751.650000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.329067pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls15{letter-spacing:-0.086933pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.112533pt;}
.ls5{letter-spacing:0.118187pt;}
.ls8{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.188160pt;}
.ls18{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.342933pt;}
.lsc{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls19{letter-spacing:42.192640pt;}
.ls11{letter-spacing:50.319360pt;}
.ls10{letter-spacing:56.912640pt;}
.ls12{letter-spacing:63.312640pt;}
.ls14{letter-spacing:71.632640pt;}
.ls17{letter-spacing:72.400640pt;}
.wsb{word-spacing:-53.120000pt;}
.wsc{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.ws4{word-spacing:-11.798933pt;}
.ws5{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.654400pt;}
.wse{word-spacing:-11.639040pt;}
.wsd{word-spacing:-11.599467pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:52.828480pt;}
._10{margin-left:-3.009920pt;}
._c{margin-left:-1.921280pt;}
._0{margin-left:-1.030400pt;}
._3{width:0.967468pt;}
._5{width:2.268584pt;}
._9{width:3.195004pt;}
._d{width:4.587541pt;}
._8{width:6.162132pt;}
._6{width:7.171200pt;}
._a{width:8.753599pt;}
._b{width:9.688003pt;}
._4{width:10.713600pt;}
._7{width:13.280000pt;}
._e{width:15.096747pt;}
._12{width:16.202877pt;}
._f{width:19.016960pt;}
._2{width:35.278922pt;}
._1{width:36.293547pt;}
._11{width:69.808212pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:6.880000pt;}
.y6a{bottom:7.040000pt;}
.ybe{bottom:7.066667pt;}
.yb3{bottom:7.080000pt;}
.ybb{bottom:22.560000pt;}
.ybc{bottom:22.720000pt;}
.yad{bottom:31.200000pt;}
.y2{bottom:65.120000pt;}
.y27{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y9b{bottom:99.840000pt;}
.y81{bottom:103.680000pt;}
.ycc{bottom:113.120000pt;}
.yef{bottom:114.400000pt;}
.y9a{bottom:115.360000pt;}
.y80{bottom:119.200000pt;}
.y57{bottom:123.520000pt;}
.ycb{bottom:128.800000pt;}
.yee{bottom:130.080000pt;}
.y99{bottom:131.040000pt;}
.y56{bottom:139.200000pt;}
.y25{bottom:140.320000pt;}
.y7f{bottom:142.906667pt;}
.yca{bottom:144.506667pt;}
.yed{bottom:145.786667pt;}
.y55{bottom:154.746667pt;}
.y113{bottom:155.226667pt;}
.y24{bottom:156.026667pt;}
.y98{bottom:162.746667pt;}
.yc9{bottom:168.346667pt;}
.yec{bottom:169.626667pt;}
.y54{bottom:171.226667pt;}
.y23{bottom:171.706667pt;}
.y7e{bottom:174.426667pt;}
.y112{bottom:178.906667pt;}
.y53{bottom:186.746667pt;}
.y22{bottom:187.226667pt;}
.y7d{bottom:190.106667pt;}
.y97{bottom:191.386667pt;}
.y52{bottom:202.426667pt;}
.yeb{bottom:202.746667pt;}
.yc8{bottom:208.986667pt;}
.y51{bottom:218.106667pt;}
.y21{bottom:218.906667pt;}
.y7c{bottom:221.786667pt;}
.y50{bottom:233.626667pt;}
.y20{bottom:234.586667pt;}
.y111{bottom:241.786667pt;}
.yea{bottom:245.626667pt;}
.yc7{bottom:248.826667pt;}
.y4f{bottom:249.306667pt;}
.y1f{bottom:250.106667pt;}
.y7b{bottom:253.306667pt;}
.ye9{bottom:261.306667pt;}
.y4e{bottom:264.826667pt;}
.y110{bottom:265.306667pt;}
.y7a{bottom:268.986667pt;}
.ye8{bottom:276.986667pt;}
.y10f{bottom:280.986667pt;}
.y4d{bottom:281.306667pt;}
.y1e{bottom:281.786667pt;}
.yc6{bottom:288.826667pt;}
.y79{bottom:292.666667pt;}
.y4c{bottom:296.986667pt;}
.y1d{bottom:297.466667pt;}
.y10e{bottom:304.666667pt;}
.ye7{bottom:308.346667pt;}
.yb5{bottom:311.866667pt;}
.y4b{bottom:312.666667pt;}
.y1c{bottom:313.146667pt;}
.y10d{bottom:320.346667pt;}
.ye6{bottom:323.866667pt;}
.y78{bottom:324.506667pt;}
.y4a{bottom:328.186667pt;}
.yc5{bottom:328.666667pt;}
.yb4{bottom:336.186667pt;}
.y49{bottom:343.706667pt;}
.y10c{bottom:343.866667pt;}
.y1b{bottom:344.666667pt;}
.ye5{bottom:347.706667pt;}
.y10b{bottom:359.546667pt;}
.y48{bottom:360.186667pt;}
.y1a{bottom:360.346667pt;}
.y77{bottom:365.186667pt;}
.yc4{bottom:368.706667pt;}
.y47{bottom:375.906667pt;}
.y19{bottom:376.066667pt;}
.y10a{bottom:383.266667pt;}
.yb2{bottom:384.706667pt;}
.y76{bottom:389.506667pt;}
.ye4{bottom:390.626667pt;}
.y18{bottom:391.586667pt;}
.yc3{bottom:393.026667pt;}
.y109{bottom:398.946667pt;}
.y46{bottom:407.106667pt;}
.y17{bottom:407.266667pt;}
.yb1{bottom:409.026667pt;}
.y75{bottom:413.826667pt;}
.y108{bottom:422.466667pt;}
.y45{bottom:422.786667pt;}
.y16{bottom:422.946667pt;}
.ye3{bottom:423.426667pt;}
.yc2{bottom:432.866667pt;}
.yb0{bottom:433.346667pt;}
.y96{bottom:434.306667pt;}
.y74{bottom:438.146667pt;}
.y44{bottom:438.306667pt;}
.ye2{bottom:439.746667pt;}
.y15{bottom:446.626667pt;}
.y95{bottom:447.586667pt;}
.yaf{bottom:457.666667pt;}
.y107{bottom:461.666667pt;}
.y73{bottom:462.306667pt;}
.ye1{bottom:464.226667pt;}
.y94{bottom:470.626667pt;}
.y43{bottom:470.786667pt;}
.yc1{bottom:472.866667pt;}
.y106{bottom:477.346667pt;}
.yac{bottom:481.986667pt;}
.y72{bottom:486.626667pt;}
.y14{bottom:489.986667pt;}
.y93{bottom:493.666667pt;}
.y42{bottom:494.306667pt;}
.ye0{bottom:495.746667pt;}
.yc0{bottom:497.186667pt;}
.y105{bottom:501.026667pt;}
.yae{bottom:506.306667pt;}
.y71{bottom:510.946667pt;}
.ydf{bottom:511.426667pt;}
.y92{bottom:516.546667pt;}
.y104{bottom:516.706667pt;}
.y13{bottom:522.946667pt;}
.y41{bottom:525.986667pt;}
.yde{bottom:527.106667pt;}
.y70{bottom:535.266667pt;}
.ybf{bottom:537.026667pt;}
.y12{bottom:538.626667pt;}
.y91{bottom:539.586667pt;}
.y103{bottom:540.226667pt;}
.y40{bottom:542.306667pt;}
.ydd{bottom:542.786667pt;}
.yab{bottom:549.506667pt;}
.y11{bottom:554.146667pt;}
.y102{bottom:555.906667pt;}
.ydc{bottom:558.466667pt;}
.y6f{bottom:559.586667pt;}
.y90{bottom:562.466667pt;}
.y3f{bottom:566.786667pt;}
.y10{bottom:569.826667pt;}
.ybd{bottom:577.026667pt;}
.y101{bottom:579.586667pt;}
.yaa{bottom:581.213333pt;}
.y6e{bottom:583.933333pt;}
.yf{bottom:585.533333pt;}
.ydb{bottom:590.013333pt;}
.ya9{bottom:594.493333pt;}
.y3e{bottom:598.333333pt;}
.ye{bottom:601.053333pt;}
.yba{bottom:601.373333pt;}
.y100{bottom:603.133333pt;}
.yda{bottom:605.693333pt;}
.y6c{bottom:608.253333pt;}
.y8f{bottom:608.413333pt;}
.y3d{bottom:614.013333pt;}
.ya8{bottom:618.813333pt;}
.yd9{bottom:621.373333pt;}
.yd{bottom:624.893333pt;}
.yff{bottom:626.813333pt;}
.y8e{bottom:631.453333pt;}
.y6b{bottom:632.413333pt;}
.yd8{bottom:636.893333pt;}
.y3c{bottom:637.693333pt;}
.ya7{bottom:643.133333pt;}
.yfe{bottom:650.493333pt;}
.y8d{bottom:654.333333pt;}
.y69{bottom:656.733333pt;}
.yb9{bottom:660.253333pt;}
.yfd{bottom:666.173333pt;}
.ya6{bottom:667.453333pt;}
.yc{bottom:667.933333pt;}
.yd7{bottom:668.573333pt;}
.y3b{bottom:669.533333pt;}
.y8c{bottom:677.373333pt;}
.yd6{bottom:684.253333pt;}
.yfc{bottom:689.693333pt;}
.ya5{bottom:691.773333pt;}
.yb8{bottom:691.933333pt;}
.yb{bottom:699.773333pt;}
.y68{bottom:700.093333pt;}
.y3a{bottom:712.413333pt;}
.yfb{bottom:713.373333pt;}
.yd5{bottom:715.453333pt;}
.y67{bottom:715.773333pt;}
.ya4{bottom:715.933333pt;}
.y8b{bottom:719.293333pt;}
.yb7{bottom:723.453333pt;}
.y39{bottom:728.093333pt;}
.ya{bottom:731.773333pt;}
.yfa{bottom:736.893333pt;}
.ya3{bottom:740.253333pt;}
.y8a{bottom:740.573333pt;}
.y38{bottom:743.773333pt;}
.yd4{bottom:747.133333pt;}
.y66{bottom:747.293333pt;}
.yb6{bottom:752.093333pt;}
.y37{bottom:759.293333pt;}
.yf9{bottom:760.573333pt;}
.yd3{bottom:762.813333pt;}
.y65{bottom:763.613333pt;}
.y9{bottom:763.773333pt;}
.ya2{bottom:764.573333pt;}
.y36{bottom:775.773333pt;}
.yf8{bottom:776.253333pt;}
.yd2{bottom:778.333333pt;}
.y64{bottom:779.933333pt;}
.y8{bottom:783.133333pt;}
.y89{bottom:786.493333pt;}
.ya1{bottom:788.893333pt;}
.y35{bottom:791.453333pt;}
.yd1{bottom:794.013333pt;}
.y7{bottom:795.773333pt;}
.yf7{bottom:800.133333pt;}
.y34{bottom:807.013333pt;}
.y88{bottom:809.573333pt;}
.yd0{bottom:809.733333pt;}
.y63{bottom:812.453333pt;}
.ya0{bottom:813.253333pt;}
.y6{bottom:815.173333pt;}
.y33{bottom:823.493333pt;}
.y62{bottom:828.133333pt;}
.y87{bottom:832.453333pt;}
.y32{bottom:839.013333pt;}
.ycf{bottom:841.253333pt;}
.yf6{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y61{bottom:851.813333pt;}
.y31{bottom:855.493333pt;}
.y9f{bottom:856.453333pt;}
.yce{bottom:856.933333pt;}
.yf5{bottom:867.013333pt;}
.y30{bottom:871.173333pt;}
.ycd{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.y86{bottom:878.373333pt;}
.y60{bottom:883.333333pt;}
.y2f{bottom:886.693333pt;}
.y9e{bottom:888.133333pt;}
.y5f{bottom:899.653333pt;}
.y3{bottom:899.813333pt;}
.yf4{bottom:899.973333pt;}
.y85{bottom:901.413333pt;}
.y2e{bottom:903.173333pt;}
.y9d{bottom:903.813333pt;}
.y5e{bottom:915.973333pt;}
.y2d{bottom:918.693333pt;}
.y9c{bottom:919.493333pt;}
.y84{bottom:924.293333pt;}
.yf3{bottom:931.493333pt;}
.y5d{bottom:932.453333pt;}
.y5c{bottom:948.773333pt;}
.y2c{bottom:951.013333pt;}
.yf2{bottom:955.493333pt;}
.y5b{bottom:965.253333pt;}
.y83{bottom:966.373333pt;}
.y2b{bottom:966.693333pt;}
.y5a{bottom:980.773333pt;}
.y2a{bottom:982.373333pt;}
.yf1{bottom:988.453333pt;}
.y59{bottom:997.253333pt;}
.y82{bottom:997.893333pt;}
.y29{bottom:998.053333pt;}
.yf0{bottom:1012.293333pt;}
.y58{bottom:1012.773333pt;}
.y28{bottom:1013.573333pt;}
.y26{bottom:1061.600000pt;}
.h11{height:22.240000pt;}
.h13{height:22.272000pt;}
.h10{height:22.400000pt;}
.h12{height:22.432000pt;}
.he{height:23.520000pt;}
.hd{height:23.680000pt;}
.hf{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.h16{height:39.200000pt;}
.h17{height:39.360000pt;}
.h18{height:39.392000pt;}
.h7{height:44.975625pt;}
.h15{height:47.840000pt;}
.h5{height:49.852500pt;}
.hc{height:52.990313pt;}
.h8{height:54.187500pt;}
.h9{height:54.598989pt;}
.hb{height:55.298750pt;}
.h14{height:61.231875pt;}
.ha{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:28.480000pt;}
.w17{width:29.440000pt;}
.w16{width:29.600000pt;}
.wa{width:29.632000pt;}
.w14{width:31.200000pt;}
.w1f{width:58.560000pt;}
.w1d{width:62.720000pt;}
.w9{width:64.160000pt;}
.w20{width:64.800000pt;}
.wf{width:65.280000pt;}
.w1c{width:65.952000pt;}
.w1b{width:66.400000pt;}
.wb{width:69.280000pt;}
.w18{width:69.472000pt;}
.w1a{width:70.240000pt;}
.w1e{width:71.872000pt;}
.w15{width:73.120000pt;}
.w6{width:85.120000pt;}
.w12{width:99.520000pt;}
.w13{width:99.552000pt;}
.w11{width:104.960000pt;}
.w5{width:119.552000pt;}
.w10{width:122.272000pt;}
.w4{width:183.066667pt;}
.w3{width:196.226667pt;}
.w7{width:197.506667pt;}
.wd{width:202.106667pt;}
.w19{width:206.466667pt;}
.w8{width:339.426667pt;}
.wc{width:404.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.600000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x26{left:98.911988pt;}
.x5{left:108.511988pt;}
.xb{left:144.826667pt;}
.x2{left:171.066655pt;}
.x15{left:182.906667pt;}
.x8{left:195.226667pt;}
.x12{left:248.386667pt;}
.x7{left:258.146667pt;}
.x1f{left:268.226667pt;}
.x11{left:289.666655pt;}
.x1d{left:296.546655pt;}
.x16{left:305.826667pt;}
.x9{left:315.586667pt;}
.x19{left:337.666667pt;}
.x20{left:339.106667pt;}
.xf{left:397.026655pt;}
.xa{left:401.346667pt;}
.x21{left:406.146667pt;}
.x17{left:411.453333pt;}
.x1a{left:441.693333pt;}
.x13{left:451.293333pt;}
.x22{left:472.893333pt;}
.x14{left:480.413333pt;}
.xc{left:484.893333pt;}
.x18{left:511.773333pt;}
.x23{left:536.413333pt;}
.x1b{left:541.853333pt;}
.xd{left:549.693333pt;}
.xe{left:579.973333pt;}
.x24{left:608.933333pt;}
.x10{left:610.053322pt;}
.x1c{left:647.013322pt;}
.x25{left:668.133333pt;}
.x3{left:711.493322pt;}
}




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