
    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_5481a699dba152aab5b1614d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_f7d1929e0a0412f7e16a3ad8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_b3ccc99a450d9211fa47b9bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_242a2b66eec223df4732e3b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_4d40b66c22a44198f58402fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.779297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f0f624e966c05c8107a05a8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fe35655e2b1ddef9b3888434.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5003a5499150d5c9f95f4b48.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858398;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-1.181952px;}
.ls2f{letter-spacing:-0.913824px;}
.ls2c{letter-spacing:-0.530784px;}
.ls2b{letter-spacing:-0.383040px;}
.lsd{letter-spacing:-0.342144px;}
.ls30{letter-spacing:-0.338688px;}
.ls1c{letter-spacing:-0.310464px;}
.ls18{letter-spacing:-0.297792px;}
.ls21{letter-spacing:-0.266112px;}
.ls25{letter-spacing:-0.253440px;}
.ls28{letter-spacing:-0.247104px;}
.lsf{letter-spacing:-0.234432px;}
.ls27{letter-spacing:-0.228096px;}
.ls2e{letter-spacing:-0.224352px;}
.ls10{letter-spacing:-0.221760px;}
.ls19{letter-spacing:-0.215424px;}
.ls16{letter-spacing:-0.209088px;}
.ls26{letter-spacing:-0.202752px;}
.ls7{letter-spacing:-0.196416px;}
.ls6{letter-spacing:-0.190080px;}
.ls12{letter-spacing:-0.183744px;}
.lse{letter-spacing:-0.177408px;}
.ls17{letter-spacing:-0.171072px;}
.ls8{letter-spacing:-0.164736px;}
.ls11{letter-spacing:-0.158400px;}
.ls1b{letter-spacing:-0.152064px;}
.ls1a{letter-spacing:-0.145728px;}
.ls4{letter-spacing:-0.133056px;}
.ls1d{letter-spacing:-0.126720px;}
.ls13{letter-spacing:-0.120384px;}
.ls15{letter-spacing:-0.101376px;}
.ls20{letter-spacing:-0.095040px;}
.ls33{letter-spacing:-0.069696px;}
.ls32{letter-spacing:-0.063360px;}
.ls14{letter-spacing:-0.050688px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.141984px;}
.ls2{letter-spacing:0.171360px;}
.ls31{letter-spacing:0.258912px;}
.lsa{letter-spacing:0.317376px;}
.lsb{letter-spacing:0.325728px;}
.lsc{letter-spacing:0.334080px;}
.ls1e{letter-spacing:0.403200px;}
.ls1f{letter-spacing:0.754560px;}
.ls23{letter-spacing:1.248480px;}
.ls2a{letter-spacing:1.804320px;}
.ls3{letter-spacing:6.714720px;}
.ls22{letter-spacing:8.762400px;}
.ls29{letter-spacing:9.802080px;}
.ls24{letter-spacing:10.549440px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.ws8{word-spacing:-14.268672px;}
.ws19{word-spacing:-14.249664px;}
.wsc{word-spacing:-14.217984px;}
.ws4{word-spacing:-14.198976px;}
.ws13{word-spacing:-14.186304px;}
.ws10{word-spacing:-14.173632px;}
.ws1a{word-spacing:-14.167296px;}
.ws12{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws9{word-spacing:-14.148288px;}
.ws7{word-spacing:-14.141952px;}
.wsa{word-spacing:-14.135616px;}
.ws0{word-spacing:-14.129280px;}
.wsf{word-spacing:-14.122944px;}
.ws11{word-spacing:-14.116608px;}
.wsd{word-spacing:-14.110272px;}
.ws3{word-spacing:-14.097600px;}
.ws5{word-spacing:-14.084928px;}
.ws1b{word-spacing:-14.053248px;}
.ws1c{word-spacing:-14.021568px;}
.wsb{word-spacing:-14.008896px;}
.wse{word-spacing:-13.977216px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.328320px;}
.ws18{word-spacing:0.859104px;}
.ws16{word-spacing:408.434184px;}
.ws17{word-spacing:419.420376px;}
.ws15{word-spacing:489.241224px;}
._d{margin-left:-3.548160px;}
._b{margin-left:-2.407680px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._5{width:2.090880px;}
._a{width:3.104640px;}
._11{width:4.220064px;}
._8{width:5.322240px;}
._9{width:6.380208px;}
._6{width:7.476480px;}
._7{width:8.563680px;}
._c{width:10.139328px;}
._12{width:11.934000px;}
._4{width:13.140864px;}
._f{width:15.523200px;}
._3{width:17.297280px;}
._10{width:18.374400px;}
._17{width:20.465280px;}
._18{width:21.479040px;}
._19{width:22.492800px;}
._1a{width:26.040960px;}
._e{width:28.448640px;}
._20{width:31.046400px;}
._1b{width:34.214400px;}
._15{width:49.484160px;}
._1e{width:57.594240px;}
._1f{width:59.366880px;}
._16{width:65.831040px;}
._1c{width:104.417280px;}
._1d{width:105.555312px;}
._14{width:142.433280px;}
._13{width:184.064832px;}
._1{width:2478.560832px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:4.500000px;}
.y9e{bottom:4.620000px;}
.yaa{bottom:4.740000px;}
.y7b{bottom:4.800000px;}
.ydc{bottom:4.860000px;}
.yf3{bottom:4.920000px;}
.yb6{bottom:4.980000px;}
.y81{bottom:5.040000px;}
.ye1{bottom:5.100000px;}
.ya1{bottom:5.160000px;}
.yf1{bottom:5.220000px;}
.yb4{bottom:5.280000px;}
.y7f{bottom:5.340000px;}
.ya7{bottom:5.400000px;}
.y79{bottom:5.460000px;}
.y85{bottom:5.580000px;}
.ya4{bottom:5.700000px;}
.y77{bottom:5.760000px;}
.yfe{bottom:5.820000px;}
.y83{bottom:5.880000px;}
.yb2{bottom:5.940000px;}
.y7d{bottom:6.000000px;}
.yde{bottom:6.060000px;}
.ycc{bottom:6.240000px;}
.ya9{bottom:19.500000px;}
.y94{bottom:19.560000px;}
.y98{bottom:19.800000px;}
.ya0{bottom:19.920000px;}
.ya6{bottom:20.160000px;}
.y92{bottom:20.220000px;}
.y9c{bottom:20.340000px;}
.ya3{bottom:20.460000px;}
.y9a{bottom:20.640000px;}
.y96{bottom:20.760000px;}
.yc7{bottom:22.320000px;}
.y9d{bottom:23.700000px;}
.y90{bottom:25.200000px;}
.yc5{bottom:45.000000px;}
.y2{bottom:58.320000px;}
.ybb{bottom:63.000000px;}
.ybc{bottom:86.040000px;}
.yb9{bottom:92.160000px;}
.yfc{bottom:95.040000px;}
.yc6{bottom:99.360000px;}
.y6e{bottom:105.480000px;}
.y36{bottom:108.000000px;}
.ybd{bottom:109.080000px;}
.yb8{bottom:111.240000px;}
.yfb{bottom:114.480000px;}
.y121{bottom:120.960000px;}
.y6d{bottom:124.920000px;}
.y35{bottom:127.080000px;}
.yb7{bottom:130.320000px;}
.ybe{bottom:132.120000px;}
.yfa{bottom:133.560000px;}
.y120{bottom:140.400000px;}
.y6c{bottom:144.000000px;}
.yb5{bottom:145.500000px;}
.y34{bottom:146.520000px;}
.yf9{bottom:152.640000px;}
.ybf{bottom:155.160000px;}
.y11f{bottom:159.480000px;}
.y6b{bottom:163.440000px;}
.yb3{bottom:165.000000px;}
.y33{bottom:165.600000px;}
.yf8{bottom:172.080000px;}
.yc0{bottom:178.200000px;}
.y11e{bottom:178.920000px;}
.y6a{bottom:182.520000px;}
.yb1{bottom:184.500000px;}
.y32{bottom:185.040000px;}
.yf7{bottom:191.160000px;}
.y11d{bottom:198.000000px;}
.yc1{bottom:201.240000px;}
.y69{bottom:201.600000px;}
.y31{bottom:204.120000px;}
.yb0{bottom:205.500000px;}
.yf6{bottom:210.600000px;}
.y11c{bottom:217.080000px;}
.y68{bottom:221.040000px;}
.y30{bottom:223.560000px;}
.yc2{bottom:224.640000px;}
.yf5{bottom:229.680000px;}
.yaf{bottom:230.400000px;}
.y11b{bottom:236.520000px;}
.y67{bottom:240.120000px;}
.y2f{bottom:242.640000px;}
.yc3{bottom:247.680000px;}
.yf4{bottom:249.120000px;}
.yae{bottom:249.480000px;}
.y75{bottom:252.720000px;}
.y11a{bottom:255.600000px;}
.y66{bottom:259.560000px;}
.y2e{bottom:261.720000px;}
.yf2{bottom:264.000000px;}
.yad{bottom:268.920000px;}
.yc4{bottom:270.720000px;}
.y74{bottom:271.800000px;}
.y119{bottom:275.040000px;}
.y65{bottom:278.640000px;}
.y2d{bottom:281.160000px;}
.yf0{bottom:283.500000px;}
.yac{bottom:288.000000px;}
.y73{bottom:291.240000px;}
.y118{bottom:294.120000px;}
.y64{bottom:297.720000px;}
.yc8{bottom:298.440000px;}
.y2c{bottom:300.240000px;}
.yef{bottom:303.000000px;}
.yab{bottom:307.440000px;}
.y72{bottom:310.320000px;}
.y117{bottom:313.200000px;}
.y63{bottom:317.160000px;}
.y2b{bottom:319.680000px;}
.ya8{bottom:322.500000px;}
.yee{bottom:328.680000px;}
.y71{bottom:329.400000px;}
.y116{bottom:332.640000px;}
.y62{bottom:336.240000px;}
.y2a{bottom:338.760000px;}
.ya5{bottom:342.000000px;}
.yed{bottom:348.120000px;}
.y70{bottom:348.840000px;}
.y115{bottom:351.720000px;}
.y61{bottom:355.680000px;}
.y29{bottom:357.840000px;}
.ya2{bottom:361.500000px;}
.yec{bottom:367.200000px;}
.y6f{bottom:367.920000px;}
.y114{bottom:371.160000px;}
.y60{bottom:374.760000px;}
.y28{bottom:377.280000px;}
.y84{bottom:382.500000px;}
.yeb{bottom:386.640000px;}
.y113{bottom:390.240000px;}
.y5f{bottom:394.200000px;}
.y27{bottom:396.360000px;}
.y82{bottom:402.000000px;}
.yea{bottom:405.720000px;}
.y112{bottom:409.680000px;}
.y5e{bottom:413.280000px;}
.y26{bottom:415.800000px;}
.y9f{bottom:421.500000px;}
.y80{bottom:423.000000px;}
.ye9{bottom:424.800000px;}
.y111{bottom:428.760000px;}
.y5d{bottom:432.360000px;}
.y25{bottom:434.880000px;}
.y7e{bottom:442.500000px;}
.ye8{bottom:444.240000px;}
.y110{bottom:447.840000px;}
.y5c{bottom:451.800000px;}
.y24{bottom:453.960000px;}
.y7c{bottom:462.000000px;}
.ye7{bottom:463.320000px;}
.y10f{bottom:467.280000px;}
.y5b{bottom:470.880000px;}
.y23{bottom:473.400000px;}
.y9b{bottom:481.500000px;}
.ye6{bottom:482.760000px;}
.y7a{bottom:483.000000px;}
.y10e{bottom:486.360000px;}
.y5a{bottom:490.320000px;}
.y22{bottom:492.480000px;}
.y99{bottom:501.000000px;}
.ye5{bottom:501.840000px;}
.y78{bottom:502.500000px;}
.y10d{bottom:505.800000px;}
.y59{bottom:509.400000px;}
.y21{bottom:511.920000px;}
.ye4{bottom:521.280000px;}
.y76{bottom:522.000000px;}
.y10c{bottom:524.880000px;}
.y58{bottom:528.480000px;}
.y20{bottom:531.000000px;}
.ye3{bottom:540.360000px;}
.y97{bottom:541.500000px;}
.y10b{bottom:543.960000px;}
.y57{bottom:547.920000px;}
.y1f{bottom:550.080000px;}
.ye2{bottom:559.440000px;}
.y95{bottom:561.000000px;}
.y10a{bottom:563.400000px;}
.y56{bottom:567.000000px;}
.y1e{bottom:569.520000px;}
.ye0{bottom:574.500000px;}
.y93{bottom:582.000000px;}
.y109{bottom:582.480000px;}
.y55{bottom:586.440000px;}
.y1d{bottom:588.600000px;}
.ydf{bottom:594.000000px;}
.y91{bottom:601.500000px;}
.y108{bottom:601.920000px;}
.y54{bottom:605.520000px;}
.y1c{bottom:608.040000px;}
.ydd{bottom:613.500000px;}
.y8f{bottom:621.000000px;}
.y53{bottom:624.600000px;}
.y1b{bottom:627.120000px;}
.ydb{bottom:634.500000px;}
.y107{bottom:640.080000px;}
.y52{bottom:644.040000px;}
.y1a{bottom:646.200000px;}
.yda{bottom:659.520000px;}
.y8d{bottom:661.500000px;}
.y51{bottom:663.120000px;}
.y19{bottom:665.640000px;}
.yd9{bottom:678.600000px;}
.y50{bottom:682.560000px;}
.y18{bottom:684.720000px;}
.y8c{bottom:686.160000px;}
.yd8{bottom:698.040000px;}
.y4f{bottom:701.640000px;}
.y17{bottom:704.160000px;}
.y8b{bottom:705.240000px;}
.yd7{bottom:717.120000px;}
.y4e{bottom:720.720000px;}
.y16{bottom:723.240000px;}
.y8a{bottom:724.680000px;}
.yd6{bottom:736.200000px;}
.y4d{bottom:740.160000px;}
.y15{bottom:742.320000px;}
.y89{bottom:743.760000px;}
.yd5{bottom:755.640000px;}
.y4c{bottom:759.240000px;}
.y14{bottom:761.760000px;}
.y88{bottom:762.840000px;}
.yd4{bottom:774.720000px;}
.y4b{bottom:778.680000px;}
.y13{bottom:780.840000px;}
.y87{bottom:782.280000px;}
.yd3{bottom:794.160000px;}
.y4a{bottom:797.760000px;}
.y12{bottom:800.280000px;}
.y86{bottom:801.360000px;}
.yd2{bottom:813.240000px;}
.y49{bottom:816.840000px;}
.yba{bottom:817.920000px;}
.y11{bottom:819.360000px;}
.yd1{bottom:832.320000px;}
.y48{bottom:836.280000px;}
.y10{bottom:838.800000px;}
.yd0{bottom:851.760000px;}
.y47{bottom:855.360000px;}
.yf{bottom:857.880000px;}
.ycf{bottom:870.840000px;}
.y46{bottom:874.800000px;}
.ye{bottom:876.960000px;}
.yce{bottom:890.280000px;}
.y45{bottom:893.880000px;}
.yd{bottom:896.400000px;}
.ycd{bottom:904.500000px;}
.y106{bottom:909.360000px;}
.y44{bottom:912.960000px;}
.yc{bottom:915.480000px;}
.ycb{bottom:924.000000px;}
.y105{bottom:928.440000px;}
.y43{bottom:932.400000px;}
.yb{bottom:934.920000px;}
.yca{bottom:945.000000px;}
.y104{bottom:947.880000px;}
.y42{bottom:951.480000px;}
.ya{bottom:954.000000px;}
.yc9{bottom:964.500000px;}
.y103{bottom:966.960000px;}
.y41{bottom:970.920000px;}
.y9{bottom:974.160000px;}
.y102{bottom:986.400000px;}
.y40{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y101{bottom:1000.500000px;}
.y3f{bottom:1009.440000px;}
.y100{bottom:1021.500000px;}
.y7{bottom:1024.920000px;}
.y3e{bottom:1028.520000px;}
.yff{bottom:1041.000000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.yfd{bottom:1060.500000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.y39{bottom:1124.640000px;}
.y38{bottom:1143.720000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h7{height:19.500000px;}
.h6{height:21.000000px;}
.hb{height:37.219219px;}
.h9{height:39.000000px;}
.h8{height:40.500000px;}
.hc{height:41.343750px;}
.h5{height:43.900313px;}
.h3{height:44.055000px;}
.h2{height:50.242500px;}
.hd{height:56.808281px;}
.h4{height:61.987500px;}
.ha{height:329.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:201.000000px;}
.w5{width:217.500000px;}
.w4{width:246.000000px;}
.w7{width:306.000000px;}
.w3{width:477.000000px;}
.w8{width:711.720000px;}
.w2{width:723.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xc{left:8.099856px;}
.x15{left:33.390000px;}
.x13{left:41.797440px;}
.x12{left:52.005000px;}
.x1{left:62.009748px;}
.xb{left:84.959856px;}
.x11{left:88.560000px;}
.x6{left:99.474624px;}
.x4{left:106.184700px;}
.x5{left:131.277096px;}
.x14{left:135.827550px;}
.x17{left:140.355000px;}
.x3{left:181.064592px;}
.xa{left:239.191776px;}
.x7{left:289.012932px;}
.xf{left:301.500000px;}
.x16{left:332.309250px;}
.x2{left:442.885680px;}
.xe{left:456.997320px;}
.x10{left:502.500000px;}
.xd{left:562.500000px;}
.x8{left:707.164920px;}
.x9{left:804.284640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-1.050624pt;}
.ls2f{letter-spacing:-0.812288pt;}
.ls2c{letter-spacing:-0.471808pt;}
.ls2b{letter-spacing:-0.340480pt;}
.lsd{letter-spacing:-0.304128pt;}
.ls30{letter-spacing:-0.301056pt;}
.ls1c{letter-spacing:-0.275968pt;}
.ls18{letter-spacing:-0.264704pt;}
.ls21{letter-spacing:-0.236544pt;}
.ls25{letter-spacing:-0.225280pt;}
.ls28{letter-spacing:-0.219648pt;}
.lsf{letter-spacing:-0.208384pt;}
.ls27{letter-spacing:-0.202752pt;}
.ls2e{letter-spacing:-0.199424pt;}
.ls10{letter-spacing:-0.197120pt;}
.ls19{letter-spacing:-0.191488pt;}
.ls16{letter-spacing:-0.185856pt;}
.ls26{letter-spacing:-0.180224pt;}
.ls7{letter-spacing:-0.174592pt;}
.ls6{letter-spacing:-0.168960pt;}
.ls12{letter-spacing:-0.163328pt;}
.lse{letter-spacing:-0.157696pt;}
.ls17{letter-spacing:-0.152064pt;}
.ls8{letter-spacing:-0.146432pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls1b{letter-spacing:-0.135168pt;}
.ls1a{letter-spacing:-0.129536pt;}
.ls4{letter-spacing:-0.118272pt;}
.ls1d{letter-spacing:-0.112640pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls15{letter-spacing:-0.090112pt;}
.ls20{letter-spacing:-0.084480pt;}
.ls33{letter-spacing:-0.061952pt;}
.ls32{letter-spacing:-0.056320pt;}
.ls14{letter-spacing:-0.045056pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.126208pt;}
.ls2{letter-spacing:0.152320pt;}
.ls31{letter-spacing:0.230144pt;}
.lsa{letter-spacing:0.282112pt;}
.lsb{letter-spacing:0.289536pt;}
.lsc{letter-spacing:0.296960pt;}
.ls1e{letter-spacing:0.358400pt;}
.ls1f{letter-spacing:0.670720pt;}
.ls23{letter-spacing:1.109760pt;}
.ls2a{letter-spacing:1.603840pt;}
.ls3{letter-spacing:5.968640pt;}
.ls22{letter-spacing:7.788800pt;}
.ls29{letter-spacing:8.712960pt;}
.ls24{letter-spacing:9.377280pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws8{word-spacing:-12.683264pt;}
.ws19{word-spacing:-12.666368pt;}
.wsc{word-spacing:-12.638208pt;}
.ws4{word-spacing:-12.621312pt;}
.ws13{word-spacing:-12.610048pt;}
.ws10{word-spacing:-12.598784pt;}
.ws1a{word-spacing:-12.593152pt;}
.ws12{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws9{word-spacing:-12.576256pt;}
.ws7{word-spacing:-12.570624pt;}
.wsa{word-spacing:-12.564992pt;}
.ws0{word-spacing:-12.559360pt;}
.wsf{word-spacing:-12.553728pt;}
.ws11{word-spacing:-12.548096pt;}
.wsd{word-spacing:-12.542464pt;}
.ws3{word-spacing:-12.531200pt;}
.ws5{word-spacing:-12.519936pt;}
.ws1b{word-spacing:-12.491776pt;}
.ws1c{word-spacing:-12.463616pt;}
.wsb{word-spacing:-12.452352pt;}
.wse{word-spacing:-12.424192pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.291840pt;}
.ws18{word-spacing:0.763648pt;}
.ws16{word-spacing:363.052608pt;}
.ws17{word-spacing:372.818112pt;}
.ws15{word-spacing:434.881088pt;}
._d{margin-left:-3.153920pt;}
._b{margin-left:-2.140160pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._5{width:1.858560pt;}
._a{width:2.759680pt;}
._11{width:3.751168pt;}
._8{width:4.730880pt;}
._9{width:5.671296pt;}
._6{width:6.645760pt;}
._7{width:7.612160pt;}
._c{width:9.012736pt;}
._12{width:10.608000pt;}
._4{width:11.680768pt;}
._f{width:13.798400pt;}
._3{width:15.375360pt;}
._10{width:16.332800pt;}
._17{width:18.191360pt;}
._18{width:19.092480pt;}
._19{width:19.993600pt;}
._1a{width:23.147520pt;}
._e{width:25.287680pt;}
._20{width:27.596800pt;}
._1b{width:30.412800pt;}
._15{width:43.985920pt;}
._1e{width:51.194880pt;}
._1f{width:52.770560pt;}
._16{width:58.516480pt;}
._1c{width:92.815360pt;}
._1d{width:93.826944pt;}
._14{width:126.607360pt;}
._13{width:163.613184pt;}
._1{width:2203.165184pt;}
.fs2{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:4.000000pt;}
.y9e{bottom:4.106667pt;}
.yaa{bottom:4.213333pt;}
.y7b{bottom:4.266667pt;}
.ydc{bottom:4.320000pt;}
.yf3{bottom:4.373333pt;}
.yb6{bottom:4.426667pt;}
.y81{bottom:4.480000pt;}
.ye1{bottom:4.533333pt;}
.ya1{bottom:4.586667pt;}
.yf1{bottom:4.640000pt;}
.yb4{bottom:4.693333pt;}
.y7f{bottom:4.746667pt;}
.ya7{bottom:4.800000pt;}
.y79{bottom:4.853333pt;}
.y85{bottom:4.960000pt;}
.ya4{bottom:5.066667pt;}
.y77{bottom:5.120000pt;}
.yfe{bottom:5.173333pt;}
.y83{bottom:5.226667pt;}
.yb2{bottom:5.280000pt;}
.y7d{bottom:5.333333pt;}
.yde{bottom:5.386667pt;}
.ycc{bottom:5.546667pt;}
.ya9{bottom:17.333333pt;}
.y94{bottom:17.386667pt;}
.y98{bottom:17.600000pt;}
.ya0{bottom:17.706667pt;}
.ya6{bottom:17.920000pt;}
.y92{bottom:17.973333pt;}
.y9c{bottom:18.080000pt;}
.ya3{bottom:18.186667pt;}
.y9a{bottom:18.346667pt;}
.y96{bottom:18.453333pt;}
.yc7{bottom:19.840000pt;}
.y9d{bottom:21.066667pt;}
.y90{bottom:22.400000pt;}
.yc5{bottom:40.000000pt;}
.y2{bottom:51.840000pt;}
.ybb{bottom:56.000000pt;}
.ybc{bottom:76.480000pt;}
.yb9{bottom:81.920000pt;}
.yfc{bottom:84.480000pt;}
.yc6{bottom:88.320000pt;}
.y6e{bottom:93.760000pt;}
.y36{bottom:96.000000pt;}
.ybd{bottom:96.960000pt;}
.yb8{bottom:98.880000pt;}
.yfb{bottom:101.760000pt;}
.y121{bottom:107.520000pt;}
.y6d{bottom:111.040000pt;}
.y35{bottom:112.960000pt;}
.yb7{bottom:115.840000pt;}
.ybe{bottom:117.440000pt;}
.yfa{bottom:118.720000pt;}
.y120{bottom:124.800000pt;}
.y6c{bottom:128.000000pt;}
.yb5{bottom:129.333333pt;}
.y34{bottom:130.240000pt;}
.yf9{bottom:135.680000pt;}
.ybf{bottom:137.920000pt;}
.y11f{bottom:141.760000pt;}
.y6b{bottom:145.280000pt;}
.yb3{bottom:146.666667pt;}
.y33{bottom:147.200000pt;}
.yf8{bottom:152.960000pt;}
.yc0{bottom:158.400000pt;}
.y11e{bottom:159.040000pt;}
.y6a{bottom:162.240000pt;}
.yb1{bottom:164.000000pt;}
.y32{bottom:164.480000pt;}
.yf7{bottom:169.920000pt;}
.y11d{bottom:176.000000pt;}
.yc1{bottom:178.880000pt;}
.y69{bottom:179.200000pt;}
.y31{bottom:181.440000pt;}
.yb0{bottom:182.666667pt;}
.yf6{bottom:187.200000pt;}
.y11c{bottom:192.960000pt;}
.y68{bottom:196.480000pt;}
.y30{bottom:198.720000pt;}
.yc2{bottom:199.680000pt;}
.yf5{bottom:204.160000pt;}
.yaf{bottom:204.800000pt;}
.y11b{bottom:210.240000pt;}
.y67{bottom:213.440000pt;}
.y2f{bottom:215.680000pt;}
.yc3{bottom:220.160000pt;}
.yf4{bottom:221.440000pt;}
.yae{bottom:221.760000pt;}
.y75{bottom:224.640000pt;}
.y11a{bottom:227.200000pt;}
.y66{bottom:230.720000pt;}
.y2e{bottom:232.640000pt;}
.yf2{bottom:234.666667pt;}
.yad{bottom:239.040000pt;}
.yc4{bottom:240.640000pt;}
.y74{bottom:241.600000pt;}
.y119{bottom:244.480000pt;}
.y65{bottom:247.680000pt;}
.y2d{bottom:249.920000pt;}
.yf0{bottom:252.000000pt;}
.yac{bottom:256.000000pt;}
.y73{bottom:258.880000pt;}
.y118{bottom:261.440000pt;}
.y64{bottom:264.640000pt;}
.yc8{bottom:265.280000pt;}
.y2c{bottom:266.880000pt;}
.yef{bottom:269.333333pt;}
.yab{bottom:273.280000pt;}
.y72{bottom:275.840000pt;}
.y117{bottom:278.400000pt;}
.y63{bottom:281.920000pt;}
.y2b{bottom:284.160000pt;}
.ya8{bottom:286.666667pt;}
.yee{bottom:292.160000pt;}
.y71{bottom:292.800000pt;}
.y116{bottom:295.680000pt;}
.y62{bottom:298.880000pt;}
.y2a{bottom:301.120000pt;}
.ya5{bottom:304.000000pt;}
.yed{bottom:309.440000pt;}
.y70{bottom:310.080000pt;}
.y115{bottom:312.640000pt;}
.y61{bottom:316.160000pt;}
.y29{bottom:318.080000pt;}
.ya2{bottom:321.333333pt;}
.yec{bottom:326.400000pt;}
.y6f{bottom:327.040000pt;}
.y114{bottom:329.920000pt;}
.y60{bottom:333.120000pt;}
.y28{bottom:335.360000pt;}
.y84{bottom:340.000000pt;}
.yeb{bottom:343.680000pt;}
.y113{bottom:346.880000pt;}
.y5f{bottom:350.400000pt;}
.y27{bottom:352.320000pt;}
.y82{bottom:357.333333pt;}
.yea{bottom:360.640000pt;}
.y112{bottom:364.160000pt;}
.y5e{bottom:367.360000pt;}
.y26{bottom:369.600000pt;}
.y9f{bottom:374.666667pt;}
.y80{bottom:376.000000pt;}
.ye9{bottom:377.600000pt;}
.y111{bottom:381.120000pt;}
.y5d{bottom:384.320000pt;}
.y25{bottom:386.560000pt;}
.y7e{bottom:393.333333pt;}
.ye8{bottom:394.880000pt;}
.y110{bottom:398.080000pt;}
.y5c{bottom:401.600000pt;}
.y24{bottom:403.520000pt;}
.y7c{bottom:410.666667pt;}
.ye7{bottom:411.840000pt;}
.y10f{bottom:415.360000pt;}
.y5b{bottom:418.560000pt;}
.y23{bottom:420.800000pt;}
.y9b{bottom:428.000000pt;}
.ye6{bottom:429.120000pt;}
.y7a{bottom:429.333333pt;}
.y10e{bottom:432.320000pt;}
.y5a{bottom:435.840000pt;}
.y22{bottom:437.760000pt;}
.y99{bottom:445.333333pt;}
.ye5{bottom:446.080000pt;}
.y78{bottom:446.666667pt;}
.y10d{bottom:449.600000pt;}
.y59{bottom:452.800000pt;}
.y21{bottom:455.040000pt;}
.ye4{bottom:463.360000pt;}
.y76{bottom:464.000000pt;}
.y10c{bottom:466.560000pt;}
.y58{bottom:469.760000pt;}
.y20{bottom:472.000000pt;}
.ye3{bottom:480.320000pt;}
.y97{bottom:481.333333pt;}
.y10b{bottom:483.520000pt;}
.y57{bottom:487.040000pt;}
.y1f{bottom:488.960000pt;}
.ye2{bottom:497.280000pt;}
.y95{bottom:498.666667pt;}
.y10a{bottom:500.800000pt;}
.y56{bottom:504.000000pt;}
.y1e{bottom:506.240000pt;}
.ye0{bottom:510.666667pt;}
.y93{bottom:517.333333pt;}
.y109{bottom:517.760000pt;}
.y55{bottom:521.280000pt;}
.y1d{bottom:523.200000pt;}
.ydf{bottom:528.000000pt;}
.y91{bottom:534.666667pt;}
.y108{bottom:535.040000pt;}
.y54{bottom:538.240000pt;}
.y1c{bottom:540.480000pt;}
.ydd{bottom:545.333333pt;}
.y8f{bottom:552.000000pt;}
.y53{bottom:555.200000pt;}
.y1b{bottom:557.440000pt;}
.ydb{bottom:564.000000pt;}
.y107{bottom:568.960000pt;}
.y52{bottom:572.480000pt;}
.y1a{bottom:574.400000pt;}
.yda{bottom:586.240000pt;}
.y8d{bottom:588.000000pt;}
.y51{bottom:589.440000pt;}
.y19{bottom:591.680000pt;}
.yd9{bottom:603.200000pt;}
.y50{bottom:606.720000pt;}
.y18{bottom:608.640000pt;}
.y8c{bottom:609.920000pt;}
.yd8{bottom:620.480000pt;}
.y4f{bottom:623.680000pt;}
.y17{bottom:625.920000pt;}
.y8b{bottom:626.880000pt;}
.yd7{bottom:637.440000pt;}
.y4e{bottom:640.640000pt;}
.y16{bottom:642.880000pt;}
.y8a{bottom:644.160000pt;}
.yd6{bottom:654.400000pt;}
.y4d{bottom:657.920000pt;}
.y15{bottom:659.840000pt;}
.y89{bottom:661.120000pt;}
.yd5{bottom:671.680000pt;}
.y4c{bottom:674.880000pt;}
.y14{bottom:677.120000pt;}
.y88{bottom:678.080000pt;}
.yd4{bottom:688.640000pt;}
.y4b{bottom:692.160000pt;}
.y13{bottom:694.080000pt;}
.y87{bottom:695.360000pt;}
.yd3{bottom:705.920000pt;}
.y4a{bottom:709.120000pt;}
.y12{bottom:711.360000pt;}
.y86{bottom:712.320000pt;}
.yd2{bottom:722.880000pt;}
.y49{bottom:726.080000pt;}
.yba{bottom:727.040000pt;}
.y11{bottom:728.320000pt;}
.yd1{bottom:739.840000pt;}
.y48{bottom:743.360000pt;}
.y10{bottom:745.600000pt;}
.yd0{bottom:757.120000pt;}
.y47{bottom:760.320000pt;}
.yf{bottom:762.560000pt;}
.ycf{bottom:774.080000pt;}
.y46{bottom:777.600000pt;}
.ye{bottom:779.520000pt;}
.yce{bottom:791.360000pt;}
.y45{bottom:794.560000pt;}
.yd{bottom:796.800000pt;}
.ycd{bottom:804.000000pt;}
.y106{bottom:808.320000pt;}
.y44{bottom:811.520000pt;}
.yc{bottom:813.760000pt;}
.ycb{bottom:821.333333pt;}
.y105{bottom:825.280000pt;}
.y43{bottom:828.800000pt;}
.yb{bottom:831.040000pt;}
.yca{bottom:840.000000pt;}
.y104{bottom:842.560000pt;}
.y42{bottom:845.760000pt;}
.ya{bottom:848.000000pt;}
.yc9{bottom:857.333333pt;}
.y103{bottom:859.520000pt;}
.y41{bottom:863.040000pt;}
.y9{bottom:865.920000pt;}
.y102{bottom:876.800000pt;}
.y40{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y101{bottom:889.333333pt;}
.y3f{bottom:897.280000pt;}
.y100{bottom:908.000000pt;}
.y7{bottom:911.040000pt;}
.y3e{bottom:914.240000pt;}
.yff{bottom:925.333333pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.yfd{bottom:942.666667pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.y39{bottom:999.680000pt;}
.y38{bottom:1016.640000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h7{height:17.333333pt;}
.h6{height:18.666667pt;}
.hb{height:33.083750pt;}
.h9{height:34.666667pt;}
.h8{height:36.000000pt;}
.hc{height:36.750000pt;}
.h5{height:39.022500pt;}
.h3{height:39.160000pt;}
.h2{height:44.660000pt;}
.hd{height:50.496250pt;}
.h4{height:55.100000pt;}
.ha{height:293.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:178.666667pt;}
.w5{width:193.333333pt;}
.w4{width:218.666667pt;}
.w7{width:272.000000pt;}
.w3{width:424.000000pt;}
.w8{width:632.640000pt;}
.w2{width:642.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xc{left:7.199872pt;}
.x15{left:29.680000pt;}
.x13{left:37.153280pt;}
.x12{left:46.226667pt;}
.x1{left:55.119776pt;}
.xb{left:75.519872pt;}
.x11{left:78.720000pt;}
.x6{left:88.421888pt;}
.x4{left:94.386400pt;}
.x5{left:116.690752pt;}
.x14{left:120.735600pt;}
.x17{left:124.760000pt;}
.x3{left:160.946304pt;}
.xa{left:212.614912pt;}
.x7{left:256.900384pt;}
.xf{left:268.000000pt;}
.x16{left:295.386000pt;}
.x2{left:393.676160pt;}
.xe{left:406.219840pt;}
.x10{left:446.666667pt;}
.xd{left:500.000000pt;}
.x8{left:628.591040pt;}
.x9{left:714.919680pt;}
}




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