
    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_3a13147bd24dd5e3db81bb01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_d3c0faf29d79c0dd440ab6a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_18afd71688f2c41bffc24489.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_20f8b814fbae5f616f7ed798.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_3b27951e2bcef2afdb487880.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_f5fdbb4771391343cd8b274d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_d657c2f3dc0856be80d5a3b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_fb19fae87ce600137d9ab784.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970703;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.253200px;}
.lsc{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.069840px;}
.ls10{letter-spacing:0.082560px;}
.ls15{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.226560px;}
.ls6{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.306720px;}
.ls13{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.lse{letter-spacing:0.504000px;}
.ls19{letter-spacing:8.100000px;}
.ls1a{letter-spacing:8.220000px;}
.ls1c{letter-spacing:21.546720px;}
.ls3{letter-spacing:687.180000px;}
.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;}
}
.wse{word-spacing:-16.596000px;}
.wsf{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.686800px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:1.140480px;}
._0{margin-left:-7.888320px;}
._4{margin-left:-6.415920px;}
._7{margin-left:-4.824000px;}
._8{margin-left:-3.343680px;}
._2{margin-left:-1.648080px;}
._1{width:1.001520px;}
._3{width:2.031600px;}
._f{width:3.468480px;}
._6{width:4.500000px;}
._b{width:5.512320px;}
._c{width:7.098000px;}
._13{width:8.605440px;}
._9{width:9.681120px;}
._10{width:11.533680px;}
._12{width:13.221360px;}
._15{width:16.194960px;}
._16{width:17.268480px;}
._11{width:18.397440px;}
._a{width:19.615680px;}
._d{width:21.345840px;}
._e{width:22.719360px;}
._14{width:24.083280px;}
._1f{width:25.361520px;}
._20{width:27.471840px;}
._21{width:28.507920px;}
._1e{width:29.553600px;}
._1d{width:31.792320px;}
._1b{width:33.858720px;}
._1c{width:38.732160px;}
._19{width:39.894240px;}
._24{width:43.923600px;}
._22{width:77.702400px;}
._23{width:78.749280px;}
._5{width:85.782000px;}
._17{width:150.461040px;}
._1a{width:185.940000px;}
._18{width:201.240000px;}
.fce{color:rgb(77,81,86);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(51,102,255);}
.fcb{color:rgb(160,43,147);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(233,113,50);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(76,148,216);}
.fc9{color:rgb(25,107,36);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(255,80,80);}
.fcd{color:rgb(21,96,130);}
.fc7{color:rgb(78,167,46);}
.fca{color:rgb(15,158,213);}
.fcc{color:rgb(128,53,14);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.240000px;}
.y1f4{bottom:3.285000px;}
.y282{bottom:7.560000px;}
.y154{bottom:10.980000px;}
.y13e{bottom:11.016000px;}
.y12a{bottom:11.025000px;}
.y13b{bottom:11.160000px;}
.y24d{bottom:11.340000px;}
.y13d{bottom:11.700000px;}
.y1f5{bottom:11.745000px;}
.y152{bottom:11.880000px;}
.y209{bottom:11.916000px;}
.y143{bottom:12.855000px;}
.y23b{bottom:15.660000px;}
.y22a{bottom:18.900000px;}
.y220{bottom:19.080000px;}
.y21e{bottom:19.440000px;}
.y24a{bottom:19.980000px;}
.y97{bottom:20.340000px;}
.y195{bottom:20.370000px;}
.ydb{bottom:20.385000px;}
.yd8{bottom:20.514000px;}
.y8c{bottom:20.520000px;}
.ya0{bottom:20.550000px;}
.yb4{bottom:20.556000px;}
.yae{bottom:20.565000px;}
.yf9{bottom:21.630000px;}
.y239{bottom:24.120000px;}
.y281{bottom:24.840000px;}
.y139{bottom:26.850000px;}
.ybf{bottom:27.540000px;}
.yb6{bottom:27.720000px;}
.y250{bottom:28.620000px;}
.y24c{bottom:28.650000px;}
.y228{bottom:28.830000px;}
.y1eb{bottom:28.980000px;}
.y204{bottom:29.025000px;}
.y12f{bottom:29.160000px;}
.y1ee{bottom:29.190000px;}
.y142{bottom:31.755000px;}
.y23a{bottom:32.760000px;}
.y27f{bottom:33.480000px;}
.y111{bottom:34.020000px;}
.ybc{bottom:34.920000px;}
.y134{bottom:35.490000px;}
.y1ca{bottom:35.820000px;}
.y1d6{bottom:35.865000px;}
.y17c{bottom:36.540000px;}
.y21d{bottom:36.720000px;}
.yc{bottom:37.260000px;}
.y248{bottom:37.290000px;}
.y233{bottom:37.440000px;}
.y225{bottom:37.470000px;}
.y8b{bottom:37.620000px;}
.y194{bottom:37.650000px;}
.y202{bottom:37.665000px;}
.yb8{bottom:37.800000px;}
.y1ef{bottom:37.830000px;}
.y253{bottom:37.845000px;}
.y279{bottom:42.120000px;}
.y138{bottom:44.130000px;}
.y95{bottom:44.820000px;}
.ya3{bottom:45.000000px;}
.y230{bottom:45.045000px;}
.y128{bottom:45.180000px;}
.y24f{bottom:45.900000px;}
.y227{bottom:45.930000px;}
.y234{bottom:46.080000px;}
.y12e{bottom:46.260000px;}
.y254{bottom:46.305000px;}
.y1b3{bottom:46.440000px;}
.y27e{bottom:50.580000px;}
.y110{bottom:51.300000px;}
.ybb{bottom:52.200000px;}
.y133{bottom:52.770000px;}
.y180{bottom:53.460000px;}
.y12c{bottom:53.820000px;}
.y21c{bottom:54.000000px;}
.y18f{bottom:54.360000px;}
.y196{bottom:54.540000px;}
.y224{bottom:54.570000px;}
.ycb{bottom:54.900000px;}
.y203{bottom:54.945000px;}
.y1b1{bottom:55.080000px;}
.yb{bottom:57.240000px;}
.y10a{bottom:57.630000px;}
.y278{bottom:59.220000px;}
.y1d3{bottom:60.480000px;}
.y137{bottom:61.230000px;}
.y94{bottom:62.100000px;}
.ya2{bottom:62.280000px;}
.y22f{bottom:62.325000px;}
.y126{bottom:62.460000px;}
.y24e{bottom:63.180000px;}
.y226{bottom:63.210000px;}
.y1b9{bottom:63.540000px;}
.y1b5{bottom:63.585000px;}
.y243{bottom:63.720000px;}
.y27d{bottom:67.860000px;}
.yba{bottom:69.345000px;}
.ydf{bottom:69.480000px;}
.y132{bottom:69.870000px;}
.y17f{bottom:70.740000px;}
.y231{bottom:70.785000px;}
.y1e0{bottom:70.920000px;}
.y12b{bottom:71.100000px;}
.y18e{bottom:71.490000px;}
.y249{bottom:71.850000px;}
.y12d{bottom:72.180000px;}
.y1b8{bottom:72.225000px;}
.y1b4{bottom:72.360000px;}
.ya{bottom:72.720000px;}
.y109{bottom:74.910000px;}
.y277{bottom:76.500000px;}
.y9c{bottom:76.530000px;}
.y136{bottom:78.510000px;}
.yb5{bottom:79.380000px;}
.y222{bottom:79.410000px;}
.y22e{bottom:79.425000px;}
.y1e1{bottom:79.560000px;}
.y127{bottom:79.740000px;}
.y24b{bottom:80.490000px;}
.y257{bottom:80.820000px;}
.y26a{bottom:80.865000px;}
.y27c{bottom:85.140000px;}
.y90{bottom:86.625000px;}
.yde{bottom:86.760000px;}
.y131{bottom:87.150000px;}
.y176{bottom:87.660000px;}
.y1db{bottom:87.870000px;}
.y1df{bottom:88.200000px;}
.y18d{bottom:88.770000px;}
.y174{bottom:89.460000px;}
.y1b7{bottom:89.505000px;}
.y1c8{bottom:93.600000px;}
.y276{bottom:93.780000px;}
.y9b{bottom:93.810000px;}
.y14f{bottom:95.085000px;}
.y135{bottom:95.790000px;}
.y1dd{bottom:96.510000px;}
.y22d{bottom:96.705000px;}
.y246{bottom:98.100000px;}
.y1be{bottom:100.800000px;}
.yc6{bottom:101.010000px;}
.y27b{bottom:102.420000px;}
.y8f{bottom:103.905000px;}
.ydd{bottom:104.040000px;}
.y1da{bottom:105.150000px;}
.y173{bottom:106.560000px;}
.y1ba{bottom:106.740000px;}
.y1b6{bottom:106.785000px;}
.y10f{bottom:108.105000px;}
.y241{bottom:108.360000px;}
.y1c7{bottom:110.880000px;}
.y275{bottom:111.060000px;}
.y9a{bottom:111.090000px;}
.y14e{bottom:112.365000px;}
.y1dc{bottom:113.610000px;}
.y107{bottom:114.300000px;}
.y76{bottom:114.480000px;}
.y26c{bottom:115.380000px;}
.y40{bottom:116.100000px;}
.y23e{bottom:117.000000px;}
.y17a{bottom:117.180000px;}
.y1d0{bottom:117.585000px;}
.y267{bottom:117.720000px;}
.y1bd{bottom:117.900000px;}
.y1d8{bottom:118.260000px;}
.yc5{bottom:118.290000px;}
.ycf{bottom:118.305000px;}
.y17b{bottom:119.340000px;}
.y27a{bottom:119.730000px;}
.y1bb{bottom:120.240000px;}
.y273{bottom:120.420000px;}
.yb0{bottom:121.320000px;}
.y1d9{bottom:122.250000px;}
.y258{bottom:123.300000px;}
.y172{bottom:123.840000px;}
.y26d{bottom:124.020000px;}
.y130{bottom:124.740000px;}
.y10e{bottom:125.385000px;}
.y240{bottom:125.640000px;}
.y145{bottom:125.745000px;}
.y199{bottom:126.180000px;}
.y1c6{bottom:127.980000px;}
.y99{bottom:128.370000px;}
.y270{bottom:129.060000px;}
.y14d{bottom:129.645000px;}
.y208{bottom:129.960000px;}
.y89{bottom:130.140000px;}
.y191{bottom:131.040000px;}
.y106{bottom:131.580000px;}
.y75{bottom:131.760000px;}
.y3f{bottom:133.380000px;}
.y23d{bottom:134.100000px;}
.y19a{bottom:134.820000px;}
.y1cf{bottom:134.865000px;}
.y266{bottom:135.036000px;}
.yee{bottom:135.216000px;}
.yc4{bottom:135.570000px;}
.yce{bottom:135.585000px;}
.y272{bottom:137.700000px;}
.yd1{bottom:138.636000px;}
.y141{bottom:140.040000px;}
.y171{bottom:141.120000px;}
.y23f{bottom:142.740000px;}
.y198{bottom:143.460000px;}
.y144{bottom:144.690000px;}
.y280{bottom:145.470000px;}
.y105{bottom:145.656000px;}
.y10d{bottom:145.980000px;}
.y26f{bottom:146.340000px;}
.y88{bottom:147.276000px;}
.y238{bottom:147.456000px;}
.y74{bottom:148.896000px;}
.y1af{bottom:149.085000px;}
.y160{bottom:149.760000px;}
.y3e{bottom:150.690000px;}
.y1ce{bottom:152.145000px;}
.yed{bottom:152.310000px;}
.yd3{bottom:152.814000px;}
.yc3{bottom:152.850000px;}
.ycd{bottom:152.865000px;}
.y113{bottom:153.360000px;}
.y271{bottom:154.800000px;}
.y170{bottom:158.400000px;}
.y140{bottom:158.970000px;}
.y256{bottom:159.330000px;}
.y1ab{bottom:161.820000px;}
.y182{bottom:162.210000px;}
.yb3{bottom:163.110000px;}
.y1e2{bottom:164.370000px;}
.y87{bottom:164.550000px;}
.y237{bottom:164.730000px;}
.y73{bottom:166.170000px;}
.yec{bottom:166.350000px;}
.y156{bottom:166.710000px;}
.yef{bottom:167.760000px;}
.y3d{bottom:167.790000px;}
.yf8{bottom:168.270000px;}
.y1de{bottom:169.230000px;}
.y265{bottom:169.410000px;}
.y1a0{bottom:169.770000px;}
.yd2{bottom:169.914000px;}
.yc2{bottom:170.130000px;}
.y112{bottom:170.640000px;}
.yf0{bottom:170.970000px;}
.y13c{bottom:174.270000px;}
.y16f{bottom:175.710000px;}
.yd7{bottom:180.210000px;}
.y86{bottom:181.830000px;}
.y236{bottom:182.010000px;}
.y72{bottom:183.450000px;}
.y3c{bottom:185.070000px;}
.y264{bottom:186.690000px;}
.yb2{bottom:187.410000px;}
.yf1{bottom:187.740000px;}
.y16e{bottom:192.990000px;}
.y21a{bottom:194.985000px;}
.y207{bottom:198.210000px;}
.y85{bottom:199.110000px;}
.y71{bottom:200.730000px;}
.y3b{bottom:202.350000px;}
.y263{bottom:203.970000px;}
.yf2{bottom:204.510000px;}
.y16d{bottom:210.090000px;}
.y19f{bottom:211.710000px;}
.yb1{bottom:211.890000px;}
.y219{bottom:212.085000px;}
.y1f8{bottom:215.490000px;}
.y84{bottom:216.390000px;}
.y167{bottom:216.405000px;}
.y15c{bottom:217.650000px;}
.y70{bottom:218.010000px;}
.ya9{bottom:218.925000px;}
.y3a{bottom:219.630000px;}
.y262{bottom:221.250000px;}
.yf3{bottom:221.325000px;}
.yd6{bottom:221.970000px;}
.y10c{bottom:222.270000px;}
.y147{bottom:223.350000px;}
.y1c4{bottom:224.865000px;}
.y13a{bottom:225.210000px;}
.y16c{bottom:227.370000px;}
.y218{bottom:229.365000px;}
.y115{bottom:229.755000px;}
.y166{bottom:233.505000px;}
.y83{bottom:233.670000px;}
.y6f{bottom:235.290000px;}
.ya8{bottom:236.205000px;}
.y18b{bottom:236.565000px;}
.y39{bottom:236.910000px;}
.yf4{bottom:238.110000px;}
.y261{bottom:238.530000px;}
.y20b{bottom:239.430000px;}
.y10b{bottom:239.550000px;}
.y1c2{bottom:242.145000px;}
.y146{bottom:242.250000px;}
.y119{bottom:244.515000px;}
.y16b{bottom:244.650000px;}
.yd5{bottom:246.450000px;}
.y217{bottom:246.645000px;}
.y114{bottom:247.035000px;}
.y206{bottom:249.150000px;}
.y82{bottom:250.770000px;}
.y165{bottom:250.785000px;}
.y6e{bottom:252.390000px;}
.ya7{bottom:253.485000px;}
.ya5{bottom:253.650000px;}
.y18a{bottom:253.665000px;}
.y38{bottom:254.190000px;}
.yf5{bottom:254.880000px;}
.y260{bottom:255.810000px;}
.y1c1{bottom:259.425000px;}
.y149{bottom:260.970000px;}
.y19e{bottom:261.210000px;}
.y118{bottom:261.795000px;}
.y16a{bottom:261.930000px;}
.y185{bottom:262.305000px;}
.y216{bottom:263.925000px;}
.y255{bottom:264.270000px;}
.y15b{bottom:267.705000px;}
.y81{bottom:268.050000px;}
.y15e{bottom:268.065000px;}
.y179{bottom:268.770000px;}
.y6d{bottom:269.670000px;}
.y14b{bottom:270.150000px;}
.ya6{bottom:270.765000px;}
.y189{bottom:270.945000px;}
.y37{bottom:271.290000px;}
.yf6{bottom:271.650000px;}
.y20e{bottom:272.565000px;}
.y25f{bottom:272.910000px;}
.y125{bottom:274.710000px;}
.y1c0{bottom:276.525000px;}
.y161{bottom:276.705000px;}
.y117{bottom:278.895000px;}
.y169{bottom:279.210000px;}
.y184{bottom:279.585000px;}
.y148{bottom:279.870000px;}
.y215{bottom:281.205000px;}
.y1f7{bottom:283.710000px;}
.y159{bottom:284.805000px;}
.y80{bottom:285.330000px;}
.y15d{bottom:285.345000px;}
.y6c{bottom:286.950000px;}
.yd4{bottom:288.210000px;}
.y188{bottom:288.225000px;}
.yf7{bottom:288.435000px;}
.y36{bottom:288.570000px;}
.y14a{bottom:289.050000px;}
.y20d{bottom:289.845000px;}
.y25e{bottom:290.190000px;}
.y235{bottom:290.370000px;}
.y1c3{bottom:293.835000px;}
.yaf{bottom:295.410000px;}
.y116{bottom:296.175000px;}
.y168{bottom:296.490000px;}
.y183{bottom:296.865000px;}
.y214{bottom:298.485000px;}
.y205{bottom:300.270000px;}
.y158{bottom:302.085000px;}
.y7f{bottom:302.610000px;}
.y164{bottom:302.625000px;}
.y6b{bottom:304.230000px;}
.y187{bottom:305.505000px;}
.y35{bottom:305.850000px;}
.y20c{bottom:306.945000px;}
.y25d{bottom:307.470000px;}
.y19d{bottom:310.710000px;}
.y213{bottom:315.585000px;}
.y178{bottom:318.270000px;}
.y157{bottom:319.365000px;}
.y163{bottom:319.725000px;}
.y7e{bottom:319.890000px;}
.y6a{bottom:321.510000px;}
.y186{bottom:322.785000px;}
.y34{bottom:323.130000px;}
.y1ae{bottom:324.210000px;}
.y25c{bottom:324.750000px;}
.ycc{bottom:329.790000px;}
.y212{bottom:332.865000px;}
.y1f6{bottom:334.650000px;}
.y15a{bottom:336.645000px;}
.y7d{bottom:336.990000px;}
.y162{bottom:337.005000px;}
.y69{bottom:338.610000px;}
.y33{bottom:340.410000px;}
.y25b{bottom:342.030000px;}
.y211{bottom:350.145000px;}
.y252{bottom:352.110000px;}
.y7c{bottom:354.270000px;}
.y1bf{bottom:355.710000px;}
.y68{bottom:355.890000px;}
.y32{bottom:357.510000px;}
.y22c{bottom:358.590000px;}
.y1a9{bottom:358.605000px;}
.y25a{bottom:359.310000px;}
.y19c{bottom:360.210000px;}
.y210{bottom:367.425000px;}
.y201{bottom:368.490000px;}
.y177{bottom:369.210000px;}
.y7b{bottom:371.550000px;}
.y67{bottom:373.170000px;}
.y31{bottom:374.790000px;}
.y1a8{bottom:375.885000px;}
.y259{bottom:376.410000px;}
.y129{bottom:377.490000px;}
.yad{bottom:378.750000px;}
.y1a3{bottom:384.525000px;}
.y20f{bottom:384.705000px;}
.y1f3{bottom:385.770000px;}
.y7a{bottom:388.875000px;}
.y66{bottom:390.495000px;}
.y30{bottom:392.115000px;}
.y1a7{bottom:393.165000px;}
.yd0{bottom:396.075000px;}
.y1a2{bottom:401.805000px;}
.y1d7{bottom:405.255000px;}
.y26e{bottom:405.615000px;}
.y79{bottom:406.155000px;}
.y65{bottom:407.775000px;}
.y232{bottom:408.135000px;}
.y2f{bottom:409.395000px;}
.y19b{bottom:409.755000px;}
.y1a6{bottom:410.445000px;}
.y1e5{bottom:412.065000px;}
.y1a1{bottom:419.085000px;}
.y175{bottom:420.195000px;}
.yac{bottom:420.555000px;}
.y124{bottom:422.715000px;}
.y78{bottom:423.435000px;}
.y64{bottom:425.055000px;}
.y2e{bottom:426.675000px;}
.y1a5{bottom:427.725000px;}
.y1e4{bottom:429.345000px;}
.y1f2{bottom:436.755000px;}
.y77{bottom:437.295000px;}
.y251{bottom:439.815000px;}
.y123{bottom:439.995000px;}
.y63{bottom:442.155000px;}
.y2d{bottom:443.955000px;}
.y1a4{bottom:445.005000px;}
.y1e3{bottom:446.625000px;}
.y200{bottom:454.035000px;}
.y1d2{bottom:454.755000px;}
.y122{bottom:457.275000px;}
.y190{bottom:459.255000px;}
.y62{bottom:459.435000px;}
.y1b2{bottom:461.415000px;}
.y104{bottom:461.775000px;}
.yab{bottom:462.135000px;}
.y2c{bottom:463.755000px;}
.y15f{bottom:471.315000px;}
.y121{bottom:474.375000px;}
.y61{bottom:476.715000px;}
.y103{bottom:478.875000px;}
.yeb{bottom:480.135000px;}
.y2b{bottom:481.035000px;}
.y120{bottom:491.655000px;}
.y60{bottom:493.995000px;}
.y102{bottom:496.155000px;}
.yea{bottom:497.415000px;}
.y2a{bottom:498.315000px;}
.yaa{bottom:503.895000px;}
.y1d5{bottom:504.255000px;}
.y1f1{bottom:504.975000px;}
.y11f{bottom:508.935000px;}
.y197{bottom:510.195000px;}
.y245{bottom:510.375000px;}
.y5f{bottom:511.275000px;}
.y101{bottom:513.435000px;}
.ye9{bottom:514.695000px;}
.y29{bottom:515.415000px;}
.y1ff{bottom:522.255000px;}
.y11e{bottom:526.215000px;}
.y22b{bottom:527.475000px;}
.y274{bottom:527.835000px;}
.y5e{bottom:528.555000px;}
.y100{bottom:530.715000px;}
.ye8{bottom:531.975000px;}
.y28{bottom:532.695000px;}
.y11d{bottom:543.495000px;}
.ya1{bottom:545.475000px;}
.y5d{bottom:545.655000px;}
.yff{bottom:547.995000px;}
.ye7{bottom:549.255000px;}
.y27{bottom:549.975000px;}
.y1d4{bottom:553.755000px;}
.y1f0{bottom:555.915000px;}
.y11c{bottom:560.775000px;}
.y5c{bottom:562.935000px;}
.y1b0{bottom:564.195000px;}
.yfe{bottom:565.275000px;}
.ye6{bottom:566.355000px;}
.y26{bottom:567.255000px;}
.y221{bottom:576.975000px;}
.y11b{bottom:577.875000px;}
.y18c{bottom:578.415000px;}
.yc1{bottom:580.035000px;}
.y5b{bottom:580.215000px;}
.yfd{bottom:582.375000px;}
.ye5{bottom:583.635000px;}
.y25{bottom:584.535000px;}
.ya4{bottom:587.235000px;}
.y1fe{bottom:590.475000px;}
.y11a{bottom:591.915000px;}
.y13f{bottom:593.640000px;}
.y5a{bottom:597.495000px;}
.yfc{bottom:599.655000px;}
.ye4{bottom:600.915000px;}
.y24{bottom:601.815000px;}
.y1d1{bottom:603.255000px;}
.yca{bottom:604.515000px;}
.y247{bottom:614.595000px;}
.y59{bottom:614.775000px;}
.yfb{bottom:616.935000px;}
.ye3{bottom:618.195000px;}
.y23{bottom:618.915000px;}
.y1ed{bottom:624.135000px;}
.y223{bottom:626.475000px;}
.y98{bottom:628.995000px;}
.y193{bottom:629.535000px;}
.yfa{bottom:630.975000px;}
.y108{bottom:631.080000px;}
.y58{bottom:632.055000px;}
.ye2{bottom:635.475000px;}
.y22{bottom:636.195000px;}
.y1fd{bottom:641.445000px;}
.yc9{bottom:646.305000px;}
.y57{bottom:649.185000px;}
.y1aa{bottom:649.725000px;}
.ye1{bottom:652.605000px;}
.y1c5{bottom:652.785000px;}
.y21{bottom:653.505000px;}
.y56{bottom:666.465000px;}
.y9f{bottom:670.605000px;}
.y20{bottom:670.785000px;}
.y229{bottom:677.445000px;}
.y55{bottom:683.745000px;}
.yc8{bottom:687.885000px;}
.y1f{bottom:688.065000px;}
.y1ec{bottom:692.565000px;}
.y26b{bottom:693.285000px;}
.y192{bottom:697.785000px;}
.y1ad{bottom:699.225000px;}
.y54{bottom:701.025000px;}
.y1cd{bottom:702.285000px;}
.y1e{bottom:705.345000px;}
.y1fc{bottom:709.665000px;}
.y9e{bottom:712.365000px;}
.y53{bottom:718.305000px;}
.y23c{bottom:718.665000px;}
.y1d{bottom:722.445000px;}
.yc7{bottom:729.645000px;}
.y52{bottom:735.405000px;}
.y9d{bottom:736.845000px;}
.y1c{bottom:739.725000px;}
.y21b{bottom:745.665000px;}
.y17e{bottom:748.725000px;}
.y51{bottom:752.685000px;}
.y1cc{bottom:753.225000px;}
.ye0{bottom:754.125000px;}
.y1b{bottom:757.005000px;}
.y1ea{bottom:760.785000px;}
.y50{bottom:769.965000px;}
.ybe{bottom:771.405000px;}
.y1a{bottom:776.805000px;}
.y93{bottom:778.605000px;}
.y4f{bottom:787.245000px;}
.y21f{bottom:795.165000px;}
.ydc{bottom:795.705000px;}
.y14c{bottom:798.225000px;}
.y181{bottom:799.665000px;}
.y19{bottom:800.565000px;}
.y1c9{bottom:802.725000px;}
.y4e{bottom:804.525000px;}
.y244{bottom:806.505000px;}
.yc0{bottom:812.985000px;}
.y18{bottom:819.465000px;}
.y96{bottom:820.185000px;}
.y4d{bottom:821.805000px;}
.y1e9{bottom:829.005000px;}
.y17{bottom:832.425000px;}
.y269{bottom:832.785000px;}
.yb9{bottom:837.465000px;}
.y4c{bottom:838.905000px;}
.y20a{bottom:846.285000px;}
.y155{bottom:849.165000px;}
.y1ac{bottom:850.785000px;}
.y16{bottom:851.505000px;}
.y1cb{bottom:852.225000px;}
.y4b{bottom:856.185000px;}
.y8e{bottom:861.945000px;}
.y15{bottom:870.405000px;}
.y4a{bottom:873.465000px;}
.ybd{bottom:879.225000px;}
.y1e8{bottom:879.945000px;}
.y14{bottom:889.485000px;}
.y49{bottom:890.745000px;}
.y242{bottom:894.210000px;}
.y1fb{bottom:897.270000px;}
.y153{bottom:900.330000px;}
.y1bc{bottom:901.770000px;}
.y92{bottom:903.570000px;}
.y48{bottom:908.070000px;}
.y13{bottom:908.430000px;}
.yda{bottom:920.850000px;}
.y47{bottom:925.350000px;}
.y12{bottom:927.510000px;}
.y1e7{bottom:931.110000px;}
.y268{bottom:937.770000px;}
.y46{bottom:942.450000px;}
.y91{bottom:945.330000px;}
.y11{bottom:946.410000px;}
.y1fa{bottom:948.210000px;}
.y151{bottom:949.830000px;}
.y17d{bottom:951.270000px;}
.y45{bottom:959.730000px;}
.yd9{bottom:962.610000px;}
.y10{bottom:965.310000px;}
.y44{bottom:977.010000px;}
.y1e6{bottom:982.050000px;}
.yf{bottom:984.570000px;}
.y8a{bottom:987.090000px;}
.y43{bottom:994.290000px;}
.y1f9{bottom:999.330000px;}
.y150{bottom:1000.770000px;}
.yb7{bottom:1004.370000px;}
.ye{bottom:1005.270000px;}
.y42{bottom:1011.570000px;}
.yd{bottom:1025.970000px;}
.y41{bottom:1028.670000px;}
.y9{bottom:1047.750000px;}
.y8{bottom:1067.910000px;}
.y7{bottom:1085.190000px;}
.y6{bottom:1103.190000px;}
.y5{bottom:1119.930000px;}
.y4{bottom:1162.260000px;}
.y3{bottom:1182.240000px;}
.y2{bottom:1199.340000px;}
.y1{bottom:1216.620000px;}
.h1b{height:17.100000px;}
.h1f{height:17.136000px;}
.h16{height:17.280000px;}
.hc{height:30.198516px;}
.h2f{height:32.940000px;}
.h2c{height:32.976000px;}
.h3a{height:33.120000px;}
.h54{height:33.156000px;}
.h14{height:34.380000px;}
.h12{height:34.416000px;}
.h11{height:34.560000px;}
.h19{height:34.596000px;}
.h7{height:39.049805px;}
.h27{height:39.153937px;}
.h5{height:42.164648px;}
.h2a{height:42.266250px;}
.h2{height:43.215117px;}
.he{height:43.302656px;}
.h62{height:43.506914px;}
.h8{height:46.736719px;}
.h31{height:46.838320px;}
.hb{height:47.901094px;}
.hd{height:49.255313px;}
.h4{height:50.800781px;}
.hf{height:51.660000px;}
.h3e{height:51.696000px;}
.h1d{height:51.840000px;}
.h4e{height:51.876000px;}
.h3{height:52.066406px;}
.h9{height:53.224453px;}
.ha{height:53.404453px;}
.h20{height:58.860000px;}
.h55{height:59.220000px;}
.h6{height:60.855469px;}
.h22{height:68.940000px;}
.h4f{height:68.976000px;}
.h5c{height:69.120000px;}
.h13{height:76.140000px;}
.h17{height:76.320000px;}
.h49{height:82.440000px;}
.h4a{height:82.476000px;}
.h38{height:83.880000px;}
.h51{height:84.060000px;}
.h2d{height:86.220000px;}
.h57{height:86.256000px;}
.h58{height:86.400000px;}
.h1c{height:93.420000px;}
.h1e{height:100.656000px;}
.h5b{height:102.600000px;}
.h5a{height:102.636000px;}
.h3f{height:102.780000px;}
.h53{height:102.816000px;}
.h5d{height:103.500000px;}
.h5e{height:103.536000px;}
.h25{height:117.900000px;}
.h10{height:117.936000px;}
.h61{height:120.600000px;}
.h44{height:120.816000px;}
.h1a{height:125.136000px;}
.h46{height:131.940000px;}
.h37{height:133.380000px;}
.h2e{height:133.416000px;}
.h39{height:135.000000px;}
.h2b{height:135.756000px;}
.h45{height:137.880000px;}
.h15{height:142.416000px;}
.h52{height:152.310000px;}
.h3c{height:153.750000px;}
.h60{height:163.830000px;}
.h23{height:166.890000px;}
.h4c{height:169.920000px;}
.h24{height:183.960000px;}
.h21{height:184.170000px;}
.h36{height:186.150000px;}
.h59{height:206.850000px;}
.h4b{height:220.890000px;}
.h48{height:232.380000px;}
.h32{height:235.470000px;}
.h56{height:261.750000px;}
.h3d{height:272.910000px;}
.h40{height:280.470000px;}
.h18{height:284.610000px;}
.h5f{height:286.050000px;}
.h28{height:308.160000px;}
.h43{height:308.910000px;}
.h26{height:309.240000px;}
.h35{height:310.350000px;}
.h30{height:311.220000px;}
.h29{height:312.660000px;}
.h42{height:334.470000px;}
.h47{height:529.455000px;}
.h34{height:564.015000px;}
.h3b{height:569.955000px;}
.h50{height:590.295000px;}
.h33{height:614.955000px;}
.h41{height:814.425000px;}
.h4d{height:869.325000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:32.940000px;}
.w10{width:52.920000px;}
.w18{width:53.136000px;}
.w9{width:55.980000px;}
.w8{width:56.016000px;}
.wf{width:76.896000px;}
.w14{width:77.256000px;}
.w16{width:83.196000px;}
.w5{width:86.796000px;}
.w13{width:89.100000px;}
.w3{width:89.136000px;}
.w1b{width:92.016000px;}
.w1f{width:99.720000px;}
.w1a{width:100.980000px;}
.w17{width:101.160000px;}
.w20{width:101.916000px;}
.w1c{width:102.060000px;}
.w4{width:103.680000px;}
.w11{width:113.256000px;}
.w15{width:113.400000px;}
.w6{width:115.056000px;}
.w1e{width:117.756000px;}
.w7{width:118.440000px;}
.wa{width:124.596000px;}
.w1d{width:132.336000px;}
.w12{width:355.395000px;}
.wd{width:379.620000px;}
.w19{width:477.900000px;}
.we{width:480.780000px;}
.wc{width:766.260000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1c{left:5.040000px;}
.x20{left:6.120000px;}
.x22{left:7.560000px;}
.x1e{left:9.000000px;}
.x38{left:10.080000px;}
.x2e{left:11.160000px;}
.x24{left:12.600000px;}
.x18{left:14.040000px;}
.x37{left:15.120000px;}
.x27{left:16.740000px;}
.x19{left:17.814000px;}
.x5c{left:18.900000px;}
.x2c{left:19.980000px;}
.x35{left:21.240000px;}
.x2b{left:22.500000px;}
.x1b{left:24.165000px;}
.x32{left:25.920000px;}
.x26{left:27.720000px;}
.x69{left:28.800000px;}
.x2a{left:29.880000px;}
.x3a{left:30.960000px;}
.x2f{left:32.040000px;}
.x39{left:33.660000px;}
.x5f{left:34.740000px;}
.x29{left:35.814000px;}
.x2d{left:37.440000px;}
.x31{left:39.240000px;}
.x3d{left:40.500000px;}
.x3c{left:42.120000px;}
.x67{left:43.560000px;}
.x34{left:45.900000px;}
.x3b{left:47.160000px;}
.x33{left:48.960000px;}
.x68{left:50.580000px;}
.x17{left:52.020000px;}
.x4e{left:53.175000px;}
.x36{left:56.700000px;}
.x30{left:59.760000px;}
.x64{left:64.875000px;}
.x4c{left:76.245000px;}
.x4f{left:78.015000px;}
.x4a{left:80.355000px;}
.x4d{left:81.645000px;}
.x42{left:82.800000px;}
.x4b{left:85.215000px;}
.x41{left:89.565000px;}
.x65{left:92.625000px;}
.x58{left:100.800000px;}
.x6c{left:102.636000px;}
.x8{left:108.035987px;}
.x49{left:115.305000px;}
.x6a{left:119.735987px;}
.x3e{left:122.795987px;}
.x55{left:126.576000px;}
.x40{left:129.455987px;}
.x76{left:135.035987px;}
.x9{left:136.115987px;}
.x62{left:137.490000px;}
.x72{left:139.895987px;}
.x2{left:141.695987px;}
.x71{left:143.855987px;}
.x50{left:145.725000px;}
.x54{left:149.435987px;}
.x63{left:150.630000px;}
.x5{left:158.069987px;}
.x1{left:160.949987px;}
.xa{left:162.929987px;}
.x51{left:164.805000px;}
.x52{left:169.845000px;}
.x66{left:179.715000px;}
.x56{left:180.930000px;}
.x15{left:193.529987px;}
.x11{left:202.709987px;}
.x48{left:205.380000px;}
.x60{left:206.460000px;}
.x73{left:221.429987px;}
.x1a{left:246.450000px;}
.x45{left:255.960000px;}
.x57{left:295.635000px;}
.x46{left:297.900000px;}
.x47{left:299.520000px;}
.x1d{left:334.155000px;}
.xb{left:339.374987px;}
.x16{left:347.294987px;}
.xe{left:355.754987px;}
.xd{left:358.094987px;}
.x74{left:362.054987px;}
.x10{left:366.554987px;}
.xf{left:369.254987px;}
.xc{left:375.914987px;}
.x6b{left:378.614987px;}
.x13{left:384.554987px;}
.x7{left:385.994987px;}
.x61{left:388.545000px;}
.x75{left:395.354987px;}
.x12{left:398.774987px;}
.x6d{left:402.015000px;}
.x5b{left:410.655000px;}
.x6{left:412.094987px;}
.x3{left:446.324987px;}
.x1f{left:449.925000px;}
.x5d{left:495.285000px;}
.x4{left:518.324987px;}
.x6e{left:535.965000px;}
.x21{left:569.085000px;}
.x5e{left:597.885000px;}
.x23{left:625.830000px;}
.x43{left:636.449987px;}
.x59{left:652.650000px;}
.x6f{left:655.170000px;}
.x25{left:682.530000px;}
.x53{left:685.949987px;}
.x44{left:687.029987px;}
.x5a{left:743.190000px;}
.x14{left:747.869987px;}
.x70{left:756.510000px;}
.x28{left:807.840000px;}
.x3f{left:876.059987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.225067pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.062080pt;}
.ls10{letter-spacing:0.073387pt;}
.ls15{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.201387pt;}
.ls6{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.272640pt;}
.ls13{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.448000pt;}
.ls19{letter-spacing:7.200000pt;}
.ls1a{letter-spacing:7.306667pt;}
.ls1c{letter-spacing:19.152640pt;}
.ls3{letter-spacing:610.826667pt;}
.wse{word-spacing:-14.752000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.054933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:1.013760pt;}
._0{margin-left:-7.011840pt;}
._4{margin-left:-5.703040pt;}
._7{margin-left:-4.288000pt;}
._8{margin-left:-2.972160pt;}
._2{margin-left:-1.464960pt;}
._1{width:0.890240pt;}
._3{width:1.805867pt;}
._f{width:3.083093pt;}
._6{width:4.000000pt;}
._b{width:4.899840pt;}
._c{width:6.309333pt;}
._13{width:7.649280pt;}
._9{width:8.605440pt;}
._10{width:10.252160pt;}
._12{width:11.752320pt;}
._15{width:14.395520pt;}
._16{width:15.349760pt;}
._11{width:16.353280pt;}
._a{width:17.436160pt;}
._d{width:18.974080pt;}
._e{width:20.194987pt;}
._14{width:21.407360pt;}
._1f{width:22.543573pt;}
._20{width:24.419413pt;}
._21{width:25.340373pt;}
._1e{width:26.269867pt;}
._1d{width:28.259840pt;}
._1b{width:30.096640pt;}
._1c{width:34.428587pt;}
._19{width:35.461547pt;}
._24{width:39.043200pt;}
._22{width:69.068800pt;}
._23{width:69.999360pt;}
._5{width:76.250667pt;}
._17{width:133.743147pt;}
._1a{width:165.280000pt;}
._18{width:178.880000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.880000pt;}
.y1f4{bottom:2.920000pt;}
.y282{bottom:6.720000pt;}
.y154{bottom:9.760000pt;}
.y13e{bottom:9.792000pt;}
.y12a{bottom:9.800000pt;}
.y13b{bottom:9.920000pt;}
.y24d{bottom:10.080000pt;}
.y13d{bottom:10.400000pt;}
.y1f5{bottom:10.440000pt;}
.y152{bottom:10.560000pt;}
.y209{bottom:10.592000pt;}
.y143{bottom:11.426667pt;}
.y23b{bottom:13.920000pt;}
.y22a{bottom:16.800000pt;}
.y220{bottom:16.960000pt;}
.y21e{bottom:17.280000pt;}
.y24a{bottom:17.760000pt;}
.y97{bottom:18.080000pt;}
.y195{bottom:18.106667pt;}
.ydb{bottom:18.120000pt;}
.yd8{bottom:18.234667pt;}
.y8c{bottom:18.240000pt;}
.ya0{bottom:18.266667pt;}
.yb4{bottom:18.272000pt;}
.yae{bottom:18.280000pt;}
.yf9{bottom:19.226667pt;}
.y239{bottom:21.440000pt;}
.y281{bottom:22.080000pt;}
.y139{bottom:23.866667pt;}
.ybf{bottom:24.480000pt;}
.yb6{bottom:24.640000pt;}
.y250{bottom:25.440000pt;}
.y24c{bottom:25.466667pt;}
.y228{bottom:25.626667pt;}
.y1eb{bottom:25.760000pt;}
.y204{bottom:25.800000pt;}
.y12f{bottom:25.920000pt;}
.y1ee{bottom:25.946667pt;}
.y142{bottom:28.226667pt;}
.y23a{bottom:29.120000pt;}
.y27f{bottom:29.760000pt;}
.y111{bottom:30.240000pt;}
.ybc{bottom:31.040000pt;}
.y134{bottom:31.546667pt;}
.y1ca{bottom:31.840000pt;}
.y1d6{bottom:31.880000pt;}
.y17c{bottom:32.480000pt;}
.y21d{bottom:32.640000pt;}
.yc{bottom:33.120000pt;}
.y248{bottom:33.146667pt;}
.y233{bottom:33.280000pt;}
.y225{bottom:33.306667pt;}
.y8b{bottom:33.440000pt;}
.y194{bottom:33.466667pt;}
.y202{bottom:33.480000pt;}
.yb8{bottom:33.600000pt;}
.y1ef{bottom:33.626667pt;}
.y253{bottom:33.640000pt;}
.y279{bottom:37.440000pt;}
.y138{bottom:39.226667pt;}
.y95{bottom:39.840000pt;}
.ya3{bottom:40.000000pt;}
.y230{bottom:40.040000pt;}
.y128{bottom:40.160000pt;}
.y24f{bottom:40.800000pt;}
.y227{bottom:40.826667pt;}
.y234{bottom:40.960000pt;}
.y12e{bottom:41.120000pt;}
.y254{bottom:41.160000pt;}
.y1b3{bottom:41.280000pt;}
.y27e{bottom:44.960000pt;}
.y110{bottom:45.600000pt;}
.ybb{bottom:46.400000pt;}
.y133{bottom:46.906667pt;}
.y180{bottom:47.520000pt;}
.y12c{bottom:47.840000pt;}
.y21c{bottom:48.000000pt;}
.y18f{bottom:48.320000pt;}
.y196{bottom:48.480000pt;}
.y224{bottom:48.506667pt;}
.ycb{bottom:48.800000pt;}
.y203{bottom:48.840000pt;}
.y1b1{bottom:48.960000pt;}
.yb{bottom:50.880000pt;}
.y10a{bottom:51.226667pt;}
.y278{bottom:52.640000pt;}
.y1d3{bottom:53.760000pt;}
.y137{bottom:54.426667pt;}
.y94{bottom:55.200000pt;}
.ya2{bottom:55.360000pt;}
.y22f{bottom:55.400000pt;}
.y126{bottom:55.520000pt;}
.y24e{bottom:56.160000pt;}
.y226{bottom:56.186667pt;}
.y1b9{bottom:56.480000pt;}
.y1b5{bottom:56.520000pt;}
.y243{bottom:56.640000pt;}
.y27d{bottom:60.320000pt;}
.yba{bottom:61.640000pt;}
.ydf{bottom:61.760000pt;}
.y132{bottom:62.106667pt;}
.y17f{bottom:62.880000pt;}
.y231{bottom:62.920000pt;}
.y1e0{bottom:63.040000pt;}
.y12b{bottom:63.200000pt;}
.y18e{bottom:63.546667pt;}
.y249{bottom:63.866667pt;}
.y12d{bottom:64.160000pt;}
.y1b8{bottom:64.200000pt;}
.y1b4{bottom:64.320000pt;}
.ya{bottom:64.640000pt;}
.y109{bottom:66.586667pt;}
.y277{bottom:68.000000pt;}
.y9c{bottom:68.026667pt;}
.y136{bottom:69.786667pt;}
.yb5{bottom:70.560000pt;}
.y222{bottom:70.586667pt;}
.y22e{bottom:70.600000pt;}
.y1e1{bottom:70.720000pt;}
.y127{bottom:70.880000pt;}
.y24b{bottom:71.546667pt;}
.y257{bottom:71.840000pt;}
.y26a{bottom:71.880000pt;}
.y27c{bottom:75.680000pt;}
.y90{bottom:77.000000pt;}
.yde{bottom:77.120000pt;}
.y131{bottom:77.466667pt;}
.y176{bottom:77.920000pt;}
.y1db{bottom:78.106667pt;}
.y1df{bottom:78.400000pt;}
.y18d{bottom:78.906667pt;}
.y174{bottom:79.520000pt;}
.y1b7{bottom:79.560000pt;}
.y1c8{bottom:83.200000pt;}
.y276{bottom:83.360000pt;}
.y9b{bottom:83.386667pt;}
.y14f{bottom:84.520000pt;}
.y135{bottom:85.146667pt;}
.y1dd{bottom:85.786667pt;}
.y22d{bottom:85.960000pt;}
.y246{bottom:87.200000pt;}
.y1be{bottom:89.600000pt;}
.yc6{bottom:89.786667pt;}
.y27b{bottom:91.040000pt;}
.y8f{bottom:92.360000pt;}
.ydd{bottom:92.480000pt;}
.y1da{bottom:93.466667pt;}
.y173{bottom:94.720000pt;}
.y1ba{bottom:94.880000pt;}
.y1b6{bottom:94.920000pt;}
.y10f{bottom:96.093333pt;}
.y241{bottom:96.320000pt;}
.y1c7{bottom:98.560000pt;}
.y275{bottom:98.720000pt;}
.y9a{bottom:98.746667pt;}
.y14e{bottom:99.880000pt;}
.y1dc{bottom:100.986667pt;}
.y107{bottom:101.600000pt;}
.y76{bottom:101.760000pt;}
.y26c{bottom:102.560000pt;}
.y40{bottom:103.200000pt;}
.y23e{bottom:104.000000pt;}
.y17a{bottom:104.160000pt;}
.y1d0{bottom:104.520000pt;}
.y267{bottom:104.640000pt;}
.y1bd{bottom:104.800000pt;}
.y1d8{bottom:105.120000pt;}
.yc5{bottom:105.146667pt;}
.ycf{bottom:105.160000pt;}
.y17b{bottom:106.080000pt;}
.y27a{bottom:106.426667pt;}
.y1bb{bottom:106.880000pt;}
.y273{bottom:107.040000pt;}
.yb0{bottom:107.840000pt;}
.y1d9{bottom:108.666667pt;}
.y258{bottom:109.600000pt;}
.y172{bottom:110.080000pt;}
.y26d{bottom:110.240000pt;}
.y130{bottom:110.880000pt;}
.y10e{bottom:111.453333pt;}
.y240{bottom:111.680000pt;}
.y145{bottom:111.773333pt;}
.y199{bottom:112.160000pt;}
.y1c6{bottom:113.760000pt;}
.y99{bottom:114.106667pt;}
.y270{bottom:114.720000pt;}
.y14d{bottom:115.240000pt;}
.y208{bottom:115.520000pt;}
.y89{bottom:115.680000pt;}
.y191{bottom:116.480000pt;}
.y106{bottom:116.960000pt;}
.y75{bottom:117.120000pt;}
.y3f{bottom:118.560000pt;}
.y23d{bottom:119.200000pt;}
.y19a{bottom:119.840000pt;}
.y1cf{bottom:119.880000pt;}
.y266{bottom:120.032000pt;}
.yee{bottom:120.192000pt;}
.yc4{bottom:120.506667pt;}
.yce{bottom:120.520000pt;}
.y272{bottom:122.400000pt;}
.yd1{bottom:123.232000pt;}
.y141{bottom:124.480000pt;}
.y171{bottom:125.440000pt;}
.y23f{bottom:126.880000pt;}
.y198{bottom:127.520000pt;}
.y144{bottom:128.613333pt;}
.y280{bottom:129.306667pt;}
.y105{bottom:129.472000pt;}
.y10d{bottom:129.760000pt;}
.y26f{bottom:130.080000pt;}
.y88{bottom:130.912000pt;}
.y238{bottom:131.072000pt;}
.y74{bottom:132.352000pt;}
.y1af{bottom:132.520000pt;}
.y160{bottom:133.120000pt;}
.y3e{bottom:133.946667pt;}
.y1ce{bottom:135.240000pt;}
.yed{bottom:135.386667pt;}
.yd3{bottom:135.834667pt;}
.yc3{bottom:135.866667pt;}
.ycd{bottom:135.880000pt;}
.y113{bottom:136.320000pt;}
.y271{bottom:137.600000pt;}
.y170{bottom:140.800000pt;}
.y140{bottom:141.306667pt;}
.y256{bottom:141.626667pt;}
.y1ab{bottom:143.840000pt;}
.y182{bottom:144.186667pt;}
.yb3{bottom:144.986667pt;}
.y1e2{bottom:146.106667pt;}
.y87{bottom:146.266667pt;}
.y237{bottom:146.426667pt;}
.y73{bottom:147.706667pt;}
.yec{bottom:147.866667pt;}
.y156{bottom:148.186667pt;}
.yef{bottom:149.120000pt;}
.y3d{bottom:149.146667pt;}
.yf8{bottom:149.573333pt;}
.y1de{bottom:150.426667pt;}
.y265{bottom:150.586667pt;}
.y1a0{bottom:150.906667pt;}
.yd2{bottom:151.034667pt;}
.yc2{bottom:151.226667pt;}
.y112{bottom:151.680000pt;}
.yf0{bottom:151.973333pt;}
.y13c{bottom:154.906667pt;}
.y16f{bottom:156.186667pt;}
.yd7{bottom:160.186667pt;}
.y86{bottom:161.626667pt;}
.y236{bottom:161.786667pt;}
.y72{bottom:163.066667pt;}
.y3c{bottom:164.506667pt;}
.y264{bottom:165.946667pt;}
.yb2{bottom:166.586667pt;}
.yf1{bottom:166.880000pt;}
.y16e{bottom:171.546667pt;}
.y21a{bottom:173.320000pt;}
.y207{bottom:176.186667pt;}
.y85{bottom:176.986667pt;}
.y71{bottom:178.426667pt;}
.y3b{bottom:179.866667pt;}
.y263{bottom:181.306667pt;}
.yf2{bottom:181.786667pt;}
.y16d{bottom:186.746667pt;}
.y19f{bottom:188.186667pt;}
.yb1{bottom:188.346667pt;}
.y219{bottom:188.520000pt;}
.y1f8{bottom:191.546667pt;}
.y84{bottom:192.346667pt;}
.y167{bottom:192.360000pt;}
.y15c{bottom:193.466667pt;}
.y70{bottom:193.786667pt;}
.ya9{bottom:194.600000pt;}
.y3a{bottom:195.226667pt;}
.y262{bottom:196.666667pt;}
.yf3{bottom:196.733333pt;}
.yd6{bottom:197.306667pt;}
.y10c{bottom:197.573333pt;}
.y147{bottom:198.533333pt;}
.y1c4{bottom:199.880000pt;}
.y13a{bottom:200.186667pt;}
.y16c{bottom:202.106667pt;}
.y218{bottom:203.880000pt;}
.y115{bottom:204.226667pt;}
.y166{bottom:207.560000pt;}
.y83{bottom:207.706667pt;}
.y6f{bottom:209.146667pt;}
.ya8{bottom:209.960000pt;}
.y18b{bottom:210.280000pt;}
.y39{bottom:210.586667pt;}
.yf4{bottom:211.653333pt;}
.y261{bottom:212.026667pt;}
.y20b{bottom:212.826667pt;}
.y10b{bottom:212.933333pt;}
.y1c2{bottom:215.240000pt;}
.y146{bottom:215.333333pt;}
.y119{bottom:217.346667pt;}
.y16b{bottom:217.466667pt;}
.yd5{bottom:219.066667pt;}
.y217{bottom:219.240000pt;}
.y114{bottom:219.586667pt;}
.y206{bottom:221.466667pt;}
.y82{bottom:222.906667pt;}
.y165{bottom:222.920000pt;}
.y6e{bottom:224.346667pt;}
.ya7{bottom:225.320000pt;}
.ya5{bottom:225.466667pt;}
.y18a{bottom:225.480000pt;}
.y38{bottom:225.946667pt;}
.yf5{bottom:226.560000pt;}
.y260{bottom:227.386667pt;}
.y1c1{bottom:230.600000pt;}
.y149{bottom:231.973333pt;}
.y19e{bottom:232.186667pt;}
.y118{bottom:232.706667pt;}
.y16a{bottom:232.826667pt;}
.y185{bottom:233.160000pt;}
.y216{bottom:234.600000pt;}
.y255{bottom:234.906667pt;}
.y15b{bottom:237.960000pt;}
.y81{bottom:238.266667pt;}
.y15e{bottom:238.280000pt;}
.y179{bottom:238.906667pt;}
.y6d{bottom:239.706667pt;}
.y14b{bottom:240.133333pt;}
.ya6{bottom:240.680000pt;}
.y189{bottom:240.840000pt;}
.y37{bottom:241.146667pt;}
.yf6{bottom:241.466667pt;}
.y20e{bottom:242.280000pt;}
.y25f{bottom:242.586667pt;}
.y125{bottom:244.186667pt;}
.y1c0{bottom:245.800000pt;}
.y161{bottom:245.960000pt;}
.y117{bottom:247.906667pt;}
.y169{bottom:248.186667pt;}
.y184{bottom:248.520000pt;}
.y148{bottom:248.773333pt;}
.y215{bottom:249.960000pt;}
.y1f7{bottom:252.186667pt;}
.y159{bottom:253.160000pt;}
.y80{bottom:253.626667pt;}
.y15d{bottom:253.640000pt;}
.y6c{bottom:255.066667pt;}
.yd4{bottom:256.186667pt;}
.y188{bottom:256.200000pt;}
.yf7{bottom:256.386667pt;}
.y36{bottom:256.506667pt;}
.y14a{bottom:256.933333pt;}
.y20d{bottom:257.640000pt;}
.y25e{bottom:257.946667pt;}
.y235{bottom:258.106667pt;}
.y1c3{bottom:261.186667pt;}
.yaf{bottom:262.586667pt;}
.y116{bottom:263.266667pt;}
.y168{bottom:263.546667pt;}
.y183{bottom:263.880000pt;}
.y214{bottom:265.320000pt;}
.y205{bottom:266.906667pt;}
.y158{bottom:268.520000pt;}
.y7f{bottom:268.986667pt;}
.y164{bottom:269.000000pt;}
.y6b{bottom:270.426667pt;}
.y187{bottom:271.560000pt;}
.y35{bottom:271.866667pt;}
.y20c{bottom:272.840000pt;}
.y25d{bottom:273.306667pt;}
.y19d{bottom:276.186667pt;}
.y213{bottom:280.520000pt;}
.y178{bottom:282.906667pt;}
.y157{bottom:283.880000pt;}
.y163{bottom:284.200000pt;}
.y7e{bottom:284.346667pt;}
.y6a{bottom:285.786667pt;}
.y186{bottom:286.920000pt;}
.y34{bottom:287.226667pt;}
.y1ae{bottom:288.186667pt;}
.y25c{bottom:288.666667pt;}
.ycc{bottom:293.146667pt;}
.y212{bottom:295.880000pt;}
.y1f6{bottom:297.466667pt;}
.y15a{bottom:299.240000pt;}
.y7d{bottom:299.546667pt;}
.y162{bottom:299.560000pt;}
.y69{bottom:300.986667pt;}
.y33{bottom:302.586667pt;}
.y25b{bottom:304.026667pt;}
.y211{bottom:311.240000pt;}
.y252{bottom:312.986667pt;}
.y7c{bottom:314.906667pt;}
.y1bf{bottom:316.186667pt;}
.y68{bottom:316.346667pt;}
.y32{bottom:317.786667pt;}
.y22c{bottom:318.746667pt;}
.y1a9{bottom:318.760000pt;}
.y25a{bottom:319.386667pt;}
.y19c{bottom:320.186667pt;}
.y210{bottom:326.600000pt;}
.y201{bottom:327.546667pt;}
.y177{bottom:328.186667pt;}
.y7b{bottom:330.266667pt;}
.y67{bottom:331.706667pt;}
.y31{bottom:333.146667pt;}
.y1a8{bottom:334.120000pt;}
.y259{bottom:334.586667pt;}
.y129{bottom:335.546667pt;}
.yad{bottom:336.666667pt;}
.y1a3{bottom:341.800000pt;}
.y20f{bottom:341.960000pt;}
.y1f3{bottom:342.906667pt;}
.y7a{bottom:345.666667pt;}
.y66{bottom:347.106667pt;}
.y30{bottom:348.546667pt;}
.y1a7{bottom:349.480000pt;}
.yd0{bottom:352.066667pt;}
.y1a2{bottom:357.160000pt;}
.y1d7{bottom:360.226667pt;}
.y26e{bottom:360.546667pt;}
.y79{bottom:361.026667pt;}
.y65{bottom:362.466667pt;}
.y232{bottom:362.786667pt;}
.y2f{bottom:363.906667pt;}
.y19b{bottom:364.226667pt;}
.y1a6{bottom:364.840000pt;}
.y1e5{bottom:366.280000pt;}
.y1a1{bottom:372.520000pt;}
.y175{bottom:373.506667pt;}
.yac{bottom:373.826667pt;}
.y124{bottom:375.746667pt;}
.y78{bottom:376.386667pt;}
.y64{bottom:377.826667pt;}
.y2e{bottom:379.266667pt;}
.y1a5{bottom:380.200000pt;}
.y1e4{bottom:381.640000pt;}
.y1f2{bottom:388.226667pt;}
.y77{bottom:388.706667pt;}
.y251{bottom:390.946667pt;}
.y123{bottom:391.106667pt;}
.y63{bottom:393.026667pt;}
.y2d{bottom:394.626667pt;}
.y1a4{bottom:395.560000pt;}
.y1e3{bottom:397.000000pt;}
.y200{bottom:403.586667pt;}
.y1d2{bottom:404.226667pt;}
.y122{bottom:406.466667pt;}
.y190{bottom:408.226667pt;}
.y62{bottom:408.386667pt;}
.y1b2{bottom:410.146667pt;}
.y104{bottom:410.466667pt;}
.yab{bottom:410.786667pt;}
.y2c{bottom:412.226667pt;}
.y15f{bottom:418.946667pt;}
.y121{bottom:421.666667pt;}
.y61{bottom:423.746667pt;}
.y103{bottom:425.666667pt;}
.yeb{bottom:426.786667pt;}
.y2b{bottom:427.586667pt;}
.y120{bottom:437.026667pt;}
.y60{bottom:439.106667pt;}
.y102{bottom:441.026667pt;}
.yea{bottom:442.146667pt;}
.y2a{bottom:442.946667pt;}
.yaa{bottom:447.906667pt;}
.y1d5{bottom:448.226667pt;}
.y1f1{bottom:448.866667pt;}
.y11f{bottom:452.386667pt;}
.y197{bottom:453.506667pt;}
.y245{bottom:453.666667pt;}
.y5f{bottom:454.466667pt;}
.y101{bottom:456.386667pt;}
.ye9{bottom:457.506667pt;}
.y29{bottom:458.146667pt;}
.y1ff{bottom:464.226667pt;}
.y11e{bottom:467.746667pt;}
.y22b{bottom:468.866667pt;}
.y274{bottom:469.186667pt;}
.y5e{bottom:469.826667pt;}
.y100{bottom:471.746667pt;}
.ye8{bottom:472.866667pt;}
.y28{bottom:473.506667pt;}
.y11d{bottom:483.106667pt;}
.ya1{bottom:484.866667pt;}
.y5d{bottom:485.026667pt;}
.yff{bottom:487.106667pt;}
.ye7{bottom:488.226667pt;}
.y27{bottom:488.866667pt;}
.y1d4{bottom:492.226667pt;}
.y1f0{bottom:494.146667pt;}
.y11c{bottom:498.466667pt;}
.y5c{bottom:500.386667pt;}
.y1b0{bottom:501.506667pt;}
.yfe{bottom:502.466667pt;}
.ye6{bottom:503.426667pt;}
.y26{bottom:504.226667pt;}
.y221{bottom:512.866667pt;}
.y11b{bottom:513.666667pt;}
.y18c{bottom:514.146667pt;}
.yc1{bottom:515.586667pt;}
.y5b{bottom:515.746667pt;}
.yfd{bottom:517.666667pt;}
.ye5{bottom:518.786667pt;}
.y25{bottom:519.586667pt;}
.ya4{bottom:521.986667pt;}
.y1fe{bottom:524.866667pt;}
.y11a{bottom:526.146667pt;}
.y13f{bottom:527.680000pt;}
.y5a{bottom:531.106667pt;}
.yfc{bottom:533.026667pt;}
.ye4{bottom:534.146667pt;}
.y24{bottom:534.946667pt;}
.y1d1{bottom:536.226667pt;}
.yca{bottom:537.346667pt;}
.y247{bottom:546.306667pt;}
.y59{bottom:546.466667pt;}
.yfb{bottom:548.386667pt;}
.ye3{bottom:549.506667pt;}
.y23{bottom:550.146667pt;}
.y1ed{bottom:554.786667pt;}
.y223{bottom:556.866667pt;}
.y98{bottom:559.106667pt;}
.y193{bottom:559.586667pt;}
.yfa{bottom:560.866667pt;}
.y108{bottom:560.960000pt;}
.y58{bottom:561.826667pt;}
.ye2{bottom:564.866667pt;}
.y22{bottom:565.506667pt;}
.y1fd{bottom:570.173333pt;}
.yc9{bottom:574.493333pt;}
.y57{bottom:577.053333pt;}
.y1aa{bottom:577.533333pt;}
.ye1{bottom:580.093333pt;}
.y1c5{bottom:580.253333pt;}
.y21{bottom:580.893333pt;}
.y56{bottom:592.413333pt;}
.y9f{bottom:596.093333pt;}
.y20{bottom:596.253333pt;}
.y229{bottom:602.173333pt;}
.y55{bottom:607.773333pt;}
.yc8{bottom:611.453333pt;}
.y1f{bottom:611.613333pt;}
.y1ec{bottom:615.613333pt;}
.y26b{bottom:616.253333pt;}
.y192{bottom:620.253333pt;}
.y1ad{bottom:621.533333pt;}
.y54{bottom:623.133333pt;}
.y1cd{bottom:624.253333pt;}
.y1e{bottom:626.973333pt;}
.y1fc{bottom:630.813333pt;}
.y9e{bottom:633.213333pt;}
.y53{bottom:638.493333pt;}
.y23c{bottom:638.813333pt;}
.y1d{bottom:642.173333pt;}
.yc7{bottom:648.573333pt;}
.y52{bottom:653.693333pt;}
.y9d{bottom:654.973333pt;}
.y1c{bottom:657.533333pt;}
.y21b{bottom:662.813333pt;}
.y17e{bottom:665.533333pt;}
.y51{bottom:669.053333pt;}
.y1cc{bottom:669.533333pt;}
.ye0{bottom:670.333333pt;}
.y1b{bottom:672.893333pt;}
.y1ea{bottom:676.253333pt;}
.y50{bottom:684.413333pt;}
.ybe{bottom:685.693333pt;}
.y1a{bottom:690.493333pt;}
.y93{bottom:692.093333pt;}
.y4f{bottom:699.773333pt;}
.y21f{bottom:706.813333pt;}
.ydc{bottom:707.293333pt;}
.y14c{bottom:709.533333pt;}
.y181{bottom:710.813333pt;}
.y19{bottom:711.613333pt;}
.y1c9{bottom:713.533333pt;}
.y4e{bottom:715.133333pt;}
.y244{bottom:716.893333pt;}
.yc0{bottom:722.653333pt;}
.y18{bottom:728.413333pt;}
.y96{bottom:729.053333pt;}
.y4d{bottom:730.493333pt;}
.y1e9{bottom:736.893333pt;}
.y17{bottom:739.933333pt;}
.y269{bottom:740.253333pt;}
.yb9{bottom:744.413333pt;}
.y4c{bottom:745.693333pt;}
.y20a{bottom:752.253333pt;}
.y155{bottom:754.813333pt;}
.y1ac{bottom:756.253333pt;}
.y16{bottom:756.893333pt;}
.y1cb{bottom:757.533333pt;}
.y4b{bottom:761.053333pt;}
.y8e{bottom:766.173333pt;}
.y15{bottom:773.693333pt;}
.y4a{bottom:776.413333pt;}
.ybd{bottom:781.533333pt;}
.y1e8{bottom:782.173333pt;}
.y14{bottom:790.653333pt;}
.y49{bottom:791.773333pt;}
.y242{bottom:794.853333pt;}
.y1fb{bottom:797.573333pt;}
.y153{bottom:800.293333pt;}
.y1bc{bottom:801.573333pt;}
.y92{bottom:803.173333pt;}
.y48{bottom:807.173333pt;}
.y13{bottom:807.493333pt;}
.yda{bottom:818.533333pt;}
.y47{bottom:822.533333pt;}
.y12{bottom:824.453333pt;}
.y1e7{bottom:827.653333pt;}
.y268{bottom:833.573333pt;}
.y46{bottom:837.733333pt;}
.y91{bottom:840.293333pt;}
.y11{bottom:841.253333pt;}
.y1fa{bottom:842.853333pt;}
.y151{bottom:844.293333pt;}
.y17d{bottom:845.573333pt;}
.y45{bottom:853.093333pt;}
.yd9{bottom:855.653333pt;}
.y10{bottom:858.053333pt;}
.y44{bottom:868.453333pt;}
.y1e6{bottom:872.933333pt;}
.yf{bottom:875.173333pt;}
.y8a{bottom:877.413333pt;}
.y43{bottom:883.813333pt;}
.y1f9{bottom:888.293333pt;}
.y150{bottom:889.573333pt;}
.yb7{bottom:892.773333pt;}
.ye{bottom:893.573333pt;}
.y42{bottom:899.173333pt;}
.yd{bottom:911.973333pt;}
.y41{bottom:914.373333pt;}
.y9{bottom:931.333333pt;}
.y8{bottom:949.253333pt;}
.y7{bottom:964.613333pt;}
.y6{bottom:980.613333pt;}
.y5{bottom:995.493333pt;}
.y4{bottom:1033.120000pt;}
.y3{bottom:1050.880000pt;}
.y2{bottom:1066.080000pt;}
.y1{bottom:1081.440000pt;}
.h1b{height:15.200000pt;}
.h1f{height:15.232000pt;}
.h16{height:15.360000pt;}
.hc{height:26.843125pt;}
.h2f{height:29.280000pt;}
.h2c{height:29.312000pt;}
.h3a{height:29.440000pt;}
.h54{height:29.472000pt;}
.h14{height:30.560000pt;}
.h12{height:30.592000pt;}
.h11{height:30.720000pt;}
.h19{height:30.752000pt;}
.h7{height:34.710938pt;}
.h27{height:34.803500pt;}
.h5{height:37.479688pt;}
.h2a{height:37.570000pt;}
.h2{height:38.413438pt;}
.he{height:38.491250pt;}
.h62{height:38.672812pt;}
.h8{height:41.543750pt;}
.h31{height:41.634062pt;}
.hb{height:42.578750pt;}
.hd{height:43.782500pt;}
.h4{height:45.156250pt;}
.hf{height:45.920000pt;}
.h3e{height:45.952000pt;}
.h1d{height:46.080000pt;}
.h4e{height:46.112000pt;}
.h3{height:46.281250pt;}
.h9{height:47.310625pt;}
.ha{height:47.470625pt;}
.h20{height:52.320000pt;}
.h55{height:52.640000pt;}
.h6{height:54.093750pt;}
.h22{height:61.280000pt;}
.h4f{height:61.312000pt;}
.h5c{height:61.440000pt;}
.h13{height:67.680000pt;}
.h17{height:67.840000pt;}
.h49{height:73.280000pt;}
.h4a{height:73.312000pt;}
.h38{height:74.560000pt;}
.h51{height:74.720000pt;}
.h2d{height:76.640000pt;}
.h57{height:76.672000pt;}
.h58{height:76.800000pt;}
.h1c{height:83.040000pt;}
.h1e{height:89.472000pt;}
.h5b{height:91.200000pt;}
.h5a{height:91.232000pt;}
.h3f{height:91.360000pt;}
.h53{height:91.392000pt;}
.h5d{height:92.000000pt;}
.h5e{height:92.032000pt;}
.h25{height:104.800000pt;}
.h10{height:104.832000pt;}
.h61{height:107.200000pt;}
.h44{height:107.392000pt;}
.h1a{height:111.232000pt;}
.h46{height:117.280000pt;}
.h37{height:118.560000pt;}
.h2e{height:118.592000pt;}
.h39{height:120.000000pt;}
.h2b{height:120.672000pt;}
.h45{height:122.560000pt;}
.h15{height:126.592000pt;}
.h52{height:135.386667pt;}
.h3c{height:136.666667pt;}
.h60{height:145.626667pt;}
.h23{height:148.346667pt;}
.h4c{height:151.040000pt;}
.h24{height:163.520000pt;}
.h21{height:163.706667pt;}
.h36{height:165.466667pt;}
.h59{height:183.866667pt;}
.h4b{height:196.346667pt;}
.h48{height:206.560000pt;}
.h32{height:209.306667pt;}
.h56{height:232.666667pt;}
.h3d{height:242.586667pt;}
.h40{height:249.306667pt;}
.h18{height:252.986667pt;}
.h5f{height:254.266667pt;}
.h28{height:273.920000pt;}
.h43{height:274.586667pt;}
.h26{height:274.880000pt;}
.h35{height:275.866667pt;}
.h30{height:276.640000pt;}
.h29{height:277.920000pt;}
.h42{height:297.306667pt;}
.h47{height:470.626667pt;}
.h34{height:501.346667pt;}
.h3b{height:506.626667pt;}
.h50{height:524.706667pt;}
.h33{height:546.626667pt;}
.h41{height:723.933333pt;}
.h4d{height:772.733333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:29.280000pt;}
.w10{width:47.040000pt;}
.w18{width:47.232000pt;}
.w9{width:49.760000pt;}
.w8{width:49.792000pt;}
.wf{width:68.352000pt;}
.w14{width:68.672000pt;}
.w16{width:73.952000pt;}
.w5{width:77.152000pt;}
.w13{width:79.200000pt;}
.w3{width:79.232000pt;}
.w1b{width:81.792000pt;}
.w1f{width:88.640000pt;}
.w1a{width:89.760000pt;}
.w17{width:89.920000pt;}
.w20{width:90.592000pt;}
.w1c{width:90.720000pt;}
.w4{width:92.160000pt;}
.w11{width:100.672000pt;}
.w15{width:100.800000pt;}
.w6{width:102.272000pt;}
.w1e{width:104.672000pt;}
.w7{width:105.280000pt;}
.wa{width:110.752000pt;}
.w1d{width:117.632000pt;}
.w12{width:315.906667pt;}
.wd{width:337.440000pt;}
.w19{width:424.800000pt;}
.we{width:427.360000pt;}
.wc{width:681.120000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1c{left:4.480000pt;}
.x20{left:5.440000pt;}
.x22{left:6.720000pt;}
.x1e{left:8.000000pt;}
.x38{left:8.960000pt;}
.x2e{left:9.920000pt;}
.x24{left:11.200000pt;}
.x18{left:12.480000pt;}
.x37{left:13.440000pt;}
.x27{left:14.880000pt;}
.x19{left:15.834667pt;}
.x5c{left:16.800000pt;}
.x2c{left:17.760000pt;}
.x35{left:18.880000pt;}
.x2b{left:20.000000pt;}
.x1b{left:21.480000pt;}
.x32{left:23.040000pt;}
.x26{left:24.640000pt;}
.x69{left:25.600000pt;}
.x2a{left:26.560000pt;}
.x3a{left:27.520000pt;}
.x2f{left:28.480000pt;}
.x39{left:29.920000pt;}
.x5f{left:30.880000pt;}
.x29{left:31.834667pt;}
.x2d{left:33.280000pt;}
.x31{left:34.880000pt;}
.x3d{left:36.000000pt;}
.x3c{left:37.440000pt;}
.x67{left:38.720000pt;}
.x34{left:40.800000pt;}
.x3b{left:41.920000pt;}
.x33{left:43.520000pt;}
.x68{left:44.960000pt;}
.x17{left:46.240000pt;}
.x4e{left:47.266667pt;}
.x36{left:50.400000pt;}
.x30{left:53.120000pt;}
.x64{left:57.666667pt;}
.x4c{left:67.773333pt;}
.x4f{left:69.346667pt;}
.x4a{left:71.426667pt;}
.x4d{left:72.573333pt;}
.x42{left:73.600000pt;}
.x4b{left:75.746667pt;}
.x41{left:79.613333pt;}
.x65{left:82.333333pt;}
.x58{left:89.600000pt;}
.x6c{left:91.232000pt;}
.x8{left:96.031988pt;}
.x49{left:102.493333pt;}
.x6a{left:106.431988pt;}
.x3e{left:109.151988pt;}
.x55{left:112.512000pt;}
.x40{left:115.071988pt;}
.x76{left:120.031988pt;}
.x9{left:120.991988pt;}
.x62{left:122.213333pt;}
.x72{left:124.351988pt;}
.x2{left:125.951988pt;}
.x71{left:127.871988pt;}
.x50{left:129.533333pt;}
.x54{left:132.831988pt;}
.x63{left:133.893333pt;}
.x5{left:140.506655pt;}
.x1{left:143.066655pt;}
.xa{left:144.826655pt;}
.x51{left:146.493333pt;}
.x52{left:150.973333pt;}
.x66{left:159.746667pt;}
.x56{left:160.826667pt;}
.x15{left:172.026655pt;}
.x11{left:180.186655pt;}
.x48{left:182.560000pt;}
.x60{left:183.520000pt;}
.x73{left:196.826655pt;}
.x1a{left:219.066667pt;}
.x45{left:227.520000pt;}
.x57{left:262.786667pt;}
.x46{left:264.800000pt;}
.x47{left:266.240000pt;}
.x1d{left:297.026667pt;}
.xb{left:301.666655pt;}
.x16{left:308.706655pt;}
.xe{left:316.226655pt;}
.xd{left:318.306655pt;}
.x74{left:321.826655pt;}
.x10{left:325.826655pt;}
.xf{left:328.226655pt;}
.xc{left:334.146655pt;}
.x6b{left:336.546655pt;}
.x13{left:341.826655pt;}
.x7{left:343.106655pt;}
.x61{left:345.373333pt;}
.x75{left:351.426655pt;}
.x12{left:354.466655pt;}
.x6d{left:357.346667pt;}
.x5b{left:365.026667pt;}
.x6{left:366.306655pt;}
.x3{left:396.733322pt;}
.x1f{left:399.933333pt;}
.x5d{left:440.253333pt;}
.x4{left:460.733322pt;}
.x6e{left:476.413333pt;}
.x21{left:505.853333pt;}
.x5e{left:531.453333pt;}
.x23{left:556.293333pt;}
.x43{left:565.733322pt;}
.x59{left:580.133333pt;}
.x6f{left:582.373333pt;}
.x25{left:606.693333pt;}
.x53{left:609.733322pt;}
.x44{left:610.693322pt;}
.x5a{left:660.613333pt;}
.x14{left:664.773322pt;}
.x70{left:672.453333pt;}
.x28{left:718.080000pt;}
.x3f{left:778.719988pt;}
}




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