
    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_a35889c0513725b3dd6ed197.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_888c87935c9b900266986579.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_22854aaedbf4c484c6d75fcf.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_0a4a641ee7473005b2dcd6d4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_65e64684e78f1e7c3429debe.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_494b2877106b7b820c91942b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_7eb357abb48c6a0e0ff25fca.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7d95d09b99d5cf0657eaf83f.woff')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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls9{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.117600px;}
.ls4{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.068400px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.lse{letter-spacing:0.199200px;}
.lsb{letter-spacing:0.206640px;}
.ls0{letter-spacing:13.347360px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.294800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:3.327120px;}
._9{margin-left:-3.488810px;}
._1{margin-left:-2.329248px;}
._0{margin-left:-1.110000px;}
._2{width:1.071132px;}
._5{width:2.197405px;}
._8{width:3.282159px;}
._7{width:4.599596px;}
._6{width:5.740202px;}
._4{width:7.033800px;}
._17{width:8.056080px;}
._c{width:9.198600px;}
._b{width:10.608720px;}
._a{width:11.723400px;}
._2d{width:14.669280px;}
._f{width:16.052040px;}
._10{width:17.555040px;}
._e{width:18.845400px;}
._d{width:19.899720px;}
._11{width:21.643200px;}
._12{width:22.671852px;}
._3{width:24.157188px;}
._47{width:25.611120px;}
._34{width:27.354600px;}
._1b{width:28.617120px;}
._63{width:29.699280px;}
._16{width:31.142160px;}
._20{width:32.224320px;}
._67{width:33.317508px;}
._19{width:34.749360px;}
._3b{width:36.552960px;}
._51{width:38.476800px;}
._54{width:39.498840px;}
._13{width:41.663160px;}
._61{width:43.526880px;}
._21{width:45.570960px;}
._56{width:46.653120px;}
._58{width:48.456720px;}
._35{width:49.478760px;}
._52{width:50.681160px;}
._4f{width:51.703200px;}
._5d{width:53.446680px;}
._4b{width:55.671120px;}
._2b{width:57.775320px;}
._18{width:59.639040px;}
._28{width:62.584920px;}
._1e{width:63.847440px;}
._26{width:65.350440px;}
._14{width:67.154040px;}
._55{width:68.596920px;}
._2e{width:70.039800px;}
._1c{width:71.482680px;}
._5f{width:72.925560px;}
._42{width:74.909520px;}
._4d{width:77.915520px;}
._2a{width:83.386440px;}
._30{width:84.588840px;}
._32{width:86.272200px;}
._46{width:88.917480px;}
._3a{width:90.901440px;}
._50{width:91.983600px;}
._65{width:93.306240px;}
._22{width:94.508640px;}
._5e{width:95.590800px;}
._4c{width:96.793200px;}
._59{width:98.115840px;}
._23{width:99.198000px;}
._49{width:100.821240px;}
._25{width:103.045680px;}
._3e{width:105.330240px;}
._62{width:107.434440px;}
._1f{width:110.380320px;}
._3d{width:112.424400px;}
._24{width:114.708960px;}
._44{width:117.113760px;}
._37{width:120.059640px;}
._29{width:121.081680px;}
._41{width:123.847200px;}
._4e{width:124.929360px;}
._3f{width:126.612720px;}
._27{width:127.634760px;}
._57{width:129.077640px;}
._66{width:130.520520px;}
._2f{width:132.324120px;}
._5b{width:134.067600px;}
._5c{width:136.833120px;}
._60{width:138.756960px;}
._2c{width:140.380200px;}
._40{width:142.785000px;}
._5a{width:144.047520px;}
._31{width:148.556520px;}
._3c{width:152.464320px;}
._64{width:155.891160px;}
._38{width:164.668680px;}
._39{width:169.358040px;}
._45{width:177.474240px;}
._43{width:181.562400px;}
._4a{width:182.824920px;}
._33{width:185.530320px;}
._1a{width:191.301840px;}
._48{width:217.574280px;}
._53{width:221.902920px;}
._15{width:223.646400px;}
._1d{width:228.335760px;}
._36{width:233.566200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:3.420000px;}
.y7e{bottom:7.830000px;}
.y84{bottom:7.920000px;}
.y95{bottom:10.710000px;}
.yae{bottom:20.970000px;}
.ya0{bottom:25.380000px;}
.y7d{bottom:25.470000px;}
.y94{bottom:28.260000px;}
.yad{bottom:38.520000px;}
.y8a{bottom:43.020000px;}
.yb9{bottom:43.050000px;}
.y83{bottom:43.110000px;}
.yac{bottom:56.160000px;}
.y89{bottom:60.570000px;}
.yb8{bottom:60.600000px;}
.y82{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.yab{bottom:73.710000px;}
.y29{bottom:74.190000px;}
.y7a{bottom:74.460000px;}
.y9f{bottom:78.120000px;}
.y81{bottom:78.210000px;}
.yb7{bottom:78.240000px;}
.yaa{bottom:91.350000px;}
.ya5{bottom:93.810000px;}
.y90{bottom:95.070000px;}
.y88{bottom:95.760000px;}
.yb6{bottom:95.790000px;}
.y80{bottom:95.850000px;}
.y1{bottom:100.200000px;}
.ya9{bottom:108.900000px;}
.ybc{bottom:111.990000px;}
.y9e{bottom:113.310000px;}
.y87{bottom:113.400000px;}
.ya4{bottom:113.430000px;}
.y19d{bottom:113.700000px;}
.yd6{bottom:116.580000px;}
.y155{bottom:123.690000px;}
.ya8{bottom:126.450000px;}
.yfb{bottom:128.100000px;}
.y172{bottom:130.530000px;}
.y86{bottom:130.950000px;}
.y8f{bottom:130.980000px;}
.y92{bottom:131.040000px;}
.ya3{bottom:131.070000px;}
.y19c{bottom:131.250000px;}
.y5a{bottom:134.130000px;}
.y154{bottom:141.330000px;}
.ya7{bottom:144.090000px;}
.yfa{bottom:145.650000px;}
.ybb{bottom:147.540000px;}
.y171{bottom:148.170000px;}
.y9d{bottom:148.500000px;}
.yb5{bottom:148.530000px;}
.y91{bottom:148.590000px;}
.y8e{bottom:148.620000px;}
.y19b{bottom:148.890000px;}
.yd5{bottom:151.680000px;}
.y27{bottom:153.840000px;}
.ya6{bottom:161.640000px;}
.yba{bottom:162.480000px;}
.yf9{bottom:163.200000px;}
.y170{bottom:165.720000px;}
.y9c{bottom:166.050000px;}
.yb2{bottom:166.140000px;}
.y8d{bottom:166.170000px;}
.y59{bottom:169.680000px;}
.y26{bottom:171.390000px;}
.y126{bottom:174.090000px;}
.y19a{bottom:175.440000px;}
.y153{bottom:176.880000px;}
.yf8{bottom:180.840000px;}
.y9b{bottom:183.690000px;}
.yb4{bottom:183.720000px;}
.y8c{bottom:183.810000px;}
.yd4{bottom:187.320000px;}
.y25{bottom:189.030000px;}
.y125{bottom:191.640000px;}
.y199{bottom:193.080000px;}
.y152{bottom:194.430000px;}
.y9a{bottom:201.240000px;}
.y16f{bottom:201.270000px;}
.ya2{bottom:201.360000px;}
.yd3{bottom:204.870000px;}
.y58{bottom:205.320000px;}
.y24{bottom:206.580000px;}
.yf7{bottom:207.390000px;}
.y124{bottom:209.280000px;}
.y151{bottom:212.070000px;}
.y99{bottom:218.880000px;}
.y16e{bottom:218.910000px;}
.y198{bottom:219.630000px;}
.yd2{bottom:222.510000px;}
.y57{bottom:222.870000px;}
.y123{bottom:226.830000px;}
.y150{bottom:229.620000px;}
.y98{bottom:236.460000px;}
.y197{bottom:237.180000px;}
.yd1{bottom:240.060000px;}
.y56{bottom:240.510000px;}
.y23{bottom:242.220000px;}
.y122{bottom:244.380000px;}
.yf6{bottom:245.910000px;}
.y14f{bottom:247.260000px;}
.y97{bottom:254.010000px;}
.y16d{bottom:254.100000px;}
.yd0{bottom:257.610000px;}
.y55{bottom:258.060000px;}
.y22{bottom:259.770000px;}
.y121{bottom:262.020000px;}
.y8b{bottom:263.100000px;}
.yf5{bottom:263.550000px;}
.y196{bottom:263.820000px;}
.y14e{bottom:264.810000px;}
.y16c{bottom:271.650000px;}
.ya1{bottom:274.890000px;}
.y54{bottom:275.610000px;}
.y21{bottom:277.320000px;}
.y120{bottom:279.570000px;}
.yf4{bottom:281.190000px;}
.y195{bottom:281.370000px;}
.y16b{bottom:289.200000px;}
.y53{bottom:293.250000px;}
.y20{bottom:294.960000px;}
.y11f{bottom:297.120000px;}
.yf3{bottom:298.740000px;}
.y14d{bottom:300.360000px;}
.y16a{bottom:306.840000px;}
.y194{bottom:308.010000px;}
.ycf{bottom:310.800000px;}
.y1f{bottom:312.510000px;}
.y11e{bottom:314.760000px;}
.yf2{bottom:316.290000px;}
.y14c{bottom:318.000000px;}
.y193{bottom:325.560000px;}
.yce{bottom:328.440000px;}
.y52{bottom:328.800000px;}
.y1e{bottom:330.150000px;}
.y11d{bottom:332.310000px;}
.y14b{bottom:335.550000px;}
.y1b8{bottom:336.540000px;}
.y169{bottom:342.390000px;}
.ycd{bottom:345.990000px;}
.y51{bottom:346.440000px;}
.yb3{bottom:348.150000px;}
.y192{bottom:352.110000px;}
.y14a{bottom:353.190000px;}
.y1b7{bottom:354.180000px;}
.yf1{bottom:354.900000px;}
.y1d{bottom:356.970000px;}
.y11c{bottom:358.860000px;}
.y168{bottom:359.940000px;}
.ycc{bottom:363.540000px;}
.y50{bottom:363.990000px;}
.y191{bottom:369.750000px;}
.y149{bottom:370.740000px;}
.yf0{bottom:372.540000px;}
.y167{bottom:377.580000px;}
.y1b6{bottom:380.730000px;}
.y4f{bottom:381.540000px;}
.y148{bottom:388.290000px;}
.yef{bottom:390.090000px;}
.y11b{bottom:391.530000px;}
.y166{bottom:395.130000px;}
.y190{bottom:396.300000px;}
.y1b5{bottom:398.370000px;}
.y4e{bottom:399.180000px;}
.y1c{bottom:405.570000px;}
.yee{bottom:407.640000px;}
.y165{bottom:412.770000px;}
.y18f{bottom:413.940000px;}
.y4d{bottom:416.730000px;}
.y147{bottom:423.930000px;}
.y1b4{bottom:424.920000px;}
.yed{bottom:425.280000px;}
.y11a{bottom:427.080000px;}
.y164{bottom:430.320000px;}
.ycb{bottom:434.370000px;}
.y18e{bottom:440.490000px;}
.y146{bottom:441.480000px;}
.y1b3{bottom:442.470000px;}
.y1b{bottom:442.650000px;}
.y119{bottom:444.720000px;}
.yec{bottom:451.830000px;}
.yca{bottom:451.920000px;}
.y4c{bottom:452.370000px;}
.y18d{bottom:458.040000px;}
.y145{bottom:459.120000px;}
.y1a{bottom:460.200000px;}
.y118{bottom:462.270000px;}
.y163{bottom:465.870000px;}
.y85{bottom:466.350000px;}
.y1b2{bottom:469.110000px;}
.yc9{bottom:469.470000px;}
.y4b{bottom:469.950000px;}
.y144{bottom:476.700000px;}
.y19{bottom:477.870000px;}
.y117{bottom:479.850000px;}
.y162{bottom:483.540000px;}
.yeb{bottom:484.440000px;}
.y18c{bottom:484.710000px;}
.y1b1{bottom:486.690000px;}
.y4a{bottom:487.500000px;}
.y143{bottom:494.250000px;}
.y18{bottom:495.420000px;}
.y96{bottom:495.780000px;}
.y116{bottom:497.490000px;}
.y161{bottom:501.090000px;}
.y18b{bottom:502.260000px;}
.y49{bottom:505.140000px;}
.y142{bottom:511.890000px;}
.y17{bottom:512.970000px;}
.y1b0{bottom:513.330000px;}
.y78{bottom:518.730000px;}
.yea{bottom:520.080000px;}
.y48{bottom:522.690000px;}
.y115{bottom:524.040000px;}
.y18a{bottom:528.900000px;}
.y141{bottom:529.440000px;}
.y16{bottom:530.610000px;}
.y1af{bottom:530.880000px;}
.y160{bottom:536.280000px;}
.ye9{bottom:537.630000px;}
.y47{bottom:540.330000px;}
.y189{bottom:546.450000px;}
.y140{bottom:547.080000px;}
.y15{bottom:548.160000px;}
.yb1{bottom:551.310000px;}
.y77{bottom:554.280000px;}
.ye8{bottom:555.180000px;}
.y1ae{bottom:557.430000px;}
.y46{bottom:557.880000px;}
.y114{bottom:562.560000px;}
.y14{bottom:565.800000px;}
.y76{bottom:571.830000px;}
.ye7{bottom:572.820000px;}
.y188{bottom:573.000000px;}
.y1ad{bottom:575.070000px;}
.yc8{bottom:575.430000px;}
.y113{bottom:580.200000px;}
.y13f{bottom:582.630000px;}
.y13{bottom:583.350000px;}
.y75{bottom:589.470000px;}
.ye6{bottom:590.370000px;}
.y187{bottom:590.640000px;}
.y45{bottom:593.430000px;}
.y112{bottom:597.840000px;}
.y13e{bottom:600.180000px;}
.y12{bottom:600.900000px;}
.y1ac{bottom:601.620000px;}
.y74{bottom:607.020000px;}
.y44{bottom:611.070000px;}
.y111{bottom:615.390000px;}
.y7f{bottom:616.740000px;}
.ye5{bottom:617.010000px;}
.y186{bottom:617.190000px;}
.y13d{bottom:617.820000px;}
.y11{bottom:618.540000px;}
.y1ab{bottom:619.260000px;}
.y73{bottom:624.660000px;}
.y43{bottom:628.620000px;}
.y110{bottom:632.940000px;}
.y185{bottom:634.830000px;}
.y13c{bottom:635.370000px;}
.y10{bottom:636.090000px;}
.y15f{bottom:642.210000px;}
.y1aa{bottom:645.810000px;}
.y42{bottom:646.260000px;}
.y13b{bottom:653.010000px;}
.yf{bottom:653.640000px;}
.ye4{bottom:655.440000px;}
.y15e{bottom:659.760000px;}
.y72{bottom:660.210000px;}
.y184{bottom:661.380000px;}
.y1a9{bottom:663.360000px;}
.y41{bottom:663.810000px;}
.y13a{bottom:670.560000px;}
.ye{bottom:671.280000px;}
.y10f{bottom:671.550000px;}
.ye3{bottom:673.170000px;}
.y15d{bottom:677.400000px;}
.y71{bottom:677.760000px;}
.y183{bottom:678.930000px;}
.y40{bottom:681.360000px;}
.yd{bottom:688.830000px;}
.y10e{bottom:689.190000px;}
.y1a8{bottom:690.000000px;}
.y15c{bottom:694.950000px;}
.y70{bottom:695.400000px;}
.y139{bottom:697.470000px;}
.y3f{bottom:699.000000px;}
.y182{bottom:705.570000px;}
.y10d{bottom:706.740000px;}
.y1a7{bottom:707.550000px;}
.ye2{bottom:711.600000px;}
.y6f{bottom:712.950000px;}
.yc{bottom:715.740000px;}
.y15b{bottom:721.860000px;}
.y181{bottom:723.120000px;}
.ye1{bottom:729.330000px;}
.y6e{bottom:730.590000px;}
.y7c{bottom:732.060000px;}
.y10c{bottom:733.290000px;}
.y1a6{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.y138{bottom:745.710000px;}
.ye0{bottom:746.880000px;}
.y6d{bottom:748.140000px;}
.y180{bottom:749.670000px;}
.y1a5{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.yb0{bottom:754.560000px;}
.y137{bottom:763.350000px;}
.yb{bottom:764.070000px;}
.ydf{bottom:764.520000px;}
.y6c{bottom:765.690000px;}
.y10b{bottom:765.870000px;}
.y17f{bottom:767.310000px;}
.y93{bottom:769.320000px;}
.y3c{bottom:769.740000px;}
.y15a{bottom:770.190000px;}
.y1a4{bottom:778.290000px;}
.y136{bottom:780.900000px;}
.yde{bottom:782.070000px;}
.y6b{bottom:783.330000px;}
.y3b{bottom:787.290000px;}
.y159{bottom:787.740000px;}
.y17e{bottom:793.860000px;}
.y1a3{bottom:795.930000px;}
.y7b{bottom:798.390000px;}
.ya{bottom:799.620000px;}
.y6a{bottom:800.880000px;}
.y10a{bottom:801.510000px;}
.y3a{bottom:804.930000px;}
.y158{bottom:805.290000px;}
.y135{bottom:807.450000px;}
.y17d{bottom:811.500000px;}
.y1a2{bottom:813.480000px;}
.y69{bottom:818.520000px;}
.y109{bottom:819.060000px;}
.ydd{bottom:820.680000px;}
.y39{bottom:822.480000px;}
.yc7{bottom:822.930000px;}
.y79{bottom:824.940000px;}
.y17c{bottom:829.050000px;}
.y9{bottom:835.440000px;}
.y108{bottom:836.700000px;}
.ydc{bottom:838.230000px;}
.y38{bottom:840.030000px;}
.yc6{bottom:840.480000px;}
.y134{bottom:843.090000px;}
.y68{bottom:854.070000px;}
.y107{bottom:854.250000px;}
.y17b{bottom:855.600000px;}
.ydb{bottom:855.780000px;}
.y37{bottom:857.670000px;}
.yc5{bottom:858.030000px;}
.y133{bottom:860.640000px;}
.y8{bottom:871.170000px;}
.y67{bottom:871.620000px;}
.y17a{bottom:873.240000px;}
.yda{bottom:873.420000px;}
.yc4{bottom:875.670000px;}
.y132{bottom:878.280000px;}
.y106{bottom:880.800000px;}
.y1a1{bottom:884.220000px;}
.y7{bottom:888.810000px;}
.y66{bottom:889.260000px;}
.y36{bottom:893.220000px;}
.y131{bottom:895.830000px;}
.y179{bottom:899.790000px;}
.yd9{bottom:899.970000px;}
.y1a0{bottom:901.860000px;}
.y65{bottom:906.810000px;}
.y35{bottom:910.860000px;}
.y130{bottom:913.380000px;}
.y178{bottom:917.430000px;}
.y105{bottom:919.320000px;}
.y64{bottom:924.450000px;}
.y6{bottom:924.720000px;}
.y34{bottom:928.410000px;}
.y157{bottom:928.860000px;}
.y12f{bottom:931.020000px;}
.yd8{bottom:932.550000px;}
.y177{bottom:934.980000px;}
.y104{bottom:936.960000px;}
.y63{bottom:942.000000px;}
.y33{bottom:945.960000px;}
.y156{bottom:946.410000px;}
.y12e{bottom:948.570000px;}
.y103{bottom:954.600000px;}
.y62{bottom:959.550000px;}
.y176{bottom:961.890000px;}
.y5{bottom:962.970000px;}
.y32{bottom:963.600000px;}
.yc3{bottom:963.960000px;}
.y12d{bottom:966.210000px;}
.yd7{bottom:968.460000px;}
.y102{bottom:972.150000px;}
.y19f{bottom:972.600000px;}
.y61{bottom:977.190000px;}
.y31{bottom:981.150000px;}
.yc2{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y101{bottom:989.700000px;}
.y19e{bottom:990.150000px;}
.y12c{bottom:992.760000px;}
.y60{bottom:994.740000px;}
.y30{bottom:998.790000px;}
.yc1{bottom:999.150000px;}
.y175{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.yc0{bottom:1016.820000px;}
.y12b{bottom:1025.370000px;}
.y100{bottom:1028.340000px;}
.y2f{bottom:1034.370000px;}
.y174{bottom:1037.070000px;}
.yff{bottom:1045.980000px;}
.y5f{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y12a{bottom:1060.920000px;}
.yfe{bottom:1063.530000px;}
.y5e{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.ybf{bottom:1069.920000px;}
.y173{bottom:1074.420000px;}
.y129{bottom:1078.560000px;}
.yfd{bottom:1081.170000px;}
.y5d{bottom:1083.150000px;}
.y2c{bottom:1087.110000px;}
.ybe{bottom:1087.560000px;}
.y128{bottom:1096.110000px;}
.y5c{bottom:1100.700000px;}
.ybd{bottom:1105.110000px;}
.yfc{bottom:1107.720000px;}
.y127{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y5b{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:32.918906px;}
.h3{height:39.155273px;}
.h11{height:42.480000px;}
.hc{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h15{height:57.240000px;}
.h5{height:57.323320px;}
.h19{height:59.973223px;}
.h1a{height:61.793886px;}
.h9{height:62.585859px;}
.h18{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:114.600000px;}
.he{height:149.670000px;}
.h10{height:167.310000px;}
.h14{height:180.360000px;}
.h17{height:184.860000px;}
.h16{height:202.440000px;}
.hf{height:202.530000px;}
.h13{height:220.080000px;}
.h12{height:272.730000px;}
.ha{height:893.160000px;}
.hb{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:107.850000px;}
.wc{width:110.520000px;}
.w6{width:111.060000px;}
.wb{width:116.760000px;}
.wa{width:117.720000px;}
.w9{width:118.440000px;}
.w8{width:118.530000px;}
.wd{width:118.620000px;}
.we{width:119.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:107.999981px;}
.x10{left:111.239987px;}
.x2{left:192.719987px;}
.x8{left:220.500000px;}
.x9{left:329.160000px;}
.x4{left:377.399981px;}
.xa{left:448.410000px;}
.xb{left:567.660000px;}
.xc{left:686.100000px;}
.x3{left:800.339987px;}
.xd{left:803.580000px;}
.xe{left:914.820000px;}
.xf{left:1034.160000px;}
.x5{left:1129.649981px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.104533pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.060800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.177067pt;}
.lsb{letter-spacing:0.183680pt;}
.ls0{letter-spacing:11.864320pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.wsd{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.817600pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:2.957440pt;}
._9{margin-left:-3.101165pt;}
._1{margin-left:-2.070442pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.952117pt;}
._5{width:1.953249pt;}
._8{width:2.917475pt;}
._7{width:4.088530pt;}
._6{width:5.102402pt;}
._4{width:6.252266pt;}
._17{width:7.160960pt;}
._c{width:8.176534pt;}
._b{width:9.429973pt;}
._a{width:10.420800pt;}
._2d{width:13.039360pt;}
._f{width:14.268480pt;}
._10{width:15.604480pt;}
._e{width:16.751467pt;}
._d{width:17.688640pt;}
._11{width:19.238400pt;}
._12{width:20.152757pt;}
._3{width:21.473056pt;}
._47{width:22.765440pt;}
._34{width:24.315200pt;}
._1b{width:25.437440pt;}
._63{width:26.399360pt;}
._16{width:27.681920pt;}
._20{width:28.643840pt;}
._67{width:29.615563pt;}
._19{width:30.888320pt;}
._3b{width:32.491520pt;}
._51{width:34.201600pt;}
._54{width:35.110080pt;}
._13{width:37.033920pt;}
._61{width:38.690560pt;}
._21{width:40.507520pt;}
._56{width:41.469440pt;}
._58{width:43.072640pt;}
._35{width:43.981120pt;}
._52{width:45.049920pt;}
._4f{width:45.958400pt;}
._5d{width:47.508160pt;}
._4b{width:49.485440pt;}
._2b{width:51.355840pt;}
._18{width:53.012480pt;}
._28{width:55.631040pt;}
._1e{width:56.753280pt;}
._26{width:58.089280pt;}
._14{width:59.692480pt;}
._55{width:60.975040pt;}
._2e{width:62.257600pt;}
._1c{width:63.540160pt;}
._5f{width:64.822720pt;}
._42{width:66.586240pt;}
._4d{width:69.258240pt;}
._2a{width:74.121280pt;}
._30{width:75.190080pt;}
._32{width:76.686400pt;}
._46{width:79.037760pt;}
._3a{width:80.801280pt;}
._50{width:81.763200pt;}
._65{width:82.938880pt;}
._22{width:84.007680pt;}
._5e{width:84.969600pt;}
._4c{width:86.038400pt;}
._59{width:87.214080pt;}
._23{width:88.176000pt;}
._49{width:89.618880pt;}
._25{width:91.596160pt;}
._3e{width:93.626880pt;}
._62{width:95.497280pt;}
._1f{width:98.115840pt;}
._3d{width:99.932800pt;}
._24{width:101.963520pt;}
._44{width:104.101120pt;}
._37{width:106.719680pt;}
._29{width:107.628160pt;}
._41{width:110.086400pt;}
._4e{width:111.048320pt;}
._3f{width:112.544640pt;}
._27{width:113.453120pt;}
._57{width:114.735680pt;}
._66{width:116.018240pt;}
._2f{width:117.621440pt;}
._5b{width:119.171200pt;}
._5c{width:121.629440pt;}
._60{width:123.339520pt;}
._2c{width:124.782400pt;}
._40{width:126.920000pt;}
._5a{width:128.042240pt;}
._31{width:132.050240pt;}
._3c{width:135.523840pt;}
._64{width:138.569920pt;}
._38{width:146.372160pt;}
._39{width:150.540480pt;}
._45{width:157.754880pt;}
._43{width:161.388800pt;}
._4a{width:162.511040pt;}
._33{width:164.915840pt;}
._1a{width:170.046080pt;}
._48{width:193.399360pt;}
._53{width:197.247040pt;}
._15{width:198.796800pt;}
._1d{width:202.965120pt;}
._36{width:207.614400pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:3.040000pt;}
.y7e{bottom:6.960000pt;}
.y84{bottom:7.040000pt;}
.y95{bottom:9.520000pt;}
.yae{bottom:18.640000pt;}
.ya0{bottom:22.560000pt;}
.y7d{bottom:22.640000pt;}
.y94{bottom:25.120000pt;}
.yad{bottom:34.240000pt;}
.y8a{bottom:38.240000pt;}
.yb9{bottom:38.266667pt;}
.y83{bottom:38.320000pt;}
.yac{bottom:49.920000pt;}
.y89{bottom:53.840000pt;}
.yb8{bottom:53.866667pt;}
.y82{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.yab{bottom:65.520000pt;}
.y29{bottom:65.946667pt;}
.y7a{bottom:66.186667pt;}
.y9f{bottom:69.440000pt;}
.y81{bottom:69.520000pt;}
.yb7{bottom:69.546667pt;}
.yaa{bottom:81.200000pt;}
.ya5{bottom:83.386667pt;}
.y90{bottom:84.506667pt;}
.y88{bottom:85.120000pt;}
.yb6{bottom:85.146667pt;}
.y80{bottom:85.200000pt;}
.y1{bottom:89.066667pt;}
.ya9{bottom:96.800000pt;}
.ybc{bottom:99.546667pt;}
.y9e{bottom:100.720000pt;}
.y87{bottom:100.800000pt;}
.ya4{bottom:100.826667pt;}
.y19d{bottom:101.066667pt;}
.yd6{bottom:103.626667pt;}
.y155{bottom:109.946667pt;}
.ya8{bottom:112.400000pt;}
.yfb{bottom:113.866667pt;}
.y172{bottom:116.026667pt;}
.y86{bottom:116.400000pt;}
.y8f{bottom:116.426667pt;}
.y92{bottom:116.480000pt;}
.ya3{bottom:116.506667pt;}
.y19c{bottom:116.666667pt;}
.y5a{bottom:119.226667pt;}
.y154{bottom:125.626667pt;}
.ya7{bottom:128.080000pt;}
.yfa{bottom:129.466667pt;}
.ybb{bottom:131.146667pt;}
.y171{bottom:131.706667pt;}
.y9d{bottom:132.000000pt;}
.yb5{bottom:132.026667pt;}
.y91{bottom:132.080000pt;}
.y8e{bottom:132.106667pt;}
.y19b{bottom:132.346667pt;}
.yd5{bottom:134.826667pt;}
.y27{bottom:136.746667pt;}
.ya6{bottom:143.680000pt;}
.yba{bottom:144.426667pt;}
.yf9{bottom:145.066667pt;}
.y170{bottom:147.306667pt;}
.y9c{bottom:147.600000pt;}
.yb2{bottom:147.680000pt;}
.y8d{bottom:147.706667pt;}
.y59{bottom:150.826667pt;}
.y26{bottom:152.346667pt;}
.y126{bottom:154.746667pt;}
.y19a{bottom:155.946667pt;}
.y153{bottom:157.226667pt;}
.yf8{bottom:160.746667pt;}
.y9b{bottom:163.280000pt;}
.yb4{bottom:163.306667pt;}
.y8c{bottom:163.386667pt;}
.yd4{bottom:166.506667pt;}
.y25{bottom:168.026667pt;}
.y125{bottom:170.346667pt;}
.y199{bottom:171.626667pt;}
.y152{bottom:172.826667pt;}
.y9a{bottom:178.880000pt;}
.y16f{bottom:178.906667pt;}
.ya2{bottom:178.986667pt;}
.yd3{bottom:182.106667pt;}
.y58{bottom:182.506667pt;}
.y24{bottom:183.626667pt;}
.yf7{bottom:184.346667pt;}
.y124{bottom:186.026667pt;}
.y151{bottom:188.506667pt;}
.y99{bottom:194.560000pt;}
.y16e{bottom:194.586667pt;}
.y198{bottom:195.226667pt;}
.yd2{bottom:197.786667pt;}
.y57{bottom:198.106667pt;}
.y123{bottom:201.626667pt;}
.y150{bottom:204.106667pt;}
.y98{bottom:210.186667pt;}
.y197{bottom:210.826667pt;}
.yd1{bottom:213.386667pt;}
.y56{bottom:213.786667pt;}
.y23{bottom:215.306667pt;}
.y122{bottom:217.226667pt;}
.yf6{bottom:218.586667pt;}
.y14f{bottom:219.786667pt;}
.y97{bottom:225.786667pt;}
.y16d{bottom:225.866667pt;}
.yd0{bottom:228.986667pt;}
.y55{bottom:229.386667pt;}
.y22{bottom:230.906667pt;}
.y121{bottom:232.906667pt;}
.y8b{bottom:233.866667pt;}
.yf5{bottom:234.266667pt;}
.y196{bottom:234.506667pt;}
.y14e{bottom:235.386667pt;}
.y16c{bottom:241.466667pt;}
.ya1{bottom:244.346667pt;}
.y54{bottom:244.986667pt;}
.y21{bottom:246.506667pt;}
.y120{bottom:248.506667pt;}
.yf4{bottom:249.946667pt;}
.y195{bottom:250.106667pt;}
.y16b{bottom:257.066667pt;}
.y53{bottom:260.666667pt;}
.y20{bottom:262.186667pt;}
.y11f{bottom:264.106667pt;}
.yf3{bottom:265.546667pt;}
.y14d{bottom:266.986667pt;}
.y16a{bottom:272.746667pt;}
.y194{bottom:273.786667pt;}
.ycf{bottom:276.266667pt;}
.y1f{bottom:277.786667pt;}
.y11e{bottom:279.786667pt;}
.yf2{bottom:281.146667pt;}
.y14c{bottom:282.666667pt;}
.y193{bottom:289.386667pt;}
.yce{bottom:291.946667pt;}
.y52{bottom:292.266667pt;}
.y1e{bottom:293.466667pt;}
.y11d{bottom:295.386667pt;}
.y14b{bottom:298.266667pt;}
.y1b8{bottom:299.146667pt;}
.y169{bottom:304.346667pt;}
.ycd{bottom:307.546667pt;}
.y51{bottom:307.946667pt;}
.yb3{bottom:309.466667pt;}
.y192{bottom:312.986667pt;}
.y14a{bottom:313.946667pt;}
.y1b7{bottom:314.826667pt;}
.yf1{bottom:315.466667pt;}
.y1d{bottom:317.306667pt;}
.y11c{bottom:318.986667pt;}
.y168{bottom:319.946667pt;}
.ycc{bottom:323.146667pt;}
.y50{bottom:323.546667pt;}
.y191{bottom:328.666667pt;}
.y149{bottom:329.546667pt;}
.yf0{bottom:331.146667pt;}
.y167{bottom:335.626667pt;}
.y1b6{bottom:338.426667pt;}
.y4f{bottom:339.146667pt;}
.y148{bottom:345.146667pt;}
.yef{bottom:346.746667pt;}
.y11b{bottom:348.026667pt;}
.y166{bottom:351.226667pt;}
.y190{bottom:352.266667pt;}
.y1b5{bottom:354.106667pt;}
.y4e{bottom:354.826667pt;}
.y1c{bottom:360.506667pt;}
.yee{bottom:362.346667pt;}
.y165{bottom:366.906667pt;}
.y18f{bottom:367.946667pt;}
.y4d{bottom:370.426667pt;}
.y147{bottom:376.826667pt;}
.y1b4{bottom:377.706667pt;}
.yed{bottom:378.026667pt;}
.y11a{bottom:379.626667pt;}
.y164{bottom:382.506667pt;}
.ycb{bottom:386.106667pt;}
.y18e{bottom:391.546667pt;}
.y146{bottom:392.426667pt;}
.y1b3{bottom:393.306667pt;}
.y1b{bottom:393.466667pt;}
.y119{bottom:395.306667pt;}
.yec{bottom:401.626667pt;}
.yca{bottom:401.706667pt;}
.y4c{bottom:402.106667pt;}
.y18d{bottom:407.146667pt;}
.y145{bottom:408.106667pt;}
.y1a{bottom:409.066667pt;}
.y118{bottom:410.906667pt;}
.y163{bottom:414.106667pt;}
.y85{bottom:414.533333pt;}
.y1b2{bottom:416.986667pt;}
.yc9{bottom:417.306667pt;}
.y4b{bottom:417.733333pt;}
.y144{bottom:423.733333pt;}
.y19{bottom:424.773333pt;}
.y117{bottom:426.533333pt;}
.y162{bottom:429.813333pt;}
.yeb{bottom:430.613333pt;}
.y18c{bottom:430.853333pt;}
.y1b1{bottom:432.613333pt;}
.y4a{bottom:433.333333pt;}
.y143{bottom:439.333333pt;}
.y18{bottom:440.373333pt;}
.y96{bottom:440.693333pt;}
.y116{bottom:442.213333pt;}
.y161{bottom:445.413333pt;}
.y18b{bottom:446.453333pt;}
.y49{bottom:449.013333pt;}
.y142{bottom:455.013333pt;}
.y17{bottom:455.973333pt;}
.y1b0{bottom:456.293333pt;}
.y78{bottom:461.093333pt;}
.yea{bottom:462.293333pt;}
.y48{bottom:464.613333pt;}
.y115{bottom:465.813333pt;}
.y18a{bottom:470.133333pt;}
.y141{bottom:470.613333pt;}
.y16{bottom:471.653333pt;}
.y1af{bottom:471.893333pt;}
.y160{bottom:476.693333pt;}
.ye9{bottom:477.893333pt;}
.y47{bottom:480.293333pt;}
.y189{bottom:485.733333pt;}
.y140{bottom:486.293333pt;}
.y15{bottom:487.253333pt;}
.yb1{bottom:490.053333pt;}
.y77{bottom:492.693333pt;}
.ye8{bottom:493.493333pt;}
.y1ae{bottom:495.493333pt;}
.y46{bottom:495.893333pt;}
.y114{bottom:500.053333pt;}
.y14{bottom:502.933333pt;}
.y76{bottom:508.293333pt;}
.ye7{bottom:509.173333pt;}
.y188{bottom:509.333333pt;}
.y1ad{bottom:511.173333pt;}
.yc8{bottom:511.493333pt;}
.y113{bottom:515.733333pt;}
.y13f{bottom:517.893333pt;}
.y13{bottom:518.533333pt;}
.y75{bottom:523.973333pt;}
.ye6{bottom:524.773333pt;}
.y187{bottom:525.013333pt;}
.y45{bottom:527.493333pt;}
.y112{bottom:531.413333pt;}
.y13e{bottom:533.493333pt;}
.y12{bottom:534.133333pt;}
.y1ac{bottom:534.773333pt;}
.y74{bottom:539.573333pt;}
.y44{bottom:543.173333pt;}
.y111{bottom:547.013333pt;}
.y7f{bottom:548.213333pt;}
.ye5{bottom:548.453333pt;}
.y186{bottom:548.613333pt;}
.y13d{bottom:549.173333pt;}
.y11{bottom:549.813333pt;}
.y1ab{bottom:550.453333pt;}
.y73{bottom:555.253333pt;}
.y43{bottom:558.773333pt;}
.y110{bottom:562.613333pt;}
.y185{bottom:564.293333pt;}
.y13c{bottom:564.773333pt;}
.y10{bottom:565.413333pt;}
.y15f{bottom:570.853333pt;}
.y1aa{bottom:574.053333pt;}
.y42{bottom:574.453333pt;}
.y13b{bottom:580.453333pt;}
.yf{bottom:581.013333pt;}
.ye4{bottom:582.613333pt;}
.y15e{bottom:586.453333pt;}
.y72{bottom:586.853333pt;}
.y184{bottom:587.893333pt;}
.y1a9{bottom:589.653333pt;}
.y41{bottom:590.053333pt;}
.y13a{bottom:596.053333pt;}
.ye{bottom:596.693333pt;}
.y10f{bottom:596.933333pt;}
.ye3{bottom:598.373333pt;}
.y15d{bottom:602.133333pt;}
.y71{bottom:602.453333pt;}
.y183{bottom:603.493333pt;}
.y40{bottom:605.653333pt;}
.yd{bottom:612.293333pt;}
.y10e{bottom:612.613333pt;}
.y1a8{bottom:613.333333pt;}
.y15c{bottom:617.733333pt;}
.y70{bottom:618.133333pt;}
.y139{bottom:619.973333pt;}
.y3f{bottom:621.333333pt;}
.y182{bottom:627.173333pt;}
.y10d{bottom:628.213333pt;}
.y1a7{bottom:628.933333pt;}
.ye2{bottom:632.533333pt;}
.y6f{bottom:633.733333pt;}
.yc{bottom:636.213333pt;}
.y15b{bottom:641.653333pt;}
.y181{bottom:642.773333pt;}
.ye1{bottom:648.293333pt;}
.y6e{bottom:649.413333pt;}
.y7c{bottom:650.720000pt;}
.y10c{bottom:651.813333pt;}
.y1a6{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.y138{bottom:662.853333pt;}
.ye0{bottom:663.893333pt;}
.y6d{bottom:665.013333pt;}
.y180{bottom:666.373333pt;}
.y1a5{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.yb0{bottom:670.720000pt;}
.y137{bottom:678.533333pt;}
.yb{bottom:679.173333pt;}
.ydf{bottom:679.573333pt;}
.y6c{bottom:680.613333pt;}
.y10b{bottom:680.773333pt;}
.y17f{bottom:682.053333pt;}
.y93{bottom:683.840000pt;}
.y3c{bottom:684.213333pt;}
.y15a{bottom:684.613333pt;}
.y1a4{bottom:691.813333pt;}
.y136{bottom:694.133333pt;}
.yde{bottom:695.173333pt;}
.y6b{bottom:696.293333pt;}
.y3b{bottom:699.813333pt;}
.y159{bottom:700.213333pt;}
.y17e{bottom:705.653333pt;}
.y1a3{bottom:707.493333pt;}
.y7b{bottom:709.680000pt;}
.ya{bottom:710.773333pt;}
.y6a{bottom:711.893333pt;}
.y10a{bottom:712.453333pt;}
.y3a{bottom:715.493333pt;}
.y158{bottom:715.813333pt;}
.y135{bottom:717.733333pt;}
.y17d{bottom:721.333333pt;}
.y1a2{bottom:723.093333pt;}
.y69{bottom:727.573333pt;}
.y109{bottom:728.053333pt;}
.ydd{bottom:729.493333pt;}
.y39{bottom:731.093333pt;}
.yc7{bottom:731.493333pt;}
.y79{bottom:733.280000pt;}
.y17c{bottom:736.933333pt;}
.y9{bottom:742.613333pt;}
.y108{bottom:743.733333pt;}
.ydc{bottom:745.093333pt;}
.y38{bottom:746.693333pt;}
.yc6{bottom:747.093333pt;}
.y134{bottom:749.413333pt;}
.y68{bottom:759.173333pt;}
.y107{bottom:759.333333pt;}
.y17b{bottom:760.533333pt;}
.ydb{bottom:760.693333pt;}
.y37{bottom:762.373333pt;}
.yc5{bottom:762.693333pt;}
.y133{bottom:765.013333pt;}
.y8{bottom:774.373333pt;}
.y67{bottom:774.773333pt;}
.y17a{bottom:776.213333pt;}
.yda{bottom:776.373333pt;}
.yc4{bottom:778.373333pt;}
.y132{bottom:780.693333pt;}
.y106{bottom:782.933333pt;}
.y1a1{bottom:785.973333pt;}
.y7{bottom:790.053333pt;}
.y66{bottom:790.453333pt;}
.y36{bottom:793.973333pt;}
.y131{bottom:796.293333pt;}
.y179{bottom:799.813333pt;}
.yd9{bottom:799.973333pt;}
.y1a0{bottom:801.653333pt;}
.y65{bottom:806.053333pt;}
.y35{bottom:809.653333pt;}
.y130{bottom:811.893333pt;}
.y178{bottom:815.493333pt;}
.y105{bottom:817.173333pt;}
.y64{bottom:821.733333pt;}
.y6{bottom:821.973333pt;}
.y34{bottom:825.253333pt;}
.y157{bottom:825.653333pt;}
.y12f{bottom:827.573333pt;}
.yd8{bottom:828.933333pt;}
.y177{bottom:831.093333pt;}
.y104{bottom:832.853333pt;}
.y63{bottom:837.333333pt;}
.y33{bottom:840.853333pt;}
.y156{bottom:841.253333pt;}
.y12e{bottom:843.173333pt;}
.y103{bottom:848.533333pt;}
.y62{bottom:852.933333pt;}
.y176{bottom:855.013333pt;}
.y5{bottom:855.973333pt;}
.y32{bottom:856.533333pt;}
.yc3{bottom:856.853333pt;}
.y12d{bottom:858.853333pt;}
.yd7{bottom:860.853333pt;}
.y102{bottom:864.133333pt;}
.y19f{bottom:864.533333pt;}
.y61{bottom:868.613333pt;}
.y31{bottom:872.133333pt;}
.yc2{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y101{bottom:879.733333pt;}
.y19e{bottom:880.133333pt;}
.y12c{bottom:882.453333pt;}
.y60{bottom:884.213333pt;}
.y30{bottom:887.813333pt;}
.yc1{bottom:888.133333pt;}
.y175{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.yc0{bottom:903.840000pt;}
.y12b{bottom:911.440000pt;}
.y100{bottom:914.080000pt;}
.y2f{bottom:919.440000pt;}
.y174{bottom:921.840000pt;}
.yff{bottom:929.760000pt;}
.y5f{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y12a{bottom:943.040000pt;}
.yfe{bottom:945.360000pt;}
.y5e{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.ybf{bottom:951.040000pt;}
.y173{bottom:955.040000pt;}
.y129{bottom:958.720000pt;}
.yfd{bottom:961.040000pt;}
.y5d{bottom:962.800000pt;}
.y2c{bottom:966.320000pt;}
.ybe{bottom:966.720000pt;}
.y128{bottom:974.320000pt;}
.y5c{bottom:978.400000pt;}
.ybd{bottom:982.320000pt;}
.yfc{bottom:984.640000pt;}
.y127{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y5b{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:29.261250pt;}
.h3{height:34.804688pt;}
.h11{height:37.760000pt;}
.hc{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h15{height:50.880000pt;}
.h5{height:50.954062pt;}
.h19{height:53.309531pt;}
.h1a{height:54.927899pt;}
.h9{height:55.631875pt;}
.h18{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:101.866667pt;}
.he{height:133.040000pt;}
.h10{height:148.720000pt;}
.h14{height:160.320000pt;}
.h17{height:164.320000pt;}
.h16{height:179.946667pt;}
.hf{height:180.026667pt;}
.h13{height:195.626667pt;}
.h12{height:242.426667pt;}
.ha{height:793.920000pt;}
.hb{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:95.866667pt;}
.wc{width:98.240000pt;}
.w6{width:98.720000pt;}
.wb{width:103.786667pt;}
.wa{width:104.640000pt;}
.w9{width:105.280000pt;}
.w8{width:105.360000pt;}
.wd{width:105.440000pt;}
.we{width:106.400000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:95.999983pt;}
.x10{left:98.879988pt;}
.x2{left:171.306655pt;}
.x8{left:196.000000pt;}
.x9{left:292.586667pt;}
.x4{left:335.466650pt;}
.xa{left:398.586667pt;}
.xb{left:504.586667pt;}
.xc{left:609.866667pt;}
.x3{left:711.413322pt;}
.xd{left:714.293333pt;}
.xe{left:813.173333pt;}
.xf{left:919.253333pt;}
.x5{left:1004.133317pt;}
}




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