
    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_978dd2738866850f461b3c28.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_4d90f58d3dd31a7d0be448e4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ebc2218514db7a19ce36277c.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_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;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: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_b0b15e2014e9299aee880581.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_abf5217155c2a1a51351a25f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_278fba6b57200d39ee7d6d88.woff')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_53375050123455af8bdca3ec.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e489d2c32570e147e2fec10b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c751888ea7a5d00500505cf8.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b7c3e78a34707d707e9ad1c6.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cb23d1d46a2040396404fe7e.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.097800px;}
.ls8{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.270720px;}
.ls1d{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.315360px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.493920px;}
.ls1e{letter-spacing:0.498960px;}
.ls16{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.035360px;}
.ls1f{letter-spacing:1.080000px;}
.ls4{letter-spacing:2.520000px;}
.ls1a{letter-spacing:18.900000px;}
.ls1{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.400000px;}
.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;}
}
.ws11{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.046800px;}
.wsd{word-spacing:-15.037800px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.479800px;}
.ws15{word-spacing:-14.220000px;}
.ws10{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.wse{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._32{margin-left:-24.120000px;}
._23{margin-left:-4.003920px;}
._a{margin-left:-2.748960px;}
._2{margin-left:-1.457280px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._c{width:3.705120px;}
._18{width:5.450400px;}
._13{width:6.633360px;}
._1e{width:8.066640px;}
._16{width:9.990000px;}
._17{width:11.154000px;}
._1a{width:12.414960px;}
._1f{width:13.857600px;}
._19{width:15.185280px;}
._1c{width:16.211280px;}
._12{width:17.416320px;}
._d{width:19.302480px;}
._e{width:20.469600px;}
._14{width:22.170960px;}
._2f{width:23.366160px;}
._b{width:24.382080px;}
._1b{width:25.493760px;}
._11{width:26.832240px;}
._9{width:28.279920px;}
._8{width:29.581200px;}
._28{width:31.433760px;}
._2d{width:32.688720px;}
._15{width:33.943680px;}
._31{width:35.142480px;}
._3c{width:36.182880px;}
._30{width:37.290240px;}
._29{width:38.807280px;}
._2a{width:39.979440px;}
._10{width:41.027040px;}
._f{width:42.429600px;}
._2e{width:43.863840px;}
._24{width:45.895680px;}
._25{width:46.946880px;}
._33{width:48.384000px;}
._38{width:50.230080px;}
._37{width:51.333840px;}
._36{width:54.082800px;}
._1d{width:56.167200px;}
._26{width:57.461040px;}
._27{width:59.492880px;}
._35{width:60.867360px;}
._2c{width:61.971120px;}
._2b{width:63.405360px;}
._4{width:65.496000px;}
._3e{width:66.697200px;}
._41{width:69.202080px;}
._39{width:70.337520px;}
._3{width:71.992800px;}
._34{width:73.494720px;}
._40{width:78.285600px;}
._3f{width:79.421040px;}
._21{width:85.347840px;}
._20{width:86.443200px;}
._3b{width:109.272960px;}
._3a{width:110.316960px;}
._3d{width:121.731120px;}
._43{width:130.515840px;}
._42{width:132.175920px;}
._44{width:157.049280px;}
._5{width:199.620000px;}
._22{width:282.270000px;}
._7{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;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsf{font-size:44.018465px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y45{bottom:-247.710000px;}
.y44{bottom:-214.050000px;}
.y43{bottom:-180.210000px;}
.y7d{bottom:-156.270000px;}
.y42{bottom:-146.550000px;}
.y7c{bottom:-122.610000px;}
.y41{bottom:-112.890000px;}
.y7b{bottom:-88.770000px;}
.y40{bottom:-79.050000px;}
.y7a{bottom:-55.110000px;}
.y3f{bottom:-45.360000px;}
.y48{bottom:-27.180000px;}
.y79{bottom:-21.225000px;}
.y7f{bottom:-17.922750px;}
.y3e{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y276{bottom:1.837500px;}
.y131{bottom:2.340000px;}
.y1ac{bottom:2.520000px;}
.y1f0{bottom:2.685000px;}
.y1df{bottom:2.700000px;}
.y1c3{bottom:2.865000px;}
.y1b3{bottom:2.880000px;}
.y1c8{bottom:3.045000px;}
.y1b5{bottom:3.060000px;}
.y1c0{bottom:3.105000px;}
.y1de{bottom:3.420000px;}
.y6c{bottom:3.615000px;}
.y1ee{bottom:3.765000px;}
.y2{bottom:3.960000px;}
.y10c{bottom:4.845000px;}
.y108{bottom:4.860000px;}
.y47{bottom:5.040000px;}
.y6e{bottom:5.580000px;}
.y178{bottom:5.775000px;}
.y3d{bottom:6.840000px;}
.y162{bottom:7.920000px;}
.y12f{bottom:8.280000px;}
.y1ea{bottom:9.345000px;}
.y18d{bottom:9.390000px;}
.y16f{bottom:9.540000px;}
.y152{bottom:9.900000px;}
.y64{bottom:10.425000px;}
.y1a5{bottom:10.785000px;}
.y104{bottom:11.700000px;}
.y137{bottom:11.715000px;}
.y107{bottom:12.420000px;}
.y78{bottom:12.435000px;}
.y5{bottom:12.600000px;}
.y10a{bottom:12.765000px;}
.y106{bottom:12.780000px;}
.y143{bottom:12.975000px;}
.y101{bottom:13.140000px;}
.y15a{bottom:14.040000px;}
.y130{bottom:14.400000px;}
.y1ab{bottom:14.610000px;}
.y1fe{bottom:16.200000px;}
.y1f2{bottom:16.365000px;}
.y6b{bottom:16.575000px;}
.y199{bottom:16.725000px;}
.y177{bottom:17.835000px;}
.y161{bottom:19.980000px;}
.y1af{bottom:20.550000px;}
.y10b{bottom:20.685000px;}
.y3c{bottom:20.700000px;}
.y112{bottom:20.730000px;}
.y113{bottom:20.880000px;}
.y102{bottom:21.105000px;}
.y18c{bottom:21.450000px;}
.y16e{bottom:21.600000px;}
.y169{bottom:21.615000px;}
.y6{bottom:21.960000px;}
.y1a4{bottom:22.845000px;}
.y1e3{bottom:23.025000px;}
.y1f7{bottom:23.070000px;}
.y1e9{bottom:23.205000px;}
.y3{bottom:23.220000px;}
.y139{bottom:23.760000px;}
.y136{bottom:23.775000px;}
.y17a{bottom:23.940000px;}
.y17b{bottom:23.955000px;}
.y4{bottom:24.660000px;}
.y148{bottom:25.020000px;}
.y142{bottom:25.035000px;}
.y63{bottom:26.085000px;}
.y159{bottom:26.100000px;}
.y1aa{bottom:26.670000px;}
.y183{bottom:27.390000px;}
.y198{bottom:28.785000px;}
.y100{bottom:29.025000px;}
.y103{bottom:29.565000px;}
.y6a{bottom:29.715000px;}
.y13a{bottom:29.880000px;}
.y176{bottom:29.895000px;}
.y1fd{bottom:30.060000px;}
.y160{bottom:32.040000px;}
.y1ae{bottom:32.610000px;}
.y18b{bottom:33.510000px;}
.y16d{bottom:33.660000px;}
.y168{bottom:33.675000px;}
.y14d{bottom:34.005000px;}
.y151{bottom:34.020000px;}
.y3b{bottom:34.740000px;}
.y1a3{bottom:34.905000px;}
.y138{bottom:35.820000px;}
.y135{bottom:35.835000px;}
.y179{bottom:36.000000px;}
.y1e2{bottom:36.885000px;}
.y1f6{bottom:36.930000px;}
.y147{bottom:37.080000px;}
.y141{bottom:37.095000px;}
.y158{bottom:38.160000px;}
.y1a9{bottom:38.730000px;}
.y182{bottom:39.450000px;}
.y171{bottom:39.825000px;}
.y197{bottom:40.845000px;}
.y62{bottom:41.385000px;}
.y174{bottom:41.940000px;}
.y69{bottom:42.705000px;}
.y14a{bottom:43.215000px;}
.y77{bottom:43.395000px;}
.y15f{bottom:44.100000px;}
.y1ad{bottom:44.670000px;}
.y18a{bottom:45.570000px;}
.y16c{bottom:45.750000px;}
.y167{bottom:45.765000px;}
.y14c{bottom:46.065000px;}
.y150{bottom:46.080000px;}
.y1a2{bottom:46.965000px;}
.y81{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y133{bottom:47.880000px;}
.y146{bottom:49.140000px;}
.y140{bottom:49.155000px;}
.y157{bottom:50.220000px;}
.y1a8{bottom:50.790000px;}
.y181{bottom:51.690000px;}
.y170{bottom:51.870000px;}
.y196{bottom:52.905000px;}
.y61{bottom:53.805000px;}
.y173{bottom:54.000000px;}
.y149{bottom:55.260000px;}
.y68{bottom:55.845000px;}
.y15e{bottom:56.160000px;}
.y76{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y189{bottom:57.630000px;}
.y16b{bottom:57.810000px;}
.y166{bottom:57.825000px;}
.y14f{bottom:58.185000px;}
.y1a1{bottom:59.025000px;}
.y145{bottom:61.200000px;}
.y13f{bottom:61.215000px;}
.y156{bottom:62.280000px;}
.y1a7{bottom:62.850000px;}
.y180{bottom:63.750000px;}
.y7e{bottom:63.780000px;}
.y195{bottom:65.145000px;}
.y15d{bottom:68.220000px;}
.y67{bottom:68.805000px;}
.y75{bottom:69.495000px;}
.y188{bottom:69.690000px;}
.y164{bottom:69.870000px;}
.y1a0{bottom:71.085000px;}
.y60{bottom:71.850000px;}
.y144{bottom:73.260000px;}
.y13e{bottom:73.275000px;}
.y155{bottom:74.340000px;}
.y17f{bottom:75.810000px;}
.y194{bottom:77.205000px;}
.y15c{bottom:80.460000px;}
.y187{bottom:81.750000px;}
.y16a{bottom:81.930000px;}
.y74{bottom:82.455000px;}
.y19f{bottom:83.145000px;}
.y13c{bottom:85.320000px;}
.y66{bottom:85.725000px;}
.y154{bottom:86.400000px;}
.y17e{bottom:87.870000px;}
.y193{bottom:89.265000px;}
.y5f{bottom:89.670000px;}
.y15b{bottom:92.520000px;}
.y186{bottom:93.810000px;}
.y19e{bottom:95.205000px;}
.y73{bottom:95.595000px;}
.y1fc{bottom:98.460000px;}
.y17d{bottom:99.930000px;}
.y192{bottom:101.325000px;}
.y252{bottom:101.520000px;}
.yb3{bottom:103.680000px;}
.y275{bottom:104.580000px;}
.y274{bottom:105.480000px;}
.y185{bottom:105.870000px;}
.yd0{bottom:106.560000px;}
.y19d{bottom:107.265000px;}
.y5e{bottom:107.490000px;}
.y12c{bottom:107.640000px;}
.y72{bottom:108.555000px;}
.y200{bottom:112.140000px;}
.y191{bottom:113.385000px;}
.y1b1{bottom:115.020000px;}
.yfc{bottom:115.560000px;}
.y184{bottom:117.930000px;}
.y19c{bottom:119.325000px;}
.y251{bottom:121.320000px;}
.y71{bottom:121.515000px;}
.yb2{bottom:123.480000px;}
.y5d{bottom:125.310000px;}
.y190{bottom:125.445000px;}
.y273{bottom:125.460000px;}
.y1ff{bottom:125.820000px;}
.ycf{bottom:126.360000px;}
.y38{bottom:127.440000px;}
.y19b{bottom:131.385000px;}
.y1b0{bottom:133.740000px;}
.y70{bottom:133.935000px;}
.yfb{bottom:135.360000px;}
.y18f{bottom:137.505000px;}
.y1fb{bottom:139.500000px;}
.y5c{bottom:140.610000px;}
.y250{bottom:141.120000px;}
.yb1{bottom:143.280000px;}
.y19a{bottom:143.625000px;}
.y124{bottom:145.260000px;}
.yce{bottom:146.340000px;}
.y37{bottom:147.240000px;}
.y1a6{bottom:149.760000px;}
.y5b{bottom:153.030000px;}
.y1f5{bottom:153.180000px;}
.yfa{bottom:155.160000px;}
.y24f{bottom:161.100000px;}
.yb0{bottom:163.110000px;}
.y22d{bottom:164.010000px;}
.y123{bottom:165.090000px;}
.ycd{bottom:166.170000px;}
.y1fa{bottom:166.905000px;}
.y36{bottom:167.070000px;}
.y5a{bottom:171.030000px;}
.yf9{bottom:174.990000px;}
.y1f9{bottom:180.585000px;}
.y24e{bottom:180.930000px;}
.yaf{bottom:183.090000px;}
.y122{bottom:184.890000px;}
.ycc{bottom:185.970000px;}
.y35{bottom:186.870000px;}
.y22c{bottom:187.950000px;}
.y59{bottom:188.850000px;}
.y1f8{bottom:194.265000px;}
.yf8{bottom:194.970000px;}
.y24d{bottom:200.730000px;}
.y272{bottom:202.710000px;}
.yae{bottom:202.890000px;}
.y121{bottom:204.690000px;}
.ycb{bottom:205.770000px;}
.y34{bottom:206.670000px;}
.y12b{bottom:206.850000px;}
.y22b{bottom:207.570000px;}
.y1f4{bottom:207.945000px;}
.yf7{bottom:215.670000px;}
.y24c{bottom:220.530000px;}
.y22a{bottom:220.710000px;}
.y1f1{bottom:221.625000px;}
.yad{bottom:222.690000px;}
.y18e{bottom:222.885000px;}
.y58{bottom:224.490000px;}
.y120{bottom:224.670000px;}
.yca{bottom:225.570000px;}
.y33{bottom:226.650000px;}
.yf6{bottom:235.470000px;}
.y1f3{bottom:235.485000px;}
.y24b{bottom:240.330000px;}
.y229{bottom:240.510000px;}
.y57{bottom:242.310000px;}
.yac{bottom:242.490000px;}
.y271{bottom:243.390000px;}
.y11f{bottom:244.470000px;}
.yc9{bottom:245.550000px;}
.y32{bottom:246.450000px;}
.yf5{bottom:248.430000px;}
.y1ef{bottom:249.165000px;}
.y56{bottom:260.310000px;}
.yab{bottom:262.290000px;}
.y1ed{bottom:262.845000px;}
.y270{bottom:263.370000px;}
.y11e{bottom:264.270000px;}
.yc8{bottom:265.350000px;}
.y31{bottom:266.250000px;}
.yf4{bottom:268.230000px;}
.y55{bottom:273.450000px;}
.y1ec{bottom:277.425000px;}
.y24a{bottom:280.110000px;}
.y228{bottom:280.290000px;}
.yaa{bottom:282.270000px;}
.y54{bottom:282.450000px;}
.y26f{bottom:283.170000px;}
.y11d{bottom:284.070000px;}
.yc7{bottom:285.150000px;}
.y30{bottom:286.050000px;}
.yf3{bottom:288.210000px;}
.y1e8{bottom:291.105000px;}
.y249{bottom:299.910000px;}
.y227{bottom:300.090000px;}
.y53{bottom:300.300000px;}
.ya9{bottom:302.070000px;}
.y26e{bottom:302.970000px;}
.y11c{bottom:303.870000px;}
.y1eb{bottom:304.785000px;}
.yc6{bottom:304.950000px;}
.y12a{bottom:305.850000px;}
.y2f{bottom:306.750000px;}
.yf2{bottom:308.010000px;}
.y52{bottom:318.120000px;}
.y1e7{bottom:318.465000px;}
.y248{bottom:319.710000px;}
.y226{bottom:319.890000px;}
.ya8{bottom:321.870000px;}
.y49{bottom:323.505000px;}
.y26d{bottom:323.670000px;}
.y11b{bottom:323.850000px;}
.y2e{bottom:324.030000px;}
.yc5{bottom:324.750000px;}
.y129{bottom:325.830000px;}
.yf1{bottom:327.810000px;}
.y1e1{bottom:332.145000px;}
.y2d{bottom:332.670000px;}
.y51{bottom:335.940000px;}
.y247{bottom:340.410000px;}
.y225{bottom:340.590000px;}
.ya7{bottom:341.670000px;}
.y11a{bottom:343.650000px;}
.yc4{bottom:344.730000px;}
.y128{bottom:345.630000px;}
.y1e6{bottom:345.825000px;}
.yf0{bottom:347.610000px;}
.y50{bottom:353.760000px;}
.y2c{bottom:355.170000px;}
.y1e5{bottom:359.505000px;}
.ya6{bottom:361.470000px;}
.y119{bottom:363.450000px;}
.y224{bottom:364.350000px;}
.yc3{bottom:364.530000px;}
.y127{bottom:365.430000px;}
.y4f{bottom:367.080000px;}
.yef{bottom:367.410000px;}
.y1e4{bottom:373.185000px;}
.y4e{bottom:376.080000px;}
.y2b{bottom:376.230000px;}
.ya5{bottom:381.450000px;}
.y118{bottom:383.250000px;}
.y223{bottom:383.970000px;}
.yc2{bottom:384.330000px;}
.y17c{bottom:384.885000px;}
.y126{bottom:385.230000px;}
.y26c{bottom:385.410000px;}
.y1e0{bottom:386.865000px;}
.yee{bottom:387.390000px;}
.y4d{bottom:393.900000px;}
.y222{bottom:397.335000px;}
.y2a{bottom:400.035000px;}
.ya4{bottom:401.295000px;}
.y1dd{bottom:402.195000px;}
.yc1{bottom:404.175000px;}
.y125{bottom:405.975000px;}
.yed{bottom:407.235000px;}
.y4c{bottom:411.720000px;}
.y221{bottom:417.135000px;}
.ya3{bottom:421.095000px;}
.y1dc{bottom:423.795000px;}
.y29{bottom:423.975000px;}
.yc0{bottom:424.875000px;}
.y26b{bottom:426.315000px;}
.yec{bottom:427.035000px;}
.y117{bottom:427.935000px;}
.y4b{bottom:429.540000px;}
.y6f{bottom:431.880000px;}
.y220{bottom:436.935000px;}
.y1db{bottom:440.355000px;}
.ya2{bottom:440.895000px;}
.y246{bottom:443.955000px;}
.y28{bottom:444.855000px;}
.yeb{bottom:446.835000px;}
.y26a{bottom:447.015000px;}
.y4a{bottom:447.360000px;}
.y1da{bottom:456.015000px;}
.y21f{bottom:456.735000px;}
.ybf{bottom:457.815000px;}
.ya1{bottom:460.695000px;}
.y245{bottom:463.755000px;}
.y27{bottom:464.655000px;}
.yea{bottom:466.635000px;}
.y1d9{bottom:475.995000px;}
.y21e{bottom:476.535000px;}
.ybe{bottom:477.615000px;}
.y26{bottom:478.335000px;}
.y116{bottom:479.415000px;}
.ya0{bottom:480.675000px;}
.y244{bottom:483.555000px;}
.ye9{bottom:486.615000px;}
.y25{bottom:486.975000px;}
.y269{bottom:487.875000px;}
.y1d8{bottom:495.795000px;}
.y21d{bottom:496.515000px;}
.ybd{bottom:497.415000px;}
.y9f{bottom:500.475000px;}
.y243{bottom:503.355000px;}
.ye8{bottom:506.415000px;}
.y268{bottom:508.755000px;}
.y24{bottom:510.375000px;}
.y115{bottom:511.815000px;}
.y1d7{bottom:515.595000px;}
.y21c{bottom:516.315000px;}
.ybc{bottom:517.215000px;}
.y175{bottom:519.900000px;}
.y172{bottom:519.915000px;}
.y9e{bottom:520.275000px;}
.y242{bottom:523.155000px;}
.ye7{bottom:526.215000px;}
.y23{bottom:533.595000px;}
.y1d6{bottom:535.395000px;}
.ybb{bottom:537.015000px;}
.y9d{bottom:540.075000px;}
.y241{bottom:543.135000px;}
.y114{bottom:544.395000px;}
.ye6{bottom:546.015000px;}
.y267{bottom:549.615000px;}
.y1d5{bottom:555.195000px;}
.y22{bottom:556.815000px;}
.yba{bottom:556.995000px;}
.y9c{bottom:559.875000px;}
.y21b{bottom:560.775000px;}
.y240{bottom:562.935000px;}
.ye5{bottom:565.815000px;}
.y266{bottom:569.415000px;}
.y1d4{bottom:575.175000px;}
.yb9{bottom:576.795000px;}
.y9b{bottom:579.855000px;}
.y21a{bottom:580.395000px;}
.y23f{bottom:582.735000px;}
.ye4{bottom:585.795000px;}
.y165{bottom:587.400000px;}
.y163{bottom:587.415000px;}
.y65{bottom:588.120000px;}
.y265{bottom:589.215000px;}
.y1d3{bottom:592.635000px;}
.y219{bottom:593.715000px;}
.yb8{bottom:596.595000px;}
.y9a{bottom:599.655000px;}
.y23e{bottom:602.535000px;}
.y1d2{bottom:602.895000px;}
.ye3{bottom:605.595000px;}
.y264{bottom:609.015000px;}
.y111{bottom:609.375000px;}
.y21{bottom:611.715000px;}
.y218{bottom:613.515000px;}
.yb7{bottom:616.395000px;}
.y1d1{bottom:617.475000px;}
.y99{bottom:619.455000px;}
.y23d{bottom:622.335000px;}
.ye2{bottom:625.425000px;}
.y20{bottom:627.225000px;}
.y263{bottom:629.025000px;}
.y1d0{bottom:632.085000px;}
.y217{bottom:633.345000px;}
.yb6{bottom:636.225000px;}
.y98{bottom:639.285000px;}
.y110{bottom:641.805000px;}
.y23c{bottom:642.345000px;}
.y1f{bottom:642.885000px;}
.ye1{bottom:645.225000px;}
.y1cf{bottom:646.665000px;}
.y262{bottom:649.725000px;}
.y216{bottom:653.145000px;}
.yb5{bottom:657.105000px;}
.y1e{bottom:658.365000px;}
.y97{bottom:659.085000px;}
.y1ce{bottom:661.245000px;}
.y23b{bottom:662.145000px;}
.ye0{bottom:665.025000px;}
.y215{bottom:672.945000px;}
.y1d{bottom:673.845000px;}
.y10f{bottom:674.385000px;}
.y1cd{bottom:675.645000px;}
.yb4{bottom:677.985000px;}
.y96{bottom:679.065000px;}
.y23a{bottom:681.945000px;}
.y1c{bottom:685.005000px;}
.y153{bottom:686.625000px;}
.y1cc{bottom:690.225000px;}
.y261{bottom:690.585000px;}
.y214{bottom:692.925000px;}
.y39{bottom:693.645000px;}
.y1b{bottom:698.685000px;}
.y95{bottom:698.865000px;}
.y239{bottom:701.745000px;}
.ydf{bottom:704.805000px;}
.y10e{bottom:706.785000px;}
.y260{bottom:710.385000px;}
.y1a{bottom:711.465000px;}
.y213{bottom:712.725000px;}
.y94{bottom:718.665000px;}
.y1cb{bottom:719.385000px;}
.y238{bottom:721.545000px;}
.y19{bottom:724.425000px;}
.yde{bottom:724.605000px;}
.y25f{bottom:731.085000px;}
.y212{bottom:732.525000px;}
.y1ca{bottom:733.965000px;}
.y18{bottom:737.385000px;}
.y93{bottom:738.465000px;}
.y10d{bottom:739.365000px;}
.ydd{bottom:744.405000px;}
.y1c9{bottom:748.365000px;}
.y17{bottom:751.245000px;}
.y211{bottom:753.225000px;}
.y25e{bottom:755.025000px;}
.y92{bottom:758.265000px;}
.y1c7{bottom:762.960000px;}
.y16{bottom:764.025000px;}
.ydc{bottom:764.205000px;}
.y109{bottom:771.780000px;}
.y210{bottom:777.165000px;}
.y1c6{bottom:777.525000px;}
.y91{bottom:778.245000px;}
.y237{bottom:780.225000px;}
.ydb{bottom:784.185000px;}
.y15{bottom:790.845000px;}
.y1c5{bottom:792.105000px;}
.y14e{bottom:794.625000px;}
.y14b{bottom:794.640000px;}
.y25d{bottom:795.885000px;}
.y20f{bottom:796.785000px;}
.y90{bottom:798.045000px;}
.y236{bottom:800.025000px;}
.y14{bottom:802.005000px;}
.yda{bottom:803.985000px;}
.y105{bottom:804.345000px;}
.y1c4{bottom:806.685000px;}
.y20e{bottom:809.925000px;}
.y25c{bottom:815.685000px;}
.y8f{bottom:817.845000px;}
.y235{bottom:819.825000px;}
.y1c2{bottom:821.280000px;}
.yd9{bottom:823.785000px;}
.y13{bottom:824.865000px;}
.y20d{bottom:829.725000px;}
.y25b{bottom:835.485000px;}
.y1c1{bottom:835.665000px;}
.y8e{bottom:837.645000px;}
.yff{bottom:838.185000px;}
.y234{bottom:839.625000px;}
.yd8{bottom:843.585000px;}
.y12{bottom:844.485000px;}
.y20c{bottom:849.525000px;}
.y1bf{bottom:850.245000px;}
.y25a{bottom:855.330000px;}
.y8d{bottom:857.490000px;}
.y233{bottom:859.470000px;}
.yd7{bottom:863.430000px;}
.y11{bottom:863.790000px;}
.y1be{bottom:864.870000px;}
.y20b{bottom:869.370000px;}
.y13d{bottom:870.255000px;}
.y13b{bottom:870.270000px;}
.y10{bottom:874.230000px;}
.y259{bottom:875.310000px;}
.y8c{bottom:877.470000px;}
.y1bd{bottom:879.450000px;}
.yd6{bottom:883.410000px;}
.y20a{bottom:889.350000px;}
.yf{bottom:893.670000px;}
.y1bc{bottom:894.030000px;}
.yfe{bottom:894.750000px;}
.y258{bottom:895.110000px;}
.y8b{bottom:897.270000px;}
.y232{bottom:899.250000px;}
.yd5{bottom:903.210000px;}
.ye{bottom:908.610000px;}
.y209{bottom:909.150000px;}
.yfd{bottom:914.010000px;}
.y257{bottom:914.910000px;}
.y8a{bottom:917.070000px;}
.y231{bottom:919.050000px;}
.yd{bottom:919.950000px;}
.yd4{bottom:923.010000px;}
.y208{bottom:928.950000px;}
.y256{bottom:934.710000px;}
.y89{bottom:936.870000px;}
.yc{bottom:937.590000px;}
.y230{bottom:938.850000px;}
.yd3{bottom:942.810000px;}
.y207{bottom:948.750000px;}
.y1bb{bottom:952.170000px;}
.y255{bottom:954.510000px;}
.y88{bottom:956.670000px;}
.yb{bottom:959.190000px;}
.y22f{bottom:959.550000px;}
.yd2{bottom:963.510000px;}
.y1ba{bottom:966.750000px;}
.y206{bottom:968.550000px;}
.y254{bottom:974.490000px;}
.y134{bottom:976.275000px;}
.y132{bottom:976.290000px;}
.y87{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.y1b9{bottom:981.330000px;}
.yd1{bottom:983.490000px;}
.y205{bottom:988.530000px;}
.y253{bottom:995.190000px;}
.y1b8{bottom:995.910000px;}
.y86{bottom:996.450000px;}
.y22e{bottom:1003.110000px;}
.y204{bottom:1008.330000px;}
.y9{bottom:1008.690000px;}
.y1b7{bottom:1010.310000px;}
.y85{bottom:1016.250000px;}
.y1b6{bottom:1024.890000px;}
.y203{bottom:1028.130000px;}
.y84{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1b4{bottom:1039.470000px;}
.y12e{bottom:1045.230000px;}
.y202{bottom:1048.830000px;}
.y1b2{bottom:1055.490000px;}
.y83{bottom:1055.850000px;}
.y7{bottom:1063.230000px;}
.y201{bottom:1072.590000px;}
.y82{bottom:1075.650000px;}
.y12d{bottom:1077.090000px;}
.y6d{bottom:1096.200000px;}
.y80{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h17{height:5.805000px;}
.h5e{height:6.257812px;}
.h55{height:12.765000px;}
.h52{height:12.945000px;}
.h58{height:12.960000px;}
.h50{height:12.981000px;}
.h57{height:12.996000px;}
.h2{height:13.500000px;}
.h49{height:13.665000px;}
.h4f{height:13.665150px;}
.h4c{height:13.680000px;}
.h48{height:13.845000px;}
.h4b{height:13.860000px;}
.h4a{height:13.882500px;}
.h4d{height:13.890000px;}
.h1b{height:16.920000px;}
.h23{height:22.140000px;}
.h15{height:23.319141px;}
.h30{height:24.105000px;}
.h54{height:27.525000px;}
.h5a{height:29.664141px;}
.hc{height:29.678906px;}
.h3b{height:30.563602px;}
.hf{height:30.963516px;}
.h2a{height:31.081955px;}
.h2d{height:31.665000px;}
.h2c{height:31.680000px;}
.h2e{height:31.710000px;}
.h2f{height:31.845000px;}
.h4{height:34.200000px;}
.h4e{height:35.332031px;}
.h21{height:36.281250px;}
.h13{height:39.503370px;}
.h53{height:40.305000px;}
.h34{height:40.964766px;}
.h5{height:40.985156px;}
.h22{height:42.086250px;}
.h5c{height:43.215117px;}
.h28{height:43.737568px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h19{height:45.714375px;}
.h12{height:46.622932px;}
.hd{height:47.344922px;}
.h1c{height:48.616875px;}
.h2b{height:48.622500px;}
.h14{height:52.998047px;}
.h59{height:54.000000px;}
.h1d{height:54.421875px;}
.h10{height:55.291992px;}
.h1f{height:55.503491px;}
.h5d{height:55.824609px;}
.h18{height:57.780000px;}
.h27{height:58.621992px;}
.h3{height:58.651172px;}
.h16{height:60.226875px;}
.h5b{height:61.423863px;}
.ha{height:65.010937px;}
.h1a{height:65.884219px;}
.h33{height:66.585000px;}
.h31{height:66.591000px;}
.h32{height:66.600000px;}
.h41{height:66.765000px;}
.h3f{height:66.775500px;}
.h40{height:66.780000px;}
.h51{height:67.701000px;}
.h56{height:67.716000px;}
.he{height:67.824844px;}
.h29{height:70.628906px;}
.h46{height:72.396000px;}
.h47{height:72.405000px;}
.h9{height:72.562500px;}
.h38{height:74.902500px;}
.h24{height:74.953125px;}
.h26{height:75.093750px;}
.h7{height:87.695156px;}
.h20{height:93.825000px;}
.h8{height:96.508125px;}
.h3e{height:98.490000px;}
.h3c{height:98.496000px;}
.h3d{height:98.505000px;}
.h37{height:105.285000px;}
.h35{height:105.291000px;}
.h36{height:105.300000px;}
.h39{height:107.275500px;}
.h3a{height:107.280000px;}
.h43{height:134.301000px;}
.h42{height:134.302500px;}
.h25{height:144.900000px;}
.h44{height:161.265000px;}
.h45{height:161.280000px;}
.h1e{height:459.615000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w1a{width:60.291000px;}
.wc{width:74.361000px;}
.we{width:77.436000px;}
.wb{width:77.571000px;}
.w3{width:82.071000px;}
.w12{width:90.030000px;}
.w11{width:90.165000px;}
.wf{width:94.485000px;}
.w10{width:98.301000px;}
.w15{width:101.190000px;}
.w18{width:101.196000px;}
.w19{width:101.205000px;}
.wd{width:118.260000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w16{width:260.835000px;}
.w13{width:260.841000px;}
.w17{width:260.850000px;}
.w1d{width:278.520000px;}
.w14{width:380.580000px;}
.w1c{width:442.146000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w1b{width:648.135000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:4.252500px;}
.x2{left:8.091000px;}
.x13{left:10.791000px;}
.x2f{left:14.430000px;}
.x30{left:16.185000px;}
.x21{left:17.625000px;}
.x26{left:18.720000px;}
.x19{left:21.255000px;}
.x29{left:24.285000px;}
.x31{left:26.130000px;}
.x25{left:27.360000px;}
.x2a{left:28.830000px;}
.x37{left:30.990000px;}
.x2c{left:32.040000px;}
.x32{left:33.870000px;}
.x23{left:34.920000px;}
.x3f{left:45.390000px;}
.x38{left:47.910000px;}
.x39{left:50.625000px;}
.x2e{left:53.100000px;}
.x3a{left:60.660000px;}
.x3b{left:63.210000px;}
.x45{left:67.710000px;}
.x46{left:70.230000px;}
.x3{left:73.965000px;}
.x16{left:80.505000px;}
.x14{left:81.765000px;}
.x33{left:87.696000px;}
.x44{left:89.490000px;}
.x12{left:93.105000px;}
.x18{left:94.905000px;}
.x1{left:108.045000px;}
.x6{left:111.276000px;}
.x4b{left:114.525000px;}
.x1f{left:115.776000px;}
.x35{left:119.370000px;}
.x47{left:121.350000px;}
.xc{left:123.696000px;}
.x1d{left:128.376000px;}
.x3c{left:129.990000px;}
.xf{left:132.696000px;}
.x9{left:153.390000px;}
.x49{left:159.510000px;}
.x4a{left:162.210000px;}
.x42{left:164.730000px;}
.x43{left:167.430000px;}
.x4c{left:174.825000px;}
.x20{left:185.625000px;}
.x4{left:190.125000px;}
.x3d{left:197.670000px;}
.x3e{left:200.190000px;}
.xb{left:208.830000px;}
.xe{left:224.670000px;}
.x1b{left:232.770000px;}
.x40{left:247.575000px;}
.x41{left:250.275000px;}
.x22{left:259.995000px;}
.x15{left:303.195000px;}
.x17{left:310.350000px;}
.x1e{left:318.135000px;}
.x7{left:319.395000px;}
.x1c{left:322.455000px;}
.x48{left:344.595000px;}
.x34{left:348.195000px;}
.x24{left:378.255000px;}
.xd{left:403.455000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.x27{left:455.700000px;}
.xa{left:459.105000px;}
.x10{left:489.165000px;}
.x11{left:490.785000px;}
.x28{left:550.200000px;}
.x1a{left:620.253000px;}
.x2b{left:648.510000px;}
.x36{left:728.790000px;}
.x2d{left:738.690000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.086933pt;}
.ls8{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.240640pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.280320pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.439040pt;}
.ls1e{letter-spacing:0.443520pt;}
.ls16{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.920320pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls4{letter-spacing:2.240000pt;}
.ls1a{letter-spacing:16.800000pt;}
.ls1{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.466667pt;}
.ws11{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.366933pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws12{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.wse{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._32{margin-left:-21.440000pt;}
._23{margin-left:-3.559040pt;}
._a{margin-left:-2.443520pt;}
._2{margin-left:-1.295360pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._c{width:3.293440pt;}
._18{width:4.844800pt;}
._13{width:5.896320pt;}
._1e{width:7.170347pt;}
._16{width:8.880000pt;}
._17{width:9.914667pt;}
._1a{width:11.035520pt;}
._1f{width:12.317867pt;}
._19{width:13.498027pt;}
._1c{width:14.410027pt;}
._12{width:15.481173pt;}
._d{width:17.157760pt;}
._e{width:18.195200pt;}
._14{width:19.707520pt;}
._2f{width:20.769920pt;}
._b{width:21.672960pt;}
._1b{width:22.661120pt;}
._11{width:23.850880pt;}
._9{width:25.137707pt;}
._8{width:26.294400pt;}
._28{width:27.941120pt;}
._2d{width:29.056640pt;}
._15{width:30.172160pt;}
._31{width:31.237760pt;}
._3c{width:32.162560pt;}
._30{width:33.146880pt;}
._29{width:34.495360pt;}
._2a{width:35.537280pt;}
._10{width:36.468480pt;}
._f{width:37.715200pt;}
._2e{width:38.990080pt;}
._24{width:40.796160pt;}
._25{width:41.730560pt;}
._33{width:43.008000pt;}
._38{width:44.648960pt;}
._37{width:45.630080pt;}
._36{width:48.073600pt;}
._1d{width:49.926400pt;}
._26{width:51.076480pt;}
._27{width:52.882560pt;}
._35{width:54.104320pt;}
._2c{width:55.085440pt;}
._2b{width:56.360320pt;}
._4{width:58.218667pt;}
._3e{width:59.286400pt;}
._41{width:61.512960pt;}
._39{width:62.522240pt;}
._3{width:63.993600pt;}
._34{width:65.328640pt;}
._40{width:69.587200pt;}
._3f{width:70.596480pt;}
._21{width:75.864747pt;}
._20{width:76.838400pt;}
._3b{width:97.131520pt;}
._3a{width:98.059520pt;}
._3d{width:108.205440pt;}
._43{width:116.014080pt;}
._42{width:117.489707pt;}
._44{width:139.599360pt;}
._5{width:177.440000pt;}
._22{width:250.906667pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsf{font-size:39.127524pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.266667pt;}
.y43{bottom:-160.186667pt;}
.y7d{bottom:-138.906667pt;}
.y42{bottom:-130.266667pt;}
.y7c{bottom:-108.986667pt;}
.y41{bottom:-100.346667pt;}
.y7b{bottom:-78.906667pt;}
.y40{bottom:-70.266667pt;}
.y7a{bottom:-48.986667pt;}
.y3f{bottom:-40.320000pt;}
.y48{bottom:-24.160000pt;}
.y79{bottom:-18.866667pt;}
.y7f{bottom:-15.931333pt;}
.y3e{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y276{bottom:1.633333pt;}
.y131{bottom:2.080000pt;}
.y1ac{bottom:2.240000pt;}
.y1f0{bottom:2.386667pt;}
.y1df{bottom:2.400000pt;}
.y1c3{bottom:2.546667pt;}
.y1b3{bottom:2.560000pt;}
.y1c8{bottom:2.706667pt;}
.y1b5{bottom:2.720000pt;}
.y1c0{bottom:2.760000pt;}
.y1de{bottom:3.040000pt;}
.y6c{bottom:3.213333pt;}
.y1ee{bottom:3.346667pt;}
.y2{bottom:3.520000pt;}
.y10c{bottom:4.306667pt;}
.y108{bottom:4.320000pt;}
.y47{bottom:4.480000pt;}
.y6e{bottom:4.960000pt;}
.y178{bottom:5.133333pt;}
.y3d{bottom:6.080000pt;}
.y162{bottom:7.040000pt;}
.y12f{bottom:7.360000pt;}
.y1ea{bottom:8.306667pt;}
.y18d{bottom:8.346667pt;}
.y16f{bottom:8.480000pt;}
.y152{bottom:8.800000pt;}
.y64{bottom:9.266667pt;}
.y1a5{bottom:9.586667pt;}
.y104{bottom:10.400000pt;}
.y137{bottom:10.413333pt;}
.y107{bottom:11.040000pt;}
.y78{bottom:11.053333pt;}
.y5{bottom:11.200000pt;}
.y10a{bottom:11.346667pt;}
.y106{bottom:11.360000pt;}
.y143{bottom:11.533333pt;}
.y101{bottom:11.680000pt;}
.y15a{bottom:12.480000pt;}
.y130{bottom:12.800000pt;}
.y1ab{bottom:12.986667pt;}
.y1fe{bottom:14.400000pt;}
.y1f2{bottom:14.546667pt;}
.y6b{bottom:14.733333pt;}
.y199{bottom:14.866667pt;}
.y177{bottom:15.853333pt;}
.y161{bottom:17.760000pt;}
.y1af{bottom:18.266667pt;}
.y10b{bottom:18.386667pt;}
.y3c{bottom:18.400000pt;}
.y112{bottom:18.426667pt;}
.y113{bottom:18.560000pt;}
.y102{bottom:18.760000pt;}
.y18c{bottom:19.066667pt;}
.y16e{bottom:19.200000pt;}
.y169{bottom:19.213333pt;}
.y6{bottom:19.520000pt;}
.y1a4{bottom:20.306667pt;}
.y1e3{bottom:20.466667pt;}
.y1f7{bottom:20.506667pt;}
.y1e9{bottom:20.626667pt;}
.y3{bottom:20.640000pt;}
.y139{bottom:21.120000pt;}
.y136{bottom:21.133333pt;}
.y17a{bottom:21.280000pt;}
.y17b{bottom:21.293333pt;}
.y4{bottom:21.920000pt;}
.y148{bottom:22.240000pt;}
.y142{bottom:22.253333pt;}
.y63{bottom:23.186667pt;}
.y159{bottom:23.200000pt;}
.y1aa{bottom:23.706667pt;}
.y183{bottom:24.346667pt;}
.y198{bottom:25.586667pt;}
.y100{bottom:25.800000pt;}
.y103{bottom:26.280000pt;}
.y6a{bottom:26.413333pt;}
.y13a{bottom:26.560000pt;}
.y176{bottom:26.573333pt;}
.y1fd{bottom:26.720000pt;}
.y160{bottom:28.480000pt;}
.y1ae{bottom:28.986667pt;}
.y18b{bottom:29.786667pt;}
.y16d{bottom:29.920000pt;}
.y168{bottom:29.933333pt;}
.y14d{bottom:30.226667pt;}
.y151{bottom:30.240000pt;}
.y3b{bottom:30.880000pt;}
.y1a3{bottom:31.026667pt;}
.y138{bottom:31.840000pt;}
.y135{bottom:31.853333pt;}
.y179{bottom:32.000000pt;}
.y1e2{bottom:32.786667pt;}
.y1f6{bottom:32.826667pt;}
.y147{bottom:32.960000pt;}
.y141{bottom:32.973333pt;}
.y158{bottom:33.920000pt;}
.y1a9{bottom:34.426667pt;}
.y182{bottom:35.066667pt;}
.y171{bottom:35.400000pt;}
.y197{bottom:36.306667pt;}
.y62{bottom:36.786667pt;}
.y174{bottom:37.280000pt;}
.y69{bottom:37.960000pt;}
.y14a{bottom:38.413333pt;}
.y77{bottom:38.573333pt;}
.y15f{bottom:39.200000pt;}
.y1ad{bottom:39.706667pt;}
.y18a{bottom:40.506667pt;}
.y16c{bottom:40.666667pt;}
.y167{bottom:40.680000pt;}
.y14c{bottom:40.946667pt;}
.y150{bottom:40.960000pt;}
.y1a2{bottom:41.746667pt;}
.y81{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y133{bottom:42.560000pt;}
.y146{bottom:43.680000pt;}
.y140{bottom:43.693333pt;}
.y157{bottom:44.640000pt;}
.y1a8{bottom:45.146667pt;}
.y181{bottom:45.946667pt;}
.y170{bottom:46.106667pt;}
.y196{bottom:47.026667pt;}
.y61{bottom:47.826667pt;}
.y173{bottom:48.000000pt;}
.y149{bottom:49.120000pt;}
.y68{bottom:49.640000pt;}
.y15e{bottom:49.920000pt;}
.y76{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y189{bottom:51.226667pt;}
.y16b{bottom:51.386667pt;}
.y166{bottom:51.400000pt;}
.y14f{bottom:51.720000pt;}
.y1a1{bottom:52.466667pt;}
.y145{bottom:54.400000pt;}
.y13f{bottom:54.413333pt;}
.y156{bottom:55.360000pt;}
.y1a7{bottom:55.866667pt;}
.y180{bottom:56.666667pt;}
.y7e{bottom:56.693333pt;}
.y195{bottom:57.906667pt;}
.y15d{bottom:60.640000pt;}
.y67{bottom:61.160000pt;}
.y75{bottom:61.773333pt;}
.y188{bottom:61.946667pt;}
.y164{bottom:62.106667pt;}
.y1a0{bottom:63.186667pt;}
.y60{bottom:63.866667pt;}
.y144{bottom:65.120000pt;}
.y13e{bottom:65.133333pt;}
.y155{bottom:66.080000pt;}
.y17f{bottom:67.386667pt;}
.y194{bottom:68.626667pt;}
.y15c{bottom:71.520000pt;}
.y187{bottom:72.666667pt;}
.y16a{bottom:72.826667pt;}
.y74{bottom:73.293333pt;}
.y19f{bottom:73.906667pt;}
.y13c{bottom:75.840000pt;}
.y66{bottom:76.200000pt;}
.y154{bottom:76.800000pt;}
.y17e{bottom:78.106667pt;}
.y193{bottom:79.346667pt;}
.y5f{bottom:79.706667pt;}
.y15b{bottom:82.240000pt;}
.y186{bottom:83.386667pt;}
.y19e{bottom:84.626667pt;}
.y73{bottom:84.973333pt;}
.y1fc{bottom:87.520000pt;}
.y17d{bottom:88.826667pt;}
.y192{bottom:90.066667pt;}
.y252{bottom:90.240000pt;}
.yb3{bottom:92.160000pt;}
.y275{bottom:92.960000pt;}
.y274{bottom:93.760000pt;}
.y185{bottom:94.106667pt;}
.yd0{bottom:94.720000pt;}
.y19d{bottom:95.346667pt;}
.y5e{bottom:95.546667pt;}
.y12c{bottom:95.680000pt;}
.y72{bottom:96.493333pt;}
.y200{bottom:99.680000pt;}
.y191{bottom:100.786667pt;}
.y1b1{bottom:102.240000pt;}
.yfc{bottom:102.720000pt;}
.y184{bottom:104.826667pt;}
.y19c{bottom:106.066667pt;}
.y251{bottom:107.840000pt;}
.y71{bottom:108.013333pt;}
.yb2{bottom:109.760000pt;}
.y5d{bottom:111.386667pt;}
.y190{bottom:111.506667pt;}
.y273{bottom:111.520000pt;}
.y1ff{bottom:111.840000pt;}
.ycf{bottom:112.320000pt;}
.y38{bottom:113.280000pt;}
.y19b{bottom:116.786667pt;}
.y1b0{bottom:118.880000pt;}
.y70{bottom:119.053333pt;}
.yfb{bottom:120.320000pt;}
.y18f{bottom:122.226667pt;}
.y1fb{bottom:124.000000pt;}
.y5c{bottom:124.986667pt;}
.y250{bottom:125.440000pt;}
.yb1{bottom:127.360000pt;}
.y19a{bottom:127.666667pt;}
.y124{bottom:129.120000pt;}
.yce{bottom:130.080000pt;}
.y37{bottom:130.880000pt;}
.y1a6{bottom:133.120000pt;}
.y5b{bottom:136.026667pt;}
.y1f5{bottom:136.160000pt;}
.yfa{bottom:137.920000pt;}
.y24f{bottom:143.200000pt;}
.yb0{bottom:144.986667pt;}
.y22d{bottom:145.786667pt;}
.y123{bottom:146.746667pt;}
.ycd{bottom:147.706667pt;}
.y1fa{bottom:148.360000pt;}
.y36{bottom:148.506667pt;}
.y5a{bottom:152.026667pt;}
.yf9{bottom:155.546667pt;}
.y1f9{bottom:160.520000pt;}
.y24e{bottom:160.826667pt;}
.yaf{bottom:162.746667pt;}
.y122{bottom:164.346667pt;}
.ycc{bottom:165.306667pt;}
.y35{bottom:166.106667pt;}
.y22c{bottom:167.066667pt;}
.y59{bottom:167.866667pt;}
.y1f8{bottom:172.680000pt;}
.yf8{bottom:173.306667pt;}
.y24d{bottom:178.426667pt;}
.y272{bottom:180.186667pt;}
.yae{bottom:180.346667pt;}
.y121{bottom:181.946667pt;}
.ycb{bottom:182.906667pt;}
.y34{bottom:183.706667pt;}
.y12b{bottom:183.866667pt;}
.y22b{bottom:184.506667pt;}
.y1f4{bottom:184.840000pt;}
.yf7{bottom:191.706667pt;}
.y24c{bottom:196.026667pt;}
.y22a{bottom:196.186667pt;}
.y1f1{bottom:197.000000pt;}
.yad{bottom:197.946667pt;}
.y18e{bottom:198.120000pt;}
.y58{bottom:199.546667pt;}
.y120{bottom:199.706667pt;}
.yca{bottom:200.506667pt;}
.y33{bottom:201.466667pt;}
.yf6{bottom:209.306667pt;}
.y1f3{bottom:209.320000pt;}
.y24b{bottom:213.626667pt;}
.y229{bottom:213.786667pt;}
.y57{bottom:215.386667pt;}
.yac{bottom:215.546667pt;}
.y271{bottom:216.346667pt;}
.y11f{bottom:217.306667pt;}
.yc9{bottom:218.266667pt;}
.y32{bottom:219.066667pt;}
.yf5{bottom:220.826667pt;}
.y1ef{bottom:221.480000pt;}
.y56{bottom:231.386667pt;}
.yab{bottom:233.146667pt;}
.y1ed{bottom:233.640000pt;}
.y270{bottom:234.106667pt;}
.y11e{bottom:234.906667pt;}
.yc8{bottom:235.866667pt;}
.y31{bottom:236.666667pt;}
.yf4{bottom:238.426667pt;}
.y55{bottom:243.066667pt;}
.y1ec{bottom:246.600000pt;}
.y24a{bottom:248.986667pt;}
.y228{bottom:249.146667pt;}
.yaa{bottom:250.906667pt;}
.y54{bottom:251.066667pt;}
.y26f{bottom:251.706667pt;}
.y11d{bottom:252.506667pt;}
.yc7{bottom:253.466667pt;}
.y30{bottom:254.266667pt;}
.yf3{bottom:256.186667pt;}
.y1e8{bottom:258.760000pt;}
.y249{bottom:266.586667pt;}
.y227{bottom:266.746667pt;}
.y53{bottom:266.933333pt;}
.ya9{bottom:268.506667pt;}
.y26e{bottom:269.306667pt;}
.y11c{bottom:270.106667pt;}
.y1eb{bottom:270.920000pt;}
.yc6{bottom:271.066667pt;}
.y12a{bottom:271.866667pt;}
.y2f{bottom:272.666667pt;}
.yf2{bottom:273.786667pt;}
.y52{bottom:282.773333pt;}
.y1e7{bottom:283.080000pt;}
.y248{bottom:284.186667pt;}
.y226{bottom:284.346667pt;}
.ya8{bottom:286.106667pt;}
.y49{bottom:287.560000pt;}
.y26d{bottom:287.706667pt;}
.y11b{bottom:287.866667pt;}
.y2e{bottom:288.026667pt;}
.yc5{bottom:288.666667pt;}
.y129{bottom:289.626667pt;}
.yf1{bottom:291.386667pt;}
.y1e1{bottom:295.240000pt;}
.y2d{bottom:295.706667pt;}
.y51{bottom:298.613333pt;}
.y247{bottom:302.586667pt;}
.y225{bottom:302.746667pt;}
.ya7{bottom:303.706667pt;}
.y11a{bottom:305.466667pt;}
.yc4{bottom:306.426667pt;}
.y128{bottom:307.226667pt;}
.y1e6{bottom:307.400000pt;}
.yf0{bottom:308.986667pt;}
.y50{bottom:314.453333pt;}
.y2c{bottom:315.706667pt;}
.y1e5{bottom:319.560000pt;}
.ya6{bottom:321.306667pt;}
.y119{bottom:323.066667pt;}
.y224{bottom:323.866667pt;}
.yc3{bottom:324.026667pt;}
.y127{bottom:324.826667pt;}
.y4f{bottom:326.293333pt;}
.yef{bottom:326.586667pt;}
.y1e4{bottom:331.720000pt;}
.y4e{bottom:334.293333pt;}
.y2b{bottom:334.426667pt;}
.ya5{bottom:339.066667pt;}
.y118{bottom:340.666667pt;}
.y223{bottom:341.306667pt;}
.yc2{bottom:341.626667pt;}
.y17c{bottom:342.120000pt;}
.y126{bottom:342.426667pt;}
.y26c{bottom:342.586667pt;}
.y1e0{bottom:343.880000pt;}
.yee{bottom:344.346667pt;}
.y4d{bottom:350.133333pt;}
.y222{bottom:353.186667pt;}
.y2a{bottom:355.586667pt;}
.ya4{bottom:356.706667pt;}
.y1dd{bottom:357.506667pt;}
.yc1{bottom:359.266667pt;}
.y125{bottom:360.866667pt;}
.yed{bottom:361.986667pt;}
.y4c{bottom:365.973333pt;}
.y221{bottom:370.786667pt;}
.ya3{bottom:374.306667pt;}
.y1dc{bottom:376.706667pt;}
.y29{bottom:376.866667pt;}
.yc0{bottom:377.666667pt;}
.y26b{bottom:378.946667pt;}
.yec{bottom:379.586667pt;}
.y117{bottom:380.386667pt;}
.y4b{bottom:381.813333pt;}
.y6f{bottom:383.893333pt;}
.y220{bottom:388.386667pt;}
.y1db{bottom:391.426667pt;}
.ya2{bottom:391.906667pt;}
.y246{bottom:394.626667pt;}
.y28{bottom:395.426667pt;}
.yeb{bottom:397.186667pt;}
.y26a{bottom:397.346667pt;}
.y4a{bottom:397.653333pt;}
.y1da{bottom:405.346667pt;}
.y21f{bottom:405.986667pt;}
.ybf{bottom:406.946667pt;}
.ya1{bottom:409.506667pt;}
.y245{bottom:412.226667pt;}
.y27{bottom:413.026667pt;}
.yea{bottom:414.786667pt;}
.y1d9{bottom:423.106667pt;}
.y21e{bottom:423.586667pt;}
.ybe{bottom:424.546667pt;}
.y26{bottom:425.186667pt;}
.y116{bottom:426.146667pt;}
.ya0{bottom:427.266667pt;}
.y244{bottom:429.826667pt;}
.ye9{bottom:432.546667pt;}
.y25{bottom:432.866667pt;}
.y269{bottom:433.666667pt;}
.y1d8{bottom:440.706667pt;}
.y21d{bottom:441.346667pt;}
.ybd{bottom:442.146667pt;}
.y9f{bottom:444.866667pt;}
.y243{bottom:447.426667pt;}
.ye8{bottom:450.146667pt;}
.y268{bottom:452.226667pt;}
.y24{bottom:453.666667pt;}
.y115{bottom:454.946667pt;}
.y1d7{bottom:458.306667pt;}
.y21c{bottom:458.946667pt;}
.ybc{bottom:459.746667pt;}
.y175{bottom:462.133333pt;}
.y172{bottom:462.146667pt;}
.y9e{bottom:462.466667pt;}
.y242{bottom:465.026667pt;}
.ye7{bottom:467.746667pt;}
.y23{bottom:474.306667pt;}
.y1d6{bottom:475.906667pt;}
.ybb{bottom:477.346667pt;}
.y9d{bottom:480.066667pt;}
.y241{bottom:482.786667pt;}
.y114{bottom:483.906667pt;}
.ye6{bottom:485.346667pt;}
.y267{bottom:488.546667pt;}
.y1d5{bottom:493.506667pt;}
.y22{bottom:494.946667pt;}
.yba{bottom:495.106667pt;}
.y9c{bottom:497.666667pt;}
.y21b{bottom:498.466667pt;}
.y240{bottom:500.386667pt;}
.ye5{bottom:502.946667pt;}
.y266{bottom:506.146667pt;}
.y1d4{bottom:511.266667pt;}
.yb9{bottom:512.706667pt;}
.y9b{bottom:515.426667pt;}
.y21a{bottom:515.906667pt;}
.y23f{bottom:517.986667pt;}
.ye4{bottom:520.706667pt;}
.y165{bottom:522.133333pt;}
.y163{bottom:522.146667pt;}
.y65{bottom:522.773333pt;}
.y265{bottom:523.746667pt;}
.y1d3{bottom:526.786667pt;}
.y219{bottom:527.746667pt;}
.yb8{bottom:530.306667pt;}
.y9a{bottom:533.026667pt;}
.y23e{bottom:535.586667pt;}
.y1d2{bottom:535.906667pt;}
.ye3{bottom:538.306667pt;}
.y264{bottom:541.346667pt;}
.y111{bottom:541.666667pt;}
.y21{bottom:543.746667pt;}
.y218{bottom:545.346667pt;}
.yb7{bottom:547.906667pt;}
.y1d1{bottom:548.866667pt;}
.y99{bottom:550.626667pt;}
.y23d{bottom:553.186667pt;}
.ye2{bottom:555.933333pt;}
.y20{bottom:557.533333pt;}
.y263{bottom:559.133333pt;}
.y1d0{bottom:561.853333pt;}
.y217{bottom:562.973333pt;}
.yb6{bottom:565.533333pt;}
.y98{bottom:568.253333pt;}
.y110{bottom:570.493333pt;}
.y23c{bottom:570.973333pt;}
.y1f{bottom:571.453333pt;}
.ye1{bottom:573.533333pt;}
.y1cf{bottom:574.813333pt;}
.y262{bottom:577.533333pt;}
.y216{bottom:580.573333pt;}
.yb5{bottom:584.093333pt;}
.y1e{bottom:585.213333pt;}
.y97{bottom:585.853333pt;}
.y1ce{bottom:587.773333pt;}
.y23b{bottom:588.573333pt;}
.ye0{bottom:591.133333pt;}
.y215{bottom:598.173333pt;}
.y1d{bottom:598.973333pt;}
.y10f{bottom:599.453333pt;}
.y1cd{bottom:600.573333pt;}
.yb4{bottom:602.653333pt;}
.y96{bottom:603.613333pt;}
.y23a{bottom:606.173333pt;}
.y1c{bottom:608.893333pt;}
.y153{bottom:610.333333pt;}
.y1cc{bottom:613.533333pt;}
.y261{bottom:613.853333pt;}
.y214{bottom:615.933333pt;}
.y39{bottom:616.573333pt;}
.y1b{bottom:621.053333pt;}
.y95{bottom:621.213333pt;}
.y239{bottom:623.773333pt;}
.ydf{bottom:626.493333pt;}
.y10e{bottom:628.253333pt;}
.y260{bottom:631.453333pt;}
.y1a{bottom:632.413333pt;}
.y213{bottom:633.533333pt;}
.y94{bottom:638.813333pt;}
.y1cb{bottom:639.453333pt;}
.y238{bottom:641.373333pt;}
.y19{bottom:643.933333pt;}
.yde{bottom:644.093333pt;}
.y25f{bottom:649.853333pt;}
.y212{bottom:651.133333pt;}
.y1ca{bottom:652.413333pt;}
.y18{bottom:655.453333pt;}
.y93{bottom:656.413333pt;}
.y10d{bottom:657.213333pt;}
.ydd{bottom:661.693333pt;}
.y1c9{bottom:665.213333pt;}
.y17{bottom:667.773333pt;}
.y211{bottom:669.533333pt;}
.y25e{bottom:671.133333pt;}
.y92{bottom:674.013333pt;}
.y1c7{bottom:678.186667pt;}
.y16{bottom:679.133333pt;}
.ydc{bottom:679.293333pt;}
.y109{bottom:686.026667pt;}
.y210{bottom:690.813333pt;}
.y1c6{bottom:691.133333pt;}
.y91{bottom:691.773333pt;}
.y237{bottom:693.533333pt;}
.ydb{bottom:697.053333pt;}
.y15{bottom:702.973333pt;}
.y1c5{bottom:704.093333pt;}
.y14e{bottom:706.333333pt;}
.y14b{bottom:706.346667pt;}
.y25d{bottom:707.453333pt;}
.y20f{bottom:708.253333pt;}
.y90{bottom:709.373333pt;}
.y236{bottom:711.133333pt;}
.y14{bottom:712.893333pt;}
.yda{bottom:714.653333pt;}
.y105{bottom:714.973333pt;}
.y1c4{bottom:717.053333pt;}
.y20e{bottom:719.933333pt;}
.y25c{bottom:725.053333pt;}
.y8f{bottom:726.973333pt;}
.y235{bottom:728.733333pt;}
.y1c2{bottom:730.026667pt;}
.yd9{bottom:732.253333pt;}
.y13{bottom:733.213333pt;}
.y20d{bottom:737.533333pt;}
.y25b{bottom:742.653333pt;}
.y1c1{bottom:742.813333pt;}
.y8e{bottom:744.573333pt;}
.yff{bottom:745.053333pt;}
.y234{bottom:746.333333pt;}
.yd8{bottom:749.853333pt;}
.y12{bottom:750.653333pt;}
.y20c{bottom:755.133333pt;}
.y1bf{bottom:755.773333pt;}
.y25a{bottom:760.293333pt;}
.y8d{bottom:762.213333pt;}
.y233{bottom:763.973333pt;}
.yd7{bottom:767.493333pt;}
.y11{bottom:767.813333pt;}
.y1be{bottom:768.773333pt;}
.y20b{bottom:772.773333pt;}
.y13d{bottom:773.560000pt;}
.y13b{bottom:773.573333pt;}
.y10{bottom:777.093333pt;}
.y259{bottom:778.053333pt;}
.y8c{bottom:779.973333pt;}
.y1bd{bottom:781.733333pt;}
.yd6{bottom:785.253333pt;}
.y20a{bottom:790.533333pt;}
.yf{bottom:794.373333pt;}
.y1bc{bottom:794.693333pt;}
.yfe{bottom:795.333333pt;}
.y258{bottom:795.653333pt;}
.y8b{bottom:797.573333pt;}
.y232{bottom:799.333333pt;}
.yd5{bottom:802.853333pt;}
.ye{bottom:807.653333pt;}
.y209{bottom:808.133333pt;}
.yfd{bottom:812.453333pt;}
.y257{bottom:813.253333pt;}
.y8a{bottom:815.173333pt;}
.y231{bottom:816.933333pt;}
.yd{bottom:817.733333pt;}
.yd4{bottom:820.453333pt;}
.y208{bottom:825.733333pt;}
.y256{bottom:830.853333pt;}
.y89{bottom:832.773333pt;}
.yc{bottom:833.413333pt;}
.y230{bottom:834.533333pt;}
.yd3{bottom:838.053333pt;}
.y207{bottom:843.333333pt;}
.y1bb{bottom:846.373333pt;}
.y255{bottom:848.453333pt;}
.y88{bottom:850.373333pt;}
.yb{bottom:852.613333pt;}
.y22f{bottom:852.933333pt;}
.yd2{bottom:856.453333pt;}
.y1ba{bottom:859.333333pt;}
.y206{bottom:860.933333pt;}
.y254{bottom:866.213333pt;}
.y134{bottom:867.800000pt;}
.y132{bottom:867.813333pt;}
.y87{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.y1b9{bottom:872.293333pt;}
.yd1{bottom:874.213333pt;}
.y205{bottom:878.693333pt;}
.y253{bottom:884.613333pt;}
.y1b8{bottom:885.253333pt;}
.y86{bottom:885.733333pt;}
.y22e{bottom:891.653333pt;}
.y204{bottom:896.293333pt;}
.y9{bottom:896.613333pt;}
.y1b7{bottom:898.053333pt;}
.y85{bottom:903.333333pt;}
.y1b6{bottom:911.013333pt;}
.y203{bottom:913.893333pt;}
.y84{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1b4{bottom:923.973333pt;}
.y12e{bottom:929.093333pt;}
.y202{bottom:932.293333pt;}
.y1b2{bottom:938.213333pt;}
.y83{bottom:938.533333pt;}
.y7{bottom:945.093333pt;}
.y201{bottom:953.413333pt;}
.y82{bottom:956.133333pt;}
.y12d{bottom:957.413333pt;}
.y6d{bottom:974.400000pt;}
.y80{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h17{height:5.160000pt;}
.h5e{height:5.562500pt;}
.h55{height:11.346667pt;}
.h52{height:11.506667pt;}
.h58{height:11.520000pt;}
.h50{height:11.538667pt;}
.h57{height:11.552000pt;}
.h2{height:12.000000pt;}
.h49{height:12.146667pt;}
.h4f{height:12.146800pt;}
.h4c{height:12.160000pt;}
.h48{height:12.306667pt;}
.h4b{height:12.320000pt;}
.h4a{height:12.340000pt;}
.h4d{height:12.346667pt;}
.h1b{height:15.040000pt;}
.h23{height:19.680000pt;}
.h15{height:20.728125pt;}
.h30{height:21.426667pt;}
.h54{height:24.466667pt;}
.h5a{height:26.368125pt;}
.hc{height:26.381250pt;}
.h3b{height:27.167646pt;}
.hf{height:27.523125pt;}
.h2a{height:27.628404pt;}
.h2d{height:28.146667pt;}
.h2c{height:28.160000pt;}
.h2e{height:28.186667pt;}
.h2f{height:28.306667pt;}
.h4{height:30.400000pt;}
.h4e{height:31.406250pt;}
.h21{height:32.250000pt;}
.h13{height:35.114107pt;}
.h53{height:35.826667pt;}
.h34{height:36.413125pt;}
.h5{height:36.431250pt;}
.h22{height:37.410000pt;}
.h5c{height:38.413438pt;}
.h28{height:38.877839pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h19{height:40.635000pt;}
.h12{height:41.442606pt;}
.hd{height:42.084375pt;}
.h1c{height:43.215000pt;}
.h2b{height:43.220000pt;}
.h14{height:47.109375pt;}
.h59{height:48.000000pt;}
.h1d{height:48.375000pt;}
.h10{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h5d{height:49.621875pt;}
.h18{height:51.360000pt;}
.h27{height:52.108438pt;}
.h3{height:52.134375pt;}
.h16{height:53.535000pt;}
.h5b{height:54.598989pt;}
.ha{height:57.787500pt;}
.h1a{height:58.563750pt;}
.h33{height:59.186667pt;}
.h31{height:59.192000pt;}
.h32{height:59.200000pt;}
.h41{height:59.346667pt;}
.h3f{height:59.356000pt;}
.h40{height:59.360000pt;}
.h51{height:60.178667pt;}
.h56{height:60.192000pt;}
.he{height:60.288750pt;}
.h29{height:62.781250pt;}
.h46{height:64.352000pt;}
.h47{height:64.360000pt;}
.h9{height:64.500000pt;}
.h38{height:66.580000pt;}
.h24{height:66.625000pt;}
.h26{height:66.750000pt;}
.h7{height:77.951250pt;}
.h20{height:83.400000pt;}
.h8{height:85.785000pt;}
.h3e{height:87.546667pt;}
.h3c{height:87.552000pt;}
.h3d{height:87.560000pt;}
.h37{height:93.586667pt;}
.h35{height:93.592000pt;}
.h36{height:93.600000pt;}
.h39{height:95.356000pt;}
.h3a{height:95.360000pt;}
.h43{height:119.378667pt;}
.h42{height:119.380000pt;}
.h25{height:128.800000pt;}
.h44{height:143.346667pt;}
.h45{height:143.360000pt;}
.h1e{height:408.546667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w1a{width:53.592000pt;}
.wc{width:66.098667pt;}
.we{width:68.832000pt;}
.wb{width:68.952000pt;}
.w3{width:72.952000pt;}
.w12{width:80.026667pt;}
.w11{width:80.146667pt;}
.wf{width:83.986667pt;}
.w10{width:87.378667pt;}
.w15{width:89.946667pt;}
.w18{width:89.952000pt;}
.w19{width:89.960000pt;}
.wd{width:105.120000pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w16{width:231.853333pt;}
.w13{width:231.858667pt;}
.w17{width:231.866667pt;}
.w1d{width:247.573333pt;}
.w14{width:338.293333pt;}
.w1c{width:393.018667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w1b{width:576.120000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:3.780000pt;}
.x2{left:7.192000pt;}
.x13{left:9.592000pt;}
.x2f{left:12.826667pt;}
.x30{left:14.386667pt;}
.x21{left:15.666667pt;}
.x26{left:16.640000pt;}
.x19{left:18.893333pt;}
.x29{left:21.586667pt;}
.x31{left:23.226667pt;}
.x25{left:24.320000pt;}
.x2a{left:25.626667pt;}
.x37{left:27.546667pt;}
.x2c{left:28.480000pt;}
.x32{left:30.106667pt;}
.x23{left:31.040000pt;}
.x3f{left:40.346667pt;}
.x38{left:42.586667pt;}
.x39{left:45.000000pt;}
.x2e{left:47.200000pt;}
.x3a{left:53.920000pt;}
.x3b{left:56.186667pt;}
.x45{left:60.186667pt;}
.x46{left:62.426667pt;}
.x3{left:65.746667pt;}
.x16{left:71.560000pt;}
.x14{left:72.680000pt;}
.x33{left:77.952000pt;}
.x44{left:79.546667pt;}
.x12{left:82.760000pt;}
.x18{left:84.360000pt;}
.x1{left:96.040000pt;}
.x6{left:98.912000pt;}
.x4b{left:101.800000pt;}
.x1f{left:102.912000pt;}
.x35{left:106.106667pt;}
.x47{left:107.866667pt;}
.xc{left:109.952000pt;}
.x1d{left:114.112000pt;}
.x3c{left:115.546667pt;}
.xf{left:117.952000pt;}
.x9{left:136.346667pt;}
.x49{left:141.786667pt;}
.x4a{left:144.186667pt;}
.x42{left:146.426667pt;}
.x43{left:148.826667pt;}
.x4c{left:155.400000pt;}
.x20{left:165.000000pt;}
.x4{left:169.000000pt;}
.x3d{left:175.706667pt;}
.x3e{left:177.946667pt;}
.xb{left:185.626667pt;}
.xe{left:199.706667pt;}
.x1b{left:206.906667pt;}
.x40{left:220.066667pt;}
.x41{left:222.466667pt;}
.x22{left:231.106667pt;}
.x15{left:269.506667pt;}
.x17{left:275.866667pt;}
.x1e{left:282.786667pt;}
.x7{left:283.906667pt;}
.x1c{left:286.626667pt;}
.x48{left:306.306667pt;}
.x34{left:309.506667pt;}
.x24{left:336.226667pt;}
.xd{left:358.626667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.x27{left:405.066667pt;}
.xa{left:408.093333pt;}
.x10{left:434.813333pt;}
.x11{left:436.253333pt;}
.x28{left:489.066667pt;}
.x1a{left:551.336000pt;}
.x2b{left:576.453333pt;}
.x36{left:647.813333pt;}
.x2d{left:656.613333pt;}
}




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