
    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_15c0772d9c1d60aba50773be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_8b1421129052ecaaaefa047a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_b8e80b99c065ce9dbfa57fe2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_945d6f5daf04e2b9571332c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_7135ff4d9e9103499b76e773.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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:ff9;src:url('chunks/assets/font_c6df932eaee3fb7c12528396.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_6c8f6cd6b2c923011bfca588.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.924000px;}
.ls1{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.413400px;}
.ls3{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls2{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.828000px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.170720px;}
.ls5{letter-spacing:64.026720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.526600px;}
.ws9{word-spacing:-14.016000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-6.020160px;}
._12{margin-left:-3.294720px;}
._11{margin-left:-2.187840px;}
._0{margin-left:-1.080000px;}
._b{width:1.160160px;}
._1{width:2.220000px;}
._15{width:3.947280px;}
._14{width:5.210400px;}
._1a{width:6.216480px;}
._18{width:7.923360px;}
._19{width:9.003120px;}
._6{width:10.800000px;}
._4c{width:12.360960px;}
._1b{width:13.694400px;}
._17{width:16.366560px;}
._16{width:17.509680px;}
._39{width:18.680160px;}
._66{width:19.770240px;}
._2e{width:21.309600px;}
._5f{width:22.589280px;}
._21{width:23.904000px;}
._2b{width:24.919920px;}
._1c{width:26.030640px;}
._61{width:27.060960px;}
._2a{width:28.206720px;}
._4a{width:29.616240px;}
._56{width:31.289520px;}
._26{width:33.107040px;}
._5a{width:34.601040px;}
._1e{width:36.548400px;}
._5c{width:38.221680px;}
._31{width:39.501360px;}
._24{width:40.517280px;}
._51{width:42.225600px;}
._64{width:43.470240px;}
._36{width:44.760240px;}
._20{width:46.851840px;}
._2d{width:48.465360px;}
._44{width:50.258160px;}
._2c{width:51.572880px;}
._2f{width:54.142560px;}
._1d{width:58.923360px;}
._68{width:60.775200px;}
._3e{width:62.508960px;}
._69{width:63.704160px;}
._5e{width:65.198160px;}
._60{width:68.425200px;}
._40{width:70.850640px;}
._1f{width:73.504800px;}
._7{width:76.284960px;}
._46{width:77.389200px;}
._62{width:78.858480px;}
._63{width:79.983600px;}
._3c{width:82.528560px;}
._35{width:84.416160px;}
._4e{width:86.472720px;}
._42{width:90.476640px;}
._4d{width:92.030400px;}
._10{width:96.600000px;}
._28{width:99.799200px;}
._30{width:102.642960px;}
._45{width:104.376000px;}
._27{width:106.348080px;}
._4b{width:108.105840px;}
._59{width:111.093840px;}
._47{width:116.507280px;}
._5b{width:118.623600px;}
._33{width:120.092880px;}
._38{width:125.650560px;}
._50{width:129.295920px;}
._65{width:130.575600px;}
._3d{width:131.890320px;}
._22{width:134.400240px;}
._54{width:143.065440px;}
._41{width:146.591280px;}
._29{width:148.443840px;}
._43{width:152.542560px;}
._8{width:154.080000px;}
._55{width:157.228560px;}
._34{width:163.563120px;}
._4f{width:164.937600px;}
._57{width:168.463440px;}
._25{width:172.049040px;}
._23{width:174.235440px;}
._53{width:178.622640px;}
._32{width:179.793120px;}
._3b{width:183.582720px;}
._67{width:185.948400px;}
._58{width:189.797760px;}
._d{width:195.120000px;}
._f{width:196.680000px;}
._3f{width:206.266800px;}
._49{width:212.422080px;}
._5d{width:229.060080px;}
._52{width:247.047840px;}
._48{width:253.442160px;}
._2{width:255.512640px;}
._37{width:266.410080px;}
._3a{width:276.091200px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:5.760000px;}
.yf{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y81{bottom:25.560000px;}
.y8b{bottom:25.740000px;}
.yc3{bottom:25.785000px;}
.yd{bottom:34.560000px;}
.y5{bottom:40.320000px;}
.y80{bottom:45.360000px;}
.ybe{bottom:45.390000px;}
.y87{bottom:45.540000px;}
.yb7{bottom:45.585000px;}
.yc{bottom:55.080000px;}
.y7f{bottom:65.160000px;}
.y86{bottom:65.340000px;}
.ybd{bottom:65.370000px;}
.yc2{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.ye{bottom:71.820000px;}
.yb{bottom:75.420000px;}
.y85{bottom:85.140000px;}
.y7e{bottom:85.170000px;}
.y92{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.y3d{bottom:97.740000px;}
.y129{bottom:99.180000px;}
.y15c{bottom:100.080000px;}
.ya3{bottom:100.440000px;}
.ye3{bottom:100.620000px;}
.y8d{bottom:102.240000px;}
.y84{bottom:104.940000px;}
.y7d{bottom:104.970000px;}
.y91{bottom:104.985000px;}
.y97{bottom:105.120000px;}
.y8a{bottom:105.165000px;}
.y12c{bottom:105.660000px;}
.y102{bottom:105.840000px;}
.y162{bottom:111.960000px;}
.y6c{bottom:112.500000px;}
.y3c{bottom:117.540000px;}
.y128{bottom:118.980000px;}
.y15b{bottom:119.880000px;}
.ya2{bottom:120.240000px;}
.ye2{bottom:120.420000px;}
.ybc{bottom:123.120000px;}
.y83{bottom:124.740000px;}
.y7c{bottom:124.770000px;}
.y90{bottom:124.785000px;}
.y89{bottom:124.965000px;}
.y101{bottom:125.640000px;}
.y2{bottom:125.670000px;}
.y161{bottom:131.940000px;}
.y6b{bottom:133.560000px;}
.y3b{bottom:137.520000px;}
.y15a{bottom:139.680000px;}
.ya1{bottom:140.220000px;}
.y95{bottom:144.570000px;}
.y100{bottom:145.440000px;}
.y160{bottom:151.950000px;}
.y127{bottom:152.310000px;}
.y6a{bottom:153.390000px;}
.y3a{bottom:157.350000px;}
.y159{bottom:159.510000px;}
.ye1{bottom:160.050000px;}
.y8c{bottom:162.570000px;}
.yff{bottom:165.270000px;}
.ya0{bottom:169.050000px;}
.y15f{bottom:171.930000px;}
.y126{bottom:172.110000px;}
.y69{bottom:173.190000px;}
.y39{bottom:177.150000px;}
.y158{bottom:179.490000px;}
.ye0{bottom:179.850000px;}
.yfe{bottom:185.070000px;}
.y9f{bottom:188.850000px;}
.y125{bottom:192.090000px;}
.y68{bottom:192.990000px;}
.y15e{bottom:194.070000px;}
.y38{bottom:196.950000px;}
.y157{bottom:199.290000px;}
.ydf{bottom:199.830000px;}
.ybb{bottom:203.250000px;}
.y12b{bottom:204.870000px;}
.yfd{bottom:205.050000px;}
.y9e{bottom:208.650000px;}
.y124{bottom:211.890000px;}
.y67{bottom:212.790000px;}
.y15d{bottom:213.870000px;}
.y37{bottom:216.750000px;}
.y156{bottom:219.090000px;}
.yde{bottom:219.630000px;}
.y12a{bottom:224.850000px;}
.y9d{bottom:228.450000px;}
.y123{bottom:231.690000px;}
.y66{bottom:232.770000px;}
.yfc{bottom:233.850000px;}
.y36{bottom:236.730000px;}
.y155{bottom:238.890000px;}
.ydd{bottom:239.430000px;}
.yba{bottom:243.570000px;}
.y9c{bottom:248.430000px;}
.y122{bottom:251.490000px;}
.y65{bottom:253.650000px;}
.y35{bottom:256.530000px;}
.y154{bottom:258.690000px;}
.ydc{bottom:259.230000px;}
.y9b{bottom:268.230000px;}
.y121{bottom:271.290000px;}
.y64{bottom:273.450000px;}
.yfb{bottom:274.530000px;}
.y34{bottom:276.330000px;}
.y153{bottom:278.670000px;}
.yb9{bottom:284.070000px;}
.y9a{bottom:288.030000px;}
.y120{bottom:291.270000px;}
.y63{bottom:293.250000px;}
.yfa{bottom:294.330000px;}
.y33{bottom:296.130000px;}
.y152{bottom:298.470000px;}
.y88{bottom:302.070000px;}
.y99{bottom:307.830000px;}
.ydb{bottom:308.010000px;}
.y11f{bottom:311.070000px;}
.y62{bottom:313.050000px;}
.yf9{bottom:315.390000px;}
.y32{bottom:315.930000px;}
.y151{bottom:318.270000px;}
.y98{bottom:322.590000px;}
.yb8{bottom:324.570000px;}
.yda{bottom:328.890000px;}
.y11e{bottom:330.870000px;}
.y61{bottom:333.030000px;}
.y31{bottom:335.910000px;}
.yf8{bottom:336.270000px;}
.y150{bottom:338.070000px;}
.yd9{bottom:349.770000px;}
.y11d{bottom:350.670000px;}
.y60{bottom:352.830000px;}
.y30{bottom:355.710000px;}
.yf7{bottom:357.150000px;}
.y14f{bottom:357.870000px;}
.yb6{bottom:364.890000px;}
.y11c{bottom:370.470000px;}
.yd8{bottom:370.650000px;}
.y5f{bottom:372.630000px;}
.y2f{bottom:375.510000px;}
.yf6{bottom:376.950000px;}
.y14e{bottom:377.850000px;}
.y11b{bottom:390.450000px;}
.yd7{bottom:391.530000px;}
.y5e{bottom:392.430000px;}
.y2e{bottom:395.310000px;}
.y14d{bottom:397.650000px;}
.yf5{bottom:397.830000px;}
.y11a{bottom:407.775000px;}
.y5d{bottom:412.275000px;}
.yd6{bottom:412.455000px;}
.y2d{bottom:415.155000px;}
.y14c{bottom:417.495000px;}
.yf4{bottom:418.935000px;}
.y96{bottom:422.535000px;}
.y119{bottom:424.875000px;}
.yb5{bottom:425.235000px;}
.y5c{bottom:432.075000px;}
.yd5{bottom:432.435000px;}
.y2c{bottom:435.135000px;}
.y14b{bottom:437.295000px;}
.yf3{bottom:438.735000px;}
.y82{bottom:441.795000px;}
.y118{bottom:444.675000px;}
.y5b{bottom:452.055000px;}
.yd4{bottom:452.235000px;}
.y2b{bottom:454.935000px;}
.y14a{bottom:457.095000px;}
.yf2{bottom:459.615000px;}
.yb4{bottom:465.555000px;}
.y5a{bottom:471.855000px;}
.yd3{bottom:473.115000px;}
.y2a{bottom:474.735000px;}
.y149{bottom:477.075000px;}
.yf1{bottom:480.495000px;}
.y59{bottom:491.655000px;}
.yd2{bottom:493.995000px;}
.y29{bottom:494.535000px;}
.y148{bottom:496.875000px;}
.y117{bottom:499.935000px;}
.yf0{bottom:500.295000px;}
.y58{bottom:511.455000px;}
.yd1{bottom:513.795000px;}
.y28{bottom:514.335000px;}
.y147{bottom:516.675000px;}
.yef{bottom:520.275000px;}
.y116{bottom:520.635000px;}
.yb3{bottom:525.855000px;}
.y57{bottom:531.255000px;}
.y27{bottom:534.315000px;}
.yd0{bottom:534.855000px;}
.y146{bottom:536.475000px;}
.yee{bottom:540.075000px;}
.y115{bottom:541.155000px;}
.y94{bottom:542.415000px;}
.y56{bottom:551.235000px;}
.y26{bottom:554.115000px;}
.ycf{bottom:555.735000px;}
.y145{bottom:556.275000px;}
.yed{bottom:560.955000px;}
.y114{bottom:561.675000px;}
.y55{bottom:571.035000px;}
.y25{bottom:573.915000px;}
.y144{bottom:576.255000px;}
.yce{bottom:576.615000px;}
.yec{bottom:580.755000px;}
.y7b{bottom:581.475000px;}
.y113{bottom:582.375000px;}
.yb2{bottom:586.155000px;}
.y54{bottom:590.835000px;}
.y24{bottom:593.715000px;}
.y143{bottom:596.055000px;}
.ycd{bottom:596.415000px;}
.yeb{bottom:600.555000px;}
.y112{bottom:602.895000px;}
.y53{bottom:610.635000px;}
.yb1{bottom:612.435000px;}
.y23{bottom:613.515000px;}
.y142{bottom:615.855000px;}
.yea{bottom:621.435000px;}
.ycc{bottom:625.215000px;}
.y52{bottom:630.435000px;}
.yb0{bottom:632.415000px;}
.y22{bottom:633.495000px;}
.y141{bottom:635.655000px;}
.ye9{bottom:641.415000px;}
.ycb{bottom:645.195000px;}
.y111{bottom:646.635000px;}
.y51{bottom:650.445000px;}
.yaf{bottom:652.245000px;}
.y21{bottom:653.325000px;}
.y140{bottom:655.485000px;}
.ye8{bottom:661.245000px;}
.y110{bottom:663.765000px;}
.yca{bottom:665.025000px;}
.y50{bottom:670.245000px;}
.yae{bottom:672.045000px;}
.y20{bottom:673.125000px;}
.y13f{bottom:675.465000px;}
.ye7{bottom:681.045000px;}
.y10f{bottom:683.565000px;}
.yc9{bottom:684.825000px;}
.y4f{bottom:690.045000px;}
.yad{bottom:691.845000px;}
.y13e{bottom:692.745000px;}
.y1f{bottom:692.925000px;}
.ye6{bottom:700.845000px;}
.y93{bottom:701.925000px;}
.y10e{bottom:703.545000px;}
.yc8{bottom:704.625000px;}
.y4e{bottom:709.845000px;}
.yac{bottom:711.645000px;}
.y13d{bottom:712.545000px;}
.y1e{bottom:712.725000px;}
.ye5{bottom:720.645000px;}
.y10d{bottom:720.825000px;}
.y79{bottom:721.005000px;}
.yc7{bottom:724.425000px;}
.y4d{bottom:729.645000px;}
.yab{bottom:731.625000px;}
.y13c{bottom:732.345000px;}
.y1d{bottom:732.705000px;}
.yc6{bottom:739.185000px;}
.ye4{bottom:740.625000px;}
.y78{bottom:747.465000px;}
.y4c{bottom:749.625000px;}
.y13b{bottom:752.145000px;}
.y1c{bottom:752.505000px;}
.y10c{bottom:755.385000px;}
.yaa{bottom:760.425000px;}
.y77{bottom:767.265000px;}
.y4b{bottom:769.425000px;}
.y13a{bottom:771.945000px;}
.y1b{bottom:772.305000px;}
.y10b{bottom:775.905000px;}
.ya9{bottom:780.225000px;}
.y76{bottom:787.065000px;}
.y4a{bottom:789.225000px;}
.y139{bottom:791.745000px;}
.y1a{bottom:792.105000px;}
.y10a{bottom:796.605000px;}
.yc5{bottom:799.485000px;}
.ya8{bottom:800.025000px;}
.y75{bottom:806.865000px;}
.y49{bottom:809.025000px;}
.y138{bottom:811.725000px;}
.y19{bottom:811.905000px;}
.y109{bottom:817.125000px;}
.ya7{bottom:819.825000px;}
.y8f{bottom:821.625000px;}
.y74{bottom:826.845000px;}
.y48{bottom:828.825000px;}
.y137{bottom:831.525000px;}
.y18{bottom:831.885000px;}
.y108{bottom:837.645000px;}
.ya6{bottom:839.805000px;}
.yc4{bottom:839.985000px;}
.y73{bottom:846.645000px;}
.y47{bottom:848.805000px;}
.y136{bottom:851.325000px;}
.y17{bottom:851.685000px;}
.y107{bottom:858.345000px;}
.ya5{bottom:859.605000px;}
.y72{bottom:866.445000px;}
.y46{bottom:868.605000px;}
.y135{bottom:871.125000px;}
.y16{bottom:871.485000px;}
.y106{bottom:878.865000px;}
.ya4{bottom:879.405000px;}
.yc1{bottom:880.305000px;}
.y71{bottom:886.245000px;}
.y45{bottom:888.405000px;}
.y134{bottom:890.925000px;}
.y15{bottom:896.505000px;}
.y105{bottom:899.430000px;}
.y70{bottom:907.170000px;}
.y44{bottom:908.250000px;}
.y133{bottom:910.950000px;}
.y14{bottom:911.670000px;}
.y104{bottom:920.130000px;}
.y6f{bottom:926.970000px;}
.y43{bottom:928.050000px;}
.y132{bottom:930.750000px;}
.y13{bottom:933.630000px;}
.y103{bottom:940.650000px;}
.y6e{bottom:946.950000px;}
.y42{bottom:948.030000px;}
.y131{bottom:950.550000px;}
.y12{bottom:954.870000px;}
.yc0{bottom:960.450000px;}
.y8e{bottom:961.350000px;}
.y6d{bottom:966.750000px;}
.y41{bottom:967.830000px;}
.y130{bottom:970.350000px;}
.y11{bottom:978.270000px;}
.y40{bottom:987.630000px;}
.y12f{bottom:990.150000px;}
.ybf{bottom:1000.950000px;}
.y3f{bottom:1007.430000px;}
.y10{bottom:1009.950000px;}
.y12e{bottom:1010.130000px;}
.y3e{bottom:1027.230000px;}
.y12d{bottom:1027.410000px;}
.ya{bottom:1045.050000px;}
.y9{bottom:1060.530000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.581875px;}
.h11{height:19.800000px;}
.h22{height:19.836000px;}
.h21{height:19.980000px;}
.hc{height:21.420000px;}
.h7{height:33.480000px;}
.h10{height:34.855313px;}
.h1d{height:39.600000px;}
.h1e{height:39.780000px;}
.h1b{height:48.496641px;}
.he{height:53.077852px;}
.h8{height:53.573906px;}
.h4{height:58.833281px;}
.h9{height:59.383125px;}
.h20{height:59.400000px;}
.h1c{height:59.580000px;}
.h15{height:59.616000px;}
.ha{height:60.850547px;}
.hf{height:61.197187px;}
.hb{height:65.884219px;}
.h16{height:79.200000px;}
.h1f{height:79.416000px;}
.h3{height:79.936523px;}
.hd{height:85.052461px;}
.h1a{height:99.216000px;}
.h5{height:112.536000px;}
.h17{height:118.980000px;}
.h19{height:119.160000px;}
.h13{height:138.780000px;}
.h12{height:138.816000px;}
.h14{height:138.996000px;}
.h2{height:146.736000px;}
.h18{height:158.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w6{width:42.516000px;}
.w12{width:53.100000px;}
.w13{width:53.316000px;}
.w18{width:73.440000px;}
.w19{width:75.816000px;}
.w14{width:84.960000px;}
.w8{width:95.796000px;}
.w17{width:96.156000px;}
.w15{width:100.656000px;}
.w1c{width:101.700000px;}
.w1d{width:106.056000px;}
.w9{width:106.416000px;}
.wd{width:110.736000px;}
.we{width:116.856000px;}
.wa{width:119.340000px;}
.w16{width:120.060000px;}
.w11{width:127.656000px;}
.wc{width:128.916000px;}
.wb{width:132.876000px;}
.w3{width:137.556000px;}
.w7{width:148.860000px;}
.w1a{width:188.670000px;}
.w1b{width:207.975000px;}
.wf{width:270.570000px;}
.w10{width:276.375000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x6{left:59.579987px;}
.xe{left:65.519987px;}
.x28{left:69.479987px;}
.x18{left:80.999987px;}
.xc{left:92.555987px;}
.x29{left:96.515987px;}
.xf{left:107.136000px;}
.x7{left:113.435987px;}
.x9{left:116.855987px;}
.x4{left:118.470000px;}
.xd{left:119.555987px;}
.x21{left:149.796000px;}
.x15{left:175.350000px;}
.x19{left:181.650000px;}
.xa{left:207.569987px;}
.x27{left:222.329987px;}
.x1a{left:234.750000px;}
.x26{left:249.149987px;}
.x10{left:255.990000px;}
.xb{left:277.454987px;}
.x1b{left:288.075000px;}
.x16{left:292.215000px;}
.x25{left:347.474987px;}
.x11{left:351.795000px;}
.x1c{left:373.035000px;}
.x22{left:423.435000px;}
.x8{left:446.504987px;}
.x12{left:458.205000px;}
.x1d{left:473.685000px;}
.x17{left:562.785000px;}
.x13{left:577.365000px;}
.x1e{left:593.745000px;}
.x23{left:631.410000px;}
.x1f{left:689.910000px;}
.x3{left:702.510000px;}
.x14{left:710.250000px;}
.x24{left:733.110000px;}
.x20{left:763.350000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.367467pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.736000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:41.040640pt;}
.ls5{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.912533pt;}
.ws9{word-spacing:-12.458667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-5.351253pt;}
._12{margin-left:-2.928640pt;}
._11{margin-left:-1.944747pt;}
._0{margin-left:-0.960000pt;}
._b{width:1.031253pt;}
._1{width:1.973333pt;}
._15{width:3.508693pt;}
._14{width:4.631467pt;}
._1a{width:5.525760pt;}
._18{width:7.042987pt;}
._19{width:8.002773pt;}
._6{width:9.600000pt;}
._4c{width:10.987520pt;}
._1b{width:12.172800pt;}
._17{width:14.548053pt;}
._16{width:15.564160pt;}
._39{width:16.604587pt;}
._66{width:17.573547pt;}
._2e{width:18.941867pt;}
._5f{width:20.079360pt;}
._21{width:21.248000pt;}
._2b{width:22.151040pt;}
._1c{width:23.138347pt;}
._61{width:24.054187pt;}
._2a{width:25.072640pt;}
._4a{width:26.325547pt;}
._56{width:27.812907pt;}
._26{width:29.428480pt;}
._5a{width:30.756480pt;}
._1e{width:32.487467pt;}
._5c{width:33.974827pt;}
._31{width:35.112320pt;}
._24{width:36.015360pt;}
._51{width:37.533867pt;}
._64{width:38.640213pt;}
._36{width:39.786880pt;}
._20{width:41.646080pt;}
._2d{width:43.080320pt;}
._44{width:44.673920pt;}
._2c{width:45.842560pt;}
._2f{width:48.126720pt;}
._1d{width:52.376320pt;}
._68{width:54.022400pt;}
._3e{width:55.563520pt;}
._69{width:56.625920pt;}
._5e{width:57.953920pt;}
._60{width:60.822400pt;}
._40{width:62.978347pt;}
._1f{width:65.337600pt;}
._7{width:67.808853pt;}
._46{width:68.790400pt;}
._62{width:70.096427pt;}
._63{width:71.096533pt;}
._3c{width:73.358720pt;}
._35{width:75.036587pt;}
._4e{width:76.864640pt;}
._42{width:80.423680pt;}
._4d{width:81.804800pt;}
._10{width:85.866667pt;}
._28{width:88.710400pt;}
._30{width:91.238187pt;}
._45{width:92.778667pt;}
._27{width:94.531627pt;}
._4b{width:96.094080pt;}
._59{width:98.750080pt;}
._47{width:103.562027pt;}
._5b{width:105.443200pt;}
._33{width:106.749227pt;}
._38{width:111.689387pt;}
._50{width:114.929707pt;}
._65{width:116.067200pt;}
._3d{width:117.235840pt;}
._22{width:119.466880pt;}
._54{width:127.169280pt;}
._41{width:130.303360pt;}
._29{width:131.950080pt;}
._43{width:135.593387pt;}
._8{width:136.960000pt;}
._55{width:139.758720pt;}
._34{width:145.389440pt;}
._4f{width:146.611200pt;}
._57{width:149.745280pt;}
._25{width:152.932480pt;}
._23{width:154.875947pt;}
._53{width:158.775680pt;}
._32{width:159.816107pt;}
._3b{width:163.184640pt;}
._67{width:165.287467pt;}
._58{width:168.709120pt;}
._d{width:173.440000pt;}
._f{width:174.826667pt;}
._3f{width:183.348267pt;}
._49{width:188.819627pt;}
._5d{width:203.608960pt;}
._52{width:219.598080pt;}
._48{width:225.281920pt;}
._2{width:227.122347pt;}
._37{width:236.808960pt;}
._3a{width:245.414400pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:5.120000pt;}
.yf{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y81{bottom:22.720000pt;}
.y8b{bottom:22.880000pt;}
.yc3{bottom:22.920000pt;}
.yd{bottom:30.720000pt;}
.y5{bottom:35.840000pt;}
.y80{bottom:40.320000pt;}
.ybe{bottom:40.346667pt;}
.y87{bottom:40.480000pt;}
.yb7{bottom:40.520000pt;}
.yc{bottom:48.960000pt;}
.y7f{bottom:57.920000pt;}
.y86{bottom:58.080000pt;}
.ybd{bottom:58.106667pt;}
.yc2{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.ye{bottom:63.840000pt;}
.yb{bottom:67.040000pt;}
.y85{bottom:75.680000pt;}
.y7e{bottom:75.706667pt;}
.y92{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.y3d{bottom:86.880000pt;}
.y129{bottom:88.160000pt;}
.y15c{bottom:88.960000pt;}
.ya3{bottom:89.280000pt;}
.ye3{bottom:89.440000pt;}
.y8d{bottom:90.880000pt;}
.y84{bottom:93.280000pt;}
.y7d{bottom:93.306667pt;}
.y91{bottom:93.320000pt;}
.y97{bottom:93.440000pt;}
.y8a{bottom:93.480000pt;}
.y12c{bottom:93.920000pt;}
.y102{bottom:94.080000pt;}
.y162{bottom:99.520000pt;}
.y6c{bottom:100.000000pt;}
.y3c{bottom:104.480000pt;}
.y128{bottom:105.760000pt;}
.y15b{bottom:106.560000pt;}
.ya2{bottom:106.880000pt;}
.ye2{bottom:107.040000pt;}
.ybc{bottom:109.440000pt;}
.y83{bottom:110.880000pt;}
.y7c{bottom:110.906667pt;}
.y90{bottom:110.920000pt;}
.y89{bottom:111.080000pt;}
.y101{bottom:111.680000pt;}
.y2{bottom:111.706667pt;}
.y161{bottom:117.280000pt;}
.y6b{bottom:118.720000pt;}
.y3b{bottom:122.240000pt;}
.y15a{bottom:124.160000pt;}
.ya1{bottom:124.640000pt;}
.y95{bottom:128.506667pt;}
.y100{bottom:129.280000pt;}
.y160{bottom:135.066667pt;}
.y127{bottom:135.386667pt;}
.y6a{bottom:136.346667pt;}
.y3a{bottom:139.866667pt;}
.y159{bottom:141.786667pt;}
.ye1{bottom:142.266667pt;}
.y8c{bottom:144.506667pt;}
.yff{bottom:146.906667pt;}
.ya0{bottom:150.266667pt;}
.y15f{bottom:152.826667pt;}
.y126{bottom:152.986667pt;}
.y69{bottom:153.946667pt;}
.y39{bottom:157.466667pt;}
.y158{bottom:159.546667pt;}
.ye0{bottom:159.866667pt;}
.yfe{bottom:164.506667pt;}
.y9f{bottom:167.866667pt;}
.y125{bottom:170.746667pt;}
.y68{bottom:171.546667pt;}
.y15e{bottom:172.506667pt;}
.y38{bottom:175.066667pt;}
.y157{bottom:177.146667pt;}
.ydf{bottom:177.626667pt;}
.ybb{bottom:180.666667pt;}
.y12b{bottom:182.106667pt;}
.yfd{bottom:182.266667pt;}
.y9e{bottom:185.466667pt;}
.y124{bottom:188.346667pt;}
.y67{bottom:189.146667pt;}
.y15d{bottom:190.106667pt;}
.y37{bottom:192.666667pt;}
.y156{bottom:194.746667pt;}
.yde{bottom:195.226667pt;}
.y12a{bottom:199.866667pt;}
.y9d{bottom:203.066667pt;}
.y123{bottom:205.946667pt;}
.y66{bottom:206.906667pt;}
.yfc{bottom:207.866667pt;}
.y36{bottom:210.426667pt;}
.y155{bottom:212.346667pt;}
.ydd{bottom:212.826667pt;}
.yba{bottom:216.506667pt;}
.y9c{bottom:220.826667pt;}
.y122{bottom:223.546667pt;}
.y65{bottom:225.466667pt;}
.y35{bottom:228.026667pt;}
.y154{bottom:229.946667pt;}
.ydc{bottom:230.426667pt;}
.y9b{bottom:238.426667pt;}
.y121{bottom:241.146667pt;}
.y64{bottom:243.066667pt;}
.yfb{bottom:244.026667pt;}
.y34{bottom:245.626667pt;}
.y153{bottom:247.706667pt;}
.yb9{bottom:252.506667pt;}
.y9a{bottom:256.026667pt;}
.y120{bottom:258.906667pt;}
.y63{bottom:260.666667pt;}
.yfa{bottom:261.626667pt;}
.y33{bottom:263.226667pt;}
.y152{bottom:265.306667pt;}
.y88{bottom:268.506667pt;}
.y99{bottom:273.626667pt;}
.ydb{bottom:273.786667pt;}
.y11f{bottom:276.506667pt;}
.y62{bottom:278.266667pt;}
.yf9{bottom:280.346667pt;}
.y32{bottom:280.826667pt;}
.y151{bottom:282.906667pt;}
.y98{bottom:286.746667pt;}
.yb8{bottom:288.506667pt;}
.yda{bottom:292.346667pt;}
.y11e{bottom:294.106667pt;}
.y61{bottom:296.026667pt;}
.y31{bottom:298.586667pt;}
.yf8{bottom:298.906667pt;}
.y150{bottom:300.506667pt;}
.yd9{bottom:310.906667pt;}
.y11d{bottom:311.706667pt;}
.y60{bottom:313.626667pt;}
.y30{bottom:316.186667pt;}
.yf7{bottom:317.466667pt;}
.y14f{bottom:318.106667pt;}
.yb6{bottom:324.346667pt;}
.y11c{bottom:329.306667pt;}
.yd8{bottom:329.466667pt;}
.y5f{bottom:331.226667pt;}
.y2f{bottom:333.786667pt;}
.yf6{bottom:335.066667pt;}
.y14e{bottom:335.866667pt;}
.y11b{bottom:347.066667pt;}
.yd7{bottom:348.026667pt;}
.y5e{bottom:348.826667pt;}
.y2e{bottom:351.386667pt;}
.y14d{bottom:353.466667pt;}
.yf5{bottom:353.626667pt;}
.y11a{bottom:362.466667pt;}
.y5d{bottom:366.466667pt;}
.yd6{bottom:366.626667pt;}
.y2d{bottom:369.026667pt;}
.y14c{bottom:371.106667pt;}
.yf4{bottom:372.386667pt;}
.y96{bottom:375.586667pt;}
.y119{bottom:377.666667pt;}
.yb5{bottom:377.986667pt;}
.y5c{bottom:384.066667pt;}
.yd5{bottom:384.386667pt;}
.y2c{bottom:386.786667pt;}
.y14b{bottom:388.706667pt;}
.yf3{bottom:389.986667pt;}
.y82{bottom:392.706667pt;}
.y118{bottom:395.266667pt;}
.y5b{bottom:401.826667pt;}
.yd4{bottom:401.986667pt;}
.y2b{bottom:404.386667pt;}
.y14a{bottom:406.306667pt;}
.yf2{bottom:408.546667pt;}
.yb4{bottom:413.826667pt;}
.y5a{bottom:419.426667pt;}
.yd3{bottom:420.546667pt;}
.y2a{bottom:421.986667pt;}
.y149{bottom:424.066667pt;}
.yf1{bottom:427.106667pt;}
.y59{bottom:437.026667pt;}
.yd2{bottom:439.106667pt;}
.y29{bottom:439.586667pt;}
.y148{bottom:441.666667pt;}
.y117{bottom:444.386667pt;}
.yf0{bottom:444.706667pt;}
.y58{bottom:454.626667pt;}
.yd1{bottom:456.706667pt;}
.y28{bottom:457.186667pt;}
.y147{bottom:459.266667pt;}
.yef{bottom:462.466667pt;}
.y116{bottom:462.786667pt;}
.yb3{bottom:467.426667pt;}
.y57{bottom:472.226667pt;}
.y27{bottom:474.946667pt;}
.yd0{bottom:475.426667pt;}
.y146{bottom:476.866667pt;}
.yee{bottom:480.066667pt;}
.y115{bottom:481.026667pt;}
.y94{bottom:482.146667pt;}
.y56{bottom:489.986667pt;}
.y26{bottom:492.546667pt;}
.ycf{bottom:493.986667pt;}
.y145{bottom:494.466667pt;}
.yed{bottom:498.626667pt;}
.y114{bottom:499.266667pt;}
.y55{bottom:507.586667pt;}
.y25{bottom:510.146667pt;}
.y144{bottom:512.226667pt;}
.yce{bottom:512.546667pt;}
.yec{bottom:516.226667pt;}
.y7b{bottom:516.866667pt;}
.y113{bottom:517.666667pt;}
.yb2{bottom:521.026667pt;}
.y54{bottom:525.186667pt;}
.y24{bottom:527.746667pt;}
.y143{bottom:529.826667pt;}
.ycd{bottom:530.146667pt;}
.yeb{bottom:533.826667pt;}
.y112{bottom:535.906667pt;}
.y53{bottom:542.786667pt;}
.yb1{bottom:544.386667pt;}
.y23{bottom:545.346667pt;}
.y142{bottom:547.426667pt;}
.yea{bottom:552.386667pt;}
.ycc{bottom:555.746667pt;}
.y52{bottom:560.386667pt;}
.yb0{bottom:562.146667pt;}
.y22{bottom:563.106667pt;}
.y141{bottom:565.026667pt;}
.ye9{bottom:570.146667pt;}
.ycb{bottom:573.506667pt;}
.y111{bottom:574.786667pt;}
.y51{bottom:578.173333pt;}
.yaf{bottom:579.773333pt;}
.y21{bottom:580.733333pt;}
.y140{bottom:582.653333pt;}
.ye8{bottom:587.773333pt;}
.y110{bottom:590.013333pt;}
.yca{bottom:591.133333pt;}
.y50{bottom:595.773333pt;}
.yae{bottom:597.373333pt;}
.y20{bottom:598.333333pt;}
.y13f{bottom:600.413333pt;}
.ye7{bottom:605.373333pt;}
.y10f{bottom:607.613333pt;}
.yc9{bottom:608.733333pt;}
.y4f{bottom:613.373333pt;}
.yad{bottom:614.973333pt;}
.y13e{bottom:615.773333pt;}
.y1f{bottom:615.933333pt;}
.ye6{bottom:622.973333pt;}
.y93{bottom:623.933333pt;}
.y10e{bottom:625.373333pt;}
.yc8{bottom:626.333333pt;}
.y4e{bottom:630.973333pt;}
.yac{bottom:632.573333pt;}
.y13d{bottom:633.373333pt;}
.y1e{bottom:633.533333pt;}
.ye5{bottom:640.573333pt;}
.y10d{bottom:640.733333pt;}
.y79{bottom:640.893333pt;}
.yc7{bottom:643.933333pt;}
.y4d{bottom:648.573333pt;}
.yab{bottom:650.333333pt;}
.y13c{bottom:650.973333pt;}
.y1d{bottom:651.293333pt;}
.yc6{bottom:657.053333pt;}
.ye4{bottom:658.333333pt;}
.y78{bottom:664.413333pt;}
.y4c{bottom:666.333333pt;}
.y13b{bottom:668.573333pt;}
.y1c{bottom:668.893333pt;}
.y10c{bottom:671.453333pt;}
.yaa{bottom:675.933333pt;}
.y77{bottom:682.013333pt;}
.y4b{bottom:683.933333pt;}
.y13a{bottom:686.173333pt;}
.y1b{bottom:686.493333pt;}
.y10b{bottom:689.693333pt;}
.ya9{bottom:693.533333pt;}
.y76{bottom:699.613333pt;}
.y4a{bottom:701.533333pt;}
.y139{bottom:703.773333pt;}
.y1a{bottom:704.093333pt;}
.y10a{bottom:708.093333pt;}
.yc5{bottom:710.653333pt;}
.ya8{bottom:711.133333pt;}
.y75{bottom:717.213333pt;}
.y49{bottom:719.133333pt;}
.y138{bottom:721.533333pt;}
.y19{bottom:721.693333pt;}
.y109{bottom:726.333333pt;}
.ya7{bottom:728.733333pt;}
.y8f{bottom:730.333333pt;}
.y74{bottom:734.973333pt;}
.y48{bottom:736.733333pt;}
.y137{bottom:739.133333pt;}
.y18{bottom:739.453333pt;}
.y108{bottom:744.573333pt;}
.ya6{bottom:746.493333pt;}
.yc4{bottom:746.653333pt;}
.y73{bottom:752.573333pt;}
.y47{bottom:754.493333pt;}
.y136{bottom:756.733333pt;}
.y17{bottom:757.053333pt;}
.y107{bottom:762.973333pt;}
.ya5{bottom:764.093333pt;}
.y72{bottom:770.173333pt;}
.y46{bottom:772.093333pt;}
.y135{bottom:774.333333pt;}
.y16{bottom:774.653333pt;}
.y106{bottom:781.213333pt;}
.ya4{bottom:781.693333pt;}
.yc1{bottom:782.493333pt;}
.y71{bottom:787.773333pt;}
.y45{bottom:789.693333pt;}
.y134{bottom:791.933333pt;}
.y15{bottom:796.893333pt;}
.y105{bottom:799.493333pt;}
.y70{bottom:806.373333pt;}
.y44{bottom:807.333333pt;}
.y133{bottom:809.733333pt;}
.y14{bottom:810.373333pt;}
.y104{bottom:817.893333pt;}
.y6f{bottom:823.973333pt;}
.y43{bottom:824.933333pt;}
.y132{bottom:827.333333pt;}
.y13{bottom:829.893333pt;}
.y103{bottom:836.133333pt;}
.y6e{bottom:841.733333pt;}
.y42{bottom:842.693333pt;}
.y131{bottom:844.933333pt;}
.y12{bottom:848.773333pt;}
.yc0{bottom:853.733333pt;}
.y8e{bottom:854.533333pt;}
.y6d{bottom:859.333333pt;}
.y41{bottom:860.293333pt;}
.y130{bottom:862.533333pt;}
.y11{bottom:869.573333pt;}
.y40{bottom:877.893333pt;}
.y12f{bottom:880.133333pt;}
.ybf{bottom:889.733333pt;}
.y3f{bottom:895.493333pt;}
.y10{bottom:897.733333pt;}
.y12e{bottom:897.893333pt;}
.y3e{bottom:913.093333pt;}
.y12d{bottom:913.253333pt;}
.ya{bottom:928.933333pt;}
.y9{bottom:942.693333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:2.295000pt;}
.h11{height:17.600000pt;}
.h22{height:17.632000pt;}
.h21{height:17.760000pt;}
.hc{height:19.040000pt;}
.h7{height:29.760000pt;}
.h10{height:30.982500pt;}
.h1d{height:35.200000pt;}
.h1e{height:35.360000pt;}
.h1b{height:43.108125pt;}
.he{height:47.180312pt;}
.h8{height:47.621250pt;}
.h4{height:52.296250pt;}
.h9{height:52.785000pt;}
.h20{height:52.800000pt;}
.h1c{height:52.960000pt;}
.h15{height:52.992000pt;}
.ha{height:54.089375pt;}
.hf{height:54.397500pt;}
.hb{height:58.563750pt;}
.h16{height:70.400000pt;}
.h1f{height:70.592000pt;}
.h3{height:71.054688pt;}
.hd{height:75.602187pt;}
.h1a{height:88.192000pt;}
.h5{height:100.032000pt;}
.h17{height:105.760000pt;}
.h19{height:105.920000pt;}
.h13{height:123.360000pt;}
.h12{height:123.392000pt;}
.h14{height:123.552000pt;}
.h2{height:130.432000pt;}
.h18{height:140.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w6{width:37.792000pt;}
.w12{width:47.200000pt;}
.w13{width:47.392000pt;}
.w18{width:65.280000pt;}
.w19{width:67.392000pt;}
.w14{width:75.520000pt;}
.w8{width:85.152000pt;}
.w17{width:85.472000pt;}
.w15{width:89.472000pt;}
.w1c{width:90.400000pt;}
.w1d{width:94.272000pt;}
.w9{width:94.592000pt;}
.wd{width:98.432000pt;}
.we{width:103.872000pt;}
.wa{width:106.080000pt;}
.w16{width:106.720000pt;}
.w11{width:113.472000pt;}
.wc{width:114.592000pt;}
.wb{width:118.112000pt;}
.w3{width:122.272000pt;}
.w7{width:132.320000pt;}
.w1a{width:167.706667pt;}
.w1b{width:184.866667pt;}
.wf{width:240.506667pt;}
.w10{width:245.666667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x6{left:52.959988pt;}
.xe{left:58.239988pt;}
.x28{left:61.759988pt;}
.x18{left:71.999988pt;}
.xc{left:82.271988pt;}
.x29{left:85.791988pt;}
.xf{left:95.232000pt;}
.x7{left:100.831988pt;}
.x9{left:103.871988pt;}
.x4{left:105.306667pt;}
.xd{left:106.271988pt;}
.x21{left:133.152000pt;}
.x15{left:155.866667pt;}
.x19{left:161.466667pt;}
.xa{left:184.506655pt;}
.x27{left:197.626655pt;}
.x1a{left:208.666667pt;}
.x26{left:221.466655pt;}
.x10{left:227.546667pt;}
.xb{left:246.626655pt;}
.x1b{left:256.066667pt;}
.x16{left:259.746667pt;}
.x25{left:308.866655pt;}
.x11{left:312.706667pt;}
.x1c{left:331.586667pt;}
.x22{left:376.386667pt;}
.x8{left:396.893322pt;}
.x12{left:407.293333pt;}
.x1d{left:421.053333pt;}
.x17{left:500.253333pt;}
.x13{left:513.213333pt;}
.x1e{left:527.773333pt;}
.x23{left:561.253333pt;}
.x1f{left:613.253333pt;}
.x3{left:624.453333pt;}
.x14{left:631.333333pt;}
.x24{left:651.653333pt;}
.x20{left:678.533333pt;}
.x5{left:737.120000pt;}
}




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