
    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_6cd2d2b2dbffdf5a8c86d3f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_fe79f263ad2501bf5e397e69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_fa70073be78296657279434e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_229671b6eba4aacb438130f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_cf5b54b838ee9f69dcdff9c4.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;}
.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;}
.lsf{letter-spacing:-1.266000px;}
.ls29{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.786000px;}
.ls25{letter-spacing:-0.579600px;}
.lsd{letter-spacing:-0.546000px;}
.ls13{letter-spacing:-0.544800px;}
.ls14{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.431400px;}
.ls23{letter-spacing:-0.326400px;}
.ls22{letter-spacing:-0.248400px;}
.ls1d{letter-spacing:-0.240600px;}
.ls2b{letter-spacing:-0.175800px;}
.ls6{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.107400px;}
.ls1c{letter-spacing:-0.069600px;}
.ls21{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.041040px;}
.ls1a{letter-spacing:-0.032400px;}
.ls2c{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.lsc{letter-spacing:0.060600px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.175200px;}
.ls1f{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.186600px;}
.ls9{letter-spacing:0.190200px;}
.ls1{letter-spacing:0.269760px;}
.ls12{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.393600px;}
.ls1e{letter-spacing:0.479400px;}
.ls27{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.678240px;}
.lse{letter-spacing:5.214000px;}
.ls18{letter-spacing:8.820000px;}
.ls28{letter-spacing:12.186720px;}
.ls10{letter-spacing:18.666720px;}
.ls26{letter-spacing:42.570720px;}
.ls3{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.899360px;}
.wsb{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.505760px;}
.wse{word-spacing:-13.473360px;}
.wsd{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.436160px;}
.wsc{word-spacing:-13.398360px;}
.ws11{word-spacing:-13.257360px;}
.ws14{word-spacing:-12.204000px;}
.ws13{word-spacing:-12.186000px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.765680px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._2d{margin-left:-4.266000px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.182960px;}
._2e{width:2.693520px;}
._2c{width:4.119120px;}
._2b{width:5.983200px;}
._34{width:7.094640px;}
._30{width:8.426160px;}
._2f{width:9.501840px;}
._31{width:10.726320px;}
._27{width:12.736080px;}
._28{width:13.792800px;}
._2a{width:14.804640px;}
._32{width:15.836400px;}
._35{width:16.864560px;}
._4b{width:17.918640px;}
._40{width:19.302480px;}
._3e{width:21.155040px;}
._3f{width:22.504080px;}
._4a{width:23.863200px;}
._48{width:25.756560px;}
._47{width:26.892000px;}
._3b{width:29.999520px;}
._3a{width:33.286320px;}
._49{width:39.740400px;}
._44{width:44.055360px;}
._43{width:45.955440px;}
._41{width:55.790640px;}
._36{width:57.847680px;}
._37{width:60.656400px;}
._42{width:69.413040px;}
._3d{width:90.118080px;}
._46{width:108.285120px;}
._45{width:109.301040px;}
._39{width:140.914080px;}
._3c{width:180.056880px;}
._38{width:262.239120px;}
._33{width:335.130240px;}
.fc8{color:rgb(0,123,184);}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,128,0);}
.fc3{color:transparent;}
.fc2{color:rgb(23,22,21);}
.fc6{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.960000px;}
.y70{bottom:6.660000px;}
.y7f{bottom:10.980000px;}
.yaf{bottom:12.774000px;}
.ya4{bottom:13.134000px;}
.yba{bottom:13.140000px;}
.yd8{bottom:17.280000px;}
.ya9{bottom:21.954000px;}
.y9b{bottom:22.314000px;}
.y91{bottom:22.320000px;}
.y75{bottom:27.720000px;}
.yae{bottom:31.134000px;}
.ya3{bottom:31.494000px;}
.yb9{bottom:31.500000px;}
.y7e{bottom:32.040000px;}
.ya8{bottom:40.134000px;}
.yb1{bottom:40.500000px;}
.y9a{bottom:40.674000px;}
.y90{bottom:40.680000px;}
.y73{bottom:48.780000px;}
.yad{bottom:49.314000px;}
.ya2{bottom:49.674000px;}
.yb8{bottom:49.860000px;}
.y7d{bottom:53.100000px;}
.ya7{bottom:58.494000px;}
.y99{bottom:58.854000px;}
.yb3{bottom:58.890000px;}
.yb6{bottom:59.040000px;}
.y6{bottom:59.760000px;}
.yac{bottom:67.674000px;}
.ya1{bottom:68.034000px;}
.yb7{bottom:68.040000px;}
.y72{bottom:69.840000px;}
.y7b{bottom:69.885000px;}
.ya6{bottom:76.854000px;}
.y98{bottom:77.214000px;}
.yb5{bottom:77.220000px;}
.yab{bottom:86.034000px;}
.ya0{bottom:86.394000px;}
.yb0{bottom:90.396000px;}
.y82{bottom:90.720000px;}
.y78{bottom:90.900000px;}
.y7a{bottom:90.945000px;}
.y6e{bottom:92.196000px;}
.yd4{bottom:94.716000px;}
.ya5{bottom:95.214000px;}
.y97{bottom:95.574000px;}
.y125{bottom:98.316000px;}
.y31{bottom:99.756000px;}
.y17d{bottom:102.996000px;}
.y64{bottom:104.256000px;}
.yaa{bottom:104.394000px;}
.y9f{bottom:104.754000px;}
.yff{bottom:108.036000px;}
.y81{bottom:111.780000px;}
.y77{bottom:111.960000px;}
.y6d{bottom:113.256000px;}
.y96{bottom:113.754000px;}
.yd3{bottom:115.776000px;}
.y141{bottom:116.316000px;}
.y124{bottom:119.376000px;}
.y30{bottom:120.816000px;}
.y9e{bottom:122.934000px;}
.y63{bottom:125.316000px;}
.yfe{bottom:129.096000px;}
.y95{bottom:132.114000px;}
.y6c{bottom:134.316000px;}
.yd2{bottom:136.836000px;}
.y140{bottom:137.376000px;}
.y123{bottom:140.436000px;}
.y9d{bottom:141.294000px;}
.y2f{bottom:141.876000px;}
.y92{bottom:146.016000px;}
.y62{bottom:146.376000px;}
.yfd{bottom:150.150000px;}
.y94{bottom:150.474000px;}
.y6b{bottom:155.370000px;}
.yd1{bottom:157.890000px;}
.y13f{bottom:158.430000px;}
.y9c{bottom:159.654000px;}
.y122{bottom:161.490000px;}
.y2e{bottom:162.930000px;}
.y61{bottom:167.430000px;}
.y93{bottom:168.834000px;}
.yfc{bottom:171.210000px;}
.y6a{bottom:176.430000px;}
.yd0{bottom:178.950000px;}
.y13e{bottom:179.490000px;}
.y121{bottom:182.550000px;}
.y2d{bottom:183.990000px;}
.y60{bottom:188.490000px;}
.yfb{bottom:192.270000px;}
.y69{bottom:197.490000px;}
.y17c{bottom:199.650000px;}
.ycf{bottom:200.010000px;}
.y13d{bottom:200.550000px;}
.y120{bottom:203.610000px;}
.y2c{bottom:205.050000px;}
.y5f{bottom:209.550000px;}
.yfa{bottom:213.330000px;}
.y68{bottom:218.550000px;}
.y17b{bottom:220.710000px;}
.yce{bottom:221.070000px;}
.y13c{bottom:221.610000px;}
.y2b{bottom:226.110000px;}
.y5e{bottom:230.610000px;}
.y11f{bottom:233.670000px;}
.yf9{bottom:234.390000px;}
.y67{bottom:239.610000px;}
.y17a{bottom:241.770000px;}
.ycd{bottom:242.130000px;}
.y13b{bottom:242.670000px;}
.y2a{bottom:247.170000px;}
.y5d{bottom:251.670000px;}
.y11e{bottom:254.730000px;}
.yf8{bottom:255.450000px;}
.y66{bottom:260.670000px;}
.y179{bottom:262.830000px;}
.ycc{bottom:263.190000px;}
.y13a{bottom:263.730000px;}
.y29{bottom:268.230000px;}
.y5c{bottom:272.730000px;}
.y8f{bottom:274.170000px;}
.y11d{bottom:275.790000px;}
.yf7{bottom:276.510000px;}
.y65{bottom:281.730000px;}
.y178{bottom:283.890000px;}
.ycb{bottom:284.250000px;}
.y139{bottom:284.790000px;}
.y28{bottom:289.290000px;}
.y154{bottom:293.790000px;}
.y11c{bottom:296.850000px;}
.yf6{bottom:297.570000px;}
.y5b{bottom:302.790000px;}
.y177{bottom:304.950000px;}
.y138{bottom:305.850000px;}
.y27{bottom:310.350000px;}
.y153{bottom:314.850000px;}
.y11b{bottom:317.910000px;}
.yf5{bottom:318.630000px;}
.y5a{bottom:323.850000px;}
.y176{bottom:326.010000px;}
.y137{bottom:326.910000px;}
.y8d{bottom:330.015000px;}
.y26{bottom:331.455000px;}
.y152{bottom:335.955000px;}
.y11a{bottom:339.015000px;}
.y59{bottom:344.955000px;}
.y175{bottom:347.115000px;}
.y136{bottom:348.015000px;}
.yf4{bottom:348.735000px;}
.y25{bottom:352.515000px;}
.y8c{bottom:355.575000px;}
.y151{bottom:357.015000px;}
.y119{bottom:360.075000px;}
.y58{bottom:366.015000px;}
.y174{bottom:367.995000px;}
.y135{bottom:369.075000px;}
.yf3{bottom:369.795000px;}
.y24{bottom:373.575000px;}
.y8b{bottom:376.635000px;}
.y150{bottom:378.075000px;}
.y118{bottom:381.135000px;}
.y57{bottom:387.075000px;}
.y173{bottom:389.055000px;}
.y134{bottom:390.135000px;}
.yf2{bottom:390.855000px;}
.y23{bottom:394.455000px;}
.y8a{bottom:397.695000px;}
.y14f{bottom:399.135000px;}
.y117{bottom:402.195000px;}
.y56{bottom:408.135000px;}
.y172{bottom:410.115000px;}
.y133{bottom:411.195000px;}
.yf1{bottom:411.915000px;}
.y22{bottom:415.515000px;}
.y89{bottom:418.755000px;}
.y14e{bottom:420.195000px;}
.y116{bottom:423.255000px;}
.y55{bottom:429.195000px;}
.y171{bottom:431.175000px;}
.y132{bottom:432.255000px;}
.yf0{bottom:432.975000px;}
.y21{bottom:436.575000px;}
.y88{bottom:439.815000px;}
.y14d{bottom:441.255000px;}
.y115{bottom:444.315000px;}
.y54{bottom:450.255000px;}
.y170{bottom:452.235000px;}
.y131{bottom:453.315000px;}
.yef{bottom:454.035000px;}
.y20{bottom:457.635000px;}
.y87{bottom:460.875000px;}
.y14c{bottom:462.315000px;}
.y53{bottom:471.315000px;}
.y16f{bottom:473.295000px;}
.y114{bottom:474.375000px;}
.yee{bottom:475.095000px;}
.y1f{bottom:478.695000px;}
.y86{bottom:481.935000px;}
.y14b{bottom:483.375000px;}
.y52{bottom:492.375000px;}
.y16e{bottom:494.355000px;}
.y113{bottom:495.435000px;}
.yed{bottom:496.155000px;}
.y1e{bottom:499.755000px;}
.y85{bottom:502.995000px;}
.y14a{bottom:504.435000px;}
.y51{bottom:513.435000px;}
.y16d{bottom:515.415000px;}
.y112{bottom:516.495000px;}
.yec{bottom:517.215000px;}
.y1d{bottom:520.815000px;}
.y84{bottom:524.055000px;}
.y149{bottom:525.495000px;}
.y50{bottom:534.495000px;}
.y16c{bottom:536.475000px;}
.y111{bottom:537.555000px;}
.yeb{bottom:538.275000px;}
.y83{bottom:539.175000px;}
.y1c{bottom:541.875000px;}
.y148{bottom:546.555000px;}
.y4f{bottom:555.555000px;}
.y16b{bottom:557.535000px;}
.y110{bottom:558.615000px;}
.yea{bottom:559.335000px;}
.y1b{bottom:562.935000px;}
.y147{bottom:567.615000px;}
.y4e{bottom:576.615000px;}
.y16a{bottom:578.595000px;}
.y10f{bottom:579.675000px;}
.ye9{bottom:580.395000px;}
.y1a{bottom:583.995000px;}
.y146{bottom:588.675000px;}
.y4d{bottom:597.705000px;}
.y169{bottom:599.685000px;}
.y10e{bottom:600.765000px;}
.ye8{bottom:601.485000px;}
.y80{bottom:603.285000px;}
.y19{bottom:607.605000px;}
.y145{bottom:609.765000px;}
.y4c{bottom:618.765000px;}
.y168{bottom:620.745000px;}
.y10d{bottom:621.825000px;}
.ye7{bottom:622.545000px;}
.y144{bottom:630.825000px;}
.y18{bottom:637.485000px;}
.y4b{bottom:639.825000px;}
.y167{bottom:641.805000px;}
.y10c{bottom:642.885000px;}
.ye6{bottom:643.605000px;}
.y143{bottom:651.885000px;}
.yca{bottom:653.145000px;}
.y17{bottom:658.545000px;}
.y4a{bottom:660.885000px;}
.y166{bottom:662.865000px;}
.y10b{bottom:663.945000px;}
.ye5{bottom:664.665000px;}
.y142{bottom:672.945000px;}
.yc9{bottom:674.205000px;}
.y16{bottom:679.605000px;}
.y49{bottom:681.945000px;}
.y165{bottom:683.925000px;}
.y130{bottom:685.005000px;}
.ye4{bottom:685.725000px;}
.y10a{bottom:694.005000px;}
.yc8{bottom:695.265000px;}
.y15{bottom:700.665000px;}
.y48{bottom:703.005000px;}
.y164{bottom:704.985000px;}
.y12f{bottom:706.065000px;}
.ye3{bottom:706.785000px;}
.y109{bottom:715.065000px;}
.yc7{bottom:716.325000px;}
.y14{bottom:721.725000px;}
.y47{bottom:724.065000px;}
.y163{bottom:726.045000px;}
.y12e{bottom:727.125000px;}
.ye2{bottom:727.845000px;}
.y7c{bottom:730.365000px;}
.y108{bottom:736.125000px;}
.yc6{bottom:737.385000px;}
.y13{bottom:742.785000px;}
.ye1{bottom:742.965000px;}
.y46{bottom:745.125000px;}
.y162{bottom:747.105000px;}
.y12d{bottom:748.005000px;}
.y107{bottom:757.005000px;}
.yc5{bottom:758.445000px;}
.y12{bottom:763.845000px;}
.y45{bottom:766.005000px;}
.y161{bottom:768.165000px;}
.y12c{bottom:769.065000px;}
.y106{bottom:778.065000px;}
.yc4{bottom:779.505000px;}
.y11{bottom:784.905000px;}
.ye0{bottom:785.805000px;}
.y44{bottom:787.065000px;}
.y160{bottom:789.225000px;}
.y79{bottom:798.585000px;}
.y105{bottom:799.125000px;}
.yc3{bottom:800.565000px;}
.y10{bottom:805.965000px;}
.y43{bottom:808.125000px;}
.y15f{bottom:810.285000px;}
.y104{bottom:820.185000px;}
.yc2{bottom:821.625000px;}
.yf{bottom:827.025000px;}
.ydf{bottom:828.645000px;}
.y42{bottom:829.185000px;}
.y15e{bottom:831.345000px;}
.y103{bottom:841.245000px;}
.yc1{bottom:842.685000px;}
.ye{bottom:848.085000px;}
.y41{bottom:850.245000px;}
.y15d{bottom:852.405000px;}
.y102{bottom:862.350000px;}
.yd{bottom:869.190000px;}
.y40{bottom:871.350000px;}
.yde{bottom:871.530000px;}
.yc0{bottom:872.790000px;}
.y15c{bottom:873.510000px;}
.y101{bottom:883.410000px;}
.yc{bottom:892.410000px;}
.ybf{bottom:893.850000px;}
.y15b{bottom:894.570000px;}
.y100{bottom:904.470000px;}
.y76{bottom:904.650000px;}
.y3f{bottom:913.470000px;}
.ydd{bottom:914.370000px;}
.ybe{bottom:914.910000px;}
.y15a{bottom:915.630000px;}
.yb{bottom:918.690000px;}
.y12b{bottom:925.530000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:935.430000px;}
.ybd{bottom:935.970000px;}
.ydc{bottom:936.330000px;}
.y159{bottom:936.690000px;}
.y12a{bottom:946.590000px;}
.y3d{bottom:955.590000px;}
.ybc{bottom:957.030000px;}
.y9{bottom:957.750000px;}
.ydb{bottom:958.110000px;}
.y129{bottom:967.650000px;}
.y3c{bottom:976.650000px;}
.ybb{bottom:978.090000px;}
.y158{bottom:978.810000px;}
.yda{bottom:979.890000px;}
.y8{bottom:982.950000px;}
.y128{bottom:988.710000px;}
.yb4{bottom:993.210000px;}
.y3b{bottom:997.710000px;}
.y157{bottom:999.870000px;}
.yd9{bottom:1001.670000px;}
.y127{bottom:1009.770000px;}
.y7{bottom:1016.610000px;}
.y3a{bottom:1018.770000px;}
.y156{bottom:1020.930000px;}
.yd7{bottom:1023.450000px;}
.y126{bottom:1030.830000px;}
.y71{bottom:1031.730000px;}
.y39{bottom:1039.830000px;}
.y155{bottom:1041.450000px;}
.y5{bottom:1055.310000px;}
.y38{bottom:1060.890000px;}
.yd6{bottom:1072.950000px;}
.y74{bottom:1073.850000px;}
.y37{bottom:1081.950000px;}
.yb2{bottom:1085.550000px;}
.y4{bottom:1086.090000px;}
.yd5{bottom:1094.010000px;}
.y36{bottom:1103.010000px;}
.y6f{bottom:1116.690000px;}
.y3{bottom:1116.870000px;}
.y35{bottom:1124.070000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1147.500000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h11{height:18.180000px;}
.h19{height:21.060000px;}
.h9{height:21.096000px;}
.h7{height:38.671172px;}
.hb{height:42.120000px;}
.h1a{height:42.156000px;}
.h18{height:45.170156px;}
.h15{height:54.900000px;}
.h12{height:54.936000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h10{height:63.216000px;}
.h3{height:65.884219px;}
.he{height:67.500000px;}
.h6{height:67.824844px;}
.h16{height:73.296000px;}
.ha{height:84.240000px;}
.h2{height:86.255508px;}
.h17{height:91.620000px;}
.h4{height:98.051133px;}
.hd{height:105.336000px;}
.hf{height:126.180000px;}
.hc{height:126.360000px;}
.h14{height:127.440000px;}
.h13{height:183.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:82.836000px;}
.wa{width:110.556000px;}
.wf{width:112.500000px;}
.we{width:116.496000px;}
.wd{width:120.780000px;}
.w8{width:123.300000px;}
.w3{width:142.776000px;}
.w5{width:149.616000px;}
.w7{width:172.830000px;}
.w9{width:226.110000px;}
.w6{width:263.190000px;}
.w4{width:309.090000px;}
.wb{width:323.535000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.960000px;}
.xa{left:7.734000px;}
.xf{left:11.520000px;}
.x10{left:29.880000px;}
.x6{left:53.999987px;}
.x16{left:66.960000px;}
.x1b{left:80.999987px;}
.x1c{left:86.039987px;}
.x8{left:94.535987px;}
.x7{left:108.035987px;}
.x11{left:129.096000px;}
.x9{left:145.116000px;}
.x5{left:173.189987px;}
.x15{left:199.649987px;}
.x3{left:286.634987px;}
.xb{left:288.615000px;}
.xd{left:297.435000px;}
.x12{left:302.655000px;}
.x2{left:350.534987px;}
.x17{left:391.215000px;}
.x4{left:419.114987px;}
.x13{left:426.675000px;}
.x18{left:474.945000px;}
.x1{left:479.264987px;}
.x19{left:596.445000px;}
.xc{left:598.425000px;}
.x14{left:653.505000px;}
.x1a{left:713.670000px;}
.x1d{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-1.125333pt;}
.ls29{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.698667pt;}
.ls25{letter-spacing:-0.515200pt;}
.lsd{letter-spacing:-0.485333pt;}
.ls13{letter-spacing:-0.484267pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.383467pt;}
.ls23{letter-spacing:-0.290133pt;}
.ls22{letter-spacing:-0.220800pt;}
.ls1d{letter-spacing:-0.213867pt;}
.ls2b{letter-spacing:-0.156267pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.095467pt;}
.ls1c{letter-spacing:-0.061867pt;}
.ls21{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls1a{letter-spacing:-0.028800pt;}
.ls2c{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.lsc{letter-spacing:0.053867pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.155733pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.165867pt;}
.ls9{letter-spacing:0.169067pt;}
.ls1{letter-spacing:0.239787pt;}
.ls12{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.349867pt;}
.ls1e{letter-spacing:0.426133pt;}
.ls27{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.602880pt;}
.lse{letter-spacing:4.634667pt;}
.ls18{letter-spacing:7.840000pt;}
.ls28{letter-spacing:10.832640pt;}
.ls10{letter-spacing:16.592640pt;}
.ls26{letter-spacing:37.840640pt;}
.ls3{letter-spacing:40.272640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.354987pt;}
.wsb{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.976320pt;}
.wsd{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.943253pt;}
.wsc{word-spacing:-11.909653pt;}
.ws11{word-spacing:-11.784320pt;}
.ws14{word-spacing:-10.848000pt;}
.ws13{word-spacing:-10.832000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.569493pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._2d{margin-left:-3.792000pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.051520pt;}
._2e{width:2.394240pt;}
._2c{width:3.661440pt;}
._2b{width:5.318400pt;}
._34{width:6.306347pt;}
._30{width:7.489920pt;}
._2f{width:8.446080pt;}
._31{width:9.534507pt;}
._27{width:11.320960pt;}
._28{width:12.260267pt;}
._2a{width:13.159680pt;}
._32{width:14.076800pt;}
._35{width:14.990720pt;}
._4b{width:15.927680pt;}
._40{width:17.157760pt;}
._3e{width:18.804480pt;}
._3f{width:20.003627pt;}
._4a{width:21.211733pt;}
._48{width:22.894720pt;}
._47{width:23.904000pt;}
._3b{width:26.666240pt;}
._3a{width:29.587840pt;}
._49{width:35.324800pt;}
._44{width:39.160320pt;}
._43{width:40.849280pt;}
._41{width:49.591680pt;}
._36{width:51.420160pt;}
._37{width:53.916800pt;}
._42{width:61.700480pt;}
._3d{width:80.104960pt;}
._46{width:96.253440pt;}
._45{width:97.156480pt;}
._39{width:125.256960pt;}
._3c{width:160.050560pt;}
._38{width:233.101440pt;}
._33{width:297.893547pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.520000pt;}
.y70{bottom:5.920000pt;}
.y7f{bottom:9.760000pt;}
.yaf{bottom:11.354667pt;}
.ya4{bottom:11.674667pt;}
.yba{bottom:11.680000pt;}
.yd8{bottom:15.360000pt;}
.ya9{bottom:19.514667pt;}
.y9b{bottom:19.834667pt;}
.y91{bottom:19.840000pt;}
.y75{bottom:24.640000pt;}
.yae{bottom:27.674667pt;}
.ya3{bottom:27.994667pt;}
.yb9{bottom:28.000000pt;}
.y7e{bottom:28.480000pt;}
.ya8{bottom:35.674667pt;}
.yb1{bottom:36.000000pt;}
.y9a{bottom:36.154667pt;}
.y90{bottom:36.160000pt;}
.y73{bottom:43.360000pt;}
.yad{bottom:43.834667pt;}
.ya2{bottom:44.154667pt;}
.yb8{bottom:44.320000pt;}
.y7d{bottom:47.200000pt;}
.ya7{bottom:51.994667pt;}
.y99{bottom:52.314667pt;}
.yb3{bottom:52.346667pt;}
.yb6{bottom:52.480000pt;}
.y6{bottom:53.120000pt;}
.yac{bottom:60.154667pt;}
.ya1{bottom:60.474667pt;}
.yb7{bottom:60.480000pt;}
.y72{bottom:62.080000pt;}
.y7b{bottom:62.120000pt;}
.ya6{bottom:68.314667pt;}
.y98{bottom:68.634667pt;}
.yb5{bottom:68.640000pt;}
.yab{bottom:76.474667pt;}
.ya0{bottom:76.794667pt;}
.yb0{bottom:80.352000pt;}
.y82{bottom:80.640000pt;}
.y78{bottom:80.800000pt;}
.y7a{bottom:80.840000pt;}
.y6e{bottom:81.952000pt;}
.yd4{bottom:84.192000pt;}
.ya5{bottom:84.634667pt;}
.y97{bottom:84.954667pt;}
.y125{bottom:87.392000pt;}
.y31{bottom:88.672000pt;}
.y17d{bottom:91.552000pt;}
.y64{bottom:92.672000pt;}
.yaa{bottom:92.794667pt;}
.y9f{bottom:93.114667pt;}
.yff{bottom:96.032000pt;}
.y81{bottom:99.360000pt;}
.y77{bottom:99.520000pt;}
.y6d{bottom:100.672000pt;}
.y96{bottom:101.114667pt;}
.yd3{bottom:102.912000pt;}
.y141{bottom:103.392000pt;}
.y124{bottom:106.112000pt;}
.y30{bottom:107.392000pt;}
.y9e{bottom:109.274667pt;}
.y63{bottom:111.392000pt;}
.yfe{bottom:114.752000pt;}
.y95{bottom:117.434667pt;}
.y6c{bottom:119.392000pt;}
.yd2{bottom:121.632000pt;}
.y140{bottom:122.112000pt;}
.y123{bottom:124.832000pt;}
.y9d{bottom:125.594667pt;}
.y2f{bottom:126.112000pt;}
.y92{bottom:129.792000pt;}
.y62{bottom:130.112000pt;}
.yfd{bottom:133.466667pt;}
.y94{bottom:133.754667pt;}
.y6b{bottom:138.106667pt;}
.yd1{bottom:140.346667pt;}
.y13f{bottom:140.826667pt;}
.y9c{bottom:141.914667pt;}
.y122{bottom:143.546667pt;}
.y2e{bottom:144.826667pt;}
.y61{bottom:148.826667pt;}
.y93{bottom:150.074667pt;}
.yfc{bottom:152.186667pt;}
.y6a{bottom:156.826667pt;}
.yd0{bottom:159.066667pt;}
.y13e{bottom:159.546667pt;}
.y121{bottom:162.266667pt;}
.y2d{bottom:163.546667pt;}
.y60{bottom:167.546667pt;}
.yfb{bottom:170.906667pt;}
.y69{bottom:175.546667pt;}
.y17c{bottom:177.466667pt;}
.ycf{bottom:177.786667pt;}
.y13d{bottom:178.266667pt;}
.y120{bottom:180.986667pt;}
.y2c{bottom:182.266667pt;}
.y5f{bottom:186.266667pt;}
.yfa{bottom:189.626667pt;}
.y68{bottom:194.266667pt;}
.y17b{bottom:196.186667pt;}
.yce{bottom:196.506667pt;}
.y13c{bottom:196.986667pt;}
.y2b{bottom:200.986667pt;}
.y5e{bottom:204.986667pt;}
.y11f{bottom:207.706667pt;}
.yf9{bottom:208.346667pt;}
.y67{bottom:212.986667pt;}
.y17a{bottom:214.906667pt;}
.ycd{bottom:215.226667pt;}
.y13b{bottom:215.706667pt;}
.y2a{bottom:219.706667pt;}
.y5d{bottom:223.706667pt;}
.y11e{bottom:226.426667pt;}
.yf8{bottom:227.066667pt;}
.y66{bottom:231.706667pt;}
.y179{bottom:233.626667pt;}
.ycc{bottom:233.946667pt;}
.y13a{bottom:234.426667pt;}
.y29{bottom:238.426667pt;}
.y5c{bottom:242.426667pt;}
.y8f{bottom:243.706667pt;}
.y11d{bottom:245.146667pt;}
.yf7{bottom:245.786667pt;}
.y65{bottom:250.426667pt;}
.y178{bottom:252.346667pt;}
.ycb{bottom:252.666667pt;}
.y139{bottom:253.146667pt;}
.y28{bottom:257.146667pt;}
.y154{bottom:261.146667pt;}
.y11c{bottom:263.866667pt;}
.yf6{bottom:264.506667pt;}
.y5b{bottom:269.146667pt;}
.y177{bottom:271.066667pt;}
.y138{bottom:271.866667pt;}
.y27{bottom:275.866667pt;}
.y153{bottom:279.866667pt;}
.y11b{bottom:282.586667pt;}
.yf5{bottom:283.226667pt;}
.y5a{bottom:287.866667pt;}
.y176{bottom:289.786667pt;}
.y137{bottom:290.586667pt;}
.y8d{bottom:293.346667pt;}
.y26{bottom:294.626667pt;}
.y152{bottom:298.626667pt;}
.y11a{bottom:301.346667pt;}
.y59{bottom:306.626667pt;}
.y175{bottom:308.546667pt;}
.y136{bottom:309.346667pt;}
.yf4{bottom:309.986667pt;}
.y25{bottom:313.346667pt;}
.y8c{bottom:316.066667pt;}
.y151{bottom:317.346667pt;}
.y119{bottom:320.066667pt;}
.y58{bottom:325.346667pt;}
.y174{bottom:327.106667pt;}
.y135{bottom:328.066667pt;}
.yf3{bottom:328.706667pt;}
.y24{bottom:332.066667pt;}
.y8b{bottom:334.786667pt;}
.y150{bottom:336.066667pt;}
.y118{bottom:338.786667pt;}
.y57{bottom:344.066667pt;}
.y173{bottom:345.826667pt;}
.y134{bottom:346.786667pt;}
.yf2{bottom:347.426667pt;}
.y23{bottom:350.626667pt;}
.y8a{bottom:353.506667pt;}
.y14f{bottom:354.786667pt;}
.y117{bottom:357.506667pt;}
.y56{bottom:362.786667pt;}
.y172{bottom:364.546667pt;}
.y133{bottom:365.506667pt;}
.yf1{bottom:366.146667pt;}
.y22{bottom:369.346667pt;}
.y89{bottom:372.226667pt;}
.y14e{bottom:373.506667pt;}
.y116{bottom:376.226667pt;}
.y55{bottom:381.506667pt;}
.y171{bottom:383.266667pt;}
.y132{bottom:384.226667pt;}
.yf0{bottom:384.866667pt;}
.y21{bottom:388.066667pt;}
.y88{bottom:390.946667pt;}
.y14d{bottom:392.226667pt;}
.y115{bottom:394.946667pt;}
.y54{bottom:400.226667pt;}
.y170{bottom:401.986667pt;}
.y131{bottom:402.946667pt;}
.yef{bottom:403.586667pt;}
.y20{bottom:406.786667pt;}
.y87{bottom:409.666667pt;}
.y14c{bottom:410.946667pt;}
.y53{bottom:418.946667pt;}
.y16f{bottom:420.706667pt;}
.y114{bottom:421.666667pt;}
.yee{bottom:422.306667pt;}
.y1f{bottom:425.506667pt;}
.y86{bottom:428.386667pt;}
.y14b{bottom:429.666667pt;}
.y52{bottom:437.666667pt;}
.y16e{bottom:439.426667pt;}
.y113{bottom:440.386667pt;}
.yed{bottom:441.026667pt;}
.y1e{bottom:444.226667pt;}
.y85{bottom:447.106667pt;}
.y14a{bottom:448.386667pt;}
.y51{bottom:456.386667pt;}
.y16d{bottom:458.146667pt;}
.y112{bottom:459.106667pt;}
.yec{bottom:459.746667pt;}
.y1d{bottom:462.946667pt;}
.y84{bottom:465.826667pt;}
.y149{bottom:467.106667pt;}
.y50{bottom:475.106667pt;}
.y16c{bottom:476.866667pt;}
.y111{bottom:477.826667pt;}
.yeb{bottom:478.466667pt;}
.y83{bottom:479.266667pt;}
.y1c{bottom:481.666667pt;}
.y148{bottom:485.826667pt;}
.y4f{bottom:493.826667pt;}
.y16b{bottom:495.586667pt;}
.y110{bottom:496.546667pt;}
.yea{bottom:497.186667pt;}
.y1b{bottom:500.386667pt;}
.y147{bottom:504.546667pt;}
.y4e{bottom:512.546667pt;}
.y16a{bottom:514.306667pt;}
.y10f{bottom:515.266667pt;}
.ye9{bottom:515.906667pt;}
.y1a{bottom:519.106667pt;}
.y146{bottom:523.266667pt;}
.y4d{bottom:531.293333pt;}
.y169{bottom:533.053333pt;}
.y10e{bottom:534.013333pt;}
.ye8{bottom:534.653333pt;}
.y80{bottom:536.253333pt;}
.y19{bottom:540.093333pt;}
.y145{bottom:542.013333pt;}
.y4c{bottom:550.013333pt;}
.y168{bottom:551.773333pt;}
.y10d{bottom:552.733333pt;}
.ye7{bottom:553.373333pt;}
.y144{bottom:560.733333pt;}
.y18{bottom:566.653333pt;}
.y4b{bottom:568.733333pt;}
.y167{bottom:570.493333pt;}
.y10c{bottom:571.453333pt;}
.ye6{bottom:572.093333pt;}
.y143{bottom:579.453333pt;}
.yca{bottom:580.573333pt;}
.y17{bottom:585.373333pt;}
.y4a{bottom:587.453333pt;}
.y166{bottom:589.213333pt;}
.y10b{bottom:590.173333pt;}
.ye5{bottom:590.813333pt;}
.y142{bottom:598.173333pt;}
.yc9{bottom:599.293333pt;}
.y16{bottom:604.093333pt;}
.y49{bottom:606.173333pt;}
.y165{bottom:607.933333pt;}
.y130{bottom:608.893333pt;}
.ye4{bottom:609.533333pt;}
.y10a{bottom:616.893333pt;}
.yc8{bottom:618.013333pt;}
.y15{bottom:622.813333pt;}
.y48{bottom:624.893333pt;}
.y164{bottom:626.653333pt;}
.y12f{bottom:627.613333pt;}
.ye3{bottom:628.253333pt;}
.y109{bottom:635.613333pt;}
.yc7{bottom:636.733333pt;}
.y14{bottom:641.533333pt;}
.y47{bottom:643.613333pt;}
.y163{bottom:645.373333pt;}
.y12e{bottom:646.333333pt;}
.ye2{bottom:646.973333pt;}
.y7c{bottom:649.213333pt;}
.y108{bottom:654.333333pt;}
.yc6{bottom:655.453333pt;}
.y13{bottom:660.253333pt;}
.ye1{bottom:660.413333pt;}
.y46{bottom:662.333333pt;}
.y162{bottom:664.093333pt;}
.y12d{bottom:664.893333pt;}
.y107{bottom:672.893333pt;}
.yc5{bottom:674.173333pt;}
.y12{bottom:678.973333pt;}
.y45{bottom:680.893333pt;}
.y161{bottom:682.813333pt;}
.y12c{bottom:683.613333pt;}
.y106{bottom:691.613333pt;}
.yc4{bottom:692.893333pt;}
.y11{bottom:697.693333pt;}
.ye0{bottom:698.493333pt;}
.y44{bottom:699.613333pt;}
.y160{bottom:701.533333pt;}
.y79{bottom:709.853333pt;}
.y105{bottom:710.333333pt;}
.yc3{bottom:711.613333pt;}
.y10{bottom:716.413333pt;}
.y43{bottom:718.333333pt;}
.y15f{bottom:720.253333pt;}
.y104{bottom:729.053333pt;}
.yc2{bottom:730.333333pt;}
.yf{bottom:735.133333pt;}
.ydf{bottom:736.573333pt;}
.y42{bottom:737.053333pt;}
.y15e{bottom:738.973333pt;}
.y103{bottom:747.773333pt;}
.yc1{bottom:749.053333pt;}
.ye{bottom:753.853333pt;}
.y41{bottom:755.773333pt;}
.y15d{bottom:757.693333pt;}
.y102{bottom:766.533333pt;}
.yd{bottom:772.613333pt;}
.y40{bottom:774.533333pt;}
.yde{bottom:774.693333pt;}
.yc0{bottom:775.813333pt;}
.y15c{bottom:776.453333pt;}
.y101{bottom:785.253333pt;}
.yc{bottom:793.253333pt;}
.ybf{bottom:794.533333pt;}
.y15b{bottom:795.173333pt;}
.y100{bottom:803.973333pt;}
.y76{bottom:804.133333pt;}
.y3f{bottom:811.973333pt;}
.ydd{bottom:812.773333pt;}
.ybe{bottom:813.253333pt;}
.y15a{bottom:813.893333pt;}
.yb{bottom:816.613333pt;}
.y12b{bottom:822.693333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:831.493333pt;}
.ybd{bottom:831.973333pt;}
.ydc{bottom:832.293333pt;}
.y159{bottom:832.613333pt;}
.y12a{bottom:841.413333pt;}
.y3d{bottom:849.413333pt;}
.ybc{bottom:850.693333pt;}
.y9{bottom:851.333333pt;}
.ydb{bottom:851.653333pt;}
.y129{bottom:860.133333pt;}
.y3c{bottom:868.133333pt;}
.ybb{bottom:869.413333pt;}
.y158{bottom:870.053333pt;}
.yda{bottom:871.013333pt;}
.y8{bottom:873.733333pt;}
.y128{bottom:878.853333pt;}
.yb4{bottom:882.853333pt;}
.y3b{bottom:886.853333pt;}
.y157{bottom:888.773333pt;}
.yd9{bottom:890.373333pt;}
.y127{bottom:897.573333pt;}
.y7{bottom:903.653333pt;}
.y3a{bottom:905.573333pt;}
.y156{bottom:907.493333pt;}
.yd7{bottom:909.733333pt;}
.y126{bottom:916.293333pt;}
.y71{bottom:917.093333pt;}
.y39{bottom:924.293333pt;}
.y155{bottom:925.733333pt;}
.y5{bottom:938.053333pt;}
.y38{bottom:943.013333pt;}
.yd6{bottom:953.733333pt;}
.y74{bottom:954.533333pt;}
.y37{bottom:961.733333pt;}
.yb2{bottom:964.933333pt;}
.y4{bottom:965.413333pt;}
.yd5{bottom:972.453333pt;}
.y36{bottom:980.453333pt;}
.y6f{bottom:992.613333pt;}
.y3{bottom:992.773333pt;}
.y35{bottom:999.173333pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1020.000000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h11{height:16.160000pt;}
.h19{height:18.720000pt;}
.h9{height:18.752000pt;}
.h7{height:34.374375pt;}
.hb{height:37.440000pt;}
.h1a{height:37.472000pt;}
.h18{height:40.151250pt;}
.h15{height:48.800000pt;}
.h12{height:48.832000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h10{height:56.192000pt;}
.h3{height:58.563750pt;}
.he{height:60.000000pt;}
.h6{height:60.288750pt;}
.h16{height:65.152000pt;}
.ha{height:74.880000pt;}
.h2{height:76.671562pt;}
.h17{height:81.440000pt;}
.h4{height:87.156562pt;}
.hd{height:93.632000pt;}
.hf{height:112.160000pt;}
.hc{height:112.320000pt;}
.h14{height:113.280000pt;}
.h13{height:162.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:73.632000pt;}
.wa{width:98.272000pt;}
.wf{width:100.000000pt;}
.we{width:103.552000pt;}
.wd{width:107.360000pt;}
.w8{width:109.600000pt;}
.w3{width:126.912000pt;}
.w5{width:132.992000pt;}
.w7{width:153.626667pt;}
.w9{width:200.986667pt;}
.w6{width:233.946667pt;}
.w4{width:274.746667pt;}
.wb{width:287.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.520000pt;}
.xa{left:6.874667pt;}
.xf{left:10.240000pt;}
.x10{left:26.560000pt;}
.x6{left:47.999988pt;}
.x16{left:59.520000pt;}
.x1b{left:71.999988pt;}
.x1c{left:76.479988pt;}
.x8{left:84.031988pt;}
.x7{left:96.031988pt;}
.x11{left:114.752000pt;}
.x9{left:128.992000pt;}
.x5{left:153.946655pt;}
.x15{left:177.466655pt;}
.x3{left:254.786655pt;}
.xb{left:256.546667pt;}
.xd{left:264.386667pt;}
.x12{left:269.026667pt;}
.x2{left:311.586655pt;}
.x17{left:347.746667pt;}
.x4{left:372.546655pt;}
.x13{left:379.266667pt;}
.x18{left:422.173333pt;}
.x1{left:426.013322pt;}
.x19{left:530.173333pt;}
.xc{left:531.933333pt;}
.x14{left:580.893333pt;}
.x1a{left:634.373333pt;}
.x1d{left:746.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  