
    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_51f08d4cca75122ba0c08185.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_ca2978afdc5f33b0a0fc95aa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_293a97de2fe3806cfa33d30c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_079ec3e8d57a17f8bcc92933.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_00795b8c8a0434bd72d2c3ad.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0cda1693b9fe897c99a209a8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_359a0216708192bd4cb43647.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_70d3e1038d1bc00a40990ce5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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:fff;src:url('chunks/assets/font_2774eec36fd129e1e90986c0.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2df6b52c10b3afcf25c7f7db.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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;}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.114000px;}
.lsc{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.414600px;}
.ls4{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.576000px;}
.lse{letter-spacing:33.984000px;}
.ls6{letter-spacing:57.749760px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.062880px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.974600px;}
.wsb{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.ws4{word-spacing:-14.650800px;}
.ws8{word-spacing:0.000000px;}
._21{margin-left:-2.163600px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.392320px;}
._7{width:3.643200px;}
._9{width:4.672080px;}
._53{width:5.675040px;}
._15{width:6.690240px;}
._d{width:8.015040px;}
._6{width:9.834240px;}
._5{width:10.964880px;}
._8{width:12.550320px;}
._c{width:14.336640px;}
._2b{width:15.405120px;}
._4{width:18.282240px;}
._1b{width:19.907280px;}
._4f{width:20.931840px;}
._25{width:22.057920px;}
._10{width:23.184000px;}
._17{width:25.237440px;}
._16{width:26.332560px;}
._20{width:27.337680px;}
._19{width:28.946880px;}
._13{width:30.903120px;}
._2d{width:32.333760px;}
._2a{width:33.451200px;}
._14{width:34.908480px;}
._41{width:36.034560px;}
._f{width:37.858320px;}
._e{width:39.214080px;}
._26{width:41.068800px;}
._27{width:42.437520px;}
._39{width:44.248320px;}
._23{width:45.506880px;}
._24{width:46.957680px;}
._a{width:48.270000px;}
._b{width:50.118720px;}
._1c{width:52.329120px;}
._40{width:53.383920px;}
._32{width:55.509120px;}
._46{width:56.538000px;}
._47{width:57.940560px;}
._3c{width:60.344640px;}
._38{width:61.735680px;}
._35{width:63.516960px;}
._22{width:64.720080px;}
._29{width:66.479040px;}
._11{width:68.130000px;}
._3d{width:70.634880px;}
._3e{width:72.090000px;}
._3f{width:73.261440px;}
._31{width:75.116160px;}
._28{width:76.476240px;}
._18{width:78.030720px;}
._33{width:79.156800px;}
._55{width:81.260640px;}
._2f{width:85.679280px;}
._12{width:87.008400px;}
._3b{width:91.609920px;}
._30{width:93.928320px;}
._37{width:99.442080px;}
._36{width:101.126160px;}
._3a{width:102.870720px;}
._51{width:106.615440px;}
._50{width:113.667840px;}
._48{width:116.595360px;}
._45{width:118.556640px;}
._44{width:119.894400px;}
._54{width:121.417920px;}
._49{width:132.456000px;}
._4c{width:141.422400px;}
._4d{width:142.573680px;}
._4a{width:143.674560px;}
._4b{width:144.986400px;}
._1a{width:147.220560px;}
._2e{width:149.760000px;}
._1f{width:152.893440px;}
._52{width:164.380080px;}
._34{width:166.320000px;}
._2c{width:182.880000px;}
._1d{width:189.617520px;}
._1e{width:197.647200px;}
._3{width:199.416000px;}
._43{width:299.338560px;}
._42{width:300.376080px;}
._56{width:694.064160px;}
._4e{width:828.066240px;}
._57{width:847.596000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1a{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y18{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y17{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.y16{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y41{bottom:75.240000px;}
.y15{bottom:78.345000px;}
.y14{bottom:93.645000px;}
.y3a{bottom:122.220000px;}
.y13{bottom:123.885000px;}
.yb0{bottom:128.520000px;}
.y8b{bottom:134.100000px;}
.y12{bottom:139.005000px;}
.y39{bottom:146.880000px;}
.yaf{bottom:153.180000px;}
.y8a{bottom:158.760000px;}
.y3e{bottom:171.180000px;}
.y38{bottom:171.540000px;}
.yae{bottom:177.840000px;}
.y6a{bottom:180.720000px;}
.y89{bottom:183.420000px;}
.y3d{bottom:195.840000px;}
.y37{bottom:196.200000px;}
.yad{bottom:202.680000px;}
.y69{bottom:205.380000px;}
.y9b{bottom:207.750000px;}
.y88{bottom:208.110000px;}
.y3c{bottom:220.530000px;}
.y36{bottom:220.890000px;}
.yac{bottom:228.630000px;}
.y68{bottom:230.070000px;}
.y87{bottom:232.770000px;}
.y35{bottom:245.550000px;}
.yab{bottom:253.290000px;}
.y67{bottom:254.730000px;}
.y9f{bottom:257.070000px;}
.y86{bottom:257.430000px;}
.y34{bottom:270.210000px;}
.yaa{bottom:277.950000px;}
.y66{bottom:279.390000px;}
.y9e{bottom:281.730000px;}
.y85{bottom:282.090000px;}
.y33{bottom:294.870000px;}
.ya9{bottom:302.610000px;}
.y65{bottom:304.050000px;}
.y84{bottom:306.750000px;}
.y32{bottom:319.530000px;}
.ya8{bottom:327.270000px;}
.y64{bottom:328.710000px;}
.y83{bottom:331.410000px;}
.y31{bottom:344.190000px;}
.ya7{bottom:352.110000px;}
.y63{bottom:353.370000px;}
.y93{bottom:355.710000px;}
.y82{bottom:356.070000px;}
.y30{bottom:368.850000px;}
.y62{bottom:378.030000px;}
.y81{bottom:380.370000px;}
.y99{bottom:380.730000px;}
.y2f{bottom:393.510000px;}
.y61{bottom:402.690000px;}
.y80{bottom:405.030000px;}
.y98{bottom:405.390000px;}
.y2e{bottom:418.170000px;}
.y60{bottom:427.350000px;}
.y7f{bottom:429.690000px;}
.y92{bottom:430.050000px;}
.y2d{bottom:442.875000px;}
.y5f{bottom:452.055000px;}
.ya6{bottom:452.235000px;}
.y7e{bottom:454.755000px;}
.y2c{bottom:467.535000px;}
.yd3{bottom:476.355000px;}
.y5e{bottom:476.715000px;}
.ya5{bottom:478.155000px;}
.y7d{bottom:479.595000px;}
.y2b{bottom:492.195000px;}
.y5d{bottom:501.375000px;}
.ya4{bottom:502.815000px;}
.y7c{bottom:504.255000px;}
.y2a{bottom:516.495000px;}
.y3b{bottom:516.855000px;}
.yc9{bottom:523.155000px;}
.y5c{bottom:526.035000px;}
.ya3{bottom:527.475000px;}
.y7b{bottom:528.915000px;}
.y29{bottom:541.155000px;}
.yc8{bottom:547.815000px;}
.yd2{bottom:549.255000px;}
.y5b{bottom:550.695000px;}
.ya2{bottom:552.135000px;}
.y97{bottom:553.215000px;}
.y7a{bottom:553.575000px;}
.y28{bottom:565.275000px;}
.yc7{bottom:572.655000px;}
.yd1{bottom:573.915000px;}
.y5a{bottom:575.535000px;}
.ya1{bottom:576.795000px;}
.y96{bottom:577.875000px;}
.y79{bottom:578.235000px;}
.y27{bottom:587.235000px;}
.yc6{bottom:597.315000px;}
.yd0{bottom:598.575000px;}
.y59{bottom:601.455000px;}
.y91{bottom:602.535000px;}
.y78{bottom:602.895000px;}
.y26{bottom:611.535000px;}
.yc5{bottom:621.975000px;}
.ycf{bottom:623.235000px;}
.y58{bottom:626.115000px;}
.ya0{bottom:626.295000px;}
.y90{bottom:627.195000px;}
.y77{bottom:627.555000px;}
.y25{bottom:633.315000px;}
.yc4{bottom:647.895000px;}
.y57{bottom:650.775000px;}
.y8f{bottom:651.855000px;}
.y76{bottom:652.215000px;}
.y24{bottom:655.095000px;}
.yc3{bottom:672.555000px;}
.y56{bottom:675.435000px;}
.y9c{bottom:676.545000px;}
.y23{bottom:676.905000px;}
.yc2{bottom:697.245000px;}
.y22{bottom:698.865000px;}
.y55{bottom:700.125000px;}
.y75{bottom:701.565000px;}
.y21{bottom:720.645000px;}
.yc1{bottom:721.905000px;}
.y54{bottom:724.785000px;}
.y74{bottom:726.225000px;}
.y20{bottom:742.425000px;}
.yc0{bottom:746.745000px;}
.y53{bottom:749.445000px;}
.y9d{bottom:750.525000px;}
.y73{bottom:750.885000px;}
.y1f{bottom:764.205000px;}
.ybf{bottom:771.405000px;}
.yce{bottom:772.665000px;}
.y52{bottom:774.105000px;}
.y72{bottom:775.545000px;}
.y1e{bottom:786.165000px;}
.ybe{bottom:796.065000px;}
.ycd{bottom:797.325000px;}
.y51{bottom:798.765000px;}
.y9a{bottom:799.845000px;}
.y71{bottom:800.205000px;}
.y1d{bottom:807.945000px;}
.ybd{bottom:821.985000px;}
.y50{bottom:823.605000px;}
.y70{bottom:824.505000px;}
.y8e{bottom:824.865000px;}
.y1c{bottom:829.365000px;}
.ybc{bottom:846.645000px;}
.y1b{bottom:848.625000px;}
.y6f{bottom:849.165000px;}
.y4f{bottom:849.525000px;}
.y19{bottom:857.265000px;}
.y11{bottom:864.465000px;}
.ybb{bottom:871.305000px;}
.y4e{bottom:874.185000px;}
.yba{bottom:895.965000px;}
.y4d{bottom:898.485000px;}
.y6e{bottom:898.845000px;}
.yb9{bottom:920.670000px;}
.ycc{bottom:920.850000px;}
.y4c{bottom:923.190000px;}
.y6d{bottom:923.550000px;}
.yb8{bottom:945.510000px;}
.ycb{bottom:946.770000px;}
.y95{bottom:947.850000px;}
.y4b{bottom:948.210000px;}
.yb7{bottom:971.430000px;}
.y94{bottom:972.510000px;}
.y4a{bottom:972.870000px;}
.yb6{bottom:996.090000px;}
.y8d{bottom:997.170000px;}
.y49{bottom:997.530000px;}
.yb5{bottom:1020.750000px;}
.y8c{bottom:1021.830000px;}
.y48{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.yb4{bottom:1045.410000px;}
.yca{bottom:1045.590000px;}
.y47{bottom:1046.850000px;}
.yb3{bottom:1070.070000px;}
.y46{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yb2{bottom:1094.730000px;}
.y45{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yb1{bottom:1119.570000px;}
.y44{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y6c{bottom:1145.130000px;}
.y43{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y6b{bottom:1169.820000px;}
.y42{bottom:1170.180000px;}
.y40{bottom:1187.280000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1f{height:30.480469px;}
.h1a{height:36.861328px;}
.he{height:41.025000px;}
.h21{height:41.493516px;}
.h14{height:44.496211px;}
.h23{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h22{height:61.423863px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1e{height:65.010937px;}
.h1c{height:65.884219px;}
.h1d{height:66.757500px;}
.h15{height:67.803750px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h20{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:164.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1b{left:112.356000px;}
.x20{left:114.876000px;}
.x17{left:124.543500px;}
.x1f{left:135.036000px;}
.x13{left:162.568500px;}
.x15{left:165.808500px;}
.x4{left:168.885000px;}
.x18{left:190.828500px;}
.x6{left:209.010000px;}
.x19{left:214.048500px;}
.x14{left:296.848500px;}
.x16{left:299.188500px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1d{left:473.505000px;}
.x1c{left:477.825000px;}
.x21{left:500.505000px;}
.x1e{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.101333pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.368533pt;}
.ls4{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.512000pt;}
.lse{letter-spacing:30.208000pt;}
.ls6{letter-spacing:51.333120pt;}
.ws0{word-spacing:-21.389227pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.088533pt;}
.wsb{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.022933pt;}
.ws8{word-spacing:0.000000pt;}
._21{margin-left:-1.923200pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.126507pt;}
._7{width:3.238400pt;}
._9{width:4.152960pt;}
._53{width:5.044480pt;}
._15{width:5.946880pt;}
._d{width:7.124480pt;}
._6{width:8.741547pt;}
._5{width:9.746560pt;}
._8{width:11.155840pt;}
._c{width:12.743680pt;}
._2b{width:13.693440pt;}
._4{width:16.250880pt;}
._1b{width:17.695360pt;}
._4f{width:18.606080pt;}
._25{width:19.607040pt;}
._10{width:20.608000pt;}
._17{width:22.433280pt;}
._16{width:23.406720pt;}
._20{width:24.300160pt;}
._19{width:25.730560pt;}
._13{width:27.469440pt;}
._2d{width:28.741120pt;}
._2a{width:29.734400pt;}
._14{width:31.029760pt;}
._41{width:32.030720pt;}
._f{width:33.651840pt;}
._e{width:34.856960pt;}
._26{width:36.505600pt;}
._27{width:37.722240pt;}
._39{width:39.331840pt;}
._23{width:40.450560pt;}
._24{width:41.740160pt;}
._a{width:42.906667pt;}
._b{width:44.549973pt;}
._1c{width:46.514773pt;}
._40{width:47.452373pt;}
._32{width:49.341440pt;}
._46{width:50.256000pt;}
._47{width:51.502720pt;}
._3c{width:53.639680pt;}
._38{width:54.876160pt;}
._35{width:56.459520pt;}
._22{width:57.528960pt;}
._29{width:59.092480pt;}
._11{width:60.560000pt;}
._3d{width:62.786560pt;}
._3e{width:64.080000pt;}
._3f{width:65.121280pt;}
._31{width:66.769920pt;}
._28{width:67.978880pt;}
._18{width:69.360640pt;}
._33{width:70.361600pt;}
._55{width:72.231680pt;}
._2f{width:76.159360pt;}
._12{width:77.340800pt;}
._3b{width:81.431040pt;}
._30{width:83.491840pt;}
._37{width:88.392960pt;}
._36{width:89.889920pt;}
._3a{width:91.440640pt;}
._51{width:94.769280pt;}
._50{width:101.038080pt;}
._48{width:103.640320pt;}
._45{width:105.383680pt;}
._44{width:106.572800pt;}
._54{width:107.927040pt;}
._49{width:117.738667pt;}
._4c{width:125.708800pt;}
._4d{width:126.732160pt;}
._4a{width:127.710720pt;}
._4b{width:128.876800pt;}
._1a{width:130.862720pt;}
._2e{width:133.120000pt;}
._1f{width:135.905280pt;}
._52{width:146.115627pt;}
._34{width:147.840000pt;}
._2c{width:162.560000pt;}
._1d{width:168.548907pt;}
._1e{width:175.686400pt;}
._3{width:177.258667pt;}
._43{width:266.078720pt;}
._42{width:267.000960pt;}
._56{width:616.945920pt;}
._4e{width:736.058880pt;}
._57{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1a{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y18{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y17{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.y16{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y41{bottom:66.880000pt;}
.y15{bottom:69.640000pt;}
.y14{bottom:83.240000pt;}
.y3a{bottom:108.640000pt;}
.y13{bottom:110.120000pt;}
.yb0{bottom:114.240000pt;}
.y8b{bottom:119.200000pt;}
.y12{bottom:123.560000pt;}
.y39{bottom:130.560000pt;}
.yaf{bottom:136.160000pt;}
.y8a{bottom:141.120000pt;}
.y3e{bottom:152.160000pt;}
.y38{bottom:152.480000pt;}
.yae{bottom:158.080000pt;}
.y6a{bottom:160.640000pt;}
.y89{bottom:163.040000pt;}
.y3d{bottom:174.080000pt;}
.y37{bottom:174.400000pt;}
.yad{bottom:180.160000pt;}
.y69{bottom:182.560000pt;}
.y9b{bottom:184.666667pt;}
.y88{bottom:184.986667pt;}
.y3c{bottom:196.026667pt;}
.y36{bottom:196.346667pt;}
.yac{bottom:203.226667pt;}
.y68{bottom:204.506667pt;}
.y87{bottom:206.906667pt;}
.y35{bottom:218.266667pt;}
.yab{bottom:225.146667pt;}
.y67{bottom:226.426667pt;}
.y9f{bottom:228.506667pt;}
.y86{bottom:228.826667pt;}
.y34{bottom:240.186667pt;}
.yaa{bottom:247.066667pt;}
.y66{bottom:248.346667pt;}
.y9e{bottom:250.426667pt;}
.y85{bottom:250.746667pt;}
.y33{bottom:262.106667pt;}
.ya9{bottom:268.986667pt;}
.y65{bottom:270.266667pt;}
.y84{bottom:272.666667pt;}
.y32{bottom:284.026667pt;}
.ya8{bottom:290.906667pt;}
.y64{bottom:292.186667pt;}
.y83{bottom:294.586667pt;}
.y31{bottom:305.946667pt;}
.ya7{bottom:312.986667pt;}
.y63{bottom:314.106667pt;}
.y93{bottom:316.186667pt;}
.y82{bottom:316.506667pt;}
.y30{bottom:327.866667pt;}
.y62{bottom:336.026667pt;}
.y81{bottom:338.106667pt;}
.y99{bottom:338.426667pt;}
.y2f{bottom:349.786667pt;}
.y61{bottom:357.946667pt;}
.y80{bottom:360.026667pt;}
.y98{bottom:360.346667pt;}
.y2e{bottom:371.706667pt;}
.y60{bottom:379.866667pt;}
.y7f{bottom:381.946667pt;}
.y92{bottom:382.266667pt;}
.y2d{bottom:393.666667pt;}
.y5f{bottom:401.826667pt;}
.ya6{bottom:401.986667pt;}
.y7e{bottom:404.226667pt;}
.y2c{bottom:415.586667pt;}
.yd3{bottom:423.426667pt;}
.y5e{bottom:423.746667pt;}
.ya5{bottom:425.026667pt;}
.y7d{bottom:426.306667pt;}
.y2b{bottom:437.506667pt;}
.y5d{bottom:445.666667pt;}
.ya4{bottom:446.946667pt;}
.y7c{bottom:448.226667pt;}
.y2a{bottom:459.106667pt;}
.y3b{bottom:459.426667pt;}
.yc9{bottom:465.026667pt;}
.y5c{bottom:467.586667pt;}
.ya3{bottom:468.866667pt;}
.y7b{bottom:470.146667pt;}
.y29{bottom:481.026667pt;}
.yc8{bottom:486.946667pt;}
.yd2{bottom:488.226667pt;}
.y5b{bottom:489.506667pt;}
.ya2{bottom:490.786667pt;}
.y97{bottom:491.746667pt;}
.y7a{bottom:492.066667pt;}
.y28{bottom:502.466667pt;}
.yc7{bottom:509.026667pt;}
.yd1{bottom:510.146667pt;}
.y5a{bottom:511.586667pt;}
.ya1{bottom:512.706667pt;}
.y96{bottom:513.666667pt;}
.y79{bottom:513.986667pt;}
.y27{bottom:521.986667pt;}
.yc6{bottom:530.946667pt;}
.yd0{bottom:532.066667pt;}
.y59{bottom:534.626667pt;}
.y91{bottom:535.586667pt;}
.y78{bottom:535.906667pt;}
.y26{bottom:543.586667pt;}
.yc5{bottom:552.866667pt;}
.ycf{bottom:553.986667pt;}
.y58{bottom:556.546667pt;}
.ya0{bottom:556.706667pt;}
.y90{bottom:557.506667pt;}
.y77{bottom:557.826667pt;}
.y25{bottom:562.946667pt;}
.yc4{bottom:575.906667pt;}
.y57{bottom:578.466667pt;}
.y8f{bottom:579.426667pt;}
.y76{bottom:579.746667pt;}
.y24{bottom:582.306667pt;}
.yc3{bottom:597.826667pt;}
.y56{bottom:600.386667pt;}
.y9c{bottom:601.373333pt;}
.y23{bottom:601.693333pt;}
.yc2{bottom:619.773333pt;}
.y22{bottom:621.213333pt;}
.y55{bottom:622.333333pt;}
.y75{bottom:623.613333pt;}
.y21{bottom:640.573333pt;}
.yc1{bottom:641.693333pt;}
.y54{bottom:644.253333pt;}
.y74{bottom:645.533333pt;}
.y20{bottom:659.933333pt;}
.yc0{bottom:663.773333pt;}
.y53{bottom:666.173333pt;}
.y9d{bottom:667.133333pt;}
.y73{bottom:667.453333pt;}
.y1f{bottom:679.293333pt;}
.ybf{bottom:685.693333pt;}
.yce{bottom:686.813333pt;}
.y52{bottom:688.093333pt;}
.y72{bottom:689.373333pt;}
.y1e{bottom:698.813333pt;}
.ybe{bottom:707.613333pt;}
.ycd{bottom:708.733333pt;}
.y51{bottom:710.013333pt;}
.y9a{bottom:710.973333pt;}
.y71{bottom:711.293333pt;}
.y1d{bottom:718.173333pt;}
.ybd{bottom:730.653333pt;}
.y50{bottom:732.093333pt;}
.y70{bottom:732.893333pt;}
.y8e{bottom:733.213333pt;}
.y1c{bottom:737.213333pt;}
.ybc{bottom:752.573333pt;}
.y1b{bottom:754.333333pt;}
.y6f{bottom:754.813333pt;}
.y4f{bottom:755.133333pt;}
.y19{bottom:762.013333pt;}
.y11{bottom:768.413333pt;}
.ybb{bottom:774.493333pt;}
.y4e{bottom:777.053333pt;}
.yba{bottom:796.413333pt;}
.y4d{bottom:798.653333pt;}
.y6e{bottom:798.973333pt;}
.yb9{bottom:818.373333pt;}
.ycc{bottom:818.533333pt;}
.y4c{bottom:820.613333pt;}
.y6d{bottom:820.933333pt;}
.yb8{bottom:840.453333pt;}
.ycb{bottom:841.573333pt;}
.y95{bottom:842.533333pt;}
.y4b{bottom:842.853333pt;}
.yb7{bottom:863.493333pt;}
.y94{bottom:864.453333pt;}
.y4a{bottom:864.773333pt;}
.yb6{bottom:885.413333pt;}
.y8d{bottom:886.373333pt;}
.y49{bottom:886.693333pt;}
.yb5{bottom:907.333333pt;}
.y8c{bottom:908.293333pt;}
.y48{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.yb4{bottom:929.253333pt;}
.yca{bottom:929.413333pt;}
.y47{bottom:930.533333pt;}
.yb3{bottom:951.173333pt;}
.y46{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yb2{bottom:973.093333pt;}
.y45{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yb1{bottom:995.173333pt;}
.y44{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y6c{bottom:1017.893333pt;}
.y43{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y6b{bottom:1039.840000pt;}
.y42{bottom:1040.160000pt;}
.y40{bottom:1055.360000pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1f{height:27.093750pt;}
.h1a{height:32.765625pt;}
.he{height:36.466667pt;}
.h21{height:36.883125pt;}
.h14{height:39.552188pt;}
.h23{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h22{height:54.598989pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1e{height:57.787500pt;}
.h1c{height:58.563750pt;}
.h1d{height:59.340000pt;}
.h15{height:60.270000pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h20{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:146.413333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1b{left:99.872000pt;}
.x20{left:102.112000pt;}
.x17{left:110.705333pt;}
.x1f{left:120.032000pt;}
.x13{left:144.505333pt;}
.x15{left:147.385333pt;}
.x4{left:150.120000pt;}
.x18{left:169.625333pt;}
.x6{left:185.786667pt;}
.x19{left:190.265333pt;}
.x14{left:263.865333pt;}
.x16{left:265.945333pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1d{left:420.893333pt;}
.x1c{left:424.733333pt;}
.x21{left:444.893333pt;}
.x1e{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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