
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_fce36da12598adaea5d64a6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9b29d98b04412159f9232be1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_36bc4f0c8d0a360e22261246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cda8a86ff33114050fffb8f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d514c640e3e355fbf79aa44d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_16853843c7debd0426a17082.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_34aea29ea9125206ee952946.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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:ffb;src:url('chunks/assets/font_5388429c8f50f0aa1975baf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_df4d7a2d007c6a6a8b569340.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919434;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:ffd;src:url('chunks/assets/font_a60af97e77caf99327b856b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_216d6640edb3fd1257af68c3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;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);}
.v3{vertical-align:-76.320000px;}
.v4{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls1f{letter-spacing:-2.052000px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.648000px;}
.ls17{letter-spacing:2.880000px;}
.lsb{letter-spacing:5.189760px;}
.ls23{letter-spacing:6.785280px;}
.ls1b{letter-spacing:7.200000px;}
.ls19{letter-spacing:7.920000px;}
.ls1e{letter-spacing:10.080000px;}
.ls1c{letter-spacing:12.240000px;}
.ls1d{letter-spacing:12.360000px;}
.ls25{letter-spacing:15.120000px;}
.ls4{letter-spacing:20.340000px;}
.ls21{letter-spacing:39.905280px;}
.ls20{letter-spacing:100.440000px;}
.ls0{letter-spacing:197.429760px;}
.ls5{letter-spacing:198.900000px;}
.ls24{letter-spacing:199.440000px;}
.ls15{letter-spacing:200.340000px;}
.ls1a{letter-spacing:216.000000px;}
.ls16{letter-spacing:398.856000px;}
.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;}
}
.wsd{word-spacing:-22.500000px;}
.ws4{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.145400px;}
.ws5{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.948000px;}
.ws7{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.wsf{word-spacing:-14.508000px;}
.wsa{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.248000px;}
.ws3{word-spacing:-12.168000px;}
.ws9{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._1b{margin-left:-5.163840px;}
._14{margin-left:-3.803040px;}
._f{margin-left:-2.728800px;}
._2{margin-left:-1.722240px;}
._1{width:1.022400px;}
._5{width:2.657160px;}
._6{width:3.776520px;}
._a{width:5.159520px;}
._8{width:6.731760px;}
._7{width:7.759440px;}
._4{width:9.112800px;}
._3{width:10.225920px;}
._19{width:11.454720px;}
._15{width:12.611520px;}
._16{width:13.883040px;}
._9{width:15.066000px;}
._10{width:17.172000px;}
._12{width:18.760320px;}
._13{width:20.347680px;}
._1f{width:21.528000px;}
._18{width:23.024160px;}
._17{width:24.415200px;}
._b{width:26.028000px;}
._1c{width:27.290880px;}
._d{width:28.646160px;}
._c{width:29.997840px;}
._e{width:31.859280px;}
._1a{width:33.784560px;}
._11{width:35.313840px;}
._1e{width:36.490320px;}
._24{width:37.640160px;}
._23{width:44.115840px;}
._22{width:50.342400px;}
._20{width:68.094720px;}
._21{width:69.684480px;}
._0{width:152.778240px;}
._26{width:195.840000px;}
._25{width:847.692960px;}
._1d{width:948.545760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y1c{bottom:1.260000px;}
.y23{bottom:1.440000px;}
.y98{bottom:2.160000px;}
.y2b{bottom:2.880000px;}
.y4a{bottom:3.060000px;}
.y95{bottom:3.240000px;}
.y2f{bottom:4.680000px;}
.y18{bottom:4.860000px;}
.y1e{bottom:7.200000px;}
.y7{bottom:8.100000px;}
.y21{bottom:9.180000px;}
.y1a{bottom:9.720000px;}
.y46{bottom:9.900000px;}
.y38{bottom:12.060000px;}
.y32{bottom:17.100000px;}
.y2a{bottom:18.360000px;}
.y49{bottom:18.540000px;}
.y97{bottom:22.500000px;}
.y3e{bottom:23.400000px;}
.y6{bottom:23.610000px;}
.y94{bottom:23.760000px;}
.y45{bottom:25.380000px;}
.y37{bottom:27.540000px;}
.y17{bottom:30.780000px;}
.y29{bottom:34.020000px;}
.y5{bottom:37.110000px;}
.y44{bottom:41.040000px;}
.y31{bottom:43.020000px;}
.y4{bottom:45.210000px;}
.y3d{bottom:49.140000px;}
.y28{bottom:49.500000px;}
.y4f{bottom:55.080000px;}
.yb{bottom:55.440000px;}
.y7f{bottom:55.620000px;}
.y16{bottom:56.520000px;}
.y36{bottom:58.500000px;}
.y2{bottom:59.970000px;}
.y27{bottom:64.980000px;}
.y3{bottom:65.910000px;}
.ya{bottom:68.940000px;}
.y43{bottom:72.000000px;}
.y35{bottom:74.160000px;}
.y26{bottom:80.460000px;}
.y15{bottom:82.440000px;}
.y42{bottom:87.480000px;}
.y34{bottom:89.640000px;}
.y7e{bottom:95.760000px;}
.y25{bottom:96.120000px;}
.ye9{bottom:99.900000px;}
.y41{bottom:103.140000px;}
.y13{bottom:103.680000px;}
.y92{bottom:105.480000px;}
.ye8{bottom:110.160000px;}
.y7d{bottom:114.660000px;}
.y40{bottom:118.620000px;}
.y12{bottom:122.760000px;}
.y91{bottom:124.380000px;}
.ye7{bottom:127.440000px;}
.y7c{bottom:133.560000px;}
.y11{bottom:141.660000px;}
.y90{bottom:143.280000px;}
.ye6{bottom:144.720000px;}
.y7b{bottom:152.670000px;}
.y10{bottom:160.770000px;}
.ye5{bottom:161.850000px;}
.y8f{bottom:162.390000px;}
.y93{bottom:171.210000px;}
.y7a{bottom:171.570000px;}
.ye4{bottom:179.130000px;}
.yf{bottom:179.670000px;}
.y8e{bottom:181.290000px;}
.y79{bottom:190.650000px;}
.ye3{bottom:196.410000px;}
.ye{bottom:198.570000px;}
.y8d{bottom:200.370000px;}
.y78{bottom:209.550000px;}
.ye2{bottom:213.690000px;}
.y48{bottom:213.870000px;}
.y8c{bottom:219.270000px;}
.y77{bottom:228.450000px;}
.ye1{bottom:230.970000px;}
.y8b{bottom:238.170000px;}
.ye0{bottom:248.250000px;}
.y8a{bottom:257.250000px;}
.y47{bottom:260.490000px;}
.y3f{bottom:264.450000px;}
.ydf{bottom:265.350000px;}
.y76{bottom:275.970000px;}
.y89{bottom:276.150000px;}
.yde{bottom:283.170000px;}
.y75{bottom:291.270000px;}
.y88{bottom:295.230000px;}
.ydd{bottom:302.070000px;}
.y87{bottom:314.130000px;}
.ydc{bottom:320.970000px;}
.y86{bottom:333.030000px;}
.ydb{bottom:340.050000px;}
.y85{bottom:352.110000px;}
.yda{bottom:358.950000px;}
.y84{bottom:371.010000px;}
.yd9{bottom:378.030000px;}
.y83{bottom:390.090000px;}
.yd8{bottom:396.930000px;}
.y3c{bottom:402.735000px;}
.y82{bottom:409.035000px;}
.yd7{bottom:415.875000px;}
.y81{bottom:428.115000px;}
.yd6{bottom:434.955000px;}
.y80{bottom:447.015000px;}
.yd5{bottom:453.855000px;}
.y74{bottom:465.915000px;}
.yd4{bottom:472.935000px;}
.y73{bottom:484.995000px;}
.y3b{bottom:491.475000px;}
.yd3{bottom:491.835000px;}
.y72{bottom:503.895000px;}
.y3a{bottom:510.735000px;}
.y71{bottom:522.975000px;}
.yd2{bottom:529.815000px;}
.y39{bottom:541.695000px;}
.y70{bottom:541.875000px;}
.y33{bottom:545.295000px;}
.yd1{bottom:548.715000px;}
.y6f{bottom:560.775000px;}
.yd0{bottom:567.795000px;}
.y6e{bottom:579.855000px;}
.ycf{bottom:586.695000px;}
.y6d{bottom:598.755000px;}
.yce{bottom:605.775000px;}
.y6c{bottom:617.835000px;}
.ycd{bottom:624.675000px;}
.y6b{bottom:636.735000px;}
.ycc{bottom:643.575000px;}
.y6a{bottom:655.665000px;}
.y30{bottom:656.565000px;}
.ycb{bottom:662.685000px;}
.y69{bottom:674.745000px;}
.yca{bottom:681.585000px;}
.yb0{bottom:685.005000px;}
.y68{bottom:693.645000px;}
.yc9{bottom:700.665000px;}
.yaf{bottom:704.085000px;}
.y67{bottom:712.725000px;}
.yc8{bottom:719.565000px;}
.yae{bottom:722.985000px;}
.y66{bottom:731.625000px;}
.y2e{bottom:732.885000px;}
.yc7{bottom:738.465000px;}
.yad{bottom:742.065000px;}
.y65{bottom:750.525000px;}
.y2d{bottom:752.145000px;}
.yc6{bottom:757.545000px;}
.yac{bottom:760.965000px;}
.y64{bottom:769.605000px;}
.yc5{bottom:776.445000px;}
.yab{bottom:779.865000px;}
.y2c{bottom:783.105000px;}
.y24{bottom:787.065000px;}
.y63{bottom:788.505000px;}
.yc4{bottom:795.525000px;}
.yaa{bottom:798.945000px;}
.y62{bottom:807.585000px;}
.yc3{bottom:814.425000px;}
.y96{bottom:816.765000px;}
.ya9{bottom:817.845000px;}
.y61{bottom:826.485000px;}
.yc2{bottom:833.325000px;}
.ya8{bottom:836.925000px;}
.y60{bottom:845.385000px;}
.yc1{bottom:852.405000px;}
.ya7{bottom:855.825000px;}
.y5f{bottom:864.465000px;}
.yc0{bottom:871.305000px;}
.ya6{bottom:874.725000px;}
.y5e{bottom:883.365000px;}
.ybf{bottom:890.385000px;}
.ya5{bottom:893.805000px;}
.y22{bottom:895.785000px;}
.y20{bottom:899.610000px;}
.y5d{bottom:902.490000px;}
.ybe{bottom:909.330000px;}
.ya4{bottom:912.750000px;}
.y5c{bottom:921.390000px;}
.y1f{bottom:922.830000px;}
.y1d{bottom:926.430000px;}
.ybd{bottom:928.230000px;}
.ya3{bottom:931.830000px;}
.y5b{bottom:940.470000px;}
.ybc{bottom:947.310000px;}
.y1b{bottom:949.650000px;}
.ya2{bottom:950.730000px;}
.y19{bottom:953.250000px;}
.y5a{bottom:959.370000px;}
.ybb{bottom:966.210000px;}
.ya1{bottom:969.630000px;}
.y59{bottom:978.270000px;}
.y14{bottom:983.670000px;}
.yba{bottom:985.290000px;}
.ya0{bottom:988.710000px;}
.y58{bottom:997.350000px;}
.yb9{bottom:1004.190000px;}
.y9f{bottom:1007.610000px;}
.y57{bottom:1016.250000px;}
.yb8{bottom:1023.090000px;}
.y9e{bottom:1026.690000px;}
.y56{bottom:1035.330000px;}
.yb7{bottom:1042.170000px;}
.y9d{bottom:1045.590000px;}
.y55{bottom:1054.230000px;}
.yb6{bottom:1061.070000px;}
.y9c{bottom:1064.490000px;}
.y54{bottom:1073.130000px;}
.yb5{bottom:1080.150000px;}
.y9b{bottom:1083.570000px;}
.y53{bottom:1092.210000px;}
.yd{bottom:1094.550000px;}
.yb4{bottom:1099.050000px;}
.y9a{bottom:1102.470000px;}
.y52{bottom:1111.110000px;}
.yc{bottom:1112.730000px;}
.yb3{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y51{bottom:1130.190000px;}
.yb2{bottom:1134.690000px;}
.y99{bottom:1138.470000px;}
.yb1{bottom:1144.770000px;}
.y50{bottom:1149.120000px;}
.y4e{bottom:1168.920000px;}
.y4d{bottom:1189.800000px;}
.y4c{bottom:1191.960000px;}
.y4b{bottom:1194.840000px;}
.h12{height:3.600000px;}
.h18{height:3.816000px;}
.h1d{height:3.960000px;}
.h16{height:5.650313px;}
.h8{height:5.729063px;}
.h13{height:5.805000px;}
.h29{height:12.174258px;}
.h28{height:15.120000px;}
.h7{height:17.666016px;}
.h5{height:17.956055px;}
.h20{height:19.260000px;}
.h14{height:23.220000px;}
.h31{height:23.945625px;}
.h34{height:29.664141px;}
.h10{height:30.420000px;}
.h2e{height:30.476250px;}
.h1e{height:30.960000px;}
.h1c{height:37.863281px;}
.h2d{height:37.980000px;}
.hb{height:38.812500px;}
.h2c{height:39.240000px;}
.h27{height:39.471680px;}
.h9{height:40.985156px;}
.h33{height:43.681992px;}
.h2a{height:46.445625px;}
.h26{height:46.620000px;}
.h15{height:47.321367px;}
.h2b{height:47.344922px;}
.h17{height:47.678906px;}
.h1f{height:52.971680px;}
.h1b{height:52.998047px;}
.h1a{height:54.421875px;}
.h6{height:56.320312px;}
.h32{height:58.621992px;}
.h11{height:60.226875px;}
.h24{height:63.500977px;}
.hd{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h2f{height:69.086250px;}
.h4{height:75.093750px;}
.h21{height:76.320000px;}
.h2{height:82.836000px;}
.h30{height:84.898125px;}
.h23{height:88.740000px;}
.hf{height:90.703125px;}
.he{height:103.485000px;}
.h19{height:108.720000px;}
.h22{height:111.276000px;}
.h25{height:138.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:212.250000px;}
.w7{width:222.690000px;}
.wa{width:244.110000px;}
.w2{width:287.175000px;}
.wb{width:404.715000px;}
.w3{width:435.135000px;}
.w6{width:499.575000px;}
.w8{width:510.015000px;}
.w5{width:722.265000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1c{left:21.420000px;}
.x8{left:31.680000px;}
.x18{left:34.740000px;}
.x19{left:45.900000px;}
.x9{left:53.280000px;}
.x1{left:84.600000px;}
.xb{left:86.214000px;}
.x17{left:91.656000px;}
.x1d{left:96.294000px;}
.xc{left:103.134000px;}
.x5{left:108.575987px;}
.x1e{left:111.995987px;}
.x2{left:117.030000px;}
.x1f{left:138.995987px;}
.xa{left:182.739000px;}
.x12{left:204.165000px;}
.x22{left:213.149987px;}
.xe{left:214.605000px;}
.x7{left:225.579000px;}
.x23{left:250.769987px;}
.x16{left:349.994987px;}
.x15{left:352.334987px;}
.x6{left:361.119000px;}
.x20{left:369.614987px;}
.x3{left:371.775000px;}
.x14{left:375.914987px;}
.x21{left:446.504987px;}
.x1b{left:504.824987px;}
.x1a{left:514.724987px;}
.xd{left:584.565000px;}
.x11{left:595.005000px;}
.xf{left:636.449987px;}
.x10{left:776.669987px;}
.x13{left:795.749987px;}
@media print{
.v3{vertical-align:-67.840000pt;}
.v4{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1f{letter-spacing:-1.824000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls17{letter-spacing:2.560000pt;}
.lsb{letter-spacing:4.613120pt;}
.ls23{letter-spacing:6.031360pt;}
.ls1b{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:8.960000pt;}
.ls1c{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:10.986667pt;}
.ls25{letter-spacing:13.440000pt;}
.ls4{letter-spacing:18.080000pt;}
.ls21{letter-spacing:35.471360pt;}
.ls20{letter-spacing:89.280000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls5{letter-spacing:176.800000pt;}
.ls24{letter-spacing:177.280000pt;}
.ls15{letter-spacing:178.080000pt;}
.ls1a{letter-spacing:192.000000pt;}
.ls16{letter-spacing:354.538667pt;}
.wsd{word-spacing:-20.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.351467pt;}
.ws5{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.176000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsf{word-spacing:-12.896000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.776000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._1b{margin-left:-4.590080pt;}
._14{margin-left:-3.380480pt;}
._f{margin-left:-2.425600pt;}
._2{margin-left:-1.530880pt;}
._1{width:0.908800pt;}
._5{width:2.361920pt;}
._6{width:3.356907pt;}
._a{width:4.586240pt;}
._8{width:5.983787pt;}
._7{width:6.897280pt;}
._4{width:8.100267pt;}
._3{width:9.089707pt;}
._19{width:10.181973pt;}
._15{width:11.210240pt;}
._16{width:12.340480pt;}
._9{width:13.392000pt;}
._10{width:15.264000pt;}
._12{width:16.675840pt;}
._13{width:18.086827pt;}
._1f{width:19.136000pt;}
._18{width:20.465920pt;}
._17{width:21.702400pt;}
._b{width:23.136000pt;}
._1c{width:24.258560pt;}
._d{width:25.463253pt;}
._c{width:26.664747pt;}
._e{width:28.319360pt;}
._1a{width:30.030720pt;}
._11{width:31.390080pt;}
._1e{width:32.435840pt;}
._24{width:33.457920pt;}
._23{width:39.214080pt;}
._22{width:44.748800pt;}
._20{width:60.528640pt;}
._21{width:61.941760pt;}
._0{width:135.802880pt;}
._26{width:174.080000pt;}
._25{width:753.504853pt;}
._1d{width:843.151787pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y1c{bottom:1.120000pt;}
.y23{bottom:1.280000pt;}
.y98{bottom:1.920000pt;}
.y2b{bottom:2.560000pt;}
.y4a{bottom:2.720000pt;}
.y95{bottom:2.880000pt;}
.y2f{bottom:4.160000pt;}
.y18{bottom:4.320000pt;}
.y1e{bottom:6.400000pt;}
.y7{bottom:7.200000pt;}
.y21{bottom:8.160000pt;}
.y1a{bottom:8.640000pt;}
.y46{bottom:8.800000pt;}
.y38{bottom:10.720000pt;}
.y32{bottom:15.200000pt;}
.y2a{bottom:16.320000pt;}
.y49{bottom:16.480000pt;}
.y97{bottom:20.000000pt;}
.y3e{bottom:20.800000pt;}
.y6{bottom:20.986667pt;}
.y94{bottom:21.120000pt;}
.y45{bottom:22.560000pt;}
.y37{bottom:24.480000pt;}
.y17{bottom:27.360000pt;}
.y29{bottom:30.240000pt;}
.y5{bottom:32.986667pt;}
.y44{bottom:36.480000pt;}
.y31{bottom:38.240000pt;}
.y4{bottom:40.186667pt;}
.y3d{bottom:43.680000pt;}
.y28{bottom:44.000000pt;}
.y4f{bottom:48.960000pt;}
.yb{bottom:49.280000pt;}
.y7f{bottom:49.440000pt;}
.y16{bottom:50.240000pt;}
.y36{bottom:52.000000pt;}
.y2{bottom:53.306667pt;}
.y27{bottom:57.760000pt;}
.y3{bottom:58.586667pt;}
.ya{bottom:61.280000pt;}
.y43{bottom:64.000000pt;}
.y35{bottom:65.920000pt;}
.y26{bottom:71.520000pt;}
.y15{bottom:73.280000pt;}
.y42{bottom:77.760000pt;}
.y34{bottom:79.680000pt;}
.y7e{bottom:85.120000pt;}
.y25{bottom:85.440000pt;}
.ye9{bottom:88.800000pt;}
.y41{bottom:91.680000pt;}
.y13{bottom:92.160000pt;}
.y92{bottom:93.760000pt;}
.ye8{bottom:97.920000pt;}
.y7d{bottom:101.920000pt;}
.y40{bottom:105.440000pt;}
.y12{bottom:109.120000pt;}
.y91{bottom:110.560000pt;}
.ye7{bottom:113.280000pt;}
.y7c{bottom:118.720000pt;}
.y11{bottom:125.920000pt;}
.y90{bottom:127.360000pt;}
.ye6{bottom:128.640000pt;}
.y7b{bottom:135.706667pt;}
.y10{bottom:142.906667pt;}
.ye5{bottom:143.866667pt;}
.y8f{bottom:144.346667pt;}
.y93{bottom:152.186667pt;}
.y7a{bottom:152.506667pt;}
.ye4{bottom:159.226667pt;}
.yf{bottom:159.706667pt;}
.y8e{bottom:161.146667pt;}
.y79{bottom:169.466667pt;}
.ye3{bottom:174.586667pt;}
.ye{bottom:176.506667pt;}
.y8d{bottom:178.106667pt;}
.y78{bottom:186.266667pt;}
.ye2{bottom:189.946667pt;}
.y48{bottom:190.106667pt;}
.y8c{bottom:194.906667pt;}
.y77{bottom:203.066667pt;}
.ye1{bottom:205.306667pt;}
.y8b{bottom:211.706667pt;}
.ye0{bottom:220.666667pt;}
.y8a{bottom:228.666667pt;}
.y47{bottom:231.546667pt;}
.y3f{bottom:235.066667pt;}
.ydf{bottom:235.866667pt;}
.y76{bottom:245.306667pt;}
.y89{bottom:245.466667pt;}
.yde{bottom:251.706667pt;}
.y75{bottom:258.906667pt;}
.y88{bottom:262.426667pt;}
.ydd{bottom:268.506667pt;}
.y87{bottom:279.226667pt;}
.ydc{bottom:285.306667pt;}
.y86{bottom:296.026667pt;}
.ydb{bottom:302.266667pt;}
.y85{bottom:312.986667pt;}
.yda{bottom:319.066667pt;}
.y84{bottom:329.786667pt;}
.yd9{bottom:336.026667pt;}
.y83{bottom:346.746667pt;}
.yd8{bottom:352.826667pt;}
.y3c{bottom:357.986667pt;}
.y82{bottom:363.586667pt;}
.yd7{bottom:369.666667pt;}
.y81{bottom:380.546667pt;}
.yd6{bottom:386.626667pt;}
.y80{bottom:397.346667pt;}
.yd5{bottom:403.426667pt;}
.y74{bottom:414.146667pt;}
.yd4{bottom:420.386667pt;}
.y73{bottom:431.106667pt;}
.y3b{bottom:436.866667pt;}
.yd3{bottom:437.186667pt;}
.y72{bottom:447.906667pt;}
.y3a{bottom:453.986667pt;}
.y71{bottom:464.866667pt;}
.yd2{bottom:470.946667pt;}
.y39{bottom:481.506667pt;}
.y70{bottom:481.666667pt;}
.y33{bottom:484.706667pt;}
.yd1{bottom:487.746667pt;}
.y6f{bottom:498.466667pt;}
.yd0{bottom:504.706667pt;}
.y6e{bottom:515.426667pt;}
.ycf{bottom:521.506667pt;}
.y6d{bottom:532.226667pt;}
.yce{bottom:538.466667pt;}
.y6c{bottom:549.186667pt;}
.ycd{bottom:555.266667pt;}
.y6b{bottom:565.986667pt;}
.ycc{bottom:572.066667pt;}
.y6a{bottom:582.813333pt;}
.y30{bottom:583.613333pt;}
.ycb{bottom:589.053333pt;}
.y69{bottom:599.773333pt;}
.yca{bottom:605.853333pt;}
.yb0{bottom:608.893333pt;}
.y68{bottom:616.573333pt;}
.yc9{bottom:622.813333pt;}
.yaf{bottom:625.853333pt;}
.y67{bottom:633.533333pt;}
.yc8{bottom:639.613333pt;}
.yae{bottom:642.653333pt;}
.y66{bottom:650.333333pt;}
.y2e{bottom:651.453333pt;}
.yc7{bottom:656.413333pt;}
.yad{bottom:659.613333pt;}
.y65{bottom:667.133333pt;}
.y2d{bottom:668.573333pt;}
.yc6{bottom:673.373333pt;}
.yac{bottom:676.413333pt;}
.y64{bottom:684.093333pt;}
.yc5{bottom:690.173333pt;}
.yab{bottom:693.213333pt;}
.y2c{bottom:696.093333pt;}
.y24{bottom:699.613333pt;}
.y63{bottom:700.893333pt;}
.yc4{bottom:707.133333pt;}
.yaa{bottom:710.173333pt;}
.y62{bottom:717.853333pt;}
.yc3{bottom:723.933333pt;}
.y96{bottom:726.013333pt;}
.ya9{bottom:726.973333pt;}
.y61{bottom:734.653333pt;}
.yc2{bottom:740.733333pt;}
.ya8{bottom:743.933333pt;}
.y60{bottom:751.453333pt;}
.yc1{bottom:757.693333pt;}
.ya7{bottom:760.733333pt;}
.y5f{bottom:768.413333pt;}
.yc0{bottom:774.493333pt;}
.ya6{bottom:777.533333pt;}
.y5e{bottom:785.213333pt;}
.ybf{bottom:791.453333pt;}
.ya5{bottom:794.493333pt;}
.y22{bottom:796.253333pt;}
.y20{bottom:799.653333pt;}
.y5d{bottom:802.213333pt;}
.ybe{bottom:808.293333pt;}
.ya4{bottom:811.333333pt;}
.y5c{bottom:819.013333pt;}
.y1f{bottom:820.293333pt;}
.y1d{bottom:823.493333pt;}
.ybd{bottom:825.093333pt;}
.ya3{bottom:828.293333pt;}
.y5b{bottom:835.973333pt;}
.ybc{bottom:842.053333pt;}
.y1b{bottom:844.133333pt;}
.ya2{bottom:845.093333pt;}
.y19{bottom:847.333333pt;}
.y5a{bottom:852.773333pt;}
.ybb{bottom:858.853333pt;}
.ya1{bottom:861.893333pt;}
.y59{bottom:869.573333pt;}
.y14{bottom:874.373333pt;}
.yba{bottom:875.813333pt;}
.ya0{bottom:878.853333pt;}
.y58{bottom:886.533333pt;}
.yb9{bottom:892.613333pt;}
.y9f{bottom:895.653333pt;}
.y57{bottom:903.333333pt;}
.yb8{bottom:909.413333pt;}
.y9e{bottom:912.613333pt;}
.y56{bottom:920.293333pt;}
.yb7{bottom:926.373333pt;}
.y9d{bottom:929.413333pt;}
.y55{bottom:937.093333pt;}
.yb6{bottom:943.173333pt;}
.y9c{bottom:946.213333pt;}
.y54{bottom:953.893333pt;}
.yb5{bottom:960.133333pt;}
.y9b{bottom:963.173333pt;}
.y53{bottom:970.853333pt;}
.yd{bottom:972.933333pt;}
.yb4{bottom:976.933333pt;}
.y9a{bottom:979.973333pt;}
.y52{bottom:987.653333pt;}
.yc{bottom:989.093333pt;}
.yb3{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y51{bottom:1004.613333pt;}
.yb2{bottom:1008.613333pt;}
.y99{bottom:1011.973333pt;}
.yb1{bottom:1017.573333pt;}
.y50{bottom:1021.440000pt;}
.y4e{bottom:1039.040000pt;}
.y4d{bottom:1057.600000pt;}
.y4c{bottom:1059.520000pt;}
.y4b{bottom:1062.080000pt;}
.h12{height:3.200000pt;}
.h18{height:3.392000pt;}
.h1d{height:3.520000pt;}
.h16{height:5.022500pt;}
.h8{height:5.092500pt;}
.h13{height:5.160000pt;}
.h29{height:10.821563pt;}
.h28{height:13.440000pt;}
.h7{height:15.703125pt;}
.h5{height:15.960938pt;}
.h20{height:17.120000pt;}
.h14{height:20.640000pt;}
.h31{height:21.285000pt;}
.h34{height:26.368125pt;}
.h10{height:27.040000pt;}
.h2e{height:27.090000pt;}
.h1e{height:27.520000pt;}
.h1c{height:33.656250pt;}
.h2d{height:33.760000pt;}
.hb{height:34.500000pt;}
.h2c{height:34.880000pt;}
.h27{height:35.085938pt;}
.h9{height:36.431250pt;}
.h33{height:38.828437pt;}
.h2a{height:41.285000pt;}
.h26{height:41.440000pt;}
.h15{height:42.063437pt;}
.h2b{height:42.084375pt;}
.h17{height:42.381250pt;}
.h1f{height:47.085938pt;}
.h1b{height:47.109375pt;}
.h1a{height:48.375000pt;}
.h6{height:50.062500pt;}
.h32{height:52.108438pt;}
.h11{height:53.535000pt;}
.h24{height:56.445312pt;}
.hd{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h2f{height:61.410000pt;}
.h4{height:66.750000pt;}
.h21{height:67.840000pt;}
.h2{height:73.632000pt;}
.h30{height:75.465000pt;}
.h23{height:78.880000pt;}
.hf{height:80.625000pt;}
.he{height:91.986667pt;}
.h19{height:96.640000pt;}
.h22{height:98.912000pt;}
.h25{height:122.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:188.666667pt;}
.w7{width:197.946667pt;}
.wa{width:216.986667pt;}
.w2{width:255.266667pt;}
.wb{width:359.746667pt;}
.w3{width:386.786667pt;}
.w6{width:444.066667pt;}
.w8{width:453.346667pt;}
.w5{width:642.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1c{left:19.040000pt;}
.x8{left:28.160000pt;}
.x18{left:30.880000pt;}
.x19{left:40.800000pt;}
.x9{left:47.360000pt;}
.x1{left:75.200000pt;}
.xb{left:76.634667pt;}
.x17{left:81.472000pt;}
.x1d{left:85.594667pt;}
.xc{left:91.674667pt;}
.x5{left:96.511988pt;}
.x1e{left:99.551988pt;}
.x2{left:104.026667pt;}
.x1f{left:123.551988pt;}
.xa{left:162.434667pt;}
.x12{left:181.480000pt;}
.x22{left:189.466655pt;}
.xe{left:190.760000pt;}
.x7{left:200.514667pt;}
.x23{left:222.906655pt;}
.x16{left:311.106655pt;}
.x15{left:313.186655pt;}
.x6{left:320.994667pt;}
.x20{left:328.546655pt;}
.x3{left:330.466667pt;}
.x14{left:334.146655pt;}
.x21{left:396.893322pt;}
.x1b{left:448.733322pt;}
.x1a{left:457.533322pt;}
.xd{left:519.613333pt;}
.x11{left:528.893333pt;}
.xf{left:565.733322pt;}
.x10{left:690.373322pt;}
.x13{left:707.333322pt;}
}




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