
    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_503d5fb9d446a7f15d28a211.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_75f902184b023394ce56bd96.woff2')format("woff");}.ff2{font-family:ff2;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;}
.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);}
.v1{vertical-align:-6.480000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.783000px;}
.lse{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.684000px;}
.lsf{letter-spacing:-0.021600px;}
.ls13{letter-spacing:-0.016200px;}
.ls11{letter-spacing:-0.010800px;}
.ls10{letter-spacing:-0.007200px;}
.ls1a{letter-spacing:-0.006750px;}
.ls12{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005400px;}
.lsb{letter-spacing:0.007200px;}
.lsc{letter-spacing:0.010800px;}
.ls14{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.020250px;}
.lsd{letter-spacing:0.031200px;}
.ls4{letter-spacing:0.033600px;}
.ls6{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.037800px;}
.ls7{letter-spacing:0.038400px;}
.ls3{letter-spacing:0.045600px;}
.ls8{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.050400px;}
.ls17{letter-spacing:0.597600px;}
.ls15{letter-spacing:1.440000px;}
.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;}
}
.ws83{word-spacing:-22.500000px;}
.wsa{word-spacing:-18.000000px;}
.ws84{word-spacing:-16.875000px;}
.wse{word-spacing:-13.510800px;}
.wsf{word-spacing:-13.505400px;}
.wsb{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.494600px;}
.ws7{word-spacing:-13.489200px;}
.ws10{word-spacing:-13.483800px;}
.ws55{word-spacing:-2.577600px;}
.ws47{word-spacing:-2.397600px;}
.ws1c{word-spacing:-2.282400px;}
.ws1f{word-spacing:-2.102400px;}
.ws6e{word-spacing:-2.037600px;}
.ws26{word-spacing:-1.980000px;}
.ws3{word-spacing:-1.965600px;}
.ws38{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.382400px;}
.ws52{word-spacing:-0.892800px;}
.ws45{word-spacing:-0.842400px;}
.ws23{word-spacing:-0.777600px;}
.ws18{word-spacing:-0.662400px;}
.ws20{word-spacing:-0.597600px;}
.ws76{word-spacing:-0.417600px;}
.ws7b{word-spacing:-0.122400px;}
.ws17{word-spacing:-0.057600px;}
.ws13{word-spacing:0.000000px;}
.ws54{word-spacing:0.122400px;}
.ws63{word-spacing:0.180000px;}
.ws4f{word-spacing:0.324000px;}
.ws4e{word-spacing:0.360000px;}
.ws3d{word-spacing:0.417600px;}
.ws43{word-spacing:0.482400px;}
.ws81{word-spacing:0.540000px;}
.ws7e{word-spacing:0.597600px;}
.ws4d{word-spacing:0.720000px;}
.ws60{word-spacing:0.777600px;}
.ws82{word-spacing:0.842400px;}
.ws19{word-spacing:0.900000px;}
.ws58{word-spacing:1.015200px;}
.ws44{word-spacing:1.080000px;}
.ws53{word-spacing:1.087200px;}
.ws5f{word-spacing:1.195200px;}
.ws65{word-spacing:1.202400px;}
.ws0{word-spacing:1.377000px;}
.ws2{word-spacing:1.382400px;}
.ws41{word-spacing:1.440000px;}
.ws42{word-spacing:1.497600px;}
.ws51{word-spacing:1.562400px;}
.ws79{word-spacing:1.620000px;}
.ws3a{word-spacing:1.677600px;}
.ws29{word-spacing:1.792800px;}
.ws1{word-spacing:1.800000px;}
.ws80{word-spacing:1.922400px;}
.ws72{word-spacing:2.102400px;}
.ws5a{word-spacing:2.332800px;}
.ws40{word-spacing:2.340000px;}
.ws62{word-spacing:2.577600px;}
.ws64{word-spacing:2.642400px;}
.ws14{word-spacing:3.060000px;}
.ws7f{word-spacing:3.240000px;}
.ws36{word-spacing:3.297600px;}
.ws9{word-spacing:3.299400px;}
.ws4c{word-spacing:3.420000px;}
.ws75{word-spacing:3.600000px;}
.ws6a{word-spacing:3.722400px;}
.ws25{word-spacing:3.780000px;}
.ws22{word-spacing:3.960000px;}
.ws31{word-spacing:4.082400px;}
.ws1e{word-spacing:4.197600px;}
.ws3b{word-spacing:4.377600px;}
.ws71{word-spacing:4.500000px;}
.ws78{word-spacing:4.557600px;}
.ws33{word-spacing:4.622400px;}
.ws73{word-spacing:4.802400px;}
.ws3f{word-spacing:4.917600px;}
.ws5e{word-spacing:5.162400px;}
.ws5c{word-spacing:5.169600px;}
.ws21{word-spacing:5.522400px;}
.ws59{word-spacing:5.637600px;}
.ws3e{word-spacing:5.702400px;}
.ws1b{word-spacing:5.940000px;}
.ws50{word-spacing:5.997600px;}
.wsd{word-spacing:6.256800px;}
.ws6{word-spacing:6.261000px;}
.ws4{word-spacing:6.301800px;}
.ws5{word-spacing:6.312000px;}
.ws8{word-spacing:6.312600px;}
.ws37{word-spacing:6.414600px;}
.ws4b{word-spacing:6.782400px;}
.ws2a{word-spacing:6.962400px;}
.ws61{word-spacing:7.020000px;}
.ws2c{word-spacing:7.077600px;}
.ws69{word-spacing:7.560000px;}
.ws85{word-spacing:7.864500px;}
.ws74{word-spacing:7.920000px;}
.ws1a{word-spacing:7.977600px;}
.ws2e{word-spacing:8.042400px;}
.ws1d{word-spacing:8.157600px;}
.ws34{word-spacing:8.337600px;}
.ws6b{word-spacing:8.460000px;}
.ws46{word-spacing:8.582400px;}
.ws3c{word-spacing:8.640000px;}
.ws30{word-spacing:8.762400px;}
.ws24{word-spacing:9.057600px;}
.ws32{word-spacing:9.482400px;}
.ws57{word-spacing:9.662400px;}
.ws27{word-spacing:10.677600px;}
.ws4a{word-spacing:10.980000px;}
.wsc{word-spacing:11.412000px;}
.ws49{word-spacing:12.117600px;}
.ws28{word-spacing:13.622400px;}
.ws77{word-spacing:13.737600px;}
.ws6d{word-spacing:13.860000px;}
.ws12{word-spacing:14.220000px;}
.ws35{word-spacing:15.120000px;}
.ws39{word-spacing:15.300000px;}
.ws66{word-spacing:17.035200px;}
.ws6f{word-spacing:17.942400px;}
.ws5d{word-spacing:18.000000px;}
.ws2f{word-spacing:18.180000px;}
.ws70{word-spacing:18.540000px;}
.ws56{word-spacing:18.597600px;}
.ws16{word-spacing:19.022400px;}
.ws6c{word-spacing:19.202400px;}
.ws5b{word-spacing:19.677600px;}
.ws2d{word-spacing:20.217600px;}
.ws2b{word-spacing:21.060000px;}
.ws15{word-spacing:21.722400px;}
.ws67{word-spacing:26.402400px;}
.ws68{word-spacing:27.122400px;}
.ws7c{word-spacing:27.360000px;}
.ws7a{word-spacing:27.540000px;}
.ws86{word-spacing:29.282400px;}
.ws48{word-spacing:38.102400px;}
._4{margin-left:-9.360000px;}
._7{margin-left:-6.624000px;}
._5{margin-left:-5.277600px;}
._1{margin-left:-3.763800px;}
._2{margin-left:-2.642400px;}
._0{margin-left:-1.015200px;}
._6{width:3.038400px;}
._9{width:16.961400px;}
._3{width:18.540000px;}
._8{width:55.961400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs3{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.090000px;}
.y5d{bottom:110.658600px;}
.y98{bottom:112.068600px;}
.ycd{bottom:115.667400px;}
.ye7{bottom:115.680000px;}
.y9{bottom:119.145000px;}
.y7c{bottom:121.752000px;}
.yb5{bottom:123.162000px;}
.y26{bottom:123.164400px;}
.y40{bottom:123.180000px;}
.y5c{bottom:131.659200px;}
.y97{bottom:133.069200px;}
.ycc{bottom:136.218000px;}
.ye6{bottom:136.230600px;}
.y7b{bottom:142.752600px;}
.yb4{bottom:144.162600px;}
.y25{bottom:144.165000px;}
.y3f{bottom:144.180600px;}
.y5b{bottom:152.659800px;}
.y96{bottom:154.069800px;}
.ycb{bottom:156.768600px;}
.y7a{bottom:163.753200px;}
.yb3{bottom:165.163200px;}
.y24{bottom:165.165600px;}
.y5a{bottom:173.660400px;}
.y95{bottom:175.070400px;}
.ye5{bottom:177.318600px;}
.yca{bottom:177.319200px;}
.y79{bottom:184.753800px;}
.yb2{bottom:186.163800px;}
.y23{bottom:186.166200px;}
.y3e{bottom:186.177000px;}
.y59{bottom:194.661000px;}
.y94{bottom:196.071000px;}
.yc9{bottom:197.869800px;}
.y78{bottom:205.754400px;}
.yb1{bottom:207.164400px;}
.y22{bottom:207.166800px;}
.y58{bottom:215.661600px;}
.y93{bottom:217.071600px;}
.ye4{bottom:218.418000px;}
.yc8{bottom:218.420400px;}
.y77{bottom:226.755000px;}
.yb0{bottom:228.165000px;}
.y21{bottom:228.167400px;}
.y3d{bottom:228.176400px;}
.y57{bottom:236.662200px;}
.y92{bottom:238.072200px;}
.ye3{bottom:238.968600px;}
.y76{bottom:247.755600px;}
.yaf{bottom:249.165600px;}
.y20{bottom:249.168000px;}
.y3c{bottom:249.177000px;}
.ye2{bottom:259.519200px;}
.yc7{bottom:259.519800px;}
.y75{bottom:268.756200px;}
.yae{bottom:270.166200px;}
.y1f{bottom:270.168600px;}
.y3b{bottom:270.177600px;}
.y56{bottom:278.661600px;}
.yc6{bottom:280.070400px;}
.y91{bottom:280.071600px;}
.y74{bottom:289.756800px;}
.yad{bottom:291.166800px;}
.y1e{bottom:291.169200px;}
.y3a{bottom:291.178200px;}
.y55{bottom:299.212200px;}
.ye1{bottom:300.618600px;}
.yc5{bottom:300.621000px;}
.y90{bottom:300.622200px;}
.y73{bottom:310.757400px;}
.yac{bottom:312.167400px;}
.y1d{bottom:312.169800px;}
.y39{bottom:312.178800px;}
.y54{bottom:319.762800px;}
.ye0{bottom:321.169200px;}
.yc4{bottom:321.171600px;}
.y8f{bottom:321.172800px;}
.y72{bottom:331.758000px;}
.yab{bottom:333.168000px;}
.y1c{bottom:333.170400px;}
.y38{bottom:333.179400px;}
.y53{bottom:340.313400px;}
.ydf{bottom:341.719800px;}
.yc3{bottom:341.722200px;}
.y8e{bottom:341.723400px;}
.y71{bottom:352.758600px;}
.yaa{bottom:354.168600px;}
.y1b{bottom:354.171000px;}
.y37{bottom:354.180000px;}
.y52{bottom:360.864000px;}
.yde{bottom:362.270400px;}
.yc2{bottom:362.272800px;}
.y8d{bottom:362.274000px;}
.y70{bottom:373.759200px;}
.ya9{bottom:375.169200px;}
.y1a{bottom:375.171600px;}
.y36{bottom:375.180600px;}
.y51{bottom:381.414600px;}
.ydd{bottom:382.821000px;}
.yc1{bottom:382.823400px;}
.y8c{bottom:382.824600px;}
.yea{bottom:392.984437px;}
.y6f{bottom:394.759800px;}
.ya8{bottom:396.169800px;}
.y19{bottom:396.172200px;}
.y50{bottom:401.965200px;}
.ydc{bottom:403.371600px;}
.yc0{bottom:403.374000px;}
.y8b{bottom:403.375200px;}
.y6e{bottom:415.760400px;}
.ya7{bottom:417.170400px;}
.y18{bottom:417.172800px;}
.y35{bottom:417.180000px;}
.y4f{bottom:422.515800px;}
.ydb{bottom:423.922200px;}
.ybf{bottom:423.924600px;}
.y8a{bottom:423.925800px;}
.y6d{bottom:436.761000px;}
.ye9{bottom:437.985000px;}
.ya6{bottom:438.171000px;}
.y17{bottom:438.173400px;}
.y4e{bottom:443.066400px;}
.yda{bottom:444.472800px;}
.ybe{bottom:444.475200px;}
.y89{bottom:444.476400px;}
.y6c{bottom:457.761600px;}
.ya5{bottom:459.171600px;}
.y16{bottom:459.174000px;}
.y34{bottom:459.180000px;}
.y4d{bottom:463.617000px;}
.yd9{bottom:465.023400px;}
.y88{bottom:465.027000px;}
.y6b{bottom:478.762200px;}
.ya4{bottom:480.172200px;}
.y15{bottom:480.174600px;}
.y33{bottom:480.176550px;}
.ye8{bottom:482.985000px;}
.y4c{bottom:484.167600px;}
.yd8{bottom:485.574000px;}
.ybd{bottom:485.574600px;}
.y87{bottom:485.577600px;}
.y6a{bottom:499.762800px;}
.ya3{bottom:501.172800px;}
.y14{bottom:501.175200px;}
.y32{bottom:501.177150px;}
.y4b{bottom:504.718200px;}
.yd7{bottom:506.124600px;}
.ybc{bottom:506.125200px;}
.y86{bottom:506.128200px;}
.y69{bottom:520.763400px;}
.ya2{bottom:522.173400px;}
.y13{bottom:522.175800px;}
.y31{bottom:522.177750px;}
.y4a{bottom:525.268800px;}
.yd6{bottom:526.675200px;}
.ybb{bottom:526.675800px;}
.y85{bottom:526.678800px;}
.y68{bottom:541.764000px;}
.ya1{bottom:543.174000px;}
.y12{bottom:543.176400px;}
.y30{bottom:543.178350px;}
.y49{bottom:545.819400px;}
.yd5{bottom:547.225800px;}
.yba{bottom:547.226400px;}
.y84{bottom:547.229400px;}
.y67{bottom:562.764600px;}
.ya0{bottom:564.174600px;}
.y11{bottom:564.177000px;}
.y2f{bottom:564.178950px;}
.y48{bottom:566.370000px;}
.yd4{bottom:567.776400px;}
.y83{bottom:567.780000px;}
.y66{bottom:583.765200px;}
.y9f{bottom:585.175200px;}
.y10{bottom:585.177600px;}
.y2e{bottom:585.179550px;}
.y47{bottom:586.920600px;}
.yb9{bottom:588.325800px;}
.yec{bottom:588.329400px;}
.y82{bottom:588.330600px;}
.y65{bottom:604.765800px;}
.y9e{bottom:606.175800px;}
.yf{bottom:606.178200px;}
.y2d{bottom:606.179400px;}
.yd3{bottom:608.875800px;}
.yb8{bottom:608.876400px;}
.y8{bottom:614.502600px;}
.y64{bottom:625.766400px;}
.y9d{bottom:627.176400px;}
.ye{bottom:627.178800px;}
.y2c{bottom:627.179400px;}
.y46{bottom:628.018800px;}
.yd2{bottom:629.426400px;}
.yb7{bottom:629.427000px;}
.y81{bottom:629.428800px;}
.y7{bottom:635.503200px;}
.y63{bottom:646.767000px;}
.y9c{bottom:648.177000px;}
.y2b{bottom:648.179400px;}
.yd1{bottom:649.977000px;}
.yb6{bottom:649.977600px;}
.yeb{bottom:649.979400px;}
.y6{bottom:656.503800px;}
.y62{bottom:667.767600px;}
.y45{bottom:669.118200px;}
.y9b{bottom:669.177600px;}
.yd{bottom:669.178200px;}
.y2a{bottom:669.179550px;}
.yd0{bottom:670.527600px;}
.y80{bottom:670.528200px;}
.y5{bottom:677.504400px;}
.y61{bottom:688.768200px;}
.y44{bottom:689.668800px;}
.y9a{bottom:690.178200px;}
.yc{bottom:690.178800px;}
.y29{bottom:690.179400px;}
.ycf{bottom:691.078200px;}
.y7f{bottom:691.078800px;}
.y4{bottom:698.505000px;}
.y60{bottom:709.768800px;}
.y43{bottom:710.219400px;}
.y99{bottom:711.178800px;}
.yb{bottom:711.179400px;}
.yce{bottom:711.628800px;}
.y7e{bottom:711.629400px;}
.y5f{bottom:730.769400px;}
.y42{bottom:730.770000px;}
.y28{bottom:732.179400px;}
.ya{bottom:732.180000px;}
.y3{bottom:761.505300px;}
.y7d{bottom:776.850000px;}
.y2{bottom:778.005000px;}
.y5e{bottom:778.095000px;}
.y41{bottom:778.260000px;}
.y27{bottom:779.505000px;}
.hc{height:52.971680px;}
.h2{height:52.998047px;}
.h5{height:64.184062px;}
.h3{height:70.628906px;}
.h4{height:70.664062px;}
.ha{height:70.664662px;}
.h8{height:70.665863px;}
.h6{height:70.666463px;}
.h7{height:70.667062px;}
.he{height:70.668863px;}
.hb{height:70.676063px;}
.h9{height:70.677863px;}
.hf{height:70.709663px;}
.h10{height:88.330078px;}
.h11{height:88.332328px;}
.hd{height:891.000000px;}
.h1{height:892.410000px;}
.h0{height:892.500000px;}
.w2{width:610.215000px;}
.w3{width:610.500000px;}
.w0{width:612.000000px;}
.w1{width:613.500000px;}
.x13{left:-525.465450px;}
.xe{left:-523.965450px;}
.x12{left:-482.940450px;}
.x10{left:-481.440600px;}
.xf{left:-470.865000px;}
.x14{left:-325.785000px;}
.x11{left:-324.285000px;}
.x0{left:0.000000px;}
.x1{left:86.820000px;}
.xc{left:88.320000px;}
.x4{left:90.390600px;}
.x3{left:95.175000px;}
.x2{left:103.050000px;}
.x5{left:115.650000px;}
.xa{left:129.059400px;}
.xd{left:130.845000px;}
.x9{left:139.635000px;}
.x1a{left:179.578800px;}
.x19{left:194.459400px;}
.x6{left:211.635000px;}
.x18{left:234.945000px;}
.xb{left:286.215000px;}
.x7{left:698.820000px;}
.x8{left:741.345000px;}
.x16{left:844.410000px;}
.x17{left:872.355563px;}
.x15{left:907.185000px;}
@media print{
.v1{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.696000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.608000pt;}
.lsf{letter-spacing:-0.019200pt;}
.ls13{letter-spacing:-0.014400pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls10{letter-spacing:-0.006400pt;}
.ls1a{letter-spacing:-0.006000pt;}
.ls12{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004800pt;}
.lsb{letter-spacing:0.006400pt;}
.lsc{letter-spacing:0.009600pt;}
.ls14{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.018000pt;}
.lsd{letter-spacing:0.027733pt;}
.ls4{letter-spacing:0.029867pt;}
.ls6{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.033600pt;}
.ls7{letter-spacing:0.034133pt;}
.ls3{letter-spacing:0.040533pt;}
.ls8{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.044800pt;}
.ls17{letter-spacing:0.531200pt;}
.ls15{letter-spacing:1.280000pt;}
.ws83{word-spacing:-20.000000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws84{word-spacing:-15.000000pt;}
.wse{word-spacing:-12.009600pt;}
.wsf{word-spacing:-12.004800pt;}
.wsb{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.995200pt;}
.ws7{word-spacing:-11.990400pt;}
.ws10{word-spacing:-11.985600pt;}
.ws55{word-spacing:-2.291200pt;}
.ws47{word-spacing:-2.131200pt;}
.ws1c{word-spacing:-2.028800pt;}
.ws1f{word-spacing:-1.868800pt;}
.ws6e{word-spacing:-1.811200pt;}
.ws26{word-spacing:-1.760000pt;}
.ws3{word-spacing:-1.747200pt;}
.ws38{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-1.228800pt;}
.ws52{word-spacing:-0.793600pt;}
.ws45{word-spacing:-0.748800pt;}
.ws23{word-spacing:-0.691200pt;}
.ws18{word-spacing:-0.588800pt;}
.ws20{word-spacing:-0.531200pt;}
.ws76{word-spacing:-0.371200pt;}
.ws7b{word-spacing:-0.108800pt;}
.ws17{word-spacing:-0.051200pt;}
.ws13{word-spacing:0.000000pt;}
.ws54{word-spacing:0.108800pt;}
.ws63{word-spacing:0.160000pt;}
.ws4f{word-spacing:0.288000pt;}
.ws4e{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.371200pt;}
.ws43{word-spacing:0.428800pt;}
.ws81{word-spacing:0.480000pt;}
.ws7e{word-spacing:0.531200pt;}
.ws4d{word-spacing:0.640000pt;}
.ws60{word-spacing:0.691200pt;}
.ws82{word-spacing:0.748800pt;}
.ws19{word-spacing:0.800000pt;}
.ws58{word-spacing:0.902400pt;}
.ws44{word-spacing:0.960000pt;}
.ws53{word-spacing:0.966400pt;}
.ws5f{word-spacing:1.062400pt;}
.ws65{word-spacing:1.068800pt;}
.ws0{word-spacing:1.224000pt;}
.ws2{word-spacing:1.228800pt;}
.ws41{word-spacing:1.280000pt;}
.ws42{word-spacing:1.331200pt;}
.ws51{word-spacing:1.388800pt;}
.ws79{word-spacing:1.440000pt;}
.ws3a{word-spacing:1.491200pt;}
.ws29{word-spacing:1.593600pt;}
.ws1{word-spacing:1.600000pt;}
.ws80{word-spacing:1.708800pt;}
.ws72{word-spacing:1.868800pt;}
.ws5a{word-spacing:2.073600pt;}
.ws40{word-spacing:2.080000pt;}
.ws62{word-spacing:2.291200pt;}
.ws64{word-spacing:2.348800pt;}
.ws14{word-spacing:2.720000pt;}
.ws7f{word-spacing:2.880000pt;}
.ws36{word-spacing:2.931200pt;}
.ws9{word-spacing:2.932800pt;}
.ws4c{word-spacing:3.040000pt;}
.ws75{word-spacing:3.200000pt;}
.ws6a{word-spacing:3.308800pt;}
.ws25{word-spacing:3.360000pt;}
.ws22{word-spacing:3.520000pt;}
.ws31{word-spacing:3.628800pt;}
.ws1e{word-spacing:3.731200pt;}
.ws3b{word-spacing:3.891200pt;}
.ws71{word-spacing:4.000000pt;}
.ws78{word-spacing:4.051200pt;}
.ws33{word-spacing:4.108800pt;}
.ws73{word-spacing:4.268800pt;}
.ws3f{word-spacing:4.371200pt;}
.ws5e{word-spacing:4.588800pt;}
.ws5c{word-spacing:4.595200pt;}
.ws21{word-spacing:4.908800pt;}
.ws59{word-spacing:5.011200pt;}
.ws3e{word-spacing:5.068800pt;}
.ws1b{word-spacing:5.280000pt;}
.ws50{word-spacing:5.331200pt;}
.wsd{word-spacing:5.561600pt;}
.ws6{word-spacing:5.565333pt;}
.ws4{word-spacing:5.601600pt;}
.ws5{word-spacing:5.610667pt;}
.ws8{word-spacing:5.611200pt;}
.ws37{word-spacing:5.701867pt;}
.ws4b{word-spacing:6.028800pt;}
.ws2a{word-spacing:6.188800pt;}
.ws61{word-spacing:6.240000pt;}
.ws2c{word-spacing:6.291200pt;}
.ws69{word-spacing:6.720000pt;}
.ws85{word-spacing:6.990667pt;}
.ws74{word-spacing:7.040000pt;}
.ws1a{word-spacing:7.091200pt;}
.ws2e{word-spacing:7.148800pt;}
.ws1d{word-spacing:7.251200pt;}
.ws34{word-spacing:7.411200pt;}
.ws6b{word-spacing:7.520000pt;}
.ws46{word-spacing:7.628800pt;}
.ws3c{word-spacing:7.680000pt;}
.ws30{word-spacing:7.788800pt;}
.ws24{word-spacing:8.051200pt;}
.ws32{word-spacing:8.428800pt;}
.ws57{word-spacing:8.588800pt;}
.ws27{word-spacing:9.491200pt;}
.ws4a{word-spacing:9.760000pt;}
.wsc{word-spacing:10.144000pt;}
.ws49{word-spacing:10.771200pt;}
.ws28{word-spacing:12.108800pt;}
.ws77{word-spacing:12.211200pt;}
.ws6d{word-spacing:12.320000pt;}
.ws12{word-spacing:12.640000pt;}
.ws35{word-spacing:13.440000pt;}
.ws39{word-spacing:13.600000pt;}
.ws66{word-spacing:15.142400pt;}
.ws6f{word-spacing:15.948800pt;}
.ws5d{word-spacing:16.000000pt;}
.ws2f{word-spacing:16.160000pt;}
.ws70{word-spacing:16.480000pt;}
.ws56{word-spacing:16.531200pt;}
.ws16{word-spacing:16.908800pt;}
.ws6c{word-spacing:17.068800pt;}
.ws5b{word-spacing:17.491200pt;}
.ws2d{word-spacing:17.971200pt;}
.ws2b{word-spacing:18.720000pt;}
.ws15{word-spacing:19.308800pt;}
.ws67{word-spacing:23.468800pt;}
.ws68{word-spacing:24.108800pt;}
.ws7c{word-spacing:24.320000pt;}
.ws7a{word-spacing:24.480000pt;}
.ws86{word-spacing:26.028800pt;}
.ws48{word-spacing:33.868800pt;}
._4{margin-left:-8.320000pt;}
._7{margin-left:-5.888000pt;}
._5{margin-left:-4.691200pt;}
._1{margin-left:-3.345600pt;}
._2{margin-left:-2.348800pt;}
._0{margin-left:-0.902400pt;}
._6{width:2.700800pt;}
._9{width:15.076800pt;}
._3{width:16.480000pt;}
._8{width:49.743467pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.080000pt;}
.y5d{bottom:98.363200pt;}
.y98{bottom:99.616533pt;}
.ycd{bottom:102.815467pt;}
.ye7{bottom:102.826667pt;}
.y9{bottom:105.906667pt;}
.y7c{bottom:108.224000pt;}
.yb5{bottom:109.477333pt;}
.y26{bottom:109.479467pt;}
.y40{bottom:109.493333pt;}
.y5c{bottom:117.030400pt;}
.y97{bottom:118.283733pt;}
.ycc{bottom:121.082667pt;}
.ye6{bottom:121.093867pt;}
.y7b{bottom:126.891200pt;}
.yb4{bottom:128.144533pt;}
.y25{bottom:128.146667pt;}
.y3f{bottom:128.160533pt;}
.y5b{bottom:135.697600pt;}
.y96{bottom:136.950933pt;}
.ycb{bottom:139.349867pt;}
.y7a{bottom:145.558400pt;}
.yb3{bottom:146.811733pt;}
.y24{bottom:146.813867pt;}
.y5a{bottom:154.364800pt;}
.y95{bottom:155.618133pt;}
.ye5{bottom:157.616533pt;}
.yca{bottom:157.617067pt;}
.y79{bottom:164.225600pt;}
.yb2{bottom:165.478933pt;}
.y23{bottom:165.481067pt;}
.y3e{bottom:165.490667pt;}
.y59{bottom:173.032000pt;}
.y94{bottom:174.285333pt;}
.yc9{bottom:175.884267pt;}
.y78{bottom:182.892800pt;}
.yb1{bottom:184.146133pt;}
.y22{bottom:184.148267pt;}
.y58{bottom:191.699200pt;}
.y93{bottom:192.952533pt;}
.ye4{bottom:194.149333pt;}
.yc8{bottom:194.151467pt;}
.y77{bottom:201.560000pt;}
.yb0{bottom:202.813333pt;}
.y21{bottom:202.815467pt;}
.y3d{bottom:202.823467pt;}
.y57{bottom:210.366400pt;}
.y92{bottom:211.619733pt;}
.ye3{bottom:212.416533pt;}
.y76{bottom:220.227200pt;}
.yaf{bottom:221.480533pt;}
.y20{bottom:221.482667pt;}
.y3c{bottom:221.490667pt;}
.ye2{bottom:230.683733pt;}
.yc7{bottom:230.684267pt;}
.y75{bottom:238.894400pt;}
.yae{bottom:240.147733pt;}
.y1f{bottom:240.149867pt;}
.y3b{bottom:240.157867pt;}
.y56{bottom:247.699200pt;}
.yc6{bottom:248.951467pt;}
.y91{bottom:248.952533pt;}
.y74{bottom:257.561600pt;}
.yad{bottom:258.814933pt;}
.y1e{bottom:258.817067pt;}
.y3a{bottom:258.825067pt;}
.y55{bottom:265.966400pt;}
.ye1{bottom:267.216533pt;}
.yc5{bottom:267.218667pt;}
.y90{bottom:267.219733pt;}
.y73{bottom:276.228800pt;}
.yac{bottom:277.482133pt;}
.y1d{bottom:277.484267pt;}
.y39{bottom:277.492267pt;}
.y54{bottom:284.233600pt;}
.ye0{bottom:285.483733pt;}
.yc4{bottom:285.485867pt;}
.y8f{bottom:285.486933pt;}
.y72{bottom:294.896000pt;}
.yab{bottom:296.149333pt;}
.y1c{bottom:296.151467pt;}
.y38{bottom:296.159467pt;}
.y53{bottom:302.500800pt;}
.ydf{bottom:303.750933pt;}
.yc3{bottom:303.753067pt;}
.y8e{bottom:303.754133pt;}
.y71{bottom:313.563200pt;}
.yaa{bottom:314.816533pt;}
.y1b{bottom:314.818667pt;}
.y37{bottom:314.826667pt;}
.y52{bottom:320.768000pt;}
.yde{bottom:322.018133pt;}
.yc2{bottom:322.020267pt;}
.y8d{bottom:322.021333pt;}
.y70{bottom:332.230400pt;}
.ya9{bottom:333.483733pt;}
.y1a{bottom:333.485867pt;}
.y36{bottom:333.493867pt;}
.y51{bottom:339.035200pt;}
.ydd{bottom:340.285333pt;}
.yc1{bottom:340.287467pt;}
.y8c{bottom:340.288533pt;}
.yea{bottom:349.319500pt;}
.y6f{bottom:350.897600pt;}
.ya8{bottom:352.150933pt;}
.y19{bottom:352.153067pt;}
.y50{bottom:357.302400pt;}
.ydc{bottom:358.552533pt;}
.yc0{bottom:358.554667pt;}
.y8b{bottom:358.555733pt;}
.y6e{bottom:369.564800pt;}
.ya7{bottom:370.818133pt;}
.y18{bottom:370.820267pt;}
.y35{bottom:370.826667pt;}
.y4f{bottom:375.569600pt;}
.ydb{bottom:376.819733pt;}
.ybf{bottom:376.821867pt;}
.y8a{bottom:376.822933pt;}
.y6d{bottom:388.232000pt;}
.ye9{bottom:389.320000pt;}
.ya6{bottom:389.485333pt;}
.y17{bottom:389.487467pt;}
.y4e{bottom:393.836800pt;}
.yda{bottom:395.086933pt;}
.ybe{bottom:395.089067pt;}
.y89{bottom:395.090133pt;}
.y6c{bottom:406.899200pt;}
.ya5{bottom:408.152533pt;}
.y16{bottom:408.154667pt;}
.y34{bottom:408.160000pt;}
.y4d{bottom:412.104000pt;}
.yd9{bottom:413.354133pt;}
.y88{bottom:413.357333pt;}
.y6b{bottom:425.566400pt;}
.ya4{bottom:426.819733pt;}
.y15{bottom:426.821867pt;}
.y33{bottom:426.823600pt;}
.ye8{bottom:429.320000pt;}
.y4c{bottom:430.371200pt;}
.yd8{bottom:431.621333pt;}
.ybd{bottom:431.621867pt;}
.y87{bottom:431.624533pt;}
.y6a{bottom:444.233600pt;}
.ya3{bottom:445.486933pt;}
.y14{bottom:445.489067pt;}
.y32{bottom:445.490800pt;}
.y4b{bottom:448.638400pt;}
.yd7{bottom:449.888533pt;}
.ybc{bottom:449.889067pt;}
.y86{bottom:449.891733pt;}
.y69{bottom:462.900800pt;}
.ya2{bottom:464.154133pt;}
.y13{bottom:464.156267pt;}
.y31{bottom:464.158000pt;}
.y4a{bottom:466.905600pt;}
.yd6{bottom:468.155733pt;}
.ybb{bottom:468.156267pt;}
.y85{bottom:468.158933pt;}
.y68{bottom:481.568000pt;}
.ya1{bottom:482.821333pt;}
.y12{bottom:482.823467pt;}
.y30{bottom:482.825200pt;}
.y49{bottom:485.172800pt;}
.yd5{bottom:486.422933pt;}
.yba{bottom:486.423467pt;}
.y84{bottom:486.426133pt;}
.y67{bottom:500.235200pt;}
.ya0{bottom:501.488533pt;}
.y11{bottom:501.490667pt;}
.y2f{bottom:501.492400pt;}
.y48{bottom:503.440000pt;}
.yd4{bottom:504.690133pt;}
.y83{bottom:504.693333pt;}
.y66{bottom:518.902400pt;}
.y9f{bottom:520.155733pt;}
.y10{bottom:520.157867pt;}
.y2e{bottom:520.159600pt;}
.y47{bottom:521.707200pt;}
.yb9{bottom:522.956267pt;}
.yec{bottom:522.959467pt;}
.y82{bottom:522.960533pt;}
.y65{bottom:537.569600pt;}
.y9e{bottom:538.822933pt;}
.yf{bottom:538.825067pt;}
.y2d{bottom:538.826133pt;}
.yd3{bottom:541.222933pt;}
.yb8{bottom:541.223467pt;}
.y8{bottom:546.224533pt;}
.y64{bottom:556.236800pt;}
.y9d{bottom:557.490133pt;}
.ye{bottom:557.492267pt;}
.y2c{bottom:557.492800pt;}
.y46{bottom:558.238933pt;}
.yd2{bottom:559.490133pt;}
.yb7{bottom:559.490667pt;}
.y81{bottom:559.492267pt;}
.y7{bottom:564.891733pt;}
.y63{bottom:574.904000pt;}
.y9c{bottom:576.157333pt;}
.y2b{bottom:576.159467pt;}
.yd1{bottom:577.757333pt;}
.yb6{bottom:577.757867pt;}
.yeb{bottom:577.759467pt;}
.y6{bottom:583.558933pt;}
.y62{bottom:593.571200pt;}
.y45{bottom:594.771733pt;}
.y9b{bottom:594.824533pt;}
.yd{bottom:594.825067pt;}
.y2a{bottom:594.826267pt;}
.yd0{bottom:596.024533pt;}
.y80{bottom:596.025067pt;}
.y5{bottom:602.226133pt;}
.y61{bottom:612.238400pt;}
.y44{bottom:613.038933pt;}
.y9a{bottom:613.491733pt;}
.yc{bottom:613.492267pt;}
.y29{bottom:613.492800pt;}
.ycf{bottom:614.291733pt;}
.y7f{bottom:614.292267pt;}
.y4{bottom:620.893333pt;}
.y60{bottom:630.905600pt;}
.y43{bottom:631.306133pt;}
.y99{bottom:632.158933pt;}
.yb{bottom:632.159467pt;}
.yce{bottom:632.558933pt;}
.y7e{bottom:632.559467pt;}
.y5f{bottom:649.572800pt;}
.y42{bottom:649.573333pt;}
.y28{bottom:650.826133pt;}
.ya{bottom:650.826667pt;}
.y3{bottom:676.893600pt;}
.y7d{bottom:690.533333pt;}
.y2{bottom:691.560000pt;}
.y5e{bottom:691.640000pt;}
.y41{bottom:691.786667pt;}
.y27{bottom:692.893333pt;}
.hc{height:47.085938pt;}
.h2{height:47.109375pt;}
.h5{height:57.052500pt;}
.h3{height:62.781250pt;}
.h4{height:62.812500pt;}
.ha{height:62.813033pt;}
.h8{height:62.814100pt;}
.h6{height:62.814633pt;}
.h7{height:62.815167pt;}
.he{height:62.816767pt;}
.hb{height:62.823167pt;}
.h9{height:62.824767pt;}
.hf{height:62.853033pt;}
.h10{height:78.515625pt;}
.h11{height:78.517625pt;}
.hd{height:792.000000pt;}
.h1{height:793.253333pt;}
.h0{height:793.333333pt;}
.w2{width:542.413333pt;}
.w3{width:542.666667pt;}
.w0{width:544.000000pt;}
.w1{width:545.333333pt;}
.x13{left:-467.080400pt;}
.xe{left:-465.747067pt;}
.x12{left:-429.280400pt;}
.x10{left:-427.947200pt;}
.xf{left:-418.546667pt;}
.x14{left:-289.586667pt;}
.x11{left:-288.253333pt;}
.x0{left:0.000000pt;}
.x1{left:77.173333pt;}
.xc{left:78.506667pt;}
.x4{left:80.347200pt;}
.x3{left:84.600000pt;}
.x2{left:91.600000pt;}
.x5{left:102.800000pt;}
.xa{left:114.719467pt;}
.xd{left:116.306667pt;}
.x9{left:124.120000pt;}
.x1a{left:159.625600pt;}
.x19{left:172.852800pt;}
.x6{left:188.120000pt;}
.x18{left:208.840000pt;}
.xb{left:254.413333pt;}
.x7{left:621.173333pt;}
.x8{left:658.973333pt;}
.x16{left:750.586667pt;}
.x17{left:775.427167pt;}
.x15{left:806.386667pt;}
}




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