
    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_d4ffd9d11fb5616445f71522.woff')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_a6ee3cfdbc00532ca8d8f79e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3d78881ff4088f94dcbcf763.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ec7ac866b9ac95429540cfd6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2b8a6d5acfaa84779994564f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a36639d02381406ff29cbae0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2d49d94ea6135f172e54ac9e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.060059;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_c0cc394396b4e52a4991ec45.woff')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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);}
.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);}
.v1{vertical-align:-77.400000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.240000px;}
.ls14{letter-spacing:-0.546600px;}
.ls21{letter-spacing:-0.444600px;}
.ls15{letter-spacing:-0.427200px;}
.ls47{letter-spacing:-0.391800px;}
.ls40{letter-spacing:-0.318000px;}
.ls3e{letter-spacing:-0.291600px;}
.ls16{letter-spacing:-0.285600px;}
.ls4b{letter-spacing:-0.264600px;}
.ls46{letter-spacing:-0.258000px;}
.ls4a{letter-spacing:-0.249000px;}
.lsb{letter-spacing:-0.186600px;}
.ls28{letter-spacing:-0.153600px;}
.lsc{letter-spacing:-0.125400px;}
.ls27{letter-spacing:-0.124200px;}
.ls9{letter-spacing:-0.123000px;}
.ls1f{letter-spacing:-0.112200px;}
.ls17{letter-spacing:-0.094800px;}
.lsa{letter-spacing:-0.084600px;}
.ls39{letter-spacing:-0.048960px;}
.ls2b{letter-spacing:-0.031680px;}
.ls7{letter-spacing:-0.020160px;}
.ls2c{letter-spacing:-0.018360px;}
.lsd{letter-spacing:-0.011160px;}
.ls32{letter-spacing:-0.009000px;}
.ls33{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.023040px;}
.ls49{letter-spacing:0.036720px;}
.ls44{letter-spacing:0.041760px;}
.ls3b{letter-spacing:0.042480px;}
.ls1{letter-spacing:0.048960px;}
.ls2f{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.060480px;}
.ls36{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.061200px;}
.ls1e{letter-spacing:0.068400px;}
.ls12{letter-spacing:0.074160px;}
.ls19{letter-spacing:0.074400px;}
.ls23{letter-spacing:0.086400px;}
.ls8{letter-spacing:0.092400px;}
.ls5{letter-spacing:0.093600px;}
.ls4c{letter-spacing:0.095400px;}
.ls35{letter-spacing:0.098400px;}
.ls41{letter-spacing:0.102000px;}
.ls42{letter-spacing:0.111000px;}
.ls29{letter-spacing:0.113400px;}
.ls2e{letter-spacing:0.116280px;}
.ls1b{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.127200px;}
.ls3a{letter-spacing:0.133200px;}
.ls48{letter-spacing:0.161760px;}
.ls2d{letter-spacing:0.173400px;}
.ls43{letter-spacing:0.181200px;}
.ls3c{letter-spacing:0.194160px;}
.ls20{letter-spacing:0.199200px;}
.ls26{letter-spacing:0.275400px;}
.ls34{letter-spacing:0.434400px;}
.ls24{letter-spacing:0.446400px;}
.ls38{letter-spacing:1.533600px;}
.ls1c{letter-spacing:2.253600px;}
.ls45{letter-spacing:2.613600px;}
.ls1d{letter-spacing:2.973600px;}
.ls3f{letter-spacing:3.333600px;}
.ls37{letter-spacing:3.693600px;}
.ls3d{letter-spacing:5.133600px;}
.ls4d{letter-spacing:5.493600px;}
.lse{letter-spacing:8.733600px;}
.ls11{letter-spacing:9.093600px;}
.ls22{letter-spacing:9.453600px;}
.lsf{letter-spacing:10.533600px;}
.ls2a{letter-spacing:12.333600px;}
.ls10{letter-spacing:15.213600px;}
.ls13{letter-spacing:18.453600px;}
.ls30{letter-spacing:20.253600px;}
.ls1a{letter-spacing:21.333600px;}
.ls3{letter-spacing:55.886400px;}
.ls0{letter-spacing:447.146400px;}
.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;}
}
.ws22{word-spacing:-60.120000px;}
.wse{word-spacing:-13.425600px;}
.ws20{word-spacing:-13.407600px;}
.ws13{word-spacing:-13.399800px;}
.ws1a{word-spacing:-13.359600px;}
.wsa{word-spacing:-13.353600px;}
.ws11{word-spacing:-13.339800px;}
.ws1f{word-spacing:-13.337400px;}
.ws1e{word-spacing:-13.328400px;}
.ws17{word-spacing:-13.324800px;}
.ws26{word-spacing:-13.321800px;}
.wsb{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.294800px;}
.ws18{word-spacing:-13.287000px;}
.ws14{word-spacing:-13.279680px;}
.ws1{word-spacing:-13.275360px;}
.ws1b{word-spacing:-13.268880px;}
.ws21{word-spacing:-13.268160px;}
.ws0{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.218840px;}
.ws15{word-spacing:-13.217400px;}
.ws6{word-spacing:-13.215240px;}
.ws12{word-spacing:-13.208040px;}
.ws19{word-spacing:-13.177440px;}
.ws9{word-spacing:-13.131600px;}
.wsc{word-spacing:-13.114200px;}
.ws3{word-spacing:-13.103400px;}
.wsf{word-spacing:-13.102200px;}
.ws5{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.039800px;}
.ws24{word-spacing:-12.977400px;}
.ws23{word-spacing:-12.968400px;}
.ws25{word-spacing:-12.961800px;}
.ws1c{word-spacing:-12.934800px;}
.ws1d{word-spacing:-12.908400px;}
.ws8{word-spacing:-12.679800px;}
.ws2{word-spacing:-8.533440px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-3.511680px;}
._5{margin-left:-2.362680px;}
._1{margin-left:-1.260360px;}
._9{width:1.442280px;}
._a{width:2.465160px;}
._b{width:3.667320px;}
._2{width:4.896000px;}
._c{width:6.053400px;}
._10{width:7.695360px;}
._e{width:9.138240px;}
._12{width:10.160280px;}
._d{width:11.723400px;}
._11{width:15.090120px;}
._1a{width:16.533000px;}
._19{width:17.555040px;}
._1d{width:18.637200px;}
._1c{width:19.659240px;}
._1b{width:21.222360px;}
._13{width:22.244400px;}
._14{width:23.507520px;}
._28{width:25.208760px;}
._17{width:26.373600px;}
._27{width:28.076040px;}
._21{width:29.158200px;}
._22{width:30.360600px;}
._f{width:32.585040px;}
._18{width:33.787440px;}
._2b{width:36.613080px;}
._1e{width:38.657160px;}
._20{width:40.881600px;}
._29{width:42.293160px;}
._26{width:44.248320px;}
._24{width:45.390600px;}
._30{width:48.156120px;}
._31{width:49.242840px;}
._3{width:55.517040px;}
._23{width:56.697240px;}
._2f{width:59.256000px;}
._6{width:70.743000px;}
._2e{width:74.016000px;}
._2d{width:78.697080px;}
._2c{width:83.386440px;}
._25{width:92.163960px;}
._1f{width:108.155880px;}
._8{width:117.275880px;}
._16{width:156.693600px;}
._7{width:199.173600px;}
._0{width:305.877000px;}
._2a{width:850.893600px;}
._15{width:1541.866920px;}
.fc4{color:transparent;}
.fc3{color:rgb(181,8,46);}
.fc1{color:rgb(112,48,160);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y282{bottom:1.440000px;}
.y277{bottom:2.520000px;}
.y5{bottom:3.330000px;}
.y3{bottom:3.420000px;}
.y23d{bottom:3.780000px;}
.y275{bottom:3.960000px;}
.y8{bottom:4.050000px;}
.y256{bottom:4.230000px;}
.y227{bottom:4.590000px;}
.y27c{bottom:4.680000px;}
.y25b{bottom:4.950000px;}
.y252{bottom:5.670000px;}
.y7{bottom:6.930000px;}
.y223{bottom:7.830000px;}
.y247{bottom:8.190000px;}
.y245{bottom:8.280000px;}
.y190{bottom:8.460000px;}
.y1cc{bottom:8.490000px;}
.y281{bottom:8.550000px;}
.y24a{bottom:8.730000px;}
.y2d6{bottom:8.820000px;}
.y249{bottom:8.910000px;}
.y28d{bottom:9.990000px;}
.y238{bottom:10.260000px;}
.y2df{bottom:10.620000px;}
.y28a{bottom:10.890000px;}
.y2c6{bottom:11.520000px;}
.y2ad{bottom:12.060000px;}
.y195{bottom:12.150000px;}
.y2c0{bottom:12.180000px;}
.y2e1{bottom:12.240000px;}
.y25e{bottom:13.140000px;}
.y285{bottom:13.410000px;}
.y242{bottom:13.770000px;}
.y2d9{bottom:14.310000px;}
.y23a{bottom:15.210000px;}
.y241{bottom:15.390000px;}
.y246{bottom:17.100000px;}
.y27e{bottom:17.280000px;}
.y283{bottom:17.550000px;}
.y2d7{bottom:17.640000px;}
.y259{bottom:17.730000px;}
.y22f{bottom:17.820000px;}
.y1c7{bottom:18.360000px;}
.y1c9{bottom:18.390000px;}
.y2c3{bottom:20.340000px;}
.y212{bottom:20.880000px;}
.y198{bottom:20.970000px;}
.y2c1{bottom:21.000000px;}
.y293{bottom:21.330000px;}
.y23b{bottom:21.360000px;}
.y226{bottom:22.140000px;}
.y236{bottom:22.530000px;}
.y2d0{bottom:23.940000px;}
.y221{bottom:25.380000px;}
.y244{bottom:25.920000px;}
.y25c{bottom:26.010000px;}
.y280{bottom:26.100000px;}
.y284{bottom:26.370000px;}
.y235{bottom:27.300000px;}
.y1cf{bottom:28.290000px;}
.y2c5{bottom:29.070000px;}
.y2ac{bottom:29.610000px;}
.y194{bottom:29.700000px;}
.y263{bottom:29.790000px;}
.y28b{bottom:31.410000px;}
.y24f{bottom:31.770000px;}
.y2d8{bottom:31.860000px;}
.y29c{bottom:32.220000px;}
.y22c{bottom:33.570000px;}
.y27d{bottom:34.920000px;}
.y22b{bottom:35.190000px;}
.y258{bottom:35.310000px;}
.y22e{bottom:35.370000px;}
.y219{bottom:36.180000px;}
.y24e{bottom:36.540000px;}
.y1cd{bottom:37.110000px;}
.y2c2{bottom:37.890000px;}
.y287{bottom:38.160000px;}
.y24c{bottom:38.340000px;}
.y211{bottom:38.430000px;}
.y191{bottom:38.520000px;}
.y261{bottom:38.610000px;}
.y23c{bottom:39.000000px;}
.y231{bottom:39.780000px;}
.y230{bottom:39.960000px;}
.y2ce{bottom:41.490000px;}
.y278{bottom:41.850000px;}
.y28e{bottom:41.940000px;}
.y27a{bottom:42.120000px;}
.y20e{bottom:42.150000px;}
.y222{bottom:43.020000px;}
.y27f{bottom:43.740000px;}
.y53{bottom:43.920000px;}
.y29e{bottom:45.360000px;}
.y1ce{bottom:45.930000px;}
.y276{bottom:46.170000px;}
.y2c4{bottom:46.710000px;}
.y288{bottom:46.980000px;}
.y265{bottom:47.070000px;}
.y24d{bottom:47.160000px;}
.y2a9{bottom:47.250000px;}
.y262{bottom:47.340000px;}
.y193{bottom:47.370000px;}
.y2a5{bottom:47.520000px;}
.y29b{bottom:49.860000px;}
.y2e8{bottom:50.130000px;}
.y2ca{bottom:52.110000px;}
.y257{bottom:52.950000px;}
.y218{bottom:53.820000px;}
.y29f{bottom:54.180000px;}
.y269{bottom:55.170000px;}
.y286{bottom:55.800000px;}
.y24b{bottom:55.890000px;}
.y2ae{bottom:55.980000px;}
.y298{bottom:56.070000px;}
.y197{bottom:56.100000px;}
.y260{bottom:56.160000px;}
.y2b9{bottom:57.600000px;}
.y2dd{bottom:57.960000px;}
.y216{bottom:58.050000px;}
.y2e6{bottom:58.950000px;}
.y2cd{bottom:59.040000px;}
.y2a3{bottom:59.520000px;}
.y2c8{bottom:60.840000px;}
.y21c{bottom:61.590000px;}
.y29d{bottom:62.910000px;}
.y233{bottom:63.000000px;}
.y1{bottom:63.630000px;}
.y264{bottom:64.620000px;}
.y2ab{bottom:64.800000px;}
.y26d{bottom:64.890000px;}
.y192{bottom:64.920000px;}
.y2e7{bottom:67.680000px;}
.y2a1{bottom:68.340000px;}
.y250{bottom:69.030000px;}
.y2c9{bottom:69.660000px;}
.y25f{bottom:73.710000px;}
.y196{bottom:73.740000px;}
.y2b8{bottom:75.180000px;}
.y2dc{bottom:75.510000px;}
.y2a6{bottom:75.870000px;}
.y2cf{bottom:76.680000px;}
.y2a2{bottom:77.070000px;}
.yf6{bottom:78.030000px;}
.y21d{bottom:79.020000px;}
.y2ea{bottom:79.470000px;}
.y1bb{bottom:80.370000px;}
.y232{bottom:80.550000px;}
.ye1{bottom:80.640000px;}
.y18b{bottom:81.180000px;}
.y2aa{bottom:82.440000px;}
.y26c{bottom:82.560000px;}
.y2bd{bottom:83.010000px;}
.y82{bottom:83.250000px;}
.y166{bottom:83.700000px;}
.y214{bottom:86.220000px;}
.y146{bottom:86.310000px;}
.y299{bottom:91.260000px;}
.y273{bottom:91.290000px;}
.y2d4{bottom:91.380000px;}
.y113{bottom:91.530000px;}
.y228{bottom:91.710000px;}
.y2b7{bottom:92.730000px;}
.y2db{bottom:93.060000px;}
.yf5{bottom:95.670000px;}
.y3d{bottom:98.190000px;}
.y18a{bottom:98.730000px;}
.y26b{bottom:100.110000px;}
.y2bc{bottom:100.560000px;}
.y51{bottom:100.800000px;}
.y165{bottom:101.340000px;}
.y2b1{bottom:101.550000px;}
.yc9{bottom:103.410000px;}
.y145{bottom:103.950000px;}
.y229{bottom:105.480000px;}
.y1ab{bottom:106.020000px;}
.y272{bottom:108.930000px;}
.y112{bottom:109.080000px;}
.y2b6{bottom:110.370000px;}
.yf4{bottom:113.220000px;}
.y3c{bottom:115.740000px;}
.ye0{bottom:115.830000px;}
.y189{bottom:116.370000px;}
.y26a{bottom:117.660000px;}
.y50{bottom:118.350000px;}
.y81{bottom:118.440000px;}
.y164{bottom:118.890000px;}
.y2b0{bottom:119.100000px;}
.y19a{bottom:120.600000px;}
.yc8{bottom:120.960000px;}
.y30d{bottom:121.050000px;}
.y144{bottom:121.500000px;}
.y2d3{bottom:121.800000px;}
.y1d1{bottom:125.820000px;}
.y271{bottom:126.480000px;}
.y111{bottom:126.630000px;}
.y254{bottom:126.810000px;}
.y2b5{bottom:127.920000px;}
.y2fa{bottom:130.050000px;}
.yf3{bottom:130.770000px;}
.y335{bottom:131.760000px;}
.y3b{bottom:133.380000px;}
.y188{bottom:133.920000px;}
.y4f{bottom:135.900000px;}
.y80{bottom:135.990000px;}
.y163{bottom:136.530000px;}
.yc7{bottom:138.600000px;}
.y143{bottom:139.050000px;}
.y2d2{bottom:139.440000px;}
.y2f5{bottom:140.760000px;}
.y270{bottom:144.120000px;}
.y110{bottom:144.270000px;}
.y2b4{bottom:145.560000px;}
.yf2{bottom:148.410000px;}
.y313{bottom:148.860000px;}
.y300{bottom:149.850000px;}
.y23f{bottom:150.300000px;}
.y3a{bottom:150.930000px;}
.ydf{bottom:151.020000px;}
.y17f{bottom:151.470000px;}
.y4e{bottom:153.540000px;}
.y30c{bottom:153.630000px;}
.y162{bottom:154.080000px;}
.yc6{bottom:156.150000px;}
.y142{bottom:156.690000px;}
.y21a{bottom:157.680000px;}
.y267{bottom:159.570000px;}
.y26f{bottom:161.670000px;}
.y297{bottom:162.090000px;}
.y334{bottom:162.900000px;}
.y312{bottom:163.080000px;}
.y2b3{bottom:163.110000px;}
.y2af{bottom:164.520000px;}
.yf1{bottom:165.960000px;}
.y39{bottom:168.570000px;}
.y176{bottom:169.110000px;}
.y4d{bottom:171.090000px;}
.y7f{bottom:171.180000px;}
.y30b{bottom:171.270000px;}
.y161{bottom:171.630000px;}
.y2a7{bottom:172.020000px;}
.y2f4{bottom:173.340000px;}
.y32d{bottom:173.520000px;}
.yc5{bottom:173.700000px;}
.y141{bottom:174.240000px;}
.y10f{bottom:176.850000px;}
.y26e{bottom:179.220000px;}
.y296{bottom:179.640000px;}
.y2b2{bottom:180.660000px;}
.y31a{bottom:181.710000px;}
.y2ff{bottom:182.430000px;}
.yf0{bottom:183.600000px;}
.y187{bottom:184.050000px;}
.y30a{bottom:185.490000px;}
.y38{bottom:186.120000px;}
.y175{bottom:186.660000px;}
.y2f3{bottom:187.560000px;}
.y7e{bottom:188.730000px;}
.y172{bottom:189.270000px;}
.yc4{bottom:191.340000px;}
.y140{bottom:191.880000px;}
.y1ca{bottom:193.140000px;}
.y2fe{bottom:196.650000px;}
.yef{bottom:201.150000px;}
.y186{bottom:201.690000px;}
.y37{bottom:203.670000px;}
.yde{bottom:203.760000px;}
.y160{bottom:204.210000px;}
.y32c{bottom:206.100000px;}
.y7d{bottom:206.370000px;}
.y171{bottom:206.820000px;}
.yc3{bottom:208.890000px;}
.y10e{bottom:209.430000px;}
.y1c8{bottom:209.610000px;}
.y319{bottom:214.290000px;}
.yee{bottom:218.700000px;}
.y185{bottom:219.240000px;}
.y32b{bottom:220.320000px;}
.y36{bottom:221.310000px;}
.y15f{bottom:221.850000px;}
.y7c{bottom:223.920000px;}
.y13f{bottom:224.460000px;}
.y306{bottom:227.100000px;}
.y318{bottom:228.630000px;}
.y4c{bottom:236.280000px;}
.yed{bottom:236.370000px;}
.y17e{bottom:236.910000px;}
.y35{bottom:238.890000px;}
.ydd{bottom:238.980000px;}
.y15e{bottom:239.430000px;}
.yab{bottom:241.500000px;}
.y10d{bottom:242.040000px;}
.y279{bottom:244.200000px;}
.y1c6{bottom:244.470000px;}
.y305{bottom:244.740000px;}
.y1fd{bottom:248.160000px;}
.y22a{bottom:248.430000px;}
.y31f{bottom:250.050000px;}
.y4b{bottom:253.920000px;}
.y174{bottom:254.460000px;}
.y34{bottom:256.440000px;}
.y7b{bottom:256.530000px;}
.y15d{bottom:257.070000px;}
.y304{bottom:259.050000px;}
.yaa{bottom:259.140000px;}
.y13e{bottom:259.590000px;}
.y1fc{bottom:264.630000px;}
.y4a{bottom:271.470000px;}
.yec{bottom:271.560000px;}
.y173{bottom:272.010000px;}
.y33{bottom:274.080000px;}
.y326{bottom:274.260000px;}
.y10c{bottom:274.620000px;}
.ya9{bottom:276.690000px;}
.y13d{bottom:277.230000px;}
.y1ba{bottom:277.860000px;}
.y31e{bottom:282.630000px;}
.y1fb{bottom:284.430000px;}
.y22d{bottom:285.780000px;}
.y184{bottom:287.040000px;}
.y49{bottom:289.110000px;}
.y15c{bottom:289.650000px;}
.ydc{bottom:291.720000px;}
.y10b{bottom:292.170000px;}
.y325{bottom:292.260000px;}
.ya8{bottom:294.240000px;}
.y13c{bottom:294.780000px;}
.y1c5{bottom:295.410000px;}
.y31d{bottom:296.940000px;}
.y33a{bottom:297.120000px;}
.y1f0{bottom:302.790000px;}
.y183{bottom:304.590000px;}
.y32{bottom:306.660000px;}
.y15b{bottom:307.200000px;}
.y324{bottom:308.370000px;}
.y27b{bottom:308.550000px;}
.ydb{bottom:309.270000px;}
.y10a{bottom:309.810000px;}
.ya7{bottom:311.880000px;}
.y1c4{bottom:312.960000px;}
.y2e3{bottom:317.370000px;}
.y1fa{bottom:320.340000px;}
.y182{bottom:322.230000px;}
.y31{bottom:324.210000px;}
.y7a{bottom:324.300000px;}
.y15a{bottom:324.840000px;}
.yda{bottom:326.910000px;}
.y13b{bottom:327.360000px;}
.ya6{bottom:329.430000px;}
.y339{bottom:329.700000px;}
.y1c3{bottom:330.600000px;}
.y210{bottom:337.350000px;}
.y1f9{bottom:337.980000px;}
.y181{bottom:339.780000px;}
.y30{bottom:341.850000px;}
.y109{bottom:342.390000px;}
.yd9{bottom:344.460000px;}
.y13a{bottom:345.000000px;}
.ya5{bottom:347.070000px;}
.y338{bottom:347.250000px;}
.y1c2{bottom:348.150000px;}
.y2e2{bottom:349.950000px;}
.y20f{bottom:350.580000px;}
.y1f8{bottom:355.530000px;}
.yeb{bottom:356.880000px;}
.y17d{bottom:357.420000px;}
.y2f{bottom:359.400000px;}
.y79{bottom:359.490000px;}
.y159{bottom:359.940000px;}
.y337{bottom:361.560000px;}
.yd8{bottom:362.010000px;}
.y139{bottom:362.550000px;}
.ya4{bottom:364.620000px;}
.y1c1{bottom:365.790000px;}
.y2cb{bottom:366.420000px;}
.y266{bottom:372.360000px;}
.y1f7{bottom:373.170000px;}
.yea{bottom:374.430000px;}
.y108{bottom:374.970000px;}
.y2e{bottom:377.040000px;}
.y170{bottom:377.580000px;}
.yd7{bottom:379.650000px;}
.y138{bottom:380.100000px;}
.ya3{bottom:382.170000px;}
.y1c0{bottom:383.340000px;}
.y2e0{bottom:386.220000px;}
.y225{bottom:386.490000px;}
.y1f6{bottom:390.720000px;}
.ye9{bottom:392.070000px;}
.y107{bottom:392.520000px;}
.y2d{bottom:394.590000px;}
.y16f{bottom:395.130000px;}
.y2a8{bottom:396.840000px;}
.yd6{bottom:397.200000px;}
.y137{bottom:397.740000px;}
.ya2{bottom:399.810000px;}
.y32a{bottom:400.710000px;}
.y1bf{bottom:400.890000px;}
.y1f5{bottom:408.270000px;}
.ye8{bottom:409.620000px;}
.y106{bottom:410.160000px;}
.y2c{bottom:412.140000px;}
.y78{bottom:412.230000px;}
.y17b{bottom:412.680000px;}
.yd5{bottom:414.840000px;}
.y329{bottom:414.930000px;}
.y136{bottom:415.290000px;}
.ya1{bottom:417.360000px;}
.y1be{bottom:418.530000px;}
.y2de{bottom:423.660000px;}
.y224{bottom:424.830000px;}
.y1f4{bottom:425.910000px;}
.ye7{bottom:427.170000px;}
.y105{bottom:427.710000px;}
.y2b{bottom:429.780000px;}
.y17a{bottom:430.320000px;}
.yd4{bottom:432.390000px;}
.ya0{bottom:435.000000px;}
.y1bd{bottom:436.080000px;}
.y1f3{bottom:443.460000px;}
.y48{bottom:444.720000px;}
.ye6{bottom:444.810000px;}
.y104{bottom:445.350000px;}
.y2a{bottom:447.330000px;}
.y77{bottom:447.420000px;}
.y135{bottom:447.870000px;}
.yd3{bottom:449.940000px;}
.y9f{bottom:452.550000px;}
.y1bc{bottom:453.720000px;}
.y2da{bottom:457.950000px;}
.y17c{bottom:460.290000px;}
.y220{bottom:460.740000px;}
.y1f2{bottom:461.100000px;}
.y47{bottom:462.360000px;}
.y103{bottom:462.900000px;}
.y2f9{bottom:464.700000px;}
.y29{bottom:464.880000px;}
.y76{bottom:464.970000px;}
.y134{bottom:465.510000px;}
.yd2{bottom:467.580000px;}
.y274{bottom:467.670000px;}
.y9e{bottom:470.100000px;}
.y1b9{bottom:473.520000px;}
.y158{bottom:477.930000px;}
.y1f1{bottom:478.650000px;}
.y2f8{bottom:478.920000px;}
.y46{bottom:479.910000px;}
.ye5{bottom:480.000000px;}
.y102{bottom:480.450000px;}
.y28{bottom:482.520000px;}
.y133{bottom:483.060000px;}
.yd1{bottom:485.130000px;}
.y311{bottom:487.470000px;}
.yc2{bottom:487.740000px;}
.y1aa{bottom:491.880000px;}
.y157{bottom:495.480000px;}
.y45{bottom:497.550000px;}
.y101{bottom:498.090000px;}
.y1ef{bottom:498.450000px;}
.y27{bottom:500.070000px;}
.y75{bottom:500.160000px;}
.y132{bottom:500.610000px;}
.y333{bottom:501.420000px;}
.y310{bottom:501.690000px;}
.y9d{bottom:502.680000px;}
.y2a4{bottom:502.950000px;}
.yc1{bottom:505.290000px;}
.y1b8{bottom:509.430000px;}
.y2f2{bottom:511.950000px;}
.y156{bottom:513.030000px;}
.y44{bottom:515.100000px;}
.y16e{bottom:515.640000px;}
.y1e1{bottom:516.810000px;}
.y26{bottom:517.710000px;}
.y332{bottom:519.060000px;}
.y9c{bottom:520.320000px;}
.yc0{bottom:522.930000px;}
.y21f{bottom:523.110000px;}
.y1b7{bottom:527.070000px;}
.y2f1{bottom:529.500000px;}
.y2d5{bottom:530.580000px;}
.y100{bottom:530.670000px;}
.y43{bottom:532.650000px;}
.ye4{bottom:532.740000px;}
.y131{bottom:533.280000px;}
.y1ee{bottom:534.450000px;}
.y25{bottom:535.260000px;}
.y74{bottom:535.350000px;}
.y9b{bottom:537.870000px;}
.ybf{bottom:540.480000px;}
.y317{bottom:542.370000px;}
.y2f0{bottom:543.720000px;}
.y1b6{bottom:544.620000px;}
.y180{bottom:545.610000px;}
.y155{bottom:548.220000px;}
.y331{bottom:548.310000px;}
.y42{bottom:550.290000px;}
.y130{bottom:550.830000px;}
.y1ed{bottom:552.000000px;}
.y24{bottom:552.810000px;}
.y73{bottom:552.900000px;}
.y9a{bottom:555.510000px;}
.y316{bottom:556.590000px;}
.ybe{bottom:558.030000px;}
.y21e{bottom:559.020000px;}
.y1b5{bottom:562.170000px;}
.yff{bottom:563.250000px;}
.y16d{bottom:565.860000px;}
.y41{bottom:567.840000px;}
.ye3{bottom:567.930000px;}
.y12f{bottom:568.380000px;}
.y1ec{bottom:569.550000px;}
.y23{bottom:570.450000px;}
.y268{bottom:571.620000px;}
.y99{bottom:573.060000px;}
.ybd{bottom:575.670000px;}
.y2d1{bottom:578.910000px;}
.y1b4{bottom:579.810000px;}
.yfe{bottom:580.800000px;}
.y16c{bottom:583.410000px;}
.y40{bottom:585.480000px;}
.y12e{bottom:586.020000px;}
.y1eb{bottom:587.190000px;}
.y22{bottom:588.000000px;}
.y72{bottom:588.090000px;}
.y98{bottom:590.610000px;}
.ybc{bottom:593.220000px;}
.y21b{bottom:594.930000px;}
.y1b3{bottom:597.360000px;}
.y154{bottom:598.440000px;}
.y16b{bottom:600.960000px;}
.y3f{bottom:603.030000px;}
.y1ea{bottom:604.740000px;}
.y21{bottom:605.640000px;}
.y97{bottom:608.250000px;}
.y2a0{bottom:609.690000px;}
.ybb{bottom:610.860000px;}
.yfd{bottom:613.380000px;}
.y1b2{bottom:615.000000px;}
.y153{bottom:615.990000px;}
.y309{bottom:618.330000px;}
.y12d{bottom:618.600000px;}
.y3e{bottom:620.580000px;}
.ye2{bottom:620.670000px;}
.y1e9{bottom:622.290000px;}
.yd0{bottom:623.280000px;}
.y96{bottom:625.800000px;}
.yba{bottom:628.410000px;}
.yfc{bottom:631.020000px;}
.y1b1{bottom:632.550000px;}
.y152{bottom:633.540000px;}
.y12c{bottom:636.150000px;}
.y308{bottom:636.330000px;}
.y20{bottom:638.220000px;}
.y1e8{bottom:639.930000px;}
.ycf{bottom:640.830000px;}
.y95{bottom:643.440000px;}
.y20c{bottom:644.430000px;}
.y18e{bottom:645.060000px;}
.yb9{bottom:645.990000px;}
.yfb{bottom:648.600000px;}
.y1b0{bottom:650.130000px;}
.y303{bottom:651.030000px;}
.y151{bottom:651.210000px;}
.y307{bottom:652.560000px;}
.y12b{bottom:653.820000px;}
.y71{bottom:655.890000px;}
.y1f{bottom:656.430000px;}
.y1e7{bottom:657.510000px;}
.yce{bottom:658.410000px;}
.y94{bottom:661.020000px;}
.y2fd{bottom:665.340000px;}
.yfa{bottom:666.150000px;}
.y1af{bottom:667.770000px;}
.y302{bottom:668.580000px;}
.y16a{bottom:668.760000px;}
.y179{bottom:671.370000px;}
.y321{bottom:673.350000px;}
.y70{bottom:673.440000px;}
.y323{bottom:673.710000px;}
.y1e6{bottom:675.150000px;}
.ycd{bottom:676.050000px;}
.y1e{bottom:676.950000px;}
.y20b{bottom:677.040000px;}
.y93{bottom:678.570000px;}
.y301{bottom:682.800000px;}
.y2fc{bottom:682.980000px;}
.yf9{bottom:683.790000px;}
.y1ae{bottom:685.320000px;}
.y12a{bottom:686.400000px;}
.y178{bottom:688.920000px;}
.y6f{bottom:690.990000px;}
.y320{bottom:691.440000px;}
.y322{bottom:691.800000px;}
.y1e5{bottom:692.700000px;}
.ycc{bottom:693.600000px;}
.y92{bottom:696.210000px;}
.y2fb{bottom:697.200000px;}
.y1d{bottom:697.380000px;}
.yf8{bottom:701.340000px;}
.y1ad{bottom:702.870000px;}
.y129{bottom:703.950000px;}
.y6e{bottom:708.630000px;}
.y20a{bottom:709.620000px;}
.y1e4{bottom:710.250000px;}
.ycb{bottom:711.150000px;}
.y23e{bottom:713.130000px;}
.y91{bottom:713.760000px;}
.y18d{bottom:714.300000px;}
.y31c{bottom:715.830000px;}
.y150{bottom:718.980000px;}
.y1ac{bottom:720.510000px;}
.y128{bottom:721.500000px;}
.y6d{bottom:726.180000px;}
.y1e3{bottom:727.890000px;}
.yca{bottom:728.790000px;}
.y213{bottom:729.780000px;}
.y31b{bottom:730.050000px;}
.yb8{bottom:731.400000px;}
.y328{bottom:733.020000px;}
.y1c{bottom:733.110000px;}
.yf7{bottom:733.920000px;}
.y18c{bottom:734.640000px;}
.y14f{bottom:736.530000px;}
.y127{bottom:739.140000px;}
.y2cc{bottom:739.500000px;}
.y1a9{bottom:740.310000px;}
.y209{bottom:742.200000px;}
.y6c{bottom:743.820000px;}
.y1e2{bottom:745.440000px;}
.y90{bottom:746.340000px;}
.yb7{bottom:748.950000px;}
.y327{bottom:749.220000px;}
.y1b{bottom:750.660000px;}
.y169{bottom:754.080000px;}
.y177{bottom:756.690000px;}
.y295{bottom:757.860000px;}
.y199{bottom:758.670000px;}
.y6b{bottom:761.370000px;}
.y8f{bottom:763.980000px;}
.y1e0{bottom:765.330000px;}
.y253{bottom:765.870000px;}
.yb6{bottom:766.500000px;}
.y1a{bottom:768.210000px;}
.y14e{bottom:769.110000px;}
.y126{bottom:771.720000px;}
.y208{bottom:774.780000px;}
.y1a8{bottom:776.220000px;}
.y2ec{bottom:777.210000px;}
.y6a{bottom:778.920000px;}
.y8e{bottom:781.530000px;}
.y1d0{bottom:783.600000px;}
.yb5{bottom:784.140000px;}
.y19{bottom:785.850000px;}
.y14d{bottom:786.750000px;}
.y125{bottom:789.270000px;}
.y1a7{bottom:793.860000px;}
.y69{bottom:796.560000px;}
.y8d{bottom:799.080000px;}
.yb4{bottom:801.690000px;}
.y1df{bottom:801.960000px;}
.y18{bottom:803.400000px;}
.y14c{bottom:804.300000px;}
.y124{bottom:806.910000px;}
.y207{bottom:807.360000px;}
.y2eb{bottom:809.790000px;}
.y1a6{bottom:811.410000px;}
.y336{bottom:811.950000px;}
.y68{bottom:814.110000px;}
.y8c{bottom:816.720000px;}
.yb3{bottom:819.330000px;}
.y1de{bottom:820.320000px;}
.y17{bottom:821.040000px;}
.y14b{bottom:821.850000px;}
.y123{bottom:824.460000px;}
.y30f{bottom:826.080000px;}
.y2e9{bottom:826.260000px;}
.y1a5{bottom:829.050000px;}
.y2f7{bottom:830.400000px;}
.y217{bottom:831.390000px;}
.y67{bottom:831.750000px;}
.y8b{bottom:834.270000px;}
.yb2{bottom:836.880000px;}
.y16{bottom:838.590000px;}
.y1dd{bottom:838.680000px;}
.y2ef{bottom:838.950000px;}
.y14a{bottom:839.490000px;}
.y206{bottom:839.940000px;}
.y30e{bottom:840.300000px;}
.y122{bottom:842.010000px;}
.y2f6{bottom:844.620000px;}
.y1a4{bottom:846.600000px;}
.y66{bottom:849.300000px;}
.y215{bottom:849.750000px;}
.y330{bottom:850.200000px;}
.y2c7{bottom:851.640000px;}
.y8a{bottom:851.910000px;}
.yb1{bottom:854.430000px;}
.y15{bottom:856.140000px;}
.y2ee{bottom:856.500000px;}
.y1dc{bottom:856.950000px;}
.y149{bottom:857.040000px;}
.y121{bottom:859.650000px;}
.y1a3{bottom:864.150000px;}
.y248{bottom:864.420000px;}
.y65{bottom:866.850000px;}
.y32f{bottom:867.750000px;}
.y89{bottom:869.460000px;}
.y315{bottom:870.450000px;}
.y2ed{bottom:870.720000px;}
.yb0{bottom:872.070000px;}
.y205{bottom:872.520000px;}
.y14{bottom:873.780000px;}
.y168{bottom:874.590000px;}
.y1db{bottom:875.310000px;}
.y29a{bottom:877.740000px;}
.y1a2{bottom:881.790000px;}
.y32e{bottom:881.970000px;}
.y64{bottom:884.490000px;}
.y314{bottom:884.670000px;}
.y88{bottom:887.010000px;}
.y25d{bottom:889.170000px;}
.yaf{bottom:889.620000px;}
.y13{bottom:891.330000px;}
.y120{bottom:892.230000px;}
.y1da{bottom:893.670000px;}
.y1a1{bottom:899.340000px;}
.y63{bottom:902.040000px;}
.y87{bottom:904.650000px;}
.y204{bottom:905.190000px;}
.yae{bottom:907.260000px;}
.y12{bottom:908.970000px;}
.y11f{bottom:909.780000px;}
.y1d9{bottom:911.940000px;}
.y1a0{bottom:916.980000px;}
.y62{bottom:919.590000px;}
.y86{bottom:922.200000px;}
.yad{bottom:924.810000px;}
.y11{bottom:926.520000px;}
.y11e{bottom:927.420000px;}
.y1d8{bottom:930.300000px;}
.y19f{bottom:934.530000px;}
.y61{bottom:937.230000px;}
.y203{bottom:937.770000px;}
.y85{bottom:939.840000px;}
.yac{bottom:942.360000px;}
.y1d7{bottom:948.660000px;}
.y19e{bottom:952.080000px;}
.y60{bottom:954.780000px;}
.y84{bottom:957.390000px;}
.y290{bottom:958.020000px;}
.y11d{bottom:960.000000px;}
.y10{bottom:962.070000px;}
.y1d6{bottom:967.020000px;}
.y19d{bottom:969.720000px;}
.y202{bottom:970.350000px;}
.y292{bottom:971.430000px;}
.y240{bottom:971.880000px;}
.y5f{bottom:972.420000px;}
.y83{bottom:974.940000px;}
.y11c{bottom:977.550000px;}
.y25a{bottom:977.910000px;}
.y2ba{bottom:984.930000px;}
.y1d5{bottom:985.290000px;}
.y19c{bottom:987.270000px;}
.y5e{bottom:989.970000px;}
.y28f{bottom:990.600000px;}
.y148{bottom:992.580000px;}
.y11b{bottom:995.190000px;}
.y2e5{bottom:996.720000px;}
.yf{bottom:998.430000px;}
.y243{bottom:1001.400000px;}
.y201{bottom:1002.930000px;}
.y1d4{bottom:1003.650000px;}
.y19b{bottom:1004.910000px;}
.y28c{bottom:1007.070000px;}
.y5d{bottom:1007.520000px;}
.y147{bottom:1010.130000px;}
.y167{bottom:1012.740000px;}
.ye{bottom:1016.070000px;}
.y1d3{bottom:1022.010000px;}
.y18f{bottom:1024.710000px;}
.y5c{bottom:1025.160000px;}
.y11a{bottom:1027.770000px;}
.yd{bottom:1033.620000px;}
.y200{bottom:1035.510000px;}
.y1d2{bottom:1040.370000px;}
.y255{bottom:1041.630000px;}
.y5b{bottom:1042.710000px;}
.y119{bottom:1045.320000px;}
.y234{bottom:1047.210000px;}
.y20d{bottom:1050.000000px;}
.y2bf{bottom:1054.680000px;}
.y1cb{bottom:1060.170000px;}
.y5a{bottom:1060.350000px;}
.yc{bottom:1062.420000px;}
.y118{bottom:1062.870000px;}
.y1ff{bottom:1068.120000px;}
.y294{bottom:1077.750000px;}
.y59{bottom:1077.930000px;}
.y117{bottom:1080.540000px;}
.y2be{bottom:1090.620000px;}
.y58{bottom:1095.480000px;}
.yb{bottom:1095.660000px;}
.y116{bottom:1098.090000px;}
.y1fe{bottom:1100.700000px;}
.y239{bottom:1103.040000px;}
.y289{bottom:1104.120000px;}
.y291{bottom:1112.670000px;}
.y57{bottom:1113.120000px;}
.y115{bottom:1115.730000px;}
.ya{bottom:1116.810000px;}
.y251{bottom:1125.360000px;}
.y2e4{bottom:1127.700000px;}
.y56{bottom:1130.670000px;}
.y114{bottom:1133.280000px;}
.y2bb{bottom:1144.170000px;}
.y237{bottom:1146.510000px;}
.y9{bottom:1146.870000px;}
.y55{bottom:1148.310000px;}
.y6{bottom:1163.970000px;}
.y54{bottom:1165.860000px;}
.y4{bottom:1185.120000px;}
.y52{bottom:1194.030000px;}
.y2{bottom:1202.670000px;}
.h5{height:17.550000px;}
.h12{height:17.572500px;}
.h3{height:17.640000px;}
.h40{height:19.890000px;}
.h6{height:21.150000px;}
.h3d{height:27.270000px;}
.h36{height:31.320000px;}
.h7d{height:32.040000px;}
.h14{height:32.580000px;}
.h15{height:32.610000px;}
.h5c{height:32.670000px;}
.h2f{height:35.100000px;}
.h2c{height:35.187000px;}
.h2a{height:35.190000px;}
.h6c{height:35.220000px;}
.h2e{height:37.617000px;}
.h2d{height:37.620000px;}
.h8{height:38.481328px;}
.h37{height:41.220000px;}
.h9{height:44.383535px;}
.h3c{height:45.090000px;}
.h79{height:46.077000px;}
.h78{height:46.080000px;}
.h4{height:50.902383px;}
.hf{height:50.902396px;}
.h59{height:50.902398px;}
.h11{height:50.902399px;}
.hd{height:50.902401px;}
.h1a{height:50.902403px;}
.h44{height:50.902405px;}
.h56{height:50.902406px;}
.h26{height:50.902408px;}
.h1f{height:50.902412px;}
.h42{height:50.902414px;}
.h63{height:50.902418px;}
.h81{height:50.902421px;}
.h6b{height:52.830000px;}
.h38{height:53.580000px;}
.h39{height:53.583000px;}
.ha{height:59.503535px;}
.h53{height:59.503547px;}
.h1d{height:59.503552px;}
.h50{height:59.503556px;}
.h23{height:59.503564px;}
.h70{height:59.503565px;}
.h21{height:59.503568px;}
.h28{height:59.503570px;}
.h6a{height:59.503573px;}
.h7{height:60.960938px;}
.h2b{height:61.650000px;}
.h46{height:63.000000px;}
.h54{height:63.627000px;}
.h52{height:63.630000px;}
.h33{height:63.987000px;}
.h32{height:63.990000px;}
.h2{height:65.204473px;}
.hb{height:65.526152px;}
.h6e{height:69.027000px;}
.h6d{height:69.030000px;}
.h1c{height:70.200000px;}
.h7b{height:70.377000px;}
.h7a{height:70.380000px;}
.h58{height:73.710000px;}
.h3b{height:74.610000px;}
.h43{height:81.480000px;}
.h45{height:81.484500px;}
.h16{height:85.080000px;}
.h48{height:87.925500px;}
.h47{height:87.930000px;}
.hc{height:87.960000px;}
.h61{height:92.965500px;}
.h60{height:92.970000px;}
.h4f{height:94.590000px;}
.h5a{height:94.800000px;}
.h19{height:95.160000px;}
.h24{height:100.890000px;}
.h31{height:101.340000px;}
.h4e{height:103.230000px;}
.h55{height:104.790000px;}
.h57{height:104.793000px;}
.h3e{height:105.210000px;}
.h67{height:105.387000px;}
.h66{height:105.390000px;}
.h5e{height:105.510000px;}
.h5f{height:105.514500px;}
.h64{height:105.930000px;}
.h74{height:111.415500px;}
.h73{height:111.420000px;}
.h22{height:119.160000px;}
.h4a{height:122.575500px;}
.h49{height:122.580000px;}
.h20{height:126.990000px;}
.h51{height:127.350000px;}
.h7e{height:128.730000px;}
.h7f{height:128.734500px;}
.h35{height:130.620000px;}
.h71{height:132.565500px;}
.h6f{height:132.570000px;}
.h27{height:134.032500px;}
.h5b{height:138.990000px;}
.h62{height:147.442500px;}
.h3f{height:149.040000px;}
.h34{height:154.470000px;}
.h77{height:158.325000px;}
.h7c{height:161.910000px;}
.h80{height:169.740000px;}
.h13{height:193.410000px;}
.h4d{height:193.425000px;}
.h4c{height:193.440000px;}
.h69{height:194.430000px;}
.h68{height:231.510000px;}
.h29{height:243.630000px;}
.h10{height:246.165000px;}
.h18{height:246.270000px;}
.h1e{height:246.960000px;}
.h30{height:258.060000px;}
.he{height:263.790000px;}
.h76{height:271.995000px;}
.h75{height:272.010000px;}
.h17{height:274.320000px;}
.h3a{height:333.360000px;}
.h5d{height:352.560000px;}
.h41{height:357.240000px;}
.h25{height:378.390000px;}
.h4b{height:392.700000px;}
.h65{height:426.360000px;}
.h72{height:484.500000px;}
.h1b{height:697.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:32.580000px;}
.w1f{width:32.940000px;}
.w1b{width:34.410000px;}
.w16{width:34.770000px;}
.w4{width:42.750000px;}
.we{width:44.280000px;}
.w25{width:49.770000px;}
.w29{width:51.510000px;}
.w1c{width:71.005500px;}
.w17{width:71.725500px;}
.w1d{width:89.280000px;}
.w18{width:89.640000px;}
.wc{width:93.240000px;}
.w7{width:93.960000px;}
.w24{width:99.480000px;}
.w20{width:99.840000px;}
.wa{width:102.690000px;}
.w9{width:105.480000px;}
.w8{width:105.510000px;}
.w6{width:105.682500px;}
.wb{width:106.402500px;}
.w11{width:145.650000px;}
.w12{width:145.710000px;}
.w26{width:165.000000px;}
.w22{width:167.310000px;}
.w28{width:170.010000px;}
.w1e{width:172.455000px;}
.w19{width:172.470000px;}
.w14{width:180.195000px;}
.w10{width:181.995000px;}
.w2a{width:193.225500px;}
.w5{width:212.430000px;}
.wf{width:219.810000px;}
.w13{width:221.610000px;}
.w2c{width:253.110000px;}
.w2b{width:255.075000px;}
.w2d{width:255.090000px;}
.wd{width:255.180000px;}
.w3{width:265.800000px;}
.w15{width:265.890000px;}
.w1a{width:368.850000px;}
.w27{width:391.380000px;}
.w2{width:454.740000px;}
.w21{width:460.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.780000px;}
.x5{left:8.100000px;}
.xb{left:22.500000px;}
.x13{left:27.540000px;}
.xd{left:29.460000px;}
.x28{left:31.140000px;}
.x1d{left:40.855500px;}
.x1e{left:49.860000px;}
.x2{left:55.710000px;}
.x1{left:63.810000px;}
.x8{left:85.140000px;}
.x6{left:92.730000px;}
.x1f{left:96.750000px;}
.x18{left:101.430000px;}
.xc{left:106.560000px;}
.x14{left:108.090000px;}
.x22{left:113.580000px;}
.x25{left:115.324500px;}
.xa{left:122.160000px;}
.x19{left:136.204500px;}
.x20{left:196.590000px;}
.x1a{left:207.930000px;}
.x23{left:278.580000px;}
.x1b{left:297.570000px;}
.x26{left:308.550000px;}
.xe{left:318.990000px;}
.x15{left:327.900000px;}
.x17{left:329.700000px;}
.xf{left:424.680000px;}
.x1c{left:470.040000px;}
.x7{left:478.500000px;}
.x9{left:499.830000px;}
.x4{left:510.450000px;}
.x10{left:518.640000px;}
.x27{left:563.640000px;}
.x11{left:624.150000px;}
.x16{left:655.560000px;}
.x21{left:657.180000px;}
.x24{left:669.960000px;}
.x2e{left:678.780000px;}
.x2f{left:711.810000px;}
.x12{left:729.630000px;}
.x30{left:731.430000px;}
.x31{left:741.600000px;}
.x32{left:749.520000px;}
.x2a{left:760.680000px;}
.x2c{left:770.850000px;}
.x2d{left:781.380000px;}
.x33{left:787.230000px;}
.x29{left:802.710000px;}
.x2b{left:813.600000px;}
@media print{
.v1{vertical-align:-68.800000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.546667pt;}
.ls14{letter-spacing:-0.485867pt;}
.ls21{letter-spacing:-0.395200pt;}
.ls15{letter-spacing:-0.379733pt;}
.ls47{letter-spacing:-0.348267pt;}
.ls40{letter-spacing:-0.282667pt;}
.ls3e{letter-spacing:-0.259200pt;}
.ls16{letter-spacing:-0.253867pt;}
.ls4b{letter-spacing:-0.235200pt;}
.ls46{letter-spacing:-0.229333pt;}
.ls4a{letter-spacing:-0.221333pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls28{letter-spacing:-0.136533pt;}
.lsc{letter-spacing:-0.111467pt;}
.ls27{letter-spacing:-0.110400pt;}
.ls9{letter-spacing:-0.109333pt;}
.ls1f{letter-spacing:-0.099733pt;}
.ls17{letter-spacing:-0.084267pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls39{letter-spacing:-0.043520pt;}
.ls2b{letter-spacing:-0.028160pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls2c{letter-spacing:-0.016320pt;}
.lsd{letter-spacing:-0.009920pt;}
.ls32{letter-spacing:-0.008000pt;}
.ls33{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.020480pt;}
.ls49{letter-spacing:0.032640pt;}
.ls44{letter-spacing:0.037120pt;}
.ls3b{letter-spacing:0.037760pt;}
.ls1{letter-spacing:0.043520pt;}
.ls2f{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.053760pt;}
.ls36{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.054400pt;}
.ls1e{letter-spacing:0.060800pt;}
.ls12{letter-spacing:0.065920pt;}
.ls19{letter-spacing:0.066133pt;}
.ls23{letter-spacing:0.076800pt;}
.ls8{letter-spacing:0.082133pt;}
.ls5{letter-spacing:0.083200pt;}
.ls4c{letter-spacing:0.084800pt;}
.ls35{letter-spacing:0.087467pt;}
.ls41{letter-spacing:0.090667pt;}
.ls42{letter-spacing:0.098667pt;}
.ls29{letter-spacing:0.100800pt;}
.ls2e{letter-spacing:0.103360pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.113067pt;}
.ls3a{letter-spacing:0.118400pt;}
.ls48{letter-spacing:0.143787pt;}
.ls2d{letter-spacing:0.154133pt;}
.ls43{letter-spacing:0.161067pt;}
.ls3c{letter-spacing:0.172587pt;}
.ls20{letter-spacing:0.177067pt;}
.ls26{letter-spacing:0.244800pt;}
.ls34{letter-spacing:0.386133pt;}
.ls24{letter-spacing:0.396800pt;}
.ls38{letter-spacing:1.363200pt;}
.ls1c{letter-spacing:2.003200pt;}
.ls45{letter-spacing:2.323200pt;}
.ls1d{letter-spacing:2.643200pt;}
.ls3f{letter-spacing:2.963200pt;}
.ls37{letter-spacing:3.283200pt;}
.ls3d{letter-spacing:4.563200pt;}
.ls4d{letter-spacing:4.883200pt;}
.lse{letter-spacing:7.763200pt;}
.ls11{letter-spacing:8.083200pt;}
.ls22{letter-spacing:8.403200pt;}
.lsf{letter-spacing:9.363200pt;}
.ls2a{letter-spacing:10.963200pt;}
.ls10{letter-spacing:13.523200pt;}
.ls13{letter-spacing:16.403200pt;}
.ls30{letter-spacing:18.003200pt;}
.ls1a{letter-spacing:18.963200pt;}
.ls3{letter-spacing:49.676800pt;}
.ls0{letter-spacing:397.463467pt;}
.ws22{word-spacing:-53.440000pt;}
.wse{word-spacing:-11.933867pt;}
.ws20{word-spacing:-11.917867pt;}
.ws13{word-spacing:-11.910933pt;}
.ws1a{word-spacing:-11.875200pt;}
.wsa{word-spacing:-11.869867pt;}
.ws11{word-spacing:-11.857600pt;}
.ws1f{word-spacing:-11.855467pt;}
.ws1e{word-spacing:-11.847467pt;}
.ws17{word-spacing:-11.844267pt;}
.ws26{word-spacing:-11.841600pt;}
.wsb{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.817600pt;}
.ws18{word-spacing:-11.810667pt;}
.ws14{word-spacing:-11.804160pt;}
.ws1{word-spacing:-11.800320pt;}
.ws1b{word-spacing:-11.794560pt;}
.ws21{word-spacing:-11.793920pt;}
.ws0{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.750080pt;}
.ws15{word-spacing:-11.748800pt;}
.ws6{word-spacing:-11.746880pt;}
.ws12{word-spacing:-11.740480pt;}
.ws19{word-spacing:-11.713280pt;}
.ws9{word-spacing:-11.672533pt;}
.wsc{word-spacing:-11.657067pt;}
.ws3{word-spacing:-11.647467pt;}
.wsf{word-spacing:-11.646400pt;}
.ws5{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws24{word-spacing:-11.535467pt;}
.ws23{word-spacing:-11.527467pt;}
.ws25{word-spacing:-11.521600pt;}
.ws1c{word-spacing:-11.497600pt;}
.ws1d{word-spacing:-11.474133pt;}
.ws8{word-spacing:-11.270933pt;}
.ws2{word-spacing:-7.585280pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-3.121493pt;}
._5{margin-left:-2.100160pt;}
._1{margin-left:-1.120320pt;}
._9{width:1.282027pt;}
._a{width:2.191253pt;}
._b{width:3.259840pt;}
._2{width:4.352000pt;}
._c{width:5.380800pt;}
._10{width:6.840320pt;}
._e{width:8.122880pt;}
._12{width:9.031360pt;}
._d{width:10.420800pt;}
._11{width:13.413440pt;}
._1a{width:14.696000pt;}
._19{width:15.604480pt;}
._1d{width:16.566400pt;}
._1c{width:17.474880pt;}
._1b{width:18.864320pt;}
._13{width:19.772800pt;}
._14{width:20.895573pt;}
._28{width:22.407787pt;}
._17{width:23.443200pt;}
._27{width:24.956480pt;}
._21{width:25.918400pt;}
._22{width:26.987200pt;}
._f{width:28.964480pt;}
._18{width:30.033280pt;}
._2b{width:32.544960pt;}
._1e{width:34.361920pt;}
._20{width:36.339200pt;}
._29{width:37.593920pt;}
._26{width:39.331840pt;}
._24{width:40.347200pt;}
._30{width:42.805440pt;}
._31{width:43.771413pt;}
._3{width:49.348480pt;}
._23{width:50.397547pt;}
._2f{width:52.672000pt;}
._6{width:62.882667pt;}
._2e{width:65.792000pt;}
._2d{width:69.952960pt;}
._2c{width:74.121280pt;}
._25{width:81.923520pt;}
._1f{width:96.138560pt;}
._8{width:104.245227pt;}
._16{width:139.283200pt;}
._7{width:177.043200pt;}
._0{width:271.890667pt;}
._2a{width:756.349867pt;}
._15{width:1370.548373pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y282{bottom:1.280000pt;}
.y277{bottom:2.240000pt;}
.y5{bottom:2.960000pt;}
.y3{bottom:3.040000pt;}
.y23d{bottom:3.360000pt;}
.y275{bottom:3.520000pt;}
.y8{bottom:3.600000pt;}
.y256{bottom:3.760000pt;}
.y227{bottom:4.080000pt;}
.y27c{bottom:4.160000pt;}
.y25b{bottom:4.400000pt;}
.y252{bottom:5.040000pt;}
.y7{bottom:6.160000pt;}
.y223{bottom:6.960000pt;}
.y247{bottom:7.280000pt;}
.y245{bottom:7.360000pt;}
.y190{bottom:7.520000pt;}
.y1cc{bottom:7.546667pt;}
.y281{bottom:7.600000pt;}
.y24a{bottom:7.760000pt;}
.y2d6{bottom:7.840000pt;}
.y249{bottom:7.920000pt;}
.y28d{bottom:8.880000pt;}
.y238{bottom:9.120000pt;}
.y2df{bottom:9.440000pt;}
.y28a{bottom:9.680000pt;}
.y2c6{bottom:10.240000pt;}
.y2ad{bottom:10.720000pt;}
.y195{bottom:10.800000pt;}
.y2c0{bottom:10.826667pt;}
.y2e1{bottom:10.880000pt;}
.y25e{bottom:11.680000pt;}
.y285{bottom:11.920000pt;}
.y242{bottom:12.240000pt;}
.y2d9{bottom:12.720000pt;}
.y23a{bottom:13.520000pt;}
.y241{bottom:13.680000pt;}
.y246{bottom:15.200000pt;}
.y27e{bottom:15.360000pt;}
.y283{bottom:15.600000pt;}
.y2d7{bottom:15.680000pt;}
.y259{bottom:15.760000pt;}
.y22f{bottom:15.840000pt;}
.y1c7{bottom:16.320000pt;}
.y1c9{bottom:16.346667pt;}
.y2c3{bottom:18.080000pt;}
.y212{bottom:18.560000pt;}
.y198{bottom:18.640000pt;}
.y2c1{bottom:18.666667pt;}
.y293{bottom:18.960000pt;}
.y23b{bottom:18.986667pt;}
.y226{bottom:19.680000pt;}
.y236{bottom:20.026667pt;}
.y2d0{bottom:21.280000pt;}
.y221{bottom:22.560000pt;}
.y244{bottom:23.040000pt;}
.y25c{bottom:23.120000pt;}
.y280{bottom:23.200000pt;}
.y284{bottom:23.440000pt;}
.y235{bottom:24.266667pt;}
.y1cf{bottom:25.146667pt;}
.y2c5{bottom:25.840000pt;}
.y2ac{bottom:26.320000pt;}
.y194{bottom:26.400000pt;}
.y263{bottom:26.480000pt;}
.y28b{bottom:27.920000pt;}
.y24f{bottom:28.240000pt;}
.y2d8{bottom:28.320000pt;}
.y29c{bottom:28.640000pt;}
.y22c{bottom:29.840000pt;}
.y27d{bottom:31.040000pt;}
.y22b{bottom:31.280000pt;}
.y258{bottom:31.386667pt;}
.y22e{bottom:31.440000pt;}
.y219{bottom:32.160000pt;}
.y24e{bottom:32.480000pt;}
.y1cd{bottom:32.986667pt;}
.y2c2{bottom:33.680000pt;}
.y287{bottom:33.920000pt;}
.y24c{bottom:34.080000pt;}
.y211{bottom:34.160000pt;}
.y191{bottom:34.240000pt;}
.y261{bottom:34.320000pt;}
.y23c{bottom:34.666667pt;}
.y231{bottom:35.360000pt;}
.y230{bottom:35.520000pt;}
.y2ce{bottom:36.880000pt;}
.y278{bottom:37.200000pt;}
.y28e{bottom:37.280000pt;}
.y27a{bottom:37.440000pt;}
.y20e{bottom:37.466667pt;}
.y222{bottom:38.240000pt;}
.y27f{bottom:38.880000pt;}
.y53{bottom:39.040000pt;}
.y29e{bottom:40.320000pt;}
.y1ce{bottom:40.826667pt;}
.y276{bottom:41.040000pt;}
.y2c4{bottom:41.520000pt;}
.y288{bottom:41.760000pt;}
.y265{bottom:41.840000pt;}
.y24d{bottom:41.920000pt;}
.y2a9{bottom:42.000000pt;}
.y262{bottom:42.080000pt;}
.y193{bottom:42.106667pt;}
.y2a5{bottom:42.240000pt;}
.y29b{bottom:44.320000pt;}
.y2e8{bottom:44.560000pt;}
.y2ca{bottom:46.320000pt;}
.y257{bottom:47.066667pt;}
.y218{bottom:47.840000pt;}
.y29f{bottom:48.160000pt;}
.y269{bottom:49.040000pt;}
.y286{bottom:49.600000pt;}
.y24b{bottom:49.680000pt;}
.y2ae{bottom:49.760000pt;}
.y298{bottom:49.840000pt;}
.y197{bottom:49.866667pt;}
.y260{bottom:49.920000pt;}
.y2b9{bottom:51.200000pt;}
.y2dd{bottom:51.520000pt;}
.y216{bottom:51.600000pt;}
.y2e6{bottom:52.400000pt;}
.y2cd{bottom:52.480000pt;}
.y2a3{bottom:52.906667pt;}
.y2c8{bottom:54.080000pt;}
.y21c{bottom:54.746667pt;}
.y29d{bottom:55.920000pt;}
.y233{bottom:56.000000pt;}
.y1{bottom:56.560000pt;}
.y264{bottom:57.440000pt;}
.y2ab{bottom:57.600000pt;}
.y26d{bottom:57.680000pt;}
.y192{bottom:57.706667pt;}
.y2e7{bottom:60.160000pt;}
.y2a1{bottom:60.746667pt;}
.y250{bottom:61.360000pt;}
.y2c9{bottom:61.920000pt;}
.y25f{bottom:65.520000pt;}
.y196{bottom:65.546667pt;}
.y2b8{bottom:66.826667pt;}
.y2dc{bottom:67.120000pt;}
.y2a6{bottom:67.440000pt;}
.y2cf{bottom:68.160000pt;}
.y2a2{bottom:68.506667pt;}
.yf6{bottom:69.360000pt;}
.y21d{bottom:70.240000pt;}
.y2ea{bottom:70.640000pt;}
.y1bb{bottom:71.440000pt;}
.y232{bottom:71.600000pt;}
.ye1{bottom:71.680000pt;}
.y18b{bottom:72.160000pt;}
.y2aa{bottom:73.280000pt;}
.y26c{bottom:73.386667pt;}
.y2bd{bottom:73.786667pt;}
.y82{bottom:74.000000pt;}
.y166{bottom:74.400000pt;}
.y214{bottom:76.640000pt;}
.y146{bottom:76.720000pt;}
.y299{bottom:81.120000pt;}
.y273{bottom:81.146667pt;}
.y2d4{bottom:81.226667pt;}
.y113{bottom:81.360000pt;}
.y228{bottom:81.520000pt;}
.y2b7{bottom:82.426667pt;}
.y2db{bottom:82.720000pt;}
.yf5{bottom:85.040000pt;}
.y3d{bottom:87.280000pt;}
.y18a{bottom:87.760000pt;}
.y26b{bottom:88.986667pt;}
.y2bc{bottom:89.386667pt;}
.y51{bottom:89.600000pt;}
.y165{bottom:90.080000pt;}
.y2b1{bottom:90.266667pt;}
.yc9{bottom:91.920000pt;}
.y145{bottom:92.400000pt;}
.y229{bottom:93.760000pt;}
.y1ab{bottom:94.240000pt;}
.y272{bottom:96.826667pt;}
.y112{bottom:96.960000pt;}
.y2b6{bottom:98.106667pt;}
.yf4{bottom:100.640000pt;}
.y3c{bottom:102.880000pt;}
.ye0{bottom:102.960000pt;}
.y189{bottom:103.440000pt;}
.y26a{bottom:104.586667pt;}
.y50{bottom:105.200000pt;}
.y81{bottom:105.280000pt;}
.y164{bottom:105.680000pt;}
.y2b0{bottom:105.866667pt;}
.y19a{bottom:107.200000pt;}
.yc8{bottom:107.520000pt;}
.y30d{bottom:107.600000pt;}
.y144{bottom:108.000000pt;}
.y2d3{bottom:108.266667pt;}
.y1d1{bottom:111.840000pt;}
.y271{bottom:112.426667pt;}
.y111{bottom:112.560000pt;}
.y254{bottom:112.720000pt;}
.y2b5{bottom:113.706667pt;}
.y2fa{bottom:115.600000pt;}
.yf3{bottom:116.240000pt;}
.y335{bottom:117.120000pt;}
.y3b{bottom:118.560000pt;}
.y188{bottom:119.040000pt;}
.y4f{bottom:120.800000pt;}
.y80{bottom:120.880000pt;}
.y163{bottom:121.360000pt;}
.yc7{bottom:123.200000pt;}
.y143{bottom:123.600000pt;}
.y2d2{bottom:123.946667pt;}
.y2f5{bottom:125.120000pt;}
.y270{bottom:128.106667pt;}
.y110{bottom:128.240000pt;}
.y2b4{bottom:129.386667pt;}
.yf2{bottom:131.920000pt;}
.y313{bottom:132.320000pt;}
.y300{bottom:133.200000pt;}
.y23f{bottom:133.600000pt;}
.y3a{bottom:134.160000pt;}
.ydf{bottom:134.240000pt;}
.y17f{bottom:134.640000pt;}
.y4e{bottom:136.480000pt;}
.y30c{bottom:136.560000pt;}
.y162{bottom:136.960000pt;}
.yc6{bottom:138.800000pt;}
.y142{bottom:139.280000pt;}
.y21a{bottom:140.160000pt;}
.y267{bottom:141.840000pt;}
.y26f{bottom:143.706667pt;}
.y297{bottom:144.080000pt;}
.y334{bottom:144.800000pt;}
.y312{bottom:144.960000pt;}
.y2b3{bottom:144.986667pt;}
.y2af{bottom:146.240000pt;}
.yf1{bottom:147.520000pt;}
.y39{bottom:149.840000pt;}
.y176{bottom:150.320000pt;}
.y4d{bottom:152.080000pt;}
.y7f{bottom:152.160000pt;}
.y30b{bottom:152.240000pt;}
.y161{bottom:152.560000pt;}
.y2a7{bottom:152.906667pt;}
.y2f4{bottom:154.080000pt;}
.y32d{bottom:154.240000pt;}
.yc5{bottom:154.400000pt;}
.y141{bottom:154.880000pt;}
.y10f{bottom:157.200000pt;}
.y26e{bottom:159.306667pt;}
.y296{bottom:159.680000pt;}
.y2b2{bottom:160.586667pt;}
.y31a{bottom:161.520000pt;}
.y2ff{bottom:162.160000pt;}
.yf0{bottom:163.200000pt;}
.y187{bottom:163.600000pt;}
.y30a{bottom:164.880000pt;}
.y38{bottom:165.440000pt;}
.y175{bottom:165.920000pt;}
.y2f3{bottom:166.720000pt;}
.y7e{bottom:167.760000pt;}
.y172{bottom:168.240000pt;}
.yc4{bottom:170.080000pt;}
.y140{bottom:170.560000pt;}
.y1ca{bottom:171.680000pt;}
.y2fe{bottom:174.800000pt;}
.yef{bottom:178.800000pt;}
.y186{bottom:179.280000pt;}
.y37{bottom:181.040000pt;}
.yde{bottom:181.120000pt;}
.y160{bottom:181.520000pt;}
.y32c{bottom:183.200000pt;}
.y7d{bottom:183.440000pt;}
.y171{bottom:183.840000pt;}
.yc3{bottom:185.680000pt;}
.y10e{bottom:186.160000pt;}
.y1c8{bottom:186.320000pt;}
.y319{bottom:190.480000pt;}
.yee{bottom:194.400000pt;}
.y185{bottom:194.880000pt;}
.y32b{bottom:195.840000pt;}
.y36{bottom:196.720000pt;}
.y15f{bottom:197.200000pt;}
.y7c{bottom:199.040000pt;}
.y13f{bottom:199.520000pt;}
.y306{bottom:201.866667pt;}
.y318{bottom:203.226667pt;}
.y4c{bottom:210.026667pt;}
.yed{bottom:210.106667pt;}
.y17e{bottom:210.586667pt;}
.y35{bottom:212.346667pt;}
.ydd{bottom:212.426667pt;}
.y15e{bottom:212.826667pt;}
.yab{bottom:214.666667pt;}
.y10d{bottom:215.146667pt;}
.y279{bottom:217.066667pt;}
.y1c6{bottom:217.306667pt;}
.y305{bottom:217.546667pt;}
.y1fd{bottom:220.586667pt;}
.y22a{bottom:220.826667pt;}
.y31f{bottom:222.266667pt;}
.y4b{bottom:225.706667pt;}
.y174{bottom:226.186667pt;}
.y34{bottom:227.946667pt;}
.y7b{bottom:228.026667pt;}
.y15d{bottom:228.506667pt;}
.y304{bottom:230.266667pt;}
.yaa{bottom:230.346667pt;}
.y13e{bottom:230.746667pt;}
.y1fc{bottom:235.226667pt;}
.y4a{bottom:241.306667pt;}
.yec{bottom:241.386667pt;}
.y173{bottom:241.786667pt;}
.y33{bottom:243.626667pt;}
.y326{bottom:243.786667pt;}
.y10c{bottom:244.106667pt;}
.ya9{bottom:245.946667pt;}
.y13d{bottom:246.426667pt;}
.y1ba{bottom:246.986667pt;}
.y31e{bottom:251.226667pt;}
.y1fb{bottom:252.826667pt;}
.y22d{bottom:254.026667pt;}
.y184{bottom:255.146667pt;}
.y49{bottom:256.986667pt;}
.y15c{bottom:257.466667pt;}
.ydc{bottom:259.306667pt;}
.y10b{bottom:259.706667pt;}
.y325{bottom:259.786667pt;}
.ya8{bottom:261.546667pt;}
.y13c{bottom:262.026667pt;}
.y1c5{bottom:262.586667pt;}
.y31d{bottom:263.946667pt;}
.y33a{bottom:264.106667pt;}
.y1f0{bottom:269.146667pt;}
.y183{bottom:270.746667pt;}
.y32{bottom:272.586667pt;}
.y15b{bottom:273.066667pt;}
.y324{bottom:274.106667pt;}
.y27b{bottom:274.266667pt;}
.ydb{bottom:274.906667pt;}
.y10a{bottom:275.386667pt;}
.ya7{bottom:277.226667pt;}
.y1c4{bottom:278.186667pt;}
.y2e3{bottom:282.106667pt;}
.y1fa{bottom:284.746667pt;}
.y182{bottom:286.426667pt;}
.y31{bottom:288.186667pt;}
.y7a{bottom:288.266667pt;}
.y15a{bottom:288.746667pt;}
.yda{bottom:290.586667pt;}
.y13b{bottom:290.986667pt;}
.ya6{bottom:292.826667pt;}
.y339{bottom:293.066667pt;}
.y1c3{bottom:293.866667pt;}
.y210{bottom:299.866667pt;}
.y1f9{bottom:300.426667pt;}
.y181{bottom:302.026667pt;}
.y30{bottom:303.866667pt;}
.y109{bottom:304.346667pt;}
.yd9{bottom:306.186667pt;}
.y13a{bottom:306.666667pt;}
.ya5{bottom:308.506667pt;}
.y338{bottom:308.666667pt;}
.y1c2{bottom:309.466667pt;}
.y2e2{bottom:311.066667pt;}
.y20f{bottom:311.626667pt;}
.y1f8{bottom:316.026667pt;}
.yeb{bottom:317.226667pt;}
.y17d{bottom:317.706667pt;}
.y2f{bottom:319.466667pt;}
.y79{bottom:319.546667pt;}
.y159{bottom:319.946667pt;}
.y337{bottom:321.386667pt;}
.yd8{bottom:321.786667pt;}
.y139{bottom:322.266667pt;}
.ya4{bottom:324.106667pt;}
.y1c1{bottom:325.146667pt;}
.y2cb{bottom:325.706667pt;}
.y266{bottom:330.986667pt;}
.y1f7{bottom:331.706667pt;}
.yea{bottom:332.826667pt;}
.y108{bottom:333.306667pt;}
.y2e{bottom:335.146667pt;}
.y170{bottom:335.626667pt;}
.yd7{bottom:337.466667pt;}
.y138{bottom:337.866667pt;}
.ya3{bottom:339.706667pt;}
.y1c0{bottom:340.746667pt;}
.y2e0{bottom:343.306667pt;}
.y225{bottom:343.546667pt;}
.y1f6{bottom:347.306667pt;}
.ye9{bottom:348.506667pt;}
.y107{bottom:348.906667pt;}
.y2d{bottom:350.746667pt;}
.y16f{bottom:351.226667pt;}
.y2a8{bottom:352.746667pt;}
.yd6{bottom:353.066667pt;}
.y137{bottom:353.546667pt;}
.ya2{bottom:355.386667pt;}
.y32a{bottom:356.186667pt;}
.y1bf{bottom:356.346667pt;}
.y1f5{bottom:362.906667pt;}
.ye8{bottom:364.106667pt;}
.y106{bottom:364.586667pt;}
.y2c{bottom:366.346667pt;}
.y78{bottom:366.426667pt;}
.y17b{bottom:366.826667pt;}
.yd5{bottom:368.746667pt;}
.y329{bottom:368.826667pt;}
.y136{bottom:369.146667pt;}
.ya1{bottom:370.986667pt;}
.y1be{bottom:372.026667pt;}
.y2de{bottom:376.586667pt;}
.y224{bottom:377.626667pt;}
.y1f4{bottom:378.586667pt;}
.ye7{bottom:379.706667pt;}
.y105{bottom:380.186667pt;}
.y2b{bottom:382.026667pt;}
.y17a{bottom:382.506667pt;}
.yd4{bottom:384.346667pt;}
.ya0{bottom:386.666667pt;}
.y1bd{bottom:387.626667pt;}
.y1f3{bottom:394.186667pt;}
.y48{bottom:395.306667pt;}
.ye6{bottom:395.386667pt;}
.y104{bottom:395.866667pt;}
.y2a{bottom:397.626667pt;}
.y77{bottom:397.706667pt;}
.y135{bottom:398.106667pt;}
.yd3{bottom:399.946667pt;}
.y9f{bottom:402.266667pt;}
.y1bc{bottom:403.306667pt;}
.y2da{bottom:407.066667pt;}
.y17c{bottom:409.146667pt;}
.y220{bottom:409.546667pt;}
.y1f2{bottom:409.866667pt;}
.y47{bottom:410.986667pt;}
.y103{bottom:411.466667pt;}
.y2f9{bottom:413.066667pt;}
.y29{bottom:413.226667pt;}
.y76{bottom:413.306667pt;}
.y134{bottom:413.786667pt;}
.yd2{bottom:415.626667pt;}
.y274{bottom:415.706667pt;}
.y9e{bottom:417.866667pt;}
.y1b9{bottom:420.906667pt;}
.y158{bottom:424.826667pt;}
.y1f1{bottom:425.466667pt;}
.y2f8{bottom:425.706667pt;}
.y46{bottom:426.586667pt;}
.ye5{bottom:426.666667pt;}
.y102{bottom:427.066667pt;}
.y28{bottom:428.906667pt;}
.y133{bottom:429.386667pt;}
.yd1{bottom:431.226667pt;}
.y311{bottom:433.306667pt;}
.yc2{bottom:433.546667pt;}
.y1aa{bottom:437.226667pt;}
.y157{bottom:440.426667pt;}
.y45{bottom:442.266667pt;}
.y101{bottom:442.746667pt;}
.y1ef{bottom:443.066667pt;}
.y27{bottom:444.506667pt;}
.y75{bottom:444.586667pt;}
.y132{bottom:444.986667pt;}
.y333{bottom:445.706667pt;}
.y310{bottom:445.946667pt;}
.y9d{bottom:446.826667pt;}
.y2a4{bottom:447.066667pt;}
.yc1{bottom:449.146667pt;}
.y1b8{bottom:452.826667pt;}
.y2f2{bottom:455.066667pt;}
.y156{bottom:456.026667pt;}
.y44{bottom:457.866667pt;}
.y16e{bottom:458.346667pt;}
.y1e1{bottom:459.386667pt;}
.y26{bottom:460.186667pt;}
.y332{bottom:461.386667pt;}
.y9c{bottom:462.506667pt;}
.yc0{bottom:464.826667pt;}
.y21f{bottom:464.986667pt;}
.y1b7{bottom:468.506667pt;}
.y2f1{bottom:470.666667pt;}
.y2d5{bottom:471.626667pt;}
.y100{bottom:471.706667pt;}
.y43{bottom:473.466667pt;}
.ye4{bottom:473.546667pt;}
.y131{bottom:474.026667pt;}
.y1ee{bottom:475.066667pt;}
.y25{bottom:475.786667pt;}
.y74{bottom:475.866667pt;}
.y9b{bottom:478.106667pt;}
.ybf{bottom:480.426667pt;}
.y317{bottom:482.106667pt;}
.y2f0{bottom:483.306667pt;}
.y1b6{bottom:484.106667pt;}
.y180{bottom:484.986667pt;}
.y155{bottom:487.306667pt;}
.y331{bottom:487.386667pt;}
.y42{bottom:489.146667pt;}
.y130{bottom:489.626667pt;}
.y1ed{bottom:490.666667pt;}
.y24{bottom:491.386667pt;}
.y73{bottom:491.466667pt;}
.y9a{bottom:493.786667pt;}
.y316{bottom:494.746667pt;}
.ybe{bottom:496.026667pt;}
.y21e{bottom:496.906667pt;}
.y1b5{bottom:499.706667pt;}
.yff{bottom:500.666667pt;}
.y16d{bottom:502.986667pt;}
.y41{bottom:504.746667pt;}
.ye3{bottom:504.826667pt;}
.y12f{bottom:505.226667pt;}
.y1ec{bottom:506.266667pt;}
.y23{bottom:507.066667pt;}
.y268{bottom:508.106667pt;}
.y99{bottom:509.386667pt;}
.ybd{bottom:511.706667pt;}
.y2d1{bottom:514.586667pt;}
.y1b4{bottom:515.386667pt;}
.yfe{bottom:516.266667pt;}
.y16c{bottom:518.586667pt;}
.y40{bottom:520.426667pt;}
.y12e{bottom:520.906667pt;}
.y1eb{bottom:521.946667pt;}
.y22{bottom:522.666667pt;}
.y72{bottom:522.746667pt;}
.y98{bottom:524.986667pt;}
.ybc{bottom:527.306667pt;}
.y21b{bottom:528.826667pt;}
.y1b3{bottom:530.986667pt;}
.y154{bottom:531.946667pt;}
.y16b{bottom:534.186667pt;}
.y3f{bottom:536.026667pt;}
.y1ea{bottom:537.546667pt;}
.y21{bottom:538.346667pt;}
.y97{bottom:540.666667pt;}
.y2a0{bottom:541.946667pt;}
.ybb{bottom:542.986667pt;}
.yfd{bottom:545.226667pt;}
.y1b2{bottom:546.666667pt;}
.y153{bottom:547.546667pt;}
.y309{bottom:549.626667pt;}
.y12d{bottom:549.866667pt;}
.y3e{bottom:551.626667pt;}
.ye2{bottom:551.706667pt;}
.y1e9{bottom:553.146667pt;}
.yd0{bottom:554.026667pt;}
.y96{bottom:556.266667pt;}
.yba{bottom:558.586667pt;}
.yfc{bottom:560.906667pt;}
.y1b1{bottom:562.266667pt;}
.y152{bottom:563.146667pt;}
.y12c{bottom:565.466667pt;}
.y308{bottom:565.626667pt;}
.y20{bottom:567.306667pt;}
.y1e8{bottom:568.826667pt;}
.ycf{bottom:569.626667pt;}
.y95{bottom:571.946667pt;}
.y20c{bottom:572.826667pt;}
.y18e{bottom:573.386667pt;}
.yb9{bottom:574.213333pt;}
.yfb{bottom:576.533333pt;}
.y1b0{bottom:577.893333pt;}
.y303{bottom:578.693333pt;}
.y151{bottom:578.853333pt;}
.y307{bottom:580.053333pt;}
.y12b{bottom:581.173333pt;}
.y71{bottom:583.013333pt;}
.y1f{bottom:583.493333pt;}
.y1e7{bottom:584.453333pt;}
.yce{bottom:585.253333pt;}
.y94{bottom:587.573333pt;}
.y2fd{bottom:591.413333pt;}
.yfa{bottom:592.133333pt;}
.y1af{bottom:593.573333pt;}
.y302{bottom:594.293333pt;}
.y16a{bottom:594.453333pt;}
.y179{bottom:596.773333pt;}
.y321{bottom:598.533333pt;}
.y70{bottom:598.613333pt;}
.y323{bottom:598.853333pt;}
.y1e6{bottom:600.133333pt;}
.ycd{bottom:600.933333pt;}
.y1e{bottom:601.733333pt;}
.y20b{bottom:601.813333pt;}
.y93{bottom:603.173333pt;}
.y301{bottom:606.933333pt;}
.y2fc{bottom:607.093333pt;}
.yf9{bottom:607.813333pt;}
.y1ae{bottom:609.173333pt;}
.y12a{bottom:610.133333pt;}
.y178{bottom:612.373333pt;}
.y6f{bottom:614.213333pt;}
.y320{bottom:614.613333pt;}
.y322{bottom:614.933333pt;}
.y1e5{bottom:615.733333pt;}
.ycc{bottom:616.533333pt;}
.y92{bottom:618.853333pt;}
.y2fb{bottom:619.733333pt;}
.y1d{bottom:619.893333pt;}
.yf8{bottom:623.413333pt;}
.y1ad{bottom:624.773333pt;}
.y129{bottom:625.733333pt;}
.y6e{bottom:629.893333pt;}
.y20a{bottom:630.773333pt;}
.y1e4{bottom:631.333333pt;}
.ycb{bottom:632.133333pt;}
.y23e{bottom:633.893333pt;}
.y91{bottom:634.453333pt;}
.y18d{bottom:634.933333pt;}
.y31c{bottom:636.293333pt;}
.y150{bottom:639.093333pt;}
.y1ac{bottom:640.453333pt;}
.y128{bottom:641.333333pt;}
.y6d{bottom:645.493333pt;}
.y1e3{bottom:647.013333pt;}
.yca{bottom:647.813333pt;}
.y213{bottom:648.693333pt;}
.y31b{bottom:648.933333pt;}
.yb8{bottom:650.133333pt;}
.y328{bottom:651.573333pt;}
.y1c{bottom:651.653333pt;}
.yf7{bottom:652.373333pt;}
.y18c{bottom:653.013333pt;}
.y14f{bottom:654.693333pt;}
.y127{bottom:657.013333pt;}
.y2cc{bottom:657.333333pt;}
.y1a9{bottom:658.053333pt;}
.y209{bottom:659.733333pt;}
.y6c{bottom:661.173333pt;}
.y1e2{bottom:662.613333pt;}
.y90{bottom:663.413333pt;}
.yb7{bottom:665.733333pt;}
.y327{bottom:665.973333pt;}
.y1b{bottom:667.253333pt;}
.y169{bottom:670.293333pt;}
.y177{bottom:672.613333pt;}
.y295{bottom:673.653333pt;}
.y199{bottom:674.373333pt;}
.y6b{bottom:676.773333pt;}
.y8f{bottom:679.093333pt;}
.y1e0{bottom:680.293333pt;}
.y253{bottom:680.773333pt;}
.yb6{bottom:681.333333pt;}
.y1a{bottom:682.853333pt;}
.y14e{bottom:683.653333pt;}
.y126{bottom:685.973333pt;}
.y208{bottom:688.693333pt;}
.y1a8{bottom:689.973333pt;}
.y2ec{bottom:690.853333pt;}
.y6a{bottom:692.373333pt;}
.y8e{bottom:694.693333pt;}
.y1d0{bottom:696.533333pt;}
.yb5{bottom:697.013333pt;}
.y19{bottom:698.533333pt;}
.y14d{bottom:699.333333pt;}
.y125{bottom:701.573333pt;}
.y1a7{bottom:705.653333pt;}
.y69{bottom:708.053333pt;}
.y8d{bottom:710.293333pt;}
.yb4{bottom:712.613333pt;}
.y1df{bottom:712.853333pt;}
.y18{bottom:714.133333pt;}
.y14c{bottom:714.933333pt;}
.y124{bottom:717.253333pt;}
.y207{bottom:717.653333pt;}
.y2eb{bottom:719.813333pt;}
.y1a6{bottom:721.253333pt;}
.y336{bottom:721.733333pt;}
.y68{bottom:723.653333pt;}
.y8c{bottom:725.973333pt;}
.yb3{bottom:728.293333pt;}
.y1de{bottom:729.173333pt;}
.y17{bottom:729.813333pt;}
.y14b{bottom:730.533333pt;}
.y123{bottom:732.853333pt;}
.y30f{bottom:734.293333pt;}
.y2e9{bottom:734.453333pt;}
.y1a5{bottom:736.933333pt;}
.y2f7{bottom:738.133333pt;}
.y217{bottom:739.013333pt;}
.y67{bottom:739.333333pt;}
.y8b{bottom:741.573333pt;}
.yb2{bottom:743.893333pt;}
.y16{bottom:745.413333pt;}
.y1dd{bottom:745.493333pt;}
.y2ef{bottom:745.733333pt;}
.y14a{bottom:746.213333pt;}
.y206{bottom:746.613333pt;}
.y30e{bottom:746.933333pt;}
.y122{bottom:748.453333pt;}
.y2f6{bottom:750.773333pt;}
.y1a4{bottom:752.533333pt;}
.y66{bottom:754.933333pt;}
.y215{bottom:755.333333pt;}
.y330{bottom:755.733333pt;}
.y2c7{bottom:757.013333pt;}
.y8a{bottom:757.253333pt;}
.yb1{bottom:759.493333pt;}
.y15{bottom:761.013333pt;}
.y2ee{bottom:761.333333pt;}
.y1dc{bottom:761.733333pt;}
.y149{bottom:761.813333pt;}
.y121{bottom:764.133333pt;}
.y1a3{bottom:768.133333pt;}
.y248{bottom:768.373333pt;}
.y65{bottom:770.533333pt;}
.y32f{bottom:771.333333pt;}
.y89{bottom:772.853333pt;}
.y315{bottom:773.733333pt;}
.y2ed{bottom:773.973333pt;}
.yb0{bottom:775.173333pt;}
.y205{bottom:775.573333pt;}
.y14{bottom:776.693333pt;}
.y168{bottom:777.413333pt;}
.y1db{bottom:778.053333pt;}
.y29a{bottom:780.213333pt;}
.y1a2{bottom:783.813333pt;}
.y32e{bottom:783.973333pt;}
.y64{bottom:786.213333pt;}
.y314{bottom:786.373333pt;}
.y88{bottom:788.453333pt;}
.y25d{bottom:790.373333pt;}
.yaf{bottom:790.773333pt;}
.y13{bottom:792.293333pt;}
.y120{bottom:793.093333pt;}
.y1da{bottom:794.373333pt;}
.y1a1{bottom:799.413333pt;}
.y63{bottom:801.813333pt;}
.y87{bottom:804.133333pt;}
.y204{bottom:804.613333pt;}
.yae{bottom:806.453333pt;}
.y12{bottom:807.973333pt;}
.y11f{bottom:808.693333pt;}
.y1d9{bottom:810.613333pt;}
.y1a0{bottom:815.093333pt;}
.y62{bottom:817.413333pt;}
.y86{bottom:819.733333pt;}
.yad{bottom:822.053333pt;}
.y11{bottom:823.573333pt;}
.y11e{bottom:824.373333pt;}
.y1d8{bottom:826.933333pt;}
.y19f{bottom:830.693333pt;}
.y61{bottom:833.093333pt;}
.y203{bottom:833.573333pt;}
.y85{bottom:835.413333pt;}
.yac{bottom:837.653333pt;}
.y1d7{bottom:843.253333pt;}
.y19e{bottom:846.293333pt;}
.y60{bottom:848.693333pt;}
.y84{bottom:851.013333pt;}
.y290{bottom:851.573333pt;}
.y11d{bottom:853.333333pt;}
.y10{bottom:855.173333pt;}
.y1d6{bottom:859.573333pt;}
.y19d{bottom:861.973333pt;}
.y202{bottom:862.533333pt;}
.y292{bottom:863.493333pt;}
.y240{bottom:863.893333pt;}
.y5f{bottom:864.373333pt;}
.y83{bottom:866.613333pt;}
.y11c{bottom:868.933333pt;}
.y25a{bottom:869.253333pt;}
.y2ba{bottom:875.493333pt;}
.y1d5{bottom:875.813333pt;}
.y19c{bottom:877.573333pt;}
.y5e{bottom:879.973333pt;}
.y28f{bottom:880.533333pt;}
.y148{bottom:882.293333pt;}
.y11b{bottom:884.613333pt;}
.y2e5{bottom:885.973333pt;}
.yf{bottom:887.493333pt;}
.y243{bottom:890.133333pt;}
.y201{bottom:891.493333pt;}
.y1d4{bottom:892.133333pt;}
.y19b{bottom:893.253333pt;}
.y28c{bottom:895.173333pt;}
.y5d{bottom:895.573333pt;}
.y147{bottom:897.893333pt;}
.y167{bottom:900.213333pt;}
.ye{bottom:903.173333pt;}
.y1d3{bottom:908.453333pt;}
.y18f{bottom:910.853333pt;}
.y5c{bottom:911.253333pt;}
.y11a{bottom:913.573333pt;}
.yd{bottom:918.773333pt;}
.y200{bottom:920.453333pt;}
.y1d2{bottom:924.773333pt;}
.y255{bottom:925.893333pt;}
.y5b{bottom:926.853333pt;}
.y119{bottom:929.173333pt;}
.y234{bottom:930.853333pt;}
.y20d{bottom:933.333333pt;}
.y2bf{bottom:937.493333pt;}
.y1cb{bottom:942.373333pt;}
.y5a{bottom:942.533333pt;}
.yc{bottom:944.373333pt;}
.y118{bottom:944.773333pt;}
.y1ff{bottom:949.440000pt;}
.y294{bottom:958.000000pt;}
.y59{bottom:958.160000pt;}
.y117{bottom:960.480000pt;}
.y2be{bottom:969.440000pt;}
.y58{bottom:973.760000pt;}
.yb{bottom:973.920000pt;}
.y116{bottom:976.080000pt;}
.y1fe{bottom:978.400000pt;}
.y239{bottom:980.480000pt;}
.y289{bottom:981.440000pt;}
.y291{bottom:989.040000pt;}
.y57{bottom:989.440000pt;}
.y115{bottom:991.760000pt;}
.ya{bottom:992.720000pt;}
.y251{bottom:1000.320000pt;}
.y2e4{bottom:1002.400000pt;}
.y56{bottom:1005.040000pt;}
.y114{bottom:1007.360000pt;}
.y2bb{bottom:1017.040000pt;}
.y237{bottom:1019.120000pt;}
.y9{bottom:1019.440000pt;}
.y55{bottom:1020.720000pt;}
.y6{bottom:1034.640000pt;}
.y54{bottom:1036.320000pt;}
.y4{bottom:1053.440000pt;}
.y52{bottom:1061.360000pt;}
.y2{bottom:1069.040000pt;}
.h5{height:15.600000pt;}
.h12{height:15.620000pt;}
.h3{height:15.680000pt;}
.h40{height:17.680000pt;}
.h6{height:18.800000pt;}
.h3d{height:24.240000pt;}
.h36{height:27.840000pt;}
.h7d{height:28.480000pt;}
.h14{height:28.960000pt;}
.h15{height:28.986667pt;}
.h5c{height:29.040000pt;}
.h2f{height:31.200000pt;}
.h2c{height:31.277333pt;}
.h2a{height:31.280000pt;}
.h6c{height:31.306667pt;}
.h2e{height:33.437333pt;}
.h2d{height:33.440000pt;}
.h8{height:34.205625pt;}
.h37{height:36.640000pt;}
.h9{height:39.452031pt;}
.h3c{height:40.080000pt;}
.h79{height:40.957333pt;}
.h78{height:40.960000pt;}
.h4{height:45.246562pt;}
.hf{height:45.246574pt;}
.h59{height:45.246576pt;}
.h11{height:45.246577pt;}
.hd{height:45.246579pt;}
.h1a{height:45.246581pt;}
.h44{height:45.246582pt;}
.h56{height:45.246583pt;}
.h26{height:45.246585pt;}
.h1f{height:45.246588pt;}
.h42{height:45.246590pt;}
.h63{height:45.246594pt;}
.h81{height:45.246596pt;}
.h6b{height:46.960000pt;}
.h38{height:47.626667pt;}
.h39{height:47.629333pt;}
.ha{height:52.892031pt;}
.h53{height:52.892042pt;}
.h1d{height:52.892046pt;}
.h50{height:52.892049pt;}
.h23{height:52.892057pt;}
.h70{height:52.892058pt;}
.h21{height:52.892060pt;}
.h28{height:52.892062pt;}
.h6a{height:52.892065pt;}
.h7{height:54.187500pt;}
.h2b{height:54.800000pt;}
.h46{height:56.000000pt;}
.h54{height:56.557333pt;}
.h52{height:56.560000pt;}
.h33{height:56.877333pt;}
.h32{height:56.880000pt;}
.h2{height:57.959531pt;}
.hb{height:58.245469pt;}
.h6e{height:61.357333pt;}
.h6d{height:61.360000pt;}
.h1c{height:62.400000pt;}
.h7b{height:62.557333pt;}
.h7a{height:62.560000pt;}
.h58{height:65.520000pt;}
.h3b{height:66.320000pt;}
.h43{height:72.426667pt;}
.h45{height:72.430667pt;}
.h16{height:75.626667pt;}
.h48{height:78.156000pt;}
.h47{height:78.160000pt;}
.hc{height:78.186667pt;}
.h61{height:82.636000pt;}
.h60{height:82.640000pt;}
.h4f{height:84.080000pt;}
.h5a{height:84.266667pt;}
.h19{height:84.586667pt;}
.h24{height:89.680000pt;}
.h31{height:90.080000pt;}
.h4e{height:91.760000pt;}
.h55{height:93.146667pt;}
.h57{height:93.149333pt;}
.h3e{height:93.520000pt;}
.h67{height:93.677333pt;}
.h66{height:93.680000pt;}
.h5e{height:93.786667pt;}
.h5f{height:93.790667pt;}
.h64{height:94.160000pt;}
.h74{height:99.036000pt;}
.h73{height:99.040000pt;}
.h22{height:105.920000pt;}
.h4a{height:108.956000pt;}
.h49{height:108.960000pt;}
.h20{height:112.880000pt;}
.h51{height:113.200000pt;}
.h7e{height:114.426667pt;}
.h7f{height:114.430667pt;}
.h35{height:116.106667pt;}
.h71{height:117.836000pt;}
.h6f{height:117.840000pt;}
.h27{height:119.140000pt;}
.h5b{height:123.546667pt;}
.h62{height:131.060000pt;}
.h3f{height:132.480000pt;}
.h34{height:137.306667pt;}
.h77{height:140.733333pt;}
.h7c{height:143.920000pt;}
.h80{height:150.880000pt;}
.h13{height:171.920000pt;}
.h4d{height:171.933333pt;}
.h4c{height:171.946667pt;}
.h69{height:172.826667pt;}
.h68{height:205.786667pt;}
.h29{height:216.560000pt;}
.h10{height:218.813333pt;}
.h18{height:218.906667pt;}
.h1e{height:219.520000pt;}
.h30{height:229.386667pt;}
.he{height:234.480000pt;}
.h76{height:241.773333pt;}
.h75{height:241.786667pt;}
.h17{height:243.840000pt;}
.h3a{height:296.320000pt;}
.h5d{height:313.386667pt;}
.h41{height:317.546667pt;}
.h25{height:336.346667pt;}
.h4b{height:349.066667pt;}
.h65{height:378.986667pt;}
.h72{height:430.666667pt;}
.h1b{height:619.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:28.960000pt;}
.w1f{width:29.280000pt;}
.w1b{width:30.586667pt;}
.w16{width:30.906667pt;}
.w4{width:38.000000pt;}
.we{width:39.360000pt;}
.w25{width:44.240000pt;}
.w29{width:45.786667pt;}
.w1c{width:63.116000pt;}
.w17{width:63.756000pt;}
.w1d{width:79.360000pt;}
.w18{width:79.680000pt;}
.wc{width:82.880000pt;}
.w7{width:83.520000pt;}
.w24{width:88.426667pt;}
.w20{width:88.746667pt;}
.wa{width:91.280000pt;}
.w9{width:93.760000pt;}
.w8{width:93.786667pt;}
.w6{width:93.940000pt;}
.wb{width:94.580000pt;}
.w11{width:129.466667pt;}
.w12{width:129.520000pt;}
.w26{width:146.666667pt;}
.w22{width:148.720000pt;}
.w28{width:151.120000pt;}
.w1e{width:153.293333pt;}
.w19{width:153.306667pt;}
.w14{width:160.173333pt;}
.w10{width:161.773333pt;}
.w2a{width:171.756000pt;}
.w5{width:188.826667pt;}
.wf{width:195.386667pt;}
.w13{width:196.986667pt;}
.w2c{width:224.986667pt;}
.w2b{width:226.733333pt;}
.w2d{width:226.746667pt;}
.wd{width:226.826667pt;}
.w3{width:236.266667pt;}
.w15{width:236.346667pt;}
.w1a{width:327.866667pt;}
.w27{width:347.893333pt;}
.w2{width:404.213333pt;}
.w21{width:409.413333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:3.360000pt;}
.x5{left:7.200000pt;}
.xb{left:20.000000pt;}
.x13{left:24.480000pt;}
.xd{left:26.186667pt;}
.x28{left:27.680000pt;}
.x1d{left:36.316000pt;}
.x1e{left:44.320000pt;}
.x2{left:49.520000pt;}
.x1{left:56.720000pt;}
.x8{left:75.680000pt;}
.x6{left:82.426667pt;}
.x1f{left:86.000000pt;}
.x18{left:90.160000pt;}
.xc{left:94.720000pt;}
.x14{left:96.080000pt;}
.x22{left:100.960000pt;}
.x25{left:102.510667pt;}
.xa{left:108.586667pt;}
.x19{left:121.070667pt;}
.x20{left:174.746667pt;}
.x1a{left:184.826667pt;}
.x23{left:247.626667pt;}
.x1b{left:264.506667pt;}
.x26{left:274.266667pt;}
.xe{left:283.546667pt;}
.x15{left:291.466667pt;}
.x17{left:293.066667pt;}
.xf{left:377.493333pt;}
.x1c{left:417.813333pt;}
.x7{left:425.333333pt;}
.x9{left:444.293333pt;}
.x4{left:453.733333pt;}
.x10{left:461.013333pt;}
.x27{left:501.013333pt;}
.x11{left:554.800000pt;}
.x16{left:582.720000pt;}
.x21{left:584.160000pt;}
.x24{left:595.520000pt;}
.x2e{left:603.360000pt;}
.x2f{left:632.720000pt;}
.x12{left:648.560000pt;}
.x30{left:650.160000pt;}
.x31{left:659.200000pt;}
.x32{left:666.240000pt;}
.x2a{left:676.160000pt;}
.x2c{left:685.200000pt;}
.x2d{left:694.560000pt;}
.x33{left:699.760000pt;}
.x29{left:713.520000pt;}
.x2b{left:723.200000pt;}
}




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