
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aa27666b5b56cfb22038e715.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a352f166c206ae981c01b967.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a5dcb0b2d1245cd2a5373c7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8026671e8e939a266c47b9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07da072e2a053707eb606a7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c04f2df5fbe9a2d8240f0984.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.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_b87b855b449b386b41c4b9da.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_562948f5d1a096a45c24467a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.240600px;}
.lse{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.158400px;}
.ls22{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.060600px;}
.ls21{letter-spacing:-0.038880px;}
.ls18{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.043920px;}
.lsc{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls20{letter-spacing:0.061200px;}
.ls12{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.097800px;}
.ls1f{letter-spacing:0.098400px;}
.ls28{letter-spacing:0.116400px;}
.ls1b{letter-spacing:0.117000px;}
.ls1d{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.178800px;}
.ls16{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls27{letter-spacing:47.726640px;}
.ls14{letter-spacing:55.406640px;}
.ls13{letter-spacing:63.566640px;}
.ls26{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.425600px;}
.ws1a{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.344600px;}
.ws1b{word-spacing:-13.342800px;}
.ws15{word-spacing:-13.324800px;}
.ws12{word-spacing:-13.324200px;}
.wsc{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.270320px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws16{word-spacing:-13.187520px;}
.wse{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.134000px;}
.ws17{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws2{word-spacing:-12.985800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws19{word-spacing:-8.732400px;}
.ws14{word-spacing:-8.553600px;}
.ws18{word-spacing:-8.395200px;}
.wsd{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._6{margin-left:-3.859802px;}
._4{margin-left:-2.765400px;}
._0{margin-left:-1.104000px;}
._2{width:1.056720px;}
._1{width:2.180964px;}
._5{width:3.337993px;}
._a{width:4.465778px;}
._3{width:5.470800px;}
._7{width:7.094400px;}
._8{width:8.114998px;}
._9{width:9.318600px;}
._c{width:10.400760px;}
._b{width:12.024000px;}
._d{width:14.270280px;}
._11{width:15.390720px;}
._10{width:16.833600px;}
._15{width:17.975880px;}
._e{width:19.719360px;}
._f{width:20.823360px;}
._14{width:22.402920px;}
._20{width:23.413920px;}
._2c{width:24.621960px;}
._34{width:25.971840px;}
._13{width:27.278040px;}
._12{width:28.376640px;}
._27{width:30.506040px;}
._26{width:31.623120px;}
._22{width:33.689040px;}
._19{width:35.049960px;}
._1a{width:36.072000px;}
._24{width:37.094040px;}
._39{width:38.356560px;}
._25{width:40.302240px;}
._18{width:41.542920px;}
._4c{width:42.745320px;}
._30{width:43.887600px;}
._2b{width:45.510840px;}
._33{width:47.194200px;}
._1c{width:48.959520px;}
._1b{width:49.959720px;}
._31{width:51.763320px;}
._32{width:52.905600px;}
._17{width:54.108000px;}
._46{width:55.911600px;}
._4b{width:57.594960px;}
._21{width:58.977720px;}
._29{width:60.540840px;}
._53{width:62.164080px;}
._16{width:63.967680px;}
._1d{width:66.063960px;}
._52{width:67.558440px;}
._2e{width:69.077880px;}
._3b{width:70.761240px;}
._4a{width:71.903520px;}
._55{width:73.909320px;}
._38{width:74.969640px;}
._45{width:81.763200px;}
._2a{width:83.867400px;}
._40{width:88.256160px;}
._4e{width:98.236080px;}
._36{width:100.580760px;}
._3a{width:106.652880px;}
._28{width:109.719000px;}
._1e{width:115.310160px;}
._42{width:116.332200px;}
._37{width:120.059640px;}
._3e{width:123.726960px;}
._48{width:125.109720px;}
._3f{width:129.859200px;}
._54{width:132.324120px;}
._2d{width:137.325960px;}
._43{width:148.977360px;}
._2f{width:150.600600px;}
._3d{width:154.568520px;}
._23{width:158.716800px;}
._44{width:161.482320px;}
._51{width:163.947240px;}
._4d{width:166.833000px;}
._3c{width:184.087440px;}
._4f{width:187.213680px;}
._1f{width:190.881000px;}
._47{width:197.975160px;}
._49{width:202.784760px;}
._41{width:207.173520px;}
._50{width:231.942960px;}
._35{width:254.841480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:3.330000px;}
.ye0{bottom:7.830000px;}
.ye3{bottom:7.920000px;}
.y1ed{bottom:10.710000px;}
.y234{bottom:11.790000px;}
.y23a{bottom:12.150000px;}
.y22b{bottom:12.240000px;}
.y1aa{bottom:12.330000px;}
.y226{bottom:12.900000px;}
.y229{bottom:14.310000px;}
.y231{bottom:15.840000px;}
.y1dc{bottom:20.970000px;}
.y1f2{bottom:22.950000px;}
.y1d3{bottom:23.040000px;}
.y188{bottom:25.380000px;}
.y190{bottom:25.470000px;}
.y1ec{bottom:28.260000px;}
.y233{bottom:29.340000px;}
.y22a{bottom:29.790000px;}
.y1a9{bottom:29.970000px;}
.y225{bottom:30.540000px;}
.y228{bottom:31.860000px;}
.y230{bottom:33.480000px;}
.y235{bottom:33.840000px;}
.y1db{bottom:38.520000px;}
.y1f1{bottom:40.590000px;}
.y18f{bottom:43.020000px;}
.y1ae{bottom:43.050000px;}
.y1bf{bottom:43.110000px;}
.y1d2{bottom:45.090000px;}
.y1a8{bottom:47.520000px;}
.y203{bottom:47.610000px;}
.y224{bottom:48.090000px;}
.y213{bottom:48.330000px;}
.y1eb{bottom:51.210000px;}
.y232{bottom:51.390000px;}
.y19d{bottom:51.660000px;}
.y1da{bottom:56.970000px;}
.y238{bottom:57.150000px;}
.y1f0{bottom:58.140000px;}
.y1ad{bottom:60.600000px;}
.y18e{bottom:60.660000px;}
.y1a7{bottom:65.070000px;}
.y202{bottom:65.160000px;}
.y212{bottom:65.880000px;}
.y1d1{bottom:67.230000px;}
.y1ea{bottom:68.760000px;}
.y19c{bottom:69.300000px;}
.y1e6{bottom:69.660000px;}
.y1ff{bottom:70.470000px;}
.y2{bottom:73.380000px;}
.y1bc{bottom:73.740000px;}
.y29{bottom:74.190000px;}
.y1d9{bottom:74.520000px;}
.y237{bottom:74.700000px;}
.y1f9{bottom:76.680000px;}
.y18d{bottom:78.210000px;}
.y1ac{bottom:78.240000px;}
.y1ef{bottom:81.090000px;}
.y1a6{bottom:82.710000px;}
.y1e9{bottom:86.400000px;}
.y22e{bottom:86.760000px;}
.y19b{bottom:86.850000px;}
.y1e5{bottom:87.210000px;}
.y1fe{bottom:88.020000px;}
.y211{bottom:88.830000px;}
.y1d0{bottom:89.280000px;}
.y1d8{bottom:92.070000px;}
.y1f8{bottom:94.230000px;}
.y1e1{bottom:95.310000px;}
.y1c4{bottom:95.760000px;}
.y1bb{bottom:95.790000px;}
.y18c{bottom:95.850000px;}
.y1ee{bottom:98.640000px;}
.y1{bottom:101.640000px;}
.y1e8{bottom:103.950000px;}
.y22d{bottom:104.400000px;}
.y19a{bottom:104.490000px;}
.y1e4{bottom:104.760000px;}
.y201{bottom:105.660000px;}
.y210{bottom:106.500000px;}
.y1cf{bottom:106.860000px;}
.y1d7{bottom:110.550000px;}
.y1fd{bottom:110.970000px;}
.y1f7{bottom:111.780000px;}
.y20a{bottom:112.620000px;}
.y18b{bottom:113.400000px;}
.y1ba{bottom:113.430000px;}
.y9b{bottom:115.680000px;}
.y76{bottom:116.940000px;}
.y1e0{bottom:118.290000px;}
.y218{bottom:118.740000px;}
.yae{bottom:120.000000px;}
.y1e7{bottom:121.500000px;}
.y1e3{bottom:122.400000px;}
.y11e{bottom:123.060000px;}
.y200{bottom:123.210000px;}
.y20f{bottom:124.050000px;}
.y1ce{bottom:124.500000px;}
.yf9{bottom:125.310000px;}
.y199{bottom:126.570000px;}
.yd5{bottom:127.380000px;}
.y1d6{bottom:128.190000px;}
.y1fc{bottom:128.610000px;}
.y1f6{bottom:129.420000px;}
.y142{bottom:129.810000px;}
.y209{bottom:130.260000px;}
.y18a{bottom:130.950000px;}
.y1c1{bottom:131.040000px;}
.y9a{bottom:133.320000px;}
.y2af{bottom:133.680000px;}
.y75{bottom:134.580000px;}
.y1df{bottom:135.840000px;}
.y217{bottom:136.290000px;}
.y24e{bottom:137.370000px;}
.yad{bottom:137.550000px;}
.y11d{bottom:140.610000px;}
.y1cd{bottom:142.050000px;}
.y27{bottom:142.500000px;}
.yf8{bottom:142.860000px;}
.y198{bottom:144.120000px;}
.yd4{bottom:144.930000px;}
.y1d5{bottom:145.740000px;}
.y1fb{bottom:146.160000px;}
.y27c{bottom:146.820000px;}
.y1f5{bottom:146.970000px;}
.y20e{bottom:147.000000px;}
.y141{bottom:147.450000px;}
.y208{bottom:147.810000px;}
.y5b{bottom:148.530000px;}
.y1a4{bottom:148.590000px;}
.y222{bottom:148.710000px;}
.y99{bottom:150.870000px;}
.y2ae{bottom:151.320000px;}
.y74{bottom:152.130000px;}
.y1ca{bottom:155.910000px;}
.y16e{bottom:156.900000px;}
.y11c{bottom:158.250000px;}
.y1de{bottom:158.790000px;}
.y216{bottom:159.240000px;}
.y1cc{bottom:159.690000px;}
.y26{bottom:160.050000px;}
.yf7{bottom:160.500000px;}
.y29d{bottom:160.680000px;}
.y197{bottom:161.760000px;}
.yd3{bottom:162.480000px;}
.y1d4{bottom:163.290000px;}
.y1fa{bottom:163.710000px;}
.y27b{bottom:164.370000px;}
.y20d{bottom:164.550000px;}
.y1f4{bottom:164.610000px;}
.y140{bottom:165.000000px;}
.y207{bottom:165.360000px;}
.y1a3{bottom:166.140000px;}
.y5a{bottom:166.170000px;}
.y98{bottom:168.510000px;}
.y2ad{bottom:168.870000px;}
.y73{bottom:169.680000px;}
.yac{bottom:173.190000px;}
.y24d{bottom:173.820000px;}
.y16d{bottom:174.450000px;}
.y215{bottom:176.790000px;}
.yf6{bottom:178.050000px;}
.y29c{bottom:178.320000px;}
.y196{bottom:179.310000px;}
.y189{bottom:182.010000px;}
.y20c{bottom:182.190000px;}
.y13f{bottom:182.640000px;}
.y206{bottom:183.000000px;}
.y1a2{bottom:183.690000px;}
.y59{bottom:183.720000px;}
.y1be{bottom:183.780000px;}
.y72{bottom:187.320000px;}
.yd2{bottom:189.120000px;}
.yab{bottom:190.740000px;}
.y27a{bottom:191.010000px;}
.y1c9{bottom:191.460000px;}
.y16c{bottom:192.090000px;}
.y1b7{bottom:192.900000px;}
.y11b{bottom:193.800000px;}
.y2ac{bottom:195.510000px;}
.y25{bottom:195.600000px;}
.yf5{bottom:195.690000px;}
.y195{bottom:196.860000px;}
.y214{bottom:199.650000px;}
.y20b{bottom:199.740000px;}
.y13e{bottom:200.190000px;}
.y205{bottom:200.550000px;}
.y24c{bottom:200.730000px;}
.y21f{bottom:201.090000px;}
.y58{bottom:201.270000px;}
.y1a1{bottom:201.330000px;}
.y97{bottom:204.060000px;}
.y29b{bottom:204.870000px;}
.yaa{bottom:208.380000px;}
.y279{bottom:208.560000px;}
.y16b{bottom:209.640000px;}
.y11a{bottom:211.440000px;}
.y2ab{bottom:213.060000px;}
.y24{bottom:213.240000px;}
.y194{bottom:214.500000px;}
.y13d{bottom:217.740000px;}
.y1a0{bottom:218.880000px;}
.y57{bottom:218.910000px;}
.y96{bottom:221.610000px;}
.y29a{bottom:222.510000px;}
.y71{bottom:222.870000px;}
.yd1{bottom:225.030000px;}
.ya9{bottom:225.930000px;}
.y1c8{bottom:227.100000px;}
.y16a{bottom:227.280000px;}
.y1b6{bottom:228.450000px;}
.y119{bottom:228.990000px;}
.y2aa{bottom:230.610000px;}
.y23{bottom:230.790000px;}
.y193{bottom:232.050000px;}
.y278{bottom:235.110000px;}
.y13c{bottom:235.380000px;}
.y56{bottom:236.460000px;}
.y19f{bottom:236.520000px;}
.y21e{bottom:236.730000px;}
.y24b{bottom:237.810000px;}
.y95{bottom:239.250000px;}
.y299{bottom:240.060000px;}
.y70{bottom:240.510000px;}
.ya8{bottom:243.480000px;}
.y1c7{bottom:244.650000px;}
.y169{bottom:244.830000px;}
.y118{bottom:246.540000px;}
.y22{bottom:248.340000px;}
.yf4{bottom:248.430000px;}
.y192{bottom:249.690000px;}
.y277{bottom:252.750000px;}
.y21d{bottom:254.280000px;}
.y24a{bottom:255.360000px;}
.y2a9{bottom:257.250000px;}
.y6f{bottom:258.060000px;}
.ya7{bottom:261.120000px;}
.y1c6{bottom:262.200000px;}
.y1b5{bottom:264.090000px;}
.y21{bottom:265.980000px;}
.y298{bottom:266.610000px;}
.y276{bottom:270.300000px;}
.y13b{bottom:270.930000px;}
.y21c{bottom:271.830000px;}
.y55{bottom:272.100000px;}
.y117{bottom:273.180000px;}
.yd0{bottom:273.270000px;}
.y249{bottom:273.810000px;}
.y94{bottom:274.800000px;}
.y6e{bottom:275.610000px;}
.y168{bottom:280.380000px;}
.y20{bottom:283.530000px;}
.yf3{bottom:283.980000px;}
.y297{bottom:284.250000px;}
.y13a{bottom:288.480000px;}
.y1c5{bottom:288.840000px;}
.y21b{bottom:289.470000px;}
.y54{bottom:289.650000px;}
.y248{bottom:291.360000px;}
.y93{bottom:292.440000px;}
.ya6{bottom:296.670000px;}
.y275{bottom:296.940000px;}
.y167{bottom:298.020000px;}
.y1b4{bottom:299.640000px;}
.y2a8{bottom:301.440000px;}
.yf2{bottom:301.620000px;}
.y296{bottom:301.800000px;}
.y21a{bottom:307.020000px;}
.y53{bottom:307.200000px;}
.y116{bottom:308.730000px;}
.ycf{bottom:308.820000px;}
.y247{bottom:308.910000px;}
.y92{bottom:309.990000px;}
.y6d{bottom:311.250000px;}
.y274{bottom:314.490000px;}
.y166{bottom:315.570000px;}
.y1b3{bottom:317.280000px;}
.y2a7{bottom:318.990000px;}
.y1f{bottom:319.170000px;}
.y295{bottom:319.440000px;}
.y1c3{bottom:321.780000px;}
.y139{bottom:324.120000px;}
.y52{bottom:324.840000px;}
.y115{bottom:326.370000px;}
.y6c{bottom:328.800000px;}
.ya5{bottom:328.890000px;}
.y187{bottom:332.490000px;}
.y165{bottom:333.120000px;}
.y219{bottom:333.660000px;}
.y1b2{bottom:334.830000px;}
.yce{bottom:335.370000px;}
.y2a6{bottom:336.540000px;}
.y1e{bottom:336.720000px;}
.y273{bottom:341.040000px;}
.y138{bottom:341.670000px;}
.y51{bottom:342.390000px;}
.y114{bottom:343.920000px;}
.y246{bottom:345.360000px;}
.y91{bottom:345.540000px;}
.y294{bottom:345.990000px;}
.y6b{bottom:346.440000px;}
.y164{bottom:350.760000px;}
.y1b1{bottom:352.380000px;}
.y1d{bottom:354.270000px;}
.yf1{bottom:354.360000px;}
.y272{bottom:358.680000px;}
.y137{bottom:359.310000px;}
.y50{bottom:359.940000px;}
.y113{bottom:361.470000px;}
.y90{bottom:363.180000px;}
.y293{bottom:363.540000px;}
.y6a{bottom:363.990000px;}
.y204{bottom:366.600000px;}
.ycd{bottom:367.950000px;}
.y163{bottom:368.310000px;}
.y1b0{bottom:370.020000px;}
.y1c{bottom:371.910000px;}
.y245{bottom:372.270000px;}
.y136{bottom:376.860000px;}
.y8f{bottom:380.730000px;}
.y292{bottom:381.180000px;}
.y271{bottom:385.230000px;}
.y162{bottom:385.950000px;}
.ycc{bottom:386.400000px;}
.y4f{bottom:386.850000px;}
.y1b{bottom:389.460000px;}
.yf0{bottom:389.550000px;}
.y135{bottom:394.410000px;}
.y1af{bottom:396.570000px;}
.y112{bottom:397.110000px;}
.y8e{bottom:398.370000px;}
.y186{bottom:398.730000px;}
.y69{bottom:399.540000px;}
.y270{bottom:402.870000px;}
.ycb{bottom:404.850000px;}
.y1a{bottom:407.100000px;}
.y2a5{bottom:407.370000px;}
.y291{bottom:407.730000px;}
.y161{bottom:412.500000px;}
.y111{bottom:414.660000px;}
.y68{bottom:417.180000px;}
.y26f{bottom:420.420000px;}
.y244{bottom:420.510000px;}
.yca{bottom:423.210000px;}
.yef{bottom:425.100000px;}
.y290{bottom:425.370000px;}
.y134{bottom:429.330000px;}
.y1ab{bottom:429.600000px;}
.y160{bottom:430.050000px;}
.y8d{bottom:433.920000px;}
.y19{bottom:434.010000px;}
.y185{bottom:434.370000px;}
.y67{bottom:434.730000px;}
.y4e{bottom:435.180000px;}
.y1c2{bottom:437.070000px;}
.y243{bottom:438.150000px;}
.yc9{bottom:441.660000px;}
.yee{bottom:442.650000px;}
.y28f{bottom:442.920000px;}
.y133{bottom:443.370000px;}
.y26e{bottom:446.970000px;}
.y110{bottom:450.300000px;}
.y8c{bottom:451.470000px;}
.y66{bottom:452.370000px;}
.y4d{bottom:452.730000px;}
.y132{bottom:455.520000px;}
.yc8{bottom:460.110000px;}
.y26d{bottom:464.610000px;}
.y15f{bottom:465.690000px;}
.y10f{bottom:467.850000px;}
.y8b{bottom:469.110000px;}
.y28e{bottom:469.470000px;}
.y65{bottom:469.950000px;}
.y4c{bottom:470.400000px;}
.y242{bottom:473.730000px;}
.yc7{bottom:477.690000px;}
.y2a4{bottom:478.140000px;}
.yed{bottom:478.320000px;}
.y26c{bottom:482.190000px;}
.y18{bottom:482.640000px;}
.y131{bottom:482.910000px;}
.y15e{bottom:483.270000px;}
.y10e{bottom:485.430000px;}
.y8a{bottom:486.690000px;}
.y28d{bottom:487.140000px;}
.y64{bottom:487.500000px;}
.y4b{bottom:487.950000px;}
.yc6{bottom:495.330000px;}
.y2a3{bottom:495.690000px;}
.yec{bottom:495.870000px;}
.y15d{bottom:500.910000px;}
.y89{bottom:504.330000px;}
.y63{bottom:505.140000px;}
.y4a{bottom:505.500000px;}
.y26b{bottom:508.830000px;}
.y241{bottom:509.280000px;}
.y130{bottom:510.270000px;}
.yc5{bottom:512.880000px;}
.y28c{bottom:513.690000px;}
.y15c{bottom:518.460000px;}
.y17{bottom:519.630000px;}
.y10d{bottom:521.070000px;}
.y88{bottom:521.880000px;}
.y2a2{bottom:522.330000px;}
.yeb{bottom:522.510000px;}
.y184{bottom:522.690000px;}
.y49{bottom:523.140000px;}
.y26a{bottom:526.380000px;}
.y240{bottom:526.920000px;}
.y1a5{bottom:527.280000px;}
.yc4{bottom:530.430000px;}
.y28b{bottom:531.330000px;}
.y15b{bottom:536.010000px;}
.y16{bottom:537.180000px;}
.y12f{bottom:537.630000px;}
.y10c{bottom:538.620000px;}
.y87{bottom:539.430000px;}
.y2a1{bottom:539.880000px;}
.y183{bottom:540.330000px;}
.y48{bottom:540.690000px;}
.y269{bottom:543.930000px;}
.yc3{bottom:548.880000px;}
.y1c0{bottom:552.300000px;}
.y15a{bottom:553.650000px;}
.y15{bottom:554.820000px;}
.yea{bottom:558.060000px;}
.y47{bottom:558.330000px;}
.y23f{bottom:562.470000px;}
.y12e{bottom:564.900000px;}
.y10b{bottom:565.260000px;}
.yc2{bottom:566.430000px;}
.y182{bottom:566.880000px;}
.y268{bottom:570.570000px;}
.y159{bottom:571.200000px;}
.y14{bottom:572.370000px;}
.y86{bottom:575.070000px;}
.y28a{bottom:575.430000px;}
.ye9{bottom:575.610000px;}
.y62{bottom:575.880000px;}
.y23e{bottom:580.110000px;}
.yc1{bottom:584.070000px;}
.y1f3{bottom:586.590000px;}
.y267{bottom:588.120000px;}
.y158{bottom:588.840000px;}
.y13{bottom:589.920000px;}
.y12d{bottom:592.260000px;}
.y85{bottom:592.620000px;}
.y289{bottom:593.070000px;}
.y61{bottom:593.430000px;}
.y46{bottom:593.880000px;}
.y23d{bottom:597.660000px;}
.y10a{bottom:600.810000px;}
.yc0{bottom:601.620000px;}
.y181{bottom:602.430000px;}
.y157{bottom:606.390000px;}
.y12{bottom:607.560000px;}
.ye8{bottom:608.640000px;}
.y84{bottom:610.260000px;}
.y60{bottom:611.070000px;}
.y45{bottom:611.430000px;}
.y266{bottom:614.760000px;}
.y23c{bottom:615.210000px;}
.y109{bottom:618.360000px;}
.ybf{bottom:619.260000px;}
.y288{bottom:619.620000px;}
.y180{bottom:620.070000px;}
.y156{bottom:623.940000px;}
.y11{bottom:625.110000px;}
.y83{bottom:627.810000px;}
.y2a0{bottom:628.260000px;}
.y5f{bottom:628.620000px;}
.y44{bottom:629.070000px;}
.y19e{bottom:629.430000px;}
.ye7{bottom:635.910000px;}
.y108{bottom:636.000000px;}
.ybe{bottom:636.810000px;}
.y287{bottom:637.260000px;}
.y17f{bottom:637.620000px;}
.y12c{bottom:640.950000px;}
.y265{bottom:641.310000px;}
.y155{bottom:641.580000px;}
.y23b{bottom:642.120000px;}
.y10{bottom:642.750000px;}
.y5e{bottom:646.260000px;}
.y43{bottom:646.620000px;}
.y107{bottom:653.550000px;}
.ybd{bottom:654.360000px;}
.y286{bottom:654.810000px;}
.y17e{bottom:655.260000px;}
.y264{bottom:658.860000px;}
.yf{bottom:660.300000px;}
.ye6{bottom:663.270000px;}
.y82{bottom:663.360000px;}
.y42{bottom:664.260000px;}
.y106{bottom:671.190000px;}
.ybc{bottom:671.910000px;}
.y285{bottom:672.360000px;}
.y17d{bottom:672.810000px;}
.y263{bottom:676.500000px;}
.y12b{bottom:676.590000px;}
.y154{bottom:677.130000px;}
.ye{bottom:677.850000px;}
.y81{bottom:681.000000px;}
.y41{bottom:681.810000px;}
.y236{bottom:687.840000px;}
.y29f{bottom:690.000000px;}
.y17c{bottom:690.360000px;}
.ye5{bottom:690.630000px;}
.ya4{bottom:694.590000px;}
.y153{bottom:694.770000px;}
.yd{bottom:695.490000px;}
.y80{bottom:698.550000px;}
.y284{bottom:699.000000px;}
.y40{bottom:699.360000px;}
.y262{bottom:703.050000px;}
.y12a{bottom:703.140000px;}
.y105{bottom:706.740000px;}
.ybb{bottom:708.360000px;}
.ya3{bottom:712.140000px;}
.y152{bottom:712.320000px;}
.yc{bottom:713.040000px;}
.y283{bottom:716.550000px;}
.y3f{bottom:717.000000px;}
.ye4{bottom:717.990000px;}
.y1bd{bottom:720.330000px;}
.y261{bottom:720.690000px;}
.y104{bottom:724.290000px;}
.yba{bottom:726.000000px;}
.ya2{bottom:729.690000px;}
.y151{bottom:729.870000px;}
.yb{bottom:730.680000px;}
.y7f{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.y239{bottom:737.070000px;}
.y260{bottom:738.240000px;}
.y129{bottom:738.690000px;}
.y103{bottom:741.930000px;}
.y282{bottom:743.190000px;}
.y17b{bottom:743.550000px;}
.ye2{bottom:745.260000px;}
.ya1{bottom:747.330000px;}
.y150{bottom:747.510000px;}
.y7e{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.yb9{bottom:752.550000px;}
.y128{bottom:756.330000px;}
.ya{bottom:757.590000px;}
.y281{bottom:760.740000px;}
.y17a{bottom:761.190000px;}
.ya0{bottom:764.880000px;}
.y14f{bottom:765.060000px;}
.y25f{bottom:765.150000px;}
.y7d{bottom:769.290000px;}
.y3c{bottom:769.740000px;}
.y1e2{bottom:770.640000px;}
.ye1{bottom:772.620000px;}
.y127{bottom:773.880000px;}
.y102{bottom:777.480000px;}
.y280{bottom:778.290000px;}
.y179{bottom:778.740000px;}
.y22c{bottom:781.980000px;}
.y14e{bottom:782.700000px;}
.y7c{bottom:786.930000px;}
.y3b{bottom:787.290000px;}
.yb8{bottom:788.190000px;}
.y126{bottom:791.520000px;}
.y9f{bottom:791.790000px;}
.y101{bottom:795.030000px;}
.y178{bottom:796.290000px;}
.ydf{bottom:799.980000px;}
.y3a{bottom:804.930000px;}
.yb7{bottom:805.740000px;}
.y9{bottom:805.830000px;}
.y125{bottom:809.070000px;}
.y100{bottom:812.670000px;}
.y25e{bottom:813.390000px;}
.y177{bottom:813.930000px;}
.y14d{bottom:818.250000px;}
.y5d{bottom:822.480000px;}
.yb6{bottom:823.290000px;}
.y124{bottom:826.620000px;}
.y25d{bottom:831.030000px;}
.y176{bottom:831.480000px;}
.y14c{bottom:835.800000px;}
.y7b{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.yb5{bottom:840.930000px;}
.y8{bottom:841.380000px;}
.yff{bottom:848.220000px;}
.y25c{bottom:848.580000px;}
.yde{bottom:848.670000px;}
.y27f{bottom:849.030000px;}
.y22f{bottom:852.900000px;}
.y123{bottom:853.260000px;}
.y14b{bottom:853.440000px;}
.y7a{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.yb4{bottom:858.480000px;}
.y27e{bottom:866.670000px;}
.y175{bottom:867.030000px;}
.y14a{bottom:870.990000px;}
.y79{bottom:875.220000px;}
.y25b{bottom:875.490000px;}
.y37{bottom:875.670000px;}
.yb3{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.yfe{bottom:883.860000px;}
.ydd{bottom:884.220000px;}
.y174{bottom:884.670000px;}
.y191{bottom:885.390000px;}
.y122{bottom:888.810000px;}
.y9e{bottom:892.860000px;}
.y36{bottom:893.220000px;}
.yb2{bottom:893.670000px;}
.ydc{bottom:901.860000px;}
.y173{bottom:902.220000px;}
.y149{bottom:903.930000px;}
.y221{bottom:905.820000px;}
.y121{bottom:906.450000px;}
.y9d{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.yb1{bottom:911.220000px;}
.y1cb{bottom:912.480000px;}
.y25a{bottom:912.840000px;}
.y6{bottom:913.200000px;}
.ydb{bottom:919.410000px;}
.y172{bottom:919.860000px;}
.y120{bottom:924.000000px;}
.y34{bottom:928.410000px;}
.yb0{bottom:928.860000px;}
.y148{bottom:931.290000px;}
.yda{bottom:936.960000px;}
.y171{bottom:937.410000px;}
.y78{bottom:945.960000px;}
.yaf{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y11f{bottom:950.910000px;}
.yfd{bottom:954.600000px;}
.y170{bottom:954.960000px;}
.y227{bottom:955.140000px;}
.y147{bottom:958.650000px;}
.y1b9{bottom:958.740000px;}
.y259{bottom:961.080000px;}
.y77{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.yd9{bottom:972.600000px;}
.y258{bottom:978.720000px;}
.y9c{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yd8{bottom:990.150000px;}
.y257{bottom:996.270000px;}
.y31{bottom:999.150000px;}
.y223{bottom:1006.440000px;}
.y146{bottom:1007.340000px;}
.yfc{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y256{bottom:1014.750000px;}
.y30{bottom:1016.820000px;}
.yfb{bottom:1025.370000px;}
.y255{bottom:1032.300000px;}
.y2f{bottom:1034.370000px;}
.y16f{bottom:1034.820000px;}
.yfa{bottom:1042.920000px;}
.y254{bottom:1050.750000px;}
.y2e{bottom:1051.920000px;}
.yd7{bottom:1052.370000px;}
.y145{bottom:1060.560000px;}
.y29e{bottom:1060.920000px;}
.y253{bottom:1068.300000px;}
.y5c{bottom:1069.560000px;}
.yd6{bottom:1069.920000px;}
.y220{bottom:1073.970000px;}
.y27d{bottom:1078.560000px;}
.y252{bottom:1085.850000px;}
.y2d{bottom:1087.560000px;}
.y1b8{bottom:1091.610000px;}
.y144{bottom:1096.110000px;}
.y251{bottom:1104.300000px;}
.y2c{bottom:1105.110000px;}
.y143{bottom:1113.750000px;}
.y250{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y24f{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h10{height:44.100000px;}
.h1f{height:44.190000px;}
.h23{height:48.510000px;}
.h22{height:50.580000px;}
.h6{height:50.902383px;}
.h25{height:52.200000px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h7{height:60.960938px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h21{height:66.810000px;}
.h8{height:68.582109px;}
.h26{height:70.110000px;}
.h4{height:71.019492px;}
.h27{height:93.420000px;}
.h15{height:96.960000px;}
.h14{height:101.430000px;}
.h1a{height:114.480000px;}
.h19{height:114.510000px;}
.h24{height:123.120000px;}
.h16{height:132.150000px;}
.h1c{height:141.120000px;}
.h11{height:149.670000px;}
.h18{height:167.310000px;}
.h20{height:167.430000px;}
.h1b{height:178.410000px;}
.h1d{height:183.330000px;}
.h1e{height:219.270000px;}
.h17{height:237.600000px;}
.h13{height:255.240000px;}
.h12{height:268.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:34.200000px;}
.wb{width:51.750000px;}
.wa{width:53.190000px;}
.w7{width:53.220000px;}
.wd{width:65.250000px;}
.wc{width:71.580000px;}
.we{width:74.880000px;}
.wf{width:83.160000px;}
.w1b{width:90.750000px;}
.w5{width:93.690000px;}
.w18{width:111.690000px;}
.w4{width:122.430000px;}
.w14{width:125.730000px;}
.w13{width:130.590000px;}
.w17{width:135.630000px;}
.w3{width:138.870000px;}
.w1e{width:144.390000px;}
.w1d{width:149.130000px;}
.w19{width:152.220000px;}
.w11{width:160.500000px;}
.w1c{width:162.990000px;}
.w15{width:173.280000px;}
.w6{width:195.930000px;}
.w1a{width:197.730000px;}
.w9{width:248.430000px;}
.w20{width:273.060000px;}
.w10{width:297.210000px;}
.w16{width:332.850000px;}
.w12{width:336.540000px;}
.w1f{width:336.810000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x22{left:34.740000px;}
.x23{left:61.740000px;}
.x1{left:68.040000px;}
.xf{left:71.279987px;}
.x6{left:95.039987px;}
.x27{left:111.239987px;}
.x11{left:120.150000px;}
.x26{left:122.039987px;}
.x7{left:149.039987px;}
.x2{left:202.799987px;}
.x24{left:213.870000px;}
.x1e{left:221.700000px;}
.x18{left:229.980000px;}
.x1b{left:242.850000px;}
.x8{left:268.320000px;}
.xc{left:304.140000px;}
.x5{left:345.809987px;}
.x12{left:369.390000px;}
.x10{left:373.259987px;}
.xa{left:408.000000px;}
.x1f{left:420.150000px;}
.x13{left:423.390000px;}
.x14{left:475.860000px;}
.xd{left:500.880000px;}
.x20{left:511.620000px;}
.xb{left:531.240000px;}
.x15{left:548.160000px;}
.x25{left:551.400000px;}
.xe{left:554.910000px;}
.x19{left:567.330000px;}
.x1c{left:576.420000px;}
.x16{left:614.220000px;}
.x21{left:675.330000px;}
.x4{left:677.309987px;}
.x17{left:689.910000px;}
.x1a{left:698.730000px;}
.x1d{left:712.770000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.213867pt;}
.lse{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.140800pt;}
.ls22{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.053867pt;}
.ls21{letter-spacing:-0.034560pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.039040pt;}
.lsc{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls20{letter-spacing:0.054400pt;}
.ls12{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.086933pt;}
.ls1f{letter-spacing:0.087467pt;}
.ls28{letter-spacing:0.103467pt;}
.ls1b{letter-spacing:0.104000pt;}
.ls1d{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.158933pt;}
.ls16{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls27{letter-spacing:42.423680pt;}
.ls14{letter-spacing:49.250347pt;}
.ls13{letter-spacing:56.503680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.933867pt;}
.ws1a{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.861867pt;}
.ws1b{word-spacing:-11.860267pt;}
.ws15{word-spacing:-11.844267pt;}
.ws12{word-spacing:-11.843733pt;}
.wsc{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.795840pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws16{word-spacing:-11.722240pt;}
.wse{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.674667pt;}
.ws17{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws2{word-spacing:-11.542933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws19{word-spacing:-7.762133pt;}
.ws14{word-spacing:-7.603200pt;}
.ws18{word-spacing:-7.462400pt;}
.wsd{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._6{margin-left:-3.430935pt;}
._4{margin-left:-2.458133pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.939307pt;}
._1{width:1.938635pt;}
._5{width:2.967105pt;}
._a{width:3.969581pt;}
._3{width:4.862933pt;}
._7{width:6.306134pt;}
._8{width:7.213331pt;}
._9{width:8.283200pt;}
._c{width:9.245120pt;}
._b{width:10.688000pt;}
._d{width:12.684693pt;}
._11{width:13.680640pt;}
._10{width:14.963200pt;}
._15{width:15.978560pt;}
._e{width:17.528320pt;}
._f{width:18.509653pt;}
._14{width:19.913707pt;}
._20{width:20.812373pt;}
._2c{width:21.886187pt;}
._34{width:23.086080pt;}
._13{width:24.247147pt;}
._12{width:25.223680pt;}
._27{width:27.116480pt;}
._26{width:28.109440pt;}
._22{width:29.945813pt;}
._19{width:31.155520pt;}
._1a{width:32.064000pt;}
._24{width:32.972480pt;}
._39{width:34.094720pt;}
._25{width:35.824213pt;}
._18{width:36.927040pt;}
._4c{width:37.995840pt;}
._30{width:39.011200pt;}
._2b{width:40.454080pt;}
._33{width:41.950400pt;}
._1c{width:43.519573pt;}
._1b{width:44.408640pt;}
._31{width:46.011840pt;}
._32{width:47.027200pt;}
._17{width:48.096000pt;}
._46{width:49.699200pt;}
._4b{width:51.195520pt;}
._21{width:52.424640pt;}
._29{width:53.814080pt;}
._53{width:55.256960pt;}
._16{width:56.860160pt;}
._1d{width:58.723520pt;}
._52{width:60.051947pt;}
._2e{width:61.402560pt;}
._3b{width:62.898880pt;}
._4a{width:63.914240pt;}
._55{width:65.697173pt;}
._38{width:66.639680pt;}
._45{width:72.678400pt;}
._2a{width:74.548800pt;}
._40{width:78.449920pt;}
._4e{width:87.320960pt;}
._36{width:89.405120pt;}
._3a{width:94.802560pt;}
._28{width:97.528000pt;}
._1e{width:102.497920pt;}
._42{width:103.406400pt;}
._37{width:106.719680pt;}
._3e{width:109.979520pt;}
._48{width:111.208640pt;}
._3f{width:115.430400pt;}
._54{width:117.621440pt;}
._2d{width:122.067520pt;}
._43{width:132.424320pt;}
._2f{width:133.867200pt;}
._3d{width:137.394240pt;}
._23{width:141.081600pt;}
._44{width:143.539840pt;}
._51{width:145.730880pt;}
._4d{width:148.296000pt;}
._3c{width:163.633280pt;}
._4f{width:166.412160pt;}
._1f{width:169.672000pt;}
._47{width:175.977920pt;}
._49{width:180.253120pt;}
._41{width:184.154240pt;}
._50{width:206.171520pt;}
._35{width:226.525760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:2.960000pt;}
.ye0{bottom:6.960000pt;}
.ye3{bottom:7.040000pt;}
.y1ed{bottom:9.520000pt;}
.y234{bottom:10.480000pt;}
.y23a{bottom:10.800000pt;}
.y22b{bottom:10.880000pt;}
.y1aa{bottom:10.960000pt;}
.y226{bottom:11.466667pt;}
.y229{bottom:12.720000pt;}
.y231{bottom:14.080000pt;}
.y1dc{bottom:18.640000pt;}
.y1f2{bottom:20.400000pt;}
.y1d3{bottom:20.480000pt;}
.y188{bottom:22.560000pt;}
.y190{bottom:22.640000pt;}
.y1ec{bottom:25.120000pt;}
.y233{bottom:26.080000pt;}
.y22a{bottom:26.480000pt;}
.y1a9{bottom:26.640000pt;}
.y225{bottom:27.146667pt;}
.y228{bottom:28.320000pt;}
.y230{bottom:29.760000pt;}
.y235{bottom:30.080000pt;}
.y1db{bottom:34.240000pt;}
.y1f1{bottom:36.080000pt;}
.y18f{bottom:38.240000pt;}
.y1ae{bottom:38.266667pt;}
.y1bf{bottom:38.320000pt;}
.y1d2{bottom:40.080000pt;}
.y1a8{bottom:42.240000pt;}
.y203{bottom:42.320000pt;}
.y224{bottom:42.746667pt;}
.y213{bottom:42.960000pt;}
.y1eb{bottom:45.520000pt;}
.y232{bottom:45.680000pt;}
.y19d{bottom:45.920000pt;}
.y1da{bottom:50.640000pt;}
.y238{bottom:50.800000pt;}
.y1f0{bottom:51.680000pt;}
.y1ad{bottom:53.866667pt;}
.y18e{bottom:53.920000pt;}
.y1a7{bottom:57.840000pt;}
.y202{bottom:57.920000pt;}
.y212{bottom:58.560000pt;}
.y1d1{bottom:59.760000pt;}
.y1ea{bottom:61.120000pt;}
.y19c{bottom:61.600000pt;}
.y1e6{bottom:61.920000pt;}
.y1ff{bottom:62.640000pt;}
.y2{bottom:65.226667pt;}
.y1bc{bottom:65.546667pt;}
.y29{bottom:65.946667pt;}
.y1d9{bottom:66.240000pt;}
.y237{bottom:66.400000pt;}
.y1f9{bottom:68.160000pt;}
.y18d{bottom:69.520000pt;}
.y1ac{bottom:69.546667pt;}
.y1ef{bottom:72.080000pt;}
.y1a6{bottom:73.520000pt;}
.y1e9{bottom:76.800000pt;}
.y22e{bottom:77.120000pt;}
.y19b{bottom:77.200000pt;}
.y1e5{bottom:77.520000pt;}
.y1fe{bottom:78.240000pt;}
.y211{bottom:78.960000pt;}
.y1d0{bottom:79.360000pt;}
.y1d8{bottom:81.840000pt;}
.y1f8{bottom:83.760000pt;}
.y1e1{bottom:84.720000pt;}
.y1c4{bottom:85.120000pt;}
.y1bb{bottom:85.146667pt;}
.y18c{bottom:85.200000pt;}
.y1ee{bottom:87.680000pt;}
.y1{bottom:90.346667pt;}
.y1e8{bottom:92.400000pt;}
.y22d{bottom:92.800000pt;}
.y19a{bottom:92.880000pt;}
.y1e4{bottom:93.120000pt;}
.y201{bottom:93.920000pt;}
.y210{bottom:94.666667pt;}
.y1cf{bottom:94.986667pt;}
.y1d7{bottom:98.266667pt;}
.y1fd{bottom:98.640000pt;}
.y1f7{bottom:99.360000pt;}
.y20a{bottom:100.106667pt;}
.y18b{bottom:100.800000pt;}
.y1ba{bottom:100.826667pt;}
.y9b{bottom:102.826667pt;}
.y76{bottom:103.946667pt;}
.y1e0{bottom:105.146667pt;}
.y218{bottom:105.546667pt;}
.yae{bottom:106.666667pt;}
.y1e7{bottom:108.000000pt;}
.y1e3{bottom:108.800000pt;}
.y11e{bottom:109.386667pt;}
.y200{bottom:109.520000pt;}
.y20f{bottom:110.266667pt;}
.y1ce{bottom:110.666667pt;}
.yf9{bottom:111.386667pt;}
.y199{bottom:112.506667pt;}
.yd5{bottom:113.226667pt;}
.y1d6{bottom:113.946667pt;}
.y1fc{bottom:114.320000pt;}
.y1f6{bottom:115.040000pt;}
.y142{bottom:115.386667pt;}
.y209{bottom:115.786667pt;}
.y18a{bottom:116.400000pt;}
.y1c1{bottom:116.480000pt;}
.y9a{bottom:118.506667pt;}
.y2af{bottom:118.826667pt;}
.y75{bottom:119.626667pt;}
.y1df{bottom:120.746667pt;}
.y217{bottom:121.146667pt;}
.y24e{bottom:122.106667pt;}
.yad{bottom:122.266667pt;}
.y11d{bottom:124.986667pt;}
.y1cd{bottom:126.266667pt;}
.y27{bottom:126.666667pt;}
.yf8{bottom:126.986667pt;}
.y198{bottom:128.106667pt;}
.yd4{bottom:128.826667pt;}
.y1d5{bottom:129.546667pt;}
.y1fb{bottom:129.920000pt;}
.y27c{bottom:130.506667pt;}
.y1f5{bottom:130.640000pt;}
.y20e{bottom:130.666667pt;}
.y141{bottom:131.066667pt;}
.y208{bottom:131.386667pt;}
.y5b{bottom:132.026667pt;}
.y1a4{bottom:132.080000pt;}
.y222{bottom:132.186667pt;}
.y99{bottom:134.106667pt;}
.y2ae{bottom:134.506667pt;}
.y74{bottom:135.226667pt;}
.y1ca{bottom:138.586667pt;}
.y16e{bottom:139.466667pt;}
.y11c{bottom:140.666667pt;}
.y1de{bottom:141.146667pt;}
.y216{bottom:141.546667pt;}
.y1cc{bottom:141.946667pt;}
.y26{bottom:142.266667pt;}
.yf7{bottom:142.666667pt;}
.y29d{bottom:142.826667pt;}
.y197{bottom:143.786667pt;}
.yd3{bottom:144.426667pt;}
.y1d4{bottom:145.146667pt;}
.y1fa{bottom:145.520000pt;}
.y27b{bottom:146.106667pt;}
.y20d{bottom:146.266667pt;}
.y1f4{bottom:146.320000pt;}
.y140{bottom:146.666667pt;}
.y207{bottom:146.986667pt;}
.y1a3{bottom:147.680000pt;}
.y5a{bottom:147.706667pt;}
.y98{bottom:149.786667pt;}
.y2ad{bottom:150.106667pt;}
.y73{bottom:150.826667pt;}
.yac{bottom:153.946667pt;}
.y24d{bottom:154.506667pt;}
.y16d{bottom:155.066667pt;}
.y215{bottom:157.146667pt;}
.yf6{bottom:158.266667pt;}
.y29c{bottom:158.506667pt;}
.y196{bottom:159.386667pt;}
.y189{bottom:161.786667pt;}
.y20c{bottom:161.946667pt;}
.y13f{bottom:162.346667pt;}
.y206{bottom:162.666667pt;}
.y1a2{bottom:163.280000pt;}
.y59{bottom:163.306667pt;}
.y1be{bottom:163.360000pt;}
.y72{bottom:166.506667pt;}
.yd2{bottom:168.106667pt;}
.yab{bottom:169.546667pt;}
.y27a{bottom:169.786667pt;}
.y1c9{bottom:170.186667pt;}
.y16c{bottom:170.746667pt;}
.y1b7{bottom:171.466667pt;}
.y11b{bottom:172.266667pt;}
.y2ac{bottom:173.786667pt;}
.y25{bottom:173.866667pt;}
.yf5{bottom:173.946667pt;}
.y195{bottom:174.986667pt;}
.y214{bottom:177.466667pt;}
.y20b{bottom:177.546667pt;}
.y13e{bottom:177.946667pt;}
.y205{bottom:178.266667pt;}
.y24c{bottom:178.426667pt;}
.y21f{bottom:178.746667pt;}
.y58{bottom:178.906667pt;}
.y1a1{bottom:178.960000pt;}
.y97{bottom:181.386667pt;}
.y29b{bottom:182.106667pt;}
.yaa{bottom:185.226667pt;}
.y279{bottom:185.386667pt;}
.y16b{bottom:186.346667pt;}
.y11a{bottom:187.946667pt;}
.y2ab{bottom:189.386667pt;}
.y24{bottom:189.546667pt;}
.y194{bottom:190.666667pt;}
.y13d{bottom:193.546667pt;}
.y1a0{bottom:194.560000pt;}
.y57{bottom:194.586667pt;}
.y96{bottom:196.986667pt;}
.y29a{bottom:197.786667pt;}
.y71{bottom:198.106667pt;}
.yd1{bottom:200.026667pt;}
.ya9{bottom:200.826667pt;}
.y1c8{bottom:201.866667pt;}
.y16a{bottom:202.026667pt;}
.y1b6{bottom:203.066667pt;}
.y119{bottom:203.546667pt;}
.y2aa{bottom:204.986667pt;}
.y23{bottom:205.146667pt;}
.y193{bottom:206.266667pt;}
.y278{bottom:208.986667pt;}
.y13c{bottom:209.226667pt;}
.y56{bottom:210.186667pt;}
.y19f{bottom:210.240000pt;}
.y21e{bottom:210.426667pt;}
.y24b{bottom:211.386667pt;}
.y95{bottom:212.666667pt;}
.y299{bottom:213.386667pt;}
.y70{bottom:213.786667pt;}
.ya8{bottom:216.426667pt;}
.y1c7{bottom:217.466667pt;}
.y169{bottom:217.626667pt;}
.y118{bottom:219.146667pt;}
.y22{bottom:220.746667pt;}
.yf4{bottom:220.826667pt;}
.y192{bottom:221.946667pt;}
.y277{bottom:224.666667pt;}
.y21d{bottom:226.026667pt;}
.y24a{bottom:226.986667pt;}
.y2a9{bottom:228.666667pt;}
.y6f{bottom:229.386667pt;}
.ya7{bottom:232.106667pt;}
.y1c6{bottom:233.066667pt;}
.y1b5{bottom:234.746667pt;}
.y21{bottom:236.426667pt;}
.y298{bottom:236.986667pt;}
.y276{bottom:240.266667pt;}
.y13b{bottom:240.826667pt;}
.y21c{bottom:241.626667pt;}
.y55{bottom:241.866667pt;}
.y117{bottom:242.826667pt;}
.yd0{bottom:242.906667pt;}
.y249{bottom:243.386667pt;}
.y94{bottom:244.266667pt;}
.y6e{bottom:244.986667pt;}
.y168{bottom:249.226667pt;}
.y20{bottom:252.026667pt;}
.yf3{bottom:252.426667pt;}
.y297{bottom:252.666667pt;}
.y13a{bottom:256.426667pt;}
.y1c5{bottom:256.746667pt;}
.y21b{bottom:257.306667pt;}
.y54{bottom:257.466667pt;}
.y248{bottom:258.986667pt;}
.y93{bottom:259.946667pt;}
.ya6{bottom:263.706667pt;}
.y275{bottom:263.946667pt;}
.y167{bottom:264.906667pt;}
.y1b4{bottom:266.346667pt;}
.y2a8{bottom:267.946667pt;}
.yf2{bottom:268.106667pt;}
.y296{bottom:268.266667pt;}
.y21a{bottom:272.906667pt;}
.y53{bottom:273.066667pt;}
.y116{bottom:274.426667pt;}
.ycf{bottom:274.506667pt;}
.y247{bottom:274.586667pt;}
.y92{bottom:275.546667pt;}
.y6d{bottom:276.666667pt;}
.y274{bottom:279.546667pt;}
.y166{bottom:280.506667pt;}
.y1b3{bottom:282.026667pt;}
.y2a7{bottom:283.546667pt;}
.y1f{bottom:283.706667pt;}
.y295{bottom:283.946667pt;}
.y1c3{bottom:286.026667pt;}
.y139{bottom:288.106667pt;}
.y52{bottom:288.746667pt;}
.y115{bottom:290.106667pt;}
.y6c{bottom:292.266667pt;}
.ya5{bottom:292.346667pt;}
.y187{bottom:295.546667pt;}
.y165{bottom:296.106667pt;}
.y219{bottom:296.586667pt;}
.y1b2{bottom:297.626667pt;}
.yce{bottom:298.106667pt;}
.y2a6{bottom:299.146667pt;}
.y1e{bottom:299.306667pt;}
.y273{bottom:303.146667pt;}
.y138{bottom:303.706667pt;}
.y51{bottom:304.346667pt;}
.y114{bottom:305.706667pt;}
.y246{bottom:306.986667pt;}
.y91{bottom:307.146667pt;}
.y294{bottom:307.546667pt;}
.y6b{bottom:307.946667pt;}
.y164{bottom:311.786667pt;}
.y1b1{bottom:313.226667pt;}
.y1d{bottom:314.906667pt;}
.yf1{bottom:314.986667pt;}
.y272{bottom:318.826667pt;}
.y137{bottom:319.386667pt;}
.y50{bottom:319.946667pt;}
.y113{bottom:321.306667pt;}
.y90{bottom:322.826667pt;}
.y293{bottom:323.146667pt;}
.y6a{bottom:323.546667pt;}
.y204{bottom:325.866667pt;}
.ycd{bottom:327.066667pt;}
.y163{bottom:327.386667pt;}
.y1b0{bottom:328.906667pt;}
.y1c{bottom:330.586667pt;}
.y245{bottom:330.906667pt;}
.y136{bottom:334.986667pt;}
.y8f{bottom:338.426667pt;}
.y292{bottom:338.826667pt;}
.y271{bottom:342.426667pt;}
.y162{bottom:343.066667pt;}
.ycc{bottom:343.466667pt;}
.y4f{bottom:343.866667pt;}
.y1b{bottom:346.186667pt;}
.yf0{bottom:346.266667pt;}
.y135{bottom:350.586667pt;}
.y1af{bottom:352.506667pt;}
.y112{bottom:352.986667pt;}
.y8e{bottom:354.106667pt;}
.y186{bottom:354.426667pt;}
.y69{bottom:355.146667pt;}
.y270{bottom:358.106667pt;}
.ycb{bottom:359.866667pt;}
.y1a{bottom:361.866667pt;}
.y2a5{bottom:362.106667pt;}
.y291{bottom:362.426667pt;}
.y161{bottom:366.666667pt;}
.y111{bottom:368.586667pt;}
.y68{bottom:370.826667pt;}
.y26f{bottom:373.706667pt;}
.y244{bottom:373.786667pt;}
.yca{bottom:376.186667pt;}
.yef{bottom:377.866667pt;}
.y290{bottom:378.106667pt;}
.y134{bottom:381.626667pt;}
.y1ab{bottom:381.866667pt;}
.y160{bottom:382.266667pt;}
.y8d{bottom:385.706667pt;}
.y19{bottom:385.786667pt;}
.y185{bottom:386.106667pt;}
.y67{bottom:386.426667pt;}
.y4e{bottom:386.826667pt;}
.y1c2{bottom:388.506667pt;}
.y243{bottom:389.466667pt;}
.yc9{bottom:392.586667pt;}
.yee{bottom:393.466667pt;}
.y28f{bottom:393.706667pt;}
.y133{bottom:394.106667pt;}
.y26e{bottom:397.306667pt;}
.y110{bottom:400.266667pt;}
.y8c{bottom:401.306667pt;}
.y66{bottom:402.106667pt;}
.y4d{bottom:402.426667pt;}
.y132{bottom:404.906667pt;}
.yc8{bottom:408.986667pt;}
.y26d{bottom:412.986667pt;}
.y15f{bottom:413.946667pt;}
.y10f{bottom:415.866667pt;}
.y8b{bottom:416.986667pt;}
.y28e{bottom:417.306667pt;}
.y65{bottom:417.733333pt;}
.y4c{bottom:418.133333pt;}
.y242{bottom:421.093333pt;}
.yc7{bottom:424.613333pt;}
.y2a4{bottom:425.013333pt;}
.yed{bottom:425.173333pt;}
.y26c{bottom:428.613333pt;}
.y18{bottom:429.013333pt;}
.y131{bottom:429.253333pt;}
.y15e{bottom:429.573333pt;}
.y10e{bottom:431.493333pt;}
.y8a{bottom:432.613333pt;}
.y28d{bottom:433.013333pt;}
.y64{bottom:433.333333pt;}
.y4b{bottom:433.733333pt;}
.yc6{bottom:440.293333pt;}
.y2a3{bottom:440.613333pt;}
.yec{bottom:440.773333pt;}
.y15d{bottom:445.253333pt;}
.y89{bottom:448.293333pt;}
.y63{bottom:449.013333pt;}
.y4a{bottom:449.333333pt;}
.y26b{bottom:452.293333pt;}
.y241{bottom:452.693333pt;}
.y130{bottom:453.573333pt;}
.yc5{bottom:455.893333pt;}
.y28c{bottom:456.613333pt;}
.y15c{bottom:460.853333pt;}
.y17{bottom:461.893333pt;}
.y10d{bottom:463.173333pt;}
.y88{bottom:463.893333pt;}
.y2a2{bottom:464.293333pt;}
.yeb{bottom:464.453333pt;}
.y184{bottom:464.613333pt;}
.y49{bottom:465.013333pt;}
.y26a{bottom:467.893333pt;}
.y240{bottom:468.373333pt;}
.y1a5{bottom:468.693333pt;}
.yc4{bottom:471.493333pt;}
.y28b{bottom:472.293333pt;}
.y15b{bottom:476.453333pt;}
.y16{bottom:477.493333pt;}
.y12f{bottom:477.893333pt;}
.y10c{bottom:478.773333pt;}
.y87{bottom:479.493333pt;}
.y2a1{bottom:479.893333pt;}
.y183{bottom:480.293333pt;}
.y48{bottom:480.613333pt;}
.y269{bottom:483.493333pt;}
.yc3{bottom:487.893333pt;}
.y1c0{bottom:490.933333pt;}
.y15a{bottom:492.133333pt;}
.y15{bottom:493.173333pt;}
.yea{bottom:496.053333pt;}
.y47{bottom:496.293333pt;}
.y23f{bottom:499.973333pt;}
.y12e{bottom:502.133333pt;}
.y10b{bottom:502.453333pt;}
.yc2{bottom:503.493333pt;}
.y182{bottom:503.893333pt;}
.y268{bottom:507.173333pt;}
.y159{bottom:507.733333pt;}
.y14{bottom:508.773333pt;}
.y86{bottom:511.173333pt;}
.y28a{bottom:511.493333pt;}
.ye9{bottom:511.653333pt;}
.y62{bottom:511.893333pt;}
.y23e{bottom:515.653333pt;}
.yc1{bottom:519.173333pt;}
.y1f3{bottom:521.413333pt;}
.y267{bottom:522.773333pt;}
.y158{bottom:523.413333pt;}
.y13{bottom:524.373333pt;}
.y12d{bottom:526.453333pt;}
.y85{bottom:526.773333pt;}
.y289{bottom:527.173333pt;}
.y61{bottom:527.493333pt;}
.y46{bottom:527.893333pt;}
.y23d{bottom:531.253333pt;}
.y10a{bottom:534.053333pt;}
.yc0{bottom:534.773333pt;}
.y181{bottom:535.493333pt;}
.y157{bottom:539.013333pt;}
.y12{bottom:540.053333pt;}
.ye8{bottom:541.013333pt;}
.y84{bottom:542.453333pt;}
.y60{bottom:543.173333pt;}
.y45{bottom:543.493333pt;}
.y266{bottom:546.453333pt;}
.y23c{bottom:546.853333pt;}
.y109{bottom:549.653333pt;}
.ybf{bottom:550.453333pt;}
.y288{bottom:550.773333pt;}
.y180{bottom:551.173333pt;}
.y156{bottom:554.613333pt;}
.y11{bottom:555.653333pt;}
.y83{bottom:558.053333pt;}
.y2a0{bottom:558.453333pt;}
.y5f{bottom:558.773333pt;}
.y44{bottom:559.173333pt;}
.y19e{bottom:559.493333pt;}
.ye7{bottom:565.253333pt;}
.y108{bottom:565.333333pt;}
.ybe{bottom:566.053333pt;}
.y287{bottom:566.453333pt;}
.y17f{bottom:566.773333pt;}
.y12c{bottom:569.733333pt;}
.y265{bottom:570.053333pt;}
.y155{bottom:570.293333pt;}
.y23b{bottom:570.773333pt;}
.y10{bottom:571.333333pt;}
.y5e{bottom:574.453333pt;}
.y43{bottom:574.773333pt;}
.y107{bottom:580.933333pt;}
.ybd{bottom:581.653333pt;}
.y286{bottom:582.053333pt;}
.y17e{bottom:582.453333pt;}
.y264{bottom:585.653333pt;}
.yf{bottom:586.933333pt;}
.ye6{bottom:589.573333pt;}
.y82{bottom:589.653333pt;}
.y42{bottom:590.453333pt;}
.y106{bottom:596.613333pt;}
.ybc{bottom:597.253333pt;}
.y285{bottom:597.653333pt;}
.y17d{bottom:598.053333pt;}
.y263{bottom:601.333333pt;}
.y12b{bottom:601.413333pt;}
.y154{bottom:601.893333pt;}
.ye{bottom:602.533333pt;}
.y81{bottom:605.333333pt;}
.y41{bottom:606.053333pt;}
.y236{bottom:611.413333pt;}
.y29f{bottom:613.333333pt;}
.y17c{bottom:613.653333pt;}
.ye5{bottom:613.893333pt;}
.ya4{bottom:617.413333pt;}
.y153{bottom:617.573333pt;}
.yd{bottom:618.213333pt;}
.y80{bottom:620.933333pt;}
.y284{bottom:621.333333pt;}
.y40{bottom:621.653333pt;}
.y262{bottom:624.933333pt;}
.y12a{bottom:625.013333pt;}
.y105{bottom:628.213333pt;}
.ybb{bottom:629.653333pt;}
.ya3{bottom:633.013333pt;}
.y152{bottom:633.173333pt;}
.yc{bottom:633.813333pt;}
.y283{bottom:636.933333pt;}
.y3f{bottom:637.333333pt;}
.ye4{bottom:638.213333pt;}
.y1bd{bottom:640.293333pt;}
.y261{bottom:640.613333pt;}
.y104{bottom:643.813333pt;}
.yba{bottom:645.333333pt;}
.ya2{bottom:648.613333pt;}
.y151{bottom:648.773333pt;}
.yb{bottom:649.493333pt;}
.y7f{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.y239{bottom:655.173333pt;}
.y260{bottom:656.213333pt;}
.y129{bottom:656.613333pt;}
.y103{bottom:659.493333pt;}
.y282{bottom:660.613333pt;}
.y17b{bottom:660.933333pt;}
.ye2{bottom:662.453333pt;}
.ya1{bottom:664.293333pt;}
.y150{bottom:664.453333pt;}
.y7e{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.yb9{bottom:668.933333pt;}
.y128{bottom:672.293333pt;}
.ya{bottom:673.413333pt;}
.y281{bottom:676.213333pt;}
.y17a{bottom:676.613333pt;}
.ya0{bottom:679.893333pt;}
.y14f{bottom:680.053333pt;}
.y25f{bottom:680.133333pt;}
.y7d{bottom:683.813333pt;}
.y3c{bottom:684.213333pt;}
.y1e2{bottom:685.013333pt;}
.ye1{bottom:686.773333pt;}
.y127{bottom:687.893333pt;}
.y102{bottom:691.093333pt;}
.y280{bottom:691.813333pt;}
.y179{bottom:692.213333pt;}
.y22c{bottom:695.093333pt;}
.y14e{bottom:695.733333pt;}
.y7c{bottom:699.493333pt;}
.y3b{bottom:699.813333pt;}
.yb8{bottom:700.613333pt;}
.y126{bottom:703.573333pt;}
.y9f{bottom:703.813333pt;}
.y101{bottom:706.693333pt;}
.y178{bottom:707.813333pt;}
.ydf{bottom:711.093333pt;}
.y3a{bottom:715.493333pt;}
.yb7{bottom:716.213333pt;}
.y9{bottom:716.293333pt;}
.y125{bottom:719.173333pt;}
.y100{bottom:722.373333pt;}
.y25e{bottom:723.013333pt;}
.y177{bottom:723.493333pt;}
.y14d{bottom:727.333333pt;}
.y5d{bottom:731.093333pt;}
.yb6{bottom:731.813333pt;}
.y124{bottom:734.773333pt;}
.y25d{bottom:738.693333pt;}
.y176{bottom:739.093333pt;}
.y14c{bottom:742.933333pt;}
.y7b{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.yb5{bottom:747.493333pt;}
.y8{bottom:747.893333pt;}
.yff{bottom:753.973333pt;}
.y25c{bottom:754.293333pt;}
.yde{bottom:754.373333pt;}
.y27f{bottom:754.693333pt;}
.y22f{bottom:758.133333pt;}
.y123{bottom:758.453333pt;}
.y14b{bottom:758.613333pt;}
.y7a{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.yb4{bottom:763.093333pt;}
.y27e{bottom:770.373333pt;}
.y175{bottom:770.693333pt;}
.y14a{bottom:774.213333pt;}
.y79{bottom:777.973333pt;}
.y25b{bottom:778.213333pt;}
.y37{bottom:778.373333pt;}
.yb3{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.yfe{bottom:785.653333pt;}
.ydd{bottom:785.973333pt;}
.y174{bottom:786.373333pt;}
.y191{bottom:787.013333pt;}
.y122{bottom:790.053333pt;}
.y9e{bottom:793.653333pt;}
.y36{bottom:793.973333pt;}
.yb2{bottom:794.373333pt;}
.ydc{bottom:801.653333pt;}
.y173{bottom:801.973333pt;}
.y149{bottom:803.493333pt;}
.y221{bottom:805.173333pt;}
.y121{bottom:805.733333pt;}
.y9d{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.yb1{bottom:809.973333pt;}
.y1cb{bottom:811.093333pt;}
.y25a{bottom:811.413333pt;}
.y6{bottom:811.733333pt;}
.ydb{bottom:817.253333pt;}
.y172{bottom:817.653333pt;}
.y120{bottom:821.333333pt;}
.y34{bottom:825.253333pt;}
.yb0{bottom:825.653333pt;}
.y148{bottom:827.813333pt;}
.yda{bottom:832.853333pt;}
.y171{bottom:833.253333pt;}
.y78{bottom:840.853333pt;}
.yaf{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y11f{bottom:845.253333pt;}
.yfd{bottom:848.533333pt;}
.y170{bottom:848.853333pt;}
.y227{bottom:849.013333pt;}
.y147{bottom:852.133333pt;}
.y1b9{bottom:852.213333pt;}
.y259{bottom:854.293333pt;}
.y77{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.yd9{bottom:864.533333pt;}
.y258{bottom:869.973333pt;}
.y9c{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yd8{bottom:880.133333pt;}
.y257{bottom:885.573333pt;}
.y31{bottom:888.133333pt;}
.y223{bottom:894.613333pt;}
.y146{bottom:895.413333pt;}
.yfc{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y256{bottom:902.000000pt;}
.y30{bottom:903.840000pt;}
.yfb{bottom:911.440000pt;}
.y255{bottom:917.600000pt;}
.y2f{bottom:919.440000pt;}
.y16f{bottom:919.840000pt;}
.yfa{bottom:927.040000pt;}
.y254{bottom:934.000000pt;}
.y2e{bottom:935.040000pt;}
.yd7{bottom:935.440000pt;}
.y145{bottom:942.720000pt;}
.y29e{bottom:943.040000pt;}
.y253{bottom:949.600000pt;}
.y5c{bottom:950.720000pt;}
.yd6{bottom:951.040000pt;}
.y220{bottom:954.640000pt;}
.y27d{bottom:958.720000pt;}
.y252{bottom:965.200000pt;}
.y2d{bottom:966.720000pt;}
.y1b8{bottom:970.320000pt;}
.y144{bottom:974.320000pt;}
.y251{bottom:981.600000pt;}
.y2c{bottom:982.320000pt;}
.y143{bottom:990.000000pt;}
.y250{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y24f{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h10{height:39.200000pt;}
.h1f{height:39.280000pt;}
.h23{height:43.120000pt;}
.h22{height:44.960000pt;}
.h6{height:45.246562pt;}
.h25{height:46.400000pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h7{height:54.187500pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h21{height:59.386667pt;}
.h8{height:60.961875pt;}
.h26{height:62.320000pt;}
.h4{height:63.128437pt;}
.h27{height:83.040000pt;}
.h15{height:86.186667pt;}
.h14{height:90.160000pt;}
.h1a{height:101.760000pt;}
.h19{height:101.786667pt;}
.h24{height:109.440000pt;}
.h16{height:117.466667pt;}
.h1c{height:125.440000pt;}
.h11{height:133.040000pt;}
.h18{height:148.720000pt;}
.h20{height:148.826667pt;}
.h1b{height:158.586667pt;}
.h1d{height:162.960000pt;}
.h1e{height:194.906667pt;}
.h17{height:211.200000pt;}
.h13{height:226.880000pt;}
.h12{height:238.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:30.400000pt;}
.wb{width:46.000000pt;}
.wa{width:47.280000pt;}
.w7{width:47.306667pt;}
.wd{width:58.000000pt;}
.wc{width:63.626667pt;}
.we{width:66.560000pt;}
.wf{width:73.920000pt;}
.w1b{width:80.666667pt;}
.w5{width:83.280000pt;}
.w18{width:99.280000pt;}
.w4{width:108.826667pt;}
.w14{width:111.760000pt;}
.w13{width:116.080000pt;}
.w17{width:120.560000pt;}
.w3{width:123.440000pt;}
.w1e{width:128.346667pt;}
.w1d{width:132.560000pt;}
.w19{width:135.306667pt;}
.w11{width:142.666667pt;}
.w1c{width:144.880000pt;}
.w15{width:154.026667pt;}
.w6{width:174.160000pt;}
.w1a{width:175.760000pt;}
.w9{width:220.826667pt;}
.w20{width:242.720000pt;}
.w10{width:264.186667pt;}
.w16{width:295.866667pt;}
.w12{width:299.146667pt;}
.w1f{width:299.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x22{left:30.880000pt;}
.x23{left:54.880000pt;}
.x1{left:60.480000pt;}
.xf{left:63.359988pt;}
.x6{left:84.479988pt;}
.x27{left:98.879988pt;}
.x11{left:106.800000pt;}
.x26{left:108.479988pt;}
.x7{left:132.479988pt;}
.x2{left:180.266655pt;}
.x24{left:190.106667pt;}
.x1e{left:197.066667pt;}
.x18{left:204.426667pt;}
.x1b{left:215.866667pt;}
.x8{left:238.506667pt;}
.xc{left:270.346667pt;}
.x5{left:307.386655pt;}
.x12{left:328.346667pt;}
.x10{left:331.786655pt;}
.xa{left:362.666667pt;}
.x1f{left:373.466667pt;}
.x13{left:376.346667pt;}
.x14{left:422.986667pt;}
.xd{left:445.226667pt;}
.x20{left:454.773333pt;}
.xb{left:472.213333pt;}
.x15{left:487.253333pt;}
.x25{left:490.133333pt;}
.xe{left:493.253333pt;}
.x19{left:504.293333pt;}
.x1c{left:512.373333pt;}
.x16{left:545.973333pt;}
.x21{left:600.293333pt;}
.x4{left:602.053322pt;}
.x17{left:613.253333pt;}
.x1a{left:621.093333pt;}
.x1d{left:633.573333pt;}
.x3{left:704.053322pt;}
}




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