
    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_e606d401d2deb8306a108cfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e62dc61f99d6487c827a03a5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_beae31713270f851113baa46.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_632681b5f6ea01d216821ad2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_914fae6a2e03b403a7bd5419.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5fdad041df40dfd0b67760fe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_703f52cae9de50fd4932a3ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_505de876ac266fe0c240bb6a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9666dbc34afa22a1240881e2.woff2')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_c54032dfa5ab836806b8ddfe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_5f89d77db505f1053d002bcf.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ee2bcb6e64afbf664b9f800d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_2824ecc6559d7a4b4dd0e722.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-89.280000px;}
.v2{vertical-align:-83.160000px;}
.v4{vertical-align:-80.280000px;}
.v1{vertical-align:-9.000000px;}
.v6{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.ls5{letter-spacing:-2.760420px;}
.ls8{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.009360px;}
.ls20{letter-spacing:0.018720px;}
.ls2{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.047520px;}
.ls6{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.076200px;}
.lsc{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.090600px;}
.lsb{letter-spacing:0.092880px;}
.ls14{letter-spacing:0.098640px;}
.ls23{letter-spacing:0.103800px;}
.ls22{letter-spacing:0.118200px;}
.ls17{letter-spacing:0.119400px;}
.lse{letter-spacing:0.126000px;}
.ls1d{letter-spacing:0.134400px;}
.ls1{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.165360px;}
.ls19{letter-spacing:0.168480px;}
.ls1f{letter-spacing:0.189360px;}
.lsd{letter-spacing:0.197280px;}
.ls25{letter-spacing:0.288000px;}
.ls1c{letter-spacing:44.424000px;}
.ls1a{letter-spacing:49.725360px;}
.ls12{letter-spacing:54.926640px;}
.ls7{letter-spacing:56.031120px;}
.ls0{letter-spacing:56.391120px;}
.ls1e{letter-spacing:114.624000px;}
.ls13{letter-spacing:123.480000px;}
.ls15{letter-spacing:471.144000px;}
.lsf{letter-spacing:1339.584000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-60.120000px;}
.ws2{word-spacing:-33.326640px;}
.ws6{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.wsd{word-spacing:-19.872000px;}
.wsc{word-spacing:-18.449040px;}
.ws4{word-spacing:-18.405240px;}
.ws15{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.314640px;}
.ws8{word-spacing:-16.713360px;}
.ws7{word-spacing:-16.272000px;}
.wsa{word-spacing:-13.706520px;}
.ws9{word-spacing:-13.527360px;}
.ws12{word-spacing:-13.428840px;}
.ws13{word-spacing:-13.414440px;}
.ws14{word-spacing:-13.386840px;}
.ws11{word-spacing:-13.329360px;}
.ws10{word-spacing:-13.320000px;}
.wse{word-spacing:-13.310640px;}
.wsf{word-spacing:-8.306640px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-20.016000px;}
._12{margin-left:-5.533920px;}
._11{margin-left:-4.216320px;}
._13{margin-left:-3.134400px;}
._21{margin-left:-2.090640px;}
._f{margin-left:-1.077960px;}
._3{width:1.312680px;}
._d{width:2.592000px;}
._9{width:3.888000px;}
._10{width:4.939440px;}
._a{width:6.480000px;}
._b{width:8.040000px;}
._24{width:9.864000px;}
._27{width:11.215320px;}
._23{width:12.831840px;}
._31{width:14.240160px;}
._22{width:15.336000px;}
._34{width:16.920000px;}
._25{width:17.928000px;}
._2c{width:19.010640px;}
._26{width:21.312000px;}
._2b{width:22.824000px;}
._8{width:23.904000px;}
._2a{width:24.984000px;}
._28{width:26.352000px;}
._29{width:27.432000px;}
._37{width:28.555920px;}
._1e{width:29.620080px;}
._5{width:31.248000px;}
._2d{width:32.328000px;}
._3a{width:33.768000px;}
._2f{width:35.493960px;}
._2e{width:36.648000px;}
._c{width:38.520000px;}
._3b{width:49.725360px;}
._1f{width:61.344000px;}
._20{width:62.424000px;}
._32{width:65.952000px;}
._7{width:75.960000px;}
._19{width:87.646680px;}
._39{width:93.746160px;}
._38{width:94.825080px;}
._14{width:105.048000px;}
._3c{width:129.888000px;}
._2{width:142.020000px;}
._e{width:159.005520px;}
._36{width:166.291920px;}
._6{width:188.040000px;}
._35{width:204.107400px;}
._0{width:505.128000px;}
._18{width:789.288000px;}
._1d{width:844.248000px;}
._30{width:955.848000px;}
._1{width:995.808000px;}
._17{width:1171.224000px;}
._16{width:1180.075800px;}
._33{width:1404.768000px;}
._1c{width:1621.680000px;}
._1b{width:1675.368000px;}
._15{width:1816.005720px;}
._1a{width:1837.854360px;}
.fc8{color:rgb(0,32,96);}
.fc7{color:rgb(51,102,153);}
.fc4{color:transparent;}
.fc3{color:rgb(243,149,120);}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fse{font-size:29.880000px;}
.fsb{font-size:47.880000px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fsa{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs8{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:81.000000px;}
.fs6{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs4{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y2ad{bottom:2.520000px;}
.y2b1{bottom:2.610000px;}
.y213{bottom:2.880000px;}
.y15e{bottom:2.970000px;}
.y161{bottom:3.150000px;}
.y16f{bottom:3.180000px;}
.y2e4{bottom:3.510000px;}
.y1c3{bottom:3.690000px;}
.y24f{bottom:3.780000px;}
.y196{bottom:4.050000px;}
.y18d{bottom:4.140000px;}
.y49{bottom:4.950000px;}
.y4d{bottom:5.040000px;}
.y58{bottom:5.130000px;}
.y1a{bottom:5.400000px;}
.y27e{bottom:5.430000px;}
.y2f5{bottom:5.490000px;}
.y2d{bottom:5.790000px;}
.y26{bottom:7.020000px;}
.y22{bottom:7.200000px;}
.y15{bottom:7.290000px;}
.y14b{bottom:8.370000px;}
.y2c1{bottom:9.450000px;}
.y39{bottom:10.260000px;}
.y18f{bottom:11.700000px;}
.y162{bottom:11.790000px;}
.y5c{bottom:11.820000px;}
.y5e{bottom:11.880000px;}
.y56{bottom:11.970000px;}
.y2e2{bottom:12.420000px;}
.y54{bottom:12.600000px;}
.y2bf{bottom:12.870000px;}
.y1ba{bottom:13.230000px;}
.y120{bottom:14.220000px;}
.y13b{bottom:14.400000px;}
.y60{bottom:15.300000px;}
.y313{bottom:15.480000px;}
.y144{bottom:15.570000px;}
.y128{bottom:15.660000px;}
.y2b0{bottom:16.380000px;}
.y14d{bottom:16.560000px;}
.y2e0{bottom:17.010000px;}
.y12f{bottom:17.280000px;}
.y11c{bottom:17.460000px;}
.y11e{bottom:17.730000px;}
.y12c{bottom:18.090000px;}
.y2b8{bottom:18.540000px;}
.y13d{bottom:18.720000px;}
.y122{bottom:18.810000px;}
.y160{bottom:20.340000px;}
.y191{bottom:20.430000px;}
.y1d8{bottom:20.460000px;}
.y139{bottom:21.060000px;}
.y2ff{bottom:22.050000px;}
.y1a6{bottom:22.410000px;}
.y2e3{bottom:22.500000px;}
.y31b{bottom:24.210000px;}
.y24e{bottom:24.480000px;}
.y28{bottom:25.200000px;}
.y2e{bottom:25.320000px;}
.y4c{bottom:25.470000px;}
.y133{bottom:26.100000px;}
.y2be{bottom:26.640000px;}
.y146{bottom:26.730000px;}
.y29f{bottom:26.910000px;}
.y315{bottom:27.000000px;}
.y29a{bottom:27.630000px;}
.y19{bottom:27.720000px;}
.y2f4{bottom:27.810000px;}
.y2c{bottom:28.200000px;}
.y2af{bottom:30.150000px;}
.y14a{bottom:30.780000px;}
.y21{bottom:30.870000px;}
.y3{bottom:32.310000px;}
.y319{bottom:33.150000px;}
.y2b3{bottom:33.480000px;}
.y38{bottom:34.110000px;}
.y317{bottom:34.470000px;}
.y312{bottom:34.740000px;}
.y13a{bottom:36.720000px;}
.y131{bottom:37.260000px;}
.y2e8{bottom:37.440000px;}
.y2df{bottom:37.530000px;}
.y1b4{bottom:37.620000px;}
.y127{bottom:37.980000px;}
.y12b{bottom:38.790000px;}
.y13f{bottom:38.880000px;}
.y2f3{bottom:38.970000px;}
.y12e{bottom:39.600000px;}
.y2bd{bottom:40.410000px;}
.y1a5{bottom:40.680000px;}
.y208{bottom:40.770000px;}
.y31a{bottom:43.230000px;}
.y2fe{bottom:44.370000px;}
.y1b{bottom:46.080000px;}
.y293{bottom:46.800000px;}
.y30d{bottom:47.700000px;}
.y290{bottom:48.420000px;}
.y132{bottom:48.450000px;}
.y124{bottom:49.140000px;}
.y29e{bottom:49.230000px;}
.y2b{bottom:49.710000px;}
.y299{bottom:49.950000px;}
.y35{bottom:50.040000px;}
.y18{bottom:50.130000px;}
.y149{bottom:51.480000px;}
.y316{bottom:53.460000px;}
.y1d{bottom:53.730000px;}
.y2bc{bottom:54.180000px;}
.y311{bottom:55.440000px;}
.y2de{bottom:57.960000px;}
.y1a4{bottom:59.040000px;}
.y12a{bottom:59.490000px;}
.y2a1{bottom:59.580000px;}
.y20{bottom:60.120000px;}
.y126{bottom:60.300000px;}
.y143{bottom:60.330000px;}
.y2fd{bottom:66.720000px;}
.y2f9{bottom:67.170000px;}
.y295{bottom:67.530000px;}
.y30c{bottom:68.400000px;}
.y28f{bottom:69.120000px;}
.y134{bottom:69.150000px;}
.y29d{bottom:70.020000px;}
.y2a{bottom:70.410000px;}
.y298{bottom:70.650000px;}
.y2a0{bottom:70.740000px;}
.y29c{bottom:70.830000px;}
.y145{bottom:71.490000px;}
.y148{bottom:72.210000px;}
.y34{bottom:72.360000px;}
.y140{bottom:72.450000px;}
.y17{bottom:74.070000px;}
.y310{bottom:75.870000px;}
.y2dd{bottom:76.950000px;}
.y1e8{bottom:77.310000px;}
.y287{bottom:77.850000px;}
.y2ea{bottom:78.480000px;}
.y129{bottom:80.190000px;}
.y1f{bottom:80.820000px;}
.y12d{bottom:81.000000px;}
.y125{bottom:82.620000px;}
.y142{bottom:82.650000px;}
.y2d6{bottom:86.250000px;}
.y2fc{bottom:87.420000px;}
.y294{bottom:88.230000px;}
.y28e{bottom:89.820000px;}
.y297{bottom:91.350000px;}
.y29b{bottom:91.440000px;}
.y147{bottom:92.910000px;}
.y33{bottom:94.770000px;}
.y30f{bottom:94.860000px;}
.y1e7{bottom:95.580000px;}
.y2e7{bottom:95.940000px;}
.y2dc{bottom:95.970000px;}
.y291{bottom:98.550000px;}
.y286{bottom:100.170000px;}
.y2d5{bottom:106.950000px;}
.y2fb{bottom:108.120000px;}
.y283{bottom:109.710000px;}
.y28d{bottom:110.520000px;}
.y30e{bottom:113.760000px;}
.y1e6{bottom:113.940000px;}
.y2db{bottom:114.960000px;}
.y32{bottom:117.090000px;}
.y285{bottom:120.870000px;}
.y2fa{bottom:128.820000px;}
.y28c{bottom:131.220000px;}
.y1e5{bottom:132.210000px;}
.y2e6{bottom:133.860000px;}
.y2da{bottom:133.950000px;}
.yac{bottom:136.800000px;}
.y1dd{bottom:138.420000px;}
.y1a3{bottom:138.600000px;}
.y31{bottom:139.410000px;}
.y284{bottom:141.570000px;}
.y303{bottom:144.000000px;}
.y115{bottom:145.440000px;}
.y27a{bottom:146.520000px;}
.y16b{bottom:149.940000px;}
.y28b{bottom:151.920000px;}
.y1c1{bottom:152.820000px;}
.y2d9{bottom:152.850000px;}
.y210{bottom:153.090000px;}
.yab{bottom:154.980000px;}
.ye{bottom:155.790000px;}
.y2e1{bottom:156.690000px;}
.y14e{bottom:157.680000px;}
.y1dc{bottom:159.750000px;}
.y6d{bottom:161.730000px;}
.y45{bottom:162.090000px;}
.y1f2{bottom:164.340000px;}
.y302{bottom:165.510000px;}
.y114{bottom:167.940000px;}
.y279{bottom:168.840000px;}
.y16a{bottom:169.470000px;}
.ydd{bottom:169.560000px;}
.y247{bottom:171.450000px;}
.y2d8{bottom:171.840000px;}
.y28a{bottom:172.620000px;}
.yaa{bottom:173.160000px;}
.yc1{bottom:173.700000px;}
.y1c0{bottom:174.150000px;}
.y14c{bottom:176.490000px;}
.y1db{bottom:181.080000px;}
.y6c{bottom:183.240000px;}
.y44{bottom:184.860000px;}
.y23b{bottom:185.310000px;}
.y2aa{bottom:185.940000px;}
.y301{bottom:187.110000px;}
.yd{bottom:188.280000px;}
.y20f{bottom:188.550000px;}
.y169{bottom:189.000000px;}
.y113{bottom:190.530000px;}
.y2d7{bottom:190.830000px;}
.ydc{bottom:191.160000px;}
.y278{bottom:191.250000px;}
.ya9{bottom:191.970000px;}
.y289{bottom:193.320000px;}
.yc0{bottom:195.300000px;}
.y1bf{bottom:195.390000px;}
.y2d4{bottom:197.640000px;}
.ya8{bottom:198.000000px;}
.yf6{bottom:198.990000px;}
.y1da{bottom:202.410000px;}
.y1f1{bottom:203.040000px;}
.y43{bottom:205.110000px;}
.y23a{bottom:206.820000px;}
.y2a9{bottom:207.450000px;}
.y168{bottom:208.440000px;}
.y300{bottom:209.430000px;}
.y246{bottom:210.150000px;}
.ya7{bottom:212.670000px;}
.ydb{bottom:212.760000px;}
.y112{bottom:213.120000px;}
.y288{bottom:214.020000px;}
.y1a2{bottom:214.830000px;}
.y1be{bottom:216.720000px;}
.yc{bottom:219.240000px;}
.y265{bottom:221.580000px;}
.y20e{bottom:222.030000px;}
.y6b{bottom:223.650000px;}
.y141{bottom:224.190000px;}
.y42{bottom:225.360000px;}
.y277{bottom:226.620000px;}
.y167{bottom:227.970000px;}
.y2f8{bottom:228.240000px;}
.y2a8{bottom:229.050000px;}
.ybf{bottom:233.910000px;}
.yda{bottom:234.270000px;}
.y111{bottom:235.710000px;}
.y1a1{bottom:236.160000px;}
.yf5{bottom:237.690000px;}
.y1bd{bottom:238.050000px;}
.y1f0{bottom:238.410000px;}
.yb{bottom:240.210000px;}
.y264{bottom:243.090000px;}
.y1d9{bottom:244.980000px;}
.y41{bottom:245.520000px;}
.y276{bottom:245.610000px;}
.y166{bottom:248.220000px;}
.y245{bottom:248.760000px;}
.y2a7{bottom:250.560000px;}
.ybe{bottom:255.510000px;}
.yd9{bottom:255.870000px;}
.y1a0{bottom:257.490000px;}
.y110{bottom:258.300000px;}
.yf4{bottom:259.200000px;}
.y1bc{bottom:259.380000px;}
.y263{bottom:264.690000px;}
.y1d7{bottom:265.230000px;}
.y6a{bottom:265.590000px;}
.y40{bottom:265.770000px;}
.y275{bottom:266.490000px;}
.y165{bottom:268.470000px;}
.y1ef{bottom:271.530000px;}
.y2a6{bottom:272.160000px;}
.ybd{bottom:277.020000px;}
.yd8{bottom:277.380000px;}
.ya{bottom:277.470000px;}
.y19f{bottom:278.850000px;}
.y1bb{bottom:280.740000px;}
.yf3{bottom:280.830000px;}
.y69{bottom:282.000000px;}
.y239{bottom:284.160000px;}
.y244{bottom:284.250000px;}
.y274{bottom:285.060000px;}
.y3f{bottom:285.960000px;}
.y164{bottom:288.750000px;}
.y2a5{bottom:293.790000px;}
.y262{bottom:296.400000px;}
.y10f{bottom:297.300000px;}
.yd7{bottom:299.010000px;}
.y19e{bottom:300.090000px;}
.y1b9{bottom:301.980000px;}
.y1d6{bottom:302.790000px;}
.y3e{bottom:306.210000px;}
.y9{bottom:306.660000px;}
.y163{bottom:309.000000px;}
.ya6{bottom:309.630000px;}
.ybc{bottom:312.510000px;}
.y2a4{bottom:315.300000px;}
.y243{bottom:317.730000px;}
.y10e{bottom:318.810000px;}
.yf2{bottom:319.440000px;}
.y19d{bottom:321.420000px;}
.y238{bottom:322.860000px;}
.y15f{bottom:329.250000px;}
.ya5{bottom:330.330000px;}
.y261{bottom:332.400000px;}
.y3d{bottom:334.380000px;}
.y2a3{bottom:336.900000px;}
.y13e{bottom:336.990000px;}
.yd6{bottom:337.620000px;}
.y1d5{bottom:340.320000px;}
.y10d{bottom:340.410000px;}
.yf1{bottom:341.040000px;}
.y1b8{bottom:341.670000px;}
.y19c{bottom:342.750000px;}
.ybb{bottom:345.900000px;}
.ya4{bottom:351.030000px;}
.y8{bottom:355.620000px;}
.yd5{bottom:359.220000px;}
.y237{bottom:361.560000px;}
.y260{bottom:362.100000px;}
.y3c{bottom:362.640000px;}
.y1b7{bottom:362.910000px;}
.y19b{bottom:364.080000px;}
.y68{bottom:365.880000px;}
.y15d{bottom:366.690000px;}
.ya3{bottom:372.630000px;}
.yf0{bottom:376.410000px;}
.y2f7{bottom:376.950000px;}
.y7{bottom:377.940000px;}
.y1d4{bottom:378.930000px;}
.y10c{bottom:379.020000px;}
.yd4{bottom:380.820000px;}
.y2a2{bottom:381.540000px;}
.y1b6{bottom:384.240000px;}
.y19a{bottom:385.410000px;}
.y67{bottom:386.670000px;}
.y22d{bottom:390.630000px;}
.y3b{bottom:390.900000px;}
.ya2{bottom:394.140000px;}
.y236{bottom:396.930000px;}
.y6{bottom:400.350000px;}
.y10b{bottom:400.620000px;}
.yd3{bottom:402.330000px;}
.y15c{bottom:402.600000px;}
.y25f{bottom:404.040000px;}
.y1b5{bottom:404.490000px;}
.y199{bottom:406.650000px;}
.y2d3{bottom:406.920000px;}
.y66{bottom:407.460000px;}
.yef{bottom:409.890000px;}
.y22c{bottom:412.230000px;}
.ya1{bottom:415.740000px;}
.y1d3{bottom:416.190000px;}
.y26f{bottom:416.280000px;}
.y3a{bottom:419.160000px;}
.y10a{bottom:422.130000px;}
.y5{bottom:423.660000px;}
.yd2{bottom:423.930000px;}
.y198{bottom:427.980000px;}
.y13c{bottom:429.330000px;}
.y235{bottom:430.410000px;}
.y22b{bottom:433.740000px;}
.y37{bottom:436.080000px;}
.ya0{bottom:437.250000px;}
.y26e{bottom:438.600000px;}
.y15b{bottom:439.860000px;}
.y1b3{bottom:442.020000px;}
.y4{bottom:442.290000px;}
.y25e{bottom:442.650000px;}
.y65{bottom:447.690000px;}
.y2d2{bottom:448.050000px;}
.y197{bottom:449.310000px;}
.y1d2{bottom:454.800000px;}
.y20d{bottom:456.780000px;}
.y9f{bottom:458.850000px;}
.y109{bottom:460.830000px;}
.y26d{bottom:460.920000px;}
.yd1{bottom:462.540000px;}
.y36{bottom:463.170000px;}
.y2d1{bottom:467.040000px;}
.y138{bottom:467.940000px;}
.y2f6{bottom:469.380000px;}
.y195{bottom:470.640000px;}
.y22a{bottom:472.440000px;}
.y185{bottom:477.840000px;}
.y15a{bottom:478.470000px;}
.y25d{bottom:481.350000px;}
.y108{bottom:482.340000px;}
.yd0{bottom:484.140000px;}
.y64{bottom:487.290000px;}
.y30{bottom:490.170000px;}
.y1d1{bottom:490.260000px;}
.y229{bottom:491.250000px;}
.y194{bottom:491.880000px;}
.y26c{bottom:496.380000px;}
.y1b2{bottom:496.740000px;}
.y9e{bottom:497.550000px;}
.y25c{bottom:502.950000px;}
.y20c{bottom:503.490000px;}
.y107{bottom:503.940000px;}
.y2d0{bottom:504.210000px;}
.ycf{bottom:505.650000px;}
.y63{bottom:509.340000px;}
.y228{bottom:511.500000px;}
.y296{bottom:511.770000px;}
.y193{bottom:513.210000px;}
.y159{bottom:513.930000px;}
.y9d{bottom:519.060000px;}
.y184{bottom:522.120000px;}
.y1d0{bottom:523.470000px;}
.y25b{bottom:524.460000px;}
.y137{bottom:524.550000px;}
.y106{bottom:525.540000px;}
.y2cf{bottom:525.720000px;}
.y26b{bottom:529.770000px;}
.y227{bottom:531.750000px;}
.y192{bottom:534.540000px;}
.y1b1{bottom:535.440000px;}
.y62{bottom:538.050000px;}
.y2f2{bottom:539.310000px;}
.yce{bottom:541.110000px;}
.y20b{bottom:545.880000px;}
.y25a{bottom:546.060000px;}
.y2ce{bottom:547.320000px;}
.y158{bottom:547.410000px;}
.y226{bottom:552.000000px;}
.y190{bottom:554.790000px;}
.y9c{bottom:557.760000px;}
.y1ee{bottom:559.920000px;}
.y183{bottom:560.820000px;}
.y273{bottom:562.710000px;}
.y105{bottom:564.150000px;}
.y20a{bottom:566.130000px;}
.y2cd{bottom:568.920000px;}
.y1b0{bottom:569.370000px;}
.y225{bottom:572.250000px;}
.y61{bottom:573.420000px;}
.yba{bottom:574.410000px;}
.ycd{bottom:574.590000px;}
.y9b{bottom:579.270000px;}
.y259{bottom:584.670000px;}
.y104{bottom:585.750000px;}
.y209{bottom:586.380000px;}
.y136{bottom:588.180000px;}
.y5f{bottom:592.140000px;}
.y18e{bottom:592.320000px;}
.y224{bottom:592.500000px;}
.y272{bottom:598.170000px;}
.y182{bottom:599.430000px;}
.y1ed{bottom:605.730000px;}
.y258{bottom:606.270000px;}
.y1af{bottom:606.630000px;}
.y103{bottom:607.260000px;}
.y2cc{bottom:607.530000px;}
.y135{bottom:610.500000px;}
.y223{bottom:612.750000px;}
.yb9{bottom:613.020000px;}
.y9a{bottom:614.730000px;}
.y271{bottom:617.160000px;}
.y7c{bottom:621.480000px;}
.y292{bottom:623.100000px;}
.y207{bottom:626.880000px;}
.y257{bottom:627.780000px;}
.y2cb{bottom:629.130000px;}
.y130{bottom:629.310000px;}
.y18c{bottom:629.760000px;}
.y31c{bottom:630.480000px;}
.y2f1{bottom:631.740000px;}
.y242{bottom:632.190000px;}
.y222{bottom:633.000000px;}
.y27d{bottom:634.140000px;}
.y270{bottom:634.260000px;}
.y5d{bottom:636.150000px;}
.y181{bottom:638.130000px;}
.y1ae{bottom:645.240000px;}
.y102{bottom:645.960000px;}
.y99{bottom:648.120000px;}
.y318{bottom:648.210000px;}
.y256{bottom:649.380000px;}
.y2f{bottom:649.470000px;}
.y1ec{bottom:650.010000px;}
.yee{bottom:650.550000px;}
.y2ca{bottom:650.640000px;}
.yb8{bottom:651.720000px;}
.y221{bottom:653.250000px;}
.y241{bottom:653.790000px;}
.y7b{bottom:660.180000px;}
.y101{bottom:667.470000px;}
.y18b{bottom:668.460000px;}
.y1eb{bottom:668.820000px;}
.y2c9{bottom:672.240000px;}
.yed{bottom:673.050000px;}
.yb7{bottom:673.230000px;}
.y5b{bottom:673.500000px;}
.y240{bottom:675.390000px;}
.y29{bottom:676.380000px;}
.y180{bottom:676.770000px;}
.y2f0{bottom:679.380000px;}
.y1ad{bottom:680.730000px;}
.y206{bottom:684.870000px;}
.y255{bottom:688.020000px;}
.y100{bottom:689.100000px;}
.y220{bottom:693.780000px;}
.yb6{bottom:694.860000px;}
.y7a{bottom:696.930000px;}
.y18a{bottom:705.750000px;}
.y205{bottom:706.200000px;}
.y314{bottom:707.640000px;}
.y1ea{bottom:709.350000px;}
.y254{bottom:709.620000px;}
.yec{bottom:711.780000px;}
.y21f{bottom:714.030000px;}
.y1ac{bottom:714.120000px;}
.y5a{bottom:714.750000px;}
.y2c8{bottom:715.380000px;}
.y17f{bottom:715.470000px;}
.yb5{bottom:716.370000px;}
.y123{bottom:718.440000px;}
.y8e{bottom:718.620000px;}
.y27{bottom:721.590000px;}
.y2ef{bottom:722.130000px;}
.y204{bottom:727.440000px;}
.yff{bottom:727.800000px;}
.y1e9{bottom:729.600000px;}
.y282{bottom:731.220000px;}
.y79{bottom:733.650000px;}
.y21e{bottom:734.280000px;}
.y2c7{bottom:736.980000px;}
.yb4{bottom:737.970000px;}
.y8d{bottom:739.320000px;}
.y59{bottom:742.290000px;}
.y189{bottom:744.360000px;}
.y234{bottom:745.800000px;}
.y253{bottom:748.320000px;}
.y203{bottom:748.770000px;}
.yfe{bottom:749.310000px;}
.y1e4{bottom:749.850000px;}
.yeb{bottom:750.390000px;}
.y23f{bottom:752.730000px;}
.y17e{bottom:754.080000px;}
.y21d{bottom:754.530000px;}
.y2ee{bottom:759.300000px;}
.y57{bottom:759.660000px;}
.yb3{bottom:761.370000px;}
.y78{bottom:765.960000px;}
.y25{bottom:766.770000px;}
.y252{bottom:767.040000px;}
.y202{bottom:770.100000px;}
.yea{bottom:771.990000px;}
.y21c{bottom:774.780000px;}
.y2c6{bottom:775.590000px;}
.y8c{bottom:780.810000px;}
.y2ed{bottom:782.520000px;}
.y188{bottom:783.060000px;}
.y55{bottom:783.240000px;}
.y233{bottom:784.500000px;}
.yb2{bottom:784.680000px;}
.yfd{bottom:788.010000px;}
.y251{bottom:790.800000px;}
.y23e{bottom:791.340000px;}
.y201{bottom:791.430000px;}
.yf{bottom:791.520000px;}
.y17d{bottom:792.780000px;}
.ye9{bottom:793.500000px;}
.y24{bottom:793.680000px;}
.y21b{bottom:795.030000px;}
.y30b{bottom:796.290000px;}
.y2c5{bottom:797.190000px;}
.y77{bottom:803.850000px;}
.ycc{bottom:804.660000px;}
.y232{bottom:806.100000px;}
.yb1{bottom:806.280000px;}
.yfc{bottom:809.520000px;}
.y2ec{bottom:810.420000px;}
.y17c{bottom:811.590000px;}
.y200{bottom:812.760000px;}
.y250{bottom:814.470000px;}
.ye8{bottom:815.100000px;}
.y21a{bottom:815.280000px;}
.y187{bottom:818.430000px;}
.y2c4{bottom:818.700000px;}
.y8b{bottom:819.420000px;}
.y53{bottom:820.590000px;}
.y1cf{bottom:825.180000px;}
.y23{bottom:825.900000px;}
.y23d{bottom:826.800000px;}
.y157{bottom:830.310000px;}
.yfb{bottom:831.120000px;}
.y121{bottom:831.300000px;}
.y17b{bottom:831.840000px;}
.y1ff{bottom:834.000000px;}
.ye7{bottom:836.610000px;}
.y2bb{bottom:837.510000px;}
.y24d{bottom:838.140000px;}
.y8a{bottom:840.930000px;}
.ycb{bottom:843.360000px;}
.y231{bottom:844.710000px;}
.yb0{bottom:844.890000px;}
.y1e{bottom:845.430000px;}
.y76{bottom:846.150000px;}
.y2eb{bottom:849.120000px;}
.y186{bottom:851.910000px;}
.y219{bottom:852.000000px;}
.y17a{bottom:852.090000px;}
.y2c3{bottom:853.530000px;}
.y1fe{bottom:855.330000px;}
.y23c{bottom:860.280000px;}
.y89{bottom:862.530000px;}
.y52{bottom:863.070000px;}
.y230{bottom:866.310000px;}
.yaf{bottom:866.490000px;}
.y98{bottom:866.940000px;}
.yfa{bottom:867.480000px;}
.y2e9{bottom:867.840000px;}
.y1ce{bottom:869.460000px;}
.y2c2{bottom:869.640000px;}
.y11f{bottom:870.000000px;}
.y218{bottom:872.250000px;}
.y179{bottom:872.340000px;}
.y1c{bottom:872.520000px;}
.y156{bottom:874.590000px;}
.ye6{bottom:875.310000px;}
.y1fd{bottom:876.660000px;}
.yca{bottom:881.970000px;}
.y75{bottom:882.960000px;}
.y88{bottom:883.230000px;}
.y2c0{bottom:885.660000px;}
.y27b{bottom:887.460000px;}
.y1cd{bottom:888.270000px;}
.y27c{bottom:890.250000px;}
.y51{bottom:890.970000px;}
.y178{bottom:892.590000px;}
.ye5{bottom:896.820000px;}
.y1fc{bottom:897.990000px;}
.y1e3{bottom:899.340000px;}
.y24c{bottom:899.970000px;}
.y22f{bottom:901.680000px;}
.yae{bottom:901.860000px;}
.yc9{bottom:903.570000px;}
.y87{bottom:903.930000px;}
.y11d{bottom:904.110000px;}
.y97{bottom:905.640000px;}
.y1cc{bottom:908.520000px;}
.y50{bottom:909.780000px;}
.y177{bottom:912.840000px;}
.y155{bottom:913.200000px;}
.y2b7{bottom:915.540000px;}
.ye4{bottom:918.420000px;}
.y1fb{bottom:919.230000px;}
.y74{bottom:919.680000px;}
.y1e2{bottom:920.670000px;}
.y86{bottom:924.630000px;}
.yc8{bottom:925.080000px;}
.y30a{bottom:926.250000px;}
.y217{bottom:926.970000px;}
.y96{bottom:927.150000px;}
.y1cb{bottom:928.770000px;}
.yf9{bottom:930.300000px;}
.y2ba{bottom:931.560000px;}
.y176{bottom:933.090000px;}
.y154{bottom:934.800000px;}
.y22e{bottom:935.160000px;}
.yad{bottom:935.340000px;}
.y24b{bottom:937.140000px;}
.y1fa{bottom:940.560000px;}
.y1e1{bottom:941.910000px;}
.y85{bottom:945.330000px;}
.y16{bottom:946.140000px;}
.yc7{bottom:946.680000px;}
.y216{bottom:947.220000px;}
.y2b9{bottom:947.580000px;}
.y95{bottom:948.750000px;}
.y1ca{bottom:949.020000px;}
.yf8{bottom:951.900000px;}
.y73{bottom:951.990000px;}
.y175{bottom:953.340000px;}
.y4f{bottom:953.700000px;}
.y11b{bottom:953.970000px;}
.ye3{bottom:957.120000px;}
.y1f9{bottom:961.890000px;}
.y1e0{bottom:963.240000px;}
.y2b2{bottom:963.690000px;}
.y2e5{bottom:964.770000px;}
.y281{bottom:965.220000px;}
.y309{bottom:966.210000px;}
.y84{bottom:966.750000px;}
.y215{bottom:967.470000px;}
.yc6{bottom:968.190000px;}
.y1c9{bottom:969.270000px;}
.y93{bottom:970.260000px;}
.y24a{bottom:972.060000px;}
.y153{bottom:973.410000px;}
.y174{bottom:973.590000px;}
.y94{bottom:976.290000px;}
.y4e{bottom:977.190000px;}
.ye2{bottom:978.630000px;}
.y2b6{bottom:979.710000px;}
.y1f8{bottom:983.220000px;}
.y26a{bottom:983.400000px;}
.y1df{bottom:984.570000px;}
.y214{bottom:987.720000px;}
.y83{bottom:989.700000px;}
.y72{bottom:989.880000px;}
.yc5{bottom:990.510000px;}
.y173{bottom:993.840000px;}
.y249{bottom:994.920000px;}
.y152{bottom:995.010000px;}
.y2b5{bottom:995.730000px;}
.y1f7{bottom:1004.550000px;}
.y269{bottom:1005.720000px;}
.y1de{bottom:1005.900000px;}
.y308{bottom:1006.080000px;}
.y11a{bottom:1008.690000px;}
.y92{bottom:1008.960000px;}
.y1ab{bottom:1011.030000px;}
.y82{bottom:1011.210000px;}
.yc4{bottom:1012.110000px;}
.y14{bottom:1012.920000px;}
.y172{bottom:1014.090000px;}
.y151{bottom:1016.520000px;}
.ye1{bottom:1017.330000px;}
.y248{bottom:1017.690000px;}
.y4b{bottom:1021.110000px;}
.y1f6{bottom:1024.800000px;}
.y212{bottom:1025.250000px;}
.y2b4{bottom:1025.610000px;}
.y71{bottom:1026.510000px;}
.y1c8{bottom:1027.140000px;}
.y268{bottom:1028.040000px;}
.y307{bottom:1028.400000px;}
.y91{bottom:1030.470000px;}
.y81{bottom:1031.910000px;}
.y280{bottom:1033.260000px;}
.yc3{bottom:1033.620000px;}
.y171{bottom:1034.340000px;}
.y150{bottom:1038.120000px;}
.ye0{bottom:1038.840000px;}
.y2ae{bottom:1041.630000px;}
.y13{bottom:1045.140000px;}
.y1c7{bottom:1048.470000px;}
.y306{bottom:1050.000000px;}
.y267{bottom:1050.360000px;}
.y119{bottom:1051.890000px;}
.y90{bottom:1052.070000px;}
.y80{bottom:1052.610000px;}
.y70{bottom:1054.410000px;}
.y170{bottom:1054.590000px;}
.yc2{bottom:1055.220000px;}
.y14f{bottom:1059.720000px;}
.ydf{bottom:1060.440000px;}
.y211{bottom:1061.160000px;}
.y1f5{bottom:1062.240000px;}
.y4a{bottom:1065.120000px;}
.y1c6{bottom:1069.800000px;}
.y305{bottom:1071.510000px;}
.y27f{bottom:1072.320000px;}
.y266{bottom:1072.680000px;}
.y7f{bottom:1073.310000px;}
.y118{bottom:1073.490000px;}
.y1aa{bottom:1074.030000px;}
.y16e{bottom:1074.840000px;}
.y6f{bottom:1076.760000px;}
.y2ac{bottom:1085.310000px;}
.y8f{bottom:1088.460000px;}
.y48{bottom:1088.640000px;}
.y1c5{bottom:1091.160000px;}
.y304{bottom:1093.140000px;}
.yf7{bottom:1093.860000px;}
.y7e{bottom:1094.040000px;}
.y1a9{bottom:1094.310000px;}
.y117{bottom:1095.120000px;}
.yde{bottom:1098.360000px;}
.y1f4{bottom:1099.800000px;}
.y12{bottom:1101.420000px;}
.y1c4{bottom:1112.490000px;}
.y1a8{bottom:1114.560000px;}
.y16d{bottom:1115.280000px;}
.y6e{bottom:1115.460000px;}
.y47{bottom:1116.360000px;}
.y2ab{bottom:1119.510000px;}
.y7d{bottom:1125.810000px;}
.y116{bottom:1131.480000px;}
.y1c2{bottom:1133.730000px;}
.y1a7{bottom:1134.810000px;}
.y16c{bottom:1135.530000px;}
.y11{bottom:1137.060000px;}
.y46{bottom:1137.780000px;}
.y1f3{bottom:1138.500000px;}
.y2{bottom:1159.380000px;}
.y1{bottom:1181.700000px;}
.y10{bottom:1202.970000px;}
.h49{height:13.770000px;}
.h4e{height:13.860000px;}
.h40{height:15.480000px;}
.h2e{height:15.570000px;}
.h31{height:17.190000px;}
.h32{height:17.220000px;}
.h33{height:17.280000px;}
.h38{height:17.310000px;}
.h36{height:18.270000px;}
.h3b{height:18.300000px;}
.h34{height:18.360000px;}
.h13{height:20.430000px;}
.h15{height:20.460000px;}
.h17{height:20.520000px;}
.h1a{height:20.610000px;}
.h43{height:20.700000px;}
.h27{height:22.320000px;}
.h44{height:22.410000px;}
.hc{height:23.940000px;}
.hb{height:24.120000px;}
.h6{height:24.210000px;}
.h4c{height:27.630000px;}
.h24{height:31.140000px;}
.h1b{height:34.140000px;}
.h1c{height:34.290000px;}
.h19{height:34.380000px;}
.h30{height:34.470000px;}
.h3d{height:34.590000px;}
.h29{height:35.640000px;}
.h18{height:35.730000px;}
.h3a{height:36.630000px;}
.h51{height:37.980000px;}
.h16{height:40.950000px;}
.h41{height:41.400000px;}
.h4a{height:41.430000px;}
.hd{height:42.120000px;}
.hf{height:42.240000px;}
.h2c{height:44.640000px;}
.h4d{height:45.900000px;}
.h23{height:46.890000px;}
.h21{height:49.937344px;}
.h4{height:50.062500px;}
.h11{height:51.030000px;}
.h39{height:51.750000px;}
.h1d{height:53.121094px;}
.h28{height:53.640000px;}
.h42{height:54.140625px;}
.h3c{height:54.900000px;}
.h3f{height:55.020000px;}
.h2f{height:56.320312px;}
.h58{height:58.620000px;}
.h12{height:59.797090px;}
.h35{height:61.558418px;}
.h22{height:62.703281px;}
.h8{height:63.000000px;}
.h54{height:66.960000px;}
.h14{height:68.710781px;}
.h9{height:70.650000px;}
.h37{height:73.260000px;}
.h1e{height:74.004654px;}
.h2{height:75.093750px;}
.h4b{height:75.690000px;}
.h4f{height:75.780000px;}
.h26{height:86.070000px;}
.he{height:87.330000px;}
.h1f{height:87.484219px;}
.h57{height:87.840000px;}
.h2a{height:89.370000px;}
.h7{height:90.990000px;}
.h53{height:93.960000px;}
.h20{height:95.603730px;}
.h2d{height:96.870938px;}
.ha{height:97.740000px;}
.h5{height:100.250156px;}
.h46{height:105.150000px;}
.h47{height:108.270000px;}
.h48{height:108.360000px;}
.h2b{height:109.830000px;}
.h25{height:109.890000px;}
.h3{height:125.031094px;}
.h56{height:129.240000px;}
.h55{height:145.740000px;}
.h3e{height:146.430000px;}
.h10{height:156.330000px;}
.h52{height:187.320000px;}
.h50{height:206.310000px;}
.h45{height:230.940000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w29{width:6.390000px;}
.w30{width:65.430000px;}
.w34{width:71.400000px;}
.w31{width:71.820000px;}
.w32{width:71.850000px;}
.w33{width:71.910000px;}
.w8{width:76.530000px;}
.w2f{width:85.350000px;}
.wb{width:87.150000px;}
.w9{width:94.950000px;}
.wc{width:105.840000px;}
.w10{width:116.220000px;}
.w28{width:130.890000px;}
.w24{width:131.340000px;}
.w17{width:144.210000px;}
.w27{width:144.270000px;}
.w1a{width:144.480000px;}
.w14{width:144.570000px;}
.w38{width:145.890000px;}
.w26{width:147.720000px;}
.w2a{width:149.790000px;}
.w19{width:154.980000px;}
.w1d{width:156.810000px;}
.w2c{width:160.200000px;}
.w2d{width:160.230000px;}
.w15{width:161.100000px;}
.w12{width:163.560000px;}
.w18{width:169.680000px;}
.w25{width:174.870000px;}
.w1c{width:183.780000px;}
.w1e{width:186.120000px;}
.w16{width:202.350000px;}
.w2e{width:224.100000px;}
.w6{width:250.500000px;}
.w3{width:253.200000px;}
.w5{width:253.560000px;}
.w39{width:275.520000px;}
.w22{width:277.500000px;}
.w3a{width:292.530000px;}
.we{width:296.670000px;}
.wf{width:296.850000px;}
.w1f{width:356.610000px;}
.w20{width:358.080000px;}
.w35{width:358.770000px;}
.w36{width:360.690000px;}
.w13{width:364.530000px;}
.w37{width:422.130000px;}
.w3b{width:445.470000px;}
.w23{width:454.920000px;}
.w4{width:479.760000px;}
.w7{width:482.730000px;}
.wd{width:526.470000px;}
.w1b{width:528.150000px;}
.w2b{width:545.970000px;}
.wa{width:552.120000px;}
.w21{width:715.500000px;}
.w1{width:892.500000px;}
.w11{width:892.529973px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.xc{left:1.350000px;}
.x96{left:3.510000px;}
.x94{left:4.950000px;}
.x38{left:7.020000px;}
.x28{left:9.000000px;}
.x47{left:10.260000px;}
.x49{left:11.790000px;}
.x3a{left:13.410000px;}
.x98{left:15.030000px;}
.x3b{left:16.560000px;}
.x36{left:18.900000px;}
.x45{left:20.250000px;}
.x3c{left:22.050000px;}
.x35{left:23.130000px;}
.x44{left:25.200000px;}
.x48{left:26.820000px;}
.xa4{left:27.990000px;}
.x32{left:29.160000px;}
.x95{left:30.510000px;}
.x33{left:31.770000px;}
.x2f{left:33.660000px;}
.x46{left:34.920000px;}
.x89{left:36.390000px;}
.x9d{left:37.620000px;}
.x39{left:39.090000px;}
.x9a{left:40.500000px;}
.x2c{left:42.300000px;}
.x99{left:43.650000px;}
.x30{left:44.820000px;}
.x41{left:45.840000px;}
.x34{left:47.280000px;}
.x43{left:48.810000px;}
.x4a{left:50.310000px;}
.x97{left:52.470000px;}
.xa8{left:54.750000px;}
.x37{left:60.840000px;}
.x2e{left:62.850000px;}
.x1b{left:66.149987px;}
.x1{left:67.319987px;}
.x31{left:70.860000px;}
.x5e{left:72.630000px;}
.x20{left:73.979987px;}
.x2a{left:75.690000px;}
.x9b{left:78.120000px;}
.x4d{left:79.740000px;}
.x1a{left:83.879987px;}
.x5{left:85.049987px;}
.xe{left:86.130000px;}
.xa{left:87.480000px;}
.x3d{left:92.340000px;}
.x25{left:94.319987px;}
.x7{left:95.939987px;}
.x11{left:102.329987px;}
.x18{left:104.579987px;}
.x50{left:108.030000px;}
.x27{left:109.980000px;}
.xab{left:112.800000px;}
.x8a{left:116.279987px;}
.x19{left:121.499987px;}
.xae{left:123.870000px;}
.xa7{left:124.950000px;}
.xa6{left:127.560000px;}
.x51{left:129.180000px;}
.x85{left:136.800000px;}
.x8c{left:138.149987px;}
.x4e{left:144.030000px;}
.x52{left:146.280000px;}
.x54{left:147.450000px;}
.x59{left:150.060000px;}
.x55{left:151.230000px;}
.x58{left:154.200000px;}
.x53{left:155.460000px;}
.x3f{left:158.940000px;}
.x56{left:160.500000px;}
.xf{left:163.470000px;}
.x7e{left:164.640000px;}
.x57{left:166.710000px;}
.x5a{left:168.510000px;}
.x91{left:171.900000px;}
.x7d{left:172.920000px;}
.x12{left:174.090000px;}
.x73{left:175.980000px;}
.x62{left:177.690000px;}
.x60{left:180.300000px;}
.xa9{left:182.729987px;}
.x7c{left:187.500000px;}
.x5d{left:189.119987px;}
.x26{left:192.449987px;}
.x66{left:200.190000px;}
.x75{left:202.260000px;}
.x67{left:203.970000px;}
.x76{left:206.130000px;}
.x17{left:208.829987px;}
.x70{left:210.630000px;}
.x64{left:212.520000px;}
.x6f{left:214.410000px;}
.x63{left:216.300000px;}
.x71{left:219.000000px;}
.x68{left:221.070000px;}
.x61{left:223.230000px;}
.x6e{left:224.670000px;}
.x65{left:226.470000px;}
.x74{left:228.450000px;}
.x16{left:231.779987px;}
.x69{left:236.010000px;}
.x3e{left:237.540000px;}
.x10{left:259.140000px;}
.x84{left:262.109987px;}
.x83{left:266.159987px;}
.x86{left:268.860000px;}
.x81{left:271.649987px;}
.x29{left:274.260000px;}
.x6d{left:279.479987px;}
.x13{left:280.650000px;}
.x82{left:281.729987px;}
.x9c{left:288.569987px;}
.x9e{left:291.810000px;}
.x79{left:299.639987px;}
.x1f{left:301.079987px;}
.x7b{left:306.569987px;}
.x6b{left:312.959987px;}
.x72{left:318.539987px;}
.x5c{left:323.579987px;}
.x7a{left:326.279987px;}
.x78{left:329.969987px;}
.x4c{left:331.769987px;}
.x1c{left:335.099973px;}
.xd{left:338.700000px;}
.xb{left:341.040000px;}
.x21{left:346.439987px;}
.x5f{left:350.850000px;}
.x22{left:352.829987px;}
.x1e{left:357.869987px;}
.xad{left:361.380000px;}
.x9f{left:363.990000px;}
.x23{left:366.149987px;}
.x24{left:368.669987px;}
.xa5{left:380.279987px;}
.xaa{left:382.260000px;}
.x14{left:383.700000px;}
.xac{left:385.769987px;}
.x92{left:390.180000px;}
.x90{left:413.759987px;}
.x40{left:422.040000px;}
.xa0{left:429.780000px;}
.x2d{left:436.080000px;}
.x4f{left:437.160000px;}
.x87{left:444.540000px;}
.x6c{left:445.979987px;}
.x2{left:448.679987px;}
.xa1{left:501.990000px;}
.x93{left:551.130000px;}
.x77{left:570.479987px;}
.x4b{left:571.559987px;}
.xa2{left:574.260000px;}
.x42{left:579.570000px;}
.x1d{left:581.189987px;}
.x5b{left:591.539987px;}
.x88{left:593.070000px;}
.x7f{left:596.309987px;}
.x6a{left:598.289987px;}
.x2b{left:638.790000px;}
.x80{left:641.759987px;}
.xa3{left:646.530000px;}
.x8f{left:656.550000px;}
.x8{left:678.000000px;}
.x15{left:681.270000px;}
.x9{left:718.529987px;}
.x8d{left:755.159987px;}
.x3{left:763.979987px;}
.x8e{left:782.909987px;}
.x4{left:807.569987px;}
.x6{left:809.819987px;}
.x8b{left:825.299987px;}
@media print{
.v3{vertical-align:-79.360000pt;}
.v2{vertical-align:-73.920000pt;}
.v4{vertical-align:-71.360000pt;}
.v1{vertical-align:-8.000000pt;}
.v6{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.ls5{letter-spacing:-2.453707pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.008320pt;}
.ls20{letter-spacing:0.016640pt;}
.ls2{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.042240pt;}
.ls6{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.067733pt;}
.lsc{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.080533pt;}
.lsb{letter-spacing:0.082560pt;}
.ls14{letter-spacing:0.087680pt;}
.ls23{letter-spacing:0.092267pt;}
.ls22{letter-spacing:0.105067pt;}
.ls17{letter-spacing:0.106133pt;}
.lse{letter-spacing:0.112000pt;}
.ls1d{letter-spacing:0.119467pt;}
.ls1{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.146987pt;}
.ls19{letter-spacing:0.149760pt;}
.ls1f{letter-spacing:0.168320pt;}
.lsd{letter-spacing:0.175360pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:39.488000pt;}
.ls1a{letter-spacing:44.200320pt;}
.ls12{letter-spacing:48.823680pt;}
.ls7{letter-spacing:49.805440pt;}
.ls0{letter-spacing:50.125440pt;}
.ls1e{letter-spacing:101.888000pt;}
.ls13{letter-spacing:109.760000pt;}
.ls15{letter-spacing:418.794667pt;}
.lsf{letter-spacing:1190.741333pt;}
.wsb{word-spacing:-53.440000pt;}
.ws2{word-spacing:-29.623680pt;}
.ws6{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.wsd{word-spacing:-17.664000pt;}
.wsc{word-spacing:-16.399147pt;}
.ws4{word-spacing:-16.360213pt;}
.ws15{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.279680pt;}
.ws8{word-spacing:-14.856320pt;}
.ws7{word-spacing:-14.464000pt;}
.wsa{word-spacing:-12.183573pt;}
.ws9{word-spacing:-12.024320pt;}
.ws12{word-spacing:-11.936747pt;}
.ws13{word-spacing:-11.923947pt;}
.ws14{word-spacing:-11.899413pt;}
.ws11{word-spacing:-11.848320pt;}
.ws10{word-spacing:-11.840000pt;}
.wse{word-spacing:-11.831680pt;}
.wsf{word-spacing:-7.383680pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-17.792000pt;}
._12{margin-left:-4.919040pt;}
._11{margin-left:-3.747840pt;}
._13{margin-left:-2.786133pt;}
._21{margin-left:-1.858347pt;}
._f{margin-left:-0.958187pt;}
._3{width:1.166827pt;}
._d{width:2.304000pt;}
._9{width:3.456000pt;}
._10{width:4.390613pt;}
._a{width:5.760000pt;}
._b{width:7.146667pt;}
._24{width:8.768000pt;}
._27{width:9.969173pt;}
._23{width:11.406080pt;}
._31{width:12.657920pt;}
._22{width:13.632000pt;}
._34{width:15.040000pt;}
._25{width:15.936000pt;}
._2c{width:16.898347pt;}
._26{width:18.944000pt;}
._2b{width:20.288000pt;}
._8{width:21.248000pt;}
._2a{width:22.208000pt;}
._28{width:23.424000pt;}
._29{width:24.384000pt;}
._37{width:25.383040pt;}
._1e{width:26.328960pt;}
._5{width:27.776000pt;}
._2d{width:28.736000pt;}
._3a{width:30.016000pt;}
._2f{width:31.550187pt;}
._2e{width:32.576000pt;}
._c{width:34.240000pt;}
._3b{width:44.200320pt;}
._1f{width:54.528000pt;}
._20{width:55.488000pt;}
._32{width:58.624000pt;}
._7{width:67.520000pt;}
._19{width:77.908160pt;}
._39{width:83.329920pt;}
._38{width:84.288960pt;}
._14{width:93.376000pt;}
._3c{width:115.456000pt;}
._2{width:126.240000pt;}
._e{width:141.338240pt;}
._36{width:147.815040pt;}
._6{width:167.146667pt;}
._35{width:181.428800pt;}
._0{width:449.002667pt;}
._18{width:701.589333pt;}
._1d{width:750.442667pt;}
._30{width:849.642667pt;}
._1{width:885.162667pt;}
._17{width:1041.088000pt;}
._16{width:1048.956267pt;}
._33{width:1248.682667pt;}
._1c{width:1441.493333pt;}
._1b{width:1489.216000pt;}
._15{width:1614.227307pt;}
._1a{width:1633.648320pt;}
.fs3{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fse{font-size:26.560000pt;}
.fsb{font-size:42.560000pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fsa{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs8{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:72.000000pt;}
.fs6{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs4{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y2ad{bottom:2.240000pt;}
.y2b1{bottom:2.320000pt;}
.y213{bottom:2.560000pt;}
.y15e{bottom:2.640000pt;}
.y161{bottom:2.800000pt;}
.y16f{bottom:2.826667pt;}
.y2e4{bottom:3.120000pt;}
.y1c3{bottom:3.280000pt;}
.y24f{bottom:3.360000pt;}
.y196{bottom:3.600000pt;}
.y18d{bottom:3.680000pt;}
.y49{bottom:4.400000pt;}
.y4d{bottom:4.480000pt;}
.y58{bottom:4.560000pt;}
.y1a{bottom:4.800000pt;}
.y27e{bottom:4.826667pt;}
.y2f5{bottom:4.880000pt;}
.y2d{bottom:5.146667pt;}
.y26{bottom:6.240000pt;}
.y22{bottom:6.400000pt;}
.y15{bottom:6.480000pt;}
.y14b{bottom:7.440000pt;}
.y2c1{bottom:8.400000pt;}
.y39{bottom:9.120000pt;}
.y18f{bottom:10.400000pt;}
.y162{bottom:10.480000pt;}
.y5c{bottom:10.506667pt;}
.y5e{bottom:10.560000pt;}
.y56{bottom:10.640000pt;}
.y2e2{bottom:11.040000pt;}
.y54{bottom:11.200000pt;}
.y2bf{bottom:11.440000pt;}
.y1ba{bottom:11.760000pt;}
.y120{bottom:12.640000pt;}
.y13b{bottom:12.800000pt;}
.y60{bottom:13.600000pt;}
.y313{bottom:13.760000pt;}
.y144{bottom:13.840000pt;}
.y128{bottom:13.920000pt;}
.y2b0{bottom:14.560000pt;}
.y14d{bottom:14.720000pt;}
.y2e0{bottom:15.120000pt;}
.y12f{bottom:15.360000pt;}
.y11c{bottom:15.520000pt;}
.y11e{bottom:15.760000pt;}
.y12c{bottom:16.080000pt;}
.y2b8{bottom:16.480000pt;}
.y13d{bottom:16.640000pt;}
.y122{bottom:16.720000pt;}
.y160{bottom:18.080000pt;}
.y191{bottom:18.160000pt;}
.y1d8{bottom:18.186667pt;}
.y139{bottom:18.720000pt;}
.y2ff{bottom:19.600000pt;}
.y1a6{bottom:19.920000pt;}
.y2e3{bottom:20.000000pt;}
.y31b{bottom:21.520000pt;}
.y24e{bottom:21.760000pt;}
.y28{bottom:22.400000pt;}
.y2e{bottom:22.506667pt;}
.y4c{bottom:22.640000pt;}
.y133{bottom:23.200000pt;}
.y2be{bottom:23.680000pt;}
.y146{bottom:23.760000pt;}
.y29f{bottom:23.920000pt;}
.y315{bottom:24.000000pt;}
.y29a{bottom:24.560000pt;}
.y19{bottom:24.640000pt;}
.y2f4{bottom:24.720000pt;}
.y2c{bottom:25.066667pt;}
.y2af{bottom:26.800000pt;}
.y14a{bottom:27.360000pt;}
.y21{bottom:27.440000pt;}
.y3{bottom:28.720000pt;}
.y319{bottom:29.466667pt;}
.y2b3{bottom:29.760000pt;}
.y38{bottom:30.320000pt;}
.y317{bottom:30.640000pt;}
.y312{bottom:30.880000pt;}
.y13a{bottom:32.640000pt;}
.y131{bottom:33.120000pt;}
.y2e8{bottom:33.280000pt;}
.y2df{bottom:33.360000pt;}
.y1b4{bottom:33.440000pt;}
.y127{bottom:33.760000pt;}
.y12b{bottom:34.480000pt;}
.y13f{bottom:34.560000pt;}
.y2f3{bottom:34.640000pt;}
.y12e{bottom:35.200000pt;}
.y2bd{bottom:35.920000pt;}
.y1a5{bottom:36.160000pt;}
.y208{bottom:36.240000pt;}
.y31a{bottom:38.426667pt;}
.y2fe{bottom:39.440000pt;}
.y1b{bottom:40.960000pt;}
.y293{bottom:41.600000pt;}
.y30d{bottom:42.400000pt;}
.y290{bottom:43.040000pt;}
.y132{bottom:43.066667pt;}
.y124{bottom:43.680000pt;}
.y29e{bottom:43.760000pt;}
.y2b{bottom:44.186667pt;}
.y299{bottom:44.400000pt;}
.y35{bottom:44.480000pt;}
.y18{bottom:44.560000pt;}
.y149{bottom:45.760000pt;}
.y316{bottom:47.520000pt;}
.y1d{bottom:47.760000pt;}
.y2bc{bottom:48.160000pt;}
.y311{bottom:49.280000pt;}
.y2de{bottom:51.520000pt;}
.y1a4{bottom:52.480000pt;}
.y12a{bottom:52.880000pt;}
.y2a1{bottom:52.960000pt;}
.y20{bottom:53.440000pt;}
.y126{bottom:53.600000pt;}
.y143{bottom:53.626667pt;}
.y2fd{bottom:59.306667pt;}
.y2f9{bottom:59.706667pt;}
.y295{bottom:60.026667pt;}
.y30c{bottom:60.800000pt;}
.y28f{bottom:61.440000pt;}
.y134{bottom:61.466667pt;}
.y29d{bottom:62.240000pt;}
.y2a{bottom:62.586667pt;}
.y298{bottom:62.800000pt;}
.y2a0{bottom:62.880000pt;}
.y29c{bottom:62.960000pt;}
.y145{bottom:63.546667pt;}
.y148{bottom:64.186667pt;}
.y34{bottom:64.320000pt;}
.y140{bottom:64.400000pt;}
.y17{bottom:65.840000pt;}
.y310{bottom:67.440000pt;}
.y2dd{bottom:68.400000pt;}
.y1e8{bottom:68.720000pt;}
.y287{bottom:69.200000pt;}
.y2ea{bottom:69.760000pt;}
.y129{bottom:71.280000pt;}
.y1f{bottom:71.840000pt;}
.y12d{bottom:72.000000pt;}
.y125{bottom:73.440000pt;}
.y142{bottom:73.466667pt;}
.y2d6{bottom:76.666667pt;}
.y2fc{bottom:77.706667pt;}
.y294{bottom:78.426667pt;}
.y28e{bottom:79.840000pt;}
.y297{bottom:81.200000pt;}
.y29b{bottom:81.280000pt;}
.y147{bottom:82.586667pt;}
.y33{bottom:84.240000pt;}
.y30f{bottom:84.320000pt;}
.y1e7{bottom:84.960000pt;}
.y2e7{bottom:85.280000pt;}
.y2dc{bottom:85.306667pt;}
.y291{bottom:87.600000pt;}
.y286{bottom:89.040000pt;}
.y2d5{bottom:95.066667pt;}
.y2fb{bottom:96.106667pt;}
.y283{bottom:97.520000pt;}
.y28d{bottom:98.240000pt;}
.y30e{bottom:101.120000pt;}
.y1e6{bottom:101.280000pt;}
.y2db{bottom:102.186667pt;}
.y32{bottom:104.080000pt;}
.y285{bottom:107.440000pt;}
.y2fa{bottom:114.506667pt;}
.y28c{bottom:116.640000pt;}
.y1e5{bottom:117.520000pt;}
.y2e6{bottom:118.986667pt;}
.y2da{bottom:119.066667pt;}
.yac{bottom:121.600000pt;}
.y1dd{bottom:123.040000pt;}
.y1a3{bottom:123.200000pt;}
.y31{bottom:123.920000pt;}
.y284{bottom:125.840000pt;}
.y303{bottom:128.000000pt;}
.y115{bottom:129.280000pt;}
.y27a{bottom:130.240000pt;}
.y16b{bottom:133.280000pt;}
.y28b{bottom:135.040000pt;}
.y1c1{bottom:135.840000pt;}
.y2d9{bottom:135.866667pt;}
.y210{bottom:136.080000pt;}
.yab{bottom:137.760000pt;}
.ye{bottom:138.480000pt;}
.y2e1{bottom:139.280000pt;}
.y14e{bottom:140.160000pt;}
.y1dc{bottom:142.000000pt;}
.y6d{bottom:143.760000pt;}
.y45{bottom:144.080000pt;}
.y1f2{bottom:146.080000pt;}
.y302{bottom:147.120000pt;}
.y114{bottom:149.280000pt;}
.y279{bottom:150.080000pt;}
.y16a{bottom:150.640000pt;}
.ydd{bottom:150.720000pt;}
.y247{bottom:152.400000pt;}
.y2d8{bottom:152.746667pt;}
.y28a{bottom:153.440000pt;}
.yaa{bottom:153.920000pt;}
.yc1{bottom:154.400000pt;}
.y1c0{bottom:154.800000pt;}
.y14c{bottom:156.880000pt;}
.y1db{bottom:160.960000pt;}
.y6c{bottom:162.880000pt;}
.y44{bottom:164.320000pt;}
.y23b{bottom:164.720000pt;}
.y2aa{bottom:165.280000pt;}
.y301{bottom:166.320000pt;}
.yd{bottom:167.360000pt;}
.y20f{bottom:167.600000pt;}
.y169{bottom:168.000000pt;}
.y113{bottom:169.360000pt;}
.y2d7{bottom:169.626667pt;}
.ydc{bottom:169.920000pt;}
.y278{bottom:170.000000pt;}
.ya9{bottom:170.640000pt;}
.y289{bottom:171.840000pt;}
.yc0{bottom:173.600000pt;}
.y1bf{bottom:173.680000pt;}
.y2d4{bottom:175.680000pt;}
.ya8{bottom:176.000000pt;}
.yf6{bottom:176.880000pt;}
.y1da{bottom:179.920000pt;}
.y1f1{bottom:180.480000pt;}
.y43{bottom:182.320000pt;}
.y23a{bottom:183.840000pt;}
.y2a9{bottom:184.400000pt;}
.y168{bottom:185.280000pt;}
.y300{bottom:186.160000pt;}
.y246{bottom:186.800000pt;}
.ya7{bottom:189.040000pt;}
.ydb{bottom:189.120000pt;}
.y112{bottom:189.440000pt;}
.y288{bottom:190.240000pt;}
.y1a2{bottom:190.960000pt;}
.y1be{bottom:192.640000pt;}
.yc{bottom:194.880000pt;}
.y265{bottom:196.960000pt;}
.y20e{bottom:197.360000pt;}
.y6b{bottom:198.800000pt;}
.y141{bottom:199.280000pt;}
.y42{bottom:200.320000pt;}
.y277{bottom:201.440000pt;}
.y167{bottom:202.640000pt;}
.y2f8{bottom:202.880000pt;}
.y2a8{bottom:203.600000pt;}
.ybf{bottom:207.920000pt;}
.yda{bottom:208.240000pt;}
.y111{bottom:209.520000pt;}
.y1a1{bottom:209.920000pt;}
.yf5{bottom:211.280000pt;}
.y1bd{bottom:211.600000pt;}
.y1f0{bottom:211.920000pt;}
.yb{bottom:213.520000pt;}
.y264{bottom:216.080000pt;}
.y1d9{bottom:217.760000pt;}
.y41{bottom:218.240000pt;}
.y276{bottom:218.320000pt;}
.y166{bottom:220.640000pt;}
.y245{bottom:221.120000pt;}
.y2a7{bottom:222.720000pt;}
.ybe{bottom:227.120000pt;}
.yd9{bottom:227.440000pt;}
.y1a0{bottom:228.880000pt;}
.y110{bottom:229.600000pt;}
.yf4{bottom:230.400000pt;}
.y1bc{bottom:230.560000pt;}
.y263{bottom:235.280000pt;}
.y1d7{bottom:235.760000pt;}
.y6a{bottom:236.080000pt;}
.y40{bottom:236.240000pt;}
.y275{bottom:236.880000pt;}
.y165{bottom:238.640000pt;}
.y1ef{bottom:241.360000pt;}
.y2a6{bottom:241.920000pt;}
.ybd{bottom:246.240000pt;}
.yd8{bottom:246.560000pt;}
.ya{bottom:246.640000pt;}
.y19f{bottom:247.866667pt;}
.y1bb{bottom:249.546667pt;}
.yf3{bottom:249.626667pt;}
.y69{bottom:250.666667pt;}
.y239{bottom:252.586667pt;}
.y244{bottom:252.666667pt;}
.y274{bottom:253.386667pt;}
.y3f{bottom:254.186667pt;}
.y164{bottom:256.666667pt;}
.y2a5{bottom:261.146667pt;}
.y262{bottom:263.466667pt;}
.y10f{bottom:264.266667pt;}
.yd7{bottom:265.786667pt;}
.y19e{bottom:266.746667pt;}
.y1b9{bottom:268.426667pt;}
.y1d6{bottom:269.146667pt;}
.y3e{bottom:272.186667pt;}
.y9{bottom:272.586667pt;}
.y163{bottom:274.666667pt;}
.ya6{bottom:275.226667pt;}
.ybc{bottom:277.786667pt;}
.y2a4{bottom:280.266667pt;}
.y243{bottom:282.426667pt;}
.y10e{bottom:283.386667pt;}
.yf2{bottom:283.946667pt;}
.y19d{bottom:285.706667pt;}
.y238{bottom:286.986667pt;}
.y15f{bottom:292.666667pt;}
.ya5{bottom:293.626667pt;}
.y261{bottom:295.466667pt;}
.y3d{bottom:297.226667pt;}
.y2a3{bottom:299.466667pt;}
.y13e{bottom:299.546667pt;}
.yd6{bottom:300.106667pt;}
.y1d5{bottom:302.506667pt;}
.y10d{bottom:302.586667pt;}
.yf1{bottom:303.146667pt;}
.y1b8{bottom:303.706667pt;}
.y19c{bottom:304.666667pt;}
.ybb{bottom:307.466667pt;}
.ya4{bottom:312.026667pt;}
.y8{bottom:316.106667pt;}
.yd5{bottom:319.306667pt;}
.y237{bottom:321.386667pt;}
.y260{bottom:321.866667pt;}
.y3c{bottom:322.346667pt;}
.y1b7{bottom:322.586667pt;}
.y19b{bottom:323.626667pt;}
.y68{bottom:325.226667pt;}
.y15d{bottom:325.946667pt;}
.ya3{bottom:331.226667pt;}
.yf0{bottom:334.586667pt;}
.y2f7{bottom:335.066667pt;}
.y7{bottom:335.946667pt;}
.y1d4{bottom:336.826667pt;}
.y10c{bottom:336.906667pt;}
.yd4{bottom:338.506667pt;}
.y2a2{bottom:339.146667pt;}
.y1b6{bottom:341.546667pt;}
.y19a{bottom:342.586667pt;}
.y67{bottom:343.706667pt;}
.y22d{bottom:347.226667pt;}
.y3b{bottom:347.466667pt;}
.ya2{bottom:350.346667pt;}
.y236{bottom:352.826667pt;}
.y6{bottom:355.866667pt;}
.y10b{bottom:356.106667pt;}
.yd3{bottom:357.626667pt;}
.y15c{bottom:357.866667pt;}
.y25f{bottom:359.146667pt;}
.y1b5{bottom:359.546667pt;}
.y199{bottom:361.466667pt;}
.y2d3{bottom:361.706667pt;}
.y66{bottom:362.186667pt;}
.yef{bottom:364.346667pt;}
.y22c{bottom:366.426667pt;}
.ya1{bottom:369.546667pt;}
.y1d3{bottom:369.946667pt;}
.y26f{bottom:370.026667pt;}
.y3a{bottom:372.586667pt;}
.y10a{bottom:375.226667pt;}
.y5{bottom:376.586667pt;}
.yd2{bottom:376.826667pt;}
.y198{bottom:380.426667pt;}
.y13c{bottom:381.626667pt;}
.y235{bottom:382.586667pt;}
.y22b{bottom:385.546667pt;}
.y37{bottom:387.626667pt;}
.ya0{bottom:388.666667pt;}
.y26e{bottom:389.866667pt;}
.y15b{bottom:390.986667pt;}
.y1b3{bottom:392.906667pt;}
.y4{bottom:393.146667pt;}
.y25e{bottom:393.466667pt;}
.y65{bottom:397.946667pt;}
.y2d2{bottom:398.266667pt;}
.y197{bottom:399.386667pt;}
.y1d2{bottom:404.266667pt;}
.y20d{bottom:406.026667pt;}
.y9f{bottom:407.866667pt;}
.y109{bottom:409.626667pt;}
.y26d{bottom:409.706667pt;}
.yd1{bottom:411.146667pt;}
.y36{bottom:411.706667pt;}
.y2d1{bottom:415.146667pt;}
.y138{bottom:415.946667pt;}
.y2f6{bottom:417.226667pt;}
.y195{bottom:418.346667pt;}
.y22a{bottom:419.946667pt;}
.y185{bottom:424.746667pt;}
.y15a{bottom:425.306667pt;}
.y25d{bottom:427.866667pt;}
.y108{bottom:428.746667pt;}
.yd0{bottom:430.346667pt;}
.y64{bottom:433.146667pt;}
.y30{bottom:435.706667pt;}
.y1d1{bottom:435.786667pt;}
.y229{bottom:436.666667pt;}
.y194{bottom:437.226667pt;}
.y26c{bottom:441.226667pt;}
.y1b2{bottom:441.546667pt;}
.y9e{bottom:442.266667pt;}
.y25c{bottom:447.066667pt;}
.y20c{bottom:447.546667pt;}
.y107{bottom:447.946667pt;}
.y2d0{bottom:448.186667pt;}
.ycf{bottom:449.466667pt;}
.y63{bottom:452.746667pt;}
.y228{bottom:454.666667pt;}
.y296{bottom:454.906667pt;}
.y193{bottom:456.186667pt;}
.y159{bottom:456.826667pt;}
.y9d{bottom:461.386667pt;}
.y184{bottom:464.106667pt;}
.y1d0{bottom:465.306667pt;}
.y25b{bottom:466.186667pt;}
.y137{bottom:466.266667pt;}
.y106{bottom:467.146667pt;}
.y2cf{bottom:467.306667pt;}
.y26b{bottom:470.906667pt;}
.y227{bottom:472.666667pt;}
.y192{bottom:475.146667pt;}
.y1b1{bottom:475.946667pt;}
.y62{bottom:478.266667pt;}
.y2f2{bottom:479.386667pt;}
.yce{bottom:480.986667pt;}
.y20b{bottom:485.226667pt;}
.y25a{bottom:485.386667pt;}
.y2ce{bottom:486.506667pt;}
.y158{bottom:486.586667pt;}
.y226{bottom:490.666667pt;}
.y190{bottom:493.146667pt;}
.y9c{bottom:495.786667pt;}
.y1ee{bottom:497.706667pt;}
.y183{bottom:498.506667pt;}
.y273{bottom:500.186667pt;}
.y105{bottom:501.466667pt;}
.y20a{bottom:503.226667pt;}
.y2cd{bottom:505.706667pt;}
.y1b0{bottom:506.106667pt;}
.y225{bottom:508.666667pt;}
.y61{bottom:509.706667pt;}
.yba{bottom:510.586667pt;}
.ycd{bottom:510.746667pt;}
.y9b{bottom:514.906667pt;}
.y259{bottom:519.706667pt;}
.y104{bottom:520.666667pt;}
.y209{bottom:521.226667pt;}
.y136{bottom:522.826667pt;}
.y5f{bottom:526.346667pt;}
.y18e{bottom:526.506667pt;}
.y224{bottom:526.666667pt;}
.y272{bottom:531.706667pt;}
.y182{bottom:532.826667pt;}
.y1ed{bottom:538.426667pt;}
.y258{bottom:538.906667pt;}
.y1af{bottom:539.226667pt;}
.y103{bottom:539.786667pt;}
.y2cc{bottom:540.026667pt;}
.y135{bottom:542.666667pt;}
.y223{bottom:544.666667pt;}
.yb9{bottom:544.906667pt;}
.y9a{bottom:546.426667pt;}
.y271{bottom:548.586667pt;}
.y7c{bottom:552.426667pt;}
.y292{bottom:553.866667pt;}
.y207{bottom:557.226667pt;}
.y257{bottom:558.026667pt;}
.y2cb{bottom:559.226667pt;}
.y130{bottom:559.386667pt;}
.y18c{bottom:559.786667pt;}
.y31c{bottom:560.426667pt;}
.y2f1{bottom:561.546667pt;}
.y242{bottom:561.946667pt;}
.y222{bottom:562.666667pt;}
.y27d{bottom:563.680000pt;}
.y270{bottom:563.786667pt;}
.y5d{bottom:565.466667pt;}
.y181{bottom:567.226667pt;}
.y1ae{bottom:573.546667pt;}
.y102{bottom:574.186667pt;}
.y99{bottom:576.106667pt;}
.y318{bottom:576.186667pt;}
.y256{bottom:577.226667pt;}
.y2f{bottom:577.306667pt;}
.y1ec{bottom:577.786667pt;}
.yee{bottom:578.266667pt;}
.y2ca{bottom:578.346667pt;}
.yb8{bottom:579.306667pt;}
.y221{bottom:580.666667pt;}
.y241{bottom:581.146667pt;}
.y7b{bottom:586.826667pt;}
.y101{bottom:593.306667pt;}
.y18b{bottom:594.186667pt;}
.y1eb{bottom:594.506667pt;}
.y2c9{bottom:597.546667pt;}
.yed{bottom:598.266667pt;}
.yb7{bottom:598.426667pt;}
.y5b{bottom:598.666667pt;}
.y240{bottom:600.346667pt;}
.y29{bottom:601.226667pt;}
.y180{bottom:601.573333pt;}
.y2f0{bottom:603.893333pt;}
.y1ad{bottom:605.093333pt;}
.y206{bottom:608.773333pt;}
.y255{bottom:611.573333pt;}
.y100{bottom:612.533333pt;}
.y220{bottom:616.693333pt;}
.yb6{bottom:617.653333pt;}
.y7a{bottom:619.493333pt;}
.y18a{bottom:627.333333pt;}
.y205{bottom:627.733333pt;}
.y314{bottom:629.013333pt;}
.y1ea{bottom:630.533333pt;}
.y254{bottom:630.773333pt;}
.yec{bottom:632.693333pt;}
.y21f{bottom:634.693333pt;}
.y1ac{bottom:634.773333pt;}
.y5a{bottom:635.333333pt;}
.y2c8{bottom:635.893333pt;}
.y17f{bottom:635.973333pt;}
.yb5{bottom:636.773333pt;}
.y123{bottom:638.613333pt;}
.y8e{bottom:638.773333pt;}
.y27{bottom:641.413333pt;}
.y2ef{bottom:641.893333pt;}
.y204{bottom:646.613333pt;}
.yff{bottom:646.933333pt;}
.y1e9{bottom:648.533333pt;}
.y282{bottom:649.973333pt;}
.y79{bottom:652.133333pt;}
.y21e{bottom:652.693333pt;}
.y2c7{bottom:655.093333pt;}
.yb4{bottom:655.973333pt;}
.y8d{bottom:657.173333pt;}
.y59{bottom:659.813333pt;}
.y189{bottom:661.653333pt;}
.y234{bottom:662.933333pt;}
.y253{bottom:665.173333pt;}
.y203{bottom:665.573333pt;}
.yfe{bottom:666.053333pt;}
.y1e4{bottom:666.533333pt;}
.yeb{bottom:667.013333pt;}
.y23f{bottom:669.093333pt;}
.y17e{bottom:670.293333pt;}
.y21d{bottom:670.693333pt;}
.y2ee{bottom:674.933333pt;}
.y57{bottom:675.253333pt;}
.yb3{bottom:676.773333pt;}
.y78{bottom:680.853333pt;}
.y25{bottom:681.573333pt;}
.y252{bottom:681.813333pt;}
.y202{bottom:684.533333pt;}
.yea{bottom:686.213333pt;}
.y21c{bottom:688.693333pt;}
.y2c6{bottom:689.413333pt;}
.y8c{bottom:694.053333pt;}
.y2ed{bottom:695.573333pt;}
.y188{bottom:696.053333pt;}
.y55{bottom:696.213333pt;}
.y233{bottom:697.333333pt;}
.yb2{bottom:697.493333pt;}
.yfd{bottom:700.453333pt;}
.y251{bottom:702.933333pt;}
.y23e{bottom:703.413333pt;}
.y201{bottom:703.493333pt;}
.yf{bottom:703.573333pt;}
.y17d{bottom:704.693333pt;}
.ye9{bottom:705.333333pt;}
.y24{bottom:705.493333pt;}
.y21b{bottom:706.693333pt;}
.y30b{bottom:707.813333pt;}
.y2c5{bottom:708.613333pt;}
.y77{bottom:714.533333pt;}
.ycc{bottom:715.253333pt;}
.y232{bottom:716.533333pt;}
.yb1{bottom:716.693333pt;}
.yfc{bottom:719.573333pt;}
.y2ec{bottom:720.373333pt;}
.y17c{bottom:721.413333pt;}
.y200{bottom:722.453333pt;}
.y250{bottom:723.973333pt;}
.ye8{bottom:724.533333pt;}
.y21a{bottom:724.693333pt;}
.y187{bottom:727.493333pt;}
.y2c4{bottom:727.733333pt;}
.y8b{bottom:728.373333pt;}
.y53{bottom:729.413333pt;}
.y1cf{bottom:733.493333pt;}
.y23{bottom:734.133333pt;}
.y23d{bottom:734.933333pt;}
.y157{bottom:738.053333pt;}
.yfb{bottom:738.773333pt;}
.y121{bottom:738.933333pt;}
.y17b{bottom:739.413333pt;}
.y1ff{bottom:741.333333pt;}
.ye7{bottom:743.653333pt;}
.y2bb{bottom:744.453333pt;}
.y24d{bottom:745.013333pt;}
.y8a{bottom:747.493333pt;}
.ycb{bottom:749.653333pt;}
.y231{bottom:750.853333pt;}
.yb0{bottom:751.013333pt;}
.y1e{bottom:751.493333pt;}
.y76{bottom:752.133333pt;}
.y2eb{bottom:754.773333pt;}
.y186{bottom:757.253333pt;}
.y219{bottom:757.333333pt;}
.y17a{bottom:757.413333pt;}
.y2c3{bottom:758.693333pt;}
.y1fe{bottom:760.293333pt;}
.y23c{bottom:764.693333pt;}
.y89{bottom:766.693333pt;}
.y52{bottom:767.173333pt;}
.y230{bottom:770.053333pt;}
.yaf{bottom:770.213333pt;}
.y98{bottom:770.613333pt;}
.yfa{bottom:771.093333pt;}
.y2e9{bottom:771.413333pt;}
.y1ce{bottom:772.853333pt;}
.y2c2{bottom:773.013333pt;}
.y11f{bottom:773.333333pt;}
.y218{bottom:775.333333pt;}
.y179{bottom:775.413333pt;}
.y1c{bottom:775.573333pt;}
.y156{bottom:777.413333pt;}
.ye6{bottom:778.053333pt;}
.y1fd{bottom:779.253333pt;}
.yca{bottom:783.973333pt;}
.y75{bottom:784.853333pt;}
.y88{bottom:785.093333pt;}
.y2c0{bottom:787.253333pt;}
.y27b{bottom:788.853333pt;}
.y1cd{bottom:789.573333pt;}
.y27c{bottom:791.333333pt;}
.y51{bottom:791.973333pt;}
.y178{bottom:793.413333pt;}
.ye5{bottom:797.173333pt;}
.y1fc{bottom:798.213333pt;}
.y1e3{bottom:799.413333pt;}
.y24c{bottom:799.973333pt;}
.y22f{bottom:801.493333pt;}
.yae{bottom:801.653333pt;}
.yc9{bottom:803.173333pt;}
.y87{bottom:803.493333pt;}
.y11d{bottom:803.653333pt;}
.y97{bottom:805.013333pt;}
.y1cc{bottom:807.573333pt;}
.y50{bottom:808.693333pt;}
.y177{bottom:811.413333pt;}
.y155{bottom:811.733333pt;}
.y2b7{bottom:813.813333pt;}
.ye4{bottom:816.373333pt;}
.y1fb{bottom:817.093333pt;}
.y74{bottom:817.493333pt;}
.y1e2{bottom:818.373333pt;}
.y86{bottom:821.893333pt;}
.yc8{bottom:822.293333pt;}
.y30a{bottom:823.333333pt;}
.y217{bottom:823.973333pt;}
.y96{bottom:824.133333pt;}
.y1cb{bottom:825.573333pt;}
.yf9{bottom:826.933333pt;}
.y2ba{bottom:828.053333pt;}
.y176{bottom:829.413333pt;}
.y154{bottom:830.933333pt;}
.y22e{bottom:831.253333pt;}
.yad{bottom:831.413333pt;}
.y24b{bottom:833.013333pt;}
.y1fa{bottom:836.053333pt;}
.y1e1{bottom:837.253333pt;}
.y85{bottom:840.293333pt;}
.y16{bottom:841.013333pt;}
.yc7{bottom:841.493333pt;}
.y216{bottom:841.973333pt;}
.y2b9{bottom:842.293333pt;}
.y95{bottom:843.333333pt;}
.y1ca{bottom:843.573333pt;}
.yf8{bottom:846.133333pt;}
.y73{bottom:846.213333pt;}
.y175{bottom:847.413333pt;}
.y4f{bottom:847.733333pt;}
.y11b{bottom:847.973333pt;}
.ye3{bottom:850.773333pt;}
.y1f9{bottom:855.013333pt;}
.y1e0{bottom:856.213333pt;}
.y2b2{bottom:856.613333pt;}
.y2e5{bottom:857.573333pt;}
.y281{bottom:857.973333pt;}
.y309{bottom:858.853333pt;}
.y84{bottom:859.333333pt;}
.y215{bottom:859.973333pt;}
.yc6{bottom:860.613333pt;}
.y1c9{bottom:861.573333pt;}
.y93{bottom:862.453333pt;}
.y24a{bottom:864.053333pt;}
.y153{bottom:865.253333pt;}
.y174{bottom:865.413333pt;}
.y94{bottom:867.813333pt;}
.y4e{bottom:868.613333pt;}
.ye2{bottom:869.893333pt;}
.y2b6{bottom:870.853333pt;}
.y1f8{bottom:873.973333pt;}
.y26a{bottom:874.133333pt;}
.y1df{bottom:875.173333pt;}
.y214{bottom:877.973333pt;}
.y83{bottom:879.733333pt;}
.y72{bottom:879.893333pt;}
.yc5{bottom:880.453333pt;}
.y173{bottom:883.413333pt;}
.y249{bottom:884.373333pt;}
.y152{bottom:884.453333pt;}
.y2b5{bottom:885.093333pt;}
.y1f7{bottom:892.933333pt;}
.y269{bottom:893.973333pt;}
.y1de{bottom:894.133333pt;}
.y308{bottom:894.293333pt;}
.y11a{bottom:896.613333pt;}
.y92{bottom:896.853333pt;}
.y1ab{bottom:898.693333pt;}
.y82{bottom:898.853333pt;}
.yc4{bottom:899.653333pt;}
.y14{bottom:900.373333pt;}
.y172{bottom:901.413333pt;}
.y151{bottom:903.573333pt;}
.ye1{bottom:904.293333pt;}
.y248{bottom:904.613333pt;}
.y4b{bottom:907.653333pt;}
.y1f6{bottom:910.933333pt;}
.y212{bottom:911.333333pt;}
.y2b4{bottom:911.653333pt;}
.y71{bottom:912.453333pt;}
.y1c8{bottom:913.013333pt;}
.y268{bottom:913.813333pt;}
.y307{bottom:914.133333pt;}
.y91{bottom:915.973333pt;}
.y81{bottom:917.253333pt;}
.y280{bottom:918.453333pt;}
.yc3{bottom:918.773333pt;}
.y171{bottom:919.413333pt;}
.y150{bottom:922.773333pt;}
.ye0{bottom:923.413333pt;}
.y2ae{bottom:925.893333pt;}
.y13{bottom:929.013333pt;}
.y1c7{bottom:931.973333pt;}
.y306{bottom:933.333333pt;}
.y267{bottom:933.653333pt;}
.y119{bottom:935.013333pt;}
.y90{bottom:935.173333pt;}
.y80{bottom:935.653333pt;}
.y70{bottom:937.253333pt;}
.y170{bottom:937.413333pt;}
.yc2{bottom:937.973333pt;}
.y14f{bottom:941.973333pt;}
.ydf{bottom:942.613333pt;}
.y211{bottom:943.253333pt;}
.y1f5{bottom:944.213333pt;}
.y4a{bottom:946.773333pt;}
.y1c6{bottom:950.933333pt;}
.y305{bottom:952.453333pt;}
.y27f{bottom:953.173333pt;}
.y266{bottom:953.493333pt;}
.y7f{bottom:954.053333pt;}
.y118{bottom:954.213333pt;}
.y1aa{bottom:954.693333pt;}
.y16e{bottom:955.413333pt;}
.y6f{bottom:957.120000pt;}
.y2ac{bottom:964.720000pt;}
.y8f{bottom:967.520000pt;}
.y48{bottom:967.680000pt;}
.y1c5{bottom:969.920000pt;}
.y304{bottom:971.680000pt;}
.yf7{bottom:972.320000pt;}
.y7e{bottom:972.480000pt;}
.y1a9{bottom:972.720000pt;}
.y117{bottom:973.440000pt;}
.yde{bottom:976.320000pt;}
.y1f4{bottom:977.600000pt;}
.y12{bottom:979.040000pt;}
.y1c4{bottom:988.880000pt;}
.y1a8{bottom:990.720000pt;}
.y16d{bottom:991.360000pt;}
.y6e{bottom:991.520000pt;}
.y47{bottom:992.320000pt;}
.y2ab{bottom:995.120000pt;}
.y7d{bottom:1000.720000pt;}
.y116{bottom:1005.760000pt;}
.y1c2{bottom:1007.760000pt;}
.y1a7{bottom:1008.720000pt;}
.y16c{bottom:1009.360000pt;}
.y11{bottom:1010.720000pt;}
.y46{bottom:1011.360000pt;}
.y1f3{bottom:1012.000000pt;}
.y2{bottom:1030.560000pt;}
.y1{bottom:1050.400000pt;}
.y10{bottom:1069.306667pt;}
.h49{height:12.240000pt;}
.h4e{height:12.320000pt;}
.h40{height:13.760000pt;}
.h2e{height:13.840000pt;}
.h31{height:15.280000pt;}
.h32{height:15.306667pt;}
.h33{height:15.360000pt;}
.h38{height:15.386667pt;}
.h36{height:16.240000pt;}
.h3b{height:16.266667pt;}
.h34{height:16.320000pt;}
.h13{height:18.160000pt;}
.h15{height:18.186667pt;}
.h17{height:18.240000pt;}
.h1a{height:18.320000pt;}
.h43{height:18.400000pt;}
.h27{height:19.840000pt;}
.h44{height:19.920000pt;}
.hc{height:21.280000pt;}
.hb{height:21.440000pt;}
.h6{height:21.520000pt;}
.h4c{height:24.560000pt;}
.h24{height:27.680000pt;}
.h1b{height:30.346667pt;}
.h1c{height:30.480000pt;}
.h19{height:30.560000pt;}
.h30{height:30.640000pt;}
.h3d{height:30.746667pt;}
.h29{height:31.680000pt;}
.h18{height:31.760000pt;}
.h3a{height:32.560000pt;}
.h51{height:33.760000pt;}
.h16{height:36.400000pt;}
.h41{height:36.800000pt;}
.h4a{height:36.826667pt;}
.hd{height:37.440000pt;}
.hf{height:37.546667pt;}
.h2c{height:39.680000pt;}
.h4d{height:40.800000pt;}
.h23{height:41.680000pt;}
.h21{height:44.388750pt;}
.h4{height:44.500000pt;}
.h11{height:45.360000pt;}
.h39{height:46.000000pt;}
.h1d{height:47.218750pt;}
.h28{height:47.680000pt;}
.h42{height:48.125000pt;}
.h3c{height:48.800000pt;}
.h3f{height:48.906667pt;}
.h2f{height:50.062500pt;}
.h58{height:52.106667pt;}
.h12{height:53.152969pt;}
.h35{height:54.718594pt;}
.h22{height:55.736250pt;}
.h8{height:56.000000pt;}
.h54{height:59.520000pt;}
.h14{height:61.076250pt;}
.h9{height:62.800000pt;}
.h37{height:65.120000pt;}
.h1e{height:65.781915pt;}
.h2{height:66.750000pt;}
.h4b{height:67.280000pt;}
.h4f{height:67.360000pt;}
.h26{height:76.506667pt;}
.he{height:77.626667pt;}
.h1f{height:77.763750pt;}
.h57{height:78.080000pt;}
.h2a{height:79.440000pt;}
.h7{height:80.880000pt;}
.h53{height:83.520000pt;}
.h20{height:84.981094pt;}
.h2d{height:86.107500pt;}
.ha{height:86.880000pt;}
.h5{height:89.111250pt;}
.h46{height:93.466667pt;}
.h47{height:96.240000pt;}
.h48{height:96.320000pt;}
.h2b{height:97.626667pt;}
.h25{height:97.680000pt;}
.h3{height:111.138750pt;}
.h56{height:114.880000pt;}
.h55{height:129.546667pt;}
.h3e{height:130.160000pt;}
.h10{height:138.960000pt;}
.h52{height:166.506667pt;}
.h50{height:183.386667pt;}
.h45{height:205.280000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w29{width:5.680000pt;}
.w30{width:58.160000pt;}
.w34{width:63.466667pt;}
.w31{width:63.840000pt;}
.w32{width:63.866667pt;}
.w33{width:63.920000pt;}
.w8{width:68.026667pt;}
.w2f{width:75.866667pt;}
.wb{width:77.466667pt;}
.w9{width:84.400000pt;}
.wc{width:94.080000pt;}
.w10{width:103.306667pt;}
.w28{width:116.346667pt;}
.w24{width:116.746667pt;}
.w17{width:128.186667pt;}
.w27{width:128.240000pt;}
.w1a{width:128.426667pt;}
.w14{width:128.506667pt;}
.w38{width:129.680000pt;}
.w26{width:131.306667pt;}
.w2a{width:133.146667pt;}
.w19{width:137.760000pt;}
.w1d{width:139.386667pt;}
.w2c{width:142.400000pt;}
.w2d{width:142.426667pt;}
.w15{width:143.200000pt;}
.w12{width:145.386667pt;}
.w18{width:150.826667pt;}
.w25{width:155.440000pt;}
.w1c{width:163.360000pt;}
.w1e{width:165.440000pt;}
.w16{width:179.866667pt;}
.w2e{width:199.200000pt;}
.w6{width:222.666667pt;}
.w3{width:225.066667pt;}
.w5{width:225.386667pt;}
.w39{width:244.906667pt;}
.w22{width:246.666667pt;}
.w3a{width:260.026667pt;}
.we{width:263.706667pt;}
.wf{width:263.866667pt;}
.w1f{width:316.986667pt;}
.w20{width:318.293333pt;}
.w35{width:318.906667pt;}
.w36{width:320.613333pt;}
.w13{width:324.026667pt;}
.w37{width:375.226667pt;}
.w3b{width:395.973333pt;}
.w23{width:404.373333pt;}
.w4{width:426.453333pt;}
.w7{width:429.093333pt;}
.wd{width:467.973333pt;}
.w1b{width:469.466667pt;}
.w2b{width:485.306667pt;}
.wa{width:490.773333pt;}
.w21{width:636.000000pt;}
.w1{width:793.333333pt;}
.w11{width:793.359976pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.xc{left:1.200000pt;}
.x96{left:3.120000pt;}
.x94{left:4.400000pt;}
.x38{left:6.240000pt;}
.x28{left:8.000000pt;}
.x47{left:9.120000pt;}
.x49{left:10.480000pt;}
.x3a{left:11.920000pt;}
.x98{left:13.360000pt;}
.x3b{left:14.720000pt;}
.x36{left:16.800000pt;}
.x45{left:18.000000pt;}
.x3c{left:19.600000pt;}
.x35{left:20.560000pt;}
.x44{left:22.400000pt;}
.x48{left:23.840000pt;}
.xa4{left:24.880000pt;}
.x32{left:25.920000pt;}
.x95{left:27.120000pt;}
.x33{left:28.240000pt;}
.x2f{left:29.920000pt;}
.x46{left:31.040000pt;}
.x89{left:32.346667pt;}
.x9d{left:33.440000pt;}
.x39{left:34.746667pt;}
.x9a{left:36.000000pt;}
.x2c{left:37.600000pt;}
.x99{left:38.800000pt;}
.x30{left:39.840000pt;}
.x41{left:40.746667pt;}
.x34{left:42.026667pt;}
.x43{left:43.386667pt;}
.x4a{left:44.720000pt;}
.x97{left:46.640000pt;}
.xa8{left:48.666667pt;}
.x37{left:54.080000pt;}
.x2e{left:55.866667pt;}
.x1b{left:58.799988pt;}
.x1{left:59.839988pt;}
.x31{left:62.986667pt;}
.x5e{left:64.560000pt;}
.x20{left:65.759988pt;}
.x2a{left:67.280000pt;}
.x9b{left:69.440000pt;}
.x4d{left:70.880000pt;}
.x1a{left:74.559988pt;}
.x5{left:75.599988pt;}
.xe{left:76.560000pt;}
.xa{left:77.760000pt;}
.x3d{left:82.080000pt;}
.x25{left:83.839988pt;}
.x7{left:85.279988pt;}
.x11{left:90.959988pt;}
.x18{left:92.959988pt;}
.x50{left:96.026667pt;}
.x27{left:97.760000pt;}
.xab{left:100.266667pt;}
.x8a{left:103.359988pt;}
.x19{left:107.999988pt;}
.xae{left:110.106667pt;}
.xa7{left:111.066667pt;}
.xa6{left:113.386667pt;}
.x51{left:114.826667pt;}
.x85{left:121.600000pt;}
.x8c{left:122.799988pt;}
.x4e{left:128.026667pt;}
.x52{left:130.026667pt;}
.x54{left:131.066667pt;}
.x59{left:133.386667pt;}
.x55{left:134.426667pt;}
.x58{left:137.066667pt;}
.x53{left:138.186667pt;}
.x3f{left:141.280000pt;}
.x56{left:142.666667pt;}
.xf{left:145.306667pt;}
.x7e{left:146.346667pt;}
.x57{left:148.186667pt;}
.x5a{left:149.786667pt;}
.x91{left:152.800000pt;}
.x7d{left:153.706667pt;}
.x12{left:154.746667pt;}
.x73{left:156.426667pt;}
.x62{left:157.946667pt;}
.x60{left:160.266667pt;}
.xa9{left:162.426655pt;}
.x7c{left:166.666667pt;}
.x5d{left:168.106655pt;}
.x26{left:171.066655pt;}
.x66{left:177.946667pt;}
.x75{left:179.786667pt;}
.x67{left:181.306667pt;}
.x76{left:183.226667pt;}
.x17{left:185.626655pt;}
.x70{left:187.226667pt;}
.x64{left:188.906667pt;}
.x6f{left:190.586667pt;}
.x63{left:192.266667pt;}
.x71{left:194.666667pt;}
.x68{left:196.506667pt;}
.x61{left:198.426667pt;}
.x6e{left:199.706667pt;}
.x65{left:201.306667pt;}
.x74{left:203.066667pt;}
.x16{left:206.026655pt;}
.x69{left:209.786667pt;}
.x3e{left:211.146667pt;}
.x10{left:230.346667pt;}
.x84{left:232.986655pt;}
.x83{left:236.586655pt;}
.x86{left:238.986667pt;}
.x81{left:241.466655pt;}
.x29{left:243.786667pt;}
.x6d{left:248.426655pt;}
.x13{left:249.466667pt;}
.x82{left:250.426655pt;}
.x9c{left:256.506655pt;}
.x9e{left:259.386667pt;}
.x79{left:266.346655pt;}
.x1f{left:267.626655pt;}
.x7b{left:272.506655pt;}
.x6b{left:278.186655pt;}
.x72{left:283.146655pt;}
.x5c{left:287.626655pt;}
.x7a{left:290.026655pt;}
.x78{left:293.306655pt;}
.x4c{left:294.906655pt;}
.x1c{left:297.866643pt;}
.xd{left:301.066667pt;}
.xb{left:303.146667pt;}
.x21{left:307.946655pt;}
.x5f{left:311.866667pt;}
.x22{left:313.626655pt;}
.x1e{left:318.106655pt;}
.xad{left:321.226667pt;}
.x9f{left:323.546667pt;}
.x23{left:325.466655pt;}
.x24{left:327.706655pt;}
.xa5{left:338.026655pt;}
.xaa{left:339.786667pt;}
.x14{left:341.066667pt;}
.xac{left:342.906655pt;}
.x92{left:346.826667pt;}
.x90{left:367.786655pt;}
.x40{left:375.146667pt;}
.xa0{left:382.026667pt;}
.x2d{left:387.626667pt;}
.x4f{left:388.586667pt;}
.x87{left:395.146667pt;}
.x6c{left:396.426655pt;}
.x2{left:398.826655pt;}
.xa1{left:446.213333pt;}
.x93{left:489.893333pt;}
.x77{left:507.093322pt;}
.x4b{left:508.053322pt;}
.xa2{left:510.453333pt;}
.x42{left:515.173333pt;}
.x1d{left:516.613322pt;}
.x5b{left:525.813322pt;}
.x88{left:527.173333pt;}
.x7f{left:530.053322pt;}
.x6a{left:531.813322pt;}
.x2b{left:567.813333pt;}
.x80{left:570.453322pt;}
.xa3{left:574.693333pt;}
.x8f{left:583.600000pt;}
.x8{left:602.666667pt;}
.x15{left:605.573333pt;}
.x9{left:638.693322pt;}
.x8d{left:671.253322pt;}
.x3{left:679.093322pt;}
.x8e{left:695.919988pt;}
.x4{left:717.839988pt;}
.x6{left:719.839988pt;}
.x8b{left:733.599988pt;}
}




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