
    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_37da51d33b164e7cbf35b40f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b5e07d550a4963f15033ce28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_55c5e55815cb55391d1d82b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_25a32b014ed333f275615e88.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.747070;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_653001d679baac927c790bd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_9f151012182568d4c6bcb5d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_a998e18a791532eeb3687a7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_2c7ddd9e754648ee027a1ca6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_16ce622345c1e60ce88142a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275092,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);}
.v3{vertical-align:-64.080000px;}
.v4{vertical-align:-54.720000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.154200px;}
.ls2{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.181440px;}
.ls17{letter-spacing:0.186000px;}
.lse{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.226200px;}
.ls16{letter-spacing:0.238800px;}
.ls12{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.306600px;}
.ls1c{letter-spacing:0.354000px;}
.ls7{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.413400px;}
.lsb{letter-spacing:0.612000px;}
.lsd{letter-spacing:0.618000px;}
.lsa{letter-spacing:0.666000px;}
.ls6{letter-spacing:0.924000px;}
.lsf{letter-spacing:1.386000px;}
.ls19{letter-spacing:41.706720px;}
.ls11{letter-spacing:376.716000px;}
.ls10{letter-spacing:527.106720px;}
.ls13{letter-spacing:650.226720px;}
.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;}
}
.ws3{word-spacing:-17.537280px;}
.ws6{word-spacing:-17.225280px;}
.ws5{word-spacing:-17.026680px;}
.ws4{word-spacing:-16.973280px;}
.ws0{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.506480px;}
.ws2{word-spacing:-13.410720px;}
.wsc{word-spacing:-13.309680px;}
.wsd{word-spacing:-12.916680px;}
.wse{word-spacing:-12.235680px;}
.wsb{word-spacing:-11.835480px;}
.ws9{word-spacing:-11.609280px;}
.wsa{word-spacing:-11.519880px;}
.ws8{word-spacing:-10.700432px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-3.072960px;}
._1{margin-left:-1.792800px;}
._0{width:1.733040px;}
._2{width:2.892960px;}
._e{width:4.152720px;}
._10{width:5.976000px;}
._3{width:7.230960px;}
._4{width:8.667120px;}
._8{width:9.976080px;}
._5{width:11.055600px;}
._6{width:12.131760px;}
._7{width:14.038800px;}
._f{width:15.135600px;}
._1b{width:16.471680px;}
._15{width:17.722080px;}
._12{width:18.881040px;}
._13{width:19.901760px;}
._c{width:21.088560px;}
._b{width:22.170960px;}
._11{width:24.083280px;}
._9{width:26.652960px;}
._a{width:28.080240px;}
._d{width:29.103120px;}
._19{width:31.103760px;}
._18{width:32.238000px;}
._1c{width:41.904480px;}
._1a{width:45.895680px;}
._17{width:49.113600px;}
._16{width:50.320560px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:18.000000px;}
.fsb{font-size:27.360000px;}
.fs7{font-size:38.490762px;}
.fs8{font-size:38.631341px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:0.885000px;}
.yd7{bottom:0.900000px;}
.ydc{bottom:1.080000px;}
.y106{bottom:2.145000px;}
.yf3{bottom:2.160000px;}
.y134{bottom:2.190000px;}
.y105{bottom:2.325000px;}
.ye8{bottom:2.340000px;}
.yd0{bottom:2.520000px;}
.y11d{bottom:2.550000px;}
.y103{bottom:2.700000px;}
.ycb{bottom:2.880000px;}
.y164{bottom:3.420000px;}
.y101{bottom:3.765000px;}
.yda{bottom:3.960000px;}
.yd5{bottom:4.005000px;}
.y14e{bottom:4.500000px;}
.y161{bottom:5.040000px;}
.y175{bottom:5.205000px;}
.y174{bottom:5.745000px;}
.y8e{bottom:6.171583px;}
.y8a{bottom:6.171587px;}
.y80{bottom:6.172259px;}
.y88{bottom:6.207010px;}
.y7e{bottom:6.207011px;}
.y172{bottom:6.840000px;}
.y12d{bottom:7.380000px;}
.y118{bottom:7.545000px;}
.yd1{bottom:8.460000px;}
.y110{bottom:8.625000px;}
.yf6{bottom:8.640000px;}
.y11e{bottom:8.670000px;}
.ycd{bottom:8.820000px;}
.yd3{bottom:11.520000px;}
.yfa{bottom:12.060000px;}
.ycf{bottom:14.580000px;}
.y11c{bottom:14.610000px;}
.y127{bottom:14.760000px;}
.y10f{bottom:14.925000px;}
.yc9{bottom:14.940000px;}
.yef{bottom:14.970000px;}
.y100{bottom:16.365000px;}
.y153{bottom:16.560000px;}
.y12b{bottom:16.740000px;}
.y132{bottom:17.100000px;}
.y160{bottom:17.640000px;}
.y3{bottom:18.540000px;}
.y129{bottom:19.080000px;}
.ycc{bottom:20.880000px;}
.y170{bottom:21.225000px;}
.yf5{bottom:21.240000px;}
.y115{bottom:21.405000px;}
.y10a{bottom:23.385000px;}
.y169{bottom:24.120000px;}
.yf8{bottom:24.660000px;}
.yca{bottom:27.000000px;}
.y16f{bottom:27.525000px;}
.yf2{bottom:27.540000px;}
.yee{bottom:27.570000px;}
.y113{bottom:27.705000px;}
.ye7{bottom:27.720000px;}
.yff{bottom:29.010000px;}
.y152{bottom:29.160000px;}
.y139{bottom:29.700000px;}
.y131{bottom:29.880000px;}
.y159{bottom:30.240000px;}
.y15f{bottom:30.420000px;}
.y114{bottom:34.005000px;}
.y2{bottom:34.200000px;}
.y109{bottom:36.165000px;}
.y168{bottom:36.900000px;}
.yf9{bottom:37.440000px;}
.yf1{bottom:40.140000px;}
.y112{bottom:40.305000px;}
.ye6{bottom:40.320000px;}
.yed{bottom:40.350000px;}
.y130{bottom:42.480000px;}
.y14d{bottom:42.525000px;}
.y158{bottom:42.840000px;}
.y15e{bottom:43.020000px;}
.y108{bottom:48.765000px;}
.y167{bottom:49.500000px;}
.ye5{bottom:52.920000px;}
.yec{bottom:52.950000px;}
.y14c{bottom:55.305000px;}
.y166{bottom:62.280000px;}
.y122{bottom:65.520000px;}
.yeb{bottom:65.730000px;}
.y40{bottom:67.500000px;}
.y11f{bottom:73.620000px;}
.y121{bottom:78.120000px;}
.yea{bottom:78.330000px;}
.y3f{bottom:86.580000px;}
.yc6{bottom:87.660000px;}
.y120{bottom:90.900000px;}
.y146{bottom:97.545000px;}
.y12c{bottom:97.560000px;}
.y126{bottom:103.500000px;}
.yc5{bottom:104.940000px;}
.y3e{bottom:105.120000px;}
.y149{bottom:108.165000px;}
.y145{bottom:110.325000px;}
.y125{bottom:116.280000px;}
.y148{bottom:120.765000px;}
.yc4{bottom:122.220000px;}
.y3d{bottom:122.400000px;}
.y144{bottom:122.925000px;}
.y124{bottom:128.880000px;}
.ye3{bottom:131.220000px;}
.y143{bottom:135.525000px;}
.y12a{bottom:136.800000px;}
.yc3{bottom:139.320000px;}
.y3c{bottom:139.680000px;}
.y123{bottom:141.660000px;}
.ye1{bottom:143.820000px;}
.y142{bottom:148.305000px;}
.y7c{bottom:153.360000px;}
.yc2{bottom:156.600000px;}
.ye2{bottom:156.630000px;}
.y3b{bottom:156.960000px;}
.y141{bottom:160.905000px;}
.y184{bottom:164.160000px;}
.y7b{bottom:170.640000px;}
.y140{bottom:173.685000px;}
.yc1{bottom:173.880000px;}
.y3a{bottom:174.060000px;}
.y128{bottom:179.460000px;}
.y183{bottom:181.260000px;}
.y13f{bottom:186.285000px;}
.y7a{bottom:187.920000px;}
.yc0{bottom:191.160000px;}
.y39{bottom:191.340000px;}
.y182{bottom:198.540000px;}
.y79{bottom:205.200000px;}
.ybf{bottom:208.440000px;}
.y38{bottom:208.620000px;}
.y181{bottom:215.820000px;}
.y78{bottom:222.480000px;}
.ybe{bottom:226.080000px;}
.y37{bottom:226.260000px;}
.y11b{bottom:227.880000px;}
.y180{bottom:233.130000px;}
.y77{bottom:239.790000px;}
.ybd{bottom:244.650000px;}
.y36{bottom:244.830000px;}
.y17f{bottom:250.410000px;}
.y76{bottom:256.890000px;}
.y11a{bottom:257.250000px;}
.ybc{bottom:261.930000px;}
.y35{bottom:262.110000px;}
.y17e{bottom:267.510000px;}
.y75{bottom:274.170000px;}
.ybb{bottom:279.210000px;}
.y34{bottom:279.390000px;}
.y17d{bottom:284.790000px;}
.y119{bottom:288.750000px;}
.y74{bottom:291.450000px;}
.yba{bottom:296.310000px;}
.y33{bottom:296.670000px;}
.y17c{bottom:302.070000px;}
.y111{bottom:304.785000px;}
.y73{bottom:308.730000px;}
.yb9{bottom:313.590000px;}
.y32{bottom:313.950000px;}
.y17b{bottom:319.530000px;}
.y72{bottom:326.010000px;}
.y117{bottom:329.085000px;}
.yb8{bottom:330.870000px;}
.y31{bottom:331.050000px;}
.y17a{bottom:336.810000px;}
.y116{bottom:342.945000px;}
.y71{bottom:343.110000px;}
.yb7{bottom:348.150000px;}
.y30{bottom:348.330000px;}
.y179{bottom:353.910000px;}
.y107{bottom:357.885000px;}
.y70{bottom:360.390000px;}
.yb6{bottom:365.430000px;}
.y2f{bottom:365.610000px;}
.y178{bottom:371.550000px;}
.y10e{bottom:371.565000px;}
.y6f{bottom:377.670000px;}
.yb5{bottom:382.710000px;}
.y2e{bottom:382.890000px;}
.y177{bottom:390.090000px;}
.y6e{bottom:394.950000px;}
.y10d{bottom:398.025000px;}
.yb4{bottom:399.810000px;}
.y2d{bottom:400.530000px;}
.y176{bottom:407.370000px;}
.y10c{bottom:411.885000px;}
.y6d{bottom:412.230000px;}
.yb3{bottom:417.090000px;}
.y2c{bottom:419.070000px;}
.y16e{bottom:423.405000px;}
.y10b{bottom:425.745000px;}
.y6c{bottom:429.510000px;}
.yb2{bottom:434.370000px;}
.y2b{bottom:436.350000px;}
.yfe{bottom:440.685000px;}
.y173{bottom:443.745000px;}
.y6b{bottom:446.610000px;}
.yb1{bottom:451.650000px;}
.y2a{bottom:453.810000px;}
.y104{bottom:454.365000px;}
.y6a{bottom:464.295000px;}
.y171{bottom:465.015000px;}
.y102{bottom:468.255000px;}
.yb0{bottom:468.975000px;}
.y29{bottom:470.955000px;}
.y69{bottom:483.015000px;}
.yf7{bottom:483.915000px;}
.yaf{bottom:486.255000px;}
.y28{bottom:488.055000px;}
.y165{bottom:489.135000px;}
.yfd{bottom:498.855000px;}
.y68{bottom:500.115000px;}
.yae{bottom:503.355000px;}
.y27{bottom:505.335000px;}
.yfc{bottom:513.795000px;}
.y16d{bottom:515.955000px;}
.y67{bottom:517.395000px;}
.yad{bottom:520.635000px;}
.y26{bottom:522.615000px;}
.yfb{bottom:528.735000px;}
.y66{bottom:534.675000px;}
.yac{bottom:537.915000px;}
.y25{bottom:539.895000px;}
.y16c{bottom:542.775000px;}
.ye0{bottom:542.955000px;}
.y65{bottom:551.955000px;}
.yab{bottom:555.195000px;}
.y16b{bottom:556.995000px;}
.y24{bottom:557.175000px;}
.y64{bottom:569.235000px;}
.yf4{bottom:569.415000px;}
.y16a{bottom:571.035000px;}
.yaa{bottom:572.475000px;}
.y23{bottom:574.455000px;}
.y15d{bottom:585.975000px;}
.y63{bottom:586.695000px;}
.ya9{bottom:589.755000px;}
.y22{bottom:591.555000px;}
.y163{bottom:600.195000px;}
.y62{bottom:605.415000px;}
.ya8{bottom:606.855000px;}
.y21{bottom:608.835000px;}
.y162{bottom:616.755000px;}
.yf0{bottom:621.255000px;}
.y61{bottom:622.695000px;}
.ya7{bottom:624.135000px;}
.y20{bottom:626.475000px;}
.y60{bottom:639.975000px;}
.ya6{bottom:641.415000px;}
.y157{bottom:644.475000px;}
.y1f{bottom:645.015000px;}
.y5f{bottom:657.075000px;}
.ya5{bottom:658.695000px;}
.y1e{bottom:662.295000px;}
.y15c{bottom:671.295000px;}
.y5e{bottom:674.355000px;}
.ya4{bottom:675.975000px;}
.y1d{bottom:679.755000px;}
.ye9{bottom:685.695000px;}
.y5d{bottom:691.665000px;}
.ya3{bottom:693.105000px;}
.y1c{bottom:696.885000px;}
.y15b{bottom:698.145000px;}
.y5c{bottom:708.945000px;}
.ya2{bottom:710.385000px;}
.y15a{bottom:712.005000px;}
.y1b{bottom:714.165000px;}
.y5b{bottom:726.225000px;}
.ya1{bottom:727.665000px;}
.y151{bottom:728.205000px;}
.y13e{bottom:728.220000px;}
.y1a{bottom:731.445000px;}
.y156{bottom:741.885000px;}
.y5a{bottom:743.505000px;}
.ya0{bottom:744.945000px;}
.y19{bottom:748.545000px;}
.y155{bottom:755.745000px;}
.y59{bottom:760.605000px;}
.y9f{bottom:762.225000px;}
.y18{bottom:765.825000px;}
.y154{bottom:769.605000px;}
.ye4{bottom:775.545000px;}
.y58{bottom:777.885000px;}
.y9e{bottom:779.505000px;}
.y17{bottom:783.105000px;}
.y147{bottom:783.300000px;}
.y57{bottom:795.165000px;}
.y9d{bottom:796.965000px;}
.y16{bottom:800.385000px;}
.y150{bottom:809.745000px;}
.y56{bottom:812.445000px;}
.y9c{bottom:815.685000px;}
.y15{bottom:817.665000px;}
.y55{bottom:829.725000px;}
.y9b{bottom:832.965000px;}
.y14{bottom:834.765000px;}
.y14f{bottom:836.205000px;}
.ydf{bottom:841.245000px;}
.y54{bottom:847.005000px;}
.y9a{bottom:850.065000px;}
.y13{bottom:852.405000px;}
.y53{bottom:864.105000px;}
.y99{bottom:867.345000px;}
.yde{bottom:870.585000px;}
.y12{bottom:871.305000px;}
.y52{bottom:881.385000px;}
.y98{bottom:884.625000px;}
.y14b{bottom:888.045000px;}
.y11{bottom:890.385000px;}
.y51{bottom:898.665000px;}
.ydd{bottom:899.745000px;}
.y97{bottom:901.905000px;}
.yd2{bottom:904.605000px;}
.y10{bottom:909.105000px;}
.ydb{bottom:910.545000px;}
.y50{bottom:915.945000px;}
.yd4{bottom:916.485000px;}
.yd8{bottom:916.500000px;}
.y96{bottom:919.230000px;}
.yd6{bottom:922.470000px;}
.yf{bottom:926.250000px;}
.yc8{bottom:928.410000px;}
.y4f{bottom:933.270000px;}
.y95{bottom:936.510000px;}
.yce{bottom:941.190000px;}
.ye{bottom:948.030000px;}
.y4e{bottom:950.550000px;}
.y94{bottom:953.610000px;}
.y14a{bottom:957.030000px;}
.yd{bottom:960.810000px;}
.y4d{bottom:967.650000px;}
.yc7{bottom:969.450000px;}
.y93{bottom:971.250000px;}
.yc{bottom:978.090000px;}
.y4c{bottom:984.930000px;}
.y92{bottom:989.970000px;}
.yb{bottom:999.870000px;}
.y4b{bottom:1002.210000px;}
.y91{bottom:1006.710000px;}
.ya{bottom:1013.370000px;}
.y4a{bottom:1019.490000px;}
.y90{bottom:1022.190000px;}
.y138{bottom:1022.730000px;}
.y9{bottom:1033.170000px;}
.y8f{bottom:1034.790000px;}
.y82{bottom:1035.656770px;}
.y81{bottom:1035.656780px;}
.y7f{bottom:1035.656790px;}
.y13d{bottom:1036.410000px;}
.y49{bottom:1036.770000px;}
.y13c{bottom:1050.270000px;}
.y8{bottom:1050.630000px;}
.y48{bottom:1053.870000px;}
.y13b{bottom:1064.130000px;}
.y84{bottom:1069.008158px;}
.y83{bottom:1069.008173px;}
.y7d{bottom:1069.008187px;}
.y7{bottom:1070.610000px;}
.y47{bottom:1071.150000px;}
.y13a{bottom:1077.810000px;}
.y46{bottom:1088.430000px;}
.y12f{bottom:1092.030000px;}
.y6{bottom:1101.570000px;}
.y87{bottom:1102.394145px;}
.y86{bottom:1102.394159px;}
.y85{bottom:1102.394174px;}
.y45{bottom:1105.710000px;}
.y137{bottom:1105.890000px;}
.y136{bottom:1119.570000px;}
.y44{bottom:1122.990000px;}
.y5{bottom:1132.710000px;}
.y135{bottom:1133.430000px;}
.y8c{bottom:1135.780122px;}
.y8b{bottom:1135.780140px;}
.y89{bottom:1135.780159px;}
.y43{bottom:1140.270000px;}
.y133{bottom:1147.290000px;}
.y42{bottom:1157.400000px;}
.y12e{bottom:1162.260000px;}
.y4{bottom:1163.700000px;}
.y8d{bottom:1169.166155px;}
.y41{bottom:1174.680000px;}
.y1{bottom:1196.280000px;}
.h16{height:5.025000px;}
.h17{height:5.061000px;}
.h19{height:5.220000px;}
.h15{height:11.002500px;}
.h18{height:11.160000px;}
.h12{height:12.045000px;}
.h27{height:12.585000px;}
.h39{height:12.600000px;}
.h31{height:12.630000px;}
.h23{height:12.765000px;}
.h3a{height:12.780000px;}
.h26{height:12.801000px;}
.h25{height:13.485000px;}
.h3c{height:13.860000px;}
.h40{height:15.105000px;}
.hb{height:18.235548px;}
.h9{height:18.235552px;}
.hd{height:18.235556px;}
.h45{height:18.705000px;}
.h14{height:18.773438px;}
.h44{height:19.641000px;}
.h43{height:21.765000px;}
.h2f{height:22.860000px;}
.h13{height:22.882500px;}
.h29{height:23.205000px;}
.h11{height:24.105000px;}
.h1a{height:24.120000px;}
.h2a{height:24.156000px;}
.h3e{height:25.185000px;}
.h21{height:25.365000px;}
.h37{height:25.380000px;}
.h3d{height:25.410000px;}
.h1c{height:34.174687px;}
.hf{height:36.885000px;}
.h2e{height:38.160000px;}
.ha{height:40.144662px;}
.hc{height:40.291281px;}
.h24{height:41.061000px;}
.h3{height:41.106445px;}
.h2d{height:41.580000px;}
.h10{height:43.554375px;}
.h6{height:44.327813px;}
.h2c{height:46.260000px;}
.h20{height:50.745000px;}
.h36{height:50.760000px;}
.h8{height:53.573906px;}
.h38{height:54.000000px;}
.h3f{height:56.145000px;}
.he{height:56.320312px;}
.h22{height:57.585000px;}
.h2{height:62.327813px;}
.h1f{height:63.345000px;}
.h1d{height:63.360000px;}
.h42{height:63.381000px;}
.h32{height:67.845000px;}
.h35{height:67.882500px;}
.h30{height:67.890000px;}
.h7{height:69.086250px;}
.h5{height:75.093750px;}
.h28{height:80.445000px;}
.h3b{height:81.390000px;}
.h1e{height:88.770000px;}
.h41{height:94.665000px;}
.h4{height:112.640625px;}
.h2b{height:152.100000px;}
.h34{height:237.075000px;}
.h33{height:292.155000px;}
.h1b{height:295.950000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:23.025000px;}
.w10{width:24.120000px;}
.w13{width:27.165000px;}
.w12{width:27.201000px;}
.w15{width:27.525000px;}
.w14{width:28.605000px;}
.w20{width:45.345000px;}
.w19{width:45.525000px;}
.w1c{width:45.705000px;}
.w29{width:45.885000px;}
.w4{width:46.758841px;}
.w3{width:46.797824px;}
.w11{width:56.865000px;}
.wd{width:57.765000px;}
.w9{width:58.485000px;}
.w7{width:66.276000px;}
.w8{width:69.111000px;}
.w5{width:72.032877px;}
.w2{width:72.071861px;}
.wb{width:73.800000px;}
.w22{width:83.685000px;}
.w1e{width:84.045000px;}
.w17{width:84.225000px;}
.w1a{width:84.405000px;}
.w26{width:90.936000px;}
.w23{width:91.296000px;}
.w6{width:93.171502px;}
.wa{width:100.641000px;}
.wc{width:107.676000px;}
.w2a{width:112.845000px;}
.w27{width:113.205000px;}
.w24{width:113.385000px;}
.w2d{width:113.565000px;}
.w21{width:123.696000px;}
.w16{width:124.056000px;}
.we{width:170.295000px;}
.w2b{width:477.270000px;}
.w2c{width:477.630000px;}
.w25{width:477.990000px;}
.w28{width:478.170000px;}
.w1f{width:486.090000px;}
.w18{width:486.450000px;}
.w1d{width:486.630000px;}
.w1b{width:486.810000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:1.425000px;}
.x3{left:3.787084px;}
.x19{left:5.025000px;}
.x22{left:6.300000px;}
.x9{left:9.042705px;}
.x16{left:10.245000px;}
.x2a{left:12.060000px;}
.x2c{left:13.530000px;}
.x36{left:15.660000px;}
.x32{left:17.460000px;}
.x20{left:19.065000px;}
.x33{left:20.340000px;}
.x15{left:22.845000px;}
.x3a{left:23.925000px;}
.xf{left:25.277156px;}
.x2b{left:28.245000px;}
.x1a{left:29.730000px;}
.x1d{left:34.050000px;}
.x29{left:37.116000px;}
.x35{left:39.456000px;}
.x34{left:41.256000px;}
.x2d{left:74.880000px;}
.x13{left:80.100000px;}
.x1{left:84.960000px;}
.x3b{left:111.996000px;}
.x14{left:147.105000px;}
.x37{left:173.385000px;}
.x2e{left:199.845000px;}
.x17{left:216.945000px;}
.x2{left:223.360671px;}
.x4{left:261.077309px;}
.x18{left:276.165000px;}
.x2f{left:285.165000px;}
.x38{left:287.685000px;}
.x7{left:303.739715px;}
.x5{left:316.183378px;}
.x12{left:353.055000px;}
.x6{left:371.252022px;}
.xb{left:373.492803px;}
.x1b{left:377.535000px;}
.x8{left:384.085515px;}
.xe{left:399.928555px;}
.x23{left:402.375000px;}
.x24{left:427.215000px;}
.x11{left:446.475000px;}
.x1c{left:452.055000px;}
.xa{left:464.423512px;}
.xc{left:474.964752px;}
.x1e{left:560.460000px;}
.xd{left:576.447617px;}
.x1f{left:618.960000px;}
.x10{left:670.785000px;}
.x25{left:676.560000px;}
.x26{left:704.490000px;}
.x27{left:732.390000px;}
.x28{left:761.730000px;}
.x39{left:766.590000px;}
.x31{left:772.710000px;}
.x21{left:789.990000px;}
@media print{
.v3{vertical-align:-56.960000pt;}
.v4{vertical-align:-48.640000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.137067pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.161280pt;}
.ls17{letter-spacing:0.165333pt;}
.lse{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.201067pt;}
.ls16{letter-spacing:0.212267pt;}
.ls12{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.272533pt;}
.ls1c{letter-spacing:0.314667pt;}
.ls7{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.367467pt;}
.lsb{letter-spacing:0.544000pt;}
.lsd{letter-spacing:0.549333pt;}
.lsa{letter-spacing:0.592000pt;}
.ls6{letter-spacing:0.821333pt;}
.lsf{letter-spacing:1.232000pt;}
.ls19{letter-spacing:37.072640pt;}
.ls11{letter-spacing:334.858667pt;}
.ls10{letter-spacing:468.539307pt;}
.ls13{letter-spacing:577.979307pt;}
.ws3{word-spacing:-15.588693pt;}
.ws6{word-spacing:-15.311360pt;}
.ws5{word-spacing:-15.134827pt;}
.ws4{word-spacing:-15.087360pt;}
.ws0{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.672427pt;}
.ws2{word-spacing:-11.920640pt;}
.wsc{word-spacing:-11.830827pt;}
.wsd{word-spacing:-11.481493pt;}
.wse{word-spacing:-10.876160pt;}
.wsb{word-spacing:-10.520427pt;}
.ws9{word-spacing:-10.319360pt;}
.wsa{word-spacing:-10.239893pt;}
.ws8{word-spacing:-9.511495pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-2.731520pt;}
._1{margin-left:-1.593600pt;}
._0{width:1.540480pt;}
._2{width:2.571520pt;}
._e{width:3.691307pt;}
._10{width:5.312000pt;}
._3{width:6.427520pt;}
._4{width:7.704107pt;}
._8{width:8.867627pt;}
._5{width:9.827200pt;}
._6{width:10.783787pt;}
._7{width:12.478933pt;}
._f{width:13.453867pt;}
._1b{width:14.641493pt;}
._15{width:15.752960pt;}
._12{width:16.783147pt;}
._13{width:17.690453pt;}
._c{width:18.745387pt;}
._b{width:19.707520pt;}
._11{width:21.407360pt;}
._9{width:23.691520pt;}
._a{width:24.960213pt;}
._d{width:25.869440pt;}
._19{width:27.647787pt;}
._18{width:28.656000pt;}
._1c{width:37.248427pt;}
._1a{width:40.796160pt;}
._17{width:43.656533pt;}
._16{width:44.729387pt;}
.fsa{font-size:16.000000pt;}
.fsb{font-size:24.320000pt;}
.fs7{font-size:34.214011pt;}
.fs8{font-size:34.338969pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:0.786667pt;}
.yd7{bottom:0.800000pt;}
.ydc{bottom:0.960000pt;}
.y106{bottom:1.906667pt;}
.yf3{bottom:1.920000pt;}
.y134{bottom:1.946667pt;}
.y105{bottom:2.066667pt;}
.ye8{bottom:2.080000pt;}
.yd0{bottom:2.240000pt;}
.y11d{bottom:2.266667pt;}
.y103{bottom:2.400000pt;}
.ycb{bottom:2.560000pt;}
.y164{bottom:3.040000pt;}
.y101{bottom:3.346667pt;}
.yda{bottom:3.520000pt;}
.yd5{bottom:3.560000pt;}
.y14e{bottom:4.000000pt;}
.y161{bottom:4.480000pt;}
.y175{bottom:4.626667pt;}
.y174{bottom:5.106667pt;}
.y8e{bottom:5.485852pt;}
.y8a{bottom:5.485855pt;}
.y80{bottom:5.486452pt;}
.y88{bottom:5.517342pt;}
.y7e{bottom:5.517343pt;}
.y172{bottom:6.080000pt;}
.y12d{bottom:6.560000pt;}
.y118{bottom:6.706667pt;}
.yd1{bottom:7.520000pt;}
.y110{bottom:7.666667pt;}
.yf6{bottom:7.680000pt;}
.y11e{bottom:7.706667pt;}
.ycd{bottom:7.840000pt;}
.yd3{bottom:10.240000pt;}
.yfa{bottom:10.720000pt;}
.ycf{bottom:12.960000pt;}
.y11c{bottom:12.986667pt;}
.y127{bottom:13.120000pt;}
.y10f{bottom:13.266667pt;}
.yc9{bottom:13.280000pt;}
.yef{bottom:13.306667pt;}
.y100{bottom:14.546667pt;}
.y153{bottom:14.720000pt;}
.y12b{bottom:14.880000pt;}
.y132{bottom:15.200000pt;}
.y160{bottom:15.680000pt;}
.y3{bottom:16.480000pt;}
.y129{bottom:16.960000pt;}
.ycc{bottom:18.560000pt;}
.y170{bottom:18.866667pt;}
.yf5{bottom:18.880000pt;}
.y115{bottom:19.026667pt;}
.y10a{bottom:20.786667pt;}
.y169{bottom:21.440000pt;}
.yf8{bottom:21.920000pt;}
.yca{bottom:24.000000pt;}
.y16f{bottom:24.466667pt;}
.yf2{bottom:24.480000pt;}
.yee{bottom:24.506667pt;}
.y113{bottom:24.626667pt;}
.ye7{bottom:24.640000pt;}
.yff{bottom:25.786667pt;}
.y152{bottom:25.920000pt;}
.y139{bottom:26.400000pt;}
.y131{bottom:26.560000pt;}
.y159{bottom:26.880000pt;}
.y15f{bottom:27.040000pt;}
.y114{bottom:30.226667pt;}
.y2{bottom:30.400000pt;}
.y109{bottom:32.146667pt;}
.y168{bottom:32.800000pt;}
.yf9{bottom:33.280000pt;}
.yf1{bottom:35.680000pt;}
.y112{bottom:35.826667pt;}
.ye6{bottom:35.840000pt;}
.yed{bottom:35.866667pt;}
.y130{bottom:37.760000pt;}
.y14d{bottom:37.800000pt;}
.y158{bottom:38.080000pt;}
.y15e{bottom:38.240000pt;}
.y108{bottom:43.346667pt;}
.y167{bottom:44.000000pt;}
.ye5{bottom:47.040000pt;}
.yec{bottom:47.066667pt;}
.y14c{bottom:49.160000pt;}
.y166{bottom:55.360000pt;}
.y122{bottom:58.240000pt;}
.yeb{bottom:58.426667pt;}
.y40{bottom:60.000000pt;}
.y11f{bottom:65.440000pt;}
.y121{bottom:69.440000pt;}
.yea{bottom:69.626667pt;}
.y3f{bottom:76.960000pt;}
.yc6{bottom:77.920000pt;}
.y120{bottom:80.800000pt;}
.y146{bottom:86.706667pt;}
.y12c{bottom:86.720000pt;}
.y126{bottom:92.000000pt;}
.yc5{bottom:93.280000pt;}
.y3e{bottom:93.440000pt;}
.y149{bottom:96.146667pt;}
.y145{bottom:98.066667pt;}
.y125{bottom:103.360000pt;}
.y148{bottom:107.346667pt;}
.yc4{bottom:108.640000pt;}
.y3d{bottom:108.800000pt;}
.y144{bottom:109.266667pt;}
.y124{bottom:114.560000pt;}
.ye3{bottom:116.640000pt;}
.y143{bottom:120.466667pt;}
.y12a{bottom:121.600000pt;}
.yc3{bottom:123.840000pt;}
.y3c{bottom:124.160000pt;}
.y123{bottom:125.920000pt;}
.ye1{bottom:127.840000pt;}
.y142{bottom:131.826667pt;}
.y7c{bottom:136.320000pt;}
.yc2{bottom:139.200000pt;}
.ye2{bottom:139.226667pt;}
.y3b{bottom:139.520000pt;}
.y141{bottom:143.026667pt;}
.y184{bottom:145.920000pt;}
.y7b{bottom:151.680000pt;}
.y140{bottom:154.386667pt;}
.yc1{bottom:154.560000pt;}
.y3a{bottom:154.720000pt;}
.y128{bottom:159.520000pt;}
.y183{bottom:161.120000pt;}
.y13f{bottom:165.586667pt;}
.y7a{bottom:167.040000pt;}
.yc0{bottom:169.920000pt;}
.y39{bottom:170.080000pt;}
.y182{bottom:176.480000pt;}
.y79{bottom:182.400000pt;}
.ybf{bottom:185.280000pt;}
.y38{bottom:185.440000pt;}
.y181{bottom:191.840000pt;}
.y78{bottom:197.760000pt;}
.ybe{bottom:200.960000pt;}
.y37{bottom:201.120000pt;}
.y11b{bottom:202.560000pt;}
.y180{bottom:207.226667pt;}
.y77{bottom:213.146667pt;}
.ybd{bottom:217.466667pt;}
.y36{bottom:217.626667pt;}
.y17f{bottom:222.586667pt;}
.y76{bottom:228.346667pt;}
.y11a{bottom:228.666667pt;}
.ybc{bottom:232.826667pt;}
.y35{bottom:232.986667pt;}
.y17e{bottom:237.786667pt;}
.y75{bottom:243.706667pt;}
.ybb{bottom:248.186667pt;}
.y34{bottom:248.346667pt;}
.y17d{bottom:253.146667pt;}
.y119{bottom:256.666667pt;}
.y74{bottom:259.066667pt;}
.yba{bottom:263.386667pt;}
.y33{bottom:263.706667pt;}
.y17c{bottom:268.506667pt;}
.y111{bottom:270.920000pt;}
.y73{bottom:274.426667pt;}
.yb9{bottom:278.746667pt;}
.y32{bottom:279.066667pt;}
.y17b{bottom:284.026667pt;}
.y72{bottom:289.786667pt;}
.y117{bottom:292.520000pt;}
.yb8{bottom:294.106667pt;}
.y31{bottom:294.266667pt;}
.y17a{bottom:299.386667pt;}
.y116{bottom:304.840000pt;}
.y71{bottom:304.986667pt;}
.yb7{bottom:309.466667pt;}
.y30{bottom:309.626667pt;}
.y179{bottom:314.586667pt;}
.y107{bottom:318.120000pt;}
.y70{bottom:320.346667pt;}
.yb6{bottom:324.826667pt;}
.y2f{bottom:324.986667pt;}
.y178{bottom:330.266667pt;}
.y10e{bottom:330.280000pt;}
.y6f{bottom:335.706667pt;}
.yb5{bottom:340.186667pt;}
.y2e{bottom:340.346667pt;}
.y177{bottom:346.746667pt;}
.y6e{bottom:351.066667pt;}
.y10d{bottom:353.800000pt;}
.yb4{bottom:355.386667pt;}
.y2d{bottom:356.026667pt;}
.y176{bottom:362.106667pt;}
.y10c{bottom:366.120000pt;}
.y6d{bottom:366.426667pt;}
.yb3{bottom:370.746667pt;}
.y2c{bottom:372.506667pt;}
.y16e{bottom:376.360000pt;}
.y10b{bottom:378.440000pt;}
.y6c{bottom:381.786667pt;}
.yb2{bottom:386.106667pt;}
.y2b{bottom:387.866667pt;}
.yfe{bottom:391.720000pt;}
.y173{bottom:394.440000pt;}
.y6b{bottom:396.986667pt;}
.yb1{bottom:401.466667pt;}
.y2a{bottom:403.386667pt;}
.y104{bottom:403.880000pt;}
.y6a{bottom:412.706667pt;}
.y171{bottom:413.346667pt;}
.y102{bottom:416.226667pt;}
.yb0{bottom:416.866667pt;}
.y29{bottom:418.626667pt;}
.y69{bottom:429.346667pt;}
.yf7{bottom:430.146667pt;}
.yaf{bottom:432.226667pt;}
.y28{bottom:433.826667pt;}
.y165{bottom:434.786667pt;}
.yfd{bottom:443.426667pt;}
.y68{bottom:444.546667pt;}
.yae{bottom:447.426667pt;}
.y27{bottom:449.186667pt;}
.yfc{bottom:456.706667pt;}
.y16d{bottom:458.626667pt;}
.y67{bottom:459.906667pt;}
.yad{bottom:462.786667pt;}
.y26{bottom:464.546667pt;}
.yfb{bottom:469.986667pt;}
.y66{bottom:475.266667pt;}
.yac{bottom:478.146667pt;}
.y25{bottom:479.906667pt;}
.y16c{bottom:482.466667pt;}
.ye0{bottom:482.626667pt;}
.y65{bottom:490.626667pt;}
.yab{bottom:493.506667pt;}
.y16b{bottom:495.106667pt;}
.y24{bottom:495.266667pt;}
.y64{bottom:505.986667pt;}
.yf4{bottom:506.146667pt;}
.y16a{bottom:507.586667pt;}
.yaa{bottom:508.866667pt;}
.y23{bottom:510.626667pt;}
.y15d{bottom:520.866667pt;}
.y63{bottom:521.506667pt;}
.ya9{bottom:524.226667pt;}
.y22{bottom:525.826667pt;}
.y163{bottom:533.506667pt;}
.y62{bottom:538.146667pt;}
.ya8{bottom:539.426667pt;}
.y21{bottom:541.186667pt;}
.y162{bottom:548.226667pt;}
.yf0{bottom:552.226667pt;}
.y61{bottom:553.506667pt;}
.ya7{bottom:554.786667pt;}
.y20{bottom:556.866667pt;}
.y60{bottom:568.866667pt;}
.ya6{bottom:570.146667pt;}
.y157{bottom:572.866667pt;}
.y1f{bottom:573.346667pt;}
.y5f{bottom:584.066667pt;}
.ya5{bottom:585.506667pt;}
.y1e{bottom:588.706667pt;}
.y15c{bottom:596.706667pt;}
.y5e{bottom:599.426667pt;}
.ya4{bottom:600.866667pt;}
.y1d{bottom:604.226667pt;}
.ye9{bottom:609.506667pt;}
.y5d{bottom:614.813333pt;}
.ya3{bottom:616.093333pt;}
.y1c{bottom:619.453333pt;}
.y15b{bottom:620.573333pt;}
.y5c{bottom:630.173333pt;}
.ya2{bottom:631.453333pt;}
.y15a{bottom:632.893333pt;}
.y1b{bottom:634.813333pt;}
.y5b{bottom:645.533333pt;}
.ya1{bottom:646.813333pt;}
.y151{bottom:647.293333pt;}
.y13e{bottom:647.306667pt;}
.y1a{bottom:650.173333pt;}
.y156{bottom:659.453333pt;}
.y5a{bottom:660.893333pt;}
.ya0{bottom:662.173333pt;}
.y19{bottom:665.373333pt;}
.y155{bottom:671.773333pt;}
.y59{bottom:676.093333pt;}
.y9f{bottom:677.533333pt;}
.y18{bottom:680.733333pt;}
.y154{bottom:684.093333pt;}
.ye4{bottom:689.373333pt;}
.y58{bottom:691.453333pt;}
.y9e{bottom:692.893333pt;}
.y17{bottom:696.093333pt;}
.y147{bottom:696.266667pt;}
.y57{bottom:706.813333pt;}
.y9d{bottom:708.413333pt;}
.y16{bottom:711.453333pt;}
.y150{bottom:719.773333pt;}
.y56{bottom:722.173333pt;}
.y9c{bottom:725.053333pt;}
.y15{bottom:726.813333pt;}
.y55{bottom:737.533333pt;}
.y9b{bottom:740.413333pt;}
.y14{bottom:742.013333pt;}
.y14f{bottom:743.293333pt;}
.ydf{bottom:747.773333pt;}
.y54{bottom:752.893333pt;}
.y9a{bottom:755.613333pt;}
.y13{bottom:757.693333pt;}
.y53{bottom:768.093333pt;}
.y99{bottom:770.973333pt;}
.yde{bottom:773.853333pt;}
.y12{bottom:774.493333pt;}
.y52{bottom:783.453333pt;}
.y98{bottom:786.333333pt;}
.y14b{bottom:789.373333pt;}
.y11{bottom:791.453333pt;}
.y51{bottom:798.813333pt;}
.ydd{bottom:799.773333pt;}
.y97{bottom:801.693333pt;}
.yd2{bottom:804.093333pt;}
.y10{bottom:808.093333pt;}
.ydb{bottom:809.373333pt;}
.y50{bottom:814.173333pt;}
.yd4{bottom:814.653333pt;}
.yd8{bottom:814.666667pt;}
.y96{bottom:817.093333pt;}
.yd6{bottom:819.973333pt;}
.yf{bottom:823.333333pt;}
.yc8{bottom:825.253333pt;}
.y4f{bottom:829.573333pt;}
.y95{bottom:832.453333pt;}
.yce{bottom:836.613333pt;}
.ye{bottom:842.693333pt;}
.y4e{bottom:844.933333pt;}
.y94{bottom:847.653333pt;}
.y14a{bottom:850.693333pt;}
.yd{bottom:854.053333pt;}
.y4d{bottom:860.133333pt;}
.yc7{bottom:861.733333pt;}
.y93{bottom:863.333333pt;}
.yc{bottom:869.413333pt;}
.y4c{bottom:875.493333pt;}
.y92{bottom:879.973333pt;}
.yb{bottom:888.773333pt;}
.y4b{bottom:890.853333pt;}
.y91{bottom:894.853333pt;}
.ya{bottom:900.773333pt;}
.y4a{bottom:906.213333pt;}
.y90{bottom:908.613333pt;}
.y138{bottom:909.093333pt;}
.y9{bottom:918.373333pt;}
.y8f{bottom:919.813333pt;}
.y82{bottom:920.583795pt;}
.y81{bottom:920.583804pt;}
.y7f{bottom:920.583813pt;}
.y13d{bottom:921.253333pt;}
.y49{bottom:921.573333pt;}
.y13c{bottom:933.573333pt;}
.y8{bottom:933.893333pt;}
.y48{bottom:936.773333pt;}
.y13b{bottom:945.893333pt;}
.y84{bottom:950.229474pt;}
.y83{bottom:950.229487pt;}
.y7d{bottom:950.229500pt;}
.y7{bottom:951.653333pt;}
.y47{bottom:952.133333pt;}
.y13a{bottom:958.053333pt;}
.y46{bottom:967.493333pt;}
.y12f{bottom:970.693333pt;}
.y6{bottom:979.173333pt;}
.y87{bottom:979.905907pt;}
.y86{bottom:979.905919pt;}
.y85{bottom:979.905932pt;}
.y45{bottom:982.853333pt;}
.y137{bottom:983.013333pt;}
.y136{bottom:995.173333pt;}
.y44{bottom:998.213333pt;}
.y5{bottom:1006.853333pt;}
.y135{bottom:1007.493333pt;}
.y8c{bottom:1009.582331pt;}
.y8b{bottom:1009.582347pt;}
.y89{bottom:1009.582363pt;}
.y43{bottom:1013.573333pt;}
.y133{bottom:1019.813333pt;}
.y42{bottom:1028.800000pt;}
.y12e{bottom:1033.120000pt;}
.y4{bottom:1034.400000pt;}
.y8d{bottom:1039.258805pt;}
.y41{bottom:1044.160000pt;}
.y1{bottom:1063.360000pt;}
.h16{height:4.466667pt;}
.h17{height:4.498667pt;}
.h19{height:4.640000pt;}
.h15{height:9.780000pt;}
.h18{height:9.920000pt;}
.h12{height:10.706667pt;}
.h27{height:11.186667pt;}
.h39{height:11.200000pt;}
.h31{height:11.226667pt;}
.h23{height:11.346667pt;}
.h3a{height:11.360000pt;}
.h26{height:11.378667pt;}
.h25{height:11.986667pt;}
.h3c{height:12.320000pt;}
.h40{height:13.426667pt;}
.hb{height:16.209376pt;}
.h9{height:16.209380pt;}
.hd{height:16.209383pt;}
.h45{height:16.626667pt;}
.h14{height:16.687500pt;}
.h44{height:17.458667pt;}
.h43{height:19.346667pt;}
.h2f{height:20.320000pt;}
.h13{height:20.340000pt;}
.h29{height:20.626667pt;}
.h11{height:21.426667pt;}
.h1a{height:21.440000pt;}
.h2a{height:21.472000pt;}
.h3e{height:22.386667pt;}
.h21{height:22.546667pt;}
.h37{height:22.560000pt;}
.h3d{height:22.586667pt;}
.h1c{height:30.377500pt;}
.hf{height:32.786667pt;}
.h2e{height:33.920000pt;}
.ha{height:35.684144pt;}
.hc{height:35.814472pt;}
.h24{height:36.498667pt;}
.h3{height:36.539062pt;}
.h2d{height:36.960000pt;}
.h10{height:38.715000pt;}
.h6{height:39.402500pt;}
.h2c{height:41.120000pt;}
.h20{height:45.106667pt;}
.h36{height:45.120000pt;}
.h8{height:47.621250pt;}
.h38{height:48.000000pt;}
.h3f{height:49.906667pt;}
.he{height:50.062500pt;}
.h22{height:51.186667pt;}
.h2{height:55.402500pt;}
.h1f{height:56.306667pt;}
.h1d{height:56.320000pt;}
.h42{height:56.338667pt;}
.h32{height:60.306667pt;}
.h35{height:60.340000pt;}
.h30{height:60.346667pt;}
.h7{height:61.410000pt;}
.h5{height:66.750000pt;}
.h28{height:71.506667pt;}
.h3b{height:72.346667pt;}
.h1e{height:78.906667pt;}
.h41{height:84.146667pt;}
.h4{height:100.125000pt;}
.h2b{height:135.200000pt;}
.h34{height:210.733333pt;}
.h33{height:259.693333pt;}
.h1b{height:263.066667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:20.466667pt;}
.w10{width:21.440000pt;}
.w13{width:24.146667pt;}
.w12{width:24.178667pt;}
.w15{width:24.466667pt;}
.w14{width:25.426667pt;}
.w20{width:40.306667pt;}
.w19{width:40.466667pt;}
.w1c{width:40.626667pt;}
.w29{width:40.786667pt;}
.w4{width:41.563414pt;}
.w3{width:41.598066pt;}
.w11{width:50.546667pt;}
.wd{width:51.346667pt;}
.w9{width:51.986667pt;}
.w7{width:58.912000pt;}
.w8{width:61.432000pt;}
.w5{width:64.029224pt;}
.w2{width:64.063876pt;}
.wb{width:65.600000pt;}
.w22{width:74.386667pt;}
.w1e{width:74.706667pt;}
.w17{width:74.866667pt;}
.w1a{width:75.026667pt;}
.w26{width:80.832000pt;}
.w23{width:81.152000pt;}
.w6{width:82.819113pt;}
.wa{width:89.458667pt;}
.wc{width:95.712000pt;}
.w2a{width:100.306667pt;}
.w27{width:100.626667pt;}
.w24{width:100.786667pt;}
.w2d{width:100.946667pt;}
.w21{width:109.952000pt;}
.w16{width:110.272000pt;}
.we{width:151.373333pt;}
.w2b{width:424.240000pt;}
.w2c{width:424.560000pt;}
.w25{width:424.880000pt;}
.w28{width:425.040000pt;}
.w1f{width:432.080000pt;}
.w18{width:432.400000pt;}
.w1d{width:432.560000pt;}
.w1b{width:432.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:1.266667pt;}
.x3{left:3.366297pt;}
.x19{left:4.466667pt;}
.x22{left:5.600000pt;}
.x9{left:8.037960pt;}
.x16{left:9.106667pt;}
.x2a{left:10.720000pt;}
.x2c{left:12.026667pt;}
.x36{left:13.920000pt;}
.x32{left:15.520000pt;}
.x20{left:16.946667pt;}
.x33{left:18.080000pt;}
.x15{left:20.306667pt;}
.x3a{left:21.266667pt;}
.xf{left:22.468584pt;}
.x2b{left:25.106667pt;}
.x1a{left:26.426667pt;}
.x1d{left:30.266667pt;}
.x29{left:32.992000pt;}
.x35{left:35.072000pt;}
.x34{left:36.672000pt;}
.x2d{left:66.560000pt;}
.x13{left:71.200000pt;}
.x1{left:75.520000pt;}
.x3b{left:99.552000pt;}
.x14{left:130.760000pt;}
.x37{left:154.120000pt;}
.x2e{left:177.640000pt;}
.x17{left:192.840000pt;}
.x2{left:198.542818pt;}
.x4{left:232.068719pt;}
.x18{left:245.480000pt;}
.x2f{left:253.480000pt;}
.x38{left:255.720000pt;}
.x7{left:269.990858pt;}
.x5{left:281.051891pt;}
.x12{left:313.826667pt;}
.x6{left:330.001797pt;}
.xb{left:331.993603pt;}
.x1b{left:335.586667pt;}
.x8{left:341.409346pt;}
.xe{left:355.492048pt;}
.x23{left:357.666667pt;}
.x24{left:379.746667pt;}
.x11{left:396.866667pt;}
.x1c{left:401.826667pt;}
.xa{left:412.820900pt;}
.xc{left:422.190891pt;}
.x1e{left:498.186667pt;}
.xd{left:512.397882pt;}
.x1f{left:550.186667pt;}
.x10{left:596.253333pt;}
.x25{left:601.386667pt;}
.x26{left:626.213333pt;}
.x27{left:651.013333pt;}
.x28{left:677.093333pt;}
.x39{left:681.413333pt;}
.x31{left:686.853333pt;}
.x21{left:702.213333pt;}
}




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