
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_23b0fdcbc0463401dfb324c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6d0c1df845507094e22d3930.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_6234c9ae483460515424ed4f.woff2')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_9f899e3b1bf579f97ad8229d.woff2')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_4d6639831a08cc5314ed011d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls37{letter-spacing:-1.056000px;}
.ls11{letter-spacing:-0.888000px;}
.ls4{letter-spacing:-0.774000px;}
.ls2d{letter-spacing:-0.750000px;}
.ls2e{letter-spacing:-0.606000px;}
.ls8{letter-spacing:-0.541200px;}
.ls17{letter-spacing:-0.535800px;}
.lsa{letter-spacing:-0.524400px;}
.ls36{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.334200px;}
.ls18{letter-spacing:-0.299400px;}
.ls7{letter-spacing:-0.166800px;}
.ls1c{letter-spacing:-0.097800px;}
.lsd{letter-spacing:-0.094800px;}
.ls2a{letter-spacing:-0.086400px;}
.ls32{letter-spacing:-0.080400px;}
.ls6{letter-spacing:-0.028800px;}
.ls3{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.011520px;}
.ls35{letter-spacing:0.040320px;}
.ls2f{letter-spacing:0.115200px;}
.ls12{letter-spacing:0.126720px;}
.ls19{letter-spacing:0.166800px;}
.ls9{letter-spacing:0.178800px;}
.ls34{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.184200px;}
.ls10{letter-spacing:0.195600px;}
.ls14{letter-spacing:0.253200px;}
.ls1d{letter-spacing:0.259200px;}
.lsc{letter-spacing:0.276600px;}
.ls33{letter-spacing:0.305400px;}
.ls38{letter-spacing:0.322560px;}
.ls13{letter-spacing:0.345600px;}
.ls31{letter-spacing:0.351360px;}
.ls23{letter-spacing:0.351600px;}
.ls29{letter-spacing:0.460800px;}
.ls21{letter-spacing:1.900800px;}
.ls1a{letter-spacing:2.620800px;}
.ls2{letter-spacing:4.060800px;}
.ls20{letter-spacing:4.780800px;}
.ls24{letter-spacing:5.500800px;}
.ls28{letter-spacing:6.220800px;}
.ls30{letter-spacing:6.865920px;}
.ls25{letter-spacing:7.660800px;}
.lsf{letter-spacing:8.380800px;}
.ls1b{letter-spacing:9.100800px;}
.ls26{letter-spacing:9.820800px;}
.ls16{letter-spacing:11.980800px;}
.ls1e{letter-spacing:12.700800px;}
.ls27{letter-spacing:14.140800px;}
.ls1{letter-spacing:14.860800px;}
.ls0{letter-spacing:17.020800px;}
.ls22{letter-spacing:22.060800px;}
.ls1f{letter-spacing:22.780800px;}
.lsb{letter-spacing:31.345920px;}
.ls2c{letter-spacing:42.145920px;}
.lse{letter-spacing:202.204800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-63.360000px;}
.ws11{word-spacing:-14.244600px;}
.wsa{word-spacing:-14.215800px;}
.ws8{word-spacing:-14.192400px;}
.ws12{word-spacing:-14.134800px;}
.ws9{word-spacing:-14.123400px;}
.ws4{word-spacing:-14.118000px;}
.wsc{word-spacing:-14.106000px;}
.wsf{word-spacing:-14.054400px;}
.ws13{word-spacing:-13.979520px;}
.ws2{word-spacing:-13.939200px;}
.ws10{word-spacing:-13.858800px;}
.wsd{word-spacing:-13.841400px;}
.ws1{word-spacing:-13.605000px;}
.ws14{word-spacing:-13.524600px;}
.ws6{word-spacing:-13.414800px;}
.wsb{word-spacing:-13.403400px;}
.ws3{word-spacing:-13.398000px;}
.wse{word-spacing:-13.333200px;}
.ws0{word-spacing:-13.165200px;}
.ws15{word-spacing:-12.883200px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._5{width:2.344320px;}
._14{width:3.361920px;}
._9{width:4.498560px;}
._a{width:5.575680px;}
._10{width:6.969600px;}
._b{width:8.173440px;}
._7{width:9.504000px;}
._6{width:10.517760px;}
._c{width:12.355200px;}
._11{width:15.049920px;}
._12{width:16.066320px;}
._d{width:17.164080px;}
._8{width:18.380880px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._13{width:23.063040px;}
._1{width:25.060800px;}
._15{width:26.611200px;}
._e{width:27.815040px;}
._f{width:29.023200px;}
._1d{width:30.408480px;}
._1f{width:31.435200px;}
._39{width:32.796720px;}
._3a{width:33.913440px;}
._27{width:35.228160px;}
._1a{width:36.875520px;}
._1e{width:37.952640px;}
._26{width:39.346560px;}
._38{width:42.704400px;}
._32{width:44.265120px;}
._25{width:45.429120px;}
._1c{width:46.506240px;}
._33{width:48.573600px;}
._34{width:50.537520px;}
._30{width:51.575040px;}
._41{width:56.897280px;}
._2f{width:58.608000px;}
._37{width:60.358320px;}
._24{width:63.309600px;}
._2c{width:64.951200px;}
._3f{width:73.117440px;}
._18{width:74.701440px;}
._19{width:77.045760px;}
._35{width:78.732720px;}
._28{width:86.232960px;}
._2b{width:89.781120px;}
._23{width:90.794880px;}
._17{width:92.568960px;}
._40{width:94.129200px;}
._1b{width:99.982080px;}
._29{width:104.163840px;}
._16{width:112.906560px;}
._20{width:119.243520px;}
._31{width:123.805440px;}
._3b{width:127.226880px;}
._3c{width:128.557440px;}
._3d{width:131.281920px;}
._2d{width:134.323200px;}
._3e{width:141.078960px;}
._36{width:164.015280px;}
._22{width:175.875840px;}
._2a{width:217.198080px;}
._21{width:235.889280px;}
._42{width:260.766000px;}
._2e{width:311.667840px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.yb3{bottom:-137.340000px;}
.ycf{bottom:-121.860000px;}
.yb2{bottom:-118.800000px;}
.yb1{bottom:-100.260000px;}
.yce{bottom:-85.680000px;}
.yb0{bottom:-81.900000px;}
.yaf{bottom:-63.360000px;}
.ycd{bottom:-49.320000px;}
.yae{bottom:-45.000000px;}
.yad{bottom:-26.460000px;}
.ycc{bottom:-13.140000px;}
.yac{bottom:-8.100000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.yd3{bottom:3.450000px;}
.yab{bottom:10.440000px;}
.yf7{bottom:21.780000px;}
.y18c{bottom:21.810000px;}
.yfc{bottom:21.825000px;}
.y5{bottom:21.960000px;}
.y187{bottom:22.005000px;}
.ycb{bottom:23.040000px;}
.y1a8{bottom:23.400000px;}
.y160{bottom:23.430000px;}
.y108{bottom:23.445000px;}
.yaa{bottom:28.980000px;}
.yf6{bottom:40.320000px;}
.y4{bottom:40.350000px;}
.y133{bottom:40.365000px;}
.y110{bottom:40.500000px;}
.y186{bottom:40.545000px;}
.y15f{bottom:41.790000px;}
.y106{bottom:41.805000px;}
.y1a6{bottom:41.985000px;}
.ya9{bottom:47.340000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y114{bottom:58.680000px;}
.yfa{bottom:58.860000px;}
.y3{bottom:58.890000px;}
.y132{bottom:58.905000px;}
.yca{bottom:59.400000px;}
.ya8{bottom:65.880000px;}
.y11c{bottom:77.220000px;}
.y126{bottom:77.265000px;}
.y12a{bottom:77.400000px;}
.y185{bottom:77.445000px;}
.y117{bottom:82.980000px;}
.ya7{bottom:84.270000px;}
.y28d{bottom:84.780000px;}
.y225{bottom:85.860000px;}
.y3e{bottom:87.840000px;}
.y1d2{bottom:88.560000px;}
.y15e{bottom:90.180000px;}
.yf3{bottom:90.900000px;}
.y7a{bottom:95.220000px;}
.y79{bottom:95.400000px;}
.yc9{bottom:95.610000px;}
.y129{bottom:95.760000px;}
.y12e{bottom:96.120000px;}
.y1f9{bottom:97.200000px;}
.y104{bottom:100.620000px;}
.y1a4{bottom:100.980000px;}
.ya6{bottom:102.810000px;}
.y28c{bottom:103.320000px;}
.y224{bottom:104.400000px;}
.y3d{bottom:106.200000px;}
.y174{bottom:106.380000px;}
.y260{bottom:106.920000px;}
.y1d1{bottom:107.100000px;}
.y15d{bottom:108.540000px;}
.yf2{bottom:109.260000px;}
.y7b{bottom:110.160000px;}
.y78{bottom:113.760000px;}
.y12d{bottom:115.380000px;}
.y1f8{bottom:115.740000px;}
.y1a3{bottom:119.520000px;}
.y103{bottom:119.880000px;}
.ya5{bottom:121.350000px;}
.y28b{bottom:121.860000px;}
.y3c{bottom:124.740000px;}
.y1d0{bottom:125.460000px;}
.y15c{bottom:127.080000px;}
.yf1{bottom:127.800000px;}
.yc8{bottom:131.790000px;}
.y77{bottom:132.300000px;}
.y223{bottom:133.200000px;}
.y7d{bottom:133.380000px;}
.y1f7{bottom:134.280000px;}
.y1a2{bottom:138.060000px;}
.y102{bottom:139.140000px;}
.ya4{bottom:139.710000px;}
.y28a{bottom:140.220000px;}
.y3b{bottom:143.280000px;}
.y25f{bottom:143.820000px;}
.y1cf{bottom:144.000000px;}
.y15b{bottom:145.440000px;}
.yf0{bottom:146.160000px;}
.y76{bottom:150.660000px;}
.y222{bottom:151.740000px;}
.y1a1{bottom:156.420000px;}
.y116{bottom:157.500000px;}
.ya3{bottom:158.250000px;}
.y289{bottom:158.760000px;}
.y3a{bottom:161.640000px;}
.y1ce{bottom:162.540000px;}
.y1f6{bottom:163.080000px;}
.y15a{bottom:163.980000px;}
.yef{bottom:164.700000px;}
.yc7{bottom:167.970000px;}
.y75{bottom:169.200000px;}
.y221{bottom:170.280000px;}
.y12c{bottom:171.540000px;}
.y25e{bottom:172.800000px;}
.y1a0{bottom:174.960000px;}
.y180{bottom:175.320000px;}
.ya2{bottom:176.610000px;}
.y101{bottom:176.760000px;}
.y288{bottom:177.120000px;}
.y39{bottom:180.180000px;}
.y1cd{bottom:180.900000px;}
.y1f5{bottom:181.620000px;}
.y159{bottom:182.340000px;}
.yee{bottom:183.240000px;}
.y74{bottom:187.740000px;}
.y12b{bottom:190.620000px;}
.y25d{bottom:191.340000px;}
.y19f{bottom:193.320000px;}
.ya1{bottom:195.150000px;}
.y287{bottom:195.660000px;}
.y38{bottom:198.540000px;}
.y220{bottom:199.080000px;}
.y1cc{bottom:199.440000px;}
.y1f4{bottom:200.160000px;}
.y158{bottom:200.880000px;}
.yed{bottom:201.600000px;}
.yc6{bottom:204.330000px;}
.y73{bottom:206.100000px;}
.y128{bottom:209.910000px;}
.y19e{bottom:211.890000px;}
.ya0{bottom:213.510000px;}
.y115{bottom:213.690000px;}
.y100{bottom:214.410000px;}
.y286{bottom:214.950000px;}
.y37{bottom:217.110000px;}
.y21f{bottom:217.650000px;}
.y1cb{bottom:217.830000px;}
.y1f3{bottom:218.550000px;}
.y157{bottom:219.450000px;}
.yec{bottom:220.170000px;}
.y72{bottom:224.670000px;}
.y19d{bottom:230.250000px;}
.y17f{bottom:231.330000px;}
.y9f{bottom:232.050000px;}
.y36{bottom:235.470000px;}
.y173{bottom:235.650000px;}
.y1ca{bottom:236.370000px;}
.y1f2{bottom:237.090000px;}
.y156{bottom:237.810000px;}
.yeb{bottom:238.530000px;}
.y25c{bottom:238.710000px;}
.yc5{bottom:240.510000px;}
.y71{bottom:243.030000px;}
.y21e{bottom:246.630000px;}
.y19c{bottom:248.790000px;}
.y9e{bottom:250.590000px;}
.y285{bottom:252.390000px;}
.y35{bottom:254.010000px;}
.y1c9{bottom:254.730000px;}
.y1f1{bottom:255.630000px;}
.y155{bottom:256.350000px;}
.yea{bottom:257.070000px;}
.y70{bottom:261.570000px;}
.y21d{bottom:265.170000px;}
.y19b{bottom:267.330000px;}
.y25b{bottom:267.690000px;}
.y9d{bottom:268.950000px;}
.yff{bottom:270.570000px;}
.y34{bottom:272.550000px;}
.y1c8{bottom:273.270000px;}
.y1f0{bottom:273.990000px;}
.y154{bottom:274.710000px;}
.ye9{bottom:275.430000px;}
.yc4{bottom:276.690000px;}
.y284{bottom:276.870000px;}
.y6f{bottom:279.930000px;}
.y19a{bottom:285.690000px;}
.y25a{bottom:286.230000px;}
.y9c{bottom:287.490000px;}
.y113{bottom:288.390000px;}
.y172{bottom:290.910000px;}
.y1c7{bottom:291.810000px;}
.y1ef{bottom:292.530000px;}
.y153{bottom:293.250000px;}
.ye8{bottom:293.970000px;}
.y33{bottom:294.870000px;}
.y6e{bottom:298.470000px;}
.y283{bottom:301.530000px;}
.y199{bottom:304.230000px;}
.y9b{bottom:305.850000px;}
.y17e{bottom:306.030000px;}
.y171{bottom:309.450000px;}
.y1c6{bottom:310.170000px;}
.y1ee{bottom:310.890000px;}
.y152{bottom:311.610000px;}
.ye7{bottom:312.510000px;}
.yc3{bottom:313.095000px;}
.y32{bottom:313.230000px;}
.y259{bottom:315.030000px;}
.y6d{bottom:317.010000px;}
.y127{bottom:321.510000px;}
.y198{bottom:322.590000px;}
.y9a{bottom:324.435000px;}
.y282{bottom:326.190000px;}
.yfe{bottom:326.730000px;}
.y170{bottom:327.990000px;}
.y1c5{bottom:328.710000px;}
.y1ed{bottom:329.430000px;}
.y151{bottom:330.150000px;}
.ye6{bottom:330.870000px;}
.y31{bottom:331.590000px;}
.y258{bottom:333.570000px;}
.y6c{bottom:335.370000px;}
.y197{bottom:341.130000px;}
.y21c{bottom:341.490000px;}
.y99{bottom:342.975000px;}
.y17d{bottom:343.650000px;}
.y16f{bottom:346.350000px;}
.y1c4{bottom:347.070000px;}
.y1ec{bottom:347.790000px;}
.y150{bottom:348.690000px;}
.yc2{bottom:349.275000px;}
.ye5{bottom:349.410000px;}
.y30{bottom:350.130000px;}
.y281{bottom:350.850000px;}
.y6b{bottom:353.910000px;}
.y196{bottom:359.670000px;}
.y21b{bottom:360.030000px;}
.y98{bottom:361.335000px;}
.y257{bottom:362.550000px;}
.y112{bottom:362.910000px;}
.y16e{bottom:364.890000px;}
.y1c3{bottom:365.610000px;}
.y1eb{bottom:366.330000px;}
.y14f{bottom:367.050000px;}
.ye4{bottom:367.770000px;}
.y2f{bottom:368.490000px;}
.y6a{bottom:372.270000px;}
.y280{bottom:375.330000px;}
.y125{bottom:377.670000px;}
.y195{bottom:378.030000px;}
.y21a{bottom:378.570000px;}
.y97{bottom:379.875000px;}
.y256{bottom:381.090000px;}
.y111{bottom:382.170000px;}
.y16d{bottom:383.250000px;}
.y10b{bottom:383.610000px;}
.y1c2{bottom:383.970000px;}
.y1ea{bottom:384.870000px;}
.yc1{bottom:385.455000px;}
.y14e{bottom:385.590000px;}
.ye3{bottom:386.310000px;}
.y2e{bottom:387.030000px;}
.y239{bottom:388.830000px;}
.y69{bottom:390.810000px;}
.y194{bottom:396.570000px;}
.y96{bottom:398.235000px;}
.y17c{bottom:399.810000px;}
.y27f{bottom:399.990000px;}
.yfd{bottom:401.430000px;}
.y16c{bottom:401.790000px;}
.y1c1{bottom:402.510000px;}
.y10a{bottom:402.870000px;}
.y1e9{bottom:403.230000px;}
.y14d{bottom:403.950000px;}
.ye2{bottom:404.850000px;}
.y2d{bottom:405.570000px;}
.y219{bottom:407.370000px;}
.y68{bottom:409.350000px;}
.y255{bottom:409.890000px;}
.y193{bottom:414.930000px;}
.y95{bottom:416.775000px;}
.y17b{bottom:419.070000px;}
.y16b{bottom:420.150000px;}
.y1c0{bottom:421.050000px;}
.y1e8{bottom:421.770000px;}
.yc0{bottom:421.815000px;}
.y105{bottom:422.130000px;}
.y14c{bottom:422.490000px;}
.ye1{bottom:423.210000px;}
.y2c{bottom:423.930000px;}
.y27e{bottom:424.650000px;}
.y218{bottom:425.910000px;}
.y67{bottom:427.710000px;}
.y254{bottom:428.430000px;}
.y192{bottom:430.770000px;}
.y94{bottom:435.135000px;}
.y238{bottom:436.350000px;}
.y17a{bottom:438.330000px;}
.y16a{bottom:438.690000px;}
.yfb{bottom:439.050000px;}
.y1bf{bottom:439.410000px;}
.y1e7{bottom:440.130000px;}
.y14b{bottom:441.030000px;}
.y109{bottom:441.210000px;}
.ye0{bottom:441.750000px;}
.y2b{bottom:442.470000px;}
.y66{bottom:446.295000px;}
.y27d{bottom:449.355000px;}
.y191{bottom:450.075000px;}
.y93{bottom:453.675000px;}
.y217{bottom:454.935000px;}
.y169{bottom:457.275000px;}
.y10f{bottom:457.455000px;}
.ybf{bottom:457.995000px;}
.y1e6{bottom:458.715000px;}
.y14a{bottom:459.435000px;}
.ydf{bottom:460.155000px;}
.y107{bottom:460.515000px;}
.y2a{bottom:460.875000px;}
.y65{bottom:464.655000px;}
.y190{bottom:469.335000px;}
.y124{bottom:470.775000px;}
.y92{bottom:472.215000px;}
.y216{bottom:473.475000px;}
.y27c{bottom:474.015000px;}
.y168{bottom:475.635000px;}
.y253{bottom:475.995000px;}
.y1be{bottom:476.355000px;}
.yf9{bottom:476.715000px;}
.y1e5{bottom:477.255000px;}
.y149{bottom:477.975000px;}
.yde{bottom:478.695000px;}
.y29{bottom:479.415000px;}
.y64{bottom:483.195000px;}
.y237{bottom:483.735000px;}
.y91{bottom:490.575000px;}
.ybe{bottom:494.175000px;}
.y179{bottom:494.535000px;}
.y1bd{bottom:494.895000px;}
.y1e4{bottom:495.615000px;}
.y148{bottom:496.335000px;}
.ydd{bottom:497.055000px;}
.y28{bottom:497.775000px;}
.y27b{bottom:498.495000px;}
.y63{bottom:501.555000px;}
.y215{bottom:502.275000px;}
.y252{bottom:504.795000px;}
.y90{bottom:509.115000px;}
.y167{bottom:512.535000px;}
.y1bc{bottom:513.435000px;}
.y1e3{bottom:514.155000px;}
.y147{bottom:514.875000px;}
.ydc{bottom:515.595000px;}
.y27{bottom:516.315000px;}
.y62{bottom:520.095000px;}
.y214{bottom:520.815000px;}
.y27a{bottom:523.155000px;}
.y251{bottom:523.335000px;}
.y8f{bottom:527.475000px;}
.ybd{bottom:530.355000px;}
.y166{bottom:531.075000px;}
.y236{bottom:531.255000px;}
.y1bb{bottom:531.795000px;}
.y10e{bottom:532.155000px;}
.y1e2{bottom:532.515000px;}
.y146{bottom:533.235000px;}
.ydb{bottom:534.135000px;}
.y26{bottom:534.855000px;}
.y61{bottom:538.635000px;}
.y18f{bottom:543.855000px;}
.y8e{bottom:546.015000px;}
.y279{bottom:547.815000px;}
.y165{bottom:549.615000px;}
.y213{bottom:549.795000px;}
.y1ba{bottom:550.335000px;}
.y178{bottom:550.695000px;}
.y1e1{bottom:551.055000px;}
.yf8{bottom:551.415000px;}
.y145{bottom:551.775000px;}
.y250{bottom:552.315000px;}
.yda{bottom:552.495000px;}
.y25{bottom:553.215000px;}
.y60{bottom:556.995000px;}
.y123{bottom:563.835000px;}
.y8d{bottom:564.585000px;}
.y164{bottom:565.275000px;}
.ybc{bottom:566.745000px;}
.y1b9{bottom:568.695000px;}
.y1e0{bottom:569.415000px;}
.y10d{bottom:569.775000px;}
.y144{bottom:570.315000px;}
.y24f{bottom:570.855000px;}
.yd9{bottom:571.035000px;}
.y24{bottom:571.755000px;}
.y278{bottom:572.475000px;}
.y5f{bottom:575.535000px;}
.y212{bottom:578.595000px;}
.y18e{bottom:581.475000px;}
.y8c{bottom:582.945000px;}
.y163{bottom:584.535000px;}
.y1b8{bottom:587.235000px;}
.ybb{bottom:587.805000px;}
.y1df{bottom:587.955000px;}
.y143{bottom:588.675000px;}
.y24e{bottom:589.215000px;}
.yd8{bottom:589.395000px;}
.y23{bottom:590.115000px;}
.y5e{bottom:593.895000px;}
.y277{bottom:596.955000px;}
.y211{bottom:597.135000px;}
.y8b{bottom:601.485000px;}
.y162{bottom:603.795000px;}
.y1b7{bottom:605.595000px;}
.y1de{bottom:606.495000px;}
.y142{bottom:607.215000px;}
.yf5{bottom:607.575000px;}
.yd7{bottom:607.935000px;}
.y22{bottom:608.655000px;}
.y5d{bottom:612.435000px;}
.y210{bottom:615.675000px;}
.y24d{bottom:618.195000px;}
.y18d{bottom:619.275000px;}
.y8a{bottom:619.845000px;}
.y276{bottom:621.615000px;}
.y161{bottom:623.055000px;}
.y1b6{bottom:624.135000px;}
.yba{bottom:624.165000px;}
.y1dd{bottom:624.855000px;}
.y177{bottom:625.215000px;}
.y141{bottom:625.575000px;}
.y10c{bottom:625.935000px;}
.y235{bottom:626.115000px;}
.yd6{bottom:626.475000px;}
.y21{bottom:627.195000px;}
.y5c{bottom:630.975000px;}
.y24c{bottom:636.735000px;}
.y89{bottom:638.385000px;}
.yd5{bottom:642.135000px;}
.y1b5{bottom:642.675000px;}
.y1dc{bottom:643.395000px;}
.y140{bottom:644.115000px;}
.y20f{bottom:644.655000px;}
.y20{bottom:645.555000px;}
.y275{bottom:646.275000px;}
.y5b{bottom:649.335000px;}
.y88{bottom:656.745000px;}
.y122{bottom:656.895000px;}
.yb9{bottom:660.345000px;}
.y1b4{bottom:661.035000px;}
.yd4{bottom:661.395000px;}
.y1db{bottom:661.755000px;}
.y13f{bottom:662.655000px;}
.y20e{bottom:663.195000px;}
.yf4{bottom:663.735000px;}
.y1f{bottom:664.095000px;}
.y24b{bottom:665.535000px;}
.y5a{bottom:667.875000px;}
.y274{bottom:670.935000px;}
.y234{bottom:673.455000px;}
.y87{bottom:675.285000px;}
.y18b{bottom:675.435000px;}
.y121{bottom:676.155000px;}
.y1b3{bottom:679.575000px;}
.y1da{bottom:680.295000px;}
.yd2{bottom:680.655000px;}
.y13e{bottom:681.045000px;}
.y176{bottom:681.405000px;}
.y1e{bottom:682.485000px;}
.y24a{bottom:684.105000px;}
.y59{bottom:686.265000px;}
.y20d{bottom:692.025000px;}
.y86{bottom:693.825000px;}
.y120{bottom:695.445000px;}
.y273{bottom:695.625000px;}
.yb8{bottom:696.705000px;}
.y1b2{bottom:697.965000px;}
.y1d9{bottom:698.865000px;}
.y13d{bottom:699.585000px;}
.yd1{bottom:699.945000px;}
.y1d{bottom:701.025000px;}
.y58{bottom:704.805000px;}
.y20c{bottom:710.565000px;}
.y85{bottom:712.185000px;}
.y18a{bottom:713.085000px;}
.y1b1{bottom:716.505000px;}
.y1d8{bottom:717.225000px;}
.y13c{bottom:717.945000px;}
.yd0{bottom:719.025000px;}
.y1c{bottom:719.385000px;}
.y272{bottom:720.105000px;}
.y233{bottom:721.005000px;}
.y57{bottom:723.165000px;}
.y84{bottom:730.725000px;}
.y249{bottom:731.625000px;}
.y189{bottom:732.345000px;}
.yb7{bottom:732.885000px;}
.y1d7{bottom:733.065000px;}
.y1b0{bottom:735.045000px;}
.y13b{bottom:736.485000px;}
.y1b{bottom:737.925000px;}
.y20b{bottom:739.545000px;}
.y56{bottom:741.705000px;}
.y271{bottom:744.765000px;}
.y83{bottom:749.085000px;}
.y232{bottom:749.985000px;}
.y188{bottom:751.425000px;}
.y1af{bottom:753.405000px;}
.y13a{bottom:754.845000px;}
.y175{bottom:755.925000px;}
.y1a{bottom:756.465000px;}
.y20a{bottom:758.085000px;}
.y55{bottom:760.245000px;}
.y248{bottom:760.425000px;}
.y82{bottom:767.625000px;}
.y231{bottom:768.525000px;}
.yb6{bottom:769.065000px;}
.y270{bottom:769.425000px;}
.y11f{bottom:769.965000px;}
.y1ae{bottom:771.945000px;}
.y139{bottom:773.385000px;}
.y19{bottom:774.825000px;}
.y54{bottom:778.605000px;}
.y247{bottom:778.965000px;}
.y81{bottom:786.210000px;}
.y209{bottom:786.885000px;}
.y1ad{bottom:787.605000px;}
.y1d6{bottom:789.225000px;}
.y138{bottom:791.925000px;}
.y18{bottom:793.365000px;}
.y26f{bottom:794.085000px;}
.y53{bottom:797.145000px;}
.y230{bottom:797.325000px;}
.y80{bottom:804.570000px;}
.y208{bottom:805.425000px;}
.yb5{bottom:805.470000px;}
.y1ac{bottom:806.865000px;}
.y246{bottom:807.945000px;}
.y137{bottom:810.285000px;}
.y17{bottom:811.725000px;}
.y52{bottom:815.505000px;}
.y22f{bottom:815.865000px;}
.y26e{bottom:818.565000px;}
.y7f{bottom:823.110000px;}
.y11e{bottom:826.125000px;}
.y245{bottom:826.485000px;}
.y136{bottom:828.825000px;}
.y16{bottom:830.265000px;}
.y51{bottom:834.045000px;}
.y207{bottom:834.405000px;}
.y7e{bottom:841.470000px;}
.yb4{bottom:841.650000px;}
.y26d{bottom:843.225000px;}
.y135{bottom:844.665000px;}
.y22e{bottom:844.845000px;}
.y1ab{bottom:845.385000px;}
.y15{bottom:850.965000px;}
.y50{bottom:852.585000px;}
.y206{bottom:852.945000px;}
.y244{bottom:855.285000px;}
.y22d{bottom:863.385000px;}
.y134{bottom:863.745000px;}
.y1aa{bottom:864.465000px;}
.y26c{bottom:867.885000px;}
.y14{bottom:869.505000px;}
.y4f{bottom:870.945000px;}
.y243{bottom:873.825000px;}
.y7c{bottom:877.470000px;}
.y205{bottom:881.745000px;}
.y131{bottom:883.005000px;}
.y1a5{bottom:883.725000px;}
.y13{bottom:887.865000px;}
.y4e{bottom:889.485000px;}
.y26b{bottom:892.545000px;}
.y204{bottom:900.285000px;}
.y184{bottom:900.645000px;}
.y242{bottom:902.805000px;}
.y1a9{bottom:902.985000px;}
.y12{bottom:906.405000px;}
.y4d{bottom:907.845000px;}
.y22c{bottom:910.725000px;}
.y26a{bottom:917.250000px;}
.y203{bottom:918.870000px;}
.y11d{bottom:919.230000px;}
.y241{bottom:921.390000px;}
.y1a7{bottom:922.290000px;}
.y11{bottom:924.810000px;}
.y4c{bottom:926.430000px;}
.y22b{bottom:929.310000px;}
.y1d5{bottom:938.490000px;}
.y240{bottom:939.750000px;}
.y269{bottom:941.730000px;}
.y10{bottom:943.350000px;}
.y4b{bottom:944.790000px;}
.y202{bottom:947.670000px;}
.y130{bottom:957.750000px;}
.y22a{bottom:958.110000px;}
.yf{bottom:961.890000px;}
.y4a{bottom:963.330000px;}
.y201{bottom:966.210000px;}
.y268{bottom:966.390000px;}
.y23f{bottom:968.730000px;}
.y229{bottom:976.650000px;}
.ye{bottom:980.250000px;}
.y49{bottom:981.870000px;}
.y23e{bottom:987.270000px;}
.y267{bottom:991.050000px;}
.y11b{bottom:993.930000px;}
.y1d4{bottom:994.650000px;}
.y200{bottom:995.190000px;}
.yd{bottom:998.790000px;}
.y48{bottom:1000.230000px;}
.y228{bottom:1005.630000px;}
.y266{bottom:1015.710000px;}
.y23d{bottom:1016.070000px;}
.yc{bottom:1018.770000px;}
.y1ff{bottom:1024.170000px;}
.y23c{bottom:1034.610000px;}
.y47{bottom:1037.130000px;}
.y265{bottom:1040.190000px;}
.y1fe{bottom:1042.710000px;}
.yb{bottom:1045.230000px;}
.y12f{bottom:1050.810000px;}
.y227{bottom:1052.970000px;}
.y46{bottom:1055.670000px;}
.y23b{bottom:1063.590000px;}
.y264{bottom:1064.850000px;}
.y183{bottom:1068.450000px;}
.y1d3{bottom:1069.170000px;}
.y1fd{bottom:1071.510000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y23a{bottom:1082.130000px;}
.y11a{bottom:1086.990000px;}
.y263{bottom:1089.510000px;}
.y1fc{bottom:1090.050000px;}
.y44{bottom:1092.570000px;}
.y226{bottom:1100.490000px;}
.y119{bottom:1106.070000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y262{bottom:1114.170000px;}
.y2{bottom:1118.130000px;}
.y1fb{bottom:1119.030000px;}
.y118{bottom:1125.330000px;}
.y42{bottom:1129.470000px;}
.y261{bottom:1137.570000px;}
.y182{bottom:1143.150000px;}
.y1fa{bottom:1147.830000px;}
.y41{bottom:1148.010000px;}
.y181{bottom:1162.260000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h7{height:18.360000px;}
.hc{height:18.396000px;}
.hb{height:18.540000px;}
.h14{height:18.576000px;}
.h5{height:30.077578px;}
.h10{height:36.900000px;}
.hf{height:36.936000px;}
.h1b{height:37.080000px;}
.h1e{height:40.843828px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.hd{height:55.260000px;}
.h15{height:55.296000px;}
.h12{height:55.440000px;}
.h16{height:55.476000px;}
.h13{height:56.916000px;}
.h1f{height:65.837812px;}
.h6{height:65.884219px;}
.h1d{height:71.324297px;}
.h11{height:73.800000px;}
.h3{height:73.836000px;}
.he{height:73.980000px;}
.h1c{height:74.016000px;}
.h8{height:76.201172px;}
.h17{height:92.160000px;}
.h19{height:92.340000px;}
.h18{height:92.376000px;}
.h1a{height:110.880000px;}
.ha{height:856.590000px;}
.h9{height:892.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:26.136000px;}
.w28{width:36.756000px;}
.wd{width:36.936000px;}
.wc{width:46.980000px;}
.w27{width:47.160000px;}
.w1b{width:52.380000px;}
.w16{width:55.800000px;}
.w23{width:63.180000px;}
.w30{width:66.420000px;}
.w15{width:70.236000px;}
.w25{width:73.620000px;}
.w2e{width:73.800000px;}
.w2f{width:73.836000px;}
.w24{width:84.276000px;}
.w35{width:85.716000px;}
.w22{width:86.040000px;}
.w8{width:88.200000px;}
.w18{width:91.656000px;}
.w17{width:94.860000px;}
.w1f{width:104.436000px;}
.w31{width:110.880000px;}
.wf{width:113.760000px;}
.w13{width:126.756000px;}
.w2c{width:126.900000px;}
.w1e{width:126.936000px;}
.w34{width:133.416000px;}
.w32{width:137.016000px;}
.w2b{width:137.556000px;}
.w11{width:140.796000px;}
.w2d{width:140.976000px;}
.w12{width:147.096000px;}
.w20{width:149.940000px;}
.w21{width:158.790000px;}
.w1c{width:175.710000px;}
.w14{width:187.230000px;}
.w29{width:205.950000px;}
.w7{width:217.470000px;}
.w33{width:248.070000px;}
.w2a{width:268.590000px;}
.w9{width:309.315000px;}
.w1d{width:309.450000px;}
.w10{width:314.895000px;}
.wa{width:319.035000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w1a{width:627.765000px;}
.wb{width:631.545000px;}
.w26{width:631.905000px;}
.w6{width:708.405000px;}
.we{width:717.270000px;}
.w19{width:718.710000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:5.940000px;}
.x11{left:8.100000px;}
.x28{left:9.540000px;}
.x14{left:10.800000px;}
.x30{left:11.880000px;}
.x27{left:13.320000px;}
.x49{left:14.580000px;}
.x2e{left:16.560000px;}
.x43{left:18.180000px;}
.x33{left:19.620000px;}
.x3f{left:21.240000px;}
.x50{left:22.320000px;}
.x19{left:23.760000px;}
.x1c{left:25.560000px;}
.x44{left:27.360000px;}
.x1a{left:28.800000px;}
.x31{left:31.500000px;}
.x37{left:32.580000px;}
.x46{left:34.020000px;}
.x36{left:35.310000px;}
.x16{left:37.800000px;}
.x21{left:39.780000px;}
.x41{left:43.020000px;}
.x47{left:44.280000px;}
.x51{left:49.680000px;}
.x38{left:51.300000px;}
.x22{left:61.740000px;}
.x4c{left:63.720000px;}
.x2{left:81.000000px;}
.x18{left:83.385000px;}
.x29{left:85.175987px;}
.x2c{left:86.985000px;}
.xc{left:88.235987px;}
.x39{left:97.595987px;}
.x12{left:98.856000px;}
.x8{left:101.375987px;}
.x4{left:102.420000px;}
.x23{left:107.460000px;}
.x13{left:108.714000px;}
.x20{left:116.820000px;}
.x5{left:119.880000px;}
.x1e{left:121.905000px;}
.x48{left:149.255987px;}
.x1d{left:176.430000px;}
.x53{left:199.110000px;}
.x2b{left:201.810000px;}
.x24{left:203.069987px;}
.x52{left:225.749987px;}
.xd{left:247.889987px;}
.x3d{left:263.775000px;}
.x34{left:272.775000px;}
.x4b{left:294.015000px;}
.x9{left:308.774987px;}
.xe{left:317.414987px;}
.x32{left:329.475000px;}
.x15{left:333.795000px;}
.x10{left:337.754987px;}
.xb{left:351.434987px;}
.x4e{left:368.535000px;}
.x1b{left:378.434987px;}
.xf{left:381.494987px;}
.x2a{left:393.734987px;}
.x3a{left:400.034987px;}
.x42{left:414.435000px;}
.x4a{left:417.674987px;}
.x3c{left:421.814987px;}
.x35{left:425.055000px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x1f{left:486.645000px;}
.x4f{left:496.185000px;}
.x45{left:499.605000px;}
.x2d{left:517.425000px;}
.x4d{left:563.325000px;}
.x17{left:568.725000px;}
.x3e{left:573.945000px;}
.x54{left:585.825000px;}
.x2f{left:658.950000px;}
.x40{left:701.610000px;}
.x3b{left:716.010000px;}
.x25{left:720.510000px;}
.x26{left:768.390000px;}
.x7{left:786.210000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls37{letter-spacing:-0.938667pt;}
.ls11{letter-spacing:-0.789333pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls2d{letter-spacing:-0.666667pt;}
.ls2e{letter-spacing:-0.538667pt;}
.ls8{letter-spacing:-0.481067pt;}
.ls17{letter-spacing:-0.476267pt;}
.lsa{letter-spacing:-0.466133pt;}
.ls36{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.297067pt;}
.ls18{letter-spacing:-0.266133pt;}
.ls7{letter-spacing:-0.148267pt;}
.ls1c{letter-spacing:-0.086933pt;}
.lsd{letter-spacing:-0.084267pt;}
.ls2a{letter-spacing:-0.076800pt;}
.ls32{letter-spacing:-0.071467pt;}
.ls6{letter-spacing:-0.025600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.010240pt;}
.ls35{letter-spacing:0.035840pt;}
.ls2f{letter-spacing:0.102400pt;}
.ls12{letter-spacing:0.112640pt;}
.ls19{letter-spacing:0.148267pt;}
.ls9{letter-spacing:0.158933pt;}
.ls34{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.163733pt;}
.ls10{letter-spacing:0.173867pt;}
.ls14{letter-spacing:0.225067pt;}
.ls1d{letter-spacing:0.230400pt;}
.lsc{letter-spacing:0.245867pt;}
.ls33{letter-spacing:0.271467pt;}
.ls38{letter-spacing:0.286720pt;}
.ls13{letter-spacing:0.307200pt;}
.ls31{letter-spacing:0.312320pt;}
.ls23{letter-spacing:0.312533pt;}
.ls29{letter-spacing:0.409600pt;}
.ls21{letter-spacing:1.689600pt;}
.ls1a{letter-spacing:2.329600pt;}
.ls2{letter-spacing:3.609600pt;}
.ls20{letter-spacing:4.249600pt;}
.ls24{letter-spacing:4.889600pt;}
.ls28{letter-spacing:5.529600pt;}
.ls30{letter-spacing:6.103040pt;}
.ls25{letter-spacing:6.809600pt;}
.lsf{letter-spacing:7.449600pt;}
.ls1b{letter-spacing:8.089600pt;}
.ls26{letter-spacing:8.729600pt;}
.ls16{letter-spacing:10.649600pt;}
.ls1e{letter-spacing:11.289600pt;}
.ls27{letter-spacing:12.569600pt;}
.ls1{letter-spacing:13.209600pt;}
.ls0{letter-spacing:15.129600pt;}
.ls22{letter-spacing:19.609600pt;}
.ls1f{letter-spacing:20.249600pt;}
.lsb{letter-spacing:27.863040pt;}
.ls2c{letter-spacing:37.463040pt;}
.lse{letter-spacing:179.737600pt;}
.ws7{word-spacing:-56.320000pt;}
.ws11{word-spacing:-12.661867pt;}
.wsa{word-spacing:-12.636267pt;}
.ws8{word-spacing:-12.615467pt;}
.ws12{word-spacing:-12.564267pt;}
.ws9{word-spacing:-12.554133pt;}
.ws4{word-spacing:-12.549333pt;}
.wsc{word-spacing:-12.538667pt;}
.wsf{word-spacing:-12.492800pt;}
.ws13{word-spacing:-12.426240pt;}
.ws2{word-spacing:-12.390400pt;}
.ws10{word-spacing:-12.318933pt;}
.wsd{word-spacing:-12.303467pt;}
.ws1{word-spacing:-12.093333pt;}
.ws14{word-spacing:-12.021867pt;}
.ws6{word-spacing:-11.924267pt;}
.wsb{word-spacing:-11.914133pt;}
.ws3{word-spacing:-11.909333pt;}
.wse{word-spacing:-11.851733pt;}
.ws0{word-spacing:-11.702400pt;}
.ws15{word-spacing:-11.451733pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._5{width:2.083840pt;}
._14{width:2.988373pt;}
._9{width:3.998720pt;}
._a{width:4.956160pt;}
._10{width:6.195200pt;}
._b{width:7.265280pt;}
._7{width:8.448000pt;}
._6{width:9.349120pt;}
._c{width:10.982400pt;}
._11{width:13.377707pt;}
._12{width:14.281173pt;}
._d{width:15.256960pt;}
._8{width:16.338560pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._13{width:20.500480pt;}
._1{width:22.276267pt;}
._15{width:23.654400pt;}
._e{width:24.724480pt;}
._f{width:25.798400pt;}
._1d{width:27.029760pt;}
._1f{width:27.942400pt;}
._39{width:29.152640pt;}
._3a{width:30.145280pt;}
._27{width:31.313920pt;}
._1a{width:32.778240pt;}
._1e{width:33.735680pt;}
._26{width:34.974720pt;}
._38{width:37.959467pt;}
._32{width:39.346773pt;}
._25{width:40.381440pt;}
._1c{width:41.338880pt;}
._33{width:43.176533pt;}
._34{width:44.922240pt;}
._30{width:45.844480pt;}
._41{width:50.575360pt;}
._2f{width:52.096000pt;}
._37{width:53.651840pt;}
._24{width:56.275200pt;}
._2c{width:57.734400pt;}
._3f{width:64.993280pt;}
._18{width:66.401280pt;}
._19{width:68.485120pt;}
._35{width:69.984640pt;}
._28{width:76.651520pt;}
._2b{width:79.805440pt;}
._23{width:80.706560pt;}
._17{width:82.283520pt;}
._40{width:83.670400pt;}
._1b{width:88.872960pt;}
._29{width:92.590080pt;}
._16{width:100.361387pt;}
._20{width:105.994240pt;}
._31{width:110.049280pt;}
._3b{width:113.090560pt;}
._3c{width:114.273280pt;}
._3d{width:116.695040pt;}
._2d{width:119.398400pt;}
._3e{width:125.403520pt;}
._36{width:145.791360pt;}
._22{width:156.334080pt;}
._2a{width:193.064960pt;}
._21{width:209.679360pt;}
._42{width:231.792000pt;}
._2e{width:277.038080pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.yb3{bottom:-122.080000pt;}
.ycf{bottom:-108.320000pt;}
.yb2{bottom:-105.600000pt;}
.yb1{bottom:-89.120000pt;}
.yce{bottom:-76.160000pt;}
.yb0{bottom:-72.800000pt;}
.yaf{bottom:-56.320000pt;}
.ycd{bottom:-43.840000pt;}
.yae{bottom:-40.000000pt;}
.yad{bottom:-23.520000pt;}
.ycc{bottom:-11.680000pt;}
.yac{bottom:-7.200000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.yd3{bottom:3.066667pt;}
.yab{bottom:9.280000pt;}
.yf7{bottom:19.360000pt;}
.y18c{bottom:19.386667pt;}
.yfc{bottom:19.400000pt;}
.y5{bottom:19.520000pt;}
.y187{bottom:19.560000pt;}
.ycb{bottom:20.480000pt;}
.y1a8{bottom:20.800000pt;}
.y160{bottom:20.826667pt;}
.y108{bottom:20.840000pt;}
.yaa{bottom:25.760000pt;}
.yf6{bottom:35.840000pt;}
.y4{bottom:35.866667pt;}
.y133{bottom:35.880000pt;}
.y110{bottom:36.000000pt;}
.y186{bottom:36.040000pt;}
.y15f{bottom:37.146667pt;}
.y106{bottom:37.160000pt;}
.y1a6{bottom:37.320000pt;}
.ya9{bottom:42.080000pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y114{bottom:52.160000pt;}
.yfa{bottom:52.320000pt;}
.y3{bottom:52.346667pt;}
.y132{bottom:52.360000pt;}
.yca{bottom:52.800000pt;}
.ya8{bottom:58.560000pt;}
.y11c{bottom:68.640000pt;}
.y126{bottom:68.680000pt;}
.y12a{bottom:68.800000pt;}
.y185{bottom:68.840000pt;}
.y117{bottom:73.760000pt;}
.ya7{bottom:74.906667pt;}
.y28d{bottom:75.360000pt;}
.y225{bottom:76.320000pt;}
.y3e{bottom:78.080000pt;}
.y1d2{bottom:78.720000pt;}
.y15e{bottom:80.160000pt;}
.yf3{bottom:80.800000pt;}
.y7a{bottom:84.640000pt;}
.y79{bottom:84.800000pt;}
.yc9{bottom:84.986667pt;}
.y129{bottom:85.120000pt;}
.y12e{bottom:85.440000pt;}
.y1f9{bottom:86.400000pt;}
.y104{bottom:89.440000pt;}
.y1a4{bottom:89.760000pt;}
.ya6{bottom:91.386667pt;}
.y28c{bottom:91.840000pt;}
.y224{bottom:92.800000pt;}
.y3d{bottom:94.400000pt;}
.y174{bottom:94.560000pt;}
.y260{bottom:95.040000pt;}
.y1d1{bottom:95.200000pt;}
.y15d{bottom:96.480000pt;}
.yf2{bottom:97.120000pt;}
.y7b{bottom:97.920000pt;}
.y78{bottom:101.120000pt;}
.y12d{bottom:102.560000pt;}
.y1f8{bottom:102.880000pt;}
.y1a3{bottom:106.240000pt;}
.y103{bottom:106.560000pt;}
.ya5{bottom:107.866667pt;}
.y28b{bottom:108.320000pt;}
.y3c{bottom:110.880000pt;}
.y1d0{bottom:111.520000pt;}
.y15c{bottom:112.960000pt;}
.yf1{bottom:113.600000pt;}
.yc8{bottom:117.146667pt;}
.y77{bottom:117.600000pt;}
.y223{bottom:118.400000pt;}
.y7d{bottom:118.560000pt;}
.y1f7{bottom:119.360000pt;}
.y1a2{bottom:122.720000pt;}
.y102{bottom:123.680000pt;}
.ya4{bottom:124.186667pt;}
.y28a{bottom:124.640000pt;}
.y3b{bottom:127.360000pt;}
.y25f{bottom:127.840000pt;}
.y1cf{bottom:128.000000pt;}
.y15b{bottom:129.280000pt;}
.yf0{bottom:129.920000pt;}
.y76{bottom:133.920000pt;}
.y222{bottom:134.880000pt;}
.y1a1{bottom:139.040000pt;}
.y116{bottom:140.000000pt;}
.ya3{bottom:140.666667pt;}
.y289{bottom:141.120000pt;}
.y3a{bottom:143.680000pt;}
.y1ce{bottom:144.480000pt;}
.y1f6{bottom:144.960000pt;}
.y15a{bottom:145.760000pt;}
.yef{bottom:146.400000pt;}
.yc7{bottom:149.306667pt;}
.y75{bottom:150.400000pt;}
.y221{bottom:151.360000pt;}
.y12c{bottom:152.480000pt;}
.y25e{bottom:153.600000pt;}
.y1a0{bottom:155.520000pt;}
.y180{bottom:155.840000pt;}
.ya2{bottom:156.986667pt;}
.y101{bottom:157.120000pt;}
.y288{bottom:157.440000pt;}
.y39{bottom:160.160000pt;}
.y1cd{bottom:160.800000pt;}
.y1f5{bottom:161.440000pt;}
.y159{bottom:162.080000pt;}
.yee{bottom:162.880000pt;}
.y74{bottom:166.880000pt;}
.y12b{bottom:169.440000pt;}
.y25d{bottom:170.080000pt;}
.y19f{bottom:171.840000pt;}
.ya1{bottom:173.466667pt;}
.y287{bottom:173.920000pt;}
.y38{bottom:176.480000pt;}
.y220{bottom:176.960000pt;}
.y1cc{bottom:177.280000pt;}
.y1f4{bottom:177.920000pt;}
.y158{bottom:178.560000pt;}
.yed{bottom:179.200000pt;}
.yc6{bottom:181.626667pt;}
.y73{bottom:183.200000pt;}
.y128{bottom:186.586667pt;}
.y19e{bottom:188.346667pt;}
.ya0{bottom:189.786667pt;}
.y115{bottom:189.946667pt;}
.y100{bottom:190.586667pt;}
.y286{bottom:191.066667pt;}
.y37{bottom:192.986667pt;}
.y21f{bottom:193.466667pt;}
.y1cb{bottom:193.626667pt;}
.y1f3{bottom:194.266667pt;}
.y157{bottom:195.066667pt;}
.yec{bottom:195.706667pt;}
.y72{bottom:199.706667pt;}
.y19d{bottom:204.666667pt;}
.y17f{bottom:205.626667pt;}
.y9f{bottom:206.266667pt;}
.y36{bottom:209.306667pt;}
.y173{bottom:209.466667pt;}
.y1ca{bottom:210.106667pt;}
.y1f2{bottom:210.746667pt;}
.y156{bottom:211.386667pt;}
.yeb{bottom:212.026667pt;}
.y25c{bottom:212.186667pt;}
.yc5{bottom:213.786667pt;}
.y71{bottom:216.026667pt;}
.y21e{bottom:219.226667pt;}
.y19c{bottom:221.146667pt;}
.y9e{bottom:222.746667pt;}
.y285{bottom:224.346667pt;}
.y35{bottom:225.786667pt;}
.y1c9{bottom:226.426667pt;}
.y1f1{bottom:227.226667pt;}
.y155{bottom:227.866667pt;}
.yea{bottom:228.506667pt;}
.y70{bottom:232.506667pt;}
.y21d{bottom:235.706667pt;}
.y19b{bottom:237.626667pt;}
.y25b{bottom:237.946667pt;}
.y9d{bottom:239.066667pt;}
.yff{bottom:240.506667pt;}
.y34{bottom:242.266667pt;}
.y1c8{bottom:242.906667pt;}
.y1f0{bottom:243.546667pt;}
.y154{bottom:244.186667pt;}
.ye9{bottom:244.826667pt;}
.yc4{bottom:245.946667pt;}
.y284{bottom:246.106667pt;}
.y6f{bottom:248.826667pt;}
.y19a{bottom:253.946667pt;}
.y25a{bottom:254.426667pt;}
.y9c{bottom:255.546667pt;}
.y113{bottom:256.346667pt;}
.y172{bottom:258.586667pt;}
.y1c7{bottom:259.386667pt;}
.y1ef{bottom:260.026667pt;}
.y153{bottom:260.666667pt;}
.ye8{bottom:261.306667pt;}
.y33{bottom:262.106667pt;}
.y6e{bottom:265.306667pt;}
.y283{bottom:268.026667pt;}
.y199{bottom:270.426667pt;}
.y9b{bottom:271.866667pt;}
.y17e{bottom:272.026667pt;}
.y171{bottom:275.066667pt;}
.y1c6{bottom:275.706667pt;}
.y1ee{bottom:276.346667pt;}
.y152{bottom:276.986667pt;}
.ye7{bottom:277.786667pt;}
.yc3{bottom:278.306667pt;}
.y32{bottom:278.426667pt;}
.y259{bottom:280.026667pt;}
.y6d{bottom:281.786667pt;}
.y127{bottom:285.786667pt;}
.y198{bottom:286.746667pt;}
.y9a{bottom:288.386667pt;}
.y282{bottom:289.946667pt;}
.yfe{bottom:290.426667pt;}
.y170{bottom:291.546667pt;}
.y1c5{bottom:292.186667pt;}
.y1ed{bottom:292.826667pt;}
.y151{bottom:293.466667pt;}
.ye6{bottom:294.106667pt;}
.y31{bottom:294.746667pt;}
.y258{bottom:296.506667pt;}
.y6c{bottom:298.106667pt;}
.y197{bottom:303.226667pt;}
.y21c{bottom:303.546667pt;}
.y99{bottom:304.866667pt;}
.y17d{bottom:305.466667pt;}
.y16f{bottom:307.866667pt;}
.y1c4{bottom:308.506667pt;}
.y1ec{bottom:309.146667pt;}
.y150{bottom:309.946667pt;}
.yc2{bottom:310.466667pt;}
.ye5{bottom:310.586667pt;}
.y30{bottom:311.226667pt;}
.y281{bottom:311.866667pt;}
.y6b{bottom:314.586667pt;}
.y196{bottom:319.706667pt;}
.y21b{bottom:320.026667pt;}
.y98{bottom:321.186667pt;}
.y257{bottom:322.266667pt;}
.y112{bottom:322.586667pt;}
.y16e{bottom:324.346667pt;}
.y1c3{bottom:324.986667pt;}
.y1eb{bottom:325.626667pt;}
.y14f{bottom:326.266667pt;}
.ye4{bottom:326.906667pt;}
.y2f{bottom:327.546667pt;}
.y6a{bottom:330.906667pt;}
.y280{bottom:333.626667pt;}
.y125{bottom:335.706667pt;}
.y195{bottom:336.026667pt;}
.y21a{bottom:336.506667pt;}
.y97{bottom:337.666667pt;}
.y256{bottom:338.746667pt;}
.y111{bottom:339.706667pt;}
.y16d{bottom:340.666667pt;}
.y10b{bottom:340.986667pt;}
.y1c2{bottom:341.306667pt;}
.y1ea{bottom:342.106667pt;}
.yc1{bottom:342.626667pt;}
.y14e{bottom:342.746667pt;}
.ye3{bottom:343.386667pt;}
.y2e{bottom:344.026667pt;}
.y239{bottom:345.626667pt;}
.y69{bottom:347.386667pt;}
.y194{bottom:352.506667pt;}
.y96{bottom:353.986667pt;}
.y17c{bottom:355.386667pt;}
.y27f{bottom:355.546667pt;}
.yfd{bottom:356.826667pt;}
.y16c{bottom:357.146667pt;}
.y1c1{bottom:357.786667pt;}
.y10a{bottom:358.106667pt;}
.y1e9{bottom:358.426667pt;}
.y14d{bottom:359.066667pt;}
.ye2{bottom:359.866667pt;}
.y2d{bottom:360.506667pt;}
.y219{bottom:362.106667pt;}
.y68{bottom:363.866667pt;}
.y255{bottom:364.346667pt;}
.y193{bottom:368.826667pt;}
.y95{bottom:370.466667pt;}
.y17b{bottom:372.506667pt;}
.y16b{bottom:373.466667pt;}
.y1c0{bottom:374.266667pt;}
.y1e8{bottom:374.906667pt;}
.yc0{bottom:374.946667pt;}
.y105{bottom:375.226667pt;}
.y14c{bottom:375.546667pt;}
.ye1{bottom:376.186667pt;}
.y2c{bottom:376.826667pt;}
.y27e{bottom:377.466667pt;}
.y218{bottom:378.586667pt;}
.y67{bottom:380.186667pt;}
.y254{bottom:380.826667pt;}
.y192{bottom:382.906667pt;}
.y94{bottom:386.786667pt;}
.y238{bottom:387.866667pt;}
.y17a{bottom:389.626667pt;}
.y16a{bottom:389.946667pt;}
.yfb{bottom:390.266667pt;}
.y1bf{bottom:390.586667pt;}
.y1e7{bottom:391.226667pt;}
.y14b{bottom:392.026667pt;}
.y109{bottom:392.186667pt;}
.ye0{bottom:392.666667pt;}
.y2b{bottom:393.306667pt;}
.y66{bottom:396.706667pt;}
.y27d{bottom:399.426667pt;}
.y191{bottom:400.066667pt;}
.y93{bottom:403.266667pt;}
.y217{bottom:404.386667pt;}
.y169{bottom:406.466667pt;}
.y10f{bottom:406.626667pt;}
.ybf{bottom:407.106667pt;}
.y1e6{bottom:407.746667pt;}
.y14a{bottom:408.386667pt;}
.ydf{bottom:409.026667pt;}
.y107{bottom:409.346667pt;}
.y2a{bottom:409.666667pt;}
.y65{bottom:413.026667pt;}
.y190{bottom:417.186667pt;}
.y124{bottom:418.466667pt;}
.y92{bottom:419.746667pt;}
.y216{bottom:420.866667pt;}
.y27c{bottom:421.346667pt;}
.y168{bottom:422.786667pt;}
.y253{bottom:423.106667pt;}
.y1be{bottom:423.426667pt;}
.yf9{bottom:423.746667pt;}
.y1e5{bottom:424.226667pt;}
.y149{bottom:424.866667pt;}
.yde{bottom:425.506667pt;}
.y29{bottom:426.146667pt;}
.y64{bottom:429.506667pt;}
.y237{bottom:429.986667pt;}
.y91{bottom:436.066667pt;}
.ybe{bottom:439.266667pt;}
.y179{bottom:439.586667pt;}
.y1bd{bottom:439.906667pt;}
.y1e4{bottom:440.546667pt;}
.y148{bottom:441.186667pt;}
.ydd{bottom:441.826667pt;}
.y28{bottom:442.466667pt;}
.y27b{bottom:443.106667pt;}
.y63{bottom:445.826667pt;}
.y215{bottom:446.466667pt;}
.y252{bottom:448.706667pt;}
.y90{bottom:452.546667pt;}
.y167{bottom:455.586667pt;}
.y1bc{bottom:456.386667pt;}
.y1e3{bottom:457.026667pt;}
.y147{bottom:457.666667pt;}
.ydc{bottom:458.306667pt;}
.y27{bottom:458.946667pt;}
.y62{bottom:462.306667pt;}
.y214{bottom:462.946667pt;}
.y27a{bottom:465.026667pt;}
.y251{bottom:465.186667pt;}
.y8f{bottom:468.866667pt;}
.ybd{bottom:471.426667pt;}
.y166{bottom:472.066667pt;}
.y236{bottom:472.226667pt;}
.y1bb{bottom:472.706667pt;}
.y10e{bottom:473.026667pt;}
.y1e2{bottom:473.346667pt;}
.y146{bottom:473.986667pt;}
.ydb{bottom:474.786667pt;}
.y26{bottom:475.426667pt;}
.y61{bottom:478.786667pt;}
.y18f{bottom:483.426667pt;}
.y8e{bottom:485.346667pt;}
.y279{bottom:486.946667pt;}
.y165{bottom:488.546667pt;}
.y213{bottom:488.706667pt;}
.y1ba{bottom:489.186667pt;}
.y178{bottom:489.506667pt;}
.y1e1{bottom:489.826667pt;}
.yf8{bottom:490.146667pt;}
.y145{bottom:490.466667pt;}
.y250{bottom:490.946667pt;}
.yda{bottom:491.106667pt;}
.y25{bottom:491.746667pt;}
.y60{bottom:495.106667pt;}
.y123{bottom:501.186667pt;}
.y8d{bottom:501.853333pt;}
.y164{bottom:502.466667pt;}
.ybc{bottom:503.773333pt;}
.y1b9{bottom:505.506667pt;}
.y1e0{bottom:506.146667pt;}
.y10d{bottom:506.466667pt;}
.y144{bottom:506.946667pt;}
.y24f{bottom:507.426667pt;}
.yd9{bottom:507.586667pt;}
.y24{bottom:508.226667pt;}
.y278{bottom:508.866667pt;}
.y5f{bottom:511.586667pt;}
.y212{bottom:514.306667pt;}
.y18e{bottom:516.866667pt;}
.y8c{bottom:518.173333pt;}
.y163{bottom:519.586667pt;}
.y1b8{bottom:521.986667pt;}
.ybb{bottom:522.493333pt;}
.y1df{bottom:522.626667pt;}
.y143{bottom:523.266667pt;}
.y24e{bottom:523.746667pt;}
.yd8{bottom:523.906667pt;}
.y23{bottom:524.546667pt;}
.y5e{bottom:527.906667pt;}
.y277{bottom:530.626667pt;}
.y211{bottom:530.786667pt;}
.y8b{bottom:534.653333pt;}
.y162{bottom:536.706667pt;}
.y1b7{bottom:538.306667pt;}
.y1de{bottom:539.106667pt;}
.y142{bottom:539.746667pt;}
.yf5{bottom:540.066667pt;}
.yd7{bottom:540.386667pt;}
.y22{bottom:541.026667pt;}
.y5d{bottom:544.386667pt;}
.y210{bottom:547.266667pt;}
.y24d{bottom:549.506667pt;}
.y18d{bottom:550.466667pt;}
.y8a{bottom:550.973333pt;}
.y276{bottom:552.546667pt;}
.y161{bottom:553.826667pt;}
.y1b6{bottom:554.786667pt;}
.yba{bottom:554.813333pt;}
.y1dd{bottom:555.426667pt;}
.y177{bottom:555.746667pt;}
.y141{bottom:556.066667pt;}
.y10c{bottom:556.386667pt;}
.y235{bottom:556.546667pt;}
.yd6{bottom:556.866667pt;}
.y21{bottom:557.506667pt;}
.y5c{bottom:560.866667pt;}
.y24c{bottom:565.986667pt;}
.y89{bottom:567.453333pt;}
.yd5{bottom:570.786667pt;}
.y1b5{bottom:571.266667pt;}
.y1dc{bottom:571.906667pt;}
.y140{bottom:572.546667pt;}
.y20f{bottom:573.026667pt;}
.y20{bottom:573.826667pt;}
.y275{bottom:574.466667pt;}
.y5b{bottom:577.186667pt;}
.y88{bottom:583.773333pt;}
.y122{bottom:583.906667pt;}
.yb9{bottom:586.973333pt;}
.y1b4{bottom:587.586667pt;}
.yd4{bottom:587.906667pt;}
.y1db{bottom:588.226667pt;}
.y13f{bottom:589.026667pt;}
.y20e{bottom:589.506667pt;}
.yf4{bottom:589.986667pt;}
.y1f{bottom:590.306667pt;}
.y24b{bottom:591.586667pt;}
.y5a{bottom:593.666667pt;}
.y274{bottom:596.386667pt;}
.y234{bottom:598.626667pt;}
.y87{bottom:600.253333pt;}
.y18b{bottom:600.386667pt;}
.y121{bottom:601.026667pt;}
.y1b3{bottom:604.066667pt;}
.y1da{bottom:604.706667pt;}
.yd2{bottom:605.026667pt;}
.y13e{bottom:605.373333pt;}
.y176{bottom:605.693333pt;}
.y1e{bottom:606.653333pt;}
.y24a{bottom:608.093333pt;}
.y59{bottom:610.013333pt;}
.y20d{bottom:615.133333pt;}
.y86{bottom:616.733333pt;}
.y120{bottom:618.173333pt;}
.y273{bottom:618.333333pt;}
.yb8{bottom:619.293333pt;}
.y1b2{bottom:620.413333pt;}
.y1d9{bottom:621.213333pt;}
.y13d{bottom:621.853333pt;}
.yd1{bottom:622.173333pt;}
.y1d{bottom:623.133333pt;}
.y58{bottom:626.493333pt;}
.y20c{bottom:631.613333pt;}
.y85{bottom:633.053333pt;}
.y18a{bottom:633.853333pt;}
.y1b1{bottom:636.893333pt;}
.y1d8{bottom:637.533333pt;}
.y13c{bottom:638.173333pt;}
.yd0{bottom:639.133333pt;}
.y1c{bottom:639.453333pt;}
.y272{bottom:640.093333pt;}
.y233{bottom:640.893333pt;}
.y57{bottom:642.813333pt;}
.y84{bottom:649.533333pt;}
.y249{bottom:650.333333pt;}
.y189{bottom:650.973333pt;}
.yb7{bottom:651.453333pt;}
.y1d7{bottom:651.613333pt;}
.y1b0{bottom:653.373333pt;}
.y13b{bottom:654.653333pt;}
.y1b{bottom:655.933333pt;}
.y20b{bottom:657.373333pt;}
.y56{bottom:659.293333pt;}
.y271{bottom:662.013333pt;}
.y83{bottom:665.853333pt;}
.y232{bottom:666.653333pt;}
.y188{bottom:667.933333pt;}
.y1af{bottom:669.693333pt;}
.y13a{bottom:670.973333pt;}
.y175{bottom:671.933333pt;}
.y1a{bottom:672.413333pt;}
.y20a{bottom:673.853333pt;}
.y55{bottom:675.773333pt;}
.y248{bottom:675.933333pt;}
.y82{bottom:682.333333pt;}
.y231{bottom:683.133333pt;}
.yb6{bottom:683.613333pt;}
.y270{bottom:683.933333pt;}
.y11f{bottom:684.413333pt;}
.y1ae{bottom:686.173333pt;}
.y139{bottom:687.453333pt;}
.y19{bottom:688.733333pt;}
.y54{bottom:692.093333pt;}
.y247{bottom:692.413333pt;}
.y81{bottom:698.853333pt;}
.y209{bottom:699.453333pt;}
.y1ad{bottom:700.093333pt;}
.y1d6{bottom:701.533333pt;}
.y138{bottom:703.933333pt;}
.y18{bottom:705.213333pt;}
.y26f{bottom:705.853333pt;}
.y53{bottom:708.573333pt;}
.y230{bottom:708.733333pt;}
.y80{bottom:715.173333pt;}
.y208{bottom:715.933333pt;}
.yb5{bottom:715.973333pt;}
.y1ac{bottom:717.213333pt;}
.y246{bottom:718.173333pt;}
.y137{bottom:720.253333pt;}
.y17{bottom:721.533333pt;}
.y52{bottom:724.893333pt;}
.y22f{bottom:725.213333pt;}
.y26e{bottom:727.613333pt;}
.y7f{bottom:731.653333pt;}
.y11e{bottom:734.333333pt;}
.y245{bottom:734.653333pt;}
.y136{bottom:736.733333pt;}
.y16{bottom:738.013333pt;}
.y51{bottom:741.373333pt;}
.y207{bottom:741.693333pt;}
.y7e{bottom:747.973333pt;}
.yb4{bottom:748.133333pt;}
.y26d{bottom:749.533333pt;}
.y135{bottom:750.813333pt;}
.y22e{bottom:750.973333pt;}
.y1ab{bottom:751.453333pt;}
.y15{bottom:756.413333pt;}
.y50{bottom:757.853333pt;}
.y206{bottom:758.173333pt;}
.y244{bottom:760.253333pt;}
.y22d{bottom:767.453333pt;}
.y134{bottom:767.773333pt;}
.y1aa{bottom:768.413333pt;}
.y26c{bottom:771.453333pt;}
.y14{bottom:772.893333pt;}
.y4f{bottom:774.173333pt;}
.y243{bottom:776.733333pt;}
.y7c{bottom:779.973333pt;}
.y205{bottom:783.773333pt;}
.y131{bottom:784.893333pt;}
.y1a5{bottom:785.533333pt;}
.y13{bottom:789.213333pt;}
.y4e{bottom:790.653333pt;}
.y26b{bottom:793.373333pt;}
.y204{bottom:800.253333pt;}
.y184{bottom:800.573333pt;}
.y242{bottom:802.493333pt;}
.y1a9{bottom:802.653333pt;}
.y12{bottom:805.693333pt;}
.y4d{bottom:806.973333pt;}
.y22c{bottom:809.533333pt;}
.y26a{bottom:815.333333pt;}
.y203{bottom:816.773333pt;}
.y11d{bottom:817.093333pt;}
.y241{bottom:819.013333pt;}
.y1a7{bottom:819.813333pt;}
.y11{bottom:822.053333pt;}
.y4c{bottom:823.493333pt;}
.y22b{bottom:826.053333pt;}
.y1d5{bottom:834.213333pt;}
.y240{bottom:835.333333pt;}
.y269{bottom:837.093333pt;}
.y10{bottom:838.533333pt;}
.y4b{bottom:839.813333pt;}
.y202{bottom:842.373333pt;}
.y130{bottom:851.333333pt;}
.y22a{bottom:851.653333pt;}
.yf{bottom:855.013333pt;}
.y4a{bottom:856.293333pt;}
.y201{bottom:858.853333pt;}
.y268{bottom:859.013333pt;}
.y23f{bottom:861.093333pt;}
.y229{bottom:868.133333pt;}
.ye{bottom:871.333333pt;}
.y49{bottom:872.773333pt;}
.y23e{bottom:877.573333pt;}
.y267{bottom:880.933333pt;}
.y11b{bottom:883.493333pt;}
.y1d4{bottom:884.133333pt;}
.y200{bottom:884.613333pt;}
.yd{bottom:887.813333pt;}
.y48{bottom:889.093333pt;}
.y228{bottom:893.893333pt;}
.y266{bottom:902.853333pt;}
.y23d{bottom:903.173333pt;}
.yc{bottom:905.573333pt;}
.y1ff{bottom:910.373333pt;}
.y23c{bottom:919.653333pt;}
.y47{bottom:921.893333pt;}
.y265{bottom:924.613333pt;}
.y1fe{bottom:926.853333pt;}
.yb{bottom:929.093333pt;}
.y12f{bottom:934.053333pt;}
.y227{bottom:935.973333pt;}
.y46{bottom:938.373333pt;}
.y23b{bottom:945.413333pt;}
.y264{bottom:946.533333pt;}
.y183{bottom:949.733333pt;}
.y1d3{bottom:950.373333pt;}
.y1fd{bottom:952.453333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y23a{bottom:961.893333pt;}
.y11a{bottom:966.213333pt;}
.y263{bottom:968.453333pt;}
.y1fc{bottom:968.933333pt;}
.y44{bottom:971.173333pt;}
.y226{bottom:978.213333pt;}
.y119{bottom:983.173333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y262{bottom:990.373333pt;}
.y2{bottom:993.893333pt;}
.y1fb{bottom:994.693333pt;}
.y118{bottom:1000.293333pt;}
.y42{bottom:1003.973333pt;}
.y261{bottom:1011.173333pt;}
.y182{bottom:1016.133333pt;}
.y1fa{bottom:1020.293333pt;}
.y41{bottom:1020.453333pt;}
.y181{bottom:1033.120000pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h7{height:16.320000pt;}
.hc{height:16.352000pt;}
.hb{height:16.480000pt;}
.h14{height:16.512000pt;}
.h5{height:26.735625pt;}
.h10{height:32.800000pt;}
.hf{height:32.832000pt;}
.h1b{height:32.960000pt;}
.h1e{height:36.305625pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.hd{height:49.120000pt;}
.h15{height:49.152000pt;}
.h12{height:49.280000pt;}
.h16{height:49.312000pt;}
.h13{height:50.592000pt;}
.h1f{height:58.522500pt;}
.h6{height:58.563750pt;}
.h1d{height:63.399375pt;}
.h11{height:65.600000pt;}
.h3{height:65.632000pt;}
.he{height:65.760000pt;}
.h1c{height:65.792000pt;}
.h8{height:67.734375pt;}
.h17{height:81.920000pt;}
.h19{height:82.080000pt;}
.h18{height:82.112000pt;}
.h1a{height:98.560000pt;}
.ha{height:761.413333pt;}
.h9{height:793.253333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:23.232000pt;}
.w28{width:32.672000pt;}
.wd{width:32.832000pt;}
.wc{width:41.760000pt;}
.w27{width:41.920000pt;}
.w1b{width:46.560000pt;}
.w16{width:49.600000pt;}
.w23{width:56.160000pt;}
.w30{width:59.040000pt;}
.w15{width:62.432000pt;}
.w25{width:65.440000pt;}
.w2e{width:65.600000pt;}
.w2f{width:65.632000pt;}
.w24{width:74.912000pt;}
.w35{width:76.192000pt;}
.w22{width:76.480000pt;}
.w8{width:78.400000pt;}
.w18{width:81.472000pt;}
.w17{width:84.320000pt;}
.w1f{width:92.832000pt;}
.w31{width:98.560000pt;}
.wf{width:101.120000pt;}
.w13{width:112.672000pt;}
.w2c{width:112.800000pt;}
.w1e{width:112.832000pt;}
.w34{width:118.592000pt;}
.w32{width:121.792000pt;}
.w2b{width:122.272000pt;}
.w11{width:125.152000pt;}
.w2d{width:125.312000pt;}
.w12{width:130.752000pt;}
.w20{width:133.280000pt;}
.w21{width:141.146667pt;}
.w1c{width:156.186667pt;}
.w14{width:166.426667pt;}
.w29{width:183.066667pt;}
.w7{width:193.306667pt;}
.w33{width:220.506667pt;}
.w2a{width:238.746667pt;}
.w9{width:274.946667pt;}
.w1d{width:275.066667pt;}
.w10{width:279.906667pt;}
.wa{width:283.586667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w1a{width:558.013333pt;}
.wb{width:561.373333pt;}
.w26{width:561.693333pt;}
.w6{width:629.693333pt;}
.we{width:637.573333pt;}
.w19{width:638.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.280000pt;}
.x11{left:7.200000pt;}
.x28{left:8.480000pt;}
.x14{left:9.600000pt;}
.x30{left:10.560000pt;}
.x27{left:11.840000pt;}
.x49{left:12.960000pt;}
.x2e{left:14.720000pt;}
.x43{left:16.160000pt;}
.x33{left:17.440000pt;}
.x3f{left:18.880000pt;}
.x50{left:19.840000pt;}
.x19{left:21.120000pt;}
.x1c{left:22.720000pt;}
.x44{left:24.320000pt;}
.x1a{left:25.600000pt;}
.x31{left:28.000000pt;}
.x37{left:28.960000pt;}
.x46{left:30.240000pt;}
.x36{left:31.386667pt;}
.x16{left:33.600000pt;}
.x21{left:35.360000pt;}
.x41{left:38.240000pt;}
.x47{left:39.360000pt;}
.x51{left:44.160000pt;}
.x38{left:45.600000pt;}
.x22{left:54.880000pt;}
.x4c{left:56.640000pt;}
.x2{left:72.000000pt;}
.x18{left:74.120000pt;}
.x29{left:75.711988pt;}
.x2c{left:77.320000pt;}
.xc{left:78.431988pt;}
.x39{left:86.751988pt;}
.x12{left:87.872000pt;}
.x8{left:90.111988pt;}
.x4{left:91.040000pt;}
.x23{left:95.520000pt;}
.x13{left:96.634667pt;}
.x20{left:103.840000pt;}
.x5{left:106.560000pt;}
.x1e{left:108.360000pt;}
.x48{left:132.671988pt;}
.x1d{left:156.826667pt;}
.x53{left:176.986667pt;}
.x2b{left:179.386667pt;}
.x24{left:180.506655pt;}
.x52{left:200.666655pt;}
.xd{left:220.346655pt;}
.x3d{left:234.466667pt;}
.x34{left:242.466667pt;}
.x4b{left:261.346667pt;}
.x9{left:274.466655pt;}
.xe{left:282.146655pt;}
.x32{left:292.866667pt;}
.x15{left:296.706667pt;}
.x10{left:300.226655pt;}
.xb{left:312.386655pt;}
.x4e{left:327.586667pt;}
.x1b{left:336.386655pt;}
.xf{left:339.106655pt;}
.x2a{left:349.986655pt;}
.x3a{left:355.586655pt;}
.x42{left:368.386667pt;}
.x4a{left:371.266655pt;}
.x3c{left:374.946655pt;}
.x35{left:377.826667pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x1f{left:432.573333pt;}
.x4f{left:441.053333pt;}
.x45{left:444.093333pt;}
.x2d{left:459.933333pt;}
.x4d{left:500.733333pt;}
.x17{left:505.533333pt;}
.x3e{left:510.173333pt;}
.x54{left:520.733333pt;}
.x2f{left:585.733333pt;}
.x40{left:623.653333pt;}
.x3b{left:636.453333pt;}
.x25{left:640.453333pt;}
.x26{left:683.013333pt;}
.x7{left:698.853333pt;}
.x1{left:722.079988pt;}
}




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