
    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_1775c635109a01c7a0e01a0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c4e9b8420587cf9204d14a4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_04d69cbc522971ded5c6cd8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_da07862b218ecc4d90f623e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_3d8cbb77ac2437b7cadfa3dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7d35cf79d969126b5877cd1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_b4f2fe0d5e88de3fb0d34733.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_769f853335c049ee83f2dc96.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_f42f0114b3b7f45c31224ce1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_20dfefa1cbcb20e5d06e24e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-3.960000px;}
.lsc{letter-spacing:-1.800000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.132600px;}
.ls0{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls6{letter-spacing:21.060000px;}
.lsd{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.186000px;}
.ws9{word-spacing:-10.980000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._a{margin-left:-7.709040px;}
._e{margin-left:-5.318640px;}
._3{margin-left:-3.406320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.031280px;}
._1{width:1.259280px;}
._9{width:2.326320px;}
._4{width:4.126800px;}
._5{width:5.372400px;}
._b{width:6.872400px;}
._6{width:8.541360px;}
._12{width:9.726720px;}
._d{width:10.756800px;}
._f{width:11.867280px;}
._c{width:12.967920px;}
._1c{width:15.955920px;}
._19{width:17.688960px;}
._1a{width:18.995040px;}
._18{width:20.378160px;}
._17{width:21.453840px;}
._1d{width:22.584960px;}
._1b{width:24.694560px;}
._8{width:25.696800px;}
._7{width:26.712720px;}
._10{width:28.419840px;}
._11{width:29.506320px;}
._16{width:30.540960px;}
._13{width:37.166400px;}
._14{width:38.425680px;}
._15{width:42.903360px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y15{bottom:3.645000px;}
.yb1{bottom:4.320000px;}
.y9e{bottom:4.500000px;}
.y9a{bottom:4.545000px;}
.ya3{bottom:4.680000px;}
.yb6{bottom:5.040000px;}
.ya1{bottom:5.220000px;}
.y96{bottom:5.400000px;}
.ybb{bottom:5.760000px;}
.yc2{bottom:5.940000px;}
.yc8{bottom:7.020000px;}
.yca{bottom:7.734000px;}
.yc6{bottom:7.740000px;}
.ycc{bottom:7.920000px;}
.yb{bottom:9.540000px;}
.y17{bottom:12.420000px;}
.y4a{bottom:13.320000px;}
.y9{bottom:13.860000px;}
.yb8{bottom:19.080000px;}
.ya8{bottom:19.260000px;}
.y98{bottom:19.440000px;}
.y45{bottom:20.520000px;}
.y4c{bottom:21.240000px;}
.y14{bottom:23.985000px;}
.y49{bottom:27.900000px;}
.y8{bottom:30.240000px;}
.y44{bottom:37.800000px;}
.y4b{bottom:39.600000px;}
.y13{bottom:40.545000px;}
.y48{bottom:42.480000px;}
.y7{bottom:46.620000px;}
.y43{bottom:55.080000px;}
.y12{bottom:56.925000px;}
.y2{bottom:57.420000px;}
.y11{bottom:70.065000px;}
.y42{bottom:72.360000px;}
.y6{bottom:73.470000px;}
.y1{bottom:74.376000px;}
.y10{bottom:88.245000px;}
.y41{bottom:89.505000px;}
.y5{bottom:93.090000px;}
.y8a{bottom:100.296000px;}
.ycd{bottom:105.516000px;}
.y40{bottom:106.785000px;}
.yf{bottom:107.325000px;}
.ydf{bottom:107.856000px;}
.y4{bottom:111.450000px;}
.y51{bottom:115.056000px;}
.y10d{bottom:116.136000px;}
.y89{bottom:117.576000px;}
.y3f{bottom:124.065000px;}
.yde{bottom:125.136000px;}
.ycb{bottom:127.296000px;}
.y50{bottom:132.336000px;}
.ye{bottom:133.065000px;}
.y10c{bottom:133.416000px;}
.y88{bottom:134.856000px;}
.y3e{bottom:141.345000px;}
.ydd{bottom:142.416000px;}
.y4f{bottom:149.616000px;}
.yc9{bottom:149.976000px;}
.y10b{bottom:150.690000px;}
.y87{bottom:152.130000px;}
.yd{bottom:157.365000px;}
.y3d{bottom:158.625000px;}
.ydc{bottom:159.510000px;}
.y4e{bottom:166.710000px;}
.y10a{bottom:167.970000px;}
.y86{bottom:169.410000px;}
.yc7{bottom:172.470000px;}
.y3c{bottom:175.905000px;}
.ydb{bottom:176.790000px;}
.y4d{bottom:184.710000px;}
.y109{bottom:185.250000px;}
.y85{bottom:186.510000px;}
.y3b{bottom:193.005000px;}
.yda{bottom:194.070000px;}
.yc5{bottom:194.250000px;}
.y47{bottom:199.110000px;}
.y108{bottom:202.350000px;}
.y84{bottom:203.790000px;}
.y3a{bottom:210.285000px;}
.yd9{bottom:211.350000px;}
.y107{bottom:219.630000px;}
.yc4{bottom:219.990000px;}
.y83{bottom:221.070000px;}
.y39{bottom:227.565000px;}
.yd8{bottom:228.630000px;}
.y106{bottom:236.910000px;}
.yc3{bottom:238.530000px;}
.y38{bottom:244.845000px;}
.yd7{bottom:245.910000px;}
.y82{bottom:250.230000px;}
.y18{bottom:252.930000px;}
.y105{bottom:254.190000px;}
.yc1{bottom:254.910000px;}
.y37{bottom:262.125000px;}
.yd6{bottom:263.010000px;}
.y81{bottom:267.510000px;}
.y104{bottom:271.470000px;}
.yc0{bottom:275.610000px;}
.yd5{bottom:277.050000px;}
.y36{bottom:279.225000px;}
.y103{bottom:288.750000px;}
.ybf{bottom:294.690000px;}
.y35{bottom:296.505000px;}
.y80{bottom:296.850000px;}
.y34{bottom:313.785000px;}
.y7f{bottom:314.130000px;}
.ybe{bottom:314.670000px;}
.y102{bottom:317.910000px;}
.y33{bottom:331.065000px;}
.y7e{bottom:331.230000px;}
.ybd{bottom:334.650000px;}
.y101{bottom:335.190000px;}
.y32{bottom:348.345000px;}
.y7d{bottom:348.555000px;}
.y100{bottom:352.515000px;}
.ybc{bottom:353.955000px;}
.y31{bottom:365.655000px;}
.y7c{bottom:365.835000px;}
.yff{bottom:369.795000px;}
.yba{bottom:373.935000px;}
.y24{bottom:375.555000px;}
.y30{bottom:382.755000px;}
.yfe{bottom:386.895000px;}
.y23{bottom:390.855000px;}
.yb9{bottom:394.455000px;}
.y7b{bottom:394.995000px;}
.y2f{bottom:400.035000px;}
.yfd{bottom:404.175000px;}
.y22{bottom:408.315000px;}
.y7a{bottom:412.275000px;}
.yb7{bottom:413.715000px;}
.y2e{bottom:417.315000px;}
.yfc{bottom:421.455000px;}
.y21{bottom:425.595000px;}
.yb5{bottom:433.695000px;}
.y2d{bottom:434.595000px;}
.yfb{bottom:438.735000px;}
.y79{bottom:441.615000px;}
.y20{bottom:442.875000px;}
.y2c{bottom:451.875000px;}
.yb4{bottom:453.495000px;}
.yfa{bottom:456.015000px;}
.y78{bottom:458.895000px;}
.y1f{bottom:460.155000px;}
.y2b{bottom:469.155000px;}
.yb3{bottom:472.755000px;}
.yf9{bottom:473.115000px;}
.y77{bottom:476.175000px;}
.y1e{bottom:477.435000px;}
.y2a{bottom:486.255000px;}
.yf8{bottom:490.395000px;}
.yb2{bottom:492.735000px;}
.y76{bottom:493.275000px;}
.y1d{bottom:495.075000px;}
.y29{bottom:503.535000px;}
.yf7{bottom:507.675000px;}
.y75{bottom:510.555000px;}
.y1c{bottom:512.535000px;}
.yb0{bottom:512.715000px;}
.y28{bottom:520.815000px;}
.yf6{bottom:524.955000px;}
.y74{bottom:527.835000px;}
.y1b{bottom:530.175000px;}
.yaf{bottom:535.035000px;}
.y27{bottom:538.095000px;}
.yf5{bottom:542.235000px;}
.y73{bottom:545.115000px;}
.yae{bottom:553.575000px;}
.y26{bottom:555.375000px;}
.y1a{bottom:557.535000px;}
.yf4{bottom:560.775000px;}
.yad{bottom:569.955000px;}
.y25{bottom:572.655000px;}
.y72{bottom:574.275000px;}
.y19{bottom:575.175000px;}
.yf3{bottom:579.675000px;}
.yac{bottom:590.115000px;}
.y71{bottom:591.555000px;}
.yf2{bottom:596.775000px;}
.y70{bottom:608.865000px;}
.yab{bottom:610.305000px;}
.yf1{bottom:614.085000px;}
.y6f{bottom:626.145000px;}
.yaa{bottom:630.285000px;}
.yf0{bottom:631.365000px;}
.y6e{bottom:643.425000px;}
.yef{bottom:648.645000px;}
.ya9{bottom:649.725000px;}
.y6d{bottom:660.525000px;}
.yee{bottom:665.925000px;}
.ya7{bottom:669.885000px;}
.y6c{bottom:677.805000px;}
.yed{bottom:683.025000px;}
.yd4{bottom:684.465000px;}
.ya6{bottom:689.865000px;}
.y6b{bottom:695.085000px;}
.yec{bottom:700.305000px;}
.yd3{bottom:707.145000px;}
.ya5{bottom:709.305000px;}
.y6a{bottom:712.365000px;}
.ya4{bottom:729.285000px;}
.yeb{bottom:729.645000px;}
.y69{bottom:741.525000px;}
.yea{bottom:746.925000px;}
.ya2{bottom:749.445000px;}
.y68{bottom:758.805000px;}
.ye9{bottom:764.025000px;}
.ya0{bottom:768.885000px;}
.y67{bottom:776.085000px;}
.ye8{bottom:781.305000px;}
.y9f{bottom:788.865000px;}
.y66{bottom:793.365000px;}
.y9d{bottom:809.025000px;}
.y65{bottom:810.645000px;}
.ye7{bottom:827.925000px;}
.y9c{bottom:828.285000px;}
.y16{bottom:839.445000px;}
.y64{bottom:839.805000px;}
.ye6{bottom:845.025000px;}
.y9b{bottom:848.445000px;}
.y63{bottom:857.085000px;}
.ye5{bottom:862.305000px;}
.y99{bottom:868.605000px;}
.yc{bottom:868.965000px;}
.y62{bottom:874.410000px;}
.ye4{bottom:879.630000px;}
.y97{bottom:887.910000px;}
.y61{bottom:891.690000px;}
.y95{bottom:908.070000px;}
.ye3{bottom:908.790000px;}
.y60{bottom:908.970000px;}
.ye2{bottom:926.070000px;}
.y94{bottom:931.470000px;}
.y5f{bottom:938.130000px;}
.ye1{bottom:943.350000px;}
.y5e{bottom:955.410000px;}
.y93{bottom:960.630000px;}
.y5d{bottom:972.690000px;}
.y92{bottom:977.910000px;}
.y5c{bottom:989.970000px;}
.ye0{bottom:995.190000px;}
.y111{bottom:1001.490000px;}
.y5b{bottom:1007.070000px;}
.y110{bottom:1019.130000px;}
.y5a{bottom:1024.350000px;}
.y10f{bottom:1036.410000px;}
.ya{bottom:1041.450000px;}
.y91{bottom:1041.630000px;}
.y59{bottom:1053.510000px;}
.y10e{bottom:1053.690000px;}
.y90{bottom:1058.910000px;}
.y3{bottom:1066.830000px;}
.y58{bottom:1070.790000px;}
.y8f{bottom:1076.190000px;}
.yd2{bottom:1079.970000px;}
.y57{bottom:1088.070000px;}
.y8e{bottom:1093.290000px;}
.y56{bottom:1105.350000px;}
.yd1{bottom:1105.890000px;}
.y8d{bottom:1110.570000px;}
.yd0{bottom:1120.650000px;}
.y55{bottom:1122.630000px;}
.y8c{bottom:1127.850000px;}
.y54{bottom:1139.940000px;}
.ycf{bottom:1143.180000px;}
.y8b{bottom:1157.040000px;}
.y53{bottom:1157.220000px;}
.yce{bottom:1165.860000px;}
.y52{bottom:1174.320000px;}
.h23{height:18.360000px;}
.h1f{height:18.540000px;}
.h1e{height:18.576000px;}
.h20{height:18.720000px;}
.h24{height:19.080000px;}
.h1c{height:19.260000px;}
.h1d{height:19.440000px;}
.h21{height:19.476000px;}
.h25{height:19.800000px;}
.h26{height:19.980000px;}
.h28{height:21.060000px;}
.h27{height:21.780000px;}
.h2a{height:21.816000px;}
.h29{height:21.960000px;}
.h8{height:25.020000px;}
.hc{height:28.968750px;}
.he{height:29.520000px;}
.h5{height:36.180000px;}
.h19{height:36.462656px;}
.h15{height:38.818125px;}
.hd{height:40.816406px;}
.h17{height:41.726953px;}
.h16{height:42.164648px;}
.h2b{height:43.506914px;}
.h13{height:43.681992px;}
.ha{height:44.002969px;}
.h7{height:44.820000px;}
.h1a{height:45.170156px;}
.h12{height:45.770625px;}
.h11{height:47.980898px;}
.h1b{height:48.088125px;}
.h18{height:53.820000px;}
.h6{height:54.000000px;}
.h14{height:59.439023px;}
.h2{height:61.189805px;}
.hb{height:63.180000px;}
.h22{height:65.884219px;}
.h3{height:71.613281px;}
.hf{height:73.722656px;}
.h4{height:121.536000px;}
.h9{height:172.470000px;}
.h10{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:155.370000px;}
.wc{width:189.750000px;}
.wf{width:196.590000px;}
.wd{width:200.910000px;}
.w9{width:202.890000px;}
.w10{width:206.670000px;}
.wa{width:213.510000px;}
.w6{width:220.935000px;}
.w8{width:331.275000px;}
.we{width:339.735000px;}
.wb{width:353.415000px;}
.w7{width:526.395000px;}
.w4{width:591.945000px;}
.w5{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.xb{left:54.396000px;}
.x2{left:72.900000px;}
.x19{left:74.340000px;}
.x1{left:80.999987px;}
.x3{left:98.130000px;}
.x20{left:108.035987px;}
.x21{left:135.035987px;}
.xd{left:181.650000px;}
.xc{left:187.230000px;}
.x10{left:215.175000px;}
.x4{left:228.270000px;}
.xe{left:231.195000px;}
.x12{left:244.829987px;}
.xf{left:270.075000px;}
.x15{left:276.509987px;}
.x18{left:280.694987px;}
.x1e{left:283.754987px;}
.x8{left:285.015000px;}
.x1c{left:291.674987px;}
.x11{left:293.835000px;}
.x6{left:344.775000px;}
.x7{left:364.035000px;}
.xa{left:373.575000px;}
.x13{left:403.995000px;}
.x1a{left:414.795000px;}
.x16{left:427.935000px;}
.x9{left:452.280000px;}
.x14{left:607.605000px;}
.x1b{left:612.105000px;}
.x17{left:618.405000px;}
.x1f{left:688.469987px;}
.x1d{left:707.549987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-3.520000pt;}
.lsc{letter-spacing:-1.600000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.117867pt;}
.ls0{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls6{letter-spacing:18.720000pt;}
.lsd{letter-spacing:40.912640pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._a{margin-left:-6.852480pt;}
._e{margin-left:-4.727680pt;}
._3{margin-left:-3.027840pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.916693pt;}
._1{width:1.119360pt;}
._9{width:2.067840pt;}
._4{width:3.668267pt;}
._5{width:4.775467pt;}
._b{width:6.108800pt;}
._6{width:7.592320pt;}
._12{width:8.645973pt;}
._d{width:9.561600pt;}
._f{width:10.548693pt;}
._c{width:11.527040pt;}
._1c{width:14.183040pt;}
._19{width:15.723520pt;}
._1a{width:16.884480pt;}
._18{width:18.113920pt;}
._17{width:19.070080pt;}
._1d{width:20.075520pt;}
._1b{width:21.950720pt;}
._8{width:22.841600pt;}
._7{width:23.744640pt;}
._10{width:25.262080pt;}
._11{width:26.227840pt;}
._16{width:27.147520pt;}
._13{width:33.036800pt;}
._14{width:34.156160pt;}
._15{width:38.136320pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y15{bottom:3.240000pt;}
.yb1{bottom:3.840000pt;}
.y9e{bottom:4.000000pt;}
.y9a{bottom:4.040000pt;}
.ya3{bottom:4.160000pt;}
.yb6{bottom:4.480000pt;}
.ya1{bottom:4.640000pt;}
.y96{bottom:4.800000pt;}
.ybb{bottom:5.120000pt;}
.yc2{bottom:5.280000pt;}
.yc8{bottom:6.240000pt;}
.yca{bottom:6.874667pt;}
.yc6{bottom:6.880000pt;}
.ycc{bottom:7.040000pt;}
.yb{bottom:8.480000pt;}
.y17{bottom:11.040000pt;}
.y4a{bottom:11.840000pt;}
.y9{bottom:12.320000pt;}
.yb8{bottom:16.960000pt;}
.ya8{bottom:17.120000pt;}
.y98{bottom:17.280000pt;}
.y45{bottom:18.240000pt;}
.y4c{bottom:18.880000pt;}
.y14{bottom:21.320000pt;}
.y49{bottom:24.800000pt;}
.y8{bottom:26.880000pt;}
.y44{bottom:33.600000pt;}
.y4b{bottom:35.200000pt;}
.y13{bottom:36.040000pt;}
.y48{bottom:37.760000pt;}
.y7{bottom:41.440000pt;}
.y43{bottom:48.960000pt;}
.y12{bottom:50.600000pt;}
.y2{bottom:51.040000pt;}
.y11{bottom:62.280000pt;}
.y42{bottom:64.320000pt;}
.y6{bottom:65.306667pt;}
.y1{bottom:66.112000pt;}
.y10{bottom:78.440000pt;}
.y41{bottom:79.560000pt;}
.y5{bottom:82.746667pt;}
.y8a{bottom:89.152000pt;}
.ycd{bottom:93.792000pt;}
.y40{bottom:94.920000pt;}
.yf{bottom:95.400000pt;}
.ydf{bottom:95.872000pt;}
.y4{bottom:99.066667pt;}
.y51{bottom:102.272000pt;}
.y10d{bottom:103.232000pt;}
.y89{bottom:104.512000pt;}
.y3f{bottom:110.280000pt;}
.yde{bottom:111.232000pt;}
.ycb{bottom:113.152000pt;}
.y50{bottom:117.632000pt;}
.ye{bottom:118.280000pt;}
.y10c{bottom:118.592000pt;}
.y88{bottom:119.872000pt;}
.y3e{bottom:125.640000pt;}
.ydd{bottom:126.592000pt;}
.y4f{bottom:132.992000pt;}
.yc9{bottom:133.312000pt;}
.y10b{bottom:133.946667pt;}
.y87{bottom:135.226667pt;}
.yd{bottom:139.880000pt;}
.y3d{bottom:141.000000pt;}
.ydc{bottom:141.786667pt;}
.y4e{bottom:148.186667pt;}
.y10a{bottom:149.306667pt;}
.y86{bottom:150.586667pt;}
.yc7{bottom:153.306667pt;}
.y3c{bottom:156.360000pt;}
.ydb{bottom:157.146667pt;}
.y4d{bottom:164.186667pt;}
.y109{bottom:164.666667pt;}
.y85{bottom:165.786667pt;}
.y3b{bottom:171.560000pt;}
.yda{bottom:172.506667pt;}
.yc5{bottom:172.666667pt;}
.y47{bottom:176.986667pt;}
.y108{bottom:179.866667pt;}
.y84{bottom:181.146667pt;}
.y3a{bottom:186.920000pt;}
.yd9{bottom:187.866667pt;}
.y107{bottom:195.226667pt;}
.yc4{bottom:195.546667pt;}
.y83{bottom:196.506667pt;}
.y39{bottom:202.280000pt;}
.yd8{bottom:203.226667pt;}
.y106{bottom:210.586667pt;}
.yc3{bottom:212.026667pt;}
.y38{bottom:217.640000pt;}
.yd7{bottom:218.586667pt;}
.y82{bottom:222.426667pt;}
.y18{bottom:224.826667pt;}
.y105{bottom:225.946667pt;}
.yc1{bottom:226.586667pt;}
.y37{bottom:233.000000pt;}
.yd6{bottom:233.786667pt;}
.y81{bottom:237.786667pt;}
.y104{bottom:241.306667pt;}
.yc0{bottom:244.986667pt;}
.yd5{bottom:246.266667pt;}
.y36{bottom:248.200000pt;}
.y103{bottom:256.666667pt;}
.ybf{bottom:261.946667pt;}
.y35{bottom:263.560000pt;}
.y80{bottom:263.866667pt;}
.y34{bottom:278.920000pt;}
.y7f{bottom:279.226667pt;}
.ybe{bottom:279.706667pt;}
.y102{bottom:282.586667pt;}
.y33{bottom:294.280000pt;}
.y7e{bottom:294.426667pt;}
.ybd{bottom:297.466667pt;}
.y101{bottom:297.946667pt;}
.y32{bottom:309.640000pt;}
.y7d{bottom:309.826667pt;}
.y100{bottom:313.346667pt;}
.ybc{bottom:314.626667pt;}
.y31{bottom:325.026667pt;}
.y7c{bottom:325.186667pt;}
.yff{bottom:328.706667pt;}
.yba{bottom:332.386667pt;}
.y24{bottom:333.826667pt;}
.y30{bottom:340.226667pt;}
.yfe{bottom:343.906667pt;}
.y23{bottom:347.426667pt;}
.yb9{bottom:350.626667pt;}
.y7b{bottom:351.106667pt;}
.y2f{bottom:355.586667pt;}
.yfd{bottom:359.266667pt;}
.y22{bottom:362.946667pt;}
.y7a{bottom:366.466667pt;}
.yb7{bottom:367.746667pt;}
.y2e{bottom:370.946667pt;}
.yfc{bottom:374.626667pt;}
.y21{bottom:378.306667pt;}
.yb5{bottom:385.506667pt;}
.y2d{bottom:386.306667pt;}
.yfb{bottom:389.986667pt;}
.y79{bottom:392.546667pt;}
.y20{bottom:393.666667pt;}
.y2c{bottom:401.666667pt;}
.yb4{bottom:403.106667pt;}
.yfa{bottom:405.346667pt;}
.y78{bottom:407.906667pt;}
.y1f{bottom:409.026667pt;}
.y2b{bottom:417.026667pt;}
.yb3{bottom:420.226667pt;}
.yf9{bottom:420.546667pt;}
.y77{bottom:423.266667pt;}
.y1e{bottom:424.386667pt;}
.y2a{bottom:432.226667pt;}
.yf8{bottom:435.906667pt;}
.yb2{bottom:437.986667pt;}
.y76{bottom:438.466667pt;}
.y1d{bottom:440.066667pt;}
.y29{bottom:447.586667pt;}
.yf7{bottom:451.266667pt;}
.y75{bottom:453.826667pt;}
.y1c{bottom:455.586667pt;}
.yb0{bottom:455.746667pt;}
.y28{bottom:462.946667pt;}
.yf6{bottom:466.626667pt;}
.y74{bottom:469.186667pt;}
.y1b{bottom:471.266667pt;}
.yaf{bottom:475.586667pt;}
.y27{bottom:478.306667pt;}
.yf5{bottom:481.986667pt;}
.y73{bottom:484.546667pt;}
.yae{bottom:492.066667pt;}
.y26{bottom:493.666667pt;}
.y1a{bottom:495.586667pt;}
.yf4{bottom:498.466667pt;}
.yad{bottom:506.626667pt;}
.y25{bottom:509.026667pt;}
.y72{bottom:510.466667pt;}
.y19{bottom:511.266667pt;}
.yf3{bottom:515.266667pt;}
.yac{bottom:524.546667pt;}
.y71{bottom:525.826667pt;}
.yf2{bottom:530.466667pt;}
.y70{bottom:541.213333pt;}
.yab{bottom:542.493333pt;}
.yf1{bottom:545.853333pt;}
.y6f{bottom:556.573333pt;}
.yaa{bottom:560.253333pt;}
.yf0{bottom:561.213333pt;}
.y6e{bottom:571.933333pt;}
.yef{bottom:576.573333pt;}
.ya9{bottom:577.533333pt;}
.y6d{bottom:587.133333pt;}
.yee{bottom:591.933333pt;}
.ya7{bottom:595.453333pt;}
.y6c{bottom:602.493333pt;}
.yed{bottom:607.133333pt;}
.yd4{bottom:608.413333pt;}
.ya6{bottom:613.213333pt;}
.y6b{bottom:617.853333pt;}
.yec{bottom:622.493333pt;}
.yd3{bottom:628.573333pt;}
.ya5{bottom:630.493333pt;}
.y6a{bottom:633.213333pt;}
.ya4{bottom:648.253333pt;}
.yeb{bottom:648.573333pt;}
.y69{bottom:659.133333pt;}
.yea{bottom:663.933333pt;}
.ya2{bottom:666.173333pt;}
.y68{bottom:674.493333pt;}
.ye9{bottom:679.133333pt;}
.ya0{bottom:683.453333pt;}
.y67{bottom:689.853333pt;}
.ye8{bottom:694.493333pt;}
.y9f{bottom:701.213333pt;}
.y66{bottom:705.213333pt;}
.y9d{bottom:719.133333pt;}
.y65{bottom:720.573333pt;}
.ye7{bottom:735.933333pt;}
.y9c{bottom:736.253333pt;}
.y16{bottom:746.173333pt;}
.y64{bottom:746.493333pt;}
.ye6{bottom:751.133333pt;}
.y9b{bottom:754.173333pt;}
.y63{bottom:761.853333pt;}
.ye5{bottom:766.493333pt;}
.y99{bottom:772.093333pt;}
.yc{bottom:772.413333pt;}
.y62{bottom:777.253333pt;}
.ye4{bottom:781.893333pt;}
.y97{bottom:789.253333pt;}
.y61{bottom:792.613333pt;}
.y95{bottom:807.173333pt;}
.ye3{bottom:807.813333pt;}
.y60{bottom:807.973333pt;}
.ye2{bottom:823.173333pt;}
.y94{bottom:827.973333pt;}
.y5f{bottom:833.893333pt;}
.ye1{bottom:838.533333pt;}
.y5e{bottom:849.253333pt;}
.y93{bottom:853.893333pt;}
.y5d{bottom:864.613333pt;}
.y92{bottom:869.253333pt;}
.y5c{bottom:879.973333pt;}
.ye0{bottom:884.613333pt;}
.y111{bottom:890.213333pt;}
.y5b{bottom:895.173333pt;}
.y110{bottom:905.893333pt;}
.y5a{bottom:910.533333pt;}
.y10f{bottom:921.253333pt;}
.ya{bottom:925.733333pt;}
.y91{bottom:925.893333pt;}
.y59{bottom:936.453333pt;}
.y10e{bottom:936.613333pt;}
.y90{bottom:941.253333pt;}
.y3{bottom:948.293333pt;}
.y58{bottom:951.813333pt;}
.y8f{bottom:956.613333pt;}
.yd2{bottom:959.973333pt;}
.y57{bottom:967.173333pt;}
.y8e{bottom:971.813333pt;}
.y56{bottom:982.533333pt;}
.yd1{bottom:983.013333pt;}
.y8d{bottom:987.173333pt;}
.yd0{bottom:996.133333pt;}
.y55{bottom:997.893333pt;}
.y8c{bottom:1002.533333pt;}
.y54{bottom:1013.280000pt;}
.ycf{bottom:1016.160000pt;}
.y8b{bottom:1028.480000pt;}
.y53{bottom:1028.640000pt;}
.yce{bottom:1036.320000pt;}
.y52{bottom:1043.840000pt;}
.h23{height:16.320000pt;}
.h1f{height:16.480000pt;}
.h1e{height:16.512000pt;}
.h20{height:16.640000pt;}
.h24{height:16.960000pt;}
.h1c{height:17.120000pt;}
.h1d{height:17.280000pt;}
.h21{height:17.312000pt;}
.h25{height:17.600000pt;}
.h26{height:17.760000pt;}
.h28{height:18.720000pt;}
.h27{height:19.360000pt;}
.h2a{height:19.392000pt;}
.h29{height:19.520000pt;}
.h8{height:22.240000pt;}
.hc{height:25.750000pt;}
.he{height:26.240000pt;}
.h5{height:32.160000pt;}
.h19{height:32.411250pt;}
.h15{height:34.505000pt;}
.hd{height:36.281250pt;}
.h17{height:37.090625pt;}
.h16{height:37.479688pt;}
.h2b{height:38.672812pt;}
.h13{height:38.828437pt;}
.ha{height:39.113750pt;}
.h7{height:39.840000pt;}
.h1a{height:40.151250pt;}
.h12{height:40.685000pt;}
.h11{height:42.649687pt;}
.h1b{height:42.745000pt;}
.h18{height:47.840000pt;}
.h6{height:48.000000pt;}
.h14{height:52.834688pt;}
.h2{height:54.390938pt;}
.hb{height:56.160000pt;}
.h22{height:58.563750pt;}
.h3{height:63.656250pt;}
.hf{height:65.531250pt;}
.h4{height:108.032000pt;}
.h9{height:153.306667pt;}
.h10{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:138.106667pt;}
.wc{width:168.666667pt;}
.wf{width:174.746667pt;}
.wd{width:178.586667pt;}
.w9{width:180.346667pt;}
.w10{width:183.706667pt;}
.wa{width:189.786667pt;}
.w6{width:196.386667pt;}
.w8{width:294.466667pt;}
.we{width:301.986667pt;}
.wb{width:314.146667pt;}
.w7{width:467.906667pt;}
.w4{width:526.173333pt;}
.w5{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.xb{left:48.352000pt;}
.x2{left:64.800000pt;}
.x19{left:66.080000pt;}
.x1{left:71.999988pt;}
.x3{left:87.226667pt;}
.x20{left:96.031988pt;}
.x21{left:120.031988pt;}
.xd{left:161.466667pt;}
.xc{left:166.426667pt;}
.x10{left:191.266667pt;}
.x4{left:202.906667pt;}
.xe{left:205.506667pt;}
.x12{left:217.626655pt;}
.xf{left:240.066667pt;}
.x15{left:245.786655pt;}
.x18{left:249.506655pt;}
.x1e{left:252.226655pt;}
.x8{left:253.346667pt;}
.x1c{left:259.266655pt;}
.x11{left:261.186667pt;}
.x6{left:306.466667pt;}
.x7{left:323.586667pt;}
.xa{left:332.066667pt;}
.x13{left:359.106667pt;}
.x1a{left:368.706667pt;}
.x16{left:380.386667pt;}
.x9{left:402.026667pt;}
.x14{left:540.093333pt;}
.x1b{left:544.093333pt;}
.x17{left:549.693333pt;}
.x1f{left:611.973322pt;}
.x1d{left:628.933322pt;}
}




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