
    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_34b8fdf428b787673a2add5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6809e20b3fc9d3c937efb4dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_84c9b68be14757a67a562fc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_516276c1f565fc17ca4d7f40.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_673e485db94cebdacd3e3aff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v7{vertical-align:-65.520000px;}
.va{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v8{vertical-align:-60.480000px;}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-4.502400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.v9{vertical-align:62.640000px;}
.ls22{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.369600px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.738000px;}
.ls1a{letter-spacing:0.900000px;}
.ls20{letter-spacing:2.988000px;}
.ls7{letter-spacing:3.060000px;}
.ls1c{letter-spacing:4.500000px;}
.ls6{letter-spacing:20.340000px;}
.ls1f{letter-spacing:30.348000px;}
.ls8{letter-spacing:52.560000px;}
.ls12{letter-spacing:53.460000px;}
.lsa{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls4{letter-spacing:473.100000px;}
.ls13{letter-spacing:525.900000px;}
.ls19{letter-spacing:941.700000px;}
.ls1d{letter-spacing:1027.500000px;}
.ls9{letter-spacing:1367.340000px;}
.ls1e{letter-spacing:1412.700000px;}
.ls17{letter-spacing:1449.540000px;}
.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;}
}
.ws7{word-spacing:-20.690400px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.822200px;}
.ws6{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.ws3{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._1f{margin-left:-13.566480px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._8{width:2.586000px;}
._9{width:3.804000px;}
._e{width:4.984080px;}
._11{width:6.121920px;}
._d{width:7.254000px;}
._c{width:8.532000px;}
._b{width:9.936000px;}
._a{width:11.124000px;}
._f{width:12.456000px;}
._12{width:14.639760px;}
._10{width:16.242000px;}
._4{width:18.792000px;}
._5{width:19.848000px;}
._6{width:21.070800px;}
._7{width:22.079520px;}
._1e{width:62.586000px;}
._1b{width:94.860000px;}
._1c{width:98.910000px;}
._1a{width:121.860000px;}
._15{width:131.712000px;}
._18{width:133.500000px;}
._1d{width:199.440000px;}
._13{width:378.318000px;}
._19{width:762.851520px;}
._14{width:792.396000px;}
._17{width:904.692000px;}
._16{width:1017.420000px;}
._3{width:3030.660000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:3.300000px;}
.y54{bottom:3.600000px;}
.y59{bottom:3.750000px;}
.ycc{bottom:4.800000px;}
.yd1{bottom:4.950000px;}
.y91{bottom:7.050000px;}
.y95{bottom:7.200000px;}
.y93{bottom:7.350000px;}
.yf8{bottom:7.800000px;}
.yee{bottom:7.950000px;}
.yf0{bottom:8.100000px;}
.yae{bottom:8.850000px;}
.yba{bottom:9.150000px;}
.ybe{bottom:9.165000px;}
.yc2{bottom:11.145000px;}
.y90{bottom:15.300000px;}
.yca{bottom:15.750000px;}
.y8e{bottom:18.150000px;}
.yc0{bottom:18.885000px;}
.y9a{bottom:19.050000px;}
.y97{bottom:19.200000px;}
.yb0{bottom:20.100000px;}
.ye9{bottom:20.250000px;}
.yab{bottom:21.750000px;}
.yb2{bottom:22.350000px;}
.y8c{bottom:22.650000px;}
.yb8{bottom:22.800000px;}
.yb4{bottom:22.950000px;}
.yc8{bottom:23.400000px;}
.yd4{bottom:24.300000px;}
.yc4{bottom:26.325000px;}
.yc1{bottom:26.625000px;}
.y4d{bottom:27.450000px;}
.yad{bottom:28.200000px;}
.y8a{bottom:30.450000px;}
.yc9{bottom:31.200000px;}
.y10a{bottom:35.265000px;}
.yd9{bottom:35.850000px;}
.ya9{bottom:36.000000px;}
.y8b{bottom:38.100000px;}
.ydb{bottom:43.650000px;}
.yac{bottom:43.800000px;}
.y8f{bottom:46.050000px;}
.ye5{bottom:48.150000px;}
.y6e{bottom:49.965000px;}
.yd8{bottom:51.300000px;}
.ycf{bottom:53.250000px;}
.y40{bottom:54.150000px;}
.ye3{bottom:55.800000px;}
.y3{bottom:57.960000px;}
.y117{bottom:58.980000px;}
.yf5{bottom:59.100000px;}
.yec{bottom:59.250000px;}
.y116{bottom:61.770000px;}
.yce{bottom:63.000000px;}
.y87{bottom:63.195000px;}
.ye4{bottom:63.600000px;}
.yf3{bottom:66.900000px;}
.ye7{bottom:67.050000px;}
.yc3{bottom:67.140000px;}
.yf6{bottom:74.550000px;}
.yeb{bottom:74.700000px;}
.y1{bottom:76.890000px;}
.y115{bottom:77.280000px;}
.y86{bottom:78.705000px;}
.y109{bottom:79.530000px;}
.ybf{bottom:80.145000px;}
.y141{bottom:88.275000px;}
.yea{bottom:90.300000px;}
.y51{bottom:92.700000px;}
.y114{bottom:92.940000px;}
.y85{bottom:94.365000px;}
.y108{bottom:95.190000px;}
.y3e{bottom:99.930600px;}
.y4f{bottom:100.350000px;}
.y142{bottom:100.426500px;}
.y50{bottom:108.300000px;}
.y113{bottom:108.600000px;}
.y84{bottom:110.025000px;}
.y107{bottom:110.670000px;}
.y58{bottom:112.200000px;}
.y6d{bottom:112.875000px;}
.y3d{bottom:115.590600px;}
.y112{bottom:124.080000px;}
.y83{bottom:125.505000px;}
.y106{bottom:126.150000px;}
.ybd{bottom:127.665000px;}
.y56{bottom:127.800000px;}
.y6c{bottom:128.715000px;}
.y3c{bottom:131.250600px;}
.y111{bottom:139.560000px;}
.y82{bottom:141.165000px;}
.y105{bottom:141.810000px;}
.y57{bottom:143.250000px;}
.y2{bottom:143.310000px;}
.y6b{bottom:144.375000px;}
.y3b{bottom:146.730600px;}
.y110{bottom:155.220000px;}
.ybc{bottom:155.700000px;}
.y81{bottom:156.645000px;}
.y104{bottom:157.290000px;}
.y6a{bottom:159.855000px;}
.y3a{bottom:162.390600px;}
.y10f{bottom:167.460000px;}
.y80{bottom:172.125000px;}
.y103{bottom:172.770000px;}
.y69{bottom:175.335000px;}
.y39{bottom:177.870600px;}
.ybb{bottom:183.900000px;}
.y7f{bottom:187.605000px;}
.y102{bottom:188.250000px;}
.y68{bottom:190.995000px;}
.y38{bottom:193.350600px;}
.y7e{bottom:203.265000px;}
.y101{bottom:203.910000px;}
.y67{bottom:206.115000px;}
.y37{bottom:209.010600px;}
.yb9{bottom:211.950000px;}
.y7d{bottom:218.745000px;}
.y100{bottom:219.390000px;}
.y66{bottom:222.135000px;}
.y36{bottom:224.490600px;}
.y7c{bottom:234.225000px;}
.yff{bottom:235.050000px;}
.y65{bottom:237.615000px;}
.y35{bottom:239.970600px;}
.yb7{bottom:240.000000px;}
.y7b{bottom:249.705000px;}
.yfe{bottom:250.530000px;}
.y64{bottom:253.275000px;}
.y34{bottom:255.450600px;}
.y7a{bottom:265.365000px;}
.yfd{bottom:266.010000px;}
.y63{bottom:268.755000px;}
.y33{bottom:271.110600px;}
.yfc{bottom:281.670000px;}
.y62{bottom:284.235000px;}
.y32{bottom:286.590600px;}
.yb6{bottom:295.500000px;}
.y79{bottom:296.145000px;}
.yfb{bottom:297.150000px;}
.y31{bottom:302.070600px;}
.yf2{bottom:310.350000px;}
.y78{bottom:311.625000px;}
.y61{bottom:315.015000px;}
.y30{bottom:317.550600px;}
.y77{bottom:327.285000px;}
.y60{bottom:331.035000px;}
.y2f{bottom:333.210600px;}
.yfa{bottom:336.000000px;}
.y5f{bottom:346.560000px;}
.y2e{bottom:348.735600px;}
.yb5{bottom:351.150000px;}
.y76{bottom:358.830000px;}
.yf9{bottom:361.500000px;}
.y5e{bottom:362.040000px;}
.y2d{bottom:364.215600px;}
.y75{bottom:374.310000px;}
.y5d{bottom:377.700000px;}
.y2c{bottom:379.695600px;}
.yf7{bottom:387.150000px;}
.y74{bottom:389.970000px;}
.y5c{bottom:393.180000px;}
.y2b{bottom:395.355600px;}
.y73{bottom:405.450000px;}
.yb3{bottom:406.650000px;}
.y5b{bottom:408.840000px;}
.y2a{bottom:410.835600px;}
.yf4{bottom:412.650000px;}
.y29{bottom:426.315600px;}
.y72{bottom:436.410000px;}
.ye6{bottom:438.150000px;}
.y71{bottom:451.890000px;}
.yef{bottom:454.350000px;}
.y5a{bottom:455.100000px;}
.y28{bottom:457.095600px;}
.yb1{bottom:462.300000px;}
.y70{bottom:467.910000px;}
.y55{bottom:468.450000px;}
.y6f{bottom:480.150000px;}
.y27{bottom:488.235600px;}
.y140{bottom:497.925000px;}
.yed{bottom:505.650000px;}
.y26{bottom:506.415600px;}
.y13f{bottom:513.585000px;}
.yaf{bottom:516.900000px;}
.y13e{bottom:529.245000px;}
.ye8{bottom:531.300000px;}
.y25{bottom:535.395600px;}
.y13d{bottom:544.725000px;}
.y24{bottom:553.575600px;}
.y13c{bottom:560.385000px;}
.ya8{bottom:566.850000px;}
.y23{bottom:569.055600px;}
.y13b{bottom:576.045000px;}
.ye2{bottom:581.850000px;}
.y22{bottom:584.715600px;}
.y13a{bottom:591.525000px;}
.yaa{bottom:595.050000px;}
.y21{bottom:600.195600px;}
.y139{bottom:607.215000px;}
.y20{bottom:615.705600px;}
.y138{bottom:622.695000px;}
.y1f{bottom:631.185600px;}
.y137{bottom:638.355000px;}
.y1e{bottom:646.845600px;}
.y136{bottom:654.015000px;}
.y1d{bottom:668.985600px;}
.y135{bottom:669.495000px;}
.y10e{bottom:671.160000px;}
.ya7{bottom:683.520000px;}
.y134{bottom:685.155000px;}
.y10d{bottom:689.340000px;}
.y1c{bottom:695.805600px;}
.ya6{bottom:699.900000px;}
.y133{bottom:700.815000px;}
.y1b{bottom:711.285600px;}
.ya4{bottom:715.650000px;}
.y132{bottom:716.295000px;}
.y10c{bottom:720.480000px;}
.ye1{bottom:722.850000px;}
.y1a{bottom:726.945600px;}
.y131{bottom:731.955000px;}
.y10b{bottom:732.900000px;}
.y4e{bottom:733.650000px;}
.ya5{bottom:734.700000px;}
.y130{bottom:747.615000px;}
.ye0{bottom:753.810000px;}
.y19{bottom:761.505600px;}
.y12f{bottom:763.095000px;}
.ya2{bottom:763.500000px;}
.ya3{bottom:770.850000px;}
.y12e{bottom:778.755000px;}
.y18{bottom:782.925600px;}
.ydf{bottom:784.950000px;}
.ya0{bottom:787.950000px;}
.y12d{bottom:794.415000px;}
.ya1{bottom:795.300000px;}
.yd7{bottom:797.850000px;}
.y12c{bottom:809.895000px;}
.y17{bottom:811.725600px;}
.y9e{bottom:812.250000px;}
.yde{bottom:817.200000px;}
.y53{bottom:818.520000px;}
.y9f{bottom:819.600000px;}
.y15{bottom:821.295600px;}
.y12b{bottom:825.555000px;}
.y16{bottom:833.145600px;}
.y52{bottom:834.000000px;}
.ydd{bottom:836.550000px;}
.y9c{bottom:836.700000px;}
.y12a{bottom:841.215000px;}
.y13{bottom:842.685600px;}
.y9d{bottom:843.900000px;}
.ydc{bottom:855.900000px;}
.y129{bottom:856.695000px;}
.y12{bottom:859.470600px;}
.y9b{bottom:861.000000px;}
.y11{bottom:864.285000px;}
.y128{bottom:872.400000px;}
.yda{bottom:875.250000px;}
.y127{bottom:888.060000px;}
.y10{bottom:893.310000px;}
.ycd{bottom:894.600000px;}
.y126{bottom:903.540000px;}
.y99{bottom:909.150000px;}
.yd6{bottom:913.950000px;}
.y125{bottom:919.200000px;}
.yf{bottom:932.370000px;}
.yd5{bottom:933.300000px;}
.y4c{bottom:944.400000px;}
.y14{bottom:947.370600px;}
.y124{bottom:950.340000px;}
.yd3{bottom:952.650000px;}
.ye{bottom:956.670000px;}
.y98{bottom:957.000000px;}
.y123{bottom:966.000000px;}
.yd2{bottom:972.000000px;}
.y122{bottom:981.300000px;}
.y96{bottom:981.450000px;}
.yd0{bottom:991.350000px;}
.ycb{bottom:1010.700000px;}
.y121{bottom:1012.800000px;}
.y4b{bottom:1012.860000px;}
.yd{bottom:1016.070000px;}
.y120{bottom:1028.280000px;}
.y4a{bottom:1028.520000px;}
.y94{bottom:1029.600000px;}
.yc7{bottom:1030.050000px;}
.ya{bottom:1034.070000px;}
.yc{bottom:1039.290000px;}
.y11f{bottom:1043.760000px;}
.y49{bottom:1044.000000px;}
.y92{bottom:1053.900000px;}
.y9{bottom:1057.290000px;}
.y11e{bottom:1059.420000px;}
.y48{bottom:1059.480000px;}
.yb{bottom:1071.330000px;}
.y11d{bottom:1074.900000px;}
.y47{bottom:1074.960000px;}
.y89{bottom:1078.200000px;}
.y8{bottom:1086.630000px;}
.y11c{bottom:1090.380000px;}
.y46{bottom:1090.620000px;}
.y8d{bottom:1102.650000px;}
.y7{bottom:1105.710000px;}
.y11b{bottom:1105.860000px;}
.y45{bottom:1106.100000px;}
.yc6{bottom:1106.280000px;}
.y11a{bottom:1121.520000px;}
.y44{bottom:1121.760000px;}
.y6{bottom:1122.990000px;}
.y119{bottom:1136.820000px;}
.y43{bottom:1136.880000px;}
.yc5{bottom:1137.240000px;}
.y5{bottom:1140.300000px;}
.y118{bottom:1152.330000px;}
.y42{bottom:1152.390000px;}
.y4{bottom:1158.300000px;}
.y41{bottom:1168.050000px;}
.y88{bottom:1168.350000px;}
.y3f{bottom:1193.700000px;}
.h39{height:15.480000px;}
.h30{height:18.540000px;}
.h2d{height:18.720000px;}
.h33{height:18.735000px;}
.h1d{height:23.580000px;}
.h1c{height:23.760000px;}
.h38{height:24.660000px;}
.h3b{height:24.690000px;}
.h3c{height:24.720000px;}
.h37{height:24.840000px;}
.h29{height:27.210000px;}
.h2a{height:27.345000px;}
.h22{height:27.360000px;}
.hb{height:35.314453px;}
.h17{height:36.834961px;}
.h10{height:38.158594px;}
.h1b{height:46.110000px;}
.h2b{height:46.785000px;}
.h1e{height:47.160000px;}
.h11{height:47.344922px;}
.h1f{height:47.370000px;}
.h6{height:48.616875px;}
.h23{height:49.320000px;}
.h36{height:49.680000px;}
.hc{height:52.971680px;}
.h12{height:52.998047px;}
.h21{height:53.355000px;}
.h24{height:53.640000px;}
.he{height:54.421875px;}
.h28{height:54.720000px;}
.h26{height:54.750000px;}
.h27{height:54.780000px;}
.h25{height:54.900000px;}
.h3e{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h2c{height:56.520000px;}
.h31{height:57.420000px;}
.h8{height:58.621992px;}
.hd{height:59.074453px;}
.h3d{height:59.092031px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h14{height:64.260000px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h1a{height:70.590000px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h20{height:81.570000px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h19{height:88.650938px;}
.h32{height:95.955000px;}
.h2f{height:115.380000px;}
.h16{height:115.638047px;}
.h34{height:121.350000px;}
.h3a{height:127.110000px;}
.h2e{height:134.820000px;}
.h35{height:142.740000px;}
.h15{height:210.150000px;}
.h18{height:264.450000px;}
.h0{height:1263.000000px;}
.wa{width:55.815000px;}
.wf{width:62.820000px;}
.we{width:64.650000px;}
.w12{width:64.995000px;}
.wb{width:73.620000px;}
.w10{width:73.980000px;}
.w13{width:85.485000px;}
.w18{width:94.860000px;}
.w19{width:95.070000px;}
.w17{width:95.940000px;}
.w1c{width:96.300000px;}
.w25{width:98.490000px;}
.w29{width:98.850000px;}
.w14{width:104.430000px;}
.w1a{width:104.790000px;}
.wc{width:108.570000px;}
.w11{width:108.930000px;}
.w1{width:117.750000px;}
.w2{width:119.190000px;}
.w3{width:119.340000px;}
.w6{width:119.550000px;}
.w7{width:119.700000px;}
.w24{width:121.125000px;}
.wd{width:126.180000px;}
.w1d{width:132.465000px;}
.w15{width:132.870000px;}
.w1b{width:133.230000px;}
.w1e{width:133.950000px;}
.w1f{width:134.130000px;}
.w21{width:134.310000px;}
.w22{width:134.490000px;}
.w26{width:140.970000px;}
.w4{width:141.690000px;}
.w8{width:142.050000px;}
.w28{width:142.200000px;}
.w20{width:146.520000px;}
.w23{width:146.880000px;}
.w27{width:160.800000px;}
.w16{width:190.350000px;}
.w5{width:256.950000px;}
.w9{width:257.250000px;}
.w0{width:894.000000px;}
.xf{left:-257.325000px;}
.x10{left:-174.120000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x45{left:10.950000px;}
.x37{left:18.150000px;}
.x44{left:21.000000px;}
.x42{left:24.645000px;}
.x21{left:27.900000px;}
.x4{left:29.850000px;}
.x1c{left:36.900000px;}
.x40{left:39.195000px;}
.x3a{left:41.400000px;}
.x3f{left:42.750000px;}
.x47{left:44.850000px;}
.x12{left:46.860000px;}
.x34{left:48.165000px;}
.x38{left:49.350000px;}
.x14{left:50.550000px;}
.x4a{left:54.300000px;}
.xa{left:56.820000px;}
.x4b{left:59.250000px;}
.xc{left:67.200000px;}
.x50{left:69.915000px;}
.x18{left:73.980000px;}
.x3d{left:77.445000px;}
.x3e{left:89.700000px;}
.x4e{left:98.865000px;}
.x53{left:101.649000px;}
.x36{left:111.105000px;}
.x41{left:119.745000px;}
.x2d{left:147.285000px;}
.x11{left:164.850000px;}
.x1a{left:192.600000px;}
.x2e{left:233.550000px;}
.x26{left:237.450000px;}
.x43{left:241.650000px;}
.x7{left:244.170000px;}
.x25{left:246.465000px;}
.x5{left:270.300000px;}
.x17{left:273.900000px;}
.x6{left:290.610000px;}
.x27{left:294.000000px;}
.x2c{left:301.800000px;}
.x1b{left:312.600000px;}
.x1f{left:320.250000px;}
.x2f{left:338.700000px;}
.x46{left:340.800000px;}
.x15{left:355.665000px;}
.x24{left:358.920000px;}
.x28{left:368.400000px;}
.x39{left:379.050000px;}
.x52{left:403.365000px;}
.x35{left:411.450000px;}
.x13{left:412.485000px;}
.xb{left:416.610000px;}
.x4c{left:424.605000px;}
.x1d{left:432.600000px;}
.x51{left:435.450000px;}
.x1{left:440.700000px;}
.x20{left:445.740000px;}
.x16{left:449.100000px;}
.x22{left:455.700000px;}
.x3{left:465.450000px;}
.x30{left:471.900000px;}
.x29{left:477.300000px;}
.x8{left:478.965000px;}
.x48{left:482.550000px;}
.xd{left:486.660000px;}
.x33{left:494.250000px;}
.x9{left:506.580000px;}
.x3b{left:513.900000px;}
.x2b{left:540.600000px;}
.xe{left:558.165000px;}
.x32{left:567.150000px;}
.x1e{left:575.250000px;}
.x2a{left:604.200000px;}
.x49{left:644.250000px;}
.x3c{left:648.750000px;}
.x31{left:662.850000px;}
.x4d{left:695.865000px;}
.x4f{left:735.225000px;}
.x23{left:793.365000px;}
.x2{left:1158.750000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v7{vertical-align:-58.240000pt;}
.va{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v8{vertical-align:-53.760000pt;}
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-4.002133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.v9{vertical-align:55.680000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.328533pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls20{letter-spacing:2.656000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls6{letter-spacing:18.080000pt;}
.ls1f{letter-spacing:26.976000pt;}
.ls8{letter-spacing:46.720000pt;}
.ls12{letter-spacing:47.520000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls4{letter-spacing:420.533333pt;}
.ls13{letter-spacing:467.466667pt;}
.ls19{letter-spacing:837.066667pt;}
.ls1d{letter-spacing:913.333333pt;}
.ls9{letter-spacing:1215.413333pt;}
.ls1e{letter-spacing:1255.733333pt;}
.ls17{letter-spacing:1288.480000pt;}
.ws7{word-spacing:-18.391467pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.953067pt;}
.ws6{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.ws3{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._1f{margin-left:-12.059093pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._8{width:2.298667pt;}
._9{width:3.381333pt;}
._e{width:4.430293pt;}
._11{width:5.441707pt;}
._d{width:6.448000pt;}
._c{width:7.584000pt;}
._b{width:8.832000pt;}
._a{width:9.888000pt;}
._f{width:11.072000pt;}
._12{width:13.013120pt;}
._10{width:14.437333pt;}
._4{width:16.704000pt;}
._5{width:17.642667pt;}
._6{width:18.729600pt;}
._7{width:19.626240pt;}
._1e{width:55.632000pt;}
._1b{width:84.320000pt;}
._1c{width:87.920000pt;}
._1a{width:108.320000pt;}
._15{width:117.077333pt;}
._18{width:118.666667pt;}
._1d{width:177.280000pt;}
._13{width:336.282667pt;}
._19{width:678.090240pt;}
._14{width:704.352000pt;}
._17{width:804.170667pt;}
._16{width:904.373333pt;}
._3{width:2693.920000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:2.933333pt;}
.y54{bottom:3.200000pt;}
.y59{bottom:3.333333pt;}
.ycc{bottom:4.266667pt;}
.yd1{bottom:4.400000pt;}
.y91{bottom:6.266667pt;}
.y95{bottom:6.400000pt;}
.y93{bottom:6.533333pt;}
.yf8{bottom:6.933333pt;}
.yee{bottom:7.066667pt;}
.yf0{bottom:7.200000pt;}
.yae{bottom:7.866667pt;}
.yba{bottom:8.133333pt;}
.ybe{bottom:8.146667pt;}
.yc2{bottom:9.906667pt;}
.y90{bottom:13.600000pt;}
.yca{bottom:14.000000pt;}
.y8e{bottom:16.133333pt;}
.yc0{bottom:16.786667pt;}
.y9a{bottom:16.933333pt;}
.y97{bottom:17.066667pt;}
.yb0{bottom:17.866667pt;}
.ye9{bottom:18.000000pt;}
.yab{bottom:19.333333pt;}
.yb2{bottom:19.866667pt;}
.y8c{bottom:20.133333pt;}
.yb8{bottom:20.266667pt;}
.yb4{bottom:20.400000pt;}
.yc8{bottom:20.800000pt;}
.yd4{bottom:21.600000pt;}
.yc4{bottom:23.400000pt;}
.yc1{bottom:23.666667pt;}
.y4d{bottom:24.400000pt;}
.yad{bottom:25.066667pt;}
.y8a{bottom:27.066667pt;}
.yc9{bottom:27.733333pt;}
.y10a{bottom:31.346667pt;}
.yd9{bottom:31.866667pt;}
.ya9{bottom:32.000000pt;}
.y8b{bottom:33.866667pt;}
.ydb{bottom:38.800000pt;}
.yac{bottom:38.933333pt;}
.y8f{bottom:40.933333pt;}
.ye5{bottom:42.800000pt;}
.y6e{bottom:44.413333pt;}
.yd8{bottom:45.600000pt;}
.ycf{bottom:47.333333pt;}
.y40{bottom:48.133333pt;}
.ye3{bottom:49.600000pt;}
.y3{bottom:51.520000pt;}
.y117{bottom:52.426667pt;}
.yf5{bottom:52.533333pt;}
.yec{bottom:52.666667pt;}
.y116{bottom:54.906667pt;}
.yce{bottom:56.000000pt;}
.y87{bottom:56.173333pt;}
.ye4{bottom:56.533333pt;}
.yf3{bottom:59.466667pt;}
.ye7{bottom:59.600000pt;}
.yc3{bottom:59.680000pt;}
.yf6{bottom:66.266667pt;}
.yeb{bottom:66.400000pt;}
.y1{bottom:68.346667pt;}
.y115{bottom:68.693333pt;}
.y86{bottom:69.960000pt;}
.y109{bottom:70.693333pt;}
.ybf{bottom:71.240000pt;}
.y141{bottom:78.466667pt;}
.yea{bottom:80.266667pt;}
.y51{bottom:82.400000pt;}
.y114{bottom:82.613333pt;}
.y85{bottom:83.880000pt;}
.y108{bottom:84.613333pt;}
.y3e{bottom:88.827200pt;}
.y4f{bottom:89.200000pt;}
.y142{bottom:89.268000pt;}
.y50{bottom:96.266667pt;}
.y113{bottom:96.533333pt;}
.y84{bottom:97.800000pt;}
.y107{bottom:98.373333pt;}
.y58{bottom:99.733333pt;}
.y6d{bottom:100.333333pt;}
.y3d{bottom:102.747200pt;}
.y112{bottom:110.293333pt;}
.y83{bottom:111.560000pt;}
.y106{bottom:112.133333pt;}
.ybd{bottom:113.480000pt;}
.y56{bottom:113.600000pt;}
.y6c{bottom:114.413333pt;}
.y3c{bottom:116.667200pt;}
.y111{bottom:124.053333pt;}
.y82{bottom:125.480000pt;}
.y105{bottom:126.053333pt;}
.y57{bottom:127.333333pt;}
.y2{bottom:127.386667pt;}
.y6b{bottom:128.333333pt;}
.y3b{bottom:130.427200pt;}
.y110{bottom:137.973333pt;}
.ybc{bottom:138.400000pt;}
.y81{bottom:139.240000pt;}
.y104{bottom:139.813333pt;}
.y6a{bottom:142.093333pt;}
.y3a{bottom:144.347200pt;}
.y10f{bottom:148.853333pt;}
.y80{bottom:153.000000pt;}
.y103{bottom:153.573333pt;}
.y69{bottom:155.853333pt;}
.y39{bottom:158.107200pt;}
.ybb{bottom:163.466667pt;}
.y7f{bottom:166.760000pt;}
.y102{bottom:167.333333pt;}
.y68{bottom:169.773333pt;}
.y38{bottom:171.867200pt;}
.y7e{bottom:180.680000pt;}
.y101{bottom:181.253333pt;}
.y67{bottom:183.213333pt;}
.y37{bottom:185.787200pt;}
.yb9{bottom:188.400000pt;}
.y7d{bottom:194.440000pt;}
.y100{bottom:195.013333pt;}
.y66{bottom:197.453333pt;}
.y36{bottom:199.547200pt;}
.y7c{bottom:208.200000pt;}
.yff{bottom:208.933333pt;}
.y65{bottom:211.213333pt;}
.y35{bottom:213.307200pt;}
.yb7{bottom:213.333333pt;}
.y7b{bottom:221.960000pt;}
.yfe{bottom:222.693333pt;}
.y64{bottom:225.133333pt;}
.y34{bottom:227.067200pt;}
.y7a{bottom:235.880000pt;}
.yfd{bottom:236.453333pt;}
.y63{bottom:238.893333pt;}
.y33{bottom:240.987200pt;}
.yfc{bottom:250.373333pt;}
.y62{bottom:252.653333pt;}
.y32{bottom:254.747200pt;}
.yb6{bottom:262.666667pt;}
.y79{bottom:263.240000pt;}
.yfb{bottom:264.133333pt;}
.y31{bottom:268.507200pt;}
.yf2{bottom:275.866667pt;}
.y78{bottom:277.000000pt;}
.y61{bottom:280.013333pt;}
.y30{bottom:282.267200pt;}
.y77{bottom:290.920000pt;}
.y60{bottom:294.253333pt;}
.y2f{bottom:296.187200pt;}
.yfa{bottom:298.666667pt;}
.y5f{bottom:308.053333pt;}
.y2e{bottom:309.987200pt;}
.yb5{bottom:312.133333pt;}
.y76{bottom:318.960000pt;}
.yf9{bottom:321.333333pt;}
.y5e{bottom:321.813333pt;}
.y2d{bottom:323.747200pt;}
.y75{bottom:332.720000pt;}
.y5d{bottom:335.733333pt;}
.y2c{bottom:337.507200pt;}
.yf7{bottom:344.133333pt;}
.y74{bottom:346.640000pt;}
.y5c{bottom:349.493333pt;}
.y2b{bottom:351.427200pt;}
.y73{bottom:360.400000pt;}
.yb3{bottom:361.466667pt;}
.y5b{bottom:363.413333pt;}
.y2a{bottom:365.187200pt;}
.yf4{bottom:366.800000pt;}
.y29{bottom:378.947200pt;}
.y72{bottom:387.920000pt;}
.ye6{bottom:389.466667pt;}
.y71{bottom:401.680000pt;}
.yef{bottom:403.866667pt;}
.y5a{bottom:404.533333pt;}
.y28{bottom:406.307200pt;}
.yb1{bottom:410.933333pt;}
.y70{bottom:415.920000pt;}
.y55{bottom:416.400000pt;}
.y6f{bottom:426.800000pt;}
.y27{bottom:433.987200pt;}
.y140{bottom:442.600000pt;}
.yed{bottom:449.466667pt;}
.y26{bottom:450.147200pt;}
.y13f{bottom:456.520000pt;}
.yaf{bottom:459.466667pt;}
.y13e{bottom:470.440000pt;}
.ye8{bottom:472.266667pt;}
.y25{bottom:475.907200pt;}
.y13d{bottom:484.200000pt;}
.y24{bottom:492.067200pt;}
.y13c{bottom:498.120000pt;}
.ya8{bottom:503.866667pt;}
.y23{bottom:505.827200pt;}
.y13b{bottom:512.040000pt;}
.ye2{bottom:517.200000pt;}
.y22{bottom:519.747200pt;}
.y13a{bottom:525.800000pt;}
.yaa{bottom:528.933333pt;}
.y21{bottom:533.507200pt;}
.y139{bottom:539.746667pt;}
.y20{bottom:547.293867pt;}
.y138{bottom:553.506667pt;}
.y1f{bottom:561.053867pt;}
.y137{bottom:567.426667pt;}
.y1e{bottom:574.973867pt;}
.y136{bottom:581.346667pt;}
.y1d{bottom:594.653867pt;}
.y135{bottom:595.106667pt;}
.y10e{bottom:596.586667pt;}
.ya7{bottom:607.573333pt;}
.y134{bottom:609.026667pt;}
.y10d{bottom:612.746667pt;}
.y1c{bottom:618.493867pt;}
.ya6{bottom:622.133333pt;}
.y133{bottom:622.946667pt;}
.y1b{bottom:632.253867pt;}
.ya4{bottom:636.133333pt;}
.y132{bottom:636.706667pt;}
.y10c{bottom:640.426667pt;}
.ye1{bottom:642.533333pt;}
.y1a{bottom:646.173867pt;}
.y131{bottom:650.626667pt;}
.y10b{bottom:651.466667pt;}
.y4e{bottom:652.133333pt;}
.ya5{bottom:653.066667pt;}
.y130{bottom:664.546667pt;}
.ye0{bottom:670.053333pt;}
.y19{bottom:676.893867pt;}
.y12f{bottom:678.306667pt;}
.ya2{bottom:678.666667pt;}
.ya3{bottom:685.200000pt;}
.y12e{bottom:692.226667pt;}
.y18{bottom:695.933867pt;}
.ydf{bottom:697.733333pt;}
.ya0{bottom:700.400000pt;}
.y12d{bottom:706.146667pt;}
.ya1{bottom:706.933333pt;}
.yd7{bottom:709.200000pt;}
.y12c{bottom:719.906667pt;}
.y17{bottom:721.533867pt;}
.y9e{bottom:722.000000pt;}
.yde{bottom:726.400000pt;}
.y53{bottom:727.573333pt;}
.y9f{bottom:728.533333pt;}
.y15{bottom:730.040533pt;}
.y12b{bottom:733.826667pt;}
.y16{bottom:740.573867pt;}
.y52{bottom:741.333333pt;}
.ydd{bottom:743.600000pt;}
.y9c{bottom:743.733333pt;}
.y12a{bottom:747.746667pt;}
.y13{bottom:749.053867pt;}
.y9d{bottom:750.133333pt;}
.ydc{bottom:760.800000pt;}
.y129{bottom:761.506667pt;}
.y12{bottom:763.973867pt;}
.y9b{bottom:765.333333pt;}
.y11{bottom:768.253333pt;}
.y128{bottom:775.466667pt;}
.yda{bottom:778.000000pt;}
.y127{bottom:789.386667pt;}
.y10{bottom:794.053333pt;}
.ycd{bottom:795.200000pt;}
.y126{bottom:803.146667pt;}
.y99{bottom:808.133333pt;}
.yd6{bottom:812.400000pt;}
.y125{bottom:817.066667pt;}
.yf{bottom:828.773333pt;}
.yd5{bottom:829.600000pt;}
.y4c{bottom:839.466667pt;}
.y14{bottom:842.107200pt;}
.y124{bottom:844.746667pt;}
.yd3{bottom:846.800000pt;}
.ye{bottom:850.373333pt;}
.y98{bottom:850.666667pt;}
.y123{bottom:858.666667pt;}
.yd2{bottom:864.000000pt;}
.y122{bottom:872.266667pt;}
.y96{bottom:872.400000pt;}
.yd0{bottom:881.200000pt;}
.ycb{bottom:898.400000pt;}
.y121{bottom:900.266667pt;}
.y4b{bottom:900.320000pt;}
.yd{bottom:903.173333pt;}
.y120{bottom:914.026667pt;}
.y4a{bottom:914.240000pt;}
.y94{bottom:915.200000pt;}
.yc7{bottom:915.600000pt;}
.ya{bottom:919.173333pt;}
.yc{bottom:923.813333pt;}
.y11f{bottom:927.786667pt;}
.y49{bottom:928.000000pt;}
.y92{bottom:936.800000pt;}
.y9{bottom:939.813333pt;}
.y11e{bottom:941.706667pt;}
.y48{bottom:941.760000pt;}
.yb{bottom:952.293333pt;}
.y11d{bottom:955.466667pt;}
.y47{bottom:955.520000pt;}
.y89{bottom:958.400000pt;}
.y8{bottom:965.893333pt;}
.y11c{bottom:969.226667pt;}
.y46{bottom:969.440000pt;}
.y8d{bottom:980.133333pt;}
.y7{bottom:982.853333pt;}
.y11b{bottom:982.986667pt;}
.y45{bottom:983.200000pt;}
.yc6{bottom:983.360000pt;}
.y11a{bottom:996.906667pt;}
.y44{bottom:997.120000pt;}
.y6{bottom:998.213333pt;}
.y119{bottom:1010.506667pt;}
.y43{bottom:1010.560000pt;}
.yc5{bottom:1010.880000pt;}
.y5{bottom:1013.600000pt;}
.y118{bottom:1024.293333pt;}
.y42{bottom:1024.346667pt;}
.y4{bottom:1029.600000pt;}
.y41{bottom:1038.266667pt;}
.y88{bottom:1038.533333pt;}
.y3f{bottom:1061.066667pt;}
.h39{height:13.760000pt;}
.h30{height:16.480000pt;}
.h2d{height:16.640000pt;}
.h33{height:16.653333pt;}
.h1d{height:20.960000pt;}
.h1c{height:21.120000pt;}
.h38{height:21.920000pt;}
.h3b{height:21.946667pt;}
.h3c{height:21.973333pt;}
.h37{height:22.080000pt;}
.h29{height:24.186667pt;}
.h2a{height:24.306667pt;}
.h22{height:24.320000pt;}
.hb{height:31.390625pt;}
.h17{height:32.742188pt;}
.h10{height:33.918750pt;}
.h1b{height:40.986667pt;}
.h2b{height:41.586667pt;}
.h1e{height:41.920000pt;}
.h11{height:42.084375pt;}
.h1f{height:42.106667pt;}
.h6{height:43.215000pt;}
.h23{height:43.840000pt;}
.h36{height:44.160000pt;}
.hc{height:47.085938pt;}
.h12{height:47.109375pt;}
.h21{height:47.426667pt;}
.h24{height:47.680000pt;}
.he{height:48.375000pt;}
.h28{height:48.640000pt;}
.h26{height:48.666667pt;}
.h27{height:48.693333pt;}
.h25{height:48.800000pt;}
.h3e{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h2c{height:50.240000pt;}
.h31{height:51.040000pt;}
.h8{height:52.108438pt;}
.hd{height:52.510625pt;}
.h3d{height:52.526250pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h14{height:57.120000pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h1a{height:62.746667pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h20{height:72.506667pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h19{height:78.800833pt;}
.h32{height:85.293333pt;}
.h2f{height:102.560000pt;}
.h16{height:102.789375pt;}
.h34{height:107.866667pt;}
.h3a{height:112.986667pt;}
.h2e{height:119.840000pt;}
.h35{height:126.880000pt;}
.h15{height:186.800000pt;}
.h18{height:235.066667pt;}
.h0{height:1122.666667pt;}
.wa{width:49.613333pt;}
.wf{width:55.840000pt;}
.we{width:57.466667pt;}
.w12{width:57.773333pt;}
.wb{width:65.440000pt;}
.w10{width:65.760000pt;}
.w13{width:75.986667pt;}
.w18{width:84.320000pt;}
.w19{width:84.506667pt;}
.w17{width:85.280000pt;}
.w1c{width:85.600000pt;}
.w25{width:87.546667pt;}
.w29{width:87.866667pt;}
.w14{width:92.826667pt;}
.w1a{width:93.146667pt;}
.wc{width:96.506667pt;}
.w11{width:96.826667pt;}
.w1{width:104.666667pt;}
.w2{width:105.946667pt;}
.w3{width:106.080000pt;}
.w6{width:106.266667pt;}
.w7{width:106.400000pt;}
.w24{width:107.666667pt;}
.wd{width:112.160000pt;}
.w1d{width:117.746667pt;}
.w15{width:118.106667pt;}
.w1b{width:118.426667pt;}
.w1e{width:119.066667pt;}
.w1f{width:119.226667pt;}
.w21{width:119.386667pt;}
.w22{width:119.546667pt;}
.w26{width:125.306667pt;}
.w4{width:125.946667pt;}
.w8{width:126.266667pt;}
.w28{width:126.400000pt;}
.w20{width:130.240000pt;}
.w23{width:130.560000pt;}
.w27{width:142.933333pt;}
.w16{width:169.200000pt;}
.w5{width:228.400000pt;}
.w9{width:228.666667pt;}
.w0{width:794.666667pt;}
.xf{left:-228.733333pt;}
.x10{left:-154.773333pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x45{left:9.733333pt;}
.x37{left:16.133333pt;}
.x44{left:18.666667pt;}
.x42{left:21.906667pt;}
.x21{left:24.800000pt;}
.x4{left:26.533333pt;}
.x1c{left:32.800000pt;}
.x40{left:34.840000pt;}
.x3a{left:36.800000pt;}
.x3f{left:38.000000pt;}
.x47{left:39.866667pt;}
.x12{left:41.653333pt;}
.x34{left:42.813333pt;}
.x38{left:43.866667pt;}
.x14{left:44.933333pt;}
.x4a{left:48.266667pt;}
.xa{left:50.506667pt;}
.x4b{left:52.666667pt;}
.xc{left:59.733333pt;}
.x50{left:62.146667pt;}
.x18{left:65.760000pt;}
.x3d{left:68.840000pt;}
.x3e{left:79.733333pt;}
.x4e{left:87.880000pt;}
.x53{left:90.354667pt;}
.x36{left:98.760000pt;}
.x41{left:106.440000pt;}
.x2d{left:130.920000pt;}
.x11{left:146.533333pt;}
.x1a{left:171.200000pt;}
.x2e{left:207.600000pt;}
.x26{left:211.066667pt;}
.x43{left:214.800000pt;}
.x7{left:217.040000pt;}
.x25{left:219.080000pt;}
.x5{left:240.266667pt;}
.x17{left:243.466667pt;}
.x6{left:258.320000pt;}
.x27{left:261.333333pt;}
.x2c{left:268.266667pt;}
.x1b{left:277.866667pt;}
.x1f{left:284.666667pt;}
.x2f{left:301.066667pt;}
.x46{left:302.933333pt;}
.x15{left:316.146667pt;}
.x24{left:319.040000pt;}
.x28{left:327.466667pt;}
.x39{left:336.933333pt;}
.x52{left:358.546667pt;}
.x35{left:365.733333pt;}
.x13{left:366.653333pt;}
.xb{left:370.320000pt;}
.x4c{left:377.426667pt;}
.x1d{left:384.533333pt;}
.x51{left:387.066667pt;}
.x1{left:391.733333pt;}
.x20{left:396.213333pt;}
.x16{left:399.200000pt;}
.x22{left:405.066667pt;}
.x3{left:413.733333pt;}
.x30{left:419.466667pt;}
.x29{left:424.266667pt;}
.x8{left:425.746667pt;}
.x48{left:428.933333pt;}
.xd{left:432.586667pt;}
.x33{left:439.333333pt;}
.x9{left:450.293333pt;}
.x3b{left:456.800000pt;}
.x2b{left:480.533333pt;}
.xe{left:496.146667pt;}
.x32{left:504.133333pt;}
.x1e{left:511.333333pt;}
.x2a{left:537.066667pt;}
.x49{left:572.666667pt;}
.x3c{left:576.666667pt;}
.x31{left:589.200000pt;}
.x4d{left:618.546667pt;}
.x4f{left:653.533333pt;}
.x23{left:705.213333pt;}
.x2{left:1030.000000pt;}
}




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