
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ece6fdf869291117679074ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f6c9e028b219b06d95d82378.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f2ad0c2572e555895a037a60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fd361c82da921a9539e984b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e4e065b6fc6e6ef1842d587f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a004debfcad28b8abdb14b52.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4979ea9e361fcdc902530f52.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_053d7a4ab0917dc7a68b5074.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls23{letter-spacing:-0.804000px;}
.lsf{letter-spacing:-0.444600px;}
.ls22{letter-spacing:-0.423600px;}
.lse{letter-spacing:-0.391800px;}
.ls12{letter-spacing:-0.291600px;}
.lsd{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.070800px;}
.ls16{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.060480px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.095400px;}
.ls1e{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.113400px;}
.ls1b{letter-spacing:0.115800px;}
.ls3{letter-spacing:0.117600px;}
.ls1d{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.199440px;}
.ls11{letter-spacing:0.275400px;}
.ls1c{letter-spacing:0.292800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls10{letter-spacing:0.816000px;}
.ls20{letter-spacing:47.726640px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.571200px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.339800px;}
.ws11{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.155600px;}
.ws8{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.934800px;}
.ws13{word-spacing:-12.802800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._e{margin-left:-3.530402px;}
._9{margin-left:-2.485200px;}
._0{margin-left:-1.110000px;}
._2{width:1.006728px;}
._5{width:2.179106px;}
._8{width:3.231694px;}
._f{width:5.050200px;}
._6{width:6.072000px;}
._7{width:7.577403px;}
._d{width:9.078000px;}
._10{width:10.521000px;}
._12{width:11.570880px;}
._1{width:12.582000px;}
._a{width:14.428800px;}
._11{width:15.497352px;}
._3{width:16.589760px;}
._4{width:17.613118px;}
._b{width:19.057800px;}
._c{width:20.562002px;}
._17{width:23.738880px;}
._13{width:24.829560px;}
._14{width:26.993880px;}
._15{width:32.945760px;}
._16{width:34.027920px;}
._1b{width:51.583800px;}
._19{width:57.530280px;}
._1a{width:58.575480px;}
._1d{width:74.789280px;}
._21{width:75.823320px;}
._1e{width:77.030160px;}
._1f{width:83.927520px;}
._20{width:85.570320px;}
._18{width:114.408360px;}
._1c{width:132.614760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y86{bottom:7.830000px;}
.yab{bottom:7.860000px;}
.y89{bottom:7.920000px;}
.y11a{bottom:7.950000px;}
.ybd{bottom:25.470000px;}
.y9f{bottom:35.190000px;}
.ye3{bottom:35.280000px;}
.ybb{bottom:52.830000px;}
.ya2{bottom:62.550000px;}
.yd4{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.ybf{bottom:80.190000px;}
.y1{bottom:101.640000px;}
.y176{bottom:115.050000px;}
.y8e{bottom:115.140000px;}
.yb8{bottom:122.160000px;}
.y1d1{bottom:125.580000px;}
.y126{bottom:128.820000px;}
.y17f{bottom:131.610000px;}
.y175{bottom:132.600000px;}
.ye1{bottom:136.380000px;}
.y62{bottom:136.650000px;}
.y8d{bottom:142.410000px;}
.y29{bottom:142.860000px;}
.y1d0{bottom:143.130000px;}
.y150{bottom:146.370000px;}
.y17e{bottom:149.160000px;}
.y174{bottom:150.240000px;}
.y61{bottom:154.200000px;}
.yb7{bottom:157.710000px;}
.y28{bottom:160.500000px;}
.y102{bottom:161.760000px;}
.y14f{bottom:164.010000px;}
.y125{bottom:164.370000px;}
.y17d{bottom:166.800000px;}
.y173{bottom:167.790000px;}
.y1a5{bottom:169.320000px;}
.y1cf{bottom:169.680000px;}
.y8c{bottom:169.770000px;}
.y60{bottom:171.840000px;}
.ye0{bottom:172.020000px;}
.y27{bottom:178.050000px;}
.y101{bottom:179.310000px;}
.y14e{bottom:181.560000px;}
.y124{bottom:182.010000px;}
.y172{bottom:185.340000px;}
.y1a4{bottom:186.870000px;}
.y1ce{bottom:187.320000px;}
.y5f{bottom:189.390000px;}
.yb6{bottom:193.350000px;}
.y17c{bottom:193.710000px;}
.y26{bottom:195.600000px;}
.y8b{bottom:197.130000px;}
.y14d{bottom:199.110000px;}
.y171{bottom:202.980000px;}
.y1a3{bottom:204.510000px;}
.y1cd{bottom:204.870000px;}
.y5e{bottom:206.940000px;}
.ydf{bottom:207.570000px;}
.y25{bottom:213.240000px;}
.y100{bottom:214.950000px;}
.y14c{bottom:216.750000px;}
.y123{bottom:217.560000px;}
.y170{bottom:220.530000px;}
.y1cc{bottom:222.510000px;}
.y8a{bottom:224.400000px;}
.y5d{bottom:224.580000px;}
.yde{bottom:225.120000px;}
.yb5{bottom:228.900000px;}
.y24{bottom:230.790000px;}
.y1a2{bottom:231.060000px;}
.yff{bottom:232.500000px;}
.y14b{bottom:234.300000px;}
.y16f{bottom:238.170000px;}
.y17b{bottom:241.950000px;}
.y5c{bottom:242.130000px;}
.ydd{bottom:242.760000px;}
.yb4{bottom:246.540000px;}
.y23{bottom:248.340000px;}
.y1a1{bottom:248.610000px;}
.y1cb{bottom:249.060000px;}
.y88{bottom:251.760000px;}
.y14a{bottom:251.940000px;}
.y122{bottom:253.200000px;}
.y16e{bottom:255.720000px;}
.y5b{bottom:259.680000px;}
.yb3{bottom:264.090000px;}
.yfe{bottom:265.440000px;}
.y22{bottom:265.980000px;}
.y1a0{bottom:266.250000px;}
.y1ca{bottom:266.610000px;}
.y17a{bottom:268.860000px;}
.ydc{bottom:269.310000px;}
.y149{bottom:269.490000px;}
.y16d{bottom:273.270000px;}
.y5a{bottom:277.320000px;}
.y87{bottom:279.120000px;}
.y21{bottom:283.530000px;}
.y1c9{bottom:284.250000px;}
.y148{bottom:287.040000px;}
.y121{bottom:288.750000px;}
.yb2{bottom:290.640000px;}
.y16c{bottom:290.910000px;}
.yfb{bottom:292.800000px;}
.y59{bottom:294.870000px;}
.y20{bottom:301.170000px;}
.y147{bottom:304.680000px;}
.ydb{bottom:304.950000px;}
.y179{bottom:305.850000px;}
.y85{bottom:306.480000px;}
.y16b{bottom:308.460000px;}
.y19f{bottom:310.440000px;}
.y1c8{bottom:310.800000px;}
.y58{bottom:312.510000px;}
.y1f{bottom:318.720000px;}
.yfd{bottom:320.160000px;}
.y146{bottom:322.230000px;}
.yda{bottom:322.500000px;}
.yb1{bottom:323.220000px;}
.y120{bottom:324.300000px;}
.y16a{bottom:326.100000px;}
.y19e{bottom:327.990000px;}
.y1c7{bottom:328.440000px;}
.y178{bottom:332.760000px;}
.y1e{bottom:336.270000px;}
.y1e4{bottom:336.990000px;}
.y145{bottom:339.870000px;}
.yd9{bottom:340.050000px;}
.y11f{bottom:341.940000px;}
.y169{bottom:343.650000px;}
.y1c6{bottom:345.990000px;}
.yfc{bottom:347.520000px;}
.y57{bottom:348.060000px;}
.y1d{bottom:353.910000px;}
.y19d{bottom:354.540000px;}
.y84{bottom:355.170000px;}
.y144{bottom:357.420000px;}
.yd8{bottom:357.690000px;}
.yb0{bottom:358.860000px;}
.y11e{bottom:359.490000px;}
.y168{bottom:361.200000px;}
.y1e3{bottom:363.540000px;}
.y56{bottom:365.610000px;}
.y177{bottom:370.110000px;}
.y19c{bottom:372.180000px;}
.y1c5{bottom:372.540000px;}
.yf9{bottom:374.790000px;}
.y143{bottom:374.970000px;}
.yaf{bottom:376.410000px;}
.y167{bottom:378.840000px;}
.y1c{bottom:380.820000px;}
.y1e2{bottom:381.180000px;}
.y55{bottom:383.250000px;}
.y19b{bottom:389.730000px;}
.y1c4{bottom:390.180000px;}
.yd7{bottom:390.630000px;}
.y83{bottom:390.720000px;}
.y142{bottom:392.610000px;}
.yae{bottom:394.050000px;}
.y11d{bottom:395.130000px;}
.y166{bottom:396.390000px;}
.y54{bottom:400.800000px;}
.yfa{bottom:402.150000px;}
.y1c3{bottom:407.730000px;}
.y82{bottom:408.360000px;}
.y11c{bottom:410.070000px;}
.yad{bottom:411.600000px;}
.y165{bottom:413.940000px;}
.y19a{bottom:416.370000px;}
.yd3{bottom:417.990000px;}
.y53{bottom:418.440000px;}
.y1e1{bottom:425.370000px;}
.y81{bottom:425.910000px;}
.y141{bottom:428.160000px;}
.yac{bottom:429.150000px;}
.y1b{bottom:429.420000px;}
.yf8{bottom:429.510000px;}
.y164{bottom:431.580000px;}
.y199{bottom:433.920000px;}
.y1c2{bottom:434.370000px;}
.y52{bottom:435.990000px;}
.y11b{bottom:437.430000px;}
.yd6{bottom:445.350000px;}
.y140{bottom:445.800000px;}
.y163{bottom:449.130000px;}
.y1c1{bottom:451.920000px;}
.y80{bottom:452.460000px;}
.y51{bottom:453.540000px;}
.y198{bottom:460.470000px;}
.yaa{bottom:462.180000px;}
.y13f{bottom:463.350000px;}
.y119{bottom:464.700000px;}
.y1a{bottom:466.410000px;}
.y162{bottom:466.770000px;}
.y1e0{bottom:469.470000px;}
.y50{bottom:471.210000px;}
.yd5{bottom:472.650000px;}
.y197{bottom:478.140000px;}
.yf7{bottom:478.230000px;}
.y1c0{bottom:478.500000px;}
.y13e{bottom:480.930000px;}
.y19{bottom:484.080000px;}
.y161{bottom:484.350000px;}
.y1df{bottom:487.140000px;}
.y7f{bottom:488.400000px;}
.y4f{bottom:488.760000px;}
.ya9{bottom:489.480000px;}
.y118{bottom:492.090000px;}
.y196{bottom:495.690000px;}
.y1bf{bottom:496.140000px;}
.y13d{bottom:498.570000px;}
.yd1{bottom:500.010000px;}
.y18{bottom:501.630000px;}
.y160{bottom:501.900000px;}
.y1de{bottom:504.690000px;}
.y4e{bottom:506.400000px;}
.y1be{bottom:513.690000px;}
.yf6{bottom:513.780000px;}
.y13c{bottom:516.120000px;}
.ya8{bottom:516.840000px;}
.y17{bottom:519.180000px;}
.y15f{bottom:519.540000px;}
.y195{bottom:522.330000px;}
.y4d{bottom:523.950000px;}
.yd2{bottom:527.370000px;}
.y1dd{bottom:531.330000px;}
.yf5{bottom:531.420000px;}
.y13b{bottom:533.760000px;}
.y7e{bottom:536.730000px;}
.y16{bottom:536.820000px;}
.y15e{bottom:537.090000px;}
.y1bd{bottom:540.330000px;}
.y117{bottom:540.780000px;}
.y4c{bottom:541.500000px;}
.ya7{bottom:544.200000px;}
.y194{bottom:548.880000px;}
.y13a{bottom:551.310000px;}
.y7d{bottom:554.280000px;}
.y15{bottom:554.370000px;}
.yd0{bottom:554.730000px;}
.y1bc{bottom:557.880000px;}
.yf4{bottom:557.970000px;}
.y4b{bottom:559.140000px;}
.y193{bottom:566.430000px;}
.y139{bottom:568.860000px;}
.ya6{bottom:571.560000px;}
.y7c{bottom:571.830000px;}
.y14{bottom:571.920000px;}
.y15d{bottom:572.280000px;}
.y1bb{bottom:575.430000px;}
.y116{bottom:576.420000px;}
.y4a{bottom:576.690000px;}
.y192{bottom:584.070000px;}
.y138{bottom:586.500000px;}
.y7b{bottom:589.470000px;}
.y13{bottom:589.560000px;}
.y1dc{bottom:593.070000px;}
.yf3{bottom:593.520000px;}
.y115{bottom:593.970000px;}
.y49{bottom:594.330000px;}
.ya5{bottom:598.830000px;}
.y15c{bottom:599.190000px;}
.y1ba{bottom:602.070000px;}
.ycf{bottom:603.420000px;}
.y137{bottom:604.050000px;}
.y7a{bottom:607.020000px;}
.y12{bottom:607.110000px;}
.y191{bottom:610.620000px;}
.yf2{bottom:611.160000px;}
.y114{bottom:611.520000px;}
.y48{bottom:611.880000px;}
.y1b9{bottom:619.620000px;}
.y136{bottom:621.690000px;}
.y79{bottom:624.660000px;}
.y11{bottom:624.750000px;}
.ya1{bottom:626.190000px;}
.y190{bottom:628.260000px;}
.yf1{bottom:628.710000px;}
.y113{bottom:629.160000px;}
.y47{bottom:629.430000px;}
.y1b8{bottom:637.260000px;}
.yce{bottom:638.970000px;}
.y135{bottom:639.240000px;}
.y78{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.y18f{bottom:645.810000px;}
.yf0{bottom:646.350000px;}
.y46{bottom:647.070000px;}
.y15b{bottom:647.430000px;}
.ya4{bottom:653.550000px;}
.y1db{bottom:654.810000px;}
.y112{bottom:655.710000px;}
.ycd{bottom:656.520000px;}
.y134{bottom:656.790000px;}
.yf{bottom:659.850000px;}
.y18e{bottom:663.360000px;}
.y1b7{bottom:663.810000px;}
.y45{bottom:664.620000px;}
.y15a{bottom:665.070000px;}
.ycc{bottom:674.160000px;}
.y133{bottom:674.430000px;}
.ye{bottom:677.490000px;}
.y77{bottom:677.760000px;}
.ya3{bottom:680.910000px;}
.y1b6{bottom:681.360000px;}
.yef{bottom:681.900000px;}
.y44{bottom:682.260000px;}
.y159{bottom:682.620000px;}
.y18d{bottom:690.000000px;}
.y111{bottom:691.350000px;}
.ycb{bottom:691.710000px;}
.y132{bottom:691.980000px;}
.yd{bottom:695.040000px;}
.y76{bottom:695.400000px;}
.y1da{bottom:699.000000px;}
.yee{bottom:699.450000px;}
.y43{bottom:699.810000px;}
.y158{bottom:700.260000px;}
.y18c{bottom:707.550000px;}
.y1b5{bottom:708.000000px;}
.y9e{bottom:708.180000px;}
.y110{bottom:708.900000px;}
.yca{bottom:709.350000px;}
.y131{bottom:709.620000px;}
.yc{bottom:712.680000px;}
.y75{bottom:712.950000px;}
.y1d9{bottom:716.550000px;}
.yed{bottom:717.090000px;}
.y42{bottom:717.360000px;}
.y157{bottom:717.810000px;}
.y18b{bottom:725.190000px;}
.y1b4{bottom:725.550000px;}
.y10f{bottom:726.450000px;}
.yc9{bottom:726.900000px;}
.y130{bottom:727.170000px;}
.y74{bottom:730.590000px;}
.y1d8{bottom:734.190000px;}
.yec{bottom:734.640000px;}
.y41{bottom:735.000000px;}
.y156{bottom:735.360000px;}
.ya0{bottom:735.540000px;}
.yb{bottom:739.590000px;}
.y1b3{bottom:743.190000px;}
.y10e{bottom:744.090000px;}
.y12f{bottom:744.720000px;}
.y73{bottom:748.140000px;}
.y18a{bottom:751.740000px;}
.y40{bottom:752.550000px;}
.y155{bottom:753.000000px;}
.yc8{bottom:753.450000px;}
.y1d7{bottom:760.740000px;}
.y12e{bottom:762.360000px;}
.y9d{bottom:762.900000px;}
.y72{bottom:765.690000px;}
.y189{bottom:769.290000px;}
.y1b2{bottom:769.740000px;}
.y3f{bottom:770.190000px;}
.yeb{bottom:770.280000px;}
.y154{bottom:770.550000px;}
.y10d{bottom:779.640000px;}
.y12d{bottom:779.910000px;}
.y71{bottom:783.330000px;}
.y1b1{bottom:787.290000px;}
.y3e{bottom:787.740000px;}
.ya{bottom:787.830000px;}
.y153{bottom:788.190000px;}
.yc7{bottom:789.090000px;}
.y9c{bottom:790.170000px;}
.y10c{bottom:794.670000px;}
.y188{bottom:795.930000px;}
.y70{bottom:800.880000px;}
.y1d6{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.y152{bottom:805.740000px;}
.yc6{bottom:806.640000px;}
.y12c{bottom:806.820000px;}
.y187{bottom:813.480000px;}
.y1b0{bottom:813.930000px;}
.y9b{bottom:817.530000px;}
.y6f{bottom:818.520000px;}
.y10b{bottom:821.940000px;}
.y1d5{bottom:822.480000px;}
.y151{bottom:823.290000px;}
.y9{bottom:823.380000px;}
.yc5{bottom:824.280000px;}
.y1af{bottom:831.480000px;}
.y6e{bottom:836.070000px;}
.y186{bottom:840.030000px;}
.y3c{bottom:840.930000px;}
.yc4{bottom:841.830000px;}
.y1ae{bottom:849.030000px;}
.y108{bottom:849.300000px;}
.y12b{bottom:855.060000px;}
.y185{bottom:857.670000px;}
.y3b{bottom:858.480000px;}
.yea{bottom:859.020000px;}
.y8{bottom:859.200000px;}
.yc3{bottom:859.380000px;}
.y9a{bottom:866.220000px;}
.y1ad{bottom:866.670000px;}
.y6d{bottom:871.620000px;}
.y12a{bottom:872.700000px;}
.y3a{bottom:876.030000px;}
.y10a{bottom:876.660000px;}
.y184{bottom:884.220000px;}
.y6c{bottom:889.260000px;}
.y129{bottom:890.250000px;}
.yc2{bottom:892.410000px;}
.y1ac{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.ye9{bottom:894.570000px;}
.y7{bottom:895.200000px;}
.y99{bottom:901.860000px;}
.y109{bottom:903.930000px;}
.y6b{bottom:906.810000px;}
.y128{bottom:907.890000px;}
.y1ab{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y98{bottom:919.410000px;}
.ybe{bottom:919.680000px;}
.y6a{bottom:924.450000px;}
.ye8{bottom:927.600000px;}
.y1d4{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y107{bottom:931.290000px;}
.y97{bottom:936.960000px;}
.y1aa{bottom:937.410000px;}
.y69{bottom:942.000000px;}
.y127{bottom:942.720000px;}
.y1d3{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y96{bottom:954.600000px;}
.ye5{bottom:954.870000px;}
.y1a9{bottom:954.960000px;}
.y106{bottom:958.650000px;}
.y68{bottom:959.550000px;}
.y183{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.yc1{bottom:964.680000px;}
.y1a8{bottom:972.600000px;}
.y67{bottom:977.190000px;}
.y95{bottom:981.150000px;}
.y34{bottom:981.600000px;}
.ye7{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y1d2{bottom:990.150000px;}
.yc0{bottom:991.950000px;}
.y66{bottom:994.740000px;}
.y33{bottom:999.150000px;}
.y105{bottom:1007.340000px;}
.y182{bottom:1007.790000px;}
.ye6{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y94{bottom:1016.820000px;}
.yba{bottom:1019.340000px;}
.y181{bottom:1025.370000px;}
.y65{bottom:1029.960000px;}
.y93{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.ye2{bottom:1036.890000px;}
.y104{bottom:1042.920000px;}
.ybc{bottom:1046.700000px;}
.y64{bottom:1047.510000px;}
.y92{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y103{bottom:1060.560000px;}
.y1a7{bottom:1060.920000px;}
.ye4{bottom:1064.250000px;}
.y91{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y63{bottom:1074.420000px;}
.y1a6{bottom:1078.560000px;}
.y90{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.yb9{bottom:1091.610000px;}
.y180{bottom:1096.110000px;}
.y8f{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.h14{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h12{height:44.190000px;}
.hb{height:50.902383px;}
.h6{height:52.311445px;}
.hd{height:53.910000px;}
.h16{height:54.000000px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:59.973223px;}
.h18{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h11{height:71.550000px;}
.h4{height:72.985430px;}
.he{height:81.270000px;}
.h15{height:81.300000px;}
.h13{height:98.940000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:23.760000px;}
.w27{width:32.130000px;}
.w11{width:51.750000px;}
.w2e{width:56.520000px;}
.w1d{width:56.790000px;}
.w2a{width:57.150000px;}
.w2d{width:58.230000px;}
.w29{width:60.120000px;}
.w16{width:60.930000px;}
.w13{width:76.320000px;}
.w2f{width:77.220000px;}
.w22{width:80.730000px;}
.w1e{width:85.410000px;}
.w2b{width:86.490000px;}
.w15{width:93.690000px;}
.w3{width:99.630000px;}
.wc{width:104.580000px;}
.w28{width:104.970000px;}
.w18{width:105.690000px;}
.w25{width:110.970000px;}
.w20{width:111.720000px;}
.w14{width:113.580000px;}
.wa{width:119.250000px;}
.w5{width:119.280000px;}
.w26{width:120.870000px;}
.w1f{width:123.750000px;}
.w23{width:128.340000px;}
.we{width:130.260000px;}
.w1a{width:136.290000px;}
.w30{width:141.960000px;}
.w33{width:143.490000px;}
.w32{width:147.870000px;}
.w6{width:154.440000px;}
.w12{width:155.430000px;}
.w10{width:172.200000px;}
.w4{width:173.340000px;}
.w9{width:173.370000px;}
.wb{width:180.840000px;}
.w31{width:188.640000px;}
.wf{width:190.620000px;}
.w1c{width:191.460000px;}
.w1b{width:209.880000px;}
.w8{width:286.140000px;}
.w24{width:489.810000px;}
.w2c{width:525.630000px;}
.w21{width:644.100000px;}
.w19{width:649.140000px;}
.w7{width:735.450000px;}
.wd{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x1{left:68.040000px;}
.x9{left:78.930000px;}
.x15{left:93.330000px;}
.x31{left:111.239987px;}
.x16{left:122.040000px;}
.x1d{left:124.560000px;}
.x1c{left:146.610000px;}
.x23{left:149.130000px;}
.x4{left:172.200000px;}
.x2b{left:183.810000px;}
.xe{left:199.740000px;}
.x24{left:201.720000px;}
.x2{left:202.799987px;}
.x2a{left:226.200000px;}
.x2c{left:242.850000px;}
.x17{left:259.050000px;}
.xd{left:260.490000px;}
.x1e{left:261.570000px;}
.x6{left:272.550000px;}
.x13{left:276.780000px;}
.x2d{left:300.090000px;}
.x25{left:313.410000px;}
.x22{left:343.110000px;}
.x1b{left:345.180000px;}
.xa{left:365.790000px;}
.x2e{left:378.030000px;}
.xf{left:391.080000px;}
.x26{left:435.000000px;}
.x7{left:446.700000px;}
.x30{left:449.220000px;}
.x27{left:467.850000px;}
.x18{left:469.650000px;}
.x1f{left:472.170000px;}
.x2f{left:520.800000px;}
.xb{left:539.880000px;}
.x10{left:564.090000px;}
.x8{left:566.700000px;}
.x28{left:573.540000px;}
.x11{left:616.560000px;}
.x29{left:634.380000px;}
.xc{left:659.940000px;}
.x19{left:661.920000px;}
.x20{left:664.440000px;}
.x12{left:669.030000px;}
.x21{left:716.910000px;}
.x1a{left:719.430000px;}
.x14{left:763.530000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls23{letter-spacing:-0.714667pt;}
.lsf{letter-spacing:-0.395200pt;}
.ls22{letter-spacing:-0.376533pt;}
.lse{letter-spacing:-0.348267pt;}
.ls12{letter-spacing:-0.259200pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.062933pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.053760pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.084800pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.100800pt;}
.ls1b{letter-spacing:0.102933pt;}
.ls3{letter-spacing:0.104533pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.177280pt;}
.ls11{letter-spacing:0.244800pt;}
.ls1c{letter-spacing:0.260267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls10{letter-spacing:0.725333pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.507733pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.857600pt;}
.ws11{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.693867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.497600pt;}
.ws13{word-spacing:-11.380267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._e{margin-left:-3.138135pt;}
._9{margin-left:-2.209066pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894869pt;}
._5{width:1.936983pt;}
._8{width:2.872617pt;}
._f{width:4.489067pt;}
._6{width:5.397333pt;}
._7{width:6.735469pt;}
._d{width:8.069333pt;}
._10{width:9.352000pt;}
._12{width:10.285227pt;}
._1{width:11.184000pt;}
._a{width:12.825600pt;}
._11{width:13.775424pt;}
._3{width:14.746454pt;}
._4{width:15.656105pt;}
._b{width:16.940266pt;}
._c{width:18.277335pt;}
._17{width:21.101227pt;}
._13{width:22.070720pt;}
._14{width:23.994560pt;}
._15{width:29.285120pt;}
._16{width:30.247040pt;}
._1b{width:45.852267pt;}
._19{width:51.138027pt;}
._1a{width:52.067093pt;}
._1d{width:66.479360pt;}
._21{width:67.398507pt;}
._1e{width:68.471253pt;}
._1f{width:74.602240pt;}
._20{width:76.062507pt;}
._18{width:101.696320pt;}
._1c{width:117.879787pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:6.960000pt;}
.yab{bottom:6.986667pt;}
.y89{bottom:7.040000pt;}
.y11a{bottom:7.066667pt;}
.ybd{bottom:22.640000pt;}
.y9f{bottom:31.280000pt;}
.ye3{bottom:31.360000pt;}
.ybb{bottom:46.960000pt;}
.ya2{bottom:55.600000pt;}
.yd4{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.ybf{bottom:71.280000pt;}
.y1{bottom:90.346667pt;}
.y176{bottom:102.266667pt;}
.y8e{bottom:102.346667pt;}
.yb8{bottom:108.586667pt;}
.y1d1{bottom:111.626667pt;}
.y126{bottom:114.506667pt;}
.y17f{bottom:116.986667pt;}
.y175{bottom:117.866667pt;}
.ye1{bottom:121.226667pt;}
.y62{bottom:121.466667pt;}
.y8d{bottom:126.586667pt;}
.y29{bottom:126.986667pt;}
.y1d0{bottom:127.226667pt;}
.y150{bottom:130.106667pt;}
.y17e{bottom:132.586667pt;}
.y174{bottom:133.546667pt;}
.y61{bottom:137.066667pt;}
.yb7{bottom:140.186667pt;}
.y28{bottom:142.666667pt;}
.y102{bottom:143.786667pt;}
.y14f{bottom:145.786667pt;}
.y125{bottom:146.106667pt;}
.y17d{bottom:148.266667pt;}
.y173{bottom:149.146667pt;}
.y1a5{bottom:150.506667pt;}
.y1cf{bottom:150.826667pt;}
.y8c{bottom:150.906667pt;}
.y60{bottom:152.746667pt;}
.ye0{bottom:152.906667pt;}
.y27{bottom:158.266667pt;}
.y101{bottom:159.386667pt;}
.y14e{bottom:161.386667pt;}
.y124{bottom:161.786667pt;}
.y172{bottom:164.746667pt;}
.y1a4{bottom:166.106667pt;}
.y1ce{bottom:166.506667pt;}
.y5f{bottom:168.346667pt;}
.yb6{bottom:171.866667pt;}
.y17c{bottom:172.186667pt;}
.y26{bottom:173.866667pt;}
.y8b{bottom:175.226667pt;}
.y14d{bottom:176.986667pt;}
.y171{bottom:180.426667pt;}
.y1a3{bottom:181.786667pt;}
.y1cd{bottom:182.106667pt;}
.y5e{bottom:183.946667pt;}
.ydf{bottom:184.506667pt;}
.y25{bottom:189.546667pt;}
.y100{bottom:191.066667pt;}
.y14c{bottom:192.666667pt;}
.y123{bottom:193.386667pt;}
.y170{bottom:196.026667pt;}
.y1cc{bottom:197.786667pt;}
.y8a{bottom:199.466667pt;}
.y5d{bottom:199.626667pt;}
.yde{bottom:200.106667pt;}
.yb5{bottom:203.466667pt;}
.y24{bottom:205.146667pt;}
.y1a2{bottom:205.386667pt;}
.yff{bottom:206.666667pt;}
.y14b{bottom:208.266667pt;}
.y16f{bottom:211.706667pt;}
.y17b{bottom:215.066667pt;}
.y5c{bottom:215.226667pt;}
.ydd{bottom:215.786667pt;}
.yb4{bottom:219.146667pt;}
.y23{bottom:220.746667pt;}
.y1a1{bottom:220.986667pt;}
.y1cb{bottom:221.386667pt;}
.y88{bottom:223.786667pt;}
.y14a{bottom:223.946667pt;}
.y122{bottom:225.066667pt;}
.y16e{bottom:227.306667pt;}
.y5b{bottom:230.826667pt;}
.yb3{bottom:234.746667pt;}
.yfe{bottom:235.946667pt;}
.y22{bottom:236.426667pt;}
.y1a0{bottom:236.666667pt;}
.y1ca{bottom:236.986667pt;}
.y17a{bottom:238.986667pt;}
.ydc{bottom:239.386667pt;}
.y149{bottom:239.546667pt;}
.y16d{bottom:242.906667pt;}
.y5a{bottom:246.506667pt;}
.y87{bottom:248.106667pt;}
.y21{bottom:252.026667pt;}
.y1c9{bottom:252.666667pt;}
.y148{bottom:255.146667pt;}
.y121{bottom:256.666667pt;}
.yb2{bottom:258.346667pt;}
.y16c{bottom:258.586667pt;}
.yfb{bottom:260.266667pt;}
.y59{bottom:262.106667pt;}
.y20{bottom:267.706667pt;}
.y147{bottom:270.826667pt;}
.ydb{bottom:271.066667pt;}
.y179{bottom:271.866667pt;}
.y85{bottom:272.426667pt;}
.y16b{bottom:274.186667pt;}
.y19f{bottom:275.946667pt;}
.y1c8{bottom:276.266667pt;}
.y58{bottom:277.786667pt;}
.y1f{bottom:283.306667pt;}
.yfd{bottom:284.586667pt;}
.y146{bottom:286.426667pt;}
.yda{bottom:286.666667pt;}
.yb1{bottom:287.306667pt;}
.y120{bottom:288.266667pt;}
.y16a{bottom:289.866667pt;}
.y19e{bottom:291.546667pt;}
.y1c7{bottom:291.946667pt;}
.y178{bottom:295.786667pt;}
.y1e{bottom:298.906667pt;}
.y1e4{bottom:299.546667pt;}
.y145{bottom:302.106667pt;}
.yd9{bottom:302.266667pt;}
.y11f{bottom:303.946667pt;}
.y169{bottom:305.466667pt;}
.y1c6{bottom:307.546667pt;}
.yfc{bottom:308.906667pt;}
.y57{bottom:309.386667pt;}
.y1d{bottom:314.586667pt;}
.y19d{bottom:315.146667pt;}
.y84{bottom:315.706667pt;}
.y144{bottom:317.706667pt;}
.yd8{bottom:317.946667pt;}
.yb0{bottom:318.986667pt;}
.y11e{bottom:319.546667pt;}
.y168{bottom:321.066667pt;}
.y1e3{bottom:323.146667pt;}
.y56{bottom:324.986667pt;}
.y177{bottom:328.986667pt;}
.y19c{bottom:330.826667pt;}
.y1c5{bottom:331.146667pt;}
.yf9{bottom:333.146667pt;}
.y143{bottom:333.306667pt;}
.yaf{bottom:334.586667pt;}
.y167{bottom:336.746667pt;}
.y1c{bottom:338.506667pt;}
.y1e2{bottom:338.826667pt;}
.y55{bottom:340.666667pt;}
.y19b{bottom:346.426667pt;}
.y1c4{bottom:346.826667pt;}
.yd7{bottom:347.226667pt;}
.y83{bottom:347.306667pt;}
.y142{bottom:348.986667pt;}
.yae{bottom:350.266667pt;}
.y11d{bottom:351.226667pt;}
.y166{bottom:352.346667pt;}
.y54{bottom:356.266667pt;}
.yfa{bottom:357.466667pt;}
.y1c3{bottom:362.426667pt;}
.y82{bottom:362.986667pt;}
.y11c{bottom:364.506667pt;}
.yad{bottom:365.866667pt;}
.y165{bottom:367.946667pt;}
.y19a{bottom:370.106667pt;}
.yd3{bottom:371.546667pt;}
.y53{bottom:371.946667pt;}
.y1e1{bottom:378.106667pt;}
.y81{bottom:378.586667pt;}
.y141{bottom:380.586667pt;}
.yac{bottom:381.466667pt;}
.y1b{bottom:381.706667pt;}
.yf8{bottom:381.786667pt;}
.y164{bottom:383.626667pt;}
.y199{bottom:385.706667pt;}
.y1c2{bottom:386.106667pt;}
.y52{bottom:387.546667pt;}
.y11b{bottom:388.826667pt;}
.yd6{bottom:395.866667pt;}
.y140{bottom:396.266667pt;}
.y163{bottom:399.226667pt;}
.y1c1{bottom:401.706667pt;}
.y80{bottom:402.186667pt;}
.y51{bottom:403.146667pt;}
.y198{bottom:409.306667pt;}
.yaa{bottom:410.826667pt;}
.y13f{bottom:411.866667pt;}
.y119{bottom:413.066667pt;}
.y1a{bottom:414.586667pt;}
.y162{bottom:414.906667pt;}
.y1e0{bottom:417.306667pt;}
.y50{bottom:418.853333pt;}
.yd5{bottom:420.133333pt;}
.y197{bottom:425.013333pt;}
.yf7{bottom:425.093333pt;}
.y1c0{bottom:425.333333pt;}
.y13e{bottom:427.493333pt;}
.y19{bottom:430.293333pt;}
.y161{bottom:430.533333pt;}
.y1df{bottom:433.013333pt;}
.y7f{bottom:434.133333pt;}
.y4f{bottom:434.453333pt;}
.ya9{bottom:435.093333pt;}
.y118{bottom:437.413333pt;}
.y196{bottom:440.613333pt;}
.y1bf{bottom:441.013333pt;}
.y13d{bottom:443.173333pt;}
.yd1{bottom:444.453333pt;}
.y18{bottom:445.893333pt;}
.y160{bottom:446.133333pt;}
.y1de{bottom:448.613333pt;}
.y4e{bottom:450.133333pt;}
.y1be{bottom:456.613333pt;}
.yf6{bottom:456.693333pt;}
.y13c{bottom:458.773333pt;}
.ya8{bottom:459.413333pt;}
.y17{bottom:461.493333pt;}
.y15f{bottom:461.813333pt;}
.y195{bottom:464.293333pt;}
.y4d{bottom:465.733333pt;}
.yd2{bottom:468.773333pt;}
.y1dd{bottom:472.293333pt;}
.yf5{bottom:472.373333pt;}
.y13b{bottom:474.453333pt;}
.y7e{bottom:477.093333pt;}
.y16{bottom:477.173333pt;}
.y15e{bottom:477.413333pt;}
.y1bd{bottom:480.293333pt;}
.y117{bottom:480.693333pt;}
.y4c{bottom:481.333333pt;}
.ya7{bottom:483.733333pt;}
.y194{bottom:487.893333pt;}
.y13a{bottom:490.053333pt;}
.y7d{bottom:492.693333pt;}
.y15{bottom:492.773333pt;}
.yd0{bottom:493.093333pt;}
.y1bc{bottom:495.893333pt;}
.yf4{bottom:495.973333pt;}
.y4b{bottom:497.013333pt;}
.y193{bottom:503.493333pt;}
.y139{bottom:505.653333pt;}
.ya6{bottom:508.053333pt;}
.y7c{bottom:508.293333pt;}
.y14{bottom:508.373333pt;}
.y15d{bottom:508.693333pt;}
.y1bb{bottom:511.493333pt;}
.y116{bottom:512.373333pt;}
.y4a{bottom:512.613333pt;}
.y192{bottom:519.173333pt;}
.y138{bottom:521.333333pt;}
.y7b{bottom:523.973333pt;}
.y13{bottom:524.053333pt;}
.y1dc{bottom:527.173333pt;}
.yf3{bottom:527.573333pt;}
.y115{bottom:527.973333pt;}
.y49{bottom:528.293333pt;}
.ya5{bottom:532.293333pt;}
.y15c{bottom:532.613333pt;}
.y1ba{bottom:535.173333pt;}
.ycf{bottom:536.373333pt;}
.y137{bottom:536.933333pt;}
.y7a{bottom:539.573333pt;}
.y12{bottom:539.653333pt;}
.y191{bottom:542.773333pt;}
.yf2{bottom:543.253333pt;}
.y114{bottom:543.573333pt;}
.y48{bottom:543.893333pt;}
.y1b9{bottom:550.773333pt;}
.y136{bottom:552.613333pt;}
.y79{bottom:555.253333pt;}
.y11{bottom:555.333333pt;}
.ya1{bottom:556.613333pt;}
.y190{bottom:558.453333pt;}
.yf1{bottom:558.853333pt;}
.y113{bottom:559.253333pt;}
.y47{bottom:559.493333pt;}
.y1b8{bottom:566.453333pt;}
.yce{bottom:567.973333pt;}
.y135{bottom:568.213333pt;}
.y78{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.y18f{bottom:574.053333pt;}
.yf0{bottom:574.533333pt;}
.y46{bottom:575.173333pt;}
.y15b{bottom:575.493333pt;}
.ya4{bottom:580.933333pt;}
.y1db{bottom:582.053333pt;}
.y112{bottom:582.853333pt;}
.ycd{bottom:583.573333pt;}
.y134{bottom:583.813333pt;}
.yf{bottom:586.533333pt;}
.y18e{bottom:589.653333pt;}
.y1b7{bottom:590.053333pt;}
.y45{bottom:590.773333pt;}
.y15a{bottom:591.173333pt;}
.ycc{bottom:599.253333pt;}
.y133{bottom:599.493333pt;}
.ye{bottom:602.213333pt;}
.y77{bottom:602.453333pt;}
.ya3{bottom:605.253333pt;}
.y1b6{bottom:605.653333pt;}
.yef{bottom:606.133333pt;}
.y44{bottom:606.453333pt;}
.y159{bottom:606.773333pt;}
.y18d{bottom:613.333333pt;}
.y111{bottom:614.533333pt;}
.ycb{bottom:614.853333pt;}
.y132{bottom:615.093333pt;}
.yd{bottom:617.813333pt;}
.y76{bottom:618.133333pt;}
.y1da{bottom:621.333333pt;}
.yee{bottom:621.733333pt;}
.y43{bottom:622.053333pt;}
.y158{bottom:622.453333pt;}
.y18c{bottom:628.933333pt;}
.y1b5{bottom:629.333333pt;}
.y9e{bottom:629.493333pt;}
.y110{bottom:630.133333pt;}
.yca{bottom:630.533333pt;}
.y131{bottom:630.773333pt;}
.yc{bottom:633.493333pt;}
.y75{bottom:633.733333pt;}
.y1d9{bottom:636.933333pt;}
.yed{bottom:637.413333pt;}
.y42{bottom:637.653333pt;}
.y157{bottom:638.053333pt;}
.y18b{bottom:644.613333pt;}
.y1b4{bottom:644.933333pt;}
.y10f{bottom:645.733333pt;}
.yc9{bottom:646.133333pt;}
.y130{bottom:646.373333pt;}
.y74{bottom:649.413333pt;}
.y1d8{bottom:652.613333pt;}
.yec{bottom:653.013333pt;}
.y41{bottom:653.333333pt;}
.y156{bottom:653.653333pt;}
.ya0{bottom:653.813333pt;}
.yb{bottom:657.413333pt;}
.y1b3{bottom:660.613333pt;}
.y10e{bottom:661.413333pt;}
.y12f{bottom:661.973333pt;}
.y73{bottom:665.013333pt;}
.y18a{bottom:668.213333pt;}
.y40{bottom:668.933333pt;}
.y155{bottom:669.333333pt;}
.yc8{bottom:669.733333pt;}
.y1d7{bottom:676.213333pt;}
.y12e{bottom:677.653333pt;}
.y9d{bottom:678.133333pt;}
.y72{bottom:680.613333pt;}
.y189{bottom:683.813333pt;}
.y1b2{bottom:684.213333pt;}
.y3f{bottom:684.613333pt;}
.yeb{bottom:684.693333pt;}
.y154{bottom:684.933333pt;}
.y10d{bottom:693.013333pt;}
.y12d{bottom:693.253333pt;}
.y71{bottom:696.293333pt;}
.y1b1{bottom:699.813333pt;}
.y3e{bottom:700.213333pt;}
.ya{bottom:700.293333pt;}
.y153{bottom:700.613333pt;}
.yc7{bottom:701.413333pt;}
.y9c{bottom:702.373333pt;}
.y10c{bottom:706.373333pt;}
.y188{bottom:707.493333pt;}
.y70{bottom:711.893333pt;}
.y1d6{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.y152{bottom:716.213333pt;}
.yc6{bottom:717.013333pt;}
.y12c{bottom:717.173333pt;}
.y187{bottom:723.093333pt;}
.y1b0{bottom:723.493333pt;}
.y9b{bottom:726.693333pt;}
.y6f{bottom:727.573333pt;}
.y10b{bottom:730.613333pt;}
.y1d5{bottom:731.093333pt;}
.y151{bottom:731.813333pt;}
.y9{bottom:731.893333pt;}
.yc5{bottom:732.693333pt;}
.y1af{bottom:739.093333pt;}
.y6e{bottom:743.173333pt;}
.y186{bottom:746.693333pt;}
.y3c{bottom:747.493333pt;}
.yc4{bottom:748.293333pt;}
.y1ae{bottom:754.693333pt;}
.y108{bottom:754.933333pt;}
.y12b{bottom:760.053333pt;}
.y185{bottom:762.373333pt;}
.y3b{bottom:763.093333pt;}
.yea{bottom:763.573333pt;}
.y8{bottom:763.733333pt;}
.yc3{bottom:763.893333pt;}
.y9a{bottom:769.973333pt;}
.y1ad{bottom:770.373333pt;}
.y6d{bottom:774.773333pt;}
.y12a{bottom:775.733333pt;}
.y3a{bottom:778.693333pt;}
.y10a{bottom:779.253333pt;}
.y184{bottom:785.973333pt;}
.y6c{bottom:790.453333pt;}
.y129{bottom:791.333333pt;}
.yc2{bottom:793.253333pt;}
.y1ac{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.ye9{bottom:795.173333pt;}
.y7{bottom:795.733333pt;}
.y99{bottom:801.653333pt;}
.y109{bottom:803.493333pt;}
.y6b{bottom:806.053333pt;}
.y128{bottom:807.013333pt;}
.y1ab{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y98{bottom:817.253333pt;}
.ybe{bottom:817.493333pt;}
.y6a{bottom:821.733333pt;}
.ye8{bottom:824.533333pt;}
.y1d4{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y107{bottom:827.813333pt;}
.y97{bottom:832.853333pt;}
.y1aa{bottom:833.253333pt;}
.y69{bottom:837.333333pt;}
.y127{bottom:837.973333pt;}
.y1d3{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y96{bottom:848.533333pt;}
.ye5{bottom:848.773333pt;}
.y1a9{bottom:848.853333pt;}
.y106{bottom:852.133333pt;}
.y68{bottom:852.933333pt;}
.y183{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.yc1{bottom:857.493333pt;}
.y1a8{bottom:864.533333pt;}
.y67{bottom:868.613333pt;}
.y95{bottom:872.133333pt;}
.y34{bottom:872.533333pt;}
.ye7{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y1d2{bottom:880.133333pt;}
.yc0{bottom:881.733333pt;}
.y66{bottom:884.213333pt;}
.y33{bottom:888.133333pt;}
.y105{bottom:895.413333pt;}
.y182{bottom:895.813333pt;}
.ye6{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y94{bottom:903.840000pt;}
.yba{bottom:906.080000pt;}
.y181{bottom:911.440000pt;}
.y65{bottom:915.520000pt;}
.y93{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.ye2{bottom:921.680000pt;}
.y104{bottom:927.040000pt;}
.ybc{bottom:930.400000pt;}
.y64{bottom:931.120000pt;}
.y92{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y103{bottom:942.720000pt;}
.y1a7{bottom:943.040000pt;}
.ye4{bottom:946.000000pt;}
.y91{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y63{bottom:955.040000pt;}
.y1a6{bottom:958.720000pt;}
.y90{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.yb9{bottom:970.320000pt;}
.y180{bottom:974.320000pt;}
.y8f{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.h14{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h12{height:39.280000pt;}
.hb{height:45.246562pt;}
.h6{height:46.499062pt;}
.hd{height:47.920000pt;}
.h16{height:48.000000pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:53.309531pt;}
.h18{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h11{height:63.600000pt;}
.h4{height:64.875937pt;}
.he{height:72.240000pt;}
.h15{height:72.266667pt;}
.h13{height:87.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:21.120000pt;}
.w27{width:28.560000pt;}
.w11{width:46.000000pt;}
.w2e{width:50.240000pt;}
.w1d{width:50.480000pt;}
.w2a{width:50.800000pt;}
.w2d{width:51.760000pt;}
.w29{width:53.440000pt;}
.w16{width:54.160000pt;}
.w13{width:67.840000pt;}
.w2f{width:68.640000pt;}
.w22{width:71.760000pt;}
.w1e{width:75.920000pt;}
.w2b{width:76.880000pt;}
.w15{width:83.280000pt;}
.w3{width:88.560000pt;}
.wc{width:92.960000pt;}
.w28{width:93.306667pt;}
.w18{width:93.946667pt;}
.w25{width:98.640000pt;}
.w20{width:99.306667pt;}
.w14{width:100.960000pt;}
.wa{width:106.000000pt;}
.w5{width:106.026667pt;}
.w26{width:107.440000pt;}
.w1f{width:110.000000pt;}
.w23{width:114.080000pt;}
.we{width:115.786667pt;}
.w1a{width:121.146667pt;}
.w30{width:126.186667pt;}
.w33{width:127.546667pt;}
.w32{width:131.440000pt;}
.w6{width:137.280000pt;}
.w12{width:138.160000pt;}
.w10{width:153.066667pt;}
.w4{width:154.080000pt;}
.w9{width:154.106667pt;}
.wb{width:160.746667pt;}
.w31{width:167.680000pt;}
.wf{width:169.440000pt;}
.w1c{width:170.186667pt;}
.w1b{width:186.560000pt;}
.w8{width:254.346667pt;}
.w24{width:435.386667pt;}
.w2c{width:467.226667pt;}
.w21{width:572.533333pt;}
.w19{width:577.013333pt;}
.w7{width:653.733333pt;}
.wd{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x1{left:60.480000pt;}
.x9{left:70.160000pt;}
.x15{left:82.960000pt;}
.x31{left:98.879988pt;}
.x16{left:108.480000pt;}
.x1d{left:110.720000pt;}
.x1c{left:130.320000pt;}
.x23{left:132.560000pt;}
.x4{left:153.066667pt;}
.x2b{left:163.386667pt;}
.xe{left:177.546667pt;}
.x24{left:179.306667pt;}
.x2{left:180.266655pt;}
.x2a{left:201.066667pt;}
.x2c{left:215.866667pt;}
.x17{left:230.266667pt;}
.xd{left:231.546667pt;}
.x1e{left:232.506667pt;}
.x6{left:242.266667pt;}
.x13{left:246.026667pt;}
.x2d{left:266.746667pt;}
.x25{left:278.586667pt;}
.x22{left:304.986667pt;}
.x1b{left:306.826667pt;}
.xa{left:325.146667pt;}
.x2e{left:336.026667pt;}
.xf{left:347.626667pt;}
.x26{left:386.666667pt;}
.x7{left:397.066667pt;}
.x30{left:399.306667pt;}
.x27{left:415.866667pt;}
.x18{left:417.466667pt;}
.x1f{left:419.706667pt;}
.x2f{left:462.933333pt;}
.xb{left:479.893333pt;}
.x10{left:501.413333pt;}
.x8{left:503.733333pt;}
.x28{left:509.813333pt;}
.x11{left:548.053333pt;}
.x29{left:563.893333pt;}
.xc{left:586.613333pt;}
.x19{left:588.373333pt;}
.x20{left:590.613333pt;}
.x12{left:594.693333pt;}
.x21{left:637.253333pt;}
.x1a{left:639.493333pt;}
.x14{left:678.693333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  