
    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_e013ff6090b1ef8508119307.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e53745a367b332d85f1c52c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_0836c5a54f1eb9b45fe74ca1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9a2af764a38a9d49226aa7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_a3a092723e8ad6ab6a50ba3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_00e55abada1055ecb2bdacdb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_f8326d33f9e09b1edc4b006d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_9a33400918c1f831028a1871.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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_12735426db4c9507d64462d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:-151.920000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.666000px;}
.ls4{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.045360px;}
.ls14{letter-spacing:-0.017280px;}
.ls15{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.004320px;}
.ls10{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.235920px;}
.lsc{letter-spacing:0.256200px;}
.lse{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.774000px;}
.ls7{letter-spacing:0.900000px;}
.ls13{letter-spacing:3.240000px;}
.ls2{letter-spacing:712.956000px;}
.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;}
}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.274000px;}
.ws12{word-spacing:-12.014640px;}
.wsb{word-spacing:-11.700000px;}
.wse{word-spacing:-9.737280px;}
.wsc{word-spacing:-9.732960px;}
.ws10{word-spacing:-9.728640px;}
.wsf{word-spacing:-9.724320px;}
.ws11{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.702720px;}
.ws7{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-2.746320px;}
._0{margin-left:-1.192320px;}
._2{width:1.246320px;}
._c{width:2.532720px;}
._9{width:3.764880px;}
._a{width:5.258880px;}
._3{width:6.633360px;}
._4{width:8.127360px;}
._1{width:9.655680px;}
._e{width:10.926000px;}
._6{width:12.095520px;}
._d{width:13.685040px;}
._7{width:16.314480px;}
._10{width:17.458560px;}
._8{width:19.039440px;}
._18{width:20.282640px;}
._f{width:21.346560px;}
._13{width:23.067360px;}
._14{width:24.143040px;}
._25{width:25.383600px;}
._23{width:26.434080px;}
._1b{width:27.483840px;}
._17{width:28.744560px;}
._11{width:29.999520px;}
._12{width:31.075200px;}
._19{width:32.150880px;}
._1a{width:33.226560px;}
._16{width:34.421280px;}
._15{width:35.437680px;}
._1e{width:38.016000px;}
._1d{width:39.023280px;}
._22{width:40.565520px;}
._21{width:41.840640px;}
._b{width:44.341920px;}
._27{width:45.895680px;}
._1c{width:47.417520px;}
._26{width:48.883680px;}
._29{width:50.622480px;}
._28{width:52.290000px;}
._1f{width:54.321840px;}
._20{width:55.355520px;}
._24{width:56.464080px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y187{bottom:2.340000px;}
.y166{bottom:2.685000px;}
.y15a{bottom:2.865000px;}
.y152{bottom:2.880000px;}
.y15c{bottom:3.045000px;}
.y154{bottom:3.060000px;}
.y135{bottom:3.225000px;}
.yea{bottom:3.240000px;}
.yc2{bottom:3.585000px;}
.y29{bottom:3.600000px;}
.y4d{bottom:3.765000px;}
.y59{bottom:3.780000px;}
.y100{bottom:3.810000px;}
.ya5{bottom:3.945000px;}
.y72{bottom:3.960000px;}
.y186{bottom:16.380000px;}
.y162{bottom:16.725000px;}
.y15f{bottom:16.905000px;}
.y157{bottom:16.920000px;}
.yf6{bottom:20.700000px;}
.y4c{bottom:21.045000px;}
.y58{bottom:21.060000px;}
.y68{bottom:21.090000px;}
.y122{bottom:21.225000px;}
.y28{bottom:21.240000px;}
.ya4{bottom:21.405000px;}
.y71{bottom:21.420000px;}
.y185{bottom:30.240000px;}
.y168{bottom:30.765000px;}
.y18a{bottom:30.960000px;}
.y4b{bottom:38.145000px;}
.ycb{bottom:38.160000px;}
.yff{bottom:38.190000px;}
.y7b{bottom:38.325000px;}
.y57{bottom:38.340000px;}
.yc9{bottom:38.370000px;}
.ye7{bottom:38.505000px;}
.y62{bottom:38.520000px;}
.y67{bottom:38.550000px;}
.ydd{bottom:38.700000px;}
.ya3{bottom:39.045000px;}
.y27{bottom:39.060000px;}
.y184{bottom:44.280000px;}
.y189{bottom:44.640000px;}
.y4a{bottom:55.425000px;}
.y56{bottom:55.440000px;}
.yc8{bottom:55.470000px;}
.y7a{bottom:55.605000px;}
.yf5{bottom:55.620000px;}
.ye6{bottom:55.965000px;}
.y61{bottom:55.980000px;}
.y66{bottom:56.010000px;}
.ydc{bottom:56.160000px;}
.y142{bottom:56.190000px;}
.yc1{bottom:56.685000px;}
.y87{bottom:56.700000px;}
.ybc{bottom:56.730000px;}
.y26{bottom:56.745000px;}
.ya2{bottom:56.865000px;}
.y70{bottom:56.880000px;}
.y183{bottom:58.140000px;}
.y182{bottom:72.180000px;}
.y49{bottom:72.705000px;}
.y55{bottom:72.720000px;}
.yc7{bottom:72.750000px;}
.y79{bottom:72.885000px;}
.yf4{bottom:73.080000px;}
.ye5{bottom:73.425000px;}
.y60{bottom:73.440000px;}
.ydb{bottom:73.620000px;}
.y65{bottom:73.650000px;}
.y121{bottom:74.325000px;}
.y86{bottom:74.340000px;}
.ybb{bottom:74.370000px;}
.y25{bottom:74.385000px;}
.ya1{bottom:74.505000px;}
.y6f{bottom:74.520000px;}
.y14e{bottom:74.550000px;}
.y4f{bottom:76.320000px;}
.y181{bottom:86.040000px;}
.y48{bottom:89.985000px;}
.y54{bottom:90.000000px;}
.yc6{bottom:90.030000px;}
.yf3{bottom:90.540000px;}
.ye4{bottom:90.885000px;}
.y5f{bottom:90.900000px;}
.yda{bottom:91.080000px;}
.y64{bottom:91.110000px;}
.ya0{bottom:92.145000px;}
.y6e{bottom:92.160000px;}
.yba{bottom:92.190000px;}
.y24{bottom:92.205000px;}
.y4{bottom:97.125005px;}
.y180{bottom:100.080000px;}
.y47{bottom:107.265000px;}
.y53{bottom:107.280000px;}
.yc5{bottom:107.310000px;}
.y11a{bottom:107.325000px;}
.yf2{bottom:108.000000px;}
.yfd{bottom:108.345000px;}
.y5e{bottom:108.360000px;}
.ye3{bottom:108.525000px;}
.yd9{bottom:108.540000px;}
.y141{bottom:108.570000px;}
.y14a{bottom:108.585000px;}
.yc0{bottom:109.785000px;}
.y11f{bottom:109.800000px;}
.yb9{bottom:109.830000px;}
.y85{bottom:109.845000px;}
.y9f{bottom:109.965000px;}
.y6d{bottom:109.980000px;}
.y14d{bottom:110.010000px;}
.y17f{bottom:113.940000px;}
.y4e{bottom:114.480000px;}
.y46{bottom:124.545000px;}
.y52{bottom:124.560000px;}
.yc4{bottom:124.590000px;}
.y119{bottom:124.605000px;}
.yf1{bottom:125.460000px;}
.yfc{bottom:125.805000px;}
.y5d{bottom:125.820000px;}
.ye2{bottom:125.985000px;}
.yd8{bottom:126.000000px;}
.y140{bottom:126.030000px;}
.y149{bottom:126.045000px;}
.y132{bottom:127.440000px;}
.yb8{bottom:127.470000px;}
.y84{bottom:127.485000px;}
.y9e{bottom:127.605000px;}
.y6c{bottom:127.620000px;}
.ybf{bottom:127.650000px;}
.y17e{bottom:127.980000px;}
.y1c{bottom:139.264499px;}
.y45{bottom:141.645000px;}
.y78{bottom:141.825000px;}
.y51{bottom:141.840000px;}
.y17d{bottom:141.870000px;}
.y118{bottom:141.885000px;}
.yf0{bottom:143.100000px;}
.ye1{bottom:143.445000px;}
.y5c{bottom:143.460000px;}
.yfb{bottom:143.490000px;}
.y148{bottom:143.505000px;}
.y9d{bottom:145.245000px;}
.y6b{bottom:145.260000px;}
.yb7{bottom:145.290000px;}
.y83{bottom:145.305000px;}
.y17c{bottom:155.910000px;}
.y44{bottom:158.925000px;}
.y10d{bottom:158.940000px;}
.y77{bottom:159.105000px;}
.y117{bottom:159.165000px;}
.yef{bottom:160.560000px;}
.ye0{bottom:160.905000px;}
.ycf{bottom:160.920000px;}
.yfa{bottom:160.950000px;}
.y5b{bottom:160.965000px;}
.y11e{bottom:162.900000px;}
.yb6{bottom:162.930000px;}
.y82{bottom:162.945000px;}
.y9c{bottom:163.065000px;}
.y6a{bottom:163.080000px;}
.y14c{bottom:163.110000px;}
.y17b{bottom:169.770000px;}
.y43{bottom:176.205000px;}
.y10c{bottom:176.220000px;}
.y116{bottom:176.265000px;}
.ydf{bottom:178.365000px;}
.yd7{bottom:178.380000px;}
.yf9{bottom:178.410000px;}
.yce{bottom:178.425000px;}
.y131{bottom:180.540000px;}
.yb5{bottom:180.570000px;}
.y81{bottom:180.585000px;}
.y9b{bottom:180.705000px;}
.y11d{bottom:180.720000px;}
.ybe{bottom:180.750000px;}
.y17a{bottom:183.810000px;}
.y42{bottom:193.485000px;}
.y10b{bottom:193.545000px;}
.yd6{bottom:195.840000px;}
.y13f{bottom:195.870000px;}
.ycd{bottom:195.885000px;}
.y13{bottom:196.933500px;}
.y179{bottom:197.670000px;}
.y9a{bottom:198.345000px;}
.y11c{bottom:198.360000px;}
.yb4{bottom:198.390000px;}
.y80{bottom:198.405000px;}
.y124{bottom:208.980000px;}
.y13a{bottom:209.340000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y136{bottom:210.060000px;}
.y41{bottom:210.765000px;}
.yc3{bottom:210.780000px;}
.y10a{bottom:210.825000px;}
.y178{bottom:211.710000px;}
.yd5{bottom:213.300000px;}
.y13e{bottom:213.330000px;}
.y147{bottom:213.345000px;}
.y130{bottom:216.000000px;}
.yb3{bottom:216.030000px;}
.y7f{bottom:216.045000px;}
.y99{bottom:216.210000px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.yfe{bottom:223.560000px;}
.y177{bottom:225.570000px;}
.y76{bottom:228.045000px;}
.y40{bottom:228.090000px;}
.y109{bottom:228.105000px;}
.y167{bottom:228.645000px;}
.y73{bottom:230.445000px;}
.y13d{bottom:230.790000px;}
.y146{bottom:230.805000px;}
.yd4{bottom:230.970000px;}
.yb2{bottom:233.670000px;}
.y7e{bottom:233.685000px;}
.y98{bottom:233.850000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y176{bottom:239.610000px;}
.y10f{bottom:240.165000px;}
.y123{bottom:242.685000px;}
.ye8{bottom:243.585000px;}
.y3f{bottom:245.190000px;}
.y108{bottom:245.205000px;}
.y75{bottom:245.370000px;}
.y115{bottom:245.385000px;}
.y13c{bottom:248.250000px;}
.y145{bottom:248.265000px;}
.yd3{bottom:248.430000px;}
.y2a{bottom:249.525000px;}
.y97{bottom:251.490000px;}
.y175{bottom:253.470000px;}
.y89{bottom:256.725000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y3e{bottom:262.470000px;}
.y107{bottom:262.485000px;}
.y74{bottom:262.650000px;}
.y114{bottom:262.665000px;}
.yd2{bottom:265.890000px;}
.y144{bottom:265.905000px;}
.y13b{bottom:265.935000px;}
.y174{bottom:267.510000px;}
.yb1{bottom:269.130000px;}
.y96{bottom:269.310000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.yde{bottom:279.405000px;}
.y3d{bottom:279.750000px;}
.y106{bottom:279.765000px;}
.y173{bottom:281.370000px;}
.yd1{bottom:283.350000px;}
.y165{bottom:284.445000px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.y12f{bottom:286.770000px;}
.yb0{bottom:286.815000px;}
.y95{bottom:286.950000px;}
.y172{bottom:295.410000px;}
.y3c{bottom:297.030000px;}
.y105{bottom:297.045000px;}
.y94{bottom:304.590000px;}
.yaf{bottom:304.635000px;}
.y171{bottom:309.270000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y134{bottom:313.425000px;}
.y3b{bottom:314.310000px;}
.y104{bottom:314.325000px;}
.y12e{bottom:322.230000px;}
.yae{bottom:322.275000px;}
.y93{bottom:322.410000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y170{bottom:323.310000px;}
.yf8{bottom:324.585000px;}
.y164{bottom:326.025000px;}
.y3a{bottom:331.410000px;}
.y112{bottom:331.590000px;}
.y103{bottom:331.605000px;}
.y16f{bottom:337.170000px;}
.y163{bottom:339.705000px;}
.y12d{bottom:339.870000px;}
.yad{bottom:339.915000px;}
.y92{bottom:340.050000px;}
.ybd{bottom:346.185000px;}
.y120{bottom:347.265000px;}
.ya{bottom:348.133500px;}
.y39{bottom:348.690000px;}
.y102{bottom:348.705000px;}
.y111{bottom:348.870000px;}
.y16e{bottom:351.210000px;}
.y161{bottom:353.745000px;}
.y91{bottom:357.690000px;}
.yac{bottom:357.735000px;}
.y16d{bottom:365.070000px;}
.y133{bottom:365.265000px;}
.y38{bottom:365.970000px;}
.y12c{bottom:375.330000px;}
.yab{bottom:375.375000px;}
.y90{bottom:375.510000px;}
.y16c{bottom:379.110000px;}
.y160{bottom:381.105000px;}
.y37{bottom:383.250000px;}
.y9{bottom:386.785499px;}
.y12b{bottom:392.970000px;}
.yaa{bottom:393.015000px;}
.y8f{bottom:393.150000px;}
.y15e{bottom:394.785000px;}
.y36{bottom:400.530000px;}
.y16b{bottom:407.055000px;}
.y8{bottom:408.044999px;}
.y8e{bottom:410.790000px;}
.ya9{bottom:410.835000px;}
.y35{bottom:417.810000px;}
.y16a{bottom:420.915000px;}
.y15d{bottom:422.505000px;}
.y12a{bottom:428.430000px;}
.ya8{bottom:428.475000px;}
.y8d{bottom:428.610000px;}
.y34{bottom:434.910000px;}
.y110{bottom:435.090000px;}
.y15b{bottom:436.365000px;}
.ya7{bottom:446.115000px;}
.y129{bottom:446.250000px;}
.y8c{bottom:446.280000px;}
.y159{bottom:450.225000px;}
.y33{bottom:452.190000px;}
.y8b{bottom:463.920000px;}
.y128{bottom:463.935000px;}
.y32{bottom:469.500000px;}
.yd0{bottom:472.935000px;}
.y8a{bottom:481.740000px;}
.y127{bottom:485.175000px;}
.y31{bottom:486.780000px;}
.y139{bottom:489.315000px;}
.y158{bottom:491.475000px;}
.y11b{bottom:503.715000px;}
.y30{bottom:504.060000px;}
.y69{bottom:504.975000px;}
.y188{bottom:507.495000px;}
.yf7{bottom:514.515000px;}
.y156{bottom:519.015000px;}
.y7{bottom:520.864502px;}
.y2f{bottom:521.340000px;}
.y138{bottom:522.795000px;}
.y2e{bottom:538.440000px;}
.y6{bottom:538.864499px;}
.y155{bottom:546.915000px;}
.y2d{bottom:555.720000px;}
.y5{bottom:556.864499px;}
.y153{bottom:560.595000px;}
.y169{bottom:562.755000px;}
.y2c{bottom:573.000000px;}
.y151{bottom:574.635000px;}
.y2b{bottom:589.920000px;}
.y150{bottom:601.095000px;}
.y14f{bottom:611.535000px;}
.y14b{bottom:645.375000px;}
.ya6{bottom:660.855000px;}
.y63{bottom:682.455000px;}
.y10e{bottom:689.115000px;}
.y137{bottom:716.145000px;}
.yee{bottom:721.545000px;}
.y88{bottom:751.605000px;}
.y3{bottom:752.599495px;}
.y101{bottom:759.165000px;}
.ycc{bottom:771.045000px;}
.y5a{bottom:788.145000px;}
.y7d{bottom:838.185000px;}
.y143{bottom:841.245000px;}
.y113{bottom:844.845000px;}
.y2{bottom:879.369000px;}
.y23{bottom:887.325000px;}
.yed{bottom:895.425000px;}
.yec{bottom:946.410000px;}
.y126{bottom:962.070000px;}
.y50{bottom:965.670000px;}
.y1{bottom:966.726000px;}
.yca{bottom:982.950000px;}
.y22{bottom:1021.470000px;}
.yeb{bottom:1068.450000px;}
.y125{bottom:1069.170000px;}
.y21{bottom:1083.570000px;}
.y7c{bottom:1086.450000px;}
.ye9{bottom:1103.550000px;}
.y20{bottom:1104.270000px;}
.y1f{bottom:1124.610000px;}
.y1e{bottom:1143.510000px;}
.y1d{bottom:1162.590000px;}
.h3e{height:13.665000px;}
.h40{height:13.845000px;}
.h42{height:13.881000px;}
.h43{height:14.025000px;}
.h22{height:17.445000px;}
.h2c{height:17.490000px;}
.h44{height:27.525000px;}
.h41{height:27.885000px;}
.h7{height:32.130000px;}
.h16{height:34.545000px;}
.h32{height:34.596000px;}
.h21{height:34.905000px;}
.h37{height:35.445000px;}
.h49{height:38.158594px;}
.h48{height:39.183750px;}
.h46{height:41.745000px;}
.h28{height:45.035156px;}
.h6{height:45.900000px;}
.h3f{height:47.344922px;}
.h3{height:48.195000px;}
.h45{height:48.616875px;}
.h15{height:49.838906px;}
.h33{height:51.825000px;}
.h24{height:52.582500px;}
.h26{height:52.998047px;}
.h27{height:54.421875px;}
.h2{height:55.080000px;}
.h4a{height:55.785000px;}
.h3d{height:58.621992px;}
.hc{height:58.651172px;}
.he{height:60.226875px;}
.h9{height:65.010937px;}
.hf{height:65.884219px;}
.ha{height:70.664062px;}
.h18{height:70.920000px;}
.h5{height:78.030000px;}
.h2a{height:86.256000px;}
.h31{height:88.545000px;}
.h38{height:103.536000px;}
.h12{height:104.970000px;}
.h34{height:106.185000px;}
.h36{height:106.221000px;}
.hb{height:106.222500px;}
.h4{height:119.055004px;}
.h23{height:122.205000px;}
.h39{height:124.020000px;}
.h1d{height:138.045000px;}
.h1c{height:138.096000px;}
.h10{height:155.325000px;}
.h30{height:159.315000px;}
.h25{height:174.780000px;}
.h11{height:174.810000px;}
.h13{height:177.105000px;}
.h3c{height:177.150000px;}
.h20{height:192.255000px;}
.h29{height:192.270000px;}
.h1e{height:209.730000px;}
.h17{height:247.710000px;}
.h14{height:276.135000px;}
.h2e{height:276.150000px;}
.h3b{height:279.750000px;}
.h3a{height:279.795000px;}
.h1f{height:297.210000px;}
.h1b{height:300.975000px;}
.h2f{height:336.450000px;}
.h2b{height:362.190000px;}
.h47{height:432.420000px;}
.h2d{height:448.575000px;}
.h1a{height:460.140000px;}
.h35{height:477.960000px;}
.h19{height:495.780000px;}
.hd{height:603.780000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1300.500000px;}
.we{width:115.909500px;}
.wf{width:138.621000px;}
.wd{width:155.359500px;}
.w1f{width:179.479500px;}
.w19{width:243.559500px;}
.w15{width:245.899500px;}
.w10{width:246.619500px;}
.w9{width:261.019500px;}
.w13{width:349.984500px;}
.w14{width:369.244500px;}
.w1e{width:378.784500px;}
.w17{width:443.944500px;}
.w12{width:455.104500px;}
.w1a{width:457.624500px;}
.w18{width:458.164500px;}
.wa{width:463.744500px;}
.w1c{width:475.804500px;}
.wc{width:498.484500px;}
.w16{width:520.444500px;}
.w11{width:572.850000px;}
.w22{width:594.810000px;}
.w21{width:595.170000px;}
.w20{width:598.230000px;}
.wb{width:598.410000px;}
.w8{width:598.590000px;}
.w5{width:598.770000px;}
.w6{width:598.950000px;}
.w7{width:599.130000px;}
.w1b{width:607.770000px;}
.w2{width:637.794021px;}
.w1d{width:644.850000px;}
.w3{width:892.440000px;}
.w4{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:134.496000px;}
.x6{left:148.906500px;}
.xa{left:151.065000px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x9{left:663.960000px;}
.x8{left:763.170000px;}
.x7{left:771.630000px;}
@media print{
.v1{vertical-align:-135.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.592000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.040320pt;}
.ls14{letter-spacing:-0.015360pt;}
.ls15{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.003840pt;}
.ls10{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.209707pt;}
.lsc{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.688000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls13{letter-spacing:2.880000pt;}
.ls2{letter-spacing:633.738667pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.688000pt;}
.ws12{word-spacing:-10.679680pt;}
.wsb{word-spacing:-10.400000pt;}
.wse{word-spacing:-8.655360pt;}
.wsc{word-spacing:-8.651520pt;}
.ws10{word-spacing:-8.647680pt;}
.wsf{word-spacing:-8.643840pt;}
.ws11{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.624640pt;}
.ws7{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-2.441173pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.107840pt;}
._c{width:2.251307pt;}
._9{width:3.346560pt;}
._a{width:4.674560pt;}
._3{width:5.896320pt;}
._4{width:7.224320pt;}
._1{width:8.582827pt;}
._e{width:9.712000pt;}
._6{width:10.751573pt;}
._d{width:12.164480pt;}
._7{width:14.501760pt;}
._10{width:15.518720pt;}
._8{width:16.923947pt;}
._18{width:18.029013pt;}
._f{width:18.974720pt;}
._13{width:20.504320pt;}
._14{width:21.460480pt;}
._25{width:22.563200pt;}
._23{width:23.496960pt;}
._1b{width:24.430080pt;}
._17{width:25.550720pt;}
._11{width:26.666240pt;}
._12{width:27.622400pt;}
._19{width:28.578560pt;}
._1a{width:29.534720pt;}
._16{width:30.596693pt;}
._15{width:31.500160pt;}
._1e{width:33.792000pt;}
._1d{width:34.687360pt;}
._22{width:36.058240pt;}
._21{width:37.191680pt;}
._b{width:39.415040pt;}
._27{width:40.796160pt;}
._1c{width:42.148907pt;}
._26{width:43.452160pt;}
._29{width:44.997760pt;}
._28{width:46.480000pt;}
._1f{width:48.286080pt;}
._20{width:49.204907pt;}
._24{width:50.190293pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:2.080000pt;}
.y166{bottom:2.386667pt;}
.y15a{bottom:2.546667pt;}
.y152{bottom:2.560000pt;}
.y15c{bottom:2.706667pt;}
.y154{bottom:2.720000pt;}
.y135{bottom:2.866667pt;}
.yea{bottom:2.880000pt;}
.yc2{bottom:3.186667pt;}
.y29{bottom:3.200000pt;}
.y4d{bottom:3.346667pt;}
.y59{bottom:3.360000pt;}
.y100{bottom:3.386667pt;}
.ya5{bottom:3.506667pt;}
.y72{bottom:3.520000pt;}
.y186{bottom:14.560000pt;}
.y162{bottom:14.866667pt;}
.y15f{bottom:15.026667pt;}
.y157{bottom:15.040000pt;}
.yf6{bottom:18.400000pt;}
.y4c{bottom:18.706667pt;}
.y58{bottom:18.720000pt;}
.y68{bottom:18.746667pt;}
.y122{bottom:18.866667pt;}
.y28{bottom:18.880000pt;}
.ya4{bottom:19.026667pt;}
.y71{bottom:19.040000pt;}
.y185{bottom:26.880000pt;}
.y168{bottom:27.346667pt;}
.y18a{bottom:27.520000pt;}
.y4b{bottom:33.906667pt;}
.ycb{bottom:33.920000pt;}
.yff{bottom:33.946667pt;}
.y7b{bottom:34.066667pt;}
.y57{bottom:34.080000pt;}
.yc9{bottom:34.106667pt;}
.ye7{bottom:34.226667pt;}
.y62{bottom:34.240000pt;}
.y67{bottom:34.266667pt;}
.ydd{bottom:34.400000pt;}
.ya3{bottom:34.706667pt;}
.y27{bottom:34.720000pt;}
.y184{bottom:39.360000pt;}
.y189{bottom:39.680000pt;}
.y4a{bottom:49.266667pt;}
.y56{bottom:49.280000pt;}
.yc8{bottom:49.306667pt;}
.y7a{bottom:49.426667pt;}
.yf5{bottom:49.440000pt;}
.ye6{bottom:49.746667pt;}
.y61{bottom:49.760000pt;}
.y66{bottom:49.786667pt;}
.ydc{bottom:49.920000pt;}
.y142{bottom:49.946667pt;}
.yc1{bottom:50.386667pt;}
.y87{bottom:50.400000pt;}
.ybc{bottom:50.426667pt;}
.y26{bottom:50.440000pt;}
.ya2{bottom:50.546667pt;}
.y70{bottom:50.560000pt;}
.y183{bottom:51.680000pt;}
.y182{bottom:64.160000pt;}
.y49{bottom:64.626667pt;}
.y55{bottom:64.640000pt;}
.yc7{bottom:64.666667pt;}
.y79{bottom:64.786667pt;}
.yf4{bottom:64.960000pt;}
.ye5{bottom:65.266667pt;}
.y60{bottom:65.280000pt;}
.ydb{bottom:65.440000pt;}
.y65{bottom:65.466667pt;}
.y121{bottom:66.066667pt;}
.y86{bottom:66.080000pt;}
.ybb{bottom:66.106667pt;}
.y25{bottom:66.120000pt;}
.ya1{bottom:66.226667pt;}
.y6f{bottom:66.240000pt;}
.y14e{bottom:66.266667pt;}
.y4f{bottom:67.840000pt;}
.y181{bottom:76.480000pt;}
.y48{bottom:79.986667pt;}
.y54{bottom:80.000000pt;}
.yc6{bottom:80.026667pt;}
.yf3{bottom:80.480000pt;}
.ye4{bottom:80.786667pt;}
.y5f{bottom:80.800000pt;}
.yda{bottom:80.960000pt;}
.y64{bottom:80.986667pt;}
.ya0{bottom:81.906667pt;}
.y6e{bottom:81.920000pt;}
.yba{bottom:81.946667pt;}
.y24{bottom:81.960000pt;}
.y4{bottom:86.333337pt;}
.y180{bottom:88.960000pt;}
.y47{bottom:95.346667pt;}
.y53{bottom:95.360000pt;}
.yc5{bottom:95.386667pt;}
.y11a{bottom:95.400000pt;}
.yf2{bottom:96.000000pt;}
.yfd{bottom:96.306667pt;}
.y5e{bottom:96.320000pt;}
.ye3{bottom:96.466667pt;}
.yd9{bottom:96.480000pt;}
.y141{bottom:96.506667pt;}
.y14a{bottom:96.520000pt;}
.yc0{bottom:97.586667pt;}
.y11f{bottom:97.600000pt;}
.yb9{bottom:97.626667pt;}
.y85{bottom:97.640000pt;}
.y9f{bottom:97.746667pt;}
.y6d{bottom:97.760000pt;}
.y14d{bottom:97.786667pt;}
.y17f{bottom:101.280000pt;}
.y4e{bottom:101.760000pt;}
.y46{bottom:110.706667pt;}
.y52{bottom:110.720000pt;}
.yc4{bottom:110.746667pt;}
.y119{bottom:110.760000pt;}
.yf1{bottom:111.520000pt;}
.yfc{bottom:111.826667pt;}
.y5d{bottom:111.840000pt;}
.ye2{bottom:111.986667pt;}
.yd8{bottom:112.000000pt;}
.y140{bottom:112.026667pt;}
.y149{bottom:112.040000pt;}
.y132{bottom:113.280000pt;}
.yb8{bottom:113.306667pt;}
.y84{bottom:113.320000pt;}
.y9e{bottom:113.426667pt;}
.y6c{bottom:113.440000pt;}
.ybf{bottom:113.466667pt;}
.y17e{bottom:113.760000pt;}
.y1c{bottom:123.790666pt;}
.y45{bottom:125.906667pt;}
.y78{bottom:126.066667pt;}
.y51{bottom:126.080000pt;}
.y17d{bottom:126.106667pt;}
.y118{bottom:126.120000pt;}
.yf0{bottom:127.200000pt;}
.ye1{bottom:127.506667pt;}
.y5c{bottom:127.520000pt;}
.yfb{bottom:127.546667pt;}
.y148{bottom:127.560000pt;}
.y9d{bottom:129.106667pt;}
.y6b{bottom:129.120000pt;}
.yb7{bottom:129.146667pt;}
.y83{bottom:129.160000pt;}
.y17c{bottom:138.586667pt;}
.y44{bottom:141.266667pt;}
.y10d{bottom:141.280000pt;}
.y77{bottom:141.426667pt;}
.y117{bottom:141.480000pt;}
.yef{bottom:142.720000pt;}
.ye0{bottom:143.026667pt;}
.ycf{bottom:143.040000pt;}
.yfa{bottom:143.066667pt;}
.y5b{bottom:143.080000pt;}
.y11e{bottom:144.800000pt;}
.yb6{bottom:144.826667pt;}
.y82{bottom:144.840000pt;}
.y9c{bottom:144.946667pt;}
.y6a{bottom:144.960000pt;}
.y14c{bottom:144.986667pt;}
.y17b{bottom:150.906667pt;}
.y43{bottom:156.626667pt;}
.y10c{bottom:156.640000pt;}
.y116{bottom:156.680000pt;}
.ydf{bottom:158.546667pt;}
.yd7{bottom:158.560000pt;}
.yf9{bottom:158.586667pt;}
.yce{bottom:158.600000pt;}
.y131{bottom:160.480000pt;}
.yb5{bottom:160.506667pt;}
.y81{bottom:160.520000pt;}
.y9b{bottom:160.626667pt;}
.y11d{bottom:160.640000pt;}
.ybe{bottom:160.666667pt;}
.y17a{bottom:163.386667pt;}
.y42{bottom:171.986667pt;}
.y10b{bottom:172.040000pt;}
.yd6{bottom:174.080000pt;}
.y13f{bottom:174.106667pt;}
.ycd{bottom:174.120000pt;}
.y13{bottom:175.052000pt;}
.y179{bottom:175.706667pt;}
.y9a{bottom:176.306667pt;}
.y11c{bottom:176.320000pt;}
.yb4{bottom:176.346667pt;}
.y80{bottom:176.360000pt;}
.y124{bottom:185.760000pt;}
.y13a{bottom:186.080000pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y136{bottom:186.720000pt;}
.y41{bottom:187.346667pt;}
.yc3{bottom:187.360000pt;}
.y10a{bottom:187.400000pt;}
.y178{bottom:188.186667pt;}
.yd5{bottom:189.600000pt;}
.y13e{bottom:189.626667pt;}
.y147{bottom:189.640000pt;}
.y130{bottom:192.000000pt;}
.yb3{bottom:192.026667pt;}
.y7f{bottom:192.040000pt;}
.y99{bottom:192.186667pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.yfe{bottom:198.720000pt;}
.y177{bottom:200.506667pt;}
.y76{bottom:202.706667pt;}
.y40{bottom:202.746667pt;}
.y109{bottom:202.760000pt;}
.y167{bottom:203.240000pt;}
.y73{bottom:204.840000pt;}
.y13d{bottom:205.146667pt;}
.y146{bottom:205.160000pt;}
.yd4{bottom:205.306667pt;}
.yb2{bottom:207.706667pt;}
.y7e{bottom:207.720000pt;}
.y98{bottom:207.866667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y176{bottom:212.986667pt;}
.y10f{bottom:213.480000pt;}
.y123{bottom:215.720000pt;}
.ye8{bottom:216.520000pt;}
.y3f{bottom:217.946667pt;}
.y108{bottom:217.960000pt;}
.y75{bottom:218.106667pt;}
.y115{bottom:218.120000pt;}
.y13c{bottom:220.666667pt;}
.y145{bottom:220.680000pt;}
.yd3{bottom:220.826667pt;}
.y2a{bottom:221.800000pt;}
.y97{bottom:223.546667pt;}
.y175{bottom:225.306667pt;}
.y89{bottom:228.200000pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y3e{bottom:233.306667pt;}
.y107{bottom:233.320000pt;}
.y74{bottom:233.466667pt;}
.y114{bottom:233.480000pt;}
.yd2{bottom:236.346667pt;}
.y144{bottom:236.360000pt;}
.y13b{bottom:236.386667pt;}
.y174{bottom:237.786667pt;}
.yb1{bottom:239.226667pt;}
.y96{bottom:239.386667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.yde{bottom:248.360000pt;}
.y3d{bottom:248.666667pt;}
.y106{bottom:248.680000pt;}
.y173{bottom:250.106667pt;}
.yd1{bottom:251.866667pt;}
.y165{bottom:252.840000pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.y12f{bottom:254.906667pt;}
.yb0{bottom:254.946667pt;}
.y95{bottom:255.066667pt;}
.y172{bottom:262.586667pt;}
.y3c{bottom:264.026667pt;}
.y105{bottom:264.040000pt;}
.y94{bottom:270.746667pt;}
.yaf{bottom:270.786667pt;}
.y171{bottom:274.906667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y134{bottom:278.600000pt;}
.y3b{bottom:279.386667pt;}
.y104{bottom:279.400000pt;}
.y12e{bottom:286.426667pt;}
.yae{bottom:286.466667pt;}
.y93{bottom:286.586667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y170{bottom:287.386667pt;}
.yf8{bottom:288.520000pt;}
.y164{bottom:289.800000pt;}
.y3a{bottom:294.586667pt;}
.y112{bottom:294.746667pt;}
.y103{bottom:294.760000pt;}
.y16f{bottom:299.706667pt;}
.y163{bottom:301.960000pt;}
.y12d{bottom:302.106667pt;}
.yad{bottom:302.146667pt;}
.y92{bottom:302.266667pt;}
.ybd{bottom:307.720000pt;}
.y120{bottom:308.680000pt;}
.ya{bottom:309.452000pt;}
.y39{bottom:309.946667pt;}
.y102{bottom:309.960000pt;}
.y111{bottom:310.106667pt;}
.y16e{bottom:312.186667pt;}
.y161{bottom:314.440000pt;}
.y91{bottom:317.946667pt;}
.yac{bottom:317.986667pt;}
.y16d{bottom:324.506667pt;}
.y133{bottom:324.680000pt;}
.y38{bottom:325.306667pt;}
.y12c{bottom:333.626667pt;}
.yab{bottom:333.666667pt;}
.y90{bottom:333.786667pt;}
.y16c{bottom:336.986667pt;}
.y160{bottom:338.760000pt;}
.y37{bottom:340.666667pt;}
.y9{bottom:343.809333pt;}
.y12b{bottom:349.306667pt;}
.yaa{bottom:349.346667pt;}
.y8f{bottom:349.466667pt;}
.y15e{bottom:350.920000pt;}
.y36{bottom:356.026667pt;}
.y16b{bottom:361.826667pt;}
.y8{bottom:362.706666pt;}
.y8e{bottom:365.146667pt;}
.ya9{bottom:365.186667pt;}
.y35{bottom:371.386667pt;}
.y16a{bottom:374.146667pt;}
.y15d{bottom:375.560000pt;}
.y12a{bottom:380.826667pt;}
.ya8{bottom:380.866667pt;}
.y8d{bottom:380.986667pt;}
.y34{bottom:386.586667pt;}
.y110{bottom:386.746667pt;}
.y15b{bottom:387.880000pt;}
.ya7{bottom:396.546667pt;}
.y129{bottom:396.666667pt;}
.y8c{bottom:396.693333pt;}
.y159{bottom:400.200000pt;}
.y33{bottom:401.946667pt;}
.y8b{bottom:412.373333pt;}
.y128{bottom:412.386667pt;}
.y32{bottom:417.333333pt;}
.yd0{bottom:420.386667pt;}
.y8a{bottom:428.213333pt;}
.y127{bottom:431.266667pt;}
.y31{bottom:432.693333pt;}
.y139{bottom:434.946667pt;}
.y158{bottom:436.866667pt;}
.y11b{bottom:447.746667pt;}
.y30{bottom:448.053333pt;}
.y69{bottom:448.866667pt;}
.y188{bottom:451.106667pt;}
.yf7{bottom:457.346667pt;}
.y156{bottom:461.346667pt;}
.y7{bottom:462.990669pt;}
.y2f{bottom:463.413333pt;}
.y138{bottom:464.706667pt;}
.y2e{bottom:478.613333pt;}
.y6{bottom:478.990666pt;}
.y155{bottom:486.146667pt;}
.y2d{bottom:493.973333pt;}
.y5{bottom:494.990666pt;}
.y153{bottom:498.306667pt;}
.y169{bottom:500.226667pt;}
.y2c{bottom:509.333333pt;}
.y151{bottom:510.786667pt;}
.y2b{bottom:524.373333pt;}
.y150{bottom:534.306667pt;}
.y14f{bottom:543.586667pt;}
.y14b{bottom:573.666667pt;}
.ya6{bottom:587.426667pt;}
.y63{bottom:606.626667pt;}
.y10e{bottom:612.546667pt;}
.y137{bottom:636.573333pt;}
.yee{bottom:641.373333pt;}
.y88{bottom:668.093333pt;}
.y3{bottom:668.977329pt;}
.y101{bottom:674.813333pt;}
.ycc{bottom:685.373333pt;}
.y5a{bottom:700.573333pt;}
.y7d{bottom:745.053333pt;}
.y143{bottom:747.773333pt;}
.y113{bottom:750.973333pt;}
.y2{bottom:781.661334pt;}
.y23{bottom:788.733333pt;}
.yed{bottom:795.933333pt;}
.yec{bottom:841.253333pt;}
.y126{bottom:855.173333pt;}
.y50{bottom:858.373333pt;}
.y1{bottom:859.312000pt;}
.yca{bottom:873.733333pt;}
.y22{bottom:907.973333pt;}
.yeb{bottom:949.733333pt;}
.y125{bottom:950.373333pt;}
.y21{bottom:963.173333pt;}
.y7c{bottom:965.733333pt;}
.ye9{bottom:980.933333pt;}
.y20{bottom:981.573333pt;}
.y1f{bottom:999.653333pt;}
.y1e{bottom:1016.453333pt;}
.y1d{bottom:1033.413333pt;}
.h3e{height:12.146667pt;}
.h40{height:12.306667pt;}
.h42{height:12.338667pt;}
.h43{height:12.466667pt;}
.h22{height:15.506667pt;}
.h2c{height:15.546667pt;}
.h44{height:24.466667pt;}
.h41{height:24.786667pt;}
.h7{height:28.560000pt;}
.h16{height:30.706667pt;}
.h32{height:30.752000pt;}
.h21{height:31.026667pt;}
.h37{height:31.506667pt;}
.h49{height:33.918750pt;}
.h48{height:34.830000pt;}
.h46{height:37.106667pt;}
.h28{height:40.031250pt;}
.h6{height:40.800000pt;}
.h3f{height:42.084375pt;}
.h3{height:42.840000pt;}
.h45{height:43.215000pt;}
.h15{height:44.301250pt;}
.h33{height:46.066667pt;}
.h24{height:46.740000pt;}
.h26{height:47.109375pt;}
.h27{height:48.375000pt;}
.h2{height:48.960000pt;}
.h4a{height:49.586667pt;}
.h3d{height:52.108438pt;}
.hc{height:52.134375pt;}
.he{height:53.535000pt;}
.h9{height:57.787500pt;}
.hf{height:58.563750pt;}
.ha{height:62.812500pt;}
.h18{height:63.040000pt;}
.h5{height:69.360000pt;}
.h2a{height:76.672000pt;}
.h31{height:78.706667pt;}
.h38{height:92.032000pt;}
.h12{height:93.306667pt;}
.h34{height:94.386667pt;}
.h36{height:94.418667pt;}
.hb{height:94.420000pt;}
.h4{height:105.826671pt;}
.h23{height:108.626667pt;}
.h39{height:110.240000pt;}
.h1d{height:122.706667pt;}
.h1c{height:122.752000pt;}
.h10{height:138.066667pt;}
.h30{height:141.613333pt;}
.h25{height:155.360000pt;}
.h11{height:155.386667pt;}
.h13{height:157.426667pt;}
.h3c{height:157.466667pt;}
.h20{height:170.893333pt;}
.h29{height:170.906667pt;}
.h1e{height:186.426667pt;}
.h17{height:220.186667pt;}
.h14{height:245.453333pt;}
.h2e{height:245.466667pt;}
.h3b{height:248.666667pt;}
.h3a{height:248.706667pt;}
.h1f{height:264.186667pt;}
.h1b{height:267.533333pt;}
.h2f{height:299.066667pt;}
.h2b{height:321.946667pt;}
.h47{height:384.373333pt;}
.h2d{height:398.733333pt;}
.h1a{height:409.013333pt;}
.h35{height:424.853333pt;}
.h19{height:440.693333pt;}
.hd{height:536.693333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1156.000000pt;}
.we{width:103.030667pt;}
.wf{width:123.218667pt;}
.wd{width:138.097333pt;}
.w1f{width:159.537333pt;}
.w19{width:216.497333pt;}
.w15{width:218.577333pt;}
.w10{width:219.217333pt;}
.w9{width:232.017333pt;}
.w13{width:311.097333pt;}
.w14{width:328.217333pt;}
.w1e{width:336.697333pt;}
.w17{width:394.617333pt;}
.w12{width:404.537333pt;}
.w1a{width:406.777333pt;}
.w18{width:407.257333pt;}
.wa{width:412.217333pt;}
.w1c{width:422.937333pt;}
.wc{width:443.097333pt;}
.w16{width:462.617333pt;}
.w11{width:509.200000pt;}
.w22{width:528.720000pt;}
.w21{width:529.040000pt;}
.w20{width:531.760000pt;}
.wb{width:531.920000pt;}
.w8{width:532.080000pt;}
.w5{width:532.240000pt;}
.w6{width:532.400000pt;}
.w7{width:532.560000pt;}
.w1b{width:540.240000pt;}
.w2{width:566.928019pt;}
.w1d{width:573.200000pt;}
.w3{width:793.280000pt;}
.w4{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:119.552000pt;}
.x6{left:132.361333pt;}
.xa{left:134.280000pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x9{left:590.186667pt;}
.x8{left:678.373333pt;}
.x7{left:685.893333pt;}
}




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