
    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_b45f2ac76888442f750b087f.woff2')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_2707114dead329c4cffc0e7d.woff2')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_6d1c3fb65d6d1ff9582d7858.woff2')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_32a0ab9714e1997a1985b71c.woff2')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_e40e4ce1994716e4314de725.woff2')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_fe6880a5aff1a66b7d9a5412.woff2')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_1ddfc7289d608372e9d740bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_58e3c6cb7cbb807b585eb9e9.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v3{vertical-align:-15.120000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.880000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.v7{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.ls18{letter-spacing:-0.267600px;}
.lsa{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.159600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.048960px;}
.ls23{letter-spacing:-0.031680px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006480px;}
.ls19{letter-spacing:0.010200px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.060480px;}
.ls1f{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls1b{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.097560px;}
.ls1e{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.110400px;}
.ls16{letter-spacing:0.114600px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.626400px;}
.ls12{letter-spacing:0.986400px;}
.ls1a{letter-spacing:2.252520px;}
.ls14{letter-spacing:2.612520px;}
.lse{letter-spacing:5.493600px;}
.ls25{letter-spacing:47.726640px;}
.ls20{letter-spacing:63.566640px;}
.ls24{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.177440px;}
.ws11{word-spacing:-13.066800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:3.063960px;}
.wsf{word-spacing:3.423960px;}
.wsc{word-spacing:4.104720px;}
.ws5{word-spacing:4.304880px;}
.wsb{word-spacing:4.464720px;}
.wse{word-spacing:13.947120px;}
._4{margin-left:-3.426600px;}
._7{margin-left:-2.277244px;}
._0{margin-left:-1.110000px;}
._2{width:1.154412px;}
._8{width:2.380777px;}
._1{width:3.700800px;}
._3{width:4.795369px;}
._5{width:6.673200px;}
._c{width:7.744561px;}
._6{width:9.198600px;}
._b{width:10.240202px;}
._9{width:11.242200px;}
._a{width:15.270600px;}
._16{width:16.306547px;}
._e{width:17.331120px;}
._15{width:19.178280px;}
._d{width:20.260440px;}
._17{width:25.190280px;}
._14{width:42.685200px;}
._12{width:48.690360px;}
._13{width:95.650920px;}
._f{width:121.679399px;}
._10{width:170.010360px;}
._11{width:185.850360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.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;}
.y67{bottom:7.830000px;}
.ye1{bottom:7.860000px;}
.y69{bottom:7.920000px;}
.y66{bottom:25.470000px;}
.y8a{bottom:29.880000px;}
.yef{bottom:29.970000px;}
.y103{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y6d{bottom:117.390000px;}
.y126{bottom:117.660000px;}
.yb8{bottom:120.540000px;}
.y93{bottom:121.530000px;}
.y125{bottom:135.300000px;}
.yb7{bottom:138.180000px;}
.y28{bottom:142.050000px;}
.y6c{bottom:144.750000px;}
.y92{bottom:148.890000px;}
.y124{bottom:152.850000px;}
.y27{bottom:159.600000px;}
.yb6{bottom:164.730000px;}
.y6b{bottom:172.110000px;}
.y102{bottom:172.560000px;}
.y91{bottom:176.160000px;}
.y26{bottom:177.240000px;}
.y123{bottom:179.760000px;}
.ydc{bottom:186.510000px;}
.y25{bottom:194.790000px;}
.yb5{bottom:197.760000px;}
.y6a{bottom:199.380000px;}
.y90{bottom:203.520000px;}
.y101{bottom:208.200000px;}
.y24{bottom:212.340000px;}
.ydb{bottom:222.060000px;}
.y54{bottom:224.490000px;}
.yb4{bottom:225.030000px;}
.y68{bottom:226.740000px;}
.y122{bottom:228.000000px;}
.y23{bottom:229.980000px;}
.y8f{bottom:230.880000px;}
.yda{bottom:239.700000px;}
.y100{bottom:243.750000px;}
.y22{bottom:247.530000px;}
.yb3{bottom:252.390000px;}
.y65{bottom:254.100000px;}
.y121{bottom:254.910000px;}
.yd9{bottom:257.250000px;}
.y8e{bottom:258.240000px;}
.y53{bottom:259.950000px;}
.yff{bottom:261.300000px;}
.y52{bottom:270.030000px;}
.yd8{bottom:274.890000px;}
.yfe{bottom:278.940000px;}
.yb2{bottom:279.750000px;}
.y21{bottom:283.170000px;}
.y8d{bottom:285.510000px;}
.y120{bottom:291.990000px;}
.yd7{bottom:292.440000px;}
.yfd{bottom:296.490000px;}
.y20{bottom:300.720000px;}
.yb1{bottom:307.020000px;}
.yd6{bottom:309.990000px;}
.y8c{bottom:312.870000px;}
.yfc{bottom:314.130000px;}
.y51{bottom:314.940000px;}
.y1f{bottom:318.270000px;}
.y11f{bottom:318.900000px;}
.y64{bottom:320.340000px;}
.yd5{bottom:327.630000px;}
.yfb{bottom:331.680000px;}
.y50{bottom:332.580000px;}
.yb0{bottom:334.380000px;}
.y1e{bottom:335.910000px;}
.y8b{bottom:340.230000px;}
.yd4{bottom:345.180000px;}
.yfa{bottom:349.230000px;}
.y1d{bottom:353.460000px;}
.y63{bottom:355.980000px;}
.y11e{bottom:356.250000px;}
.yaf{bottom:361.740000px;}
.y143{bottom:363.180000px;}
.yf9{bottom:366.870000px;}
.y89{bottom:367.590000px;}
.y4f{bottom:368.130000px;}
.y1c{bottom:371.100000px;}
.y62{bottom:373.530000px;}
.yd3{bottom:380.730000px;}
.yf8{bottom:384.420000px;}
.y4e{bottom:385.770000px;}
.y1b{bottom:388.650000px;}
.yae{bottom:389.100000px;}
.y61{bottom:391.170000px;}
.yd2{bottom:398.370000px;}
.y4d{bottom:403.320000px;}
.y11d{bottom:404.490000px;}
.y142{bottom:407.370000px;}
.y60{bottom:408.720000px;}
.y1a{bottom:415.560000px;}
.yd1{bottom:415.920000px;}
.yad{bottom:416.370000px;}
.y88{bottom:417.000000px;}
.yf7{bottom:420.060000px;}
.y4c{bottom:420.870000px;}
.y11c{bottom:422.040000px;}
.y141{bottom:424.920000px;}
.yd0{bottom:433.560000px;}
.yf6{bottom:437.610000px;}
.y11b{bottom:439.680000px;}
.yac{bottom:443.730000px;}
.y5f{bottom:444.270000px;}
.y4b{bottom:447.510000px;}
.ycf{bottom:451.110000px;}
.y140{bottom:451.470000px;}
.yf5{bottom:456.060000px;}
.y11a{bottom:457.230000px;}
.y19{bottom:464.160000px;}
.y87{bottom:465.690000px;}
.yce{bottom:468.660000px;}
.y13f{bottom:469.110000px;}
.yab{bottom:471.120000px;}
.yf4{bottom:473.640000px;}
.y119{bottom:474.900000px;}
.y5e{bottom:476.700000px;}
.y4a{bottom:483.090000px;}
.ycd{bottom:486.330000px;}
.y5d{bottom:486.780000px;}
.y118{bottom:492.450000px;}
.y13e{bottom:495.690000px;}
.yaa{bottom:498.480000px;}
.y49{bottom:500.730000px;}
.y18{bottom:501.180000px;}
.y86{bottom:501.270000px;}
.ycc{bottom:503.880000px;}
.y117{bottom:510.000000px;}
.yf3{bottom:510.090000px;}
.y13d{bottom:513.330000px;}
.y48{bottom:518.280000px;}
.y17{bottom:518.820000px;}
.y85{bottom:518.910000px;}
.ya9{bottom:525.750000px;}
.yf2{bottom:527.640000px;}
.y5c{bottom:529.170000px;}
.ycb{bottom:530.520000px;}
.y13c{bottom:530.880000px;}
.y47{bottom:535.830000px;}
.y16{bottom:536.370000px;}
.y84{bottom:536.460000px;}
.y5b{bottom:539.250000px;}
.ya8{bottom:553.110000px;}
.y46{bottom:553.470000px;}
.y15{bottom:553.920000px;}
.y83{bottom:554.010000px;}
.yf1{bottom:554.190000px;}
.y116{bottom:554.550000px;}
.y13b{bottom:557.430000px;}
.yca{bottom:565.350000px;}
.y45{bottom:571.020000px;}
.y14{bottom:571.560000px;}
.y82{bottom:571.650000px;}
.y13a{bottom:575.070000px;}
.yc9{bottom:577.500000px;}
.ya7{bottom:580.470000px;}
.y5a{bottom:581.640000px;}
.yf0{bottom:587.220000px;}
.y44{bottom:588.660000px;}
.y13{bottom:589.110000px;}
.y59{bottom:591.720000px;}
.y139{bottom:601.620000px;}
.y115{bottom:602.790000px;}
.yc8{bottom:604.860000px;}
.y43{bottom:606.210000px;}
.y12{bottom:606.750000px;}
.y81{bottom:607.200000px;}
.ya6{bottom:607.740000px;}
.yee{bottom:614.490000px;}
.y138{bottom:619.260000px;}
.y114{bottom:620.340000px;}
.y11{bottom:624.300000px;}
.y80{bottom:624.840000px;}
.yc7{bottom:632.220000px;}
.y42{bottom:632.760000px;}
.ya5{bottom:635.100000px;}
.y58{bottom:637.080000px;}
.y113{bottom:637.980000px;}
.y10{bottom:641.850000px;}
.y7f{bottom:642.390000px;}
.y137{bottom:645.810000px;}
.y57{bottom:647.160000px;}
.y112{bottom:655.530000px;}
.yf{bottom:659.490000px;}
.y7e{bottom:659.940000px;}
.ya4{bottom:662.460000px;}
.y136{bottom:663.360000px;}
.yed{bottom:663.990000px;}
.y41{bottom:668.670000px;}
.y111{bottom:673.170000px;}
.ye{bottom:677.040000px;}
.y7d{bottom:677.580000px;}
.yc6{bottom:686.850000px;}
.ya3{bottom:689.820000px;}
.y135{bottom:690.000000px;}
.y110{bottom:690.720000px;}
.yec{bottom:691.260000px;}
.y56{bottom:692.520000px;}
.yd{bottom:694.680000px;}
.y7c{bottom:695.130000px;}
.y134{bottom:707.550000px;}
.y10f{bottom:708.270000px;}
.yc{bottom:712.230000px;}
.yc5{bottom:714.210000px;}
.y40{bottom:717.000000px;}
.ya2{bottom:717.090000px;}
.yeb{bottom:718.620000px;}
.y7b{bottom:721.770000px;}
.y55{bottom:724.740000px;}
.y10e{bottom:725.910000px;}
.y133{bottom:734.190000px;}
.y3f{bottom:734.550000px;}
.yb{bottom:739.140000px;}
.yc4{bottom:741.570000px;}
.y10d{bottom:743.460000px;}
.ya1{bottom:744.450000px;}
.yea{bottom:745.980000px;}
.y132{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.y7a{bottom:757.590000px;}
.y10c{bottom:761.100000px;}
.yc3{bottom:768.840000px;}
.y3d{bottom:769.740000px;}
.ya0{bottom:771.810000px;}
.ye9{bottom:773.250000px;}
.y131{bottom:778.290000px;}
.ya{bottom:787.380000px;}
.y10b{bottom:787.650000px;}
.y130{bottom:795.930000px;}
.yc2{bottom:796.200000px;}
.y9f{bottom:799.170000px;}
.y3c{bottom:805.290000px;}
.y79{bottom:805.920000px;}
.y12f{bottom:813.480000px;}
.ye8{bottom:818.250000px;}
.y3b{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y78{bottom:823.470000px;}
.yc1{bottom:823.560000px;}
.y9e{bottom:826.440000px;}
.y12e{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.y10a{bottom:840.840000px;}
.y77{bottom:841.110000px;}
.ye7{bottom:845.520000px;}
.yc0{bottom:850.920000px;}
.y9d{bottom:853.800000px;}
.y12d{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y109{bottom:858.390000px;}
.y8{bottom:859.200000px;}
.y76{bottom:867.660000px;}
.ye6{bottom:872.880000px;}
.y38{bottom:875.670000px;}
.y108{bottom:876.030000px;}
.ybf{bottom:878.190000px;}
.y9c{bottom:881.160000px;}
.y12c{bottom:884.220000px;}
.y37{bottom:893.220000px;}
.y107{bottom:893.580000px;}
.y7{bottom:898.980000px;}
.ye5{bottom:900.240000px;}
.y75{bottom:900.600000px;}
.y12b{bottom:901.860000px;}
.ybe{bottom:905.550000px;}
.y9b{bottom:908.430000px;}
.y36{bottom:910.860000px;}
.y106{bottom:911.130000px;}
.y6{bottom:916.980000px;}
.ye4{bottom:927.600000px;}
.y74{bottom:927.960000px;}
.y35{bottom:928.410000px;}
.y105{bottom:928.770000px;}
.ybd{bottom:932.910000px;}
.y9a{bottom:935.790000px;}
.y34{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.ye3{bottom:954.870000px;}
.y73{bottom:955.320000px;}
.y99{bottom:963.150000px;}
.y12a{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.ye2{bottom:982.230000px;}
.y72{bottom:982.680000px;}
.y4{bottom:987.630000px;}
.y129{bottom:990.150000px;}
.y98{bottom:990.510000px;}
.y104{bottom:991.230000px;}
.y32{bottom:999.150000px;}
.ye0{bottom:1009.590000px;}
.y71{bottom:1009.980000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.ybc{bottom:1017.180000px;}
.y97{bottom:1017.810000px;}
.y30{bottom:1034.370000px;}
.ybb{bottom:1034.820000px;}
.ydf{bottom:1036.890000px;}
.y96{bottom:1045.170000px;}
.y2f{bottom:1051.920000px;}
.yba{bottom:1052.370000px;}
.y70{bottom:1054.890000px;}
.yde{bottom:1064.250000px;}
.yb9{bottom:1069.920000px;}
.y95{bottom:1072.530000px;}
.y128{bottom:1078.560000px;}
.y6f{bottom:1082.250000px;}
.y2e{bottom:1087.560000px;}
.ydd{bottom:1091.610000px;}
.y127{bottom:1096.110000px;}
.y94{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y6e{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h12{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h13{height:40.539023px;}
.he{height:44.190000px;}
.h11{height:48.600000px;}
.h14{height:48.690000px;}
.h7{height:50.902383px;}
.h16{height:54.000000px;}
.h5{height:55.779258px;}
.hd{height:60.679688px;}
.h8{height:60.960938px;}
.h15{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:91.222383px;}
.hb{height:96.027539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w21{width:40.440000px;}
.w3{width:74.250000px;}
.w8{width:80.280000px;}
.wc{width:92.820000px;}
.w10{width:101.910000px;}
.w23{width:108.450000px;}
.w25{width:113.040000px;}
.w1e{width:115.560000px;}
.we{width:115.650000px;}
.w1c{width:119.640000px;}
.w16{width:123.030000px;}
.w7{width:128.160000px;}
.w4{width:133.140000px;}
.w1b{width:134.190000px;}
.w5{width:134.280000px;}
.w14{width:140.790000px;}
.wd{width:141.030000px;}
.w1d{width:141.120000px;}
.w15{width:148.500000px;}
.w22{width:154.800000px;}
.w13{width:191.700000px;}
.w6{width:201.810000px;}
.w9{width:214.860000px;}
.wa{width:227.820000px;}
.w19{width:235.110000px;}
.w1a{width:254.640000px;}
.wb{width:257.400000px;}
.w12{width:272.340000px;}
.w18{width:294.420000px;}
.w24{width:310.800000px;}
.w11{width:333.210000px;}
.w20{width:424.560000px;}
.w17{width:435.930000px;}
.wf{width:443.400000px;}
.w1f{width:490.560000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.960000px;}
.x1a{left:7.740000px;}
.x1{left:68.040000px;}
.x20{left:72.270000px;}
.x26{left:81.360000px;}
.x19{left:92.070000px;}
.x15{left:95.850000px;}
.x2b{left:111.239987px;}
.x25{left:122.039987px;}
.x11{left:143.820000px;}
.x1b{left:194.790000px;}
.x2{left:211.079987px;}
.x7{left:252.299987px;}
.x12{left:277.680000px;}
.x21{left:308.190000px;}
.x16{left:311.430000px;}
.x1f{left:347.789987px;}
.xa{left:369.389987px;}
.x8{left:373.349987px;}
.x1d{left:387.210000px;}
.x2a{left:392.880000px;}
.x4{left:396.929987px;}
.x9{left:401.789987px;}
.xb{left:403.679987px;}
.xd{left:411.689987px;}
.xf{left:418.349987px;}
.x5{left:428.609987px;}
.xc{left:432.119987px;}
.x23{left:443.190000px;}
.xe{left:446.789987px;}
.x27{left:506.730000px;}
.x1c{left:528.810000px;}
.x17{left:540.060000px;}
.x28{left:547.890000px;}
.x22{left:563.550000px;}
.x13{left:615.210000px;}
.x1e{left:678.120000px;}
.x18{left:681.810000px;}
.x29{left:703.410000px;}
.x24{left:705.390000px;}
.x14{left:744.180000px;}
.x6{left:760.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.560000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.v7{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.ls18{letter-spacing:-0.237867pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.141867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.043520pt;}
.ls23{letter-spacing:-0.028160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005760pt;}
.ls19{letter-spacing:0.009067pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.053760pt;}
.ls1f{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.086720pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.098133pt;}
.ls16{letter-spacing:0.101867pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.556800pt;}
.ls12{letter-spacing:0.876800pt;}
.ls1a{letter-spacing:2.002240pt;}
.ls14{letter-spacing:2.322240pt;}
.lse{letter-spacing:4.883200pt;}
.ls25{letter-spacing:42.423680pt;}
.ls20{letter-spacing:56.503680pt;}
.ls24{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.713280pt;}
.ws11{word-spacing:-11.614933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:2.723520pt;}
.wsf{word-spacing:3.043520pt;}
.wsc{word-spacing:3.648640pt;}
.ws5{word-spacing:3.826560pt;}
.wsb{word-spacing:3.968640pt;}
.wse{word-spacing:12.397440pt;}
._4{margin-left:-3.045866pt;}
._7{margin-left:-2.024217pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.026144pt;}
._8{width:2.116246pt;}
._1{width:3.289600pt;}
._3{width:4.262550pt;}
._5{width:5.931733pt;}
._c{width:6.884055pt;}
._6{width:8.176534pt;}
._b{width:9.102401pt;}
._9{width:9.993066pt;}
._a{width:13.573867pt;}
._16{width:14.494708pt;}
._e{width:15.405440pt;}
._15{width:17.047360pt;}
._d{width:18.009280pt;}
._17{width:22.391360pt;}
._14{width:37.942400pt;}
._12{width:43.280320pt;}
._13{width:85.023040pt;}
._f{width:108.159465pt;}
._10{width:151.120320pt;}
._11{width:165.200320pt;}
.fs9{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.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;}
.y67{bottom:6.960000pt;}
.ye1{bottom:6.986667pt;}
.y69{bottom:7.040000pt;}
.y66{bottom:22.640000pt;}
.y8a{bottom:26.560000pt;}
.yef{bottom:26.640000pt;}
.y103{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y6d{bottom:104.346667pt;}
.y126{bottom:104.586667pt;}
.yb8{bottom:107.146667pt;}
.y93{bottom:108.026667pt;}
.y125{bottom:120.266667pt;}
.yb7{bottom:122.826667pt;}
.y28{bottom:126.266667pt;}
.y6c{bottom:128.666667pt;}
.y92{bottom:132.346667pt;}
.y124{bottom:135.866667pt;}
.y27{bottom:141.866667pt;}
.yb6{bottom:146.426667pt;}
.y6b{bottom:152.986667pt;}
.y102{bottom:153.386667pt;}
.y91{bottom:156.586667pt;}
.y26{bottom:157.546667pt;}
.y123{bottom:159.786667pt;}
.ydc{bottom:165.786667pt;}
.y25{bottom:173.146667pt;}
.yb5{bottom:175.786667pt;}
.y6a{bottom:177.226667pt;}
.y90{bottom:180.906667pt;}
.y101{bottom:185.066667pt;}
.y24{bottom:188.746667pt;}
.ydb{bottom:197.386667pt;}
.y54{bottom:199.546667pt;}
.yb4{bottom:200.026667pt;}
.y68{bottom:201.546667pt;}
.y122{bottom:202.666667pt;}
.y23{bottom:204.426667pt;}
.y8f{bottom:205.226667pt;}
.yda{bottom:213.066667pt;}
.y100{bottom:216.666667pt;}
.y22{bottom:220.026667pt;}
.yb3{bottom:224.346667pt;}
.y65{bottom:225.866667pt;}
.y121{bottom:226.586667pt;}
.yd9{bottom:228.666667pt;}
.y8e{bottom:229.546667pt;}
.y53{bottom:231.066667pt;}
.yff{bottom:232.266667pt;}
.y52{bottom:240.026667pt;}
.yd8{bottom:244.346667pt;}
.yfe{bottom:247.946667pt;}
.yb2{bottom:248.666667pt;}
.y21{bottom:251.706667pt;}
.y8d{bottom:253.786667pt;}
.y120{bottom:259.546667pt;}
.yd7{bottom:259.946667pt;}
.yfd{bottom:263.546667pt;}
.y20{bottom:267.306667pt;}
.yb1{bottom:272.906667pt;}
.yd6{bottom:275.546667pt;}
.y8c{bottom:278.106667pt;}
.yfc{bottom:279.226667pt;}
.y51{bottom:279.946667pt;}
.y1f{bottom:282.906667pt;}
.y11f{bottom:283.466667pt;}
.y64{bottom:284.746667pt;}
.yd5{bottom:291.226667pt;}
.yfb{bottom:294.826667pt;}
.y50{bottom:295.626667pt;}
.yb0{bottom:297.226667pt;}
.y1e{bottom:298.586667pt;}
.y8b{bottom:302.426667pt;}
.yd4{bottom:306.826667pt;}
.yfa{bottom:310.426667pt;}
.y1d{bottom:314.186667pt;}
.y63{bottom:316.426667pt;}
.y11e{bottom:316.666667pt;}
.yaf{bottom:321.546667pt;}
.y143{bottom:322.826667pt;}
.yf9{bottom:326.106667pt;}
.y89{bottom:326.746667pt;}
.y4f{bottom:327.226667pt;}
.y1c{bottom:329.866667pt;}
.y62{bottom:332.026667pt;}
.yd3{bottom:338.426667pt;}
.yf8{bottom:341.706667pt;}
.y4e{bottom:342.906667pt;}
.y1b{bottom:345.466667pt;}
.yae{bottom:345.866667pt;}
.y61{bottom:347.706667pt;}
.yd2{bottom:354.106667pt;}
.y4d{bottom:358.506667pt;}
.y11d{bottom:359.546667pt;}
.y142{bottom:362.106667pt;}
.y60{bottom:363.306667pt;}
.y1a{bottom:369.386667pt;}
.yd1{bottom:369.706667pt;}
.yad{bottom:370.106667pt;}
.y88{bottom:370.666667pt;}
.yf7{bottom:373.386667pt;}
.y4c{bottom:374.106667pt;}
.y11c{bottom:375.146667pt;}
.y141{bottom:377.706667pt;}
.yd0{bottom:385.386667pt;}
.yf6{bottom:388.986667pt;}
.y11b{bottom:390.826667pt;}
.yac{bottom:394.426667pt;}
.y5f{bottom:394.906667pt;}
.y4b{bottom:397.786667pt;}
.ycf{bottom:400.986667pt;}
.y140{bottom:401.306667pt;}
.yf5{bottom:405.386667pt;}
.y11a{bottom:406.426667pt;}
.y19{bottom:412.586667pt;}
.y87{bottom:413.946667pt;}
.yce{bottom:416.586667pt;}
.y13f{bottom:416.986667pt;}
.yab{bottom:418.773333pt;}
.yf4{bottom:421.013333pt;}
.y119{bottom:422.133333pt;}
.y5e{bottom:423.733333pt;}
.y4a{bottom:429.413333pt;}
.ycd{bottom:432.293333pt;}
.y5d{bottom:432.693333pt;}
.y118{bottom:437.733333pt;}
.y13e{bottom:440.613333pt;}
.yaa{bottom:443.093333pt;}
.y49{bottom:445.093333pt;}
.y18{bottom:445.493333pt;}
.y86{bottom:445.573333pt;}
.ycc{bottom:447.893333pt;}
.y117{bottom:453.333333pt;}
.yf3{bottom:453.413333pt;}
.y13d{bottom:456.293333pt;}
.y48{bottom:460.693333pt;}
.y17{bottom:461.173333pt;}
.y85{bottom:461.253333pt;}
.ya9{bottom:467.333333pt;}
.yf2{bottom:469.013333pt;}
.y5c{bottom:470.373333pt;}
.ycb{bottom:471.573333pt;}
.y13c{bottom:471.893333pt;}
.y47{bottom:476.293333pt;}
.y16{bottom:476.773333pt;}
.y84{bottom:476.853333pt;}
.y5b{bottom:479.333333pt;}
.ya8{bottom:491.653333pt;}
.y46{bottom:491.973333pt;}
.y15{bottom:492.373333pt;}
.y83{bottom:492.453333pt;}
.yf1{bottom:492.613333pt;}
.y116{bottom:492.933333pt;}
.y13b{bottom:495.493333pt;}
.yca{bottom:502.533333pt;}
.y45{bottom:507.573333pt;}
.y14{bottom:508.053333pt;}
.y82{bottom:508.133333pt;}
.y13a{bottom:511.173333pt;}
.yc9{bottom:513.333333pt;}
.ya7{bottom:515.973333pt;}
.y5a{bottom:517.013333pt;}
.yf0{bottom:521.973333pt;}
.y44{bottom:523.253333pt;}
.y13{bottom:523.653333pt;}
.y59{bottom:525.973333pt;}
.y139{bottom:534.773333pt;}
.y115{bottom:535.813333pt;}
.yc8{bottom:537.653333pt;}
.y43{bottom:538.853333pt;}
.y12{bottom:539.333333pt;}
.y81{bottom:539.733333pt;}
.ya6{bottom:540.213333pt;}
.yee{bottom:546.213333pt;}
.y138{bottom:550.453333pt;}
.y114{bottom:551.413333pt;}
.y11{bottom:554.933333pt;}
.y80{bottom:555.413333pt;}
.yc7{bottom:561.973333pt;}
.y42{bottom:562.453333pt;}
.ya5{bottom:564.533333pt;}
.y58{bottom:566.293333pt;}
.y113{bottom:567.093333pt;}
.y10{bottom:570.533333pt;}
.y7f{bottom:571.013333pt;}
.y137{bottom:574.053333pt;}
.y57{bottom:575.253333pt;}
.y112{bottom:582.693333pt;}
.yf{bottom:586.213333pt;}
.y7e{bottom:586.613333pt;}
.ya4{bottom:588.853333pt;}
.y136{bottom:589.653333pt;}
.yed{bottom:590.213333pt;}
.y41{bottom:594.373333pt;}
.y111{bottom:598.373333pt;}
.ye{bottom:601.813333pt;}
.y7d{bottom:602.293333pt;}
.yc6{bottom:610.533333pt;}
.ya3{bottom:613.173333pt;}
.y135{bottom:613.333333pt;}
.y110{bottom:613.973333pt;}
.yec{bottom:614.453333pt;}
.y56{bottom:615.573333pt;}
.yd{bottom:617.493333pt;}
.y7c{bottom:617.893333pt;}
.y134{bottom:628.933333pt;}
.y10f{bottom:629.573333pt;}
.yc{bottom:633.093333pt;}
.yc5{bottom:634.853333pt;}
.y40{bottom:637.333333pt;}
.ya2{bottom:637.413333pt;}
.yeb{bottom:638.773333pt;}
.y7b{bottom:641.573333pt;}
.y55{bottom:644.213333pt;}
.y10e{bottom:645.253333pt;}
.y133{bottom:652.613333pt;}
.y3f{bottom:652.933333pt;}
.yb{bottom:657.013333pt;}
.yc4{bottom:659.173333pt;}
.y10d{bottom:660.853333pt;}
.ya1{bottom:661.733333pt;}
.yea{bottom:663.093333pt;}
.y132{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.y7a{bottom:673.413333pt;}
.y10c{bottom:676.533333pt;}
.yc3{bottom:683.413333pt;}
.y3d{bottom:684.213333pt;}
.ya0{bottom:686.053333pt;}
.ye9{bottom:687.333333pt;}
.y131{bottom:691.813333pt;}
.ya{bottom:699.893333pt;}
.y10b{bottom:700.133333pt;}
.y130{bottom:707.493333pt;}
.yc2{bottom:707.733333pt;}
.y9f{bottom:710.373333pt;}
.y3c{bottom:715.813333pt;}
.y79{bottom:716.373333pt;}
.y12f{bottom:723.093333pt;}
.ye8{bottom:727.333333pt;}
.y3b{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y78{bottom:731.973333pt;}
.yc1{bottom:732.053333pt;}
.y9e{bottom:734.613333pt;}
.y12e{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.y10a{bottom:747.413333pt;}
.y77{bottom:747.653333pt;}
.ye7{bottom:751.573333pt;}
.yc0{bottom:756.373333pt;}
.y9d{bottom:758.933333pt;}
.y12d{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y109{bottom:763.013333pt;}
.y8{bottom:763.733333pt;}
.y76{bottom:771.253333pt;}
.ye6{bottom:775.893333pt;}
.y38{bottom:778.373333pt;}
.y108{bottom:778.693333pt;}
.ybf{bottom:780.613333pt;}
.y9c{bottom:783.253333pt;}
.y12c{bottom:785.973333pt;}
.y37{bottom:793.973333pt;}
.y107{bottom:794.293333pt;}
.y7{bottom:799.093333pt;}
.ye5{bottom:800.213333pt;}
.y75{bottom:800.533333pt;}
.y12b{bottom:801.653333pt;}
.ybe{bottom:804.933333pt;}
.y9b{bottom:807.493333pt;}
.y36{bottom:809.653333pt;}
.y106{bottom:809.893333pt;}
.y6{bottom:815.093333pt;}
.ye4{bottom:824.533333pt;}
.y74{bottom:824.853333pt;}
.y35{bottom:825.253333pt;}
.y105{bottom:825.573333pt;}
.ybd{bottom:829.253333pt;}
.y9a{bottom:831.813333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.ye3{bottom:848.773333pt;}
.y73{bottom:849.173333pt;}
.y99{bottom:856.133333pt;}
.y12a{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.ye2{bottom:873.093333pt;}
.y72{bottom:873.493333pt;}
.y4{bottom:877.893333pt;}
.y129{bottom:880.133333pt;}
.y98{bottom:880.453333pt;}
.y104{bottom:881.093333pt;}
.y32{bottom:888.133333pt;}
.ye0{bottom:897.413333pt;}
.y71{bottom:897.760000pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.ybc{bottom:904.160000pt;}
.y97{bottom:904.720000pt;}
.y30{bottom:919.440000pt;}
.ybb{bottom:919.840000pt;}
.ydf{bottom:921.680000pt;}
.y96{bottom:929.040000pt;}
.y2f{bottom:935.040000pt;}
.yba{bottom:935.440000pt;}
.y70{bottom:937.680000pt;}
.yde{bottom:946.000000pt;}
.yb9{bottom:951.040000pt;}
.y95{bottom:953.360000pt;}
.y128{bottom:958.720000pt;}
.y6f{bottom:962.000000pt;}
.y2e{bottom:966.720000pt;}
.ydd{bottom:970.320000pt;}
.y127{bottom:974.320000pt;}
.y94{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y6e{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h12{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h13{height:36.034687pt;}
.he{height:39.280000pt;}
.h11{height:43.200000pt;}
.h14{height:43.280000pt;}
.h7{height:45.246562pt;}
.h16{height:48.000000pt;}
.h5{height:49.581562pt;}
.hd{height:53.937500pt;}
.h8{height:54.187500pt;}
.h15{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:81.086562pt;}
.hb{height:85.357812pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w21{width:35.946667pt;}
.w3{width:66.000000pt;}
.w8{width:71.360000pt;}
.wc{width:82.506667pt;}
.w10{width:90.586667pt;}
.w23{width:96.400000pt;}
.w25{width:100.480000pt;}
.w1e{width:102.720000pt;}
.we{width:102.800000pt;}
.w1c{width:106.346667pt;}
.w16{width:109.360000pt;}
.w7{width:113.920000pt;}
.w4{width:118.346667pt;}
.w1b{width:119.280000pt;}
.w5{width:119.360000pt;}
.w14{width:125.146667pt;}
.wd{width:125.360000pt;}
.w1d{width:125.440000pt;}
.w15{width:132.000000pt;}
.w22{width:137.600000pt;}
.w13{width:170.400000pt;}
.w6{width:179.386667pt;}
.w9{width:190.986667pt;}
.wa{width:202.506667pt;}
.w19{width:208.986667pt;}
.w1a{width:226.346667pt;}
.wb{width:228.800000pt;}
.w12{width:242.080000pt;}
.w18{width:261.706667pt;}
.w24{width:276.266667pt;}
.w11{width:296.186667pt;}
.w20{width:377.386667pt;}
.w17{width:387.493333pt;}
.wf{width:394.133333pt;}
.w1f{width:436.053333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.520000pt;}
.x1a{left:6.880000pt;}
.x1{left:60.480000pt;}
.x20{left:64.240000pt;}
.x26{left:72.320000pt;}
.x19{left:81.840000pt;}
.x15{left:85.200000pt;}
.x2b{left:98.879988pt;}
.x25{left:108.479988pt;}
.x11{left:127.840000pt;}
.x1b{left:173.146667pt;}
.x2{left:187.626655pt;}
.x7{left:224.266655pt;}
.x12{left:246.826667pt;}
.x21{left:273.946667pt;}
.x16{left:276.826667pt;}
.x1f{left:309.146655pt;}
.xa{left:328.346655pt;}
.x8{left:331.866655pt;}
.x1d{left:344.186667pt;}
.x2a{left:349.226667pt;}
.x4{left:352.826655pt;}
.x9{left:357.146655pt;}
.xb{left:358.826655pt;}
.xd{left:365.946655pt;}
.xf{left:371.866655pt;}
.x5{left:380.986655pt;}
.xc{left:384.106655pt;}
.x23{left:393.946667pt;}
.xe{left:397.146655pt;}
.x27{left:450.426667pt;}
.x1c{left:470.053333pt;}
.x17{left:480.053333pt;}
.x28{left:487.013333pt;}
.x22{left:500.933333pt;}
.x13{left:546.853333pt;}
.x1e{left:602.773333pt;}
.x18{left:606.053333pt;}
.x29{left:625.253333pt;}
.x24{left:627.013333pt;}
.x14{left:661.493333pt;}
.x6{left:676.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; }
  