
    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_41c441002ef3c209f1600834.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_d9cd5557e84b14e5ed422165.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a630e501214a86b3806f243.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3881b11cdacc3a7b86aea268.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f69b814da7bdfbdb24c7906.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f6cf2ba1b038ba5e579fdf8.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_16339c936057e504289b8728.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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4f2bb4bec282e210ee651bb5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_0296a96423b23759ddaef435.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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:ffc;src:url('chunks/assets/font_6ddd890b99fffc7df9fc548c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_287f9807733798cdd8a6836e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_98934eacd35fd6e42d3ddb6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.096680;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:fff;src:url('chunks/assets/font_7830a68c2142d1c89498db73.woff2')format("woff");}.fff{font-family:fff;line-height:1.052734;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:ff10;src:url('chunks/assets/font_d6669c3ac06070a1c906c96b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1f{letter-spacing:-0.444600px;}
.lsa{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.158400px;}
.ls8{letter-spacing:-0.135000px;}
.ls1a{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls1d{letter-spacing:0.111000px;}
.ls1b{letter-spacing:0.111240px;}
.ls17{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls21{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.275400px;}
.ls3{letter-spacing:4.005360px;}
.ls0{letter-spacing:13.347360px;}
.ls20{letter-spacing:47.726640px;}
.ls11{letter-spacing:55.286640px;}
.ls10{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.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;}
}
.ws15{word-spacing:-60.231000px;}
.ws2{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.ws12{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.337400px;}
.ws11{word-spacing:-13.324800px;}
.ws7{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.141800px;}
.ws13{word-spacing:-13.101000px;}
.wse{word-spacing:-13.068000px;}
.ws10{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsd{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._d{margin-left:-3.340080px;}
._8{margin-left:-2.168760px;}
._0{margin-left:-1.110000px;}
._3{width:1.223474px;}
._4{width:2.635920px;}
._5{width:3.815778px;}
._6{width:5.021621px;}
._c{width:6.493200px;}
._7{width:7.498480px;}
._9{width:9.198600px;}
._a{width:10.225678px;}
._b{width:11.509005px;}
._1{width:14.008212px;}
._2{width:15.839559px;}
._10{width:16.861772px;}
._f{width:18.070920px;}
._e{width:21.282480px;}
._11{width:23.687280px;}
._12{width:24.829560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:3.330000px;}
.yea{bottom:3.420000px;}
.yda{bottom:4.500000px;}
.yec{bottom:4.590000px;}
.ye7{bottom:7.827000px;}
.y77{bottom:7.830000px;}
.y75{bottom:7.920000px;}
.y10b{bottom:9.720000px;}
.ydd{bottom:12.150000px;}
.ye4{bottom:16.647000px;}
.y103{bottom:17.820000px;}
.yee{bottom:20.880000px;}
.ydf{bottom:20.970000px;}
.ye6{bottom:25.467000px;}
.y11e{bottom:25.470000px;}
.ydc{bottom:29.700000px;}
.ye9{bottom:29.790000px;}
.y10a{bottom:29.970000px;}
.ye3{bottom:34.197000px;}
.yf8{bottom:35.190000px;}
.yde{bottom:38.520000px;}
.ye5{bottom:43.017000px;}
.y107{bottom:64.350000px;}
.y2{bottom:73.470000px;}
.y28{bottom:74.190000px;}
.y106{bottom:86.490000px;}
.y1{bottom:100.200000px;}
.y52{bottom:114.510000px;}
.ya4{bottom:122.610000px;}
.ye2{bottom:123.513000px;}
.y14c{bottom:124.680000px;}
.yca{bottom:126.030000px;}
.y7d{bottom:127.020000px;}
.y51{bottom:132.060000px;}
.y170{bottom:133.680000px;}
.y26{bottom:138.900000px;}
.y14b{bottom:142.320000px;}
.yc9{bottom:143.580000px;}
.y7c{bottom:145.380000px;}
.y50{bottom:150.510000px;}
.y16f{bottom:151.320000px;}
.y25{bottom:156.450000px;}
.ya3{bottom:157.890000px;}
.yc8{bottom:161.220000px;}
.y7b{bottom:163.830000px;}
.y4f{bottom:168.870000px;}
.y127{bottom:169.770000px;}
.y111{bottom:173.640000px;}
.y24{bottom:183.090000px;}
.ye1{bottom:186.060000px;}
.y14a{bottom:186.420000px;}
.y4e{bottom:187.320000px;}
.yc7{bottom:187.770000px;}
.y7a{bottom:191.190000px;}
.y110{bottom:191.280000px;}
.ya2{bottom:193.170000px;}
.y16e{bottom:195.510000px;}
.y126{bottom:197.130000px;}
.y4d{bottom:205.770000px;}
.y10f{bottom:208.830000px;}
.ya1{bottom:210.810000px;}
.y149{bottom:213.060000px;}
.y23{bottom:219.090000px;}
.y79{bottom:221.160000px;}
.yc6{bottom:223.410000px;}
.y125{bottom:224.490000px;}
.y10e{bottom:226.380000px;}
.y148{bottom:230.610000px;}
.y16d{bottom:239.610000px;}
.yc5{bottom:241.770000px;}
.y4c{bottom:242.130000px;}
.y10d{bottom:244.020000px;}
.ya0{bottom:246.360000px;}
.y78{bottom:248.520000px;}
.y124{bottom:251.850000px;}
.y147{bottom:257.250000px;}
.yc4{bottom:260.220000px;}
.y9f{bottom:264.000000px;}
.y22{bottom:267.240000px;}
.y4b{bottom:268.680000px;}
.y10c{bottom:270.570000px;}
.y146{bottom:274.800000px;}
.y76{bottom:275.880000px;}
.yc3{bottom:277.770000px;}
.y123{bottom:279.120000px;}
.y9e{bottom:281.550000px;}
.y21{bottom:284.790000px;}
.yc2{bottom:296.220000px;}
.y105{bottom:300.540000px;}
.y145{bottom:301.350000px;}
.y16c{bottom:301.440000px;}
.y20{bottom:302.430000px;}
.y74{bottom:303.150000px;}
.y4a{bottom:304.320000px;}
.y122{bottom:306.480000px;}
.y9d{bottom:308.100000px;}
.y144{bottom:318.990000px;}
.y1f{bottom:319.980000px;}
.yc1{bottom:323.580000px;}
.y109{bottom:329.700000px;}
.yf0{bottom:330.960000px;}
.y1e{bottom:337.620000px;}
.y49{bottom:339.870000px;}
.y9c{bottom:343.740000px;}
.y143{bottom:345.540000px;}
.y73{bottom:351.840000px;}
.y1d{bottom:355.170000px;}
.yef{bottom:358.230000px;}
.y48{bottom:358.320000px;}
.yc0{bottom:359.220000px;}
.y9b{bottom:361.290000px;}
.y16b{bottom:372.180000px;}
.y142{bottom:372.540000px;}
.y1c{bottom:372.720000px;}
.y47{bottom:376.770000px;}
.y108{bottom:379.110000px;}
.y9a{bottom:379.740000px;}
.y72{bottom:387.480000px;}
.y16a{bottom:389.730000px;}
.y1b{bottom:390.360000px;}
.y121{bottom:390.900000px;}
.ybf{bottom:394.320000px;}
.y99{bottom:398.100000px;}
.ydb{bottom:402.780000px;}
.y46{bottom:404.130000px;}
.y120{bottom:405.390000px;}
.y71{bottom:405.930000px;}
.y104{bottom:406.470000px;}
.y1a{bottom:407.910000px;}
.ybe{bottom:411.960000px;}
.y169{bottom:416.370000px;}
.y141{bottom:420.690000px;}
.y70{bottom:424.290000px;}
.y102{bottom:433.830000px;}
.y168{bottom:433.920000px;}
.y98{bottom:434.550000px;}
.y19{bottom:434.910000px;}
.y140{bottom:438.330000px;}
.ybd{bottom:438.510000px;}
.y45{bottom:439.680000px;}
.y6f{bottom:442.740000px;}
.y167{bottom:451.470000px;}
.y11f{bottom:454.830000px;}
.y13f{bottom:455.910000px;}
.y44{bottom:457.350000px;}
.y6e{bottom:461.130000px;}
.yd9{bottom:465.270000px;}
.y101{bottom:471.120000px;}
.ybc{bottom:474.090000px;}
.y43{bottom:474.900000px;}
.y166{bottom:478.140000px;}
.y6d{bottom:479.580000px;}
.y13e{bottom:482.910000px;}
.y18{bottom:483.090000px;}
.ybb{bottom:491.730000px;}
.y42{bottom:492.540000px;}
.y165{bottom:495.690000px;}
.y97{bottom:496.770000px;}
.y6c{bottom:497.940000px;}
.y100{bottom:498.480000px;}
.y17{bottom:501.090000px;}
.y11d{bottom:504.240000px;}
.yba{bottom:509.280000px;}
.y96{bottom:515.130000px;}
.y6b{bottom:515.580000px;}
.y13d{bottom:519.900000px;}
.y164{bottom:522.330000px;}
.yff{bottom:525.750000px;}
.yb9{bottom:526.920000px;}
.y41{bottom:528.900000px;}
.y13c{bottom:537.450000px;}
.y16{bottom:538.080000px;}
.y163{bottom:539.880000px;}
.y95{bottom:542.580000px;}
.y11c{bottom:549.150000px;}
.y6a{bottom:551.940000px;}
.yfe{bottom:553.110000px;}
.yb8{bottom:553.470000px;}
.y15{bottom:555.630000px;}
.y162{bottom:557.430000px;}
.y40{bottom:564.450000px;}
.y14{bottom:573.270000px;}
.y161{bottom:575.070000px;}
.y11b{bottom:576.510000px;}
.y94{bottom:578.130000px;}
.y69{bottom:578.580000px;}
.yfd{bottom:580.470000px;}
.y3f{bottom:582.090000px;}
.yb7{bottom:589.020000px;}
.yed{bottom:589.110000px;}
.y13{bottom:590.820000px;}
.y93{bottom:595.770000px;}
.y160{bottom:601.620000px;}
.y13b{bottom:601.800000px;}
.y11a{bottom:603.870000px;}
.yb6{bottom:606.660000px;}
.yfc{bottom:607.830000px;}
.y12{bottom:608.370000px;}
.y68{bottom:614.130000px;}
.y3e{bottom:617.640000px;}
.y15f{bottom:619.260000px;}
.y11{bottom:626.010000px;}
.y67{bottom:632.580000px;}
.yb5{bottom:633.210000px;}
.yfb{bottom:635.100000px;}
.y10{bottom:643.560000px;}
.y3d{bottom:645.090000px;}
.y15e{bottom:645.810000px;}
.y13a{bottom:649.950000px;}
.y66{bottom:650.940000px;}
.yeb{bottom:651.570000px;}
.y119{bottom:652.560000px;}
.yf{bottom:661.200000px;}
.yfa{bottom:662.460000px;}
.y15d{bottom:663.360000px;}
.y139{bottom:667.590000px;}
.y65{bottom:668.580000px;}
.yb4{bottom:668.850000px;}
.y92{bottom:668.940000px;}
.ye{bottom:678.750000px;}
.y3c{bottom:680.640000px;}
.y15c{bottom:681.000000px;}
.yb3{bottom:686.400000px;}
.y118{bottom:688.110000px;}
.yf7{bottom:689.820000px;}
.y91{bottom:695.580000px;}
.y64{bottom:695.940000px;}
.yd{bottom:696.300000px;}
.y138{bottom:703.140000px;}
.yb2{bottom:703.950000px;}
.y117{bottom:705.750000px;}
.y15b{bottom:707.550000px;}
.y3b{bottom:713.220000px;}
.yf9{bottom:717.180000px;}
.y137{bottom:720.690000px;}
.yc{bottom:723.300000px;}
.y15a{bottom:725.190000px;}
.yb1{bottom:730.590000px;}
.y3a{bottom:730.860000px;}
.y90{bottom:731.130000px;}
.y63{bottom:731.580000px;}
.y116{bottom:737.970000px;}
.y136{bottom:738.330000px;}
.y159{bottom:742.740000px;}
.yf6{bottom:744.450000px;}
.yd8{bottom:746.160000px;}
.y8f{bottom:748.770000px;}
.y39{bottom:749.310000px;}
.y62{bottom:750.030000px;}
.y135{bottom:755.880000px;}
.yd7{bottom:763.710000px;}
.yb0{bottom:766.140000px;}
.y8e{bottom:767.130000px;}
.y38{bottom:767.670000px;}
.y61{bottom:768.390000px;}
.y158{bottom:769.290000px;}
.yb{bottom:771.540000px;}
.yf5{bottom:771.810000px;}
.yaf{bottom:783.780000px;}
.y60{bottom:786.840000px;}
.y157{bottom:786.930000px;}
.y134{bottom:791.520000px;}
.y8d{bottom:794.580000px;}
.yd6{bottom:799.350000px;}
.y37{bottom:804.030000px;}
.y156{bottom:804.480000px;}
.ya{bottom:807.360000px;}
.y133{bottom:809.070000px;}
.yae{bottom:810.330000px;}
.y5f{bottom:814.200000px;}
.yd5{bottom:816.900000px;}
.yf4{bottom:820.500000px;}
.y132{bottom:826.620000px;}
.y8c{bottom:830.130000px;}
.y36{bottom:830.670000px;}
.y155{bottom:831.030000px;}
.yad{bottom:840.300000px;}
.y9{bottom:843.360000px;}
.y8b{bottom:848.580000px;}
.y154{bottom:848.670000px;}
.y5e{bottom:849.840000px;}
.yd4{bottom:852.540000px;}
.yf3{bottom:856.140000px;}
.y131{bottom:862.260000px;}
.y35{bottom:866.220000px;}
.y8a{bottom:867.030000px;}
.yac{bottom:867.660000px;}
.y5d{bottom:868.200000px;}
.yd3{bottom:870.090000px;}
.yf2{bottom:871.080000px;}
.y153{bottom:875.220000px;}
.y8{bottom:879.360000px;}
.y130{bottom:879.810000px;}
.y34{bottom:883.860000px;}
.y89{bottom:885.390000px;}
.y5c{bottom:886.650000px;}
.yd2{bottom:887.640000px;}
.y152{bottom:892.860000px;}
.yab{bottom:894.930000px;}
.y12f{bottom:897.450000px;}
.y7{bottom:901.140000px;}
.y33{bottom:901.410000px;}
.y88{bottom:903.840000px;}
.y5b{bottom:905.010000px;}
.yd1{bottom:914.280000px;}
.yf1{bottom:915.990000px;}
.y32{bottom:918.960000px;}
.y6{bottom:919.140000px;}
.y151{bottom:919.410000px;}
.y87{bottom:922.200000px;}
.yaa{bottom:922.290000px;}
.y5a{bottom:923.460000px;}
.y12e{bottom:924.360000px;}
.ye8{bottom:928.770000px;}
.y150{bottom:936.960000px;}
.yd0{bottom:946.860000px;}
.y86{bottom:949.650000px;}
.y5{bottom:951.540000px;}
.y31{bottom:954.600000px;}
.y59{bottom:959.820000px;}
.y14f{bottom:963.600000px;}
.y12d{bottom:972.600000px;}
.y115{bottom:975.210000px;}
.y14e{bottom:981.150000px;}
.ycf{bottom:982.860000px;}
.y85{bottom:985.200000px;}
.y58{bottom:986.460000px;}
.y4{bottom:989.790000px;}
.y30{bottom:990.150000px;}
.y114{bottom:992.790000px;}
.ya9{bottom:998.370000px;}
.y84{bottom:1002.870000px;}
.y2f{bottom:1007.820000px;}
.y113{bottom:1010.340000px;}
.y3{bottom:1014.480000px;}
.y83{bottom:1021.230000px;}
.y57{bottom:1022.040000px;}
.y2e{bottom:1025.370000px;}
.y12c{bottom:1025.820000px;}
.yce{bottom:1031.040000px;}
.ya8{bottom:1033.920000px;}
.y112{bottom:1036.890000px;}
.y82{bottom:1039.680000px;}
.y56{bottom:1040.490000px;}
.y2d{bottom:1042.920000px;}
.y12b{bottom:1043.370000px;}
.ycd{bottom:1049.490000px;}
.ya7{bottom:1051.560000px;}
.y14d{bottom:1051.920000px;}
.y81{bottom:1058.040000px;}
.y55{bottom:1058.940000px;}
.y12a{bottom:1060.920000px;}
.ycc{bottom:1067.940000px;}
.y2c{bottom:1069.560000px;}
.y80{bottom:1076.490000px;}
.y54{bottom:1077.300000px;}
.y129{bottom:1078.560000px;}
.ycb{bottom:1086.300000px;}
.ya6{bottom:1087.110000px;}
.y128{bottom:1096.110000px;}
.y7f{bottom:1103.850000px;}
.ya5{bottom:1104.750000px;}
.y2b{bottom:1105.110000px;}
.y53{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y7e{bottom:1139.490000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hf{height:26.550000px;}
.he{height:26.640000px;}
.h20{height:28.440000px;}
.h2{height:34.133906px;}
.h6{height:35.782383px;}
.h1b{height:36.562500px;}
.h3{height:39.155273px;}
.h19{height:44.190000px;}
.h21{height:48.685500px;}
.h1f{height:48.687000px;}
.h1e{height:48.690000px;}
.h22{height:48.712500px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.hb{height:52.781133px;}
.h1a{height:53.910000px;}
.h23{height:55.779258px;}
.h5{height:57.838008px;}
.hc{height:59.973223px;}
.h13{height:61.737000px;}
.h15{height:61.740000px;}
.h11{height:61.762500px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1c{height:105.207000px;}
.h1d{height:105.210000px;}
.h16{height:213.930000px;}
.h12{height:216.000000px;}
.h14{height:225.030000px;}
.h17{height:230.070000px;}
.h18{height:237.810000px;}
.h10{height:258.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:24.390000px;}
.w18{width:42.570000px;}
.w5{width:43.470000px;}
.w6{width:43.560000px;}
.w4{width:51.750000px;}
.w7{width:51.772500px;}
.w1b{width:53.910000px;}
.w1c{width:61.650000px;}
.w21{width:62.190000px;}
.w1f{width:74.790000px;}
.w20{width:74.812500px;}
.w19{width:88.020000px;}
.w1a{width:88.132500px;}
.w9{width:95.422500px;}
.w22{width:97.200000px;}
.w14{width:99.000000px;}
.wa{width:101.430000px;}
.w11{width:128.160000px;}
.w13{width:137.730000px;}
.w15{width:137.734500px;}
.w2{width:146.910000px;}
.w8{width:174.420000px;}
.w16{width:196.410000px;}
.we{width:216.630000px;}
.wf{width:237.540000px;}
.wc{width:239.700000px;}
.w12{width:283.980000px;}
.wd{width:297.840000px;}
.w1d{width:311.880000px;}
.w1e{width:387.030000px;}
.w10{width:412.950000px;}
.w17{width:426.075000px;}
.wb{width:755.700000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.650000px;}
.x22{left:9.180000px;}
.x1d{left:11.430000px;}
.x26{left:12.960000px;}
.x20{left:15.030000px;}
.x18{left:18.270000px;}
.x30{left:19.530000px;}
.x19{left:25.560000px;}
.x27{left:27.990000px;}
.x2b{left:30.600000px;}
.x29{left:36.630000px;}
.x2c{left:41.040000px;}
.x1e{left:44.910000px;}
.x1b{left:50.310000px;}
.x21{left:52.290000px;}
.x23{left:66.600000px;}
.x1{left:68.040000px;}
.x25{left:81.000000px;}
.x34{left:84.060000px;}
.x4{left:95.040000px;}
.x3d{left:96.750000px;}
.x43{left:111.240000px;}
.x2a{left:113.760000px;}
.x6{left:115.470000px;}
.x5{left:122.040000px;}
.x36{left:135.000000px;}
.x7{left:142.470000px;}
.x2e{left:179.130000px;}
.x2{left:231.150000px;}
.x14{left:260.220000px;}
.x9{left:270.480000px;}
.x35{left:273.090000px;}
.xa{left:295.680000px;}
.x1a{left:309.180000px;}
.x37{left:332.130000px;}
.xb{left:348.150000px;}
.x31{left:359.310000px;}
.x38{left:375.510000px;}
.xc{left:392.430000px;}
.x3e{left:409.440000px;}
.x15{left:435.450000px;}
.xd{left:436.620000px;}
.x39{left:464.250000px;}
.xe{left:480.900000px;}
.x3f{left:485.040000px;}
.x32{left:488.280000px;}
.x16{left:531.600000px;}
.xf{left:533.400000px;}
.x3a{left:553.110000px;}
.x40{left:560.670000px;}
.x10{left:577.680000px;}
.x2d{left:589.380000px;}
.x1c{left:607.830000px;}
.x2f{left:624.750000px;}
.x11{left:630.150000px;}
.x41{left:636.270000px;}
.x3b{left:641.940000px;}
.x12{left:674.430000px;}
.x3c{left:696.570000px;}
.x42{left:699.270000px;}
.x13{left:726.900000px;}
.x1f{left:732.210000px;}
.x17{left:735.630000px;}
.x24{left:742.830000px;}
.x28{left:750.300000px;}
.x3{left:800.340000px;}
.x33{left:878.220000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.395200pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.140800pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls1a{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls1d{letter-spacing:0.098667pt;}
.ls1b{letter-spacing:0.098880pt;}
.ls17{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls21{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.244800pt;}
.ls3{letter-spacing:3.560320pt;}
.ls0{letter-spacing:11.864320pt;}
.ls20{letter-spacing:42.423680pt;}
.ls11{letter-spacing:49.143680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws15{word-spacing:-53.538667pt;}
.ws2{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.ws12{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.855467pt;}
.ws11{word-spacing:-11.844267pt;}
.ws7{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.681600pt;}
.ws13{word-spacing:-11.645333pt;}
.wse{word-spacing:-11.616000pt;}
.ws10{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsd{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._d{margin-left:-2.968960pt;}
._8{margin-left:-1.927787pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.087532pt;}
._4{width:2.343040pt;}
._5{width:3.391803pt;}
._6{width:4.463663pt;}
._c{width:5.771734pt;}
._7{width:6.665316pt;}
._9{width:8.176534pt;}
._a{width:9.089492pt;}
._b{width:10.230227pt;}
._1{width:12.451744pt;}
._2{width:14.079608pt;}
._10{width:14.988242pt;}
._f{width:16.063040pt;}
._e{width:18.917760pt;}
._11{width:21.055360pt;}
._12{width:22.070720pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:2.960000pt;}
.yea{bottom:3.040000pt;}
.yda{bottom:4.000000pt;}
.yec{bottom:4.080000pt;}
.ye7{bottom:6.957333pt;}
.y77{bottom:6.960000pt;}
.y75{bottom:7.040000pt;}
.y10b{bottom:8.640000pt;}
.ydd{bottom:10.800000pt;}
.ye4{bottom:14.797333pt;}
.y103{bottom:15.840000pt;}
.yee{bottom:18.560000pt;}
.ydf{bottom:18.640000pt;}
.ye6{bottom:22.637333pt;}
.y11e{bottom:22.640000pt;}
.ydc{bottom:26.400000pt;}
.ye9{bottom:26.480000pt;}
.y10a{bottom:26.640000pt;}
.ye3{bottom:30.397333pt;}
.yf8{bottom:31.280000pt;}
.yde{bottom:34.240000pt;}
.ye5{bottom:38.237333pt;}
.y107{bottom:57.200000pt;}
.y2{bottom:65.306667pt;}
.y28{bottom:65.946667pt;}
.y106{bottom:76.880000pt;}
.y1{bottom:89.066667pt;}
.y52{bottom:101.786667pt;}
.ya4{bottom:108.986667pt;}
.ye2{bottom:109.789333pt;}
.y14c{bottom:110.826667pt;}
.yca{bottom:112.026667pt;}
.y7d{bottom:112.906667pt;}
.y51{bottom:117.386667pt;}
.y170{bottom:118.826667pt;}
.y26{bottom:123.466667pt;}
.y14b{bottom:126.506667pt;}
.yc9{bottom:127.626667pt;}
.y7c{bottom:129.226667pt;}
.y50{bottom:133.786667pt;}
.y16f{bottom:134.506667pt;}
.y25{bottom:139.066667pt;}
.ya3{bottom:140.346667pt;}
.yc8{bottom:143.306667pt;}
.y7b{bottom:145.626667pt;}
.y4f{bottom:150.106667pt;}
.y127{bottom:150.906667pt;}
.y111{bottom:154.346667pt;}
.y24{bottom:162.746667pt;}
.ye1{bottom:165.386667pt;}
.y14a{bottom:165.706667pt;}
.y4e{bottom:166.506667pt;}
.yc7{bottom:166.906667pt;}
.y7a{bottom:169.946667pt;}
.y110{bottom:170.026667pt;}
.ya2{bottom:171.706667pt;}
.y16e{bottom:173.786667pt;}
.y126{bottom:175.226667pt;}
.y4d{bottom:182.906667pt;}
.y10f{bottom:185.626667pt;}
.ya1{bottom:187.386667pt;}
.y149{bottom:189.386667pt;}
.y23{bottom:194.746667pt;}
.y79{bottom:196.586667pt;}
.yc6{bottom:198.586667pt;}
.y125{bottom:199.546667pt;}
.y10e{bottom:201.226667pt;}
.y148{bottom:204.986667pt;}
.y16d{bottom:212.986667pt;}
.yc5{bottom:214.906667pt;}
.y4c{bottom:215.226667pt;}
.y10d{bottom:216.906667pt;}
.ya0{bottom:218.986667pt;}
.y78{bottom:220.906667pt;}
.y124{bottom:223.866667pt;}
.y147{bottom:228.666667pt;}
.yc4{bottom:231.306667pt;}
.y9f{bottom:234.666667pt;}
.y22{bottom:237.546667pt;}
.y4b{bottom:238.826667pt;}
.y10c{bottom:240.506667pt;}
.y146{bottom:244.266667pt;}
.y76{bottom:245.226667pt;}
.yc3{bottom:246.906667pt;}
.y123{bottom:248.106667pt;}
.y9e{bottom:250.266667pt;}
.y21{bottom:253.146667pt;}
.yc2{bottom:263.306667pt;}
.y105{bottom:267.146667pt;}
.y145{bottom:267.866667pt;}
.y16c{bottom:267.946667pt;}
.y20{bottom:268.826667pt;}
.y74{bottom:269.466667pt;}
.y4a{bottom:270.506667pt;}
.y122{bottom:272.426667pt;}
.y9d{bottom:273.866667pt;}
.y144{bottom:283.546667pt;}
.y1f{bottom:284.426667pt;}
.yc1{bottom:287.626667pt;}
.y109{bottom:293.066667pt;}
.yf0{bottom:294.186667pt;}
.y1e{bottom:300.106667pt;}
.y49{bottom:302.106667pt;}
.y9c{bottom:305.546667pt;}
.y143{bottom:307.146667pt;}
.y73{bottom:312.746667pt;}
.y1d{bottom:315.706667pt;}
.yef{bottom:318.426667pt;}
.y48{bottom:318.506667pt;}
.yc0{bottom:319.306667pt;}
.y9b{bottom:321.146667pt;}
.y16b{bottom:330.826667pt;}
.y142{bottom:331.146667pt;}
.y1c{bottom:331.306667pt;}
.y47{bottom:334.906667pt;}
.y108{bottom:336.986667pt;}
.y9a{bottom:337.546667pt;}
.y72{bottom:344.426667pt;}
.y16a{bottom:346.426667pt;}
.y1b{bottom:346.986667pt;}
.y121{bottom:347.466667pt;}
.ybf{bottom:350.506667pt;}
.y99{bottom:353.866667pt;}
.ydb{bottom:358.026667pt;}
.y46{bottom:359.226667pt;}
.y120{bottom:360.346667pt;}
.y71{bottom:360.826667pt;}
.y104{bottom:361.306667pt;}
.y1a{bottom:362.586667pt;}
.ybe{bottom:366.186667pt;}
.y169{bottom:370.106667pt;}
.y141{bottom:373.946667pt;}
.y70{bottom:377.146667pt;}
.y102{bottom:385.626667pt;}
.y168{bottom:385.706667pt;}
.y98{bottom:386.266667pt;}
.y19{bottom:386.586667pt;}
.y140{bottom:389.626667pt;}
.ybd{bottom:389.786667pt;}
.y45{bottom:390.826667pt;}
.y6f{bottom:393.546667pt;}
.y167{bottom:401.306667pt;}
.y11f{bottom:404.293333pt;}
.y13f{bottom:405.253333pt;}
.y44{bottom:406.533333pt;}
.y6e{bottom:409.893333pt;}
.yd9{bottom:413.573333pt;}
.y101{bottom:418.773333pt;}
.ybc{bottom:421.413333pt;}
.y43{bottom:422.133333pt;}
.y166{bottom:425.013333pt;}
.y6d{bottom:426.293333pt;}
.y13e{bottom:429.253333pt;}
.y18{bottom:429.413333pt;}
.ybb{bottom:437.093333pt;}
.y42{bottom:437.813333pt;}
.y165{bottom:440.613333pt;}
.y97{bottom:441.573333pt;}
.y6c{bottom:442.613333pt;}
.y100{bottom:443.093333pt;}
.y17{bottom:445.413333pt;}
.y11d{bottom:448.213333pt;}
.yba{bottom:452.693333pt;}
.y96{bottom:457.893333pt;}
.y6b{bottom:458.293333pt;}
.y13d{bottom:462.133333pt;}
.y164{bottom:464.293333pt;}
.yff{bottom:467.333333pt;}
.yb9{bottom:468.373333pt;}
.y41{bottom:470.133333pt;}
.y13c{bottom:477.733333pt;}
.y16{bottom:478.293333pt;}
.y163{bottom:479.893333pt;}
.y95{bottom:482.293333pt;}
.y11c{bottom:488.133333pt;}
.y6a{bottom:490.613333pt;}
.yfe{bottom:491.653333pt;}
.yb8{bottom:491.973333pt;}
.y15{bottom:493.893333pt;}
.y162{bottom:495.493333pt;}
.y40{bottom:501.733333pt;}
.y14{bottom:509.573333pt;}
.y161{bottom:511.173333pt;}
.y11b{bottom:512.453333pt;}
.y94{bottom:513.893333pt;}
.y69{bottom:514.293333pt;}
.yfd{bottom:515.973333pt;}
.y3f{bottom:517.413333pt;}
.yb7{bottom:523.573333pt;}
.yed{bottom:523.653333pt;}
.y13{bottom:525.173333pt;}
.y93{bottom:529.573333pt;}
.y160{bottom:534.773333pt;}
.y13b{bottom:534.933333pt;}
.y11a{bottom:536.773333pt;}
.yb6{bottom:539.253333pt;}
.yfc{bottom:540.293333pt;}
.y12{bottom:540.773333pt;}
.y68{bottom:545.893333pt;}
.y3e{bottom:549.013333pt;}
.y15f{bottom:550.453333pt;}
.y11{bottom:556.453333pt;}
.y67{bottom:562.293333pt;}
.yb5{bottom:562.853333pt;}
.yfb{bottom:564.533333pt;}
.y10{bottom:572.053333pt;}
.y3d{bottom:573.413333pt;}
.y15e{bottom:574.053333pt;}
.y13a{bottom:577.733333pt;}
.y66{bottom:578.613333pt;}
.yeb{bottom:579.173333pt;}
.y119{bottom:580.053333pt;}
.yf{bottom:587.733333pt;}
.yfa{bottom:588.853333pt;}
.y15d{bottom:589.653333pt;}
.y139{bottom:593.413333pt;}
.y65{bottom:594.293333pt;}
.yb4{bottom:594.533333pt;}
.y92{bottom:594.613333pt;}
.ye{bottom:603.333333pt;}
.y3c{bottom:605.013333pt;}
.y15c{bottom:605.333333pt;}
.yb3{bottom:610.133333pt;}
.y118{bottom:611.653333pt;}
.yf7{bottom:613.173333pt;}
.y91{bottom:618.293333pt;}
.y64{bottom:618.613333pt;}
.yd{bottom:618.933333pt;}
.y138{bottom:625.013333pt;}
.yb2{bottom:625.733333pt;}
.y117{bottom:627.333333pt;}
.y15b{bottom:628.933333pt;}
.y3b{bottom:633.973333pt;}
.yf9{bottom:637.493333pt;}
.y137{bottom:640.613333pt;}
.yc{bottom:642.933333pt;}
.y15a{bottom:644.613333pt;}
.yb1{bottom:649.413333pt;}
.y3a{bottom:649.653333pt;}
.y90{bottom:649.893333pt;}
.y63{bottom:650.293333pt;}
.y116{bottom:655.973333pt;}
.y136{bottom:656.293333pt;}
.y159{bottom:660.213333pt;}
.yf6{bottom:661.733333pt;}
.yd8{bottom:663.253333pt;}
.y8f{bottom:665.573333pt;}
.y39{bottom:666.053333pt;}
.y62{bottom:666.693333pt;}
.y135{bottom:671.893333pt;}
.yd7{bottom:678.853333pt;}
.yb0{bottom:681.013333pt;}
.y8e{bottom:681.893333pt;}
.y38{bottom:682.373333pt;}
.y61{bottom:683.013333pt;}
.y158{bottom:683.813333pt;}
.yb{bottom:685.813333pt;}
.yf5{bottom:686.053333pt;}
.yaf{bottom:696.693333pt;}
.y60{bottom:699.413333pt;}
.y157{bottom:699.493333pt;}
.y134{bottom:703.573333pt;}
.y8d{bottom:706.293333pt;}
.yd6{bottom:710.533333pt;}
.y37{bottom:714.693333pt;}
.y156{bottom:715.093333pt;}
.ya{bottom:717.653333pt;}
.y133{bottom:719.173333pt;}
.yae{bottom:720.293333pt;}
.y5f{bottom:723.733333pt;}
.yd5{bottom:726.133333pt;}
.yf4{bottom:729.333333pt;}
.y132{bottom:734.773333pt;}
.y8c{bottom:737.893333pt;}
.y36{bottom:738.373333pt;}
.y155{bottom:738.693333pt;}
.yad{bottom:746.933333pt;}
.y9{bottom:749.653333pt;}
.y8b{bottom:754.293333pt;}
.y154{bottom:754.373333pt;}
.y5e{bottom:755.413333pt;}
.yd4{bottom:757.813333pt;}
.yf3{bottom:761.013333pt;}
.y131{bottom:766.453333pt;}
.y35{bottom:769.973333pt;}
.y8a{bottom:770.693333pt;}
.yac{bottom:771.253333pt;}
.y5d{bottom:771.733333pt;}
.yd3{bottom:773.413333pt;}
.yf2{bottom:774.293333pt;}
.y153{bottom:777.973333pt;}
.y8{bottom:781.653333pt;}
.y130{bottom:782.053333pt;}
.y34{bottom:785.653333pt;}
.y89{bottom:787.013333pt;}
.y5c{bottom:788.133333pt;}
.yd2{bottom:789.013333pt;}
.y152{bottom:793.653333pt;}
.yab{bottom:795.493333pt;}
.y12f{bottom:797.733333pt;}
.y7{bottom:801.013333pt;}
.y33{bottom:801.253333pt;}
.y88{bottom:803.413333pt;}
.y5b{bottom:804.453333pt;}
.yd1{bottom:812.693333pt;}
.yf1{bottom:814.213333pt;}
.y32{bottom:816.853333pt;}
.y6{bottom:817.013333pt;}
.y151{bottom:817.253333pt;}
.y87{bottom:819.733333pt;}
.yaa{bottom:819.813333pt;}
.y5a{bottom:820.853333pt;}
.y12e{bottom:821.653333pt;}
.ye8{bottom:825.573333pt;}
.y150{bottom:832.853333pt;}
.yd0{bottom:841.653333pt;}
.y86{bottom:844.133333pt;}
.y5{bottom:845.813333pt;}
.y31{bottom:848.533333pt;}
.y59{bottom:853.173333pt;}
.y14f{bottom:856.533333pt;}
.y12d{bottom:864.533333pt;}
.y115{bottom:866.853333pt;}
.y14e{bottom:872.133333pt;}
.ycf{bottom:873.653333pt;}
.y85{bottom:875.733333pt;}
.y58{bottom:876.853333pt;}
.y4{bottom:879.813333pt;}
.y30{bottom:880.133333pt;}
.y114{bottom:882.480000pt;}
.ya9{bottom:887.440000pt;}
.y84{bottom:891.440000pt;}
.y2f{bottom:895.840000pt;}
.y113{bottom:898.080000pt;}
.y3{bottom:901.760000pt;}
.y83{bottom:907.760000pt;}
.y57{bottom:908.480000pt;}
.y2e{bottom:911.440000pt;}
.y12c{bottom:911.840000pt;}
.yce{bottom:916.480000pt;}
.ya8{bottom:919.040000pt;}
.y112{bottom:921.680000pt;}
.y82{bottom:924.160000pt;}
.y56{bottom:924.880000pt;}
.y2d{bottom:927.040000pt;}
.y12b{bottom:927.440000pt;}
.ycd{bottom:932.880000pt;}
.ya7{bottom:934.720000pt;}
.y14d{bottom:935.040000pt;}
.y81{bottom:940.480000pt;}
.y55{bottom:941.280000pt;}
.y12a{bottom:943.040000pt;}
.ycc{bottom:949.280000pt;}
.y2c{bottom:950.720000pt;}
.y80{bottom:956.880000pt;}
.y54{bottom:957.600000pt;}
.y129{bottom:958.720000pt;}
.ycb{bottom:965.600000pt;}
.ya6{bottom:966.320000pt;}
.y128{bottom:974.320000pt;}
.y7f{bottom:981.200000pt;}
.ya5{bottom:982.000000pt;}
.y2b{bottom:982.320000pt;}
.y53{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y7e{bottom:1012.880000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.he{height:23.680000pt;}
.h20{height:25.280000pt;}
.h2{height:30.341250pt;}
.h6{height:31.806563pt;}
.h1b{height:32.500000pt;}
.h3{height:34.804688pt;}
.h19{height:39.280000pt;}
.h21{height:43.276000pt;}
.h1f{height:43.277333pt;}
.h1e{height:43.280000pt;}
.h22{height:43.300000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.hb{height:46.916562pt;}
.h1a{height:47.920000pt;}
.h23{height:49.581562pt;}
.h5{height:51.411562pt;}
.hc{height:53.309531pt;}
.h13{height:54.877333pt;}
.h15{height:54.880000pt;}
.h11{height:54.900000pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1c{height:93.517333pt;}
.h1d{height:93.520000pt;}
.h16{height:190.160000pt;}
.h12{height:192.000000pt;}
.h14{height:200.026667pt;}
.h17{height:204.506667pt;}
.h18{height:211.386667pt;}
.h10{height:230.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:21.680000pt;}
.w18{width:37.840000pt;}
.w5{width:38.640000pt;}
.w6{width:38.720000pt;}
.w4{width:46.000000pt;}
.w7{width:46.020000pt;}
.w1b{width:47.920000pt;}
.w1c{width:54.800000pt;}
.w21{width:55.280000pt;}
.w1f{width:66.480000pt;}
.w20{width:66.500000pt;}
.w19{width:78.240000pt;}
.w1a{width:78.340000pt;}
.w9{width:84.820000pt;}
.w22{width:86.400000pt;}
.w14{width:88.000000pt;}
.wa{width:90.160000pt;}
.w11{width:113.920000pt;}
.w13{width:122.426667pt;}
.w15{width:122.430667pt;}
.w2{width:130.586667pt;}
.w8{width:155.040000pt;}
.w16{width:174.586667pt;}
.we{width:192.560000pt;}
.wf{width:211.146667pt;}
.wc{width:213.066667pt;}
.w12{width:252.426667pt;}
.wd{width:264.746667pt;}
.w1d{width:277.226667pt;}
.w1e{width:344.026667pt;}
.w10{width:367.066667pt;}
.w17{width:378.733333pt;}
.wb{width:671.733333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.800000pt;}
.x22{left:8.160000pt;}
.x1d{left:10.160000pt;}
.x26{left:11.520000pt;}
.x20{left:13.360000pt;}
.x18{left:16.240000pt;}
.x30{left:17.360000pt;}
.x19{left:22.720000pt;}
.x27{left:24.880000pt;}
.x2b{left:27.200000pt;}
.x29{left:32.560000pt;}
.x2c{left:36.480000pt;}
.x1e{left:39.920000pt;}
.x1b{left:44.720000pt;}
.x21{left:46.480000pt;}
.x23{left:59.200000pt;}
.x1{left:60.480000pt;}
.x25{left:72.000000pt;}
.x34{left:74.720000pt;}
.x4{left:84.480000pt;}
.x3d{left:86.000000pt;}
.x43{left:98.880000pt;}
.x2a{left:101.120000pt;}
.x6{left:102.640000pt;}
.x5{left:108.480000pt;}
.x36{left:120.000000pt;}
.x7{left:126.640000pt;}
.x2e{left:159.226667pt;}
.x2{left:205.466667pt;}
.x14{left:231.306667pt;}
.x9{left:240.426667pt;}
.x35{left:242.746667pt;}
.xa{left:262.826667pt;}
.x1a{left:274.826667pt;}
.x37{left:295.226667pt;}
.xb{left:309.466667pt;}
.x31{left:319.386667pt;}
.x38{left:333.786667pt;}
.xc{left:348.826667pt;}
.x3e{left:363.946667pt;}
.x15{left:387.066667pt;}
.xd{left:388.106667pt;}
.x39{left:412.666667pt;}
.xe{left:427.466667pt;}
.x3f{left:431.146667pt;}
.x32{left:434.026667pt;}
.x16{left:472.533333pt;}
.xf{left:474.133333pt;}
.x3a{left:491.653333pt;}
.x40{left:498.373333pt;}
.x10{left:513.493333pt;}
.x2d{left:523.893333pt;}
.x1c{left:540.293333pt;}
.x2f{left:555.333333pt;}
.x11{left:560.133333pt;}
.x41{left:565.573333pt;}
.x3b{left:570.613333pt;}
.x12{left:599.493333pt;}
.x3c{left:619.173333pt;}
.x42{left:621.573333pt;}
.x13{left:646.133333pt;}
.x1f{left:650.853333pt;}
.x17{left:653.893333pt;}
.x24{left:660.293333pt;}
.x28{left:666.933333pt;}
.x3{left:711.413333pt;}
.x33{left:780.640000pt;}
}




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