
    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_9708e0b8c25aeee9e57bdb8c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37d6bd6c5a10f897a3b2207.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_ef5f8bdb30928b74ac512664.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1fb21a4ce0eb21d587499d11.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a83888f73fc497f4e74056c9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41791009493f4894938eed00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_9f01207664610fb9578e94f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_d0aee6fa57346d755dd47e6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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:-30.240000px;}
.v7{vertical-align:-27.360000px;}
.v2{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v6{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.lse{letter-spacing:-0.984000px;}
.ls25{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.612000px;}
.ls2a{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.315600px;}
.lsb{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.269400px;}
.ls4{letter-spacing:-0.262200px;}
.ls15{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.181200px;}
.ls23{letter-spacing:-0.178800px;}
.ls20{letter-spacing:-0.152400px;}
.ls3{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.001440px;}
.ls18{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.089280px;}
.lsf{letter-spacing:0.089400px;}
.ls10{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.226200px;}
.lsd{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.281280px;}
.ls1e{letter-spacing:0.305280px;}
.ls2{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.541440px;}
.ls1c{letter-spacing:0.567600px;}
.ls24{letter-spacing:0.630000px;}
.ls2d{letter-spacing:0.721440px;}
.ls6{letter-spacing:1.025280px;}
.ls36{letter-spacing:2.465280px;}
.ls19{letter-spacing:3.029760px;}
.ls2e{letter-spacing:3.905280px;}
.ls35{letter-spacing:7.505280px;}
.ls2f{letter-spacing:8.945280px;}
.ls1d{letter-spacing:11.825280px;}
.ls34{letter-spacing:21.185280px;}
.ls8{letter-spacing:21.905280px;}
.ls31{letter-spacing:24.245280px;}
.ls30{letter-spacing:24.785280px;}
.ls29{letter-spacing:35.765280px;}
.ls1f{letter-spacing:40.625280px;}
.ls32{letter-spacing:45.125280px;}
.ls1a{letter-spacing:49.985280px;}
.ls26{letter-spacing:53.585280px;}
.ls1b{letter-spacing:59.345280px;}
.ls33{letter-spacing:133.500000px;}
.ls7{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-66.240000px;}
.ws12{word-spacing:-18.982320px;}
.ws5{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws1{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws13{word-spacing:-18.262320px;}
.ws3{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.ws1a{word-spacing:-17.956920px;}
.ws16{word-spacing:-17.586720px;}
.ws8{word-spacing:-17.430720px;}
.wse{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.994000px;}
.ws9{word-spacing:-13.410720px;}
.wsc{word-spacing:-13.229520px;}
.wsb{word-spacing:-13.186920px;}
.wsa{word-spacing:-13.141320px;}
.ws15{word-spacing:-12.239280px;}
.ws17{word-spacing:-11.835480px;}
.ws4{word-spacing:-11.609280px;}
.ws14{word-spacing:-11.430480px;}
.ws19{word-spacing:-10.008000px;}
.ws18{word-spacing:-7.606080px;}
.ws11{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
._21{margin-left:-18.665520px;}
._20{margin-left:-16.532160px;}
._1e{margin-left:-14.185200px;}
._1b{margin-left:-12.186240px;}
._1c{margin-left:-10.026960px;}
._1f{margin-left:-8.982480px;}
._3f{margin-left:-7.813680px;}
._22{margin-left:-6.491040px;}
._1d{margin-left:-4.500480px;}
._1{margin-left:-2.202480px;}
._4{margin-left:-1.059840px;}
._0{width:1.532160px;}
._2{width:2.577120px;}
._a{width:3.754320px;}
._7{width:4.835520px;}
._6{width:6.425280px;}
._5{width:7.485120px;}
._f{width:8.716800px;}
._18{width:9.896640px;}
._14{width:11.790720px;}
._15{width:13.132080px;}
._2c{width:14.355120px;}
._8{width:15.566400px;}
._9{width:16.724640px;}
._36{width:18.267840px;}
._13{width:19.540800px;}
._12{width:20.608080px;}
._2b{width:22.043040px;}
._23{width:23.712960px;}
._24{width:24.993600px;}
._50{width:26.219040px;}
._19{width:27.423360px;}
._3{width:28.483200px;}
._10{width:29.609280px;}
._11{width:30.669120px;}
._1a{width:31.694880px;}
._4b{width:33.318720px;}
._16{width:34.378560px;}
._17{width:36.252960px;}
._39{width:37.491840px;}
._3a{width:38.947680px;}
._45{width:40.183680px;}
._40{width:41.797440px;}
._41{width:42.857280px;}
._53{width:44.159040px;}
._54{width:45.729360px;}
._59{width:46.790640px;}
._2f{width:50.217840px;}
._2e{width:51.478560px;}
._43{width:53.219520px;}
._30{width:54.629280px;}
._58{width:55.977600px;}
._46{width:57.960000px;}
._37{width:59.767920px;}
._35{width:63.194400px;}
._44{width:64.239120px;}
._47{width:66.438720px;}
._48{width:67.631040px;}
._57{width:71.605440px;}
._51{width:72.930240px;}
._34{width:74.916720px;}
._25{width:76.374720px;}
._26{width:77.434560px;}
._49{width:79.986000px;}
._4a{width:82.712640px;}
._52{width:83.765040px;}
._27{width:89.092800px;}
._28{width:90.152400px;}
._38{width:95.563440px;}
._31{width:96.960960px;}
._4f{width:110.930880px;}
._33{width:115.052400px;}
._3c{width:116.995200px;}
._4d{width:118.425600px;}
._3b{width:124.312080px;}
._e{width:126.635280px;}
._55{width:128.903040px;}
._56{width:130.310640px;}
._5a{width:132.421680px;}
._29{width:134.136000px;}
._2a{width:135.319680px;}
._42{width:144.607440px;}
._3e{width:145.926720px;}
._61{width:158.181120px;}
._60{width:159.240960px;}
._2d{width:160.655280px;}
._4c{width:164.738880px;}
._3d{width:175.613520px;}
._32{width:201.440160px;}
._5b{width:218.856960px;}
._5c{width:220.512960px;}
._c{width:253.283520px;}
._63{width:287.680320px;}
._5d{width:300.000960px;}
._5e{width:301.057680px;}
._5f{width:335.836800px;}
._65{width:439.436160px;}
._64{width:453.875760px;}
._62{width:493.421760px;}
._d{width:647.705280px;}
._b{width:845.741280px;}
._4e{width:849.144000px;}
.fc6{color:rgb(227,108,10);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(247,150,70);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.360000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.ycb{bottom:-14.760000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:1.440000px;}
.y224{bottom:5.745000px;}
.y20a{bottom:5.760000px;}
.y223{bottom:5.925000px;}
.yce{bottom:5.940000px;}
.y218{bottom:5.970000px;}
.y226{bottom:6.105000px;}
.yca{bottom:6.120000px;}
.y217{bottom:6.150000px;}
.yc4{bottom:7.920000px;}
.y207{bottom:8.460000px;}
.y17e{bottom:8.640000px;}
.yd6{bottom:10.260000px;}
.y19f{bottom:13.140000px;}
.y19e{bottom:13.320000px;}
.y1b0{bottom:13.500000px;}
.y208{bottom:14.400000px;}
.y213{bottom:14.580000px;}
.y181{bottom:14.760000px;}
.y189{bottom:14.790000px;}
.yed{bottom:14.940000px;}
.yf7{bottom:16.380000px;}
.yf4{bottom:16.560000px;}
.y17f{bottom:17.820000px;}
.y206{bottom:20.520000px;}
.ye3{bottom:22.140000px;}
.ye1{bottom:22.320000px;}
.y184{bottom:22.500000px;}
.y183{bottom:23.760000px;}
.yc7{bottom:24.660000px;}
.ycd{bottom:25.560000px;}
.yc1{bottom:26.460000px;}
.yc2{bottom:26.640000px;}
.yc9{bottom:26.820000px;}
.yc3{bottom:28.800000px;}
.yd5{bottom:30.960000px;}
.y17b{bottom:32.760000px;}
.yf0{bottom:32.940000px;}
.y188{bottom:32.970000px;}
.y260{bottom:33.480000px;}
.yde{bottom:33.660000px;}
.yec{bottom:35.820000px;}
.yf6{bottom:37.260000px;}
.yf3{bottom:37.440000px;}
.ydb{bottom:37.980000px;}
.y17c{bottom:41.760000px;}
.y240{bottom:41.940000px;}
.y18b{bottom:41.970000px;}
.y24b{bottom:42.120000px;}
.ye0{bottom:43.020000px;}
.yc6{bottom:45.540000px;}
.ycc{bottom:46.440000px;}
.yc8{bottom:47.520000px;}
.yd8{bottom:48.420000px;}
.yd1{bottom:48.600000px;}
.ye8{bottom:50.760000px;}
.y17a{bottom:50.940000px;}
.y187{bottom:50.970000px;}
.yd4{bottom:51.660000px;}
.ydd{bottom:54.540000px;}
.yeb{bottom:56.520000px;}
.y94{bottom:57.600000px;}
.yf5{bottom:57.990000px;}
.yf2{bottom:58.170000px;}
.yda{bottom:58.905000px;}
.y182{bottom:59.940000px;}
.y18a{bottom:59.970000px;}
.ydf{bottom:63.720000px;}
.ye6{bottom:66.240000px;}
.yef{bottom:68.580000px;}
.y180{bottom:68.940000px;}
.y186{bottom:69.150000px;}
.yd7{bottom:69.345000px;}
.yd0{bottom:69.525000px;}
.ye7{bottom:71.640000px;}
.yd3{bottom:72.405000px;}
.y93{bottom:76.716000px;}
.yea{bottom:77.220000px;}
.yd9{bottom:79.605000px;}
.ye5{bottom:86.940000px;}
.y185{bottom:87.150000px;}
.yee{bottom:89.460000px;}
.yd2{bottom:93.105000px;}
.ye9{bottom:97.920000px;}
.y421{bottom:109.476000px;}
.y14c{bottom:110.196000px;}
.y178{bottom:110.376000px;}
.y106{bottom:111.996000px;}
.y25e{bottom:112.356000px;}
.y37d{bottom:112.896000px;}
.y486{bottom:113.976000px;}
.y42b{bottom:114.156000px;}
.y439{bottom:114.696000px;}
.y384{bottom:115.056000px;}
.y3e8{bottom:116.496000px;}
.y332{bottom:116.676000px;}
.y319{bottom:117.036000px;}
.y36f{bottom:117.396000px;}
.y3d1{bottom:118.296000px;}
.y3de{bottom:120.096000px;}
.y322{bottom:120.996000px;}
.y39f{bottom:121.896000px;}
.y357{bottom:122.976000px;}
.y477{bottom:124.956000px;}
.y3a9{bottom:125.136000px;}
.y133{bottom:125.496000px;}
.y2c1{bottom:126.576000px;}
.y29d{bottom:126.936000px;}
.y277{bottom:127.116000px;}
.y2da{bottom:129.456000px;}
.y1ed{bottom:131.076000px;}
.y449{bottom:131.256000px;}
.y203{bottom:132.336000px;}
.y2fb{bottom:132.876000px;}
.yb{bottom:133.236000px;}
.y40f{bottom:133.776000px;}
.y1bb{bottom:135.036000px;}
.ybe{bottom:135.756000px;}
.y30e{bottom:136.116000px;}
.y3b6{bottom:136.296000px;}
.y61{bottom:136.476000px;}
.y34b{bottom:136.656000px;}
.y11f{bottom:137.196000px;}
.y14b{bottom:138.636000px;}
.y177{bottom:138.816000px;}
.y2a4{bottom:138.996000px;}
.ya1{bottom:139.356000px;}
.y105{bottom:140.436000px;}
.y464{bottom:141.516000px;}
.y48e{bottom:142.416000px;}
.y361{bottom:143.316000px;}
.y274{bottom:144.036000px;}
.y19c{bottom:144.216000px;}
.y46f{bottom:144.576000px;}
.y47e{bottom:144.756000px;}
.y3f7{bottom:146.016000px;}
.y391{bottom:146.376000px;}
.y420{bottom:147.816000px;}
.y458{bottom:148.176000px;}
.y165{bottom:148.356000px;}
.y286{bottom:149.436000px;}
.y25d{bottom:150.510000px;}
.y37c{bottom:151.050000px;}
.y22b{bottom:151.230000px;}
.y1d2{bottom:151.590000px;}
.y485{bottom:152.310000px;}
.y42a{bottom:152.490000px;}
.y41{bottom:152.850000px;}
.y383{bottom:153.390000px;}
.y132{bottom:153.930000px;}
.y3e7{bottom:154.650000px;}
.y29c{bottom:155.370000px;}
.y36e{bottom:155.550000px;}
.y3ef{bottom:155.730000px;}
.y3d0{bottom:156.630000px;}
.y331{bottom:157.530000px;}
.y2d9{bottom:158.070000px;}
.y438{bottom:158.250000px;}
.y3dd{bottom:158.430000px;}
.y321{bottom:159.150000px;}
.y1ec{bottom:159.690000px;}
.y39e{bottom:160.050000px;}
.y318{bottom:160.410000px;}
.y2fa{bottom:161.310000px;}
.ya0{bottom:162.570000px;}
.y3a8{bottom:163.290000px;}
.y30d{bottom:164.550000px;}
.y60{bottom:164.910000px;}
.y92{bottom:165.450000px;}
.y11e{bottom:165.630000px;}
.y79{bottom:166.890000px;}
.y14a{bottom:167.070000px;}
.y176{bottom:167.430000px;}
.y476{bottom:168.510000px;}
.y104{bottom:168.870000px;}
.y448{bottom:169.590000px;}
.y2c0{bottom:170.130000px;}
.y276{bottom:170.670000px;}
.y40e{bottom:172.110000px;}
.y19b{bottom:172.650000px;}
.y403{bottom:172.830000px;}
.y44f{bottom:174.090000px;}
.y33f{bottom:174.450000px;}
.y3b5{bottom:174.630000px;}
.y34a{bottom:174.810000px;}
.y202{bottom:175.710000px;}
.y43d{bottom:176.970000px;}
.y3c2{bottom:177.150000px;}
.ybd{bottom:179.310000px;}
.y463{bottom:179.670000px;}
.y432{bottom:181.470000px;}
.y360{bottom:181.650000px;}
.y131{bottom:182.370000px;}
.y2a3{bottom:182.550000px;}
.y46e{bottom:182.910000px;}
.y47d{bottom:183.090000px;}
.y48d{bottom:183.270000px;}
.y29b{bottom:183.810000px;}
.y3f6{bottom:184.170000px;}
.y273{bottom:184.890000px;}
.y41f{bottom:185.970000px;}
.y9f{bottom:186.330000px;}
.y2d8{bottom:186.510000px;}
.y390{bottom:187.230000px;}
.y1eb{bottom:188.130000px;}
.y25c{bottom:188.850000px;}
.y37b{bottom:189.390000px;}
.y484{bottom:190.470000px;}
.y2f9{bottom:190.830000px;}
.y457{bottom:191.550000px;}
.y164{bottom:191.730000px;}
.y285{bottom:192.990000px;}
.y5f{bottom:193.350000px;}
.y36d{bottom:193.890000px;}
.y11d{bottom:194.070000px;}
.y22a{bottom:194.790000px;}
.y3cf{bottom:194.970000px;}
.y1d1{bottom:195.150000px;}
.y149{bottom:195.510000px;}
.y175{bottom:195.870000px;}
.y40{bottom:196.050000px;}
.y3dc{bottom:196.590000px;}
.y103{bottom:197.310000px;}
.y1ba{bottom:197.490000px;}
.y39d{bottom:198.390000px;}
.y19a{bottom:201.090000px;}
.y3a7{bottom:201.630000px;}
.y356{bottom:201.990000px;}
.y317{bottom:203.970000px;}
.y201{bottom:204.150000px;}
.y48c{bottom:206.670000px;}
.y447{bottom:207.930000px;}
.y272{bottom:208.290000px;}
.y40d{bottom:210.270000px;}
.y130{bottom:210.810000px;}
.y475{bottom:211.890000px;}
.y290{bottom:212.430000px;}
.y33e{bottom:212.790000px;}
.y3b4{bottom:212.970000px;}
.y349{bottom:213.150000px;}
.y2bf{bottom:213.510000px;}
.y275{bottom:213.870000px;}
.y43c{bottom:215.310000px;}
.y3c1{bottom:215.490000px;}
.y91{bottom:215.850000px;}
.y2d7{bottom:216.030000px;}
.y402{bottom:216.390000px;}
.y25f{bottom:216.930000px;}
.y28{bottom:217.110000px;}
.ya{bottom:217.290000px;}
.y462{bottom:218.010000px;}
.y2f8{bottom:219.270000px;}
.y431{bottom:219.810000px;}
.y35f{bottom:219.990000px;}
.y46d{bottom:221.070000px;}
.y47c{bottom:221.430000px;}
.y30c{bottom:221.610000px;}
.y5e{bottom:221.790000px;}
.y11c{bottom:222.510000px;}
.ybc{bottom:222.690000px;}
.y9e{bottom:223.050000px;}
.y148{bottom:223.950000px;}
.y174{bottom:224.310000px;}
.y38f{bottom:225.390000px;}
.y2a2{bottom:225.750000px;}
.y102{bottom:225.930000px;}
.y25b{bottom:227.190000px;}
.y37a{bottom:227.730000px;}
.y483{bottom:228.810000px;}
.y429{bottom:228.990000px;}
.y78{bottom:229.350000px;}
.y199{bottom:229.530000px;}
.y382{bottom:229.890000px;}
.y3e6{bottom:231.330000px;}
.y1ea{bottom:231.510000px;}
.y36c{bottom:232.230000px;}
.y200{bottom:232.590000px;}
.y3ce{bottom:233.130000px;}
.y330{bottom:234.210000px;}
.y3db{bottom:234.930000px;}
.y456{bottom:235.110000px;}
.y163{bottom:235.290000px;}
.y229{bottom:235.830000px;}
.y284{bottom:236.370000px;}
.y39c{bottom:236.730000px;}
.y1d0{bottom:238.530000px;}
.y12f{bottom:239.250000px;}
.y3f{bottom:239.430000px;}
.y3a6{bottom:239.970000px;}
.y1b9{bottom:240.690000px;}
.y28f{bottom:240.870000px;}
.y2d6{bottom:244.470000px;}
.y437{bottom:245.190000px;}
.y27{bottom:245.370000px;}
.y355{bottom:245.550000px;}
.y446{bottom:246.090000px;}
.y271{bottom:246.450000px;}
.y316{bottom:247.350000px;}
.y40c{bottom:248.610000px;}
.y2f7{bottom:248.970000px;}
.y289{bottom:250.230000px;}
.y5d{bottom:250.410000px;}
.y228{bottom:250.425000px;}
.y44e{bottom:250.590000px;}
.y11b{bottom:250.950000px;}
.y30b{bottom:251.130000px;}
.y348{bottom:251.490000px;}
.y90{bottom:251.850000px;}
.y147{bottom:252.390000px;}
.y173{bottom:252.750000px;}
.y474{bottom:252.930000px;}
.y43b{bottom:253.470000px;}
.y3c0{bottom:253.650000px;}
.y2a1{bottom:254.190000px;}
.y101{bottom:254.370000px;}
.y29a{bottom:255.810000px;}
.y461{bottom:256.350000px;}
.y2be{bottom:257.070000px;}
.y23e{bottom:257.430000px;}
.y198{bottom:257.970000px;}
.y35e{bottom:258.150000px;}
.y46c{bottom:259.410000px;}
.y47b{bottom:259.590000px;}
.y401{bottom:259.770000px;}
.y1e9{bottom:259.950000px;}
.y3f5{bottom:260.850000px;}
.y41e{bottom:262.650000px;}
.y38e{bottom:263.730000px;}
.y25a{bottom:265.530000px;}
.y379{bottom:265.890000px;}
.ybb{bottom:266.250000px;}
.y428{bottom:267.330000px;}
.y12e{bottom:267.690000px;}
.y381{bottom:268.230000px;}
.y1b8{bottom:269.310000px;}
.y3e5{bottom:269.490000px;}
.y36b{bottom:270.390000px;}
.y3ee{bottom:270.570000px;}
.y3cd{bottom:271.470000px;}
.y227{bottom:271.665000px;}
.y32f{bottom:272.370000px;}
.y2d5{bottom:272.910000px;}
.y3da{bottom:273.270000px;}
.y26{bottom:273.990000px;}
.y39b{bottom:274.890000px;}
.y1ff{bottom:276.150000px;}
.y2f6{bottom:277.410000px;}
.y3a5{bottom:278.310000px;}
.y455{bottom:278.490000px;}
.y162{bottom:278.670000px;}
.y11a{bottom:279.390000px;}
.y30a{bottom:279.570000px;}
.y283{bottom:279.750000px;}
.y146{bottom:281.010000px;}
.y172{bottom:281.190000px;}
.y1cf{bottom:282.090000px;}
.y100{bottom:282.810000px;}
.y3e{bottom:282.990000px;}
.y299{bottom:284.250000px;}
.y445{bottom:284.430000px;}
.y270{bottom:284.970000px;}
.y23d{bottom:285.870000px;}
.y40b{bottom:286.950000px;}
.y8f{bottom:287.850000px;}
.y1e8{bottom:288.390000px;}
.y436{bottom:288.570000px;}
.y354{bottom:288.930000px;}
.y33d{bottom:289.290000px;}
.y3b3{bottom:289.470000px;}
.y347{bottom:289.650000px;}
.y315{bottom:290.730000px;}
.y473{bottom:291.270000px;}
.y77{bottom:291.810000px;}
.y3bf{bottom:291.990000px;}
.y225{bottom:292.905000px;}
.y5c{bottom:293.790000px;}
.y460{bottom:294.510000px;}
.y12d{bottom:296.130000px;}
.y430{bottom:296.310000px;}
.y35d{bottom:296.490000px;}
.y1b7{bottom:297.750000px;}
.y47a{bottom:297.930000px;}
.y259{bottom:298.290000px;}
.y197{bottom:299.010000px;}
.y26f{bottom:299.565000px;}
.y2bd{bottom:300.270000px;}
.y41d{bottom:300.810000px;}
.y9{bottom:301.170000px;}
.y2d4{bottom:301.350000px;}
.y38d{bottom:302.070000px;}
.y25{bottom:302.430000px;}
.y400{bottom:303.330000px;}
.y378{bottom:304.230000px;}
.y1fe{bottom:304.590000px;}
.y482{bottom:305.310000px;}
.y427{bottom:305.670000px;}
.y380{bottom:306.570000px;}
.y2f5{bottom:306.930000px;}
.y119{bottom:307.830000px;}
.y309{bottom:308.010000px;}
.y36a{bottom:308.730000px;}
.y145{bottom:309.450000px;}
.yba{bottom:309.630000px;}
.y3cc{bottom:309.810000px;}
.y32e{bottom:310.710000px;}
.yff{bottom:311.250000px;}
.y3d{bottom:311.430000px;}
.y320{bottom:312.330000px;}
.y298{bottom:312.690000px;}
.y258{bottom:312.885000px;}
.y39a{bottom:313.230000px;}
.y23c{bottom:314.310000px;}
.y222{bottom:314.325000px;}
.y3a4{bottom:316.470000px;}
.y1e7{bottom:317.010000px;}
.y26e{bottom:320.805000px;}
.y454{bottom:321.870000px;}
.y5b{bottom:322.230000px;}
.y196{bottom:322.590000px;}
.y444{bottom:322.770000px;}
.y282{bottom:323.310000px;}
.y8e{bottom:323.670000px;}
.y12c{bottom:324.570000px;}
.y40a{bottom:325.110000px;}
.y1ce{bottom:325.470000px;}
.y1b6{bottom:326.190000px;}
.y151{bottom:326.370000px;}
.y44d{bottom:327.270000px;}
.y33c{bottom:327.675000px;}
.y3b2{bottom:327.855000px;}
.y346{bottom:328.035000px;}
.y2bc{bottom:328.755000px;}
.y472{bottom:329.475000px;}
.y43a{bottom:330.195000px;}
.y3be{bottom:330.375000px;}
.y24{bottom:330.915000px;}
.y2d3{bottom:331.095000px;}
.y435{bottom:332.175000px;}
.y353{bottom:332.535000px;}
.y45f{bottom:332.895000px;}
.y1fd{bottom:334.155000px;}
.y314{bottom:334.335000px;}
.y32d{bottom:334.515000px;}
.y42f{bottom:334.695000px;}
.y35c{bottom:334.875000px;}
.y2f4{bottom:335.415000px;}
.y221{bottom:335.595000px;}
.y31f{bottom:335.955000px;}
.y46b{bottom:336.135000px;}
.y479{bottom:336.315000px;}
.y308{bottom:336.495000px;}
.y3f4{bottom:337.395000px;}
.y144{bottom:337.935000px;}
.y171{bottom:338.115000px;}
.y41c{bottom:339.195000px;}
.y2a0{bottom:339.735000px;}
.y38c{bottom:340.275000px;}
.y26d{bottom:342.075000px;}
.y377{bottom:342.615000px;}
.y23b{bottom:342.795000px;}
.y481{bottom:343.695000px;}
.y426{bottom:343.875000px;}
.y3ff{bottom:344.235000px;}
.y48b{bottom:344.595000px;}
.y37f{bottom:344.775000px;}
.y195{bottom:345.675000px;}
.y3e4{bottom:346.215000px;}
.y1e6{bottom:346.575000px;}
.y369{bottom:347.115000px;}
.y3cb{bottom:348.015000px;}
.y3d9{bottom:349.815000px;}
.y5a{bottom:350.715000px;}
.y118{bottom:351.435000px;}
.y399{bottom:351.615000px;}
.yb9{bottom:353.235000px;}
.y76{bottom:354.315000px;}
.yfe{bottom:354.675000px;}
.y3c{bottom:354.855000px;}
.y257{bottom:355.395000px;}
.y297{bottom:356.295000px;}
.y220{bottom:356.835000px;}
.y2bb{bottom:357.375000px;}
.y23{bottom:359.355000px;}
.y2d2{bottom:359.535000px;}
.y8d{bottom:359.715000px;}
.y443{bottom:360.975000px;}
.y453{bottom:362.955000px;}
.y26c{bottom:363.495000px;}
.y1fc{bottom:363.675000px;}
.y2f3{bottom:363.855000px;}
.y161{bottom:365.655000px;}
.y33b{bottom:365.835000px;}
.y3b1{bottom:366.015000px;}
.y307{bottom:366.195000px;}
.y143{bottom:366.375000px;}
.y170{bottom:366.555000px;}
.y281{bottom:366.735000px;}
.y1b5{bottom:367.095000px;}
.y471{bottom:367.815000px;}
.y12b{bottom:368.355000px;}
.y3bd{bottom:368.535000px;}
.y194{bottom:368.895000px;}
.y1cd{bottom:369.075000px;}
.y150{bottom:369.615000px;}
.y23a{bottom:371.235000px;}
.y35b{bottom:373.035000px;}
.y352{bottom:373.395000px;}
.y46a{bottom:374.295000px;}
.y478{bottom:374.655000px;}
.y1e5{bottom:375.015000px;}
.y3f3{bottom:375.735000px;}
.y256{bottom:376.815000px;}
.y41b{bottom:377.535000px;}
.y313{bottom:377.715000px;}
.y21e{bottom:378.255000px;}
.y38b{bottom:378.615000px;}
.y59{bottom:379.155000px;}
.y117{bottom:379.875000px;}
.y376{bottom:380.955000px;}
.y480{bottom:382.035000px;}
.y425{bottom:382.215000px;}
.y3fe{bottom:382.575000px;}
.y48a{bottom:382.935000px;}
.y29f{bottom:383.115000px;}
.y3e3{bottom:384.555000px;}
.y26b{bottom:384.735000px;}
.y8{bottom:385.275000px;}
.y368{bottom:385.455000px;}
.y3ca{bottom:386.355000px;}
.y452{bottom:386.535000px;}
.y2ba{bottom:386.895000px;}
.y409{bottom:387.075000px;}
.y22{bottom:387.795000px;}
.y2d1{bottom:387.975000px;}
.y3d8{bottom:388.155000px;}
.y44c{bottom:389.235000px;}
.y33a{bottom:389.595000px;}
.y3b0{bottom:389.775000px;}
.y345{bottom:389.955000px;}
.y414{bottom:390.135000px;}
.y1b4{bottom:390.495000px;}
.y470{bottom:391.395000px;}
.y1fb{bottom:392.115000px;}
.y193{bottom:392.295000px;}
.y3a3{bottom:393.195000px;}
.y160{bottom:394.095000px;}
.y306{bottom:394.635000px;}
.y142{bottom:394.815000px;}
.y16f{bottom:394.995000px;}
.y8c{bottom:395.715000px;}
.yb8{bottom:396.615000px;}
.y35a{bottom:396.795000px;}
.y351{bottom:397.155000px;}
.y255{bottom:398.055000px;}
.y14f{bottom:398.235000px;}
.y3b{bottom:398.415000px;}
.y3f2{bottom:399.315000px;}
.y239{bottom:399.675000px;}
.y41a{bottom:401.115000px;}
.y38a{bottom:402.195000px;}
.y1e4{bottom:403.455000px;}
.y375{bottom:404.535000px;}
.y47f{bottom:405.615000px;}
.y424{bottom:405.795000px;}
.y26a{bottom:405.975000px;}
.y3fd{bottom:406.155000px;}
.y489{bottom:406.515000px;}
.y37e{bottom:406.695000px;}
.y58{bottom:407.595000px;}
.y3e2{bottom:408.135000px;}
.y116{bottom:408.315000px;}
.y367{bottom:409.035000px;}
.y3c9{bottom:410.115000px;}
.y280{bottom:410.295000px;}
.y12a{bottom:411.555000px;}
.y3d7{bottom:411.735000px;}
.y1cc{bottom:412.275000px;}
.y296{bottom:413.175000px;}
.y398{bottom:413.535000px;}
.y1b3{bottom:413.715000px;}
.y2b9{bottom:415.335000px;}
.y192{bottom:415.515000px;}
.y21{bottom:416.235000px;}
.y21f{bottom:416.415000px;}
.y75{bottom:416.595000px;}
.y3a2{bottom:416.775000px;}
.y2d0{bottom:417.495000px;}
.yfd{bottom:418.935000px;}
.y254{bottom:419.295000px;}
.y312{bottom:421.275000px;}
.y1fa{bottom:421.815000px;}
.y2f2{bottom:421.995000px;}
.y305{bottom:423.075000px;}
.y141{bottom:423.255000px;}
.y16e{bottom:423.615000px;}
.y15f{bottom:423.795000px;}
.y14e{bottom:426.675000px;}
.y269{bottom:427.395000px;}
.y238{bottom:428.115000px;}
.y8b{bottom:431.715000px;}
.y57{bottom:436.035000px;}
.y115{bottom:436.755000px;}
.y1b2{bottom:437.115000px;}
.y191{bottom:438.915000px;}
.yb7{bottom:439.995000px;}
.y252{bottom:440.715000px;}
.y295{bottom:441.615000px;}
.y3a{bottom:441.795000px;}
.yfc{bottom:442.335000px;}
.y2b8{bottom:443.775000px;}
.y20{bottom:444.675000px;}
.y2cf{bottom:445.935000px;}
.y1e3{bottom:448.095000px;}
.y2f1{bottom:450.435000px;}
.y1f9{bottom:451.335000px;}
.y304{bottom:451.515000px;}
.y16d{bottom:452.055000px;}
.y15e{bottom:452.235000px;}
.y27f{bottom:453.675000px;}
.y129{bottom:455.115000px;}
.y1cb{bottom:455.835000px;}
.y237{bottom:456.555000px;}
.y1b1{bottom:460.695000px;}
.y190{bottom:462.135000px;}
.y56{bottom:464.475000px;}
.y311{bottom:464.655000px;}
.y114{bottom:465.195000px;}
.yfb{bottom:465.555000px;}
.y140{bottom:466.815000px;}
.y8a{bottom:467.535000px;}
.y29e{bottom:468.615000px;}
.y7{bottom:469.335000px;}
.y1f{bottom:473.115000px;}
.y2b7{bottom:473.295000px;}
.y1af{bottom:475.095000px;}
.y2ce{bottom:475.635000px;}
.y21d{bottom:476.175000px;}
.y1e2{bottom:476.535000px;}
.y253{bottom:478.875000px;}
.y74{bottom:479.055000px;}
.y9d{bottom:479.595000px;}
.y303{bottom:479.955000px;}
.y16c{bottom:480.495000px;}
.y15d{bottom:480.675000px;}
.y1f8{bottom:480.855000px;}
.yb6{bottom:483.555000px;}
.y236{bottom:484.995000px;}
.y39{bottom:485.355000px;}
.yfa{bottom:488.955000px;}
.y55{bottom:493.275000px;}
.y113{bottom:493.635000px;}
.y13f{bottom:496.335000px;}
.y27e{bottom:497.235000px;}
.y1ca{bottom:499.215000px;}
.y1e{bottom:501.555000px;}
.y2b6{bottom:502.815000px;}
.y89{bottom:503.535000px;}
.y2cd{bottom:504.075000px;}
.y1ae{bottom:504.435000px;}
.y2f0{bottom:507.315000px;}
.y9c{bottom:508.035000px;}
.y310{bottom:508.215000px;}
.y302{bottom:508.395000px;}
.y18f{bottom:508.575000px;}
.y1f7{bottom:509.295000px;}
.y15c{bottom:510.195000px;}
.yb5{bottom:511.995000px;}
.y21c{bottom:512.175000px;}
.yf9{bottom:512.355000px;}
.y235{bottom:513.615000px;}
.y38{bottom:513.795000px;}
.y1e1{bottom:520.095000px;}
.y73{bottom:522.615000px;}
.y16b{bottom:523.875000px;}
.y13e{bottom:524.775000px;}
.y21b{bottom:526.575000px;}
.y32c{bottom:529.815000px;}
.y1d{bottom:530.175000px;}
.y2b5{bottom:531.435000px;}
.y18e{bottom:531.975000px;}
.y31e{bottom:532.155000px;}
.y1ad{bottom:533.595000px;}
.yf8{bottom:535.755000px;}
.y54{bottom:536.475000px;}
.y2ef{bottom:536.835000px;}
.y112{bottom:537.195000px;}
.y1f6{bottom:537.915000px;}
.y6{bottom:538.275000px;}
.y15b{bottom:538.635000px;}
.y88{bottom:539.535000px;}
.yb4{bottom:540.435000px;}
.y27d{bottom:540.615000px;}
.y294{bottom:542.055000px;}
.y1c9{bottom:542.595000px;}
.y21a{bottom:547.995000px;}
.yf1{bottom:550.335000px;}
.y30f{bottom:551.595000px;}
.y13d{bottom:553.215000px;}
.y18d{bottom:555.195000px;}
.y28e{bottom:555.375000px;}
.y234{bottom:556.995000px;}
.y37{bottom:557.175000px;}
.y1c{bottom:558.615000px;}
.y2b4{bottom:559.875000px;}
.y2cc{bottom:562.035000px;}
.y1ac{bottom:562.755000px;}
.y1e0{bottom:563.475000px;}
.y53{bottom:564.915000px;}
.y2ee{bottom:565.275000px;}
.y111{bottom:565.635000px;}
.y72{bottom:565.995000px;}
.y301{bottom:566.355000px;}
.y15a{bottom:567.075000px;}
.y16a{bottom:567.615000px;}
.y268{bottom:567.975000px;}
.y32b{bottom:568.155000px;}
.yb3{bottom:568.875000px;}
.y219{bottom:569.235000px;}
.y293{bottom:570.495000px;}
.y251{bottom:574.635000px;}
.y87{bottom:575.535000px;}
.y18c{bottom:578.955000px;}
.y13c{bottom:581.655000px;}
.y1f5{bottom:582.375000px;}
.y27c{bottom:583.995000px;}
.y233{bottom:585.435000px;}
.y1c8{bottom:586.155000px;}
.y1b{bottom:587.055000px;}
.y2b3{bottom:588.315000px;}
.y250{bottom:589.035000px;}
.y442{bottom:589.215000px;}
.y216{bottom:590.475000px;}
.y32a{bottom:591.735000px;}
.y3af{bottom:591.915000px;}
.y52{bottom:593.355000px;}
.y2ed{bottom:593.895000px;}
.y31d{bottom:594.075000px;}
.y344{bottom:594.435000px;}
.y44b{bottom:594.825000px;}
.y300{bottom:595.005000px;}
.y3bc{bottom:596.625000px;}
.y159{bottom:596.805000px;}
.yb2{bottom:597.345000px;}
.y413{bottom:597.525000px;}
.y292{bottom:598.965000px;}
.y350{bottom:599.325000px;}
.y45e{bottom:600.405000px;}
.y36{bottom:600.765000px;}
.y3f1{bottom:601.485000px;}
.y339{bottom:602.205000px;}
.y42e{bottom:603.285000px;}
.y434{bottom:603.465000px;}
.y267{bottom:603.825000px;}
.y3fc{bottom:606.165000px;}
.y374{bottom:606.705000px;}
.y1df{bottom:606.885000px;}
.y419{bottom:607.785000px;}
.y469{bottom:607.965000px;}
.y110{bottom:609.045000px;}
.y71{bottom:609.585000px;}
.y13b{bottom:610.305000px;}
.y169{bottom:610.845000px;}
.y366{bottom:611.205000px;}
.y86{bottom:611.565000px;}
.y215{bottom:611.925000px;}
.y488{bottom:612.105000px;}
.y27b{bottom:612.465000px;}
.y3e1{bottom:613.005000px;}
.y389{bottom:613.545000px;}
.y232{bottom:613.905000px;}
.y3c8{bottom:614.985000px;}
.y1a{bottom:615.525000px;}
.y397{bottom:615.705000px;}
.y3d6{bottom:616.245000px;}
.y2b2{bottom:616.785000px;}
.y2cb{bottom:618.945000px;}
.ye4{bottom:620.025000px;}
.y1ab{bottom:621.645000px;}
.y51{bottom:621.825000px;}
.y5{bottom:622.365000px;}
.y2ec{bottom:623.445000px;}
.y266{bottom:625.065000px;}
.y158{bottom:625.245000px;}
.yb1{bottom:625.785000px;}
.y28d{bottom:627.405000px;}
.y1c7{bottom:629.565000px;}
.y3ae{bottom:630.285000px;}
.y24f{bottom:631.725000px;}
.y408{bottom:632.085000px;}
.y343{bottom:632.805000px;}
.y214{bottom:633.165000px;}
.y3bb{bottom:634.965000px;}
.y1de{bottom:635.325000px;}
.y359{bottom:637.305000px;}
.y10f{bottom:637.665000px;}
.y412{bottom:638.565000px;}
.y45d{bottom:638.745000px;}
.y13a{bottom:639.825000px;}
.y338{bottom:640.545000px;}
.y128{bottom:640.905000px;}
.y42d{bottom:641.625000px;}
.y433{bottom:641.805000px;}
.y231{bottom:642.345000px;}
.y19{bottom:643.965000px;}
.y35{bottom:644.145000px;}
.y3fb{bottom:644.505000px;}
.y373{bottom:645.045000px;}
.y418{bottom:646.125000px;}
.y265{bottom:646.305000px;}
.y85{bottom:647.385000px;}
.y423{bottom:649.005000px;}
.y365{bottom:649.545000px;}
.y1aa{bottom:650.085000px;}
.y50{bottom:650.445000px;}
.y441{bottom:651.165000px;}
.y3e0{bottom:651.345000px;}
.y388{bottom:651.705000px;}
.y2eb{bottom:651.885000px;}
.y3ed{bottom:652.245000px;}
.y70{bottom:652.965000px;}
.y3c7{bottom:653.145000px;}
.y157{bottom:653.685000px;}
.y3ad{bottom:653.865000px;}
.y396{bottom:654.045000px;}
.yb0{bottom:654.405000px;}
.y28c{bottom:655.845000px;}
.y342{bottom:656.385000px;}
.y44a{bottom:656.745000px;}
.y3a1{bottom:657.285000px;}
.y3ba{bottom:658.725000px;}
.y358{bottom:660.885000px;}
.y34f{bottom:661.245000px;}
.y411{bottom:662.145000px;}
.y45c{bottom:662.325000px;}
.y3f0{bottom:663.405000px;}
.y1dd{bottom:663.765000px;}
.y337{bottom:664.125000px;}
.y42c{bottom:665.205000px;}
.y9b{bottom:665.385000px;}
.y10e{bottom:666.105000px;}
.y264{bottom:667.725000px;}
.y3fa{bottom:668.085000px;}
.y139{bottom:668.265000px;}
.y372{bottom:668.625000px;}
.y27a{bottom:669.345000px;}
.y417{bottom:669.705000px;}
.y468{bottom:669.885000px;}
.y230{bottom:670.785000px;}
.y18{bottom:672.405000px;}
.y422{bottom:672.765000px;}
.y1c6{bottom:673.125000px;}
.y487{bottom:674.025000px;}
.y24e{bottom:674.205000px;}
.y2b1{bottom:674.745000px;}
.y3df{bottom:674.925000px;}
.y387{bottom:675.465000px;}
.y3ec{bottom:675.825000px;}
.y2ca{bottom:676.005000px;}
.y3c6{bottom:676.905000px;}
.y395{bottom:677.625000px;}
.y3d5{bottom:678.165000px;}
.y4{bottom:678.705000px;}
.y4f{bottom:678.885000px;}
.y2ea{bottom:680.325000px;}
.y3a0{bottom:680.865000px;}
.y2ff{bottom:681.405000px;}
.yaf{bottom:682.845000px;}
.y156{bottom:683.205000px;}
.y84{bottom:683.385000px;}
.y127{bottom:684.285000px;}
.y34{bottom:687.705000px;}
.y263{bottom:688.965000px;}
.y1dc{bottom:692.205000px;}
.y212{bottom:692.745000px;}
.y1a9{bottom:693.645000px;}
.y9a{bottom:693.825000px;}
.y24d{bottom:695.625000px;}
.y6f{bottom:696.345000px;}
.y138{bottom:696.705000px;}
.y279{bottom:697.785000px;}
.y179{bottom:698.505000px;}
.y22f{bottom:699.405000px;}
.y17{bottom:700.845000px;}
.y2b0{bottom:703.185000px;}
.y2c9{bottom:705.525000px;}
.y4e{bottom:707.325000px;}
.y2e9{bottom:708.765000px;}
.y10d{bottom:709.665000px;}
.y2fe{bottom:709.845000px;}
.y261{bottom:710.205000px;}
.yae{bottom:711.285000px;}
.y155{bottom:711.645000px;}
.y126{bottom:712.725000px;}
.y1c5{bottom:716.505000px;}
.y24a{bottom:716.865000px;}
.y83{bottom:719.385000px;}
.y1db{bottom:720.825000px;}
.y1a8{bottom:722.085000px;}
.y99{bottom:722.265000px;}
.y137{bottom:725.145000px;}
.y278{bottom:726.225000px;}
.y22e{bottom:727.845000px;}
.y16{bottom:729.285000px;}
.ydc{bottom:729.645000px;}
.y33{bottom:731.085000px;}
.y2af{bottom:731.805000px;}
.y2c8{bottom:733.965000px;}
.y3{bottom:735.045000px;}
.y4d{bottom:735.765000px;}
.y2e8{bottom:738.285000px;}
.y14d{bottom:739.725000px;}
.y6e{bottom:739.905000px;}
.y154{bottom:740.085000px;}
.y125{bottom:741.165000px;}
.y17d{bottom:746.565000px;}
.y262{bottom:748.545000px;}
.y1da{bottom:749.265000px;}
.y98{bottom:750.705000px;}
.y211{bottom:752.505000px;}
.y10c{bottom:753.225000px;}
.y136{bottom:753.585000px;}
.yad{bottom:754.665000px;}
.y24c{bottom:755.205000px;}
.y82{bottom:755.385000px;}
.y22d{bottom:756.285000px;}
.y15{bottom:757.725000px;}
.y1c4{bottom:760.065000px;}
.y2ae{bottom:760.245000px;}
.y2c7{bottom:762.405000px;}
.y1a7{bottom:763.125000px;}
.y4c{bottom:764.205000px;}
.y2e7{bottom:766.725000px;}
.y2fd{bottom:767.985000px;}
.y168{bottom:768.165000px;}
.y28b{bottom:769.785000px;}
.y32{bottom:774.645000px;}
.y2{bottom:776.625000px;}
.y1d9{bottom:777.705000px;}
.y97{bottom:779.145000px;}
.y135{bottom:782.025000px;}
.yac{bottom:783.105000px;}
.y6d{bottom:783.285000px;}
.y124{bottom:784.725000px;}
.y14{bottom:786.345000px;}
.y210{bottom:788.325000px;}
.y2ad{bottom:788.685000px;}
.y2c6{bottom:790.845000px;}
.y81{bottom:791.385000px;}
.y329{bottom:791.745000px;}
.y4b{bottom:792.825000px;}
.y2e6{bottom:795.345000px;}
.y2fc{bottom:796.425000px;}
.y167{bottom:796.605000px;}
.y10b{bottom:797.865000px;}
.y28a{bottom:798.225000px;}
.y20f{bottom:802.905000px;}
.y1c3{bottom:803.445000px;}
.ycf{bottom:805.065000px;}
.y1d8{bottom:806.145000px;}
.y96{bottom:807.585000px;}
.y1a6{bottom:809.565000px;}
.y134{bottom:810.465000px;}
.yab{bottom:811.545000px;}
.y123{bottom:813.165000px;}
.y13{bottom:814.785000px;}
.y249{bottom:814.965000px;}
.y2ac{bottom:817.125000px;}
.y31{bottom:818.025000px;}
.y2c5{bottom:819.285000px;}
.y20e{bottom:824.145000px;}
.y2e5{bottom:824.865000px;}
.y1f4{bottom:825.045000px;}
.y10a{bottom:826.665000px;}
.y6c{bottom:826.845000px;}
.y80{bottom:827.205000px;}
.y291{bottom:828.105000px;}
.y328{bottom:830.085000px;}
.y31c{bottom:830.985000px;}
.y1a5{bottom:832.965000px;}
.y4a{bottom:836.205000px;}
.yaa{bottom:840.165000px;}
.y166{bottom:840.345000px;}
.y122{bottom:841.605000px;}
.y12{bottom:843.225000px;}
.y20d{bottom:845.565000px;}
.y2ab{bottom:846.645000px;}
.y1c2{bottom:847.005000px;}
.y2c4{bottom:848.805000px;}
.y1d7{bottom:849.525000px;}
.y248{bottom:850.785000px;}
.y2e4{bottom:853.305000px;}
.y1f3{bottom:853.485000px;}
.y327{bottom:853.665000px;}
.y31b{bottom:854.745000px;}
.y1{bottom:855.105000px;}
.y1a4{bottom:856.185000px;}
.y22c{bottom:856.545000px;}
.y440{bottom:858.165000px;}
.y30{bottom:861.585000px;}
.y407{bottom:862.530000px;}
.y3b9{bottom:863.070000px;}
.y7f{bottom:863.250000px;}
.y49{bottom:864.690000px;}
.y247{bottom:865.410000px;}
.y3ac{bottom:865.770000px;}
.y20c{bottom:866.850000px;}
.y3f9{bottom:867.570000px;}
.y336{bottom:868.650000px;}
.y45b{bottom:869.010000px;}
.y341{bottom:869.910000px;}
.y6b{bottom:870.090000px;}
.y34e{bottom:870.270000px;}
.y11{bottom:871.710000px;}
.y416{bottom:872.070000px;}
.y371{bottom:873.150000px;}
.y467{bottom:874.410000px;}
.y2aa{bottom:875.130000px;}
.y386{bottom:875.310000px;}
.y3eb{bottom:877.110000px;}
.y2c3{bottom:877.470000px;}
.y364{bottom:877.650000px;}
.y1d6{bottom:878.010000px;}
.y288{bottom:879.630000px;}
.y394{bottom:879.810000px;}
.y1a3{bottom:879.990000px;}
.y3c5{bottom:881.250000px;}
.y2e3{bottom:881.790000px;}
.y1f2{bottom:881.970000px;}
.y3d4{bottom:882.690000px;}
.ya9{bottom:883.590000px;}
.y153{bottom:885.210000px;}
.y246{bottom:886.650000px;}
.y20b{bottom:888.090000px;}
.y1c1{bottom:890.430000px;}
.y48{bottom:893.310000px;}
.y1a2{bottom:894.390000px;}
.y121{bottom:898.530000px;}
.y6a{bottom:898.710000px;}
.y43f{bottom:899.070000px;}
.y7e{bottom:899.250000px;}
.y410{bottom:899.970000px;}
.y10{bottom:900.150000px;}
.y406{bottom:900.870000px;}
.y3b8{bottom:901.410000px;}
.y451{bottom:903.570000px;}
.y3ab{bottom:903.930000px;}
.y2a9{bottom:904.830000px;}
.y2f{bottom:905.010000px;}
.y2c2{bottom:905.910000px;}
.y1d5{bottom:906.630000px;}
.y335{bottom:906.990000px;}
.y45a{bottom:907.350000px;}
.y245{bottom:907.890000px;}
.y287{bottom:908.070000px;}
.y95{bottom:908.250000px;}
.y34d{bottom:908.430000px;}
.y209{bottom:909.510000px;}
.yc5{bottom:910.050000px;}
.y415{bottom:910.230000px;}
.y2e2{bottom:911.310000px;}
.y370{bottom:911.490000px;}
.ya8{bottom:912.030000px;}
.y466{bottom:912.570000px;}
.y152{bottom:913.650000px;}
.y3ea{bottom:915.450000px;}
.y363{bottom:915.990000px;}
.y393{bottom:918.150000px;}
.y3c4{bottom:919.590000px;}
.y3d3{bottom:920.850000px;}
.y43e{bottom:922.830000px;}
.y1a1{bottom:923.550000px;}
.y405{bottom:924.450000px;}
.y3b7{bottom:924.990000px;}
.y1f1{bottom:925.530000px;}
.y120{bottom:926.970000px;}
.y450{bottom:927.330000px;}
.y3aa{bottom:927.690000px;}
.yf{bottom:928.590000px;}
.y244{bottom:929.310000px;}
.y3f8{bottom:929.490000px;}
.y334{bottom:930.570000px;}
.y205{bottom:930.750000px;}
.y459{bottom:930.930000px;}
.y340{bottom:931.830000px;}
.y34c{bottom:932.190000px;}
.y1c0{bottom:933.990000px;}
.y2a8{bottom:934.350000px;}
.y1d4{bottom:935.070000px;}
.y7d{bottom:935.250000px;}
.y465{bottom:936.330000px;}
.y47{bottom:936.510000px;}
.y385{bottom:937.230000px;}
.y3e9{bottom:939.030000px;}
.y362{bottom:939.570000px;}
.y2e1{bottom:939.750000px;}
.ya7{bottom:940.470000px;}
.y392{bottom:941.730000px;}
.y69{bottom:942.090000px;}
.y3c3{bottom:943.350000px;}
.y3d2{bottom:944.610000px;}
.y2e{bottom:948.390000px;}
.y243{bottom:950.550000px;}
.y1a0{bottom:952.890000px;}
.y1f0{bottom:953.970000px;}
.y109{bottom:955.590000px;}
.ye{bottom:957.030000px;}
.y2a7{bottom:962.790000px;}
.y1d3{bottom:963.510000px;}
.y46{bottom:964.950000px;}
.y2e0{bottom:968.370000px;}
.ya6{bottom:968.910000px;}
.y68{bottom:970.530000px;}
.yc0{bottom:970.890000px;}
.y7c{bottom:971.070000px;}
.y242{bottom:971.790000px;}
.y1bf{bottom:977.370000px;}
.y19d{bottom:982.050000px;}
.y108{bottom:984.030000px;}
.yd{bottom:985.470000px;}
.y2a6{bottom:991.230000px;}
.y2d{bottom:991.950000px;}
.y23f{bottom:993.210000px;}
.y45{bottom:993.390000px;}
.y2df{bottom:996.810000px;}
.ya5{bottom:997.350000px;}
.y1ef{bottom:997.530000px;}
.y67{bottom:998.970000px;}
.y7b{bottom:1007.070000px;}
.yc{bottom:1010.490000px;}
.y107{bottom:1012.470000px;}
.y2a5{bottom:1019.670000px;}
.y1be{bottom:1020.750000px;}
.y44{bottom:1022.010000px;}
.ya4{bottom:1025.970000px;}
.y2de{bottom:1026.330000px;}
.y66{bottom:1027.410000px;}
.y241{bottom:1031.370000px;}
.y2c{bottom:1035.330000px;}
.y204{bottom:1035.510000px;}
.y326{bottom:1036.950000px;}
.ybf{bottom:1040.910000px;}
.y1ee{bottom:1041.090000px;}
.y7a{bottom:1043.070000px;}
.y1bd{bottom:1049.190000px;}
.y43{bottom:1050.450000px;}
.y31a{bottom:1050.630000px;}
.y2dd{bottom:1054.770000px;}
.y65{bottom:1055.850000px;}
.ya3{bottom:1069.350000px;}
.y1bc{bottom:1077.810000px;}
.y2b{bottom:1078.890000px;}
.y42{bottom:1079.070000px;}
.y325{bottom:1082.850000px;}
.y2dc{bottom:1083.210000px;}
.y64{bottom:1084.290000px;}
.ya2{bottom:1097.790000px;}
.y2db{bottom:1111.650000px;}
.y63{bottom:1112.730000px;}
.y324{bottom:1113.450000px;}
.y404{bottom:1141.200000px;}
.y62{bottom:1141.380000px;}
.y2a{bottom:1141.560000px;}
.y323{bottom:1144.080000px;}
.y333{bottom:1144.440000px;}
.y29{bottom:1194.480000px;}
.h1b{height:18.885000px;}
.h23{height:18.900000px;}
.h26{height:18.921000px;}
.h1e{height:18.922500px;}
.h1d{height:19.065000px;}
.h1f{height:19.080000px;}
.h25{height:19.101000px;}
.h24{height:19.110000px;}
.h16{height:28.425000px;}
.h17{height:28.605000px;}
.h1a{height:35.985000px;}
.h22{height:36.000000px;}
.h12{height:36.180000px;}
.h28{height:37.546875px;}
.h8{height:39.585000px;}
.h11{height:43.554375px;}
.h13{height:45.720000px;}
.h15{height:48.410156px;}
.h1c{height:49.415625px;}
.h9{height:50.312812px;}
.h7{height:56.320312px;}
.ha{height:58.485000px;}
.hf{height:59.383125px;}
.h20{height:64.906875px;}
.h27{height:65.026875px;}
.h6{height:65.884219px;}
.he{height:68.970000px;}
.h3{height:69.086250px;}
.h4{height:73.794375px;}
.h5{height:73.974375px;}
.h19{height:74.145000px;}
.h21{height:74.340000px;}
.hc{height:74.700000px;}
.h18{height:75.093750px;}
.h10{height:84.240000px;}
.h2{height:99.874688px;}
.h14{height:102.990000px;}
.hb{height:104.062500px;}
.hd{height:108.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:30.600000px;}
.w1a{width:56.505000px;}
.w19{width:56.509500px;}
.w1c{width:56.520000px;}
.w1b{width:56.541000px;}
.w13{width:56.554500px;}
.w1f{width:56.685000px;}
.w1d{width:56.700000px;}
.w20{width:56.721000px;}
.w1e{width:56.736000px;}
.w2f{width:57.229500px;}
.w2d{width:57.405000px;}
.w27{width:57.409500px;}
.w26{width:57.585000px;}
.w21{width:57.589500px;}
.w28{width:57.945000px;}
.w30{width:57.981000px;}
.w2c{width:58.125000px;}
.w2a{width:58.140000px;}
.w29{width:58.161000px;}
.w2b{width:58.176000px;}
.w22{width:58.485000px;}
.w24{width:58.500000px;}
.w23{width:58.521000px;}
.w25{width:58.536000px;}
.wf{width:61.920000px;}
.w9{width:63.540000px;}
.w10{width:67.716000px;}
.wb{width:69.825000px;}
.w12{width:72.885000px;}
.wc{width:80.841000px;}
.w4{width:82.116000px;}
.w7{width:90.889500px;}
.wd{width:96.645000px;}
.w8{width:104.601000px;}
.w15{width:115.221000px;}
.w14{width:115.369500px;}
.w2e{width:115.401000px;}
.w17{width:115.545000px;}
.w18{width:115.581000px;}
.w16{width:115.596000px;}
.w6{width:127.461000px;}
.w5{width:128.865000px;}
.w2{width:130.669500px;}
.wa{width:131.976000px;}
.w3{width:177.855000px;}
.w11{width:187.410000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.009500px;}
.x1d{left:9.345000px;}
.x3c{left:13.845000px;}
.x55{left:15.109500px;}
.x3d{left:18.345000px;}
.x18{left:21.420000px;}
.x3a{left:23.025000px;}
.x16{left:26.445000px;}
.x3f{left:27.525000px;}
.x1a{left:30.405000px;}
.x3b{left:32.940000px;}
.x1b{left:36.165000px;}
.x48{left:38.143500px;}
.x4a{left:43.230000px;}
.x38{left:44.820000px;}
.x14{left:47.683500px;}
.x3e{left:49.860000px;}
.x47{left:75.601500px;}
.x13{left:120.646500px;}
.xc{left:127.656000px;}
.x10{left:129.456000px;}
.x24{left:131.256000px;}
.x5c{left:133.056000px;}
.x2{left:134.496000px;}
.x40{left:135.756000px;}
.x44{left:137.376000px;}
.x34{left:138.456000px;}
.x65{left:140.616000px;}
.x33{left:142.596000px;}
.xd{left:144.216000px;}
.x31{left:146.196000px;}
.x22{left:147.636000px;}
.x35{left:149.256000px;}
.x43{left:152.490000px;}
.x20{left:155.550000px;}
.x32{left:157.890000px;}
.x46{left:159.690000px;}
.x21{left:160.950000px;}
.x42{left:165.630000px;}
.xa{left:169.050000px;}
.x3{left:180.390000px;}
.x27{left:181.650000px;}
.x12{left:187.230000px;}
.x69{left:190.290000px;}
.x1f{left:192.090000px;}
.x4f{left:193.185000px;}
.x5b{left:202.170000px;}
.x26{left:208.650000px;}
.x29{left:213.885000px;}
.x36{left:215.850000px;}
.x23{left:227.010000px;}
.x9{left:233.130000px;}
.x6{left:237.630000px;}
.x56{left:250.965000px;}
.x49{left:252.045000px;}
.x15{left:253.665000px;}
.x61{left:273.810000px;}
.x45{left:277.230000px;}
.x30{left:287.175000px;}
.x8{left:293.115000px;}
.x5a{left:300.315000px;}
.x59{left:304.095000px;}
.x50{left:310.755000px;}
.x58{left:313.635000px;}
.x5{left:315.795000px;}
.x2a{left:320.835000px;}
.x41{left:323.715000px;}
.x7{left:332.355000px;}
.x37{left:344.415000px;}
.x2e{left:353.775000px;}
.x11{left:357.555000px;}
.x4b{left:369.615000px;}
.xb{left:373.035000px;}
.x2b{left:386.535000px;}
.x25{left:389.775000px;}
.x51{left:428.475000px;}
.x17{left:432.435000px;}
.x4{left:446.475000px;}
.x2f{left:450.795000px;}
.x5d{left:473.145000px;}
.x60{left:474.585000px;}
.x68{left:477.825000px;}
.x6a{left:479.985000px;}
.x63{left:481.605000px;}
.x62{left:483.945000px;}
.x5e{left:485.385000px;}
.x4c{left:487.380000px;}
.x39{left:504.120000px;}
.x19{left:515.460000px;}
.x2c{left:520.680000px;}
.x67{left:525.525000px;}
.x64{left:535.065000px;}
.x66{left:538.305000px;}
.x52{left:546.240000px;}
.x5f{left:547.665000px;}
.xf{left:592.845000px;}
.x4d{left:605.100000px;}
.x1c{left:645.060000px;}
.x53{left:663.990000px;}
.x2d{left:675.870000px;}
.x4e{left:722.850000px;}
.x1{left:743.550000px;}
.x28{left:747.150000px;}
.xe{left:756.330000px;}
.x6b{left:765.510000px;}
.x57{left:780.810000px;}
.x54{left:781.890000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v7{vertical-align:-24.320000pt;}
.v2{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v6{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.lse{letter-spacing:-0.874667pt;}
.ls25{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls2a{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.280533pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.239467pt;}
.ls4{letter-spacing:-0.233067pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls23{letter-spacing:-0.158933pt;}
.ls20{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.001280pt;}
.ls18{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.079360pt;}
.lsf{letter-spacing:0.079467pt;}
.ls10{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.201067pt;}
.lsd{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.250027pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls2{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.481280pt;}
.ls1c{letter-spacing:0.504533pt;}
.ls24{letter-spacing:0.560000pt;}
.ls2d{letter-spacing:0.641280pt;}
.ls6{letter-spacing:0.911360pt;}
.ls36{letter-spacing:2.191360pt;}
.ls19{letter-spacing:2.693120pt;}
.ls2e{letter-spacing:3.471360pt;}
.ls35{letter-spacing:6.671360pt;}
.ls2f{letter-spacing:7.951360pt;}
.ls1d{letter-spacing:10.511360pt;}
.ls34{letter-spacing:18.831360pt;}
.ls8{letter-spacing:19.471360pt;}
.ls31{letter-spacing:21.551360pt;}
.ls30{letter-spacing:22.031360pt;}
.ls29{letter-spacing:31.791360pt;}
.ls1f{letter-spacing:36.111360pt;}
.ls32{letter-spacing:40.111360pt;}
.ls1a{letter-spacing:44.431360pt;}
.ls26{letter-spacing:47.631360pt;}
.ls1b{letter-spacing:52.751360pt;}
.ls33{letter-spacing:118.666667pt;}
.ls7{letter-spacing:751.770027pt;}
.ws10{word-spacing:-58.880000pt;}
.ws12{word-spacing:-16.873173pt;}
.ws5{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws1{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws13{word-spacing:-16.233173pt;}
.ws3{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.ws1a{word-spacing:-15.961707pt;}
.ws16{word-spacing:-15.632640pt;}
.ws8{word-spacing:-15.493973pt;}
.wse{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.344000pt;}
.wsd{word-spacing:-13.328000pt;}
.ws9{word-spacing:-11.920640pt;}
.wsc{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.721707pt;}
.wsa{word-spacing:-11.681173pt;}
.ws15{word-spacing:-10.879360pt;}
.ws17{word-spacing:-10.520427pt;}
.ws4{word-spacing:-10.319360pt;}
.ws14{word-spacing:-10.160427pt;}
.ws19{word-spacing:-8.896000pt;}
.ws18{word-spacing:-6.760960pt;}
.ws11{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
._21{margin-left:-16.591573pt;}
._20{margin-left:-14.695253pt;}
._1e{margin-left:-12.609067pt;}
._1b{margin-left:-10.832213pt;}
._1c{margin-left:-8.912853pt;}
._1f{margin-left:-7.984427pt;}
._3f{margin-left:-6.945493pt;}
._22{margin-left:-5.769813pt;}
._1d{margin-left:-4.000427pt;}
._1{margin-left:-1.957760pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.361920pt;}
._2{width:2.290773pt;}
._a{width:3.337173pt;}
._7{width:4.298240pt;}
._6{width:5.711360pt;}
._5{width:6.653440pt;}
._f{width:7.748267pt;}
._18{width:8.797013pt;}
._14{width:10.480640pt;}
._15{width:11.672960pt;}
._2c{width:12.760107pt;}
._8{width:13.836800pt;}
._9{width:14.866347pt;}
._36{width:16.238080pt;}
._13{width:17.369600pt;}
._12{width:18.318293pt;}
._2b{width:19.593813pt;}
._23{width:21.078187pt;}
._24{width:22.216533pt;}
._50{width:23.305813pt;}
._19{width:24.376320pt;}
._3{width:25.318400pt;}
._10{width:26.319360pt;}
._11{width:27.261440pt;}
._1a{width:28.173227pt;}
._4b{width:29.616640pt;}
._16{width:30.558720pt;}
._17{width:32.224853pt;}
._39{width:33.326080pt;}
._3a{width:34.620160pt;}
._45{width:35.718827pt;}
._40{width:37.153280pt;}
._41{width:38.095360pt;}
._53{width:39.252480pt;}
._54{width:40.648320pt;}
._59{width:41.591680pt;}
._2f{width:44.638080pt;}
._2e{width:45.758720pt;}
._43{width:47.306240pt;}
._30{width:48.559360pt;}
._58{width:49.757867pt;}
._46{width:51.520000pt;}
._37{width:53.127040pt;}
._35{width:56.172800pt;}
._44{width:57.101440pt;}
._47{width:59.056640pt;}
._48{width:60.116480pt;}
._57{width:63.649280pt;}
._51{width:64.826880pt;}
._34{width:66.592640pt;}
._25{width:67.888640pt;}
._26{width:68.830720pt;}
._49{width:71.098667pt;}
._4a{width:73.522347pt;}
._52{width:74.457813pt;}
._27{width:79.193600pt;}
._28{width:80.135467pt;}
._38{width:84.945280pt;}
._31{width:86.187520pt;}
._4f{width:98.605227pt;}
._33{width:102.268800pt;}
._3c{width:103.995733pt;}
._4d{width:105.267200pt;}
._3b{width:110.499627pt;}
._e{width:112.564693pt;}
._55{width:114.580480pt;}
._56{width:115.831680pt;}
._5a{width:117.708160pt;}
._29{width:119.232000pt;}
._2a{width:120.284160pt;}
._42{width:128.539947pt;}
._3e{width:129.712640pt;}
._61{width:140.605440pt;}
._60{width:141.547520pt;}
._2d{width:142.804693pt;}
._4c{width:146.434560pt;}
._3d{width:156.100907pt;}
._32{width:179.057920pt;}
._5b{width:194.539520pt;}
._5c{width:196.011520pt;}
._c{width:225.140907pt;}
._63{width:255.715840pt;}
._5d{width:266.667520pt;}
._5e{width:267.606827pt;}
._5f{width:298.521600pt;}
._65{width:390.609920pt;}
._64{width:403.445120pt;}
._62{width:438.597120pt;}
._d{width:575.738027pt;}
._b{width:751.770027pt;}
._4e{width:754.794667pt;}
.fs6{font-size:24.320000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.ycb{bottom:-13.120000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:1.280000pt;}
.y224{bottom:5.106667pt;}
.y20a{bottom:5.120000pt;}
.y223{bottom:5.266667pt;}
.yce{bottom:5.280000pt;}
.y218{bottom:5.306667pt;}
.y226{bottom:5.426667pt;}
.yca{bottom:5.440000pt;}
.y217{bottom:5.466667pt;}
.yc4{bottom:7.040000pt;}
.y207{bottom:7.520000pt;}
.y17e{bottom:7.680000pt;}
.yd6{bottom:9.120000pt;}
.y19f{bottom:11.680000pt;}
.y19e{bottom:11.840000pt;}
.y1b0{bottom:12.000000pt;}
.y208{bottom:12.800000pt;}
.y213{bottom:12.960000pt;}
.y181{bottom:13.120000pt;}
.y189{bottom:13.146667pt;}
.yed{bottom:13.280000pt;}
.yf7{bottom:14.560000pt;}
.yf4{bottom:14.720000pt;}
.y17f{bottom:15.840000pt;}
.y206{bottom:18.240000pt;}
.ye3{bottom:19.680000pt;}
.ye1{bottom:19.840000pt;}
.y184{bottom:20.000000pt;}
.y183{bottom:21.120000pt;}
.yc7{bottom:21.920000pt;}
.ycd{bottom:22.720000pt;}
.yc1{bottom:23.520000pt;}
.yc2{bottom:23.680000pt;}
.yc9{bottom:23.840000pt;}
.yc3{bottom:25.600000pt;}
.yd5{bottom:27.520000pt;}
.y17b{bottom:29.120000pt;}
.yf0{bottom:29.280000pt;}
.y188{bottom:29.306667pt;}
.y260{bottom:29.760000pt;}
.yde{bottom:29.920000pt;}
.yec{bottom:31.840000pt;}
.yf6{bottom:33.120000pt;}
.yf3{bottom:33.280000pt;}
.ydb{bottom:33.760000pt;}
.y17c{bottom:37.120000pt;}
.y240{bottom:37.280000pt;}
.y18b{bottom:37.306667pt;}
.y24b{bottom:37.440000pt;}
.ye0{bottom:38.240000pt;}
.yc6{bottom:40.480000pt;}
.ycc{bottom:41.280000pt;}
.yc8{bottom:42.240000pt;}
.yd8{bottom:43.040000pt;}
.yd1{bottom:43.200000pt;}
.ye8{bottom:45.120000pt;}
.y17a{bottom:45.280000pt;}
.y187{bottom:45.306667pt;}
.yd4{bottom:45.920000pt;}
.ydd{bottom:48.480000pt;}
.yeb{bottom:50.240000pt;}
.y94{bottom:51.200000pt;}
.yf5{bottom:51.546667pt;}
.yf2{bottom:51.706667pt;}
.yda{bottom:52.360000pt;}
.y182{bottom:53.280000pt;}
.y18a{bottom:53.306667pt;}
.ydf{bottom:56.640000pt;}
.ye6{bottom:58.880000pt;}
.yef{bottom:60.960000pt;}
.y180{bottom:61.280000pt;}
.y186{bottom:61.466667pt;}
.yd7{bottom:61.640000pt;}
.yd0{bottom:61.800000pt;}
.ye7{bottom:63.680000pt;}
.yd3{bottom:64.360000pt;}
.y93{bottom:68.192000pt;}
.yea{bottom:68.640000pt;}
.yd9{bottom:70.760000pt;}
.ye5{bottom:77.280000pt;}
.y185{bottom:77.466667pt;}
.yee{bottom:79.520000pt;}
.yd2{bottom:82.760000pt;}
.ye9{bottom:87.040000pt;}
.y421{bottom:97.312000pt;}
.y14c{bottom:97.952000pt;}
.y178{bottom:98.112000pt;}
.y106{bottom:99.552000pt;}
.y25e{bottom:99.872000pt;}
.y37d{bottom:100.352000pt;}
.y486{bottom:101.312000pt;}
.y42b{bottom:101.472000pt;}
.y439{bottom:101.952000pt;}
.y384{bottom:102.272000pt;}
.y3e8{bottom:103.552000pt;}
.y332{bottom:103.712000pt;}
.y319{bottom:104.032000pt;}
.y36f{bottom:104.352000pt;}
.y3d1{bottom:105.152000pt;}
.y3de{bottom:106.752000pt;}
.y322{bottom:107.552000pt;}
.y39f{bottom:108.352000pt;}
.y357{bottom:109.312000pt;}
.y477{bottom:111.072000pt;}
.y3a9{bottom:111.232000pt;}
.y133{bottom:111.552000pt;}
.y2c1{bottom:112.512000pt;}
.y29d{bottom:112.832000pt;}
.y277{bottom:112.992000pt;}
.y2da{bottom:115.072000pt;}
.y1ed{bottom:116.512000pt;}
.y449{bottom:116.672000pt;}
.y203{bottom:117.632000pt;}
.y2fb{bottom:118.112000pt;}
.yb{bottom:118.432000pt;}
.y40f{bottom:118.912000pt;}
.y1bb{bottom:120.032000pt;}
.ybe{bottom:120.672000pt;}
.y30e{bottom:120.992000pt;}
.y3b6{bottom:121.152000pt;}
.y61{bottom:121.312000pt;}
.y34b{bottom:121.472000pt;}
.y11f{bottom:121.952000pt;}
.y14b{bottom:123.232000pt;}
.y177{bottom:123.392000pt;}
.y2a4{bottom:123.552000pt;}
.ya1{bottom:123.872000pt;}
.y105{bottom:124.832000pt;}
.y464{bottom:125.792000pt;}
.y48e{bottom:126.592000pt;}
.y361{bottom:127.392000pt;}
.y274{bottom:128.032000pt;}
.y19c{bottom:128.192000pt;}
.y46f{bottom:128.512000pt;}
.y47e{bottom:128.672000pt;}
.y3f7{bottom:129.792000pt;}
.y391{bottom:130.112000pt;}
.y420{bottom:131.392000pt;}
.y458{bottom:131.712000pt;}
.y165{bottom:131.872000pt;}
.y286{bottom:132.832000pt;}
.y25d{bottom:133.786667pt;}
.y37c{bottom:134.266667pt;}
.y22b{bottom:134.426667pt;}
.y1d2{bottom:134.746667pt;}
.y485{bottom:135.386667pt;}
.y42a{bottom:135.546667pt;}
.y41{bottom:135.866667pt;}
.y383{bottom:136.346667pt;}
.y132{bottom:136.826667pt;}
.y3e7{bottom:137.466667pt;}
.y29c{bottom:138.106667pt;}
.y36e{bottom:138.266667pt;}
.y3ef{bottom:138.426667pt;}
.y3d0{bottom:139.226667pt;}
.y331{bottom:140.026667pt;}
.y2d9{bottom:140.506667pt;}
.y438{bottom:140.666667pt;}
.y3dd{bottom:140.826667pt;}
.y321{bottom:141.466667pt;}
.y1ec{bottom:141.946667pt;}
.y39e{bottom:142.266667pt;}
.y318{bottom:142.586667pt;}
.y2fa{bottom:143.386667pt;}
.ya0{bottom:144.506667pt;}
.y3a8{bottom:145.146667pt;}
.y30d{bottom:146.266667pt;}
.y60{bottom:146.586667pt;}
.y92{bottom:147.066667pt;}
.y11e{bottom:147.226667pt;}
.y79{bottom:148.346667pt;}
.y14a{bottom:148.506667pt;}
.y176{bottom:148.826667pt;}
.y476{bottom:149.786667pt;}
.y104{bottom:150.106667pt;}
.y448{bottom:150.746667pt;}
.y2c0{bottom:151.226667pt;}
.y276{bottom:151.706667pt;}
.y40e{bottom:152.986667pt;}
.y19b{bottom:153.466667pt;}
.y403{bottom:153.626667pt;}
.y44f{bottom:154.746667pt;}
.y33f{bottom:155.066667pt;}
.y3b5{bottom:155.226667pt;}
.y34a{bottom:155.386667pt;}
.y202{bottom:156.186667pt;}
.y43d{bottom:157.306667pt;}
.y3c2{bottom:157.466667pt;}
.ybd{bottom:159.386667pt;}
.y463{bottom:159.706667pt;}
.y432{bottom:161.306667pt;}
.y360{bottom:161.466667pt;}
.y131{bottom:162.106667pt;}
.y2a3{bottom:162.266667pt;}
.y46e{bottom:162.586667pt;}
.y47d{bottom:162.746667pt;}
.y48d{bottom:162.906667pt;}
.y29b{bottom:163.386667pt;}
.y3f6{bottom:163.706667pt;}
.y273{bottom:164.346667pt;}
.y41f{bottom:165.306667pt;}
.y9f{bottom:165.626667pt;}
.y2d8{bottom:165.786667pt;}
.y390{bottom:166.426667pt;}
.y1eb{bottom:167.226667pt;}
.y25c{bottom:167.866667pt;}
.y37b{bottom:168.346667pt;}
.y484{bottom:169.306667pt;}
.y2f9{bottom:169.626667pt;}
.y457{bottom:170.266667pt;}
.y164{bottom:170.426667pt;}
.y285{bottom:171.546667pt;}
.y5f{bottom:171.866667pt;}
.y36d{bottom:172.346667pt;}
.y11d{bottom:172.506667pt;}
.y22a{bottom:173.146667pt;}
.y3cf{bottom:173.306667pt;}
.y1d1{bottom:173.466667pt;}
.y149{bottom:173.786667pt;}
.y175{bottom:174.106667pt;}
.y40{bottom:174.266667pt;}
.y3dc{bottom:174.746667pt;}
.y103{bottom:175.386667pt;}
.y1ba{bottom:175.546667pt;}
.y39d{bottom:176.346667pt;}
.y19a{bottom:178.746667pt;}
.y3a7{bottom:179.226667pt;}
.y356{bottom:179.546667pt;}
.y317{bottom:181.306667pt;}
.y201{bottom:181.466667pt;}
.y48c{bottom:183.706667pt;}
.y447{bottom:184.826667pt;}
.y272{bottom:185.146667pt;}
.y40d{bottom:186.906667pt;}
.y130{bottom:187.386667pt;}
.y475{bottom:188.346667pt;}
.y290{bottom:188.826667pt;}
.y33e{bottom:189.146667pt;}
.y3b4{bottom:189.306667pt;}
.y349{bottom:189.466667pt;}
.y2bf{bottom:189.786667pt;}
.y275{bottom:190.106667pt;}
.y43c{bottom:191.386667pt;}
.y3c1{bottom:191.546667pt;}
.y91{bottom:191.866667pt;}
.y2d7{bottom:192.026667pt;}
.y402{bottom:192.346667pt;}
.y25f{bottom:192.826667pt;}
.y28{bottom:192.986667pt;}
.ya{bottom:193.146667pt;}
.y462{bottom:193.786667pt;}
.y2f8{bottom:194.906667pt;}
.y431{bottom:195.386667pt;}
.y35f{bottom:195.546667pt;}
.y46d{bottom:196.506667pt;}
.y47c{bottom:196.826667pt;}
.y30c{bottom:196.986667pt;}
.y5e{bottom:197.146667pt;}
.y11c{bottom:197.786667pt;}
.ybc{bottom:197.946667pt;}
.y9e{bottom:198.266667pt;}
.y148{bottom:199.066667pt;}
.y174{bottom:199.386667pt;}
.y38f{bottom:200.346667pt;}
.y2a2{bottom:200.666667pt;}
.y102{bottom:200.826667pt;}
.y25b{bottom:201.946667pt;}
.y37a{bottom:202.426667pt;}
.y483{bottom:203.386667pt;}
.y429{bottom:203.546667pt;}
.y78{bottom:203.866667pt;}
.y199{bottom:204.026667pt;}
.y382{bottom:204.346667pt;}
.y3e6{bottom:205.626667pt;}
.y1ea{bottom:205.786667pt;}
.y36c{bottom:206.426667pt;}
.y200{bottom:206.746667pt;}
.y3ce{bottom:207.226667pt;}
.y330{bottom:208.186667pt;}
.y3db{bottom:208.826667pt;}
.y456{bottom:208.986667pt;}
.y163{bottom:209.146667pt;}
.y229{bottom:209.626667pt;}
.y284{bottom:210.106667pt;}
.y39c{bottom:210.426667pt;}
.y1d0{bottom:212.026667pt;}
.y12f{bottom:212.666667pt;}
.y3f{bottom:212.826667pt;}
.y3a6{bottom:213.306667pt;}
.y1b9{bottom:213.946667pt;}
.y28f{bottom:214.106667pt;}
.y2d6{bottom:217.306667pt;}
.y437{bottom:217.946667pt;}
.y27{bottom:218.106667pt;}
.y355{bottom:218.266667pt;}
.y446{bottom:218.746667pt;}
.y271{bottom:219.066667pt;}
.y316{bottom:219.866667pt;}
.y40c{bottom:220.986667pt;}
.y2f7{bottom:221.306667pt;}
.y289{bottom:222.426667pt;}
.y5d{bottom:222.586667pt;}
.y228{bottom:222.600000pt;}
.y44e{bottom:222.746667pt;}
.y11b{bottom:223.066667pt;}
.y30b{bottom:223.226667pt;}
.y348{bottom:223.546667pt;}
.y90{bottom:223.866667pt;}
.y147{bottom:224.346667pt;}
.y173{bottom:224.666667pt;}
.y474{bottom:224.826667pt;}
.y43b{bottom:225.306667pt;}
.y3c0{bottom:225.466667pt;}
.y2a1{bottom:225.946667pt;}
.y101{bottom:226.106667pt;}
.y29a{bottom:227.386667pt;}
.y461{bottom:227.866667pt;}
.y2be{bottom:228.506667pt;}
.y23e{bottom:228.826667pt;}
.y198{bottom:229.306667pt;}
.y35e{bottom:229.466667pt;}
.y46c{bottom:230.586667pt;}
.y47b{bottom:230.746667pt;}
.y401{bottom:230.906667pt;}
.y1e9{bottom:231.066667pt;}
.y3f5{bottom:231.866667pt;}
.y41e{bottom:233.466667pt;}
.y38e{bottom:234.426667pt;}
.y25a{bottom:236.026667pt;}
.y379{bottom:236.346667pt;}
.ybb{bottom:236.666667pt;}
.y428{bottom:237.626667pt;}
.y12e{bottom:237.946667pt;}
.y381{bottom:238.426667pt;}
.y1b8{bottom:239.386667pt;}
.y3e5{bottom:239.546667pt;}
.y36b{bottom:240.346667pt;}
.y3ee{bottom:240.506667pt;}
.y3cd{bottom:241.306667pt;}
.y227{bottom:241.480000pt;}
.y32f{bottom:242.106667pt;}
.y2d5{bottom:242.586667pt;}
.y3da{bottom:242.906667pt;}
.y26{bottom:243.546667pt;}
.y39b{bottom:244.346667pt;}
.y1ff{bottom:245.466667pt;}
.y2f6{bottom:246.586667pt;}
.y3a5{bottom:247.386667pt;}
.y455{bottom:247.546667pt;}
.y162{bottom:247.706667pt;}
.y11a{bottom:248.346667pt;}
.y30a{bottom:248.506667pt;}
.y283{bottom:248.666667pt;}
.y146{bottom:249.786667pt;}
.y172{bottom:249.946667pt;}
.y1cf{bottom:250.746667pt;}
.y100{bottom:251.386667pt;}
.y3e{bottom:251.546667pt;}
.y299{bottom:252.666667pt;}
.y445{bottom:252.826667pt;}
.y270{bottom:253.306667pt;}
.y23d{bottom:254.106667pt;}
.y40b{bottom:255.066667pt;}
.y8f{bottom:255.866667pt;}
.y1e8{bottom:256.346667pt;}
.y436{bottom:256.506667pt;}
.y354{bottom:256.826667pt;}
.y33d{bottom:257.146667pt;}
.y3b3{bottom:257.306667pt;}
.y347{bottom:257.466667pt;}
.y315{bottom:258.426667pt;}
.y473{bottom:258.906667pt;}
.y77{bottom:259.386667pt;}
.y3bf{bottom:259.546667pt;}
.y225{bottom:260.360000pt;}
.y5c{bottom:261.146667pt;}
.y460{bottom:261.786667pt;}
.y12d{bottom:263.226667pt;}
.y430{bottom:263.386667pt;}
.y35d{bottom:263.546667pt;}
.y1b7{bottom:264.666667pt;}
.y47a{bottom:264.826667pt;}
.y259{bottom:265.146667pt;}
.y197{bottom:265.786667pt;}
.y26f{bottom:266.280000pt;}
.y2bd{bottom:266.906667pt;}
.y41d{bottom:267.386667pt;}
.y9{bottom:267.706667pt;}
.y2d4{bottom:267.866667pt;}
.y38d{bottom:268.506667pt;}
.y25{bottom:268.826667pt;}
.y400{bottom:269.626667pt;}
.y378{bottom:270.426667pt;}
.y1fe{bottom:270.746667pt;}
.y482{bottom:271.386667pt;}
.y427{bottom:271.706667pt;}
.y380{bottom:272.506667pt;}
.y2f5{bottom:272.826667pt;}
.y119{bottom:273.626667pt;}
.y309{bottom:273.786667pt;}
.y36a{bottom:274.426667pt;}
.y145{bottom:275.066667pt;}
.yba{bottom:275.226667pt;}
.y3cc{bottom:275.386667pt;}
.y32e{bottom:276.186667pt;}
.yff{bottom:276.666667pt;}
.y3d{bottom:276.826667pt;}
.y320{bottom:277.626667pt;}
.y298{bottom:277.946667pt;}
.y258{bottom:278.120000pt;}
.y39a{bottom:278.426667pt;}
.y23c{bottom:279.386667pt;}
.y222{bottom:279.400000pt;}
.y3a4{bottom:281.306667pt;}
.y1e7{bottom:281.786667pt;}
.y26e{bottom:285.160000pt;}
.y454{bottom:286.106667pt;}
.y5b{bottom:286.426667pt;}
.y196{bottom:286.746667pt;}
.y444{bottom:286.906667pt;}
.y282{bottom:287.386667pt;}
.y8e{bottom:287.706667pt;}
.y12c{bottom:288.506667pt;}
.y40a{bottom:288.986667pt;}
.y1ce{bottom:289.306667pt;}
.y1b6{bottom:289.946667pt;}
.y151{bottom:290.106667pt;}
.y44d{bottom:290.906667pt;}
.y33c{bottom:291.266667pt;}
.y3b2{bottom:291.426667pt;}
.y346{bottom:291.586667pt;}
.y2bc{bottom:292.226667pt;}
.y472{bottom:292.866667pt;}
.y43a{bottom:293.506667pt;}
.y3be{bottom:293.666667pt;}
.y24{bottom:294.146667pt;}
.y2d3{bottom:294.306667pt;}
.y435{bottom:295.266667pt;}
.y353{bottom:295.586667pt;}
.y45f{bottom:295.906667pt;}
.y1fd{bottom:297.026667pt;}
.y314{bottom:297.186667pt;}
.y32d{bottom:297.346667pt;}
.y42f{bottom:297.506667pt;}
.y35c{bottom:297.666667pt;}
.y2f4{bottom:298.146667pt;}
.y221{bottom:298.306667pt;}
.y31f{bottom:298.626667pt;}
.y46b{bottom:298.786667pt;}
.y479{bottom:298.946667pt;}
.y308{bottom:299.106667pt;}
.y3f4{bottom:299.906667pt;}
.y144{bottom:300.386667pt;}
.y171{bottom:300.546667pt;}
.y41c{bottom:301.506667pt;}
.y2a0{bottom:301.986667pt;}
.y38c{bottom:302.466667pt;}
.y26d{bottom:304.066667pt;}
.y377{bottom:304.546667pt;}
.y23b{bottom:304.706667pt;}
.y481{bottom:305.506667pt;}
.y426{bottom:305.666667pt;}
.y3ff{bottom:305.986667pt;}
.y48b{bottom:306.306667pt;}
.y37f{bottom:306.466667pt;}
.y195{bottom:307.266667pt;}
.y3e4{bottom:307.746667pt;}
.y1e6{bottom:308.066667pt;}
.y369{bottom:308.546667pt;}
.y3cb{bottom:309.346667pt;}
.y3d9{bottom:310.946667pt;}
.y5a{bottom:311.746667pt;}
.y118{bottom:312.386667pt;}
.y399{bottom:312.546667pt;}
.yb9{bottom:313.986667pt;}
.y76{bottom:314.946667pt;}
.yfe{bottom:315.266667pt;}
.y3c{bottom:315.426667pt;}
.y257{bottom:315.906667pt;}
.y297{bottom:316.706667pt;}
.y220{bottom:317.186667pt;}
.y2bb{bottom:317.666667pt;}
.y23{bottom:319.426667pt;}
.y2d2{bottom:319.586667pt;}
.y8d{bottom:319.746667pt;}
.y443{bottom:320.866667pt;}
.y453{bottom:322.626667pt;}
.y26c{bottom:323.106667pt;}
.y1fc{bottom:323.266667pt;}
.y2f3{bottom:323.426667pt;}
.y161{bottom:325.026667pt;}
.y33b{bottom:325.186667pt;}
.y3b1{bottom:325.346667pt;}
.y307{bottom:325.506667pt;}
.y143{bottom:325.666667pt;}
.y170{bottom:325.826667pt;}
.y281{bottom:325.986667pt;}
.y1b5{bottom:326.306667pt;}
.y471{bottom:326.946667pt;}
.y12b{bottom:327.426667pt;}
.y3bd{bottom:327.586667pt;}
.y194{bottom:327.906667pt;}
.y1cd{bottom:328.066667pt;}
.y150{bottom:328.546667pt;}
.y23a{bottom:329.986667pt;}
.y35b{bottom:331.586667pt;}
.y352{bottom:331.906667pt;}
.y46a{bottom:332.706667pt;}
.y478{bottom:333.026667pt;}
.y1e5{bottom:333.346667pt;}
.y3f3{bottom:333.986667pt;}
.y256{bottom:334.946667pt;}
.y41b{bottom:335.586667pt;}
.y313{bottom:335.746667pt;}
.y21e{bottom:336.226667pt;}
.y38b{bottom:336.546667pt;}
.y59{bottom:337.026667pt;}
.y117{bottom:337.666667pt;}
.y376{bottom:338.626667pt;}
.y480{bottom:339.586667pt;}
.y425{bottom:339.746667pt;}
.y3fe{bottom:340.066667pt;}
.y48a{bottom:340.386667pt;}
.y29f{bottom:340.546667pt;}
.y3e3{bottom:341.826667pt;}
.y26b{bottom:341.986667pt;}
.y8{bottom:342.466667pt;}
.y368{bottom:342.626667pt;}
.y3ca{bottom:343.426667pt;}
.y452{bottom:343.586667pt;}
.y2ba{bottom:343.906667pt;}
.y409{bottom:344.066667pt;}
.y22{bottom:344.706667pt;}
.y2d1{bottom:344.866667pt;}
.y3d8{bottom:345.026667pt;}
.y44c{bottom:345.986667pt;}
.y33a{bottom:346.306667pt;}
.y3b0{bottom:346.466667pt;}
.y345{bottom:346.626667pt;}
.y414{bottom:346.786667pt;}
.y1b4{bottom:347.106667pt;}
.y470{bottom:347.906667pt;}
.y1fb{bottom:348.546667pt;}
.y193{bottom:348.706667pt;}
.y3a3{bottom:349.506667pt;}
.y160{bottom:350.306667pt;}
.y306{bottom:350.786667pt;}
.y142{bottom:350.946667pt;}
.y16f{bottom:351.106667pt;}
.y8c{bottom:351.746667pt;}
.yb8{bottom:352.546667pt;}
.y35a{bottom:352.706667pt;}
.y351{bottom:353.026667pt;}
.y255{bottom:353.826667pt;}
.y14f{bottom:353.986667pt;}
.y3b{bottom:354.146667pt;}
.y3f2{bottom:354.946667pt;}
.y239{bottom:355.266667pt;}
.y41a{bottom:356.546667pt;}
.y38a{bottom:357.506667pt;}
.y1e4{bottom:358.626667pt;}
.y375{bottom:359.586667pt;}
.y47f{bottom:360.546667pt;}
.y424{bottom:360.706667pt;}
.y26a{bottom:360.866667pt;}
.y3fd{bottom:361.026667pt;}
.y489{bottom:361.346667pt;}
.y37e{bottom:361.506667pt;}
.y58{bottom:362.306667pt;}
.y3e2{bottom:362.786667pt;}
.y116{bottom:362.946667pt;}
.y367{bottom:363.586667pt;}
.y3c9{bottom:364.546667pt;}
.y280{bottom:364.706667pt;}
.y12a{bottom:365.826667pt;}
.y3d7{bottom:365.986667pt;}
.y1cc{bottom:366.466667pt;}
.y296{bottom:367.266667pt;}
.y398{bottom:367.586667pt;}
.y1b3{bottom:367.746667pt;}
.y2b9{bottom:369.186667pt;}
.y192{bottom:369.346667pt;}
.y21{bottom:369.986667pt;}
.y21f{bottom:370.146667pt;}
.y75{bottom:370.306667pt;}
.y3a2{bottom:370.466667pt;}
.y2d0{bottom:371.106667pt;}
.yfd{bottom:372.386667pt;}
.y254{bottom:372.706667pt;}
.y312{bottom:374.466667pt;}
.y1fa{bottom:374.946667pt;}
.y2f2{bottom:375.106667pt;}
.y305{bottom:376.066667pt;}
.y141{bottom:376.226667pt;}
.y16e{bottom:376.546667pt;}
.y15f{bottom:376.706667pt;}
.y14e{bottom:379.266667pt;}
.y269{bottom:379.906667pt;}
.y238{bottom:380.546667pt;}
.y8b{bottom:383.746667pt;}
.y57{bottom:387.586667pt;}
.y115{bottom:388.226667pt;}
.y1b2{bottom:388.546667pt;}
.y191{bottom:390.146667pt;}
.yb7{bottom:391.106667pt;}
.y252{bottom:391.746667pt;}
.y295{bottom:392.546667pt;}
.y3a{bottom:392.706667pt;}
.yfc{bottom:393.186667pt;}
.y2b8{bottom:394.466667pt;}
.y20{bottom:395.266667pt;}
.y2cf{bottom:396.386667pt;}
.y1e3{bottom:398.306667pt;}
.y2f1{bottom:400.386667pt;}
.y1f9{bottom:401.186667pt;}
.y304{bottom:401.346667pt;}
.y16d{bottom:401.826667pt;}
.y15e{bottom:401.986667pt;}
.y27f{bottom:403.266667pt;}
.y129{bottom:404.546667pt;}
.y1cb{bottom:405.186667pt;}
.y237{bottom:405.826667pt;}
.y1b1{bottom:409.506667pt;}
.y190{bottom:410.786667pt;}
.y56{bottom:412.866667pt;}
.y311{bottom:413.026667pt;}
.y114{bottom:413.506667pt;}
.yfb{bottom:413.826667pt;}
.y140{bottom:414.946667pt;}
.y8a{bottom:415.586667pt;}
.y29e{bottom:416.546667pt;}
.y7{bottom:417.186667pt;}
.y1f{bottom:420.546667pt;}
.y2b7{bottom:420.706667pt;}
.y1af{bottom:422.306667pt;}
.y2ce{bottom:422.786667pt;}
.y21d{bottom:423.266667pt;}
.y1e2{bottom:423.586667pt;}
.y253{bottom:425.666667pt;}
.y74{bottom:425.826667pt;}
.y9d{bottom:426.306667pt;}
.y303{bottom:426.626667pt;}
.y16c{bottom:427.106667pt;}
.y15d{bottom:427.266667pt;}
.y1f8{bottom:427.426667pt;}
.yb6{bottom:429.826667pt;}
.y236{bottom:431.106667pt;}
.y39{bottom:431.426667pt;}
.yfa{bottom:434.626667pt;}
.y55{bottom:438.466667pt;}
.y113{bottom:438.786667pt;}
.y13f{bottom:441.186667pt;}
.y27e{bottom:441.986667pt;}
.y1ca{bottom:443.746667pt;}
.y1e{bottom:445.826667pt;}
.y2b6{bottom:446.946667pt;}
.y89{bottom:447.586667pt;}
.y2cd{bottom:448.066667pt;}
.y1ae{bottom:448.386667pt;}
.y2f0{bottom:450.946667pt;}
.y9c{bottom:451.586667pt;}
.y310{bottom:451.746667pt;}
.y302{bottom:451.906667pt;}
.y18f{bottom:452.066667pt;}
.y1f7{bottom:452.706667pt;}
.y15c{bottom:453.506667pt;}
.yb5{bottom:455.106667pt;}
.y21c{bottom:455.266667pt;}
.yf9{bottom:455.426667pt;}
.y235{bottom:456.546667pt;}
.y38{bottom:456.706667pt;}
.y1e1{bottom:462.306667pt;}
.y73{bottom:464.546667pt;}
.y16b{bottom:465.666667pt;}
.y13e{bottom:466.466667pt;}
.y21b{bottom:468.066667pt;}
.y32c{bottom:470.946667pt;}
.y1d{bottom:471.266667pt;}
.y2b5{bottom:472.386667pt;}
.y18e{bottom:472.866667pt;}
.y31e{bottom:473.026667pt;}
.y1ad{bottom:474.306667pt;}
.yf8{bottom:476.226667pt;}
.y54{bottom:476.866667pt;}
.y2ef{bottom:477.186667pt;}
.y112{bottom:477.506667pt;}
.y1f6{bottom:478.146667pt;}
.y6{bottom:478.466667pt;}
.y15b{bottom:478.786667pt;}
.y88{bottom:479.586667pt;}
.yb4{bottom:480.386667pt;}
.y27d{bottom:480.546667pt;}
.y294{bottom:481.826667pt;}
.y1c9{bottom:482.306667pt;}
.y21a{bottom:487.106667pt;}
.yf1{bottom:489.186667pt;}
.y30f{bottom:490.306667pt;}
.y13d{bottom:491.746667pt;}
.y18d{bottom:493.506667pt;}
.y28e{bottom:493.666667pt;}
.y234{bottom:495.106667pt;}
.y37{bottom:495.266667pt;}
.y1c{bottom:496.546667pt;}
.y2b4{bottom:497.666667pt;}
.y2cc{bottom:499.586667pt;}
.y1ac{bottom:500.226667pt;}
.y1e0{bottom:500.866667pt;}
.y53{bottom:502.146667pt;}
.y2ee{bottom:502.466667pt;}
.y111{bottom:502.786667pt;}
.y72{bottom:503.106667pt;}
.y301{bottom:503.426667pt;}
.y15a{bottom:504.066667pt;}
.y16a{bottom:504.546667pt;}
.y268{bottom:504.866667pt;}
.y32b{bottom:505.026667pt;}
.yb3{bottom:505.666667pt;}
.y219{bottom:505.986667pt;}
.y293{bottom:507.106667pt;}
.y251{bottom:510.786667pt;}
.y87{bottom:511.586667pt;}
.y18c{bottom:514.626667pt;}
.y13c{bottom:517.026667pt;}
.y1f5{bottom:517.666667pt;}
.y27c{bottom:519.106667pt;}
.y233{bottom:520.386667pt;}
.y1c8{bottom:521.026667pt;}
.y1b{bottom:521.826667pt;}
.y2b3{bottom:522.946667pt;}
.y250{bottom:523.586667pt;}
.y442{bottom:523.746667pt;}
.y216{bottom:524.866667pt;}
.y32a{bottom:525.986667pt;}
.y3af{bottom:526.146667pt;}
.y52{bottom:527.426667pt;}
.y2ed{bottom:527.906667pt;}
.y31d{bottom:528.066667pt;}
.y344{bottom:528.386667pt;}
.y44b{bottom:528.733333pt;}
.y300{bottom:528.893333pt;}
.y3bc{bottom:530.333333pt;}
.y159{bottom:530.493333pt;}
.yb2{bottom:530.973333pt;}
.y413{bottom:531.133333pt;}
.y292{bottom:532.413333pt;}
.y350{bottom:532.733333pt;}
.y45e{bottom:533.693333pt;}
.y36{bottom:534.013333pt;}
.y3f1{bottom:534.653333pt;}
.y339{bottom:535.293333pt;}
.y42e{bottom:536.253333pt;}
.y434{bottom:536.413333pt;}
.y267{bottom:536.733333pt;}
.y3fc{bottom:538.813333pt;}
.y374{bottom:539.293333pt;}
.y1df{bottom:539.453333pt;}
.y419{bottom:540.253333pt;}
.y469{bottom:540.413333pt;}
.y110{bottom:541.373333pt;}
.y71{bottom:541.853333pt;}
.y13b{bottom:542.493333pt;}
.y169{bottom:542.973333pt;}
.y366{bottom:543.293333pt;}
.y86{bottom:543.613333pt;}
.y215{bottom:543.933333pt;}
.y488{bottom:544.093333pt;}
.y27b{bottom:544.413333pt;}
.y3e1{bottom:544.893333pt;}
.y389{bottom:545.373333pt;}
.y232{bottom:545.693333pt;}
.y3c8{bottom:546.653333pt;}
.y1a{bottom:547.133333pt;}
.y397{bottom:547.293333pt;}
.y3d6{bottom:547.773333pt;}
.y2b2{bottom:548.253333pt;}
.y2cb{bottom:550.173333pt;}
.ye4{bottom:551.133333pt;}
.y1ab{bottom:552.573333pt;}
.y51{bottom:552.733333pt;}
.y5{bottom:553.213333pt;}
.y2ec{bottom:554.173333pt;}
.y266{bottom:555.613333pt;}
.y158{bottom:555.773333pt;}
.yb1{bottom:556.253333pt;}
.y28d{bottom:557.693333pt;}
.y1c7{bottom:559.613333pt;}
.y3ae{bottom:560.253333pt;}
.y24f{bottom:561.533333pt;}
.y408{bottom:561.853333pt;}
.y343{bottom:562.493333pt;}
.y214{bottom:562.813333pt;}
.y3bb{bottom:564.413333pt;}
.y1de{bottom:564.733333pt;}
.y359{bottom:566.493333pt;}
.y10f{bottom:566.813333pt;}
.y412{bottom:567.613333pt;}
.y45d{bottom:567.773333pt;}
.y13a{bottom:568.733333pt;}
.y338{bottom:569.373333pt;}
.y128{bottom:569.693333pt;}
.y42d{bottom:570.333333pt;}
.y433{bottom:570.493333pt;}
.y231{bottom:570.973333pt;}
.y19{bottom:572.413333pt;}
.y35{bottom:572.573333pt;}
.y3fb{bottom:572.893333pt;}
.y373{bottom:573.373333pt;}
.y418{bottom:574.333333pt;}
.y265{bottom:574.493333pt;}
.y85{bottom:575.453333pt;}
.y423{bottom:576.893333pt;}
.y365{bottom:577.373333pt;}
.y1aa{bottom:577.853333pt;}
.y50{bottom:578.173333pt;}
.y441{bottom:578.813333pt;}
.y3e0{bottom:578.973333pt;}
.y388{bottom:579.293333pt;}
.y2eb{bottom:579.453333pt;}
.y3ed{bottom:579.773333pt;}
.y70{bottom:580.413333pt;}
.y3c7{bottom:580.573333pt;}
.y157{bottom:581.053333pt;}
.y3ad{bottom:581.213333pt;}
.y396{bottom:581.373333pt;}
.yb0{bottom:581.693333pt;}
.y28c{bottom:582.973333pt;}
.y342{bottom:583.453333pt;}
.y44a{bottom:583.773333pt;}
.y3a1{bottom:584.253333pt;}
.y3ba{bottom:585.533333pt;}
.y358{bottom:587.453333pt;}
.y34f{bottom:587.773333pt;}
.y411{bottom:588.573333pt;}
.y45c{bottom:588.733333pt;}
.y3f0{bottom:589.693333pt;}
.y1dd{bottom:590.013333pt;}
.y337{bottom:590.333333pt;}
.y42c{bottom:591.293333pt;}
.y9b{bottom:591.453333pt;}
.y10e{bottom:592.093333pt;}
.y264{bottom:593.533333pt;}
.y3fa{bottom:593.853333pt;}
.y139{bottom:594.013333pt;}
.y372{bottom:594.333333pt;}
.y27a{bottom:594.973333pt;}
.y417{bottom:595.293333pt;}
.y468{bottom:595.453333pt;}
.y230{bottom:596.253333pt;}
.y18{bottom:597.693333pt;}
.y422{bottom:598.013333pt;}
.y1c6{bottom:598.333333pt;}
.y487{bottom:599.133333pt;}
.y24e{bottom:599.293333pt;}
.y2b1{bottom:599.773333pt;}
.y3df{bottom:599.933333pt;}
.y387{bottom:600.413333pt;}
.y3ec{bottom:600.733333pt;}
.y2ca{bottom:600.893333pt;}
.y3c6{bottom:601.693333pt;}
.y395{bottom:602.333333pt;}
.y3d5{bottom:602.813333pt;}
.y4{bottom:603.293333pt;}
.y4f{bottom:603.453333pt;}
.y2ea{bottom:604.733333pt;}
.y3a0{bottom:605.213333pt;}
.y2ff{bottom:605.693333pt;}
.yaf{bottom:606.973333pt;}
.y156{bottom:607.293333pt;}
.y84{bottom:607.453333pt;}
.y127{bottom:608.253333pt;}
.y34{bottom:611.293333pt;}
.y263{bottom:612.413333pt;}
.y1dc{bottom:615.293333pt;}
.y212{bottom:615.773333pt;}
.y1a9{bottom:616.573333pt;}
.y9a{bottom:616.733333pt;}
.y24d{bottom:618.333333pt;}
.y6f{bottom:618.973333pt;}
.y138{bottom:619.293333pt;}
.y279{bottom:620.253333pt;}
.y179{bottom:620.893333pt;}
.y22f{bottom:621.693333pt;}
.y17{bottom:622.973333pt;}
.y2b0{bottom:625.053333pt;}
.y2c9{bottom:627.133333pt;}
.y4e{bottom:628.733333pt;}
.y2e9{bottom:630.013333pt;}
.y10d{bottom:630.813333pt;}
.y2fe{bottom:630.973333pt;}
.y261{bottom:631.293333pt;}
.yae{bottom:632.253333pt;}
.y155{bottom:632.573333pt;}
.y126{bottom:633.533333pt;}
.y1c5{bottom:636.893333pt;}
.y24a{bottom:637.213333pt;}
.y83{bottom:639.453333pt;}
.y1db{bottom:640.733333pt;}
.y1a8{bottom:641.853333pt;}
.y99{bottom:642.013333pt;}
.y137{bottom:644.573333pt;}
.y278{bottom:645.533333pt;}
.y22e{bottom:646.973333pt;}
.y16{bottom:648.253333pt;}
.ydc{bottom:648.573333pt;}
.y33{bottom:649.853333pt;}
.y2af{bottom:650.493333pt;}
.y2c8{bottom:652.413333pt;}
.y3{bottom:653.373333pt;}
.y4d{bottom:654.013333pt;}
.y2e8{bottom:656.253333pt;}
.y14d{bottom:657.533333pt;}
.y6e{bottom:657.693333pt;}
.y154{bottom:657.853333pt;}
.y125{bottom:658.813333pt;}
.y17d{bottom:663.613333pt;}
.y262{bottom:665.373333pt;}
.y1da{bottom:666.013333pt;}
.y98{bottom:667.293333pt;}
.y211{bottom:668.893333pt;}
.y10c{bottom:669.533333pt;}
.y136{bottom:669.853333pt;}
.yad{bottom:670.813333pt;}
.y24c{bottom:671.293333pt;}
.y82{bottom:671.453333pt;}
.y22d{bottom:672.253333pt;}
.y15{bottom:673.533333pt;}
.y1c4{bottom:675.613333pt;}
.y2ae{bottom:675.773333pt;}
.y2c7{bottom:677.693333pt;}
.y1a7{bottom:678.333333pt;}
.y4c{bottom:679.293333pt;}
.y2e7{bottom:681.533333pt;}
.y2fd{bottom:682.653333pt;}
.y168{bottom:682.813333pt;}
.y28b{bottom:684.253333pt;}
.y32{bottom:688.573333pt;}
.y2{bottom:690.333333pt;}
.y1d9{bottom:691.293333pt;}
.y97{bottom:692.573333pt;}
.y135{bottom:695.133333pt;}
.yac{bottom:696.093333pt;}
.y6d{bottom:696.253333pt;}
.y124{bottom:697.533333pt;}
.y14{bottom:698.973333pt;}
.y210{bottom:700.733333pt;}
.y2ad{bottom:701.053333pt;}
.y2c6{bottom:702.973333pt;}
.y81{bottom:703.453333pt;}
.y329{bottom:703.773333pt;}
.y4b{bottom:704.733333pt;}
.y2e6{bottom:706.973333pt;}
.y2fc{bottom:707.933333pt;}
.y167{bottom:708.093333pt;}
.y10b{bottom:709.213333pt;}
.y28a{bottom:709.533333pt;}
.y20f{bottom:713.693333pt;}
.y1c3{bottom:714.173333pt;}
.ycf{bottom:715.613333pt;}
.y1d8{bottom:716.573333pt;}
.y96{bottom:717.853333pt;}
.y1a6{bottom:719.613333pt;}
.y134{bottom:720.413333pt;}
.yab{bottom:721.373333pt;}
.y123{bottom:722.813333pt;}
.y13{bottom:724.253333pt;}
.y249{bottom:724.413333pt;}
.y2ac{bottom:726.333333pt;}
.y31{bottom:727.133333pt;}
.y2c5{bottom:728.253333pt;}
.y20e{bottom:732.573333pt;}
.y2e5{bottom:733.213333pt;}
.y1f4{bottom:733.373333pt;}
.y10a{bottom:734.813333pt;}
.y6c{bottom:734.973333pt;}
.y80{bottom:735.293333pt;}
.y291{bottom:736.093333pt;}
.y328{bottom:737.853333pt;}
.y31c{bottom:738.653333pt;}
.y1a5{bottom:740.413333pt;}
.y4a{bottom:743.293333pt;}
.yaa{bottom:746.813333pt;}
.y166{bottom:746.973333pt;}
.y122{bottom:748.093333pt;}
.y12{bottom:749.533333pt;}
.y20d{bottom:751.613333pt;}
.y2ab{bottom:752.573333pt;}
.y1c2{bottom:752.893333pt;}
.y2c4{bottom:754.493333pt;}
.y1d7{bottom:755.133333pt;}
.y248{bottom:756.253333pt;}
.y2e4{bottom:758.493333pt;}
.y1f3{bottom:758.653333pt;}
.y327{bottom:758.813333pt;}
.y31b{bottom:759.773333pt;}
.y1{bottom:760.093333pt;}
.y1a4{bottom:761.053333pt;}
.y22c{bottom:761.373333pt;}
.y440{bottom:762.813333pt;}
.y30{bottom:765.853333pt;}
.y407{bottom:766.693333pt;}
.y3b9{bottom:767.173333pt;}
.y7f{bottom:767.333333pt;}
.y49{bottom:768.613333pt;}
.y247{bottom:769.253333pt;}
.y3ac{bottom:769.573333pt;}
.y20c{bottom:770.533333pt;}
.y3f9{bottom:771.173333pt;}
.y336{bottom:772.133333pt;}
.y45b{bottom:772.453333pt;}
.y341{bottom:773.253333pt;}
.y6b{bottom:773.413333pt;}
.y34e{bottom:773.573333pt;}
.y11{bottom:774.853333pt;}
.y416{bottom:775.173333pt;}
.y371{bottom:776.133333pt;}
.y467{bottom:777.253333pt;}
.y2aa{bottom:777.893333pt;}
.y386{bottom:778.053333pt;}
.y3eb{bottom:779.653333pt;}
.y2c3{bottom:779.973333pt;}
.y364{bottom:780.133333pt;}
.y1d6{bottom:780.453333pt;}
.y288{bottom:781.893333pt;}
.y394{bottom:782.053333pt;}
.y1a3{bottom:782.213333pt;}
.y3c5{bottom:783.333333pt;}
.y2e3{bottom:783.813333pt;}
.y1f2{bottom:783.973333pt;}
.y3d4{bottom:784.613333pt;}
.ya9{bottom:785.413333pt;}
.y153{bottom:786.853333pt;}
.y246{bottom:788.133333pt;}
.y20b{bottom:789.413333pt;}
.y1c1{bottom:791.493333pt;}
.y48{bottom:794.053333pt;}
.y1a2{bottom:795.013333pt;}
.y121{bottom:798.693333pt;}
.y6a{bottom:798.853333pt;}
.y43f{bottom:799.173333pt;}
.y7e{bottom:799.333333pt;}
.y410{bottom:799.973333pt;}
.y10{bottom:800.133333pt;}
.y406{bottom:800.773333pt;}
.y3b8{bottom:801.253333pt;}
.y451{bottom:803.173333pt;}
.y3ab{bottom:803.493333pt;}
.y2a9{bottom:804.293333pt;}
.y2f{bottom:804.453333pt;}
.y2c2{bottom:805.253333pt;}
.y1d5{bottom:805.893333pt;}
.y335{bottom:806.213333pt;}
.y45a{bottom:806.533333pt;}
.y245{bottom:807.013333pt;}
.y287{bottom:807.173333pt;}
.y95{bottom:807.333333pt;}
.y34d{bottom:807.493333pt;}
.y209{bottom:808.453333pt;}
.yc5{bottom:808.933333pt;}
.y415{bottom:809.093333pt;}
.y2e2{bottom:810.053333pt;}
.y370{bottom:810.213333pt;}
.ya8{bottom:810.693333pt;}
.y466{bottom:811.173333pt;}
.y152{bottom:812.133333pt;}
.y3ea{bottom:813.733333pt;}
.y363{bottom:814.213333pt;}
.y393{bottom:816.133333pt;}
.y3c4{bottom:817.413333pt;}
.y3d3{bottom:818.533333pt;}
.y43e{bottom:820.293333pt;}
.y1a1{bottom:820.933333pt;}
.y405{bottom:821.733333pt;}
.y3b7{bottom:822.213333pt;}
.y1f1{bottom:822.693333pt;}
.y120{bottom:823.973333pt;}
.y450{bottom:824.293333pt;}
.y3aa{bottom:824.613333pt;}
.yf{bottom:825.413333pt;}
.y244{bottom:826.053333pt;}
.y3f8{bottom:826.213333pt;}
.y334{bottom:827.173333pt;}
.y205{bottom:827.333333pt;}
.y459{bottom:827.493333pt;}
.y340{bottom:828.293333pt;}
.y34c{bottom:828.613333pt;}
.y1c0{bottom:830.213333pt;}
.y2a8{bottom:830.533333pt;}
.y1d4{bottom:831.173333pt;}
.y7d{bottom:831.333333pt;}
.y465{bottom:832.293333pt;}
.y47{bottom:832.453333pt;}
.y385{bottom:833.093333pt;}
.y3e9{bottom:834.693333pt;}
.y362{bottom:835.173333pt;}
.y2e1{bottom:835.333333pt;}
.ya7{bottom:835.973333pt;}
.y392{bottom:837.093333pt;}
.y69{bottom:837.413333pt;}
.y3c3{bottom:838.533333pt;}
.y3d2{bottom:839.653333pt;}
.y2e{bottom:843.013333pt;}
.y243{bottom:844.933333pt;}
.y1a0{bottom:847.013333pt;}
.y1f0{bottom:847.973333pt;}
.y109{bottom:849.413333pt;}
.ye{bottom:850.693333pt;}
.y2a7{bottom:855.813333pt;}
.y1d3{bottom:856.453333pt;}
.y46{bottom:857.733333pt;}
.y2e0{bottom:860.773333pt;}
.ya6{bottom:861.253333pt;}
.y68{bottom:862.693333pt;}
.yc0{bottom:863.013333pt;}
.y7c{bottom:863.173333pt;}
.y242{bottom:863.813333pt;}
.y1bf{bottom:868.773333pt;}
.y19d{bottom:872.933333pt;}
.y108{bottom:874.693333pt;}
.yd{bottom:875.973333pt;}
.y2a6{bottom:881.093333pt;}
.y2d{bottom:881.733333pt;}
.y23f{bottom:882.853333pt;}
.y45{bottom:883.013333pt;}
.y2df{bottom:886.053333pt;}
.ya5{bottom:886.533333pt;}
.y1ef{bottom:886.693333pt;}
.y67{bottom:887.973333pt;}
.y7b{bottom:895.173333pt;}
.yc{bottom:898.213333pt;}
.y107{bottom:899.973333pt;}
.y2a5{bottom:906.373333pt;}
.y1be{bottom:907.333333pt;}
.y44{bottom:908.453333pt;}
.ya4{bottom:911.973333pt;}
.y2de{bottom:912.293333pt;}
.y66{bottom:913.253333pt;}
.y241{bottom:916.773333pt;}
.y2c{bottom:920.293333pt;}
.y204{bottom:920.453333pt;}
.y326{bottom:921.733333pt;}
.ybf{bottom:925.253333pt;}
.y1ee{bottom:925.413333pt;}
.y7a{bottom:927.173333pt;}
.y1bd{bottom:932.613333pt;}
.y43{bottom:933.733333pt;}
.y31a{bottom:933.893333pt;}
.y2dd{bottom:937.573333pt;}
.y65{bottom:938.533333pt;}
.ya3{bottom:950.533333pt;}
.y1bc{bottom:958.053333pt;}
.y2b{bottom:959.013333pt;}
.y42{bottom:959.173333pt;}
.y325{bottom:962.533333pt;}
.y2dc{bottom:962.853333pt;}
.y64{bottom:963.813333pt;}
.ya2{bottom:975.813333pt;}
.y2db{bottom:988.133333pt;}
.y63{bottom:989.093333pt;}
.y324{bottom:989.733333pt;}
.y404{bottom:1014.400000pt;}
.y62{bottom:1014.560000pt;}
.y2a{bottom:1014.720000pt;}
.y323{bottom:1016.960000pt;}
.y333{bottom:1017.280000pt;}
.y29{bottom:1061.760000pt;}
.h1b{height:16.786667pt;}
.h23{height:16.800000pt;}
.h26{height:16.818667pt;}
.h1e{height:16.820000pt;}
.h1d{height:16.946667pt;}
.h1f{height:16.960000pt;}
.h25{height:16.978667pt;}
.h24{height:16.986667pt;}
.h16{height:25.266667pt;}
.h17{height:25.426667pt;}
.h1a{height:31.986667pt;}
.h22{height:32.000000pt;}
.h12{height:32.160000pt;}
.h28{height:33.375000pt;}
.h8{height:35.186667pt;}
.h11{height:38.715000pt;}
.h13{height:40.640000pt;}
.h15{height:43.031250pt;}
.h1c{height:43.925000pt;}
.h9{height:44.722500pt;}
.h7{height:50.062500pt;}
.ha{height:51.986667pt;}
.hf{height:52.785000pt;}
.h20{height:57.695000pt;}
.h27{height:57.801667pt;}
.h6{height:58.563750pt;}
.he{height:61.306667pt;}
.h3{height:61.410000pt;}
.h4{height:65.595000pt;}
.h5{height:65.755000pt;}
.h19{height:65.906667pt;}
.h21{height:66.080000pt;}
.hc{height:66.400000pt;}
.h18{height:66.750000pt;}
.h10{height:74.880000pt;}
.h2{height:88.777500pt;}
.h14{height:91.546667pt;}
.hb{height:92.500000pt;}
.hd{height:96.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:27.200000pt;}
.w1a{width:50.226667pt;}
.w19{width:50.230667pt;}
.w1c{width:50.240000pt;}
.w1b{width:50.258667pt;}
.w13{width:50.270667pt;}
.w1f{width:50.386667pt;}
.w1d{width:50.400000pt;}
.w20{width:50.418667pt;}
.w1e{width:50.432000pt;}
.w2f{width:50.870667pt;}
.w2d{width:51.026667pt;}
.w27{width:51.030667pt;}
.w26{width:51.186667pt;}
.w21{width:51.190667pt;}
.w28{width:51.506667pt;}
.w30{width:51.538667pt;}
.w2c{width:51.666667pt;}
.w2a{width:51.680000pt;}
.w29{width:51.698667pt;}
.w2b{width:51.712000pt;}
.w22{width:51.986667pt;}
.w24{width:52.000000pt;}
.w23{width:52.018667pt;}
.w25{width:52.032000pt;}
.wf{width:55.040000pt;}
.w9{width:56.480000pt;}
.w10{width:60.192000pt;}
.wb{width:62.066667pt;}
.w12{width:64.786667pt;}
.wc{width:71.858667pt;}
.w4{width:72.992000pt;}
.w7{width:80.790667pt;}
.wd{width:85.906667pt;}
.w8{width:92.978667pt;}
.w15{width:102.418667pt;}
.w14{width:102.550667pt;}
.w2e{width:102.578667pt;}
.w17{width:102.706667pt;}
.w18{width:102.738667pt;}
.w16{width:102.752000pt;}
.w6{width:113.298667pt;}
.w5{width:114.546667pt;}
.w2{width:116.150667pt;}
.wa{width:117.312000pt;}
.w3{width:158.093333pt;}
.w11{width:166.586667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.230667pt;}
.x1d{left:8.306667pt;}
.x3c{left:12.306667pt;}
.x55{left:13.430667pt;}
.x3d{left:16.306667pt;}
.x18{left:19.040000pt;}
.x3a{left:20.466667pt;}
.x16{left:23.506667pt;}
.x3f{left:24.466667pt;}
.x1a{left:27.026667pt;}
.x3b{left:29.280000pt;}
.x1b{left:32.146667pt;}
.x48{left:33.905333pt;}
.x4a{left:38.426667pt;}
.x38{left:39.840000pt;}
.x14{left:42.385333pt;}
.x3e{left:44.320000pt;}
.x47{left:67.201333pt;}
.x13{left:107.241333pt;}
.xc{left:113.472000pt;}
.x10{left:115.072000pt;}
.x24{left:116.672000pt;}
.x5c{left:118.272000pt;}
.x2{left:119.552000pt;}
.x40{left:120.672000pt;}
.x44{left:122.112000pt;}
.x34{left:123.072000pt;}
.x65{left:124.992000pt;}
.x33{left:126.752000pt;}
.xd{left:128.192000pt;}
.x31{left:129.952000pt;}
.x22{left:131.232000pt;}
.x35{left:132.672000pt;}
.x43{left:135.546667pt;}
.x20{left:138.266667pt;}
.x32{left:140.346667pt;}
.x46{left:141.946667pt;}
.x21{left:143.066667pt;}
.x42{left:147.226667pt;}
.xa{left:150.266667pt;}
.x3{left:160.346667pt;}
.x27{left:161.466667pt;}
.x12{left:166.426667pt;}
.x69{left:169.146667pt;}
.x1f{left:170.746667pt;}
.x4f{left:171.720000pt;}
.x5b{left:179.706667pt;}
.x26{left:185.466667pt;}
.x29{left:190.120000pt;}
.x36{left:191.866667pt;}
.x23{left:201.786667pt;}
.x9{left:207.226667pt;}
.x6{left:211.226667pt;}
.x56{left:223.080000pt;}
.x49{left:224.040000pt;}
.x15{left:225.480000pt;}
.x61{left:243.386667pt;}
.x45{left:246.426667pt;}
.x30{left:255.266667pt;}
.x8{left:260.546667pt;}
.x5a{left:266.946667pt;}
.x59{left:270.306667pt;}
.x50{left:276.226667pt;}
.x58{left:278.786667pt;}
.x5{left:280.706667pt;}
.x2a{left:285.186667pt;}
.x41{left:287.746667pt;}
.x7{left:295.426667pt;}
.x37{left:306.146667pt;}
.x2e{left:314.466667pt;}
.x11{left:317.826667pt;}
.x4b{left:328.546667pt;}
.xb{left:331.586667pt;}
.x2b{left:343.586667pt;}
.x25{left:346.466667pt;}
.x51{left:380.866667pt;}
.x17{left:384.386667pt;}
.x4{left:396.866667pt;}
.x2f{left:400.706667pt;}
.x5d{left:420.573333pt;}
.x60{left:421.853333pt;}
.x68{left:424.733333pt;}
.x6a{left:426.653333pt;}
.x63{left:428.093333pt;}
.x62{left:430.173333pt;}
.x5e{left:431.453333pt;}
.x4c{left:433.226667pt;}
.x39{left:448.106667pt;}
.x19{left:458.186667pt;}
.x2c{left:462.826667pt;}
.x67{left:467.133333pt;}
.x64{left:475.613333pt;}
.x66{left:478.493333pt;}
.x52{left:485.546667pt;}
.x5f{left:486.813333pt;}
.xf{left:526.973333pt;}
.x4d{left:537.866667pt;}
.x1c{left:573.386667pt;}
.x53{left:590.213333pt;}
.x2d{left:600.773333pt;}
.x4e{left:642.533333pt;}
.x1{left:660.933333pt;}
.x28{left:664.133333pt;}
.xe{left:672.293333pt;}
.x6b{left:680.453333pt;}
.x57{left:694.053333pt;}
.x54{left:695.013333pt;}
}




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