
    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_bed8c75fd18bc4764fb9828f.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_f8dd8beb1c09534504cdbeae.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_1b4ff0f8361e60fda6d1cfe8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.034180;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_f88fbd56fabc1417776ed684.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0be270fec491854e6d8e7e03.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_0bbba14b0e550c3e35683d8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1b73e67d5e6796b7afa9e61f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_82d7b831f9d97fe302f822c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_35f5e9f660ca46ce1404e48c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_73f7e7e596a3fc3e31f59e7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8337fd1a0f42b7885c464529.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d75e3554eaa5b496d87d2cc6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.147461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_905bab7e47405a0106ff6773.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0137aea4d4e816ccfe174da4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.995117;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-1.026000px;}
.ls9{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.152400px;}
.ls14{letter-spacing:0.256200px;}
.ls16{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.305280px;}
.ls11{letter-spacing:0.305400px;}
.ls17{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.025280px;}
.ls1b{letter-spacing:1.745280px;}
.lsd{letter-spacing:3.185280px;}
.ls7{letter-spacing:59.345280px;}
.ls3{letter-spacing:62.945280px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws12{word-spacing:-18.720120px;}
.ws8{word-spacing:-18.676920px;}
.wsb{word-spacing:-18.567120px;}
.ws4{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.ws2{word-spacing:-18.262320px;}
.ws5{word-spacing:-18.109320px;}
.ws13{word-spacing:-17.586720px;}
.wsf{word-spacing:-16.973280px;}
.wse{word-spacing:-16.873080px;}
.ws9{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.506480px;}
.wsc{word-spacing:-15.226440px;}
.ws6{word-spacing:-11.609280px;}
.ws10{word-spacing:-11.519880px;}
.ws11{word-spacing:-11.430480px;}
.ws7{word-spacing:-10.791360px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-5.760720px;}
._5{margin-left:-4.545600px;}
._1{margin-left:-2.872800px;}
._2{margin-left:-1.244880px;}
._0{width:1.819440px;}
._3{width:2.896320px;}
._4{width:3.953040px;}
._6{width:5.829120px;}
._9{width:6.941520px;}
._7{width:8.412480px;}
._b{width:10.134720px;}
._a{width:11.909520px;}
._15{width:13.711680px;}
._1a{width:15.320160px;}
._14{width:16.361280px;}
._16{width:17.388000px;}
._8{width:19.540800px;}
._17{width:20.890800px;}
._12{width:22.548960px;}
._10{width:23.832720px;}
._f{width:24.892560px;}
._18{width:26.244720px;}
._19{width:27.854400px;}
._1f{width:28.896720px;}
._11{width:29.990640px;}
._d{width:31.002720px;}
._13{width:32.457600px;}
._20{width:33.503760px;}
._c{width:34.559520px;}
._e{width:36.034560px;}
._25{width:37.928160px;}
._22{width:39.346560px;}
._26{width:40.632480px;}
._1c{width:46.393200px;}
._1b{width:47.626560px;}
._23{width:49.282560px;}
._24{width:50.328720px;}
._21{width:51.914880px;}
._1d{width:55.514880px;}
._1e{width:63.927360px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(79,129,189);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1d5{bottom:3.240000px;}
.y1d3{bottom:11.880000px;}
.y1e5{bottom:12.240000px;}
.y130{bottom:15.480000px;}
.y12e{bottom:15.660000px;}
.y1d4{bottom:20.340000px;}
.y1d8{bottom:20.520000px;}
.y1ee{bottom:20.550000px;}
.y1e7{bottom:20.880000px;}
.y89{bottom:22.140000px;}
.y85{bottom:22.320000px;}
.y8d{bottom:22.365000px;}
.ybe{bottom:23.400000px;}
.yc4{bottom:23.445000px;}
.y19f{bottom:23.754000px;}
.y19a{bottom:23.760000px;}
.y1a1{bottom:23.790000px;}
.y19d{bottom:23.940000px;}
.y91{bottom:24.480000px;}
.y8f{bottom:24.660000px;}
.y97{bottom:24.690000px;}
.y281{bottom:24.705000px;}
.y285{bottom:24.840000px;}
.y2a2{bottom:24.870000px;}
.y290{bottom:24.885000px;}
.y1e4{bottom:29.520000px;}
.yf3{bottom:30.600000px;}
.y1ed{bottom:37.650000px;}
.y1d7{bottom:37.800000px;}
.y1e6{bottom:37.980000px;}
.y1e3{bottom:46.620000px;}
.y139{bottom:47.520000px;}
.y28b{bottom:53.280000px;}
.y291{bottom:53.325000px;}
.y28a{bottom:53.460000px;}
.y28f{bottom:53.505000px;}
.yc1{bottom:60.300000px;}
.ycc{bottom:60.330000px;}
.yc2{bottom:61.380000px;}
.yce{bottom:61.410000px;}
.yf2{bottom:64.476000px;}
.y138{bottom:79.560000px;}
.yc8{bottom:98.280000px;}
.ycb{bottom:98.310000px;}
.yc9{bottom:99.360000px;}
.ycd{bottom:99.390000px;}
.y141{bottom:99.900000px;}
.y295{bottom:111.276000px;}
.y137{bottom:111.780000px;}
.y128{bottom:113.076000px;}
.y187{bottom:113.616000px;}
.y216{bottom:117.576000px;}
.y140{bottom:118.800000px;}
.yd8{bottom:118.836000px;}
.y83{bottom:119.016000px;}
.ya3{bottom:122.976000px;}
.y266{bottom:124.236000px;}
.y15c{bottom:126.576000px;}
.y1d1{bottom:128.016000px;}
.y14a{bottom:128.916000px;}
.y68{bottom:129.276000px;}
.y10e{bottom:129.816000px;}
.ybc{bottom:131.256000px;}
.y4f{bottom:132.336000px;}
.y22d{bottom:133.776000px;}
.y15{bottom:134.136000px;}
.yf1{bottom:134.316000px;}
.y34{bottom:135.216000px;}
.y221{bottom:135.576000px;}
.y1be{bottom:136.836000px;}
.y1fa{bottom:138.276000px;}
.y174{bottom:140.076000px;}
.y127{bottom:141.876000px;}
.y19e{bottom:142.056000px;}
.y136{bottom:143.820000px;}
.y215{bottom:146.196000px;}
.y27d{bottom:148.536000px;}
.y24a{bottom:148.896000px;}
.y205{bottom:150.690000px;}
.y13f{bottom:151.020000px;}
.y186{bottom:152.490000px;}
.y265{bottom:152.850000px;}
.y1d0{bottom:156.810000px;}
.y149{bottom:157.350000px;}
.y10d{bottom:158.250000px;}
.yd7{bottom:159.150000px;}
.y82{bottom:159.510000px;}
.y135{bottom:162.720000px;}
.yf0{bottom:162.750000px;}
.ya2{bottom:163.470000px;}
.y1f9{bottom:166.710000px;}
.y15b{bottom:167.070000px;}
.y173{bottom:168.510000px;}
.y67{bottom:169.770000px;}
.y13e{bottom:169.920000px;}
.y126{bottom:170.310000px;}
.y22c{bottom:171.570000px;}
.ybb{bottom:171.750000px;}
.y4e{bottom:172.830000px;}
.y1bd{bottom:174.630000px;}
.y33{bottom:175.530000px;}
.y249{bottom:177.330000px;}
.y1e9{bottom:178.050000px;}
.y220{bottom:178.590000px;}
.y204{bottom:179.130000px;}
.y14{bottom:179.670000px;}
.y19c{bottom:180.570000px;}
.y185{bottom:181.110000px;}
.y264{bottom:181.290000px;}
.y1cf{bottom:186.330000px;}
.y214{bottom:186.510000px;}
.y10c{bottom:186.690000px;}
.y13d{bottom:188.820000px;}
.y27c{bottom:189.030000px;}
.yef{bottom:191.190000px;}
.y294{bottom:193.710000px;}
.y134{bottom:194.940000px;}
.y1f8{bottom:195.150000px;}
.y1e8{bottom:195.330000px;}
.y172{bottom:196.950000px;}
.y148{bottom:197.490000px;}
.y125{bottom:198.750000px;}
.yd6{bottom:199.650000px;}
.y81{bottom:199.830000px;}
.ya1{bottom:203.970000px;}
.y248{bottom:205.770000px;}
.y15a{bottom:207.390000px;}
.y184{bottom:209.550000px;}
.y263{bottom:209.730000px;}
.y66{bottom:210.270000px;}
.yba{bottom:212.250000px;}
.y1bc{bottom:212.610000px;}
.y4d{bottom:213.330000px;}
.y10b{bottom:215.130000px;}
.y1ce{bottom:215.310000px;}
.y32{bottom:216.030000px;}
.y19b{bottom:219.270000px;}
.y203{bottom:219.450000px;}
.y13c{bottom:221.070000px;}
.y21f{bottom:221.790000px;}
.y1f7{bottom:223.770000px;}
.y13{bottom:225.210000px;}
.y171{bottom:225.390000px;}
.y147{bottom:226.290000px;}
.y133{bottom:227.010000px;}
.y124{bottom:227.190000px;}
.y27b{bottom:229.530000px;}
.yee{bottom:231.510000px;}
.y247{bottom:234.210000px;}
.y293{bottom:234.930000px;}
.y262{bottom:238.170000px;}
.y13b{bottom:239.970000px;}
.yd5{bottom:240.150000px;}
.y80{bottom:240.330000px;}
.y10a{bottom:243.570000px;}
.ya0{bottom:244.290000px;}
.y1cd{bottom:244.830000px;}
.y22b{bottom:247.350000px;}
.y159{bottom:247.890000px;}
.y202{bottom:248.070000px;}
.y183{bottom:249.870000px;}
.y65{bottom:250.590000px;}
.y1bb{bottom:251.310000px;}
.y1f6{bottom:252.210000px;}
.yb9{bottom:252.750000px;}
.y4c{bottom:253.830000px;}
.y146{bottom:254.730000px;}
.y31{bottom:256.530000px;}
.y199{bottom:257.970000px;}
.y13a{bottom:258.870000px;}
.y132{bottom:259.050000px;}
.yed{bottom:260.130000px;}
.y246{bottom:262.650000px;}
.y21e{bottom:264.810000px;}
.y170{bottom:265.710000px;}
.y261{bottom:266.610000px;}
.y123{bottom:267.510000px;}
.y27a{bottom:270.030000px;}
.y12{bottom:270.930000px;}
.y213{bottom:272.010000px;}
.y1cc{bottom:273.270000px;}
.y292{bottom:276.150000px;}
.y158{bottom:276.510000px;}
.y1ba{bottom:279.930000px;}
.yd4{bottom:280.650000px;}
.y7f{bottom:280.830000px;}
.y145{bottom:283.170000px;}
.y109{bottom:283.890000px;}
.y9f{bottom:284.790000px;}
.y22a{bottom:285.330000px;}
.yec{bottom:288.570000px;}
.y64{bottom:291.090000px;}
.y182{bottom:291.630000px;}
.yb8{bottom:293.070000px;}
.y4b{bottom:294.150000px;}
.y16f{bottom:294.330000px;}
.y260{bottom:295.230000px;}
.y122{bottom:296.130000px;}
.y30{bottom:297.030000px;}
.y2a8{bottom:299.730000px;}
.y9e{bottom:300.450000px;}
.y212{bottom:300.630000px;}
.y1cb{bottom:301.710000px;}
.y201{bottom:304.950000px;}
.y21d{bottom:307.830000px;}
.y1b9{bottom:308.550000px;}
.y1f5{bottom:309.090000px;}
.y279{bottom:310.530000px;}
.y144{bottom:311.610000px;}
.y108{bottom:312.510000px;}
.y11{bottom:316.470000px;}
.y157{bottom:316.830000px;}
.yeb{bottom:317.010000px;}
.y28e{bottom:317.370000px;}
.y245{bottom:319.530000px;}
.yd3{bottom:320.970000px;}
.y7e{bottom:321.330000px;}
.y229{bottom:323.130000px;}
.y25f{bottom:323.670000px;}
.y121{bottom:324.570000px;}
.y1b8{bottom:327.270000px;}
.y211{bottom:329.115000px;}
.y1ca{bottom:330.195000px;}
.y63{bottom:331.635000px;}
.y181{bottom:333.255000px;}
.yb7{bottom:333.615000px;}
.y4a{bottom:334.695000px;}
.y2f{bottom:337.395000px;}
.y1f4{bottom:337.575000px;}
.y143{bottom:340.095000px;}
.y9d{bottom:340.815000px;}
.y107{bottom:340.995000px;}
.y1b7{bottom:344.415000px;}
.y200{bottom:345.315000px;}
.y156{bottom:345.495000px;}
.y244{bottom:348.195000px;}
.y198{bottom:349.995000px;}
.y21c{bottom:350.895000px;}
.y25e{bottom:352.155000px;}
.y120{bottom:353.055000px;}
.yea{bottom:357.375000px;}
.y210{bottom:357.555000px;}
.y1c9{bottom:358.635000px;}
.y228{bottom:360.975000px;}
.yd2{bottom:361.515000px;}
.y1b6{bottom:361.695000px;}
.y7d{bottom:361.875000px;}
.y180{bottom:362.055000px;}
.y106{bottom:369.435000px;}
.y62{bottom:372.135000px;}
.y155{bottom:373.935000px;}
.yb6{bottom:374.115000px;}
.y49{bottom:375.195000px;}
.y1b5{bottom:376.455000px;}
.y243{bottom:376.635000px;}
.y1c8{bottom:377.355000px;}
.y2e{bottom:377.895000px;}
.y197{bottom:378.435000px;}
.y9c{bottom:378.795000px;}
.y10{bottom:379.155000px;}
.y142{bottom:379.335000px;}
.y25d{bottom:380.595000px;}
.y11f{bottom:381.495000px;}
.ye9{bottom:385.995000px;}
.y28d{bottom:387.075000px;}
.y17f{bottom:390.495000px;}
.y278{bottom:391.395000px;}
.y21b{bottom:393.915000px;}
.y131{bottom:394.275000px;}
.y1c7{bottom:394.635000px;}
.y105{bottom:398.055000px;}
.y227{bottom:398.955000px;}
.yd1{bottom:402.015000px;}
.y7c{bottom:402.195000px;}
.y1ff{bottom:402.375000px;}
.y242{bottom:405.075000px;}
.y1f3{bottom:406.515000px;}
.y25c{bottom:409.035000px;}
.y1c6{bottom:411.915000px;}
.y61{bottom:412.635000px;}
.y154{bottom:414.255000px;}
.ye8{bottom:414.435000px;}
.yb5{bottom:414.615000px;}
.y1b4{bottom:415.155000px;}
.y48{bottom:415.695000px;}
.y9b{bottom:416.775000px;}
.y2d{bottom:418.395000px;}
.y196{bottom:418.755000px;}
.y17e{bottom:418.935000px;}
.y2a7{bottom:421.095000px;}
.y11e{bottom:421.815000px;}
.y20f{bottom:426.315000px;}
.y28c{bottom:428.295000px;}
.y25b{bottom:429.375000px;}
.y277{bottom:431.895000px;}
.y241{bottom:433.515000px;}
.y1f2{bottom:434.955000px;}
.y1c5{bottom:435.495000px;}
.y226{bottom:436.755000px;}
.y21a{bottom:436.935000px;}
.y104{bottom:438.195000px;}
.yf{bottom:442.515000px;}
.y7b{bottom:442.695000px;}
.ye7{bottom:442.875000px;}
.y16e{bottom:444.315000px;}
.y11d{bottom:450.435000px;}
.y60{bottom:452.955000px;}
.y1b3{bottom:453.675000px;}
.y9a{bottom:454.575000px;}
.y20e{bottom:454.935000px;}
.yb4{bottom:455.115000px;}
.y47{bottom:456.015000px;}
.y25a{bottom:457.995000px;}
.y2c{bottom:458.895000px;}
.y17d{bottom:459.255000px;}
.y2a6{bottom:460.515000px;}
.y240{bottom:461.955000px;}
.y1f1{bottom:463.395000px;}
.y103{bottom:466.815000px;}
.ye6{bottom:471.315000px;}
.y276{bottom:472.395000px;}
.y225{bottom:475.635000px;}
.y219{bottom:478.695000px;}
.y11c{bottom:478.875000px;}
.yd0{bottom:483.015000px;}
.y7a{bottom:483.195000px;}
.y20d{bottom:483.375000px;}
.y16d{bottom:484.635000px;}
.y259{bottom:486.435000px;}
.y17c{bottom:487.875000px;}
.y23f{bottom:490.395000px;}
.y2b{bottom:491.475000px;}
.y1f0{bottom:491.835000px;}
.y1b2{bottom:492.375000px;}
.y99{bottom:492.555000px;}
.y5f{bottom:493.455000px;}
.yb3{bottom:495.435000px;}
.y46{bottom:496.515000px;}
.y289{bottom:497.955000px;}
.y2a5{bottom:498.495000px;}
.ye5{bottom:499.755000px;}
.ye{bottom:505.875000px;}
.y11b{bottom:507.315000px;}
.y20c{bottom:511.815000px;}
.y275{bottom:512.715000px;}
.y258{bottom:514.875000px;}
.y224{bottom:516.135000px;}
.y17b{bottom:516.315000px;}
.y23e{bottom:518.835000px;}
.y1ef{bottom:519.195000px;}
.ycf{bottom:523.335000px;}
.y79{bottom:523.695000px;}
.y102{bottom:523.875000px;}
.y2a{bottom:524.055000px;}
.y16c{bottom:524.955000px;}
.ye4{bottom:528.195000px;}
.y98{bottom:530.535000px;}
.y1b1{bottom:531.075000px;}
.y5e{bottom:533.955000px;}
.y11a{bottom:535.755000px;}
.yb2{bottom:535.935000px;}
.y2a4{bottom:536.295000px;}
.y45{bottom:537.015000px;}
.yca{bottom:538.995000px;}
.y153{bottom:540.075000px;}
.y20b{bottom:540.255000px;}
.y257{bottom:543.315000px;}
.y195{bottom:544.755000px;}
.y23d{bottom:547.275000px;}
.y2a3{bottom:551.055000px;}
.y78{bottom:552.315000px;}
.y274{bottom:553.215000px;}
.y16b{bottom:553.575000px;}
.y29{bottom:556.455000px;}
.y17a{bottom:556.635000px;}
.y218{bottom:564.195000px;}
.y288{bottom:567.615000px;}
.ye3{bottom:568.515000px;}
.y152{bottom:568.695000px;}
.y1b0{bottom:569.595000px;}
.y96{bottom:570.855000px;}
.y256{bottom:571.755000px;}
.y194{bottom:573.195000px;}
.y5d{bottom:574.455000px;}
.y23c{bottom:575.715000px;}
.y119{bottom:576.075000px;}
.yb1{bottom:576.435000px;}
.y44{bottom:577.515000px;}
.y20a{bottom:580.575000px;}
.y101{bottom:580.755000px;}
.y16a{bottom:582.195000px;}
.y179{bottom:585.255000px;}
.y1ec{bottom:586.515000px;}
.y28{bottom:588.855000px;}
.yd{bottom:590.295000px;}
.y2a1{bottom:592.275000px;}
.y77{bottom:592.635000px;}
.y217{bottom:592.815000px;}
.y273{bottom:593.715000px;}
.y223{bottom:596.985000px;}
.ye2{bottom:597.165000px;}
.y255{bottom:600.225000px;}
.y23b{bottom:604.365000px;}
.y118{bottom:604.725000px;}
.y1af{bottom:608.325000px;}
.y287{bottom:608.865000px;}
.y209{bottom:609.225000px;}
.y169{bottom:610.665000px;}
.y95{bottom:611.205000px;}
.y193{bottom:613.545000px;}
.y178{bottom:613.725000px;}
.y5c{bottom:614.805000px;}
.yb0{bottom:616.965000px;}
.y43{bottom:618.045000px;}
.y100{bottom:621.105000px;}
.y27{bottom:621.465000px;}
.ye1{bottom:625.605000px;}
.y254{bottom:628.845000px;}
.y23a{bottom:632.805000px;}
.y76{bottom:632.985000px;}
.y117{bottom:633.165000px;}
.y2a0{bottom:633.525000px;}
.y272{bottom:634.245000px;}
.yc{bottom:635.865000px;}
.y151{bottom:637.485000px;}
.y208{bottom:637.665000px;}
.y1eb{bottom:638.925000px;}
.y177{bottom:642.165000px;}
.y1ae{bottom:646.845000px;}
.yff{bottom:649.725000px;}
.y286{bottom:650.085000px;}
.y168{bottom:650.805000px;}
.y94{bottom:651.345000px;}
.y26{bottom:653.865000px;}
.yc7{bottom:654.045000px;}
.ye0{bottom:654.225000px;}
.y5b{bottom:655.305000px;}
.yaf{bottom:657.285000px;}
.y42{bottom:658.365000px;}
.y239{bottom:661.245000px;}
.y116{bottom:661.605000px;}
.y150{bottom:666.105000px;}
.y12f{bottom:670.605000px;}
.y75{bottom:673.485000px;}
.y271{bottom:673.665000px;}
.y29f{bottom:674.745000px;}
.yfe{bottom:678.165000px;}
.yb{bottom:681.585000px;}
.y192{bottom:682.485000px;}
.ydf{bottom:682.665000px;}
.y253{bottom:685.725000px;}
.y25{bottom:686.445000px;}
.y93{bottom:689.325000px;}
.y238{bottom:689.685000px;}
.y115{bottom:690.225000px;}
.y167{bottom:691.305000px;}
.y1ea{bottom:691.485000px;}
.y222{bottom:694.365000px;}
.y1fe{bottom:694.545000px;}
.y5a{bottom:695.805000px;}
.yae{bottom:697.785000px;}
.y41{bottom:698.865000px;}
.y176{bottom:699.045000px;}
.y74{bottom:702.105000px;}
.y12d{bottom:702.285000px;}
.y14f{bottom:706.425000px;}
.y1ad{bottom:710.385000px;}
.y270{bottom:711.645000px;}
.y252{bottom:714.165000px;}
.y29e{bottom:715.965000px;}
.y237{bottom:718.125000px;}
.yfd{bottom:718.485000px;}
.y114{bottom:718.665000px;}
.y24{bottom:718.845000px;}
.yde{bottom:722.805000px;}
.y191{bottom:722.985000px;}
.ya{bottom:727.125000px;}
.y92{bottom:729.645000px;}
.y73{bottom:730.545000px;}
.y166{bottom:731.805000px;}
.y284{bottom:732.525000px;}
.y14e{bottom:735.045000px;}
.y59{bottom:736.305000px;}
.y1ac{bottom:739.005000px;}
.y40{bottom:739.365000px;}
.y251{bottom:742.605000px;}
.y1e2{bottom:744.045000px;}
.y236{bottom:746.565000px;}
.yfc{bottom:747.105000px;}
.yad{bottom:747.825000px;}
.y26f{bottom:750.345000px;}
.y23{bottom:751.425000px;}
.ydd{bottom:751.605000px;}
.y29d{bottom:757.185000px;}
.y12c{bottom:758.805000px;}
.y72{bottom:758.985000px;}
.y165{bottom:760.425000px;}
.y1c4{bottom:761.865000px;}
.y190{bottom:763.305000px;}
.y14d{bottom:763.485000px;}
.yc6{bottom:769.065000px;}
.y90{bottom:769.965000px;}
.y250{bottom:771.045000px;}
.y9{bottom:772.665000px;}
.y283{bottom:773.745000px;}
.y235{bottom:775.005000px;}
.yfb{bottom:775.545000px;}
.y58{bottom:776.805000px;}
.y26e{bottom:778.965000px;}
.y1e1{bottom:779.325000px;}
.y3f{bottom:779.865000px;}
.ydc{bottom:780.045000px;}
.y1ab{bottom:780.405000px;}
.y22{bottom:783.825000px;}
.yac{bottom:786.885000px;}
.y113{bottom:787.425000px;}
.y71{bottom:787.605000px;}
.y1c3{bottom:790.485000px;}
.y1fd{bottom:791.745000px;}
.y207{bottom:791.925000px;}
.y24f{bottom:799.485000px;}
.y164{bottom:800.745000px;}
.y234{bottom:803.445000px;}
.y14c{bottom:803.805000px;}
.yfa{bottom:803.985000px;}
.y18f{bottom:804.885000px;}
.yc5{bottom:806.865000px;}
.y26d{bottom:807.585000px;}
.y1aa{bottom:809.025000px;}
.y1c2{bottom:809.205000px;}
.y8e{bottom:810.105000px;}
.y282{bottom:814.965000px;}
.y70{bottom:816.045000px;}
.y21{bottom:816.225000px;}
.y57{bottom:817.125000px;}
.y8{bottom:818.385000px;}
.y3e{bottom:820.185000px;}
.y1fc{bottom:820.365000px;}
.yab{bottom:825.945000px;}
.y1c1{bottom:826.485000px;}
.y29c{bottom:826.845000px;}
.y1e0{bottom:827.385000px;}
.y24e{bottom:827.925000px;}
.y233{bottom:831.885000px;}
.yf9{bottom:832.425000px;}
.y18e{bottom:833.505000px;}
.y26c{bottom:836.025000px;}
.y1a9{bottom:837.465000px;}
.y163{bottom:841.245000px;}
.y1c0{bottom:843.585000px;}
.y6f{bottom:844.485000px;}
.yc3{bottom:845.925000px;}
.y20{bottom:848.805000px;}
.y3d{bottom:848.985000px;}
.y8c{bottom:850.425000px;}
.y1df{bottom:856.005000px;}
.y280{bottom:856.185000px;}
.y24d{bottom:856.365000px;}
.y56{bottom:857.625000px;}
.y232{bottom:860.505000px;}
.yf8{bottom:860.865000px;}
.y18d{bottom:861.990000px;}
.y7{bottom:863.970000px;}
.y26b{bottom:864.510000px;}
.yaa{bottom:865.050000px;}
.y29b{bottom:868.110000px;}
.y6e{bottom:872.970000px;}
.ydb{bottom:877.470000px;}
.y1a8{bottom:878.910000px;}
.y231{bottom:880.710000px;}
.y1f{bottom:881.250000px;}
.y162{bottom:881.610000px;}
.y1de{bottom:884.490000px;}
.y1bf{bottom:884.850000px;}
.yc0{bottom:885.030000px;}
.y8b{bottom:888.450000px;}
.y3c{bottom:889.170000px;}
.yf7{bottom:889.350000px;}
.y18c{bottom:890.610000px;}
.y26a{bottom:892.950000px;}
.y55{bottom:898.170000px;}
.y6d{bottom:901.410000px;}
.ya9{bottom:904.110000px;}
.y175{bottom:905.910000px;}
.y1a7{bottom:907.530000px;}
.y230{bottom:909.330000px;}
.y6{bottom:909.510000px;}
.y1dd{bottom:912.930000px;}
.y24c{bottom:913.470000px;}
.y1e{bottom:913.830000px;}
.yda{bottom:917.610000px;}
.y3b{bottom:917.790000px;}
.y269{bottom:921.390000px;}
.y161{bottom:922.110000px;}
.y8a{bottom:926.430000px;}
.yf6{bottom:929.670000px;}
.y6c{bottom:929.850000px;}
.y18b{bottom:932.010000px;}
.y22f{bottom:937.770000px;}
.y54{bottom:938.670000px;}
.y1dc{bottom:941.370000px;}
.y12b{bottom:941.730000px;}
.y24b{bottom:941.910000px;}
.ya8{bottom:943.170000px;}
.y1d{bottom:946.230000px;}
.y3a{bottom:946.410000px;}
.y1a6{bottom:947.850000px;}
.y268{bottom:949.830000px;}
.y29a{bottom:950.550000px;}
.y27f{bottom:950.730000px;}
.y5{bottom:955.050000px;}
.y22e{bottom:958.110000px;}
.y6b{bottom:958.290000px;}
.y18a{bottom:960.630000px;}
.ybf{bottom:962.070000px;}
.y160{bottom:962.610000px;}
.y88{bottom:964.410000px;}
.y1db{bottom:969.810000px;}
.y267{bottom:970.170000px;}
.y12a{bottom:970.350000px;}
.y39{bottom:974.850000px;}
.y1c{bottom:978.630000px;}
.y53{bottom:978.990000px;}
.y27e{bottom:979.170000px;}
.ya7{bottom:982.230000px;}
.y206{bottom:986.550000px;}
.y6a{bottom:986.730000px;}
.y1a5{bottom:987.270000px;}
.y189{bottom:989.070000px;}
.y15f{bottom:991.230000px;}
.y299{bottom:991.770000px;}
.y1da{bottom:998.250000px;}
.y112{bottom:998.610000px;}
.y129{bottom:998.790000px;}
.y4{bottom:1000.770000px;}
.ybd{bottom:1001.130000px;}
.y1a4{bottom:1002.030000px;}
.y87{bottom:1002.210000px;}
.yd9{bottom:1003.290000px;}
.y1b{bottom:1011.210000px;}
.y38{bottom:1014.990000px;}
.y69{bottom:1015.170000px;}
.y52{bottom:1019.490000px;}
.ya6{bottom:1021.290000px;}
.y1d9{bottom:1025.610000px;}
.y14b{bottom:1027.050000px;}
.y111{bottom:1027.230000px;}
.y188{bottom:1030.470000px;}
.y15e{bottom:1031.550000px;}
.y298{bottom:1032.990000px;}
.y86{bottom:1040.190000px;}
.y1d6{bottom:1040.370000px;}
.y1a3{bottom:1040.730000px;}
.y1a{bottom:1043.610000px;}
.y37{bottom:1043.790000px;}
.y3{bottom:1046.310000px;}
.y110{bottom:1055.670000px;}
.y51{bottom:1059.990000px;}
.ya5{bottom:1060.350000px;}
.y15d{bottom:1072.050000px;}
.y36{bottom:1072.230000px;}
.y297{bottom:1074.210000px;}
.y19{bottom:1076.190000px;}
.y84{bottom:1078.170000px;}
.y1a2{bottom:1079.250000px;}
.yf5{bottom:1083.930000px;}
.y10f{bottom:1084.110000px;}
.y2{bottom:1091.850000px;}
.y1d2{bottom:1092.930000px;}
.ya4{bottom:1099.410000px;}
.y50{bottom:1100.490000px;}
.y35{bottom:1100.670000px;}
.y18{bottom:1108.590000px;}
.y1fb{bottom:1112.370000px;}
.yf4{bottom:1112.550000px;}
.y296{bottom:1115.430000px;}
.y1a0{bottom:1117.950000px;}
.y1{bottom:1137.060000px;}
.y16{bottom:1141.020000px;}
.y17{bottom:1141.200000px;}
.h16{height:30.960000px;}
.h15{height:31.140000px;}
.h1a{height:34.380000px;}
.hb{height:37.800000px;}
.h19{height:37.836000px;}
.ha{height:37.980000px;}
.hc{height:38.016000px;}
.h10{height:39.060000px;}
.h12{height:39.096000px;}
.he{height:40.140000px;}
.hd{height:40.320000px;}
.hf{height:40.356000px;}
.h21{height:40.500000px;}
.h22{height:40.536000px;}
.h1b{height:51.660000px;}
.h1f{height:51.696000px;}
.h1e{height:51.840000px;}
.h20{height:62.067656px;}
.h18{height:62.327813px;}
.h5{height:65.884219px;}
.h23{height:68.940000px;}
.h24{height:68.976000px;}
.h8{height:69.086250px;}
.h1c{height:69.660000px;}
.h9{height:75.093750px;}
.h11{height:77.040000px;}
.h2{height:87.859687px;}
.h3{height:99.874688px;}
.h13{height:115.020000px;}
.h14{height:115.056000px;}
.h4{height:182.039062px;}
.h1d{height:209.370000px;}
.h17{height:275.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h7{height:1263.750000px;}
.h6{height:1264.061730px;}
.w21{width:24.660000px;}
.w22{width:24.696000px;}
.we{width:46.296000px;}
.w17{width:52.560000px;}
.w1d{width:60.480000px;}
.w19{width:60.840000px;}
.w12{width:62.280000px;}
.w11{width:63.000000px;}
.w10{width:66.816000px;}
.w16{width:73.620000px;}
.w1c{width:81.720000px;}
.w15{width:84.276000px;}
.w6{width:95.220000px;}
.wf{width:97.380000px;}
.w1f{width:105.480000px;}
.w1e{width:105.696000px;}
.w1b{width:105.840000px;}
.w1a{width:106.416000px;}
.wd{width:126.720000px;}
.w13{width:135.756000px;}
.wb{width:140.760000px;}
.w18{width:166.710000px;}
.wc{width:198.750000px;}
.w14{width:273.090000px;}
.wa{width:301.035000px;}
.w9{width:323.355000px;}
.w8{width:323.490000px;}
.w20{width:507.495000px;}
.w5{width:541.905000px;}
.w7{width:647.565000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:896.250000px;}
.w3{width:896.400060px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x41{left:11.160000px;}
.x2d{left:12.780000px;}
.x44{left:15.480000px;}
.x2f{left:16.770000px;}
.x36{left:18.360000px;}
.x3d{left:20.160000px;}
.x39{left:21.810000px;}
.x3b{left:23.220000px;}
.x32{left:24.480000px;}
.x3a{left:25.920000px;}
.x34{left:28.800000px;}
.x31{left:29.880000px;}
.x23{left:32.760000px;}
.x43{left:33.840000px;}
.x11{left:35.094000px;}
.x45{left:36.360000px;}
.x46{left:38.700000px;}
.x47{left:42.300000px;}
.x14{left:45.000000px;}
.x38{left:48.060000px;}
.x25{left:53.640000px;}
.x24{left:57.780000px;}
.x13{left:61.194000px;}
.x10{left:63.360000px;}
.x37{left:64.800000px;}
.x26{left:66.240000px;}
.x15{left:68.760000px;}
.x12{left:77.940000px;}
.xf{left:87.120000px;}
.x1a{left:93.414000px;}
.x1c{left:97.950000px;}
.x2b{left:99.354000px;}
.x21{left:116.685000px;}
.x18{left:119.916000px;}
.x1{left:127.655987px;}
.x8{left:134.675987px;}
.x2a{left:145.116000px;}
.x2{left:149.795987px;}
.x16{left:154.649987px;}
.x9{left:169.589987px;}
.x20{left:173.910000px;}
.x1d{left:181.649987px;}
.x7{left:207.029987px;}
.x1f{left:208.649987px;}
.x48{left:210.449987px;}
.x19{left:219.279000px;}
.x1e{left:234.749987px;}
.x4{left:247.169987px;}
.x5{left:277.769987px;}
.xb{left:286.454987px;}
.x42{left:287.535000px;}
.x3{left:332.354987px;}
.x2c{left:344.775000px;}
.x6{left:353.774987px;}
.x49{left:374.114987px;}
.xa{left:393.194987px;}
.x1b{left:444.135000px;}
.xc{left:446.474987px;}
.x2e{left:472.215000px;}
.x22{left:475.665000px;}
.x3c{left:478.905000px;}
.x30{left:519.225000px;}
.x3e{left:553.245000px;}
.x3f{left:606.525000px;}
.x33{left:617.325000px;}
.x4a{left:628.125000px;}
.x27{left:636.584987px;}
.x4b{left:653.505000px;}
.xe{left:669.570000px;}
.x4c{left:678.930000px;}
.x35{left:685.050000px;}
.x40{left:691.530000px;}
.x4d{left:704.490000px;}
.x28{left:721.589987px;}
.x4e{left:729.870000px;}
.x29{left:748.769987px;}
.x4f{left:755.250000px;}
.x17{left:757.229987px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.912000pt;}
.ls9{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.135467pt;}
.ls14{letter-spacing:0.227733pt;}
.ls16{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.271360pt;}
.ls11{letter-spacing:0.271467pt;}
.ls17{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.911360pt;}
.ls1b{letter-spacing:1.551360pt;}
.lsd{letter-spacing:2.831360pt;}
.ls7{letter-spacing:52.751360pt;}
.ls3{letter-spacing:55.951360pt;}
.ws3{word-spacing:-58.880000pt;}
.ws12{word-spacing:-16.640107pt;}
.ws8{word-spacing:-16.601707pt;}
.wsb{word-spacing:-16.504107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.ws2{word-spacing:-16.233173pt;}
.ws5{word-spacing:-16.097173pt;}
.ws13{word-spacing:-15.632640pt;}
.wsf{word-spacing:-15.087360pt;}
.wse{word-spacing:-14.998293pt;}
.ws9{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.672427pt;}
.wsc{word-spacing:-13.534613pt;}
.ws6{word-spacing:-10.319360pt;}
.ws10{word-spacing:-10.239893pt;}
.ws11{word-spacing:-10.160427pt;}
.ws7{word-spacing:-9.592320pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-5.120640pt;}
._5{margin-left:-4.040533pt;}
._1{margin-left:-2.553600pt;}
._2{margin-left:-1.106560pt;}
._0{width:1.617280pt;}
._3{width:2.574507pt;}
._4{width:3.513813pt;}
._6{width:5.181440pt;}
._9{width:6.170240pt;}
._7{width:7.477760pt;}
._b{width:9.008640pt;}
._a{width:10.586240pt;}
._15{width:12.188160pt;}
._1a{width:13.617920pt;}
._14{width:14.543360pt;}
._16{width:15.456000pt;}
._8{width:17.369600pt;}
._17{width:18.569600pt;}
._12{width:20.043520pt;}
._10{width:21.184640pt;}
._f{width:22.126720pt;}
._18{width:23.328640pt;}
._19{width:24.759467pt;}
._1f{width:25.685973pt;}
._11{width:26.658347pt;}
._d{width:27.557973pt;}
._13{width:28.851200pt;}
._20{width:29.781120pt;}
._c{width:30.719573pt;}
._e{width:32.030720pt;}
._25{width:33.713920pt;}
._22{width:34.974720pt;}
._26{width:36.117760pt;}
._1c{width:41.238400pt;}
._1b{width:42.334720pt;}
._23{width:43.806720pt;}
._24{width:44.736640pt;}
._21{width:46.146560pt;}
._1d{width:49.346560pt;}
._1e{width:56.824320pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1d5{bottom:2.880000pt;}
.y1d3{bottom:10.560000pt;}
.y1e5{bottom:10.880000pt;}
.y130{bottom:13.760000pt;}
.y12e{bottom:13.920000pt;}
.y1d4{bottom:18.080000pt;}
.y1d8{bottom:18.240000pt;}
.y1ee{bottom:18.266667pt;}
.y1e7{bottom:18.560000pt;}
.y89{bottom:19.680000pt;}
.y85{bottom:19.840000pt;}
.y8d{bottom:19.880000pt;}
.ybe{bottom:20.800000pt;}
.yc4{bottom:20.840000pt;}
.y19f{bottom:21.114667pt;}
.y19a{bottom:21.120000pt;}
.y1a1{bottom:21.146667pt;}
.y19d{bottom:21.280000pt;}
.y91{bottom:21.760000pt;}
.y8f{bottom:21.920000pt;}
.y97{bottom:21.946667pt;}
.y281{bottom:21.960000pt;}
.y285{bottom:22.080000pt;}
.y2a2{bottom:22.106667pt;}
.y290{bottom:22.120000pt;}
.y1e4{bottom:26.240000pt;}
.yf3{bottom:27.200000pt;}
.y1ed{bottom:33.466667pt;}
.y1d7{bottom:33.600000pt;}
.y1e6{bottom:33.760000pt;}
.y1e3{bottom:41.440000pt;}
.y139{bottom:42.240000pt;}
.y28b{bottom:47.360000pt;}
.y291{bottom:47.400000pt;}
.y28a{bottom:47.520000pt;}
.y28f{bottom:47.560000pt;}
.yc1{bottom:53.600000pt;}
.ycc{bottom:53.626667pt;}
.yc2{bottom:54.560000pt;}
.yce{bottom:54.586667pt;}
.yf2{bottom:57.312000pt;}
.y138{bottom:70.720000pt;}
.yc8{bottom:87.360000pt;}
.ycb{bottom:87.386667pt;}
.yc9{bottom:88.320000pt;}
.ycd{bottom:88.346667pt;}
.y141{bottom:88.800000pt;}
.y295{bottom:98.912000pt;}
.y137{bottom:99.360000pt;}
.y128{bottom:100.512000pt;}
.y187{bottom:100.992000pt;}
.y216{bottom:104.512000pt;}
.y140{bottom:105.600000pt;}
.yd8{bottom:105.632000pt;}
.y83{bottom:105.792000pt;}
.ya3{bottom:109.312000pt;}
.y266{bottom:110.432000pt;}
.y15c{bottom:112.512000pt;}
.y1d1{bottom:113.792000pt;}
.y14a{bottom:114.592000pt;}
.y68{bottom:114.912000pt;}
.y10e{bottom:115.392000pt;}
.ybc{bottom:116.672000pt;}
.y4f{bottom:117.632000pt;}
.y22d{bottom:118.912000pt;}
.y15{bottom:119.232000pt;}
.yf1{bottom:119.392000pt;}
.y34{bottom:120.192000pt;}
.y221{bottom:120.512000pt;}
.y1be{bottom:121.632000pt;}
.y1fa{bottom:122.912000pt;}
.y174{bottom:124.512000pt;}
.y127{bottom:126.112000pt;}
.y19e{bottom:126.272000pt;}
.y136{bottom:127.840000pt;}
.y215{bottom:129.952000pt;}
.y27d{bottom:132.032000pt;}
.y24a{bottom:132.352000pt;}
.y205{bottom:133.946667pt;}
.y13f{bottom:134.240000pt;}
.y186{bottom:135.546667pt;}
.y265{bottom:135.866667pt;}
.y1d0{bottom:139.386667pt;}
.y149{bottom:139.866667pt;}
.y10d{bottom:140.666667pt;}
.yd7{bottom:141.466667pt;}
.y82{bottom:141.786667pt;}
.y135{bottom:144.640000pt;}
.yf0{bottom:144.666667pt;}
.ya2{bottom:145.306667pt;}
.y1f9{bottom:148.186667pt;}
.y15b{bottom:148.506667pt;}
.y173{bottom:149.786667pt;}
.y67{bottom:150.906667pt;}
.y13e{bottom:151.040000pt;}
.y126{bottom:151.386667pt;}
.y22c{bottom:152.506667pt;}
.ybb{bottom:152.666667pt;}
.y4e{bottom:153.626667pt;}
.y1bd{bottom:155.226667pt;}
.y33{bottom:156.026667pt;}
.y249{bottom:157.626667pt;}
.y1e9{bottom:158.266667pt;}
.y220{bottom:158.746667pt;}
.y204{bottom:159.226667pt;}
.y14{bottom:159.706667pt;}
.y19c{bottom:160.506667pt;}
.y185{bottom:160.986667pt;}
.y264{bottom:161.146667pt;}
.y1cf{bottom:165.626667pt;}
.y214{bottom:165.786667pt;}
.y10c{bottom:165.946667pt;}
.y13d{bottom:167.840000pt;}
.y27c{bottom:168.026667pt;}
.yef{bottom:169.946667pt;}
.y294{bottom:172.186667pt;}
.y134{bottom:173.280000pt;}
.y1f8{bottom:173.466667pt;}
.y1e8{bottom:173.626667pt;}
.y172{bottom:175.066667pt;}
.y148{bottom:175.546667pt;}
.y125{bottom:176.666667pt;}
.yd6{bottom:177.466667pt;}
.y81{bottom:177.626667pt;}
.ya1{bottom:181.306667pt;}
.y248{bottom:182.906667pt;}
.y15a{bottom:184.346667pt;}
.y184{bottom:186.266667pt;}
.y263{bottom:186.426667pt;}
.y66{bottom:186.906667pt;}
.yba{bottom:188.666667pt;}
.y1bc{bottom:188.986667pt;}
.y4d{bottom:189.626667pt;}
.y10b{bottom:191.226667pt;}
.y1ce{bottom:191.386667pt;}
.y32{bottom:192.026667pt;}
.y19b{bottom:194.906667pt;}
.y203{bottom:195.066667pt;}
.y13c{bottom:196.506667pt;}
.y21f{bottom:197.146667pt;}
.y1f7{bottom:198.906667pt;}
.y13{bottom:200.186667pt;}
.y171{bottom:200.346667pt;}
.y147{bottom:201.146667pt;}
.y133{bottom:201.786667pt;}
.y124{bottom:201.946667pt;}
.y27b{bottom:204.026667pt;}
.yee{bottom:205.786667pt;}
.y247{bottom:208.186667pt;}
.y293{bottom:208.826667pt;}
.y262{bottom:211.706667pt;}
.y13b{bottom:213.306667pt;}
.yd5{bottom:213.466667pt;}
.y80{bottom:213.626667pt;}
.y10a{bottom:216.506667pt;}
.ya0{bottom:217.146667pt;}
.y1cd{bottom:217.626667pt;}
.y22b{bottom:219.866667pt;}
.y159{bottom:220.346667pt;}
.y202{bottom:220.506667pt;}
.y183{bottom:222.106667pt;}
.y65{bottom:222.746667pt;}
.y1bb{bottom:223.386667pt;}
.y1f6{bottom:224.186667pt;}
.yb9{bottom:224.666667pt;}
.y4c{bottom:225.626667pt;}
.y146{bottom:226.426667pt;}
.y31{bottom:228.026667pt;}
.y199{bottom:229.306667pt;}
.y13a{bottom:230.106667pt;}
.y132{bottom:230.266667pt;}
.yed{bottom:231.226667pt;}
.y246{bottom:233.466667pt;}
.y21e{bottom:235.386667pt;}
.y170{bottom:236.186667pt;}
.y261{bottom:236.986667pt;}
.y123{bottom:237.786667pt;}
.y27a{bottom:240.026667pt;}
.y12{bottom:240.826667pt;}
.y213{bottom:241.786667pt;}
.y1cc{bottom:242.906667pt;}
.y292{bottom:245.466667pt;}
.y158{bottom:245.786667pt;}
.y1ba{bottom:248.826667pt;}
.yd4{bottom:249.466667pt;}
.y7f{bottom:249.626667pt;}
.y145{bottom:251.706667pt;}
.y109{bottom:252.346667pt;}
.y9f{bottom:253.146667pt;}
.y22a{bottom:253.626667pt;}
.yec{bottom:256.506667pt;}
.y64{bottom:258.746667pt;}
.y182{bottom:259.226667pt;}
.yb8{bottom:260.506667pt;}
.y4b{bottom:261.466667pt;}
.y16f{bottom:261.626667pt;}
.y260{bottom:262.426667pt;}
.y122{bottom:263.226667pt;}
.y30{bottom:264.026667pt;}
.y2a8{bottom:266.426667pt;}
.y9e{bottom:267.066667pt;}
.y212{bottom:267.226667pt;}
.y1cb{bottom:268.186667pt;}
.y201{bottom:271.066667pt;}
.y21d{bottom:273.626667pt;}
.y1b9{bottom:274.266667pt;}
.y1f5{bottom:274.746667pt;}
.y279{bottom:276.026667pt;}
.y144{bottom:276.986667pt;}
.y108{bottom:277.786667pt;}
.y11{bottom:281.306667pt;}
.y157{bottom:281.626667pt;}
.yeb{bottom:281.786667pt;}
.y28e{bottom:282.106667pt;}
.y245{bottom:284.026667pt;}
.yd3{bottom:285.306667pt;}
.y7e{bottom:285.626667pt;}
.y229{bottom:287.226667pt;}
.y25f{bottom:287.706667pt;}
.y121{bottom:288.506667pt;}
.y1b8{bottom:290.906667pt;}
.y211{bottom:292.546667pt;}
.y1ca{bottom:293.506667pt;}
.y63{bottom:294.786667pt;}
.y181{bottom:296.226667pt;}
.yb7{bottom:296.546667pt;}
.y4a{bottom:297.506667pt;}
.y2f{bottom:299.906667pt;}
.y1f4{bottom:300.066667pt;}
.y143{bottom:302.306667pt;}
.y9d{bottom:302.946667pt;}
.y107{bottom:303.106667pt;}
.y1b7{bottom:306.146667pt;}
.y200{bottom:306.946667pt;}
.y156{bottom:307.106667pt;}
.y244{bottom:309.506667pt;}
.y198{bottom:311.106667pt;}
.y21c{bottom:311.906667pt;}
.y25e{bottom:313.026667pt;}
.y120{bottom:313.826667pt;}
.yea{bottom:317.666667pt;}
.y210{bottom:317.826667pt;}
.y1c9{bottom:318.786667pt;}
.y228{bottom:320.866667pt;}
.yd2{bottom:321.346667pt;}
.y1b6{bottom:321.506667pt;}
.y7d{bottom:321.666667pt;}
.y180{bottom:321.826667pt;}
.y106{bottom:328.386667pt;}
.y62{bottom:330.786667pt;}
.y155{bottom:332.386667pt;}
.yb6{bottom:332.546667pt;}
.y49{bottom:333.506667pt;}
.y1b5{bottom:334.626667pt;}
.y243{bottom:334.786667pt;}
.y1c8{bottom:335.426667pt;}
.y2e{bottom:335.906667pt;}
.y197{bottom:336.386667pt;}
.y9c{bottom:336.706667pt;}
.y10{bottom:337.026667pt;}
.y142{bottom:337.186667pt;}
.y25d{bottom:338.306667pt;}
.y11f{bottom:339.106667pt;}
.ye9{bottom:343.106667pt;}
.y28d{bottom:344.066667pt;}
.y17f{bottom:347.106667pt;}
.y278{bottom:347.906667pt;}
.y21b{bottom:350.146667pt;}
.y131{bottom:350.466667pt;}
.y1c7{bottom:350.786667pt;}
.y105{bottom:353.826667pt;}
.y227{bottom:354.626667pt;}
.yd1{bottom:357.346667pt;}
.y7c{bottom:357.506667pt;}
.y1ff{bottom:357.666667pt;}
.y242{bottom:360.066667pt;}
.y1f3{bottom:361.346667pt;}
.y25c{bottom:363.586667pt;}
.y1c6{bottom:366.146667pt;}
.y61{bottom:366.786667pt;}
.y154{bottom:368.226667pt;}
.ye8{bottom:368.386667pt;}
.yb5{bottom:368.546667pt;}
.y1b4{bottom:369.026667pt;}
.y48{bottom:369.506667pt;}
.y9b{bottom:370.466667pt;}
.y2d{bottom:371.906667pt;}
.y196{bottom:372.226667pt;}
.y17e{bottom:372.386667pt;}
.y2a7{bottom:374.306667pt;}
.y11e{bottom:374.946667pt;}
.y20f{bottom:378.946667pt;}
.y28c{bottom:380.706667pt;}
.y25b{bottom:381.666667pt;}
.y277{bottom:383.906667pt;}
.y241{bottom:385.346667pt;}
.y1f2{bottom:386.626667pt;}
.y1c5{bottom:387.106667pt;}
.y226{bottom:388.226667pt;}
.y21a{bottom:388.386667pt;}
.y104{bottom:389.506667pt;}
.yf{bottom:393.346667pt;}
.y7b{bottom:393.506667pt;}
.ye7{bottom:393.666667pt;}
.y16e{bottom:394.946667pt;}
.y11d{bottom:400.386667pt;}
.y60{bottom:402.626667pt;}
.y1b3{bottom:403.266667pt;}
.y9a{bottom:404.066667pt;}
.y20e{bottom:404.386667pt;}
.yb4{bottom:404.546667pt;}
.y47{bottom:405.346667pt;}
.y25a{bottom:407.106667pt;}
.y2c{bottom:407.906667pt;}
.y17d{bottom:408.226667pt;}
.y2a6{bottom:409.346667pt;}
.y240{bottom:410.626667pt;}
.y1f1{bottom:411.906667pt;}
.y103{bottom:414.946667pt;}
.ye6{bottom:418.946667pt;}
.y276{bottom:419.906667pt;}
.y225{bottom:422.786667pt;}
.y219{bottom:425.506667pt;}
.y11c{bottom:425.666667pt;}
.yd0{bottom:429.346667pt;}
.y7a{bottom:429.506667pt;}
.y20d{bottom:429.666667pt;}
.y16d{bottom:430.786667pt;}
.y259{bottom:432.386667pt;}
.y17c{bottom:433.666667pt;}
.y23f{bottom:435.906667pt;}
.y2b{bottom:436.866667pt;}
.y1f0{bottom:437.186667pt;}
.y1b2{bottom:437.666667pt;}
.y99{bottom:437.826667pt;}
.y5f{bottom:438.626667pt;}
.yb3{bottom:440.386667pt;}
.y46{bottom:441.346667pt;}
.y289{bottom:442.626667pt;}
.y2a5{bottom:443.106667pt;}
.ye5{bottom:444.226667pt;}
.ye{bottom:449.666667pt;}
.y11b{bottom:450.946667pt;}
.y20c{bottom:454.946667pt;}
.y275{bottom:455.746667pt;}
.y258{bottom:457.666667pt;}
.y224{bottom:458.786667pt;}
.y17b{bottom:458.946667pt;}
.y23e{bottom:461.186667pt;}
.y1ef{bottom:461.506667pt;}
.ycf{bottom:465.186667pt;}
.y79{bottom:465.506667pt;}
.y102{bottom:465.666667pt;}
.y2a{bottom:465.826667pt;}
.y16c{bottom:466.626667pt;}
.ye4{bottom:469.506667pt;}
.y98{bottom:471.586667pt;}
.y1b1{bottom:472.066667pt;}
.y5e{bottom:474.626667pt;}
.y11a{bottom:476.226667pt;}
.yb2{bottom:476.386667pt;}
.y2a4{bottom:476.706667pt;}
.y45{bottom:477.346667pt;}
.yca{bottom:479.106667pt;}
.y153{bottom:480.066667pt;}
.y20b{bottom:480.226667pt;}
.y257{bottom:482.946667pt;}
.y195{bottom:484.226667pt;}
.y23d{bottom:486.466667pt;}
.y2a3{bottom:489.826667pt;}
.y78{bottom:490.946667pt;}
.y274{bottom:491.746667pt;}
.y16b{bottom:492.066667pt;}
.y29{bottom:494.626667pt;}
.y17a{bottom:494.786667pt;}
.y218{bottom:501.506667pt;}
.y288{bottom:504.546667pt;}
.ye3{bottom:505.346667pt;}
.y152{bottom:505.506667pt;}
.y1b0{bottom:506.306667pt;}
.y96{bottom:507.426667pt;}
.y256{bottom:508.226667pt;}
.y194{bottom:509.506667pt;}
.y5d{bottom:510.626667pt;}
.y23c{bottom:511.746667pt;}
.y119{bottom:512.066667pt;}
.yb1{bottom:512.386667pt;}
.y44{bottom:513.346667pt;}
.y20a{bottom:516.066667pt;}
.y101{bottom:516.226667pt;}
.y16a{bottom:517.506667pt;}
.y179{bottom:520.226667pt;}
.y1ec{bottom:521.346667pt;}
.y28{bottom:523.426667pt;}
.yd{bottom:524.706667pt;}
.y2a1{bottom:526.466667pt;}
.y77{bottom:526.786667pt;}
.y217{bottom:526.946667pt;}
.y273{bottom:527.746667pt;}
.y223{bottom:530.653333pt;}
.ye2{bottom:530.813333pt;}
.y255{bottom:533.533333pt;}
.y23b{bottom:537.213333pt;}
.y118{bottom:537.533333pt;}
.y1af{bottom:540.733333pt;}
.y287{bottom:541.213333pt;}
.y209{bottom:541.533333pt;}
.y169{bottom:542.813333pt;}
.y95{bottom:543.293333pt;}
.y193{bottom:545.373333pt;}
.y178{bottom:545.533333pt;}
.y5c{bottom:546.493333pt;}
.yb0{bottom:548.413333pt;}
.y43{bottom:549.373333pt;}
.y100{bottom:552.093333pt;}
.y27{bottom:552.413333pt;}
.ye1{bottom:556.093333pt;}
.y254{bottom:558.973333pt;}
.y23a{bottom:562.493333pt;}
.y76{bottom:562.653333pt;}
.y117{bottom:562.813333pt;}
.y2a0{bottom:563.133333pt;}
.y272{bottom:563.773333pt;}
.yc{bottom:565.213333pt;}
.y151{bottom:566.653333pt;}
.y208{bottom:566.813333pt;}
.y1eb{bottom:567.933333pt;}
.y177{bottom:570.813333pt;}
.y1ae{bottom:574.973333pt;}
.yff{bottom:577.533333pt;}
.y286{bottom:577.853333pt;}
.y168{bottom:578.493333pt;}
.y94{bottom:578.973333pt;}
.y26{bottom:581.213333pt;}
.yc7{bottom:581.373333pt;}
.ye0{bottom:581.533333pt;}
.y5b{bottom:582.493333pt;}
.yaf{bottom:584.253333pt;}
.y42{bottom:585.213333pt;}
.y239{bottom:587.773333pt;}
.y116{bottom:588.093333pt;}
.y150{bottom:592.093333pt;}
.y12f{bottom:596.093333pt;}
.y75{bottom:598.653333pt;}
.y271{bottom:598.813333pt;}
.y29f{bottom:599.773333pt;}
.yfe{bottom:602.813333pt;}
.yb{bottom:605.853333pt;}
.y192{bottom:606.653333pt;}
.ydf{bottom:606.813333pt;}
.y253{bottom:609.533333pt;}
.y25{bottom:610.173333pt;}
.y93{bottom:612.733333pt;}
.y238{bottom:613.053333pt;}
.y115{bottom:613.533333pt;}
.y167{bottom:614.493333pt;}
.y1ea{bottom:614.653333pt;}
.y222{bottom:617.213333pt;}
.y1fe{bottom:617.373333pt;}
.y5a{bottom:618.493333pt;}
.yae{bottom:620.253333pt;}
.y41{bottom:621.213333pt;}
.y176{bottom:621.373333pt;}
.y74{bottom:624.093333pt;}
.y12d{bottom:624.253333pt;}
.y14f{bottom:627.933333pt;}
.y1ad{bottom:631.453333pt;}
.y270{bottom:632.573333pt;}
.y252{bottom:634.813333pt;}
.y29e{bottom:636.413333pt;}
.y237{bottom:638.333333pt;}
.yfd{bottom:638.653333pt;}
.y114{bottom:638.813333pt;}
.y24{bottom:638.973333pt;}
.yde{bottom:642.493333pt;}
.y191{bottom:642.653333pt;}
.ya{bottom:646.333333pt;}
.y92{bottom:648.573333pt;}
.y73{bottom:649.373333pt;}
.y166{bottom:650.493333pt;}
.y284{bottom:651.133333pt;}
.y14e{bottom:653.373333pt;}
.y59{bottom:654.493333pt;}
.y1ac{bottom:656.893333pt;}
.y40{bottom:657.213333pt;}
.y251{bottom:660.093333pt;}
.y1e2{bottom:661.373333pt;}
.y236{bottom:663.613333pt;}
.yfc{bottom:664.093333pt;}
.yad{bottom:664.733333pt;}
.y26f{bottom:666.973333pt;}
.y23{bottom:667.933333pt;}
.ydd{bottom:668.093333pt;}
.y29d{bottom:673.053333pt;}
.y12c{bottom:674.493333pt;}
.y72{bottom:674.653333pt;}
.y165{bottom:675.933333pt;}
.y1c4{bottom:677.213333pt;}
.y190{bottom:678.493333pt;}
.y14d{bottom:678.653333pt;}
.yc6{bottom:683.613333pt;}
.y90{bottom:684.413333pt;}
.y250{bottom:685.373333pt;}
.y9{bottom:686.813333pt;}
.y283{bottom:687.773333pt;}
.y235{bottom:688.893333pt;}
.yfb{bottom:689.373333pt;}
.y58{bottom:690.493333pt;}
.y26e{bottom:692.413333pt;}
.y1e1{bottom:692.733333pt;}
.y3f{bottom:693.213333pt;}
.ydc{bottom:693.373333pt;}
.y1ab{bottom:693.693333pt;}
.y22{bottom:696.733333pt;}
.yac{bottom:699.453333pt;}
.y113{bottom:699.933333pt;}
.y71{bottom:700.093333pt;}
.y1c3{bottom:702.653333pt;}
.y1fd{bottom:703.773333pt;}
.y207{bottom:703.933333pt;}
.y24f{bottom:710.653333pt;}
.y164{bottom:711.773333pt;}
.y234{bottom:714.173333pt;}
.y14c{bottom:714.493333pt;}
.yfa{bottom:714.653333pt;}
.y18f{bottom:715.453333pt;}
.yc5{bottom:717.213333pt;}
.y26d{bottom:717.853333pt;}
.y1aa{bottom:719.133333pt;}
.y1c2{bottom:719.293333pt;}
.y8e{bottom:720.093333pt;}
.y282{bottom:724.413333pt;}
.y70{bottom:725.373333pt;}
.y21{bottom:725.533333pt;}
.y57{bottom:726.333333pt;}
.y8{bottom:727.453333pt;}
.y3e{bottom:729.053333pt;}
.y1fc{bottom:729.213333pt;}
.yab{bottom:734.173333pt;}
.y1c1{bottom:734.653333pt;}
.y29c{bottom:734.973333pt;}
.y1e0{bottom:735.453333pt;}
.y24e{bottom:735.933333pt;}
.y233{bottom:739.453333pt;}
.yf9{bottom:739.933333pt;}
.y18e{bottom:740.893333pt;}
.y26c{bottom:743.133333pt;}
.y1a9{bottom:744.413333pt;}
.y163{bottom:747.773333pt;}
.y1c0{bottom:749.853333pt;}
.y6f{bottom:750.653333pt;}
.yc3{bottom:751.933333pt;}
.y20{bottom:754.493333pt;}
.y3d{bottom:754.653333pt;}
.y8c{bottom:755.933333pt;}
.y1df{bottom:760.893333pt;}
.y280{bottom:761.053333pt;}
.y24d{bottom:761.213333pt;}
.y56{bottom:762.333333pt;}
.y232{bottom:764.893333pt;}
.yf8{bottom:765.213333pt;}
.y18d{bottom:766.213333pt;}
.y7{bottom:767.973333pt;}
.y26b{bottom:768.453333pt;}
.yaa{bottom:768.933333pt;}
.y29b{bottom:771.653333pt;}
.y6e{bottom:775.973333pt;}
.ydb{bottom:779.973333pt;}
.y1a8{bottom:781.253333pt;}
.y231{bottom:782.853333pt;}
.y1f{bottom:783.333333pt;}
.y162{bottom:783.653333pt;}
.y1de{bottom:786.213333pt;}
.y1bf{bottom:786.533333pt;}
.yc0{bottom:786.693333pt;}
.y8b{bottom:789.733333pt;}
.y3c{bottom:790.373333pt;}
.yf7{bottom:790.533333pt;}
.y18c{bottom:791.653333pt;}
.y26a{bottom:793.733333pt;}
.y55{bottom:798.373333pt;}
.y6d{bottom:801.253333pt;}
.ya9{bottom:803.653333pt;}
.y175{bottom:805.253333pt;}
.y1a7{bottom:806.693333pt;}
.y230{bottom:808.293333pt;}
.y6{bottom:808.453333pt;}
.y1dd{bottom:811.493333pt;}
.y24c{bottom:811.973333pt;}
.y1e{bottom:812.293333pt;}
.yda{bottom:815.653333pt;}
.y3b{bottom:815.813333pt;}
.y269{bottom:819.013333pt;}
.y161{bottom:819.653333pt;}
.y8a{bottom:823.493333pt;}
.yf6{bottom:826.373333pt;}
.y6c{bottom:826.533333pt;}
.y18b{bottom:828.453333pt;}
.y22f{bottom:833.573333pt;}
.y54{bottom:834.373333pt;}
.y1dc{bottom:836.773333pt;}
.y12b{bottom:837.093333pt;}
.y24b{bottom:837.253333pt;}
.ya8{bottom:838.373333pt;}
.y1d{bottom:841.093333pt;}
.y3a{bottom:841.253333pt;}
.y1a6{bottom:842.533333pt;}
.y268{bottom:844.293333pt;}
.y29a{bottom:844.933333pt;}
.y27f{bottom:845.093333pt;}
.y5{bottom:848.933333pt;}
.y22e{bottom:851.653333pt;}
.y6b{bottom:851.813333pt;}
.y18a{bottom:853.893333pt;}
.ybf{bottom:855.173333pt;}
.y160{bottom:855.653333pt;}
.y88{bottom:857.253333pt;}
.y1db{bottom:862.053333pt;}
.y267{bottom:862.373333pt;}
.y12a{bottom:862.533333pt;}
.y39{bottom:866.533333pt;}
.y1c{bottom:869.893333pt;}
.y53{bottom:870.213333pt;}
.y27e{bottom:870.373333pt;}
.ya7{bottom:873.093333pt;}
.y206{bottom:876.933333pt;}
.y6a{bottom:877.093333pt;}
.y1a5{bottom:877.573333pt;}
.y189{bottom:879.173333pt;}
.y15f{bottom:881.093333pt;}
.y299{bottom:881.573333pt;}
.y1da{bottom:887.333333pt;}
.y112{bottom:887.653333pt;}
.y129{bottom:887.813333pt;}
.y4{bottom:889.573333pt;}
.ybd{bottom:889.893333pt;}
.y1a4{bottom:890.693333pt;}
.y87{bottom:890.853333pt;}
.yd9{bottom:891.813333pt;}
.y1b{bottom:898.853333pt;}
.y38{bottom:902.213333pt;}
.y69{bottom:902.373333pt;}
.y52{bottom:906.213333pt;}
.ya6{bottom:907.813333pt;}
.y1d9{bottom:911.653333pt;}
.y14b{bottom:912.933333pt;}
.y111{bottom:913.093333pt;}
.y188{bottom:915.973333pt;}
.y15e{bottom:916.933333pt;}
.y298{bottom:918.213333pt;}
.y86{bottom:924.613333pt;}
.y1d6{bottom:924.773333pt;}
.y1a3{bottom:925.093333pt;}
.y1a{bottom:927.653333pt;}
.y37{bottom:927.813333pt;}
.y3{bottom:930.053333pt;}
.y110{bottom:938.373333pt;}
.y51{bottom:942.213333pt;}
.ya5{bottom:942.533333pt;}
.y15d{bottom:952.933333pt;}
.y36{bottom:953.093333pt;}
.y297{bottom:954.853333pt;}
.y19{bottom:956.613333pt;}
.y84{bottom:958.373333pt;}
.y1a2{bottom:959.333333pt;}
.yf5{bottom:963.493333pt;}
.y10f{bottom:963.653333pt;}
.y2{bottom:970.533333pt;}
.y1d2{bottom:971.493333pt;}
.ya4{bottom:977.253333pt;}
.y50{bottom:978.213333pt;}
.y35{bottom:978.373333pt;}
.y18{bottom:985.413333pt;}
.y1fb{bottom:988.773333pt;}
.yf4{bottom:988.933333pt;}
.y296{bottom:991.493333pt;}
.y1a0{bottom:993.733333pt;}
.y1{bottom:1010.720000pt;}
.y16{bottom:1014.240000pt;}
.y17{bottom:1014.400000pt;}
.h16{height:27.520000pt;}
.h15{height:27.680000pt;}
.h1a{height:30.560000pt;}
.hb{height:33.600000pt;}
.h19{height:33.632000pt;}
.ha{height:33.760000pt;}
.hc{height:33.792000pt;}
.h10{height:34.720000pt;}
.h12{height:34.752000pt;}
.he{height:35.680000pt;}
.hd{height:35.840000pt;}
.hf{height:35.872000pt;}
.h21{height:36.000000pt;}
.h22{height:36.032000pt;}
.h1b{height:45.920000pt;}
.h1f{height:45.952000pt;}
.h1e{height:46.080000pt;}
.h20{height:55.171250pt;}
.h18{height:55.402500pt;}
.h5{height:58.563750pt;}
.h23{height:61.280000pt;}
.h24{height:61.312000pt;}
.h8{height:61.410000pt;}
.h1c{height:61.920000pt;}
.h9{height:66.750000pt;}
.h11{height:68.480000pt;}
.h2{height:78.097500pt;}
.h3{height:88.777500pt;}
.h13{height:102.240000pt;}
.h14{height:102.272000pt;}
.h4{height:161.812500pt;}
.h1d{height:186.106667pt;}
.h17{height:244.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h7{height:1123.333333pt;}
.h6{height:1123.610427pt;}
.w21{width:21.920000pt;}
.w22{width:21.952000pt;}
.we{width:41.152000pt;}
.w17{width:46.720000pt;}
.w1d{width:53.760000pt;}
.w19{width:54.080000pt;}
.w12{width:55.360000pt;}
.w11{width:56.000000pt;}
.w10{width:59.392000pt;}
.w16{width:65.440000pt;}
.w1c{width:72.640000pt;}
.w15{width:74.912000pt;}
.w6{width:84.640000pt;}
.wf{width:86.560000pt;}
.w1f{width:93.760000pt;}
.w1e{width:93.952000pt;}
.w1b{width:94.080000pt;}
.w1a{width:94.592000pt;}
.wd{width:112.640000pt;}
.w13{width:120.672000pt;}
.wb{width:125.120000pt;}
.w18{width:148.186667pt;}
.wc{width:176.666667pt;}
.w14{width:242.746667pt;}
.wa{width:267.586667pt;}
.w9{width:287.426667pt;}
.w8{width:287.546667pt;}
.w20{width:451.106667pt;}
.w5{width:481.693333pt;}
.w7{width:575.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:796.666667pt;}
.w3{width:796.800053pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x41{left:9.920000pt;}
.x2d{left:11.360000pt;}
.x44{left:13.760000pt;}
.x2f{left:14.906667pt;}
.x36{left:16.320000pt;}
.x3d{left:17.920000pt;}
.x39{left:19.386667pt;}
.x3b{left:20.640000pt;}
.x32{left:21.760000pt;}
.x3a{left:23.040000pt;}
.x34{left:25.600000pt;}
.x31{left:26.560000pt;}
.x23{left:29.120000pt;}
.x43{left:30.080000pt;}
.x11{left:31.194667pt;}
.x45{left:32.320000pt;}
.x46{left:34.400000pt;}
.x47{left:37.600000pt;}
.x14{left:40.000000pt;}
.x38{left:42.720000pt;}
.x25{left:47.680000pt;}
.x24{left:51.360000pt;}
.x13{left:54.394667pt;}
.x10{left:56.320000pt;}
.x37{left:57.600000pt;}
.x26{left:58.880000pt;}
.x15{left:61.120000pt;}
.x12{left:69.280000pt;}
.xf{left:77.440000pt;}
.x1a{left:83.034667pt;}
.x1c{left:87.066667pt;}
.x2b{left:88.314667pt;}
.x21{left:103.720000pt;}
.x18{left:106.592000pt;}
.x1{left:113.471988pt;}
.x8{left:119.711988pt;}
.x2a{left:128.992000pt;}
.x2{left:133.151988pt;}
.x16{left:137.466655pt;}
.x9{left:150.746655pt;}
.x20{left:154.586667pt;}
.x1d{left:161.466655pt;}
.x7{left:184.026655pt;}
.x1f{left:185.466655pt;}
.x48{left:187.066655pt;}
.x19{left:194.914667pt;}
.x1e{left:208.666655pt;}
.x4{left:219.706655pt;}
.x5{left:246.906655pt;}
.xb{left:254.626655pt;}
.x42{left:255.586667pt;}
.x3{left:295.426655pt;}
.x2c{left:306.466667pt;}
.x6{left:314.466655pt;}
.x49{left:332.546655pt;}
.xa{left:349.506655pt;}
.x1b{left:394.786667pt;}
.xc{left:396.866655pt;}
.x2e{left:419.746667pt;}
.x22{left:422.813333pt;}
.x3c{left:425.693333pt;}
.x30{left:461.533333pt;}
.x3e{left:491.773333pt;}
.x3f{left:539.133333pt;}
.x33{left:548.733333pt;}
.x4a{left:558.333333pt;}
.x27{left:565.853322pt;}
.x4b{left:580.893333pt;}
.xe{left:595.173333pt;}
.x4c{left:603.493333pt;}
.x35{left:608.933333pt;}
.x40{left:614.693333pt;}
.x4d{left:626.213333pt;}
.x28{left:641.413322pt;}
.x4e{left:648.773333pt;}
.x29{left:665.573322pt;}
.x4f{left:671.333333pt;}
.x17{left:673.093322pt;}
}




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