
    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_b8c327195112a0643c21cae7.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_ac9345c79ae2fc615af5afd1.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_063afab48411c9a4979f84b8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d4785ae25e7e92a9d14c78d3.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_ef5aa95cba6bb8b983442dc6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f4db0d4396a95cd6fcd17ce.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b900dd806c70c1a336b00f68.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.409800px;}
.ls17{letter-spacing:-0.244200px;}
.lsb{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.114600px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.015480px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.051840px;}
.ls3{letter-spacing:0.065520px;}
.ls15{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.105600px;}
.ls12{letter-spacing:0.115800px;}
.ls1c{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.160800px;}
.lsc{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls1e{letter-spacing:80.846640px;}
.ls19{letter-spacing:134.013600px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws15{word-spacing:-13.425600px;}
.ws13{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.387200px;}
.ws14{word-spacing:-13.344600px;}
.wsb{word-spacing:-13.342200px;}
.wsc{word-spacing:-13.332000px;}
.wsd{word-spacing:-13.300800px;}
.wse{word-spacing:-13.278240px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.210920px;}
.ws11{word-spacing:-13.111800px;}
.ws4{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-3.487080px;}
._8{margin-left:-2.455200px;}
._0{margin-left:-1.212000px;}
._1{width:1.067868px;}
._5{width:2.974560px;}
._6{width:3.977592px;}
._4{width:5.211324px;}
._3{width:6.299981px;}
._2{width:7.839654px;}
._7{width:9.323593px;}
._10{width:10.416855px;}
._f{width:12.084120px;}
._a{width:14.248440px;}
._b{width:15.450840px;}
._c{width:17.013960px;}
._1e{width:18.230652px;}
._16{width:19.418760px;}
._e{width:20.972280px;}
._d{width:22.193880px;}
._1a{width:23.688720px;}
._21{width:24.707880px;}
._12{width:25.731360px;}
._23{width:27.595080px;}
._3b{width:28.737360px;}
._20{width:30.721320px;}
._1c{width:31.983840px;}
._1d{width:34.008840px;}
._22{width:35.891640px;}
._15{width:36.973800px;}
._28{width:39.078000px;}
._30{width:40.821480px;}
._19{width:42.084000px;}
._13{width:43.578480px;}
._36{width:44.609040px;}
._18{width:47.434680px;}
._11{width:50.500800px;}
._14{width:52.470000px;}
._2b{width:55.430640px;}
._39{width:59.759280px;}
._3c{width:61.382520px;}
._34{width:64.689120px;}
._1f{width:67.454640px;}
._2a{width:70.460640px;}
._37{width:71.963640px;}
._3d{width:75.150000px;}
._33{width:76.953600px;}
._2c{width:79.238160px;}
._2f{width:81.642960px;}
._26{width:83.145960px;}
._31{width:89.939520px;}
._35{width:91.803240px;}
._1b{width:94.864680px;}
._38{width:96.801600px;}
._17{width:105.390360px;}
._29{width:108.154920px;}
._3a{width:110.921400px;}
._24{width:120.540600px;}
._32{width:122.163840px;}
._2d{width:124.268040px;}
._2e{width:135.209880px;}
._27{width:142.123680px;}
._25{width:156.552480px;}
._3f{width:168.215760px;}
._3e{width:232.363800px;}
.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;}
.y88{bottom:3.330000px;}
.y5e{bottom:7.830000px;}
.y6a{bottom:7.920000px;}
.y62{bottom:7.950000px;}
.y7e{bottom:12.330000px;}
.y93{bottom:12.420000px;}
.y8f{bottom:16.470000px;}
.yad{bottom:20.880000px;}
.y6e{bottom:20.970000px;}
.y80{bottom:25.380000px;}
.y5d{bottom:25.470000px;}
.y61{bottom:25.500000px;}
.y82{bottom:29.880000px;}
.y7d{bottom:29.970000px;}
.yb1{bottom:34.020000px;}
.y67{bottom:38.520000px;}
.y8e{bottom:38.610000px;}
.y64{bottom:43.020000px;}
.y7a{bottom:43.050000px;}
.y69{bottom:43.110000px;}
.y60{bottom:43.140000px;}
.y7c{bottom:47.520000px;}
.y99{bottom:47.550000px;}
.y92{bottom:47.610000px;}
.yac{bottom:56.070000px;}
.y87{bottom:56.160000px;}
.y74{bottom:60.570000px;}
.yce{bottom:60.600000px;}
.y66{bottom:60.660000px;}
.y79{bottom:60.690000px;}
.y98{bottom:65.100000px;}
.y2{bottom:73.380000px;}
.y86{bottom:73.710000px;}
.y27{bottom:74.190000px;}
.y6c{bottom:78.210000px;}
.yb0{bottom:78.240000px;}
.y97{bottom:82.740000px;}
.yc3{bottom:95.760000px;}
.yaf{bottom:95.790000px;}
.y9f{bottom:95.880000px;}
.y96{bottom:100.290000px;}
.y1{bottom:101.640000px;}
.yb9{bottom:113.430000px;}
.y85{bottom:114.690000px;}
.y47{bottom:120.450000px;}
.ybe{bottom:125.580000px;}
.yb8{bottom:131.070000px;}
.y46{bottom:138.000000px;}
.ycb{bottom:141.330000px;}
.y9d{bottom:143.940000px;}
.yab{bottom:146.550000px;}
.yee{bottom:155.280000px;}
.y45{bottom:155.550000px;}
.yca{bottom:156.270000px;}
.y6b{bottom:165.180000px;}
.y44{bottom:173.190000px;}
.yed{bottom:182.190000px;}
.y25{bottom:182.730000px;}
.ybd{bottom:188.130000px;}
.y43{bottom:190.740000px;}
.y24{bottom:200.370000px;}
.y9c{bottom:206.400000px;}
.y84{bottom:207.840000px;}
.y42{bottom:208.380000px;}
.y23{bottom:217.920000px;}
.yc9{bottom:218.820000px;}
.yec{bottom:219.540000px;}
.yaa{bottom:222.150000px;}
.y41{bottom:234.930000px;}
.y22{bottom:235.470000px;}
.ybc{bottom:250.590000px;}
.y83{bottom:252.750000px;}
.y21{bottom:253.110000px;}
.y68{bottom:262.830000px;}
.yeb{bottom:267.780000px;}
.y40{bottom:270.480000px;}
.y20{bottom:270.660000px;}
.yea{bottom:285.420000px;}
.y9b{bottom:286.500000px;}
.y3f{bottom:288.120000px;}
.ya9{bottom:289.110000px;}
.ydd{bottom:297.210000px;}
.y81{bottom:297.750000px;}
.yc8{bottom:298.830000px;}
.ye9{bottom:302.970000px;}
.y1f{bottom:306.300000px;}
.ydc{bottom:312.240000px;}
.y3e{bottom:320.340000px;}
.ye8{bottom:320.520000px;}
.y1e{bottom:323.850000px;}
.y65{bottom:325.380000px;}
.ybb{bottom:330.690000px;}
.ye7{bottom:338.160000px;}
.ydb{bottom:339.510000px;}
.y1d{bottom:341.400000px;}
.y7f{bottom:347.160000px;}
.ya8{bottom:351.660000px;}
.ye6{bottom:355.710000px;}
.y1c{bottom:359.040000px;}
.y9a{bottom:366.600000px;}
.yda{bottom:366.870000px;}
.ye5{bottom:373.260000px;}
.yba{bottom:375.600000px;}
.y1b{bottom:376.590000px;}
.yc7{bottom:378.930000px;}
.ye4{bottom:390.900000px;}
.y7b{bottom:392.070000px;}
.y105{bottom:393.510000px;}
.yd9{bottom:394.230000px;}
.y63{bottom:405.480000px;}
.ye3{bottom:408.450000px;}
.y104{bottom:411.060000px;}
.y1a{bottom:412.140000px;}
.ya7{bottom:414.120000px;}
.yb7{bottom:420.510000px;}
.y95{bottom:429.150000px;}
.y19{bottom:429.780000px;}
.ye2{bottom:435.360000px;}
.y103{bottom:437.700000px;}
.yd8{bottom:439.140000px;}
.y18{bottom:447.330000px;}
.y102{bottom:455.250000px;}
.y78{bottom:459.030000px;}
.y17{bottom:464.970000px;}
.y5f{bottom:467.940000px;}
.ya6{bottom:476.700000px;}
.y101{bottom:481.830000px;}
.ye1{bottom:483.720000px;}
.yd7{bottom:484.080000px;}
.y16{bottom:491.910000px;}
.y100{bottom:499.470000px;}
.ye0{bottom:515.940000px;}
.ya5{bottom:521.610000px;}
.yff{bottom:526.020000px;}
.y5c{bottom:530.520000px;}
.y77{bottom:539.160000px;}
.y15{bottom:540.510000px;}
.yfe{bottom:543.660000px;}
.yd6{bottom:546.630000px;}
.y94{bottom:548.970000px;}
.yfd{bottom:570.210000px;}
.yb6{bottom:571.020000px;}
.y14{bottom:577.500000px;}
.ya4{bottom:584.070000px;}
.yd5{bottom:591.540000px;}
.y13{bottom:595.050000px;}
.y5b{bottom:596.760000px;}
.yc6{bottom:601.710000px;}
.y12{bottom:612.690000px;}
.yfc{bottom:614.400000px;}
.y76{bottom:619.260000px;}
.y91{bottom:628.980000px;}
.y11{bottom:630.240000px;}
.y5a{bottom:632.400000px;}
.yd4{bottom:636.450000px;}
.yfb{bottom:640.950000px;}
.y10{bottom:647.880000px;}
.y59{bottom:649.950000px;}
.yc5{bottom:664.170000px;}
.yf{bottom:665.430000px;}
.yfa{bottom:667.590000px;}
.yb5{bottom:668.670000px;}
.yd3{bottom:681.360000px;}
.ya3{bottom:681.810000px;}
.ye{bottom:682.980000px;}
.y58{bottom:685.590000px;}
.y3d{bottom:685.950000px;}
.yf9{bottom:694.140000px;}
.y90{bottom:696.030000px;}
.y57{bottom:703.140000px;}
.y3c{bottom:703.590000px;}
.yd{bottom:709.980000px;}
.y75{bottom:716.910000px;}
.y56{bottom:720.690000px;}
.y3b{bottom:721.140000px;}
.yd2{bottom:726.270000px;}
.yc4{bottom:726.720000px;}
.yb4{bottom:731.220000px;}
.y3a{bottom:738.690000px;}
.ya2{bottom:744.270000px;}
.yf8{bottom:747.330000px;}
.y39{bottom:756.330000px;}
.yc{bottom:756.690000px;}
.y8d{bottom:758.490000px;}
.yd1{bottom:771.180000px;}
.y38{bottom:773.880000px;}
.y73{bottom:779.460000px;}
.y37{bottom:791.520000px;}
.yb{bottom:792.510000px;}
.yb3{bottom:793.680000px;}
.yf7{bottom:800.520000px;}
.ya1{bottom:806.820000px;}
.y36{bottom:809.070000px;}
.yd0{bottom:816.090000px;}
.y55{bottom:827.070000px;}
.ya{bottom:828.510000px;}
.y35{bottom:835.620000px;}
.y8c{bottom:838.590000px;}
.ydf{bottom:838.770000px;}
.y54{bottom:844.620000px;}
.y72{bottom:859.560000px;}
.y53{bottom:862.260000px;}
.y9{bottom:864.510000px;}
.ya0{bottom:869.280000px;}
.yde{bottom:870.990000px;}
.y34{bottom:871.260000px;}
.yb2{bottom:873.780000px;}
.ycf{bottom:878.640000px;}
.y8{bottom:886.290000px;}
.yc2{bottom:886.920000px;}
.y33{bottom:888.810000px;}
.y52{bottom:897.810000px;}
.y7{bottom:900.510000px;}
.y71{bottom:904.470000px;}
.y32{bottom:906.450000px;}
.y9e{bottom:914.190000px;}
.y51{bottom:915.450000px;}
.y6{bottom:922.290000px;}
.y31{bottom:924.000000px;}
.y50{bottom:933.000000px;}
.y8b{bottom:936.330000px;}
.y30{bottom:941.550000px;}
.y4f{bottom:950.550000px;}
.y5{bottom:954.600000px;}
.ycd{bottom:958.740000px;}
.y2f{bottom:959.190000px;}
.y70{bottom:966.930000px;}
.y4{bottom:973.950000px;}
.y2e{bottom:976.740000px;}
.yf6{bottom:977.190000px;}
.y4e{bottom:977.460000px;}
.y2d{bottom:994.290000px;}
.yf5{bottom:994.740000px;}
.yc1{bottom:1002.120000px;}
.y3{bottom:1012.230000px;}
.y8a{bottom:1016.460000px;}
.y2c{bottom:1020.960000px;}
.yf4{bottom:1021.320000px;}
.y4d{bottom:1025.820000px;}
.y6f{bottom:1029.510000px;}
.yf3{bottom:1038.960000px;}
.y4c{bottom:1043.370000px;}
.yc0{bottom:1047.060000px;}
.yae{bottom:1051.560000px;}
.y2b{bottom:1056.870000px;}
.y4b{bottom:1060.920000px;}
.yf2{bottom:1065.510000px;}
.ycc{bottom:1073.970000px;}
.y4a{bottom:1078.560000px;}
.yf1{bottom:1083.150000px;}
.y6d{bottom:1091.970000px;}
.y49{bottom:1096.110000px;}
.yf0{bottom:1100.700000px;}
.y2a{bottom:1105.110000px;}
.ybf{bottom:1109.610000px;}
.y48{bottom:1113.750000px;}
.y89{bottom:1114.110000px;}
.y29{bottom:1122.750000px;}
.yef{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h24{height:26.550000px;}
.h23{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h18{height:39.690000px;}
.h15{height:44.100000px;}
.hc{height:44.190000px;}
.h21{height:44.220000px;}
.h16{height:48.600000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.740000px;}
.h1d{height:61.770000px;}
.h25{height:61.793886px;}
.h10{height:61.830000px;}
.hd{height:61.860000px;}
.hb{height:62.585859px;}
.h14{height:66.240000px;}
.h1a{height:66.330000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:74.790000px;}
.h12{height:79.290000px;}
.h19{height:79.320000px;}
.hf{height:79.380000px;}
.h13{height:79.410000px;}
.h17{height:92.430000px;}
.h11{height:96.930000px;}
.h22{height:114.480000px;}
.h1f{height:114.510000px;}
.h1c{height:114.600000px;}
.h1b{height:119.010000px;}
.h20{height:149.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:31.680000px;}
.wa{width:37.710000px;}
.wc{width:62.820000px;}
.w7{width:63.000000px;}
.w8{width:84.270000px;}
.w5{width:91.710000px;}
.w6{width:105.570000px;}
.w4{width:129.090000px;}
.wb{width:147.090000px;}
.w9{width:237.780000px;}
.wd{width:505.740000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.870000px;}
.xe{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:72.720000px;}
.x8{left:105.210000px;}
.xf{left:107.280000px;}
.x16{left:111.239987px;}
.x5{left:122.039987px;}
.x15{left:164.099987px;}
.x13{left:170.129987px;}
.x2{left:191.459987px;}
.x9{left:235.020000px;}
.x10{left:255.090000px;}
.x11{left:318.720000px;}
.xa{left:327.540000px;}
.xb{left:433.830000px;}
.xc{left:497.640000px;}
.xd{left:582.720000px;}
.x4{left:681.809987px;}
.x14{left:769.559987px;}
.x12{left:771.809987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.364267pt;}
.ls17{letter-spacing:-0.217067pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.101867pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.013760pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.046080pt;}
.ls3{letter-spacing:0.058240pt;}
.ls15{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.093867pt;}
.ls12{letter-spacing:0.102933pt;}
.ls1c{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.142933pt;}
.lsc{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ls19{letter-spacing:119.123200pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws15{word-spacing:-11.933867pt;}
.ws13{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.899733pt;}
.ws14{word-spacing:-11.861867pt;}
.wsb{word-spacing:-11.859733pt;}
.wsc{word-spacing:-11.850667pt;}
.wsd{word-spacing:-11.822933pt;}
.wse{word-spacing:-11.802880pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743040pt;}
.ws11{word-spacing:-11.654933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.539733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-3.099627pt;}
._8{margin-left:-2.182400pt;}
._0{margin-left:-1.077333pt;}
._1{width:0.949216pt;}
._5{width:2.644053pt;}
._6{width:3.535638pt;}
._4{width:4.632288pt;}
._3{width:5.599983pt;}
._2{width:6.968581pt;}
._7{width:8.287638pt;}
._10{width:9.259426pt;}
._f{width:10.741440pt;}
._a{width:12.665280pt;}
._b{width:13.734080pt;}
._c{width:15.123520pt;}
._1e{width:16.205024pt;}
._16{width:17.261120pt;}
._e{width:18.642027pt;}
._d{width:19.727893pt;}
._1a{width:21.056640pt;}
._21{width:21.962560pt;}
._12{width:22.872320pt;}
._23{width:24.528960pt;}
._3b{width:25.544320pt;}
._20{width:27.307840pt;}
._1c{width:28.430080pt;}
._1d{width:30.230080pt;}
._22{width:31.903680pt;}
._15{width:32.865600pt;}
._28{width:34.736000pt;}
._30{width:36.285760pt;}
._19{width:37.408000pt;}
._13{width:38.736427pt;}
._36{width:39.652480pt;}
._18{width:42.164160pt;}
._11{width:44.889600pt;}
._14{width:46.640000pt;}
._2b{width:49.271680pt;}
._39{width:53.119360pt;}
._3c{width:54.562240pt;}
._34{width:57.501440pt;}
._1f{width:59.959680pt;}
._2a{width:62.631680pt;}
._37{width:63.967680pt;}
._3d{width:66.800000pt;}
._33{width:68.403200pt;}
._2c{width:70.433920pt;}
._2f{width:72.571520pt;}
._26{width:73.907520pt;}
._31{width:79.946240pt;}
._35{width:81.602880pt;}
._1b{width:84.324160pt;}
._38{width:86.045867pt;}
._17{width:93.680320pt;}
._29{width:96.137707pt;}
._3a{width:98.596800pt;}
._24{width:107.147200pt;}
._32{width:108.590080pt;}
._2d{width:110.460480pt;}
._2e{width:120.186560pt;}
._27{width:126.332160pt;}
._25{width:139.157760pt;}
._3f{width:149.525120pt;}
._3e{width:206.545600pt;}
.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;}
.y88{bottom:2.960000pt;}
.y5e{bottom:6.960000pt;}
.y6a{bottom:7.040000pt;}
.y62{bottom:7.066667pt;}
.y7e{bottom:10.960000pt;}
.y93{bottom:11.040000pt;}
.y8f{bottom:14.640000pt;}
.yad{bottom:18.560000pt;}
.y6e{bottom:18.640000pt;}
.y80{bottom:22.560000pt;}
.y5d{bottom:22.640000pt;}
.y61{bottom:22.666667pt;}
.y82{bottom:26.560000pt;}
.y7d{bottom:26.640000pt;}
.yb1{bottom:30.240000pt;}
.y67{bottom:34.240000pt;}
.y8e{bottom:34.320000pt;}
.y64{bottom:38.240000pt;}
.y7a{bottom:38.266667pt;}
.y69{bottom:38.320000pt;}
.y60{bottom:38.346667pt;}
.y7c{bottom:42.240000pt;}
.y99{bottom:42.266667pt;}
.y92{bottom:42.320000pt;}
.yac{bottom:49.840000pt;}
.y87{bottom:49.920000pt;}
.y74{bottom:53.840000pt;}
.yce{bottom:53.866667pt;}
.y66{bottom:53.920000pt;}
.y79{bottom:53.946667pt;}
.y98{bottom:57.866667pt;}
.y2{bottom:65.226667pt;}
.y86{bottom:65.520000pt;}
.y27{bottom:65.946667pt;}
.y6c{bottom:69.520000pt;}
.yb0{bottom:69.546667pt;}
.y97{bottom:73.546667pt;}
.yc3{bottom:85.120000pt;}
.yaf{bottom:85.146667pt;}
.y9f{bottom:85.226667pt;}
.y96{bottom:89.146667pt;}
.y1{bottom:90.346667pt;}
.yb9{bottom:100.826667pt;}
.y85{bottom:101.946667pt;}
.y47{bottom:107.066667pt;}
.ybe{bottom:111.626667pt;}
.yb8{bottom:116.506667pt;}
.y46{bottom:122.666667pt;}
.ycb{bottom:125.626667pt;}
.y9d{bottom:127.946667pt;}
.yab{bottom:130.266667pt;}
.yee{bottom:138.026667pt;}
.y45{bottom:138.266667pt;}
.yca{bottom:138.906667pt;}
.y6b{bottom:146.826667pt;}
.y44{bottom:153.946667pt;}
.yed{bottom:161.946667pt;}
.y25{bottom:162.426667pt;}
.ybd{bottom:167.226667pt;}
.y43{bottom:169.546667pt;}
.y24{bottom:178.106667pt;}
.y9c{bottom:183.466667pt;}
.y84{bottom:184.746667pt;}
.y42{bottom:185.226667pt;}
.y23{bottom:193.706667pt;}
.yc9{bottom:194.506667pt;}
.yec{bottom:195.146667pt;}
.yaa{bottom:197.466667pt;}
.y41{bottom:208.826667pt;}
.y22{bottom:209.306667pt;}
.ybc{bottom:222.746667pt;}
.y83{bottom:224.666667pt;}
.y21{bottom:224.986667pt;}
.y68{bottom:233.626667pt;}
.yeb{bottom:238.026667pt;}
.y40{bottom:240.426667pt;}
.y20{bottom:240.586667pt;}
.yea{bottom:253.706667pt;}
.y9b{bottom:254.666667pt;}
.y3f{bottom:256.106667pt;}
.ya9{bottom:256.986667pt;}
.ydd{bottom:264.186667pt;}
.y81{bottom:264.666667pt;}
.yc8{bottom:265.626667pt;}
.ye9{bottom:269.306667pt;}
.y1f{bottom:272.266667pt;}
.ydc{bottom:277.546667pt;}
.y3e{bottom:284.746667pt;}
.ye8{bottom:284.906667pt;}
.y1e{bottom:287.866667pt;}
.y65{bottom:289.226667pt;}
.ybb{bottom:293.946667pt;}
.ye7{bottom:300.586667pt;}
.ydb{bottom:301.786667pt;}
.y1d{bottom:303.466667pt;}
.y7f{bottom:308.586667pt;}
.ya8{bottom:312.586667pt;}
.ye6{bottom:316.186667pt;}
.y1c{bottom:319.146667pt;}
.y9a{bottom:325.866667pt;}
.yda{bottom:326.106667pt;}
.ye5{bottom:331.786667pt;}
.yba{bottom:333.866667pt;}
.y1b{bottom:334.746667pt;}
.yc7{bottom:336.826667pt;}
.ye4{bottom:347.466667pt;}
.y7b{bottom:348.506667pt;}
.y105{bottom:349.786667pt;}
.yd9{bottom:350.426667pt;}
.y63{bottom:360.426667pt;}
.ye3{bottom:363.066667pt;}
.y104{bottom:365.386667pt;}
.y1a{bottom:366.346667pt;}
.ya7{bottom:368.106667pt;}
.yb7{bottom:373.786667pt;}
.y95{bottom:381.466667pt;}
.y19{bottom:382.026667pt;}
.ye2{bottom:386.986667pt;}
.y103{bottom:389.066667pt;}
.yd8{bottom:390.346667pt;}
.y18{bottom:397.626667pt;}
.y102{bottom:404.666667pt;}
.y78{bottom:408.026667pt;}
.y17{bottom:413.306667pt;}
.y5f{bottom:415.946667pt;}
.ya6{bottom:423.733333pt;}
.y101{bottom:428.293333pt;}
.ye1{bottom:429.973333pt;}
.yd7{bottom:430.293333pt;}
.y16{bottom:437.253333pt;}
.y100{bottom:443.973333pt;}
.ye0{bottom:458.613333pt;}
.ya5{bottom:463.653333pt;}
.yff{bottom:467.573333pt;}
.y5c{bottom:471.573333pt;}
.y77{bottom:479.253333pt;}
.y15{bottom:480.453333pt;}
.yfe{bottom:483.253333pt;}
.yd6{bottom:485.893333pt;}
.y94{bottom:487.973333pt;}
.yfd{bottom:506.853333pt;}
.yb6{bottom:507.573333pt;}
.y14{bottom:513.333333pt;}
.ya4{bottom:519.173333pt;}
.yd5{bottom:525.813333pt;}
.y13{bottom:528.933333pt;}
.y5b{bottom:530.453333pt;}
.yc6{bottom:534.853333pt;}
.y12{bottom:544.613333pt;}
.yfc{bottom:546.133333pt;}
.y76{bottom:550.453333pt;}
.y91{bottom:559.093333pt;}
.y11{bottom:560.213333pt;}
.y5a{bottom:562.133333pt;}
.yd4{bottom:565.733333pt;}
.yfb{bottom:569.733333pt;}
.y10{bottom:575.893333pt;}
.y59{bottom:577.733333pt;}
.yc5{bottom:590.373333pt;}
.yf{bottom:591.493333pt;}
.yfa{bottom:593.413333pt;}
.yb5{bottom:594.373333pt;}
.yd3{bottom:605.653333pt;}
.ya3{bottom:606.053333pt;}
.ye{bottom:607.093333pt;}
.y58{bottom:609.413333pt;}
.y3d{bottom:609.733333pt;}
.yf9{bottom:617.013333pt;}
.y90{bottom:618.693333pt;}
.y57{bottom:625.013333pt;}
.y3c{bottom:625.413333pt;}
.yd{bottom:631.093333pt;}
.y75{bottom:637.253333pt;}
.y56{bottom:640.613333pt;}
.y3b{bottom:641.013333pt;}
.yd2{bottom:645.573333pt;}
.yc4{bottom:645.973333pt;}
.yb4{bottom:649.973333pt;}
.y3a{bottom:656.613333pt;}
.ya2{bottom:661.573333pt;}
.yf8{bottom:664.293333pt;}
.y39{bottom:672.293333pt;}
.yc{bottom:672.613333pt;}
.y8d{bottom:674.213333pt;}
.yd1{bottom:685.493333pt;}
.y38{bottom:687.893333pt;}
.y73{bottom:692.853333pt;}
.y37{bottom:703.573333pt;}
.yb{bottom:704.453333pt;}
.yb3{bottom:705.493333pt;}
.yf7{bottom:711.573333pt;}
.ya1{bottom:717.173333pt;}
.y36{bottom:719.173333pt;}
.yd0{bottom:725.413333pt;}
.y55{bottom:735.173333pt;}
.ya{bottom:736.453333pt;}
.y35{bottom:742.773333pt;}
.y8c{bottom:745.413333pt;}
.ydf{bottom:745.573333pt;}
.y54{bottom:750.773333pt;}
.y72{bottom:764.053333pt;}
.y53{bottom:766.453333pt;}
.y9{bottom:768.453333pt;}
.ya0{bottom:772.693333pt;}
.yde{bottom:774.213333pt;}
.y34{bottom:774.453333pt;}
.yb2{bottom:776.693333pt;}
.ycf{bottom:781.013333pt;}
.y8{bottom:787.813333pt;}
.yc2{bottom:788.373333pt;}
.y33{bottom:790.053333pt;}
.y52{bottom:798.053333pt;}
.y7{bottom:800.453333pt;}
.y71{bottom:803.973333pt;}
.y32{bottom:805.733333pt;}
.y9e{bottom:812.613333pt;}
.y51{bottom:813.733333pt;}
.y6{bottom:819.813333pt;}
.y31{bottom:821.333333pt;}
.y50{bottom:829.333333pt;}
.y8b{bottom:832.293333pt;}
.y30{bottom:836.933333pt;}
.y4f{bottom:844.933333pt;}
.y5{bottom:848.533333pt;}
.ycd{bottom:852.213333pt;}
.y2f{bottom:852.613333pt;}
.y70{bottom:859.493333pt;}
.y4{bottom:865.733333pt;}
.y2e{bottom:868.213333pt;}
.yf6{bottom:868.613333pt;}
.y4e{bottom:868.853333pt;}
.y2d{bottom:883.813333pt;}
.yf5{bottom:884.213333pt;}
.yc1{bottom:890.773333pt;}
.y3{bottom:899.760000pt;}
.y8a{bottom:903.520000pt;}
.y2c{bottom:907.520000pt;}
.yf4{bottom:907.840000pt;}
.y4d{bottom:911.840000pt;}
.y6f{bottom:915.120000pt;}
.yf3{bottom:923.520000pt;}
.y4c{bottom:927.440000pt;}
.yc0{bottom:930.720000pt;}
.yae{bottom:934.720000pt;}
.y2b{bottom:939.440000pt;}
.y4b{bottom:943.040000pt;}
.yf2{bottom:947.120000pt;}
.ycc{bottom:954.640000pt;}
.y4a{bottom:958.720000pt;}
.yf1{bottom:962.800000pt;}
.y6d{bottom:970.640000pt;}
.y49{bottom:974.320000pt;}
.yf0{bottom:978.400000pt;}
.y2a{bottom:982.320000pt;}
.ybf{bottom:986.320000pt;}
.y48{bottom:990.000000pt;}
.y89{bottom:990.320000pt;}
.y29{bottom:998.000000pt;}
.yef{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h24{height:23.600000pt;}
.h23{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h18{height:35.280000pt;}
.h15{height:39.200000pt;}
.hc{height:39.280000pt;}
.h21{height:39.306667pt;}
.h16{height:43.200000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.880000pt;}
.h1d{height:54.906667pt;}
.h25{height:54.927899pt;}
.h10{height:54.960000pt;}
.hd{height:54.986667pt;}
.hb{height:55.631875pt;}
.h14{height:58.880000pt;}
.h1a{height:58.960000pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:66.480000pt;}
.h12{height:70.480000pt;}
.h19{height:70.506667pt;}
.hf{height:70.560000pt;}
.h13{height:70.586667pt;}
.h17{height:82.160000pt;}
.h11{height:86.160000pt;}
.h22{height:101.760000pt;}
.h1f{height:101.786667pt;}
.h1c{height:101.866667pt;}
.h1b{height:105.786667pt;}
.h20{height:133.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:28.160000pt;}
.wa{width:33.520000pt;}
.wc{width:55.840000pt;}
.w7{width:56.000000pt;}
.w8{width:74.906667pt;}
.w5{width:81.520000pt;}
.w6{width:93.840000pt;}
.w4{width:114.746667pt;}
.wb{width:130.746667pt;}
.w9{width:211.360000pt;}
.wd{width:449.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.440000pt;}
.xe{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:64.640000pt;}
.x8{left:93.520000pt;}
.xf{left:95.360000pt;}
.x16{left:98.879988pt;}
.x5{left:108.479988pt;}
.x15{left:145.866655pt;}
.x13{left:151.226655pt;}
.x2{left:170.186655pt;}
.x9{left:208.906667pt;}
.x10{left:226.746667pt;}
.x11{left:283.306667pt;}
.xa{left:291.146667pt;}
.xb{left:385.626667pt;}
.xc{left:442.346667pt;}
.xd{left:517.973333pt;}
.x4{left:606.053322pt;}
.x14{left:684.053322pt;}
.x12{left:686.053322pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  