
    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_2c9db65328d87522e2cdd6ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_22f67f604ff76d6278f92f12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_ad549a488704ed13f4a71e4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_694b299bde787f556e0d6a3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c944c24e0c59ab10958f2e75.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_c777f9c4ccc785fda29cc8dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.004320px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.706720px;}
.ls7{letter-spacing:46.002720px;}
.lsb{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.lsc{letter-spacing:65.442720px;}
.ls8{letter-spacing:102.186720px;}
.ls9{letter-spacing:201.036000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.715680px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:2.486880px;}
._2{width:4.245600px;}
._e{width:6.025440px;}
._9{width:7.051680px;}
._8{width:8.426160px;}
._7{width:9.561600px;}
._a{width:10.577520px;}
._b{width:11.593440px;}
._c{width:13.079760px;}
._12{width:15.955440px;}
._f{width:17.681280px;}
._10{width:19.011360px;}
._14{width:20.370000px;}
._11{width:21.685200px;}
._21{width:22.828320px;}
._d{width:24.015840px;}
._26{width:25.525200px;}
._1e{width:27.668880px;}
._1d{width:28.864080px;}
._27{width:31.485840px;}
._28{width:32.704080px;}
._2d{width:33.815760px;}
._23{width:35.021520px;}
._22{width:36.213840px;}
._1c{width:38.186640px;}
._16{width:40.218480px;}
._15{width:41.294160px;}
._20{width:47.747760px;}
._1f{width:49.003200px;}
._18{width:51.094800px;}
._17{width:52.521360px;}
._24{width:59.513280px;}
._1b{width:74.221920px;}
._5{width:85.656000px;}
._25{width:94.592400px;}
._1a{width:114.791280px;}
._19{width:116.113680px;}
._29{width:122.858880px;}
._2a{width:132.061920px;}
._2c{width:151.159680px;}
._2b{width:185.430960px;}
._13{width:201.036000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.240000px;}
.y11c{bottom:3.420000px;}
.yef{bottom:3.600000px;}
.ye1{bottom:3.780000px;}
.y11a{bottom:4.140000px;}
.yc0{bottom:4.320000px;}
.ycc{bottom:4.500000px;}
.y117{bottom:4.680000px;}
.ye3{bottom:5.040000px;}
.yc2{bottom:5.760000px;}
.y16f{bottom:7.560000px;}
.y8c{bottom:11.700000px;}
.y132{bottom:17.820000px;}
.y150{bottom:19.980000px;}
.yc8{bottom:20.340000px;}
.yf5{bottom:20.514000px;}
.yc4{bottom:20.520000px;}
.y11d{bottom:21.240000px;}
.y119{bottom:21.420000px;}
.y8b{bottom:29.700000px;}
.y131{bottom:35.100000px;}
.ya{bottom:36.720000px;}
.ye5{bottom:37.800000px;}
.y14f{bottom:38.340000px;}
.y14e{bottom:39.420000px;}
.y155{bottom:40.320000px;}
.y136{bottom:52.200000px;}
.y9{bottom:55.260000px;}
.y154{bottom:58.680000px;}
.y135{bottom:69.480000px;}
.y153{bottom:75.960000px;}
.y152{bottom:77.040000px;}
.y134{bottom:86.760000px;}
.yf6{bottom:112.536000px;}
.yd9{bottom:119.196000px;}
.y6f{bottom:121.176000px;}
.y183{bottom:124.236000px;}
.y7f{bottom:124.416000px;}
.y12d{bottom:125.676000px;}
.y3c{bottom:129.456000px;}
.yf4{bottom:131.076000px;}
.yd8{bottom:133.956000px;}
.y6e{bottom:139.716000px;}
.y182{bottom:141.336000px;}
.y7e{bottom:141.696000px;}
.y12c{bottom:142.956000px;}
.y3b{bottom:147.996000px;}
.yd7{bottom:153.210000px;}
.y6d{bottom:158.430000px;}
.y181{bottom:158.610000px;}
.y7d{bottom:158.970000px;}
.yb3{bottom:159.330000px;}
.y12b{bottom:160.230000px;}
.yf3{bottom:166.350000px;}
.y3a{bottom:166.710000px;}
.yd6{bottom:172.290000px;}
.y180{bottom:175.890000px;}
.y7c{bottom:176.250000px;}
.yb2{bottom:176.610000px;}
.y6c{bottom:176.970000px;}
.y12a{bottom:177.330000px;}
.y14d{bottom:184.710000px;}
.yf2{bottom:184.890000px;}
.y39{bottom:185.250000px;}
.yd5{bottom:191.370000px;}
.y17f{bottom:193.170000px;}
.y7b{bottom:193.350000px;}
.yb1{bottom:193.890000px;}
.y129{bottom:194.610000px;}
.y6b{bottom:195.690000px;}
.yf1{bottom:203.430000px;}
.y38{bottom:203.970000px;}
.yd4{bottom:210.450000px;}
.y7a{bottom:210.630000px;}
.yb0{bottom:211.170000px;}
.y128{bottom:211.890000px;}
.y6a{bottom:214.230000px;}
.yf0{bottom:221.970000px;}
.y37{bottom:222.510000px;}
.y17e{bottom:227.730000px;}
.y79{bottom:227.910000px;}
.yaf{bottom:228.450000px;}
.y127{bottom:229.170000px;}
.y69{bottom:232.770000px;}
.y14c{bottom:238.890000px;}
.y36{bottom:241.230000px;}
.y17d{bottom:244.830000px;}
.y78{bottom:245.190000px;}
.yae{bottom:245.730000px;}
.y126{bottom:246.450000px;}
.y68{bottom:251.490000px;}
.yee{bottom:257.250000px;}
.y35{bottom:259.770000px;}
.y14b{bottom:260.130000px;}
.y17c{bottom:262.110000px;}
.y77{bottom:262.470000px;}
.yad{bottom:262.830000px;}
.y125{bottom:263.550000px;}
.yd3{bottom:264.810000px;}
.y67{bottom:270.030000px;}
.yed{bottom:275.610000px;}
.y14a{bottom:277.410000px;}
.y34{bottom:278.310000px;}
.y17b{bottom:279.390000px;}
.y76{bottom:279.750000px;}
.yac{bottom:280.110000px;}
.y124{bottom:280.830000px;}
.yd2{bottom:284.070000px;}
.y66{bottom:288.750000px;}
.y149{bottom:294.690000px;}
.y17a{bottom:296.670000px;}
.y75{bottom:296.850000px;}
.y33{bottom:297.030000px;}
.yab{bottom:297.390000px;}
.y123{bottom:298.110000px;}
.yd1{bottom:303.150000px;}
.y65{bottom:307.290000px;}
.yec{bottom:310.890000px;}
.y148{bottom:311.790000px;}
.y179{bottom:313.950000px;}
.y74{bottom:314.130000px;}
.yaa{bottom:314.670000px;}
.y122{bottom:315.390000px;}
.y32{bottom:315.570000px;}
.y64{bottom:326.010000px;}
.y147{bottom:329.070000px;}
.y178{bottom:331.050000px;}
.y73{bottom:331.410000px;}
.ya9{bottom:331.950000px;}
.y121{bottom:332.670000px;}
.y31{bottom:334.290000px;}
.yd0{bottom:338.475000px;}
.y63{bottom:344.595000px;}
.yeb{bottom:346.215000px;}
.y146{bottom:346.395000px;}
.y11f{bottom:347.475000px;}
.y177{bottom:348.375000px;}
.y72{bottom:348.735000px;}
.ya8{bottom:349.095000px;}
.y30{bottom:351.615000px;}
.ycf{bottom:357.555000px;}
.y62{bottom:363.135000px;}
.y145{bottom:363.675000px;}
.yea{bottom:364.755000px;}
.y120{bottom:365.475000px;}
.y176{bottom:365.655000px;}
.y71{bottom:366.015000px;}
.ya7{bottom:366.375000px;}
.y2f{bottom:368.715000px;}
.yce{bottom:376.635000px;}
.y144{bottom:380.955000px;}
.y61{bottom:381.855000px;}
.y175{bottom:382.935000px;}
.y70{bottom:383.295000px;}
.ya6{bottom:383.655000px;}
.y2e{bottom:389.955000px;}
.ycd{bottom:395.715000px;}
.y143{bottom:398.055000px;}
.y174{bottom:400.215000px;}
.y60{bottom:400.395000px;}
.ya5{bottom:400.935000px;}
.y11e{bottom:401.655000px;}
.ye9{bottom:401.835000px;}
.y2d{bottom:408.675000px;}
.y142{bottom:415.335000px;}
.y173{bottom:417.495000px;}
.ya4{bottom:418.215000px;}
.y5f{bottom:419.115000px;}
.y118{bottom:419.655000px;}
.ye8{bottom:420.375000px;}
.y2c{bottom:427.215000px;}
.ycb{bottom:430.995000px;}
.y141{bottom:432.615000px;}
.y172{bottom:434.595000px;}
.ya3{bottom:435.495000px;}
.y5e{bottom:437.655000px;}
.y11b{bottom:437.835000px;}
.ye7{bottom:438.915000px;}
.y2b{bottom:445.755000px;}
.y171{bottom:449.355000px;}
.y140{bottom:449.895000px;}
.yca{bottom:450.255000px;}
.ya2{bottom:452.595000px;}
.y116{bottom:455.835000px;}
.y5d{bottom:456.195000px;}
.y2a{bottom:463.035000px;}
.y13f{bottom:467.175000px;}
.yc9{bottom:469.335000px;}
.ya1{bottom:469.875000px;}
.ye6{bottom:474.195000px;}
.y5c{bottom:474.915000px;}
.y115{bottom:475.275000px;}
.y29{bottom:480.315000px;}
.y13e{bottom:484.455000px;}
.y170{bottom:484.635000px;}
.ya0{bottom:487.155000px;}
.y5b{bottom:493.455000px;}
.y28{bottom:497.595000px;}
.y189{bottom:499.935000px;}
.y13d{bottom:501.555000px;}
.y9f{bottom:504.435000px;}
.yc7{bottom:504.615000px;}
.ye4{bottom:509.295000px;}
.y5a{bottom:512.175000px;}
.y114{bottom:513.795000px;}
.y27{bottom:514.875000px;}
.y188{bottom:517.215000px;}
.y13c{bottom:518.835000px;}
.y9e{bottom:521.715000px;}
.y59{bottom:530.715000px;}
.y113{bottom:530.895000px;}
.y26{bottom:532.155000px;}
.y187{bottom:534.495000px;}
.y13b{bottom:536.115000px;}
.y16e{bottom:537.195000px;}
.y9d{bottom:538.995000px;}
.yc6{bottom:539.715000px;}
.y112{bottom:548.175000px;}
.y58{bottom:549.255000px;}
.y25{bottom:549.435000px;}
.y186{bottom:551.775000px;}
.y13a{bottom:553.395000px;}
.y9c{bottom:556.095000px;}
.ye2{bottom:561.855000px;}
.y16d{bottom:562.755000px;}
.y111{bottom:565.455000px;}
.y24{bottom:566.535000px;}
.y57{bottom:567.975000px;}
.y185{bottom:569.055000px;}
.y139{bottom:570.675000px;}
.y9b{bottom:573.375000px;}
.yc5{bottom:574.995000px;}
.y16c{bottom:580.035000px;}
.ye0{bottom:581.655000px;}
.y110{bottom:582.735000px;}
.y23{bottom:583.815000px;}
.y184{bottom:586.155000px;}
.y56{bottom:586.515000px;}
.y138{bottom:587.955000px;}
.y9a{bottom:590.655000px;}
.y16b{bottom:597.315000px;}
.y10f{bottom:600.015000px;}
.y22{bottom:601.095000px;}
.ydf{bottom:603.435000px;}
.y137{bottom:605.085000px;}
.y55{bottom:605.265000px;}
.y99{bottom:607.965000px;}
.yc3{bottom:610.305000px;}
.y16a{bottom:614.625000px;}
.y10e{bottom:617.325000px;}
.y21{bottom:618.405000px;}
.y133{bottom:619.845000px;}
.yde{bottom:620.745000px;}
.y54{bottom:623.805000px;}
.y98{bottom:625.245000px;}
.y169{bottom:631.725000px;}
.y10d{bottom:634.425000px;}
.y20{bottom:635.685000px;}
.ydd{bottom:638.025000px;}
.y53{bottom:642.525000px;}
.yc1{bottom:645.585000px;}
.y168{bottom:649.005000px;}
.y10c{bottom:651.705000px;}
.y1f{bottom:652.965000px;}
.ydc{bottom:655.305000px;}
.y97{bottom:659.625000px;}
.y52{bottom:661.065000px;}
.ybf{bottom:666.105000px;}
.y167{bottom:666.285000px;}
.y10b{bottom:668.985000px;}
.y1e{bottom:670.065000px;}
.ydb{bottom:672.585000px;}
.y96{bottom:676.905000px;}
.y51{bottom:679.605000px;}
.y166{bottom:683.565000px;}
.y10a{bottom:686.265000px;}
.y1d{bottom:687.345000px;}
.ybe{bottom:688.425000px;}
.yda{bottom:689.685000px;}
.y95{bottom:694.185000px;}
.y50{bottom:698.325000px;}
.y165{bottom:700.845000px;}
.y109{bottom:703.545000px;}
.y1c{bottom:705.885000px;}
.ybd{bottom:706.965000px;}
.y94{bottom:711.465000px;}
.y4f{bottom:716.865000px;}
.y164{bottom:717.945000px;}
.y108{bottom:720.645000px;}
.y130{bottom:721.365000px;}
.ybc{bottom:724.245000px;}
.y1b{bottom:724.605000px;}
.y93{bottom:728.745000px;}
.y163{bottom:735.225000px;}
.y4e{bottom:735.585000px;}
.y107{bottom:737.925000px;}
.ybb{bottom:741.525000px;}
.y1a{bottom:742.965000px;}
.y92{bottom:745.845000px;}
.y162{bottom:752.505000px;}
.y4d{bottom:754.125000px;}
.y106{bottom:755.205000px;}
.yba{bottom:758.805000px;}
.y91{bottom:763.125000px;}
.y19{bottom:767.985000px;}
.y161{bottom:769.785000px;}
.y12e{bottom:771.225000px;}
.y105{bottom:772.485000px;}
.y4c{bottom:772.665000px;}
.yb9{bottom:776.085000px;}
.y90{bottom:777.885000px;}
.y160{bottom:787.065000px;}
.y18{bottom:788.325000px;}
.y12f{bottom:789.225000px;}
.y104{bottom:789.765000px;}
.y4b{bottom:791.385000px;}
.yb8{bottom:793.185000px;}
.y8f{bottom:795.885000px;}
.y17{bottom:802.905000px;}
.y15f{bottom:804.345000px;}
.y103{bottom:807.045000px;}
.y4a{bottom:809.925000px;}
.yb7{bottom:810.465000px;}
.y8e{bottom:813.885000px;}
.y15e{bottom:821.445000px;}
.y102{bottom:824.145000px;}
.yb6{bottom:827.745000px;}
.y49{bottom:828.645000px;}
.y16{bottom:829.365000px;}
.y8a{bottom:831.885000px;}
.y15d{bottom:838.725000px;}
.y101{bottom:841.425000px;}
.yb5{bottom:845.025000px;}
.y48{bottom:847.185000px;}
.y15{bottom:849.885000px;}
.y15c{bottom:856.005000px;}
.y100{bottom:858.705000px;}
.yb4{bottom:862.305000px;}
.y47{bottom:865.725000px;}
.y14{bottom:870.225000px;}
.y15b{bottom:873.330000px;}
.yff{bottom:876.030000px;}
.y89{bottom:879.630000px;}
.y46{bottom:884.490000px;}
.y15a{bottom:890.610000px;}
.y13{bottom:890.790000px;}
.yfe{bottom:893.310000px;}
.y88{bottom:896.730000px;}
.y45{bottom:903.030000px;}
.y159{bottom:907.890000px;}
.yfd{bottom:910.590000px;}
.y12{bottom:911.310000px;}
.y87{bottom:914.010000px;}
.y44{bottom:921.750000px;}
.y158{bottom:924.990000px;}
.y11{bottom:925.890000px;}
.yfc{bottom:927.690000px;}
.y86{bottom:931.290000px;}
.y43{bottom:940.290000px;}
.y157{bottom:942.270000px;}
.yfb{bottom:944.970000px;}
.y85{bottom:948.570000px;}
.y10{bottom:952.170000px;}
.y42{bottom:959.010000px;}
.y156{bottom:959.550000px;}
.yfa{bottom:962.250000px;}
.y84{bottom:965.850000px;}
.yf{bottom:972.690000px;}
.y151{bottom:974.310000px;}
.yf9{bottom:977.010000px;}
.y41{bottom:977.550000px;}
.y83{bottom:982.950000px;}
.ye{bottom:993.210000px;}
.yf8{bottom:995.550000px;}
.y40{bottom:996.090000px;}
.y82{bottom:1000.230000px;}
.yd{bottom:1012.470000px;}
.y3f{bottom:1014.810000px;}
.y81{bottom:1017.510000px;}
.yc{bottom:1026.870000px;}
.yf7{bottom:1030.830000px;}
.y3e{bottom:1033.350000px;}
.y80{bottom:1034.790000px;}
.yb{bottom:1049.370000px;}
.y3d{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hf{height:17.280000px;}
.h1d{height:17.460000px;}
.h1a{height:17.640000px;}
.h17{height:17.820000px;}
.h12{height:18.360000px;}
.h1b{height:18.720000px;}
.h18{height:19.080000px;}
.h13{height:19.620000px;}
.h23{height:21.600000px;}
.he{height:25.596000px;}
.h9{height:29.464453px;}
.h16{height:34.380000px;}
.h14{height:34.560000px;}
.h15{height:34.596000px;}
.h8{height:34.855313px;}
.h1e{height:35.280000px;}
.h1c{height:35.460000px;}
.ha{height:37.437188px;}
.h5{height:42.164648px;}
.h11{height:43.302656px;}
.h10{height:43.506914px;}
.hd{height:43.596000px;}
.h6{height:48.410156px;}
.h1f{height:49.140000px;}
.hc{height:49.255313px;}
.h4{height:50.800781px;}
.h19{height:51.840000px;}
.h21{height:53.460000px;}
.h2{height:53.573906px;}
.hb{height:55.735312px;}
.h3{height:59.383125px;}
.h7{height:65.884219px;}
.h22{height:90.900000px;}
.h20{height:100.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:82.656000px;}
.w11{width:87.300000px;}
.w10{width:87.336000px;}
.wb{width:87.480000px;}
.wa{width:87.516000px;}
.wc{width:87.696000px;}
.w19{width:99.360000px;}
.w1e{width:149.580000px;}
.w1c{width:164.370000px;}
.w16{width:169.770000px;}
.w17{width:173.730000px;}
.w13{width:175.320000px;}
.wf{width:175.350000px;}
.w8{width:175.710000px;}
.w9{width:176.070000px;}
.w15{width:182.730000px;}
.w23{width:185.430000px;}
.w5{width:189.390000px;}
.w6{width:192.090000px;}
.w1d{width:194.430000px;}
.w1a{width:207.210000px;}
.w21{width:264.270000px;}
.w22{width:266.790000px;}
.w3{width:313.770000px;}
.we{width:329.070000px;}
.w7{width:329.430000px;}
.w1b{width:344.730000px;}
.w1f{width:345.090000px;}
.w20{width:346.755000px;}
.w4{width:382.215000px;}
.w14{width:527.685000px;}
.w12{width:681.585000px;}
.wd{width:682.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x3a{left:19.485000px;}
.x36{left:20.745000px;}
.x2d{left:30.645000px;}
.x44{left:34.770000px;}
.x47{left:53.994000px;}
.x38{left:57.780000px;}
.x45{left:61.770000px;}
.x4a{left:63.945000px;}
.x3b{left:65.340000px;}
.x21{left:72.225000px;}
.x1f{left:74.730000px;}
.x2b{left:81.030000px;}
.x23{left:87.150000px;}
.x24{left:88.425000px;}
.x1b{left:100.296000px;}
.x1{left:108.035987px;}
.x31{left:114.155987px;}
.x29{left:121.536000px;}
.x2{left:123.155987px;}
.x41{left:125.135987px;}
.x27{left:129.275987px;}
.x3c{left:130.355987px;}
.x17{left:135.035987px;}
.x43{left:138.270000px;}
.x39{left:139.725000px;}
.x1c{left:141.474000px;}
.x1e{left:152.670000px;}
.x4{left:157.169987px;}
.x18{left:162.029987px;}
.x11{left:182.549987px;}
.x25{left:189.029987px;}
.xa{left:205.589987px;}
.x7{left:212.249987px;}
.x19{left:216.029987px;}
.xb{left:223.949987px;}
.xf{left:273.269987px;}
.x33{left:276.330000px;}
.x28{left:281.414987px;}
.x10{left:287.534987px;}
.x8{left:288.614987px;}
.x3e{left:308.235000px;}
.x42{left:309.674987px;}
.x3d{left:315.254987px;}
.xd{left:319.754987px;}
.x46{left:325.334987px;}
.x26{left:346.394987px;}
.x13{left:353.054987px;}
.x37{left:359.715000px;}
.x16{left:363.854987px;}
.x48{left:365.475000px;}
.x4c{left:370.334987px;}
.xe{left:372.854987px;}
.xc{left:385.094987px;}
.x15{left:386.534987px;}
.x4b{left:391.574987px;}
.x6{left:396.434987px;}
.x1a{left:408.134987px;}
.x32{left:410.654987px;}
.x5{left:412.274987px;}
.x1d{left:414.795000px;}
.x12{left:427.034987px;}
.x14{left:446.474987px;}
.x2a{left:451.875000px;}
.x34{left:459.795000px;}
.x9{left:473.504987px;}
.x40{left:503.385000px;}
.x3{left:518.504987px;}
.x2e{left:540.105000px;}
.x20{left:604.905000px;}
.x2c{left:628.305000px;}
.x35{left:630.285000px;}
.x49{left:632.985000px;}
.x3f{left:653.685000px;}
.x30{left:715.650000px;}
.x2f{left:716.730000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.003840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.072640pt;}
.ls7{letter-spacing:40.891307pt;}
.lsb{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.lsc{letter-spacing:58.171307pt;}
.ls8{letter-spacing:90.832640pt;}
.ls9{letter-spacing:178.698667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.636160pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.210560pt;}
._2{width:3.773867pt;}
._e{width:5.355947pt;}
._9{width:6.268160pt;}
._8{width:7.489920pt;}
._7{width:8.499200pt;}
._a{width:9.402240pt;}
._b{width:10.305280pt;}
._c{width:11.626453pt;}
._12{width:14.182613pt;}
._f{width:15.716693pt;}
._10{width:16.898987pt;}
._14{width:18.106667pt;}
._11{width:19.275733pt;}
._21{width:20.291840pt;}
._d{width:21.347413pt;}
._26{width:22.689067pt;}
._1e{width:24.594560pt;}
._1d{width:25.656960pt;}
._27{width:27.987413pt;}
._28{width:29.070293pt;}
._2d{width:30.058453pt;}
._23{width:31.130240pt;}
._22{width:32.190080pt;}
._1c{width:33.943680pt;}
._16{width:35.749760pt;}
._15{width:36.705920pt;}
._20{width:42.442453pt;}
._1f{width:43.558400pt;}
._18{width:45.417600pt;}
._17{width:46.685653pt;}
._24{width:52.900693pt;}
._1b{width:65.975040pt;}
._5{width:76.138667pt;}
._25{width:84.082133pt;}
._1a{width:102.036693pt;}
._19{width:103.212160pt;}
._29{width:109.207893pt;}
._2a{width:117.388373pt;}
._2c{width:134.364160pt;}
._2b{width:164.827520pt;}
._13{width:178.698667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.880000pt;}
.y11c{bottom:3.040000pt;}
.yef{bottom:3.200000pt;}
.ye1{bottom:3.360000pt;}
.y11a{bottom:3.680000pt;}
.yc0{bottom:3.840000pt;}
.ycc{bottom:4.000000pt;}
.y117{bottom:4.160000pt;}
.ye3{bottom:4.480000pt;}
.yc2{bottom:5.120000pt;}
.y16f{bottom:6.720000pt;}
.y8c{bottom:10.400000pt;}
.y132{bottom:15.840000pt;}
.y150{bottom:17.760000pt;}
.yc8{bottom:18.080000pt;}
.yf5{bottom:18.234667pt;}
.yc4{bottom:18.240000pt;}
.y11d{bottom:18.880000pt;}
.y119{bottom:19.040000pt;}
.y8b{bottom:26.400000pt;}
.y131{bottom:31.200000pt;}
.ya{bottom:32.640000pt;}
.ye5{bottom:33.600000pt;}
.y14f{bottom:34.080000pt;}
.y14e{bottom:35.040000pt;}
.y155{bottom:35.840000pt;}
.y136{bottom:46.400000pt;}
.y9{bottom:49.120000pt;}
.y154{bottom:52.160000pt;}
.y135{bottom:61.760000pt;}
.y153{bottom:67.520000pt;}
.y152{bottom:68.480000pt;}
.y134{bottom:77.120000pt;}
.yf6{bottom:100.032000pt;}
.yd9{bottom:105.952000pt;}
.y6f{bottom:107.712000pt;}
.y183{bottom:110.432000pt;}
.y7f{bottom:110.592000pt;}
.y12d{bottom:111.712000pt;}
.y3c{bottom:115.072000pt;}
.yf4{bottom:116.512000pt;}
.yd8{bottom:119.072000pt;}
.y6e{bottom:124.192000pt;}
.y182{bottom:125.632000pt;}
.y7e{bottom:125.952000pt;}
.y12c{bottom:127.072000pt;}
.y3b{bottom:131.552000pt;}
.yd7{bottom:136.186667pt;}
.y6d{bottom:140.826667pt;}
.y181{bottom:140.986667pt;}
.y7d{bottom:141.306667pt;}
.yb3{bottom:141.626667pt;}
.y12b{bottom:142.426667pt;}
.yf3{bottom:147.866667pt;}
.y3a{bottom:148.186667pt;}
.yd6{bottom:153.146667pt;}
.y180{bottom:156.346667pt;}
.y7c{bottom:156.666667pt;}
.yb2{bottom:156.986667pt;}
.y6c{bottom:157.306667pt;}
.y12a{bottom:157.626667pt;}
.y14d{bottom:164.186667pt;}
.yf2{bottom:164.346667pt;}
.y39{bottom:164.666667pt;}
.yd5{bottom:170.106667pt;}
.y17f{bottom:171.706667pt;}
.y7b{bottom:171.866667pt;}
.yb1{bottom:172.346667pt;}
.y129{bottom:172.986667pt;}
.y6b{bottom:173.946667pt;}
.yf1{bottom:180.826667pt;}
.y38{bottom:181.306667pt;}
.yd4{bottom:187.066667pt;}
.y7a{bottom:187.226667pt;}
.yb0{bottom:187.706667pt;}
.y128{bottom:188.346667pt;}
.y6a{bottom:190.426667pt;}
.yf0{bottom:197.306667pt;}
.y37{bottom:197.786667pt;}
.y17e{bottom:202.426667pt;}
.y79{bottom:202.586667pt;}
.yaf{bottom:203.066667pt;}
.y127{bottom:203.706667pt;}
.y69{bottom:206.906667pt;}
.y14c{bottom:212.346667pt;}
.y36{bottom:214.426667pt;}
.y17d{bottom:217.626667pt;}
.y78{bottom:217.946667pt;}
.yae{bottom:218.426667pt;}
.y126{bottom:219.066667pt;}
.y68{bottom:223.546667pt;}
.yee{bottom:228.666667pt;}
.y35{bottom:230.906667pt;}
.y14b{bottom:231.226667pt;}
.y17c{bottom:232.986667pt;}
.y77{bottom:233.306667pt;}
.yad{bottom:233.626667pt;}
.y125{bottom:234.266667pt;}
.yd3{bottom:235.386667pt;}
.y67{bottom:240.026667pt;}
.yed{bottom:244.986667pt;}
.y14a{bottom:246.586667pt;}
.y34{bottom:247.386667pt;}
.y17b{bottom:248.346667pt;}
.y76{bottom:248.666667pt;}
.yac{bottom:248.986667pt;}
.y124{bottom:249.626667pt;}
.yd2{bottom:252.506667pt;}
.y66{bottom:256.666667pt;}
.y149{bottom:261.946667pt;}
.y17a{bottom:263.706667pt;}
.y75{bottom:263.866667pt;}
.y33{bottom:264.026667pt;}
.yab{bottom:264.346667pt;}
.y123{bottom:264.986667pt;}
.yd1{bottom:269.466667pt;}
.y65{bottom:273.146667pt;}
.yec{bottom:276.346667pt;}
.y148{bottom:277.146667pt;}
.y179{bottom:279.066667pt;}
.y74{bottom:279.226667pt;}
.yaa{bottom:279.706667pt;}
.y122{bottom:280.346667pt;}
.y32{bottom:280.506667pt;}
.y64{bottom:289.786667pt;}
.y147{bottom:292.506667pt;}
.y178{bottom:294.266667pt;}
.y73{bottom:294.586667pt;}
.ya9{bottom:295.066667pt;}
.y121{bottom:295.706667pt;}
.y31{bottom:297.146667pt;}
.yd0{bottom:300.866667pt;}
.y63{bottom:306.306667pt;}
.yeb{bottom:307.746667pt;}
.y146{bottom:307.906667pt;}
.y11f{bottom:308.866667pt;}
.y177{bottom:309.666667pt;}
.y72{bottom:309.986667pt;}
.ya8{bottom:310.306667pt;}
.y30{bottom:312.546667pt;}
.ycf{bottom:317.826667pt;}
.y62{bottom:322.786667pt;}
.y145{bottom:323.266667pt;}
.yea{bottom:324.226667pt;}
.y120{bottom:324.866667pt;}
.y176{bottom:325.026667pt;}
.y71{bottom:325.346667pt;}
.ya7{bottom:325.666667pt;}
.y2f{bottom:327.746667pt;}
.yce{bottom:334.786667pt;}
.y144{bottom:338.626667pt;}
.y61{bottom:339.426667pt;}
.y175{bottom:340.386667pt;}
.y70{bottom:340.706667pt;}
.ya6{bottom:341.026667pt;}
.y2e{bottom:346.626667pt;}
.ycd{bottom:351.746667pt;}
.y143{bottom:353.826667pt;}
.y174{bottom:355.746667pt;}
.y60{bottom:355.906667pt;}
.ya5{bottom:356.386667pt;}
.y11e{bottom:357.026667pt;}
.ye9{bottom:357.186667pt;}
.y2d{bottom:363.266667pt;}
.y142{bottom:369.186667pt;}
.y173{bottom:371.106667pt;}
.ya4{bottom:371.746667pt;}
.y5f{bottom:372.546667pt;}
.y118{bottom:373.026667pt;}
.ye8{bottom:373.666667pt;}
.y2c{bottom:379.746667pt;}
.ycb{bottom:383.106667pt;}
.y141{bottom:384.546667pt;}
.y172{bottom:386.306667pt;}
.ya3{bottom:387.106667pt;}
.y5e{bottom:389.026667pt;}
.y11b{bottom:389.186667pt;}
.ye7{bottom:390.146667pt;}
.y2b{bottom:396.226667pt;}
.y171{bottom:399.426667pt;}
.y140{bottom:399.906667pt;}
.yca{bottom:400.226667pt;}
.ya2{bottom:402.306667pt;}
.y116{bottom:405.186667pt;}
.y5d{bottom:405.506667pt;}
.y2a{bottom:411.586667pt;}
.y13f{bottom:415.266667pt;}
.yc9{bottom:417.186667pt;}
.ya1{bottom:417.666667pt;}
.ye6{bottom:421.506667pt;}
.y5c{bottom:422.146667pt;}
.y115{bottom:422.466667pt;}
.y29{bottom:426.946667pt;}
.y13e{bottom:430.626667pt;}
.y170{bottom:430.786667pt;}
.ya0{bottom:433.026667pt;}
.y5b{bottom:438.626667pt;}
.y28{bottom:442.306667pt;}
.y189{bottom:444.386667pt;}
.y13d{bottom:445.826667pt;}
.y9f{bottom:448.386667pt;}
.yc7{bottom:448.546667pt;}
.ye4{bottom:452.706667pt;}
.y5a{bottom:455.266667pt;}
.y114{bottom:456.706667pt;}
.y27{bottom:457.666667pt;}
.y188{bottom:459.746667pt;}
.y13c{bottom:461.186667pt;}
.y9e{bottom:463.746667pt;}
.y59{bottom:471.746667pt;}
.y113{bottom:471.906667pt;}
.y26{bottom:473.026667pt;}
.y187{bottom:475.106667pt;}
.y13b{bottom:476.546667pt;}
.y16e{bottom:477.506667pt;}
.y9d{bottom:479.106667pt;}
.yc6{bottom:479.746667pt;}
.y112{bottom:487.266667pt;}
.y58{bottom:488.226667pt;}
.y25{bottom:488.386667pt;}
.y186{bottom:490.466667pt;}
.y13a{bottom:491.906667pt;}
.y9c{bottom:494.306667pt;}
.ye2{bottom:499.426667pt;}
.y16d{bottom:500.226667pt;}
.y111{bottom:502.626667pt;}
.y24{bottom:503.586667pt;}
.y57{bottom:504.866667pt;}
.y185{bottom:505.826667pt;}
.y139{bottom:507.266667pt;}
.y9b{bottom:509.666667pt;}
.yc5{bottom:511.106667pt;}
.y16c{bottom:515.586667pt;}
.ye0{bottom:517.026667pt;}
.y110{bottom:517.986667pt;}
.y23{bottom:518.946667pt;}
.y184{bottom:521.026667pt;}
.y56{bottom:521.346667pt;}
.y138{bottom:522.626667pt;}
.y9a{bottom:525.026667pt;}
.y16b{bottom:530.946667pt;}
.y10f{bottom:533.346667pt;}
.y22{bottom:534.306667pt;}
.ydf{bottom:536.386667pt;}
.y137{bottom:537.853333pt;}
.y55{bottom:538.013333pt;}
.y99{bottom:540.413333pt;}
.yc3{bottom:542.493333pt;}
.y16a{bottom:546.333333pt;}
.y10e{bottom:548.733333pt;}
.y21{bottom:549.693333pt;}
.y133{bottom:550.973333pt;}
.yde{bottom:551.773333pt;}
.y54{bottom:554.493333pt;}
.y98{bottom:555.773333pt;}
.y169{bottom:561.533333pt;}
.y10d{bottom:563.933333pt;}
.y20{bottom:565.053333pt;}
.ydd{bottom:567.133333pt;}
.y53{bottom:571.133333pt;}
.yc1{bottom:573.853333pt;}
.y168{bottom:576.893333pt;}
.y10c{bottom:579.293333pt;}
.y1f{bottom:580.413333pt;}
.ydc{bottom:582.493333pt;}
.y97{bottom:586.333333pt;}
.y52{bottom:587.613333pt;}
.ybf{bottom:592.093333pt;}
.y167{bottom:592.253333pt;}
.y10b{bottom:594.653333pt;}
.y1e{bottom:595.613333pt;}
.ydb{bottom:597.853333pt;}
.y96{bottom:601.693333pt;}
.y51{bottom:604.093333pt;}
.y166{bottom:607.613333pt;}
.y10a{bottom:610.013333pt;}
.y1d{bottom:610.973333pt;}
.ybe{bottom:611.933333pt;}
.yda{bottom:613.053333pt;}
.y95{bottom:617.053333pt;}
.y50{bottom:620.733333pt;}
.y165{bottom:622.973333pt;}
.y109{bottom:625.373333pt;}
.y1c{bottom:627.453333pt;}
.ybd{bottom:628.413333pt;}
.y94{bottom:632.413333pt;}
.y4f{bottom:637.213333pt;}
.y164{bottom:638.173333pt;}
.y108{bottom:640.573333pt;}
.y130{bottom:641.213333pt;}
.ybc{bottom:643.773333pt;}
.y1b{bottom:644.093333pt;}
.y93{bottom:647.773333pt;}
.y163{bottom:653.533333pt;}
.y4e{bottom:653.853333pt;}
.y107{bottom:655.933333pt;}
.ybb{bottom:659.133333pt;}
.y1a{bottom:660.413333pt;}
.y92{bottom:662.973333pt;}
.y162{bottom:668.893333pt;}
.y4d{bottom:670.333333pt;}
.y106{bottom:671.293333pt;}
.yba{bottom:674.493333pt;}
.y91{bottom:678.333333pt;}
.y19{bottom:682.653333pt;}
.y161{bottom:684.253333pt;}
.y12e{bottom:685.533333pt;}
.y105{bottom:686.653333pt;}
.y4c{bottom:686.813333pt;}
.yb9{bottom:689.853333pt;}
.y90{bottom:691.453333pt;}
.y160{bottom:699.613333pt;}
.y18{bottom:700.733333pt;}
.y12f{bottom:701.533333pt;}
.y104{bottom:702.013333pt;}
.y4b{bottom:703.453333pt;}
.yb8{bottom:705.053333pt;}
.y8f{bottom:707.453333pt;}
.y17{bottom:713.693333pt;}
.y15f{bottom:714.973333pt;}
.y103{bottom:717.373333pt;}
.y4a{bottom:719.933333pt;}
.yb7{bottom:720.413333pt;}
.y8e{bottom:723.453333pt;}
.y15e{bottom:730.173333pt;}
.y102{bottom:732.573333pt;}
.yb6{bottom:735.773333pt;}
.y49{bottom:736.573333pt;}
.y16{bottom:737.213333pt;}
.y8a{bottom:739.453333pt;}
.y15d{bottom:745.533333pt;}
.y101{bottom:747.933333pt;}
.yb5{bottom:751.133333pt;}
.y48{bottom:753.053333pt;}
.y15{bottom:755.453333pt;}
.y15c{bottom:760.893333pt;}
.y100{bottom:763.293333pt;}
.yb4{bottom:766.493333pt;}
.y47{bottom:769.533333pt;}
.y14{bottom:773.533333pt;}
.y15b{bottom:776.293333pt;}
.yff{bottom:778.693333pt;}
.y89{bottom:781.893333pt;}
.y46{bottom:786.213333pt;}
.y15a{bottom:791.653333pt;}
.y13{bottom:791.813333pt;}
.yfe{bottom:794.053333pt;}
.y88{bottom:797.093333pt;}
.y45{bottom:802.693333pt;}
.y159{bottom:807.013333pt;}
.yfd{bottom:809.413333pt;}
.y12{bottom:810.053333pt;}
.y87{bottom:812.453333pt;}
.y44{bottom:819.333333pt;}
.y158{bottom:822.213333pt;}
.y11{bottom:823.013333pt;}
.yfc{bottom:824.613333pt;}
.y86{bottom:827.813333pt;}
.y43{bottom:835.813333pt;}
.y157{bottom:837.573333pt;}
.yfb{bottom:839.973333pt;}
.y85{bottom:843.173333pt;}
.y10{bottom:846.373333pt;}
.y42{bottom:852.453333pt;}
.y156{bottom:852.933333pt;}
.yfa{bottom:855.333333pt;}
.y84{bottom:858.533333pt;}
.yf{bottom:864.613333pt;}
.y151{bottom:866.053333pt;}
.yf9{bottom:868.453333pt;}
.y41{bottom:868.933333pt;}
.y83{bottom:873.733333pt;}
.ye{bottom:882.853333pt;}
.yf8{bottom:884.933333pt;}
.y40{bottom:885.413333pt;}
.y82{bottom:889.093333pt;}
.yd{bottom:899.973333pt;}
.y3f{bottom:902.053333pt;}
.y81{bottom:904.453333pt;}
.yc{bottom:912.773333pt;}
.yf7{bottom:916.293333pt;}
.y3e{bottom:918.533333pt;}
.y80{bottom:919.813333pt;}
.yb{bottom:932.773333pt;}
.y3d{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hf{height:15.360000pt;}
.h1d{height:15.520000pt;}
.h1a{height:15.680000pt;}
.h17{height:15.840000pt;}
.h12{height:16.320000pt;}
.h1b{height:16.640000pt;}
.h18{height:16.960000pt;}
.h13{height:17.440000pt;}
.h23{height:19.200000pt;}
.he{height:22.752000pt;}
.h9{height:26.190625pt;}
.h16{height:30.560000pt;}
.h14{height:30.720000pt;}
.h15{height:30.752000pt;}
.h8{height:30.982500pt;}
.h1e{height:31.360000pt;}
.h1c{height:31.520000pt;}
.ha{height:33.277500pt;}
.h5{height:37.479688pt;}
.h11{height:38.491250pt;}
.h10{height:38.672812pt;}
.hd{height:38.752000pt;}
.h6{height:43.031250pt;}
.h1f{height:43.680000pt;}
.hc{height:43.782500pt;}
.h4{height:45.156250pt;}
.h19{height:46.080000pt;}
.h21{height:47.520000pt;}
.h2{height:47.621250pt;}
.hb{height:49.542500pt;}
.h3{height:52.785000pt;}
.h7{height:58.563750pt;}
.h22{height:80.800000pt;}
.h20{height:89.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:73.472000pt;}
.w11{width:77.600000pt;}
.w10{width:77.632000pt;}
.wb{width:77.760000pt;}
.wa{width:77.792000pt;}
.wc{width:77.952000pt;}
.w19{width:88.320000pt;}
.w1e{width:132.960000pt;}
.w1c{width:146.106667pt;}
.w16{width:150.906667pt;}
.w17{width:154.426667pt;}
.w13{width:155.840000pt;}
.wf{width:155.866667pt;}
.w8{width:156.186667pt;}
.w9{width:156.506667pt;}
.w15{width:162.426667pt;}
.w23{width:164.826667pt;}
.w5{width:168.346667pt;}
.w6{width:170.746667pt;}
.w1d{width:172.826667pt;}
.w1a{width:184.186667pt;}
.w21{width:234.906667pt;}
.w22{width:237.146667pt;}
.w3{width:278.906667pt;}
.we{width:292.506667pt;}
.w7{width:292.826667pt;}
.w1b{width:306.426667pt;}
.w1f{width:306.746667pt;}
.w20{width:308.226667pt;}
.w4{width:339.746667pt;}
.w14{width:469.053333pt;}
.w12{width:605.853333pt;}
.wd{width:606.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x3a{left:17.320000pt;}
.x36{left:18.440000pt;}
.x2d{left:27.240000pt;}
.x44{left:30.906667pt;}
.x47{left:47.994667pt;}
.x38{left:51.360000pt;}
.x45{left:54.906667pt;}
.x4a{left:56.840000pt;}
.x3b{left:58.080000pt;}
.x21{left:64.200000pt;}
.x1f{left:66.426667pt;}
.x2b{left:72.026667pt;}
.x23{left:77.466667pt;}
.x24{left:78.600000pt;}
.x1b{left:89.152000pt;}
.x1{left:96.031988pt;}
.x31{left:101.471988pt;}
.x29{left:108.032000pt;}
.x2{left:109.471988pt;}
.x41{left:111.231988pt;}
.x27{left:114.911988pt;}
.x3c{left:115.871988pt;}
.x17{left:120.031988pt;}
.x43{left:122.906667pt;}
.x39{left:124.200000pt;}
.x1c{left:125.754667pt;}
.x1e{left:135.706667pt;}
.x4{left:139.706655pt;}
.x18{left:144.026655pt;}
.x11{left:162.266655pt;}
.x25{left:168.026655pt;}
.xa{left:182.746655pt;}
.x7{left:188.666655pt;}
.x19{left:192.026655pt;}
.xb{left:199.066655pt;}
.xf{left:242.906655pt;}
.x33{left:245.626667pt;}
.x28{left:250.146655pt;}
.x10{left:255.586655pt;}
.x8{left:256.546655pt;}
.x3e{left:273.986667pt;}
.x42{left:275.266655pt;}
.x3d{left:280.226655pt;}
.xd{left:284.226655pt;}
.x46{left:289.186655pt;}
.x26{left:307.906655pt;}
.x13{left:313.826655pt;}
.x37{left:319.746667pt;}
.x16{left:323.426655pt;}
.x48{left:324.866667pt;}
.x4c{left:329.186655pt;}
.xe{left:331.426655pt;}
.xc{left:342.306655pt;}
.x15{left:343.586655pt;}
.x4b{left:348.066655pt;}
.x6{left:352.386655pt;}
.x1a{left:362.786655pt;}
.x32{left:365.026655pt;}
.x5{left:366.466655pt;}
.x1d{left:368.706667pt;}
.x12{left:379.586655pt;}
.x14{left:396.866655pt;}
.x2a{left:401.666667pt;}
.x34{left:408.706667pt;}
.x9{left:420.893322pt;}
.x40{left:447.453333pt;}
.x3{left:460.893322pt;}
.x2e{left:480.093333pt;}
.x20{left:537.693333pt;}
.x2c{left:558.493333pt;}
.x35{left:560.253333pt;}
.x49{left:562.653333pt;}
.x3f{left:581.053333pt;}
.x30{left:636.133333pt;}
.x2f{left:637.093333pt;}
}




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