
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_891a167bd86304e6c970bf9b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_429a2413ad97b7698bd19740.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_fc7b399f772ebba93d71eae8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0b2795752ed9535b733c2457.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_bc53b1b0da691dc40475503f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_7bd10d63569f0a90eae74ed2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.013320px;}
.lsf{letter-spacing:-0.011160px;}
.ls1a{letter-spacing:-0.009000px;}
.lsc{letter-spacing:-0.007800px;}
.ls11{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls15{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.174600px;}
.ls14{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206640px;}
.ls13{letter-spacing:0.275400px;}
.ls19{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.218840px;}
.ws5{word-spacing:-13.218600px;}
.wse{word-spacing:-13.217400px;}
.wsb{word-spacing:-13.213080px;}
.wsf{word-spacing:-13.187520px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._8{margin-left:-3.586799px;}
._7{margin-left:-2.344800px;}
._0{margin-left:-1.032000px;}
._1{width:1.270008px;}
._2{width:2.524800px;}
._4{width:3.702360px;}
._3{width:4.809600px;}
._5{width:6.493200px;}
._6{width:7.513798px;}
._a{width:8.656799px;}
._b{width:10.281602px;}
._e{width:11.893440px;}
._9{width:14.871240px;}
._f{width:15.910200px;}
._d{width:17.425201px;}
._c{width:18.767400px;}
._12{width:19.879800px;}
._13{width:21.246120px;}
._11{width:22.725360px;}
._10{width:24.709320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y64{bottom:113.610000px;}
.yce{bottom:116.580000px;}
.yf6{bottom:117.570000px;}
.y45{bottom:121.530000px;}
.y161{bottom:124.680000px;}
.y175{bottom:125.130000px;}
.ya7{bottom:129.720000px;}
.y2a{bottom:130.080000px;}
.y63{bottom:131.160000px;}
.ycd{bottom:134.130000px;}
.yf5{bottom:135.120000px;}
.y44{bottom:139.080000px;}
.y160{bottom:142.320000px;}
.y174{bottom:142.680000px;}
.y140{bottom:143.130000px;}
.ya6{bottom:147.360000px;}
.y29{bottom:147.630000px;}
.y62{bottom:148.800000px;}
.ycc{bottom:151.680000px;}
.y8b{bottom:152.130000px;}
.yf4{bottom:152.670000px;}
.y43{bottom:156.720000px;}
.y121{bottom:157.890000px;}
.y173{bottom:160.320000px;}
.y13f{bottom:160.680000px;}
.ya5{bottom:164.910000px;}
.y28{bottom:165.270000px;}
.y15f{bottom:168.870000px;}
.ycb{bottom:169.320000px;}
.y8a{bottom:169.680000px;}
.y120{bottom:175.440000px;}
.yf3{bottom:179.580000px;}
.ya4{bottom:182.550000px;}
.y27{bottom:182.820000px;}
.y42{bottom:183.270000px;}
.y61{bottom:184.350000px;}
.y15e{bottom:186.510000px;}
.yca{bottom:186.870000px;}
.y89{bottom:187.320000px;}
.ya3{bottom:200.100000px;}
.y26{bottom:200.370000px;}
.y60{bottom:201.900000px;}
.y11f{bottom:202.080000px;}
.y15d{bottom:204.060000px;}
.y172{bottom:204.510000px;}
.y88{bottom:204.870000px;}
.yc9{bottom:213.510000px;}
.y25{bottom:218.010000px;}
.y41{bottom:218.910000px;}
.y5f{bottom:219.540000px;}
.y11e{bottom:219.630000px;}
.y13e{bottom:222.510000px;}
.yf2{bottom:227.910000px;}
.y15c{bottom:230.610000px;}
.y171{bottom:231.060000px;}
.y87{bottom:231.510000px;}
.y24{bottom:235.560000px;}
.ya2{bottom:235.650000px;}
.y5e{bottom:237.090000px;}
.y11d{bottom:237.180000px;}
.yf1{bottom:245.460000px;}
.y15b{bottom:248.250000px;}
.y170{bottom:248.610000px;}
.yc8{bottom:249.060000px;}
.y40{bottom:251.130000px;}
.y23{bottom:253.200000px;}
.ya1{bottom:253.290000px;}
.y5d{bottom:254.730000px;}
.y11c{bottom:254.820000px;}
.yf0{bottom:263.100000px;}
.yc7{bottom:266.610000px;}
.y86{bottom:267.060000px;}
.y22{bottom:270.750000px;}
.y15a{bottom:274.800000px;}
.y16f{bottom:275.250000px;}
.ya0{bottom:279.840000px;}
.yef{bottom:280.650000px;}
.y5c{bottom:281.280000px;}
.y11b{bottom:281.370000px;}
.yc6{bottom:284.250000px;}
.y85{bottom:284.610000px;}
.y21{bottom:288.300000px;}
.y159{bottom:292.440000px;}
.y16e{bottom:292.800000px;}
.y13d{bottom:293.250000px;}
.yee{bottom:298.200000px;}
.y11a{bottom:299.010000px;}
.yc5{bottom:301.800000px;}
.y20{bottom:305.940000px;}
.y13c{bottom:310.800000px;}
.y9f{bottom:315.480000px;}
.yed{bottom:315.840000px;}
.y119{bottom:316.560000px;}
.y5b{bottom:316.830000px;}
.y158{bottom:318.990000px;}
.yc4{bottom:319.440000px;}
.y84{bottom:320.250000px;}
.y1f{bottom:323.490000px;}
.y13b{bottom:328.440000px;}
.y9e{bottom:333.030000px;}
.yec{bottom:333.390000px;}
.y157{bottom:336.540000px;}
.yc3{bottom:336.990000px;}
.y83{bottom:337.800000px;}
.y1e{bottom:341.130000px;}
.y118{bottom:343.110000px;}
.y5a{bottom:349.050000px;}
.y9d{bottom:350.580000px;}
.yeb{bottom:350.940000px;}
.yc2{bottom:354.540000px;}
.y13a{bottom:354.990000px;}
.y82{bottom:355.440000px;}
.y1d{bottom:358.680000px;}
.y117{bottom:360.750000px;}
.y156{bottom:363.180000px;}
.y16d{bottom:363.540000px;}
.y9c{bottom:368.220000px;}
.yea{bottom:368.580000px;}
.yc1{bottom:372.180000px;}
.y139{bottom:372.540000px;}
.y81{bottom:372.990000px;}
.y1c{bottom:376.230000px;}
.y116{bottom:378.300000px;}
.y155{bottom:380.730000px;}
.y16c{bottom:381.180000px;}
.y9b{bottom:385.770000px;}
.y80{bottom:390.540000px;}
.ye9{bottom:395.130000px;}
.y16b{bottom:398.730000px;}
.y138{bottom:399.180000px;}
.y1b{bottom:403.140000px;}
.y9a{bottom:403.410000px;}
.y115{bottom:404.940000px;}
.y154{bottom:407.370000px;}
.yc0{bottom:407.730000px;}
.y7f{bottom:408.180000px;}
.y137{bottom:416.730000px;}
.y99{bottom:420.960000px;}
.y114{bottom:422.490000px;}
.y153{bottom:424.920000px;}
.ybf{bottom:425.370000px;}
.ye8{bottom:430.770000px;}
.y136{bottom:434.370000px;}
.y7e{bottom:434.730000px;}
.y98{bottom:438.510000px;}
.ybe{bottom:442.920000px;}
.ye7{bottom:448.320000px;}
.y113{bottom:449.040000px;}
.y152{bottom:451.470000px;}
.y1a{bottom:451.740000px;}
.y97{bottom:456.150000px;}
.ybd{bottom:460.470000px;}
.y135{bottom:460.920000px;}
.ye6{bottom:465.870000px;}
.y151{bottom:469.110000px;}
.y16a{bottom:469.470000px;}
.y7d{bottom:470.400000px;}
.y96{bottom:473.730000px;}
.y112{bottom:475.710000px;}
.ybc{bottom:478.140000px;}
.y134{bottom:478.500000px;}
.ye5{bottom:483.540000px;}
.y169{bottom:487.140000px;}
.y7c{bottom:487.950000px;}
.y19{bottom:488.850000px;}
.y95{bottom:491.280000px;}
.y150{bottom:495.690000px;}
.ye4{bottom:501.090000px;}
.y111{bottom:502.260000px;}
.y133{bottom:505.140000px;}
.y7b{bottom:505.500000px;}
.y18{bottom:506.400000px;}
.y94{bottom:508.920000px;}
.y14f{bottom:513.330000px;}
.ybb{bottom:513.690000px;}
.ye3{bottom:518.730000px;}
.y110{bottom:519.900000px;}
.y132{bottom:522.690000px;}
.y7a{bottom:523.140000px;}
.y17{bottom:523.950000px;}
.y93{bottom:526.470000px;}
.yba{bottom:531.330000px;}
.ye2{bottom:536.280000px;}
.y14e{bottom:539.880000px;}
.y79{bottom:540.690000px;}
.y16{bottom:541.590000px;}
.y92{bottom:544.110000px;}
.y10f{bottom:546.450000px;}
.yb9{bottom:548.880000px;}
.y131{bottom:549.330000px;}
.ye1{bottom:553.830000px;}
.y14d{bottom:557.430000px;}
.y168{bottom:557.880000px;}
.y78{bottom:558.330000px;}
.y15{bottom:559.140000px;}
.y91{bottom:561.660000px;}
.y10e{bottom:564.000000px;}
.yb8{bottom:566.430000px;}
.y130{bottom:566.880000px;}
.ye0{bottom:571.470000px;}
.y167{bottom:575.430000px;}
.y14{bottom:576.780000px;}
.y14c{bottom:584.070000px;}
.y77{bottom:584.880000px;}
.ydf{bottom:589.020000px;}
.y10d{bottom:590.640000px;}
.y12f{bottom:593.430000px;}
.y13{bottom:594.330000px;}
.y90{bottom:597.210000px;}
.y14b{bottom:601.620000px;}
.yb7{bottom:602.070000px;}
.yde{bottom:606.660000px;}
.y10c{bottom:608.190000px;}
.y12e{bottom:611.070000px;}
.y12{bottom:611.880000px;}
.y8f{bottom:614.850000px;}
.yb6{bottom:619.620000px;}
.y76{bottom:620.430000px;}
.y14a{bottom:628.260000px;}
.y12d{bottom:628.620000px;}
.y11{bottom:629.520000px;}
.ydd{bottom:633.210000px;}
.y10b{bottom:634.830000px;}
.yb5{bottom:637.260000px;}
.y75{bottom:638.070000px;}
.y8e{bottom:641.400000px;}
.y149{bottom:645.810000px;}
.y10{bottom:647.070000px;}
.y10a{bottom:652.380000px;}
.yb4{bottom:654.810000px;}
.y12c{bottom:655.260000px;}
.y74{bottom:655.620000px;}
.y166{bottom:663.810000px;}
.yf{bottom:664.710000px;}
.ydc{bottom:669.120000px;}
.yb3{bottom:672.360000px;}
.y12b{bottom:672.810000px;}
.y73{bottom:673.260000px;}
.y8d{bottom:677.040000px;}
.y109{bottom:678.930000px;}
.y165{bottom:681.360000px;}
.ye{bottom:682.260000px;}
.y59{bottom:690.000000px;}
.y12a{bottom:690.360000px;}
.y72{bottom:690.810000px;}
.y108{bottom:696.570000px;}
.y148{bottom:699.000000px;}
.yd{bottom:699.810000px;}
.y58{bottom:707.550000px;}
.y164{bottom:708.000000px;}
.y71{bottom:708.360000px;}
.y8c{bottom:709.260000px;}
.y147{bottom:716.550000px;}
.y129{bottom:717.000000px;}
.ydb{bottom:717.360000px;}
.yc{bottom:717.450000px;}
.y107{bottom:723.120000px;}
.y3f{bottom:724.740000px;}
.y57{bottom:725.190000px;}
.y163{bottom:725.550000px;}
.y70{bottom:726.000000px;}
.y128{bottom:734.550000px;}
.yb{bottom:735.000000px;}
.y106{bottom:740.670000px;}
.yb2{bottom:742.740000px;}
.y146{bottom:743.190000px;}
.y6f{bottom:743.550000px;}
.y3e{bottom:751.290000px;}
.y56{bottom:751.740000px;}
.y127{bottom:752.190000px;}
.yda{bottom:752.550000px;}
.ya{bottom:752.640000px;}
.yb1{bottom:760.290000px;}
.y145{bottom:760.740000px;}
.y105{bottom:767.310000px;}
.y162{bottom:769.740000px;}
.yd9{bottom:770.190000px;}
.yb0{bottom:777.930000px;}
.y126{bottom:778.740000px;}
.y6e{bottom:779.190000px;}
.y9{bottom:779.550000px;}
.y3d{bottom:786.930000px;}
.y55{bottom:787.290000px;}
.yd8{bottom:787.740000px;}
.y104{bottom:793.860000px;}
.y125{bottom:796.290000px;}
.y6d{bottom:796.740000px;}
.y3c{bottom:804.480000px;}
.y54{bottom:804.930000px;}
.yd7{bottom:805.290000px;}
.y103{bottom:811.500000px;}
.y124{bottom:813.930000px;}
.y6c{bottom:814.290000px;}
.y3b{bottom:822.030000px;}
.y53{bottom:822.480000px;}
.yd6{bottom:822.930000px;}
.y8{bottom:827.790000px;}
.y144{bottom:831.480000px;}
.y6b{bottom:831.930000px;}
.y102{bottom:838.050000px;}
.y52{bottom:840.030000px;}
.yd5{bottom:840.480000px;}
.y143{bottom:849.030000px;}
.y6a{bottom:849.480000px;}
.y101{bottom:855.600000px;}
.y3a{bottom:857.670000px;}
.yd4{bottom:858.030000px;}
.y7{bottom:863.610000px;}
.y51{bottom:866.670000px;}
.y69{bottom:867.030000px;}
.y39{bottom:875.220000px;}
.y123{bottom:875.670000px;}
.y100{bottom:882.240000px;}
.y68{bottom:884.670000px;}
.y38{bottom:892.860000px;}
.y142{bottom:893.220000px;}
.yd3{bottom:893.670000px;}
.y6{bottom:899.610000px;}
.yff{bottom:899.790000px;}
.y50{bottom:902.220000px;}
.y37{bottom:910.410000px;}
.y141{bottom:910.860000px;}
.yd2{bottom:911.220000px;}
.y4f{bottom:919.860000px;}
.yfe{bottom:926.430000px;}
.yd1{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.y36{bottom:936.960000px;}
.y4e{bottom:937.410000px;}
.yfd{bottom:943.980000px;}
.yaf{bottom:945.960000px;}
.yd0{bottom:946.410000px;}
.y4d{bottom:954.960000px;}
.yae{bottom:963.600000px;}
.y67{bottom:963.960000px;}
.yfc{bottom:970.530000px;}
.y4{bottom:971.700000px;}
.y35{bottom:972.600000px;}
.yad{bottom:981.150000px;}
.ycf{bottom:981.600000px;}
.yfb{bottom:988.170000px;}
.y34{bottom:990.150000px;}
.yac{bottom:998.790000px;}
.y4c{bottom:999.150000px;}
.y66{bottom:999.600000px;}
.y3{bottom:1009.980000px;}
.yfa{bottom:1015.110000px;}
.y122{bottom:1016.820000px;}
.y65{bottom:1017.180000px;}
.y33{bottom:1025.820000px;}
.yab{bottom:1034.370000px;}
.y4b{bottom:1034.820000px;}
.y32{bottom:1043.370000px;}
.yaa{bottom:1051.920000px;}
.y4a{bottom:1052.370000px;}
.y31{bottom:1060.920000px;}
.yf9{bottom:1063.350000px;}
.ya9{bottom:1069.560000px;}
.y49{bottom:1069.920000px;}
.y30{bottom:1078.560000px;}
.ya8{bottom:1087.110000px;}
.y48{bottom:1087.560000px;}
.yf8{bottom:1090.260000px;}
.y2f{bottom:1096.110000px;}
.y47{bottom:1105.110000px;}
.y2e{bottom:1113.750000px;}
.y46{bottom:1122.750000px;}
.yf7{bottom:1127.610000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x9{left:111.239987px;}
.x2{left:192.719987px;}
.x8{left:310.529987px;}
.x5{left:343.559987px;}
.x4{left:642.389987px;}
.x7{left:693.059987px;}
.x6{left:720.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.011840pt;}
.lsf{letter-spacing:-0.009920pt;}
.ls1a{letter-spacing:-0.008000pt;}
.lsc{letter-spacing:-0.006933pt;}
.ls11{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls15{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.155200pt;}
.ls14{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183680pt;}
.ls13{letter-spacing:0.244800pt;}
.ls19{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.750080pt;}
.ws5{word-spacing:-11.749867pt;}
.wse{word-spacing:-11.748800pt;}
.wsb{word-spacing:-11.744960pt;}
.wsf{word-spacing:-11.722240pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._8{margin-left:-3.188266pt;}
._7{margin-left:-2.084267pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.128896pt;}
._2{width:2.244266pt;}
._4{width:3.290987pt;}
._3{width:4.275200pt;}
._5{width:5.771734pt;}
._6{width:6.678931pt;}
._a{width:7.694932pt;}
._b{width:9.139202pt;}
._e{width:10.571947pt;}
._9{width:13.218880pt;}
._f{width:14.142400pt;}
._d{width:15.489067pt;}
._c{width:16.682133pt;}
._12{width:17.670933pt;}
._13{width:18.885440pt;}
._11{width:20.200320pt;}
._10{width:21.963840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y64{bottom:100.986667pt;}
.yce{bottom:103.626667pt;}
.yf6{bottom:104.506667pt;}
.y45{bottom:108.026667pt;}
.y161{bottom:110.826667pt;}
.y175{bottom:111.226667pt;}
.ya7{bottom:115.306667pt;}
.y2a{bottom:115.626667pt;}
.y63{bottom:116.586667pt;}
.ycd{bottom:119.226667pt;}
.yf5{bottom:120.106667pt;}
.y44{bottom:123.626667pt;}
.y160{bottom:126.506667pt;}
.y174{bottom:126.826667pt;}
.y140{bottom:127.226667pt;}
.ya6{bottom:130.986667pt;}
.y29{bottom:131.226667pt;}
.y62{bottom:132.266667pt;}
.ycc{bottom:134.826667pt;}
.y8b{bottom:135.226667pt;}
.yf4{bottom:135.706667pt;}
.y43{bottom:139.306667pt;}
.y121{bottom:140.346667pt;}
.y173{bottom:142.506667pt;}
.y13f{bottom:142.826667pt;}
.ya5{bottom:146.586667pt;}
.y28{bottom:146.906667pt;}
.y15f{bottom:150.106667pt;}
.ycb{bottom:150.506667pt;}
.y8a{bottom:150.826667pt;}
.y120{bottom:155.946667pt;}
.yf3{bottom:159.626667pt;}
.ya4{bottom:162.266667pt;}
.y27{bottom:162.506667pt;}
.y42{bottom:162.906667pt;}
.y61{bottom:163.866667pt;}
.y15e{bottom:165.786667pt;}
.yca{bottom:166.106667pt;}
.y89{bottom:166.506667pt;}
.ya3{bottom:177.866667pt;}
.y26{bottom:178.106667pt;}
.y60{bottom:179.466667pt;}
.y11f{bottom:179.626667pt;}
.y15d{bottom:181.386667pt;}
.y172{bottom:181.786667pt;}
.y88{bottom:182.106667pt;}
.yc9{bottom:189.786667pt;}
.y25{bottom:193.786667pt;}
.y41{bottom:194.586667pt;}
.y5f{bottom:195.146667pt;}
.y11e{bottom:195.226667pt;}
.y13e{bottom:197.786667pt;}
.yf2{bottom:202.586667pt;}
.y15c{bottom:204.986667pt;}
.y171{bottom:205.386667pt;}
.y87{bottom:205.786667pt;}
.y24{bottom:209.386667pt;}
.ya2{bottom:209.466667pt;}
.y5e{bottom:210.746667pt;}
.y11d{bottom:210.826667pt;}
.yf1{bottom:218.186667pt;}
.y15b{bottom:220.666667pt;}
.y170{bottom:220.986667pt;}
.yc8{bottom:221.386667pt;}
.y40{bottom:223.226667pt;}
.y23{bottom:225.066667pt;}
.ya1{bottom:225.146667pt;}
.y5d{bottom:226.426667pt;}
.y11c{bottom:226.506667pt;}
.yf0{bottom:233.866667pt;}
.yc7{bottom:236.986667pt;}
.y86{bottom:237.386667pt;}
.y22{bottom:240.666667pt;}
.y15a{bottom:244.266667pt;}
.y16f{bottom:244.666667pt;}
.ya0{bottom:248.746667pt;}
.yef{bottom:249.466667pt;}
.y5c{bottom:250.026667pt;}
.y11b{bottom:250.106667pt;}
.yc6{bottom:252.666667pt;}
.y85{bottom:252.986667pt;}
.y21{bottom:256.266667pt;}
.y159{bottom:259.946667pt;}
.y16e{bottom:260.266667pt;}
.y13d{bottom:260.666667pt;}
.yee{bottom:265.066667pt;}
.y11a{bottom:265.786667pt;}
.yc5{bottom:268.266667pt;}
.y20{bottom:271.946667pt;}
.y13c{bottom:276.266667pt;}
.y9f{bottom:280.426667pt;}
.yed{bottom:280.746667pt;}
.y119{bottom:281.386667pt;}
.y5b{bottom:281.626667pt;}
.y158{bottom:283.546667pt;}
.yc4{bottom:283.946667pt;}
.y84{bottom:284.666667pt;}
.y1f{bottom:287.546667pt;}
.y13b{bottom:291.946667pt;}
.y9e{bottom:296.026667pt;}
.yec{bottom:296.346667pt;}
.y157{bottom:299.146667pt;}
.yc3{bottom:299.546667pt;}
.y83{bottom:300.266667pt;}
.y1e{bottom:303.226667pt;}
.y118{bottom:304.986667pt;}
.y5a{bottom:310.266667pt;}
.y9d{bottom:311.626667pt;}
.yeb{bottom:311.946667pt;}
.yc2{bottom:315.146667pt;}
.y13a{bottom:315.546667pt;}
.y82{bottom:315.946667pt;}
.y1d{bottom:318.826667pt;}
.y117{bottom:320.666667pt;}
.y156{bottom:322.826667pt;}
.y16d{bottom:323.146667pt;}
.y9c{bottom:327.306667pt;}
.yea{bottom:327.626667pt;}
.yc1{bottom:330.826667pt;}
.y139{bottom:331.146667pt;}
.y81{bottom:331.546667pt;}
.y1c{bottom:334.426667pt;}
.y116{bottom:336.266667pt;}
.y155{bottom:338.426667pt;}
.y16c{bottom:338.826667pt;}
.y9b{bottom:342.906667pt;}
.y80{bottom:347.146667pt;}
.ye9{bottom:351.226667pt;}
.y16b{bottom:354.426667pt;}
.y138{bottom:354.826667pt;}
.y1b{bottom:358.346667pt;}
.y9a{bottom:358.586667pt;}
.y115{bottom:359.946667pt;}
.y154{bottom:362.106667pt;}
.yc0{bottom:362.426667pt;}
.y7f{bottom:362.826667pt;}
.y137{bottom:370.426667pt;}
.y99{bottom:374.186667pt;}
.y114{bottom:375.546667pt;}
.y153{bottom:377.706667pt;}
.ybf{bottom:378.106667pt;}
.ye8{bottom:382.906667pt;}
.y136{bottom:386.106667pt;}
.y7e{bottom:386.426667pt;}
.y98{bottom:389.786667pt;}
.ybe{bottom:393.706667pt;}
.ye7{bottom:398.506667pt;}
.y113{bottom:399.146667pt;}
.y152{bottom:401.306667pt;}
.y1a{bottom:401.546667pt;}
.y97{bottom:405.466667pt;}
.ybd{bottom:409.306667pt;}
.y135{bottom:409.706667pt;}
.ye6{bottom:414.106667pt;}
.y151{bottom:416.986667pt;}
.y16a{bottom:417.306667pt;}
.y7d{bottom:418.133333pt;}
.y96{bottom:421.093333pt;}
.y112{bottom:422.853333pt;}
.ybc{bottom:425.013333pt;}
.y134{bottom:425.333333pt;}
.ye5{bottom:429.813333pt;}
.y169{bottom:433.013333pt;}
.y7c{bottom:433.733333pt;}
.y19{bottom:434.533333pt;}
.y95{bottom:436.693333pt;}
.y150{bottom:440.613333pt;}
.ye4{bottom:445.413333pt;}
.y111{bottom:446.453333pt;}
.y133{bottom:449.013333pt;}
.y7b{bottom:449.333333pt;}
.y18{bottom:450.133333pt;}
.y94{bottom:452.373333pt;}
.y14f{bottom:456.293333pt;}
.ybb{bottom:456.613333pt;}
.ye3{bottom:461.093333pt;}
.y110{bottom:462.133333pt;}
.y132{bottom:464.613333pt;}
.y7a{bottom:465.013333pt;}
.y17{bottom:465.733333pt;}
.y93{bottom:467.973333pt;}
.yba{bottom:472.293333pt;}
.ye2{bottom:476.693333pt;}
.y14e{bottom:479.893333pt;}
.y79{bottom:480.613333pt;}
.y16{bottom:481.413333pt;}
.y92{bottom:483.653333pt;}
.y10f{bottom:485.733333pt;}
.yb9{bottom:487.893333pt;}
.y131{bottom:488.293333pt;}
.ye1{bottom:492.293333pt;}
.y14d{bottom:495.493333pt;}
.y168{bottom:495.893333pt;}
.y78{bottom:496.293333pt;}
.y15{bottom:497.013333pt;}
.y91{bottom:499.253333pt;}
.y10e{bottom:501.333333pt;}
.yb8{bottom:503.493333pt;}
.y130{bottom:503.893333pt;}
.ye0{bottom:507.973333pt;}
.y167{bottom:511.493333pt;}
.y14{bottom:512.693333pt;}
.y14c{bottom:519.173333pt;}
.y77{bottom:519.893333pt;}
.ydf{bottom:523.573333pt;}
.y10d{bottom:525.013333pt;}
.y12f{bottom:527.493333pt;}
.y13{bottom:528.293333pt;}
.y90{bottom:530.853333pt;}
.y14b{bottom:534.773333pt;}
.yb7{bottom:535.173333pt;}
.yde{bottom:539.253333pt;}
.y10c{bottom:540.613333pt;}
.y12e{bottom:543.173333pt;}
.y12{bottom:543.893333pt;}
.y8f{bottom:546.533333pt;}
.yb6{bottom:550.773333pt;}
.y76{bottom:551.493333pt;}
.y14a{bottom:558.453333pt;}
.y12d{bottom:558.773333pt;}
.y11{bottom:559.573333pt;}
.ydd{bottom:562.853333pt;}
.y10b{bottom:564.293333pt;}
.yb5{bottom:566.453333pt;}
.y75{bottom:567.173333pt;}
.y8e{bottom:570.133333pt;}
.y149{bottom:574.053333pt;}
.y10{bottom:575.173333pt;}
.y10a{bottom:579.893333pt;}
.yb4{bottom:582.053333pt;}
.y12c{bottom:582.453333pt;}
.y74{bottom:582.773333pt;}
.y166{bottom:590.053333pt;}
.yf{bottom:590.853333pt;}
.ydc{bottom:594.773333pt;}
.yb3{bottom:597.653333pt;}
.y12b{bottom:598.053333pt;}
.y73{bottom:598.453333pt;}
.y8d{bottom:601.813333pt;}
.y109{bottom:603.493333pt;}
.y165{bottom:605.653333pt;}
.ye{bottom:606.453333pt;}
.y59{bottom:613.333333pt;}
.y12a{bottom:613.653333pt;}
.y72{bottom:614.053333pt;}
.y108{bottom:619.173333pt;}
.y148{bottom:621.333333pt;}
.yd{bottom:622.053333pt;}
.y58{bottom:628.933333pt;}
.y164{bottom:629.333333pt;}
.y71{bottom:629.653333pt;}
.y8c{bottom:630.453333pt;}
.y147{bottom:636.933333pt;}
.y129{bottom:637.333333pt;}
.ydb{bottom:637.653333pt;}
.yc{bottom:637.733333pt;}
.y107{bottom:642.773333pt;}
.y3f{bottom:644.213333pt;}
.y57{bottom:644.613333pt;}
.y163{bottom:644.933333pt;}
.y70{bottom:645.333333pt;}
.y128{bottom:652.933333pt;}
.yb{bottom:653.333333pt;}
.y106{bottom:658.373333pt;}
.yb2{bottom:660.213333pt;}
.y146{bottom:660.613333pt;}
.y6f{bottom:660.933333pt;}
.y3e{bottom:667.813333pt;}
.y56{bottom:668.213333pt;}
.y127{bottom:668.613333pt;}
.yda{bottom:668.933333pt;}
.ya{bottom:669.013333pt;}
.yb1{bottom:675.813333pt;}
.y145{bottom:676.213333pt;}
.y105{bottom:682.053333pt;}
.y162{bottom:684.213333pt;}
.yd9{bottom:684.613333pt;}
.yb0{bottom:691.493333pt;}
.y126{bottom:692.213333pt;}
.y6e{bottom:692.613333pt;}
.y9{bottom:692.933333pt;}
.y3d{bottom:699.493333pt;}
.y55{bottom:699.813333pt;}
.yd8{bottom:700.213333pt;}
.y104{bottom:705.653333pt;}
.y125{bottom:707.813333pt;}
.y6d{bottom:708.213333pt;}
.y3c{bottom:715.093333pt;}
.y54{bottom:715.493333pt;}
.yd7{bottom:715.813333pt;}
.y103{bottom:721.333333pt;}
.y124{bottom:723.493333pt;}
.y6c{bottom:723.813333pt;}
.y3b{bottom:730.693333pt;}
.y53{bottom:731.093333pt;}
.yd6{bottom:731.493333pt;}
.y8{bottom:735.813333pt;}
.y144{bottom:739.093333pt;}
.y6b{bottom:739.493333pt;}
.y102{bottom:744.933333pt;}
.y52{bottom:746.693333pt;}
.yd5{bottom:747.093333pt;}
.y143{bottom:754.693333pt;}
.y6a{bottom:755.093333pt;}
.y101{bottom:760.533333pt;}
.y3a{bottom:762.373333pt;}
.yd4{bottom:762.693333pt;}
.y7{bottom:767.653333pt;}
.y51{bottom:770.373333pt;}
.y69{bottom:770.693333pt;}
.y39{bottom:777.973333pt;}
.y123{bottom:778.373333pt;}
.y100{bottom:784.213333pt;}
.y68{bottom:786.373333pt;}
.y38{bottom:793.653333pt;}
.y142{bottom:793.973333pt;}
.yd3{bottom:794.373333pt;}
.y6{bottom:799.653333pt;}
.yff{bottom:799.813333pt;}
.y50{bottom:801.973333pt;}
.y37{bottom:809.253333pt;}
.y141{bottom:809.653333pt;}
.yd2{bottom:809.973333pt;}
.y4f{bottom:817.653333pt;}
.yfe{bottom:823.493333pt;}
.yd1{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.y36{bottom:832.853333pt;}
.y4e{bottom:833.253333pt;}
.yfd{bottom:839.093333pt;}
.yaf{bottom:840.853333pt;}
.yd0{bottom:841.253333pt;}
.y4d{bottom:848.853333pt;}
.yae{bottom:856.533333pt;}
.y67{bottom:856.853333pt;}
.yfc{bottom:862.693333pt;}
.y4{bottom:863.733333pt;}
.y35{bottom:864.533333pt;}
.yad{bottom:872.133333pt;}
.ycf{bottom:872.533333pt;}
.yfb{bottom:878.373333pt;}
.y34{bottom:880.133333pt;}
.yac{bottom:887.813333pt;}
.y4c{bottom:888.133333pt;}
.y66{bottom:888.533333pt;}
.y3{bottom:897.760000pt;}
.yfa{bottom:902.320000pt;}
.y122{bottom:903.840000pt;}
.y65{bottom:904.160000pt;}
.y33{bottom:911.840000pt;}
.yab{bottom:919.440000pt;}
.y4b{bottom:919.840000pt;}
.y32{bottom:927.440000pt;}
.yaa{bottom:935.040000pt;}
.y4a{bottom:935.440000pt;}
.y31{bottom:943.040000pt;}
.yf9{bottom:945.200000pt;}
.ya9{bottom:950.720000pt;}
.y49{bottom:951.040000pt;}
.y30{bottom:958.720000pt;}
.ya8{bottom:966.320000pt;}
.y48{bottom:966.720000pt;}
.yf8{bottom:969.120000pt;}
.y2f{bottom:974.320000pt;}
.y47{bottom:982.320000pt;}
.y2e{bottom:990.000000pt;}
.y46{bottom:998.000000pt;}
.yf7{bottom:1002.320000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x9{left:98.879988pt;}
.x2{left:171.306655pt;}
.x8{left:276.026655pt;}
.x5{left:305.386655pt;}
.x4{left:571.013322pt;}
.x7{left:616.053322pt;}
.x6{left:640.053322pt;}
.x3{left:711.413322pt;}
}




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