
    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_eaac0fc8ecd53973419d03af.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_60b92fe42637a2e3214873f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_efdd8f73211a592a34f2a88f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws17{word-spacing:-65.501100px;}
.ws20{word-spacing:-55.944000px;}
.ws7{word-spacing:-51.515100px;}
.ws8{word-spacing:-50.770200px;}
.ws9{word-spacing:-50.364900px;}
.ws6{word-spacing:-46.386900px;}
.ws37{word-spacing:-45.011100px;}
.ws36{word-spacing:-45.004800px;}
.ws5{word-spacing:-45.001200px;}
.ws44{word-spacing:-38.581200px;}
.wsa0{word-spacing:-38.439900px;}
.ws58{word-spacing:-38.166000px;}
.ws74{word-spacing:-38.160000px;}
.ws32{word-spacing:-38.158200px;}
.ws68{word-spacing:-38.154000px;}
.ws8f{word-spacing:-38.145300px;}
.ws2e{word-spacing:-38.134800px;}
.ws3f{word-spacing:-37.944000px;}
.ws94{word-spacing:-37.941900px;}
.ws99{word-spacing:-37.940400px;}
.ws90{word-spacing:-37.932300px;}
.ws5f{word-spacing:-37.866000px;}
.ws29{word-spacing:-37.864200px;}
.wsf{word-spacing:-37.529100px;}
.ws1e{word-spacing:-37.440000px;}
.ws8b{word-spacing:-37.230000px;}
.ws62{word-spacing:-37.213500px;}
.ws4c{word-spacing:-36.720000px;}
.ws2f{word-spacing:-36.504000px;}
.ws57{word-spacing:-36.484200px;}
.ws2c{word-spacing:-36.000000px;}
.ws30{word-spacing:-35.994000px;}
.ws18{word-spacing:-35.928000px;}
.ws9c{word-spacing:-35.778600px;}
.ws38{word-spacing:-34.854000px;}
.ws60{word-spacing:-34.845300px;}
.ws79{word-spacing:-34.560000px;}
.ws45{word-spacing:-34.551000px;}
.ws7f{word-spacing:-34.344000px;}
.wsa3{word-spacing:-34.342800px;}
.wsa2{word-spacing:-34.330200px;}
.wsa5{word-spacing:-33.843300px;}
.ws40{word-spacing:-33.840000px;}
.wsa6{word-spacing:-33.630000px;}
.wsa4{word-spacing:-33.622200px;}
.ws22{word-spacing:-33.616500px;}
.ws89{word-spacing:-33.608400px;}
.ws7e{word-spacing:-33.406200px;}
.ws3b{word-spacing:-33.120000px;}
.ws53{word-spacing:-32.903100px;}
.ws1b{word-spacing:-32.895000px;}
.ws3{word-spacing:-32.400900px;}
.ws39{word-spacing:-32.400000px;}
.wsb{word-spacing:-31.949400px;}
.wsa{word-spacing:-31.942500px;}
.wsc{word-spacing:-31.579200px;}
.ws73{word-spacing:-31.381800px;}
.ws28{word-spacing:-30.960000px;}
.wsab{word-spacing:-30.722400px;}
.ws85{word-spacing:-30.718200px;}
.ws25{word-spacing:-30.240000px;}
.ws7d{word-spacing:-29.520000px;}
.ws9e{word-spacing:-29.296200px;}
.ws9f{word-spacing:-28.791000px;}
.ws10{word-spacing:-27.915877px;}
.ws15{word-spacing:-27.364859px;}
.ws84{word-spacing:-27.360000px;}
.ws7c{word-spacing:-27.354000px;}
.ws78{word-spacing:-27.138600px;}
.ws6c{word-spacing:-27.135000px;}
.ws8a{word-spacing:-26.640000px;}
.wsd{word-spacing:-26.403300px;}
.ws16{word-spacing:-26.292335px;}
.ws12{word-spacing:-25.806000px;}
.wse{word-spacing:-25.679100px;}
.ws3e{word-spacing:-25.200000px;}
.ws13{word-spacing:-25.043647px;}
.ws27{word-spacing:-24.984000px;}
.ws14{word-spacing:-24.961453px;}
.ws75{word-spacing:-23.697000px;}
.ws4{word-spacing:-23.584200px;}
.ws76{word-spacing:-23.580000px;}
.ws35{word-spacing:-23.221500px;}
.ws23{word-spacing:-23.040000px;}
.ws56{word-spacing:-22.320000px;}
.ws2a{word-spacing:-22.090500px;}
.ws34{word-spacing:-22.060500px;}
.ws0{word-spacing:-21.330900px;}
.ws97{word-spacing:-20.877300px;}
.ws82{word-spacing:-20.871000px;}
.ws98{word-spacing:-20.664000px;}
.ws4e{word-spacing:-20.660100px;}
.ws96{word-spacing:-20.653200px;}
.ws5a{word-spacing:-20.647800px;}
.ws2d{word-spacing:-19.440000px;}
.ws7b{word-spacing:-19.150200px;}
.ws3d{word-spacing:-18.006000px;}
.ws26{word-spacing:-18.000000px;}
.ws9b{word-spacing:-17.790000px;}
.ws9a{word-spacing:-17.063100px;}
.ws1{word-spacing:-16.820344px;}
.ws11{word-spacing:-16.333800px;}
.ws2{word-spacing:-16.159233px;}
.ws67{word-spacing:-15.840000px;}
.ws8e{word-spacing:-14.902200px;}
.ws69{word-spacing:-14.838000px;}
.ws61{word-spacing:-14.400000px;}
.ws21{word-spacing:-14.190000px;}
.ws1f{word-spacing:-13.608000px;}
.ws8d{word-spacing:-13.470000px;}
.wsaa{word-spacing:-12.527100px;}
.ws95{word-spacing:-12.240000px;}
.ws2b{word-spacing:-12.018600px;}
.ws24{word-spacing:-11.274600px;}
.ws5e{word-spacing:-11.232000px;}
.ws66{word-spacing:-10.791000px;}
.ws80{word-spacing:-10.578000px;}
.ws1a{word-spacing:-10.074600px;}
.ws47{word-spacing:-7.485300px;}
.ws8c{word-spacing:-6.903000px;}
.ws51{word-spacing:-6.899400px;}
.ws19{word-spacing:-6.270000px;}
.ws43{word-spacing:-5.515200px;}
.wsa7{word-spacing:-3.606000px;}
.ws6f{word-spacing:-3.312000px;}
.ws64{word-spacing:-2.880000px;}
.ws6b{word-spacing:-2.156400px;}
.ws31{word-spacing:-1.870200px;}
.ws50{word-spacing:-0.710100px;}
.ws87{word-spacing:-0.654000px;}
.ws33{word-spacing:0.000000px;}
.ws71{word-spacing:0.072000px;}
.ws48{word-spacing:0.222000px;}
.ws1c{word-spacing:0.734400px;}
.ws93{word-spacing:0.940500px;}
.ws92{word-spacing:0.945000px;}
.ws91{word-spacing:0.946800px;}
.ws1d{word-spacing:1.690800px;}
.ws41{word-spacing:2.160000px;}
.ws72{word-spacing:2.889900px;}
.ws6e{word-spacing:3.600000px;}
.ws5c{word-spacing:4.320000px;}
.ws5b{word-spacing:5.046000px;}
.ws77{word-spacing:5.118000px;}
.ws52{word-spacing:5.327400px;}
.ws83{word-spacing:5.760000px;}
.wsa1{word-spacing:6.697800px;}
.ws5d{word-spacing:6.705000px;}
.ws81{word-spacing:7.929000px;}
.ws55{word-spacing:8.888400px;}
.ws86{word-spacing:11.520000px;}
.ws4b{word-spacing:11.529600px;}
.ws70{word-spacing:12.960000px;}
.ws3a{word-spacing:15.844800px;}
.ws9d{word-spacing:16.786200px;}
.ws54{word-spacing:16.851600px;}
.ws4d{word-spacing:20.166900px;}
.ws88{word-spacing:21.891000px;}
.ws3c{word-spacing:22.542000px;}
.ws49{word-spacing:23.040000px;}
.ws65{word-spacing:23.970000px;}
.ws4f{word-spacing:24.057000px;}
.wsa9{word-spacing:24.488700px;}
.wsa8{word-spacing:24.717600px;}
.ws63{word-spacing:25.920000px;}
.ws59{word-spacing:31.196700px;}
.ws46{word-spacing:34.560000px;}
.ws7a{word-spacing:36.720000px;}
.ws4a{word-spacing:51.840000px;}
.ws6a{word-spacing:56.176200px;}
.ws42{word-spacing:61.923000px;}
.ws6d{word-spacing:63.576000px;}
._3{margin-left:-1.396500px;}
._1{width:1.816667px;}
._2{width:4.483333px;}
._0{width:5.816667px;}
._29{width:12.377100px;}
._6{width:13.938139px;}
._5{width:16.108000px;}
._2a{width:18.055333px;}
._12{width:19.656000px;}
._7{width:21.384000px;}
._15{width:22.569000px;}
._a{width:24.292367px;}
._4{width:25.501633px;}
._e{width:26.718000px;}
._2d{width:27.731833px;}
._25{width:30.222000px;}
._10{width:32.334000px;}
._2f{width:33.582433px;}
._11{width:35.366833px;}
._1f{width:36.543600px;}
._2c{width:37.942200px;}
._f{width:39.174000px;}
._22{width:40.276500px;}
._24{width:41.472000px;}
._d{width:43.560000px;}
._2e{width:45.167667px;}
._9{width:46.878000px;}
._17{width:49.752000px;}
._8{width:51.636000px;}
._27{width:53.706000px;}
._1c{width:56.304000px;}
._b{width:57.949033px;}
._c{width:59.803200px;}
._28{width:60.902100px;}
._20{width:62.124000px;}
._21{width:64.278000px;}
._1e{width:66.024000px;}
._19{width:68.534400px;}
._13{width:73.142400px;}
._1d{width:74.156400px;}
._1a{width:77.320200px;}
._14{width:79.548000px;}
._1b{width:81.469333px;}
._23{width:83.304000px;}
._16{width:92.442000px;}
._2b{width:94.248000px;}
._18{width:108.864000px;}
._26{width:120.583333px;}
.fc3{color:rgb(63,63,63);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.700000px;}
.fs1{font-size:44.700000px;}
.fs6{font-size:48.300000px;}
.fs3{font-size:59.700000px;}
.fs4{font-size:66.300000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.fs5{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.511500px;}
.y87{bottom:3.540000px;}
.y40{bottom:3.615000px;}
.y2{bottom:4.050000px;}
.y3e{bottom:9.675000px;}
.y89{bottom:11.565000px;}
.y3b{bottom:22.305000px;}
.y63{bottom:29.265000px;}
.y85{bottom:33.586500px;}
.y3c{bottom:41.025000px;}
.y1{bottom:41.175000px;}
.y3{bottom:42.075000px;}
.y86{bottom:42.975000px;}
.ye{bottom:52.800000px;}
.y3a{bottom:53.446500px;}
.y8a{bottom:53.896500px;}
.y9b{bottom:54.465000px;}
.y7{bottom:54.811500px;}
.y62{bottom:60.405000px;}
.y84{bottom:64.546500px;}
.y6{bottom:82.350000px;}
.y41{bottom:83.850000px;}
.y39{bottom:84.405000px;}
.y9a{bottom:85.425000px;}
.y8{bottom:86.490000px;}
.y61{bottom:91.365000px;}
.y83{bottom:95.686500px;}
.y38{bottom:115.546500px;}
.y99{bottom:116.565000px;}
.y60{bottom:122.505000px;}
.y82{bottom:126.646500px;}
.y37{bottom:146.505000px;}
.y98{bottom:147.525000px;}
.y5f{bottom:153.465000px;}
.y81{bottom:157.786500px;}
.y36{bottom:177.645000px;}
.y97{bottom:178.665000px;}
.y5e{bottom:184.425000px;}
.y80{bottom:188.746500px;}
.y35{bottom:208.605000px;}
.y96{bottom:209.625000px;}
.y5d{bottom:215.565000px;}
.y7f{bottom:219.705000px;}
.y34{bottom:239.746500px;}
.y95{bottom:240.765000px;}
.y5c{bottom:246.525000px;}
.y7e{bottom:250.846500px;}
.y33{bottom:270.705000px;}
.y94{bottom:271.725000px;}
.y5b{bottom:277.665000px;}
.y7d{bottom:281.805000px;}
.y32{bottom:301.846500px;}
.y93{bottom:302.865000px;}
.y5a{bottom:308.625000px;}
.y7c{bottom:312.945000px;}
.y31{bottom:332.805000px;}
.y92{bottom:333.825000px;}
.y59{bottom:339.765000px;}
.y7b{bottom:343.905000px;}
.y30{bottom:363.946500px;}
.y91{bottom:364.965000px;}
.y58{bottom:370.725000px;}
.y7a{bottom:375.046500px;}
.y20{bottom:388.065000px;}
.y2f{bottom:394.905000px;}
.y90{bottom:395.925000px;}
.y57{bottom:401.865000px;}
.y1f{bottom:404.625000px;}
.y79{bottom:406.005000px;}
.yb5{bottom:414.465000px;}
.y2e{bottom:426.046500px;}
.y8f{bottom:427.065000px;}
.y56{bottom:432.825000px;}
.y1e{bottom:433.246500px;}
.yb4{bottom:435.165000px;}
.y78{bottom:437.146500px;}
.y1d{bottom:449.805000px;}
.yb3{bottom:455.865000px;}
.y2d{bottom:457.005000px;}
.y8e{bottom:458.025000px;}
.y55{bottom:463.965000px;}
.y77{bottom:468.105000px;}
.y1c{bottom:478.425000px;}
.yb2{bottom:485.565000px;}
.y2c{bottom:488.146500px;}
.y8d{bottom:489.165000px;}
.y54{bottom:494.925000px;}
.y1b{bottom:494.986500px;}
.y76{bottom:499.246500px;}
.yb1{bottom:506.265000px;}
.y2b{bottom:519.105000px;}
.y8c{bottom:520.125000px;}
.y1a{bottom:520.725000px;}
.y53{bottom:526.065000px;}
.yb0{bottom:526.965000px;}
.y75{bottom:530.205000px;}
.y19{bottom:534.405000px;}
.y18{bottom:548.265000px;}
.y2a{bottom:550.246500px;}
.yaf{bottom:556.665000px;}
.y52{bottom:557.025000px;}
.y74{bottom:561.345000px;}
.y17{bottom:562.125000px;}
.y8b{bottom:571.605000px;}
.yae{bottom:577.365000px;}
.y16{bottom:578.505000px;}
.y29{bottom:581.205000px;}
.y51{bottom:588.165000px;}
.y73{bottom:592.305000px;}
.yad{bottom:607.065000px;}
.y28{bottom:612.346500px;}
.y50{bottom:619.125000px;}
.y72{bottom:623.445000px;}
.y15{bottom:624.946500px;}
.yac{bottom:627.765000px;}
.y14{bottom:643.125000px;}
.y27{bottom:643.305000px;}
.yab{bottom:648.465000px;}
.y4f{bottom:650.265000px;}
.y71{bottom:654.405000px;}
.y13{bottom:656.986500px;}
.y26{bottom:674.446500px;}
.yaa{bottom:678.165000px;}
.y4e{bottom:681.225000px;}
.y70{bottom:685.545000px;}
.y12{bottom:689.925000px;}
.ya9{bottom:698.865000px;}
.y25{bottom:705.405000px;}
.y11{bottom:706.486500px;}
.y4d{bottom:712.365000px;}
.y6f{bottom:716.505000px;}
.ya8{bottom:728.565000px;}
.y24{bottom:736.545000px;}
.y4c{bottom:743.325000px;}
.y6e{bottom:747.646500px;}
.ya7{bottom:749.265000px;}
.y10{bottom:750.405000px;}
.yf{bottom:764.265000px;}
.y23{bottom:767.505000px;}
.ya6{bottom:769.965000px;}
.y4b{bottom:774.465000px;}
.y6d{bottom:778.605000px;}
.y22{bottom:798.645000px;}
.ya5{bottom:799.665000px;}
.y4a{bottom:805.425000px;}
.y6c{bottom:809.745000px;}
.ya4{bottom:820.365000px;}
.y21{bottom:831.945000px;}
.y49{bottom:836.565000px;}
.y6b{bottom:840.705000px;}
.ya3{bottom:850.065000px;}
.y48{bottom:867.525000px;}
.ya2{bottom:870.765000px;}
.y6a{bottom:871.845000px;}
.ya1{bottom:891.465000px;}
.y47{bottom:898.665000px;}
.y69{bottom:902.805000px;}
.ya0{bottom:921.165000px;}
.y46{bottom:929.625000px;}
.yd{bottom:930.465000px;}
.y68{bottom:933.945000px;}
.y9f{bottom:941.865000px;}
.y45{bottom:960.765000px;}
.y67{bottom:964.905000px;}
.y9e{bottom:971.565000px;}
.yc{bottom:982.125000px;}
.y44{bottom:991.725000px;}
.y9d{bottom:992.265000px;}
.y66{bottom:996.045000px;}
.yb{bottom:1008.045000px;}
.y9c{bottom:1012.965000px;}
.y65{bottom:1027.005000px;}
.y43{bottom:1031.145000px;}
.ya{bottom:1042.786500px;}
.y42{bottom:1055.265000px;}
.y64{bottom:1057.965000px;}
.y9{bottom:1070.325000px;}
.y5{bottom:1112.175000px;}
.y88{bottom:1186.050000px;}
.y3d{bottom:1188.300000px;}
.y3f{bottom:1189.500000px;}
.h3{height:13.950000px;}
.h1{height:14.550000px;}
.h13{height:18.975000px;}
.h11{height:20.100000px;}
.h15{height:22.050000px;}
.h2{height:36.589307px;}
.h4{height:39.221631px;}
.h12{height:39.330762px;}
.hc{height:42.380420px;}
.hd{height:42.899268px;}
.h7{height:52.383252px;}
.ha{height:52.529004px;}
.h8{height:58.886572px;}
.he{height:63.175781px;}
.hf{height:63.351563px;}
.h16{height:63.949219px;}
.h6{height:74.873877px;}
.h9{height:84.999170px;}
.h5{height:108.525000px;}
.hb{height:852.750000px;}
.h14{height:1076.025000px;}
.h10{height:1262.850000px;}
.h0{height:1263.000000px;}
.wc{width:8.250000px;}
.w3{width:46.200000px;}
.wa{width:80.325000px;}
.w1{width:83.325000px;}
.w9{width:85.275000px;}
.w2{width:100.125000px;}
.wb{width:135.150000px;}
.w6{width:278.250000px;}
.w5{width:324.225000px;}
.w4{width:383.850000px;}
.wd{width:447.600000px;}
.we{width:447.675000px;}
.wf{width:462.975000px;}
.w7{width:617.325000px;}
.w8{width:892.950000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.513500px;}
.xb{left:16.905000px;}
.x4{left:25.395000px;}
.x5{left:32.595000px;}
.x6{left:57.075000px;}
.x7{left:64.275000px;}
.xe{left:68.938500px;}
.x13{left:70.395000px;}
.xd{left:73.395000px;}
.x1{left:78.225000px;}
.x10{left:79.738500px;}
.x11{left:85.860000px;}
.x8{left:95.235000px;}
.x16{left:122.038500px;}
.xa{left:187.575000px;}
.xf{left:241.380000px;}
.x12{left:275.925000px;}
.x18{left:350.325000px;}
.x17{left:445.275000px;}
.xc{left:569.025000px;}
.x3{left:625.125000px;}
.x15{left:673.350000px;}
.x9{left:726.225000px;}
.x14{left:734.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws17{word-spacing:-58.223200pt;}
.ws20{word-spacing:-49.728000pt;}
.ws7{word-spacing:-45.791200pt;}
.ws8{word-spacing:-45.129067pt;}
.ws9{word-spacing:-44.768800pt;}
.ws6{word-spacing:-41.232800pt;}
.ws37{word-spacing:-40.009867pt;}
.ws36{word-spacing:-40.004267pt;}
.ws5{word-spacing:-40.001067pt;}
.ws44{word-spacing:-34.294400pt;}
.wsa0{word-spacing:-34.168800pt;}
.ws58{word-spacing:-33.925333pt;}
.ws74{word-spacing:-33.920000pt;}
.ws32{word-spacing:-33.918400pt;}
.ws68{word-spacing:-33.914667pt;}
.ws8f{word-spacing:-33.906933pt;}
.ws2e{word-spacing:-33.897600pt;}
.ws3f{word-spacing:-33.728000pt;}
.ws94{word-spacing:-33.726133pt;}
.ws99{word-spacing:-33.724800pt;}
.ws90{word-spacing:-33.717600pt;}
.ws5f{word-spacing:-33.658667pt;}
.ws29{word-spacing:-33.657067pt;}
.wsf{word-spacing:-33.359200pt;}
.ws1e{word-spacing:-33.280000pt;}
.ws8b{word-spacing:-33.093333pt;}
.ws62{word-spacing:-33.078667pt;}
.ws4c{word-spacing:-32.640000pt;}
.ws2f{word-spacing:-32.448000pt;}
.ws57{word-spacing:-32.430400pt;}
.ws2c{word-spacing:-32.000000pt;}
.ws30{word-spacing:-31.994667pt;}
.ws18{word-spacing:-31.936000pt;}
.ws9c{word-spacing:-31.803200pt;}
.ws38{word-spacing:-30.981333pt;}
.ws60{word-spacing:-30.973600pt;}
.ws79{word-spacing:-30.720000pt;}
.ws45{word-spacing:-30.712000pt;}
.ws7f{word-spacing:-30.528000pt;}
.wsa3{word-spacing:-30.526933pt;}
.wsa2{word-spacing:-30.515733pt;}
.wsa5{word-spacing:-30.082933pt;}
.ws40{word-spacing:-30.080000pt;}
.wsa6{word-spacing:-29.893333pt;}
.wsa4{word-spacing:-29.886400pt;}
.ws22{word-spacing:-29.881333pt;}
.ws89{word-spacing:-29.874133pt;}
.ws7e{word-spacing:-29.694400pt;}
.ws3b{word-spacing:-29.440000pt;}
.ws53{word-spacing:-29.247200pt;}
.ws1b{word-spacing:-29.240000pt;}
.ws3{word-spacing:-28.800800pt;}
.ws39{word-spacing:-28.800000pt;}
.wsb{word-spacing:-28.399467pt;}
.wsa{word-spacing:-28.393333pt;}
.wsc{word-spacing:-28.070400pt;}
.ws73{word-spacing:-27.894933pt;}
.ws28{word-spacing:-27.520000pt;}
.wsab{word-spacing:-27.308800pt;}
.ws85{word-spacing:-27.305067pt;}
.ws25{word-spacing:-26.880000pt;}
.ws7d{word-spacing:-26.240000pt;}
.ws9e{word-spacing:-26.041067pt;}
.ws9f{word-spacing:-25.592000pt;}
.ws10{word-spacing:-24.814113pt;}
.ws15{word-spacing:-24.324319pt;}
.ws84{word-spacing:-24.320000pt;}
.ws7c{word-spacing:-24.314667pt;}
.ws78{word-spacing:-24.123200pt;}
.ws6c{word-spacing:-24.120000pt;}
.ws8a{word-spacing:-23.680000pt;}
.wsd{word-spacing:-23.469600pt;}
.ws16{word-spacing:-23.370965pt;}
.ws12{word-spacing:-22.938667pt;}
.wse{word-spacing:-22.825867pt;}
.ws3e{word-spacing:-22.400000pt;}
.ws13{word-spacing:-22.261020pt;}
.ws27{word-spacing:-22.208000pt;}
.ws14{word-spacing:-22.187958pt;}
.ws75{word-spacing:-21.064000pt;}
.ws4{word-spacing:-20.963733pt;}
.ws76{word-spacing:-20.960000pt;}
.ws35{word-spacing:-20.641333pt;}
.ws23{word-spacing:-20.480000pt;}
.ws56{word-spacing:-19.840000pt;}
.ws2a{word-spacing:-19.636000pt;}
.ws34{word-spacing:-19.609333pt;}
.ws0{word-spacing:-18.960800pt;}
.ws97{word-spacing:-18.557600pt;}
.ws82{word-spacing:-18.552000pt;}
.ws98{word-spacing:-18.368000pt;}
.ws4e{word-spacing:-18.364533pt;}
.ws96{word-spacing:-18.358400pt;}
.ws5a{word-spacing:-18.353600pt;}
.ws2d{word-spacing:-17.280000pt;}
.ws7b{word-spacing:-17.022400pt;}
.ws3d{word-spacing:-16.005333pt;}
.ws26{word-spacing:-16.000000pt;}
.ws9b{word-spacing:-15.813333pt;}
.ws9a{word-spacing:-15.167200pt;}
.ws1{word-spacing:-14.951417pt;}
.ws11{word-spacing:-14.518933pt;}
.ws2{word-spacing:-14.363763pt;}
.ws67{word-spacing:-14.080000pt;}
.ws8e{word-spacing:-13.246400pt;}
.ws69{word-spacing:-13.189333pt;}
.ws61{word-spacing:-12.800000pt;}
.ws21{word-spacing:-12.613333pt;}
.ws1f{word-spacing:-12.096000pt;}
.ws8d{word-spacing:-11.973333pt;}
.wsaa{word-spacing:-11.135200pt;}
.ws95{word-spacing:-10.880000pt;}
.ws2b{word-spacing:-10.683200pt;}
.ws24{word-spacing:-10.021867pt;}
.ws5e{word-spacing:-9.984000pt;}
.ws66{word-spacing:-9.592000pt;}
.ws80{word-spacing:-9.402667pt;}
.ws1a{word-spacing:-8.955200pt;}
.ws47{word-spacing:-6.653600pt;}
.ws8c{word-spacing:-6.136000pt;}
.ws51{word-spacing:-6.132800pt;}
.ws19{word-spacing:-5.573333pt;}
.ws43{word-spacing:-4.902400pt;}
.wsa7{word-spacing:-3.205333pt;}
.ws6f{word-spacing:-2.944000pt;}
.ws64{word-spacing:-2.560000pt;}
.ws6b{word-spacing:-1.916800pt;}
.ws31{word-spacing:-1.662400pt;}
.ws50{word-spacing:-0.631200pt;}
.ws87{word-spacing:-0.581333pt;}
.ws33{word-spacing:0.000000pt;}
.ws71{word-spacing:0.064000pt;}
.ws48{word-spacing:0.197333pt;}
.ws1c{word-spacing:0.652800pt;}
.ws93{word-spacing:0.836000pt;}
.ws92{word-spacing:0.840000pt;}
.ws91{word-spacing:0.841600pt;}
.ws1d{word-spacing:1.502933pt;}
.ws41{word-spacing:1.920000pt;}
.ws72{word-spacing:2.568800pt;}
.ws6e{word-spacing:3.200000pt;}
.ws5c{word-spacing:3.840000pt;}
.ws5b{word-spacing:4.485333pt;}
.ws77{word-spacing:4.549333pt;}
.ws52{word-spacing:4.735467pt;}
.ws83{word-spacing:5.120000pt;}
.wsa1{word-spacing:5.953600pt;}
.ws5d{word-spacing:5.960000pt;}
.ws81{word-spacing:7.048000pt;}
.ws55{word-spacing:7.900800pt;}
.ws86{word-spacing:10.240000pt;}
.ws4b{word-spacing:10.248533pt;}
.ws70{word-spacing:11.520000pt;}
.ws3a{word-spacing:14.084267pt;}
.ws9d{word-spacing:14.921067pt;}
.ws54{word-spacing:14.979200pt;}
.ws4d{word-spacing:17.926133pt;}
.ws88{word-spacing:19.458667pt;}
.ws3c{word-spacing:20.037333pt;}
.ws49{word-spacing:20.480000pt;}
.ws65{word-spacing:21.306667pt;}
.ws4f{word-spacing:21.384000pt;}
.wsa9{word-spacing:21.767733pt;}
.wsa8{word-spacing:21.971200pt;}
.ws63{word-spacing:23.040000pt;}
.ws59{word-spacing:27.730400pt;}
.ws46{word-spacing:30.720000pt;}
.ws7a{word-spacing:32.640000pt;}
.ws4a{word-spacing:46.080000pt;}
.ws6a{word-spacing:49.934400pt;}
.ws42{word-spacing:55.042667pt;}
.ws6d{word-spacing:56.512000pt;}
._3{margin-left:-1.241333pt;}
._1{width:1.614815pt;}
._2{width:3.985185pt;}
._0{width:5.170370pt;}
._29{width:11.001867pt;}
._6{width:12.389457pt;}
._5{width:14.318222pt;}
._2a{width:16.049185pt;}
._12{width:17.472000pt;}
._7{width:19.008000pt;}
._15{width:20.061333pt;}
._a{width:21.593215pt;}
._4{width:22.668119pt;}
._e{width:23.749333pt;}
._2d{width:24.650519pt;}
._25{width:26.864000pt;}
._10{width:28.741333pt;}
._2f{width:29.851052pt;}
._11{width:31.437185pt;}
._1f{width:32.483200pt;}
._2c{width:33.726400pt;}
._f{width:34.821333pt;}
._22{width:35.801333pt;}
._24{width:36.864000pt;}
._d{width:38.720000pt;}
._2e{width:40.149037pt;}
._9{width:41.669333pt;}
._17{width:44.224000pt;}
._8{width:45.898667pt;}
._27{width:47.738667pt;}
._1c{width:50.048000pt;}
._b{width:51.510252pt;}
._c{width:53.158400pt;}
._28{width:54.135200pt;}
._20{width:55.221333pt;}
._21{width:57.136000pt;}
._1e{width:58.688000pt;}
._19{width:60.919467pt;}
._13{width:65.015467pt;}
._1d{width:65.916800pt;}
._1a{width:68.729067pt;}
._14{width:70.709333pt;}
._1b{width:72.417185pt;}
._23{width:74.048000pt;}
._16{width:82.170667pt;}
._2b{width:83.776000pt;}
._18{width:96.768000pt;}
._26{width:107.185185pt;}
.fs0{font-size:37.066667pt;}
.fs1{font-size:39.733333pt;}
.fs6{font-size:42.933333pt;}
.fs3{font-size:53.066667pt;}
.fs4{font-size:58.933333pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.fs5{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.121333pt;}
.y87{bottom:3.146667pt;}
.y40{bottom:3.213333pt;}
.y2{bottom:3.600000pt;}
.y3e{bottom:8.600000pt;}
.y89{bottom:10.280000pt;}
.y3b{bottom:19.826667pt;}
.y63{bottom:26.013333pt;}
.y85{bottom:29.854667pt;}
.y3c{bottom:36.466667pt;}
.y1{bottom:36.600000pt;}
.y3{bottom:37.400000pt;}
.y86{bottom:38.200000pt;}
.ye{bottom:46.933333pt;}
.y3a{bottom:47.508000pt;}
.y8a{bottom:47.908000pt;}
.y9b{bottom:48.413333pt;}
.y7{bottom:48.721333pt;}
.y62{bottom:53.693333pt;}
.y84{bottom:57.374667pt;}
.y6{bottom:73.200000pt;}
.y41{bottom:74.533333pt;}
.y39{bottom:75.026667pt;}
.y9a{bottom:75.933333pt;}
.y8{bottom:76.880000pt;}
.y61{bottom:81.213333pt;}
.y83{bottom:85.054667pt;}
.y38{bottom:102.708000pt;}
.y99{bottom:103.613333pt;}
.y60{bottom:108.893333pt;}
.y82{bottom:112.574667pt;}
.y37{bottom:130.226667pt;}
.y98{bottom:131.133333pt;}
.y5f{bottom:136.413333pt;}
.y81{bottom:140.254667pt;}
.y36{bottom:157.906667pt;}
.y97{bottom:158.813333pt;}
.y5e{bottom:163.933333pt;}
.y80{bottom:167.774667pt;}
.y35{bottom:185.426667pt;}
.y96{bottom:186.333333pt;}
.y5d{bottom:191.613333pt;}
.y7f{bottom:195.293333pt;}
.y34{bottom:213.108000pt;}
.y95{bottom:214.013333pt;}
.y5c{bottom:219.133333pt;}
.y7e{bottom:222.974667pt;}
.y33{bottom:240.626667pt;}
.y94{bottom:241.533333pt;}
.y5b{bottom:246.813333pt;}
.y7d{bottom:250.493333pt;}
.y32{bottom:268.308000pt;}
.y93{bottom:269.213333pt;}
.y5a{bottom:274.333333pt;}
.y7c{bottom:278.173333pt;}
.y31{bottom:295.826667pt;}
.y92{bottom:296.733333pt;}
.y59{bottom:302.013333pt;}
.y7b{bottom:305.693333pt;}
.y30{bottom:323.508000pt;}
.y91{bottom:324.413333pt;}
.y58{bottom:329.533333pt;}
.y7a{bottom:333.374667pt;}
.y20{bottom:344.946667pt;}
.y2f{bottom:351.026667pt;}
.y90{bottom:351.933333pt;}
.y57{bottom:357.213333pt;}
.y1f{bottom:359.666667pt;}
.y79{bottom:360.893333pt;}
.yb5{bottom:368.413333pt;}
.y2e{bottom:378.708000pt;}
.y8f{bottom:379.613333pt;}
.y56{bottom:384.733333pt;}
.y1e{bottom:385.108000pt;}
.yb4{bottom:386.813333pt;}
.y78{bottom:388.574667pt;}
.y1d{bottom:399.826667pt;}
.yb3{bottom:405.213333pt;}
.y2d{bottom:406.226667pt;}
.y8e{bottom:407.133333pt;}
.y55{bottom:412.413333pt;}
.y77{bottom:416.093333pt;}
.y1c{bottom:425.266667pt;}
.yb2{bottom:431.613333pt;}
.y2c{bottom:433.908000pt;}
.y8d{bottom:434.813333pt;}
.y54{bottom:439.933333pt;}
.y1b{bottom:439.988000pt;}
.y76{bottom:443.774667pt;}
.yb1{bottom:450.013333pt;}
.y2b{bottom:461.426667pt;}
.y8c{bottom:462.333333pt;}
.y1a{bottom:462.866667pt;}
.y53{bottom:467.613333pt;}
.yb0{bottom:468.413333pt;}
.y75{bottom:471.293333pt;}
.y19{bottom:475.026667pt;}
.y18{bottom:487.346667pt;}
.y2a{bottom:489.108000pt;}
.yaf{bottom:494.813333pt;}
.y52{bottom:495.133333pt;}
.y74{bottom:498.973333pt;}
.y17{bottom:499.666667pt;}
.y8b{bottom:508.093333pt;}
.yae{bottom:513.213333pt;}
.y16{bottom:514.226667pt;}
.y29{bottom:516.626667pt;}
.y51{bottom:522.813333pt;}
.y73{bottom:526.493333pt;}
.yad{bottom:539.613333pt;}
.y28{bottom:544.308000pt;}
.y50{bottom:550.333333pt;}
.y72{bottom:554.173333pt;}
.y15{bottom:555.508000pt;}
.yac{bottom:558.013333pt;}
.y14{bottom:571.666667pt;}
.y27{bottom:571.826667pt;}
.yab{bottom:576.413333pt;}
.y4f{bottom:578.013333pt;}
.y71{bottom:581.693333pt;}
.y13{bottom:583.988000pt;}
.y26{bottom:599.508000pt;}
.yaa{bottom:602.813333pt;}
.y4e{bottom:605.533333pt;}
.y70{bottom:609.373333pt;}
.y12{bottom:613.266667pt;}
.ya9{bottom:621.213333pt;}
.y25{bottom:627.026667pt;}
.y11{bottom:627.988000pt;}
.y4d{bottom:633.213333pt;}
.y6f{bottom:636.893333pt;}
.ya8{bottom:647.613333pt;}
.y24{bottom:654.706667pt;}
.y4c{bottom:660.733333pt;}
.y6e{bottom:664.574667pt;}
.ya7{bottom:666.013333pt;}
.y10{bottom:667.026667pt;}
.yf{bottom:679.346667pt;}
.y23{bottom:682.226667pt;}
.ya6{bottom:684.413333pt;}
.y4b{bottom:688.413333pt;}
.y6d{bottom:692.093333pt;}
.y22{bottom:709.906667pt;}
.ya5{bottom:710.813333pt;}
.y4a{bottom:715.933333pt;}
.y6c{bottom:719.773333pt;}
.ya4{bottom:729.213333pt;}
.y21{bottom:739.506667pt;}
.y49{bottom:743.613333pt;}
.y6b{bottom:747.293333pt;}
.ya3{bottom:755.613333pt;}
.y48{bottom:771.133333pt;}
.ya2{bottom:774.013333pt;}
.y6a{bottom:774.973333pt;}
.ya1{bottom:792.413333pt;}
.y47{bottom:798.813333pt;}
.y69{bottom:802.493333pt;}
.ya0{bottom:818.813333pt;}
.y46{bottom:826.333333pt;}
.yd{bottom:827.080000pt;}
.y68{bottom:830.173333pt;}
.y9f{bottom:837.213333pt;}
.y45{bottom:854.013333pt;}
.y67{bottom:857.693333pt;}
.y9e{bottom:863.613333pt;}
.yc{bottom:873.000000pt;}
.y44{bottom:881.533333pt;}
.y9d{bottom:882.013333pt;}
.y66{bottom:885.373333pt;}
.yb{bottom:896.040000pt;}
.y9c{bottom:900.413333pt;}
.y65{bottom:912.893333pt;}
.y43{bottom:916.573333pt;}
.ya{bottom:926.921333pt;}
.y42{bottom:938.013333pt;}
.y64{bottom:940.413333pt;}
.y9{bottom:951.400000pt;}
.y5{bottom:988.600000pt;}
.y88{bottom:1054.266667pt;}
.y3d{bottom:1056.266667pt;}
.y3f{bottom:1057.333333pt;}
.h3{height:12.400000pt;}
.h1{height:12.933333pt;}
.h13{height:16.866667pt;}
.h11{height:17.866667pt;}
.h15{height:19.600000pt;}
.h2{height:32.523828pt;}
.h4{height:34.863672pt;}
.h12{height:34.960677pt;}
.hc{height:37.671484pt;}
.hd{height:38.132682pt;}
.h7{height:46.562891pt;}
.ha{height:46.692448pt;}
.h8{height:52.343620pt;}
.he{height:56.156250pt;}
.hf{height:56.312500pt;}
.h16{height:56.843750pt;}
.h6{height:66.554557pt;}
.h9{height:75.554818pt;}
.h5{height:96.466667pt;}
.hb{height:758.000000pt;}
.h14{height:956.466667pt;}
.h10{height:1122.533333pt;}
.h0{height:1122.666667pt;}
.wc{width:7.333333pt;}
.w3{width:41.066667pt;}
.wa{width:71.400000pt;}
.w1{width:74.066667pt;}
.w9{width:75.800000pt;}
.w2{width:89.000000pt;}
.wb{width:120.133333pt;}
.w6{width:247.333333pt;}
.w5{width:288.200000pt;}
.w4{width:341.200000pt;}
.wd{width:397.866667pt;}
.we{width:397.933333pt;}
.wf{width:411.533333pt;}
.w7{width:548.733333pt;}
.w8{width:793.733333pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.345333pt;}
.xb{left:15.026667pt;}
.x4{left:22.573333pt;}
.x5{left:28.973333pt;}
.x6{left:50.733333pt;}
.x7{left:57.133333pt;}
.xe{left:61.278667pt;}
.x13{left:62.573333pt;}
.xd{left:65.240000pt;}
.x1{left:69.533333pt;}
.x10{left:70.878667pt;}
.x11{left:76.320000pt;}
.x8{left:84.653333pt;}
.x16{left:108.478667pt;}
.xa{left:166.733333pt;}
.xf{left:214.560000pt;}
.x12{left:245.266667pt;}
.x18{left:311.400000pt;}
.x17{left:395.800000pt;}
.xc{left:505.800000pt;}
.x3{left:555.666667pt;}
.x15{left:598.533333pt;}
.x9{left:645.533333pt;}
.x14{left:652.800000pt;}
}




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