
    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_3492f83e2a7a5b32267372ee.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfb3ecf17615d4fde94037df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_f01458c4e36aaabfc3a7f7f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_da4b5b542465f85dd52ef6a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cec44f11a8d5301459182400.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27d34bb6475149331eccd2f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_7c05122c72f1bfc65cc13aa4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f8421ac7e0474819b6b3e2ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0c19eca85336e87a1893ab7c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_e1aea5f97e0a53619369a1f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946289;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_c20637b5361fd3dbdffec3ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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_7a308818adefd993bf8d747b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.378906;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_1c51bec39a2338df00fa1765.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.v3{vertical-align:27.000000px;}
.ls17{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.166200px;}
.lsb{letter-spacing:-0.099000px;}
.ls16{letter-spacing:-0.054720px;}
.ls5{letter-spacing:-0.045360px;}
.ls11{letter-spacing:-0.027360px;}
.lsa{letter-spacing:-0.018000px;}
.lse{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000003px;}
.ls10{letter-spacing:0.027360px;}
.ls15{letter-spacing:0.044400px;}
.ls8{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.139200px;}
.ls1{letter-spacing:0.143640px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.193680px;}
.ls19{letter-spacing:0.193800px;}
.ls13{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.450000px;}
.ls3{letter-spacing:6.930000px;}
.ls9{letter-spacing:1281.090000px;}
.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;}
}
.wsf{word-spacing:-51.120000px;}
.ws2{word-spacing:-20.970000px;}
.ws7{word-spacing:-16.650000px;}
.ws1{word-spacing:-16.470000px;}
.ws5{word-spacing:-16.424640px;}
.wsb{word-spacing:-15.930000px;}
.wsc{word-spacing:-15.858000px;}
.wsd{word-spacing:-15.750000px;}
.wsa{word-spacing:-15.651000px;}
.ws9{word-spacing:-14.760000px;}
.ws12{word-spacing:-14.220000px;}
.ws13{word-spacing:-14.165280px;}
.ws0{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.780003px;}
.wse{word-spacing:-12.780000px;}
.ws10{word-spacing:-12.762720px;}
.ws4{word-spacing:-12.113640px;}
.ws3{word-spacing:-11.970000px;}
.ws6{word-spacing:-10.350000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-3.834000px;}
._4{margin-left:-2.682000px;}
._1{margin-left:-1.026000px;}
._0{width:1.794120px;}
._2{width:3.072000px;}
._3{width:4.163280px;}
._b{width:5.665680px;}
._d{width:6.945120px;}
._e{width:8.476920px;}
._7{width:10.343160px;}
._8{width:11.492880px;}
._c{width:13.026120px;}
._18{width:14.679000px;}
._31{width:15.720480px;}
._25{width:16.758000px;}
._a{width:18.127680px;}
._13{width:19.751880px;}
._9{width:21.345120px;}
._12{width:23.310000px;}
._10{width:25.137000px;}
._f{width:26.334000px;}
._1c{width:27.342000px;}
._23{width:28.602000px;}
._1f{width:30.051000px;}
._24{width:31.689000px;}
._2a{width:32.904000px;}
._1a{width:34.335000px;}
._1b{width:35.375880px;}
._11{width:36.414000px;}
._15{width:37.611000px;}
._14{width:38.619000px;}
._19{width:39.627000px;}
._1d{width:41.265000px;}
._20{width:42.840000px;}
._2b{width:44.081880px;}
._27{width:45.360000px;}
._39{width:46.470960px;}
._32{width:48.494160px;}
._26{width:50.022000px;}
._1e{width:51.282000px;}
._37{width:54.383520px;}
._38{width:56.936880px;}
._2c{width:57.960000px;}
._2d{width:59.094000px;}
._2e{width:60.543000px;}
._35{width:61.756200px;}
._30{width:62.850000px;}
._21{width:64.449000px;}
._22{width:66.342000px;}
._29{width:73.458000px;}
._28{width:74.844000px;}
._36{width:76.058640px;}
._33{width:80.017920px;}
._17{width:86.814000px;}
._16{width:87.822000px;}
._2f{width:109.242000px;}
._34{width:118.310400px;}
._6{width:2963.160000px;}
.fc6{color:rgb(84,141,212);}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc3{color:rgb(112,48,160);}
.fc7{color:rgb(255,255,255);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs3{font-size:29.880000px;}
.fs8{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fsa{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs9{font-size:63.000000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs6{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:2.700000px;}
.y7f{bottom:2.790000px;}
.y7c{bottom:3.420000px;}
.y3e{bottom:3.600000px;}
.yd{bottom:12.240000px;}
.y7e{bottom:17.460000px;}
.y7b{bottom:21.510000px;}
.yc{bottom:32.040000px;}
.y84{bottom:32.130000px;}
.y91{bottom:32.160000px;}
.y7a{bottom:39.690000px;}
.y42{bottom:46.440000px;}
.y83{bottom:46.800000px;}
.y90{bottom:46.830000px;}
.yb{bottom:48.240000px;}
.y99{bottom:61.380000px;}
.y82{bottom:61.470000px;}
.y8f{bottom:61.500000px;}
.ya{bottom:65.160000px;}
.y41{bottom:66.870000px;}
.y85{bottom:74.160000px;}
.y87{bottom:74.250000px;}
.y9{bottom:75.150000px;}
.y98{bottom:76.050000px;}
.y81{bottom:76.140000px;}
.y8e{bottom:76.170000px;}
.y8{bottom:90.630000px;}
.y97{bottom:90.720000px;}
.y8d{bottom:90.750000px;}
.y94{bottom:90.810000px;}
.y101{bottom:99.450000px;}
.yf3{bottom:99.810000px;}
.ya7{bottom:100.980000px;}
.y9a{bottom:103.500000px;}
.y95{bottom:103.590000px;}
.y7{bottom:104.850000px;}
.y78{bottom:105.390000px;}
.y8c{bottom:105.420000px;}
.y93{bottom:105.480000px;}
.yb7{bottom:114.480000px;}
.y6{bottom:114.840000px;}
.y100{bottom:115.920000px;}
.yf2{bottom:116.190000px;}
.ya6{bottom:119.070000px;}
.y8b{bottom:120.090000px;}
.y77{bottom:123.480000px;}
.y5{bottom:130.320000px;}
.yb6{bottom:130.860000px;}
.yff{bottom:132.300000px;}
.yf1{bottom:132.570000px;}
.y8a{bottom:134.760000px;}
.ya5{bottom:137.160000px;}
.y76{bottom:141.570000px;}
.y4{bottom:144.540000px;}
.yb5{bottom:147.240000px;}
.yfe{bottom:148.680000px;}
.yf0{bottom:148.950000px;}
.y89{bottom:149.430000px;}
.ya4{bottom:155.340000px;}
.y75{bottom:159.690000px;}
.yb4{bottom:163.650000px;}
.yfd{bottom:165.090000px;}
.yef{bottom:165.360000px;}
.y3c{bottom:165.900000px;}
.ya3{bottom:173.460000px;}
.y74{bottom:177.870000px;}
.yb3{bottom:180.030000px;}
.yfc{bottom:181.470000px;}
.yee{bottom:181.740000px;}
.y3b{bottom:183.990000px;}
.ya2{bottom:191.550000px;}
.y73{bottom:195.960000px;}
.yb2{bottom:196.410000px;}
.yfb{bottom:197.850000px;}
.yed{bottom:198.120000px;}
.y3a{bottom:202.080000px;}
.ya1{bottom:209.640000px;}
.yb1{bottom:212.790000px;}
.y72{bottom:214.050000px;}
.yfa{bottom:214.230000px;}
.yec{bottom:214.500000px;}
.y39{bottom:220.170000px;}
.ya0{bottom:227.820000px;}
.yb0{bottom:229.170000px;}
.yf9{bottom:230.610000px;}
.yeb{bottom:230.970000px;}
.y71{bottom:232.140000px;}
.y38{bottom:238.350000px;}
.yaf{bottom:245.550000px;}
.y9f{bottom:245.910000px;}
.yf8{bottom:246.990000px;}
.yea{bottom:247.350000px;}
.y70{bottom:250.320000px;}
.y37{bottom:256.440000px;}
.yae{bottom:262.020000px;}
.yf7{bottom:263.370000px;}
.ye9{bottom:263.730000px;}
.y9e{bottom:264.000000px;}
.y6f{bottom:268.410000px;}
.y36{bottom:274.530000px;}
.yad{bottom:278.400000px;}
.yf6{bottom:279.750000px;}
.ye8{bottom:280.110000px;}
.y6e{bottom:286.500000px;}
.y35{bottom:292.620000px;}
.yac{bottom:294.780000px;}
.yf5{bottom:296.130000px;}
.ye7{bottom:296.490000px;}
.y9c{bottom:296.760000px;}
.y6d{bottom:304.590000px;}
.y9b{bottom:310.620000px;}
.y34{bottom:310.800000px;}
.yab{bottom:311.160000px;}
.y96{bottom:311.340000px;}
.yf4{bottom:312.600000px;}
.ye6{bottom:312.870000px;}
.y6c{bottom:322.680000px;}
.yaa{bottom:327.540000px;}
.y33{bottom:329.070000px;}
.ye5{bottom:329.250000px;}
.y6b{bottom:340.860000px;}
.ya9{bottom:343.920000px;}
.ye4{bottom:345.630000px;}
.y32{bottom:347.970000px;}
.y6a{bottom:358.950000px;}
.ya8{bottom:360.300000px;}
.ye3{bottom:362.010000px;}
.y31{bottom:366.960000px;}
.y69{bottom:377.040000px;}
.ye2{bottom:378.390000px;}
.y30{bottom:385.950000px;}
.ye1{bottom:394.770000px;}
.y68{bottom:395.130000px;}
.y2f{bottom:404.940000px;}
.ye0{bottom:411.150000px;}
.y67{bottom:413.310000px;}
.y2e{bottom:423.570000px;}
.ydf{bottom:427.530000px;}
.y92{bottom:429.330000px;}
.y66{bottom:431.400000px;}
.y2d{bottom:440.760000px;}
.yde{bottom:443.910000px;}
.y65{bottom:449.490000px;}
.y2c{bottom:458.040000px;}
.ydd{bottom:460.290000px;}
.y64{bottom:467.580000px;}
.y2b{bottom:475.320000px;}
.ydc{bottom:476.760000px;}
.y63{bottom:485.760000px;}
.y2a{bottom:492.510000px;}
.ydb{bottom:493.140000px;}
.y62{bottom:503.850000px;}
.yda{bottom:509.520000px;}
.y29{bottom:509.790000px;}
.y61{bottom:521.940000px;}
.yd9{bottom:525.900000px;}
.y28{bottom:527.070000px;}
.y60{bottom:540.030000px;}
.yd8{bottom:542.280000px;}
.y27{bottom:544.260000px;}
.y88{bottom:547.410000px;}
.y5f{bottom:558.120000px;}
.yd7{bottom:558.660000px;}
.y26{bottom:561.540000px;}
.yd6{bottom:575.070000px;}
.y5e{bottom:576.330000px;}
.y25{bottom:578.850000px;}
.yd5{bottom:591.450000px;}
.y5d{bottom:594.420000px;}
.y24{bottom:596.040000px;}
.yd4{bottom:607.830000px;}
.y5c{bottom:612.510000px;}
.y23{bottom:613.950000px;}
.yd3{bottom:624.210000px;}
.y5b{bottom:630.600000px;}
.y22{bottom:633.660000px;}
.yd2{bottom:640.590000px;}
.y5a{bottom:648.780000px;}
.y21{bottom:649.770000px;}
.yd1{bottom:656.970000px;}
.y59{bottom:666.870000px;}
.y20{bottom:668.040000px;}
.yd0{bottom:673.350000px;}
.y58{bottom:684.960000px;}
.ycf{bottom:689.730000px;}
.y1f{bottom:693.690000px;}
.y57{bottom:703.050000px;}
.y1e{bottom:705.930000px;}
.yce{bottom:706.200000px;}
.y86{bottom:709.440000px;}
.y56{bottom:721.230000px;}
.ycd{bottom:722.580000px;}
.y1d{bottom:731.670000px;}
.ycc{bottom:738.960000px;}
.y55{bottom:739.320000px;}
.y1c{bottom:743.910000px;}
.ycb{bottom:755.340000px;}
.y54{bottom:757.410000px;}
.y1b{bottom:762.900000px;}
.yca{bottom:771.720000px;}
.y53{bottom:775.500000px;}
.y1a{bottom:781.800000px;}
.yc9{bottom:788.100000px;}
.y52{bottom:793.680000px;}
.y80{bottom:798.180000px;}
.y19{bottom:800.790000px;}
.yc8{bottom:804.480000px;}
.y51{bottom:811.770000px;}
.y18{bottom:819.780000px;}
.yc7{bottom:820.860000px;}
.y50{bottom:829.860000px;}
.yc6{bottom:837.240000px;}
.y17{bottom:845.520000px;}
.y4f{bottom:847.950000px;}
.yc5{bottom:853.620000px;}
.y16{bottom:863.610000px;}
.y4e{bottom:866.040000px;}
.yc4{bottom:870.000000px;}
.y15{bottom:876.120000px;}
.y4d{bottom:884.220000px;}
.yc3{bottom:886.380000px;}
.y7d{bottom:886.920000px;}
.y14{bottom:896.820000px;}
.y4c{bottom:902.310000px;}
.yc2{bottom:902.760000px;}
.y79{bottom:916.980000px;}
.y13{bottom:917.520000px;}
.yc1{bottom:919.140000px;}
.y4b{bottom:920.400000px;}
.yc0{bottom:935.520000px;}
.y4a{bottom:938.490000px;}
.y12{bottom:940.830000px;}
.ybf{bottom:951.990000px;}
.y49{bottom:956.670000px;}
.ybe{bottom:968.370000px;}
.y48{bottom:974.760000px;}
.y11{bottom:975.300000px;}
.ybd{bottom:984.750000px;}
.y47{bottom:992.880000px;}
.ybc{bottom:1001.160000px;}
.y10{bottom:1007.910000px;}
.y46{bottom:1010.970000px;}
.ybb{bottom:1017.540000px;}
.y45{bottom:1029.150000px;}
.yf{bottom:1032.030000px;}
.yba{bottom:1033.920000px;}
.y44{bottom:1047.240000px;}
.yb9{bottom:1050.300000px;}
.ye{bottom:1055.520000px;}
.y43{bottom:1065.330000px;}
.yb8{bottom:1066.680000px;}
.y3{bottom:1075.950000px;}
.y40{bottom:1090.170000px;}
.y2{bottom:1095.210000px;}
.y3d{bottom:1095.570000px;}
.y3f{bottom:1110.240000px;}
.y1{bottom:1115.910000px;}
.h22{height:2.581875px;}
.h23{height:13.860000px;}
.h5{height:21.082324px;}
.h2{height:21.607559px;}
.h18{height:29.340000px;}
.h19{height:36.068555px;}
.hb{height:37.759922px;}
.h4{height:39.049805px;}
.h15{height:39.690000px;}
.h10{height:42.418652px;}
.h24{height:42.923672px;}
.h14{height:44.450684px;}
.h1a{height:45.828281px;}
.h13{height:46.482715px;}
.h11{height:47.640762px;}
.h12{height:47.705098px;}
.h16{height:47.926758px;}
.h3{height:48.410156px;}
.h6{height:50.800781px;}
.h25{height:50.992031px;}
.h1{height:52.066406px;}
.h9{height:52.136719px;}
.h17{height:54.360000px;}
.h1c{height:56.411719px;}
.he{height:56.478516px;}
.ha{height:58.790918px;}
.hd{height:59.060391px;}
.hf{height:64.546875px;}
.hc{height:64.759922px;}
.h7{height:75.197109px;}
.h8{height:84.583301px;}
.h1b{height:87.930000px;}
.h1d{height:88.020000px;}
.h20{height:117.270000px;}
.h1f{height:117.360000px;}
.h1e{height:161.310000px;}
.h21{height:606.360000px;}
.h0{height:1188.000000px;}
.w5{width:43.830000px;}
.w9{width:131.250000px;}
.w6{width:133.110000px;}
.w8{width:133.920000px;}
.w7{width:139.530000px;}
.w4{width:144.750000px;}
.w2{width:341.670000px;}
.w3{width:745.290000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xa{left:-6.480000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x1{left:86.399986px;}
.x5{left:89.459986px;}
.xf{left:95.220000px;}
.x3{left:100.259986px;}
.xb{left:113.399986px;}
.x16{left:133.649986px;}
.x4{left:207.839986px;}
.x7{left:235.559986px;}
.x10{left:239.970000px;}
.x11{left:283.800000px;}
.x6{left:294.779986px;}
.x12{left:416.910000px;}
.x2{left:426.899986px;}
.x8{left:469.829986px;}
.xd{left:483.359986px;}
.x9{left:488.850000px;}
.xc{left:496.859986px;}
.x15{left:517.109986px;}
.x13{left:556.440000px;}
.x14{left:690.360000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.v3{vertical-align:24.000000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.147733pt;}
.lsb{letter-spacing:-0.088000pt;}
.ls16{letter-spacing:-0.048640pt;}
.ls5{letter-spacing:-0.040320pt;}
.ls11{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:-0.016000pt;}
.lse{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000003pt;}
.ls10{letter-spacing:0.024320pt;}
.ls15{letter-spacing:0.039467pt;}
.ls8{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.123733pt;}
.ls1{letter-spacing:0.127680pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.172160pt;}
.ls19{letter-spacing:0.172267pt;}
.ls13{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.400000pt;}
.ls3{letter-spacing:6.160000pt;}
.ls9{letter-spacing:1138.746667pt;}
.wsf{word-spacing:-45.440000pt;}
.ws2{word-spacing:-18.640000pt;}
.ws7{word-spacing:-14.800000pt;}
.ws1{word-spacing:-14.640000pt;}
.ws5{word-spacing:-14.599680pt;}
.wsb{word-spacing:-14.160000pt;}
.wsc{word-spacing:-14.096000pt;}
.wsd{word-spacing:-14.000000pt;}
.wsa{word-spacing:-13.912000pt;}
.ws9{word-spacing:-13.120000pt;}
.ws12{word-spacing:-12.640000pt;}
.ws13{word-spacing:-12.591360pt;}
.ws0{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.360003pt;}
.wse{word-spacing:-11.360000pt;}
.ws10{word-spacing:-11.344640pt;}
.ws4{word-spacing:-10.767680pt;}
.ws3{word-spacing:-10.640000pt;}
.ws6{word-spacing:-9.200000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-3.408000pt;}
._4{margin-left:-2.384000pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.594773pt;}
._2{width:2.730667pt;}
._3{width:3.700693pt;}
._b{width:5.036160pt;}
._d{width:6.173440pt;}
._e{width:7.535040pt;}
._7{width:9.193920pt;}
._8{width:10.215893pt;}
._c{width:11.578773pt;}
._18{width:13.048000pt;}
._31{width:13.973760pt;}
._25{width:14.896000pt;}
._a{width:16.113493pt;}
._13{width:17.557227pt;}
._9{width:18.973440pt;}
._12{width:20.720000pt;}
._10{width:22.344000pt;}
._f{width:23.408000pt;}
._1c{width:24.304000pt;}
._23{width:25.424000pt;}
._1f{width:26.712000pt;}
._24{width:28.168000pt;}
._2a{width:29.248000pt;}
._1a{width:30.520000pt;}
._1b{width:31.445227pt;}
._11{width:32.368000pt;}
._15{width:33.432000pt;}
._14{width:34.328000pt;}
._19{width:35.224000pt;}
._1d{width:36.680000pt;}
._20{width:38.080000pt;}
._2b{width:39.183893pt;}
._27{width:40.320000pt;}
._39{width:41.307520pt;}
._32{width:43.105920pt;}
._26{width:44.464000pt;}
._1e{width:45.584000pt;}
._37{width:48.340907pt;}
._38{width:50.610560pt;}
._2c{width:51.520000pt;}
._2d{width:52.528000pt;}
._2e{width:53.816000pt;}
._35{width:54.894400pt;}
._30{width:55.866667pt;}
._21{width:57.288000pt;}
._22{width:58.970667pt;}
._29{width:65.296000pt;}
._28{width:66.528000pt;}
._36{width:67.607680pt;}
._33{width:71.127040pt;}
._17{width:77.168000pt;}
._16{width:78.064000pt;}
._2f{width:97.104000pt;}
._34{width:105.164800pt;}
._6{width:2633.920000pt;}
.fsb{font-size:2.560000pt;}
.fs3{font-size:26.560000pt;}
.fs8{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fsa{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs9{font-size:56.000000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs6{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:2.400000pt;}
.y7f{bottom:2.480000pt;}
.y7c{bottom:3.040000pt;}
.y3e{bottom:3.200000pt;}
.yd{bottom:10.880000pt;}
.y7e{bottom:15.520000pt;}
.y7b{bottom:19.120000pt;}
.yc{bottom:28.480000pt;}
.y84{bottom:28.560000pt;}
.y91{bottom:28.586667pt;}
.y7a{bottom:35.280000pt;}
.y42{bottom:41.280000pt;}
.y83{bottom:41.600000pt;}
.y90{bottom:41.626667pt;}
.yb{bottom:42.880000pt;}
.y99{bottom:54.560000pt;}
.y82{bottom:54.640000pt;}
.y8f{bottom:54.666667pt;}
.ya{bottom:57.920000pt;}
.y41{bottom:59.440000pt;}
.y85{bottom:65.920000pt;}
.y87{bottom:66.000000pt;}
.y9{bottom:66.800000pt;}
.y98{bottom:67.600000pt;}
.y81{bottom:67.680000pt;}
.y8e{bottom:67.706667pt;}
.y8{bottom:80.560000pt;}
.y97{bottom:80.640000pt;}
.y8d{bottom:80.666667pt;}
.y94{bottom:80.720000pt;}
.y101{bottom:88.400000pt;}
.yf3{bottom:88.720000pt;}
.ya7{bottom:89.760000pt;}
.y9a{bottom:92.000000pt;}
.y95{bottom:92.080000pt;}
.y7{bottom:93.200000pt;}
.y78{bottom:93.680000pt;}
.y8c{bottom:93.706667pt;}
.y93{bottom:93.760000pt;}
.yb7{bottom:101.760000pt;}
.y6{bottom:102.080000pt;}
.y100{bottom:103.040000pt;}
.yf2{bottom:103.280000pt;}
.ya6{bottom:105.840000pt;}
.y8b{bottom:106.746667pt;}
.y77{bottom:109.760000pt;}
.y5{bottom:115.840000pt;}
.yb6{bottom:116.320000pt;}
.yff{bottom:117.600000pt;}
.yf1{bottom:117.840000pt;}
.y8a{bottom:119.786667pt;}
.ya5{bottom:121.920000pt;}
.y76{bottom:125.840000pt;}
.y4{bottom:128.480000pt;}
.yb5{bottom:130.880000pt;}
.yfe{bottom:132.160000pt;}
.yf0{bottom:132.400000pt;}
.y89{bottom:132.826667pt;}
.ya4{bottom:138.080000pt;}
.y75{bottom:141.946667pt;}
.yb4{bottom:145.466667pt;}
.yfd{bottom:146.746667pt;}
.yef{bottom:146.986667pt;}
.y3c{bottom:147.466667pt;}
.ya3{bottom:154.186667pt;}
.y74{bottom:158.106667pt;}
.yb3{bottom:160.026667pt;}
.yfc{bottom:161.306667pt;}
.yee{bottom:161.546667pt;}
.y3b{bottom:163.546667pt;}
.ya2{bottom:170.266667pt;}
.y73{bottom:174.186667pt;}
.yb2{bottom:174.586667pt;}
.yfb{bottom:175.866667pt;}
.yed{bottom:176.106667pt;}
.y3a{bottom:179.626667pt;}
.ya1{bottom:186.346667pt;}
.yb1{bottom:189.146667pt;}
.y72{bottom:190.266667pt;}
.yfa{bottom:190.426667pt;}
.yec{bottom:190.666667pt;}
.y39{bottom:195.706667pt;}
.ya0{bottom:202.506667pt;}
.yb0{bottom:203.706667pt;}
.yf9{bottom:204.986667pt;}
.yeb{bottom:205.306667pt;}
.y71{bottom:206.346667pt;}
.y38{bottom:211.866667pt;}
.yaf{bottom:218.266667pt;}
.y9f{bottom:218.586667pt;}
.yf8{bottom:219.546667pt;}
.yea{bottom:219.866667pt;}
.y70{bottom:222.506667pt;}
.y37{bottom:227.946667pt;}
.yae{bottom:232.906667pt;}
.yf7{bottom:234.106667pt;}
.ye9{bottom:234.426667pt;}
.y9e{bottom:234.666667pt;}
.y6f{bottom:238.586667pt;}
.y36{bottom:244.026667pt;}
.yad{bottom:247.466667pt;}
.yf6{bottom:248.666667pt;}
.ye8{bottom:248.986667pt;}
.y6e{bottom:254.666667pt;}
.y35{bottom:260.106667pt;}
.yac{bottom:262.026667pt;}
.yf5{bottom:263.226667pt;}
.ye7{bottom:263.546667pt;}
.y9c{bottom:263.786667pt;}
.y6d{bottom:270.746667pt;}
.y9b{bottom:276.106667pt;}
.y34{bottom:276.266667pt;}
.yab{bottom:276.586667pt;}
.y96{bottom:276.746667pt;}
.yf4{bottom:277.866667pt;}
.ye6{bottom:278.106667pt;}
.y6c{bottom:286.826667pt;}
.yaa{bottom:291.146667pt;}
.y33{bottom:292.506667pt;}
.ye5{bottom:292.666667pt;}
.y6b{bottom:302.986667pt;}
.ya9{bottom:305.706667pt;}
.ye4{bottom:307.226667pt;}
.y32{bottom:309.306667pt;}
.y6a{bottom:319.066667pt;}
.ya8{bottom:320.266667pt;}
.ye3{bottom:321.786667pt;}
.y31{bottom:326.186667pt;}
.y69{bottom:335.146667pt;}
.ye2{bottom:336.346667pt;}
.y30{bottom:343.066667pt;}
.ye1{bottom:350.906667pt;}
.y68{bottom:351.226667pt;}
.y2f{bottom:359.946667pt;}
.ye0{bottom:365.466667pt;}
.y67{bottom:367.386667pt;}
.y2e{bottom:376.506667pt;}
.ydf{bottom:380.026667pt;}
.y92{bottom:381.626667pt;}
.y66{bottom:383.466667pt;}
.y2d{bottom:391.786667pt;}
.yde{bottom:394.586667pt;}
.y65{bottom:399.546667pt;}
.y2c{bottom:407.146667pt;}
.ydd{bottom:409.146667pt;}
.y64{bottom:415.626667pt;}
.y2b{bottom:422.506667pt;}
.ydc{bottom:423.786667pt;}
.y63{bottom:431.786667pt;}
.y2a{bottom:437.786667pt;}
.ydb{bottom:438.346667pt;}
.y62{bottom:447.866667pt;}
.yda{bottom:452.906667pt;}
.y29{bottom:453.146667pt;}
.y61{bottom:463.946667pt;}
.yd9{bottom:467.466667pt;}
.y28{bottom:468.506667pt;}
.y60{bottom:480.026667pt;}
.yd8{bottom:482.026667pt;}
.y27{bottom:483.786667pt;}
.y88{bottom:486.586667pt;}
.y5f{bottom:496.106667pt;}
.yd7{bottom:496.586667pt;}
.y26{bottom:499.146667pt;}
.yd6{bottom:511.173333pt;}
.y5e{bottom:512.293333pt;}
.y25{bottom:514.533333pt;}
.yd5{bottom:525.733333pt;}
.y5d{bottom:528.373333pt;}
.y24{bottom:529.813333pt;}
.yd4{bottom:540.293333pt;}
.y5c{bottom:544.453333pt;}
.y23{bottom:545.733333pt;}
.yd3{bottom:554.853333pt;}
.y5b{bottom:560.533333pt;}
.y22{bottom:563.253333pt;}
.yd2{bottom:569.413333pt;}
.y5a{bottom:576.693333pt;}
.y21{bottom:577.573333pt;}
.yd1{bottom:583.973333pt;}
.y59{bottom:592.773333pt;}
.y20{bottom:593.813333pt;}
.yd0{bottom:598.533333pt;}
.y58{bottom:608.853333pt;}
.ycf{bottom:613.093333pt;}
.y1f{bottom:616.613333pt;}
.y57{bottom:624.933333pt;}
.y1e{bottom:627.493333pt;}
.yce{bottom:627.733333pt;}
.y86{bottom:630.613333pt;}
.y56{bottom:641.093333pt;}
.ycd{bottom:642.293333pt;}
.y1d{bottom:650.373333pt;}
.ycc{bottom:656.853333pt;}
.y55{bottom:657.173333pt;}
.y1c{bottom:661.253333pt;}
.ycb{bottom:671.413333pt;}
.y54{bottom:673.253333pt;}
.y1b{bottom:678.133333pt;}
.yca{bottom:685.973333pt;}
.y53{bottom:689.333333pt;}
.y1a{bottom:694.933333pt;}
.yc9{bottom:700.533333pt;}
.y52{bottom:705.493333pt;}
.y80{bottom:709.493333pt;}
.y19{bottom:711.813333pt;}
.yc8{bottom:715.093333pt;}
.y51{bottom:721.573333pt;}
.y18{bottom:728.693333pt;}
.yc7{bottom:729.653333pt;}
.y50{bottom:737.653333pt;}
.yc6{bottom:744.213333pt;}
.y17{bottom:751.573333pt;}
.y4f{bottom:753.733333pt;}
.yc5{bottom:758.773333pt;}
.y16{bottom:767.653333pt;}
.y4e{bottom:769.813333pt;}
.yc4{bottom:773.333333pt;}
.y15{bottom:778.773333pt;}
.y4d{bottom:785.973333pt;}
.yc3{bottom:787.893333pt;}
.y7d{bottom:788.373333pt;}
.y14{bottom:797.173333pt;}
.y4c{bottom:802.053333pt;}
.yc2{bottom:802.453333pt;}
.y79{bottom:815.093333pt;}
.y13{bottom:815.573333pt;}
.yc1{bottom:817.013333pt;}
.y4b{bottom:818.133333pt;}
.yc0{bottom:831.573333pt;}
.y4a{bottom:834.213333pt;}
.y12{bottom:836.293333pt;}
.ybf{bottom:846.213333pt;}
.y49{bottom:850.373333pt;}
.ybe{bottom:860.773333pt;}
.y48{bottom:866.453333pt;}
.y11{bottom:866.933333pt;}
.ybd{bottom:875.333333pt;}
.y47{bottom:882.560000pt;}
.ybc{bottom:889.920000pt;}
.y10{bottom:895.920000pt;}
.y46{bottom:898.640000pt;}
.ybb{bottom:904.480000pt;}
.y45{bottom:914.800000pt;}
.yf{bottom:917.360000pt;}
.yba{bottom:919.040000pt;}
.y44{bottom:930.880000pt;}
.yb9{bottom:933.600000pt;}
.ye{bottom:938.240000pt;}
.y43{bottom:946.960000pt;}
.yb8{bottom:948.160000pt;}
.y3{bottom:956.400000pt;}
.y40{bottom:969.040000pt;}
.y2{bottom:973.520000pt;}
.y3d{bottom:973.840000pt;}
.y3f{bottom:986.880000pt;}
.y1{bottom:991.920000pt;}
.h22{height:2.295000pt;}
.h23{height:12.320000pt;}
.h5{height:18.739844pt;}
.h2{height:19.206719pt;}
.h18{height:26.080000pt;}
.h19{height:32.060937pt;}
.hb{height:33.564375pt;}
.h4{height:34.710938pt;}
.h15{height:35.280000pt;}
.h10{height:37.705469pt;}
.h24{height:38.154375pt;}
.h14{height:39.511719pt;}
.h1a{height:40.736250pt;}
.h13{height:41.317969pt;}
.h11{height:42.347344pt;}
.h12{height:42.404531pt;}
.h16{height:42.601562pt;}
.h3{height:43.031250pt;}
.h6{height:45.156250pt;}
.h25{height:45.326250pt;}
.h1{height:46.281250pt;}
.h9{height:46.343750pt;}
.h17{height:48.320000pt;}
.h1c{height:50.143750pt;}
.he{height:50.203125pt;}
.ha{height:52.258594pt;}
.hd{height:52.498125pt;}
.hf{height:57.375000pt;}
.hc{height:57.564375pt;}
.h7{height:66.841875pt;}
.h8{height:75.185156pt;}
.h1b{height:78.160000pt;}
.h1d{height:78.240000pt;}
.h20{height:104.240000pt;}
.h1f{height:104.320000pt;}
.h1e{height:143.386667pt;}
.h21{height:538.986667pt;}
.h0{height:1056.000000pt;}
.w5{width:38.960000pt;}
.w9{width:116.666667pt;}
.w6{width:118.320000pt;}
.w8{width:119.040000pt;}
.w7{width:124.026667pt;}
.w4{width:128.666667pt;}
.w2{width:303.706667pt;}
.w3{width:662.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xa{left:-5.760000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x1{left:76.799988pt;}
.x5{left:79.519988pt;}
.xf{left:84.640000pt;}
.x3{left:89.119988pt;}
.xb{left:100.799988pt;}
.x16{left:118.799988pt;}
.x4{left:184.746655pt;}
.x7{left:209.386655pt;}
.x10{left:213.306667pt;}
.x11{left:252.266667pt;}
.x6{left:262.026655pt;}
.x12{left:370.586667pt;}
.x2{left:379.466655pt;}
.x8{left:417.626655pt;}
.xd{left:429.653321pt;}
.x9{left:434.533333pt;}
.xc{left:441.653321pt;}
.x15{left:459.653321pt;}
.x13{left:494.613333pt;}
.x14{left:613.653333pt;}
}




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