
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a6e8697961d2612dd1407478.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8c28b4634fadb15c0516cc55.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_645c453e45618213eb2bcf84.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ec56e7fbd8c805a2f613a1c4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9b93f98998183be1ff3ddd30.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f547de336285b10f84feaf95.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d4083c2493d46a084dca8790.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls1a{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.lsb{letter-spacing:-0.049800px;}
.ls1d{letter-spacing:-0.038880px;}
.ls16{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls13{letter-spacing:0.064800px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.110400px;}
.ls19{letter-spacing:0.116400px;}
.ls12{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.564000px;}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.ws7{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.ws14{word-spacing:-13.187520px;}
.ws4{word-spacing:-13.176600px;}
.wse{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.101000px;}
.ws12{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._7{margin-left:-4.068072px;}
._1{margin-left:-3.046164px;}
._0{margin-left:-1.110000px;}
._2{width:1.236503px;}
._9{width:2.613601px;}
._8{width:3.667200px;}
._5{width:4.701960px;}
._3{width:6.108600px;}
._d{width:7.285319px;}
._4{width:8.325717px;}
._f{width:10.131123px;}
._6{width:11.482800px;}
._a{width:15.004680px;}
._b{width:16.197600px;}
._c{width:17.713297px;}
._12{width:19.020023px;}
._27{width:20.561040px;}
._10{width:21.583080px;}
._e{width:22.905720px;}
._11{width:24.266160px;}
._13{width:25.551000px;}
._14{width:26.626897px;}
._1a{width:29.699280px;}
._23{width:34.569000px;}
._1b{width:36.192240px;}
._15{width:38.897640px;}
._2f{width:39.919680px;}
._26{width:44.488800px;}
._28{width:51.823440px;}
._30{width:53.206200px;}
._37{width:55.995480px;}
._31{width:57.835440px;}
._1e{width:60.841440px;}
._24{width:71.542800px;}
._29{width:73.045800px;}
._17{width:77.194080px;}
._2a{width:90.059760px;}
._2e{width:97.274160px;}
._1f{width:106.773120px;}
._22{width:107.975520px;}
._35{width:116.175600px;}
._36{width:117.523440px;}
._33{width:119.428200px;}
._32{width:122.762640px;}
._20{width:130.400280px;}
._2c{width:140.199840px;}
._21{width:197.614440px;}
._19{width:209.397960px;}
._16{width:212.343840px;}
._1d{width:246.071160px;}
._25{width:248.896800px;}
._1c{width:262.002960px;}
._34{width:264.377520px;}
._2d{width:269.517960px;}
._18{width:288.155160px;}
._2b{width:331.020720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:7.830000px;}
.ya2{bottom:7.920000px;}
.yfb{bottom:25.380000px;}
.y9e{bottom:25.470000px;}
.ya1{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y8d{bottom:120.450000px;}
.y57{bottom:121.530000px;}
.yb5{bottom:134.220000px;}
.y74{bottom:137.550000px;}
.y8c{bottom:138.000000px;}
.yf6{bottom:138.180000px;}
.y56{bottom:139.170000px;}
.ycf{bottom:142.410000px;}
.yb4{bottom:151.770000px;}
.y55{bottom:156.720000px;}
.yce{bottom:159.960000px;}
.y8b{bottom:164.550000px;}
.yb3{bottom:169.410000px;}
.y73{bottom:173.190000px;}
.yf5{bottom:173.820000px;}
.y54{bottom:174.270000px;}
.ycd{bottom:186.600000px;}
.yb2{bottom:186.960000px;}
.y72{bottom:190.740000px;}
.yf4{bottom:191.370000px;}
.y53{bottom:191.910000px;}
.y8a{bottom:200.190000px;}
.yb1{bottom:204.600000px;}
.y108{bottom:204.960000px;}
.y71{bottom:208.380000px;}
.yf3{bottom:208.920000px;}
.y52{bottom:209.460000px;}
.y89{bottom:217.740000px;}
.yb0{bottom:222.150000px;}
.y107{bottom:222.600000px;}
.y70{bottom:225.930000px;}
.y23{bottom:226.560000px;}
.y51{bottom:227.100000px;}
.y88{bottom:235.380000px;}
.yaf{bottom:239.700000px;}
.ycc{bottom:239.790000px;}
.y106{bottom:240.150000px;}
.y6f{bottom:243.480000px;}
.yf2{bottom:244.110000px;}
.y22{bottom:244.200000px;}
.y87{bottom:252.930000px;}
.y50{bottom:253.650000px;}
.yae{bottom:257.340000px;}
.y105{bottom:257.700000px;}
.y6e{bottom:261.120000px;}
.y21{bottom:261.750000px;}
.y86{bottom:270.480000px;}
.yad{bottom:274.890000px;}
.y104{bottom:275.340000px;}
.y6d{bottom:278.670000px;}
.y20{bottom:279.300000px;}
.y85{bottom:288.120000px;}
.y4f{bottom:289.200000px;}
.y103{bottom:292.890000px;}
.y6c{bottom:296.310000px;}
.yf1{bottom:296.850000px;}
.y1f{bottom:296.940000px;}
.yac{bottom:301.440000px;}
.ycb{bottom:301.530000px;}
.y84{bottom:305.670000px;}
.y4e{bottom:306.840000px;}
.y102{bottom:310.440000px;}
.y1e{bottom:314.490000px;}
.y6b{bottom:322.860000px;}
.y83{bottom:323.310000px;}
.yf0{bottom:323.490000px;}
.y4d{bottom:324.390000px;}
.y101{bottom:328.080000px;}
.y1d{bottom:332.130000px;}
.yab{bottom:337.080000px;}
.y82{bottom:340.860000px;}
.y4c{bottom:341.940000px;}
.y100{bottom:345.630000px;}
.y1c{bottom:349.680000px;}
.yaa{bottom:354.630000px;}
.y6a{bottom:358.410000px;}
.yef{bottom:359.040000px;}
.y4b{bottom:359.580000px;}
.yff{bottom:363.270000px;}
.yca{bottom:363.720000px;}
.y81{bottom:367.410000px;}
.ya9{bottom:372.270000px;}
.y69{bottom:376.050000px;}
.y1b{bottom:376.230000px;}
.yee{bottom:376.680000px;}
.y4a{bottom:377.130000px;}
.ya8{bottom:389.820000px;}
.yfe{bottom:390.180000px;}
.y68{bottom:393.600000px;}
.yed{bottom:394.230000px;}
.y49{bottom:394.770000px;}
.yc9{bottom:399.270000px;}
.y80{bottom:403.050000px;}
.ya7{bottom:407.370000px;}
.y67{bottom:411.240000px;}
.yec{bottom:411.780000px;}
.y1a{bottom:411.870000px;}
.y48{bottom:412.320000px;}
.yc8{bottom:416.820000px;}
.y7f{bottom:420.600000px;}
.y66{bottom:428.790000px;}
.y19{bottom:429.420000px;}
.y47{bottom:429.870000px;}
.ya6{bottom:434.280000px;}
.yc7{bottom:435.270000px;}
.yfd{bottom:435.810000px;}
.y7e{bottom:438.240000px;}
.y65{bottom:446.340000px;}
.yeb{bottom:446.970000px;}
.y18{bottom:447.060000px;}
.yc6{bottom:453.630000px;}
.y7d{bottom:455.790000px;}
.y46{bottom:456.510000px;}
.y64{bottom:463.980000px;}
.y17{bottom:464.610000px;}
.y7c{bottom:473.370000px;}
.yea{bottom:473.910000px;}
.ya5{bottom:480.030000px;}
.yfc{bottom:480.750000px;}
.yc5{bottom:481.110000px;}
.y63{bottom:481.560000px;}
.y16{bottom:482.190000px;}
.y7b{bottom:491.010000px;}
.y45{bottom:492.090000px;}
.y62{bottom:499.200000px;}
.y15{bottom:509.100000px;}
.y44{bottom:509.730000px;}
.yc4{bottom:516.750000px;}
.y7a{bottom:517.920000px;}
.ye9{bottom:522.150000px;}
.y61{bottom:525.750000px;}
.y43{bottom:527.280000px;}
.yc3{bottom:534.300000px;}
.ye8{bottom:539.700000px;}
.ya4{bottom:542.490000px;}
.yfa{bottom:543.300000px;}
.y124{bottom:544.470000px;}
.y42{bottom:544.830000px;}
.yc2{bottom:551.850000px;}
.y14{bottom:557.430000px;}
.ye7{bottom:558.150000px;}
.y60{bottom:561.300000px;}
.y123{bottom:562.020000px;}
.y41{bottom:562.470000px;}
.y79{bottom:566.160000px;}
.y13{bottom:575.340000px;}
.ye6{bottom:575.700000px;}
.y5f{bottom:578.940000px;}
.y40{bottom:580.020000px;}
.yc1{bottom:587.490000px;}
.y122{bottom:588.660000px;}
.ye5{bottom:594.150000px;}
.y5e{bottom:596.490000px;}
.y3f{bottom:597.660000px;}
.y78{bottom:598.380000px;}
.ya3{bottom:605.040000px;}
.yf9{bottom:605.760000px;}
.y121{bottom:606.210000px;}
.y12{bottom:612.330000px;}
.ye4{bottom:612.600000px;}
.y5d{bottom:614.040000px;}
.y3e{bottom:615.210000px;}
.yc0{bottom:622.590000px;}
.y120{bottom:623.760000px;}
.y11{bottom:629.880000px;}
.ye3{bottom:630.150000px;}
.y5c{bottom:631.680000px;}
.ybf{bottom:640.230000px;}
.y3d{bottom:641.760000px;}
.y10{bottom:647.520000px;}
.ye2{bottom:648.600000px;}
.y11f{bottom:650.400000px;}
.y5b{bottom:658.590000px;}
.yf{bottom:665.070000px;}
.ye1{bottom:666.150000px;}
.ybe{bottom:666.780000px;}
.ya0{bottom:667.500000px;}
.y11e{bottom:667.950000px;}
.yf8{bottom:668.310000px;}
.y3c{bottom:677.400000px;}
.ye{bottom:682.710000px;}
.ye0{bottom:693.600000px;}
.y11d{bottom:694.590000px;}
.y3b{bottom:694.950000px;}
.ybd{bottom:699.360000px;}
.yd{bottom:700.260000px;}
.y5a{bottom:706.830000px;}
.y11c{bottom:712.140000px;}
.y3a{bottom:712.590000px;}
.yf7{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.ydf{bottom:729.150000px;}
.y9d{bottom:730.050000px;}
.y39{bottom:730.140000px;}
.ybc{bottom:735.000000px;}
.yb{bottom:735.450000px;}
.y11b{bottom:738.690000px;}
.y59{bottom:739.050000px;}
.y38{bottom:747.690000px;}
.ybb{bottom:752.550000px;}
.ya{bottom:753.000000px;}
.y11a{bottom:756.330000px;}
.yde{bottom:764.790000px;}
.y37{bottom:765.330000px;}
.yba{bottom:770.190000px;}
.y9{bottom:779.910000px;}
.ydd{bottom:782.340000px;}
.y119{bottom:782.880000px;}
.yb9{bottom:787.740000px;}
.y36{bottom:792.240000px;}
.y9c{bottom:796.290000px;}
.ydc{bottom:799.980000px;}
.y118{bottom:800.520000px;}
.yb8{bottom:805.290000px;}
.yb7{bottom:822.930000px;}
.y117{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.y9b{bottom:831.930000px;}
.ydb{bottom:835.440000px;}
.y35{bottom:840.480000px;}
.y116{bottom:844.620000px;}
.y9a{bottom:849.480000px;}
.yda{bottom:853.890000px;}
.y34{bottom:858.030000px;}
.y7{bottom:863.790000px;}
.y99{bottom:867.030000px;}
.y115{bottom:871.260000px;}
.yd9{bottom:872.340000px;}
.y33{bottom:875.670000px;}
.y98{bottom:884.670000px;}
.y114{bottom:888.810000px;}
.yd8{bottom:890.700000px;}
.y32{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.y97{bottom:902.220000px;}
.y113{bottom:906.450000px;}
.yd7{bottom:909.150000px;}
.y31{bottom:910.860000px;}
.y96{bottom:919.860000px;}
.y30{bottom:928.410000px;}
.y112{bottom:933.000000px;}
.y5{bottom:935.610000px;}
.yd6{bottom:936.600000px;}
.y95{bottom:937.410000px;}
.y2f{bottom:945.960000px;}
.y111{bottom:950.550000px;}
.y94{bottom:954.960000px;}
.yb6{bottom:955.410000px;}
.y2e{bottom:963.600000px;}
.y110{bottom:968.190000px;}
.y4{bottom:971.700000px;}
.yd5{bottom:972.150000px;}
.y93{bottom:972.600000px;}
.y77{bottom:972.960000px;}
.y10f{bottom:985.740000px;}
.y2d{bottom:990.150000px;}
.y76{bottom:990.600000px;}
.yd4{bottom:1007.790000px;}
.y75{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y10e{bottom:1012.320000px;}
.y92{bottom:1016.820000px;}
.yd3{bottom:1025.370000px;}
.y2c{bottom:1025.820000px;}
.y10d{bottom:1038.960000px;}
.yd2{bottom:1042.920000px;}
.y2b{bottom:1043.370000px;}
.y91{bottom:1052.370000px;}
.y10c{bottom:1056.510000px;}
.yd1{bottom:1060.560000px;}
.y2a{bottom:1060.920000px;}
.y90{bottom:1069.920000px;}
.y29{bottom:1078.560000px;}
.y10b{bottom:1083.150000px;}
.yd0{bottom:1087.110000px;}
.y8f{bottom:1087.560000px;}
.y28{bottom:1096.110000px;}
.y10a{bottom:1100.700000px;}
.y8e{bottom:1105.110000px;}
.y27{bottom:1113.750000px;}
.y58{bottom:1122.750000px;}
.y109{bottom:1127.610000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h9{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.ha{height:61.740000px;}
.hc{height:61.793886px;}
.h7{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:119.370000px;}
.w3{width:151.140000px;}
.w5{width:180.930000px;}
.w6{width:189.450000px;}
.w9{width:189.480000px;}
.w8{width:194.850000px;}
.w4{width:231.840000px;}
.wa{width:249.750000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:95.039987px;}
.x11{left:111.239987px;}
.xd{left:122.039987px;}
.xe{left:188.850000px;}
.x2{left:202.799987px;}
.x9{left:220.710000px;}
.x7{left:267.239987px;}
.x5{left:277.769987px;}
.xf{left:384.510000px;}
.xa{left:453.360000px;}
.x10{left:574.710000px;}
.xb{left:635.010000px;}
.x6{left:762.809987px;}
.x4{left:779.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls1a{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.lsb{letter-spacing:-0.044267pt;}
.ls1d{letter-spacing:-0.034560pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls13{letter-spacing:0.057600pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.098133pt;}
.ls19{letter-spacing:0.103467pt;}
.ls12{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.wsd{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.501333pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.ws7{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws14{word-spacing:-11.722240pt;}
.ws4{word-spacing:-11.712533pt;}
.wse{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.645333pt;}
.ws12{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._7{margin-left:-3.616064pt;}
._1{margin-left:-2.707701pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.099114pt;}
._9{width:2.323201pt;}
._8{width:3.259733pt;}
._5{width:4.179520pt;}
._3{width:5.429867pt;}
._d{width:6.475839pt;}
._4{width:7.400637pt;}
._f{width:9.005443pt;}
._6{width:10.206933pt;}
._a{width:13.337494pt;}
._b{width:14.397866pt;}
._c{width:15.745153pt;}
._12{width:16.906687pt;}
._27{width:18.276480pt;}
._10{width:19.184960pt;}
._e{width:20.360640pt;}
._11{width:21.569920pt;}
._13{width:22.712000pt;}
._14{width:23.668353pt;}
._1a{width:26.399360pt;}
._23{width:30.728000pt;}
._1b{width:32.170880pt;}
._15{width:34.575680pt;}
._2f{width:35.484160pt;}
._26{width:39.545600pt;}
._28{width:46.065280pt;}
._30{width:47.294400pt;}
._37{width:49.773760pt;}
._31{width:51.409280pt;}
._1e{width:54.081280pt;}
._24{width:63.593600pt;}
._29{width:64.929600pt;}
._17{width:68.616960pt;}
._2a{width:80.053120pt;}
._2e{width:86.465920pt;}
._1f{width:94.909440pt;}
._22{width:95.978240pt;}
._35{width:103.267200pt;}
._36{width:104.465280pt;}
._33{width:106.158400pt;}
._32{width:109.122347pt;}
._20{width:115.911360pt;}
._2c{width:124.622080pt;}
._21{width:175.657280pt;}
._19{width:186.131520pt;}
._16{width:188.750080pt;}
._1d{width:218.729920pt;}
._25{width:221.241600pt;}
._1c{width:232.891520pt;}
._34{width:235.002240pt;}
._2d{width:239.571520pt;}
._18{width:256.137920pt;}
._2b{width:294.240640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:6.960000pt;}
.ya2{bottom:7.040000pt;}
.yfb{bottom:22.560000pt;}
.y9e{bottom:22.640000pt;}
.ya1{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y8d{bottom:107.066667pt;}
.y57{bottom:108.026667pt;}
.yb5{bottom:119.306667pt;}
.y74{bottom:122.266667pt;}
.y8c{bottom:122.666667pt;}
.yf6{bottom:122.826667pt;}
.y56{bottom:123.706667pt;}
.ycf{bottom:126.586667pt;}
.yb4{bottom:134.906667pt;}
.y55{bottom:139.306667pt;}
.yce{bottom:142.186667pt;}
.y8b{bottom:146.266667pt;}
.yb3{bottom:150.586667pt;}
.y73{bottom:153.946667pt;}
.yf5{bottom:154.506667pt;}
.y54{bottom:154.906667pt;}
.ycd{bottom:165.866667pt;}
.yb2{bottom:166.186667pt;}
.y72{bottom:169.546667pt;}
.yf4{bottom:170.106667pt;}
.y53{bottom:170.586667pt;}
.y8a{bottom:177.946667pt;}
.yb1{bottom:181.866667pt;}
.y108{bottom:182.186667pt;}
.y71{bottom:185.226667pt;}
.yf3{bottom:185.706667pt;}
.y52{bottom:186.186667pt;}
.y89{bottom:193.546667pt;}
.yb0{bottom:197.466667pt;}
.y107{bottom:197.866667pt;}
.y70{bottom:200.826667pt;}
.y23{bottom:201.386667pt;}
.y51{bottom:201.866667pt;}
.y88{bottom:209.226667pt;}
.yaf{bottom:213.066667pt;}
.ycc{bottom:213.146667pt;}
.y106{bottom:213.466667pt;}
.y6f{bottom:216.426667pt;}
.yf2{bottom:216.986667pt;}
.y22{bottom:217.066667pt;}
.y87{bottom:224.826667pt;}
.y50{bottom:225.466667pt;}
.yae{bottom:228.746667pt;}
.y105{bottom:229.066667pt;}
.y6e{bottom:232.106667pt;}
.y21{bottom:232.666667pt;}
.y86{bottom:240.426667pt;}
.yad{bottom:244.346667pt;}
.y104{bottom:244.746667pt;}
.y6d{bottom:247.706667pt;}
.y20{bottom:248.266667pt;}
.y85{bottom:256.106667pt;}
.y4f{bottom:257.066667pt;}
.y103{bottom:260.346667pt;}
.y6c{bottom:263.386667pt;}
.yf1{bottom:263.866667pt;}
.y1f{bottom:263.946667pt;}
.yac{bottom:267.946667pt;}
.ycb{bottom:268.026667pt;}
.y84{bottom:271.706667pt;}
.y4e{bottom:272.746667pt;}
.y102{bottom:275.946667pt;}
.y1e{bottom:279.546667pt;}
.y6b{bottom:286.986667pt;}
.y83{bottom:287.386667pt;}
.yf0{bottom:287.546667pt;}
.y4d{bottom:288.346667pt;}
.y101{bottom:291.626667pt;}
.y1d{bottom:295.226667pt;}
.yab{bottom:299.626667pt;}
.y82{bottom:302.986667pt;}
.y4c{bottom:303.946667pt;}
.y100{bottom:307.226667pt;}
.y1c{bottom:310.826667pt;}
.yaa{bottom:315.226667pt;}
.y6a{bottom:318.586667pt;}
.yef{bottom:319.146667pt;}
.y4b{bottom:319.626667pt;}
.yff{bottom:322.906667pt;}
.yca{bottom:323.306667pt;}
.y81{bottom:326.586667pt;}
.ya9{bottom:330.906667pt;}
.y69{bottom:334.266667pt;}
.y1b{bottom:334.426667pt;}
.yee{bottom:334.826667pt;}
.y4a{bottom:335.226667pt;}
.ya8{bottom:346.506667pt;}
.yfe{bottom:346.826667pt;}
.y68{bottom:349.866667pt;}
.yed{bottom:350.426667pt;}
.y49{bottom:350.906667pt;}
.yc9{bottom:354.906667pt;}
.y80{bottom:358.266667pt;}
.ya7{bottom:362.106667pt;}
.y67{bottom:365.546667pt;}
.yec{bottom:366.026667pt;}
.y1a{bottom:366.106667pt;}
.y48{bottom:366.506667pt;}
.yc8{bottom:370.506667pt;}
.y7f{bottom:373.866667pt;}
.y66{bottom:381.146667pt;}
.y19{bottom:381.706667pt;}
.y47{bottom:382.106667pt;}
.ya6{bottom:386.026667pt;}
.yc7{bottom:386.906667pt;}
.yfd{bottom:387.386667pt;}
.y7e{bottom:389.546667pt;}
.y65{bottom:396.746667pt;}
.yeb{bottom:397.306667pt;}
.y18{bottom:397.386667pt;}
.yc6{bottom:403.226667pt;}
.y7d{bottom:405.146667pt;}
.y46{bottom:405.786667pt;}
.y64{bottom:412.426667pt;}
.y17{bottom:412.986667pt;}
.y7c{bottom:420.773333pt;}
.yea{bottom:421.253333pt;}
.ya5{bottom:426.693333pt;}
.yfc{bottom:427.333333pt;}
.yc5{bottom:427.653333pt;}
.y63{bottom:428.053333pt;}
.y16{bottom:428.613333pt;}
.y7b{bottom:436.453333pt;}
.y45{bottom:437.413333pt;}
.y62{bottom:443.733333pt;}
.y15{bottom:452.533333pt;}
.y44{bottom:453.093333pt;}
.yc4{bottom:459.333333pt;}
.y7a{bottom:460.373333pt;}
.ye9{bottom:464.133333pt;}
.y61{bottom:467.333333pt;}
.y43{bottom:468.693333pt;}
.yc3{bottom:474.933333pt;}
.ye8{bottom:479.733333pt;}
.ya4{bottom:482.213333pt;}
.yfa{bottom:482.933333pt;}
.y124{bottom:483.973333pt;}
.y42{bottom:484.293333pt;}
.yc2{bottom:490.533333pt;}
.y14{bottom:495.493333pt;}
.ye7{bottom:496.133333pt;}
.y60{bottom:498.933333pt;}
.y123{bottom:499.573333pt;}
.y41{bottom:499.973333pt;}
.y79{bottom:503.253333pt;}
.y13{bottom:511.413333pt;}
.ye6{bottom:511.733333pt;}
.y5f{bottom:514.613333pt;}
.y40{bottom:515.573333pt;}
.yc1{bottom:522.213333pt;}
.y122{bottom:523.253333pt;}
.ye5{bottom:528.133333pt;}
.y5e{bottom:530.213333pt;}
.y3f{bottom:531.253333pt;}
.y78{bottom:531.893333pt;}
.ya3{bottom:537.813333pt;}
.yf9{bottom:538.453333pt;}
.y121{bottom:538.853333pt;}
.y12{bottom:544.293333pt;}
.ye4{bottom:544.533333pt;}
.y5d{bottom:545.813333pt;}
.y3e{bottom:546.853333pt;}
.yc0{bottom:553.413333pt;}
.y120{bottom:554.453333pt;}
.y11{bottom:559.893333pt;}
.ye3{bottom:560.133333pt;}
.y5c{bottom:561.493333pt;}
.ybf{bottom:569.093333pt;}
.y3d{bottom:570.453333pt;}
.y10{bottom:575.573333pt;}
.ye2{bottom:576.533333pt;}
.y11f{bottom:578.133333pt;}
.y5b{bottom:585.413333pt;}
.yf{bottom:591.173333pt;}
.ye1{bottom:592.133333pt;}
.ybe{bottom:592.693333pt;}
.ya0{bottom:593.333333pt;}
.y11e{bottom:593.733333pt;}
.yf8{bottom:594.053333pt;}
.y3c{bottom:602.133333pt;}
.ye{bottom:606.853333pt;}
.ye0{bottom:616.533333pt;}
.y11d{bottom:617.413333pt;}
.y3b{bottom:617.733333pt;}
.ybd{bottom:621.653333pt;}
.yd{bottom:622.453333pt;}
.y5a{bottom:628.293333pt;}
.y11c{bottom:633.013333pt;}
.y3a{bottom:633.413333pt;}
.yf7{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.ydf{bottom:648.133333pt;}
.y9d{bottom:648.933333pt;}
.y39{bottom:649.013333pt;}
.ybc{bottom:653.333333pt;}
.yb{bottom:653.733333pt;}
.y11b{bottom:656.613333pt;}
.y59{bottom:656.933333pt;}
.y38{bottom:664.613333pt;}
.ybb{bottom:668.933333pt;}
.ya{bottom:669.333333pt;}
.y11a{bottom:672.293333pt;}
.yde{bottom:679.813333pt;}
.y37{bottom:680.293333pt;}
.yba{bottom:684.613333pt;}
.y9{bottom:693.253333pt;}
.ydd{bottom:695.413333pt;}
.y119{bottom:695.893333pt;}
.yb9{bottom:700.213333pt;}
.y36{bottom:704.213333pt;}
.y9c{bottom:707.813333pt;}
.ydc{bottom:711.093333pt;}
.y118{bottom:711.573333pt;}
.yb8{bottom:715.813333pt;}
.yb7{bottom:731.493333pt;}
.y117{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.y9b{bottom:739.493333pt;}
.ydb{bottom:742.613333pt;}
.y35{bottom:747.093333pt;}
.y116{bottom:750.773333pt;}
.y9a{bottom:755.093333pt;}
.yda{bottom:759.013333pt;}
.y34{bottom:762.693333pt;}
.y7{bottom:767.813333pt;}
.y99{bottom:770.693333pt;}
.y115{bottom:774.453333pt;}
.yd9{bottom:775.413333pt;}
.y33{bottom:778.373333pt;}
.y98{bottom:786.373333pt;}
.y114{bottom:790.053333pt;}
.yd8{bottom:791.733333pt;}
.y32{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.y97{bottom:801.973333pt;}
.y113{bottom:805.733333pt;}
.yd7{bottom:808.133333pt;}
.y31{bottom:809.653333pt;}
.y96{bottom:817.653333pt;}
.y30{bottom:825.253333pt;}
.y112{bottom:829.333333pt;}
.y5{bottom:831.653333pt;}
.yd6{bottom:832.533333pt;}
.y95{bottom:833.253333pt;}
.y2f{bottom:840.853333pt;}
.y111{bottom:844.933333pt;}
.y94{bottom:848.853333pt;}
.yb6{bottom:849.253333pt;}
.y2e{bottom:856.533333pt;}
.y110{bottom:860.613333pt;}
.y4{bottom:863.733333pt;}
.yd5{bottom:864.133333pt;}
.y93{bottom:864.533333pt;}
.y77{bottom:864.853333pt;}
.y10f{bottom:876.213333pt;}
.y2d{bottom:880.133333pt;}
.y76{bottom:880.533333pt;}
.yd4{bottom:895.813333pt;}
.y75{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y10e{bottom:899.840000pt;}
.y92{bottom:903.840000pt;}
.yd3{bottom:911.440000pt;}
.y2c{bottom:911.840000pt;}
.y10d{bottom:923.520000pt;}
.yd2{bottom:927.040000pt;}
.y2b{bottom:927.440000pt;}
.y91{bottom:935.440000pt;}
.y10c{bottom:939.120000pt;}
.yd1{bottom:942.720000pt;}
.y2a{bottom:943.040000pt;}
.y90{bottom:951.040000pt;}
.y29{bottom:958.720000pt;}
.y10b{bottom:962.800000pt;}
.yd0{bottom:966.320000pt;}
.y8f{bottom:966.720000pt;}
.y28{bottom:974.320000pt;}
.y10a{bottom:978.400000pt;}
.y8e{bottom:982.320000pt;}
.y27{bottom:990.000000pt;}
.y58{bottom:998.000000pt;}
.y109{bottom:1002.320000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h9{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.ha{height:54.880000pt;}
.hc{height:54.927899pt;}
.h7{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:106.106667pt;}
.w3{width:134.346667pt;}
.w5{width:160.826667pt;}
.w6{width:168.400000pt;}
.w9{width:168.426667pt;}
.w8{width:173.200000pt;}
.w4{width:206.080000pt;}
.wa{width:222.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:84.479988pt;}
.x11{left:98.879988pt;}
.xd{left:108.479988pt;}
.xe{left:167.866667pt;}
.x2{left:180.266655pt;}
.x9{left:196.186667pt;}
.x7{left:237.546655pt;}
.x5{left:246.906655pt;}
.xf{left:341.786667pt;}
.xa{left:402.986667pt;}
.x10{left:510.853333pt;}
.xb{left:564.453333pt;}
.x6{left:678.053322pt;}
.x4{left:693.013322pt;}
.x3{left:704.053322pt;}
}




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