
    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_aae3228a8c1d01c276087f66.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184570;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_21f7d2f7f0b38d1cc023e38a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_2a22eeefdaf95abf6957c90a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_96ab47baeabae11c8e33ad07.woff')format("woff");}.ff4{font-family:ff4;line-height:1.184570;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_a92e3d1841678e46d1ce54e1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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);}
.v4{vertical-align:-16.974000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.088000px;}
.v2{vertical-align:17.031000px;}
.v1{vertical-align:81.000000px;}
.ls42{letter-spacing:-4.662000px;}
.ls1d{letter-spacing:-4.485000px;}
.ls39{letter-spacing:-3.933000px;}
.ls27{letter-spacing:-3.726000px;}
.ls7{letter-spacing:-3.657000px;}
.ls3c{letter-spacing:-2.898000px;}
.ls33{letter-spacing:-2.829000px;}
.ls4{letter-spacing:-2.622000px;}
.ls12{letter-spacing:-2.484000px;}
.ls24{letter-spacing:-2.208000px;}
.lse{letter-spacing:-2.139000px;}
.ls23{letter-spacing:-2.070000px;}
.ls34{letter-spacing:-2.001000px;}
.lsc{letter-spacing:-1.932000px;}
.ls38{letter-spacing:-1.863000px;}
.ls6{letter-spacing:-1.794000px;}
.ls1c{letter-spacing:-1.449000px;}
.ls3d{letter-spacing:-1.380000px;}
.ls2e{letter-spacing:-1.242000px;}
.ls44{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-1.173000px;}
.ls19{letter-spacing:-1.104000px;}
.ls2c{letter-spacing:-1.035000px;}
.ls32{letter-spacing:-0.900000px;}
.ls2f{letter-spacing:-0.897000px;}
.ls41{letter-spacing:-0.882000px;}
.ls3a{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.798000px;}
.ls2d{letter-spacing:-0.759000px;}
.ls1e{letter-spacing:-0.690000px;}
.ls1a{letter-spacing:-0.621000px;}
.ls11{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.552000px;}
.lsb{letter-spacing:-0.483000px;}
.ls10{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.276000px;}
.ls30{letter-spacing:-0.207000px;}
.ls35{letter-spacing:-0.138000px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.345000px;}
.ls17{letter-spacing:0.375000px;}
.ls28{letter-spacing:0.759000px;}
.ls1{letter-spacing:0.790500px;}
.ls9{letter-spacing:0.828000px;}
.ls15{letter-spacing:1.030500px;}
.ls22{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.173000px;}
.ls18{letter-spacing:1.260000px;}
.ls36{letter-spacing:1.320000px;}
.ls21{letter-spacing:1.587000px;}
.lsd{letter-spacing:1.656000px;}
.ls2a{letter-spacing:2.100000px;}
.ls14{letter-spacing:2.362500px;}
.ls16{letter-spacing:2.400000px;}
.ls43{letter-spacing:4.140000px;}
.ls25{letter-spacing:5.658000px;}
.ls3{letter-spacing:6.000000px;}
.ls40{letter-spacing:6.300000px;}
.ls3f{letter-spacing:6.804000px;}
.ls13{letter-spacing:466.766400px;}
.ls29{letter-spacing:466.954200px;}
.ls31{letter-spacing:468.341400px;}
.ls2b{letter-spacing:1011.000000px;}
.ls0{letter-spacing:1013.046000px;}
.ls20{letter-spacing:1018.170000px;}
.ls3e{letter-spacing:1020.150000px;}
.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;}
}
.ws0{word-spacing:-55.978066px;}
.ws40{word-spacing:-24.507000px;}
.ws14{word-spacing:-21.450000px;}
.ws31{word-spacing:-20.175000px;}
.ws2d{word-spacing:-16.836000px;}
.ws20{word-spacing:-15.870000px;}
.ws2c{word-spacing:-15.801000px;}
.ws33{word-spacing:-15.042000px;}
.ws34{word-spacing:-14.904000px;}
.ws22{word-spacing:-14.835000px;}
.ws32{word-spacing:-14.214000px;}
.ws42{word-spacing:-13.620000px;}
.ws15{word-spacing:-13.062000px;}
.ws16{word-spacing:-12.960000px;}
.ws21{word-spacing:-11.303787px;}
.ws41{word-spacing:-10.899000px;}
.ws2a{word-spacing:-9.829380px;}
.ws43{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws25{word-spacing:-5.658000px;}
.ws45{word-spacing:-4.140000px;}
.ws17{word-spacing:-2.400000px;}
.ws2b{word-spacing:-2.100000px;}
.ws1a{word-spacing:-1.725000px;}
.wsd{word-spacing:-1.656000px;}
.ws23{word-spacing:-1.587000px;}
.ws37{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.173000px;}
.wsa{word-spacing:-1.104000px;}
.ws12{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.828000px;}
.ws28{word-spacing:-0.759000px;}
.ws3d{word-spacing:-0.345000px;}
.ws2e{word-spacing:-0.207000px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.138000px;}
.ws36{word-spacing:0.207000px;}
.wsf{word-spacing:0.276000px;}
.ws26{word-spacing:0.300000px;}
.ws38{word-spacing:0.360000px;}
.ws10{word-spacing:0.432000px;}
.wsb{word-spacing:0.483000px;}
.ws9{word-spacing:0.552000px;}
.ws11{word-spacing:0.594000px;}
.ws19{word-spacing:0.621000px;}
.ws1f{word-spacing:0.690000px;}
.ws29{word-spacing:0.702000px;}
.ws2f{word-spacing:0.759000px;}
.ws7{word-spacing:0.798000px;}
.ws3c{word-spacing:0.828000px;}
.ws44{word-spacing:0.882000px;}
.ws30{word-spacing:0.897000px;}
.ws3a{word-spacing:1.035000px;}
.ws18{word-spacing:1.104000px;}
.ws1b{word-spacing:1.173000px;}
.ws35{word-spacing:1.242000px;}
.ws3f{word-spacing:1.380000px;}
.ws1c{word-spacing:1.449000px;}
.ws5{word-spacing:1.794000px;}
.ws39{word-spacing:1.863000px;}
.wsc{word-spacing:1.932000px;}
.ws24{word-spacing:2.070000px;}
.wse{word-spacing:2.139000px;}
.ws13{word-spacing:2.484000px;}
.ws3{word-spacing:2.622000px;}
.ws3e{word-spacing:2.898000px;}
.ws6{word-spacing:3.657000px;}
.ws27{word-spacing:3.726000px;}
.ws3b{word-spacing:3.933000px;}
.ws1e{word-spacing:4.485000px;}
._c{margin-left:-7.813200px;}
._b{margin-left:-5.814000px;}
._d{margin-left:-4.615500px;}
._9{margin-left:-3.585600px;}
._1{margin-left:-2.010000px;}
._f{margin-left:-1.009500px;}
._3{width:1.045800px;}
._4{width:2.510400px;}
._a{width:3.964800px;}
._6{width:5.202000px;}
._5{width:6.756000px;}
._7{width:8.106000px;}
._8{width:9.144000px;}
._14{width:10.882800px;}
._11{width:12.140100px;}
._2{width:13.170000px;}
._15{width:14.191800px;}
._12{width:15.318000px;}
._13{width:18.354000px;}
._e{width:22.881000px;}
._10{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fsa{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fsd{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yb4{bottom:106.091250px;}
.yd3{bottom:106.248000px;}
.y21{bottom:106.293300px;}
.y49{bottom:106.296300px;}
.y90{bottom:109.294800px;}
.y20{bottom:123.546300px;}
.yb3{bottom:126.463500px;}
.y48{bottom:126.544800px;}
.yd2{bottom:126.672000px;}
.y1f{bottom:143.794800px;}
.y47{bottom:145.048500px;}
.yb2{bottom:146.835750px;}
.yd1{bottom:147.096000px;}
.y8f{bottom:153.285000px;}
.y46{bottom:165.297000px;}
.yb1{bottom:167.208000px;}
.yd0{bottom:167.520000px;}
.y8e{bottom:174.150000px;}
.yb0{bottom:187.580250px;}
.y1e{bottom:187.758750px;}
.y6b{bottom:187.785000px;}
.ycf{bottom:187.944000px;}
.y8d{bottom:195.015000px;}
.yaf{bottom:207.952500px;}
.y1d{bottom:208.096500px;}
.y6a{bottom:208.215000px;}
.yce{bottom:208.368000px;}
.y45{bottom:209.386500px;}
.y8c{bottom:215.880000px;}
.yae{bottom:228.324750px;}
.y1c{bottom:228.434250px;}
.y69{bottom:228.645000px;}
.ycd{bottom:228.792000px;}
.y44{bottom:229.776000px;}
.y8b{bottom:236.745000px;}
.yad{bottom:248.697000px;}
.y1b{bottom:248.772000px;}
.y68{bottom:249.075000px;}
.ycc{bottom:249.216000px;}
.y43{bottom:250.165500px;}
.y8a{bottom:257.631750px;}
.yac{bottom:269.069250px;}
.y1a{bottom:269.109750px;}
.y67{bottom:269.505000px;}
.ycb{bottom:269.640000px;}
.y42{bottom:270.555000px;}
.y89{bottom:278.487000px;}
.yab{bottom:289.441500px;}
.y19{bottom:289.447500px;}
.y66{bottom:289.935000px;}
.yca{bottom:290.064000px;}
.y41{bottom:290.944500px;}
.y88{bottom:299.342250px;}
.y18{bottom:309.785250px;}
.yaa{bottom:309.813750px;}
.y65{bottom:310.365000px;}
.yc9{bottom:310.488000px;}
.y40{bottom:311.334000px;}
.y87{bottom:320.197500px;}
.y17{bottom:330.123000px;}
.ya9{bottom:330.186000px;}
.y64{bottom:330.802500px;}
.yc8{bottom:330.912000px;}
.y3f{bottom:331.723500px;}
.y86{bottom:341.052750px;}
.y16{bottom:350.460750px;}
.ya8{bottom:350.558250px;}
.y63{bottom:351.226500px;}
.yc7{bottom:351.336000px;}
.y3e{bottom:352.113000px;}
.y85{bottom:361.908000px;}
.y15{bottom:370.798500px;}
.ya7{bottom:370.930500px;}
.y62{bottom:371.650500px;}
.yc6{bottom:371.760000px;}
.y3d{bottom:372.502500px;}
.y84{bottom:382.763250px;}
.y14{bottom:391.136250px;}
.ya6{bottom:391.302750px;}
.y61{bottom:392.074500px;}
.yc5{bottom:392.184000px;}
.y3c{bottom:392.892000px;}
.y83{bottom:403.618500px;}
.y13{bottom:411.474000px;}
.ya5{bottom:411.675000px;}
.y60{bottom:412.498500px;}
.yc4{bottom:412.608000px;}
.y3b{bottom:413.281500px;}
.y82{bottom:424.473750px;}
.y12{bottom:431.811750px;}
.ya4{bottom:432.047250px;}
.y5f{bottom:432.922500px;}
.y3a{bottom:433.671000px;}
.ye6{bottom:444.928500px;}
.y81{bottom:445.329000px;}
.y11{bottom:452.136750px;}
.ya3{bottom:452.419500px;}
.y5e{bottom:453.346500px;}
.yc3{bottom:453.526500px;}
.y39{bottom:454.060500px;}
.ye5{bottom:465.178500px;}
.y80{bottom:466.184250px;}
.y10{bottom:472.474500px;}
.ya2{bottom:472.791750px;}
.y5d{bottom:473.770500px;}
.yc2{bottom:473.941500px;}
.y38{bottom:474.450000px;}
.ye4{bottom:485.428500px;}
.y7f{bottom:487.039500px;}
.yf{bottom:492.812250px;}
.ya1{bottom:493.164000px;}
.y5c{bottom:494.194500px;}
.yc1{bottom:494.356500px;}
.y37{bottom:494.839500px;}
.ye3{bottom:505.678500px;}
.ye{bottom:513.150000px;}
.ya0{bottom:513.536250px;}
.y5b{bottom:514.618500px;}
.yc0{bottom:514.771500px;}
.y36{bottom:515.229000px;}
.ye2{bottom:525.928500px;}
.y7e{bottom:528.655500px;}
.y9f{bottom:533.908500px;}
.ybf{bottom:535.186500px;}
.y35{bottom:535.618500px;}
.y7d{bottom:549.520500px;}
.y9e{bottom:554.280750px;}
.yd{bottom:554.743500px;}
.y5a{bottom:555.451500px;}
.ybe{bottom:555.601500px;}
.y34{bottom:556.017000px;}
.ye1{bottom:558.928500px;}
.y7c{bottom:570.385500px;}
.y9d{bottom:574.653000px;}
.y59{bottom:575.881500px;}
.ybd{bottom:576.016500px;}
.y33{bottom:576.406500px;}
.y7b{bottom:591.250500px;}
.y9c{bottom:595.025250px;}
.y58{bottom:596.311500px;}
.ybc{bottom:596.431500px;}
.y32{bottom:596.859000px;}
.ye0{bottom:600.423000px;}
.y7a{bottom:612.115500px;}
.y9b{bottom:615.397500px;}
.y57{bottom:616.741500px;}
.ybb{bottom:616.846500px;}
.yc{bottom:617.081250px;}
.y31{bottom:617.248500px;}
.ydf{bottom:620.677500px;}
.y79{bottom:632.980500px;}
.y9a{bottom:635.769750px;}
.y56{bottom:637.171500px;}
.yba{bottom:637.261500px;}
.yb{bottom:637.419000px;}
.y30{bottom:637.638000px;}
.yde{bottom:649.437000px;}
.y78{bottom:653.845500px;}
.y99{bottom:656.142000px;}
.y55{bottom:657.600000px;}
.yb9{bottom:657.676500px;}
.ya{bottom:657.756750px;}
.y2f{bottom:658.027500px;}
.y77{bottom:674.710500px;}
.y54{bottom:678.024000px;}
.yb8{bottom:678.091500px;}
.y9{bottom:678.094500px;}
.y8{bottom:678.096000px;}
.y2e{bottom:678.417000px;}
.y76{bottom:695.575500px;}
.y98{bottom:697.767000px;}
.y53{bottom:698.461500px;}
.yb7{bottom:698.506500px;}
.y2d{bottom:698.806500px;}
.ydd{bottom:700.186500px;}
.y75{bottom:716.440500px;}
.y52{bottom:718.885500px;}
.yb6{bottom:718.921500px;}
.y2c{bottom:719.196000px;}
.ydc{bottom:720.438000px;}
.y74{bottom:737.305500px;}
.y7{bottom:739.006500px;}
.y51{bottom:739.309500px;}
.yb5{bottom:739.336500px;}
.y2b{bottom:739.585500px;}
.ydb{bottom:740.689500px;}
.y73{bottom:758.170500px;}
.y50{bottom:759.733500px;}
.y2a{bottom:759.975000px;}
.y97{bottom:760.132500px;}
.yda{bottom:760.941000px;}
.y6{bottom:770.596500px;}
.y72{bottom:779.035500px;}
.y4f{bottom:780.157500px;}
.y29{bottom:780.364500px;}
.y96{bottom:780.502500px;}
.yd9{bottom:781.192500px;}
.y71{bottom:799.900500px;}
.y4e{bottom:800.581500px;}
.y28{bottom:800.754000px;}
.y95{bottom:800.872500px;}
.yd8{bottom:801.444000px;}
.y70{bottom:820.738500px;}
.y4d{bottom:821.005500px;}
.y27{bottom:821.143500px;}
.y94{bottom:821.242500px;}
.yd7{bottom:821.695500px;}
.y5{bottom:831.945000px;}
.y4c{bottom:841.429500px;}
.y26{bottom:841.533000px;}
.y93{bottom:841.584750px;}
.y6f{bottom:841.603500px;}
.yd6{bottom:841.947000px;}
.y4{bottom:853.035000px;}
.y4b{bottom:861.853500px;}
.y25{bottom:861.922500px;}
.y92{bottom:861.957000px;}
.yd5{bottom:862.198500px;}
.y6e{bottom:862.468500px;}
.y4a{bottom:882.277500px;}
.y24{bottom:882.312000px;}
.y91{bottom:882.329250px;}
.yd4{bottom:882.450000px;}
.y3{bottom:882.615000px;}
.y6d{bottom:883.333500px;}
.y23{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y6c{bottom:904.198500px;}
.y22{bottom:948.189000px;}
.ha{height:39.407648px;}
.hc{height:45.679688px;}
.he{height:50.947266px;}
.hb{height:51.389648px;}
.h4{height:57.099609px;}
.hd{height:57.207609px;}
.h3{height:59.954590px;}
.h7{height:65.664551px;}
.h9{height:65.715551px;}
.h2{height:71.374512px;}
.h8{height:77.084473px;}
.h5{height:102.779297px;}
.h6{height:162.928264px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:82.315800px;}
.x8{left:83.655450px;}
.x1{left:85.039350px;}
.xe{left:104.236500px;}
.x7{left:105.683700px;}
.x9{left:106.852800px;}
.x5{left:109.727100px;}
.xa{left:122.691000px;}
.xb{left:144.863400px;}
.xc{left:148.133400px;}
.xd{left:149.243400px;}
.x6{left:212.658000px;}
.x3{left:232.543500px;}
.x2{left:233.635500px;}
@media print{
.v4{vertical-align:-15.088000pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.522667pt;}
.v2{vertical-align:15.138667pt;}
.v1{vertical-align:72.000000pt;}
.ls42{letter-spacing:-4.144000pt;}
.ls1d{letter-spacing:-3.986667pt;}
.ls39{letter-spacing:-3.496000pt;}
.ls27{letter-spacing:-3.312000pt;}
.ls7{letter-spacing:-3.250667pt;}
.ls3c{letter-spacing:-2.576000pt;}
.ls33{letter-spacing:-2.514667pt;}
.ls4{letter-spacing:-2.330667pt;}
.ls12{letter-spacing:-2.208000pt;}
.ls24{letter-spacing:-1.962667pt;}
.lse{letter-spacing:-1.901333pt;}
.ls23{letter-spacing:-1.840000pt;}
.ls34{letter-spacing:-1.778667pt;}
.lsc{letter-spacing:-1.717333pt;}
.ls38{letter-spacing:-1.656000pt;}
.ls6{letter-spacing:-1.594667pt;}
.ls1c{letter-spacing:-1.288000pt;}
.ls3d{letter-spacing:-1.226667pt;}
.ls2e{letter-spacing:-1.104000pt;}
.ls44{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-1.042667pt;}
.ls19{letter-spacing:-0.981333pt;}
.ls2c{letter-spacing:-0.920000pt;}
.ls32{letter-spacing:-0.800000pt;}
.ls2f{letter-spacing:-0.797333pt;}
.ls41{letter-spacing:-0.784000pt;}
.ls3a{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.709333pt;}
.ls2d{letter-spacing:-0.674667pt;}
.ls1e{letter-spacing:-0.613333pt;}
.ls1a{letter-spacing:-0.552000pt;}
.ls11{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.490667pt;}
.lsb{letter-spacing:-0.429333pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.245333pt;}
.ls30{letter-spacing:-0.184000pt;}
.ls35{letter-spacing:-0.122667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.306667pt;}
.ls17{letter-spacing:0.333333pt;}
.ls28{letter-spacing:0.674667pt;}
.ls1{letter-spacing:0.702667pt;}
.ls9{letter-spacing:0.736000pt;}
.ls15{letter-spacing:0.916000pt;}
.ls22{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.042667pt;}
.ls18{letter-spacing:1.120000pt;}
.ls36{letter-spacing:1.173333pt;}
.ls21{letter-spacing:1.410667pt;}
.lsd{letter-spacing:1.472000pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls14{letter-spacing:2.100000pt;}
.ls16{letter-spacing:2.133333pt;}
.ls43{letter-spacing:3.680000pt;}
.ls25{letter-spacing:5.029333pt;}
.ls3{letter-spacing:5.333333pt;}
.ls40{letter-spacing:5.600000pt;}
.ls3f{letter-spacing:6.048000pt;}
.ls13{letter-spacing:414.903467pt;}
.ls29{letter-spacing:415.070400pt;}
.ls31{letter-spacing:416.303467pt;}
.ls2b{letter-spacing:898.666667pt;}
.ls0{letter-spacing:900.485333pt;}
.ls20{letter-spacing:905.040000pt;}
.ls3e{letter-spacing:906.800000pt;}
.ws0{word-spacing:-49.758281pt;}
.ws40{word-spacing:-21.784000pt;}
.ws14{word-spacing:-19.066667pt;}
.ws31{word-spacing:-17.933333pt;}
.ws2d{word-spacing:-14.965333pt;}
.ws20{word-spacing:-14.106667pt;}
.ws2c{word-spacing:-14.045333pt;}
.ws33{word-spacing:-13.370667pt;}
.ws34{word-spacing:-13.248000pt;}
.ws22{word-spacing:-13.186667pt;}
.ws32{word-spacing:-12.634667pt;}
.ws42{word-spacing:-12.106667pt;}
.ws15{word-spacing:-11.610667pt;}
.ws16{word-spacing:-11.520000pt;}
.ws21{word-spacing:-10.047811pt;}
.ws41{word-spacing:-9.688000pt;}
.ws2a{word-spacing:-8.737227pt;}
.ws43{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws25{word-spacing:-5.029333pt;}
.ws45{word-spacing:-3.680000pt;}
.ws17{word-spacing:-2.133333pt;}
.ws2b{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.533333pt;}
.wsd{word-spacing:-1.472000pt;}
.ws23{word-spacing:-1.410667pt;}
.ws37{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.042667pt;}
.wsa{word-spacing:-0.981333pt;}
.ws12{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.736000pt;}
.ws28{word-spacing:-0.674667pt;}
.ws3d{word-spacing:-0.306667pt;}
.ws2e{word-spacing:-0.184000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.122667pt;}
.ws36{word-spacing:0.184000pt;}
.wsf{word-spacing:0.245333pt;}
.ws26{word-spacing:0.266667pt;}
.ws38{word-spacing:0.320000pt;}
.ws10{word-spacing:0.384000pt;}
.wsb{word-spacing:0.429333pt;}
.ws9{word-spacing:0.490667pt;}
.ws11{word-spacing:0.528000pt;}
.ws19{word-spacing:0.552000pt;}
.ws1f{word-spacing:0.613333pt;}
.ws29{word-spacing:0.624000pt;}
.ws2f{word-spacing:0.674667pt;}
.ws7{word-spacing:0.709333pt;}
.ws3c{word-spacing:0.736000pt;}
.ws44{word-spacing:0.784000pt;}
.ws30{word-spacing:0.797333pt;}
.ws3a{word-spacing:0.920000pt;}
.ws18{word-spacing:0.981333pt;}
.ws1b{word-spacing:1.042667pt;}
.ws35{word-spacing:1.104000pt;}
.ws3f{word-spacing:1.226667pt;}
.ws1c{word-spacing:1.288000pt;}
.ws5{word-spacing:1.594667pt;}
.ws39{word-spacing:1.656000pt;}
.wsc{word-spacing:1.717333pt;}
.ws24{word-spacing:1.840000pt;}
.wse{word-spacing:1.901333pt;}
.ws13{word-spacing:2.208000pt;}
.ws3{word-spacing:2.330667pt;}
.ws3e{word-spacing:2.576000pt;}
.ws6{word-spacing:3.250667pt;}
.ws27{word-spacing:3.312000pt;}
.ws3b{word-spacing:3.496000pt;}
.ws1e{word-spacing:3.986667pt;}
._c{margin-left:-6.945067pt;}
._b{margin-left:-5.168000pt;}
._d{margin-left:-4.102667pt;}
._9{margin-left:-3.187200pt;}
._1{margin-left:-1.786667pt;}
._f{margin-left:-0.897333pt;}
._3{width:0.929600pt;}
._4{width:2.231467pt;}
._a{width:3.524267pt;}
._6{width:4.624000pt;}
._5{width:6.005333pt;}
._7{width:7.205333pt;}
._8{width:8.128000pt;}
._14{width:9.673600pt;}
._11{width:10.791200pt;}
._2{width:11.706667pt;}
._15{width:12.614933pt;}
._12{width:13.616000pt;}
._13{width:16.314667pt;}
._e{width:20.338667pt;}
._10{width:38.617920pt;}
._0{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fsd{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yb4{bottom:94.303333pt;}
.yd3{bottom:94.442667pt;}
.y21{bottom:94.482933pt;}
.y49{bottom:94.485600pt;}
.y90{bottom:97.150933pt;}
.y20{bottom:109.818933pt;}
.yb3{bottom:112.412000pt;}
.y48{bottom:112.484267pt;}
.yd2{bottom:112.597333pt;}
.y1f{bottom:127.817600pt;}
.y47{bottom:128.932000pt;}
.yb2{bottom:130.520667pt;}
.yd1{bottom:130.752000pt;}
.y8f{bottom:136.253333pt;}
.y46{bottom:146.930667pt;}
.yb1{bottom:148.629333pt;}
.yd0{bottom:148.906667pt;}
.y8e{bottom:154.800000pt;}
.yb0{bottom:166.738000pt;}
.y1e{bottom:166.896667pt;}
.y6b{bottom:166.920000pt;}
.ycf{bottom:167.061333pt;}
.y8d{bottom:173.346667pt;}
.yaf{bottom:184.846667pt;}
.y1d{bottom:184.974667pt;}
.y6a{bottom:185.080000pt;}
.yce{bottom:185.216000pt;}
.y45{bottom:186.121333pt;}
.y8c{bottom:191.893333pt;}
.yae{bottom:202.955333pt;}
.y1c{bottom:203.052667pt;}
.y69{bottom:203.240000pt;}
.ycd{bottom:203.370667pt;}
.y44{bottom:204.245333pt;}
.y8b{bottom:210.440000pt;}
.yad{bottom:221.064000pt;}
.y1b{bottom:221.130667pt;}
.y68{bottom:221.400000pt;}
.ycc{bottom:221.525333pt;}
.y43{bottom:222.369333pt;}
.y8a{bottom:229.006000pt;}
.yac{bottom:239.172667pt;}
.y1a{bottom:239.208667pt;}
.y67{bottom:239.560000pt;}
.ycb{bottom:239.680000pt;}
.y42{bottom:240.493333pt;}
.y89{bottom:247.544000pt;}
.yab{bottom:257.281333pt;}
.y19{bottom:257.286667pt;}
.y66{bottom:257.720000pt;}
.yca{bottom:257.834667pt;}
.y41{bottom:258.617333pt;}
.y88{bottom:266.082000pt;}
.y18{bottom:275.364667pt;}
.yaa{bottom:275.390000pt;}
.y65{bottom:275.880000pt;}
.yc9{bottom:275.989333pt;}
.y40{bottom:276.741333pt;}
.y87{bottom:284.620000pt;}
.y17{bottom:293.442667pt;}
.ya9{bottom:293.498667pt;}
.y64{bottom:294.046667pt;}
.yc8{bottom:294.144000pt;}
.y3f{bottom:294.865333pt;}
.y86{bottom:303.158000pt;}
.y16{bottom:311.520667pt;}
.ya8{bottom:311.607333pt;}
.y63{bottom:312.201333pt;}
.yc7{bottom:312.298667pt;}
.y3e{bottom:312.989333pt;}
.y85{bottom:321.696000pt;}
.y15{bottom:329.598667pt;}
.ya7{bottom:329.716000pt;}
.y62{bottom:330.356000pt;}
.yc6{bottom:330.453333pt;}
.y3d{bottom:331.113333pt;}
.y84{bottom:340.234000pt;}
.y14{bottom:347.676667pt;}
.ya6{bottom:347.824667pt;}
.y61{bottom:348.510667pt;}
.yc5{bottom:348.608000pt;}
.y3c{bottom:349.237333pt;}
.y83{bottom:358.772000pt;}
.y13{bottom:365.754667pt;}
.ya5{bottom:365.933333pt;}
.y60{bottom:366.665333pt;}
.yc4{bottom:366.762667pt;}
.y3b{bottom:367.361333pt;}
.y82{bottom:377.310000pt;}
.y12{bottom:383.832667pt;}
.ya4{bottom:384.042000pt;}
.y5f{bottom:384.820000pt;}
.y3a{bottom:385.485333pt;}
.ye6{bottom:395.492000pt;}
.y81{bottom:395.848000pt;}
.y11{bottom:401.899333pt;}
.ya3{bottom:402.150667pt;}
.y5e{bottom:402.974667pt;}
.yc3{bottom:403.134667pt;}
.y39{bottom:403.609333pt;}
.ye5{bottom:413.492000pt;}
.y80{bottom:414.386000pt;}
.y10{bottom:419.977333pt;}
.ya2{bottom:420.259333pt;}
.y5d{bottom:421.129333pt;}
.yc2{bottom:421.281333pt;}
.y38{bottom:421.733333pt;}
.ye4{bottom:431.492000pt;}
.y7f{bottom:432.924000pt;}
.yf{bottom:438.055333pt;}
.ya1{bottom:438.368000pt;}
.y5c{bottom:439.284000pt;}
.yc1{bottom:439.428000pt;}
.y37{bottom:439.857333pt;}
.ye3{bottom:449.492000pt;}
.ye{bottom:456.133333pt;}
.ya0{bottom:456.476667pt;}
.y5b{bottom:457.438667pt;}
.yc0{bottom:457.574667pt;}
.y36{bottom:457.981333pt;}
.ye2{bottom:467.492000pt;}
.y7e{bottom:469.916000pt;}
.y9f{bottom:474.585333pt;}
.ybf{bottom:475.721333pt;}
.y35{bottom:476.105333pt;}
.y7d{bottom:488.462667pt;}
.y9e{bottom:492.694000pt;}
.yd{bottom:493.105333pt;}
.y5a{bottom:493.734667pt;}
.ybe{bottom:493.868000pt;}
.y34{bottom:494.237333pt;}
.ye1{bottom:496.825333pt;}
.y7c{bottom:507.009333pt;}
.y9d{bottom:510.802667pt;}
.y59{bottom:511.894667pt;}
.ybd{bottom:512.014667pt;}
.y33{bottom:512.361333pt;}
.y7b{bottom:525.556000pt;}
.y9c{bottom:528.911333pt;}
.y58{bottom:530.054667pt;}
.ybc{bottom:530.161333pt;}
.y32{bottom:530.541333pt;}
.ye0{bottom:533.709333pt;}
.y7a{bottom:544.102667pt;}
.y9b{bottom:547.020000pt;}
.y57{bottom:548.214667pt;}
.ybb{bottom:548.308000pt;}
.yc{bottom:548.516667pt;}
.y31{bottom:548.665333pt;}
.ydf{bottom:551.713333pt;}
.y79{bottom:562.649333pt;}
.y9a{bottom:565.128667pt;}
.y56{bottom:566.374667pt;}
.yba{bottom:566.454667pt;}
.yb{bottom:566.594667pt;}
.y30{bottom:566.789333pt;}
.yde{bottom:577.277333pt;}
.y78{bottom:581.196000pt;}
.y99{bottom:583.237333pt;}
.y55{bottom:584.533333pt;}
.yb9{bottom:584.601333pt;}
.ya{bottom:584.672667pt;}
.y2f{bottom:584.913333pt;}
.y77{bottom:599.742667pt;}
.y54{bottom:602.688000pt;}
.yb8{bottom:602.748000pt;}
.y9{bottom:602.750667pt;}
.y8{bottom:602.752000pt;}
.y2e{bottom:603.037333pt;}
.y76{bottom:618.289333pt;}
.y98{bottom:620.237333pt;}
.y53{bottom:620.854667pt;}
.yb7{bottom:620.894667pt;}
.y2d{bottom:621.161333pt;}
.ydd{bottom:622.388000pt;}
.y75{bottom:636.836000pt;}
.y52{bottom:639.009333pt;}
.yb6{bottom:639.041333pt;}
.y2c{bottom:639.285333pt;}
.ydc{bottom:640.389333pt;}
.y74{bottom:655.382667pt;}
.y7{bottom:656.894667pt;}
.y51{bottom:657.164000pt;}
.yb5{bottom:657.188000pt;}
.y2b{bottom:657.409333pt;}
.ydb{bottom:658.390667pt;}
.y73{bottom:673.929333pt;}
.y50{bottom:675.318667pt;}
.y2a{bottom:675.533333pt;}
.y97{bottom:675.673333pt;}
.yda{bottom:676.392000pt;}
.y6{bottom:684.974667pt;}
.y72{bottom:692.476000pt;}
.y4f{bottom:693.473333pt;}
.y29{bottom:693.657333pt;}
.y96{bottom:693.780000pt;}
.yd9{bottom:694.393333pt;}
.y71{bottom:711.022667pt;}
.y4e{bottom:711.628000pt;}
.y28{bottom:711.781333pt;}
.y95{bottom:711.886667pt;}
.yd8{bottom:712.394667pt;}
.y70{bottom:729.545333pt;}
.y4d{bottom:729.782667pt;}
.y27{bottom:729.905333pt;}
.y94{bottom:729.993333pt;}
.yd7{bottom:730.396000pt;}
.y5{bottom:739.506667pt;}
.y4c{bottom:747.937333pt;}
.y26{bottom:748.029333pt;}
.y93{bottom:748.075333pt;}
.y6f{bottom:748.092000pt;}
.yd6{bottom:748.397333pt;}
.y4{bottom:758.253333pt;}
.y4b{bottom:766.092000pt;}
.y25{bottom:766.153333pt;}
.y92{bottom:766.184000pt;}
.yd5{bottom:766.398667pt;}
.y6e{bottom:766.638667pt;}
.y4a{bottom:784.246667pt;}
.y24{bottom:784.277333pt;}
.y91{bottom:784.292667pt;}
.yd4{bottom:784.400000pt;}
.y3{bottom:784.546667pt;}
.y6d{bottom:785.185333pt;}
.y23{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y6c{bottom:803.732000pt;}
.y22{bottom:842.834667pt;}
.ha{height:35.029021pt;}
.hc{height:40.604167pt;}
.he{height:45.286458pt;}
.hb{height:45.679688pt;}
.h4{height:50.755208pt;}
.hd{height:50.851208pt;}
.h3{height:53.292969pt;}
.h7{height:58.368490pt;}
.h9{height:58.413823pt;}
.h2{height:63.444010pt;}
.h8{height:68.519531pt;}
.h5{height:91.359375pt;}
.h6{height:144.825124pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:73.169600pt;}
.x8{left:74.360400pt;}
.x1{left:75.590533pt;}
.xe{left:92.654667pt;}
.x7{left:93.941067pt;}
.x9{left:94.980267pt;}
.x5{left:97.535200pt;}
.xa{left:109.058667pt;}
.xb{left:128.767467pt;}
.xc{left:131.674133pt;}
.xd{left:132.660800pt;}
.x6{left:189.029333pt;}
.x3{left:206.705333pt;}
.x2{left:207.676000pt;}
}




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