
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_41b8fd9b9eff7a9a098850ae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f3b8ed15c4d9d8f96950772f.woff')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_5d63039d522d2cbeab2a33a8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b51edf93d06d2d6cf1bf910.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_57c8064e3c42a7e79aea0b8e.woff')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_97dddcef66be3d8436120ef9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_56db34737c1a6ac688fbc894.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_07132859533ffb3fd20b5d42.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.513600px;}
.lsd{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.178800px;}
.ls16{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.125400px;}
.ls11{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.ls21{letter-spacing:-0.067200px;}
.ls13{letter-spacing:-0.063600px;}
.ls1d{letter-spacing:-0.041760px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls1a{letter-spacing:0.038880px;}
.lse{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls1c{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls20{letter-spacing:0.095400px;}
.ls19{letter-spacing:0.118200px;}
.ls7{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.152640px;}
.lsc{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.272640px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:47.726640px;}
.ls23{letter-spacing:48.446640px;}
.ls10{letter-spacing:63.566640px;}
.ls5{letter-spacing:80.344800px;}
.ls22{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.ws11{word-spacing:-13.321800px;}
.ws7{word-spacing:-13.275360px;}
.wse{word-spacing:-13.265280px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.101000px;}
.ws9{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.511840px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-4.612058px;}
._0{margin-left:-3.523212px;}
._4{margin-left:-2.497641px;}
._3{margin-left:-1.383000px;}
._2{width:1.340319px;}
._8{width:2.464800px;}
._9{width:3.847800px;}
._a{width:4.989599px;}
._b{width:6.372600px;}
._c{width:7.755600px;}
._6{width:9.379201px;}
._5{width:10.581000px;}
._d{width:12.024601px;}
._7{width:14.308800px;}
._e{width:15.687360px;}
._10{width:17.648642px;}
._f{width:18.736198px;}
._13{width:20.320560px;}
._1f{width:21.763440px;}
._11{width:22.905720px;}
._12{width:24.100920px;}
._20{width:25.137360px;}
._18{width:27.294480px;}
._21{width:29.483803px;}
._1d{width:30.721320px;}
._17{width:34.989840px;}
._1b{width:42.625080px;}
._1a{width:43.647120px;}
._1c{width:44.789400px;}
._25{width:50.087041px;}
._14{width:58.136040px;}
._22{width:61.713000px;}
._15{width:63.306360px;}
._23{width:77.458320px;}
._24{width:78.554520px;}
._19{width:80.200080px;}
._1e{width:193.826880px;}
._16{width:281.421720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1aa{bottom:7.830000px;}
.y1d6{bottom:7.860000px;}
.y1ac{bottom:7.920000px;}
.y1d3{bottom:9.750000px;}
.y1bd{bottom:20.880000px;}
.y1bf{bottom:20.970000px;}
.y1bc{bottom:25.380000px;}
.y1af{bottom:25.470000px;}
.y21d{bottom:26.580000px;}
.y21c{bottom:26.640000px;}
.y1f8{bottom:27.360000px;}
.y1d2{bottom:27.390000px;}
.y215{bottom:35.190000px;}
.y1b8{bottom:40.500000px;}
.y1b1{bottom:43.020000px;}
.y1ae{bottom:43.110000px;}
.y1b3{bottom:43.140000px;}
.y203{bottom:44.910000px;}
.y1d1{bottom:44.940000px;}
.y1f7{bottom:45.000000px;}
.y1e3{bottom:46.440000px;}
.y1a8{bottom:62.550000px;}
.y1d0{bottom:62.580000px;}
.y1e2{bottom:64.080000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1f6{bottom:108.840000px;}
.y2c1{bottom:116.040000px;}
.y17f{bottom:118.200000px;}
.y133{bottom:118.920000px;}
.y119{bottom:120.630000px;}
.y5c{bottom:124.950000px;}
.yb2{bottom:126.840000px;}
.y240{bottom:128.190000px;}
.y2c0{bottom:133.680000px;}
.y17e{bottom:135.840000px;}
.y1fa{bottom:136.200000px;}
.y132{bottom:136.560000px;}
.y118{bottom:138.180000px;}
.y26c{bottom:140.160000px;}
.yeb{bottom:140.250000px;}
.y160{bottom:141.060000px;}
.y5b{bottom:142.500000px;}
.y295{bottom:144.120000px;}
.yb1{bottom:144.390000px;}
.y23f{bottom:145.740000px;}
.y1a7{bottom:149.250000px;}
.y17d{bottom:153.390000px;}
.y131{bottom:154.110000px;}
.yea{bottom:157.800000px;}
.y15f{bottom:158.700000px;}
.y294{bottom:161.760000px;}
.yb0{bottom:161.940000px;}
.y23e{bottom:163.380000px;}
.y1f9{bottom:163.560000px;}
.y21b{bottom:163.830000px;}
.y1cd{bottom:164.280000px;}
.y17c{bottom:170.940000px;}
.y130{bottom:171.660000px;}
.y117{bottom:173.730000px;}
.ye9{bottom:175.440000px;}
.y15e{bottom:176.250000px;}
.y2bf{bottom:176.430000px;}
.y1ab{bottom:176.610000px;}
.y26b{bottom:177.240000px;}
.y5a{bottom:178.140000px;}
.y293{bottom:179.310000px;}
.y27{bottom:179.490000px;}
.yaf{bottom:179.580000px;}
.y23d{bottom:180.930000px;}
.y21a{bottom:181.470000px;}
.y12f{bottom:189.300000px;}
.y1f5{bottom:190.920000px;}
.y116{bottom:191.370000px;}
.ye8{bottom:192.990000px;}
.y15d{bottom:193.800000px;}
.y2be{bottom:193.980000px;}
.y26a{bottom:194.790000px;}
.y59{bottom:195.690000px;}
.y26{bottom:197.130000px;}
.y17b{bottom:197.580000px;}
.y23c{bottom:198.570000px;}
.y219{bottom:199.020000px;}
.y1cc{bottom:199.920000px;}
.y1a9{bottom:203.970000px;}
.y292{bottom:204.330000px;}
.y12e{bottom:206.850000px;}
.y115{bottom:208.920000px;}
.ye7{bottom:210.540000px;}
.y15c{bottom:211.440000px;}
.y269{bottom:212.430000px;}
.y58{bottom:213.330000px;}
.y25{bottom:214.680000px;}
.yae{bottom:214.770000px;}
.y23b{bottom:216.120000px;}
.y2bd{bottom:219.000000px;}
.y291{bottom:221.970000px;}
.y89{bottom:222.960000px;}
.y114{bottom:226.470000px;}
.y268{bottom:229.980000px;}
.y57{bottom:230.880000px;}
.yad{bottom:232.320000px;}
.y24{bottom:233.130000px;}
.y23a{bottom:233.670000px;}
.y218{bottom:233.850000px;}
.y1cb{bottom:235.470000px;}
.y2bc{bottom:236.640000px;}
.y88{bottom:240.600000px;}
.y12d{bottom:242.400000px;}
.y113{bottom:244.110000px;}
.y217{bottom:246.090000px;}
.ye6{bottom:246.180000px;}
.y15b{bottom:246.990000px;}
.y267{bottom:247.530000px;}
.y56{bottom:248.430000px;}
.yac{bottom:249.870000px;}
.y23{bottom:250.680000px;}
.y239{bottom:251.310000px;}
.y1a6{bottom:252.660000px;}
.y1ca{bottom:253.110000px;}
.y1f4{bottom:257.160000px;}
.y87{bottom:258.150000px;}
.y12c{bottom:260.040000px;}
.y112{bottom:261.660000px;}
.ye5{bottom:263.730000px;}
.y15a{bottom:264.540000px;}
.y290{bottom:264.720000px;}
.y266{bottom:265.080000px;}
.y55{bottom:266.070000px;}
.yab{bottom:267.510000px;}
.y22{bottom:268.230000px;}
.y17a{bottom:268.320000px;}
.y238{bottom:268.860000px;}
.y1c9{bottom:270.660000px;}
.y214{bottom:273.450000px;}
.y86{bottom:275.790000px;}
.y12b{bottom:277.590000px;}
.y1a5{bottom:279.210000px;}
.y111{bottom:279.300000px;}
.ye4{bottom:281.370000px;}
.y159{bottom:282.180000px;}
.y265{bottom:283.530000px;}
.y54{bottom:283.620000px;}
.yaa{bottom:285.060000px;}
.ycb{bottom:285.510000px;}
.y179{bottom:285.870000px;}
.y237{bottom:286.410000px;}
.y21{bottom:286.680000px;}
.y1c8{bottom:288.210000px;}
.y28f{bottom:289.650000px;}
.y1f3{bottom:292.800000px;}
.y85{bottom:293.340000px;}
.y12a{bottom:295.230000px;}
.y110{bottom:296.850000px;}
.ye3{bottom:298.920000px;}
.y158{bottom:299.730000px;}
.y216{bottom:300.720000px;}
.y264{bottom:301.170000px;}
.y53{bottom:301.260000px;}
.ya9{bottom:302.700000px;}
.yca{bottom:303.060000px;}
.y178{bottom:303.510000px;}
.y236{bottom:304.050000px;}
.y20{bottom:304.230000px;}
.y2bb{bottom:304.320000px;}
.y1c7{bottom:305.850000px;}
.y28e{bottom:307.380000px;}
.y1f2{bottom:310.350000px;}
.y84{bottom:310.890000px;}
.y129{bottom:312.780000px;}
.y1a4{bottom:315.120000px;}
.ye2{bottom:316.470000px;}
.y157{bottom:317.370000px;}
.y263{bottom:318.720000px;}
.yc9{bottom:320.610000px;}
.y177{bottom:321.060000px;}
.y2ba{bottom:321.960000px;}
.y1c6{bottom:323.400000px;}
.y83{bottom:328.530000px;}
.y1f1{bottom:328.800000px;}
.y128{bottom:330.330000px;}
.y28d{bottom:332.310000px;}
.y10f{bottom:332.400000px;}
.y156{bottom:334.920000px;}
.y262{bottom:336.360000px;}
.y52{bottom:336.810000px;}
.ya8{bottom:338.250000px;}
.y176{bottom:338.610000px;}
.y235{bottom:339.600000px;}
.y1f{bottom:340.680000px;}
.y1c5{bottom:343.020000px;}
.ye1{bottom:343.110000px;}
.y82{bottom:346.080000px;}
.y1f0{bottom:346.350000px;}
.y2b9{bottom:346.980000px;}
.y127{bottom:347.970000px;}
.y213{bottom:349.410000px;}
.y10e{bottom:350.040000px;}
.y155{bottom:352.470000px;}
.y261{bottom:353.910000px;}
.y51{bottom:354.360000px;}
.ya7{bottom:355.800000px;}
.y175{bottom:356.250000px;}
.y1c4{bottom:361.650000px;}
.y1a3{bottom:363.360000px;}
.y81{bottom:363.720000px;}
.y2b8{bottom:364.620000px;}
.y10d{bottom:367.590000px;}
.y154{bottom:370.110000px;}
.y260{bottom:372.360000px;}
.y50{bottom:372.810000px;}
.ya6{bottom:373.440000px;}
.y174{bottom:373.800000px;}
.y126{bottom:374.520000px;}
.y28c{bottom:375.060000px;}
.y234{bottom:375.240000px;}
.y1e{bottom:376.230000px;}
.ye0{bottom:378.660000px;}
.y1a2{bottom:381.000000px;}
.y80{bottom:381.270000px;}
.y1ef{bottom:382.710000px;}
.y212{bottom:385.050000px;}
.y10c{bottom:385.230000px;}
.y2b7{bottom:389.640000px;}
.y25f{bottom:389.910000px;}
.y4f{bottom:390.360000px;}
.ya5{bottom:390.990000px;}
.yc8{bottom:391.440000px;}
.y28b{bottom:392.700000px;}
.y233{bottom:392.790000px;}
.y1d{bottom:394.680000px;}
.ydf{bottom:396.210000px;}
.y1a1{bottom:398.550000px;}
.y1c3{bottom:399.360000px;}
.y211{bottom:402.600000px;}
.y10b{bottom:402.780000px;}
.y153{bottom:405.660000px;}
.y2b6{bottom:407.370000px;}
.y25e{bottom:407.460000px;}
.y7f{bottom:407.820000px;}
.ya4{bottom:408.630000px;}
.y4e{bottom:408.810000px;}
.yc7{bottom:408.990000px;}
.y1ee{bottom:409.350000px;}
.y125{bottom:410.160000px;}
.y232{bottom:410.340000px;}
.y1c{bottom:413.040000px;}
.y1a0{bottom:416.190000px;}
.y28a{bottom:419.610000px;}
.y152{bottom:423.300000px;}
.y25d{bottom:425.100000px;}
.y1c2{bottom:425.910000px;}
.ya3{bottom:426.180000px;}
.y4d{bottom:426.360000px;}
.yc6{bottom:426.540000px;}
.y1ed{bottom:426.900000px;}
.y124{bottom:427.710000px;}
.y231{bottom:427.980000px;}
.y210{bottom:429.240000px;}
.y10a{bottom:429.330000px;}
.y1b{bottom:431.490000px;}
.y2b5{bottom:432.300000px;}
.yde{bottom:432.660000px;}
.y19f{bottom:433.740000px;}
.y151{bottom:440.850000px;}
.y25c{bottom:442.650000px;}
.y7e{bottom:443.460000px;}
.ya2{bottom:443.730000px;}
.y4c{bottom:444.000000px;}
.yc5{bottom:444.180000px;}
.y230{bottom:445.530000px;}
.y2b4{bottom:450.030000px;}
.y19e{bottom:451.290000px;}
.y150{bottom:458.400000px;}
.y1ec{bottom:459.480000px;}
.y7d{bottom:461.010000px;}
.y4b{bottom:461.550000px;}
.yc4{bottom:461.730000px;}
.y22f{bottom:463.170000px;}
.y123{bottom:464.160000px;}
.y20f{bottom:464.790000px;}
.y109{bottom:464.970000px;}
.y289{bottom:467.850000px;}
.y1a{bottom:467.940000px;}
.ydd{bottom:468.210000px;}
.y19d{bottom:468.930000px;}
.y2b3{bottom:474.990000px;}
.y14f{bottom:476.070000px;}
.y1c1{bottom:476.160000px;}
.y7c{bottom:478.680000px;}
.y4a{bottom:479.130000px;}
.ya1{bottom:479.400000px;}
.y22e{bottom:480.750000px;}
.y20e{bottom:482.370000px;}
.y108{bottom:482.550000px;}
.y19{bottom:485.520000px;}
.y19c{bottom:486.510000px;}
.ydc{bottom:486.690000px;}
.y2b2{bottom:492.720000px;}
.y14e{bottom:493.620000px;}
.y288{bottom:494.790000px;}
.y7b{bottom:496.230000px;}
.y1eb{bottom:496.320000px;}
.ya0{bottom:496.950000px;}
.y122{bottom:499.650000px;}
.y20d{bottom:500.010000px;}
.y18{bottom:503.160000px;}
.y19b{bottom:504.150000px;}
.y25b{bottom:506.040000px;}
.y1c0{bottom:509.100000px;}
.y14d{bottom:511.260000px;}
.y7a{bottom:513.780000px;}
.yc3{bottom:514.500000px;}
.y9f{bottom:514.590000px;}
.y1ea{bottom:515.040000px;}
.y49{bottom:515.580000px;}
.y22d{bottom:516.300000px;}
.y2b1{bottom:517.740000px;}
.y121{bottom:518.100000px;}
.y107{bottom:519.000000px;}
.y17{bottom:520.710000px;}
.ydb{bottom:523.140000px;}
.y20c{bottom:526.560000px;}
.y14c{bottom:528.810000px;}
.y19a{bottom:531.060000px;}
.y79{bottom:531.420000px;}
.y9e{bottom:532.140000px;}
.y48{bottom:533.220000px;}
.y1e9{bottom:533.850000px;}
.y2b0{bottom:535.380000px;}
.y120{bottom:536.550000px;}
.y16{bottom:538.260000px;}
.y173{bottom:541.140000px;}
.y14b{bottom:546.360000px;}
.y78{bottom:548.970000px;}
.y9d{bottom:549.690000px;}
.yc2{bottom:550.140000px;}
.y47{bottom:550.770000px;}
.y22c{bottom:551.940000px;}
.y1e8{bottom:552.570000px;}
.y1be{bottom:554.010000px;}
.y25a{bottom:554.280000px;}
.y106{bottom:554.460000px;}
.y11f{bottom:554.910000px;}
.y15{bottom:555.900000px;}
.yda{bottom:558.690000px;}
.y2af{bottom:560.400000px;}
.y20b{bottom:562.200000px;}
.y14a{bottom:564.000000px;}
.y9c{bottom:567.330000px;}
.yc1{bottom:567.690000px;}
.y46{bottom:568.320000px;}
.y1e7{bottom:571.290000px;}
.y259{bottom:571.830000px;}
.y105{bottom:572.910000px;}
.y11e{bottom:573.360000px;}
.y14{bottom:573.450000px;}
.y77{bottom:575.610000px;}
.yd9{bottom:576.330000px;}
.y172{bottom:576.690000px;}
.y2ae{bottom:578.040000px;}
.y199{bottom:579.300000px;}
.y20a{bottom:579.750000px;}
.y287{bottom:580.470000px;}
.y149{bottom:581.550000px;}
.y9b{bottom:584.880000px;}
.yc0{bottom:585.330000px;}
.y22b{bottom:586.770000px;}
.y258{bottom:589.470000px;}
.y13{bottom:591.090000px;}
.y104{bottom:591.360000px;}
.y11d{bottom:591.810000px;}
.yd8{bottom:593.880000px;}
.y171{bottom:594.330000px;}
.y198{bottom:596.850000px;}
.y209{bottom:597.300000px;}
.y286{bottom:598.020000px;}
.y22a{bottom:598.920000px;}
.y148{bottom:599.190000px;}
.ybf{bottom:602.880000px;}
.y2ad{bottom:603.060000px;}
.y45{bottom:603.960000px;}
.y1e6{bottom:606.210000px;}
.y257{bottom:607.020000px;}
.y12{bottom:608.640000px;}
.y103{bottom:609.810000px;}
.y11c{bottom:610.170000px;}
.y76{bottom:611.160000px;}
.yd7{bottom:611.430000px;}
.y170{bottom:611.880000px;}
.y197{bottom:614.490000px;}
.y208{bottom:614.940000px;}
.y285{bottom:616.470000px;}
.y1bb{bottom:616.560000px;}
.y147{bottom:616.740000px;}
.y1e1{bottom:618.360000px;}
.ybe{bottom:620.430000px;}
.y9a{bottom:620.520000px;}
.y2ac{bottom:620.700000px;}
.y44{bottom:621.510000px;}
.y256{bottom:624.660000px;}
.y11{bottom:626.190000px;}
.y229{bottom:626.280000px;}
.y75{bottom:628.710000px;}
.yd6{bottom:629.070000px;}
.y16f{bottom:629.430000px;}
.y196{bottom:632.040000px;}
.y207{bottom:632.490000px;}
.y284{bottom:634.020000px;}
.y146{bottom:634.290000px;}
.y99{bottom:638.070000px;}
.y43{bottom:639.150000px;}
.y255{bottom:642.210000px;}
.y10{bottom:643.830000px;}
.y2ab{bottom:645.720000px;}
.y102{bottom:646.260000px;}
.y74{bottom:646.350000px;}
.y1e5{bottom:646.440000px;}
.yd5{bottom:646.620000px;}
.ybd{bottom:647.070000px;}
.y195{bottom:649.590000px;}
.y145{bottom:651.930000px;}
.y283{bottom:652.470000px;}
.y228{bottom:653.640000px;}
.y98{bottom:655.620000px;}
.y42{bottom:656.700000px;}
.y254{bottom:659.760000px;}
.yf{bottom:661.380000px;}
.y73{bottom:663.900000px;}
.y11b{bottom:664.260000px;}
.y16e{bottom:664.620000px;}
.y194{bottom:667.230000px;}
.y206{bottom:667.320000px;}
.y282{bottom:670.020000px;}
.y2aa{bottom:670.830000px;}
.y97{bottom:673.260000px;}
.y41{bottom:674.250000px;}
.y1e4{bottom:674.520000px;}
.y253{bottom:677.400000px;}
.ye{bottom:679.020000px;}
.y202{bottom:679.560000px;}
.y227{bottom:681.000000px;}
.y72{bottom:681.450000px;}
.y101{bottom:681.810000px;}
.yd4{bottom:682.260000px;}
.ybc{bottom:682.620000px;}
.y193{bottom:684.780000px;}
.y144{bottom:687.480000px;}
.y281{bottom:688.380000px;}
.y2a9{bottom:688.470000px;}
.y96{bottom:690.810000px;}
.y40{bottom:691.890000px;}
.yd{bottom:696.570000px;}
.y71{bottom:699.090000px;}
.y100{bottom:699.360000px;}
.yd3{bottom:699.810000px;}
.ybb{bottom:700.260000px;}
.y1e0{bottom:701.880000px;}
.y192{bottom:702.420000px;}
.y143{bottom:705.120000px;}
.y280{bottom:705.930000px;}
.y1ba{bottom:706.380000px;}
.y205{bottom:706.830000px;}
.y226{bottom:708.270000px;}
.y3f{bottom:709.440000px;}
.y252{bottom:712.950000px;}
.y2a8{bottom:713.490000px;}
.yc{bottom:714.120000px;}
.yff{bottom:717.000000px;}
.yd2{bottom:717.360000px;}
.y95{bottom:717.450000px;}
.yba{bottom:717.810000px;}
.y191{bottom:719.970000px;}
.y142{bottom:722.670000px;}
.y27f{bottom:724.380000px;}
.y70{bottom:725.640000px;}
.y3e{bottom:727.080000px;}
.y251{bottom:730.590000px;}
.yb{bottom:731.760000px;}
.y1b9{bottom:733.740000px;}
.y204{bottom:734.190000px;}
.yfe{bottom:734.550000px;}
.yd1{bottom:735.000000px;}
.yb9{bottom:735.360000px;}
.y224{bottom:735.630000px;}
.y190{bottom:737.520000px;}
.y2a7{bottom:738.600000px;}
.y141{bottom:740.220000px;}
.y27e{bottom:741.930000px;}
.y3d{bottom:744.630000px;}
.y250{bottom:748.140000px;}
.yfd{bottom:752.190000px;}
.yd0{bottom:752.550000px;}
.y94{bottom:753.000000px;}
.y18f{bottom:755.160000px;}
.y2a6{bottom:756.240000px;}
.y140{bottom:757.860000px;}
.y6f{bottom:758.220000px;}
.ya{bottom:758.670000px;}
.y201{bottom:761.550000px;}
.y3c{bottom:762.180000px;}
.y225{bottom:762.990000px;}
.y24f{bottom:765.690000px;}
.y1df{bottom:768.930000px;}
.yfc{bottom:769.740000px;}
.ycf{bottom:770.190000px;}
.y93{bottom:770.550000px;}
.y18e{bottom:772.710000px;}
.y2a5{bottom:773.790000px;}
.y13f{bottom:775.410000px;}
.y3b{bottom:779.820000px;}
.y1b7{bottom:782.430000px;}
.y24e{bottom:783.330000px;}
.yfb{bottom:787.290000px;}
.yce{bottom:787.740000px;}
.y92{bottom:788.190000px;}
.y18d{bottom:790.350000px;}
.y13e{bottom:793.050000px;}
.y6e{bottom:793.860000px;}
.y3a{bottom:797.370000px;}
.y2a4{bottom:798.810000px;}
.y24d{bottom:800.880000px;}
.y1de{bottom:804.480000px;}
.yfa{bottom:804.930000px;}
.ycd{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y91{bottom:805.740000px;}
.y27d{bottom:806.730000px;}
.y18c{bottom:807.900000px;}
.y1b6{bottom:808.980000px;}
.y6d{bottom:811.410000px;}
.y39{bottom:814.920000px;}
.y2a3{bottom:816.450000px;}
.y24c{bottom:818.520000px;}
.ycc{bottom:822.930000px;}
.y90{bottom:823.290000px;}
.y27c{bottom:824.280000px;}
.y18b{bottom:825.450000px;}
.y200{bottom:827.790000px;}
.y13d{bottom:828.600000px;}
.y6c{bottom:829.860000px;}
.y38{bottom:832.560000px;}
.y24b{bottom:836.070000px;}
.y223{bottom:839.040000px;}
.yf9{bottom:840.480000px;}
.y8f{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y1dd{bottom:841.290000px;}
.y2a2{bottom:841.470000px;}
.y1b5{bottom:841.920000px;}
.y27b{bottom:842.730000px;}
.y13c{bottom:846.150000px;}
.y6b{bottom:847.410000px;}
.y18a{bottom:852.090000px;}
.y222{bottom:856.590000px;}
.yf8{bottom:858.030000px;}
.y8e{bottom:858.480000px;}
.y2a1{bottom:859.200000px;}
.y1dc{bottom:859.920000px;}
.y27a{bottom:860.280000px;}
.y1ff{bottom:863.430000px;}
.y13b{bottom:863.790000px;}
.y6a{bottom:865.860000px;}
.y37{bottom:868.110000px;}
.y24a{bottom:871.620000px;}
.yf7{bottom:875.670000px;}
.yb8{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y279{bottom:878.730000px;}
.y1db{bottom:879.630000px;}
.y13a{bottom:881.340000px;}
.y69{bottom:883.410000px;}
.y2a0{bottom:884.130000px;}
.y16d{bottom:884.670000px;}
.y8d{bottom:885.120000px;}
.y36{bottom:885.750000px;}
.y189{bottom:887.640000px;}
.y249{bottom:889.260000px;}
.y221{bottom:892.140000px;}
.yf6{bottom:893.220000px;}
.yb7{bottom:893.670000px;}
.y278{bottom:896.280000px;}
.y1da{bottom:898.260000px;}
.y139{bottom:898.890000px;}
.y1fe{bottom:898.980000px;}
.y29f{bottom:901.860000px;}
.y35{bottom:903.300000px;}
.y1b4{bottom:904.470000px;}
.y188{bottom:905.280000px;}
.y248{bottom:906.810000px;}
.y220{bottom:909.780000px;}
.yf5{bottom:910.860000px;}
.yb6{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y277{bottom:914.730000px;}
.y138{bottom:916.530000px;}
.y68{bottom:919.860000px;}
.y16c{bottom:920.220000px;}
.y34{bottom:920.850000px;}
.y8c{bottom:921.030000px;}
.y187{bottom:922.830000px;}
.y247{bottom:924.450000px;}
.y29e{bottom:926.790000px;}
.y21f{bottom:927.330000px;}
.yf4{bottom:928.410000px;}
.yb5{bottom:928.860000px;}
.y276{bottom:932.280000px;}
.y1fd{bottom:934.980000px;}
.y1d9{bottom:935.970000px;}
.y16b{bottom:937.860000px;}
.y33{bottom:938.490000px;}
.y186{bottom:940.380000px;}
.y246{bottom:942.000000px;}
.y137{bottom:943.080000px;}
.y21e{bottom:944.970000px;}
.yf3{bottom:945.960000px;}
.y67{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y275{bottom:950.730000px;}
.y29d{bottom:951.900000px;}
.y1fc{bottom:952.530000px;}
.y16a{bottom:955.410000px;}
.y32{bottom:956.040000px;}
.y185{bottom:958.020000px;}
.y245{bottom:959.550000px;}
.y1d8{bottom:962.520000px;}
.yf2{bottom:963.600000px;}
.yb4{bottom:963.960000px;}
.y1b2{bottom:966.930000px;}
.y274{bottom:968.280000px;}
.y8b{bottom:969.270000px;}
.y29c{bottom:969.630000px;}
.y169{bottom:972.960000px;}
.y31{bottom:973.680000px;}
.y184{bottom:975.570000px;}
.y244{bottom:977.190000px;}
.y136{bottom:978.630000px;}
.yf1{bottom:981.150000px;}
.yb3{bottom:981.600000px;}
.y66{bottom:981.960000px;}
.y273{bottom:986.730000px;}
.y4{bottom:987.630000px;}
.y1fb{bottom:990.150000px;}
.y168{bottom:990.600000px;}
.y30{bottom:991.230000px;}
.y183{bottom:993.210000px;}
.y29b{bottom:994.560000px;}
.y243{bottom:994.740000px;}
.y135{bottom:997.080000px;}
.y1d7{bottom:997.350000px;}
.y11a{bottom:999.150000px;}
.y65{bottom:999.600000px;}
.y8a{bottom:1001.490000px;}
.y272{bottom:1004.370000px;}
.y167{bottom:1008.150000px;}
.y2f{bottom:1008.780000px;}
.y1cf{bottom:1009.590000px;}
.y182{bottom:1010.790000px;}
.y3{bottom:1012.320000px;}
.y134{bottom:1015.470000px;}
.yf0{bottom:1016.820000px;}
.y64{bottom:1017.180000px;}
.y271{bottom:1021.950000px;}
.y166{bottom:1025.820000px;}
.y2e{bottom:1026.450000px;}
.y181{bottom:1028.340000px;}
.y1b0{bottom:1029.510000px;}
.y242{bottom:1029.960000px;}
.yef{bottom:1034.370000px;}
.y63{bottom:1034.820000px;}
.y1d5{bottom:1036.890000px;}
.y29a{bottom:1037.250000px;}
.y270{bottom:1040.400000px;}
.y165{bottom:1043.370000px;}
.y2d{bottom:1044.000000px;}
.yee{bottom:1051.920000px;}
.y62{bottom:1052.370000px;}
.y180{bottom:1054.890000px;}
.y299{bottom:1054.980000px;}
.y241{bottom:1056.870000px;}
.y26f{bottom:1057.950000px;}
.y164{bottom:1060.920000px;}
.y1d4{bottom:1064.250000px;}
.yed{bottom:1069.560000px;}
.y61{bottom:1069.920000px;}
.y2c{bottom:1070.910000px;}
.y26e{bottom:1075.500000px;}
.y163{bottom:1078.560000px;}
.y298{bottom:1079.910000px;}
.yec{bottom:1087.110000px;}
.y60{bottom:1087.560000px;}
.y1ce{bottom:1091.610000px;}
.y1ad{bottom:1091.970000px;}
.y162{bottom:1096.110000px;}
.y297{bottom:1097.640000px;}
.y5f{bottom:1105.110000px;}
.y26d{bottom:1111.950000px;}
.y161{bottom:1113.750000px;}
.y2b{bottom:1119.510000px;}
.y296{bottom:1122.660000px;}
.y5e{bottom:1122.750000px;}
.y2a{bottom:1138.860000px;}
.y5d{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h13{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h14{height:40.539023px;}
.h16{height:44.100000px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.h17{height:53.910000px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.hf{height:61.740000px;}
.h8{height:61.793886px;}
.he{height:61.830000px;}
.h10{height:61.860000px;}
.h9{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:81.270000px;}
.h12{height:81.300000px;}
.h15{height:82.800000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:24.390000px;}
.w9{width:24.480000px;}
.we{width:25.290000px;}
.wa{width:25.380000px;}
.w6{width:26.100000px;}
.w8{width:26.550000px;}
.w20{width:48.870000px;}
.w1f{width:50.580000px;}
.w2b{width:51.750000px;}
.w22{width:69.390000px;}
.w21{width:69.570000px;}
.w26{width:71.280000px;}
.w17{width:80.190000px;}
.w2c{width:80.730000px;}
.w1b{width:91.260000px;}
.w13{width:91.290000px;}
.w24{width:93.960000px;}
.wb{width:100.740000px;}
.w2a{width:107.370000px;}
.wf{width:109.920000px;}
.w27{width:116.310000px;}
.w1e{width:124.290000px;}
.w2d{width:128.370000px;}
.wc{width:129.870000px;}
.w4{width:129.960000px;}
.w23{width:130.350000px;}
.w25{width:131.310000px;}
.w10{width:137.520000px;}
.w3{width:140.160000px;}
.w14{width:142.290000px;}
.w18{width:144.480000px;}
.w1c{width:145.470000px;}
.w19{width:157.320000px;}
.w11{width:158.670000px;}
.w16{width:169.290000px;}
.w28{width:206.670000px;}
.w29{width:209.820000px;}
.w15{width:254.370000px;}
.w12{width:339.420000px;}
.w1a{width:371.460000px;}
.w1d{width:392.430000px;}
.w5{width:483.420000px;}
.wd{width:522.840000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.x29{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:72.720000px;}
.x2{left:95.040000px;}
.x36{left:111.419987px;}
.x1a{left:116.820000px;}
.x3{left:122.040000px;}
.x2e{left:131.400000px;}
.x1e{left:149.670000px;}
.x21{left:160.830000px;}
.x28{left:167.160000px;}
.xf{left:170.220000px;}
.x16{left:183.360000px;}
.x11{left:197.040000px;}
.x9{left:209.640000px;}
.x4{left:211.079987px;}
.x12{left:222.240000px;}
.x1d{left:226.469987px;}
.xb{left:236.550000px;}
.x13{left:249.600000px;}
.xc{left:261.750000px;}
.x14{left:274.800000px;}
.x35{left:280.559987px;}
.xd{left:289.020000px;}
.x1f{left:294.870000px;}
.x10{left:300.900000px;}
.x22{left:307.020000px;}
.x24{left:312.150000px;}
.xe{left:314.220000px;}
.x17{left:321.600000px;}
.x34{left:331.229987px;}
.x2f{left:338.880000px;}
.xa{left:340.320000px;}
.x7{left:343.289987px;}
.x1b{left:351.930000px;}
.x25{left:361.740000px;}
.x19{left:367.049987px;}
.x2a{left:393.870000px;}
.x33{left:420.330000px;}
.x26{left:432.030000px;}
.x20{left:453.000000px;}
.x2b{left:465.870000px;}
.x18{left:481.080000px;}
.x27{left:502.140000px;}
.x30{left:549.510000px;}
.x2c{left:582.900000px;}
.x1c{left:607.110000px;}
.x2d{left:654.900000px;}
.x31{left:657.600000px;}
.x6{left:668.309987px;}
.x23{left:700.170000px;}
.x32{left:710.160000px;}
.x5{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.456533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.158933pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.111467pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls21{letter-spacing:-0.059733pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1d{letter-spacing:-0.037120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls1a{letter-spacing:0.034560pt;}
.lse{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls1c{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls20{letter-spacing:0.084800pt;}
.ls19{letter-spacing:0.105067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.135680pt;}
.lsc{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.242347pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:42.423680pt;}
.ls23{letter-spacing:43.063680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls5{letter-spacing:71.417600pt;}
.ls22{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.ws11{word-spacing:-11.841600pt;}
.ws7{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.791360pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.645333pt;}
.ws9{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.566080pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-4.099607pt;}
._0{margin-left:-3.131744pt;}
._4{margin-left:-2.220125pt;}
._3{margin-left:-1.229334pt;}
._2{width:1.191394pt;}
._8{width:2.190933pt;}
._9{width:3.420267pt;}
._a{width:4.435199pt;}
._b{width:5.664533pt;}
._c{width:6.893867pt;}
._6{width:8.337068pt;}
._5{width:9.405333pt;}
._d{width:10.688534pt;}
._7{width:12.718934pt;}
._e{width:13.944320pt;}
._10{width:15.687682pt;}
._f{width:16.654398pt;}
._13{width:18.062720pt;}
._1f{width:19.345280pt;}
._11{width:20.360640pt;}
._12{width:21.423040pt;}
._20{width:22.344320pt;}
._18{width:24.261760pt;}
._21{width:26.207825pt;}
._1d{width:27.307840pt;}
._17{width:31.102080pt;}
._1b{width:37.888960pt;}
._1a{width:38.797440pt;}
._1c{width:39.812800pt;}
._25{width:44.521815pt;}
._14{width:51.676480pt;}
._22{width:54.856000pt;}
._15{width:56.272320pt;}
._23{width:68.851840pt;}
._24{width:69.826240pt;}
._19{width:71.288960pt;}
._1e{width:172.290560pt;}
._16{width:250.152640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1aa{bottom:6.960000pt;}
.y1d6{bottom:6.986667pt;}
.y1ac{bottom:7.040000pt;}
.y1d3{bottom:8.666667pt;}
.y1bd{bottom:18.560000pt;}
.y1bf{bottom:18.640000pt;}
.y1bc{bottom:22.560000pt;}
.y1af{bottom:22.640000pt;}
.y21d{bottom:23.626667pt;}
.y21c{bottom:23.680000pt;}
.y1f8{bottom:24.320000pt;}
.y1d2{bottom:24.346667pt;}
.y215{bottom:31.280000pt;}
.y1b8{bottom:36.000000pt;}
.y1b1{bottom:38.240000pt;}
.y1ae{bottom:38.320000pt;}
.y1b3{bottom:38.346667pt;}
.y203{bottom:39.920000pt;}
.y1d1{bottom:39.946667pt;}
.y1f7{bottom:40.000000pt;}
.y1e3{bottom:41.280000pt;}
.y1a8{bottom:55.600000pt;}
.y1d0{bottom:55.626667pt;}
.y1e2{bottom:56.960000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1f6{bottom:96.746667pt;}
.y2c1{bottom:103.146667pt;}
.y17f{bottom:105.066667pt;}
.y133{bottom:105.706667pt;}
.y119{bottom:107.226667pt;}
.y5c{bottom:111.066667pt;}
.yb2{bottom:112.746667pt;}
.y240{bottom:113.946667pt;}
.y2c0{bottom:118.826667pt;}
.y17e{bottom:120.746667pt;}
.y1fa{bottom:121.066667pt;}
.y132{bottom:121.386667pt;}
.y118{bottom:122.826667pt;}
.y26c{bottom:124.586667pt;}
.yeb{bottom:124.666667pt;}
.y160{bottom:125.386667pt;}
.y5b{bottom:126.666667pt;}
.y295{bottom:128.106667pt;}
.yb1{bottom:128.346667pt;}
.y23f{bottom:129.546667pt;}
.y1a7{bottom:132.666667pt;}
.y17d{bottom:136.346667pt;}
.y131{bottom:136.986667pt;}
.yea{bottom:140.266667pt;}
.y15f{bottom:141.066667pt;}
.y294{bottom:143.786667pt;}
.yb0{bottom:143.946667pt;}
.y23e{bottom:145.226667pt;}
.y1f9{bottom:145.386667pt;}
.y21b{bottom:145.626667pt;}
.y1cd{bottom:146.026667pt;}
.y17c{bottom:151.946667pt;}
.y130{bottom:152.586667pt;}
.y117{bottom:154.426667pt;}
.ye9{bottom:155.946667pt;}
.y15e{bottom:156.666667pt;}
.y2bf{bottom:156.826667pt;}
.y1ab{bottom:156.986667pt;}
.y26b{bottom:157.546667pt;}
.y5a{bottom:158.346667pt;}
.y293{bottom:159.386667pt;}
.y27{bottom:159.546667pt;}
.yaf{bottom:159.626667pt;}
.y23d{bottom:160.826667pt;}
.y21a{bottom:161.306667pt;}
.y12f{bottom:168.266667pt;}
.y1f5{bottom:169.706667pt;}
.y116{bottom:170.106667pt;}
.ye8{bottom:171.546667pt;}
.y15d{bottom:172.266667pt;}
.y2be{bottom:172.426667pt;}
.y26a{bottom:173.146667pt;}
.y59{bottom:173.946667pt;}
.y26{bottom:175.226667pt;}
.y17b{bottom:175.626667pt;}
.y23c{bottom:176.506667pt;}
.y219{bottom:176.906667pt;}
.y1cc{bottom:177.706667pt;}
.y1a9{bottom:181.306667pt;}
.y292{bottom:181.626667pt;}
.y12e{bottom:183.866667pt;}
.y115{bottom:185.706667pt;}
.ye7{bottom:187.146667pt;}
.y15c{bottom:187.946667pt;}
.y269{bottom:188.826667pt;}
.y58{bottom:189.626667pt;}
.y25{bottom:190.826667pt;}
.yae{bottom:190.906667pt;}
.y23b{bottom:192.106667pt;}
.y2bd{bottom:194.666667pt;}
.y291{bottom:197.306667pt;}
.y89{bottom:198.186667pt;}
.y114{bottom:201.306667pt;}
.y268{bottom:204.426667pt;}
.y57{bottom:205.226667pt;}
.yad{bottom:206.506667pt;}
.y24{bottom:207.226667pt;}
.y23a{bottom:207.706667pt;}
.y218{bottom:207.866667pt;}
.y1cb{bottom:209.306667pt;}
.y2bc{bottom:210.346667pt;}
.y88{bottom:213.866667pt;}
.y12d{bottom:215.466667pt;}
.y113{bottom:216.986667pt;}
.y217{bottom:218.746667pt;}
.ye6{bottom:218.826667pt;}
.y15b{bottom:219.546667pt;}
.y267{bottom:220.026667pt;}
.y56{bottom:220.826667pt;}
.yac{bottom:222.106667pt;}
.y23{bottom:222.826667pt;}
.y239{bottom:223.386667pt;}
.y1a6{bottom:224.586667pt;}
.y1ca{bottom:224.986667pt;}
.y1f4{bottom:228.586667pt;}
.y87{bottom:229.466667pt;}
.y12c{bottom:231.146667pt;}
.y112{bottom:232.586667pt;}
.ye5{bottom:234.426667pt;}
.y15a{bottom:235.146667pt;}
.y290{bottom:235.306667pt;}
.y266{bottom:235.626667pt;}
.y55{bottom:236.506667pt;}
.yab{bottom:237.786667pt;}
.y22{bottom:238.426667pt;}
.y17a{bottom:238.506667pt;}
.y238{bottom:238.986667pt;}
.y1c9{bottom:240.586667pt;}
.y214{bottom:243.066667pt;}
.y86{bottom:245.146667pt;}
.y12b{bottom:246.746667pt;}
.y1a5{bottom:248.186667pt;}
.y111{bottom:248.266667pt;}
.ye4{bottom:250.106667pt;}
.y159{bottom:250.826667pt;}
.y265{bottom:252.026667pt;}
.y54{bottom:252.106667pt;}
.yaa{bottom:253.386667pt;}
.ycb{bottom:253.786667pt;}
.y179{bottom:254.106667pt;}
.y237{bottom:254.586667pt;}
.y21{bottom:254.826667pt;}
.y1c8{bottom:256.186667pt;}
.y28f{bottom:257.466667pt;}
.y1f3{bottom:260.266667pt;}
.y85{bottom:260.746667pt;}
.y12a{bottom:262.426667pt;}
.y110{bottom:263.866667pt;}
.ye3{bottom:265.706667pt;}
.y158{bottom:266.426667pt;}
.y216{bottom:267.306667pt;}
.y264{bottom:267.706667pt;}
.y53{bottom:267.786667pt;}
.ya9{bottom:269.066667pt;}
.yca{bottom:269.386667pt;}
.y178{bottom:269.786667pt;}
.y236{bottom:270.266667pt;}
.y20{bottom:270.426667pt;}
.y2bb{bottom:270.506667pt;}
.y1c7{bottom:271.866667pt;}
.y28e{bottom:273.226667pt;}
.y1f2{bottom:275.866667pt;}
.y84{bottom:276.346667pt;}
.y129{bottom:278.026667pt;}
.y1a4{bottom:280.106667pt;}
.ye2{bottom:281.306667pt;}
.y157{bottom:282.106667pt;}
.y263{bottom:283.306667pt;}
.yc9{bottom:284.986667pt;}
.y177{bottom:285.386667pt;}
.y2ba{bottom:286.186667pt;}
.y1c6{bottom:287.466667pt;}
.y83{bottom:292.026667pt;}
.y1f1{bottom:292.266667pt;}
.y128{bottom:293.626667pt;}
.y28d{bottom:295.386667pt;}
.y10f{bottom:295.466667pt;}
.y156{bottom:297.706667pt;}
.y262{bottom:298.986667pt;}
.y52{bottom:299.386667pt;}
.ya8{bottom:300.666667pt;}
.y176{bottom:300.986667pt;}
.y235{bottom:301.866667pt;}
.y1f{bottom:302.826667pt;}
.y1c5{bottom:304.906667pt;}
.ye1{bottom:304.986667pt;}
.y82{bottom:307.626667pt;}
.y1f0{bottom:307.866667pt;}
.y2b9{bottom:308.426667pt;}
.y127{bottom:309.306667pt;}
.y213{bottom:310.586667pt;}
.y10e{bottom:311.146667pt;}
.y155{bottom:313.306667pt;}
.y261{bottom:314.586667pt;}
.y51{bottom:314.986667pt;}
.ya7{bottom:316.266667pt;}
.y175{bottom:316.666667pt;}
.y1c4{bottom:321.466667pt;}
.y1a3{bottom:322.986667pt;}
.y81{bottom:323.306667pt;}
.y2b8{bottom:324.106667pt;}
.y10d{bottom:326.746667pt;}
.y154{bottom:328.986667pt;}
.y260{bottom:330.986667pt;}
.y50{bottom:331.386667pt;}
.ya6{bottom:331.946667pt;}
.y174{bottom:332.266667pt;}
.y126{bottom:332.906667pt;}
.y28c{bottom:333.386667pt;}
.y234{bottom:333.546667pt;}
.y1e{bottom:334.426667pt;}
.ye0{bottom:336.586667pt;}
.y1a2{bottom:338.666667pt;}
.y80{bottom:338.906667pt;}
.y1ef{bottom:340.186667pt;}
.y212{bottom:342.266667pt;}
.y10c{bottom:342.426667pt;}
.y2b7{bottom:346.346667pt;}
.y25f{bottom:346.586667pt;}
.y4f{bottom:346.986667pt;}
.ya5{bottom:347.546667pt;}
.yc8{bottom:347.946667pt;}
.y28b{bottom:349.066667pt;}
.y233{bottom:349.146667pt;}
.y1d{bottom:350.826667pt;}
.ydf{bottom:352.186667pt;}
.y1a1{bottom:354.266667pt;}
.y1c3{bottom:354.986667pt;}
.y211{bottom:357.866667pt;}
.y10b{bottom:358.026667pt;}
.y153{bottom:360.586667pt;}
.y2b6{bottom:362.106667pt;}
.y25e{bottom:362.186667pt;}
.y7f{bottom:362.506667pt;}
.ya4{bottom:363.226667pt;}
.y4e{bottom:363.386667pt;}
.yc7{bottom:363.546667pt;}
.y1ee{bottom:363.866667pt;}
.y125{bottom:364.586667pt;}
.y232{bottom:364.746667pt;}
.y1c{bottom:367.146667pt;}
.y1a0{bottom:369.946667pt;}
.y28a{bottom:372.986667pt;}
.y152{bottom:376.266667pt;}
.y25d{bottom:377.866667pt;}
.y1c2{bottom:378.586667pt;}
.ya3{bottom:378.826667pt;}
.y4d{bottom:378.986667pt;}
.yc6{bottom:379.146667pt;}
.y1ed{bottom:379.466667pt;}
.y124{bottom:380.186667pt;}
.y231{bottom:380.426667pt;}
.y210{bottom:381.546667pt;}
.y10a{bottom:381.626667pt;}
.y1b{bottom:383.546667pt;}
.y2b5{bottom:384.266667pt;}
.yde{bottom:384.586667pt;}
.y19f{bottom:385.546667pt;}
.y151{bottom:391.866667pt;}
.y25c{bottom:393.466667pt;}
.y7e{bottom:394.186667pt;}
.ya2{bottom:394.426667pt;}
.y4c{bottom:394.666667pt;}
.yc5{bottom:394.826667pt;}
.y230{bottom:396.026667pt;}
.y2b4{bottom:400.026667pt;}
.y19e{bottom:401.146667pt;}
.y150{bottom:407.466667pt;}
.y1ec{bottom:408.426667pt;}
.y7d{bottom:409.786667pt;}
.y4b{bottom:410.266667pt;}
.yc4{bottom:410.426667pt;}
.y22f{bottom:411.706667pt;}
.y123{bottom:412.586667pt;}
.y20f{bottom:413.146667pt;}
.y109{bottom:413.306667pt;}
.y289{bottom:415.866667pt;}
.y1a{bottom:415.946667pt;}
.ydd{bottom:416.186667pt;}
.y19d{bottom:416.826667pt;}
.y2b3{bottom:422.213333pt;}
.y14f{bottom:423.173333pt;}
.y1c1{bottom:423.253333pt;}
.y7c{bottom:425.493333pt;}
.y4a{bottom:425.893333pt;}
.ya1{bottom:426.133333pt;}
.y22e{bottom:427.333333pt;}
.y20e{bottom:428.773333pt;}
.y108{bottom:428.933333pt;}
.y19{bottom:431.573333pt;}
.y19c{bottom:432.453333pt;}
.ydc{bottom:432.613333pt;}
.y2b2{bottom:437.973333pt;}
.y14e{bottom:438.773333pt;}
.y288{bottom:439.813333pt;}
.y7b{bottom:441.093333pt;}
.y1eb{bottom:441.173333pt;}
.ya0{bottom:441.733333pt;}
.y122{bottom:444.133333pt;}
.y20d{bottom:444.453333pt;}
.y18{bottom:447.253333pt;}
.y19b{bottom:448.133333pt;}
.y25b{bottom:449.813333pt;}
.y1c0{bottom:452.533333pt;}
.y14d{bottom:454.453333pt;}
.y7a{bottom:456.693333pt;}
.yc3{bottom:457.333333pt;}
.y9f{bottom:457.413333pt;}
.y1ea{bottom:457.813333pt;}
.y49{bottom:458.293333pt;}
.y22d{bottom:458.933333pt;}
.y2b1{bottom:460.213333pt;}
.y121{bottom:460.533333pt;}
.y107{bottom:461.333333pt;}
.y17{bottom:462.853333pt;}
.ydb{bottom:465.013333pt;}
.y20c{bottom:468.053333pt;}
.y14c{bottom:470.053333pt;}
.y19a{bottom:472.053333pt;}
.y79{bottom:472.373333pt;}
.y9e{bottom:473.013333pt;}
.y48{bottom:473.973333pt;}
.y1e9{bottom:474.533333pt;}
.y2b0{bottom:475.893333pt;}
.y120{bottom:476.933333pt;}
.y16{bottom:478.453333pt;}
.y173{bottom:481.013333pt;}
.y14b{bottom:485.653333pt;}
.y78{bottom:487.973333pt;}
.y9d{bottom:488.613333pt;}
.yc2{bottom:489.013333pt;}
.y47{bottom:489.573333pt;}
.y22c{bottom:490.613333pt;}
.y1e8{bottom:491.173333pt;}
.y1be{bottom:492.453333pt;}
.y25a{bottom:492.693333pt;}
.y106{bottom:492.853333pt;}
.y11f{bottom:493.253333pt;}
.y15{bottom:494.133333pt;}
.yda{bottom:496.613333pt;}
.y2af{bottom:498.133333pt;}
.y20b{bottom:499.733333pt;}
.y14a{bottom:501.333333pt;}
.y9c{bottom:504.293333pt;}
.yc1{bottom:504.613333pt;}
.y46{bottom:505.173333pt;}
.y1e7{bottom:507.813333pt;}
.y259{bottom:508.293333pt;}
.y105{bottom:509.253333pt;}
.y11e{bottom:509.653333pt;}
.y14{bottom:509.733333pt;}
.y77{bottom:511.653333pt;}
.yd9{bottom:512.293333pt;}
.y172{bottom:512.613333pt;}
.y2ae{bottom:513.813333pt;}
.y199{bottom:514.933333pt;}
.y20a{bottom:515.333333pt;}
.y287{bottom:515.973333pt;}
.y149{bottom:516.933333pt;}
.y9b{bottom:519.893333pt;}
.yc0{bottom:520.293333pt;}
.y22b{bottom:521.573333pt;}
.y258{bottom:523.973333pt;}
.y13{bottom:525.413333pt;}
.y104{bottom:525.653333pt;}
.y11d{bottom:526.053333pt;}
.yd8{bottom:527.893333pt;}
.y171{bottom:528.293333pt;}
.y198{bottom:530.533333pt;}
.y209{bottom:530.933333pt;}
.y286{bottom:531.573333pt;}
.y22a{bottom:532.373333pt;}
.y148{bottom:532.613333pt;}
.ybf{bottom:535.893333pt;}
.y2ad{bottom:536.053333pt;}
.y45{bottom:536.853333pt;}
.y1e6{bottom:538.853333pt;}
.y257{bottom:539.573333pt;}
.y12{bottom:541.013333pt;}
.y103{bottom:542.053333pt;}
.y11c{bottom:542.373333pt;}
.y76{bottom:543.253333pt;}
.yd7{bottom:543.493333pt;}
.y170{bottom:543.893333pt;}
.y197{bottom:546.213333pt;}
.y208{bottom:546.613333pt;}
.y285{bottom:547.973333pt;}
.y1bb{bottom:548.053333pt;}
.y147{bottom:548.213333pt;}
.y1e1{bottom:549.653333pt;}
.ybe{bottom:551.493333pt;}
.y9a{bottom:551.573333pt;}
.y2ac{bottom:551.733333pt;}
.y44{bottom:552.453333pt;}
.y256{bottom:555.253333pt;}
.y11{bottom:556.613333pt;}
.y229{bottom:556.693333pt;}
.y75{bottom:558.853333pt;}
.yd6{bottom:559.173333pt;}
.y16f{bottom:559.493333pt;}
.y196{bottom:561.813333pt;}
.y207{bottom:562.213333pt;}
.y284{bottom:563.573333pt;}
.y146{bottom:563.813333pt;}
.y99{bottom:567.173333pt;}
.y43{bottom:568.133333pt;}
.y255{bottom:570.853333pt;}
.y10{bottom:572.293333pt;}
.y2ab{bottom:573.973333pt;}
.y102{bottom:574.453333pt;}
.y74{bottom:574.533333pt;}
.y1e5{bottom:574.613333pt;}
.yd5{bottom:574.773333pt;}
.ybd{bottom:575.173333pt;}
.y195{bottom:577.413333pt;}
.y145{bottom:579.493333pt;}
.y283{bottom:579.973333pt;}
.y228{bottom:581.013333pt;}
.y98{bottom:582.773333pt;}
.y42{bottom:583.733333pt;}
.y254{bottom:586.453333pt;}
.yf{bottom:587.893333pt;}
.y73{bottom:590.133333pt;}
.y11b{bottom:590.453333pt;}
.y16e{bottom:590.773333pt;}
.y194{bottom:593.093333pt;}
.y206{bottom:593.173333pt;}
.y282{bottom:595.573333pt;}
.y2aa{bottom:596.293333pt;}
.y97{bottom:598.453333pt;}
.y41{bottom:599.333333pt;}
.y1e4{bottom:599.573333pt;}
.y253{bottom:602.133333pt;}
.ye{bottom:603.573333pt;}
.y202{bottom:604.053333pt;}
.y227{bottom:605.333333pt;}
.y72{bottom:605.733333pt;}
.y101{bottom:606.053333pt;}
.yd4{bottom:606.453333pt;}
.ybc{bottom:606.773333pt;}
.y193{bottom:608.693333pt;}
.y144{bottom:611.093333pt;}
.y281{bottom:611.893333pt;}
.y2a9{bottom:611.973333pt;}
.y96{bottom:614.053333pt;}
.y40{bottom:615.013333pt;}
.yd{bottom:619.173333pt;}
.y71{bottom:621.413333pt;}
.y100{bottom:621.653333pt;}
.yd3{bottom:622.053333pt;}
.ybb{bottom:622.453333pt;}
.y1e0{bottom:623.893333pt;}
.y192{bottom:624.373333pt;}
.y143{bottom:626.773333pt;}
.y280{bottom:627.493333pt;}
.y1ba{bottom:627.893333pt;}
.y205{bottom:628.293333pt;}
.y226{bottom:629.573333pt;}
.y3f{bottom:630.613333pt;}
.y252{bottom:633.733333pt;}
.y2a8{bottom:634.213333pt;}
.yc{bottom:634.773333pt;}
.yff{bottom:637.333333pt;}
.yd2{bottom:637.653333pt;}
.y95{bottom:637.733333pt;}
.yba{bottom:638.053333pt;}
.y191{bottom:639.973333pt;}
.y142{bottom:642.373333pt;}
.y27f{bottom:643.893333pt;}
.y70{bottom:645.013333pt;}
.y3e{bottom:646.293333pt;}
.y251{bottom:649.413333pt;}
.yb{bottom:650.453333pt;}
.y1b9{bottom:652.213333pt;}
.y204{bottom:652.613333pt;}
.yfe{bottom:652.933333pt;}
.yd1{bottom:653.333333pt;}
.yb9{bottom:653.653333pt;}
.y224{bottom:653.893333pt;}
.y190{bottom:655.573333pt;}
.y2a7{bottom:656.533333pt;}
.y141{bottom:657.973333pt;}
.y27e{bottom:659.493333pt;}
.y3d{bottom:661.893333pt;}
.y250{bottom:665.013333pt;}
.yfd{bottom:668.613333pt;}
.yd0{bottom:668.933333pt;}
.y94{bottom:669.333333pt;}
.y18f{bottom:671.253333pt;}
.y2a6{bottom:672.213333pt;}
.y140{bottom:673.653333pt;}
.y6f{bottom:673.973333pt;}
.ya{bottom:674.373333pt;}
.y201{bottom:676.933333pt;}
.y3c{bottom:677.493333pt;}
.y225{bottom:678.213333pt;}
.y24f{bottom:680.613333pt;}
.y1df{bottom:683.493333pt;}
.yfc{bottom:684.213333pt;}
.ycf{bottom:684.613333pt;}
.y93{bottom:684.933333pt;}
.y18e{bottom:686.853333pt;}
.y2a5{bottom:687.813333pt;}
.y13f{bottom:689.253333pt;}
.y3b{bottom:693.173333pt;}
.y1b7{bottom:695.493333pt;}
.y24e{bottom:696.293333pt;}
.yfb{bottom:699.813333pt;}
.yce{bottom:700.213333pt;}
.y92{bottom:700.613333pt;}
.y18d{bottom:702.533333pt;}
.y13e{bottom:704.933333pt;}
.y6e{bottom:705.653333pt;}
.y3a{bottom:708.773333pt;}
.y2a4{bottom:710.053333pt;}
.y24d{bottom:711.893333pt;}
.y1de{bottom:715.093333pt;}
.yfa{bottom:715.493333pt;}
.ycd{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y91{bottom:716.213333pt;}
.y27d{bottom:717.093333pt;}
.y18c{bottom:718.133333pt;}
.y1b6{bottom:719.093333pt;}
.y6d{bottom:721.253333pt;}
.y39{bottom:724.373333pt;}
.y2a3{bottom:725.733333pt;}
.y24c{bottom:727.573333pt;}
.ycc{bottom:731.493333pt;}
.y90{bottom:731.813333pt;}
.y27c{bottom:732.693333pt;}
.y18b{bottom:733.733333pt;}
.y200{bottom:735.813333pt;}
.y13d{bottom:736.533333pt;}
.y6c{bottom:737.653333pt;}
.y38{bottom:740.053333pt;}
.y24b{bottom:743.173333pt;}
.y223{bottom:745.813333pt;}
.yf9{bottom:747.093333pt;}
.y8f{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y1dd{bottom:747.813333pt;}
.y2a2{bottom:747.973333pt;}
.y1b5{bottom:748.373333pt;}
.y27b{bottom:749.093333pt;}
.y13c{bottom:752.133333pt;}
.y6b{bottom:753.253333pt;}
.y18a{bottom:757.413333pt;}
.y222{bottom:761.413333pt;}
.yf8{bottom:762.693333pt;}
.y8e{bottom:763.093333pt;}
.y2a1{bottom:763.733333pt;}
.y1dc{bottom:764.373333pt;}
.y27a{bottom:764.693333pt;}
.y1ff{bottom:767.493333pt;}
.y13b{bottom:767.813333pt;}
.y6a{bottom:769.653333pt;}
.y37{bottom:771.653333pt;}
.y24a{bottom:774.773333pt;}
.yf7{bottom:778.373333pt;}
.yb8{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y279{bottom:781.093333pt;}
.y1db{bottom:781.893333pt;}
.y13a{bottom:783.413333pt;}
.y69{bottom:785.253333pt;}
.y2a0{bottom:785.893333pt;}
.y16d{bottom:786.373333pt;}
.y8d{bottom:786.773333pt;}
.y36{bottom:787.333333pt;}
.y189{bottom:789.013333pt;}
.y249{bottom:790.453333pt;}
.y221{bottom:793.013333pt;}
.yf6{bottom:793.973333pt;}
.yb7{bottom:794.373333pt;}
.y278{bottom:796.693333pt;}
.y1da{bottom:798.453333pt;}
.y139{bottom:799.013333pt;}
.y1fe{bottom:799.093333pt;}
.y29f{bottom:801.653333pt;}
.y35{bottom:802.933333pt;}
.y1b4{bottom:803.973333pt;}
.y188{bottom:804.693333pt;}
.y248{bottom:806.053333pt;}
.y220{bottom:808.693333pt;}
.yf5{bottom:809.653333pt;}
.yb6{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y277{bottom:813.093333pt;}
.y138{bottom:814.693333pt;}
.y68{bottom:817.653333pt;}
.y16c{bottom:817.973333pt;}
.y34{bottom:818.533333pt;}
.y8c{bottom:818.693333pt;}
.y187{bottom:820.293333pt;}
.y247{bottom:821.733333pt;}
.y29e{bottom:823.813333pt;}
.y21f{bottom:824.293333pt;}
.yf4{bottom:825.253333pt;}
.yb5{bottom:825.653333pt;}
.y276{bottom:828.693333pt;}
.y1fd{bottom:831.093333pt;}
.y1d9{bottom:831.973333pt;}
.y16b{bottom:833.653333pt;}
.y33{bottom:834.213333pt;}
.y186{bottom:835.893333pt;}
.y246{bottom:837.333333pt;}
.y137{bottom:838.293333pt;}
.y21e{bottom:839.973333pt;}
.yf3{bottom:840.853333pt;}
.y67{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y275{bottom:845.093333pt;}
.y29d{bottom:846.133333pt;}
.y1fc{bottom:846.693333pt;}
.y16a{bottom:849.253333pt;}
.y32{bottom:849.813333pt;}
.y185{bottom:851.573333pt;}
.y245{bottom:852.933333pt;}
.y1d8{bottom:855.573333pt;}
.yf2{bottom:856.533333pt;}
.yb4{bottom:856.853333pt;}
.y1b2{bottom:859.493333pt;}
.y274{bottom:860.693333pt;}
.y8b{bottom:861.573333pt;}
.y29c{bottom:861.893333pt;}
.y169{bottom:864.853333pt;}
.y31{bottom:865.493333pt;}
.y184{bottom:867.173333pt;}
.y244{bottom:868.613333pt;}
.y136{bottom:869.893333pt;}
.yf1{bottom:872.133333pt;}
.yb3{bottom:872.533333pt;}
.y66{bottom:872.853333pt;}
.y273{bottom:877.093333pt;}
.y4{bottom:877.893333pt;}
.y1fb{bottom:880.133333pt;}
.y168{bottom:880.533333pt;}
.y30{bottom:881.093333pt;}
.y183{bottom:882.853333pt;}
.y29b{bottom:884.053333pt;}
.y243{bottom:884.213333pt;}
.y135{bottom:886.293333pt;}
.y1d7{bottom:886.533333pt;}
.y11a{bottom:888.133333pt;}
.y65{bottom:888.533333pt;}
.y8a{bottom:890.213333pt;}
.y272{bottom:892.773333pt;}
.y167{bottom:896.133333pt;}
.y2f{bottom:896.693333pt;}
.y1cf{bottom:897.413333pt;}
.y182{bottom:898.480000pt;}
.y3{bottom:899.840000pt;}
.y134{bottom:902.640000pt;}
.yf0{bottom:903.840000pt;}
.y64{bottom:904.160000pt;}
.y271{bottom:908.400000pt;}
.y166{bottom:911.840000pt;}
.y2e{bottom:912.400000pt;}
.y181{bottom:914.080000pt;}
.y1b0{bottom:915.120000pt;}
.y242{bottom:915.520000pt;}
.yef{bottom:919.440000pt;}
.y63{bottom:919.840000pt;}
.y1d5{bottom:921.680000pt;}
.y29a{bottom:922.000000pt;}
.y270{bottom:924.800000pt;}
.y165{bottom:927.440000pt;}
.y2d{bottom:928.000000pt;}
.yee{bottom:935.040000pt;}
.y62{bottom:935.440000pt;}
.y180{bottom:937.680000pt;}
.y299{bottom:937.760000pt;}
.y241{bottom:939.440000pt;}
.y26f{bottom:940.400000pt;}
.y164{bottom:943.040000pt;}
.y1d4{bottom:946.000000pt;}
.yed{bottom:950.720000pt;}
.y61{bottom:951.040000pt;}
.y2c{bottom:951.920000pt;}
.y26e{bottom:956.000000pt;}
.y163{bottom:958.720000pt;}
.y298{bottom:959.920000pt;}
.yec{bottom:966.320000pt;}
.y60{bottom:966.720000pt;}
.y1ce{bottom:970.320000pt;}
.y1ad{bottom:970.640000pt;}
.y162{bottom:974.320000pt;}
.y297{bottom:975.680000pt;}
.y5f{bottom:982.320000pt;}
.y26d{bottom:988.400000pt;}
.y161{bottom:990.000000pt;}
.y2b{bottom:995.120000pt;}
.y296{bottom:997.920000pt;}
.y5e{bottom:998.000000pt;}
.y2a{bottom:1012.320000pt;}
.y5d{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h13{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h14{height:36.034687pt;}
.h16{height:39.200000pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.h17{height:47.920000pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.hf{height:54.880000pt;}
.h8{height:54.927899pt;}
.he{height:54.960000pt;}
.h10{height:54.986667pt;}
.h9{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:72.240000pt;}
.h12{height:72.266667pt;}
.h15{height:73.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:21.680000pt;}
.w9{width:21.760000pt;}
.we{width:22.480000pt;}
.wa{width:22.560000pt;}
.w6{width:23.200000pt;}
.w8{width:23.600000pt;}
.w20{width:43.440000pt;}
.w1f{width:44.960000pt;}
.w2b{width:46.000000pt;}
.w22{width:61.680000pt;}
.w21{width:61.840000pt;}
.w26{width:63.360000pt;}
.w17{width:71.280000pt;}
.w2c{width:71.760000pt;}
.w1b{width:81.120000pt;}
.w13{width:81.146667pt;}
.w24{width:83.520000pt;}
.wb{width:89.546667pt;}
.w2a{width:95.440000pt;}
.wf{width:97.706667pt;}
.w27{width:103.386667pt;}
.w1e{width:110.480000pt;}
.w2d{width:114.106667pt;}
.wc{width:115.440000pt;}
.w4{width:115.520000pt;}
.w23{width:115.866667pt;}
.w25{width:116.720000pt;}
.w10{width:122.240000pt;}
.w3{width:124.586667pt;}
.w14{width:126.480000pt;}
.w18{width:128.426667pt;}
.w1c{width:129.306667pt;}
.w19{width:139.840000pt;}
.w11{width:141.040000pt;}
.w16{width:150.480000pt;}
.w28{width:183.706667pt;}
.w29{width:186.506667pt;}
.w15{width:226.106667pt;}
.w12{width:301.706667pt;}
.w1a{width:330.186667pt;}
.w1d{width:348.826667pt;}
.w5{width:429.706667pt;}
.wd{width:464.746667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.x29{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:64.640000pt;}
.x2{left:84.480000pt;}
.x36{left:99.039988pt;}
.x1a{left:103.840000pt;}
.x3{left:108.480000pt;}
.x2e{left:116.800000pt;}
.x1e{left:133.040000pt;}
.x21{left:142.960000pt;}
.x28{left:148.586667pt;}
.xf{left:151.306667pt;}
.x16{left:162.986667pt;}
.x11{left:175.146667pt;}
.x9{left:186.346667pt;}
.x4{left:187.626655pt;}
.x12{left:197.546667pt;}
.x1d{left:201.306655pt;}
.xb{left:210.266667pt;}
.x13{left:221.866667pt;}
.xc{left:232.666667pt;}
.x14{left:244.266667pt;}
.x35{left:249.386655pt;}
.xd{left:256.906667pt;}
.x1f{left:262.106667pt;}
.x10{left:267.466667pt;}
.x22{left:272.906667pt;}
.x24{left:277.466667pt;}
.xe{left:279.306667pt;}
.x17{left:285.866667pt;}
.x34{left:294.426655pt;}
.x2f{left:301.226667pt;}
.xa{left:302.506667pt;}
.x7{left:305.146655pt;}
.x1b{left:312.826667pt;}
.x25{left:321.546667pt;}
.x19{left:326.266655pt;}
.x2a{left:350.106667pt;}
.x33{left:373.626667pt;}
.x26{left:384.026667pt;}
.x20{left:402.666667pt;}
.x2b{left:414.106667pt;}
.x18{left:427.626667pt;}
.x27{left:446.346667pt;}
.x30{left:488.453333pt;}
.x2c{left:518.133333pt;}
.x1c{left:539.653333pt;}
.x2d{left:582.133333pt;}
.x31{left:584.533333pt;}
.x6{left:594.053322pt;}
.x23{left:622.373333pt;}
.x32{left:631.253333pt;}
.x5{left:711.413322pt;}
}




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