
    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_fc736207dcb3f00cbd64a38f.woff')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_54aef85ad0142c6044169790.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b3ff26f8707753cb995da4f.woff')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_b0b15e2014e9299aee880581.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_9aa674d63c371ba275f6a76d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70da69b5d67e2df731deb7a7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bcdcec998323ebd6c028c008.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;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_8425e66e58e97f5f4469f1b7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_b010e47a581509ad388b8702.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6cc701fe1c2fbd21ca2afedb.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v5{vertical-align:-66.240000px;}
.v3{vertical-align:-37.440000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.180000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.269400px;}
.ls18{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.150600px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.223800px;}
.lse{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.617760px;}
.ls12{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.620000px;}
.ls6{letter-spacing:3.060000px;}
.ls10{letter-spacing:5.220000px;}
.ls11{letter-spacing:8.100000px;}
.ls1{letter-spacing:47.700000px;}
.ls1a{letter-spacing:205.536000px;}
.ls0{letter-spacing:430.896000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.283800px;}
.ws5{word-spacing:-12.060000px;}
.wse{word-spacing:-11.790600px;}
.ws6{word-spacing:-10.950480px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws12{word-spacing:-7.920000px;}
.ws1{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:60.120000px;}
._5{margin-left:-59.580000px;}
._13{margin-left:-3.618000px;}
._b{margin-left:-2.562480px;}
._2{margin-left:-1.258560px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._e{width:3.475920px;}
._1a{width:4.571280px;}
._10{width:5.736960px;}
._19{width:6.841440px;}
._18{width:8.062560px;}
._1b{width:9.928560px;}
._15{width:11.016000px;}
._14{width:12.150000px;}
._f{width:13.864320px;}
._9{width:16.792560px;}
._20{width:17.899920px;}
._21{width:19.702560px;}
._29{width:20.782080px;}
._7{width:21.872160px;}
._1d{width:22.922640px;}
._16{width:24.084000px;}
._17{width:25.092000px;}
._8{width:26.892000px;}
._11{width:28.266480px;}
._30{width:29.282400px;}
._12{width:30.298320px;}
._c{width:31.852080px;}
._d{width:33.107040px;}
._25{width:34.277760px;}
._28{width:35.280480px;}
._23{width:36.399600px;}
._27{width:37.648800px;}
._a{width:39.383040px;}
._1e{width:41.772240px;}
._1f{width:42.847920px;}
._33{width:44.102880px;}
._22{width:46.254240px;}
._2b{width:47.927520px;}
._34{width:50.230080px;}
._2a{width:51.513120px;}
._2f{width:54.771840px;}
._2c{width:57.190320px;}
._24{width:59.879520px;}
._26{width:61.149600px;}
._2e{width:62.688240px;}
._3{width:65.496000px;}
._2d{width:68.724000px;}
._36{width:76.433040px;}
._37{width:79.899120px;}
._38{width:86.054400px;}
._35{width:112.348800px;}
._32{width:165.774240px;}
._4{width:199.620000px;}
._31{width:216.151920px;}
._1c{width:285.870000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fsf{font-size:48.384000px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y71{bottom:-251.505000px;}
.y70{bottom:-217.845000px;}
.y6f{bottom:-184.185000px;}
.y80{bottom:-168.150000px;}
.y6e{bottom:-150.345000px;}
.y7f{bottom:-134.310000px;}
.y6d{bottom:-116.655000px;}
.y7e{bottom:-100.605000px;}
.y6c{bottom:-82.815000px;}
.y7d{bottom:-66.765000px;}
.y6b{bottom:-49.155000px;}
.y7c{bottom:-33.105000px;}
.y64{bottom:-28.650000px;}
.y3b{bottom:-27.180000px;}
.y82{bottom:-17.922750px;}
.y6a{bottom:-15.495000px;}
.y139{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:0.555000px;}
.y14e{bottom:0.720000px;}
.y145{bottom:1.290000px;}
.y216{bottom:1.837500px;}
.y159{bottom:2.190000px;}
.y69{bottom:2.685000px;}
.y19b{bottom:2.700000px;}
.y15d{bottom:2.865000px;}
.y19d{bottom:2.880000px;}
.y164{bottom:2.895000px;}
.y19e{bottom:3.060000px;}
.y61{bottom:3.420000px;}
.y1a5{bottom:3.600000px;}
.y1a6{bottom:3.780000px;}
.y2{bottom:3.960000px;}
.y1ac{bottom:4.500000px;}
.y1ad{bottom:4.680000px;}
.y13d{bottom:4.785000px;}
.y3a{bottom:5.040000px;}
.y1a3{bottom:5.220000px;}
.y63{bottom:5.580000px;}
.y135{bottom:5.865000px;}
.y1a9{bottom:5.940000px;}
.y1aa{bottom:6.120000px;}
.y18d{bottom:6.480000px;}
.y18a{bottom:6.645000px;}
.y18e{bottom:6.660000px;}
.y18b{bottom:6.825000px;}
.y131{bottom:8.250000px;}
.y190{bottom:9.900000px;}
.y191{bottom:10.080000px;}
.y188{bottom:10.980000px;}
.y58{bottom:12.255000px;}
.y7{bottom:12.420000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y147{bottom:14.385000px;}
.y142{bottom:14.475000px;}
.y68{bottom:15.645000px;}
.y14d{bottom:15.660000px;}
.y12f{bottom:15.825000px;}
.y60{bottom:15.840000px;}
.y155{bottom:17.805000px;}
.y149{bottom:17.820000px;}
.y138{bottom:18.180000px;}
.y144{bottom:19.290000px;}
.y15c{bottom:21.225000px;}
.y163{bottom:21.255000px;}
.y140{bottom:21.600000px;}
.y6{bottom:25.200000px;}
.y5f{bottom:27.900000px;}
.y57{bottom:27.915000px;}
.y67{bottom:28.605000px;}
.y14c{bottom:30.600000px;}
.y7a{bottom:31.695000px;}
.y137{bottom:32.040000px;}
.y157{bottom:32.070000px;}
.y15f{bottom:34.635000px;}
.y13b{bottom:34.665000px;}
.y15b{bottom:35.085000px;}
.y162{bottom:35.115000px;}
.y133{bottom:35.565000px;}
.y13f{bottom:35.820000px;}
.y153{bottom:37.470000px;}
.y5{bottom:38.160000px;}
.y5e{bottom:39.960000px;}
.y66{bottom:41.025000px;}
.y56{bottom:41.235000px;}
.y79{bottom:44.655000px;}
.y14b{bottom:45.360000px;}
.yc6{bottom:46.260000px;}
.y55{bottom:50.055000px;}
.y152{bottom:51.510000px;}
.y5d{bottom:52.020000px;}
.y78{bottom:57.615000px;}
.y85{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yc5{bottom:62.640000px;}
.y81{bottom:63.780000px;}
.y5c{bottom:64.080000px;}
.y151{bottom:65.370000px;}
.y54{bottom:68.055000px;}
.y77{bottom:70.755000px;}
.y5b{bottom:76.140000px;}
.y150{bottom:79.230000px;}
.yc4{bottom:80.460000px;}
.y53{bottom:81.375000px;}
.y76{bottom:83.715000px;}
.y52{bottom:90.195000px;}
.y5a{bottom:93.060000px;}
.y75{bottom:96.675000px;}
.y12d{bottom:97.200000px;}
.yc3{bottom:102.780000px;}
.y10f{bottom:103.680000px;}
.y215{bottom:104.580000px;}
.y1c2{bottom:106.020000px;}
.y1ec{bottom:107.280000px;}
.y51{bottom:108.015000px;}
.y1d1{bottom:108.180000px;}
.yf8{bottom:109.620000px;}
.y74{bottom:109.815000px;}
.y12c{bottom:110.340000px;}
.y38{bottom:117.360000px;}
.yb4{bottom:119.700000px;}
.y73{bottom:122.235000px;}
.yc2{bottom:122.760000px;}
.y10e{bottom:123.480000px;}
.y214{bottom:124.380000px;}
.y1c1{bottom:125.820000px;}
.y50{bottom:125.835000px;}
.y1eb{bottom:127.080000px;}
.y1d0{bottom:127.980000px;}
.y213{bottom:128.880000px;}
.yf7{bottom:129.420000px;}
.y12b{bottom:135.180000px;}
.y37{bottom:137.160000px;}
.yb3{bottom:139.500000px;}
.y185{bottom:142.560000px;}
.y10d{bottom:143.280000px;}
.yc1{bottom:143.460000px;}
.y4f{bottom:143.655000px;}
.y1c0{bottom:145.620000px;}
.y1ea{bottom:146.880000px;}
.y1cf{bottom:147.780000px;}
.y212{bottom:148.680000px;}
.yf6{bottom:149.220000px;}
.y12a{bottom:153.540000px;}
.y36{bottom:156.960000px;}
.yb2{bottom:159.480000px;}
.y4e{bottom:161.475000px;}
.y184{bottom:162.390000px;}
.yc0{bottom:163.110000px;}
.y146{bottom:163.125000px;}
.y1bf{bottom:165.630000px;}
.y1e9{bottom:166.710000px;}
.y1ce{bottom:167.610000px;}
.y211{bottom:168.690000px;}
.yf5{bottom:169.050000px;}
.y4d{bottom:174.795000px;}
.ybf{bottom:176.250000px;}
.y35{bottom:176.790000px;}
.yb1{bottom:179.310000px;}
.y129{bottom:181.650000px;}
.y183{bottom:182.190000px;}
.y10c{bottom:183.090000px;}
.y4c{bottom:183.795000px;}
.y1be{bottom:185.430000px;}
.y1e8{bottom:186.690000px;}
.y1cd{bottom:187.590000px;}
.y210{bottom:188.490000px;}
.yf4{bottom:189.030000px;}
.ybe{bottom:196.050000px;}
.y34{bottom:196.770000px;}
.y182{bottom:198.750000px;}
.yb0{bottom:199.110000px;}
.y4b{bottom:201.615000px;}
.y10b{bottom:202.890000px;}
.y1bd{bottom:205.230000px;}
.y1e7{bottom:206.490000px;}
.y1cc{bottom:207.390000px;}
.y20f{bottom:208.290000px;}
.yf3{bottom:208.830000px;}
.y154{bottom:210.825000px;}
.y12e{bottom:211.905000px;}
.y128{bottom:212.610000px;}
.y181{bottom:214.050000px;}
.ybd{bottom:216.030000px;}
.y33{bottom:216.570000px;}
.yaf{bottom:218.910000px;}
.y4a{bottom:219.435000px;}
.y10a{bottom:222.690000px;}
.y1bc{bottom:225.030000px;}
.y180{bottom:226.110000px;}
.y1e6{bottom:226.290000px;}
.y1cb{bottom:227.190000px;}
.y20e{bottom:228.090000px;}
.yf2{bottom:228.630000px;}
.ybc{bottom:235.830000px;}
.y32{bottom:236.370000px;}
.y49{bottom:237.285000px;}
.yae{bottom:238.710000px;}
.y17f{bottom:241.230000px;}
.y109{bottom:242.490000px;}
.y127{bottom:243.570000px;}
.y1bb{bottom:244.830000px;}
.y1ca{bottom:246.990000px;}
.y20d{bottom:247.890000px;}
.yf1{bottom:248.430000px;}
.y48{bottom:255.105000px;}
.ybb{bottom:255.630000px;}
.y17e{bottom:255.990000px;}
.y31{bottom:256.170000px;}
.yad{bottom:258.690000px;}
.y108{bottom:262.290000px;}
.y1ba{bottom:264.810000px;}
.y1c9{bottom:266.790000px;}
.y20c{bottom:267.870000px;}
.yf0{bottom:268.230000px;}
.y143{bottom:269.640000px;}
.y47{bottom:273.105000px;}
.y126{bottom:274.710000px;}
.yba{bottom:275.430000px;}
.y30{bottom:275.970000px;}
.yac{bottom:278.490000px;}
.y107{bottom:282.270000px;}
.y1b9{bottom:284.610000px;}
.y1c8{bottom:286.770000px;}
.y20b{bottom:287.670000px;}
.y1e5{bottom:287.850000px;}
.yef{bottom:288.210000px;}
.y46{bottom:290.925000px;}
.yb9{bottom:295.230000px;}
.y2f{bottom:295.950000px;}
.yab{bottom:298.290000px;}
.y106{bottom:302.070000px;}
.y1b8{bottom:304.410000px;}
.y125{bottom:305.670000px;}
.y1c7{bottom:306.570000px;}
.y20a{bottom:307.470000px;}
.y1e4{bottom:307.830000px;}
.yee{bottom:308.010000px;}
.y45{bottom:308.745000px;}
.yb8{bottom:315.210000px;}
.y2e{bottom:315.750000px;}
.yaa{bottom:318.090000px;}
.y105{bottom:321.870000px;}
.y1b7{bottom:324.210000px;}
.y1c6{bottom:326.370000px;}
.y44{bottom:326.565000px;}
.y209{bottom:327.270000px;}
.yed{bottom:327.810000px;}
.y1e3{bottom:328.530000px;}
.yb7{bottom:335.010000px;}
.y2d{bottom:335.550000px;}
.y124{bottom:336.810000px;}
.ya9{bottom:337.890000px;}
.y104{bottom:341.670000px;}
.y1b6{bottom:344.010000px;}
.y43{bottom:344.385000px;}
.y1c5{bottom:346.170000px;}
.y208{bottom:347.070000px;}
.yec{bottom:347.610000px;}
.y15a{bottom:350.325000px;}
.y1e2{bottom:352.290000px;}
.y156{bottom:353.520000px;}
.y2c{bottom:355.350000px;}
.yb6{bottom:355.710000px;}
.ya8{bottom:357.870000px;}
.y103{bottom:361.470000px;}
.y42{bottom:362.205000px;}
.y1b5{bottom:364.890000px;}
.y1c4{bottom:365.970000px;}
.y207{bottom:367.050000px;}
.yeb{bottom:367.410000px;}
.y123{bottom:367.770000px;}
.y158{bottom:370.650000px;}
.y14f{bottom:370.665000px;}
.y41{bottom:375.525000px;}
.y2b{bottom:376.050000px;}
.yb5{bottom:376.590000px;}
.ya7{bottom:377.670000px;}
.y102{bottom:381.450000px;}
.y40{bottom:384.525000px;}
.y1c3{bottom:385.950000px;}
.y206{bottom:386.850000px;}
.yea{bottom:387.390000px;}
.y1e1{bottom:393.195000px;}
.y2a{bottom:396.435000px;}
.y3c{bottom:396.960000px;}
.ya6{bottom:397.515000px;}
.y122{bottom:398.955000px;}
.y101{bottom:401.295000px;}
.y1b4{bottom:402.195000px;}
.y3f{bottom:402.345000px;}
.y29{bottom:406.515000px;}
.y205{bottom:406.695000px;}
.ye9{bottom:407.235000px;}
.y1e0{bottom:413.175000px;}
.y1b3{bottom:414.255000px;}
.ya5{bottom:417.315000px;}
.y28{bottom:417.855000px;}
.y3e{bottom:420.165000px;}
.y100{bottom:421.095000px;}
.y1b2{bottom:426.315000px;}
.y204{bottom:426.495000px;}
.ye8{bottom:427.035000px;}
.y121{bottom:429.915000px;}
.y1df{bottom:432.975000px;}
.ya4{bottom:437.115000px;}
.y3d{bottom:437.985000px;}
.y1b1{bottom:438.375000px;}
.y27{bottom:438.735000px;}
.yff{bottom:440.895000px;}
.y161{bottom:442.860000px;}
.y15e{bottom:443.160000px;}
.y203{bottom:446.295000px;}
.ye7{bottom:446.835000px;}
.y1b0{bottom:450.435000px;}
.y1de{bottom:452.775000px;}
.ya3{bottom:457.095000px;}
.y26{bottom:458.535000px;}
.yfe{bottom:460.695000px;}
.y120{bottom:461.055000px;}
.y1af{bottom:462.135000px;}
.y160{bottom:462.495000px;}
.y202{bottom:466.275000px;}
.ye6{bottom:466.635000px;}
.y25{bottom:472.215000px;}
.y1dd{bottom:472.575000px;}
.y1ae{bottom:476.715000px;}
.ya2{bottom:476.895000px;}
.yfd{bottom:480.675000px;}
.y24{bottom:481.035000px;}
.y201{bottom:486.075000px;}
.ye5{bottom:486.615000px;}
.y11f{bottom:492.015000px;}
.y1ab{bottom:492.375000px;}
.y1dc{bottom:493.275000px;}
.y72{bottom:495.420000px;}
.ya1{bottom:496.695000px;}
.yfc{bottom:500.475000px;}
.y23{bottom:504.255000px;}
.y200{bottom:505.875000px;}
.ye4{bottom:506.415000px;}
.y1a8{bottom:510.555000px;}
.y11e{bottom:511.635000px;}
.ya0{bottom:516.495000px;}
.yfb{bottom:520.275000px;}
.y1ff{bottom:525.675000px;}
.ye3{bottom:526.215000px;}
.y22{bottom:527.475000px;}
.y1a7{bottom:531.435000px;}
.y1db{bottom:534.315000px;}
.y9f{bottom:536.295000px;}
.y11d{bottom:537.375000px;}
.y17d{bottom:539.895000px;}
.yfa{bottom:540.075000px;}
.y1fe{bottom:545.475000px;}
.ye2{bottom:546.915000px;}
.y1a4{bottom:547.635000px;}
.y141{bottom:549.720000px;}
.y21{bottom:550.875000px;}
.y1da{bottom:554.115000px;}
.y9e{bottom:556.275000px;}
.yf9{bottom:559.875000px;}
.y1a2{bottom:563.835000px;}
.y1fd{bottom:566.355000px;}
.ye1{bottom:566.535000px;}
.y11c{bottom:567.975000px;}
.y1d9{bottom:573.915000px;}
.y20{bottom:574.095000px;}
.y9d{bottom:576.075000px;}
.y17c{bottom:579.675000px;}
.ye0{bottom:579.855000px;}
.y1a1{bottom:582.735000px;}
.y1d8{bottom:593.715000px;}
.y9c{bottom:595.875000px;}
.y1f{bottom:597.315000px;}
.y11b{bottom:598.935000px;}
.y17b{bottom:599.475000px;}
.ydf{bottom:599.655000px;}
.y1fc{bottom:607.215000px;}
.y1a0{bottom:611.895000px;}
.y1d7{bottom:613.515000px;}
.y9b{bottom:615.675000px;}
.yde{bottom:619.455000px;}
.y17a{bottom:620.175000px;}
.y1e{bottom:620.715000px;}
.y19f{bottom:626.505000px;}
.y1fb{bottom:627.045000px;}
.y136{bottom:627.945000px;}
.y132{bottom:628.740000px;}
.y11a{bottom:630.105000px;}
.y1d6{bottom:633.525000px;}
.y9a{bottom:635.505000px;}
.ydd{bottom:639.285000px;}
.y19c{bottom:640.905000px;}
.y59{bottom:643.425000px;}
.y1fa{bottom:646.845000px;}
.y134{bottom:649.545000px;}
.y1d5{bottom:653.325000px;}
.y99{bottom:655.485000px;}
.y19a{bottom:657.105000px;}
.ydc{bottom:659.085000px;}
.y119{bottom:661.065000px;}
.y1f9{bottom:666.645000px;}
.y14a{bottom:667.725000px;}
.y1d4{bottom:673.125000px;}
.y98{bottom:675.285000px;}
.y1d{bottom:675.465000px;}
.y199{bottom:678.705000px;}
.ydb{bottom:679.065000px;}
.y179{bottom:681.045000px;}
.y1f8{bottom:687.525000px;}
.y1c{bottom:691.125000px;}
.y118{bottom:692.205000px;}
.y1d3{bottom:692.925000px;}
.y97{bottom:695.085000px;}
.yda{bottom:698.865000px;}
.y178{bottom:700.845000px;}
.y1b{bottom:706.605000px;}
.y198{bottom:711.465000px;}
.y13e{bottom:713.085000px;}
.y1d2{bottom:713.625000px;}
.y96{bottom:714.885000px;}
.y13a{bottom:717.480000px;}
.yd9{bottom:718.665000px;}
.y177{bottom:720.645000px;}
.y1a{bottom:722.085000px;}
.y117{bottom:723.165000px;}
.y197{bottom:723.525000px;}
.y1f7{bottom:728.385000px;}
.y95{bottom:734.685000px;}
.y196{bottom:735.585000px;}
.y13c{bottom:737.205000px;}
.y19{bottom:737.565000px;}
.yd8{bottom:738.465000px;}
.y176{bottom:740.445000px;}
.y195{bottom:747.645000px;}
.y1f6{bottom:748.185000px;}
.y18{bottom:748.725000px;}
.y116{bottom:754.305000px;}
.y94{bottom:754.665000px;}
.yd7{bottom:758.265000px;}
.y194{bottom:759.705000px;}
.y175{bottom:760.245000px;}
.y65{bottom:760.620000px;}
.y17{bottom:762.405000px;}
.y1f5{bottom:768.885000px;}
.y193{bottom:771.765000px;}
.y93{bottom:774.465000px;}
.y16{bottom:775.005000px;}
.y115{bottom:775.725000px;}
.yd6{bottom:778.245000px;}
.y174{bottom:780.225000px;}
.y192{bottom:783.825000px;}
.y15{bottom:787.425000px;}
.y92{bottom:794.265000px;}
.y18f{bottom:795.705000px;}
.yd5{bottom:798.045000px;}
.y173{bottom:800.025000px;}
.y14{bottom:800.385000px;}
.y114{bottom:801.285000px;}
.y1f4{bottom:809.745000px;}
.y148{bottom:811.005000px;}
.y13{bottom:814.065000px;}
.yd4{bottom:817.845000px;}
.y172{bottom:819.825000px;}
.y18c{bottom:822.705000px;}
.y12{bottom:827.025000px;}
.y1f3{bottom:829.725000px;}
.y113{bottom:832.245000px;}
.y91{bottom:833.865000px;}
.yd3{bottom:837.645000px;}
.y171{bottom:839.625000px;}
.y189{bottom:842.880000px;}
.y1f2{bottom:850.425000px;}
.y112{bottom:853.710000px;}
.y11{bottom:853.890000px;}
.yd2{bottom:857.490000px;}
.y170{bottom:859.470000px;}
.y187{bottom:864.690000px;}
.y10{bottom:865.050000px;}
.y90{bottom:873.690000px;}
.yd1{bottom:877.470000px;}
.y111{bottom:879.270000px;}
.y16f{bottom:879.450000px;}
.yf{bottom:884.490000px;}
.y1f1{bottom:891.330000px;}
.y8f{bottom:893.490000px;}
.y130{bottom:896.940000px;}
.yd0{bottom:897.270000px;}
.y16e{bottom:899.250000px;}
.y110{bottom:910.230000px;}
.y1f0{bottom:911.130000px;}
.ye{bottom:912.210000px;}
.y8e{bottom:913.290000px;}
.ycf{bottom:917.070000px;}
.y186{bottom:917.430000px;}
.y16d{bottom:919.950000px;}
.yd{bottom:926.070000px;}
.y1ef{bottom:931.110000px;}
.y8d{bottom:933.090000px;}
.yce{bottom:936.870000px;}
.y16c{bottom:939.750000px;}
.yc{bottom:949.290000px;}
.y1ee{bottom:950.910000px;}
.y16b{bottom:952.710000px;}
.y8c{bottom:953.070000px;}
.ycd{bottom:956.670000px;}
.y1ed{bottom:971.610000px;}
.y16a{bottom:972.510000px;}
.yb{bottom:972.690000px;}
.y8b{bottom:972.870000px;}
.ycc{bottom:976.650000px;}
.y169{bottom:992.490000px;}
.y8a{bottom:992.670000px;}
.ycb{bottom:996.450000px;}
.ya{bottom:1004.550000px;}
.y168{bottom:1012.290000px;}
.y89{bottom:1012.470000px;}
.yca{bottom:1016.250000px;}
.y167{bottom:1032.090000px;}
.y88{bottom:1032.270000px;}
.yc9{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y166{bottom:1051.890000px;}
.y87{bottom:1052.250000px;}
.yc8{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.y86{bottom:1072.050000px;}
.y165{bottom:1072.590000px;}
.yc7{bottom:1075.650000px;}
.y62{bottom:1096.200000px;}
.y84{bottom:1103.940000px;}
.y83{bottom:1123.200000px;}
.y39{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h4b{height:6.257812px;}
.h2{height:13.500000px;}
.h40{height:13.680000px;}
.h42{height:13.710000px;}
.h43{height:13.845000px;}
.h41{height:13.860000px;}
.h48{height:14.745000px;}
.h45{height:15.465000px;}
.h17{height:16.920000px;}
.h47{height:17.445000px;}
.h15{height:18.140625px;}
.h44{height:18.165000px;}
.h28{height:19.080000px;}
.h3c{height:19.440000px;}
.h3a{height:19.641000px;}
.h46{height:20.145000px;}
.h1d{height:22.140000px;}
.h14{height:23.319141px;}
.h31{height:25.380000px;}
.h2e{height:25.920000px;}
.h3d{height:26.280000px;}
.h27{height:26.820000px;}
.h39{height:28.245000px;}
.h35{height:28.980000px;}
.h32{height:29.160000px;}
.h24{height:29.664141px;}
.hb{height:29.678906px;}
.h30{height:30.240000px;}
.he{height:30.963516px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h5{height:40.985156px;}
.h25{height:41.535703px;}
.h1c{height:42.086250px;}
.h2b{height:42.840000px;}
.h49{height:42.894141px;}
.h3f{height:42.922699px;}
.h36{height:43.020000px;}
.h10{height:44.518359px;}
.h2c{height:45.540000px;}
.h38{height:45.900000px;}
.h37{height:45.922500px;}
.h29{height:46.440000px;}
.h2d{height:46.620000px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h2a{height:47.486250px;}
.h3e{height:47.678906px;}
.h4{height:47.699850px;}
.h3b{height:47.858906px;}
.h2f{height:47.980898px;}
.h18{height:48.616875px;}
.h1f{height:52.020000px;}
.h13{height:52.998047px;}
.h19{height:54.421875px;}
.hf{height:55.291992px;}
.h4a{height:55.824609px;}
.h33{height:56.160000px;}
.h3{height:58.651172px;}
.h9{height:60.226875px;}
.ha{height:65.010937px;}
.h20{height:65.884219px;}
.h23{height:70.628906px;}
.h26{height:70.664062px;}
.hd{height:72.562500px;}
.h1e{height:74.953125px;}
.h22{height:75.093750px;}
.h7{height:86.585445px;}
.h34{height:90.022500px;}
.h8{height:96.508125px;}
.h1b{height:101.160000px;}
.h21{height:133.245000px;}
.h1a{height:450.225000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.wf{width:102.420000px;}
.wd{width:107.100000px;}
.w1a{width:108.720000px;}
.w18{width:112.140000px;}
.w1e{width:128.181000px;}
.w15{width:139.185000px;}
.w16{width:140.985000px;}
.w9{width:154.470000px;}
.w1f{width:157.710000px;}
.w21{width:158.430000px;}
.w13{width:165.465000px;}
.w20{width:169.935000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w1d{width:195.690000px;}
.w1c{width:195.915000px;}
.w1b{width:216.375000px;}
.w17{width:249.195000px;}
.wb{width:256.530000px;}
.w10{width:283.755000px;}
.we{width:285.375000px;}
.w19{width:287.175000px;}
.w6{width:532.920000px;}
.wc{width:622.980000px;}
.w14{width:627.975000px;}
.w11{width:631.980000px;}
.w4{width:639.855000px;}
.w12{width:640.800000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:4.252500px;}
.x3c{left:6.645000px;}
.x2{left:8.091000px;}
.xd{left:10.791000px;}
.x2e{left:13.515000px;}
.x41{left:17.280000px;}
.x22{left:19.110000px;}
.x13{left:21.255000px;}
.x32{left:25.035000px;}
.x42{left:26.820000px;}
.x43{left:28.080000px;}
.x2f{left:30.435000px;}
.x33{left:36.375000px;}
.x29{left:37.830000px;}
.x24{left:40.170000px;}
.x36{left:42.690000px;}
.x30{left:43.935000px;}
.x4a{left:48.240000px;}
.x40{left:49.320000px;}
.x48{left:50.745000px;}
.x3e{left:53.670000px;}
.x26{left:55.440000px;}
.x46{left:59.760000px;}
.x4c{left:63.165000px;}
.x4b{left:65.340000px;}
.x3{left:73.965000px;}
.x27{left:76.680000px;}
.xc{left:81.765000px;}
.x12{left:93.105000px;}
.xf{left:94.725000px;}
.x2c{left:97.185000px;}
.x1{left:108.045000px;}
.x6{left:111.276000px;}
.x18{left:121.536000px;}
.x1d{left:128.376000px;}
.xa{left:132.696000px;}
.x16{left:135.036000px;}
.x21{left:138.420000px;}
.x1f{left:139.680000px;}
.x1e{left:142.065000px;}
.x38{left:143.490000px;}
.x28{left:151.590000px;}
.x23{left:152.670000px;}
.x35{left:155.730000px;}
.x2a{left:159.375000px;}
.x44{left:161.685000px;}
.x20{left:162.795000px;}
.x3b{left:164.745000px;}
.x4{left:190.125000px;}
.x7{left:264.315000px;}
.x15{left:267.555000px;}
.x4e{left:271.335000px;}
.x45{left:289.875000px;}
.xe{left:302.835000px;}
.x1b{left:303.915000px;}
.x10{left:310.350000px;}
.x25{left:320.115000px;}
.x39{left:322.995000px;}
.x37{left:324.975000px;}
.x2b{left:332.355000px;}
.x9{left:366.375000px;}
.x11{left:371.580000px;}
.x3d{left:381.135000px;}
.x1c{left:413.745000px;}
.x1a{left:425.265000px;}
.x5{left:446.505000px;}
.x47{left:447.600000px;}
.x8{left:452.265000px;}
.xb{left:490.785000px;}
.x4d{left:494.565000px;}
.x34{left:518.340000px;}
.x3f{left:577.050000px;}
.x49{left:617.550000px;}
.x14{left:620.253000px;}
.x2d{left:629.595000px;}
.x31{left:631.395000px;}
.x19{left:651.570000px;}
.x50{left:659.310000px;}
.x3a{left:778.500000px;}
.x17{left:799.200000px;}
.x4f{left:806.940000px;}
@media print{
.v5{vertical-align:-58.880000pt;}
.v3{vertical-align:-33.280000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.160000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.133867pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.198933pt;}
.lse{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.549120pt;}
.ls12{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls10{letter-spacing:4.640000pt;}
.ls11{letter-spacing:7.200000pt;}
.ls1{letter-spacing:42.400000pt;}
.ls1a{letter-spacing:182.698667pt;}
.ls0{letter-spacing:383.018667pt;}
.ws10{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws14{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.918933pt;}
.ws5{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.480533pt;}
.ws6{word-spacing:-9.733760pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws12{word-spacing:-7.040000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:53.440000pt;}
._5{margin-left:-52.960000pt;}
._13{margin-left:-3.216000pt;}
._b{margin-left:-2.277760pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._e{width:3.089707pt;}
._1a{width:4.063360pt;}
._10{width:5.099520pt;}
._19{width:6.081280pt;}
._18{width:7.166720pt;}
._1b{width:8.825387pt;}
._15{width:9.792000pt;}
._14{width:10.800000pt;}
._f{width:12.323840pt;}
._9{width:14.926720pt;}
._20{width:15.911040pt;}
._21{width:17.513387pt;}
._29{width:18.472960pt;}
._7{width:19.441920pt;}
._1d{width:20.375680pt;}
._16{width:21.408000pt;}
._17{width:22.304000pt;}
._8{width:23.904000pt;}
._11{width:25.125760pt;}
._30{width:26.028800pt;}
._12{width:26.931840pt;}
._c{width:28.312960pt;}
._d{width:29.428480pt;}
._25{width:30.469120pt;}
._28{width:31.360427pt;}
._23{width:32.355200pt;}
._27{width:33.465600pt;}
._a{width:35.007147pt;}
._1e{width:37.130880pt;}
._1f{width:38.087040pt;}
._33{width:39.202560pt;}
._22{width:41.114880pt;}
._2b{width:42.602240pt;}
._34{width:44.648960pt;}
._2a{width:45.789440pt;}
._2f{width:48.686080pt;}
._2c{width:50.835840pt;}
._24{width:53.226240pt;}
._26{width:54.355200pt;}
._2e{width:55.722880pt;}
._3{width:58.218667pt;}
._2d{width:61.088000pt;}
._36{width:67.940480pt;}
._37{width:71.021440pt;}
._38{width:76.492800pt;}
._35{width:99.865600pt;}
._32{width:147.354880pt;}
._4{width:177.440000pt;}
._31{width:192.135040pt;}
._1c{width:254.106667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fsf{font-size:43.008000pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y71{bottom:-223.560000pt;}
.y70{bottom:-193.640000pt;}
.y6f{bottom:-163.720000pt;}
.y80{bottom:-149.466667pt;}
.y6e{bottom:-133.640000pt;}
.y7f{bottom:-119.386667pt;}
.y6d{bottom:-103.693333pt;}
.y7e{bottom:-89.426667pt;}
.y6c{bottom:-73.613333pt;}
.y7d{bottom:-59.346667pt;}
.y6b{bottom:-43.693333pt;}
.y7c{bottom:-29.426667pt;}
.y64{bottom:-25.466667pt;}
.y3b{bottom:-24.160000pt;}
.y82{bottom:-15.931333pt;}
.y6a{bottom:-13.773333pt;}
.y139{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:0.493333pt;}
.y14e{bottom:0.640000pt;}
.y145{bottom:1.146667pt;}
.y216{bottom:1.633333pt;}
.y159{bottom:1.946667pt;}
.y69{bottom:2.386667pt;}
.y19b{bottom:2.400000pt;}
.y15d{bottom:2.546667pt;}
.y19d{bottom:2.560000pt;}
.y164{bottom:2.573333pt;}
.y19e{bottom:2.720000pt;}
.y61{bottom:3.040000pt;}
.y1a5{bottom:3.200000pt;}
.y1a6{bottom:3.360000pt;}
.y2{bottom:3.520000pt;}
.y1ac{bottom:4.000000pt;}
.y1ad{bottom:4.160000pt;}
.y13d{bottom:4.253333pt;}
.y3a{bottom:4.480000pt;}
.y1a3{bottom:4.640000pt;}
.y63{bottom:4.960000pt;}
.y135{bottom:5.213333pt;}
.y1a9{bottom:5.280000pt;}
.y1aa{bottom:5.440000pt;}
.y18d{bottom:5.760000pt;}
.y18a{bottom:5.906667pt;}
.y18e{bottom:5.920000pt;}
.y18b{bottom:6.066667pt;}
.y131{bottom:7.333333pt;}
.y190{bottom:8.800000pt;}
.y191{bottom:8.960000pt;}
.y188{bottom:9.760000pt;}
.y58{bottom:10.893333pt;}
.y7{bottom:11.040000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y147{bottom:12.786667pt;}
.y142{bottom:12.866667pt;}
.y68{bottom:13.906667pt;}
.y14d{bottom:13.920000pt;}
.y12f{bottom:14.066667pt;}
.y60{bottom:14.080000pt;}
.y155{bottom:15.826667pt;}
.y149{bottom:15.840000pt;}
.y138{bottom:16.160000pt;}
.y144{bottom:17.146667pt;}
.y15c{bottom:18.866667pt;}
.y163{bottom:18.893333pt;}
.y140{bottom:19.200000pt;}
.y6{bottom:22.400000pt;}
.y5f{bottom:24.800000pt;}
.y57{bottom:24.813333pt;}
.y67{bottom:25.426667pt;}
.y14c{bottom:27.200000pt;}
.y7a{bottom:28.173333pt;}
.y137{bottom:28.480000pt;}
.y157{bottom:28.506667pt;}
.y15f{bottom:30.786667pt;}
.y13b{bottom:30.813333pt;}
.y15b{bottom:31.186667pt;}
.y162{bottom:31.213333pt;}
.y133{bottom:31.613333pt;}
.y13f{bottom:31.840000pt;}
.y153{bottom:33.306667pt;}
.y5{bottom:33.920000pt;}
.y5e{bottom:35.520000pt;}
.y66{bottom:36.466667pt;}
.y56{bottom:36.653333pt;}
.y79{bottom:39.693333pt;}
.y14b{bottom:40.320000pt;}
.yc6{bottom:41.120000pt;}
.y55{bottom:44.493333pt;}
.y152{bottom:45.786667pt;}
.y5d{bottom:46.240000pt;}
.y78{bottom:51.213333pt;}
.y85{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yc5{bottom:55.680000pt;}
.y81{bottom:56.693333pt;}
.y5c{bottom:56.960000pt;}
.y151{bottom:58.106667pt;}
.y54{bottom:60.493333pt;}
.y77{bottom:62.893333pt;}
.y5b{bottom:67.680000pt;}
.y150{bottom:70.426667pt;}
.yc4{bottom:71.520000pt;}
.y53{bottom:72.333333pt;}
.y76{bottom:74.413333pt;}
.y52{bottom:80.173333pt;}
.y5a{bottom:82.720000pt;}
.y75{bottom:85.933333pt;}
.y12d{bottom:86.400000pt;}
.yc3{bottom:91.360000pt;}
.y10f{bottom:92.160000pt;}
.y215{bottom:92.960000pt;}
.y1c2{bottom:94.240000pt;}
.y1ec{bottom:95.360000pt;}
.y51{bottom:96.013333pt;}
.y1d1{bottom:96.160000pt;}
.yf8{bottom:97.440000pt;}
.y74{bottom:97.613333pt;}
.y12c{bottom:98.080000pt;}
.y38{bottom:104.320000pt;}
.yb4{bottom:106.400000pt;}
.y73{bottom:108.653333pt;}
.yc2{bottom:109.120000pt;}
.y10e{bottom:109.760000pt;}
.y214{bottom:110.560000pt;}
.y1c1{bottom:111.840000pt;}
.y50{bottom:111.853333pt;}
.y1eb{bottom:112.960000pt;}
.y1d0{bottom:113.760000pt;}
.y213{bottom:114.560000pt;}
.yf7{bottom:115.040000pt;}
.y12b{bottom:120.160000pt;}
.y37{bottom:121.920000pt;}
.yb3{bottom:124.000000pt;}
.y185{bottom:126.720000pt;}
.y10d{bottom:127.360000pt;}
.yc1{bottom:127.520000pt;}
.y4f{bottom:127.693333pt;}
.y1c0{bottom:129.440000pt;}
.y1ea{bottom:130.560000pt;}
.y1cf{bottom:131.360000pt;}
.y212{bottom:132.160000pt;}
.yf6{bottom:132.640000pt;}
.y12a{bottom:136.480000pt;}
.y36{bottom:139.520000pt;}
.yb2{bottom:141.760000pt;}
.y4e{bottom:143.533333pt;}
.y184{bottom:144.346667pt;}
.yc0{bottom:144.986667pt;}
.y146{bottom:145.000000pt;}
.y1bf{bottom:147.226667pt;}
.y1e9{bottom:148.186667pt;}
.y1ce{bottom:148.986667pt;}
.y211{bottom:149.946667pt;}
.yf5{bottom:150.266667pt;}
.y4d{bottom:155.373333pt;}
.ybf{bottom:156.666667pt;}
.y35{bottom:157.146667pt;}
.yb1{bottom:159.386667pt;}
.y129{bottom:161.466667pt;}
.y183{bottom:161.946667pt;}
.y10c{bottom:162.746667pt;}
.y4c{bottom:163.373333pt;}
.y1be{bottom:164.826667pt;}
.y1e8{bottom:165.946667pt;}
.y1cd{bottom:166.746667pt;}
.y210{bottom:167.546667pt;}
.yf4{bottom:168.026667pt;}
.ybe{bottom:174.266667pt;}
.y34{bottom:174.906667pt;}
.y182{bottom:176.666667pt;}
.yb0{bottom:176.986667pt;}
.y4b{bottom:179.213333pt;}
.y10b{bottom:180.346667pt;}
.y1bd{bottom:182.426667pt;}
.y1e7{bottom:183.546667pt;}
.y1cc{bottom:184.346667pt;}
.y20f{bottom:185.146667pt;}
.yf3{bottom:185.626667pt;}
.y154{bottom:187.400000pt;}
.y12e{bottom:188.360000pt;}
.y128{bottom:188.986667pt;}
.y181{bottom:190.266667pt;}
.ybd{bottom:192.026667pt;}
.y33{bottom:192.506667pt;}
.yaf{bottom:194.586667pt;}
.y4a{bottom:195.053333pt;}
.y10a{bottom:197.946667pt;}
.y1bc{bottom:200.026667pt;}
.y180{bottom:200.986667pt;}
.y1e6{bottom:201.146667pt;}
.y1cb{bottom:201.946667pt;}
.y20e{bottom:202.746667pt;}
.yf2{bottom:203.226667pt;}
.ybc{bottom:209.626667pt;}
.y32{bottom:210.106667pt;}
.y49{bottom:210.920000pt;}
.yae{bottom:212.186667pt;}
.y17f{bottom:214.426667pt;}
.y109{bottom:215.546667pt;}
.y127{bottom:216.506667pt;}
.y1bb{bottom:217.626667pt;}
.y1ca{bottom:219.546667pt;}
.y20d{bottom:220.346667pt;}
.yf1{bottom:220.826667pt;}
.y48{bottom:226.760000pt;}
.ybb{bottom:227.226667pt;}
.y17e{bottom:227.546667pt;}
.y31{bottom:227.706667pt;}
.yad{bottom:229.946667pt;}
.y108{bottom:233.146667pt;}
.y1ba{bottom:235.386667pt;}
.y1c9{bottom:237.146667pt;}
.y20c{bottom:238.106667pt;}
.yf0{bottom:238.426667pt;}
.y143{bottom:239.680000pt;}
.y47{bottom:242.760000pt;}
.y126{bottom:244.186667pt;}
.yba{bottom:244.826667pt;}
.y30{bottom:245.306667pt;}
.yac{bottom:247.546667pt;}
.y107{bottom:250.906667pt;}
.y1b9{bottom:252.986667pt;}
.y1c8{bottom:254.906667pt;}
.y20b{bottom:255.706667pt;}
.y1e5{bottom:255.866667pt;}
.yef{bottom:256.186667pt;}
.y46{bottom:258.600000pt;}
.yb9{bottom:262.426667pt;}
.y2f{bottom:263.066667pt;}
.yab{bottom:265.146667pt;}
.y106{bottom:268.506667pt;}
.y1b8{bottom:270.586667pt;}
.y125{bottom:271.706667pt;}
.y1c7{bottom:272.506667pt;}
.y20a{bottom:273.306667pt;}
.y1e4{bottom:273.626667pt;}
.yee{bottom:273.786667pt;}
.y45{bottom:274.440000pt;}
.yb8{bottom:280.186667pt;}
.y2e{bottom:280.666667pt;}
.yaa{bottom:282.746667pt;}
.y105{bottom:286.106667pt;}
.y1b7{bottom:288.186667pt;}
.y1c6{bottom:290.106667pt;}
.y44{bottom:290.280000pt;}
.y209{bottom:290.906667pt;}
.yed{bottom:291.386667pt;}
.y1e3{bottom:292.026667pt;}
.yb7{bottom:297.786667pt;}
.y2d{bottom:298.266667pt;}
.y124{bottom:299.386667pt;}
.ya9{bottom:300.346667pt;}
.y104{bottom:303.706667pt;}
.y1b6{bottom:305.786667pt;}
.y43{bottom:306.120000pt;}
.y1c5{bottom:307.706667pt;}
.y208{bottom:308.506667pt;}
.yec{bottom:308.986667pt;}
.y15a{bottom:311.400000pt;}
.y1e2{bottom:313.146667pt;}
.y156{bottom:314.240000pt;}
.y2c{bottom:315.866667pt;}
.yb6{bottom:316.186667pt;}
.ya8{bottom:318.106667pt;}
.y103{bottom:321.306667pt;}
.y42{bottom:321.960000pt;}
.y1b5{bottom:324.346667pt;}
.y1c4{bottom:325.306667pt;}
.y207{bottom:326.266667pt;}
.yeb{bottom:326.586667pt;}
.y123{bottom:326.906667pt;}
.y158{bottom:329.466667pt;}
.y14f{bottom:329.480000pt;}
.y41{bottom:333.800000pt;}
.y2b{bottom:334.266667pt;}
.yb5{bottom:334.746667pt;}
.ya7{bottom:335.706667pt;}
.y102{bottom:339.066667pt;}
.y40{bottom:341.800000pt;}
.y1c3{bottom:343.066667pt;}
.y206{bottom:343.866667pt;}
.yea{bottom:344.346667pt;}
.y1e1{bottom:349.506667pt;}
.y2a{bottom:352.386667pt;}
.y3c{bottom:352.853333pt;}
.ya6{bottom:353.346667pt;}
.y122{bottom:354.626667pt;}
.y101{bottom:356.706667pt;}
.y1b4{bottom:357.506667pt;}
.y3f{bottom:357.640000pt;}
.y29{bottom:361.346667pt;}
.y205{bottom:361.506667pt;}
.ye9{bottom:361.986667pt;}
.y1e0{bottom:367.266667pt;}
.y1b3{bottom:368.226667pt;}
.ya5{bottom:370.946667pt;}
.y28{bottom:371.426667pt;}
.y3e{bottom:373.480000pt;}
.y100{bottom:374.306667pt;}
.y1b2{bottom:378.946667pt;}
.y204{bottom:379.106667pt;}
.ye8{bottom:379.586667pt;}
.y121{bottom:382.146667pt;}
.y1df{bottom:384.866667pt;}
.ya4{bottom:388.546667pt;}
.y3d{bottom:389.320000pt;}
.y1b1{bottom:389.666667pt;}
.y27{bottom:389.986667pt;}
.yff{bottom:391.906667pt;}
.y161{bottom:393.653333pt;}
.y15e{bottom:393.920000pt;}
.y203{bottom:396.706667pt;}
.ye7{bottom:397.186667pt;}
.y1b0{bottom:400.386667pt;}
.y1de{bottom:402.466667pt;}
.ya3{bottom:406.306667pt;}
.y26{bottom:407.586667pt;}
.yfe{bottom:409.506667pt;}
.y120{bottom:409.826667pt;}
.y1af{bottom:410.786667pt;}
.y160{bottom:411.106667pt;}
.y202{bottom:414.466667pt;}
.ye6{bottom:414.786667pt;}
.y25{bottom:419.746667pt;}
.y1dd{bottom:420.066667pt;}
.y1ae{bottom:423.746667pt;}
.ya2{bottom:423.906667pt;}
.yfd{bottom:427.266667pt;}
.y24{bottom:427.586667pt;}
.y201{bottom:432.066667pt;}
.ye5{bottom:432.546667pt;}
.y11f{bottom:437.346667pt;}
.y1ab{bottom:437.666667pt;}
.y1dc{bottom:438.466667pt;}
.y72{bottom:440.373333pt;}
.ya1{bottom:441.506667pt;}
.yfc{bottom:444.866667pt;}
.y23{bottom:448.226667pt;}
.y200{bottom:449.666667pt;}
.ye4{bottom:450.146667pt;}
.y1a8{bottom:453.826667pt;}
.y11e{bottom:454.786667pt;}
.ya0{bottom:459.106667pt;}
.yfb{bottom:462.466667pt;}
.y1ff{bottom:467.266667pt;}
.ye3{bottom:467.746667pt;}
.y22{bottom:468.866667pt;}
.y1a7{bottom:472.386667pt;}
.y1db{bottom:474.946667pt;}
.y9f{bottom:476.706667pt;}
.y11d{bottom:477.666667pt;}
.y17d{bottom:479.906667pt;}
.yfa{bottom:480.066667pt;}
.y1fe{bottom:484.866667pt;}
.ye2{bottom:486.146667pt;}
.y1a4{bottom:486.786667pt;}
.y141{bottom:488.640000pt;}
.y21{bottom:489.666667pt;}
.y1da{bottom:492.546667pt;}
.y9e{bottom:494.466667pt;}
.yf9{bottom:497.666667pt;}
.y1a2{bottom:501.186667pt;}
.y1fd{bottom:503.426667pt;}
.ye1{bottom:503.586667pt;}
.y11c{bottom:504.866667pt;}
.y1d9{bottom:510.146667pt;}
.y20{bottom:510.306667pt;}
.y9d{bottom:512.066667pt;}
.y17c{bottom:515.266667pt;}
.ye0{bottom:515.426667pt;}
.y1a1{bottom:517.986667pt;}
.y1d8{bottom:527.746667pt;}
.y9c{bottom:529.666667pt;}
.y1f{bottom:530.946667pt;}
.y11b{bottom:532.386667pt;}
.y17b{bottom:532.866667pt;}
.ydf{bottom:533.026667pt;}
.y1fc{bottom:539.746667pt;}
.y1a0{bottom:543.906667pt;}
.y1d7{bottom:545.346667pt;}
.y9b{bottom:547.266667pt;}
.yde{bottom:550.626667pt;}
.y17a{bottom:551.266667pt;}
.y1e{bottom:551.746667pt;}
.y19f{bottom:556.893333pt;}
.y1fb{bottom:557.373333pt;}
.y136{bottom:558.173333pt;}
.y132{bottom:558.880000pt;}
.y11a{bottom:560.093333pt;}
.y1d6{bottom:563.133333pt;}
.y9a{bottom:564.893333pt;}
.ydd{bottom:568.253333pt;}
.y19c{bottom:569.693333pt;}
.y59{bottom:571.933333pt;}
.y1fa{bottom:574.973333pt;}
.y134{bottom:577.373333pt;}
.y1d5{bottom:580.733333pt;}
.y99{bottom:582.653333pt;}
.y19a{bottom:584.093333pt;}
.ydc{bottom:585.853333pt;}
.y119{bottom:587.613333pt;}
.y1f9{bottom:592.573333pt;}
.y14a{bottom:593.533333pt;}
.y1d4{bottom:598.333333pt;}
.y98{bottom:600.253333pt;}
.y1d{bottom:600.413333pt;}
.y199{bottom:603.293333pt;}
.ydb{bottom:603.613333pt;}
.y179{bottom:605.373333pt;}
.y1f8{bottom:611.133333pt;}
.y1c{bottom:614.333333pt;}
.y118{bottom:615.293333pt;}
.y1d3{bottom:615.933333pt;}
.y97{bottom:617.853333pt;}
.yda{bottom:621.213333pt;}
.y178{bottom:622.973333pt;}
.y1b{bottom:628.093333pt;}
.y198{bottom:632.413333pt;}
.y13e{bottom:633.853333pt;}
.y1d2{bottom:634.333333pt;}
.y96{bottom:635.453333pt;}
.y13a{bottom:637.760000pt;}
.yd9{bottom:638.813333pt;}
.y177{bottom:640.573333pt;}
.y1a{bottom:641.853333pt;}
.y117{bottom:642.813333pt;}
.y197{bottom:643.133333pt;}
.y1f7{bottom:647.453333pt;}
.y95{bottom:653.053333pt;}
.y196{bottom:653.853333pt;}
.y13c{bottom:655.293333pt;}
.y19{bottom:655.613333pt;}
.yd8{bottom:656.413333pt;}
.y176{bottom:658.173333pt;}
.y195{bottom:664.573333pt;}
.y1f6{bottom:665.053333pt;}
.y18{bottom:665.533333pt;}
.y116{bottom:670.493333pt;}
.y94{bottom:670.813333pt;}
.yd7{bottom:674.013333pt;}
.y194{bottom:675.293333pt;}
.y175{bottom:675.773333pt;}
.y65{bottom:676.106667pt;}
.y17{bottom:677.693333pt;}
.y1f5{bottom:683.453333pt;}
.y193{bottom:686.013333pt;}
.y93{bottom:688.413333pt;}
.y16{bottom:688.893333pt;}
.y115{bottom:689.533333pt;}
.yd6{bottom:691.773333pt;}
.y174{bottom:693.533333pt;}
.y192{bottom:696.733333pt;}
.y15{bottom:699.933333pt;}
.y92{bottom:706.013333pt;}
.y18f{bottom:707.293333pt;}
.yd5{bottom:709.373333pt;}
.y173{bottom:711.133333pt;}
.y14{bottom:711.453333pt;}
.y114{bottom:712.253333pt;}
.y1f4{bottom:719.773333pt;}
.y148{bottom:720.893333pt;}
.y13{bottom:723.613333pt;}
.yd4{bottom:726.973333pt;}
.y172{bottom:728.733333pt;}
.y18c{bottom:731.293333pt;}
.y12{bottom:735.133333pt;}
.y1f3{bottom:737.533333pt;}
.y113{bottom:739.773333pt;}
.y91{bottom:741.213333pt;}
.yd3{bottom:744.573333pt;}
.y171{bottom:746.333333pt;}
.y189{bottom:749.226667pt;}
.y1f2{bottom:755.933333pt;}
.y112{bottom:758.853333pt;}
.y11{bottom:759.013333pt;}
.yd2{bottom:762.213333pt;}
.y170{bottom:763.973333pt;}
.y187{bottom:768.613333pt;}
.y10{bottom:768.933333pt;}
.y90{bottom:776.613333pt;}
.yd1{bottom:779.973333pt;}
.y111{bottom:781.573333pt;}
.y16f{bottom:781.733333pt;}
.yf{bottom:786.213333pt;}
.y1f1{bottom:792.293333pt;}
.y8f{bottom:794.213333pt;}
.y130{bottom:797.280000pt;}
.yd0{bottom:797.573333pt;}
.y16e{bottom:799.333333pt;}
.y110{bottom:809.093333pt;}
.y1f0{bottom:809.893333pt;}
.ye{bottom:810.853333pt;}
.y8e{bottom:811.813333pt;}
.ycf{bottom:815.173333pt;}
.y186{bottom:815.493333pt;}
.y16d{bottom:817.733333pt;}
.yd{bottom:823.173333pt;}
.y1ef{bottom:827.653333pt;}
.y8d{bottom:829.413333pt;}
.yce{bottom:832.773333pt;}
.y16c{bottom:835.333333pt;}
.yc{bottom:843.813333pt;}
.y1ee{bottom:845.253333pt;}
.y16b{bottom:846.853333pt;}
.y8c{bottom:847.173333pt;}
.ycd{bottom:850.373333pt;}
.y1ed{bottom:863.653333pt;}
.y16a{bottom:864.453333pt;}
.yb{bottom:864.613333pt;}
.y8b{bottom:864.773333pt;}
.ycc{bottom:868.133333pt;}
.y169{bottom:882.213333pt;}
.y8a{bottom:882.373333pt;}
.ycb{bottom:885.733333pt;}
.ya{bottom:892.933333pt;}
.y168{bottom:899.813333pt;}
.y89{bottom:899.973333pt;}
.yca{bottom:903.333333pt;}
.y167{bottom:917.413333pt;}
.y88{bottom:917.573333pt;}
.yc9{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y166{bottom:935.013333pt;}
.y87{bottom:935.333333pt;}
.yc8{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.y86{bottom:952.933333pt;}
.y165{bottom:953.413333pt;}
.yc7{bottom:956.133333pt;}
.y62{bottom:974.400000pt;}
.y84{bottom:981.280000pt;}
.y83{bottom:998.400000pt;}
.y39{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h4b{height:5.562500pt;}
.h2{height:12.000000pt;}
.h40{height:12.160000pt;}
.h42{height:12.186667pt;}
.h43{height:12.306667pt;}
.h41{height:12.320000pt;}
.h48{height:13.106667pt;}
.h45{height:13.746667pt;}
.h17{height:15.040000pt;}
.h47{height:15.506667pt;}
.h15{height:16.125000pt;}
.h44{height:16.146667pt;}
.h28{height:16.960000pt;}
.h3c{height:17.280000pt;}
.h3a{height:17.458667pt;}
.h46{height:17.906667pt;}
.h1d{height:19.680000pt;}
.h14{height:20.728125pt;}
.h31{height:22.560000pt;}
.h2e{height:23.040000pt;}
.h3d{height:23.360000pt;}
.h27{height:23.840000pt;}
.h39{height:25.106667pt;}
.h35{height:25.760000pt;}
.h32{height:25.920000pt;}
.h24{height:26.368125pt;}
.hb{height:26.381250pt;}
.h30{height:26.880000pt;}
.he{height:27.523125pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h5{height:36.431250pt;}
.h25{height:36.920625pt;}
.h1c{height:37.410000pt;}
.h2b{height:38.080000pt;}
.h49{height:38.128125pt;}
.h3f{height:38.153511pt;}
.h36{height:38.240000pt;}
.h10{height:39.571875pt;}
.h2c{height:40.480000pt;}
.h38{height:40.800000pt;}
.h37{height:40.820000pt;}
.h29{height:41.280000pt;}
.h2d{height:41.440000pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h2a{height:42.210000pt;}
.h3e{height:42.381250pt;}
.h4{height:42.399867pt;}
.h3b{height:42.541250pt;}
.h2f{height:42.649687pt;}
.h18{height:43.215000pt;}
.h1f{height:46.240000pt;}
.h13{height:47.109375pt;}
.h19{height:48.375000pt;}
.hf{height:49.148438pt;}
.h4a{height:49.621875pt;}
.h33{height:49.920000pt;}
.h3{height:52.134375pt;}
.h9{height:53.535000pt;}
.ha{height:57.787500pt;}
.h20{height:58.563750pt;}
.h23{height:62.781250pt;}
.h26{height:62.812500pt;}
.hd{height:64.500000pt;}
.h1e{height:66.625000pt;}
.h22{height:66.750000pt;}
.h7{height:76.964840pt;}
.h34{height:80.020000pt;}
.h8{height:85.785000pt;}
.h1b{height:89.920000pt;}
.h21{height:118.440000pt;}
.h1a{height:400.200000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.wf{width:91.040000pt;}
.wd{width:95.200000pt;}
.w1a{width:96.640000pt;}
.w18{width:99.680000pt;}
.w1e{width:113.938667pt;}
.w15{width:123.720000pt;}
.w16{width:125.320000pt;}
.w9{width:137.306667pt;}
.w1f{width:140.186667pt;}
.w21{width:140.826667pt;}
.w13{width:147.080000pt;}
.w20{width:151.053333pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w1d{width:173.946667pt;}
.w1c{width:174.146667pt;}
.w1b{width:192.333333pt;}
.w17{width:221.506667pt;}
.wb{width:228.026667pt;}
.w10{width:252.226667pt;}
.we{width:253.666667pt;}
.w19{width:255.266667pt;}
.w6{width:473.706667pt;}
.wc{width:553.760000pt;}
.w14{width:558.200000pt;}
.w11{width:561.760000pt;}
.w4{width:568.760000pt;}
.w12{width:569.600000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:3.780000pt;}
.x3c{left:5.906667pt;}
.x2{left:7.192000pt;}
.xd{left:9.592000pt;}
.x2e{left:12.013333pt;}
.x41{left:15.360000pt;}
.x22{left:16.986667pt;}
.x13{left:18.893333pt;}
.x32{left:22.253333pt;}
.x42{left:23.840000pt;}
.x43{left:24.960000pt;}
.x2f{left:27.053333pt;}
.x33{left:32.333333pt;}
.x29{left:33.626667pt;}
.x24{left:35.706667pt;}
.x36{left:37.946667pt;}
.x30{left:39.053333pt;}
.x4a{left:42.880000pt;}
.x40{left:43.840000pt;}
.x48{left:45.106667pt;}
.x3e{left:47.706667pt;}
.x26{left:49.280000pt;}
.x46{left:53.120000pt;}
.x4c{left:56.146667pt;}
.x4b{left:58.080000pt;}
.x3{left:65.746667pt;}
.x27{left:68.160000pt;}
.xc{left:72.680000pt;}
.x12{left:82.760000pt;}
.xf{left:84.200000pt;}
.x2c{left:86.386667pt;}
.x1{left:96.040000pt;}
.x6{left:98.912000pt;}
.x18{left:108.032000pt;}
.x1d{left:114.112000pt;}
.xa{left:117.952000pt;}
.x16{left:120.032000pt;}
.x21{left:123.040000pt;}
.x1f{left:124.160000pt;}
.x1e{left:126.280000pt;}
.x38{left:127.546667pt;}
.x28{left:134.746667pt;}
.x23{left:135.706667pt;}
.x35{left:138.426667pt;}
.x2a{left:141.666667pt;}
.x44{left:143.720000pt;}
.x20{left:144.706667pt;}
.x3b{left:146.440000pt;}
.x4{left:169.000000pt;}
.x7{left:234.946667pt;}
.x15{left:237.826667pt;}
.x4e{left:241.186667pt;}
.x45{left:257.666667pt;}
.xe{left:269.186667pt;}
.x1b{left:270.146667pt;}
.x10{left:275.866667pt;}
.x25{left:284.546667pt;}
.x39{left:287.106667pt;}
.x37{left:288.866667pt;}
.x2b{left:295.426667pt;}
.x9{left:325.666667pt;}
.x11{left:330.293333pt;}
.x3d{left:338.786667pt;}
.x1c{left:367.773333pt;}
.x1a{left:378.013333pt;}
.x5{left:396.893333pt;}
.x47{left:397.866667pt;}
.x8{left:402.013333pt;}
.xb{left:436.253333pt;}
.x4d{left:439.613333pt;}
.x34{left:460.746667pt;}
.x3f{left:512.933333pt;}
.x49{left:548.933333pt;}
.x14{left:551.336000pt;}
.x2d{left:559.640000pt;}
.x31{left:561.240000pt;}
.x19{left:579.173333pt;}
.x50{left:586.053333pt;}
.x3a{left:692.000000pt;}
.x17{left:710.400000pt;}
.x4f{left:717.280000pt;}
}




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