
    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_388ed53132db592b7672c4ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_14b3c17dc6b7798bd3676af9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_f045fc5ebdb5a732a7859c41.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b59dd18a57a542d9fdd7b4c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_bcd6d776483c92c3c3bf7008.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_465f950117e66df98156883f.woff2')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_6fb27f567d2d87a996efb23c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d4fa85c7a87edac7413f1a09.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92fef883403431c168f79530.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7f85c6cc7e72193b14b94dcf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.132600px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.086400px;}
.ls14{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.869760px;}
.ls15{letter-spacing:6.480000px;}
.ls11{letter-spacing:10.080000px;}
.lsf{letter-spacing:33.984000px;}
.lse{letter-spacing:54.864000px;}
.ls3{letter-spacing:67.829760px;}
.ls5{letter-spacing:86.549760px;}
.ls2{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-66.240000px;}
.wse{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.226440px;}
.ws5{word-spacing:-15.056640px;}
.wsd{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.837640px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-16.332000px;}
._4{margin-left:-14.424000px;}
._9{margin-left:-12.300000px;}
._5{margin-left:-9.564000px;}
._a{margin-left:-7.528320px;}
._b{margin-left:-6.432000px;}
._3{margin-left:-4.488000px;}
._d{margin-left:-3.456960px;}
._7{margin-left:-2.403360px;}
._1{margin-left:-1.008000px;}
._2{width:1.440000px;}
._c{width:2.547360px;}
._10{width:3.749280px;}
._13{width:4.820160px;}
._14{width:6.035520px;}
._17{width:7.380960px;}
._f{width:9.099360px;}
._e{width:10.440000px;}
._20{width:11.448000px;}
._1d{width:12.456000px;}
._1f{width:13.464000px;}
._15{width:14.472000px;}
._16{width:15.636000px;}
._19{width:16.752960px;}
._21{width:19.656000px;}
._1e{width:20.664000px;}
._11{width:22.032000px;}
._12{width:23.160000px;}
._1c{width:24.612000px;}
._25{width:26.148000px;}
._22{width:27.504000px;}
._23{width:28.728000px;}
._27{width:29.916000px;}
._26{width:31.104000px;}
._24{width:32.256000px;}
._2a{width:33.840000px;}
._1a{width:35.208000px;}
._1b{width:36.216000px;}
._2c{width:37.224000px;}
._2b{width:38.856000px;}
._28{width:40.320000px;}
._29{width:41.328000px;}
._2d{width:42.696000px;}
._37{width:44.280000px;}
._3a{width:45.444000px;}
._30{width:46.728000px;}
._2f{width:48.240000px;}
._31{width:49.392000px;}
._35{width:50.400000px;}
._36{width:51.480000px;}
._42{width:53.136000px;}
._32{width:54.480000px;}
._39{width:56.496000px;}
._33{width:57.744000px;}
._34{width:58.896000px;}
._3c{width:60.480000px;}
._40{width:61.632000px;}
._41{width:68.472000px;}
._3b{width:69.480000px;}
._2e{width:76.680000px;}
._3d{width:79.632000px;}
._38{width:84.240000px;}
._6{width:86.295360px;}
._18{width:115.356000px;}
._3e{width:125.856000px;}
._3f{width:127.848000px;}
._0{width:846.156000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(25,25,25);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:131.760000px;}
.fs2{font-size:216.000000px;}
.y27c{bottom:-149.760000px;}
.y286{bottom:-149.610000px;}
.y274{bottom:-149.580000px;}
.y285{bottom:-128.730000px;}
.y276{bottom:-128.700000px;}
.y273{bottom:-128.520000px;}
.y284{bottom:-108.210000px;}
.y272{bottom:-108.180000px;}
.y27b{bottom:-87.840000px;}
.y283{bottom:-87.690000px;}
.y271{bottom:-87.660000px;}
.y282{bottom:-54.570000px;}
.y275{bottom:-54.540000px;}
.y270{bottom:-54.360000px;}
.y260{bottom:-36.540000px;}
.y27a{bottom:-20.880000px;}
.y281{bottom:-20.730000px;}
.y26f{bottom:-20.700000px;}
.y267{bottom:-7.380000px;}
.y25f{bottom:-3.420000px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:4.140000px;}
.y1dc{bottom:4.320000px;}
.y1c9{bottom:4.500000px;}
.y1df{bottom:6.480000px;}
.y279{bottom:8.130000px;}
.y26e{bottom:8.280000px;}
.y10{bottom:14.580000px;}
.y15d{bottom:15.840000px;}
.y1fc{bottom:16.740000px;}
.y1f7{bottom:17.640000px;}
.y7{bottom:18.180000px;}
.y1e5{bottom:18.720000px;}
.y15b{bottom:20.880000px;}
.y1c8{bottom:25.200000px;}
.y266{bottom:26.460000px;}
.y1d9{bottom:28.800000px;}
.y25e{bottom:30.240000px;}
.y259{bottom:32.400000px;}
.y15c{bottom:34.380000px;}
.y26d{bottom:36.720000px;}
.y278{bottom:36.750000px;}
.y1f6{bottom:38.340000px;}
.y1e4{bottom:39.420000px;}
.y15f{bottom:39.780000px;}
.y15a{bottom:39.810000px;}
.y127{bottom:41.400000px;}
.y158{bottom:46.620000px;}
.y25a{bottom:47.340000px;}
.y1d8{bottom:49.500000px;}
.y254{bottom:55.290000px;}
.y14{bottom:57.600000px;}
.y126{bottom:59.250000px;}
.y265{bottom:60.150000px;}
.y156{bottom:61.590000px;}
.y25d{bottom:63.360000px;}
.y6{bottom:64.620000px;}
.y280{bottom:65.160000px;}
.y26c{bottom:65.190000px;}
.y258{bottom:66.450000px;}
.y17e{bottom:70.050000px;}
.y13e{bottom:72.390000px;}
.y125{bottom:76.530000px;}
.y13{bottom:77.760000px;}
.y24e{bottom:79.200000px;}
.y163{bottom:79.380000px;}
.y155{bottom:80.490000px;}
.y253{bottom:88.050000px;}
.y13d{bottom:91.290000px;}
.y264{bottom:93.270000px;}
.y25c{bottom:95.760000px;}
.y162{bottom:98.640000px;}
.y257{bottom:99.210000px;}
.y255{bottom:105.480000px;}
.y13c{bottom:110.010000px;}
.y1a1{bottom:110.700000px;}
.y152{bottom:111.060000px;}
.y154{bottom:111.270000px;}
.y57{bottom:113.580000px;}
.yd9{bottom:115.560000px;}
.y261{bottom:115.920000px;}
.y250{bottom:116.100000px;}
.y137{bottom:116.460000px;}
.y161{bottom:117.180000px;}
.y252{bottom:118.650000px;}
.y1f0{bottom:119.520000px;}
.ya2{bottom:122.580000px;}
.y124{bottom:123.300000px;}
.y263{bottom:125.670000px;}
.y132{bottom:127.110000px;}
.y113{bottom:128.340000px;}
.y25b{bottom:128.370000px;}
.y13b{bottom:128.550000px;}
.y5{bottom:128.880000px;}
.y17d{bottom:129.060000px;}
.y153{bottom:129.810000px;}
.y27e{bottom:131.220000px;}
.y12d{bottom:131.580000px;}
.y23b{bottom:131.760000px;}
.y178{bottom:132.120000px;}
.y17c{bottom:133.380000px;}
.y12e{bottom:137.700000px;}
.y1ef{bottom:140.220000px;}
.y66{bottom:140.940000px;}
.y1a0{bottom:141.660000px;}
.yf{bottom:143.820000px;}
.y131{bottom:144.570000px;}
.y56{bottom:144.720000px;}
.yd8{bottom:146.520000px;}
.y13a{bottom:147.270000px;}
.y136{bottom:147.600000px;}
.y251{bottom:149.250000px;}
.y27d{bottom:149.400000px;}
.y17b{bottom:152.640000px;}
.ya1{bottom:153.720000px;}
.y287{bottom:154.620000px;}
.yf3{bottom:156.240000px;}
.y24a{bottom:157.320000px;}
.y262{bottom:158.070000px;}
.y112{bottom:159.300000px;}
.yc1{bottom:159.840000px;}
.y256{bottom:160.410000px;}
.y1ee{bottom:160.920000px;}
.y130{bottom:161.850000px;}
.y12c{bottom:162.540000px;}
.y23a{bottom:162.720000px;}
.y177{bottom:163.260000px;}
.y1a6{bottom:163.620000px;}
.y1b6{bottom:164.340000px;}
.y139{bottom:165.810000px;}
.y24d{bottom:166.320000px;}
.y83{bottom:169.590000px;}
.y160{bottom:170.490000px;}
.y17a{bottom:171.180000px;}
.y65{bottom:172.110000px;}
.y55{bottom:175.710000px;}
.yd7{bottom:177.690000px;}
.y1ec{bottom:178.410000px;}
.y135{bottom:178.590000px;}
.y12f{bottom:179.130000px;}
.y45{bottom:183.450000px;}
.ya0{bottom:184.710000px;}
.yf2{bottom:187.410000px;}
.y19f{bottom:187.770000px;}
.y249{bottom:188.490000px;}
.y111{bottom:190.470000px;}
.yc0{bottom:191.010000px;}
.y12b{bottom:193.710000px;}
.y239{bottom:193.890000px;}
.y176{bottom:194.250000px;}
.y1a5{bottom:194.790000px;}
.y1b5{bottom:195.510000px;}
.y1b1{bottom:202.890000px;}
.y64{bottom:203.070000px;}
.y1eb{bottom:204.330000px;}
.y54{bottom:206.850000px;}
.yd6{bottom:208.650000px;}
.y134{bottom:209.730000px;}
.y44{bottom:214.410000px;}
.y82{bottom:215.310000px;}
.y9f{bottom:215.850000px;}
.yf1{bottom:218.370000px;}
.y19e{bottom:218.910000px;}
.y248{bottom:219.450000px;}
.y110{bottom:221.430000px;}
.ybf{bottom:221.970000px;}
.y12a{bottom:224.670000px;}
.y238{bottom:224.850000px;}
.y1ea{bottom:225.030000px;}
.y175{bottom:225.390000px;}
.y1a4{bottom:225.750000px;}
.y1b0{bottom:233.850000px;}
.y63{bottom:234.210000px;}
.y53{bottom:237.810000px;}
.y1b4{bottom:238.530000px;}
.yd5{bottom:239.790000px;}
.y133{bottom:240.690000px;}
.y1e9{bottom:241.950000px;}
.y43{bottom:245.550000px;}
.y81{bottom:246.450000px;}
.y9e{bottom:246.810000px;}
.yf0{bottom:249.510000px;}
.y19d{bottom:249.870000px;}
.y247{bottom:250.590000px;}
.y10f{bottom:252.570000px;}
.ybe{bottom:253.110000px;}
.y157{bottom:253.290000px;}
.y17f{bottom:255.630000px;}
.y129{bottom:255.810000px;}
.y174{bottom:256.350000px;}
.yd2{bottom:256.710000px;}
.y1e8{bottom:263.370000px;}
.y1af{bottom:264.990000px;}
.y62{bottom:265.170000px;}
.y52{bottom:268.950000px;}
.yd4{bottom:270.750000px;}
.y2{bottom:271.110000px;}
.y123{bottom:271.830000px;}
.y42{bottom:276.510000px;}
.y80{bottom:277.410000px;}
.y9d{bottom:277.950000px;}
.yef{bottom:280.470000px;}
.y19c{bottom:281.010000px;}
.y246{bottom:281.550000px;}
.y10e{bottom:283.530000px;}
.ybd{bottom:284.070000px;}
.ye{bottom:284.625000px;}
.y1e7{bottom:284.790000px;}
.yd1{bottom:286.410000px;}
.y128{bottom:286.770000px;}
.y173{bottom:287.490000px;}
.y1a3{bottom:287.850000px;}
.y184{bottom:289.665000px;}
.y180{bottom:291.090000px;}
.y237{bottom:291.810000px;}
.y1ae{bottom:295.950000px;}
.y61{bottom:296.310000px;}
.yd3{bottom:301.710000px;}
.y151{bottom:302.790000px;}
.y1e6{bottom:306.210000px;}
.y41{bottom:307.650000px;}
.y7f{bottom:308.550000px;}
.y183{bottom:308.565000px;}
.y9c{bottom:308.910000px;}
.yee{bottom:311.610000px;}
.y19b{bottom:311.970000px;}
.y245{bottom:312.690000px;}
.y236{bottom:313.950000px;}
.y10d{bottom:314.670000px;}
.y51{bottom:315.030000px;}
.ybc{bottom:315.210000px;}
.yd{bottom:317.565000px;}
.y122{bottom:317.910000px;}
.y172{bottom:318.450000px;}
.y1a2{bottom:318.810000px;}
.y1c0{bottom:326.010000px;}
.y1ad{bottom:327.090000px;}
.y60{bottom:327.270000px;}
.y182{bottom:327.285000px;}
.y1e3{bottom:327.810000px;}
.yd0{bottom:332.850000px;}
.y150{bottom:333.930000px;}
.yc{bottom:338.085000px;}
.y40{bottom:338.610000px;}
.y7e{bottom:339.510000px;}
.y9b{bottom:339.870000px;}
.yed{bottom:342.570000px;}
.y244{bottom:343.650000px;}
.y19a{bottom:344.370000px;}
.y235{bottom:344.910000px;}
.y10c{bottom:345.630000px;}
.y181{bottom:345.825000px;}
.y50{bottom:345.990000px;}
.ybb{bottom:346.170000px;}
.y121{bottom:348.870000px;}
.y171{bottom:349.590000px;}
.y211{bottom:356.250000px;}
.y1ac{bottom:358.050000px;}
.ycf{bottom:363.810000px;}
.y14f{bottom:364.890000px;}
.y3f{bottom:369.750000px;}
.yb{bottom:370.485000px;}
.y7d{bottom:370.650000px;}
.y9a{bottom:371.010000px;}
.y1bf{bottom:371.910000px;}
.y5f{bottom:373.350000px;}
.yec{bottom:373.710000px;}
.y243{bottom:374.790000px;}
.y199{bottom:375.330000px;}
.y234{bottom:376.050000px;}
.y10b{bottom:376.770000px;}
.y4f{bottom:377.130000px;}
.yba{bottom:377.310000px;}
.y120{bottom:380.010000px;}
.y170{bottom:380.550000px;}
.y1e2{bottom:388.650000px;}
.y1ab{bottom:389.190000px;}
.ya{bottom:391.035000px;}
.yce{bottom:394.950000px;}
.y14e{bottom:396.030000px;}
.y3e{bottom:400.710000px;}
.y7c{bottom:401.610000px;}
.y99{bottom:401.970000px;}
.y210{bottom:402.150000px;}
.y5e{bottom:404.490000px;}
.yeb{bottom:404.670000px;}
.y242{bottom:405.750000px;}
.y198{bottom:406.470000px;}
.y233{bottom:407.010000px;}
.y10a{bottom:407.730000px;}
.y4e{bottom:408.090000px;}
.yb9{bottom:408.270000px;}
.y1e1{bottom:408.990000px;}
.y11f{bottom:410.970000px;}
.y16f{bottom:411.690000px;}
.y1be{bottom:418.035000px;}
.y20f{bottom:418.575000px;}
.y1aa{bottom:420.195000px;}
.y9{bottom:423.615000px;}
.ycd{bottom:425.955000px;}
.y14d{bottom:427.035000px;}
.y1e0{bottom:430.095000px;}
.y3d{bottom:431.895000px;}
.y7b{bottom:432.795000px;}
.y98{bottom:433.155000px;}
.y5d{bottom:435.495000px;}
.yea{bottom:435.855000px;}
.y241{bottom:436.935000px;}
.y232{bottom:438.195000px;}
.y109{bottom:438.915000px;}
.y20e{bottom:439.275000px;}
.yb8{bottom:439.455000px;}
.y11e{bottom:442.155000px;}
.y16e{bottom:442.695000px;}
.y2d{bottom:444.135000px;}
.y1de{bottom:447.015000px;}
.y4d{bottom:451.155000px;}
.y1a9{bottom:451.335000px;}
.y8{bottom:456.015000px;}
.ycc{bottom:457.095000px;}
.y14c{bottom:458.175000px;}
.y20d{bottom:459.975000px;}
.y15e{bottom:460.335000px;}
.y24c{bottom:462.135000px;}
.y3c{bottom:462.855000px;}
.y7a{bottom:463.755000px;}
.y97{bottom:464.115000px;}
.y5c{bottom:466.635000px;}
.ye9{bottom:466.815000px;}
.y240{bottom:467.895000px;}
.y231{bottom:469.155000px;}
.y108{bottom:469.875000px;}
.yb7{bottom:470.415000px;}
.y11d{bottom:473.115000px;}
.y16d{bottom:473.835000px;}
.y20c{bottom:480.675000px;}
.y4c{bottom:482.295000px;}
.y2c{bottom:485.355000px;}
.ycb{bottom:488.055000px;}
.y14b{bottom:489.135000px;}
.y1dd{bottom:491.835000px;}
.y3b{bottom:493.995000px;}
.y96{bottom:495.255000px;}
.y5b{bottom:497.595000px;}
.ye8{bottom:497.955000px;}
.y23f{bottom:499.035000px;}
.y230{bottom:500.295000px;}
.y197{bottom:501.015000px;}
.y20b{bottom:501.375000px;}
.yb6{bottom:501.555000px;}
.y11c{bottom:504.255000px;}
.y16c{bottom:504.795000px;}
.y79{bottom:509.835000px;}
.y4b{bottom:513.255000px;}
.y1a8{bottom:513.435000px;}
.y107{bottom:515.955000px;}
.yca{bottom:519.195000px;}
.y14a{bottom:520.275000px;}
.y20a{bottom:522.075000px;}
.y3a{bottom:524.955000px;}
.y95{bottom:526.215000px;}
.y5a{bottom:528.735000px;}
.ye7{bottom:528.915000px;}
.y22f{bottom:531.255000px;}
.yb5{bottom:532.515000px;}
.y23e{bottom:533.415000px;}
.y2b{bottom:534.675000px;}
.y1db{bottom:534.855000px;}
.y11b{bottom:535.215000px;}
.y16b{bottom:535.935000px;}
.y78{bottom:540.975000px;}
.y209{bottom:543.495000px;}
.y4a{bottom:544.395000px;}
.y21d{bottom:545.835000px;}
.y106{bottom:546.915000px;}
.y196{bottom:548.355000px;}
.yc9{bottom:550.155000px;}
.y149{bottom:551.235000px;}
.y23d{bottom:555.555000px;}
.y39{bottom:556.095000px;}
.y1da{bottom:556.275000px;}
.y94{bottom:557.355000px;}
.y59{bottom:559.695000px;}
.ye6{bottom:560.055000px;}
.y22e{bottom:562.395000px;}
.yb4{bottom:563.655000px;}
.y2a{bottom:563.835000px;}
.y11a{bottom:566.355000px;}
.y16a{bottom:566.895000px;}
.y77{bottom:571.935000px;}
.y49{bottom:575.355000px;}
.y1d7{bottom:577.695000px;}
.y105{bottom:578.055000px;}
.y195{bottom:579.315000px;}
.yc8{bottom:581.295000px;}
.y208{bottom:582.015000px;}
.y148{bottom:582.375000px;}
.y38{bottom:587.055000px;}
.y93{bottom:588.315000px;}
.y23c{bottom:590.115000px;}
.y58{bottom:590.655000px;}
.ye5{bottom:591.015000px;}
.y21c{bottom:591.555000px;}
.y22d{bottom:593.355000px;}
.y29{bottom:593.715000px;}
.yb3{bottom:594.615000px;}
.y119{bottom:597.315000px;}
.y169{bottom:598.035000px;}
.y138{bottom:602.535000px;}
.y76{bottom:603.075000px;}
.y207{bottom:604.515000px;}
.y48{bottom:606.495000px;}
.y104{bottom:609.015000px;}
.y194{bottom:610.275000px;}
.yc7{bottom:612.255000px;}
.y147{bottom:613.335000px;}
.y26b{bottom:616.575000px;}
.y37{bottom:618.195000px;}
.y92{bottom:619.455000px;}
.ye4{bottom:622.155000px;}
.y28{bottom:623.955000px;}
.y159{bottom:624.135000px;}
.y22c{bottom:624.495000px;}
.yb2{bottom:625.755000px;}
.y206{bottom:626.835000px;}
.y118{bottom:628.275000px;}
.y168{bottom:628.995000px;}
.y21b{bottom:633.135000px;}
.y75{bottom:634.035000px;}
.y47{bottom:637.455000px;}
.y103{bottom:640.155000px;}
.y193{bottom:641.415000px;}
.yc6{bottom:643.395000px;}
.y146{bottom:644.475000px;}
.y1d6{bottom:648.615000px;}
.y36{bottom:649.155000px;}
.y91{bottom:650.415000px;}
.y277{bottom:652.935000px;}
.ye3{bottom:653.115000px;}
.y27{bottom:654.015000px;}
.y22b{bottom:655.485000px;}
.yb1{bottom:656.745000px;}
.y117{bottom:659.445000px;}
.y1b3{bottom:659.985000px;}
.y167{bottom:660.165000px;}
.y74{bottom:665.205000px;}
.y212{bottom:666.285000px;}
.y1d5{bottom:668.985000px;}
.y102{bottom:671.145000px;}
.y1bd{bottom:671.325000px;}
.yc5{bottom:674.385000px;}
.y21a{bottom:674.565000px;}
.y145{bottom:675.465000px;}
.y27f{bottom:676.005000px;}
.y46{bottom:678.705000px;}
.y35{bottom:680.325000px;}
.y90{bottom:681.585000px;}
.y26{bottom:684.105000px;}
.ye2{bottom:684.285000px;}
.y22a{bottom:686.625000px;}
.y192{bottom:687.525000px;}
.yb0{bottom:687.885000px;}
.y1d4{bottom:690.045000px;}
.y116{bottom:690.405000px;}
.y166{bottom:691.125000px;}
.y73{bottom:696.165000px;}
.y4{bottom:701.580000px;}
.y101{bottom:702.285000px;}
.y1bc{bottom:702.465000px;}
.yc4{bottom:705.525000px;}
.y144{bottom:706.605000px;}
.y1d3{bottom:707.145000px;}
.y34{bottom:711.285000px;}
.y8f{bottom:712.545000px;}
.y25{bottom:713.985000px;}
.ye1{bottom:715.245000px;}
.y219{bottom:715.965000px;}
.y229{bottom:717.585000px;}
.y191{bottom:718.485000px;}
.y205{bottom:718.845000px;}
.y115{bottom:721.545000px;}
.y1b2{bottom:722.085000px;}
.y165{bottom:722.265000px;}
.yaf{bottom:722.445000px;}
.y72{bottom:727.305000px;}
.y1d2{bottom:728.565000px;}
.y100{bottom:733.245000px;}
.y1bb{bottom:733.425000px;}
.y3{bottom:735.420000px;}
.yc3{bottom:736.485000px;}
.y204{bottom:739.545000px;}
.y33{bottom:742.425000px;}
.y24{bottom:743.685000px;}
.ye0{bottom:746.205000px;}
.y8e{bottom:747.285000px;}
.y228{bottom:748.725000px;}
.y190{bottom:749.625000px;}
.y1d1{bottom:749.985000px;}
.yae{bottom:752.145000px;}
.y114{bottom:752.505000px;}
.y164{bottom:753.225000px;}
.y203{bottom:756.465000px;}
.y218{bottom:757.365000px;}
.yff{bottom:764.385000px;}
.y1ba{bottom:764.565000px;}
.yc2{bottom:767.625000px;}
.y1d0{bottom:771.405000px;}
.y71{bottom:773.205000px;}
.y23{bottom:773.565000px;}
.y8d{bottom:776.985000px;}
.ydf{bottom:777.345000px;}
.y202{bottom:777.885000px;}
.y227{bottom:779.685000px;}
.y18f{bottom:780.585000px;}
.y32{bottom:783.645000px;}
.y1cf{bottom:792.825000px;}
.yfe{bottom:795.345000px;}
.y1b9{bottom:795.525000px;}
.yad{bottom:798.585000px;}
.y217{bottom:798.765000px;}
.y22{bottom:803.445000px;}
.y201{bottom:803.805000px;}
.y70{bottom:804.345000px;}
.yde{bottom:808.305000px;}
.y226{bottom:810.825000px;}
.y18e{bottom:811.725000px;}
.y1ce{bottom:814.245000px;}
.y143{bottom:814.605000px;}
.y8c{bottom:823.425000px;}
.y200{bottom:824.505000px;}
.yfd{bottom:826.485000px;}
.y1b8{bottom:826.665000px;}
.yac{bottom:829.725000px;}
.y21{bottom:833.325000px;}
.y6f{bottom:835.305000px;}
.y1cd{bottom:835.665000px;}
.ydd{bottom:839.445000px;}
.y216{bottom:840.165000px;}
.y225{bottom:841.785000px;}
.y18d{bottom:842.685000px;}
.y31{bottom:843.045000px;}
.y1ff{bottom:844.845000px;}
.y142{bottom:845.745000px;}
.y8b{bottom:854.565000px;}
.y1cc{bottom:857.265000px;}
.yfc{bottom:857.445000px;}
.y1b7{bottom:857.625000px;}
.yab{bottom:860.685000px;}
.y20{bottom:863.565000px;}
.y1fe{bottom:865.905000px;}
.y6e{bottom:866.445000px;}
.ydc{bottom:870.405000px;}
.y224{bottom:872.925000px;}
.y18c{bottom:873.825000px;}
.y141{bottom:876.705000px;}
.y1cb{bottom:878.685000px;}
.y215{bottom:881.565000px;}
.y8a{bottom:885.525000px;}
.y1fd{bottom:886.605000px;}
.yfb{bottom:888.585000px;}
.yaa{bottom:891.825000px;}
.y1f{bottom:892.725000px;}
.y6d{bottom:897.405000px;}
.y1ca{bottom:900.150000px;}
.ydb{bottom:901.590000px;}
.y30{bottom:902.490000px;}
.y1fb{bottom:902.850000px;}
.y223{bottom:903.930000px;}
.y18b{bottom:904.830000px;}
.y140{bottom:907.890000px;}
.y89{bottom:916.530000px;}
.y1c7{bottom:921.570000px;}
.y1e{bottom:922.110000px;}
.ya9{bottom:922.830000px;}
.y214{bottom:923.010000px;}
.y6c{bottom:928.590000px;}
.yfa{bottom:934.530000px;}
.y1fa{bottom:935.790000px;}
.y18a{bottom:935.970000px;}
.yda{bottom:938.850000px;}
.y88{bottom:947.670000px;}
.y1d{bottom:951.270000px;}
.ya8{bottom:953.970000px;}
.y1f9{bottom:956.490000px;}
.y6b{bottom:959.550000px;}
.y2f{bottom:961.890000px;}
.y179{bottom:964.410000px;}
.yf9{bottom:965.670000px;}
.y189{bottom:966.930000px;}
.y1c6{bottom:968.190000px;}
.y13f{bottom:969.990000px;}
.y222{bottom:970.350000px;}
.y1f8{bottom:977.190000px;}
.y87{bottom:978.630000px;}
.y1c{bottom:981.330000px;}
.ya7{bottom:984.930000px;}
.y1c5{bottom:988.530000px;}
.yf8{bottom:996.630000px;}
.y188{bottom:998.070000px;}
.y1f5{bottom:998.610000px;}
.y221{bottom:1001.310000px;}
.y6a{bottom:1005.630000px;}
.y213{bottom:1005.810000px;}
.y1c4{bottom:1009.590000px;}
.y86{bottom:1009.770000px;}
.y1b{bottom:1011.030000px;}
.ya6{bottom:1016.070000px;}
.y2e{bottom:1021.290000px;}
.yf7{bottom:1027.770000px;}
.y187{bottom:1029.030000px;}
.y1c3{bottom:1031.730000px;}
.y220{bottom:1032.450000px;}
.y69{bottom:1036.770000px;}
.y17{bottom:1039.290000px;}
.y85{bottom:1040.730000px;}
.y1a{bottom:1040.910000px;}
.ya5{bottom:1047.030000px;}
.y1c2{bottom:1054.050000px;}
.y1f4{bottom:1057.650000px;}
.yf6{bottom:1058.730000px;}
.y186{bottom:1060.170000px;}
.y21f{bottom:1063.410000px;}
.y68{bottom:1067.730000px;}
.y19{bottom:1070.790000px;}
.y26a{bottom:1072.770000px;}
.y1c1{bottom:1076.550000px;}
.ya4{bottom:1078.170000px;}
.y1f3{bottom:1078.350000px;}
.y16{bottom:1080.690000px;}
.y84{bottom:1089.510000px;}
.yf5{bottom:1089.870000px;}
.y185{bottom:1091.130000px;}
.y21e{bottom:1094.190000px;}
.y1f2{bottom:1094.550000px;}
.y67{bottom:1098.870000px;}
.y269{bottom:1103.550000px;}
.y24f{bottom:1108.950000px;}
.y18{bottom:1109.130000px;}
.y24b{bottom:1109.310000px;}
.y1f1{bottom:1115.250000px;}
.y268{bottom:1137.210000px;}
.yf4{bottom:1138.650000px;}
.y1a7{bottom:1139.730000px;}
.y15{bottom:1139.910000px;}
.ya3{bottom:1140.270000px;}
.y1{bottom:1140.450000px;}
.y12{bottom:1173.600000px;}
.y11{bottom:1193.580000px;}
.h20{height:20.520000px;}
.h1d{height:20.700000px;}
.h1e{height:20.736000px;}
.h21{height:22.680000px;}
.h24{height:32.940000px;}
.h1c{height:41.400000px;}
.h16{height:47.880000px;}
.h9{height:50.035781px;}
.h4{height:50.294531px;}
.h17{height:53.280000px;}
.h15{height:53.316000px;}
.h23{height:54.540000px;}
.h22{height:55.620000px;}
.h12{height:58.621992px;}
.hf{height:58.651172px;}
.h14{height:60.480000px;}
.hc{height:64.546875px;}
.h6{height:65.010937px;}
.h1f{height:65.700000px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:74.004654px;}
.hb{height:74.953125px;}
.h2d{height:80.100000px;}
.h2c{height:80.136000px;}
.h1a{height:83.916000px;}
.h2b{height:84.898125px;}
.he{height:90.036000px;}
.h27{height:129.315234px;}
.h18{height:130.680000px;}
.h13{height:143.316000px;}
.h28{height:162.750000px;}
.h2a{height:173.010000px;}
.h29{height:173.910000px;}
.h11{height:179.310000px;}
.h19{height:184.710000px;}
.h10{height:192.630000px;}
.h5{height:211.992188px;}
.h26{height:217.687500px;}
.h25{height:338.970000px;}
.h1b{height:359.310000px;}
.h3{height:750.885000px;}
.h7{height:975.390000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:73.260000px;}
.w15{width:73.980000px;}
.w25{width:79.380000px;}
.w13{width:83.340000px;}
.w17{width:84.240000px;}
.w18{width:84.276000px;}
.w1a{width:84.420000px;}
.w8{width:89.316000px;}
.w14{width:93.816000px;}
.w24{width:93.996000px;}
.w26{width:105.120000px;}
.w27{width:105.300000px;}
.w20{width:105.480000px;}
.w23{width:111.420000px;}
.w7{width:111.636000px;}
.w22{width:115.596000px;}
.w11{width:121.716000px;}
.w21{width:131.976000px;}
.wf{width:155.910000px;}
.w1e{width:159.150000px;}
.we{width:164.910000px;}
.w2c{width:190.470000px;}
.w6{width:203.430000px;}
.w2a{width:211.530000px;}
.w2b{width:233.310000px;}
.wd{width:251.355000px;}
.w4{width:260.355000px;}
.w9{width:272.955000px;}
.wb{width:294.555000px;}
.wc{width:299.955000px;}
.w29{width:318.090000px;}
.w1c{width:318.450000px;}
.w1d{width:318.675000px;}
.w10{width:364.755000px;}
.w12{width:382.935000px;}
.w16{width:391.575000px;}
.w19{width:392.295000px;}
.w30{width:392.505000px;}
.wa{width:394.815000px;}
.w32{width:459.825000px;}
.w1f{width:477.975000px;}
.w31{width:480.345000px;}
.w2d{width:500.505000px;}
.w28{width:530.745000px;}
.w3{width:577.365000px;}
.w2f{width:608.505000px;}
.w2e{width:653.325000px;}
.w5{width:839.880000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.740000px;}
.x47{left:9.000000px;}
.x37{left:10.800000px;}
.x38{left:11.880000px;}
.x2f{left:14.040000px;}
.x13{left:15.120000px;}
.x32{left:16.740000px;}
.x36{left:19.080000px;}
.x31{left:21.240000px;}
.x20{left:23.760000px;}
.x19{left:25.560000px;}
.x2{left:26.640000px;}
.x26{left:29.160000px;}
.x30{left:31.140000px;}
.x29{left:32.760000px;}
.x41{left:33.834000px;}
.x1d{left:36.360000px;}
.x35{left:37.440000px;}
.x3c{left:40.500000px;}
.x2d{left:42.345000px;}
.x42{left:44.100000px;}
.x33{left:46.845000px;}
.x40{left:51.300000px;}
.x43{left:52.734000px;}
.x46{left:55.800000px;}
.x45{left:57.600000px;}
.x44{left:65.925000px;}
.x4{left:75.996000px;}
.x50{left:77.265000px;}
.x4e{left:87.654000px;}
.x4f{left:112.170000px;}
.x55{left:119.916000px;}
.x1{left:127.655987px;}
.x12{left:141.155987px;}
.x9{left:144.215987px;}
.x52{left:152.685000px;}
.xb{left:154.649987px;}
.xa{left:160.589987px;}
.x53{left:162.765000px;}
.x28{left:168.329987px;}
.xc{left:181.649987px;}
.x51{left:196.050000px;}
.x22{left:203.429987px;}
.x56{left:206.130000px;}
.x58{left:212.430000px;}
.x57{left:214.410000px;}
.xe{left:233.849987px;}
.x54{left:250.245000px;}
.x39{left:252.075000px;}
.x49{left:261.075000px;}
.x4a{left:270.075000px;}
.x5{left:282.495000px;}
.x4b{left:283.575000px;}
.x3a{left:286.815000px;}
.x1f{left:288.974987px;}
.x1e{left:292.934987px;}
.x48{left:310.539000px;}
.x4c{left:340.635000px;}
.x1c{left:342.074987px;}
.x1b{left:346.574987px;}
.x1a{left:353.774987px;}
.x3b{left:365.115000px;}
.x25{left:407.774987px;}
.x24{left:411.914987px;}
.x21{left:421.814987px;}
.x18{left:434.414987px;}
.x16{left:441.614987px;}
.x15{left:445.574987px;}
.x17{left:446.835000px;}
.x3d{left:480.705000px;}
.x27{left:505.184987px;}
.x2b{left:512.025000px;}
.x34{left:520.845000px;}
.x11{left:534.344987px;}
.x3{left:551.445000px;}
.xf{left:558.104987px;}
.x10{left:562.065000px;}
.x4d{left:574.665000px;}
.x23{left:585.465000px;}
.x3e{left:592.125000px;}
.x2c{left:596.265000px;}
.x6{left:606.165000px;}
.x7{left:645.089987px;}
.x3f{left:686.130000px;}
.x2e{left:690.810000px;}
.x59{left:729.149987px;}
.xd{left:748.769987px;}
.x8{left:757.229987px;}
.x14{left:790.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.076800pt;}
.ls14{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.773120pt;}
.ls15{letter-spacing:5.760000pt;}
.ls11{letter-spacing:8.960000pt;}
.lsf{letter-spacing:30.208000pt;}
.lse{letter-spacing:48.768000pt;}
.ls3{letter-spacing:60.293120pt;}
.ls5{letter-spacing:76.933120pt;}
.ls2{letter-spacing:754.831787pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-58.880000pt;}
.wse{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.383680pt;}
.wsd{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.189013pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-14.517333pt;}
._4{margin-left:-12.821333pt;}
._9{margin-left:-10.933333pt;}
._5{margin-left:-8.501333pt;}
._a{margin-left:-6.691840pt;}
._b{margin-left:-5.717333pt;}
._3{margin-left:-3.989333pt;}
._d{margin-left:-3.072853pt;}
._7{margin-left:-2.136320pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.280000pt;}
._c{width:2.264320pt;}
._10{width:3.332693pt;}
._13{width:4.284587pt;}
._14{width:5.364907pt;}
._17{width:6.560853pt;}
._f{width:8.088320pt;}
._e{width:9.280000pt;}
._20{width:10.176000pt;}
._1d{width:11.072000pt;}
._1f{width:11.968000pt;}
._15{width:12.864000pt;}
._16{width:13.898667pt;}
._19{width:14.891520pt;}
._21{width:17.472000pt;}
._1e{width:18.368000pt;}
._11{width:19.584000pt;}
._12{width:20.586667pt;}
._1c{width:21.877333pt;}
._25{width:23.242667pt;}
._22{width:24.448000pt;}
._23{width:25.536000pt;}
._27{width:26.592000pt;}
._26{width:27.648000pt;}
._24{width:28.672000pt;}
._2a{width:30.080000pt;}
._1a{width:31.296000pt;}
._1b{width:32.192000pt;}
._2c{width:33.088000pt;}
._2b{width:34.538667pt;}
._28{width:35.840000pt;}
._29{width:36.736000pt;}
._2d{width:37.952000pt;}
._37{width:39.360000pt;}
._3a{width:40.394667pt;}
._30{width:41.536000pt;}
._2f{width:42.880000pt;}
._31{width:43.904000pt;}
._35{width:44.800000pt;}
._36{width:45.760000pt;}
._42{width:47.232000pt;}
._32{width:48.426667pt;}
._39{width:50.218667pt;}
._33{width:51.328000pt;}
._34{width:52.352000pt;}
._3c{width:53.760000pt;}
._40{width:54.784000pt;}
._41{width:60.864000pt;}
._3b{width:61.760000pt;}
._2e{width:68.160000pt;}
._3d{width:70.784000pt;}
._38{width:74.880000pt;}
._6{width:76.706987pt;}
._18{width:102.538667pt;}
._3e{width:111.872000pt;}
._3f{width:113.642667pt;}
._0{width:752.138667pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:117.120000pt;}
.fs2{font-size:192.000000pt;}
.y27c{bottom:-133.120000pt;}
.y286{bottom:-132.986667pt;}
.y274{bottom:-132.960000pt;}
.y285{bottom:-114.426667pt;}
.y276{bottom:-114.400000pt;}
.y273{bottom:-114.240000pt;}
.y284{bottom:-96.186667pt;}
.y272{bottom:-96.160000pt;}
.y27b{bottom:-78.080000pt;}
.y283{bottom:-77.946667pt;}
.y271{bottom:-77.920000pt;}
.y282{bottom:-48.506667pt;}
.y275{bottom:-48.480000pt;}
.y270{bottom:-48.320000pt;}
.y260{bottom:-32.480000pt;}
.y27a{bottom:-18.560000pt;}
.y281{bottom:-18.426667pt;}
.y26f{bottom:-18.400000pt;}
.y267{bottom:-6.560000pt;}
.y25f{bottom:-3.040000pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:3.680000pt;}
.y1dc{bottom:3.840000pt;}
.y1c9{bottom:4.000000pt;}
.y1df{bottom:5.760000pt;}
.y279{bottom:7.226667pt;}
.y26e{bottom:7.360000pt;}
.y10{bottom:12.960000pt;}
.y15d{bottom:14.080000pt;}
.y1fc{bottom:14.880000pt;}
.y1f7{bottom:15.680000pt;}
.y7{bottom:16.160000pt;}
.y1e5{bottom:16.640000pt;}
.y15b{bottom:18.560000pt;}
.y1c8{bottom:22.400000pt;}
.y266{bottom:23.520000pt;}
.y1d9{bottom:25.600000pt;}
.y25e{bottom:26.880000pt;}
.y259{bottom:28.800000pt;}
.y15c{bottom:30.560000pt;}
.y26d{bottom:32.640000pt;}
.y278{bottom:32.666667pt;}
.y1f6{bottom:34.080000pt;}
.y1e4{bottom:35.040000pt;}
.y15f{bottom:35.360000pt;}
.y15a{bottom:35.386667pt;}
.y127{bottom:36.800000pt;}
.y158{bottom:41.440000pt;}
.y25a{bottom:42.080000pt;}
.y1d8{bottom:44.000000pt;}
.y254{bottom:49.146667pt;}
.y14{bottom:51.200000pt;}
.y126{bottom:52.666667pt;}
.y265{bottom:53.466667pt;}
.y156{bottom:54.746667pt;}
.y25d{bottom:56.320000pt;}
.y6{bottom:57.440000pt;}
.y280{bottom:57.920000pt;}
.y26c{bottom:57.946667pt;}
.y258{bottom:59.066667pt;}
.y17e{bottom:62.266667pt;}
.y13e{bottom:64.346667pt;}
.y125{bottom:68.026667pt;}
.y13{bottom:69.120000pt;}
.y24e{bottom:70.400000pt;}
.y163{bottom:70.560000pt;}
.y155{bottom:71.546667pt;}
.y253{bottom:78.266667pt;}
.y13d{bottom:81.146667pt;}
.y264{bottom:82.906667pt;}
.y25c{bottom:85.120000pt;}
.y162{bottom:87.680000pt;}
.y257{bottom:88.186667pt;}
.y255{bottom:93.760000pt;}
.y13c{bottom:97.786667pt;}
.y1a1{bottom:98.400000pt;}
.y152{bottom:98.720000pt;}
.y154{bottom:98.906667pt;}
.y57{bottom:100.960000pt;}
.yd9{bottom:102.720000pt;}
.y261{bottom:103.040000pt;}
.y250{bottom:103.200000pt;}
.y137{bottom:103.520000pt;}
.y161{bottom:104.160000pt;}
.y252{bottom:105.466667pt;}
.y1f0{bottom:106.240000pt;}
.ya2{bottom:108.960000pt;}
.y124{bottom:109.600000pt;}
.y263{bottom:111.706667pt;}
.y132{bottom:112.986667pt;}
.y113{bottom:114.080000pt;}
.y25b{bottom:114.106667pt;}
.y13b{bottom:114.266667pt;}
.y5{bottom:114.560000pt;}
.y17d{bottom:114.720000pt;}
.y153{bottom:115.386667pt;}
.y27e{bottom:116.640000pt;}
.y12d{bottom:116.960000pt;}
.y23b{bottom:117.120000pt;}
.y178{bottom:117.440000pt;}
.y17c{bottom:118.560000pt;}
.y12e{bottom:122.400000pt;}
.y1ef{bottom:124.640000pt;}
.y66{bottom:125.280000pt;}
.y1a0{bottom:125.920000pt;}
.yf{bottom:127.840000pt;}
.y131{bottom:128.506667pt;}
.y56{bottom:128.640000pt;}
.yd8{bottom:130.240000pt;}
.y13a{bottom:130.906667pt;}
.y136{bottom:131.200000pt;}
.y251{bottom:132.666667pt;}
.y27d{bottom:132.800000pt;}
.y17b{bottom:135.680000pt;}
.ya1{bottom:136.640000pt;}
.y287{bottom:137.440000pt;}
.yf3{bottom:138.880000pt;}
.y24a{bottom:139.840000pt;}
.y262{bottom:140.506667pt;}
.y112{bottom:141.600000pt;}
.yc1{bottom:142.080000pt;}
.y256{bottom:142.586667pt;}
.y1ee{bottom:143.040000pt;}
.y130{bottom:143.866667pt;}
.y12c{bottom:144.480000pt;}
.y23a{bottom:144.640000pt;}
.y177{bottom:145.120000pt;}
.y1a6{bottom:145.440000pt;}
.y1b6{bottom:146.080000pt;}
.y139{bottom:147.386667pt;}
.y24d{bottom:147.840000pt;}
.y83{bottom:150.746667pt;}
.y160{bottom:151.546667pt;}
.y17a{bottom:152.160000pt;}
.y65{bottom:152.986667pt;}
.y55{bottom:156.186667pt;}
.yd7{bottom:157.946667pt;}
.y1ec{bottom:158.586667pt;}
.y135{bottom:158.746667pt;}
.y12f{bottom:159.226667pt;}
.y45{bottom:163.066667pt;}
.ya0{bottom:164.186667pt;}
.yf2{bottom:166.586667pt;}
.y19f{bottom:166.906667pt;}
.y249{bottom:167.546667pt;}
.y111{bottom:169.306667pt;}
.yc0{bottom:169.786667pt;}
.y12b{bottom:172.186667pt;}
.y239{bottom:172.346667pt;}
.y176{bottom:172.666667pt;}
.y1a5{bottom:173.146667pt;}
.y1b5{bottom:173.786667pt;}
.y1b1{bottom:180.346667pt;}
.y64{bottom:180.506667pt;}
.y1eb{bottom:181.626667pt;}
.y54{bottom:183.866667pt;}
.yd6{bottom:185.466667pt;}
.y134{bottom:186.426667pt;}
.y44{bottom:190.586667pt;}
.y82{bottom:191.386667pt;}
.y9f{bottom:191.866667pt;}
.yf1{bottom:194.106667pt;}
.y19e{bottom:194.586667pt;}
.y248{bottom:195.066667pt;}
.y110{bottom:196.826667pt;}
.ybf{bottom:197.306667pt;}
.y12a{bottom:199.706667pt;}
.y238{bottom:199.866667pt;}
.y1ea{bottom:200.026667pt;}
.y175{bottom:200.346667pt;}
.y1a4{bottom:200.666667pt;}
.y1b0{bottom:207.866667pt;}
.y63{bottom:208.186667pt;}
.y53{bottom:211.386667pt;}
.y1b4{bottom:212.026667pt;}
.yd5{bottom:213.146667pt;}
.y133{bottom:213.946667pt;}
.y1e9{bottom:215.066667pt;}
.y43{bottom:218.266667pt;}
.y81{bottom:219.066667pt;}
.y9e{bottom:219.386667pt;}
.yf0{bottom:221.786667pt;}
.y19d{bottom:222.106667pt;}
.y247{bottom:222.746667pt;}
.y10f{bottom:224.506667pt;}
.ybe{bottom:224.986667pt;}
.y157{bottom:225.146667pt;}
.y17f{bottom:227.226667pt;}
.y129{bottom:227.386667pt;}
.y174{bottom:227.866667pt;}
.yd2{bottom:228.186667pt;}
.y1e8{bottom:234.106667pt;}
.y1af{bottom:235.546667pt;}
.y62{bottom:235.706667pt;}
.y52{bottom:239.066667pt;}
.yd4{bottom:240.666667pt;}
.y2{bottom:240.986667pt;}
.y123{bottom:241.626667pt;}
.y42{bottom:245.786667pt;}
.y80{bottom:246.586667pt;}
.y9d{bottom:247.066667pt;}
.yef{bottom:249.306667pt;}
.y19c{bottom:249.786667pt;}
.y246{bottom:250.266667pt;}
.y10e{bottom:252.026667pt;}
.ybd{bottom:252.506667pt;}
.ye{bottom:253.000000pt;}
.y1e7{bottom:253.146667pt;}
.yd1{bottom:254.586667pt;}
.y128{bottom:254.906667pt;}
.y173{bottom:255.546667pt;}
.y1a3{bottom:255.866667pt;}
.y184{bottom:257.480000pt;}
.y180{bottom:258.746667pt;}
.y237{bottom:259.386667pt;}
.y1ae{bottom:263.066667pt;}
.y61{bottom:263.386667pt;}
.yd3{bottom:268.186667pt;}
.y151{bottom:269.146667pt;}
.y1e6{bottom:272.186667pt;}
.y41{bottom:273.466667pt;}
.y7f{bottom:274.266667pt;}
.y183{bottom:274.280000pt;}
.y9c{bottom:274.586667pt;}
.yee{bottom:276.986667pt;}
.y19b{bottom:277.306667pt;}
.y245{bottom:277.946667pt;}
.y236{bottom:279.066667pt;}
.y10d{bottom:279.706667pt;}
.y51{bottom:280.026667pt;}
.ybc{bottom:280.186667pt;}
.yd{bottom:282.280000pt;}
.y122{bottom:282.586667pt;}
.y172{bottom:283.066667pt;}
.y1a2{bottom:283.386667pt;}
.y1c0{bottom:289.786667pt;}
.y1ad{bottom:290.746667pt;}
.y60{bottom:290.906667pt;}
.y182{bottom:290.920000pt;}
.y1e3{bottom:291.386667pt;}
.yd0{bottom:295.866667pt;}
.y150{bottom:296.826667pt;}
.yc{bottom:300.520000pt;}
.y40{bottom:300.986667pt;}
.y7e{bottom:301.786667pt;}
.y9b{bottom:302.106667pt;}
.yed{bottom:304.506667pt;}
.y244{bottom:305.466667pt;}
.y19a{bottom:306.106667pt;}
.y235{bottom:306.586667pt;}
.y10c{bottom:307.226667pt;}
.y181{bottom:307.400000pt;}
.y50{bottom:307.546667pt;}
.ybb{bottom:307.706667pt;}
.y121{bottom:310.106667pt;}
.y171{bottom:310.746667pt;}
.y211{bottom:316.666667pt;}
.y1ac{bottom:318.266667pt;}
.ycf{bottom:323.386667pt;}
.y14f{bottom:324.346667pt;}
.y3f{bottom:328.666667pt;}
.yb{bottom:329.320000pt;}
.y7d{bottom:329.466667pt;}
.y9a{bottom:329.786667pt;}
.y1bf{bottom:330.586667pt;}
.y5f{bottom:331.866667pt;}
.yec{bottom:332.186667pt;}
.y243{bottom:333.146667pt;}
.y199{bottom:333.626667pt;}
.y234{bottom:334.266667pt;}
.y10b{bottom:334.906667pt;}
.y4f{bottom:335.226667pt;}
.yba{bottom:335.386667pt;}
.y120{bottom:337.786667pt;}
.y170{bottom:338.266667pt;}
.y1e2{bottom:345.466667pt;}
.y1ab{bottom:345.946667pt;}
.ya{bottom:347.586667pt;}
.yce{bottom:351.066667pt;}
.y14e{bottom:352.026667pt;}
.y3e{bottom:356.186667pt;}
.y7c{bottom:356.986667pt;}
.y99{bottom:357.306667pt;}
.y210{bottom:357.466667pt;}
.y5e{bottom:359.546667pt;}
.yeb{bottom:359.706667pt;}
.y242{bottom:360.666667pt;}
.y198{bottom:361.306667pt;}
.y233{bottom:361.786667pt;}
.y10a{bottom:362.426667pt;}
.y4e{bottom:362.746667pt;}
.yb9{bottom:362.906667pt;}
.y1e1{bottom:363.546667pt;}
.y11f{bottom:365.306667pt;}
.y16f{bottom:365.946667pt;}
.y1be{bottom:371.586667pt;}
.y20f{bottom:372.066667pt;}
.y1aa{bottom:373.506667pt;}
.y9{bottom:376.546667pt;}
.ycd{bottom:378.626667pt;}
.y14d{bottom:379.586667pt;}
.y1e0{bottom:382.306667pt;}
.y3d{bottom:383.906667pt;}
.y7b{bottom:384.706667pt;}
.y98{bottom:385.026667pt;}
.y5d{bottom:387.106667pt;}
.yea{bottom:387.426667pt;}
.y241{bottom:388.386667pt;}
.y232{bottom:389.506667pt;}
.y109{bottom:390.146667pt;}
.y20e{bottom:390.466667pt;}
.yb8{bottom:390.626667pt;}
.y11e{bottom:393.026667pt;}
.y16e{bottom:393.506667pt;}
.y2d{bottom:394.786667pt;}
.y1de{bottom:397.346667pt;}
.y4d{bottom:401.026667pt;}
.y1a9{bottom:401.186667pt;}
.y8{bottom:405.346667pt;}
.ycc{bottom:406.306667pt;}
.y14c{bottom:407.266667pt;}
.y20d{bottom:408.866667pt;}
.y15e{bottom:409.186667pt;}
.y24c{bottom:410.786667pt;}
.y3c{bottom:411.426667pt;}
.y7a{bottom:412.226667pt;}
.y97{bottom:412.546667pt;}
.y5c{bottom:414.786667pt;}
.ye9{bottom:414.946667pt;}
.y240{bottom:415.906667pt;}
.y231{bottom:417.026667pt;}
.y108{bottom:417.666667pt;}
.yb7{bottom:418.146667pt;}
.y11d{bottom:420.546667pt;}
.y16d{bottom:421.186667pt;}
.y20c{bottom:427.266667pt;}
.y4c{bottom:428.706667pt;}
.y2c{bottom:431.426667pt;}
.ycb{bottom:433.826667pt;}
.y14b{bottom:434.786667pt;}
.y1dd{bottom:437.186667pt;}
.y3b{bottom:439.106667pt;}
.y96{bottom:440.226667pt;}
.y5b{bottom:442.306667pt;}
.ye8{bottom:442.626667pt;}
.y23f{bottom:443.586667pt;}
.y230{bottom:444.706667pt;}
.y197{bottom:445.346667pt;}
.y20b{bottom:445.666667pt;}
.yb6{bottom:445.826667pt;}
.y11c{bottom:448.226667pt;}
.y16c{bottom:448.706667pt;}
.y79{bottom:453.186667pt;}
.y4b{bottom:456.226667pt;}
.y1a8{bottom:456.386667pt;}
.y107{bottom:458.626667pt;}
.yca{bottom:461.506667pt;}
.y14a{bottom:462.466667pt;}
.y20a{bottom:464.066667pt;}
.y3a{bottom:466.626667pt;}
.y95{bottom:467.746667pt;}
.y5a{bottom:469.986667pt;}
.ye7{bottom:470.146667pt;}
.y22f{bottom:472.226667pt;}
.yb5{bottom:473.346667pt;}
.y23e{bottom:474.146667pt;}
.y2b{bottom:475.266667pt;}
.y1db{bottom:475.426667pt;}
.y11b{bottom:475.746667pt;}
.y16b{bottom:476.386667pt;}
.y78{bottom:480.866667pt;}
.y209{bottom:483.106667pt;}
.y4a{bottom:483.906667pt;}
.y21d{bottom:485.186667pt;}
.y106{bottom:486.146667pt;}
.y196{bottom:487.426667pt;}
.yc9{bottom:489.026667pt;}
.y149{bottom:489.986667pt;}
.y23d{bottom:493.826667pt;}
.y39{bottom:494.306667pt;}
.y1da{bottom:494.466667pt;}
.y94{bottom:495.426667pt;}
.y59{bottom:497.506667pt;}
.ye6{bottom:497.826667pt;}
.y22e{bottom:499.906667pt;}
.yb4{bottom:501.026667pt;}
.y2a{bottom:501.186667pt;}
.y11a{bottom:503.426667pt;}
.y16a{bottom:503.906667pt;}
.y77{bottom:508.386667pt;}
.y49{bottom:511.426667pt;}
.y1d7{bottom:513.506667pt;}
.y105{bottom:513.826667pt;}
.y195{bottom:514.946667pt;}
.yc8{bottom:516.706667pt;}
.y208{bottom:517.346667pt;}
.y148{bottom:517.666667pt;}
.y38{bottom:521.826667pt;}
.y93{bottom:522.946667pt;}
.y23c{bottom:524.546667pt;}
.y58{bottom:525.026667pt;}
.ye5{bottom:525.346667pt;}
.y21c{bottom:525.826667pt;}
.y22d{bottom:527.426667pt;}
.y29{bottom:527.746667pt;}
.yb3{bottom:528.546667pt;}
.y119{bottom:530.946667pt;}
.y169{bottom:531.586667pt;}
.y138{bottom:535.586667pt;}
.y76{bottom:536.066667pt;}
.y207{bottom:537.346667pt;}
.y48{bottom:539.106667pt;}
.y104{bottom:541.346667pt;}
.y194{bottom:542.466667pt;}
.yc7{bottom:544.226667pt;}
.y147{bottom:545.186667pt;}
.y26b{bottom:548.066667pt;}
.y37{bottom:549.506667pt;}
.y92{bottom:550.626667pt;}
.ye4{bottom:553.026667pt;}
.y28{bottom:554.626667pt;}
.y159{bottom:554.786667pt;}
.y22c{bottom:555.106667pt;}
.yb2{bottom:556.226667pt;}
.y206{bottom:557.186667pt;}
.y118{bottom:558.466667pt;}
.y168{bottom:559.106667pt;}
.y21b{bottom:562.786667pt;}
.y75{bottom:563.586667pt;}
.y47{bottom:566.626667pt;}
.y103{bottom:569.026667pt;}
.y193{bottom:570.146667pt;}
.yc6{bottom:571.906667pt;}
.y146{bottom:572.866667pt;}
.y1d6{bottom:576.546667pt;}
.y36{bottom:577.026667pt;}
.y91{bottom:578.146667pt;}
.y277{bottom:580.386667pt;}
.ye3{bottom:580.546667pt;}
.y27{bottom:581.346667pt;}
.y22b{bottom:582.653333pt;}
.yb1{bottom:583.773333pt;}
.y117{bottom:586.173333pt;}
.y1b3{bottom:586.653333pt;}
.y167{bottom:586.813333pt;}
.y74{bottom:591.293333pt;}
.y212{bottom:592.253333pt;}
.y1d5{bottom:594.653333pt;}
.y102{bottom:596.573333pt;}
.y1bd{bottom:596.733333pt;}
.yc5{bottom:599.453333pt;}
.y21a{bottom:599.613333pt;}
.y145{bottom:600.413333pt;}
.y27f{bottom:600.893333pt;}
.y46{bottom:603.293333pt;}
.y35{bottom:604.733333pt;}
.y90{bottom:605.853333pt;}
.y26{bottom:608.093333pt;}
.ye2{bottom:608.253333pt;}
.y22a{bottom:610.333333pt;}
.y192{bottom:611.133333pt;}
.yb0{bottom:611.453333pt;}
.y1d4{bottom:613.373333pt;}
.y116{bottom:613.693333pt;}
.y166{bottom:614.333333pt;}
.y73{bottom:618.813333pt;}
.y4{bottom:623.626667pt;}
.y101{bottom:624.253333pt;}
.y1bc{bottom:624.413333pt;}
.yc4{bottom:627.133333pt;}
.y144{bottom:628.093333pt;}
.y1d3{bottom:628.573333pt;}
.y34{bottom:632.253333pt;}
.y8f{bottom:633.373333pt;}
.y25{bottom:634.653333pt;}
.ye1{bottom:635.773333pt;}
.y219{bottom:636.413333pt;}
.y229{bottom:637.853333pt;}
.y191{bottom:638.653333pt;}
.y205{bottom:638.973333pt;}
.y115{bottom:641.373333pt;}
.y1b2{bottom:641.853333pt;}
.y165{bottom:642.013333pt;}
.yaf{bottom:642.173333pt;}
.y72{bottom:646.493333pt;}
.y1d2{bottom:647.613333pt;}
.y100{bottom:651.773333pt;}
.y1bb{bottom:651.933333pt;}
.y3{bottom:653.706667pt;}
.yc3{bottom:654.653333pt;}
.y204{bottom:657.373333pt;}
.y33{bottom:659.933333pt;}
.y24{bottom:661.053333pt;}
.ye0{bottom:663.293333pt;}
.y8e{bottom:664.253333pt;}
.y228{bottom:665.533333pt;}
.y190{bottom:666.333333pt;}
.y1d1{bottom:666.653333pt;}
.yae{bottom:668.573333pt;}
.y114{bottom:668.893333pt;}
.y164{bottom:669.533333pt;}
.y203{bottom:672.413333pt;}
.y218{bottom:673.213333pt;}
.yff{bottom:679.453333pt;}
.y1ba{bottom:679.613333pt;}
.yc2{bottom:682.333333pt;}
.y1d0{bottom:685.693333pt;}
.y71{bottom:687.293333pt;}
.y23{bottom:687.613333pt;}
.y8d{bottom:690.653333pt;}
.ydf{bottom:690.973333pt;}
.y202{bottom:691.453333pt;}
.y227{bottom:693.053333pt;}
.y18f{bottom:693.853333pt;}
.y32{bottom:696.573333pt;}
.y1cf{bottom:704.733333pt;}
.yfe{bottom:706.973333pt;}
.y1b9{bottom:707.133333pt;}
.yad{bottom:709.853333pt;}
.y217{bottom:710.013333pt;}
.y22{bottom:714.173333pt;}
.y201{bottom:714.493333pt;}
.y70{bottom:714.973333pt;}
.yde{bottom:718.493333pt;}
.y226{bottom:720.733333pt;}
.y18e{bottom:721.533333pt;}
.y1ce{bottom:723.773333pt;}
.y143{bottom:724.093333pt;}
.y8c{bottom:731.933333pt;}
.y200{bottom:732.893333pt;}
.yfd{bottom:734.653333pt;}
.y1b8{bottom:734.813333pt;}
.yac{bottom:737.533333pt;}
.y21{bottom:740.733333pt;}
.y6f{bottom:742.493333pt;}
.y1cd{bottom:742.813333pt;}
.ydd{bottom:746.173333pt;}
.y216{bottom:746.813333pt;}
.y225{bottom:748.253333pt;}
.y18d{bottom:749.053333pt;}
.y31{bottom:749.373333pt;}
.y1ff{bottom:750.973333pt;}
.y142{bottom:751.773333pt;}
.y8b{bottom:759.613333pt;}
.y1cc{bottom:762.013333pt;}
.yfc{bottom:762.173333pt;}
.y1b7{bottom:762.333333pt;}
.yab{bottom:765.053333pt;}
.y20{bottom:767.613333pt;}
.y1fe{bottom:769.693333pt;}
.y6e{bottom:770.173333pt;}
.ydc{bottom:773.693333pt;}
.y224{bottom:775.933333pt;}
.y18c{bottom:776.733333pt;}
.y141{bottom:779.293333pt;}
.y1cb{bottom:781.053333pt;}
.y215{bottom:783.613333pt;}
.y8a{bottom:787.133333pt;}
.y1fd{bottom:788.093333pt;}
.yfb{bottom:789.853333pt;}
.yaa{bottom:792.733333pt;}
.y1f{bottom:793.533333pt;}
.y6d{bottom:797.693333pt;}
.y1ca{bottom:800.133333pt;}
.ydb{bottom:801.413333pt;}
.y30{bottom:802.213333pt;}
.y1fb{bottom:802.533333pt;}
.y223{bottom:803.493333pt;}
.y18b{bottom:804.293333pt;}
.y140{bottom:807.013333pt;}
.y89{bottom:814.693333pt;}
.y1c7{bottom:819.173333pt;}
.y1e{bottom:819.653333pt;}
.ya9{bottom:820.293333pt;}
.y214{bottom:820.453333pt;}
.y6c{bottom:825.413333pt;}
.yfa{bottom:830.693333pt;}
.y1fa{bottom:831.813333pt;}
.y18a{bottom:831.973333pt;}
.yda{bottom:834.533333pt;}
.y88{bottom:842.373333pt;}
.y1d{bottom:845.573333pt;}
.ya8{bottom:847.973333pt;}
.y1f9{bottom:850.213333pt;}
.y6b{bottom:852.933333pt;}
.y2f{bottom:855.013333pt;}
.y179{bottom:857.253333pt;}
.yf9{bottom:858.373333pt;}
.y189{bottom:859.493333pt;}
.y1c6{bottom:860.613333pt;}
.y13f{bottom:862.213333pt;}
.y222{bottom:862.533333pt;}
.y1f8{bottom:868.613333pt;}
.y87{bottom:869.893333pt;}
.y1c{bottom:872.293333pt;}
.ya7{bottom:875.493333pt;}
.y1c5{bottom:878.693333pt;}
.yf8{bottom:885.893333pt;}
.y188{bottom:887.173333pt;}
.y1f5{bottom:887.653333pt;}
.y221{bottom:890.053333pt;}
.y6a{bottom:893.893333pt;}
.y213{bottom:894.053333pt;}
.y1c4{bottom:897.413333pt;}
.y86{bottom:897.573333pt;}
.y1b{bottom:898.693333pt;}
.ya6{bottom:903.173333pt;}
.y2e{bottom:907.813333pt;}
.yf7{bottom:913.573333pt;}
.y187{bottom:914.693333pt;}
.y1c3{bottom:917.093333pt;}
.y220{bottom:917.733333pt;}
.y69{bottom:921.573333pt;}
.y17{bottom:923.813333pt;}
.y85{bottom:925.093333pt;}
.y1a{bottom:925.253333pt;}
.ya5{bottom:930.693333pt;}
.y1c2{bottom:936.933333pt;}
.y1f4{bottom:940.133333pt;}
.yf6{bottom:941.093333pt;}
.y186{bottom:942.373333pt;}
.y21f{bottom:945.253333pt;}
.y68{bottom:949.093333pt;}
.y19{bottom:951.813333pt;}
.y26a{bottom:953.573333pt;}
.y1c1{bottom:956.933333pt;}
.ya4{bottom:958.373333pt;}
.y1f3{bottom:958.533333pt;}
.y16{bottom:960.613333pt;}
.y84{bottom:968.453333pt;}
.yf5{bottom:968.773333pt;}
.y185{bottom:969.893333pt;}
.y21e{bottom:972.613333pt;}
.y1f2{bottom:972.933333pt;}
.y67{bottom:976.773333pt;}
.y269{bottom:980.933333pt;}
.y24f{bottom:985.733333pt;}
.y18{bottom:985.893333pt;}
.y24b{bottom:986.053333pt;}
.y1f1{bottom:991.333333pt;}
.y268{bottom:1010.853333pt;}
.yf4{bottom:1012.133333pt;}
.y1a7{bottom:1013.093333pt;}
.y15{bottom:1013.253333pt;}
.ya3{bottom:1013.573333pt;}
.y1{bottom:1013.733333pt;}
.y12{bottom:1043.200000pt;}
.y11{bottom:1060.960000pt;}
.h20{height:18.240000pt;}
.h1d{height:18.400000pt;}
.h1e{height:18.432000pt;}
.h21{height:20.160000pt;}
.h24{height:29.280000pt;}
.h1c{height:36.800000pt;}
.h16{height:42.560000pt;}
.h9{height:44.476250pt;}
.h4{height:44.706250pt;}
.h17{height:47.360000pt;}
.h15{height:47.392000pt;}
.h23{height:48.480000pt;}
.h22{height:49.440000pt;}
.h12{height:52.108438pt;}
.hf{height:52.134375pt;}
.h14{height:53.760000pt;}
.hc{height:57.375000pt;}
.h6{height:57.787500pt;}
.h1f{height:58.400000pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:65.781915pt;}
.hb{height:66.625000pt;}
.h2d{height:71.200000pt;}
.h2c{height:71.232000pt;}
.h1a{height:74.592000pt;}
.h2b{height:75.465000pt;}
.he{height:80.032000pt;}
.h27{height:114.946875pt;}
.h18{height:116.160000pt;}
.h13{height:127.392000pt;}
.h28{height:144.666667pt;}
.h2a{height:153.786667pt;}
.h29{height:154.586667pt;}
.h11{height:159.386667pt;}
.h19{height:164.186667pt;}
.h10{height:171.226667pt;}
.h5{height:188.437500pt;}
.h26{height:193.500000pt;}
.h25{height:301.306667pt;}
.h1b{height:319.386667pt;}
.h3{height:667.453333pt;}
.h7{height:867.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:65.120000pt;}
.w15{width:65.760000pt;}
.w25{width:70.560000pt;}
.w13{width:74.080000pt;}
.w17{width:74.880000pt;}
.w18{width:74.912000pt;}
.w1a{width:75.040000pt;}
.w8{width:79.392000pt;}
.w14{width:83.392000pt;}
.w24{width:83.552000pt;}
.w26{width:93.440000pt;}
.w27{width:93.600000pt;}
.w20{width:93.760000pt;}
.w23{width:99.040000pt;}
.w7{width:99.232000pt;}
.w22{width:102.752000pt;}
.w11{width:108.192000pt;}
.w21{width:117.312000pt;}
.wf{width:138.586667pt;}
.w1e{width:141.466667pt;}
.we{width:146.586667pt;}
.w2c{width:169.306667pt;}
.w6{width:180.826667pt;}
.w2a{width:188.026667pt;}
.w2b{width:207.386667pt;}
.wd{width:223.426667pt;}
.w4{width:231.426667pt;}
.w9{width:242.626667pt;}
.wb{width:261.826667pt;}
.wc{width:266.626667pt;}
.w29{width:282.746667pt;}
.w1c{width:283.066667pt;}
.w1d{width:283.266667pt;}
.w10{width:324.226667pt;}
.w12{width:340.386667pt;}
.w16{width:348.066667pt;}
.w19{width:348.706667pt;}
.w30{width:348.893333pt;}
.wa{width:350.946667pt;}
.w32{width:408.733333pt;}
.w1f{width:424.866667pt;}
.w31{width:426.973333pt;}
.w2d{width:444.893333pt;}
.w28{width:471.773333pt;}
.w3{width:513.213333pt;}
.w2f{width:540.893333pt;}
.w2e{width:580.733333pt;}
.w5{width:746.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.880000pt;}
.x47{left:8.000000pt;}
.x37{left:9.600000pt;}
.x38{left:10.560000pt;}
.x2f{left:12.480000pt;}
.x13{left:13.440000pt;}
.x32{left:14.880000pt;}
.x36{left:16.960000pt;}
.x31{left:18.880000pt;}
.x20{left:21.120000pt;}
.x19{left:22.720000pt;}
.x2{left:23.680000pt;}
.x26{left:25.920000pt;}
.x30{left:27.680000pt;}
.x29{left:29.120000pt;}
.x41{left:30.074667pt;}
.x1d{left:32.320000pt;}
.x35{left:33.280000pt;}
.x3c{left:36.000000pt;}
.x2d{left:37.640000pt;}
.x42{left:39.200000pt;}
.x33{left:41.640000pt;}
.x40{left:45.600000pt;}
.x43{left:46.874667pt;}
.x46{left:49.600000pt;}
.x45{left:51.200000pt;}
.x44{left:58.600000pt;}
.x4{left:67.552000pt;}
.x50{left:68.680000pt;}
.x4e{left:77.914667pt;}
.x4f{left:99.706667pt;}
.x55{left:106.592000pt;}
.x1{left:113.471988pt;}
.x12{left:125.471988pt;}
.x9{left:128.191988pt;}
.x52{left:135.720000pt;}
.xb{left:137.466655pt;}
.xa{left:142.746655pt;}
.x53{left:144.680000pt;}
.x28{left:149.626655pt;}
.xc{left:161.466655pt;}
.x51{left:174.266667pt;}
.x22{left:180.826655pt;}
.x56{left:183.226667pt;}
.x58{left:188.826667pt;}
.x57{left:190.586667pt;}
.xe{left:207.866655pt;}
.x54{left:222.440000pt;}
.x39{left:224.066667pt;}
.x49{left:232.066667pt;}
.x4a{left:240.066667pt;}
.x5{left:251.106667pt;}
.x4b{left:252.066667pt;}
.x3a{left:254.946667pt;}
.x1f{left:256.866655pt;}
.x1e{left:260.386655pt;}
.x48{left:276.034667pt;}
.x4c{left:302.786667pt;}
.x1c{left:304.066655pt;}
.x1b{left:308.066655pt;}
.x1a{left:314.466655pt;}
.x3b{left:324.546667pt;}
.x25{left:362.466655pt;}
.x24{left:366.146655pt;}
.x21{left:374.946655pt;}
.x18{left:386.146655pt;}
.x16{left:392.546655pt;}
.x15{left:396.066655pt;}
.x17{left:397.186667pt;}
.x3d{left:427.293333pt;}
.x27{left:449.053322pt;}
.x2b{left:455.133333pt;}
.x34{left:462.973333pt;}
.x11{left:474.973322pt;}
.x3{left:490.173333pt;}
.xf{left:496.093322pt;}
.x10{left:499.613333pt;}
.x4d{left:510.813333pt;}
.x23{left:520.413333pt;}
.x3e{left:526.333333pt;}
.x2c{left:530.013333pt;}
.x6{left:538.813333pt;}
.x7{left:573.413322pt;}
.x3f{left:609.893333pt;}
.x2e{left:614.053333pt;}
.x59{left:648.133322pt;}
.xd{left:665.573322pt;}
.x8{left:673.093322pt;}
.x14{left:702.853333pt;}
}




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