
    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_9e23d16baaf6922bc00d91b6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1700f3ef06c1d8d8cbd3b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_8425a101e0870f769c656d1b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62d7e501f55501f80b9c73e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_231de3b7daa7fa71c6260a3b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_aec108cfc6e72cc8d5778835.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_067e2f46a5ba3d81371285e9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6255a2ec9363b6a7455eadec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8aaf05a9c50f20ab18f921ca.woff')format("woff");}.ffa{font-family:ffa;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.800293;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_b04c8ec8d60fedf71cc4fee5.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.068000px;}
.ls2{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.349200px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.418800px;}
.lsc{letter-spacing:0.720000px;}
.ls8{letter-spacing:16.560000px;}
.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;}
}
.wsb{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.128000px;}
.ws5{word-spacing:-11.880000px;}
.ws6{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.356240px;}
.ws1{word-spacing:-9.937440px;}
.ws2{word-spacing:-9.588240px;}
.ws8{word-spacing:-8.869440px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-2.913120px;}
._0{margin-left:-1.622880px;}
._1{width:1.069440px;}
._5{width:2.275680px;}
._4{width:3.456000px;}
._3{width:4.464000px;}
._10{width:6.048000px;}
._11{width:7.177440px;}
._17{width:8.278560px;}
._a{width:9.432000px;}
._8{width:11.232000px;}
._9{width:12.312000px;}
._b{width:13.594560px;}
._c{width:14.791200px;}
._12{width:15.831360px;}
._f{width:17.734560px;}
._6{width:19.944000px;}
._7{width:21.240000px;}
._d{width:22.608000px;}
._e{width:23.688000px;}
._13{width:25.632000px;}
._14{width:26.712000px;}
._16{width:27.969120px;}
._18{width:29.952000px;}
._1d{width:31.944000px;}
._1e{width:33.229440px;}
._1b{width:35.568000px;}
._1c{width:36.741120px;}
._1f{width:39.960000px;}
._19{width:75.528000px;}
._1a{width:77.040000px;}
._20{width:134.748000px;}
._2{width:2694.606000px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc7{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y2f{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y35{bottom:2.160000px;}
.y2d{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y36{bottom:5.400000px;}
.y56{bottom:5.940000px;}
.y7f{bottom:6.120000px;}
.y112{bottom:6.120150px;}
.yff{bottom:11.340000px;}
.y12d{bottom:12.060000px;}
.y7e{bottom:12.240000px;}
.y33{bottom:12.600000px;}
.y111{bottom:13.139850px;}
.y55{bottom:13.680000px;}
.y10e{bottom:14.040000px;}
.y122{bottom:14.580000px;}
.y3a{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y32{bottom:28.440000px;}
.y37{bottom:37.440000px;}
.y31{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y34{bottom:68.580000px;}
.ya1{bottom:122.040000px;}
.y2b{bottom:122.760000px;}
.y121{bottom:134.100000px;}
.y110{bottom:140.220000px;}
.y54{bottom:141.120000px;}
.ya0{bottom:145.800000px;}
.y2a{bottom:146.700000px;}
.y7d{bottom:152.100000px;}
.y120{bottom:157.860000px;}
.yfe{bottom:163.980000px;}
.y53{bottom:164.880000px;}
.y9f{bottom:169.740000px;}
.y29{bottom:170.460000px;}
.yc0{bottom:174.960000px;}
.y7c{bottom:175.860000px;}
.yde{bottom:178.020000px;}
.y10d{bottom:179.100000px;}
.y11f{bottom:181.620000px;}
.yfd{bottom:187.740000px;}
.y52{bottom:189.180000px;}
.y9e{bottom:193.500000px;}
.y28{bottom:194.220000px;}
.y7b{bottom:199.620000px;}
.ydd{bottom:201.780000px;}
.y10c{bottom:202.860000px;}
.y51{bottom:212.970000px;}
.ybf{bottom:214.230000px;}
.y9d{bottom:217.290000px;}
.y27{bottom:218.010000px;}
.y11e{bottom:220.530000px;}
.y7a{bottom:223.590000px;}
.ydc{bottom:225.570000px;}
.yfc{bottom:226.650000px;}
.y50{bottom:236.730000px;}
.ybe{bottom:237.990000px;}
.y11d{bottom:244.290000px;}
.y79{bottom:247.350000px;}
.y9c{bottom:248.070000px;}
.ydb{bottom:249.330000px;}
.yfb{bottom:250.410000px;}
.y26{bottom:256.530000px;}
.y4f{bottom:260.490000px;}
.ybd{bottom:261.750000px;}
.y10b{bottom:265.530000px;}
.y11c{bottom:268.050000px;}
.y78{bottom:271.110000px;}
.yfa{bottom:274.350000px;}
.y25{bottom:279.210000px;}
.y4e{bottom:284.430000px;}
.ybc{bottom:285.690000px;}
.y9b{bottom:287.130000px;}
.yda{bottom:288.210000px;}
.y10a{bottom:289.290000px;}
.y77{bottom:294.870000px;}
.y24{bottom:300.810000px;}
.y11b{bottom:306.930000px;}
.y4d{bottom:308.190000px;}
.ybb{bottom:309.450000px;}
.y9a{bottom:310.890000px;}
.yd9{bottom:311.970000px;}
.yf9{bottom:313.050000px;}
.y76{bottom:318.810000px;}
.y23{bottom:325.110000px;}
.y11a{bottom:330.690000px;}
.y4c{bottom:331.950000px;}
.yba{bottom:333.210000px;}
.y99{bottom:334.830000px;}
.yd8{bottom:335.730000px;}
.yf8{bottom:336.810000px;}
.y75{bottom:342.570000px;}
.y22{bottom:349.410000px;}
.y109{bottom:351.930000px;}
.y4b{bottom:352.830000px;}
.y98{bottom:358.590000px;}
.yf7{bottom:360.750000px;}
.yb9{bottom:363.990000px;}
.y74{bottom:366.330000px;}
.y119{bottom:369.390000px;}
.y21{bottom:372.450000px;}
.yd7{bottom:374.610000px;}
.y108{bottom:375.690000px;}
.y4a{bottom:376.410000px;}
.y97{bottom:382.350000px;}
.y73{bottom:390.090000px;}
.y20{bottom:393.510000px;}
.yd6{bottom:398.370000px;}
.yf6{bottom:399.450000px;}
.y49{bottom:400.350000px;}
.yb8{bottom:403.050000px;}
.y96{bottom:406.110000px;}
.y118{bottom:408.270000px;}
.y72{bottom:413.850000px;}
.yf5{bottom:423.210000px;}
.y48{bottom:424.110000px;}
.y1f{bottom:426.810000px;}
.y95{bottom:430.050000px;}
.y117{bottom:432.030000px;}
.yd5{bottom:437.250000px;}
.y71{bottom:437.790000px;}
.y107{bottom:438.330000px;}
.yf4{bottom:447.195000px;}
.y47{bottom:447.915000px;}
.yb7{bottom:450.795000px;}
.y1e{bottom:453.135000px;}
.y94{bottom:453.855000px;}
.yd4{bottom:461.055000px;}
.y106{bottom:462.135000px;}
.y70{bottom:468.435000px;}
.y116{bottom:470.955000px;}
.y46{bottom:471.675000px;}
.y1d{bottom:474.195000px;}
.yb6{bottom:474.555000px;}
.y93{bottom:477.615000px;}
.yf3{bottom:485.895000px;}
.y115{bottom:494.715000px;}
.y45{bottom:495.615000px;}
.y1c{bottom:497.955000px;}
.yd3{bottom:499.935000px;}
.y92{bottom:501.375000px;}
.y6f{bottom:507.675000px;}
.yf2{bottom:509.655000px;}
.yb5{bottom:513.255000px;}
.y44{bottom:519.375000px;}
.y1b{bottom:521.715000px;}
.y105{bottom:524.775000px;}
.y6e{bottom:531.435000px;}
.y91{bottom:532.155000px;}
.yf1{bottom:533.595000px;}
.yb4{bottom:537.195000px;}
.yd2{bottom:538.275000px;}
.y1a{bottom:545.655000px;}
.y104{bottom:548.535000px;}
.y43{bottom:554.295000px;}
.y6d{bottom:555.195000px;}
.yb3{bottom:560.955000px;}
.y19{bottom:569.415000px;}
.y90{bottom:571.215000px;}
.y42{bottom:571.755000px;}
.yf0{bottom:572.295000px;}
.yd1{bottom:577.515000px;}
.y6c{bottom:578.955000px;}
.yb2{bottom:584.715000px;}
.y41{bottom:585.255000px;}
.y18{bottom:593.175000px;}
.y8f{bottom:595.155000px;}
.yef{bottom:596.055000px;}
.yd0{bottom:601.275000px;}
.y6b{bottom:602.895000px;}
.yb1{bottom:608.475000px;}
.y17{bottom:616.935000px;}
.y8e{bottom:618.915000px;}
.yee{bottom:619.995000px;}
.ycf{bottom:625.035000px;}
.y6a{bottom:626.655000px;}
.yb0{bottom:632.415000px;}
.y103{bottom:634.935000px;}
.y12c{bottom:637.635000px;}
.y16{bottom:640.695000px;}
.y8d{bottom:642.675000px;}
.yce{bottom:648.975000px;}
.y69{bottom:650.415000px;}
.yaf{bottom:656.175000px;}
.yed{bottom:658.695000px;}
.y15{bottom:664.635000px;}
.ycd{bottom:672.735000px;}
.y68{bottom:674.175000px;}
.y12b{bottom:676.365000px;}
.yae{bottom:679.965000px;}
.y8c{bottom:681.585000px;}
.yec{bottom:682.665000px;}
.ycc{bottom:696.525000px;}
.y14{bottom:697.965000px;}
.y12a{bottom:700.125000px;}
.yad{bottom:703.725000px;}
.y67{bottom:704.985000px;}
.y8b{bottom:705.345000px;}
.yeb{bottom:706.425000px;}
.ycb{bottom:720.285000px;}
.y102{bottom:721.365000px;}
.y13{bottom:723.885000px;}
.yac{bottom:727.665000px;}
.y8a{bottom:729.105000px;}
.yea{bottom:730.185000px;}
.y129{bottom:739.005000px;}
.y66{bottom:744.225000px;}
.y101{bottom:745.125000px;}
.y12{bottom:745.485000px;}
.yab{bottom:751.425000px;}
.y89{bottom:752.865000px;}
.yca{bottom:759.165000px;}
.y128{bottom:762.765000px;}
.y65{bottom:767.985000px;}
.ye9{bottom:769.065000px;}
.y11{bottom:769.785000px;}
.yaa{bottom:775.185000px;}
.y88{bottom:776.805000px;}
.yc9{bottom:782.925000px;}
.y64{bottom:791.745000px;}
.ye8{bottom:792.825000px;}
.y10{bottom:794.085000px;}
.ya9{bottom:798.945000px;}
.y87{bottom:800.565000px;}
.y127{bottom:801.645000px;}
.yc8{bottom:806.685000px;}
.y10f{bottom:807.765000px;}
.y63{bottom:815.505000px;}
.ye7{bottom:816.585000px;}
.yf{bottom:818.385000px;}
.ya8{bottom:822.705000px;}
.yc7{bottom:830.625000px;}
.y100{bottom:831.525000px;}
.y62{bottom:838.905000px;}
.y86{bottom:839.265000px;}
.y126{bottom:840.345000px;}
.ye{bottom:842.145000px;}
.ye6{bottom:855.465000px;}
.yd{bottom:861.045000px;}
.ya7{bottom:861.225000px;}
.y85{bottom:863.205000px;}
.y125{bottom:864.285000px;}
.yc6{bottom:869.325000px;}
.y61{bottom:878.145000px;}
.ye5{bottom:879.225000px;}
.yc{bottom:883.905000px;}
.y84{bottom:886.965000px;}
.y124{bottom:888.045000px;}
.yc5{bottom:893.085000px;}
.y114{bottom:894.165000px;}
.ya6{bottom:900.465000px;}
.y60{bottom:901.905000px;}
.yb{bottom:908.565000px;}
.y83{bottom:910.770000px;}
.yc4{bottom:917.070000px;}
.ye4{bottom:917.970000px;}
.ya5{bottom:924.270000px;}
.y5f{bottom:925.890000px;}
.y123{bottom:926.790000px;}
.yc3{bottom:940.830000px;}
.ye3{bottom:941.910000px;}
.ya{bottom:945.150000px;}
.ya4{bottom:948.030000px;}
.y5e{bottom:949.650000px;}
.yc2{bottom:964.590000px;}
.ye2{bottom:965.670000px;}
.ya3{bottom:971.790000px;}
.y5d{bottom:973.050000px;}
.y82{bottom:973.410000px;}
.y9{bottom:974.130000px;}
.y113{bottom:980.610000px;}
.yc1{bottom:988.350000px;}
.y2c{bottom:988.740000px;}
.y2e{bottom:990.180000px;}
.y8{bottom:993.390000px;}
.ya2{bottom:995.730000px;}
.y81{bottom:997.170000px;}
.ye1{bottom:1004.370000px;}
.y5c{bottom:1012.290000px;}
.y40{bottom:1019.490000px;}
.y80{bottom:1020.930000px;}
.y7{bottom:1027.590000px;}
.ye0{bottom:1028.310000px;}
.y5b{bottom:1036.050000px;}
.y3f{bottom:1043.250000px;}
.ydf{bottom:1052.070000px;}
.y5a{bottom:1059.810000px;}
.y6{bottom:1062.870000px;}
.y3e{bottom:1067.010000px;}
.y59{bottom:1083.570000px;}
.y3d{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y58{bottom:1107.510000px;}
.y3c{bottom:1114.710000px;}
.y57{bottom:1138.110000px;}
.y3b{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y39{bottom:1180.440000px;}
.y38{bottom:1196.280000px;}
.y30{bottom:1207.800000px;}
.h14{height:11.700000px;}
.h12{height:14.400000px;}
.h1c{height:18.000000px;}
.h1d{height:18.180000px;}
.h17{height:24.380859px;}
.h19{height:25.740000px;}
.h18{height:36.168398px;}
.h2{height:38.405391px;}
.h13{height:38.464805px;}
.h5{height:38.469727px;}
.h1b{height:40.843828px;}
.h1a{height:45.720703px;}
.h16{height:49.680000px;}
.hb{height:50.597578px;}
.h15{height:52.817344px;}
.h4{height:53.709961px;}
.h10{height:58.621992px;}
.he{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:60.960938px;}
.ha{height:63.210938px;}
.h9{height:64.978594px;}
.h3{height:65.884219px;}
.hf{height:70.628906px;}
.hd{height:70.664062px;}
.h11{height:72.562500px;}
.hc{height:73.956797px;}
.h7{height:94.816406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:73.800000px;}
.w9{width:74.520000px;}
.w8{width:74.700000px;}
.wb{width:75.240000px;}
.w6{width:79.200000px;}
.w4{width:96.480000px;}
.w2{width:135.000000px;}
.w3{width:137.340000px;}
.w7{width:168.660000px;}
.w5{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.836000px;}
.x11{left:21.135000px;}
.xa{left:44.970000px;}
.xd{left:94.500000px;}
.x1{left:108.036000px;}
.xb{left:114.120000px;}
.x2{left:137.916000px;}
.x12{left:160.950000px;}
.x1a{left:166.890000px;}
.x14{left:192.810000px;}
.x13{left:196.770000px;}
.x17{left:296.535000px;}
.x3{left:306.075000px;}
.x16{left:311.475000px;}
.x7{left:325.875000px;}
.x8{left:348.555000px;}
.x19{left:369.075000px;}
.x10{left:374.940000px;}
.x6{left:391.035000px;}
.x5{left:434.595000px;}
.x4{left:446.475000px;}
.xe{left:454.965000px;}
.x9{left:668.340000px;}
.x15{left:785.310000px;}
.xf{left:813.780000px;}
.x18{left:818.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.949333pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.310400pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.372267pt;}
.lsc{letter-spacing:0.640000pt;}
.ls8{letter-spacing:14.720000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.205547pt;}
.ws1{word-spacing:-8.833280pt;}
.ws2{word-spacing:-8.522880pt;}
.ws8{word-spacing:-7.883947pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-2.589440pt;}
._0{margin-left:-1.442560pt;}
._1{width:0.950613pt;}
._5{width:2.022827pt;}
._4{width:3.072000pt;}
._3{width:3.968000pt;}
._10{width:5.376000pt;}
._11{width:6.379947pt;}
._17{width:7.358720pt;}
._a{width:8.384000pt;}
._8{width:9.984000pt;}
._9{width:10.944000pt;}
._b{width:12.084053pt;}
._c{width:13.147733pt;}
._12{width:14.072320pt;}
._f{width:15.764053pt;}
._6{width:17.728000pt;}
._7{width:18.880000pt;}
._d{width:20.096000pt;}
._e{width:21.056000pt;}
._13{width:22.784000pt;}
._14{width:23.744000pt;}
._16{width:24.861440pt;}
._18{width:26.624000pt;}
._1d{width:28.394667pt;}
._1e{width:29.537280pt;}
._1b{width:31.616000pt;}
._1c{width:32.658773pt;}
._1f{width:35.520000pt;}
._19{width:67.136000pt;}
._1a{width:68.480000pt;}
._20{width:119.776000pt;}
._2{width:2395.205333pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y2f{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.920000pt;}
.y2d{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y36{bottom:4.800000pt;}
.y56{bottom:5.280000pt;}
.y7f{bottom:5.440000pt;}
.y112{bottom:5.440133pt;}
.yff{bottom:10.080000pt;}
.y12d{bottom:10.720000pt;}
.y7e{bottom:10.880000pt;}
.y33{bottom:11.200000pt;}
.y111{bottom:11.679867pt;}
.y55{bottom:12.160000pt;}
.y10e{bottom:12.480000pt;}
.y122{bottom:12.960000pt;}
.y3a{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y32{bottom:25.280000pt;}
.y37{bottom:33.280000pt;}
.y31{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y34{bottom:60.960000pt;}
.ya1{bottom:108.480000pt;}
.y2b{bottom:109.120000pt;}
.y121{bottom:119.200000pt;}
.y110{bottom:124.640000pt;}
.y54{bottom:125.440000pt;}
.ya0{bottom:129.600000pt;}
.y2a{bottom:130.400000pt;}
.y7d{bottom:135.200000pt;}
.y120{bottom:140.320000pt;}
.yfe{bottom:145.760000pt;}
.y53{bottom:146.560000pt;}
.y9f{bottom:150.880000pt;}
.y29{bottom:151.520000pt;}
.yc0{bottom:155.520000pt;}
.y7c{bottom:156.320000pt;}
.yde{bottom:158.240000pt;}
.y10d{bottom:159.200000pt;}
.y11f{bottom:161.440000pt;}
.yfd{bottom:166.880000pt;}
.y52{bottom:168.160000pt;}
.y9e{bottom:172.000000pt;}
.y28{bottom:172.640000pt;}
.y7b{bottom:177.440000pt;}
.ydd{bottom:179.360000pt;}
.y10c{bottom:180.320000pt;}
.y51{bottom:189.306667pt;}
.ybf{bottom:190.426667pt;}
.y9d{bottom:193.146667pt;}
.y27{bottom:193.786667pt;}
.y11e{bottom:196.026667pt;}
.y7a{bottom:198.746667pt;}
.ydc{bottom:200.506667pt;}
.yfc{bottom:201.466667pt;}
.y50{bottom:210.426667pt;}
.ybe{bottom:211.546667pt;}
.y11d{bottom:217.146667pt;}
.y79{bottom:219.866667pt;}
.y9c{bottom:220.506667pt;}
.ydb{bottom:221.626667pt;}
.yfb{bottom:222.586667pt;}
.y26{bottom:228.026667pt;}
.y4f{bottom:231.546667pt;}
.ybd{bottom:232.666667pt;}
.y10b{bottom:236.026667pt;}
.y11c{bottom:238.266667pt;}
.y78{bottom:240.986667pt;}
.yfa{bottom:243.866667pt;}
.y25{bottom:248.186667pt;}
.y4e{bottom:252.826667pt;}
.ybc{bottom:253.946667pt;}
.y9b{bottom:255.226667pt;}
.yda{bottom:256.186667pt;}
.y10a{bottom:257.146667pt;}
.y77{bottom:262.106667pt;}
.y24{bottom:267.386667pt;}
.y11b{bottom:272.826667pt;}
.y4d{bottom:273.946667pt;}
.ybb{bottom:275.066667pt;}
.y9a{bottom:276.346667pt;}
.yd9{bottom:277.306667pt;}
.yf9{bottom:278.266667pt;}
.y76{bottom:283.386667pt;}
.y23{bottom:288.986667pt;}
.y11a{bottom:293.946667pt;}
.y4c{bottom:295.066667pt;}
.yba{bottom:296.186667pt;}
.y99{bottom:297.626667pt;}
.yd8{bottom:298.426667pt;}
.yf8{bottom:299.386667pt;}
.y75{bottom:304.506667pt;}
.y22{bottom:310.586667pt;}
.y109{bottom:312.826667pt;}
.y4b{bottom:313.626667pt;}
.y98{bottom:318.746667pt;}
.yf7{bottom:320.666667pt;}
.yb9{bottom:323.546667pt;}
.y74{bottom:325.626667pt;}
.y119{bottom:328.346667pt;}
.y21{bottom:331.066667pt;}
.yd7{bottom:332.986667pt;}
.y108{bottom:333.946667pt;}
.y4a{bottom:334.586667pt;}
.y97{bottom:339.866667pt;}
.y73{bottom:346.746667pt;}
.y20{bottom:349.786667pt;}
.yd6{bottom:354.106667pt;}
.yf6{bottom:355.066667pt;}
.y49{bottom:355.866667pt;}
.yb8{bottom:358.266667pt;}
.y96{bottom:360.986667pt;}
.y118{bottom:362.906667pt;}
.y72{bottom:367.866667pt;}
.yf5{bottom:376.186667pt;}
.y48{bottom:376.986667pt;}
.y1f{bottom:379.386667pt;}
.y95{bottom:382.266667pt;}
.y117{bottom:384.026667pt;}
.yd5{bottom:388.666667pt;}
.y71{bottom:389.146667pt;}
.y107{bottom:389.626667pt;}
.yf4{bottom:397.506667pt;}
.y47{bottom:398.146667pt;}
.yb7{bottom:400.706667pt;}
.y1e{bottom:402.786667pt;}
.y94{bottom:403.426667pt;}
.yd4{bottom:409.826667pt;}
.y106{bottom:410.786667pt;}
.y70{bottom:416.386667pt;}
.y116{bottom:418.626667pt;}
.y46{bottom:419.266667pt;}
.y1d{bottom:421.506667pt;}
.yb6{bottom:421.826667pt;}
.y93{bottom:424.546667pt;}
.yf3{bottom:431.906667pt;}
.y115{bottom:439.746667pt;}
.y45{bottom:440.546667pt;}
.y1c{bottom:442.626667pt;}
.yd3{bottom:444.386667pt;}
.y92{bottom:445.666667pt;}
.y6f{bottom:451.266667pt;}
.yf2{bottom:453.026667pt;}
.yb5{bottom:456.226667pt;}
.y44{bottom:461.666667pt;}
.y1b{bottom:463.746667pt;}
.y105{bottom:466.466667pt;}
.y6e{bottom:472.386667pt;}
.y91{bottom:473.026667pt;}
.yf1{bottom:474.306667pt;}
.yb4{bottom:477.506667pt;}
.yd2{bottom:478.466667pt;}
.y1a{bottom:485.026667pt;}
.y104{bottom:487.586667pt;}
.y43{bottom:492.706667pt;}
.y6d{bottom:493.506667pt;}
.yb3{bottom:498.626667pt;}
.y19{bottom:506.146667pt;}
.y90{bottom:507.746667pt;}
.y42{bottom:508.226667pt;}
.yf0{bottom:508.706667pt;}
.yd1{bottom:513.346667pt;}
.y6c{bottom:514.626667pt;}
.yb2{bottom:519.746667pt;}
.y41{bottom:520.226667pt;}
.y18{bottom:527.266667pt;}
.y8f{bottom:529.026667pt;}
.yef{bottom:529.826667pt;}
.yd0{bottom:534.466667pt;}
.y6b{bottom:535.906667pt;}
.yb1{bottom:540.866667pt;}
.y17{bottom:548.386667pt;}
.y8e{bottom:550.146667pt;}
.yee{bottom:551.106667pt;}
.ycf{bottom:555.586667pt;}
.y6a{bottom:557.026667pt;}
.yb0{bottom:562.146667pt;}
.y103{bottom:564.386667pt;}
.y12c{bottom:566.786667pt;}
.y16{bottom:569.506667pt;}
.y8d{bottom:571.266667pt;}
.yce{bottom:576.866667pt;}
.y69{bottom:578.146667pt;}
.yaf{bottom:583.266667pt;}
.yed{bottom:585.506667pt;}
.y15{bottom:590.786667pt;}
.ycd{bottom:597.986667pt;}
.y68{bottom:599.266667pt;}
.y12b{bottom:601.213333pt;}
.yae{bottom:604.413333pt;}
.y8c{bottom:605.853333pt;}
.yec{bottom:606.813333pt;}
.ycc{bottom:619.133333pt;}
.y14{bottom:620.413333pt;}
.y12a{bottom:622.333333pt;}
.yad{bottom:625.533333pt;}
.y67{bottom:626.653333pt;}
.y8b{bottom:626.973333pt;}
.yeb{bottom:627.933333pt;}
.ycb{bottom:640.253333pt;}
.y102{bottom:641.213333pt;}
.y13{bottom:643.453333pt;}
.yac{bottom:646.813333pt;}
.y8a{bottom:648.093333pt;}
.yea{bottom:649.053333pt;}
.y129{bottom:656.893333pt;}
.y66{bottom:661.533333pt;}
.y101{bottom:662.333333pt;}
.y12{bottom:662.653333pt;}
.yab{bottom:667.933333pt;}
.y89{bottom:669.213333pt;}
.yca{bottom:674.813333pt;}
.y128{bottom:678.013333pt;}
.y65{bottom:682.653333pt;}
.ye9{bottom:683.613333pt;}
.y11{bottom:684.253333pt;}
.yaa{bottom:689.053333pt;}
.y88{bottom:690.493333pt;}
.yc9{bottom:695.933333pt;}
.y64{bottom:703.773333pt;}
.ye8{bottom:704.733333pt;}
.y10{bottom:705.853333pt;}
.ya9{bottom:710.173333pt;}
.y87{bottom:711.613333pt;}
.y127{bottom:712.573333pt;}
.yc8{bottom:717.053333pt;}
.y10f{bottom:718.013333pt;}
.y63{bottom:724.893333pt;}
.ye7{bottom:725.853333pt;}
.yf{bottom:727.453333pt;}
.ya8{bottom:731.293333pt;}
.yc7{bottom:738.333333pt;}
.y100{bottom:739.133333pt;}
.y62{bottom:745.693333pt;}
.y86{bottom:746.013333pt;}
.y126{bottom:746.973333pt;}
.ye{bottom:748.573333pt;}
.ye6{bottom:760.413333pt;}
.yd{bottom:765.373333pt;}
.ya7{bottom:765.533333pt;}
.y85{bottom:767.293333pt;}
.y125{bottom:768.253333pt;}
.yc6{bottom:772.733333pt;}
.y61{bottom:780.573333pt;}
.ye5{bottom:781.533333pt;}
.yc{bottom:785.693333pt;}
.y84{bottom:788.413333pt;}
.y124{bottom:789.373333pt;}
.yc5{bottom:793.853333pt;}
.y114{bottom:794.813333pt;}
.ya6{bottom:800.413333pt;}
.y60{bottom:801.693333pt;}
.yb{bottom:807.613333pt;}
.y83{bottom:809.573333pt;}
.yc4{bottom:815.173333pt;}
.ye4{bottom:815.973333pt;}
.ya5{bottom:821.573333pt;}
.y5f{bottom:823.013333pt;}
.y123{bottom:823.813333pt;}
.yc3{bottom:836.293333pt;}
.ye3{bottom:837.253333pt;}
.ya{bottom:840.133333pt;}
.ya4{bottom:842.693333pt;}
.y5e{bottom:844.133333pt;}
.yc2{bottom:857.413333pt;}
.ye2{bottom:858.373333pt;}
.ya3{bottom:863.813333pt;}
.y5d{bottom:864.933333pt;}
.y82{bottom:865.253333pt;}
.y9{bottom:865.893333pt;}
.y113{bottom:871.653333pt;}
.yc1{bottom:878.533333pt;}
.y2c{bottom:878.880000pt;}
.y2e{bottom:880.160000pt;}
.y8{bottom:883.013333pt;}
.ya2{bottom:885.093333pt;}
.y81{bottom:886.373333pt;}
.ye1{bottom:892.773333pt;}
.y5c{bottom:899.813333pt;}
.y40{bottom:906.213333pt;}
.y80{bottom:907.493333pt;}
.y7{bottom:913.413333pt;}
.ye0{bottom:914.053333pt;}
.y5b{bottom:920.933333pt;}
.y3f{bottom:927.333333pt;}
.ydf{bottom:935.173333pt;}
.y5a{bottom:942.053333pt;}
.y6{bottom:944.773333pt;}
.y3e{bottom:948.453333pt;}
.y59{bottom:963.173333pt;}
.y3d{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y58{bottom:984.453333pt;}
.y3c{bottom:990.853333pt;}
.y57{bottom:1011.653333pt;}
.y3b{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y39{bottom:1049.280000pt;}
.y38{bottom:1063.360000pt;}
.y30{bottom:1073.600000pt;}
.h14{height:10.400000pt;}
.h12{height:12.800000pt;}
.h1c{height:16.000000pt;}
.h1d{height:16.160000pt;}
.h17{height:21.671875pt;}
.h19{height:22.880000pt;}
.h18{height:32.149687pt;}
.h2{height:34.138125pt;}
.h13{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1b{height:36.305625pt;}
.h1a{height:40.640625pt;}
.h16{height:44.160000pt;}
.hb{height:44.975625pt;}
.h15{height:46.948750pt;}
.h4{height:47.742188pt;}
.h10{height:52.108438pt;}
.he{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.187500pt;}
.ha{height:56.187500pt;}
.h9{height:57.758750pt;}
.h3{height:58.563750pt;}
.hf{height:62.781250pt;}
.hd{height:62.812500pt;}
.h11{height:64.500000pt;}
.hc{height:65.739375pt;}
.h7{height:84.281250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:65.600000pt;}
.w9{width:66.240000pt;}
.w8{width:66.400000pt;}
.wb{width:66.880000pt;}
.w6{width:70.400000pt;}
.w4{width:85.760000pt;}
.w2{width:120.000000pt;}
.w3{width:122.080000pt;}
.w7{width:149.920000pt;}
.w5{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.632000pt;}
.x11{left:18.786667pt;}
.xa{left:39.973333pt;}
.xd{left:84.000000pt;}
.x1{left:96.032000pt;}
.xb{left:101.440000pt;}
.x2{left:122.592000pt;}
.x12{left:143.066667pt;}
.x1a{left:148.346667pt;}
.x14{left:171.386667pt;}
.x13{left:174.906667pt;}
.x17{left:263.586667pt;}
.x3{left:272.066667pt;}
.x16{left:276.866667pt;}
.x7{left:289.666667pt;}
.x8{left:309.826667pt;}
.x19{left:328.066667pt;}
.x10{left:333.280000pt;}
.x6{left:347.586667pt;}
.x5{left:386.306667pt;}
.x4{left:396.866667pt;}
.xe{left:404.413333pt;}
.x9{left:594.080000pt;}
.x15{left:698.053333pt;}
.xf{left:723.360000pt;}
.x18{left:727.360000pt;}
}




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