
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0b31f8048fb16ef1554a5331.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3d29542127d70896b9a888de.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_2c1a0d8cce5c76c455dbdbe4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b76ebe6a4fcd9f441dbcfb1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7b71087628676243fe0c9851.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4e3b07b8e360c3f9488c350.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7a0210c696e5e194514fe130.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_33be2a597c3d642e17232c47.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.285600px;}
.ls14{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.084000px;}
.ls17{letter-spacing:-0.070800px;}
.ls7{letter-spacing:-0.063600px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls19{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.092400px;}
.ls4{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.173520px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:6.933600px;}
.ls11{letter-spacing:21.693600px;}
.ls1c{letter-spacing:26.733600px;}
.ls1e{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls1d{letter-spacing:80.846640px;}
.ls1b{letter-spacing:192.333600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wse{word-spacing:-13.300800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws4{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.155600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._2{margin-left:-3.499404px;}
._1{margin-left:-2.456160px;}
._0{margin-left:-1.110000px;}
._3{width:1.067052px;}
._f{width:2.139708px;}
._5{width:3.248880px;}
._4{width:4.404960px;}
._10{width:5.634840px;}
._c{width:7.033800px;}
._8{width:8.765402px;}
._7{width:10.280400px;}
._a{width:12.144601px;}
._6{width:14.609400px;}
._9{width:16.413000px;}
._1b{width:17.615160px;}
._22{width:18.877680px;}
._63{width:19.989600px;}
._12{width:21.042000px;}
._11{width:22.184280px;}
._13{width:24.108120px;}
._14{width:25.551000px;}
._b{width:27.054000px;}
._74{width:28.076040px;}
._34{width:29.218320px;}
._60{width:30.420720px;}
._18{width:31.563000px;}
._3b{width:32.765400px;}
._2f{width:33.787440px;}
._17{width:35.951760px;}
._6a{width:37.214400px;}
._e{width:38.236200px;}
._d{width:40.287360px;}
._5d{width:41.422680px;}
._4e{width:42.865560px;}
._2c{width:44.609040px;}
._45{width:45.811440px;}
._1e{width:47.134080px;}
._51{width:48.396600px;}
._26{width:51.222240px;}
._52{width:53.294160px;}
._49{width:54.348480px;}
._41{width:56.031840px;}
._6b{width:58.617000px;}
._24{width:60.240240px;}
._1a{width:61.562880px;}
._4d{width:63.306360px;}
._28{width:64.869480px;}
._40{width:67.033800px;}
._20{width:69.077880px;}
._27{width:71.723160px;}
._2b{width:73.105920px;}
._66{width:76.088160px;}
._4a{width:78.817320px;}
._16{width:81.522720px;}
._23{width:83.145960px;}
._21{width:85.490640px;}
._2d{width:86.572800px;}
._1c{width:88.256160px;}
._69{width:89.458560px;}
._4c{width:93.125880px;}
._6f{width:94.689000px;}
._33{width:101.001600px;}
._50{width:102.564720px;}
._2e{width:104.067720px;}
._42{width:105.149880px;}
._3d{width:107.374320px;}
._55{width:108.757080px;}
._31{width:110.019600px;}
._3e{width:112.544640px;}
._30{width:116.993520px;}
._37{width:118.956600px;}
._4b{width:120.240000px;}
._5e{width:121.803120px;}
._29{width:126.312120px;}
._3f{width:128.897280px;}
._32{width:133.767000px;}
._44{width:136.833120px;}
._59{width:139.117680px;}
._48{width:140.981400px;}
._5a{width:144.185400px;}
._35{width:149.097600px;}
._2a{width:151.322040px;}
._19{width:152.344080px;}
._5b{width:153.486360px;}
._39{width:157.273920px;}
._70{width:159.257880px;}
._43{width:161.477400px;}
._1f{width:163.311240px;}
._1d{width:165.931200px;}
._5c{width:166.953240px;}
._5f{width:173.386080px;}
._38{width:174.949200px;}
._3a{width:180.660600px;}
._47{width:184.087440px;}
._67{width:185.710680px;}
._56{width:188.897040px;}
._71{width:194.067360px;}
._4f{width:196.832880px;}
._25{width:198.335880px;}
._53{width:203.987160px;}
._46{width:205.369920px;}
._3c{width:208.676520px;}
._58{width:214.688520px;}
._62{width:220.278840px;}
._36{width:221.842800px;}
._6d{width:223.405920px;}
._15{width:229.778640px;}
._68{width:231.702480px;}
._57{width:234.948960px;}
._6e{width:256.532040px;}
._6c{width:275.830560px;}
._54{width:281.121120px;}
._64{width:291.461760px;}
._73{width:294.708240px;}
._72{width:304.447680px;}
._61{width:318.335400px;}
._65{width:391.862160px;}
.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;}
.y185{bottom:4.500000px;}
.y83{bottom:7.830000px;}
.y89{bottom:7.920000px;}
.y96{bottom:25.380000px;}
.y82{bottom:25.470000px;}
.ybf{bottom:25.500000px;}
.y86{bottom:43.020000px;}
.y8e{bottom:43.050000px;}
.y88{bottom:43.110000px;}
.y85{bottom:60.570000px;}
.y8d{bottom:60.600000px;}
.y92{bottom:60.660000px;}
.ybe{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y18d{bottom:74.160000px;}
.y2a{bottom:74.190000px;}
.y91{bottom:78.210000px;}
.y8c{bottom:78.240000px;}
.y18c{bottom:91.710000px;}
.y90{bottom:95.760000px;}
.y8b{bottom:95.790000px;}
.y104{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y18b{bottom:109.380000px;}
.yb9{bottom:111.090000px;}
.y102{bottom:112.170000px;}
.y9a{bottom:113.310000px;}
.yb8{bottom:113.400000px;}
.ybd{bottom:113.430000px;}
.y121{bottom:113.700000px;}
.ya2{bottom:114.420000px;}
.y84{bottom:115.860000px;}
.ydc{bottom:126.120000px;}
.y18a{bottom:126.930000px;}
.yaf{bottom:130.950000px;}
.ybc{bottom:130.980000px;}
.y120{bottom:131.250000px;}
.y149{bottom:134.130000px;}
.y57{bottom:139.710000px;}
.y28{bottom:140.880000px;}
.y170{bottom:141.870000px;}
.ydb{bottom:143.760000px;}
.y189{bottom:144.480000px;}
.yae{bottom:148.500000px;}
.yb7{bottom:148.590000px;}
.ybb{bottom:148.620000px;}
.ya1{bottom:149.970000px;}
.y148{bottom:151.680000px;}
.y11f{bottom:157.890000px;}
.y27{bottom:158.430000px;}
.y16f{bottom:159.510000px;}
.yda{bottom:161.310000px;}
.y188{bottom:162.120000px;}
.yad{bottom:166.140000px;}
.ya0{bottom:167.520000px;}
.y101{bottom:174.720000px;}
.y56{bottom:175.350000px;}
.y26{bottom:176.070000px;}
.y147{bottom:178.320000px;}
.yd9{bottom:178.950000px;}
.y187{bottom:179.670000px;}
.yac{bottom:183.690000px;}
.y9f{bottom:185.160000px;}
.y16e{bottom:186.060000px;}
.yb1{bottom:191.190000px;}
.y55{bottom:192.900000px;}
.y11e{bottom:193.440000px;}
.y25{bottom:193.620000px;}
.y146{bottom:195.870000px;}
.y81{bottom:195.960000px;}
.yd8{bottom:196.500000px;}
.y186{bottom:197.310000px;}
.yab{bottom:201.240000px;}
.yb6{bottom:201.330000px;}
.y9e{bottom:202.710000px;}
.y16d{bottom:203.610000px;}
.y54{bottom:210.540000px;}
.y11d{bottom:211.080000px;}
.y24{bottom:211.260000px;}
.yd7{bottom:214.050000px;}
.yb5{bottom:218.880000px;}
.y9d{bottom:220.350000px;}
.y145{bottom:222.420000px;}
.y11c{bottom:228.630000px;}
.y16c{bottom:230.250000px;}
.yb4{bottom:236.430000px;}
.yc2{bottom:236.520000px;}
.y53{bottom:237.090000px;}
.y9c{bottom:237.900000px;}
.y144{bottom:240.060000px;}
.y11b{bottom:246.180000px;}
.y23{bottom:246.810000px;}
.y16b{bottom:247.800000px;}
.yd6{bottom:250.500000px;}
.yb3{bottom:254.070000px;}
.y80{bottom:262.200000px;}
.y11a{bottom:263.820000px;}
.y22{bottom:264.360000px;}
.y9b{bottom:264.450000px;}
.y143{bottom:266.610000px;}
.yd5{bottom:268.050000px;}
.yb2{bottom:271.620000px;}
.y52{bottom:272.640000px;}
.y16a{bottom:274.440000px;}
.y119{bottom:281.370000px;}
.y21{bottom:282.000000px;}
.y142{bottom:284.250000px;}
.yd4{bottom:285.690000px;}
.yc1{bottom:289.260000px;}
.y51{bottom:290.280000px;}
.y169{bottom:291.990000px;}
.y99{bottom:297.480000px;}
.y7f{bottom:297.840000px;}
.y20{bottom:299.550000px;}
.yd3{bottom:303.240000px;}
.y100{bottom:307.560000px;}
.y118{bottom:308.010000px;}
.y141{bottom:311.070000px;}
.y7e{bottom:315.390000px;}
.y1f{bottom:317.190000px;}
.y168{bottom:318.540000px;}
.y50{bottom:325.830000px;}
.y167{bottom:336.180000px;}
.yd2{bottom:339.690000px;}
.y4f{bottom:343.470000px;}
.y117{bottom:343.560000px;}
.y1e{bottom:344.010000px;}
.y7d{bottom:350.940000px;}
.y18e{bottom:352.650000px;}
.yd1{bottom:357.240000px;}
.y140{bottom:359.400000px;}
.y116{bottom:361.110000px;}
.y166{bottom:362.730000px;}
.y184{bottom:367.680000px;}
.y7c{bottom:368.580000px;}
.y4e{bottom:370.020000px;}
.yff{bottom:373.800000px;}
.yd0{bottom:374.790000px;}
.y115{bottom:378.750000px;}
.y165{bottom:380.370000px;}
.y7b{bottom:386.130000px;}
.y13f{bottom:386.310000px;}
.y1d{bottom:392.340000px;}
.ycf{bottom:392.430000px;}
.y114{bottom:396.300000px;}
.y7a{bottom:403.770000px;}
.y4d{bottom:405.570000px;}
.y164{bottom:406.920000px;}
.yfe{bottom:409.440000px;}
.yce{bottom:409.980000px;}
.y1c{bottom:410.250000px;}
.y113{bottom:413.940000px;}
.y4c{bottom:423.210000px;}
.y13e{bottom:423.300000px;}
.y163{bottom:424.470000px;}
.yfd{bottom:426.990000px;}
.ycd{bottom:427.620000px;}
.y98{bottom:430.320000px;}
.y112{bottom:431.490000px;}
.y79{bottom:439.320000px;}
.y4b{bottom:440.760000px;}
.y13d{bottom:440.940000px;}
.ycc{bottom:445.170000px;}
.y1b{bottom:447.240000px;}
.y111{bottom:449.040000px;}
.y162{bottom:451.110000px;}
.yfc{bottom:453.630000px;}
.y78{bottom:456.870000px;}
.y4a{bottom:458.400000px;}
.y13c{bottom:458.490000px;}
.y1a{bottom:464.880000px;}
.y110{bottom:466.680000px;}
.y161{bottom:468.660000px;}
.y77{bottom:474.540000px;}
.y13b{bottom:476.070000px;}
.ycb{bottom:481.650000px;}
.yb0{bottom:482.370000px;}
.y19{bottom:482.460000px;}
.y10f{bottom:484.260000px;}
.y49{bottom:484.980000px;}
.yfb{bottom:489.210000px;}
.y76{bottom:492.090000px;}
.y160{bottom:495.330000px;}
.yca{bottom:499.200000px;}
.y18{bottom:500.010000px;}
.y10e{bottom:501.900000px;}
.y13a{bottom:502.980000px;}
.yfa{bottom:506.760000px;}
.y75{bottom:509.730000px;}
.y97{bottom:510.450000px;}
.y15f{bottom:512.880000px;}
.y17{bottom:517.650000px;}
.y10d{bottom:519.450000px;}
.y48{bottom:520.530000px;}
.yf9{bottom:524.400000px;}
.yc9{bottom:525.750000px;}
.y74{bottom:527.280000px;}
.y16{bottom:535.200000px;}
.y47{bottom:538.170000px;}
.y15e{bottom:539.430000px;}
.y139{bottom:540.330000px;}
.yf8{bottom:541.950000px;}
.y73{bottom:544.830000px;}
.y10c{bottom:546.360000px;}
.y15{bottom:552.840000px;}
.y46{bottom:555.720000px;}
.y15d{bottom:557.070000px;}
.yf7{bottom:559.590000px;}
.yc8{bottom:561.390000px;}
.y72{bottom:562.470000px;}
.y14{bottom:570.390000px;}
.yc7{bottom:578.940000px;}
.y71{bottom:580.020000px;}
.y45{bottom:582.630000px;}
.y15c{bottom:583.620000px;}
.yf6{bottom:586.140000px;}
.y13{bottom:587.940000px;}
.y138{bottom:588.660000px;}
.y95{bottom:590.550000px;}
.y10b{bottom:594.600000px;}
.yc6{bottom:596.580000px;}
.y183{bottom:597.120000px;}
.y70{bottom:597.660000px;}
.y12{bottom:605.580000px;}
.y137{bottom:606.210000px;}
.y15b{bottom:610.260000px;}
.y10a{bottom:612.240000px;}
.yc5{bottom:614.130000px;}
.y6f{bottom:615.210000px;}
.yf5{bottom:622.050000px;}
.y11{bottom:623.130000px;}
.y136{bottom:623.760000px;}
.y15a{bottom:627.810000px;}
.y109{bottom:629.790000px;}
.y44{bottom:630.870000px;}
.yc4{bottom:631.680000px;}
.y6e{bottom:632.760000px;}
.y10{bottom:640.770000px;}
.y135{bottom:641.400000px;}
.y182{bottom:645.360000px;}
.y108{bottom:647.340000px;}
.y43{bottom:648.420000px;}
.yc3{bottom:649.320000px;}
.y6d{bottom:650.400000px;}
.y159{bottom:654.360000px;}
.yf{bottom:658.320000px;}
.y181{bottom:663.000000px;}
.y107{bottom:664.980000px;}
.y42{bottom:666.870000px;}
.yf4{bottom:670.290000px;}
.y94{bottom:670.560000px;}
.y158{bottom:672.000000px;}
.ye{bottom:675.870000px;}
.y134{bottom:676.950000px;}
.yc0{bottom:682.260000px;}
.y106{bottom:682.530000px;}
.y41{bottom:684.510000px;}
.y6c{bottom:685.950000px;}
.yf3{bottom:687.930000px;}
.y180{bottom:689.550000px;}
.y133{bottom:694.590000px;}
.y157{bottom:698.550000px;}
.y40{bottom:702.060000px;}
.yd{bottom:702.870000px;}
.yaa{bottom:703.140000px;}
.y6b{bottom:703.590000px;}
.yf2{bottom:705.480000px;}
.y17f{bottom:707.190000px;}
.y132{bottom:712.140000px;}
.y105{bottom:715.560000px;}
.y3f{bottom:720.510000px;}
.y6a{bottom:721.140000px;}
.yf1{bottom:723.120000px;}
.y156{bottom:725.190000px;}
.y131{bottom:729.690000px;}
.y17e{bottom:733.740000px;}
.y3e{bottom:738.060000px;}
.y69{bottom:738.690000px;}
.yf0{bottom:740.670000px;}
.y155{bottom:742.740000px;}
.yc{bottom:749.580000px;}
.y17d{bottom:751.290000px;}
.y3d{bottom:755.610000px;}
.y68{bottom:756.330000px;}
.yef{bottom:758.220000px;}
.y130{bottom:765.330000px;}
.y93{bottom:768.300000px;}
.y154{bottom:769.290000px;}
.y67{bottom:773.880000px;}
.y3c{bottom:774.060000px;}
.y17c{bottom:777.930000px;}
.y12f{bottom:782.880000px;}
.yee{bottom:784.860000px;}
.yb{bottom:785.130000px;}
.y153{bottom:786.930000px;}
.y66{bottom:791.520000px;}
.y3b{bottom:791.610000px;}
.y17b{bottom:795.480000px;}
.y12e{bottom:800.520000px;}
.y65{bottom:809.070000px;}
.y3a{bottom:810.060000px;}
.y152{bottom:813.480000px;}
.y12d{bottom:818.070000px;}
.yed{bottom:820.410000px;}
.ya{bottom:820.950000px;}
.y17a{bottom:822.030000px;}
.y64{bottom:826.620000px;}
.y39{bottom:827.700000px;}
.y103{bottom:830.760000px;}
.y151{bottom:831.030000px;}
.yec{bottom:838.050000px;}
.y179{bottom:839.670000px;}
.y63{bottom:844.260000px;}
.y38{bottom:845.250000px;}
.y12c{bottom:853.620000px;}
.yeb{bottom:855.600000px;}
.y9{bottom:856.950000px;}
.y150{bottom:857.670000px;}
.y62{bottom:861.810000px;}
.y37{bottom:863.700000px;}
.y8f{bottom:865.950000px;}
.y178{bottom:866.220000px;}
.y12b{bottom:871.260000px;}
.yea{bottom:873.150000px;}
.y14f{bottom:875.220000px;}
.y8{bottom:878.730000px;}
.y36{bottom:881.250000px;}
.y177{bottom:883.860000px;}
.y12a{bottom:888.810000px;}
.ye9{bottom:890.790000px;}
.y7{bottom:892.950000px;}
.y61{bottom:897.450000px;}
.y176{bottom:901.410000px;}
.y14e{bottom:901.860000px;}
.y129{bottom:906.450000px;}
.ye8{bottom:908.340000px;}
.y6{bottom:914.730000px;}
.y60{bottom:915.000000px;}
.y35{bottom:917.700000px;}
.y14d{bottom:919.410000px;}
.ya9{bottom:923.910000px;}
.y128{bottom:924.000000px;}
.y175{bottom:927.960000px;}
.y5f{bottom:932.550000px;}
.y34{bottom:935.250000px;}
.ye7{bottom:944.790000px;}
.y174{bottom:945.600000px;}
.y14c{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y5e{bottom:950.190000px;}
.y33{bottom:952.800000px;}
.y127{bottom:959.550000px;}
.ye6{bottom:962.340000px;}
.y14b{bottom:963.600000px;}
.y5d{bottom:967.740000px;}
.y173{bottom:972.150000px;}
.y126{bottom:977.190000px;}
.y32{bottom:979.710000px;}
.ye5{bottom:979.890000px;}
.y8a{bottom:981.240000px;}
.y4{bottom:985.380000px;}
.y14a{bottom:990.150000px;}
.yba{bottom:990.960000px;}
.y5c{bottom:994.650000px;}
.y125{bottom:994.740000px;}
.ye4{bottom:997.530000px;}
.y172{bottom:998.790000px;}
.ya8{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y124{bottom:1012.320000px;}
.ye3{bottom:1015.110000px;}
.y171{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.ya7{bottom:1025.370000px;}
.y123{bottom:1029.960000px;}
.ye2{bottom:1032.660000px;}
.y30{bottom:1034.370000px;}
.y5b{bottom:1042.920000px;}
.y2f{bottom:1051.920000px;}
.y122{bottom:1056.870000px;}
.y5a{bottom:1060.560000px;}
.ya6{bottom:1060.920000px;}
.ye1{bottom:1069.110000px;}
.y2e{bottom:1069.560000px;}
.y59{bottom:1078.110000px;}
.ya5{bottom:1078.560000px;}
.ye0{bottom:1086.750000px;}
.ya4{bottom:1096.110000px;}
.y87{bottom:1096.470000px;}
.ydf{bottom:1104.300000px;}
.y58{bottom:1104.750000px;}
.y2d{bottom:1105.110000px;}
.ya3{bottom:1113.750000px;}
.yde{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.ydd{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:26.995781px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:57.330000px;}
.h13{height:61.740000px;}
.h8{height:61.793886px;}
.h1a{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:79.290000px;}
.h11{height:79.320000px;}
.h16{height:79.380000px;}
.h10{height:96.930000px;}
.hf{height:114.480000px;}
.he{height:114.510000px;}
.h12{height:132.030000px;}
.h19{height:132.120000px;}
.h1b{height:149.670000px;}
.h17{height:162.840000px;}
.h1c{height:216.030000px;}
.h14{height:219.960000px;}
.h15{height:290.370000px;}
.h18{height:307.980000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:73.260000px;}
.wa{width:121.410000px;}
.w5{width:125.190000px;}
.we{width:125.940000px;}
.w4{width:128.790000px;}
.wf{width:129.330000px;}
.w3{width:129.540000px;}
.w9{width:136.020000px;}
.wd{width:136.710000px;}
.wb{width:137.730000px;}
.w6{width:141.420000px;}
.w10{width:144.000000px;}
.wc{width:146.700000px;}
.w11{width:165.180000px;}
.w13{width:173.010000px;}
.w7{width:173.700000px;}
.w12{width:188.280000px;}
.w14{width:581.970000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x14{left:111.239987px;}
.x5{left:122.039987px;}
.xb{left:142.830000px;}
.x15{left:165.270000px;}
.x2{left:192.719987px;}
.x10{left:195.420000px;}
.x7{left:226.110000px;}
.x16{left:242.490000px;}
.xc{left:279.660000px;}
.x11{left:325.560000px;}
.x8{left:355.710000px;}
.xd{left:401.790000px;}
.x12{left:470.280000px;}
.x9{left:481.620000px;}
.xe{left:540.330000px;}
.xa{left:623.760000px;}
.x13{left:636.180000px;}
.xf{left:687.750000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.253867pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.074667pt;}
.ls17{letter-spacing:-0.062933pt;}
.ls7{letter-spacing:-0.056533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls19{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.082133pt;}
.ls4{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.154240pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:6.163200pt;}
.ls11{letter-spacing:19.283200pt;}
.ls1c{letter-spacing:23.763200pt;}
.ls1e{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ls1b{letter-spacing:170.963200pt;}
.wsa{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.822933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws4{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.693867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._2{margin-left:-3.110581pt;}
._1{margin-left:-2.183253pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.948490pt;}
._f{width:1.901963pt;}
._5{width:2.887893pt;}
._4{width:3.915520pt;}
._10{width:5.008746pt;}
._c{width:6.252266pt;}
._8{width:7.791469pt;}
._7{width:9.138133pt;}
._a{width:10.795201pt;}
._6{width:12.986134pt;}
._9{width:14.589334pt;}
._1b{width:15.657920pt;}
._22{width:16.780160pt;}
._63{width:17.768533pt;}
._12{width:18.704000pt;}
._11{width:19.719360pt;}
._13{width:21.429440pt;}
._14{width:22.712000pt;}
._b{width:24.048000pt;}
._74{width:24.956480pt;}
._34{width:25.971840pt;}
._60{width:27.040640pt;}
._18{width:28.056000pt;}
._3b{width:29.124800pt;}
._2f{width:30.033280pt;}
._17{width:31.957120pt;}
._6a{width:33.079467pt;}
._e{width:33.987733pt;}
._d{width:35.810987pt;}
._5d{width:36.820160pt;}
._4e{width:38.102720pt;}
._2c{width:39.652480pt;}
._45{width:40.721280pt;}
._1e{width:41.896960pt;}
._51{width:43.019200pt;}
._26{width:45.530880pt;}
._52{width:47.372587pt;}
._49{width:48.309760pt;}
._41{width:49.806080pt;}
._6b{width:52.104000pt;}
._24{width:53.546880pt;}
._1a{width:54.722560pt;}
._4d{width:56.272320pt;}
._28{width:57.661760pt;}
._40{width:59.585600pt;}
._20{width:61.402560pt;}
._27{width:63.753920pt;}
._2b{width:64.983040pt;}
._66{width:67.633920pt;}
._4a{width:70.059840pt;}
._16{width:72.464640pt;}
._23{width:73.907520pt;}
._21{width:75.991680pt;}
._2d{width:76.953600pt;}
._1c{width:78.449920pt;}
._69{width:79.518720pt;}
._4c{width:82.778560pt;}
._6f{width:84.168000pt;}
._33{width:89.779200pt;}
._50{width:91.168640pt;}
._2e{width:92.504640pt;}
._42{width:93.466560pt;}
._3d{width:95.443840pt;}
._55{width:96.672960pt;}
._31{width:97.795200pt;}
._3e{width:100.039680pt;}
._30{width:103.994240pt;}
._37{width:105.739200pt;}
._4b{width:106.880000pt;}
._5e{width:108.269440pt;}
._29{width:112.277440pt;}
._3f{width:114.575360pt;}
._32{width:118.904000pt;}
._44{width:121.629440pt;}
._59{width:123.660160pt;}
._48{width:125.316800pt;}
._5a{width:128.164800pt;}
._35{width:132.531200pt;}
._2a{width:134.508480pt;}
._19{width:135.416960pt;}
._5b{width:136.432320pt;}
._39{width:139.799040pt;}
._70{width:141.562560pt;}
._43{width:143.535467pt;}
._1f{width:145.165547pt;}
._1d{width:147.494400pt;}
._5c{width:148.402880pt;}
._5f{width:154.120960pt;}
._38{width:155.510400pt;}
._3a{width:160.587200pt;}
._47{width:163.633280pt;}
._67{width:165.076160pt;}
._56{width:167.908480pt;}
._71{width:172.504320pt;}
._4f{width:174.962560pt;}
._25{width:176.298560pt;}
._53{width:181.321920pt;}
._46{width:182.551040pt;}
._3c{width:185.490240pt;}
._58{width:190.834240pt;}
._62{width:195.803413pt;}
._36{width:197.193600pt;}
._6d{width:198.583040pt;}
._15{width:204.247680pt;}
._68{width:205.957760pt;}
._57{width:208.843520pt;}
._6e{width:228.028480pt;}
._6c{width:245.182720pt;}
._54{width:249.885440pt;}
._64{width:259.077120pt;}
._73{width:261.962880pt;}
._72{width:270.620160pt;}
._61{width:282.964800pt;}
._65{width:348.321920pt;}
.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;}
.y185{bottom:4.000000pt;}
.y83{bottom:6.960000pt;}
.y89{bottom:7.040000pt;}
.y96{bottom:22.560000pt;}
.y82{bottom:22.640000pt;}
.ybf{bottom:22.666667pt;}
.y86{bottom:38.240000pt;}
.y8e{bottom:38.266667pt;}
.y88{bottom:38.320000pt;}
.y85{bottom:53.840000pt;}
.y8d{bottom:53.866667pt;}
.y92{bottom:53.920000pt;}
.ybe{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y18d{bottom:65.920000pt;}
.y2a{bottom:65.946667pt;}
.y91{bottom:69.520000pt;}
.y8c{bottom:69.546667pt;}
.y18c{bottom:81.520000pt;}
.y90{bottom:85.120000pt;}
.y8b{bottom:85.146667pt;}
.y104{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y18b{bottom:97.226667pt;}
.yb9{bottom:98.746667pt;}
.y102{bottom:99.706667pt;}
.y9a{bottom:100.720000pt;}
.yb8{bottom:100.800000pt;}
.ybd{bottom:100.826667pt;}
.y121{bottom:101.066667pt;}
.ya2{bottom:101.706667pt;}
.y84{bottom:102.986667pt;}
.ydc{bottom:112.106667pt;}
.y18a{bottom:112.826667pt;}
.yaf{bottom:116.400000pt;}
.ybc{bottom:116.426667pt;}
.y120{bottom:116.666667pt;}
.y149{bottom:119.226667pt;}
.y57{bottom:124.186667pt;}
.y28{bottom:125.226667pt;}
.y170{bottom:126.106667pt;}
.ydb{bottom:127.786667pt;}
.y189{bottom:128.426667pt;}
.yae{bottom:132.000000pt;}
.yb7{bottom:132.080000pt;}
.ybb{bottom:132.106667pt;}
.ya1{bottom:133.306667pt;}
.y148{bottom:134.826667pt;}
.y11f{bottom:140.346667pt;}
.y27{bottom:140.826667pt;}
.y16f{bottom:141.786667pt;}
.yda{bottom:143.386667pt;}
.y188{bottom:144.106667pt;}
.yad{bottom:147.680000pt;}
.ya0{bottom:148.906667pt;}
.y101{bottom:155.306667pt;}
.y56{bottom:155.866667pt;}
.y26{bottom:156.506667pt;}
.y147{bottom:158.506667pt;}
.yd9{bottom:159.066667pt;}
.y187{bottom:159.706667pt;}
.yac{bottom:163.280000pt;}
.y9f{bottom:164.586667pt;}
.y16e{bottom:165.386667pt;}
.yb1{bottom:169.946667pt;}
.y55{bottom:171.466667pt;}
.y11e{bottom:171.946667pt;}
.y25{bottom:172.106667pt;}
.y146{bottom:174.106667pt;}
.y81{bottom:174.186667pt;}
.yd8{bottom:174.666667pt;}
.y186{bottom:175.386667pt;}
.yab{bottom:178.880000pt;}
.yb6{bottom:178.960000pt;}
.y9e{bottom:180.186667pt;}
.y16d{bottom:180.986667pt;}
.y54{bottom:187.146667pt;}
.y11d{bottom:187.626667pt;}
.y24{bottom:187.786667pt;}
.yd7{bottom:190.266667pt;}
.yb5{bottom:194.560000pt;}
.y9d{bottom:195.866667pt;}
.y145{bottom:197.706667pt;}
.y11c{bottom:203.226667pt;}
.y16c{bottom:204.666667pt;}
.yb4{bottom:210.160000pt;}
.yc2{bottom:210.240000pt;}
.y53{bottom:210.746667pt;}
.y9c{bottom:211.466667pt;}
.y144{bottom:213.386667pt;}
.y11b{bottom:218.826667pt;}
.y23{bottom:219.386667pt;}
.y16b{bottom:220.266667pt;}
.yd6{bottom:222.666667pt;}
.yb3{bottom:225.840000pt;}
.y80{bottom:233.066667pt;}
.y11a{bottom:234.506667pt;}
.y22{bottom:234.986667pt;}
.y9b{bottom:235.066667pt;}
.y143{bottom:236.986667pt;}
.yd5{bottom:238.266667pt;}
.yb2{bottom:241.440000pt;}
.y52{bottom:242.346667pt;}
.y16a{bottom:243.946667pt;}
.y119{bottom:250.106667pt;}
.y21{bottom:250.666667pt;}
.y142{bottom:252.666667pt;}
.yd4{bottom:253.946667pt;}
.yc1{bottom:257.120000pt;}
.y51{bottom:258.026667pt;}
.y169{bottom:259.546667pt;}
.y99{bottom:264.426667pt;}
.y7f{bottom:264.746667pt;}
.y20{bottom:266.266667pt;}
.yd3{bottom:269.546667pt;}
.y100{bottom:273.386667pt;}
.y118{bottom:273.786667pt;}
.y141{bottom:276.506667pt;}
.y7e{bottom:280.346667pt;}
.y1f{bottom:281.946667pt;}
.y168{bottom:283.146667pt;}
.y50{bottom:289.626667pt;}
.y167{bottom:298.826667pt;}
.yd2{bottom:301.946667pt;}
.y4f{bottom:305.306667pt;}
.y117{bottom:305.386667pt;}
.y1e{bottom:305.786667pt;}
.y7d{bottom:311.946667pt;}
.y18e{bottom:313.466667pt;}
.yd1{bottom:317.546667pt;}
.y140{bottom:319.466667pt;}
.y116{bottom:320.986667pt;}
.y166{bottom:322.426667pt;}
.y184{bottom:326.826667pt;}
.y7c{bottom:327.626667pt;}
.y4e{bottom:328.906667pt;}
.yff{bottom:332.266667pt;}
.yd0{bottom:333.146667pt;}
.y115{bottom:336.666667pt;}
.y165{bottom:338.106667pt;}
.y7b{bottom:343.226667pt;}
.y13f{bottom:343.386667pt;}
.y1d{bottom:348.746667pt;}
.ycf{bottom:348.826667pt;}
.y114{bottom:352.266667pt;}
.y7a{bottom:358.906667pt;}
.y4d{bottom:360.506667pt;}
.y164{bottom:361.706667pt;}
.yfe{bottom:363.946667pt;}
.yce{bottom:364.426667pt;}
.y1c{bottom:364.666667pt;}
.y113{bottom:367.946667pt;}
.y4c{bottom:376.186667pt;}
.y13e{bottom:376.266667pt;}
.y163{bottom:377.306667pt;}
.yfd{bottom:379.546667pt;}
.ycd{bottom:380.106667pt;}
.y98{bottom:382.506667pt;}
.y112{bottom:383.546667pt;}
.y79{bottom:390.506667pt;}
.y4b{bottom:391.786667pt;}
.y13d{bottom:391.946667pt;}
.ycc{bottom:395.706667pt;}
.y1b{bottom:397.546667pt;}
.y111{bottom:399.146667pt;}
.y162{bottom:400.986667pt;}
.yfc{bottom:403.226667pt;}
.y78{bottom:406.106667pt;}
.y4a{bottom:407.466667pt;}
.y13c{bottom:407.546667pt;}
.y1a{bottom:413.226667pt;}
.y110{bottom:414.826667pt;}
.y161{bottom:416.586667pt;}
.y77{bottom:421.813333pt;}
.y13b{bottom:423.173333pt;}
.ycb{bottom:428.133333pt;}
.yb0{bottom:428.773333pt;}
.y19{bottom:428.853333pt;}
.y10f{bottom:430.453333pt;}
.y49{bottom:431.093333pt;}
.yfb{bottom:434.853333pt;}
.y76{bottom:437.413333pt;}
.y160{bottom:440.293333pt;}
.yca{bottom:443.733333pt;}
.y18{bottom:444.453333pt;}
.y10e{bottom:446.133333pt;}
.y13a{bottom:447.093333pt;}
.yfa{bottom:450.453333pt;}
.y75{bottom:453.093333pt;}
.y97{bottom:453.733333pt;}
.y15f{bottom:455.893333pt;}
.y17{bottom:460.133333pt;}
.y10d{bottom:461.733333pt;}
.y48{bottom:462.693333pt;}
.yf9{bottom:466.133333pt;}
.yc9{bottom:467.333333pt;}
.y74{bottom:468.693333pt;}
.y16{bottom:475.733333pt;}
.y47{bottom:478.373333pt;}
.y15e{bottom:479.493333pt;}
.y139{bottom:480.293333pt;}
.yf8{bottom:481.733333pt;}
.y73{bottom:484.293333pt;}
.y10c{bottom:485.653333pt;}
.y15{bottom:491.413333pt;}
.y46{bottom:493.973333pt;}
.y15d{bottom:495.173333pt;}
.yf7{bottom:497.413333pt;}
.yc8{bottom:499.013333pt;}
.y72{bottom:499.973333pt;}
.y14{bottom:507.013333pt;}
.yc7{bottom:514.613333pt;}
.y71{bottom:515.573333pt;}
.y45{bottom:517.893333pt;}
.y15c{bottom:518.773333pt;}
.yf6{bottom:521.013333pt;}
.y13{bottom:522.613333pt;}
.y138{bottom:523.253333pt;}
.y95{bottom:524.933333pt;}
.y10b{bottom:528.533333pt;}
.yc6{bottom:530.293333pt;}
.y183{bottom:530.773333pt;}
.y70{bottom:531.253333pt;}
.y12{bottom:538.293333pt;}
.y137{bottom:538.853333pt;}
.y15b{bottom:542.453333pt;}
.y10a{bottom:544.213333pt;}
.yc5{bottom:545.893333pt;}
.y6f{bottom:546.853333pt;}
.yf5{bottom:552.933333pt;}
.y11{bottom:553.893333pt;}
.y136{bottom:554.453333pt;}
.y15a{bottom:558.053333pt;}
.y109{bottom:559.813333pt;}
.y44{bottom:560.773333pt;}
.yc4{bottom:561.493333pt;}
.y6e{bottom:562.453333pt;}
.y10{bottom:569.573333pt;}
.y135{bottom:570.133333pt;}
.y182{bottom:573.653333pt;}
.y108{bottom:575.413333pt;}
.y43{bottom:576.373333pt;}
.yc3{bottom:577.173333pt;}
.y6d{bottom:578.133333pt;}
.y159{bottom:581.653333pt;}
.yf{bottom:585.173333pt;}
.y181{bottom:589.333333pt;}
.y107{bottom:591.093333pt;}
.y42{bottom:592.773333pt;}
.yf4{bottom:595.813333pt;}
.y94{bottom:596.053333pt;}
.y158{bottom:597.333333pt;}
.ye{bottom:600.773333pt;}
.y134{bottom:601.733333pt;}
.yc0{bottom:606.453333pt;}
.y106{bottom:606.693333pt;}
.y41{bottom:608.453333pt;}
.y6c{bottom:609.733333pt;}
.yf3{bottom:611.493333pt;}
.y180{bottom:612.933333pt;}
.y133{bottom:617.413333pt;}
.y157{bottom:620.933333pt;}
.y40{bottom:624.053333pt;}
.yd{bottom:624.773333pt;}
.yaa{bottom:625.013333pt;}
.y6b{bottom:625.413333pt;}
.yf2{bottom:627.093333pt;}
.y17f{bottom:628.613333pt;}
.y132{bottom:633.013333pt;}
.y105{bottom:636.053333pt;}
.y3f{bottom:640.453333pt;}
.y6a{bottom:641.013333pt;}
.yf1{bottom:642.773333pt;}
.y156{bottom:644.613333pt;}
.y131{bottom:648.613333pt;}
.y17e{bottom:652.213333pt;}
.y3e{bottom:656.053333pt;}
.y69{bottom:656.613333pt;}
.yf0{bottom:658.373333pt;}
.y155{bottom:660.213333pt;}
.yc{bottom:666.293333pt;}
.y17d{bottom:667.813333pt;}
.y3d{bottom:671.653333pt;}
.y68{bottom:672.293333pt;}
.yef{bottom:673.973333pt;}
.y130{bottom:680.293333pt;}
.y93{bottom:682.933333pt;}
.y154{bottom:683.813333pt;}
.y67{bottom:687.893333pt;}
.y3c{bottom:688.053333pt;}
.y17c{bottom:691.493333pt;}
.y12f{bottom:695.893333pt;}
.yee{bottom:697.653333pt;}
.yb{bottom:697.893333pt;}
.y153{bottom:699.493333pt;}
.y66{bottom:703.573333pt;}
.y3b{bottom:703.653333pt;}
.y17b{bottom:707.093333pt;}
.y12e{bottom:711.573333pt;}
.y65{bottom:719.173333pt;}
.y3a{bottom:720.053333pt;}
.y152{bottom:723.093333pt;}
.y12d{bottom:727.173333pt;}
.yed{bottom:729.253333pt;}
.ya{bottom:729.733333pt;}
.y17a{bottom:730.693333pt;}
.y64{bottom:734.773333pt;}
.y39{bottom:735.733333pt;}
.y103{bottom:738.453333pt;}
.y151{bottom:738.693333pt;}
.yec{bottom:744.933333pt;}
.y179{bottom:746.373333pt;}
.y63{bottom:750.453333pt;}
.y38{bottom:751.333333pt;}
.y12c{bottom:758.773333pt;}
.yeb{bottom:760.533333pt;}
.y9{bottom:761.733333pt;}
.y150{bottom:762.373333pt;}
.y62{bottom:766.053333pt;}
.y37{bottom:767.733333pt;}
.y8f{bottom:769.733333pt;}
.y178{bottom:769.973333pt;}
.y12b{bottom:774.453333pt;}
.yea{bottom:776.133333pt;}
.y14f{bottom:777.973333pt;}
.y8{bottom:781.093333pt;}
.y36{bottom:783.333333pt;}
.y177{bottom:785.653333pt;}
.y12a{bottom:790.053333pt;}
.ye9{bottom:791.813333pt;}
.y7{bottom:793.733333pt;}
.y61{bottom:797.733333pt;}
.y176{bottom:801.253333pt;}
.y14e{bottom:801.653333pt;}
.y129{bottom:805.733333pt;}
.ye8{bottom:807.413333pt;}
.y6{bottom:813.093333pt;}
.y60{bottom:813.333333pt;}
.y35{bottom:815.733333pt;}
.y14d{bottom:817.253333pt;}
.ya9{bottom:821.253333pt;}
.y128{bottom:821.333333pt;}
.y175{bottom:824.853333pt;}
.y5f{bottom:828.933333pt;}
.y34{bottom:831.333333pt;}
.ye7{bottom:839.813333pt;}
.y174{bottom:840.533333pt;}
.y14c{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y5e{bottom:844.613333pt;}
.y33{bottom:846.933333pt;}
.y127{bottom:852.933333pt;}
.ye6{bottom:855.413333pt;}
.y14b{bottom:856.533333pt;}
.y5d{bottom:860.213333pt;}
.y173{bottom:864.133333pt;}
.y126{bottom:868.613333pt;}
.y32{bottom:870.853333pt;}
.ye5{bottom:871.013333pt;}
.y8a{bottom:872.213333pt;}
.y4{bottom:875.893333pt;}
.y14a{bottom:880.133333pt;}
.yba{bottom:880.853333pt;}
.y5c{bottom:884.133333pt;}
.y125{bottom:884.213333pt;}
.ye4{bottom:886.693333pt;}
.y172{bottom:887.813333pt;}
.ya8{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y124{bottom:899.840000pt;}
.ye3{bottom:902.320000pt;}
.y171{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.ya7{bottom:911.440000pt;}
.y123{bottom:915.520000pt;}
.ye2{bottom:917.920000pt;}
.y30{bottom:919.440000pt;}
.y5b{bottom:927.040000pt;}
.y2f{bottom:935.040000pt;}
.y122{bottom:939.440000pt;}
.y5a{bottom:942.720000pt;}
.ya6{bottom:943.040000pt;}
.ye1{bottom:950.320000pt;}
.y2e{bottom:950.720000pt;}
.y59{bottom:958.320000pt;}
.ya5{bottom:958.720000pt;}
.ye0{bottom:966.000000pt;}
.ya4{bottom:974.320000pt;}
.y87{bottom:974.640000pt;}
.ydf{bottom:981.600000pt;}
.y58{bottom:982.000000pt;}
.y2d{bottom:982.320000pt;}
.ya3{bottom:990.000000pt;}
.yde{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.ydd{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:23.996250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:50.960000pt;}
.h13{height:54.880000pt;}
.h8{height:54.927899pt;}
.h1a{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:70.480000pt;}
.h11{height:70.506667pt;}
.h16{height:70.560000pt;}
.h10{height:86.160000pt;}
.hf{height:101.760000pt;}
.he{height:101.786667pt;}
.h12{height:117.360000pt;}
.h19{height:117.440000pt;}
.h1b{height:133.040000pt;}
.h17{height:144.746667pt;}
.h1c{height:192.026667pt;}
.h14{height:195.520000pt;}
.h15{height:258.106667pt;}
.h18{height:273.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:65.120000pt;}
.wa{width:107.920000pt;}
.w5{width:111.280000pt;}
.we{width:111.946667pt;}
.w4{width:114.480000pt;}
.wf{width:114.960000pt;}
.w3{width:115.146667pt;}
.w9{width:120.906667pt;}
.wd{width:121.520000pt;}
.wb{width:122.426667pt;}
.w6{width:125.706667pt;}
.w10{width:128.000000pt;}
.wc{width:130.400000pt;}
.w11{width:146.826667pt;}
.w13{width:153.786667pt;}
.w7{width:154.400000pt;}
.w12{width:167.360000pt;}
.w14{width:517.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x14{left:98.879988pt;}
.x5{left:108.479988pt;}
.xb{left:126.960000pt;}
.x15{left:146.906667pt;}
.x2{left:171.306655pt;}
.x10{left:173.706667pt;}
.x7{left:200.986667pt;}
.x16{left:215.546667pt;}
.xc{left:248.586667pt;}
.x11{left:289.386667pt;}
.x8{left:316.186667pt;}
.xd{left:357.146667pt;}
.x12{left:418.026667pt;}
.x9{left:428.106667pt;}
.xe{left:480.293333pt;}
.xa{left:554.453333pt;}
.x13{left:565.493333pt;}
.xf{left:611.333333pt;}
.x3{left:718.773322pt;}
}




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