
    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_b8c327195112a0643c21cae7.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_faf0cc6bec6c73d889677c4f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c8cb147fe8be72ba5ed3bd5b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4650b9747ebd1fac215e77a4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aeae02d83a29b32c89ba6c42.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b29b8ebf3747d64635efb221.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3443d0cee829a40be4772fa1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.649414;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_0eeb84b6862cf77b0c5d3185.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb982b419a17d5a942102188.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4d40233165f5affdf2ecc555.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_179d4e392ae36f395fd92bd5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7a1cc2676b6a03b75165481c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.va{vertical-align:-8.640000px;}
.v9{vertical-align:-2.520000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.520000px;}
.v7{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.vb{vertical-align:18.000000px;}
.v3{vertical-align:21.960000px;}
.v5{vertical-align:29.880000px;}
.v4{vertical-align:35.640000px;}
.ls31{letter-spacing:-0.391800px;}
.ls30{letter-spacing:-0.267600px;}
.ls19{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls33{letter-spacing:-0.123600px;}
.ls8{letter-spacing:-0.121200px;}
.ls1c{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls2e{letter-spacing:-0.067800px;}
.ls1b{letter-spacing:-0.063600px;}
.ls39{letter-spacing:-0.031680px;}
.ls38{letter-spacing:-0.011160px;}
.ls32{letter-spacing:-0.003960px;}
.ls3{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.021960px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls2f{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls35{letter-spacing:0.098400px;}
.ls4{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.173400px;}
.ls2c{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls20{letter-spacing:0.250200px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:2.252520px;}
.ls36{letter-spacing:2.470320px;}
.lsc{letter-spacing:2.612520px;}
.ls1f{letter-spacing:2.904120px;}
.ls15{letter-spacing:3.264120px;}
.ls1e{letter-spacing:3.575880px;}
.ls21{letter-spacing:3.935880px;}
.lsd{letter-spacing:4.592160px;}
.lse{letter-spacing:5.625000px;}
.ls37{letter-spacing:9.092520px;}
.ls22{letter-spacing:9.452520px;}
.ls27{letter-spacing:9.812520px;}
.ls16{letter-spacing:12.984120px;}
.ls25{letter-spacing:13.655880px;}
.ls13{letter-spacing:15.212520px;}
.ls14{letter-spacing:15.572520px;}
.ls12{letter-spacing:15.932520px;}
.ls24{letter-spacing:16.224120px;}
.ls10{letter-spacing:16.261200px;}
.ls17{letter-spacing:16.895880px;}
.ls23{letter-spacing:18.540000px;}
.ls2a{letter-spacing:18.551880px;}
.ls28{letter-spacing:18.812520px;}
.ls11{letter-spacing:19.172520px;}
.lsf{letter-spacing:27.421200px;}
.ls2d{letter-spacing:37.893600px;}
.ls2b{letter-spacing:40.412520px;}
.ls3b{letter-spacing:47.726640px;}
.ls29{letter-spacing:64.172520px;}
.ls3a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws19{word-spacing:-13.248360px;}
.ws2{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.222440px;}
.ws1c{word-spacing:-13.215240px;}
.wsb{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.134000px;}
.ws18{word-spacing:-13.102800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-9.358800px;}
.wsd{word-spacing:-9.266400px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:3.063960px;}
.wse{word-spacing:3.423960px;}
.ws3{word-spacing:4.304880px;}
.ws14{word-spacing:5.761440px;}
.ws16{word-spacing:6.481440px;}
.ws12{word-spacing:6.841440px;}
.ws10{word-spacing:9.001440px;}
.ws1a{word-spacing:9.481440px;}
.ws15{word-spacing:10.869480px;}
.ws13{word-spacing:11.229480px;}
._10{margin-left:-7.309440px;}
._13{margin-left:-5.673000px;}
._e{margin-left:-3.486960px;}
._5{margin-left:-2.404800px;}
._1{margin-left:-1.016640px;}
._0{width:1.006812px;}
._8{width:2.044753px;}
._6{width:3.066000px;}
._c{width:4.689600px;}
._7{width:6.252600px;}
._2{width:7.395000px;}
._3{width:8.776197px;}
._b{width:9.799199px;}
._a{width:11.002200px;}
._f{width:12.193560px;}
._11{width:13.236241px;}
._19{width:14.286960px;}
._d{width:15.330600px;}
._20{width:16.343283px;}
._9{width:17.554800px;}
._17{width:18.937800px;}
._4{width:20.260200px;}
._1f{width:26.542800px;}
._16{width:42.568791px;}
._18{width:58.556880px;}
._15{width:61.812480px;}
._14{width:66.973680px;}
._1c{width:83.266200px;}
._1a{width:125.169840px;}
._12{width:128.357280px;}
._1e{width:135.510480px;}
._1d{width:175.430160px;}
._1b{width:239.818680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:7.830000px;}
.y83{bottom:7.860000px;}
.y80{bottom:7.920000px;}
.y98{bottom:7.950000px;}
.y120{bottom:12.420000px;}
.y11e{bottom:20.880000px;}
.y123{bottom:20.970000px;}
.y11d{bottom:25.380000px;}
.yc9{bottom:25.470000px;}
.y117{bottom:29.880000px;}
.y115{bottom:29.910000px;}
.ybe{bottom:29.970000px;}
.y11c{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye4{bottom:114.060000px;}
.y113{bottom:116.940000px;}
.y7c{bottom:127.470000px;}
.y156{bottom:129.540000px;}
.ye3{bottom:131.700000px;}
.y55{bottom:134.580000px;}
.y133{bottom:141.960000px;}
.y27{bottom:142.050000px;}
.ya5{bottom:144.030000px;}
.y155{bottom:147.090000px;}
.y112{bottom:152.130000px;}
.y26{bottom:159.600000px;}
.y154{bottom:164.730000px;}
.ye2{bottom:167.250000px;}
.y111{bottom:169.680000px;}
.y54{bottom:170.130000px;}
.y132{bottom:177.150000px;}
.y25{bottom:177.240000px;}
.ya4{bottom:182.190000px;}
.ye1{bottom:184.890000px;}
.y7b{bottom:186.870000px;}
.y110{bottom:187.320000px;}
.y153{bottom:191.280000px;}
.y131{bottom:194.790000px;}
.ya3{bottom:199.740000px;}
.ye0{bottom:202.440000px;}
.y53{bottom:204.510000px;}
.y10f{bottom:204.870000px;}
.y152{bottom:208.830000px;}
.y52{bottom:212.070000px;}
.y130{bottom:212.340000px;}
.y24{bottom:212.790000px;}
.ybd{bottom:216.120000px;}
.ya2{bottom:217.380000px;}
.y7a{bottom:225.030000px;}
.y151{bottom:226.470000px;}
.y12f{bottom:229.890000px;}
.y23{bottom:230.340000px;}
.ya1{bottom:234.930000px;}
.ydf{bottom:237.990000px;}
.y10e{bottom:240.510000px;}
.y79{bottom:242.670000px;}
.y12e{bottom:247.530000px;}
.y22{bottom:247.980000px;}
.y51{bottom:252.300000px;}
.ya0{bottom:252.480000px;}
.y150{bottom:253.020000px;}
.yde{bottom:255.630000px;}
.y10d{bottom:258.060000px;}
.y78{bottom:260.220000px;}
.y12d{bottom:265.080000px;}
.y21{bottom:265.530000px;}
.y50{bottom:269.940000px;}
.ydd{bottom:273.180000px;}
.ybc{bottom:275.520000px;}
.y10c{bottom:275.610000px;}
.y77{bottom:277.770000px;}
.y9f{bottom:279.120000px;}
.y14f{bottom:279.660000px;}
.y12c{bottom:282.720000px;}
.y4f{bottom:287.490000px;}
.ydc{bottom:290.730000px;}
.y10b{bottom:293.250000px;}
.y76{bottom:295.410000px;}
.y12b{bottom:300.270000px;}
.y20{bottom:301.170000px;}
.y4e{bottom:305.040000px;}
.y14e{bottom:306.210000px;}
.ydb{bottom:308.370000px;}
.y10a{bottom:310.800000px;}
.y75{bottom:312.960000px;}
.y9e{bottom:313.950000px;}
.y12a{bottom:317.820000px;}
.y1f{bottom:318.720000px;}
.y4d{bottom:322.680000px;}
.y14d{bottom:323.760000px;}
.yda{bottom:325.920000px;}
.y9d{bottom:326.190000px;}
.y109{bottom:328.440000px;}
.y74{bottom:330.600000px;}
.ybb{bottom:334.920000px;}
.y129{bottom:335.460000px;}
.y1e{bottom:336.270000px;}
.y4c{bottom:340.230000px;}
.yd9{bottom:343.560000px;}
.y108{bottom:345.990000px;}
.y73{bottom:348.150000px;}
.y14c{bottom:350.400000px;}
.y9c{bottom:353.460000px;}
.y1d{bottom:353.910000px;}
.yd8{bottom:361.200000px;}
.y128{bottom:362.370000px;}
.y107{bottom:363.540000px;}
.y4b{bottom:366.870000px;}
.y14b{bottom:367.950000px;}
.y1c{bottom:371.460000px;}
.yba{bottom:373.170000px;}
.yd7{bottom:378.750000px;}
.y9b{bottom:380.820000px;}
.y72{bottom:383.700000px;}
.yb9{bottom:390.720000px;}
.y14a{bottom:394.590000px;}
.yd6{bottom:396.390000px;}
.y1b{bottom:398.370000px;}
.y106{bottom:399.180000px;}
.y71{bottom:401.340000px;}
.y4a{bottom:402.420000px;}
.y9a{bottom:408.180000px;}
.yb8{bottom:408.270000px;}
.y127{bottom:409.890000px;}
.y149{bottom:412.140000px;}
.y105{bottom:416.730000px;}
.y70{bottom:418.890000px;}
.y49{bottom:419.970000px;}
.y126{bottom:422.040000px;}
.yd5{bottom:422.940000px;}
.yb7{bottom:425.910000px;}
.y148{bottom:429.690000px;}
.y104{bottom:434.370000px;}
.y99{bottom:435.450000px;}
.y48{bottom:437.610000px;}
.yb6{bottom:443.460000px;}
.y1a{bottom:446.970000px;}
.y125{bottom:449.400000px;}
.y103{bottom:451.920000px;}
.y6f{bottom:454.530000px;}
.y147{bottom:456.330000px;}
.yd4{bottom:457.770000px;}
.yb5{bottom:461.100000px;}
.y97{bottom:462.810000px;}
.y47{bottom:464.160000px;}
.y102{bottom:469.470000px;}
.yd3{bottom:470.040000px;}
.y6e{bottom:472.110000px;}
.y146{bottom:473.910000px;}
.y124{bottom:476.880000px;}
.yb4{bottom:478.680000px;}
.y19{bottom:484.080000px;}
.y101{bottom:487.140000px;}
.y6d{bottom:489.660000px;}
.y96{bottom:490.200000px;}
.y145{bottom:491.550000px;}
.yb3{bottom:496.230000px;}
.yd2{bottom:497.310000px;}
.y46{bottom:499.830000px;}
.y18{bottom:501.630000px;}
.y100{bottom:504.690000px;}
.yb2{bottom:513.870000px;}
.y6c{bottom:516.300000px;}
.y45{bottom:517.380000px;}
.y95{bottom:517.560000px;}
.y144{bottom:518.100000px;}
.y17{bottom:519.180000px;}
.yd1{bottom:524.670000px;}
.y122{bottom:526.290000px;}
.yb1{bottom:531.420000px;}
.y143{bottom:535.650000px;}
.y16{bottom:536.820000px;}
.yff{bottom:540.330000px;}
.y44{bottom:543.930000px;}
.y94{bottom:544.830000px;}
.yb0{bottom:549.060000px;}
.yd0{bottom:552.030000px;}
.y6b{bottom:552.210000px;}
.y15{bottom:554.370000px;}
.yfe{bottom:557.880000px;}
.y142{bottom:562.290000px;}
.yaf{bottom:566.610000px;}
.y14{bottom:571.920000px;}
.y93{bottom:572.190000px;}
.yfd{bottom:575.430000px;}
.y43{bottom:579.570000px;}
.y141{bottom:579.840000px;}
.yae{bottom:584.160000px;}
.y121{bottom:588.750000px;}
.y13{bottom:589.560000px;}
.yfc{bottom:593.070000px;}
.ycf{bottom:596.940000px;}
.y42{bottom:597.120000px;}
.y140{bottom:597.480000px;}
.y92{bottom:599.550000px;}
.y6a{bottom:600.450000px;}
.yad{bottom:601.800000px;}
.y12{bottom:607.110000px;}
.yfb{bottom:610.620000px;}
.y41{bottom:614.760000px;}
.y69{bottom:618.090000px;}
.yac{bottom:619.350000px;}
.y13f{bottom:624.030000px;}
.yce{bottom:624.300000px;}
.y11{bottom:624.750000px;}
.y91{bottom:626.910000px;}
.y40{bottom:632.310000px;}
.y68{bottom:635.640000px;}
.yab{bottom:636.990000px;}
.y11f{bottom:638.160000px;}
.y10{bottom:642.300000px;}
.yfa{bottom:646.260000px;}
.y3f{bottom:649.860000px;}
.y13e{bottom:650.580000px;}
.ycd{bottom:651.660000px;}
.y67{bottom:653.190000px;}
.y90{bottom:654.180000px;}
.yf{bottom:659.850000px;}
.yaa{bottom:663.540000px;}
.yf9{bottom:663.810000px;}
.y3e{bottom:667.500000px;}
.y13d{bottom:668.220000px;}
.ye{bottom:677.490000px;}
.ycc{bottom:678.930000px;}
.ya9{bottom:681.090000px;}
.yf8{bottom:681.360000px;}
.y8f{bottom:681.540000px;}
.y3d{bottom:685.050000px;}
.y66{bottom:687.660000px;}
.y13c{bottom:694.770000px;}
.yd{bottom:695.040000px;}
.y65{bottom:695.220000px;}
.yf7{bottom:699.000000px;}
.ycb{bottom:706.290000px;}
.y8e{bottom:708.900000px;}
.y3c{bottom:711.690000px;}
.y13b{bottom:712.410000px;}
.yc{bottom:712.680000px;}
.ya8{bottom:716.010000px;}
.yf6{bottom:716.550000px;}
.y64{bottom:731.670000px;}
.yca{bottom:733.650000px;}
.yf5{bottom:734.190000px;}
.y8d{bottom:736.170000px;}
.y63{bottom:739.230000px;}
.yb{bottom:739.590000px;}
.y3b{bottom:747.240000px;}
.ya7{bottom:748.770000px;}
.y11b{bottom:750.120000px;}
.yc8{bottom:760.920000px;}
.y8c{bottom:763.530000px;}
.y3a{bottom:764.790000px;}
.yf4{bottom:769.740000px;}
.y62{bottom:775.680000px;}
.ya6{bottom:780.990000px;}
.y39{bottom:782.430000px;}
.y61{bottom:783.240000px;}
.yf3{bottom:787.290000px;}
.y13a{bottom:787.560000px;}
.ya{bottom:787.830000px;}
.y8b{bottom:790.890000px;}
.y11a{bottom:799.530000px;}
.y38{bottom:799.980000px;}
.yf2{bottom:804.930000px;}
.yc7{bottom:805.920000px;}
.y139{bottom:814.470000px;}
.y37{bottom:817.530000px;}
.y8a{bottom:818.250000px;}
.y60{bottom:820.860000px;}
.yf1{bottom:822.480000px;}
.y9{bottom:823.380000px;}
.yc6{bottom:833.190000px;}
.y36{bottom:835.260000px;}
.y5f{bottom:838.410000px;}
.yf0{bottom:840.030000px;}
.y89{bottom:845.520000px;}
.y119{bottom:848.940000px;}
.y138{bottom:851.460000px;}
.y35{bottom:852.810000px;}
.y5e{bottom:855.960000px;}
.y8{bottom:859.200000px;}
.yc5{bottom:860.550000px;}
.y88{bottom:872.880000px;}
.y5d{bottom:873.600000px;}
.yef{bottom:875.670000px;}
.y137{bottom:878.370000px;}
.y34{bottom:879.450000px;}
.yc4{bottom:887.910000px;}
.y5c{bottom:891.150000px;}
.yee{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y118{bottom:898.350000px;}
.y87{bottom:900.240000px;}
.yed{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yc3{bottom:915.180000px;}
.y33{bottom:915.270000px;}
.y136{bottom:915.720000px;}
.y5b{bottom:926.790000px;}
.y86{bottom:927.600000px;}
.yec{bottom:928.410000px;}
.yc2{bottom:942.540000px;}
.yeb{bottom:945.960000px;}
.y116{bottom:947.850000px;}
.y5{bottom:949.290000px;}
.y85{bottom:954.870000px;}
.y5a{bottom:962.340000px;}
.y32{bottom:963.600000px;}
.y135{bottom:963.960000px;}
.yc1{bottom:969.900000px;}
.y31{bottom:981.150000px;}
.yea{bottom:981.600000px;}
.y84{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.yc0{bottom:997.260000px;}
.y59{bottom:997.890000px;}
.y30{bottom:998.790000px;}
.ye9{bottom:999.150000px;}
.y82{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.370000px;}
.ye8{bottom:1016.820000px;}
.ybf{bottom:1024.560000px;}
.y58{bottom:1033.560000px;}
.ye7{bottom:1034.370000px;}
.y81{bottom:1036.890000px;}
.y15a{bottom:1043.370000px;}
.y114{bottom:1046.700000px;}
.y2e{bottom:1051.920000px;}
.y159{bottom:1060.920000px;}
.y7f{bottom:1064.250000px;}
.y57{bottom:1069.110000px;}
.y2d{bottom:1069.560000px;}
.y134{bottom:1069.920000px;}
.y158{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.ye6{bottom:1087.560000px;}
.y7d{bottom:1091.610000px;}
.y157{bottom:1096.110000px;}
.y56{bottom:1104.750000px;}
.ye5{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h15{height:26.580000px;}
.h14{height:26.640000px;}
.h16{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h1a{height:44.190000px;}
.h1c{height:48.600000px;}
.h1b{height:48.630000px;}
.h19{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:59.973223px;}
.h9{height:60.960938px;}
.h1d{height:61.740000px;}
.h1e{height:61.793886px;}
.hb{height:62.585859px;}
.h10{height:66.783691px;}
.ha{height:68.582109px;}
.hc{height:68.748574px;}
.h11{height:69.303691px;}
.h12{height:70.664062px;}
.h4{height:72.985430px;}
.h18{height:74.953125px;}
.he{height:82.068574px;}
.hf{height:97.023691px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1b{width:51.750000px;}
.w19{width:51.780000px;}
.w16{width:52.110000px;}
.wd{width:62.280000px;}
.wc{width:62.310000px;}
.w6{width:69.750000px;}
.wb{width:70.290000px;}
.w1c{width:71.010000px;}
.w1a{width:71.100000px;}
.w17{width:71.370000px;}
.w15{width:82.170000px;}
.w18{width:82.260000px;}
.w9{width:88.470000px;}
.w4{width:88.590000px;}
.w5{width:99.540000px;}
.wa{width:99.810000px;}
.w11{width:133.230000px;}
.w10{width:133.380000px;}
.wf{width:133.410000px;}
.w8{width:163.380000px;}
.w1e{width:174.720000px;}
.we{width:189.000000px;}
.w14{width:206.460000px;}
.w13{width:206.490000px;}
.w12{width:207.180000px;}
.w3{width:234.090000px;}
.w7{width:494.130000px;}
.w1f{width:580.260000px;}
.w1d{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x23{left:76.589987px;}
.x24{left:111.239987px;}
.x12{left:194.879987px;}
.xb{left:199.560000px;}
.x2{left:202.799987px;}
.x8{left:222.959987px;}
.x7{left:224.129987px;}
.x6{left:225.299987px;}
.x9{left:226.469987px;}
.x13{left:232.950000px;}
.xa{left:241.409987px;}
.x22{left:244.200000px;}
.x4{left:253.919987px;}
.x5{left:276.239987px;}
.x1d{left:285.690000px;}
.x14{left:322.140000px;}
.x1e{left:338.610000px;}
.x10{left:344.819987px;}
.x1b{left:410.700000px;}
.x15{left:422.670000px;}
.xd{left:434.370000px;}
.x16{left:493.770000px;}
.xe{left:523.680000px;}
.x1f{left:546.180000px;}
.x17{left:556.890000px;}
.x1c{left:618.000000px;}
.xf{left:623.940000px;}
.x18{left:627.990000px;}
.x11{left:662.639987px;}
.x19{left:691.080000px;}
.x20{left:700.980000px;}
.x21{left:753.450000px;}
.x1a{left:762.180000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.va{vertical-align:-7.680000pt;}
.v9{vertical-align:-2.240000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.240000pt;}
.v7{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.vb{vertical-align:16.000000pt;}
.v3{vertical-align:19.520000pt;}
.v5{vertical-align:26.560000pt;}
.v4{vertical-align:31.680000pt;}
.ls31{letter-spacing:-0.348267pt;}
.ls30{letter-spacing:-0.237867pt;}
.ls19{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls33{letter-spacing:-0.109867pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls1c{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls2e{letter-spacing:-0.060267pt;}
.ls1b{letter-spacing:-0.056533pt;}
.ls39{letter-spacing:-0.028160pt;}
.ls38{letter-spacing:-0.009920pt;}
.ls32{letter-spacing:-0.003520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.019520pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls2f{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls35{letter-spacing:0.087467pt;}
.ls4{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.154133pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls20{letter-spacing:0.222400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:2.002240pt;}
.ls36{letter-spacing:2.195840pt;}
.lsc{letter-spacing:2.322240pt;}
.ls1f{letter-spacing:2.581440pt;}
.ls15{letter-spacing:2.901440pt;}
.ls1e{letter-spacing:3.178560pt;}
.ls21{letter-spacing:3.498560pt;}
.lsd{letter-spacing:4.081920pt;}
.lse{letter-spacing:5.000000pt;}
.ls37{letter-spacing:8.082240pt;}
.ls22{letter-spacing:8.402240pt;}
.ls27{letter-spacing:8.722240pt;}
.ls16{letter-spacing:11.541440pt;}
.ls25{letter-spacing:12.138560pt;}
.ls13{letter-spacing:13.522240pt;}
.ls14{letter-spacing:13.842240pt;}
.ls12{letter-spacing:14.162240pt;}
.ls24{letter-spacing:14.421440pt;}
.ls10{letter-spacing:14.454400pt;}
.ls17{letter-spacing:15.018560pt;}
.ls23{letter-spacing:16.480000pt;}
.ls2a{letter-spacing:16.490560pt;}
.ls28{letter-spacing:16.722240pt;}
.ls11{letter-spacing:17.042240pt;}
.lsf{letter-spacing:24.374400pt;}
.ls2d{letter-spacing:33.683200pt;}
.ls2b{letter-spacing:35.922240pt;}
.ls3b{letter-spacing:42.423680pt;}
.ls29{letter-spacing:57.042240pt;}
.ls3a{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws19{word-spacing:-11.776320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.753280pt;}
.ws1c{word-spacing:-11.746880pt;}
.wsb{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.674667pt;}
.ws18{word-spacing:-11.646933pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-8.318933pt;}
.wsd{word-spacing:-8.236800pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:2.723520pt;}
.wse{word-spacing:3.043520pt;}
.ws3{word-spacing:3.826560pt;}
.ws14{word-spacing:5.121280pt;}
.ws16{word-spacing:5.761280pt;}
.ws12{word-spacing:6.081280pt;}
.ws10{word-spacing:8.001280pt;}
.ws1a{word-spacing:8.427947pt;}
.ws15{word-spacing:9.661760pt;}
.ws13{word-spacing:9.981760pt;}
._10{margin-left:-6.497280pt;}
._13{margin-left:-5.042667pt;}
._e{margin-left:-3.099520pt;}
._5{margin-left:-2.137600pt;}
._1{margin-left:-0.903680pt;}
._0{width:0.894944pt;}
._8{width:1.817558pt;}
._6{width:2.725333pt;}
._c{width:4.168534pt;}
._7{width:5.557867pt;}
._2{width:6.573334pt;}
._3{width:7.801064pt;}
._b{width:8.710399pt;}
._a{width:9.779734pt;}
._f{width:10.838720pt;}
._11{width:11.765548pt;}
._19{width:12.699520pt;}
._d{width:13.627200pt;}
._20{width:14.527363pt;}
._9{width:15.604266pt;}
._17{width:16.833600pt;}
._4{width:18.009066pt;}
._1f{width:23.593600pt;}
._16{width:37.838925pt;}
._18{width:52.050560pt;}
._15{width:54.944427pt;}
._14{width:59.532160pt;}
._1c{width:74.014400pt;}
._1a{width:111.262080pt;}
._12{width:114.095360pt;}
._1e{width:120.453760pt;}
._1d{width:155.937920pt;}
._1b{width:213.172160pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:6.960000pt;}
.y83{bottom:6.986667pt;}
.y80{bottom:7.040000pt;}
.y98{bottom:7.066667pt;}
.y120{bottom:11.040000pt;}
.y11e{bottom:18.560000pt;}
.y123{bottom:18.640000pt;}
.y11d{bottom:22.560000pt;}
.yc9{bottom:22.640000pt;}
.y117{bottom:26.560000pt;}
.y115{bottom:26.586667pt;}
.ybe{bottom:26.640000pt;}
.y11c{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye4{bottom:101.386667pt;}
.y113{bottom:103.946667pt;}
.y7c{bottom:113.306667pt;}
.y156{bottom:115.146667pt;}
.ye3{bottom:117.066667pt;}
.y55{bottom:119.626667pt;}
.y133{bottom:126.186667pt;}
.y27{bottom:126.266667pt;}
.ya5{bottom:128.026667pt;}
.y155{bottom:130.746667pt;}
.y112{bottom:135.226667pt;}
.y26{bottom:141.866667pt;}
.y154{bottom:146.426667pt;}
.ye2{bottom:148.666667pt;}
.y111{bottom:150.826667pt;}
.y54{bottom:151.226667pt;}
.y132{bottom:157.466667pt;}
.y25{bottom:157.546667pt;}
.ya4{bottom:161.946667pt;}
.ye1{bottom:164.346667pt;}
.y7b{bottom:166.106667pt;}
.y110{bottom:166.506667pt;}
.y153{bottom:170.026667pt;}
.y131{bottom:173.146667pt;}
.ya3{bottom:177.546667pt;}
.ye0{bottom:179.946667pt;}
.y53{bottom:181.786667pt;}
.y10f{bottom:182.106667pt;}
.y152{bottom:185.626667pt;}
.y52{bottom:188.506667pt;}
.y130{bottom:188.746667pt;}
.y24{bottom:189.146667pt;}
.ybd{bottom:192.106667pt;}
.ya2{bottom:193.226667pt;}
.y7a{bottom:200.026667pt;}
.y151{bottom:201.306667pt;}
.y12f{bottom:204.346667pt;}
.y23{bottom:204.746667pt;}
.ya1{bottom:208.826667pt;}
.ydf{bottom:211.546667pt;}
.y10e{bottom:213.786667pt;}
.y79{bottom:215.706667pt;}
.y12e{bottom:220.026667pt;}
.y22{bottom:220.426667pt;}
.y51{bottom:224.266667pt;}
.ya0{bottom:224.426667pt;}
.y150{bottom:224.906667pt;}
.yde{bottom:227.226667pt;}
.y10d{bottom:229.386667pt;}
.y78{bottom:231.306667pt;}
.y12d{bottom:235.626667pt;}
.y21{bottom:236.026667pt;}
.y50{bottom:239.946667pt;}
.ydd{bottom:242.826667pt;}
.ybc{bottom:244.906667pt;}
.y10c{bottom:244.986667pt;}
.y77{bottom:246.906667pt;}
.y9f{bottom:248.106667pt;}
.y14f{bottom:248.586667pt;}
.y12c{bottom:251.306667pt;}
.y4f{bottom:255.546667pt;}
.ydc{bottom:258.426667pt;}
.y10b{bottom:260.666667pt;}
.y76{bottom:262.586667pt;}
.y12b{bottom:266.906667pt;}
.y20{bottom:267.706667pt;}
.y4e{bottom:271.146667pt;}
.y14e{bottom:272.186667pt;}
.ydb{bottom:274.106667pt;}
.y10a{bottom:276.266667pt;}
.y75{bottom:278.186667pt;}
.y9e{bottom:279.066667pt;}
.y12a{bottom:282.506667pt;}
.y1f{bottom:283.306667pt;}
.y4d{bottom:286.826667pt;}
.y14d{bottom:287.786667pt;}
.yda{bottom:289.706667pt;}
.y9d{bottom:289.946667pt;}
.y109{bottom:291.946667pt;}
.y74{bottom:293.866667pt;}
.ybb{bottom:297.706667pt;}
.y129{bottom:298.186667pt;}
.y1e{bottom:298.906667pt;}
.y4c{bottom:302.426667pt;}
.yd9{bottom:305.386667pt;}
.y108{bottom:307.546667pt;}
.y73{bottom:309.466667pt;}
.y14c{bottom:311.466667pt;}
.y9c{bottom:314.186667pt;}
.y1d{bottom:314.586667pt;}
.yd8{bottom:321.066667pt;}
.y128{bottom:322.106667pt;}
.y107{bottom:323.146667pt;}
.y4b{bottom:326.106667pt;}
.y14b{bottom:327.066667pt;}
.y1c{bottom:330.186667pt;}
.yba{bottom:331.706667pt;}
.yd7{bottom:336.666667pt;}
.y9b{bottom:338.506667pt;}
.y72{bottom:341.066667pt;}
.yb9{bottom:347.306667pt;}
.y14a{bottom:350.746667pt;}
.yd6{bottom:352.346667pt;}
.y1b{bottom:354.106667pt;}
.y106{bottom:354.826667pt;}
.y71{bottom:356.746667pt;}
.y4a{bottom:357.706667pt;}
.y9a{bottom:362.826667pt;}
.yb8{bottom:362.906667pt;}
.y127{bottom:364.346667pt;}
.y149{bottom:366.346667pt;}
.y105{bottom:370.426667pt;}
.y70{bottom:372.346667pt;}
.y49{bottom:373.306667pt;}
.y126{bottom:375.146667pt;}
.yd5{bottom:375.946667pt;}
.yb7{bottom:378.586667pt;}
.y148{bottom:381.946667pt;}
.y104{bottom:386.106667pt;}
.y99{bottom:387.066667pt;}
.y48{bottom:388.986667pt;}
.yb6{bottom:394.186667pt;}
.y1a{bottom:397.306667pt;}
.y125{bottom:399.466667pt;}
.y103{bottom:401.706667pt;}
.y6f{bottom:404.026667pt;}
.y147{bottom:405.626667pt;}
.yd4{bottom:406.906667pt;}
.yb5{bottom:409.866667pt;}
.y97{bottom:411.386667pt;}
.y47{bottom:412.586667pt;}
.y102{bottom:417.306667pt;}
.yd3{bottom:417.813333pt;}
.y6e{bottom:419.653333pt;}
.y146{bottom:421.253333pt;}
.y124{bottom:423.893333pt;}
.yb4{bottom:425.493333pt;}
.y19{bottom:430.293333pt;}
.y101{bottom:433.013333pt;}
.y6d{bottom:435.253333pt;}
.y96{bottom:435.733333pt;}
.y145{bottom:436.933333pt;}
.yb3{bottom:441.093333pt;}
.yd2{bottom:442.053333pt;}
.y46{bottom:444.293333pt;}
.y18{bottom:445.893333pt;}
.y100{bottom:448.613333pt;}
.yb2{bottom:456.773333pt;}
.y6c{bottom:458.933333pt;}
.y45{bottom:459.893333pt;}
.y95{bottom:460.053333pt;}
.y144{bottom:460.533333pt;}
.y17{bottom:461.493333pt;}
.yd1{bottom:466.373333pt;}
.y122{bottom:467.813333pt;}
.yb1{bottom:472.373333pt;}
.y143{bottom:476.133333pt;}
.y16{bottom:477.173333pt;}
.yff{bottom:480.293333pt;}
.y44{bottom:483.493333pt;}
.y94{bottom:484.293333pt;}
.yb0{bottom:488.053333pt;}
.yd0{bottom:490.693333pt;}
.y6b{bottom:490.853333pt;}
.y15{bottom:492.773333pt;}
.yfe{bottom:495.893333pt;}
.y142{bottom:499.813333pt;}
.yaf{bottom:503.653333pt;}
.y14{bottom:508.373333pt;}
.y93{bottom:508.613333pt;}
.yfd{bottom:511.493333pt;}
.y43{bottom:515.173333pt;}
.y141{bottom:515.413333pt;}
.yae{bottom:519.253333pt;}
.y121{bottom:523.333333pt;}
.y13{bottom:524.053333pt;}
.yfc{bottom:527.173333pt;}
.ycf{bottom:530.613333pt;}
.y42{bottom:530.773333pt;}
.y140{bottom:531.093333pt;}
.y92{bottom:532.933333pt;}
.y6a{bottom:533.733333pt;}
.yad{bottom:534.933333pt;}
.y12{bottom:539.653333pt;}
.yfb{bottom:542.773333pt;}
.y41{bottom:546.453333pt;}
.y69{bottom:549.413333pt;}
.yac{bottom:550.533333pt;}
.y13f{bottom:554.693333pt;}
.yce{bottom:554.933333pt;}
.y11{bottom:555.333333pt;}
.y91{bottom:557.253333pt;}
.y40{bottom:562.053333pt;}
.y68{bottom:565.013333pt;}
.yab{bottom:566.213333pt;}
.y11f{bottom:567.253333pt;}
.y10{bottom:570.933333pt;}
.yfa{bottom:574.453333pt;}
.y3f{bottom:577.653333pt;}
.y13e{bottom:578.293333pt;}
.ycd{bottom:579.253333pt;}
.y67{bottom:580.613333pt;}
.y90{bottom:581.493333pt;}
.yf{bottom:586.533333pt;}
.yaa{bottom:589.813333pt;}
.yf9{bottom:590.053333pt;}
.y3e{bottom:593.333333pt;}
.y13d{bottom:593.973333pt;}
.ye{bottom:602.213333pt;}
.ycc{bottom:603.493333pt;}
.ya9{bottom:605.413333pt;}
.yf8{bottom:605.653333pt;}
.y8f{bottom:605.813333pt;}
.y3d{bottom:608.933333pt;}
.y66{bottom:611.253333pt;}
.y13c{bottom:617.573333pt;}
.yd{bottom:617.813333pt;}
.y65{bottom:617.973333pt;}
.yf7{bottom:621.333333pt;}
.ycb{bottom:627.813333pt;}
.y8e{bottom:630.133333pt;}
.y3c{bottom:632.613333pt;}
.y13b{bottom:633.253333pt;}
.yc{bottom:633.493333pt;}
.ya8{bottom:636.453333pt;}
.yf6{bottom:636.933333pt;}
.y64{bottom:650.373333pt;}
.yca{bottom:652.133333pt;}
.yf5{bottom:652.613333pt;}
.y8d{bottom:654.373333pt;}
.y63{bottom:657.093333pt;}
.yb{bottom:657.413333pt;}
.y3b{bottom:664.213333pt;}
.ya7{bottom:665.573333pt;}
.y11b{bottom:666.773333pt;}
.yc8{bottom:676.373333pt;}
.y8c{bottom:678.693333pt;}
.y3a{bottom:679.813333pt;}
.yf4{bottom:684.213333pt;}
.y62{bottom:689.493333pt;}
.ya6{bottom:694.213333pt;}
.y39{bottom:695.493333pt;}
.y61{bottom:696.213333pt;}
.yf3{bottom:699.813333pt;}
.y13a{bottom:700.053333pt;}
.ya{bottom:700.293333pt;}
.y8b{bottom:703.013333pt;}
.y11a{bottom:710.693333pt;}
.y38{bottom:711.093333pt;}
.yf2{bottom:715.493333pt;}
.yc7{bottom:716.373333pt;}
.y139{bottom:723.973333pt;}
.y37{bottom:726.693333pt;}
.y8a{bottom:727.333333pt;}
.y60{bottom:729.653333pt;}
.yf1{bottom:731.093333pt;}
.y9{bottom:731.893333pt;}
.yc6{bottom:740.613333pt;}
.y36{bottom:742.453333pt;}
.y5f{bottom:745.253333pt;}
.yf0{bottom:746.693333pt;}
.y89{bottom:751.573333pt;}
.y119{bottom:754.613333pt;}
.y138{bottom:756.853333pt;}
.y35{bottom:758.053333pt;}
.y5e{bottom:760.853333pt;}
.y8{bottom:763.733333pt;}
.yc5{bottom:764.933333pt;}
.y88{bottom:775.893333pt;}
.y5d{bottom:776.533333pt;}
.yef{bottom:778.373333pt;}
.y137{bottom:780.773333pt;}
.y34{bottom:781.733333pt;}
.yc4{bottom:789.253333pt;}
.y5c{bottom:792.133333pt;}
.yee{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y118{bottom:798.533333pt;}
.y87{bottom:800.213333pt;}
.yed{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yc3{bottom:813.493333pt;}
.y33{bottom:813.573333pt;}
.y136{bottom:813.973333pt;}
.y5b{bottom:823.813333pt;}
.y86{bottom:824.533333pt;}
.yec{bottom:825.253333pt;}
.yc2{bottom:837.813333pt;}
.yeb{bottom:840.853333pt;}
.y116{bottom:842.533333pt;}
.y5{bottom:843.813333pt;}
.y85{bottom:848.773333pt;}
.y5a{bottom:855.413333pt;}
.y32{bottom:856.533333pt;}
.y135{bottom:856.853333pt;}
.yc1{bottom:862.133333pt;}
.y31{bottom:872.133333pt;}
.yea{bottom:872.533333pt;}
.y84{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.yc0{bottom:886.453333pt;}
.y59{bottom:887.013333pt;}
.y30{bottom:887.813333pt;}
.ye9{bottom:888.133333pt;}
.y82{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.440000pt;}
.ye8{bottom:903.840000pt;}
.ybf{bottom:910.720000pt;}
.y58{bottom:918.720000pt;}
.ye7{bottom:919.440000pt;}
.y81{bottom:921.680000pt;}
.y15a{bottom:927.440000pt;}
.y114{bottom:930.400000pt;}
.y2e{bottom:935.040000pt;}
.y159{bottom:943.040000pt;}
.y7f{bottom:946.000000pt;}
.y57{bottom:950.320000pt;}
.y2d{bottom:950.720000pt;}
.y134{bottom:951.040000pt;}
.y158{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.ye6{bottom:966.720000pt;}
.y7d{bottom:970.320000pt;}
.y157{bottom:974.320000pt;}
.y56{bottom:982.000000pt;}
.ye5{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h15{height:23.626667pt;}
.h14{height:23.680000pt;}
.h16{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h1a{height:39.280000pt;}
.h1c{height:43.200000pt;}
.h1b{height:43.226667pt;}
.h19{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:53.309531pt;}
.h9{height:54.187500pt;}
.h1d{height:54.880000pt;}
.h1e{height:54.927899pt;}
.hb{height:55.631875pt;}
.h10{height:59.363281pt;}
.ha{height:60.961875pt;}
.hc{height:61.109844pt;}
.h11{height:61.603281pt;}
.h12{height:62.812500pt;}
.h4{height:64.875937pt;}
.h18{height:66.625000pt;}
.he{height:72.949844pt;}
.hf{height:86.243281pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1b{width:46.000000pt;}
.w19{width:46.026667pt;}
.w16{width:46.320000pt;}
.wd{width:55.360000pt;}
.wc{width:55.386667pt;}
.w6{width:62.000000pt;}
.wb{width:62.480000pt;}
.w1c{width:63.120000pt;}
.w1a{width:63.200000pt;}
.w17{width:63.440000pt;}
.w15{width:73.040000pt;}
.w18{width:73.120000pt;}
.w9{width:78.640000pt;}
.w4{width:78.746667pt;}
.w5{width:88.480000pt;}
.wa{width:88.720000pt;}
.w11{width:118.426667pt;}
.w10{width:118.560000pt;}
.wf{width:118.586667pt;}
.w8{width:145.226667pt;}
.w1e{width:155.306667pt;}
.we{width:168.000000pt;}
.w14{width:183.520000pt;}
.w13{width:183.546667pt;}
.w12{width:184.160000pt;}
.w3{width:208.080000pt;}
.w7{width:439.226667pt;}
.w1f{width:515.786667pt;}
.w1d{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x23{left:68.079988pt;}
.x24{left:98.879988pt;}
.x12{left:173.226655pt;}
.xb{left:177.386667pt;}
.x2{left:180.266655pt;}
.x8{left:198.186655pt;}
.x7{left:199.226655pt;}
.x6{left:200.266655pt;}
.x9{left:201.306655pt;}
.x13{left:207.066667pt;}
.xa{left:214.586655pt;}
.x22{left:217.066667pt;}
.x4{left:225.706655pt;}
.x5{left:245.546655pt;}
.x1d{left:253.946667pt;}
.x14{left:286.346667pt;}
.x1e{left:300.986667pt;}
.x10{left:306.506655pt;}
.x1b{left:365.066667pt;}
.x15{left:375.706667pt;}
.xd{left:386.106667pt;}
.x16{left:438.906667pt;}
.xe{left:465.493333pt;}
.x1f{left:485.493333pt;}
.x17{left:495.013333pt;}
.x1c{left:549.333333pt;}
.xf{left:554.613333pt;}
.x18{left:558.213333pt;}
.x11{left:589.013322pt;}
.x19{left:614.293333pt;}
.x20{left:623.093333pt;}
.x21{left:669.733333pt;}
.x1a{left:677.493333pt;}
.x3{left:704.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; }
  