
    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_44ab2ef4ff2bc355e74aa6bc.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_4fff3496fab2bad457d2126e.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_3881d09a47b6f5e5c7621d6a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ef231e5a02bb3a91ec171979.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_13ca95dd86862d928af72807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f56d32188eb0348442c506b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b3483338edbc60d9b602cafd.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;}
.ls1b{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.178800px;}
.lsc{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.lsb{letter-spacing:-0.015000px;}
.ls16{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls14{letter-spacing:0.041760px;}
.ls15{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:63.566640px;}
.ls1c{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;}
}
.ws2{word-spacing:-18.396600px;}
.ws8{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.wsa{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.369800px;}
.ws11{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.ws5{word-spacing:-13.211400px;}
.ws12{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.065600px;}
.ws14{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._12{margin-left:-4.088160px;}
._d{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._7{width:1.976880px;}
._9{width:3.607200px;}
._e{width:4.677546px;}
._5{width:5.711400px;}
._6{width:6.913800px;}
._b{width:8.777400px;}
._f{width:10.368600px;}
._1{width:12.132720px;}
._a{width:14.729400px;}
._2{width:16.352400px;}
._3{width:17.616002px;}
._4{width:19.479000px;}
._15{width:20.481959px;}
._13{width:21.522960px;}
._8{width:22.905600px;}
._c{width:24.305521px;}
._14{width:25.363317px;}
._18{width:26.401076px;}
._16{width:27.414720px;}
._17{width:28.584840px;}
._1d{width:29.605800px;}
._1a{width:31.137720px;}
._19{width:32.224320px;}
._10{width:33.426720px;}
._11{width:34.929720px;}
._1f{width:45.180000px;}
._1b{width:182.584440px;}
._1c{width:183.907080px;}
._1e{width:2366.082720px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y52{bottom:7.830000px;}
.y4d{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y85{bottom:111.720000px;}
.y154{bottom:116.580000px;}
.y135{bottom:121.170000px;}
.y162{bottom:123.420000px;}
.y102{bottom:125.580000px;}
.y121{bottom:127.200000px;}
.yd7{bottom:129.270000px;}
.y28{bottom:131.160000px;}
.y14e{bottom:134.130000px;}
.y134{bottom:138.720000px;}
.y161{bottom:140.970000px;}
.y101{bottom:143.130000px;}
.y120{bottom:144.840000px;}
.yd6{bottom:146.910000px;}
.y84{bottom:147.270000px;}
.y27{bottom:148.710000px;}
.y14d{bottom:151.680000px;}
.y133{bottom:156.270000px;}
.y160{bottom:158.610000px;}
.yb0{bottom:160.230000px;}
.y100{bottom:160.680000px;}
.y187{bottom:162.030000px;}
.y11f{bottom:162.390000px;}
.yd5{bottom:164.460000px;}
.y26{bottom:166.350000px;}
.y14c{bottom:169.320000px;}
.y153{bottom:169.680000px;}
.y132{bottom:173.910000px;}
.yaf{bottom:175.530000px;}
.y15f{bottom:176.160000px;}
.yff{bottom:178.320000px;}
.y186{bottom:179.580000px;}
.y11e{bottom:180.030000px;}
.y83{bottom:182.910000px;}
.y14b{bottom:186.870000px;}
.y152{bottom:187.320000px;}
.yd4{bottom:191.100000px;}
.y131{bottom:191.460000px;}
.y185{bottom:197.130000px;}
.y11d{bottom:197.580000px;}
.y55{bottom:199.830000px;}
.y82{bottom:200.460000px;}
.y25{bottom:201.900000px;}
.yae{bottom:203.250000px;}
.y151{bottom:204.870000px;}
.y130{bottom:209.100000px;}
.y15e{bottom:211.800000px;}
.yfe{bottom:213.870000px;}
.y184{bottom:214.770000px;}
.y54{bottom:217.380000px;}
.y81{bottom:218.100000px;}
.y24{bottom:219.540000px;}
.y14a{bottom:222.510000px;}
.yd3{bottom:226.650000px;}
.y15d{bottom:229.350000px;}
.y11c{bottom:230.520000px;}
.yad{bottom:230.970000px;}
.yfd{bottom:231.510000px;}
.y183{bottom:232.320000px;}
.y80{bottom:235.650000px;}
.y23{bottom:237.090000px;}
.y149{bottom:240.060000px;}
.yd2{bottom:244.200000px;}
.y15c{bottom:246.900000px;}
.yfc{bottom:249.060000px;}
.y182{bottom:249.960000px;}
.y53{bottom:250.770000px;}
.y7f{bottom:253.200000px;}
.y22{bottom:254.640000px;}
.y148{bottom:257.610000px;}
.y11b{bottom:257.880000px;}
.yac{bottom:258.690000px;}
.yd1{bottom:261.840000px;}
.y12f{bottom:262.200000px;}
.y15b{bottom:264.540000px;}
.yfb{bottom:266.610000px;}
.y181{bottom:267.510000px;}
.y7e{bottom:270.840000px;}
.y21{bottom:272.280000px;}
.y147{bottom:275.250000px;}
.y51{bottom:278.490000px;}
.yd0{bottom:279.390000px;}
.y12e{bottom:279.840000px;}
.y15a{bottom:282.090000px;}
.yfa{bottom:284.250000px;}
.y180{bottom:285.060000px;}
.y11a{bottom:285.240000px;}
.yab{bottom:286.410000px;}
.y146{bottom:292.800000px;}
.ycf{bottom:296.940000px;}
.y12d{bottom:297.390000px;}
.y159{bottom:299.730000px;}
.y17f{bottom:302.700000px;}
.y50{bottom:306.120000px;}
.y7d{bottom:306.390000px;}
.y20{bottom:307.830000px;}
.y150{bottom:310.800000px;}
.y119{bottom:312.510000px;}
.yaa{bottom:314.130000px;}
.yce{bottom:314.580000px;}
.y12c{bottom:314.940000px;}
.y158{bottom:317.280000px;}
.yf9{bottom:319.800000px;}
.y17e{bottom:320.250000px;}
.y7c{bottom:323.940000px;}
.y1f{bottom:325.380000px;}
.y145{bottom:328.440000px;}
.y12b{bottom:332.580000px;}
.y4f{bottom:333.840000px;}
.yf8{bottom:337.440000px;}
.y17d{bottom:337.800000px;}
.y118{bottom:339.870000px;}
.y7b{bottom:341.580000px;}
.y1e{bottom:343.020000px;}
.y144{bottom:345.990000px;}
.ycd{bottom:350.130000px;}
.y157{bottom:352.830000px;}
.yf7{bottom:354.990000px;}
.y17c{bottom:355.440000px;}
.y7a{bottom:359.130000px;}
.y1d{bottom:360.570000px;}
.y4e{bottom:361.560000px;}
.ya9{bottom:363.180000px;}
.y143{bottom:363.540000px;}
.y117{bottom:367.230000px;}
.ycc{bottom:367.770000px;}
.yf6{bottom:372.540000px;}
.y17b{bottom:372.990000px;}
.y79{bottom:376.770000px;}
.y1c{bottom:378.210000px;}
.y142{bottom:381.180000px;}
.y156{bottom:385.050000px;}
.ycb{bottom:385.320000px;}
.y12a{bottom:385.770000px;}
.y4c{bottom:389.280000px;}
.yf5{bottom:390.180000px;}
.y17a{bottom:390.630000px;}
.y1b{bottom:395.760000px;}
.ya8{bottom:398.730000px;}
.yca{bottom:402.870000px;}
.y129{bottom:403.320000px;}
.yf4{bottom:407.730000px;}
.y179{bottom:408.180000px;}
.y78{bottom:412.320000px;}
.y116{bottom:415.920000px;}
.ya7{bottom:416.370000px;}
.y141{bottom:416.730000px;}
.y128{bottom:420.870000px;}
.y1a{bottom:422.670000px;}
.y178{bottom:425.730000px;}
.y77{bottom:429.870000px;}
.ya6{bottom:433.920000px;}
.y140{bottom:434.370000px;}
.y4b{bottom:438.330000px;}
.yc9{bottom:438.510000px;}
.yf3{bottom:443.370000px;}
.y76{bottom:447.510000px;}
.ya5{bottom:451.470000px;}
.y13f{bottom:451.920000px;}
.y177{bottom:452.640000px;}
.yc8{bottom:456.060000px;}
.yf2{bottom:460.920000px;}
.y75{bottom:465.060000px;}
.ya4{bottom:469.110000px;}
.y13e{bottom:469.470000px;}
.y19{bottom:470.940000px;}
.yc7{bottom:473.730000px;}
.y4a{bottom:474.000000px;}
.yf1{bottom:478.500000px;}
.y74{bottom:482.730000px;}
.y115{bottom:486.690000px;}
.y13d{bottom:487.140000px;}
.y18{bottom:488.850000px;}
.yc6{bottom:491.280000px;}
.y49{bottom:491.550000px;}
.yf0{bottom:496.140000px;}
.y73{bottom:500.280000px;}
.y176{bottom:501.000000px;}
.y114{bottom:504.330000px;}
.ya3{bottom:504.690000px;}
.y48{bottom:509.190000px;}
.y127{bottom:509.280000px;}
.yef{bottom:513.690000px;}
.y175{bottom:518.550000px;}
.y113{bottom:521.880000px;}
.ya2{bottom:522.330000px;}
.y17{bottom:525.930000px;}
.y72{bottom:526.830000px;}
.yee{bottom:531.330000px;}
.y174{bottom:536.190000px;}
.ya1{bottom:539.880000px;}
.y16{bottom:543.480000px;}
.yc5{bottom:544.470000px;}
.y47{bottom:544.740000px;}
.y13c{bottom:549.330000px;}
.ya0{bottom:557.430000px;}
.y15{bottom:561.120000px;}
.yc4{bottom:562.020000px;}
.y46{bottom:562.290000px;}
.y71{bottom:562.470000px;}
.yed{bottom:566.880000px;}
.y173{bottom:571.740000px;}
.y112{bottom:575.070000px;}
.y14{bottom:578.670000px;}
.yc3{bottom:579.660000px;}
.y45{bottom:579.930000px;}
.y70{bottom:580.020000px;}
.yec{bottom:584.430000px;}
.y172{bottom:589.290000px;}
.y111{bottom:592.620000px;}
.y9f{bottom:593.070000px;}
.y13{bottom:596.220000px;}
.yc2{bottom:597.210000px;}
.y44{bottom:597.480000px;}
.y6f{bottom:597.660000px;}
.yeb{bottom:602.070000px;}
.y171{bottom:607.740000px;}
.y110{bottom:610.260000px;}
.y9e{bottom:610.620000px;}
.y12{bottom:613.860000px;}
.y6e{bottom:615.210000px;}
.yea{bottom:619.620000px;}
.y170{bottom:625.290000px;}
.y9d{bottom:628.260000px;}
.y11{bottom:631.410000px;}
.y6d{bottom:632.760000px;}
.y43{bottom:633.120000px;}
.y10f{bottom:636.810000px;}
.ye9{bottom:637.260000px;}
.y16f{bottom:643.740000px;}
.y9c{bottom:645.810000px;}
.y10{bottom:648.960000px;}
.y6c{bottom:650.400000px;}
.y42{bottom:650.670000px;}
.y14f{bottom:654.810000px;}
.y16e{bottom:661.290000px;}
.y9b{bottom:663.360000px;}
.ye8{bottom:663.810000px;}
.yf{bottom:666.600000px;}
.yc1{bottom:667.950000px;}
.y41{bottom:668.220000px;}
.y195{bottom:668.400000px;}
.y10e{bottom:672.360000px;}
.y13b{bottom:672.810000px;}
.y16d{bottom:679.740000px;}
.ye{bottom:684.150000px;}
.yc0{bottom:685.590000px;}
.y40{bottom:685.860000px;}
.y6b{bottom:685.950000px;}
.y9a{bottom:690.000000px;}
.y13a{bottom:690.360000px;}
.y16c{bottom:697.290000px;}
.ye7{bottom:699.360000px;}
.yd{bottom:701.790000px;}
.ybf{bottom:703.140000px;}
.y3f{bottom:703.410000px;}
.y6a{bottom:703.590000px;}
.y10d{bottom:707.550000px;}
.y139{bottom:708.000000px;}
.y126{bottom:712.140000px;}
.y194{bottom:712.590000px;}
.ye6{bottom:717.000000px;}
.yc{bottom:719.340000px;}
.y69{bottom:721.140000px;}
.y10c{bottom:725.190000px;}
.y99{bottom:725.550000px;}
.ybe{bottom:729.690000px;}
.y193{bottom:730.140000px;}
.y16b{bottom:733.740000px;}
.ye5{bottom:734.550000px;}
.yb{bottom:736.890000px;}
.y68{bottom:738.690000px;}
.y3e{bottom:739.050000px;}
.y10b{bottom:742.740000px;}
.y98{bottom:743.190000px;}
.y125{bottom:747.690000px;}
.ye4{bottom:752.190000px;}
.ya{bottom:754.530000px;}
.y67{bottom:756.330000px;}
.y3d{bottom:756.600000px;}
.y97{bottom:760.740000px;}
.ybd{bottom:765.330000px;}
.y16a{bottom:769.290000px;}
.ye3{bottom:769.740000px;}
.y192{bottom:774.330000px;}
.y3c{bottom:775.050000px;}
.y96{bottom:778.290000px;}
.y9{bottom:781.440000px;}
.ybc{bottom:782.880000px;}
.y169{bottom:786.930000px;}
.ye2{bottom:787.290000px;}
.y66{bottom:791.880000px;}
.y3b{bottom:792.600000px;}
.y95{bottom:795.930000px;}
.ybb{bottom:800.520000px;}
.y168{bottom:804.480000px;}
.ye1{bottom:804.930000px;}
.y65{bottom:809.520000px;}
.y3a{bottom:811.050000px;}
.y94{bottom:813.480000px;}
.y138{bottom:813.930000px;}
.yba{bottom:818.070000px;}
.y167{bottom:822.030000px;}
.y64{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.y39{bottom:828.600000px;}
.y10a{bottom:831.030000px;}
.y137{bottom:831.480000px;}
.yb9{bottom:835.620000px;}
.y191{bottom:836.070000px;}
.ye0{bottom:840.480000px;}
.y63{bottom:844.620000px;}
.y38{bottom:846.960000px;}
.y109{bottom:848.670000px;}
.y93{bottom:849.030000px;}
.yb8{bottom:853.260000px;}
.y124{bottom:853.620000px;}
.y166{bottom:857.670000px;}
.ydf{bottom:858.030000px;}
.y62{bottom:862.260000px;}
.y7{bottom:863.790000px;}
.y37{bottom:864.510000px;}
.y92{bottom:866.670000px;}
.y123{bottom:871.260000px;}
.y165{bottom:875.220000px;}
.yde{bottom:875.670000px;}
.y190{bottom:880.260000px;}
.y36{bottom:882.960000px;}
.y91{bottom:884.220000px;}
.y61{bottom:888.810000px;}
.y164{bottom:892.860000px;}
.ydd{bottom:893.220000px;}
.y18f{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y35{bottom:900.510000px;}
.y90{bottom:901.860000px;}
.yb7{bottom:906.450000px;}
.ydc{bottom:910.860000px;}
.y18e{bottom:915.450000px;}
.y108{bottom:919.410000px;}
.y136{bottom:919.860000px;}
.yb6{bottom:924.000000px;}
.y60{bottom:924.450000px;}
.ydb{bottom:928.410000px;}
.y18d{bottom:933.000000px;}
.y5{bottom:935.610000px;}
.y34{bottom:936.960000px;}
.y8f{bottom:937.410000px;}
.yb5{bottom:941.550000px;}
.y5f{bottom:942.000000px;}
.y155{bottom:945.960000px;}
.y18c{bottom:950.550000px;}
.y107{bottom:954.600000px;}
.y8e{bottom:954.960000px;}
.yb4{bottom:959.190000px;}
.y5e{bottom:959.550000px;}
.y33{bottom:963.600000px;}
.yda{bottom:963.960000px;}
.y122{bottom:968.460000px;}
.y4{bottom:971.700000px;}
.y106{bottom:972.150000px;}
.y8d{bottom:972.600000px;}
.y5d{bottom:977.190000px;}
.y163{bottom:981.150000px;}
.yd9{bottom:981.600000px;}
.yb3{bottom:986.100000px;}
.y8c{bottom:990.150000px;}
.y18b{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y8b{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y5c{bottom:1012.770000px;}
.y31{bottom:1016.820000px;}
.y18a{bottom:1021.320000px;}
.y105{bottom:1025.370000px;}
.y5b{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y189{bottom:1038.960000px;}
.y104{bottom:1042.920000px;}
.y8a{bottom:1043.370000px;}
.y5a{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y188{bottom:1056.510000px;}
.y103{bottom:1060.560000px;}
.y89{bottom:1060.920000px;}
.y59{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.yd8{bottom:1069.920000px;}
.y88{bottom:1078.560000px;}
.y58{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.yb2{bottom:1087.560000px;}
.y87{bottom:1096.110000px;}
.y57{bottom:1100.700000px;}
.yb1{bottom:1105.110000px;}
.y86{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y56{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.550000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:116.010000px;}
.wa{width:139.080000px;}
.w8{width:164.700000px;}
.w7{width:175.710000px;}
.w4{width:179.220000px;}
.w5{width:182.160000px;}
.w6{width:203.580000px;}
.w9{width:219.690000px;}
.w3{width:248.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.870000px;}
.x7{left:6.930000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x13{left:111.239987px;}
.x5{left:122.039987px;}
.x6{left:141.210000px;}
.xa{left:174.180000px;}
.x2{left:202.799987px;}
.xd{left:208.470000px;}
.x12{left:209.819987px;}
.xb{left:378.300000px;}
.x8{left:390.180000px;}
.xf{left:428.970000px;}
.xc{left:554.460000px;}
.x10{left:568.770000px;}
.x9{left:569.940000px;}
.x11{left:695.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.158933pt;}
.lsc{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:-0.013333pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls14{letter-spacing:0.037120pt;}
.ls15{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws8{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.wsa{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.884267pt;}
.ws11{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws5{word-spacing:-11.743467pt;}
.ws12{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.613867pt;}
.ws14{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._12{margin-left:-3.633920pt;}
._d{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._7{width:1.757227pt;}
._9{width:3.206400pt;}
._e{width:4.157819pt;}
._5{width:5.076800pt;}
._6{width:6.145600pt;}
._b{width:7.802133pt;}
._f{width:9.216534pt;}
._1{width:10.784640pt;}
._a{width:13.092800pt;}
._2{width:14.535466pt;}
._3{width:15.658668pt;}
._4{width:17.314667pt;}
._15{width:18.206186pt;}
._13{width:19.131520pt;}
._8{width:20.360533pt;}
._c{width:21.604908pt;}
._14{width:22.545171pt;}
._18{width:23.467623pt;}
._16{width:24.368640pt;}
._17{width:25.408747pt;}
._1d{width:26.316267pt;}
._1a{width:27.677973pt;}
._19{width:28.643840pt;}
._10{width:29.712640pt;}
._11{width:31.048640pt;}
._1f{width:40.160000pt;}
._1b{width:162.297280pt;}
._1c{width:163.472960pt;}
._1e{width:2103.184640pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:6.960000pt;}
.y4d{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y85{bottom:99.306667pt;}
.y154{bottom:103.626667pt;}
.y135{bottom:107.706667pt;}
.y162{bottom:109.706667pt;}
.y102{bottom:111.626667pt;}
.y121{bottom:113.066667pt;}
.yd7{bottom:114.906667pt;}
.y28{bottom:116.586667pt;}
.y14e{bottom:119.226667pt;}
.y134{bottom:123.306667pt;}
.y161{bottom:125.306667pt;}
.y101{bottom:127.226667pt;}
.y120{bottom:128.746667pt;}
.yd6{bottom:130.586667pt;}
.y84{bottom:130.906667pt;}
.y27{bottom:132.186667pt;}
.y14d{bottom:134.826667pt;}
.y133{bottom:138.906667pt;}
.y160{bottom:140.986667pt;}
.yb0{bottom:142.426667pt;}
.y100{bottom:142.826667pt;}
.y187{bottom:144.026667pt;}
.y11f{bottom:144.346667pt;}
.yd5{bottom:146.186667pt;}
.y26{bottom:147.866667pt;}
.y14c{bottom:150.506667pt;}
.y153{bottom:150.826667pt;}
.y132{bottom:154.586667pt;}
.yaf{bottom:156.026667pt;}
.y15f{bottom:156.586667pt;}
.yff{bottom:158.506667pt;}
.y186{bottom:159.626667pt;}
.y11e{bottom:160.026667pt;}
.y83{bottom:162.586667pt;}
.y14b{bottom:166.106667pt;}
.y152{bottom:166.506667pt;}
.yd4{bottom:169.866667pt;}
.y131{bottom:170.186667pt;}
.y185{bottom:175.226667pt;}
.y11d{bottom:175.626667pt;}
.y55{bottom:177.626667pt;}
.y82{bottom:178.186667pt;}
.y25{bottom:179.466667pt;}
.yae{bottom:180.666667pt;}
.y151{bottom:182.106667pt;}
.y130{bottom:185.866667pt;}
.y15e{bottom:188.266667pt;}
.yfe{bottom:190.106667pt;}
.y184{bottom:190.906667pt;}
.y54{bottom:193.226667pt;}
.y81{bottom:193.866667pt;}
.y24{bottom:195.146667pt;}
.y14a{bottom:197.786667pt;}
.yd3{bottom:201.466667pt;}
.y15d{bottom:203.866667pt;}
.y11c{bottom:204.906667pt;}
.yad{bottom:205.306667pt;}
.yfd{bottom:205.786667pt;}
.y183{bottom:206.506667pt;}
.y80{bottom:209.466667pt;}
.y23{bottom:210.746667pt;}
.y149{bottom:213.386667pt;}
.yd2{bottom:217.066667pt;}
.y15c{bottom:219.466667pt;}
.yfc{bottom:221.386667pt;}
.y182{bottom:222.186667pt;}
.y53{bottom:222.906667pt;}
.y7f{bottom:225.066667pt;}
.y22{bottom:226.346667pt;}
.y148{bottom:228.986667pt;}
.y11b{bottom:229.226667pt;}
.yac{bottom:229.946667pt;}
.yd1{bottom:232.746667pt;}
.y12f{bottom:233.066667pt;}
.y15b{bottom:235.146667pt;}
.yfb{bottom:236.986667pt;}
.y181{bottom:237.786667pt;}
.y7e{bottom:240.746667pt;}
.y21{bottom:242.026667pt;}
.y147{bottom:244.666667pt;}
.y51{bottom:247.546667pt;}
.yd0{bottom:248.346667pt;}
.y12e{bottom:248.746667pt;}
.y15a{bottom:250.746667pt;}
.yfa{bottom:252.666667pt;}
.y180{bottom:253.386667pt;}
.y11a{bottom:253.546667pt;}
.yab{bottom:254.586667pt;}
.y146{bottom:260.266667pt;}
.ycf{bottom:263.946667pt;}
.y12d{bottom:264.346667pt;}
.y159{bottom:266.426667pt;}
.y17f{bottom:269.066667pt;}
.y50{bottom:272.106667pt;}
.y7d{bottom:272.346667pt;}
.y20{bottom:273.626667pt;}
.y150{bottom:276.266667pt;}
.y119{bottom:277.786667pt;}
.yaa{bottom:279.226667pt;}
.yce{bottom:279.626667pt;}
.y12c{bottom:279.946667pt;}
.y158{bottom:282.026667pt;}
.yf9{bottom:284.266667pt;}
.y17e{bottom:284.666667pt;}
.y7c{bottom:287.946667pt;}
.y1f{bottom:289.226667pt;}
.y145{bottom:291.946667pt;}
.y12b{bottom:295.626667pt;}
.y4f{bottom:296.746667pt;}
.yf8{bottom:299.946667pt;}
.y17d{bottom:300.266667pt;}
.y118{bottom:302.106667pt;}
.y7b{bottom:303.626667pt;}
.y1e{bottom:304.906667pt;}
.y144{bottom:307.546667pt;}
.ycd{bottom:311.226667pt;}
.y157{bottom:313.626667pt;}
.yf7{bottom:315.546667pt;}
.y17c{bottom:315.946667pt;}
.y7a{bottom:319.226667pt;}
.y1d{bottom:320.506667pt;}
.y4e{bottom:321.386667pt;}
.ya9{bottom:322.826667pt;}
.y143{bottom:323.146667pt;}
.y117{bottom:326.426667pt;}
.ycc{bottom:326.906667pt;}
.yf6{bottom:331.146667pt;}
.y17b{bottom:331.546667pt;}
.y79{bottom:334.906667pt;}
.y1c{bottom:336.186667pt;}
.y142{bottom:338.826667pt;}
.y156{bottom:342.266667pt;}
.ycb{bottom:342.506667pt;}
.y12a{bottom:342.906667pt;}
.y4c{bottom:346.026667pt;}
.yf5{bottom:346.826667pt;}
.y17a{bottom:347.226667pt;}
.y1b{bottom:351.786667pt;}
.ya8{bottom:354.426667pt;}
.yca{bottom:358.106667pt;}
.y129{bottom:358.506667pt;}
.yf4{bottom:362.426667pt;}
.y179{bottom:362.826667pt;}
.y78{bottom:366.506667pt;}
.y116{bottom:369.706667pt;}
.ya7{bottom:370.106667pt;}
.y141{bottom:370.426667pt;}
.y128{bottom:374.106667pt;}
.y1a{bottom:375.706667pt;}
.y178{bottom:378.426667pt;}
.y77{bottom:382.106667pt;}
.ya6{bottom:385.706667pt;}
.y140{bottom:386.106667pt;}
.y4b{bottom:389.626667pt;}
.yc9{bottom:389.786667pt;}
.yf3{bottom:394.106667pt;}
.y76{bottom:397.786667pt;}
.ya5{bottom:401.306667pt;}
.y13f{bottom:401.706667pt;}
.y177{bottom:402.346667pt;}
.yc8{bottom:405.386667pt;}
.yf2{bottom:409.706667pt;}
.y75{bottom:413.386667pt;}
.ya4{bottom:416.986667pt;}
.y13e{bottom:417.306667pt;}
.y19{bottom:418.613333pt;}
.yc7{bottom:421.093333pt;}
.y4a{bottom:421.333333pt;}
.yf1{bottom:425.333333pt;}
.y74{bottom:429.093333pt;}
.y115{bottom:432.613333pt;}
.y13d{bottom:433.013333pt;}
.y18{bottom:434.533333pt;}
.yc6{bottom:436.693333pt;}
.y49{bottom:436.933333pt;}
.yf0{bottom:441.013333pt;}
.y73{bottom:444.693333pt;}
.y176{bottom:445.333333pt;}
.y114{bottom:448.293333pt;}
.ya3{bottom:448.613333pt;}
.y48{bottom:452.613333pt;}
.y127{bottom:452.693333pt;}
.yef{bottom:456.613333pt;}
.y175{bottom:460.933333pt;}
.y113{bottom:463.893333pt;}
.ya2{bottom:464.293333pt;}
.y17{bottom:467.493333pt;}
.y72{bottom:468.293333pt;}
.yee{bottom:472.293333pt;}
.y174{bottom:476.613333pt;}
.ya1{bottom:479.893333pt;}
.y16{bottom:483.093333pt;}
.yc5{bottom:483.973333pt;}
.y47{bottom:484.213333pt;}
.y13c{bottom:488.293333pt;}
.ya0{bottom:495.493333pt;}
.y15{bottom:498.773333pt;}
.yc4{bottom:499.573333pt;}
.y46{bottom:499.813333pt;}
.y71{bottom:499.973333pt;}
.yed{bottom:503.893333pt;}
.y173{bottom:508.213333pt;}
.y112{bottom:511.173333pt;}
.y14{bottom:514.373333pt;}
.yc3{bottom:515.253333pt;}
.y45{bottom:515.493333pt;}
.y70{bottom:515.573333pt;}
.yec{bottom:519.493333pt;}
.y172{bottom:523.813333pt;}
.y111{bottom:526.773333pt;}
.y9f{bottom:527.173333pt;}
.y13{bottom:529.973333pt;}
.yc2{bottom:530.853333pt;}
.y44{bottom:531.093333pt;}
.y6f{bottom:531.253333pt;}
.yeb{bottom:535.173333pt;}
.y171{bottom:540.213333pt;}
.y110{bottom:542.453333pt;}
.y9e{bottom:542.773333pt;}
.y12{bottom:545.653333pt;}
.y6e{bottom:546.853333pt;}
.yea{bottom:550.773333pt;}
.y170{bottom:555.813333pt;}
.y9d{bottom:558.453333pt;}
.y11{bottom:561.253333pt;}
.y6d{bottom:562.453333pt;}
.y43{bottom:562.773333pt;}
.y10f{bottom:566.053333pt;}
.ye9{bottom:566.453333pt;}
.y16f{bottom:572.213333pt;}
.y9c{bottom:574.053333pt;}
.y10{bottom:576.853333pt;}
.y6c{bottom:578.133333pt;}
.y42{bottom:578.373333pt;}
.y14f{bottom:582.053333pt;}
.y16e{bottom:587.813333pt;}
.y9b{bottom:589.653333pt;}
.ye8{bottom:590.053333pt;}
.yf{bottom:592.533333pt;}
.yc1{bottom:593.733333pt;}
.y41{bottom:593.973333pt;}
.y195{bottom:594.133333pt;}
.y10e{bottom:597.653333pt;}
.y13b{bottom:598.053333pt;}
.y16d{bottom:604.213333pt;}
.ye{bottom:608.133333pt;}
.yc0{bottom:609.413333pt;}
.y40{bottom:609.653333pt;}
.y6b{bottom:609.733333pt;}
.y9a{bottom:613.333333pt;}
.y13a{bottom:613.653333pt;}
.y16c{bottom:619.813333pt;}
.ye7{bottom:621.653333pt;}
.yd{bottom:623.813333pt;}
.ybf{bottom:625.013333pt;}
.y3f{bottom:625.253333pt;}
.y6a{bottom:625.413333pt;}
.y10d{bottom:628.933333pt;}
.y139{bottom:629.333333pt;}
.y126{bottom:633.013333pt;}
.y194{bottom:633.413333pt;}
.ye6{bottom:637.333333pt;}
.yc{bottom:639.413333pt;}
.y69{bottom:641.013333pt;}
.y10c{bottom:644.613333pt;}
.y99{bottom:644.933333pt;}
.ybe{bottom:648.613333pt;}
.y193{bottom:649.013333pt;}
.y16b{bottom:652.213333pt;}
.ye5{bottom:652.933333pt;}
.yb{bottom:655.013333pt;}
.y68{bottom:656.613333pt;}
.y3e{bottom:656.933333pt;}
.y10b{bottom:660.213333pt;}
.y98{bottom:660.613333pt;}
.y125{bottom:664.613333pt;}
.ye4{bottom:668.613333pt;}
.ya{bottom:670.693333pt;}
.y67{bottom:672.293333pt;}
.y3d{bottom:672.533333pt;}
.y97{bottom:676.213333pt;}
.ybd{bottom:680.293333pt;}
.y16a{bottom:683.813333pt;}
.ye3{bottom:684.213333pt;}
.y192{bottom:688.293333pt;}
.y3c{bottom:688.933333pt;}
.y96{bottom:691.813333pt;}
.y9{bottom:694.613333pt;}
.ybc{bottom:695.893333pt;}
.y169{bottom:699.493333pt;}
.ye2{bottom:699.813333pt;}
.y66{bottom:703.893333pt;}
.y3b{bottom:704.533333pt;}
.y95{bottom:707.493333pt;}
.ybb{bottom:711.573333pt;}
.y168{bottom:715.093333pt;}
.ye1{bottom:715.493333pt;}
.y65{bottom:719.573333pt;}
.y3a{bottom:720.933333pt;}
.y94{bottom:723.093333pt;}
.y138{bottom:723.493333pt;}
.yba{bottom:727.173333pt;}
.y167{bottom:730.693333pt;}
.y64{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.y39{bottom:736.533333pt;}
.y10a{bottom:738.693333pt;}
.y137{bottom:739.093333pt;}
.yb9{bottom:742.773333pt;}
.y191{bottom:743.173333pt;}
.ye0{bottom:747.093333pt;}
.y63{bottom:750.773333pt;}
.y38{bottom:752.853333pt;}
.y109{bottom:754.373333pt;}
.y93{bottom:754.693333pt;}
.yb8{bottom:758.453333pt;}
.y124{bottom:758.773333pt;}
.y166{bottom:762.373333pt;}
.ydf{bottom:762.693333pt;}
.y62{bottom:766.453333pt;}
.y7{bottom:767.813333pt;}
.y37{bottom:768.453333pt;}
.y92{bottom:770.373333pt;}
.y123{bottom:774.453333pt;}
.y165{bottom:777.973333pt;}
.yde{bottom:778.373333pt;}
.y190{bottom:782.453333pt;}
.y36{bottom:784.853333pt;}
.y91{bottom:785.973333pt;}
.y61{bottom:790.053333pt;}
.y164{bottom:793.653333pt;}
.ydd{bottom:793.973333pt;}
.y18f{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y35{bottom:800.453333pt;}
.y90{bottom:801.653333pt;}
.yb7{bottom:805.733333pt;}
.ydc{bottom:809.653333pt;}
.y18e{bottom:813.733333pt;}
.y108{bottom:817.253333pt;}
.y136{bottom:817.653333pt;}
.yb6{bottom:821.333333pt;}
.y60{bottom:821.733333pt;}
.ydb{bottom:825.253333pt;}
.y18d{bottom:829.333333pt;}
.y5{bottom:831.653333pt;}
.y34{bottom:832.853333pt;}
.y8f{bottom:833.253333pt;}
.yb5{bottom:836.933333pt;}
.y5f{bottom:837.333333pt;}
.y155{bottom:840.853333pt;}
.y18c{bottom:844.933333pt;}
.y107{bottom:848.533333pt;}
.y8e{bottom:848.853333pt;}
.yb4{bottom:852.613333pt;}
.y5e{bottom:852.933333pt;}
.y33{bottom:856.533333pt;}
.yda{bottom:856.853333pt;}
.y122{bottom:860.853333pt;}
.y4{bottom:863.733333pt;}
.y106{bottom:864.133333pt;}
.y8d{bottom:864.533333pt;}
.y5d{bottom:868.613333pt;}
.y163{bottom:872.133333pt;}
.yd9{bottom:872.533333pt;}
.yb3{bottom:876.533333pt;}
.y8c{bottom:880.133333pt;}
.y18b{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y8b{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y5c{bottom:900.240000pt;}
.y31{bottom:903.840000pt;}
.y18a{bottom:907.840000pt;}
.y105{bottom:911.440000pt;}
.y5b{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y189{bottom:923.520000pt;}
.y104{bottom:927.040000pt;}
.y8a{bottom:927.440000pt;}
.y5a{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y188{bottom:939.120000pt;}
.y103{bottom:942.720000pt;}
.y89{bottom:943.040000pt;}
.y59{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.yd8{bottom:951.040000pt;}
.y88{bottom:958.720000pt;}
.y58{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.yb2{bottom:966.720000pt;}
.y87{bottom:974.320000pt;}
.y57{bottom:978.400000pt;}
.yb1{bottom:982.320000pt;}
.y86{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y56{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:103.120000pt;}
.wa{width:123.626667pt;}
.w8{width:146.400000pt;}
.w7{width:156.186667pt;}
.w4{width:159.306667pt;}
.w5{width:161.920000pt;}
.w6{width:180.960000pt;}
.w9{width:195.280000pt;}
.w3{width:220.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.440000pt;}
.x7{left:6.160000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x13{left:98.879988pt;}
.x5{left:108.479988pt;}
.x6{left:125.520000pt;}
.xa{left:154.826667pt;}
.x2{left:180.266655pt;}
.xd{left:185.306667pt;}
.x12{left:186.506655pt;}
.xb{left:336.266667pt;}
.x8{left:346.826667pt;}
.xf{left:381.306667pt;}
.xc{left:492.853333pt;}
.x10{left:505.573333pt;}
.x9{left:506.613333pt;}
.x11{left:618.053322pt;}
.x3{left:704.053322pt;}
}




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