
    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_1997f52b26a99a60cdffe783.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_3b5cefec2369d4c8aa8049af.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_7361bf664dd5ad0d0faa8d01.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4bcf653fa8408337b087f624.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_e0054ba7a70d0c63be56e54a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8aff67ec277ecb54c16c4da0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9445e1f4ea2cb2a5b4e4784a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2b951edd1e893141049b0586.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.513600px;}
.ls11{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.038880px;}
.ls23{letter-spacing:-0.037800px;}
.ls24{letter-spacing:-0.011160px;}
.lsa{letter-spacing:-0.010200px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.051840px;}
.ls18{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.098400px;}
.ls17{letter-spacing:0.103200px;}
.ls15{letter-spacing:0.114120px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.173520px;}
.ls1f{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.180480px;}
.ls20{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.534600px;}
.ls12{letter-spacing:0.813600px;}
.ls21{letter-spacing:47.726640px;}
.ls1e{letter-spacing:80.846640px;}
.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;}
}
.ws11{word-spacing:-60.120000px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.wsc{word-spacing:-17.712000px;}
.ws9{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.483400px;}
.wse{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.329600px;}
.ws14{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.279680px;}
.ws15{word-spacing:-13.278240px;}
.wsf{word-spacing:-13.275360px;}
.ws12{word-spacing:-13.246560px;}
.ws4{word-spacing:-13.226400px;}
.ws18{word-spacing:-13.215240px;}
.ws17{word-spacing:-13.188600px;}
.ws16{word-spacing:-13.187520px;}
.ws5{word-spacing:-13.039800px;}
.ws7{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsd{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._a{margin-left:-3.426600px;}
._6{margin-left:-2.171934px;}
._5{margin-left:-1.065166px;}
._2{width:1.147080px;}
._3{width:2.832576px;}
._4{width:4.410383px;}
._7{width:5.614056px;}
._8{width:6.884540px;}
._0{width:7.968600px;}
._1{width:9.958200px;}
._b{width:11.062200px;}
._f{width:12.083038px;}
._c{width:14.909760px;}
._9{width:16.512840px;}
._d{width:29.338560px;}
._10{width:92.934240px;}
._e{width:99.378360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:7.830000px;}
.y72{bottom:7.860000px;}
.y5d{bottom:7.920000px;}
.y74{bottom:8.730000px;}
.y71{bottom:8.760000px;}
.y7c{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y80{bottom:80.190000px;}
.y1{bottom:101.640000px;}
.yd0{bottom:125.130000px;}
.ya7{bottom:128.280000px;}
.yf8{bottom:131.970000px;}
.y29{bottom:132.420000px;}
.y7e{bottom:139.710000px;}
.ycf{bottom:142.680000px;}
.ya6{bottom:145.920000px;}
.yf7{bottom:149.520000px;}
.y28{bottom:150.060000px;}
.yce{bottom:160.320000px;}
.ya5{bottom:163.470000px;}
.y7d{bottom:167.070000px;}
.y27{bottom:167.610000px;}
.yf6{bottom:176.070000px;}
.ycd{bottom:177.870000px;}
.ya4{bottom:181.110000px;}
.y26{bottom:185.160000px;}
.y7b{bottom:194.430000px;}
.ycc{bottom:195.510000px;}
.ya3{bottom:198.660000px;}
.y57{bottom:200.100000px;}
.yf5{bottom:202.710000px;}
.y25{bottom:202.800000px;}
.ycb{bottom:213.060000px;}
.ya2{bottom:216.210000px;}
.yf4{bottom:220.260000px;}
.y24{bottom:220.350000px;}
.yca{bottom:230.610000px;}
.ya1{bottom:234.660000px;}
.y56{bottom:235.650000px;}
.y23{bottom:237.990000px;}
.y7a{bottom:239.340000px;}
.yf3{bottom:246.900000px;}
.ya0{bottom:252.210000px;}
.y22{bottom:255.540000px;}
.yf2{bottom:264.450000px;}
.yc9{bottom:266.250000px;}
.y79{bottom:266.700000px;}
.y9f{bottom:270.660000px;}
.y55{bottom:271.200000px;}
.y21{bottom:273.090000px;}
.yc8{bottom:283.800000px;}
.y54{bottom:288.840000px;}
.y20{bottom:290.730000px;}
.yf1{bottom:291.000000px;}
.y113{bottom:292.800000px;}
.y9e{bottom:297.210000px;}
.yc7{bottom:301.440000px;}
.y53{bottom:306.390000px;}
.y1f{bottom:308.280000px;}
.yf0{bottom:308.640000px;}
.y112{bottom:310.440000px;}
.y78{bottom:315.390000px;}
.y52{bottom:323.940000px;}
.y1e{bottom:326.370000px;}
.y9d{bottom:332.850000px;}
.yef{bottom:335.190000px;}
.yc6{bottom:336.990000px;}
.y1d{bottom:347.070000px;}
.y9c{bottom:350.400000px;}
.y51{bottom:350.580000px;}
.y77{bottom:350.940000px;}
.yee{bottom:352.830000px;}
.yc5{bottom:354.540000px;}
.y1c{bottom:367.770000px;}
.y9b{bottom:368.040000px;}
.yc4{bottom:372.180000px;}
.yed{bottom:379.650000px;}
.y111{bottom:381.180000px;}
.y76{bottom:383.880000px;}
.y9a{bottom:385.590000px;}
.y50{bottom:386.130000px;}
.y1b{bottom:388.020000px;}
.yc3{bottom:389.730000px;}
.y110{bottom:398.730000px;}
.y99{bottom:403.140000px;}
.yc2{bottom:407.370000px;}
.y75{bottom:412.050000px;}
.y4f{bottom:412.770000px;}
.y1a{bottom:414.840000px;}
.y98{bottom:420.780000px;}
.yc1{bottom:424.920000px;}
.y10f{bottom:425.370000px;}
.yec{bottom:427.980000px;}
.y97{bottom:438.330000px;}
.y73{bottom:440.220000px;}
.yc0{bottom:442.470000px;}
.y10e{bottom:442.920000px;}
.yeb{bottom:445.530000px;}
.y4e{bottom:448.320000px;}
.y96{bottom:455.880000px;}
.ybf{bottom:460.110000px;}
.yea{bottom:463.170000px;}
.y19{bottom:463.440000px;}
.y4d{bottom:465.870000px;}
.y70{bottom:468.390000px;}
.y10d{bottom:469.470000px;}
.y95{bottom:473.550000px;}
.ybe{bottom:477.690000px;}
.y4c{bottom:483.540000px;}
.y10c{bottom:487.140000px;}
.ye9{bottom:490.110000px;}
.y94{bottom:491.100000px;}
.ybd{bottom:495.330000px;}
.y6f{bottom:496.590000px;}
.y18{bottom:500.550000px;}
.y4b{bottom:501.090000px;}
.y10b{bottom:504.690000px;}
.y93{bottom:508.740000px;}
.ybc{bottom:512.880000px;}
.y17{bottom:518.100000px;}
.y4a{bottom:518.730000px;}
.y10a{bottom:522.330000px;}
.y92{bottom:526.290000px;}
.ye8{bottom:527.100000px;}
.y16{bottom:535.740000px;}
.y49{bottom:536.280000px;}
.ybb{bottom:539.430000px;}
.y109{bottom:539.880000px;}
.y91{bottom:543.840000px;}
.y6e{bottom:545.280000px;}
.y15{bottom:553.290000px;}
.y48{bottom:553.830000px;}
.ye7{bottom:554.010000px;}
.y90{bottom:561.480000px;}
.y108{bottom:566.430000px;}
.y6d{bottom:569.310000px;}
.y14{bottom:570.840000px;}
.y47{bottom:571.470000px;}
.yba{bottom:575.070000px;}
.y8f{bottom:579.030000px;}
.y107{bottom:584.070000px;}
.y13{bottom:588.480000px;}
.y46{bottom:589.020000px;}
.ye6{bottom:591.000000px;}
.yb9{bottom:592.620000px;}
.y6c{bottom:596.580000px;}
.y106{bottom:601.620000px;}
.y8e{bottom:605.670000px;}
.y12{bottom:606.030000px;}
.y45{bottom:606.660000px;}
.ye5{bottom:608.640000px;}
.yb8{bottom:610.260000px;}
.y11{bottom:623.670000px;}
.y6b{bottom:623.940000px;}
.y44{bottom:624.210000px;}
.ye4{bottom:626.190000px;}
.y105{bottom:628.260000px;}
.y10{bottom:641.220000px;}
.yb7{bottom:645.810000px;}
.y43{bottom:650.760000px;}
.y6a{bottom:651.300000px;}
.ye3{bottom:653.100000px;}
.yf{bottom:658.770000px;}
.yb6{bottom:663.360000px;}
.ye{bottom:676.410000px;}
.y69{bottom:678.570000px;}
.yb5{bottom:681.000000px;}
.y42{bottom:686.670000px;}
.y104{bottom:690.000000px;}
.y8d{bottom:693.960000px;}
.yb4{bottom:698.550000px;}
.ye2{bottom:701.340000px;}
.yd{bottom:703.320000px;}
.y68{bottom:705.930000px;}
.y103{bottom:707.550000px;}
.y8c{bottom:711.600000px;}
.ye1{bottom:718.980000px;}
.yb3{bottom:725.190000px;}
.y67{bottom:733.290000px;}
.y102{bottom:734.190000px;}
.y41{bottom:735.000000px;}
.ye0{bottom:736.530000px;}
.y8b{bottom:738.150000px;}
.yc{bottom:750.030000px;}
.y101{bottom:751.740000px;}
.y40{bottom:752.550000px;}
.ydf{bottom:754.170000px;}
.y66{bottom:760.650000px;}
.yb2{bottom:760.740000px;}
.y3f{bottom:770.190000px;}
.yde{bottom:771.720000px;}
.y8a{bottom:774.060000px;}
.yb1{bottom:778.290000px;}
.yb{bottom:785.850000px;}
.y3e{bottom:787.740000px;}
.y65{bottom:787.920000px;}
.ydd{bottom:789.270000px;}
.yb0{bottom:795.930000px;}
.y3d{bottom:805.290000px;}
.ydc{bottom:806.910000px;}
.yaf{bottom:813.480000px;}
.y64{bottom:815.280000px;}
.y89{bottom:819.690000px;}
.ya{bottom:821.850000px;}
.y100{bottom:822.480000px;}
.y3c{bottom:822.930000px;}
.ydb{bottom:824.460000px;}
.yae{bottom:831.030000px;}
.yff{bottom:840.030000px;}
.y3b{bottom:840.480000px;}
.yda{bottom:842.100000px;}
.y63{bottom:842.640000px;}
.yad{bottom:848.670000px;}
.yfe{bottom:857.670000px;}
.y3a{bottom:858.030000px;}
.yd9{bottom:859.650000px;}
.y9{bottom:861.630000px;}
.y88{bottom:864.600000px;}
.yac{bottom:866.220000px;}
.y62{bottom:870.000000px;}
.y39{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.yfd{bottom:884.220000px;}
.yd8{bottom:886.560000px;}
.y87{bottom:891.960000px;}
.yab{bottom:892.860000px;}
.y38{bottom:893.220000px;}
.y61{bottom:897.270000px;}
.y7{bottom:897.630000px;}
.yfc{bottom:901.860000px;}
.y37{bottom:910.860000px;}
.y36{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.yd7{bottom:934.800000px;}
.y86{bottom:940.650000px;}
.y60{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.yd6{bottom:952.440000px;}
.yaa{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y5f{bottom:969.990000px;}
.y85{bottom:976.290000px;}
.ya9{bottom:981.150000px;}
.y34{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yd5{bottom:987.990000px;}
.yfb{bottom:990.150000px;}
.y5e{bottom:997.260000px;}
.ya8{bottom:998.790000px;}
.y33{bottom:999.150000px;}
.y84{bottom:1000.230000px;}
.yfa{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.yd4{bottom:1023.570000px;}
.y5c{bottom:1024.650000px;}
.y83{bottom:1027.620000px;}
.y31{bottom:1034.370000px;}
.yd3{bottom:1041.210000px;}
.y30{bottom:1051.920000px;}
.y5a{bottom:1052.010000px;}
.y7f{bottom:1054.890000px;}
.yd2{bottom:1058.760000px;}
.y2f{bottom:1069.560000px;}
.y82{bottom:1082.250000px;}
.yd1{bottom:1085.670000px;}
.yf9{bottom:1096.110000px;}
.y59{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y81{bottom:1109.610000px;}
.y2d{bottom:1122.750000px;}
.y58{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h14{height:26.580000px;}
.he{height:26.640000px;}
.hf{height:26.670000px;}
.h11{height:27.450000px;}
.h10{height:27.480000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h15{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.ha{height:70.664062px;}
.h4{height:72.985430px;}
.h13{height:98.910000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:41.760000px;}
.w17{width:43.470000px;}
.w9{width:52.380000px;}
.wb{width:52.470000px;}
.wa{width:52.500000px;}
.w16{width:61.410000px;}
.w19{width:73.620000px;}
.w4{width:73.800000px;}
.w5{width:73.830000px;}
.w12{width:81.180000px;}
.w6{width:85.500000px;}
.we{width:86.580000px;}
.w10{width:86.610000px;}
.wf{width:94.950000px;}
.wc{width:97.020000px;}
.w3{width:101.340000px;}
.w11{width:102.330000px;}
.w1e{width:114.030000px;}
.w1a{width:116.010000px;}
.w15{width:116.190000px;}
.wd{width:118.200000px;}
.w1b{width:124.770000px;}
.w13{width:136.740000px;}
.w14{width:148.050000px;}
.w7{width:155.190000px;}
.w8{width:164.790000px;}
.w1c{width:216.540000px;}
.w1d{width:298.020000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.870000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x19{left:75.420000px;}
.x23{left:111.239987px;}
.xb{left:130.950000px;}
.x13{left:159.930000px;}
.x2{left:192.719987px;}
.x21{left:194.250000px;}
.x4{left:203.700000px;}
.x1a{left:212.880000px;}
.x14{left:278.850000px;}
.xd{left:286.950000px;}
.x6{left:305.850000px;}
.x1b{left:361.650000px;}
.x15{left:366.150000px;}
.x7{left:380.370000px;}
.x22{left:411.600000px;}
.xe{left:452.550000px;}
.x8{left:454.890000px;}
.x16{left:461.820000px;}
.x1c{left:478.650000px;}
.xf{left:505.650000px;}
.x9{left:529.440000px;}
.x1d{left:540.780000px;}
.x17{left:549.150000px;}
.x10{left:558.870000px;}
.x1e{left:584.970000px;}
.x11{left:612.060000px;}
.xa{left:615.750000px;}
.x1f{left:627.540000px;}
.x18{left:652.200000px;}
.x20{left:701.880000px;}
.x12{left:709.890000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls23{letter-spacing:-0.033600pt;}
.ls24{letter-spacing:-0.009920pt;}
.lsa{letter-spacing:-0.009067pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.046080pt;}
.ls18{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls17{letter-spacing:0.091733pt;}
.ls15{letter-spacing:0.101440pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.154240pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.160427pt;}
.ls20{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.475200pt;}
.ls12{letter-spacing:0.723200pt;}
.ls21{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws11{word-spacing:-53.440000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws9{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.874133pt;}
.wse{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.848533pt;}
.ws14{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.804160pt;}
.ws15{word-spacing:-11.802880pt;}
.wsf{word-spacing:-11.800320pt;}
.ws12{word-spacing:-11.774720pt;}
.ws4{word-spacing:-11.756800pt;}
.ws18{word-spacing:-11.746880pt;}
.ws17{word-spacing:-11.723200pt;}
.ws16{word-spacing:-11.722240pt;}
.ws5{word-spacing:-11.590933pt;}
.ws7{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsd{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._a{margin-left:-3.045866pt;}
._6{margin-left:-1.930608pt;}
._5{margin-left:-0.946815pt;}
._2{width:1.019627pt;}
._3{width:2.517846pt;}
._4{width:3.920341pt;}
._7{width:4.990272pt;}
._8{width:6.119591pt;}
._0{width:7.083200pt;}
._1{width:8.851733pt;}
._b{width:9.833067pt;}
._f{width:10.740478pt;}
._c{width:13.253120pt;}
._9{width:14.678080pt;}
._d{width:26.078720pt;}
._10{width:82.608213pt;}
._e{width:88.336320pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:6.960000pt;}
.y72{bottom:6.986667pt;}
.y5d{bottom:7.040000pt;}
.y74{bottom:7.760000pt;}
.y71{bottom:7.786667pt;}
.y7c{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y80{bottom:71.280000pt;}
.y1{bottom:90.346667pt;}
.yd0{bottom:111.226667pt;}
.ya7{bottom:114.026667pt;}
.yf8{bottom:117.306667pt;}
.y29{bottom:117.706667pt;}
.y7e{bottom:124.186667pt;}
.ycf{bottom:126.826667pt;}
.ya6{bottom:129.706667pt;}
.yf7{bottom:132.906667pt;}
.y28{bottom:133.386667pt;}
.yce{bottom:142.506667pt;}
.ya5{bottom:145.306667pt;}
.y7d{bottom:148.506667pt;}
.y27{bottom:148.986667pt;}
.yf6{bottom:156.506667pt;}
.ycd{bottom:158.106667pt;}
.ya4{bottom:160.986667pt;}
.y26{bottom:164.586667pt;}
.y7b{bottom:172.826667pt;}
.ycc{bottom:173.786667pt;}
.ya3{bottom:176.586667pt;}
.y57{bottom:177.866667pt;}
.yf5{bottom:180.186667pt;}
.y25{bottom:180.266667pt;}
.ycb{bottom:189.386667pt;}
.ya2{bottom:192.186667pt;}
.yf4{bottom:195.786667pt;}
.y24{bottom:195.866667pt;}
.yca{bottom:204.986667pt;}
.ya1{bottom:208.586667pt;}
.y56{bottom:209.466667pt;}
.y23{bottom:211.546667pt;}
.y7a{bottom:212.746667pt;}
.yf3{bottom:219.466667pt;}
.ya0{bottom:224.186667pt;}
.y22{bottom:227.146667pt;}
.yf2{bottom:235.066667pt;}
.yc9{bottom:236.666667pt;}
.y79{bottom:237.066667pt;}
.y9f{bottom:240.586667pt;}
.y55{bottom:241.066667pt;}
.y21{bottom:242.746667pt;}
.yc8{bottom:252.266667pt;}
.y54{bottom:256.746667pt;}
.y20{bottom:258.426667pt;}
.yf1{bottom:258.666667pt;}
.y113{bottom:260.266667pt;}
.y9e{bottom:264.186667pt;}
.yc7{bottom:267.946667pt;}
.y53{bottom:272.346667pt;}
.y1f{bottom:274.026667pt;}
.yf0{bottom:274.346667pt;}
.y112{bottom:275.946667pt;}
.y78{bottom:280.346667pt;}
.y52{bottom:287.946667pt;}
.y1e{bottom:290.106667pt;}
.y9d{bottom:295.866667pt;}
.yef{bottom:297.946667pt;}
.yc6{bottom:299.546667pt;}
.y1d{bottom:308.506667pt;}
.y9c{bottom:311.466667pt;}
.y51{bottom:311.626667pt;}
.y77{bottom:311.946667pt;}
.yee{bottom:313.626667pt;}
.yc5{bottom:315.146667pt;}
.y1c{bottom:326.906667pt;}
.y9b{bottom:327.146667pt;}
.yc4{bottom:330.826667pt;}
.yed{bottom:337.466667pt;}
.y111{bottom:338.826667pt;}
.y76{bottom:341.226667pt;}
.y9a{bottom:342.746667pt;}
.y50{bottom:343.226667pt;}
.y1b{bottom:344.906667pt;}
.yc3{bottom:346.426667pt;}
.y110{bottom:354.426667pt;}
.y99{bottom:358.346667pt;}
.yc2{bottom:362.106667pt;}
.y75{bottom:366.266667pt;}
.y4f{bottom:366.906667pt;}
.y1a{bottom:368.746667pt;}
.y98{bottom:374.026667pt;}
.yc1{bottom:377.706667pt;}
.y10f{bottom:378.106667pt;}
.yec{bottom:380.426667pt;}
.y97{bottom:389.626667pt;}
.y73{bottom:391.306667pt;}
.yc0{bottom:393.306667pt;}
.y10e{bottom:393.706667pt;}
.yeb{bottom:396.026667pt;}
.y4e{bottom:398.506667pt;}
.y96{bottom:405.226667pt;}
.ybf{bottom:408.986667pt;}
.yea{bottom:411.706667pt;}
.y19{bottom:411.946667pt;}
.y4d{bottom:414.106667pt;}
.y70{bottom:416.346667pt;}
.y10d{bottom:417.306667pt;}
.y95{bottom:420.933333pt;}
.ybe{bottom:424.613333pt;}
.y4c{bottom:429.813333pt;}
.y10c{bottom:433.013333pt;}
.ye9{bottom:435.653333pt;}
.y94{bottom:436.533333pt;}
.ybd{bottom:440.293333pt;}
.y6f{bottom:441.413333pt;}
.y18{bottom:444.933333pt;}
.y4b{bottom:445.413333pt;}
.y10b{bottom:448.613333pt;}
.y93{bottom:452.213333pt;}
.ybc{bottom:455.893333pt;}
.y17{bottom:460.533333pt;}
.y4a{bottom:461.093333pt;}
.y10a{bottom:464.293333pt;}
.y92{bottom:467.813333pt;}
.ye8{bottom:468.533333pt;}
.y16{bottom:476.213333pt;}
.y49{bottom:476.693333pt;}
.ybb{bottom:479.493333pt;}
.y109{bottom:479.893333pt;}
.y91{bottom:483.413333pt;}
.y6e{bottom:484.693333pt;}
.y15{bottom:491.813333pt;}
.y48{bottom:492.293333pt;}
.ye7{bottom:492.453333pt;}
.y90{bottom:499.093333pt;}
.y108{bottom:503.493333pt;}
.y6d{bottom:506.053333pt;}
.y14{bottom:507.413333pt;}
.y47{bottom:507.973333pt;}
.yba{bottom:511.173333pt;}
.y8f{bottom:514.693333pt;}
.y107{bottom:519.173333pt;}
.y13{bottom:523.093333pt;}
.y46{bottom:523.573333pt;}
.ye6{bottom:525.333333pt;}
.yb9{bottom:526.773333pt;}
.y6c{bottom:530.293333pt;}
.y106{bottom:534.773333pt;}
.y8e{bottom:538.373333pt;}
.y12{bottom:538.693333pt;}
.y45{bottom:539.253333pt;}
.ye5{bottom:541.013333pt;}
.yb8{bottom:542.453333pt;}
.y11{bottom:554.373333pt;}
.y6b{bottom:554.613333pt;}
.y44{bottom:554.853333pt;}
.ye4{bottom:556.613333pt;}
.y105{bottom:558.453333pt;}
.y10{bottom:569.973333pt;}
.yb7{bottom:574.053333pt;}
.y43{bottom:578.453333pt;}
.y6a{bottom:578.933333pt;}
.ye3{bottom:580.533333pt;}
.yf{bottom:585.573333pt;}
.yb6{bottom:589.653333pt;}
.ye{bottom:601.253333pt;}
.y69{bottom:603.173333pt;}
.yb5{bottom:605.333333pt;}
.y42{bottom:610.373333pt;}
.y104{bottom:613.333333pt;}
.y8d{bottom:616.853333pt;}
.yb4{bottom:620.933333pt;}
.ye2{bottom:623.413333pt;}
.yd{bottom:625.173333pt;}
.y68{bottom:627.493333pt;}
.y103{bottom:628.933333pt;}
.y8c{bottom:632.533333pt;}
.ye1{bottom:639.093333pt;}
.yb3{bottom:644.613333pt;}
.y67{bottom:651.813333pt;}
.y102{bottom:652.613333pt;}
.y41{bottom:653.333333pt;}
.ye0{bottom:654.693333pt;}
.y8b{bottom:656.133333pt;}
.yc{bottom:666.693333pt;}
.y101{bottom:668.213333pt;}
.y40{bottom:668.933333pt;}
.ydf{bottom:670.373333pt;}
.y66{bottom:676.133333pt;}
.yb2{bottom:676.213333pt;}
.y3f{bottom:684.613333pt;}
.yde{bottom:685.973333pt;}
.y8a{bottom:688.053333pt;}
.yb1{bottom:691.813333pt;}
.yb{bottom:698.533333pt;}
.y3e{bottom:700.213333pt;}
.y65{bottom:700.373333pt;}
.ydd{bottom:701.573333pt;}
.yb0{bottom:707.493333pt;}
.y3d{bottom:715.813333pt;}
.ydc{bottom:717.253333pt;}
.yaf{bottom:723.093333pt;}
.y64{bottom:724.693333pt;}
.y89{bottom:728.613333pt;}
.ya{bottom:730.533333pt;}
.y100{bottom:731.093333pt;}
.y3c{bottom:731.493333pt;}
.ydb{bottom:732.853333pt;}
.yae{bottom:738.693333pt;}
.yff{bottom:746.693333pt;}
.y3b{bottom:747.093333pt;}
.yda{bottom:748.533333pt;}
.y63{bottom:749.013333pt;}
.yad{bottom:754.373333pt;}
.yfe{bottom:762.373333pt;}
.y3a{bottom:762.693333pt;}
.yd9{bottom:764.133333pt;}
.y9{bottom:765.893333pt;}
.y88{bottom:768.533333pt;}
.yac{bottom:769.973333pt;}
.y62{bottom:773.333333pt;}
.y39{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.yfd{bottom:785.973333pt;}
.yd8{bottom:788.053333pt;}
.y87{bottom:792.853333pt;}
.yab{bottom:793.653333pt;}
.y38{bottom:793.973333pt;}
.y61{bottom:797.573333pt;}
.y7{bottom:797.893333pt;}
.yfc{bottom:801.653333pt;}
.y37{bottom:809.653333pt;}
.y36{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.yd7{bottom:830.933333pt;}
.y86{bottom:836.133333pt;}
.y60{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.yd6{bottom:846.613333pt;}
.yaa{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y5f{bottom:862.213333pt;}
.y85{bottom:867.813333pt;}
.ya9{bottom:872.133333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yd5{bottom:878.213333pt;}
.yfb{bottom:880.133333pt;}
.y5e{bottom:886.453333pt;}
.ya8{bottom:887.813333pt;}
.y33{bottom:888.133333pt;}
.y84{bottom:889.093333pt;}
.yfa{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.yd4{bottom:909.840000pt;}
.y5c{bottom:910.800000pt;}
.y83{bottom:913.440000pt;}
.y31{bottom:919.440000pt;}
.yd3{bottom:925.520000pt;}
.y30{bottom:935.040000pt;}
.y5a{bottom:935.120000pt;}
.y7f{bottom:937.680000pt;}
.yd2{bottom:941.120000pt;}
.y2f{bottom:950.720000pt;}
.y82{bottom:962.000000pt;}
.yd1{bottom:965.040000pt;}
.yf9{bottom:974.320000pt;}
.y59{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y81{bottom:986.320000pt;}
.y2d{bottom:998.000000pt;}
.y58{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h14{height:23.626667pt;}
.he{height:23.680000pt;}
.hf{height:23.706667pt;}
.h11{height:24.400000pt;}
.h10{height:24.426667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h15{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.ha{height:62.812500pt;}
.h4{height:64.875937pt;}
.h13{height:87.920000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:37.120000pt;}
.w17{width:38.640000pt;}
.w9{width:46.560000pt;}
.wb{width:46.640000pt;}
.wa{width:46.666667pt;}
.w16{width:54.586667pt;}
.w19{width:65.440000pt;}
.w4{width:65.600000pt;}
.w5{width:65.626667pt;}
.w12{width:72.160000pt;}
.w6{width:76.000000pt;}
.we{width:76.960000pt;}
.w10{width:76.986667pt;}
.wf{width:84.400000pt;}
.wc{width:86.240000pt;}
.w3{width:90.080000pt;}
.w11{width:90.960000pt;}
.w1e{width:101.360000pt;}
.w1a{width:103.120000pt;}
.w15{width:103.280000pt;}
.wd{width:105.066667pt;}
.w1b{width:110.906667pt;}
.w13{width:121.546667pt;}
.w14{width:131.600000pt;}
.w7{width:137.946667pt;}
.w8{width:146.480000pt;}
.w1c{width:192.480000pt;}
.w1d{width:264.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:3.440000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x19{left:67.040000pt;}
.x23{left:98.879988pt;}
.xb{left:116.400000pt;}
.x13{left:142.160000pt;}
.x2{left:171.306655pt;}
.x21{left:172.666667pt;}
.x4{left:181.066667pt;}
.x1a{left:189.226667pt;}
.x14{left:247.866667pt;}
.xd{left:255.066667pt;}
.x6{left:271.866667pt;}
.x1b{left:321.466667pt;}
.x15{left:325.466667pt;}
.x7{left:338.106667pt;}
.x22{left:365.866667pt;}
.xe{left:402.266667pt;}
.x8{left:404.346667pt;}
.x16{left:410.506667pt;}
.x1c{left:425.466667pt;}
.xf{left:449.466667pt;}
.x9{left:470.613333pt;}
.x1d{left:480.693333pt;}
.x17{left:488.133333pt;}
.x10{left:496.773333pt;}
.x1e{left:519.973333pt;}
.x11{left:544.053333pt;}
.xa{left:547.333333pt;}
.x1f{left:557.813333pt;}
.x18{left:579.733333pt;}
.x20{left:623.893333pt;}
.x12{left:631.013333pt;}
.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; }
  