
    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_8a1cf55ebc0a010e4c5e1249.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_eedfbd83c916d90f60ab29e2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_a2d3e9fb2e91fa4354afc402.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_63dceeb5af581b52be86c59b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171000;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_3fd5879bb372eba8cb9762de.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_d27ddeeac291fd9b2c830404.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_7e9b7ddd47e6baf1c794ca7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-7.812000px;}
.ls6{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.540000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.990000px;}
.ls0{letter-spacing:8.778000px;}
.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:-42.768000px;}
.ws9{word-spacing:-24.948000px;}
.ws88{word-spacing:-19.338000px;}
.ws2{word-spacing:-18.348000px;}
.wsc{word-spacing:-9.174000px;}
.ws5e{word-spacing:-7.524000px;}
.wse{word-spacing:-6.600000px;}
.ws65{word-spacing:-5.742000px;}
.ws2c{word-spacing:-5.544000px;}
.ws8e{word-spacing:-5.280000px;}
.ws4e{word-spacing:-5.214000px;}
.wsd{word-spacing:-4.818000px;}
.ws8d{word-spacing:-4.290000px;}
.ws2d{word-spacing:-4.092000px;}
.ws53{word-spacing:-3.762000px;}
.ws34{word-spacing:-3.630000px;}
.ws57{word-spacing:-3.432000px;}
.ws89{word-spacing:-3.102000px;}
.ws41{word-spacing:-2.970000px;}
.ws76{word-spacing:-2.772000px;}
.ws61{word-spacing:-2.706000px;}
.ws1a{word-spacing:-2.376000px;}
.ws28{word-spacing:-2.310000px;}
.ws25{word-spacing:-2.112000px;}
.ws4d{word-spacing:-2.046000px;}
.ws6e{word-spacing:-1.944000px;}
.ws19{word-spacing:-1.914000px;}
.ws73{word-spacing:-1.890000px;}
.ws7d{word-spacing:-1.848000px;}
.ws21{word-spacing:-1.782000px;}
.ws6f{word-spacing:-1.728000px;}
.ws54{word-spacing:-1.650000px;}
.ws63{word-spacing:-1.584000px;}
.ws5d{word-spacing:-1.518000px;}
.ws91{word-spacing:-1.386000px;}
.ws56{word-spacing:-1.320000px;}
.ws3c{word-spacing:-1.254000px;}
.ws15{word-spacing:-1.188000px;}
.ws3d{word-spacing:-1.122000px;}
.ws3f{word-spacing:-1.056000px;}
.ws83{word-spacing:-0.990000px;}
.ws3b{word-spacing:-0.924000px;}
.ws35{word-spacing:-0.858000px;}
.ws6c{word-spacing:-0.726000px;}
.ws62{word-spacing:-0.660000px;}
.ws33{word-spacing:-0.594000px;}
.ws84{word-spacing:-0.462000px;}
.ws60{word-spacing:-0.330000px;}
.ws93{word-spacing:-0.198000px;}
.ws47{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws40{word-spacing:0.132000px;}
.ws37{word-spacing:0.396000px;}
.ws24{word-spacing:0.462000px;}
.ws74{word-spacing:0.528000px;}
.ws51{word-spacing:0.540000px;}
.ws50{word-spacing:0.594000px;}
.ws29{word-spacing:0.660000px;}
.ws75{word-spacing:0.792000px;}
.ws8{word-spacing:0.924000px;}
.ws55{word-spacing:0.990000px;}
.ws52{word-spacing:1.080000px;}
.ws92{word-spacing:1.188000px;}
.ws1f{word-spacing:1.254000px;}
.ws3e{word-spacing:1.320000px;}
.ws71{word-spacing:1.386000px;}
.ws22{word-spacing:1.452000px;}
.ws2e{word-spacing:1.584000px;}
.ws8f{word-spacing:1.650000px;}
.ws70{word-spacing:1.716000px;}
.ws45{word-spacing:1.782000px;}
.ws6a{word-spacing:1.836000px;}
.ws27{word-spacing:1.848000px;}
.ws36{word-spacing:1.980000px;}
.wsf{word-spacing:2.112000px;}
.ws11{word-spacing:2.178000px;}
.ws38{word-spacing:2.310000px;}
.ws5b{word-spacing:2.376000px;}
.ws6{word-spacing:2.508000px;}
.ws77{word-spacing:2.538000px;}
.ws2a{word-spacing:2.574000px;}
.ws78{word-spacing:2.592000px;}
.ws46{word-spacing:2.640000px;}
.ws7e{word-spacing:2.706000px;}
.ws72{word-spacing:2.772000px;}
.ws4b{word-spacing:2.838000px;}
.ws30{word-spacing:2.904000px;}
.ws1e{word-spacing:3.168000px;}
.ws6d{word-spacing:3.348000px;}
.ws20{word-spacing:3.360000px;}
.ws68{word-spacing:3.432000px;}
.ws32{word-spacing:3.498000px;}
.ws58{word-spacing:3.630000px;}
.ws1b{word-spacing:3.696000px;}
.ws7f{word-spacing:3.762000px;}
.ws26{word-spacing:3.828000px;}
.ws6b{word-spacing:3.960000px;}
.ws82{word-spacing:4.224000px;}
.ws16{word-spacing:4.290000px;}
.ws64{word-spacing:4.320000px;}
.ws80{word-spacing:4.356000px;}
.ws13{word-spacing:4.422000px;}
.ws81{word-spacing:4.488000px;}
.ws48{word-spacing:4.698000px;}
.ws42{word-spacing:4.884000px;}
.ws3a{word-spacing:5.016000px;}
.ws85{word-spacing:5.346000px;}
.ws4f{word-spacing:5.412000px;}
.ws5c{word-spacing:5.478000px;}
.ws5f{word-spacing:5.610000px;}
.ws12{word-spacing:5.676000px;}
.ws2f{word-spacing:5.742000px;}
.wsa{word-spacing:5.808000px;}
.ws4a{word-spacing:6.006000px;}
.ws43{word-spacing:6.072000px;}
.ws23{word-spacing:6.138000px;}
.ws44{word-spacing:6.204000px;}
.ws31{word-spacing:6.468000px;}
.ws66{word-spacing:6.732000px;}
.ws86{word-spacing:6.996000px;}
.ws59{word-spacing:7.260000px;}
.ws14{word-spacing:7.392000px;}
.ws67{word-spacing:7.458000px;}
.wsb{word-spacing:7.590000px;}
.ws1c{word-spacing:7.656000px;}
.ws0{word-spacing:7.728000px;}
.ws90{word-spacing:8.118000px;}
.ws2b{word-spacing:8.250000px;}
.ws17{word-spacing:8.382000px;}
.ws8b{word-spacing:8.448000px;}
.ws7c{word-spacing:8.646000px;}
.ws69{word-spacing:8.712000px;}
.ws7{word-spacing:8.778000px;}
.ws94{word-spacing:9.108000px;}
.ws10{word-spacing:9.636000px;}
.ws4c{word-spacing:10.098000px;}
.ws5a{word-spacing:10.296000px;}
.ws79{word-spacing:11.088000px;}
.ws39{word-spacing:11.814000px;}
.ws18{word-spacing:12.144000px;}
.ws8c{word-spacing:13.200000px;}
.ws7b{word-spacing:13.266000px;}
.ws1d{word-spacing:13.332000px;}
.ws8a{word-spacing:13.926000px;}
.ws87{word-spacing:15.576000px;}
.ws5{word-spacing:16.830000px;}
.ws4{word-spacing:17.556000px;}
.ws7a{word-spacing:18.546000px;}
.ws49{word-spacing:21.912000px;}
._7{margin-left:-8.514000px;}
._6{margin-left:-7.326000px;}
._0{margin-left:-6.192000px;}
._5{margin-left:-4.849200px;}
._4{margin-left:-3.636600px;}
._3{margin-left:-1.915200px;}
._1{width:2.059200px;}
._2{width:4.204800px;}
._b{width:6.060000px;}
._a{width:7.789200px;}
._9{width:14.785200px;}
._8{width:16.466400px;}
.fc8{color:rgb(12,12,13);}
.fc7{color:rgb(48,50,51);}
.fc6{color:rgb(22,93,167);}
.fc5{color:rgb(35,36,37);}
.fc3{color:rgb(111,144,202);}
.fc2{color:rgb(46,42,43);}
.fc4{color:rgb(124,153,207);}
.fc1{color:rgb(31,97,171);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:71.467650px;}
.y99{bottom:121.480350px;}
.y84{bottom:121.990650px;}
.yd7{bottom:132.904350px;}
.y16{bottom:133.352550px;}
.y3e{bottom:133.600050px;}
.y1{bottom:136.896000px;}
.y98{bottom:142.484850px;}
.y83{bottom:142.995150px;}
.yd6{bottom:153.908850px;}
.y3d{bottom:154.604550px;}
.y97{bottom:163.489350px;}
.y82{bottom:163.999650px;}
.y3c{bottom:175.609050px;}
.y96{bottom:184.493850px;}
.y81{bottom:185.004150px;}
.yd5{bottom:187.667850px;}
.y95{bottom:205.498350px;}
.y80{bottom:206.008650px;}
.yd4{bottom:208.672350px;}
.y15{bottom:214.769400px;}
.y3b{bottom:217.865850px;}
.y94{bottom:226.502850px;}
.y7f{bottom:227.013150px;}
.yd3{bottom:229.676850px;}
.y14{bottom:235.773900px;}
.y3a{bottom:241.868850px;}
.y13{bottom:256.778400px;}
.y7e{bottom:260.772150px;}
.yd2{bottom:263.435850px;}
.y12{bottom:277.782900px;}
.y7d{bottom:281.776650px;}
.yd1{bottom:284.440350px;}
.y39{bottom:291.320550px;}
.yef{bottom:293.577600px;}
.y11{bottom:298.787400px;}
.y7c{bottom:302.781150px;}
.yd0{bottom:305.444850px;}
.y38{bottom:312.325050px;}
.yee{bottom:314.582100px;}
.y7b{bottom:323.785650px;}
.y37{bottom:333.329550px;}
.y7a{bottom:344.790150px;}
.ycf{bottom:347.704800px;}
.yed{bottom:348.341100px;}
.y36{bottom:354.334050px;}
.y79{bottom:365.794650px;}
.yec{bottom:369.345600px;}
.yb2{bottom:379.239450px;}
.y78{bottom:386.799150px;}
.y35{bottom:388.093050px;}
.yce{bottom:397.207500px;}
.yb1{bottom:400.243950px;}
.yeb{bottom:403.104600px;}
.y34{bottom:409.097550px;}
.y10{bottom:412.752900px;}
.ycd{bottom:418.212000px;}
.yb0{bottom:421.248450px;}
.yea{bottom:424.109100px;}
.y5b{bottom:429.950100px;}
.y33{bottom:430.102050px;}
.yf{bottom:433.757400px;}
.ycc{bottom:439.216500px;}
.yaf{bottom:442.252950px;}
.ye9{bottom:445.113600px;}
.y5a{bottom:450.954600px;}
.y32{bottom:451.106550px;}
.ye{bottom:454.761900px;}
.yae{bottom:463.257450px;}
.y59{bottom:471.959100px;}
.y31{bottom:472.111050px;}
.ycb{bottom:477.224400px;}
.ye8{bottom:478.872600px;}
.yad{bottom:484.261950px;}
.yd{bottom:484.263900px;}
.y58{bottom:492.963600px;}
.ye7{bottom:499.877100px;}
.yc{bottom:505.268400px;}
.y30{bottom:505.870050px;}
.ya2{bottom:511.012500px;}
.y57{bottom:513.968100px;}
.yac{bottom:518.020950px;}
.ye6{bottom:520.881600px;}
.yb{bottom:526.272900px;}
.yca{bottom:526.654950px;}
.y2f{bottom:526.874550px;}
.ya1{bottom:527.509500px;}
.y64{bottom:532.070100px;}
.yab{bottom:539.025450px;}
.yc9{bottom:547.659450px;}
.y56{bottom:547.727100px;}
.y2e{bottom:547.879050px;}
.ya0{bottom:548.259000px;}
.y63{bottom:548.567100px;}
.ye5{bottom:554.640600px;}
.ya{bottom:555.774900px;}
.yaa{bottom:560.029950px;}
.yc8{bottom:568.663950px;}
.y55{bottom:568.731600px;}
.y2d{bottom:568.883550px;}
.ye4{bottom:575.645100px;}
.y9{bottom:576.779400px;}
.ya9{bottom:581.034450px;}
.y62{bottom:582.057000px;}
.y9f{bottom:585.191550px;}
.yb5{bottom:586.429200px;}
.yc7{bottom:589.668450px;}
.y54{bottom:589.736100px;}
.y2c{bottom:589.888050px;}
.y89{bottom:594.678750px;}
.ye3{bottom:596.649600px;}
.y8{bottom:597.783900px;}
.yb4{bottom:602.926200px;}
.y61{bottom:603.061500px;}
.y9e{bottom:606.196050px;}
.yc6{bottom:610.672950px;}
.y2b{bottom:610.892550px;}
.y88{bottom:611.175750px;}
.yb3{bottom:619.423200px;}
.y60{bottom:624.066000px;}
.y7{bottom:627.285900px;}
.ye2{bottom:630.408600px;}
.y87{bottom:631.925250px;}
.y53{bottom:631.996050px;}
.y9d{bottom:639.955050px;}
.yc5{bottom:644.431950px;}
.y5f{bottom:645.070500px;}
.y6{bottom:648.290400px;}
.ye1{bottom:651.413100px;}
.y2a{bottom:653.152350px;}
.y9c{bottom:660.959550px;}
.yc4{bottom:665.436450px;}
.y5e{bottom:666.075000px;}
.y5{bottom:669.294900px;}
.y52{bottom:681.426600px;}
.y9b{bottom:681.964050px;}
.ye0{bottom:685.172100px;}
.yc3{bottom:686.440950px;}
.y51{bottom:702.431100px;}
.y9a{bottom:702.968550px;}
.ydf{bottom:706.176600px;}
.yc2{bottom:707.445450px;}
.y93{bottom:711.761250px;}
.y92{bottom:728.258250px;}
.yc1{bottom:728.449950px;}
.y50{bottom:736.190100px;}
.yde{bottom:739.935600px;}
.y72{bottom:741.005850px;}
.y91{bottom:749.007750px;}
.yc0{bottom:749.454450px;}
.y29{bottom:751.840650px;}
.y4f{bottom:757.194600px;}
.y71{bottom:757.502850px;}
.ydd{bottom:760.940100px;}
.ya8{bottom:762.005400px;}
.ybf{bottom:770.458950px;}
.y28{bottom:772.845150px;}
.y70{bottom:773.999850px;}
.y4e{bottom:778.199100px;}
.ya7{bottom:778.502400px;}
.y4{bottom:779.610300px;}
.ydc{bottom:781.944600px;}
.y4d{bottom:799.203600px;}
.ya6{bottom:799.251900px;}
.ybe{bottom:804.217950px;}
.y27{bottom:806.601000px;}
.y6f{bottom:807.453600px;}
.ydb{bottom:815.703600px;}
.y3{bottom:818.598300px;}
.y4c{bottom:820.208100px;}
.ya5{bottom:823.870200px;}
.ybd{bottom:825.222450px;}
.y6e{bottom:828.458100px;}
.yda{bottom:836.708100px;}
.ya4{bottom:840.367200px;}
.y4b{bottom:841.212600px;}
.y8b{bottom:846.014250px;}
.ybc{bottom:846.226950px;}
.y6d{bottom:849.462600px;}
.y8d{bottom:850.517250px;}
.y77{bottom:854.769750px;}
.y26{bottom:856.063350px;}
.y2{bottom:857.586300px;}
.yd9{bottom:857.712600px;}
.ya3{bottom:861.116700px;}
.y90{bottom:862.217100px;}
.y8a{bottom:866.763750px;}
.y8c{bottom:867.014250px;}
.ybb{bottom:867.231450px;}
.y6c{bottom:870.467100px;}
.y76{bottom:871.266750px;}
.y4a{bottom:874.971600px;}
.y25{bottom:877.067850px;}
.y8f{bottom:883.221600px;}
.y75{bottom:887.763750px;}
.y6b{bottom:891.471600px;}
.y49{bottom:895.976100px;}
.y24{bottom:898.072350px;}
.yba{bottom:900.990450px;}
.y8e{bottom:904.226100px;}
.y6a{bottom:912.476100px;}
.y48{bottom:916.980600px;}
.y23{bottom:919.076850px;}
.yb9{bottom:921.994950px;}
.yd8{bottom:933.480600px;}
.y47{bottom:937.985100px;}
.y22{bottom:940.081350px;}
.yb8{bottom:942.999450px;}
.y69{bottom:946.235100px;}
.y46{bottom:958.989600px;}
.y21{bottom:961.085850px;}
.yb7{bottom:964.003950px;}
.y68{bottom:967.239600px;}
.y74{bottom:979.994100px;}
.y20{bottom:982.090350px;}
.y67{bottom:988.244100px;}
.y45{bottom:992.748600px;}
.y73{bottom:1000.998600px;}
.y1f{bottom:1003.094850px;}
.yb6{bottom:1006.263750px;}
.y44{bottom:1013.753100px;}
.y66{bottom:1022.003100px;}
.y1e{bottom:1024.099350px;}
.y43{bottom:1034.757600px;}
.y65{bottom:1043.007600px;}
.y1d{bottom:1045.103850px;}
.y42{bottom:1055.762100px;}
.y1c{bottom:1066.108350px;}
.y41{bottom:1076.766600px;}
.y86{bottom:1084.529100px;}
.y1b{bottom:1087.112850px;}
.y40{bottom:1097.771100px;}
.y85{bottom:1101.026100px;}
.y5d{bottom:1105.278600px;}
.y3f{bottom:1118.775600px;}
.y1a{bottom:1120.868850px;}
.y5c{bottom:1121.775600px;}
.y18{bottom:1180.236150px;}
.y17{bottom:1198.231650px;}
.h6{height:40.500000px;}
.h8{height:40.824000px;}
.h9{height:41.472000px;}
.h4{height:49.896000px;}
.ha{height:50.688000px;}
.h2{height:55.986328px;}
.h5{height:58.278000px;}
.h7{height:63.000000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.x6{left:126.858150px;}
.x2{left:138.139500px;}
.x3{left:250.099500px;}
.x7{left:331.345200px;}
.x8{left:364.406700px;}
.x4{left:457.063500px;}
.x1{left:816.378000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-6.944000pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.880000pt;}
.ls0{letter-spacing:7.802667pt;}
.ws1{word-spacing:-38.016000pt;}
.ws9{word-spacing:-22.176000pt;}
.ws88{word-spacing:-17.189333pt;}
.ws2{word-spacing:-16.309333pt;}
.wsc{word-spacing:-8.154667pt;}
.ws5e{word-spacing:-6.688000pt;}
.wse{word-spacing:-5.866667pt;}
.ws65{word-spacing:-5.104000pt;}
.ws2c{word-spacing:-4.928000pt;}
.ws8e{word-spacing:-4.693333pt;}
.ws4e{word-spacing:-4.634667pt;}
.wsd{word-spacing:-4.282667pt;}
.ws8d{word-spacing:-3.813333pt;}
.ws2d{word-spacing:-3.637333pt;}
.ws53{word-spacing:-3.344000pt;}
.ws34{word-spacing:-3.226667pt;}
.ws57{word-spacing:-3.050667pt;}
.ws89{word-spacing:-2.757333pt;}
.ws41{word-spacing:-2.640000pt;}
.ws76{word-spacing:-2.464000pt;}
.ws61{word-spacing:-2.405333pt;}
.ws1a{word-spacing:-2.112000pt;}
.ws28{word-spacing:-2.053333pt;}
.ws25{word-spacing:-1.877333pt;}
.ws4d{word-spacing:-1.818667pt;}
.ws6e{word-spacing:-1.728000pt;}
.ws19{word-spacing:-1.701333pt;}
.ws73{word-spacing:-1.680000pt;}
.ws7d{word-spacing:-1.642667pt;}
.ws21{word-spacing:-1.584000pt;}
.ws6f{word-spacing:-1.536000pt;}
.ws54{word-spacing:-1.466667pt;}
.ws63{word-spacing:-1.408000pt;}
.ws5d{word-spacing:-1.349333pt;}
.ws91{word-spacing:-1.232000pt;}
.ws56{word-spacing:-1.173333pt;}
.ws3c{word-spacing:-1.114667pt;}
.ws15{word-spacing:-1.056000pt;}
.ws3d{word-spacing:-0.997333pt;}
.ws3f{word-spacing:-0.938667pt;}
.ws83{word-spacing:-0.880000pt;}
.ws3b{word-spacing:-0.821333pt;}
.ws35{word-spacing:-0.762667pt;}
.ws6c{word-spacing:-0.645333pt;}
.ws62{word-spacing:-0.586667pt;}
.ws33{word-spacing:-0.528000pt;}
.ws84{word-spacing:-0.410667pt;}
.ws60{word-spacing:-0.293333pt;}
.ws93{word-spacing:-0.176000pt;}
.ws47{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws40{word-spacing:0.117333pt;}
.ws37{word-spacing:0.352000pt;}
.ws24{word-spacing:0.410667pt;}
.ws74{word-spacing:0.469333pt;}
.ws51{word-spacing:0.480000pt;}
.ws50{word-spacing:0.528000pt;}
.ws29{word-spacing:0.586667pt;}
.ws75{word-spacing:0.704000pt;}
.ws8{word-spacing:0.821333pt;}
.ws55{word-spacing:0.880000pt;}
.ws52{word-spacing:0.960000pt;}
.ws92{word-spacing:1.056000pt;}
.ws1f{word-spacing:1.114667pt;}
.ws3e{word-spacing:1.173333pt;}
.ws71{word-spacing:1.232000pt;}
.ws22{word-spacing:1.290667pt;}
.ws2e{word-spacing:1.408000pt;}
.ws8f{word-spacing:1.466667pt;}
.ws70{word-spacing:1.525333pt;}
.ws45{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.632000pt;}
.ws27{word-spacing:1.642667pt;}
.ws36{word-spacing:1.760000pt;}
.wsf{word-spacing:1.877333pt;}
.ws11{word-spacing:1.936000pt;}
.ws38{word-spacing:2.053333pt;}
.ws5b{word-spacing:2.112000pt;}
.ws6{word-spacing:2.229333pt;}
.ws77{word-spacing:2.256000pt;}
.ws2a{word-spacing:2.288000pt;}
.ws78{word-spacing:2.304000pt;}
.ws46{word-spacing:2.346667pt;}
.ws7e{word-spacing:2.405333pt;}
.ws72{word-spacing:2.464000pt;}
.ws4b{word-spacing:2.522667pt;}
.ws30{word-spacing:2.581333pt;}
.ws1e{word-spacing:2.816000pt;}
.ws6d{word-spacing:2.976000pt;}
.ws20{word-spacing:2.986667pt;}
.ws68{word-spacing:3.050667pt;}
.ws32{word-spacing:3.109333pt;}
.ws58{word-spacing:3.226667pt;}
.ws1b{word-spacing:3.285333pt;}
.ws7f{word-spacing:3.344000pt;}
.ws26{word-spacing:3.402667pt;}
.ws6b{word-spacing:3.520000pt;}
.ws82{word-spacing:3.754667pt;}
.ws16{word-spacing:3.813333pt;}
.ws64{word-spacing:3.840000pt;}
.ws80{word-spacing:3.872000pt;}
.ws13{word-spacing:3.930667pt;}
.ws81{word-spacing:3.989333pt;}
.ws48{word-spacing:4.176000pt;}
.ws42{word-spacing:4.341333pt;}
.ws3a{word-spacing:4.458667pt;}
.ws85{word-spacing:4.752000pt;}
.ws4f{word-spacing:4.810667pt;}
.ws5c{word-spacing:4.869333pt;}
.ws5f{word-spacing:4.986667pt;}
.ws12{word-spacing:5.045333pt;}
.ws2f{word-spacing:5.104000pt;}
.wsa{word-spacing:5.162667pt;}
.ws4a{word-spacing:5.338667pt;}
.ws43{word-spacing:5.397333pt;}
.ws23{word-spacing:5.456000pt;}
.ws44{word-spacing:5.514667pt;}
.ws31{word-spacing:5.749333pt;}
.ws66{word-spacing:5.984000pt;}
.ws86{word-spacing:6.218667pt;}
.ws59{word-spacing:6.453333pt;}
.ws14{word-spacing:6.570667pt;}
.ws67{word-spacing:6.629333pt;}
.wsb{word-spacing:6.746667pt;}
.ws1c{word-spacing:6.805333pt;}
.ws0{word-spacing:6.869333pt;}
.ws90{word-spacing:7.216000pt;}
.ws2b{word-spacing:7.333333pt;}
.ws17{word-spacing:7.450667pt;}
.ws8b{word-spacing:7.509333pt;}
.ws7c{word-spacing:7.685333pt;}
.ws69{word-spacing:7.744000pt;}
.ws7{word-spacing:7.802667pt;}
.ws94{word-spacing:8.096000pt;}
.ws10{word-spacing:8.565333pt;}
.ws4c{word-spacing:8.976000pt;}
.ws5a{word-spacing:9.152000pt;}
.ws79{word-spacing:9.856000pt;}
.ws39{word-spacing:10.501333pt;}
.ws18{word-spacing:10.794667pt;}
.ws8c{word-spacing:11.733333pt;}
.ws7b{word-spacing:11.792000pt;}
.ws1d{word-spacing:11.850667pt;}
.ws8a{word-spacing:12.378667pt;}
.ws87{word-spacing:13.845333pt;}
.ws5{word-spacing:14.960000pt;}
.ws4{word-spacing:15.605333pt;}
.ws7a{word-spacing:16.485333pt;}
.ws49{word-spacing:19.477333pt;}
._7{margin-left:-7.568000pt;}
._6{margin-left:-6.512000pt;}
._0{margin-left:-5.504000pt;}
._5{margin-left:-4.310400pt;}
._4{margin-left:-3.232533pt;}
._3{margin-left:-1.702400pt;}
._1{width:1.830400pt;}
._2{width:3.737600pt;}
._b{width:5.386667pt;}
._a{width:6.923733pt;}
._9{width:13.142400pt;}
._8{width:14.636800pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:63.526800pt;}
.y99{bottom:107.982533pt;}
.y84{bottom:108.436133pt;}
.yd7{bottom:118.137200pt;}
.y16{bottom:118.535600pt;}
.y3e{bottom:118.755600pt;}
.y1{bottom:121.685333pt;}
.y98{bottom:126.653200pt;}
.y83{bottom:127.106800pt;}
.yd6{bottom:136.807867pt;}
.y3d{bottom:137.426267pt;}
.y97{bottom:145.323867pt;}
.y82{bottom:145.777467pt;}
.y3c{bottom:156.096933pt;}
.y96{bottom:163.994533pt;}
.y81{bottom:164.448133pt;}
.yd5{bottom:166.815867pt;}
.y95{bottom:182.665200pt;}
.y80{bottom:183.118800pt;}
.yd4{bottom:185.486533pt;}
.y15{bottom:190.906133pt;}
.y3b{bottom:193.658533pt;}
.y94{bottom:201.335867pt;}
.y7f{bottom:201.789467pt;}
.yd3{bottom:204.157200pt;}
.y14{bottom:209.576800pt;}
.y3a{bottom:214.994533pt;}
.y13{bottom:228.247467pt;}
.y7e{bottom:231.797467pt;}
.yd2{bottom:234.165200pt;}
.y12{bottom:246.918133pt;}
.y7d{bottom:250.468133pt;}
.yd1{bottom:252.835867pt;}
.y39{bottom:258.951600pt;}
.yef{bottom:260.957867pt;}
.y11{bottom:265.588800pt;}
.y7c{bottom:269.138800pt;}
.yd0{bottom:271.506533pt;}
.y38{bottom:277.622267pt;}
.yee{bottom:279.628533pt;}
.y7b{bottom:287.809467pt;}
.y37{bottom:296.292933pt;}
.y7a{bottom:306.480133pt;}
.ycf{bottom:309.070933pt;}
.yed{bottom:309.636533pt;}
.y36{bottom:314.963600pt;}
.y79{bottom:325.150800pt;}
.yec{bottom:328.307200pt;}
.yb2{bottom:337.101733pt;}
.y78{bottom:343.821467pt;}
.y35{bottom:344.971600pt;}
.yce{bottom:353.073333pt;}
.yb1{bottom:355.772400pt;}
.yeb{bottom:358.315200pt;}
.y34{bottom:363.642267pt;}
.y10{bottom:366.891467pt;}
.ycd{bottom:371.744000pt;}
.yb0{bottom:374.443067pt;}
.yea{bottom:376.985867pt;}
.y5b{bottom:382.177867pt;}
.y33{bottom:382.312933pt;}
.yf{bottom:385.562133pt;}
.ycc{bottom:390.414667pt;}
.yaf{bottom:393.113733pt;}
.ye9{bottom:395.656533pt;}
.y5a{bottom:400.848533pt;}
.y32{bottom:400.983600pt;}
.ye{bottom:404.232800pt;}
.yae{bottom:411.784400pt;}
.y59{bottom:419.519200pt;}
.y31{bottom:419.654267pt;}
.ycb{bottom:424.199467pt;}
.ye8{bottom:425.664533pt;}
.yad{bottom:430.455067pt;}
.yd{bottom:430.456800pt;}
.y58{bottom:438.189867pt;}
.ye7{bottom:444.335200pt;}
.yc{bottom:449.127467pt;}
.y30{bottom:449.662267pt;}
.ya2{bottom:454.233333pt;}
.y57{bottom:456.860533pt;}
.yac{bottom:460.463067pt;}
.ye6{bottom:463.005867pt;}
.yb{bottom:467.798133pt;}
.yca{bottom:468.137733pt;}
.y2f{bottom:468.332933pt;}
.ya1{bottom:468.897333pt;}
.y64{bottom:472.951200pt;}
.yab{bottom:479.133733pt;}
.yc9{bottom:486.808400pt;}
.y56{bottom:486.868533pt;}
.y2e{bottom:487.003600pt;}
.ya0{bottom:487.341333pt;}
.y63{bottom:487.615200pt;}
.ye5{bottom:493.013867pt;}
.ya{bottom:494.022133pt;}
.yaa{bottom:497.804400pt;}
.yc8{bottom:505.479067pt;}
.y55{bottom:505.539200pt;}
.y2d{bottom:505.674267pt;}
.ye4{bottom:511.684533pt;}
.y9{bottom:512.692800pt;}
.ya9{bottom:516.475067pt;}
.y62{bottom:517.384000pt;}
.y9f{bottom:520.170267pt;}
.yb5{bottom:521.270400pt;}
.yc7{bottom:524.149733pt;}
.y54{bottom:524.209867pt;}
.y2c{bottom:524.344933pt;}
.y89{bottom:528.603333pt;}
.ye3{bottom:530.355200pt;}
.y8{bottom:531.363467pt;}
.yb4{bottom:535.934400pt;}
.y61{bottom:536.054667pt;}
.y9e{bottom:538.840933pt;}
.yc6{bottom:542.820400pt;}
.y2b{bottom:543.015600pt;}
.y88{bottom:543.267333pt;}
.yb3{bottom:550.598400pt;}
.y60{bottom:554.725333pt;}
.y7{bottom:557.587467pt;}
.ye2{bottom:560.363200pt;}
.y87{bottom:561.711333pt;}
.y53{bottom:561.774267pt;}
.y9d{bottom:568.848933pt;}
.yc5{bottom:572.828400pt;}
.y5f{bottom:573.396000pt;}
.y6{bottom:576.258133pt;}
.ye1{bottom:579.033867pt;}
.y2a{bottom:580.579867pt;}
.y9c{bottom:587.519600pt;}
.yc4{bottom:591.499067pt;}
.y5e{bottom:592.066667pt;}
.y5{bottom:594.928800pt;}
.y52{bottom:605.712533pt;}
.y9b{bottom:606.190267pt;}
.ye0{bottom:609.041867pt;}
.yc3{bottom:610.169733pt;}
.y51{bottom:624.383200pt;}
.y9a{bottom:624.860933pt;}
.ydf{bottom:627.712533pt;}
.yc2{bottom:628.840400pt;}
.y93{bottom:632.676667pt;}
.y92{bottom:647.340667pt;}
.yc1{bottom:647.511067pt;}
.y50{bottom:654.391200pt;}
.yde{bottom:657.720533pt;}
.y72{bottom:658.671867pt;}
.y91{bottom:665.784667pt;}
.yc0{bottom:666.181733pt;}
.y29{bottom:668.302800pt;}
.y4f{bottom:673.061867pt;}
.y71{bottom:673.335867pt;}
.ydd{bottom:676.391200pt;}
.ya8{bottom:677.338133pt;}
.ybf{bottom:684.852400pt;}
.y28{bottom:686.973467pt;}
.y70{bottom:687.999867pt;}
.y4e{bottom:691.732533pt;}
.ya7{bottom:692.002133pt;}
.y4{bottom:692.986933pt;}
.ydc{bottom:695.061867pt;}
.y4d{bottom:710.403200pt;}
.ya6{bottom:710.446133pt;}
.ybe{bottom:714.860400pt;}
.y27{bottom:716.978667pt;}
.y6f{bottom:717.736533pt;}
.ydb{bottom:725.069867pt;}
.y3{bottom:727.642933pt;}
.y4c{bottom:729.073867pt;}
.ya5{bottom:732.329067pt;}
.ybd{bottom:733.531067pt;}
.y6e{bottom:736.407200pt;}
.yda{bottom:743.740533pt;}
.ya4{bottom:746.993067pt;}
.y4b{bottom:747.744533pt;}
.y8b{bottom:752.012667pt;}
.ybc{bottom:752.201733pt;}
.y6d{bottom:755.077867pt;}
.y8d{bottom:756.015333pt;}
.y77{bottom:759.795333pt;}
.y26{bottom:760.945200pt;}
.y2{bottom:762.298933pt;}
.yd9{bottom:762.411200pt;}
.ya3{bottom:765.437067pt;}
.y90{bottom:766.415200pt;}
.y8a{bottom:770.456667pt;}
.y8c{bottom:770.679333pt;}
.ybb{bottom:770.872400pt;}
.y6c{bottom:773.748533pt;}
.y76{bottom:774.459333pt;}
.y4a{bottom:777.752533pt;}
.y25{bottom:779.615867pt;}
.y8f{bottom:785.085867pt;}
.y75{bottom:789.123333pt;}
.y6b{bottom:792.419200pt;}
.y49{bottom:796.423200pt;}
.y24{bottom:798.286533pt;}
.yba{bottom:800.880400pt;}
.y8e{bottom:803.756533pt;}
.y6a{bottom:811.089867pt;}
.y48{bottom:815.093867pt;}
.y23{bottom:816.957200pt;}
.yb9{bottom:819.551067pt;}
.yd8{bottom:829.760533pt;}
.y47{bottom:833.764533pt;}
.y22{bottom:835.627867pt;}
.yb8{bottom:838.221733pt;}
.y69{bottom:841.097867pt;}
.y46{bottom:852.435200pt;}
.y21{bottom:854.298533pt;}
.yb7{bottom:856.892400pt;}
.y68{bottom:859.768533pt;}
.y74{bottom:871.105867pt;}
.y20{bottom:872.969200pt;}
.y67{bottom:878.439200pt;}
.y45{bottom:882.443200pt;}
.y73{bottom:889.776533pt;}
.y1f{bottom:891.639867pt;}
.yb6{bottom:894.456667pt;}
.y44{bottom:901.113867pt;}
.y66{bottom:908.447200pt;}
.y1e{bottom:910.310533pt;}
.y43{bottom:919.784533pt;}
.y65{bottom:927.117867pt;}
.y1d{bottom:928.981200pt;}
.y42{bottom:938.455200pt;}
.y1c{bottom:947.651867pt;}
.y41{bottom:957.125867pt;}
.y86{bottom:964.025867pt;}
.y1b{bottom:966.322533pt;}
.y40{bottom:975.796533pt;}
.y85{bottom:978.689867pt;}
.y5d{bottom:982.469867pt;}
.y3f{bottom:994.467200pt;}
.y1a{bottom:996.327867pt;}
.y5c{bottom:997.133867pt;}
.y18{bottom:1049.098800pt;}
.y17{bottom:1065.094800pt;}
.h6{height:36.000000pt;}
.h8{height:36.288000pt;}
.h9{height:36.864000pt;}
.h4{height:44.352000pt;}
.ha{height:45.056000pt;}
.h2{height:49.765625pt;}
.h5{height:51.802667pt;}
.h7{height:56.000000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.x6{left:112.762800pt;}
.x2{left:122.790667pt;}
.x3{left:222.310667pt;}
.x7{left:294.529067pt;}
.x8{left:323.917067pt;}
.x4{left:406.278667pt;}
.x1{left:725.669333pt;}
}




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