
    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_8bb1aef33847ecf4462d5ce7.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_5a0a86210c214cf6e2cde35c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_604839d2939b9d469cbb3e04.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_cc7cad878e6d02c4518dd855.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:44.640000px;}
.v3{vertical-align:50.400000px;}
.ls12{letter-spacing:-0.828000px;}
.ls18{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.262200px;}
.ls17{letter-spacing:-0.178800px;}
.ls4{letter-spacing:-0.152400px;}
.ls2{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.099600px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.075000px;}
.lsb{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305400px;}
.ls9{letter-spacing:1.860480px;}
.ls16{letter-spacing:2.465280px;}
.lsc{letter-spacing:13.878720px;}
.ls7{letter-spacing:14.598720px;}
.lsa{letter-spacing:18.198720px;}
.ls11{letter-spacing:34.865280px;}
.ls14{letter-spacing:349.505280px;}
.lsd{letter-spacing:1057.883040px;}
.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:-18.720120px;}
.ws4{word-spacing:-18.676920px;}
.ws3{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.wsf{word-spacing:-18.152520px;}
.ws5{word-spacing:-18.109320px;}
.ws12{word-spacing:-17.694720px;}
.ws8{word-spacing:-14.760000px;}
.ws9{word-spacing:-14.647800px;}
.wsb{word-spacing:-14.595840px;}
.ws10{word-spacing:-11.609280px;}
.ws11{word-spacing:-11.430480px;}
.ws7{word-spacing:-10.513200px;}
.wse{word-spacing:-1.572480px;}
.wsa{word-spacing:-0.852480px;}
.wsd{word-spacing:-0.086400px;}
.wsc{word-spacing:-0.012480px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:3.587520px;}
._1f{margin-left:-4.605120px;}
._20{margin-left:-3.132000px;}
._5{margin-left:-2.034720px;}
._0{margin-left:-1.010880px;}
._1{width:1.562400px;}
._2{width:2.656080px;}
._22{width:4.494000px;}
._3{width:5.621520px;}
._21{width:7.417920px;}
._27{width:8.478720px;}
._29{width:9.868320px;}
._26{width:10.929600px;}
._28{width:12.080160px;}
._24{width:14.042880px;}
._25{width:15.415200px;}
._31{width:16.877760px;}
._2b{width:18.198720px;}
._2d{width:19.612800px;}
._32{width:21.182400px;}
._38{width:22.315680px;}
._2e{width:23.780160px;}
._2f{width:25.218720px;}
._35{width:29.065440px;}
._34{width:30.161760px;}
._33{width:31.272000px;}
._23{width:33.252480px;}
._30{width:34.559520px;}
._2a{width:56.888640px;}
._1e{width:140.684880px;}
._2c{width:146.700000px;}
._36{width:349.361280px;}
._9{width:813.907200px;}
._1d{width:845.765280px;}
._18{width:890.054400px;}
._37{width:1000.092000px;}
._b{width:1220.386080px;}
._11{width:1237.897920px;}
._16{width:1256.157120px;}
._e{width:1341.331680px;}
._10{width:1410.378240px;}
._17{width:1417.707840px;}
._a{width:1441.417440px;}
._8{width:1454.242080px;}
._c{width:1480.692000px;}
._f{width:1543.288800px;}
._4{width:1546.445280px;}
._d{width:1631.719200px;}
._1c{width:1748.074080px;}
._15{width:1864.912800px;}
._13{width:1913.100960px;}
._1a{width:1954.256160px;}
._12{width:2061.124320px;}
._19{width:2068.860000px;}
._7{width:2142.135840px;}
._14{width:2152.151040px;}
._6{width:2202.717600px;}
._1b{width:2235.728640px;}
.fc2{color:transparent;}
.fc1{color:rgb(155,50,35);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.420000px;}
.y61{bottom:3.600000px;}
.y3e{bottom:6.300000px;}
.ye{bottom:7.920000px;}
.y2{bottom:9.000000px;}
.yc{bottom:9.036000px;}
.y45{bottom:10.080000px;}
.y18{bottom:10.260000px;}
.y1a{bottom:10.440000px;}
.y1c{bottom:10.485000px;}
.y40{bottom:10.980000px;}
.y42{bottom:11.160000px;}
.y1f{bottom:13.140000px;}
.y6{bottom:19.620000px;}
.y15{bottom:22.500000px;}
.y20{bottom:22.680000px;}
.y3d{bottom:25.200000px;}
.y1e{bottom:32.220000px;}
.y14{bottom:41.400000px;}
.yb{bottom:41.970000px;}
.y3c{bottom:44.280000px;}
.y13{bottom:60.480000px;}
.y3b{bottom:63.180000px;}
.y5{bottom:64.485000px;}
.ya{bottom:74.910000px;}
.y12{bottom:79.380000px;}
.y3a{bottom:82.080000px;}
.y11{bottom:98.460000px;}
.y39{bottom:101.160000px;}
.y9{bottom:108.030000px;}
.y5f{bottom:115.380000px;}
.y10{bottom:117.390000px;}
.y38{bottom:120.090000px;}
.y5e{bottom:134.280000px;}
.y4{bottom:135.585000px;}
.y7{bottom:139.500000px;}
.y8{bottom:140.970000px;}
.y5d{bottom:153.180000px;}
.y5c{bottom:172.305000px;}
.y60{bottom:186.330000px;}
.y35{bottom:189.045000px;}
.y5b{bottom:191.205000px;}
.y36{bottom:191.730000px;}
.ya3{bottom:192.450000px;}
.yf3{bottom:193.710000px;}
.y13c{bottom:194.070000px;}
.y180{bottom:194.430000px;}
.y15c{bottom:200.730000px;}
.y34{bottom:207.945000px;}
.y5a{bottom:210.285000px;}
.yd7{bottom:218.190000px;}
.ya2{bottom:221.070000px;}
.y11d{bottom:221.970000px;}
.yf2{bottom:222.330000px;}
.y128{bottom:222.510000px;}
.y46{bottom:222.690000px;}
.y182{bottom:222.870000px;}
.y33{bottom:227.025000px;}
.y21{bottom:227.910000px;}
.y59{bottom:229.185000px;}
.y15b{bottom:229.350000px;}
.y1b5{bottom:229.890000px;}
.y7b{bottom:232.770000px;}
.y112{bottom:234.930000px;}
.y1b1{bottom:241.590000px;}
.y32{bottom:245.925000px;}
.y111{bottom:246.090000px;}
.yd6{bottom:246.810000px;}
.y58{bottom:248.085000px;}
.ya1{bottom:249.510000px;}
.yf1{bottom:250.770000px;}
.y127{bottom:250.950000px;}
.y135{bottom:251.130000px;}
.y17f{bottom:251.310000px;}
.y1b0{bottom:260.670000px;}
.y31{bottom:264.825000px;}
.y14d{bottom:265.350000px;}
.y57{bottom:267.165000px;}
.yd5{bottom:275.250000px;}
.y178{bottom:275.790000px;}
.y7a{bottom:277.230000px;}
.ya0{bottom:277.950000px;}
.y11c{bottom:278.850000px;}
.y102{bottom:279.210000px;}
.y126{bottom:279.390000px;}
.y134{bottom:279.570000px;}
.y17e{bottom:279.750000px;}
.y30{bottom:283.905000px;}
.y56{bottom:286.065000px;}
.y15a{bottom:286.230000px;}
.y14c{bottom:293.790000px;}
.ybb{bottom:295.590000px;}
.y1af{bottom:298.650000px;}
.y2f{bottom:302.805000px;}
.y101{bottom:302.970000px;}
.yd4{bottom:303.690000px;}
.y177{bottom:304.230000px;}
.y55{bottom:305.145000px;}
.yf0{bottom:307.650000px;}
.y125{bottom:307.830000px;}
.y133{bottom:308.010000px;}
.y17d{bottom:308.190000px;}
.y110{bottom:314.130000px;}
.y159{bottom:314.670000px;}
.y79{bottom:321.690000px;}
.y2e{bottom:321.885000px;}
.y14b{bottom:322.230000px;}
.y54{bottom:324.045000px;}
.yba{bottom:324.210000px;}
.y176{bottom:332.670000px;}
.y9f{bottom:333.750000px;}
.y11b{bottom:335.910000px;}
.yef{bottom:336.090000px;}
.y17c{bottom:336.630000px;}
.y10f{bottom:338.430000px;}
.y2d{bottom:340.785000px;}
.y53{bottom:342.945000px;}
.y158{bottom:343.110000px;}
.y1ae{bottom:345.990000px;}
.yd3{bottom:351.030000px;}
.yb9{bottom:352.650000px;}
.y3{bottom:356.970000px;}
.y9e{bottom:359.670000px;}
.y2c{bottom:359.865000px;}
.y175{bottom:361.110000px;}
.y52{bottom:362.025000px;}
.y11a{bottom:364.350000px;}
.yee{bottom:364.530000px;}
.y124{bottom:364.890000px;}
.y132{bottom:365.070000px;}
.y185{bottom:365.250000px;}
.y78{bottom:366.150000px;}
.y157{bottom:371.550000px;}
.y2b{bottom:378.765000px;}
.y14a{bottom:379.110000px;}
.y51{bottom:380.925000px;}
.yb8{bottom:381.090000px;}
.y100{bottom:388.110000px;}
.y119{bottom:392.835000px;}
.yed{bottom:393.015000px;}
.y10e{bottom:393.375000px;}
.y131{bottom:393.555000px;}
.y184{bottom:393.735000px;}
.y2a{bottom:397.665000px;}
.y50{bottom:400.005000px;}
.y156{bottom:400.035000px;}
.yb7{bottom:409.575000px;}
.y77{bottom:410.835000px;}
.y9d{bottom:411.555000px;}
.y1ad{bottom:412.455000px;}
.yff{bottom:416.595000px;}
.y29{bottom:416.775000px;}
.y174{bottom:418.215000px;}
.y4f{bottom:418.935000px;}
.yec{bottom:421.635000px;}
.y13b{bottom:421.995000px;}
.y17b{bottom:422.175000px;}
.y19b{bottom:422.355000px;}
.yd2{bottom:424.695000px;}
.y155{bottom:428.655000px;}
.y1ac{bottom:431.715000px;}
.y28{bottom:435.675000px;}
.y149{bottom:436.215000px;}
.y4e{bottom:437.835000px;}
.yb6{bottom:438.015000px;}
.yfe{bottom:445.035000px;}
.y173{bottom:446.655000px;}
.y76{bottom:447.735000px;}
.yeb{bottom:450.075000px;}
.y10d{bottom:450.255000px;}
.y130{bottom:450.435000px;}
.y17a{bottom:450.615000px;}
.yd1{bottom:453.135000px;}
.y27{bottom:454.755000px;}
.y118{bottom:455.295000px;}
.y4d{bottom:456.915000px;}
.y154{bottom:457.095000px;}
.yb5{bottom:466.455000px;}
.y26{bottom:473.655000px;}
.y172{bottom:475.095000px;}
.y75{bottom:475.635000px;}
.y4c{bottom:475.815000px;}
.yea{bottom:478.515000px;}
.y10c{bottom:478.695000px;}
.y13a{bottom:478.875000px;}
.y179{bottom:479.055000px;}
.y19a{bottom:479.415000px;}
.yd0{bottom:481.575000px;}
.y153{bottom:485.535000px;}
.y1ab{bottom:488.595000px;}
.y25{bottom:492.555000px;}
.y148{bottom:493.095000px;}
.y4b{bottom:494.895000px;}
.y91{bottom:500.295000px;}
.yfd{bottom:502.095000px;}
.y171{bottom:503.535000px;}
.y74{bottom:503.715000px;}
.ye9{bottom:506.955000px;}
.y123{bottom:507.315000px;}
.y12f{bottom:507.495000px;}
.y199{bottom:507.855000px;}
.ycf{bottom:510.015000px;}
.y24{bottom:511.635000px;}
.y4a{bottom:513.795000px;}
.y152{bottom:513.975000px;}
.y1aa{bottom:517.035000px;}
.yb4{bottom:523.335000px;}
.y90{bottom:528.735000px;}
.y23{bottom:530.535000px;}
.y73{bottom:531.615000px;}
.y170{bottom:531.975000px;}
.y49{bottom:532.875000px;}
.ye8{bottom:535.395000px;}
.y10b{bottom:535.755000px;}
.y12e{bottom:535.935000px;}
.y198{bottom:536.295000px;}
.yce{bottom:538.455000px;}
.y151{bottom:542.415000px;}
.y22{bottom:549.615000px;}
.y147{bottom:550.155000px;}
.y48{bottom:551.775000px;}
.y8f{bottom:557.175000px;}
.yfc{bottom:558.975000px;}
.y16f{bottom:560.415000px;}
.ye7{bottom:563.835000px;}
.y13f{bottom:564.195000px;}
.y12d{bottom:564.375000px;}
.y186{bottom:564.555000px;}
.y197{bottom:564.735000px;}
.ycd{bottom:566.895000px;}
.y47{bottom:570.675000px;}
.y167{bottom:570.855000px;}
.y72{bottom:576.075000px;}
.y8e{bottom:585.615000px;}
.yfb{bottom:587.415000px;}
.y16e{bottom:589.035000px;}
.y10a{bottom:592.635000px;}
.y139{bottom:592.815000px;}
.y181{bottom:592.995000px;}
.y196{bottom:593.175000px;}
.ycc{bottom:595.335000px;}
.yb3{bottom:599.295000px;}
.y150{bottom:604.875000px;}
.y146{bottom:607.035000px;}
.y1a9{bottom:611.895000px;}
.y71{bottom:613.155000px;}
.y8d{bottom:614.055000px;}
.y117{bottom:614.235000px;}
.y13e{bottom:621.075000px;}
.y12c{bottom:621.255000px;}
.y16a{bottom:621.435000px;}
.y195{bottom:621.615000px;}
.ycb{bottom:623.775000px;}
.ye6{bottom:626.295000px;}
.y166{bottom:627.735000px;}
.y1a8{bottom:630.975000px;}
.y145{bottom:635.475000px;}
.y116{bottom:642.705000px;}
.yfa{bottom:644.325000px;}
.y16d{bottom:645.945000px;}
.y109{bottom:649.725000px;}
.y169{bottom:649.905000px;}
.y19e{bottom:650.085000px;}
.yca{bottom:652.425000px;}
.y165{bottom:656.205000px;}
.y70{bottom:657.645000px;}
.y8c{bottom:671.145000px;}
.yb2{bottom:672.765000px;}
.yf9{bottom:672.945000px;}
.y12b{bottom:678.165000px;}
.y14f{bottom:678.345000px;}
.y19d{bottom:678.525000px;}
.y194{bottom:678.705000px;}
.yc9{bottom:680.865000px;}
.y144{bottom:692.565000px;}
.y6f{bottom:694.545000px;}
.y1a7{bottom:697.425000px;}
.y8b{bottom:699.585000px;}
.ye5{bottom:699.765000px;}
.yb1{bottom:701.205000px;}
.yf8{bottom:701.385000px;}
.y16c{bottom:701.745000px;}
.y108{bottom:706.605000px;}
.y138{bottom:706.785000px;}
.y193{bottom:707.145000px;}
.yc8{bottom:709.305000px;}
.y164{bottom:713.265000px;}
.y1a6{bottom:716.505000px;}
.y143{bottom:721.005000px;}
.y6e{bottom:722.445000px;}
.y16b{bottom:725.325000px;}
.y8a{bottom:728.025000px;}
.ye4{bottom:728.205000px;}
.yb0{bottom:729.825000px;}
.y13d{bottom:735.045000px;}
.y12a{bottom:735.225000px;}
.y192{bottom:735.585000px;}
.y163{bottom:741.705000px;}
.y142{bottom:749.445000px;}
.y6d{bottom:750.525000px;}
.y115{bottom:756.465000px;}
.yc7{bottom:756.645000px;}
.ye3{bottom:756.825000px;}
.yaf{bottom:758.265000px;}
.y107{bottom:763.665000px;}
.y191{bottom:764.025000px;}
.y162{bottom:770.145000px;}
.y6c{bottom:776.985000px;}
.y1a5{bottom:782.925000px;}
.y89{bottom:784.905000px;}
.ye2{bottom:785.265000px;}
.yf7{bottom:786.705000px;}
.y122{bottom:792.105000px;}
.y168{bottom:792.285000px;}
.y190{bottom:792.465000px;}
.y161{bottom:798.585000px;}
.y6b{bottom:803.445000px;}
.y141{bottom:806.325000px;}
.y9c{bottom:806.505000px;}
.y1d{bottom:810.285000px;}
.y88{bottom:813.525000px;}
.ye1{bottom:813.705000px;}
.yae{bottom:815.145000px;}
.y106{bottom:820.545000px;}
.y14e{bottom:820.725000px;}
.y18f{bottom:820.905000px;}
.y44{bottom:826.305000px;}
.y160{bottom:827.025000px;}
.y6a{bottom:829.905000px;}
.yc6{bottom:830.265000px;}
.y140{bottom:834.765000px;}
.y9b{bottom:834.945000px;}
.y1a4{bottom:839.805000px;}
.y87{bottom:841.965000px;}
.ye0{bottom:842.145000px;}
.yad{bottom:843.585000px;}
.y121{bottom:848.985000px;}
.y137{bottom:849.165000px;}
.y18e{bottom:849.345000px;}
.y15f{bottom:855.465000px;}
.y69{bottom:856.365000px;}
.yc5{bottom:858.705000px;}
.y9a{bottom:863.385000px;}
.y1a3{bottom:868.245000px;}
.y86{bottom:870.405000px;}
.ydf{bottom:870.585000px;}
.yac{bottom:872.025000px;}
.yf6{bottom:872.205000px;}
.y43{bottom:875.805000px;}
.y105{bottom:877.425000px;}
.y129{bottom:877.605000px;}
.y18d{bottom:877.785000px;}
.y68{bottom:884.445000px;}
.y1b{bottom:884.985000px;}
.yc4{bottom:887.145000px;}
.y99{bottom:891.870000px;}
.y85{bottom:898.890000px;}
.yde{bottom:899.070000px;}
.yab{bottom:900.510000px;}
.yf5{bottom:900.690000px;}
.y120{bottom:906.090000px;}
.y18c{bottom:906.450000px;}
.y67{bottom:912.390000px;}
.yc3{bottom:915.630000px;}
.y15e{bottom:917.970000px;}
.y98{bottom:920.310000px;}
.y41{bottom:927.150000px;}
.y84{bottom:927.330000px;}
.ydd{bottom:927.510000px;}
.yf4{bottom:929.130000px;}
.y104{bottom:934.530000px;}
.y1a2{bottom:934.710000px;}
.y18b{bottom:934.890000px;}
.y19{bottom:935.070000px;}
.yc2{bottom:944.070000px;}
.y97{bottom:948.750000px;}
.y1a1{bottom:953.790000px;}
.y114{bottom:955.770000px;}
.y66{bottom:956.850000px;}
.yaa{bottom:957.570000px;}
.y11f{bottom:962.970000px;}
.y183{bottom:963.150000px;}
.y19c{bottom:963.330000px;}
.yc1{bottom:972.510000px;}
.ydc{bottom:975.030000px;}
.y96{bottom:977.190000px;}
.y3f{bottom:978.630000px;}
.y83{bottom:984.210000px;}
.y17{bottom:985.290000px;}
.ya9{bottom:986.010000px;}
.y103{bottom:991.410000px;}
.y15d{bottom:991.590000px;}
.y18a{bottom:991.770000px;}
.yc0{bottom:1000.950000px;}
.y1a0{bottom:1001.130000px;}
.y65{bottom:1001.310000px;}
.y95{bottom:1005.630000px;}
.y113{bottom:1011.030000px;}
.y82{bottom:1012.830000px;}
.ya8{bottom:1014.450000px;}
.y11e{bottom:1019.850000px;}
.y136{bottom:1020.030000px;}
.y189{bottom:1020.210000px;}
.ybf{bottom:1029.390000px;}
.y37{bottom:1029.930000px;}
.y94{bottom:1034.070000px;}
.yf{bottom:1035.330000px;}
.y19f{bottom:1039.110000px;}
.y81{bottom:1041.270000px;}
.ya7{bottom:1042.890000px;}
.y64{bottom:1045.770000px;}
.ydb{bottom:1048.470000px;}
.y188{bottom:1048.650000px;}
.ybe{bottom:1058.010000px;}
.y80{bottom:1069.710000px;}
.ya6{bottom:1071.330000px;}
.yda{bottom:1076.910000px;}
.y187{bottom:1077.090000px;}
.ybd{bottom:1086.450000px;}
.y93{bottom:1096.710000px;}
.y7f{bottom:1098.150000px;}
.ya5{bottom:1099.770000px;}
.y63{bottom:1103.910000px;}
.yd9{bottom:1105.350000px;}
.y7d{bottom:1105.710000px;}
.ybc{bottom:1114.890000px;}
.y1b4{bottom:1121.010000px;}
.yd8{bottom:1133.790000px;}
.y1b2{bottom:1143.180000px;}
.y7e{bottom:1153.440000px;}
.y92{bottom:1160.820000px;}
.y7c{bottom:1161.000000px;}
.ya4{bottom:1162.260000px;}
.y62{bottom:1162.440000px;}
.y1b3{bottom:1176.480000px;}
.y1{bottom:1194.300000px;}
.yd{bottom:1204.920000px;}
.hd{height:18.900000px;}
.h14{height:19.080000px;}
.h12{height:32.220000px;}
.h9{height:32.760000px;}
.ha{height:32.796000px;}
.hf{height:34.020000px;}
.h11{height:34.056000px;}
.h10{height:34.200000px;}
.h17{height:55.825312px;}
.hb{height:57.420000px;}
.h16{height:62.327813px;}
.h2{height:69.086250px;}
.h15{height:75.093750px;}
.h4{height:87.859687px;}
.h19{height:106.225312px;}
.h18{height:113.726250px;}
.h8{height:132.876000px;}
.he{height:138.276000px;}
.h5{height:140.143008px;}
.h3{height:155.190000px;}
.h6{height:162.953438px;}
.h7{height:167.430000px;}
.hc{height:565.095000px;}
.h13{height:586.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:193.710000px;}
.w8{width:193.890000px;}
.w5{width:211.890000px;}
.wd{width:214.770000px;}
.w4{width:308.415000px;}
.we{width:462.345000px;}
.w6{width:466.125000px;}
.wb{width:483.405000px;}
.w9{width:484.125000px;}
.wc{width:678.210000px;}
.w7{width:679.110000px;}
.w3{width:711.150000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.380000px;}
.x2{left:10.800000px;}
.x1{left:170.129987px;}
.x4{left:171.570000px;}
.x12{left:176.969987px;}
.x14{left:182.549987px;}
.xf{left:192.989987px;}
.x16{left:197.129987px;}
.xb{left:199.829987px;}
.x1b{left:202.169987px;}
.x10{left:206.669987px;}
.x13{left:209.009987px;}
.x11{left:217.289987px;}
.xd{left:222.869987px;}
.x17{left:224.129987px;}
.xc{left:242.489987px;}
.x19{left:267.869987px;}
.x3{left:338.834987px;}
.x8{left:356.294987px;}
.x7{left:366.555000px;}
.x6{left:384.555000px;}
.x9{left:387.435000px;}
.x15{left:459.464987px;}
.x1e{left:759.749987px;}
.x1c{left:763.889987px;}
.x1d{left:774.149987px;}
.x18{left:789.629987px;}
.xe{left:798.809987px;}
.xa{left:807.989987px;}
.x1a{left:890.279987px;}
@media print{
.v2{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:39.680000pt;}
.v3{vertical-align:44.800000pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.233067pt;}
.ls17{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:-0.135467pt;}
.ls2{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.088533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.066667pt;}
.lsb{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271467pt;}
.ls9{letter-spacing:1.653760pt;}
.ls16{letter-spacing:2.191360pt;}
.lsc{letter-spacing:12.336640pt;}
.ls7{letter-spacing:12.976640pt;}
.lsa{letter-spacing:16.176640pt;}
.ls11{letter-spacing:30.991360pt;}
.ls14{letter-spacing:310.671360pt;}
.lsd{letter-spacing:940.340480pt;}
.ws2{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.601707pt;}
.ws3{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.wsf{word-spacing:-16.135573pt;}
.ws5{word-spacing:-16.097173pt;}
.ws12{word-spacing:-15.728640pt;}
.ws8{word-spacing:-13.120000pt;}
.ws9{word-spacing:-13.020267pt;}
.wsb{word-spacing:-12.974080pt;}
.ws10{word-spacing:-10.319360pt;}
.ws11{word-spacing:-10.160427pt;}
.ws7{word-spacing:-9.345067pt;}
.wse{word-spacing:-1.397760pt;}
.wsa{word-spacing:-0.757760pt;}
.wsd{word-spacing:-0.076800pt;}
.wsc{word-spacing:-0.011093pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:3.188907pt;}
._1f{margin-left:-4.093440pt;}
._20{margin-left:-2.784000pt;}
._5{margin-left:-1.808640pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.388800pt;}
._2{width:2.360960pt;}
._22{width:3.994667pt;}
._3{width:4.996907pt;}
._21{width:6.593707pt;}
._27{width:7.536640pt;}
._29{width:8.771840pt;}
._26{width:9.715200pt;}
._28{width:10.737920pt;}
._24{width:12.482560pt;}
._25{width:13.702400pt;}
._31{width:15.002453pt;}
._2b{width:16.176640pt;}
._2d{width:17.433600pt;}
._32{width:18.828800pt;}
._38{width:19.836160pt;}
._2e{width:21.137920pt;}
._2f{width:22.416640pt;}
._35{width:25.835947pt;}
._34{width:26.810453pt;}
._33{width:27.797333pt;}
._23{width:29.557760pt;}
._30{width:30.719573pt;}
._2a{width:50.567680pt;}
._1e{width:125.053227pt;}
._2c{width:130.400000pt;}
._36{width:310.543360pt;}
._9{width:723.473067pt;}
._1d{width:751.791360pt;}
._18{width:791.159467pt;}
._37{width:888.970667pt;}
._b{width:1084.787627pt;}
._11{width:1100.353707pt;}
._16{width:1116.584107pt;}
._e{width:1192.294827pt;}
._10{width:1253.669547pt;}
._17{width:1260.184747pt;}
._a{width:1281.259947pt;}
._8{width:1292.659627pt;}
._c{width:1316.170667pt;}
._f{width:1371.812267pt;}
._4{width:1374.618027pt;}
._d{width:1450.417067pt;}
._1c{width:1553.843627pt;}
._15{width:1657.700267pt;}
._13{width:1700.534187pt;}
._1a{width:1737.116587pt;}
._12{width:1832.110507pt;}
._19{width:1838.986667pt;}
._7{width:1904.120747pt;}
._14{width:1913.023147pt;}
._6{width:1957.971200pt;}
._1b{width:1987.314347pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.040000pt;}
.y61{bottom:3.200000pt;}
.y3e{bottom:5.600000pt;}
.ye{bottom:7.040000pt;}
.y2{bottom:8.000000pt;}
.yc{bottom:8.032000pt;}
.y45{bottom:8.960000pt;}
.y18{bottom:9.120000pt;}
.y1a{bottom:9.280000pt;}
.y1c{bottom:9.320000pt;}
.y40{bottom:9.760000pt;}
.y42{bottom:9.920000pt;}
.y1f{bottom:11.680000pt;}
.y6{bottom:17.440000pt;}
.y15{bottom:20.000000pt;}
.y20{bottom:20.160000pt;}
.y3d{bottom:22.400000pt;}
.y1e{bottom:28.640000pt;}
.y14{bottom:36.800000pt;}
.yb{bottom:37.306667pt;}
.y3c{bottom:39.360000pt;}
.y13{bottom:53.760000pt;}
.y3b{bottom:56.160000pt;}
.y5{bottom:57.320000pt;}
.ya{bottom:66.586667pt;}
.y12{bottom:70.560000pt;}
.y3a{bottom:72.960000pt;}
.y11{bottom:87.520000pt;}
.y39{bottom:89.920000pt;}
.y9{bottom:96.026667pt;}
.y5f{bottom:102.560000pt;}
.y10{bottom:104.346667pt;}
.y38{bottom:106.746667pt;}
.y5e{bottom:119.360000pt;}
.y4{bottom:120.520000pt;}
.y7{bottom:124.000000pt;}
.y8{bottom:125.306667pt;}
.y5d{bottom:136.160000pt;}
.y5c{bottom:153.160000pt;}
.y60{bottom:165.626667pt;}
.y35{bottom:168.040000pt;}
.y5b{bottom:169.960000pt;}
.y36{bottom:170.426667pt;}
.ya3{bottom:171.066667pt;}
.yf3{bottom:172.186667pt;}
.y13c{bottom:172.506667pt;}
.y180{bottom:172.826667pt;}
.y15c{bottom:178.426667pt;}
.y34{bottom:184.840000pt;}
.y5a{bottom:186.920000pt;}
.yd7{bottom:193.946667pt;}
.ya2{bottom:196.506667pt;}
.y11d{bottom:197.306667pt;}
.yf2{bottom:197.626667pt;}
.y128{bottom:197.786667pt;}
.y46{bottom:197.946667pt;}
.y182{bottom:198.106667pt;}
.y33{bottom:201.800000pt;}
.y21{bottom:202.586667pt;}
.y59{bottom:203.720000pt;}
.y15b{bottom:203.866667pt;}
.y1b5{bottom:204.346667pt;}
.y7b{bottom:206.906667pt;}
.y112{bottom:208.826667pt;}
.y1b1{bottom:214.746667pt;}
.y32{bottom:218.600000pt;}
.y111{bottom:218.746667pt;}
.yd6{bottom:219.386667pt;}
.y58{bottom:220.520000pt;}
.ya1{bottom:221.786667pt;}
.yf1{bottom:222.906667pt;}
.y127{bottom:223.066667pt;}
.y135{bottom:223.226667pt;}
.y17f{bottom:223.386667pt;}
.y1b0{bottom:231.706667pt;}
.y31{bottom:235.400000pt;}
.y14d{bottom:235.866667pt;}
.y57{bottom:237.480000pt;}
.yd5{bottom:244.666667pt;}
.y178{bottom:245.146667pt;}
.y7a{bottom:246.426667pt;}
.ya0{bottom:247.066667pt;}
.y11c{bottom:247.866667pt;}
.y102{bottom:248.186667pt;}
.y126{bottom:248.346667pt;}
.y134{bottom:248.506667pt;}
.y17e{bottom:248.666667pt;}
.y30{bottom:252.360000pt;}
.y56{bottom:254.280000pt;}
.y15a{bottom:254.426667pt;}
.y14c{bottom:261.146667pt;}
.ybb{bottom:262.746667pt;}
.y1af{bottom:265.466667pt;}
.y2f{bottom:269.160000pt;}
.y101{bottom:269.306667pt;}
.yd4{bottom:269.946667pt;}
.y177{bottom:270.426667pt;}
.y55{bottom:271.240000pt;}
.yf0{bottom:273.466667pt;}
.y125{bottom:273.626667pt;}
.y133{bottom:273.786667pt;}
.y17d{bottom:273.946667pt;}
.y110{bottom:279.226667pt;}
.y159{bottom:279.706667pt;}
.y79{bottom:285.946667pt;}
.y2e{bottom:286.120000pt;}
.y14b{bottom:286.426667pt;}
.y54{bottom:288.040000pt;}
.yba{bottom:288.186667pt;}
.y176{bottom:295.706667pt;}
.y9f{bottom:296.666667pt;}
.y11b{bottom:298.586667pt;}
.yef{bottom:298.746667pt;}
.y17c{bottom:299.226667pt;}
.y10f{bottom:300.826667pt;}
.y2d{bottom:302.920000pt;}
.y53{bottom:304.840000pt;}
.y158{bottom:304.986667pt;}
.y1ae{bottom:307.546667pt;}
.yd3{bottom:312.026667pt;}
.yb9{bottom:313.466667pt;}
.y3{bottom:317.306667pt;}
.y9e{bottom:319.706667pt;}
.y2c{bottom:319.880000pt;}
.y175{bottom:320.986667pt;}
.y52{bottom:321.800000pt;}
.y11a{bottom:323.866667pt;}
.yee{bottom:324.026667pt;}
.y124{bottom:324.346667pt;}
.y132{bottom:324.506667pt;}
.y185{bottom:324.666667pt;}
.y78{bottom:325.466667pt;}
.y157{bottom:330.266667pt;}
.y2b{bottom:336.680000pt;}
.y14a{bottom:336.986667pt;}
.y51{bottom:338.600000pt;}
.yb8{bottom:338.746667pt;}
.y100{bottom:344.986667pt;}
.y119{bottom:349.186667pt;}
.yed{bottom:349.346667pt;}
.y10e{bottom:349.666667pt;}
.y131{bottom:349.826667pt;}
.y184{bottom:349.986667pt;}
.y2a{bottom:353.480000pt;}
.y50{bottom:355.560000pt;}
.y156{bottom:355.586667pt;}
.yb7{bottom:364.066667pt;}
.y77{bottom:365.186667pt;}
.y9d{bottom:365.826667pt;}
.y1ad{bottom:366.626667pt;}
.yff{bottom:370.306667pt;}
.y29{bottom:370.466667pt;}
.y174{bottom:371.746667pt;}
.y4f{bottom:372.386667pt;}
.yec{bottom:374.786667pt;}
.y13b{bottom:375.106667pt;}
.y17b{bottom:375.266667pt;}
.y19b{bottom:375.426667pt;}
.yd2{bottom:377.506667pt;}
.y155{bottom:381.026667pt;}
.y1ac{bottom:383.746667pt;}
.y28{bottom:387.266667pt;}
.y149{bottom:387.746667pt;}
.y4e{bottom:389.186667pt;}
.yb6{bottom:389.346667pt;}
.yfe{bottom:395.586667pt;}
.y173{bottom:397.026667pt;}
.y76{bottom:397.986667pt;}
.yeb{bottom:400.066667pt;}
.y10d{bottom:400.226667pt;}
.y130{bottom:400.386667pt;}
.y17a{bottom:400.546667pt;}
.yd1{bottom:402.786667pt;}
.y27{bottom:404.226667pt;}
.y118{bottom:404.706667pt;}
.y4d{bottom:406.146667pt;}
.y154{bottom:406.306667pt;}
.yb5{bottom:414.626667pt;}
.y26{bottom:421.026667pt;}
.y172{bottom:422.306667pt;}
.y75{bottom:422.786667pt;}
.y4c{bottom:422.946667pt;}
.yea{bottom:425.346667pt;}
.y10c{bottom:425.506667pt;}
.y13a{bottom:425.666667pt;}
.y179{bottom:425.826667pt;}
.y19a{bottom:426.146667pt;}
.yd0{bottom:428.066667pt;}
.y153{bottom:431.586667pt;}
.y1ab{bottom:434.306667pt;}
.y25{bottom:437.826667pt;}
.y148{bottom:438.306667pt;}
.y4b{bottom:439.906667pt;}
.y91{bottom:444.706667pt;}
.yfd{bottom:446.306667pt;}
.y171{bottom:447.586667pt;}
.y74{bottom:447.746667pt;}
.ye9{bottom:450.626667pt;}
.y123{bottom:450.946667pt;}
.y12f{bottom:451.106667pt;}
.y199{bottom:451.426667pt;}
.ycf{bottom:453.346667pt;}
.y24{bottom:454.786667pt;}
.y4a{bottom:456.706667pt;}
.y152{bottom:456.866667pt;}
.y1aa{bottom:459.586667pt;}
.yb4{bottom:465.186667pt;}
.y90{bottom:469.986667pt;}
.y23{bottom:471.586667pt;}
.y73{bottom:472.546667pt;}
.y170{bottom:472.866667pt;}
.y49{bottom:473.666667pt;}
.ye8{bottom:475.906667pt;}
.y10b{bottom:476.226667pt;}
.y12e{bottom:476.386667pt;}
.y198{bottom:476.706667pt;}
.yce{bottom:478.626667pt;}
.y151{bottom:482.146667pt;}
.y22{bottom:488.546667pt;}
.y147{bottom:489.026667pt;}
.y48{bottom:490.466667pt;}
.y8f{bottom:495.266667pt;}
.yfc{bottom:496.866667pt;}
.y16f{bottom:498.146667pt;}
.ye7{bottom:501.186667pt;}
.y13f{bottom:501.506667pt;}
.y12d{bottom:501.666667pt;}
.y186{bottom:501.826667pt;}
.y197{bottom:501.986667pt;}
.ycd{bottom:503.906667pt;}
.y47{bottom:507.266667pt;}
.y167{bottom:507.426667pt;}
.y72{bottom:512.066667pt;}
.y8e{bottom:520.546667pt;}
.yfb{bottom:522.146667pt;}
.y16e{bottom:523.586667pt;}
.y10a{bottom:526.786667pt;}
.y139{bottom:526.946667pt;}
.y181{bottom:527.106667pt;}
.y196{bottom:527.266667pt;}
.ycc{bottom:529.186667pt;}
.yb3{bottom:532.706667pt;}
.y150{bottom:537.666667pt;}
.y146{bottom:539.586667pt;}
.y1a9{bottom:543.906667pt;}
.y71{bottom:545.026667pt;}
.y8d{bottom:545.826667pt;}
.y117{bottom:545.986667pt;}
.y13e{bottom:552.066667pt;}
.y12c{bottom:552.226667pt;}
.y16a{bottom:552.386667pt;}
.y195{bottom:552.546667pt;}
.ycb{bottom:554.466667pt;}
.ye6{bottom:556.706667pt;}
.y166{bottom:557.986667pt;}
.y1a8{bottom:560.866667pt;}
.y145{bottom:564.866667pt;}
.y116{bottom:571.293333pt;}
.yfa{bottom:572.733333pt;}
.y16d{bottom:574.173333pt;}
.y109{bottom:577.533333pt;}
.y169{bottom:577.693333pt;}
.y19e{bottom:577.853333pt;}
.yca{bottom:579.933333pt;}
.y165{bottom:583.293333pt;}
.y70{bottom:584.573333pt;}
.y8c{bottom:596.573333pt;}
.yb2{bottom:598.013333pt;}
.yf9{bottom:598.173333pt;}
.y12b{bottom:602.813333pt;}
.y14f{bottom:602.973333pt;}
.y19d{bottom:603.133333pt;}
.y194{bottom:603.293333pt;}
.yc9{bottom:605.213333pt;}
.y144{bottom:615.613333pt;}
.y6f{bottom:617.373333pt;}
.y1a7{bottom:619.933333pt;}
.y8b{bottom:621.853333pt;}
.ye5{bottom:622.013333pt;}
.yb1{bottom:623.293333pt;}
.yf8{bottom:623.453333pt;}
.y16c{bottom:623.773333pt;}
.y108{bottom:628.093333pt;}
.y138{bottom:628.253333pt;}
.y193{bottom:628.573333pt;}
.yc8{bottom:630.493333pt;}
.y164{bottom:634.013333pt;}
.y1a6{bottom:636.893333pt;}
.y143{bottom:640.893333pt;}
.y6e{bottom:642.173333pt;}
.y16b{bottom:644.733333pt;}
.y8a{bottom:647.133333pt;}
.ye4{bottom:647.293333pt;}
.yb0{bottom:648.733333pt;}
.y13d{bottom:653.373333pt;}
.y12a{bottom:653.533333pt;}
.y192{bottom:653.853333pt;}
.y163{bottom:659.293333pt;}
.y142{bottom:666.173333pt;}
.y6d{bottom:667.133333pt;}
.y115{bottom:672.413333pt;}
.yc7{bottom:672.573333pt;}
.ye3{bottom:672.733333pt;}
.yaf{bottom:674.013333pt;}
.y107{bottom:678.813333pt;}
.y191{bottom:679.133333pt;}
.y162{bottom:684.573333pt;}
.y6c{bottom:690.653333pt;}
.y1a5{bottom:695.933333pt;}
.y89{bottom:697.693333pt;}
.ye2{bottom:698.013333pt;}
.yf7{bottom:699.293333pt;}
.y122{bottom:704.093333pt;}
.y168{bottom:704.253333pt;}
.y190{bottom:704.413333pt;}
.y161{bottom:709.853333pt;}
.y6b{bottom:714.173333pt;}
.y141{bottom:716.733333pt;}
.y9c{bottom:716.893333pt;}
.y1d{bottom:720.253333pt;}
.y88{bottom:723.133333pt;}
.ye1{bottom:723.293333pt;}
.yae{bottom:724.573333pt;}
.y106{bottom:729.373333pt;}
.y14e{bottom:729.533333pt;}
.y18f{bottom:729.693333pt;}
.y44{bottom:734.493333pt;}
.y160{bottom:735.133333pt;}
.y6a{bottom:737.693333pt;}
.yc6{bottom:738.013333pt;}
.y140{bottom:742.013333pt;}
.y9b{bottom:742.173333pt;}
.y1a4{bottom:746.493333pt;}
.y87{bottom:748.413333pt;}
.ye0{bottom:748.573333pt;}
.yad{bottom:749.853333pt;}
.y121{bottom:754.653333pt;}
.y137{bottom:754.813333pt;}
.y18e{bottom:754.973333pt;}
.y15f{bottom:760.413333pt;}
.y69{bottom:761.213333pt;}
.yc5{bottom:763.293333pt;}
.y9a{bottom:767.453333pt;}
.y1a3{bottom:771.773333pt;}
.y86{bottom:773.693333pt;}
.ydf{bottom:773.853333pt;}
.yac{bottom:775.133333pt;}
.yf6{bottom:775.293333pt;}
.y43{bottom:778.493333pt;}
.y105{bottom:779.933333pt;}
.y129{bottom:780.093333pt;}
.y18d{bottom:780.253333pt;}
.y68{bottom:786.173333pt;}
.y1b{bottom:786.653333pt;}
.yc4{bottom:788.573333pt;}
.y99{bottom:792.773333pt;}
.y85{bottom:799.013333pt;}
.yde{bottom:799.173333pt;}
.yab{bottom:800.453333pt;}
.yf5{bottom:800.613333pt;}
.y120{bottom:805.413333pt;}
.y18c{bottom:805.733333pt;}
.y67{bottom:811.013333pt;}
.yc3{bottom:813.893333pt;}
.y15e{bottom:815.973333pt;}
.y98{bottom:818.053333pt;}
.y41{bottom:824.133333pt;}
.y84{bottom:824.293333pt;}
.ydd{bottom:824.453333pt;}
.yf4{bottom:825.893333pt;}
.y104{bottom:830.693333pt;}
.y1a2{bottom:830.853333pt;}
.y18b{bottom:831.013333pt;}
.y19{bottom:831.173333pt;}
.yc2{bottom:839.173333pt;}
.y97{bottom:843.333333pt;}
.y1a1{bottom:847.813333pt;}
.y114{bottom:849.573333pt;}
.y66{bottom:850.533333pt;}
.yaa{bottom:851.173333pt;}
.y11f{bottom:855.973333pt;}
.y183{bottom:856.133333pt;}
.y19c{bottom:856.293333pt;}
.yc1{bottom:864.453333pt;}
.ydc{bottom:866.693333pt;}
.y96{bottom:868.613333pt;}
.y3f{bottom:869.893333pt;}
.y83{bottom:874.853333pt;}
.y17{bottom:875.813333pt;}
.ya9{bottom:876.453333pt;}
.y103{bottom:881.253333pt;}
.y15d{bottom:881.413333pt;}
.y18a{bottom:881.573333pt;}
.yc0{bottom:889.733333pt;}
.y1a0{bottom:889.893333pt;}
.y65{bottom:890.053333pt;}
.y95{bottom:893.893333pt;}
.y113{bottom:898.693333pt;}
.y82{bottom:900.293333pt;}
.ya8{bottom:901.733333pt;}
.y11e{bottom:906.533333pt;}
.y136{bottom:906.693333pt;}
.y189{bottom:906.853333pt;}
.ybf{bottom:915.013333pt;}
.y37{bottom:915.493333pt;}
.y94{bottom:919.173333pt;}
.yf{bottom:920.293333pt;}
.y19f{bottom:923.653333pt;}
.y81{bottom:925.573333pt;}
.ya7{bottom:927.013333pt;}
.y64{bottom:929.573333pt;}
.ydb{bottom:931.973333pt;}
.y188{bottom:932.133333pt;}
.ybe{bottom:940.453333pt;}
.y80{bottom:950.853333pt;}
.ya6{bottom:952.293333pt;}
.yda{bottom:957.253333pt;}
.y187{bottom:957.413333pt;}
.ybd{bottom:965.733333pt;}
.y93{bottom:974.853333pt;}
.y7f{bottom:976.133333pt;}
.ya5{bottom:977.573333pt;}
.y63{bottom:981.253333pt;}
.yd9{bottom:982.533333pt;}
.y7d{bottom:982.853333pt;}
.ybc{bottom:991.013333pt;}
.y1b4{bottom:996.453333pt;}
.yd8{bottom:1007.813333pt;}
.y1b2{bottom:1016.160000pt;}
.y7e{bottom:1025.280000pt;}
.y92{bottom:1031.840000pt;}
.y7c{bottom:1032.000000pt;}
.ya4{bottom:1033.120000pt;}
.y62{bottom:1033.280000pt;}
.y1b3{bottom:1045.760000pt;}
.y1{bottom:1061.600000pt;}
.yd{bottom:1071.040000pt;}
.hd{height:16.800000pt;}
.h14{height:16.960000pt;}
.h12{height:28.640000pt;}
.h9{height:29.120000pt;}
.ha{height:29.152000pt;}
.hf{height:30.240000pt;}
.h11{height:30.272000pt;}
.h10{height:30.400000pt;}
.h17{height:49.622500pt;}
.hb{height:51.040000pt;}
.h16{height:55.402500pt;}
.h2{height:61.410000pt;}
.h15{height:66.750000pt;}
.h4{height:78.097500pt;}
.h19{height:94.422500pt;}
.h18{height:101.090000pt;}
.h8{height:118.112000pt;}
.he{height:122.912000pt;}
.h5{height:124.571562pt;}
.h3{height:137.946667pt;}
.h6{height:144.847500pt;}
.h7{height:148.826667pt;}
.hc{height:502.306667pt;}
.h13{height:521.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:172.186667pt;}
.w8{width:172.346667pt;}
.w5{width:188.346667pt;}
.wd{width:190.906667pt;}
.w4{width:274.146667pt;}
.we{width:410.973333pt;}
.w6{width:414.333333pt;}
.wb{width:429.693333pt;}
.w9{width:430.333333pt;}
.wc{width:602.853333pt;}
.w7{width:603.653333pt;}
.w3{width:632.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.560000pt;}
.x2{left:9.600000pt;}
.x1{left:151.226655pt;}
.x4{left:152.506667pt;}
.x12{left:157.306655pt;}
.x14{left:162.266655pt;}
.xf{left:171.546655pt;}
.x16{left:175.226655pt;}
.xb{left:177.626655pt;}
.x1b{left:179.706655pt;}
.x10{left:183.706655pt;}
.x13{left:185.786655pt;}
.x11{left:193.146655pt;}
.xd{left:198.106655pt;}
.x17{left:199.226655pt;}
.xc{left:215.546655pt;}
.x19{left:238.106655pt;}
.x3{left:301.186655pt;}
.x8{left:316.706655pt;}
.x7{left:325.826667pt;}
.x6{left:341.826667pt;}
.x9{left:344.386667pt;}
.x15{left:408.413322pt;}
.x1e{left:675.333322pt;}
.x1c{left:679.013322pt;}
.x1d{left:688.133322pt;}
.x18{left:701.893322pt;}
.xe{left:710.053322pt;}
.xa{left:718.213322pt;}
.x1a{left:791.359988pt;}
}




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