
    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_b9ae5c3a1eb1b7aa1d4c6673.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_f421e8b6cc42aa6a19137aae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f58e9714140495137e0ab67c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_7d81e6d6ed49ba17dcc0b0fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_66290a9161b6e5c4448759c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_1a36ee00e75bf5f70b38dfcf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_049e34031b70d8875d5d2b95.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_31e251e39cbad28e088f41d5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3d14ed50dd2cfa821dea503.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_61b2f95810bb0a93bb16c1f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.414600px;}
.ls26{letter-spacing:-0.413400px;}
.ls25{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.206400px;}
.ls22{letter-spacing:0.259800px;}
.ls2b{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.305400px;}
.ls1f{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.513600px;}
.ls27{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.828000px;}
.ls30{letter-spacing:0.978000px;}
.ls2e{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.880000px;}
.ls1a{letter-spacing:4.140000px;}
.ls10{letter-spacing:4.320000px;}
.ls20{letter-spacing:4.500000px;}
.ls19{letter-spacing:4.680000px;}
.ls15{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.640000px;}
.ls14{letter-spacing:29.664000px;}
.ls12{letter-spacing:31.104000px;}
.lsf{letter-spacing:194.376000px;}
.ls1e{letter-spacing:196.536000px;}
.ls0{letter-spacing:843.060000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws0{word-spacing:-32.940000px;}
.ws6{word-spacing:-22.320000px;}
.wse{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.ws7{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.918000px;}
.ws9{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.580000px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-16.476000px;}
._4{margin-left:-14.424000px;}
._6{margin-left:-12.444000px;}
._2{margin-left:-9.117600px;}
._7{margin-left:-7.884000px;}
._5{margin-left:-4.416000px;}
._3{margin-left:-2.580000px;}
._1{margin-left:-1.022400px;}
._0{width:1.317600px;}
._a{width:2.892000px;}
._d{width:4.550400px;}
._e{width:5.644800px;}
._11{width:7.392000px;}
._c{width:9.360000px;}
._10{width:11.150400px;}
._f{width:12.240000px;}
._16{width:13.665600px;}
._14{width:15.624000px;}
._15{width:16.718400px;}
._19{width:18.048240px;}
._17{width:19.130400px;}
._18{width:20.246400px;}
._1d{width:29.177520px;}
._1c{width:30.884880px;}
._1b{width:33.047280px;}
._1a{width:34.242480px;}
._12{width:61.416000px;}
._13{width:62.496000px;}
._b{width:194.376000px;}
._9{width:846.156000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(54,95,145);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:102.240000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y13{bottom:-59.400000px;}
.y12{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.960000px;}
.ya7{bottom:4.140000px;}
.yd9{bottom:5.580000px;}
.y1b1{bottom:6.120000px;}
.yc8{bottom:6.480000px;}
.y157{bottom:6.660000px;}
.yab{bottom:6.840000px;}
.yb5{bottom:7.020000px;}
.y14d{bottom:7.200000px;}
.y147{bottom:7.380000px;}
.yad{bottom:7.560000px;}
.y12c{bottom:7.740000px;}
.yac{bottom:7.920000px;}
.y16a{bottom:8.100000px;}
.y134{bottom:8.145000px;}
.y1a0{bottom:8.280000px;}
.y138{bottom:9.720000px;}
.y173{bottom:9.930000px;}
.y13a{bottom:10.080000px;}
.y174{bottom:10.290000px;}
.y1af{bottom:10.980000px;}
.y1a2{bottom:11.340000px;}
.yb{bottom:12.060000px;}
.y19e{bottom:12.420000px;}
.y139{bottom:13.320000px;}
.yd6{bottom:14.940000px;}
.y1b7{bottom:15.120000px;}
.y1a6{bottom:16.740000px;}
.y162{bottom:17.280000px;}
.yb7{bottom:17.460000px;}
.y15c{bottom:17.496000px;}
.y163{bottom:17.640000px;}
.yb8{bottom:17.820000px;}
.y15e{bottom:17.856000px;}
.y150{bottom:17.865000px;}
.y158{bottom:18.000000px;}
.y166{bottom:18.180000px;}
.y151{bottom:18.225000px;}
.ya9{bottom:18.900000px;}
.y170{bottom:19.080000px;}
.y136{bottom:19.125000px;}
.y144{bottom:19.440000px;}
.y145{bottom:19.800000px;}
.yd7{bottom:23.040000px;}
.yd4{bottom:25.920000px;}
.y19c{bottom:26.460000px;}
.y19a{bottom:26.640000px;}
.y15a{bottom:28.260000px;}
.yc7{bottom:28.440000px;}
.yb0{bottom:28.485000px;}
.yb9{bottom:28.620000px;}
.y143{bottom:28.650000px;}
.ycc{bottom:28.800000px;}
.yc5{bottom:28.830000px;}
.y15d{bottom:28.836000px;}
.yb4{bottom:28.845000px;}
.y14c{bottom:28.980000px;}
.y152{bottom:29.025000px;}
.y16e{bottom:29.340000px;}
.y132{bottom:29.565000px;}
.y17d{bottom:29.700000px;}
.y133{bottom:29.925000px;}
.y171{bottom:30.420000px;}
.y146{bottom:31.320000px;}
.y11{bottom:35.280000px;}
.y141{bottom:39.240000px;}
.ycb{bottom:39.600000px;}
.yb1{bottom:39.645000px;}
.y14e{bottom:39.780000px;}
.y16c{bottom:40.140000px;}
.y179{bottom:40.680000px;}
.y16f{bottom:40.860000px;}
.y135{bottom:40.905000px;}
.y1ae{bottom:44.820000px;}
.y1b6{bottom:48.960000px;}
.yca{bottom:50.220000px;}
.yaf{bottom:50.265000px;}
.yc3{bottom:50.580000px;}
.yb3{bottom:50.625000px;}
.y131{bottom:50.760000px;}
.y16d{bottom:51.120000px;}
.y17c{bottom:51.480000px;}
.y12f{bottom:51.885000px;}
.y15{bottom:57.060000px;}
.ya{bottom:61.740000px;}
.y178{bottom:62.640000px;}
.y1a5{bottom:64.980000px;}
.yc{bottom:68.580000px;}
.yc2{bottom:72.360000px;}
.yb2{bottom:72.405000px;}
.y14a{bottom:72.540000px;}
.y17b{bottom:73.440000px;}
.y12e{bottom:73.845000px;}
.y1aa{bottom:75.240000px;}
.y14{bottom:78.120000px;}
.y1ad{bottom:78.840000px;}
.y10{bottom:80.136000px;}
.y1b5{bottom:82.980000px;}
.ybd{bottom:83.160000px;}
.yc1{bottom:94.140000px;}
.y149{bottom:94.320000px;}
.y1ac{bottom:97.785000px;}
.y9{bottom:99.900000px;}
.yce{bottom:104.760000px;}
.ycf{bottom:105.120000px;}
.y6{bottom:105.840000px;}
.y155{bottom:106.230000px;}
.y13e{bottom:107.850000px;}
.y1a9{bottom:109.080000px;}
.ya4{bottom:110.700000px;}
.y260{bottom:113.400000px;}
.y110{bottom:115.740000px;}
.yc0{bottom:115.920000px;}
.ybb{bottom:116.310000px;}
.y1b4{bottom:117.000000px;}
.y1cb{bottom:118.620000px;}
.y153{bottom:119.160000px;}
.y1b9{bottom:119.700000px;}
.y24b{bottom:120.060000px;}
.yfa{bottom:120.420000px;}
.y1ea{bottom:121.680000px;}
.y235{bottom:124.200000px;}
.yf{bottom:126.210000px;}
.y154{bottom:128.010000px;}
.y18b{bottom:128.736000px;}
.y8d{bottom:129.096000px;}
.y13d{bottom:129.630000px;}
.y27c{bottom:132.336000px;}
.y209{bottom:135.036000px;}
.y43{bottom:136.656000px;}
.ybf{bottom:137.700000px;}
.y198{bottom:137.916000px;}
.y241{bottom:139.356000px;}
.ya3{bottom:141.876000px;}
.y1a8{bottom:143.145000px;}
.y24a{bottom:146.016000px;}
.y10f{bottom:146.736000px;}
.y1e9{bottom:147.816000px;}
.y1ca{bottom:149.796000px;}
.y25b{bottom:149.976000px;}
.y234{bottom:150.150000px;}
.y6f{bottom:150.870000px;}
.y1b3{bottom:151.020000px;}
.yf9{bottom:151.590000px;}
.y8{bottom:152.670000px;}
.y5{bottom:152.685000px;}
.y27b{bottom:158.430000px;}
.ybe{bottom:159.660000px;}
.y62{bottom:159.690000px;}
.yd2{bottom:159.705000px;}
.y18a{bottom:159.870000px;}
.y8c{bottom:160.050000px;}
.y208{bottom:161.130000px;}
.y15b{bottom:163.650000px;}
.y240{bottom:165.270000px;}
.y12a{bottom:165.630000px;}
.y42{bottom:167.790000px;}
.yd3{bottom:169.050000px;}
.ye{bottom:172.290000px;}
.ya2{bottom:172.830000px;}
.y1e8{bottom:173.730000px;}
.y225{bottom:175.890000px;}
.y25a{bottom:176.070000px;}
.y10e{bottom:177.870000px;}
.y1c9{bottom:180.750000px;}
.yd1{bottom:181.485000px;}
.y6e{bottom:181.830000px;}
.yf8{bottom:182.550000px;}
.y27a{bottom:184.350000px;}
.y249{bottom:186.690000px;}
.y207{bottom:186.870000px;}
.y61{bottom:190.650000px;}
.y189{bottom:190.830000px;}
.y23f{bottom:191.010000px;}
.y8b{bottom:191.190000px;}
.yd5{bottom:191.730000px;}
.y129{bottom:196.770000px;}
.y41{bottom:198.750000px;}
.y4{bottom:198.765000px;}
.y184{bottom:198.930000px;}
.y1e7{bottom:199.470000px;}
.y197{bottom:200.010000px;}
.y224{bottom:201.990000px;}
.yd0{bottom:203.265000px;}
.y10d{bottom:208.830000px;}
.y1c8{bottom:211.890000px;}
.y248{bottom:212.790000px;}
.y6d{bottom:212.970000px;}
.yf7{bottom:213.690000px;}
.y259{bottom:216.750000px;}
.y233{bottom:216.930000px;}
.yd{bottom:218.370000px;}
.y60{bottom:221.790000px;}
.y188{bottom:221.970000px;}
.y8a{bottom:222.150000px;}
.y279{bottom:225.030000px;}
.y1e6{bottom:225.390000px;}
.y128{bottom:227.730000px;}
.y223{bottom:227.910000px;}
.y183{bottom:229.890000px;}
.ycd{bottom:230.430000px;}
.y196{bottom:231.150000px;}
.y40{bottom:238.890000px;}
.y10c{bottom:239.970000px;}
.y232{bottom:242.850000px;}
.ya1{bottom:243.930000px;}
.yf6{bottom:244.650000px;}
.y3{bottom:244.845000px;}
.y278{bottom:251.130000px;}
.y1e5{bottom:251.310000px;}
.y159{bottom:251.670000px;}
.y1c7{bottom:251.850000px;}
.y5f{bottom:252.750000px;}
.y6c{bottom:252.930000px;}
.y89{bottom:253.290000px;}
.y247{bottom:253.470000px;}
.y206{bottom:253.650000px;}
.y127{bottom:258.690000px;}
.y182{bottom:261.030000px;}
.y195{bottom:262.110000px;}
.y222{bottom:268.590000px;}
.y23e{bottom:268.770000px;}
.y3f{bottom:269.850000px;}
.y10b{bottom:270.930000px;}
.ya0{bottom:274.890000px;}
.yf5{bottom:275.790000px;}
.y246{bottom:279.570000px;}
.y1c6{bottom:282.990000px;}
.y231{bottom:283.530000px;}
.y5e{bottom:283.890000px;}
.y88{bottom:284.250000px;}
.y126{bottom:289.830000px;}
.y277{bottom:291.810000px;}
.y181{bottom:291.990000px;}
.y194{bottom:293.250000px;}
.y205{bottom:294.330000px;}
.y221{bottom:294.510000px;}
.y3e{bottom:300.990000px;}
.y10a{bottom:301.890000px;}
.y9f{bottom:306.030000px;}
.yf4{bottom:306.750000px;}
.y230{bottom:309.630000px;}
.y1c5{bottom:313.950000px;}
.y5d{bottom:314.850000px;}
.y6b{bottom:315.030000px;}
.y156{bottom:317.910000px;}
.y1e4{bottom:318.090000px;}
.y245{bottom:320.250000px;}
.y204{bottom:320.430000px;}
.y125{bottom:320.790000px;}
.y193{bottom:324.210000px;}
.y87{bottom:324.390000px;}
.y180{bottom:328.170000px;}
.y3d{bottom:331.950000px;}
.y109{bottom:333.030000px;}
.y23d{bottom:335.190000px;}
.y22f{bottom:335.370000px;}
.y9e{bottom:336.990000px;}
.yf3{bottom:337.890000px;}
.y276{bottom:343.650000px;}
.y1e3{bottom:343.830000px;}
.y1c4{bottom:345.090000px;}
.y6a{bottom:345.990000px;}
.y203{bottom:346.350000px;}
.y5c{bottom:351.030000px;}
.y124{bottom:351.930000px;}
.y187{bottom:354.990000px;}
.y86{bottom:355.350000px;}
.y220{bottom:361.110000px;}
.y23c{bottom:361.290000px;}
.y14f{bottom:362.730000px;}
.y3c{bottom:363.090000px;}
.y108{bottom:363.990000px;}
.y17f{bottom:366.510000px;}
.y9d{bottom:368.130000px;}
.yf2{bottom:368.850000px;}
.y244{bottom:372.270000px;}
.y1c3{bottom:376.050000px;}
.y69{bottom:377.130000px;}
.y123{bottom:382.935000px;}
.y275{bottom:384.375000px;}
.y1e2{bottom:384.735000px;}
.y186{bottom:386.175000px;}
.y192{bottom:386.355000px;}
.y85{bottom:386.535000px;}
.y202{bottom:387.075000px;}
.y21f{bottom:387.255000px;}
.y3b{bottom:394.095000px;}
.y107{bottom:395.175000px;}
.y9c{bottom:399.135000px;}
.yf1{bottom:400.035000px;}
.y258{bottom:402.015000px;}
.y22e{bottom:402.195000px;}
.y5b{bottom:405.075000px;}
.y17e{bottom:405.615000px;}
.y1c2{bottom:407.235000px;}
.y148{bottom:407.775000px;}
.y68{bottom:408.135000px;}
.y274{bottom:410.475000px;}
.y1e1{bottom:410.655000px;}
.y243{bottom:412.995000px;}
.y201{bottom:413.175000px;}
.y122{bottom:414.075000px;}
.y185{bottom:417.135000px;}
.y84{bottom:417.495000px;}
.y177{bottom:421.995000px;}
.y191{bottom:422.535000px;}
.y3a{bottom:425.235000px;}
.y106{bottom:426.135000px;}
.y21e{bottom:427.935000px;}
.y22d{bottom:428.115000px;}
.y9b{bottom:430.275000px;}
.yf0{bottom:430.995000px;}
.y273{bottom:436.395000px;}
.y1e0{bottom:436.575000px;}
.y1c1{bottom:438.195000px;}
.y200{bottom:438.915000px;}
.y67{bottom:439.275000px;}
.y17a{bottom:444.675000px;}
.y121{bottom:445.035000px;}
.y5a{bottom:448.275000px;}
.y83{bottom:448.635000px;}
.yc9{bottom:449.355000px;}
.y21d{bottom:454.035000px;}
.y39{bottom:456.195000px;}
.y105{bottom:457.275000px;}
.y9a{bottom:461.235000px;}
.yef{bottom:462.135000px;}
.y272{bottom:462.315000px;}
.y22c{bottom:468.795000px;}
.y1c0{bottom:469.335000px;}
.y18e{bottom:470.235000px;}
.y190{bottom:471.675000px;}
.y120{bottom:476.175000px;}
.y1df{bottom:477.255000px;}
.y59{bottom:479.235000px;}
.y82{bottom:479.595000px;}
.y7{bottom:482.115000px;}
.y38{bottom:487.335000px;}
.y271{bottom:488.055000px;}
.y104{bottom:488.235000px;}
.y99{bottom:492.375000px;}
.yee{bottom:493.095000px;}
.y21c{bottom:494.715000px;}
.y22b{bottom:494.895000px;}
.y14b{bottom:495.795000px;}
.y1bf{bottom:500.295000px;}
.y18d{bottom:501.375000px;}
.y1ff{bottom:505.695000px;}
.y58{bottom:510.375000px;}
.y81{bottom:510.735000px;}
.y270{bottom:513.975000px;}
.y18f{bottom:517.575000px;}
.y1de{bottom:518.115000px;}
.y37{bottom:518.295000px;}
.y103{bottom:519.375000px;}
.y21b{bottom:520.635000px;}
.y98{bottom:523.335000px;}
.yed{bottom:524.235000px;}
.y11f{bottom:528.735000px;}
.y1be{bottom:531.435000px;}
.y1fe{bottom:531.615000px;}
.y18c{bottom:532.335000px;}
.y176{bottom:534.135000px;}
.y22a{bottom:535.575000px;}
.yc6{bottom:537.375000px;}
.y26f{bottom:539.895000px;}
.y34{bottom:540.435000px;}
.y19b{bottom:540.615000px;}
.y57{bottom:541.335000px;}
.y80{bottom:541.695000px;}
.y199{bottom:542.775000px;}
.y1dd{bottom:544.215000px;}
.y242{bottom:546.375000px;}
.y23b{bottom:546.555000px;}
.y36{bottom:549.435000px;}
.y102{bottom:550.335000px;}
.y23{bottom:551.775000px;}
.y19d{bottom:555.015000px;}
.yec{bottom:555.195000px;}
.y175{bottom:556.635000px;}
.y11e{bottom:559.875000px;}
.y21a{bottom:561.495000px;}
.y229{bottom:561.675000px;}
.y13c{bottom:562.215000px;}
.y1bd{bottom:562.395000px;}
.y97{bottom:563.475000px;}
.y1fd{bottom:572.295000px;}
.y56{bottom:572.475000px;}
.y7f{bottom:572.655000px;}
.y33{bottom:580.395000px;}
.y26e{bottom:580.575000px;}
.y101{bottom:581.475000px;}
.yba{bottom:581.835000px;}
.y1dc{bottom:584.895000px;}
.yeb{bottom:586.155000px;}
.y23a{bottom:587.235000px;}
.y219{bottom:587.415000px;}
.y11d{bottom:590.835000px;}
.y96{bottom:594.435000px;}
.y22{bottom:598.215000px;}
.y1fc{bottom:598.395000px;}
.y1bc{bottom:602.355000px;}
.y55{bottom:603.435000px;}
.y7e{bottom:603.795000px;}
.yc4{bottom:604.335000px;}
.y26d{bottom:606.675000px;}
.y142{bottom:610.635000px;}
.y1db{bottom:610.995000px;}
.y32{bottom:611.355000px;}
.y100{bottom:612.435000px;}
.y218{bottom:613.335000px;}
.yea{bottom:617.295000px;}
.y11c{bottom:621.975000px;}
.y172{bottom:622.155000px;}
.y95{bottom:625.575000px;}
.y257{bottom:628.095000px;}
.y26c{bottom:632.445000px;}
.y1bb{bottom:633.525000px;}
.y54{bottom:634.605000px;}
.y7d{bottom:634.785000px;}
.y21{bottom:637.485000px;}
.y1fb{bottom:639.105000px;}
.y239{bottom:639.285000px;}
.y35{bottom:642.525000px;}
.yff{bottom:643.605000px;}
.ye9{bottom:648.285000px;}
.ybc{bottom:648.825000px;}
.y31{bottom:651.525000px;}
.y1da{bottom:651.705000px;}
.y11b{bottom:652.965000px;}
.y217{bottom:654.045000px;}
.y256{bottom:654.225000px;}
.y140{bottom:654.945000px;}
.y94{bottom:656.565000px;}
.y26b{bottom:658.365000px;}
.y1fa{bottom:665.205000px;}
.y53{bottom:665.565000px;}
.y1a3{bottom:668.805000px;}
.y7c{bottom:670.245000px;}
.y1a1{bottom:672.945000px;}
.y19f{bottom:674.205000px;}
.yfe{bottom:674.565000px;}
.y20{bottom:676.005000px;}
.y1d9{bottom:677.805000px;}
.ye8{bottom:679.425000px;}
.y216{bottom:680.145000px;}
.y30{bottom:682.485000px;}
.y11a{bottom:684.105000px;}
.y26a{bottom:684.285000px;}
.y1ba{bottom:684.645000px;}
.y93{bottom:687.705000px;}
.y1f9{bottom:690.945000px;}
.y255{bottom:694.905000px;}
.y52{bottom:696.705000px;}
.y1d8{bottom:703.545000px;}
.yfd{bottom:705.705000px;}
.y238{bottom:705.885000px;}
.y215{bottom:706.065000px;}
.y269{bottom:710.205000px;}
.ye7{bottom:710.385000px;}
.y7b{bottom:710.565000px;}
.y2f{bottom:713.625000px;}
.y1f{bottom:714.525000px;}
.y119{bottom:715.065000px;}
.y92{bottom:718.665000px;}
.y25f{bottom:720.825000px;}
.y16b{bottom:721.005000px;}
.y51{bottom:727.665000px;}
.y1f8{bottom:731.625000px;}
.y237{bottom:731.805000px;}
.y268{bottom:735.945000px;}
.yfc{bottom:736.665000px;}
.ye6{bottom:741.525000px;}
.y7a{bottom:741.705000px;}
.y13f{bottom:742.965000px;}
.y1d7{bottom:744.225000px;}
.y2e{bottom:744.585000px;}
.y118{bottom:746.205000px;}
.y214{bottom:746.745000px;}
.y25e{bottom:746.925000px;}
.y1a7{bottom:747.465000px;}
.y91{bottom:749.805000px;}
.y2{bottom:750.345000px;}
.y1e{bottom:753.045000px;}
.y1f7{bottom:757.725000px;}
.y50{bottom:758.805000px;}
.y254{bottom:761.685000px;}
.y267{bottom:761.865000px;}
.yfb{bottom:767.805000px;}
.y1d6{bottom:770.325000px;}
.ye5{bottom:772.485000px;}
.y79{bottom:772.665000px;}
.y2d{bottom:775.725000px;}
.y117{bottom:777.165000px;}
.y90{bottom:780.765000px;}
.y1ab{bottom:786.705000px;}
.y253{bottom:787.785000px;}
.y66{bottom:789.765000px;}
.y1d{bottom:791.565000px;}
.y1a4{bottom:793.005000px;}
.y1d5{bottom:796.245000px;}
.y1f6{bottom:798.405000px;}
.y213{bottom:798.585000px;}
.y4f{bottom:798.765000px;}
.ye4{bottom:803.625000px;}
.y78{bottom:803.805000px;}
.y2c{bottom:806.685000px;}
.y116{bottom:808.305000px;}
.y13b{bottom:809.205000px;}
.y169{bottom:810.825000px;}
.y8f{bottom:811.905000px;}
.y25d{bottom:813.345000px;}
.y252{bottom:813.525000px;}
.y65{bottom:820.905000px;}
.yb6{bottom:824.145000px;}
.y1f5{bottom:824.505000px;}
.y266{bottom:828.465000px;}
.y4e{bottom:829.905000px;}
.y1c{bottom:830.085000px;}
.ye3{bottom:834.585000px;}
.y77{bottom:834.765000px;}
.y1d4{bottom:836.925000px;}
.y2b{bottom:837.825000px;}
.y115{bottom:839.265000px;}
.y251{bottom:839.445000px;}
.y8e{bottom:842.865000px;}
.y1f4{bottom:850.425000px;}
.y64{bottom:851.865000px;}
.y137{bottom:852.945000px;}
.y265{bottom:854.565000px;}
.y168{bottom:857.625000px;}
.y4d{bottom:860.865000px;}
.y1d3{bottom:863.025000px;}
.y228{bottom:865.185000px;}
.y212{bottom:865.365000px;}
.ye2{bottom:865.725000px;}
.yae{bottom:868.425000px;}
.y1b{bottom:868.785000px;}
.y114{bottom:870.405000px;}
.y76{bottom:870.945000px;}
.y250{bottom:880.125000px;}
.y264{bottom:880.305000px;}
.y12d{bottom:881.925000px;}
.y63{bottom:883.005000px;}
.y1d2{bottom:888.810000px;}
.y1f3{bottom:891.150000px;}
.y211{bottom:891.330000px;}
.y4c{bottom:892.050000px;}
.y167{bottom:896.010000px;}
.ye1{bottom:896.730000px;}
.y2a{bottom:899.970000px;}
.y113{bottom:901.410000px;}
.y25c{bottom:906.090000px;}
.y24f{bottom:906.270000px;}
.y1a{bottom:907.350000px;}
.y165{bottom:912.390000px;}
.y75{bottom:914.010000px;}
.y1f2{bottom:917.070000px;}
.y263{bottom:921.030000px;}
.y4b{bottom:923.010000px;}
.ye0{bottom:927.870000px;}
.y1d1{bottom:929.490000px;}
.y29{bottom:930.930000px;}
.y210{bottom:932.010000px;}
.y24e{bottom:932.190000px;}
.y112{bottom:932.550000px;}
.y1b2{bottom:932.730000px;}
.y1f1{bottom:942.990000px;}
.y74{bottom:945.150000px;}
.y19{bottom:945.870000px;}
.y262{bottom:947.130000px;}
.y130{bottom:950.730000px;}
.y4a{bottom:954.150000px;}
.y27d{bottom:955.050000px;}
.y1d0{bottom:955.590000px;}
.ya8{bottom:956.490000px;}
.y164{bottom:957.390000px;}
.y236{bottom:957.750000px;}
.y20f{bottom:957.930000px;}
.ydf{bottom:958.830000px;}
.y28{bottom:962.070000px;}
.y111{bottom:963.510000px;}
.y24d{bottom:972.870000px;}
.y261{bottom:973.050000px;}
.y73{bottom:976.110000px;}
.yaa{bottom:981.150000px;}
.y1f0{bottom:983.670000px;}
.y20e{bottom:983.850000px;}
.y18{bottom:984.390000px;}
.y49{bottom:985.110000px;}
.yde{bottom:989.970000px;}
.y27{bottom:993.030000px;}
.y1cf{bottom:996.270000px;}
.y227{bottom:998.790000px;}
.y24c{bottom:998.970000px;}
.y161{bottom:1001.850000px;}
.ya6{bottom:1004.370000px;}
.y72{bottom:1007.250000px;}
.y1ef{bottom:1009.770000px;}
.y48{bottom:1016.250000px;}
.y12b{bottom:1017.870000px;}
.y1ce{bottom:1022.370000px;}
.y17{bottom:1022.910000px;}
.y26{bottom:1024.170000px;}
.y20d{bottom:1024.530000px;}
.y226{bottom:1024.710000px;}
.y71{bottom:1038.210000px;}
.ya5{bottom:1038.390000px;}
.ydd{bottom:1042.530000px;}
.y160{bottom:1046.130000px;}
.y1b8{bottom:1046.850000px;}
.y47{bottom:1047.210000px;}
.y1ee{bottom:1050.450000px;}
.y20c{bottom:1050.630000px;}
.y1b0{bottom:1051.170000px;}
.y25{bottom:1055.130000px;}
.y16{bottom:1057.830000px;}
.y1cd{bottom:1063.050000px;}
.y70{bottom:1069.350000px;}
.ydc{bottom:1073.670000px;}
.y1ed{bottom:1076.550000px;}
.y46{bottom:1078.350000px;}
.y24{bottom:1086.270000px;}
.y1cc{bottom:1089.150000px;}
.y20b{bottom:1091.310000px;}
.ydb{bottom:1104.630000px;}
.y45{bottom:1109.310000px;}
.y15f{bottom:1112.370000px;}
.y1ec{bottom:1117.230000px;}
.y20a{bottom:1117.410000px;}
.y1{bottom:1137.420000px;}
.yda{bottom:1140.120000px;}
.y44{bottom:1140.480000px;}
.y1eb{bottom:1143.360000px;}
.hf{height:19.080000px;}
.h3f{height:21.060000px;}
.h13{height:21.780000px;}
.h20{height:21.960000px;}
.h22{height:22.680000px;}
.h2f{height:23.040000px;}
.h38{height:23.220000px;}
.h15{height:23.940000px;}
.h39{height:26.280000px;}
.h37{height:27.360000px;}
.h26{height:28.260000px;}
.h32{height:28.656000px;}
.h3a{height:32.760000px;}
.h1f{height:37.980000px;}
.h35{height:41.580000px;}
.h36{height:41.760000px;}
.h17{height:43.560000px;}
.h29{height:43.596000px;}
.h1b{height:43.740000px;}
.h1a{height:43.776000px;}
.h2d{height:44.100000px;}
.h2e{height:44.280000px;}
.h2c{height:44.316000px;}
.h11{height:46.440000px;}
.h2a{height:47.700000px;}
.hb{height:50.308594px;}
.h44{height:53.573906px;}
.hc{height:57.544805px;}
.h43{height:58.621992px;}
.h41{height:58.651172px;}
.h42{height:60.226875px;}
.h1e{height:60.660000px;}
.h10{height:64.978594px;}
.h14{height:65.010937px;}
.h28{height:65.520000px;}
.h24{height:65.700000px;}
.h12{height:66.757500px;}
.h25{height:67.896000px;}
.h31{height:68.760000px;}
.hd{height:70.664062px;}
.he{height:72.562500px;}
.h21{height:74.004654px;}
.h3c{height:82.676953px;}
.h3b{height:84.060000px;}
.h2{height:84.898125px;}
.h1c{height:87.300000px;}
.h16{height:87.336000px;}
.h30{height:88.380000px;}
.h34{height:89.460000px;}
.h9{height:100.342969px;}
.ha{height:105.943359px;}
.h4{height:105.996094px;}
.h33{height:112.140000px;}
.h3e{height:112.716000px;}
.h7{height:118.008984px;}
.h6{height:132.789375px;}
.h23{height:134.496000px;}
.h2b{height:153.720000px;}
.h3d{height:158.070000px;}
.h40{height:165.960000px;}
.h19{height:174.600000px;}
.h5{height:183.450000px;}
.h1d{height:218.190000px;}
.h18{height:241.590000px;}
.h8{height:242.850000px;}
.h27{height:246.270000px;}
.h3{height:269.310000px;}
.h46{height:892.500000px;}
.h45{height:892.800000px;}
.h47{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:18.000000px;}
.w10{width:18.180000px;}
.w22{width:87.516000px;}
.w1c{width:90.360000px;}
.w1b{width:103.320000px;}
.w19{width:103.356000px;}
.w20{width:129.816000px;}
.w21{width:129.960000px;}
.w8{width:146.016000px;}
.w11{width:157.710000px;}
.wa{width:157.860000px;}
.w13{width:157.890000px;}
.wb{width:160.050000px;}
.we{width:161.670000px;}
.wf{width:163.470000px;}
.w1f{width:165.090000px;}
.w12{width:166.890000px;}
.w1a{width:170.130000px;}
.w7{width:176.610000px;}
.w24{width:178.590000px;}
.w14{width:182.730000px;}
.w1e{width:183.990000px;}
.wd{width:188.310000px;}
.w9{width:188.670000px;}
.w17{width:200.415000px;}
.w1d{width:211.710000px;}
.w4{width:215.850000px;}
.w6{width:223.275000px;}
.w15{width:223.770000px;}
.w23{width:238.530000px;}
.w5{width:238.890000px;}
.w16{width:247.530000px;}
.w18{width:471.315000px;}
.w2{width:550.185000px;}
.w3{width:690.090000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w27{width:892.800000px;}
.w25{width:1262.880000px;}
.w26{width:1263.000000px;}
.x0{left:0.000000px;}
.x3c{left:7.920000px;}
.x41{left:9.000000px;}
.x57{left:10.080000px;}
.x2f{left:11.160000px;}
.x4b{left:12.960000px;}
.x47{left:14.580000px;}
.x52{left:15.660000px;}
.x25{left:16.740000px;}
.x32{left:17.820000px;}
.x28{left:20.520000px;}
.x30{left:22.140000px;}
.x4e{left:23.220000px;}
.x42{left:24.300000px;}
.x46{left:26.280000px;}
.x3e{left:28.080000px;}
.x23{left:29.160000px;}
.x31{left:30.960000px;}
.x5b{left:32.085000px;}
.x21{left:33.120000px;}
.x53{left:34.740000px;}
.x60{left:35.865000px;}
.x2b{left:37.800000px;}
.x8{left:39.234000px;}
.x22{left:41.085000px;}
.x2d{left:42.345000px;}
.x27{left:43.785000px;}
.x26{left:45.585000px;}
.x2e{left:47.745000px;}
.x2c{left:50.265000px;}
.x20{left:53.325000px;}
.x1e{left:56.334000px;}
.x1f{left:57.600000px;}
.x29{left:59.445000px;}
.x5a{left:61.065000px;}
.x24{left:62.094000px;}
.x51{left:64.620000px;}
.x34{left:67.134000px;}
.x5c{left:71.100000px;}
.x1d{left:72.585000px;}
.x2a{left:73.614000px;}
.x33{left:75.414000px;}
.x35{left:76.854000px;}
.x45{left:78.840000px;}
.x7{left:84.054000px;}
.x43{left:88.374000px;}
.x44{left:94.320000px;}
.x3{left:98.865000px;}
.x5e{left:100.125000px;}
.x5d{left:111.774000px;}
.x1a{left:119.556000px;}
.x6{left:123.336000px;}
.xf{left:127.656000px;}
.x11{left:144.216000px;}
.x38{left:154.650000px;}
.x5{left:158.445000px;}
.x12{left:160.590000px;}
.x63{left:170.310000px;}
.x2{left:173.910000px;}
.x15{left:180.750000px;}
.xd{left:191.379000px;}
.xc{left:198.039000px;}
.x5f{left:235.659000px;}
.x19{left:252.030000px;}
.x6b{left:260.310000px;}
.x37{left:263.955000px;}
.xb{left:266.619000px;}
.x4{left:275.115000px;}
.x61{left:276.195000px;}
.x3b{left:279.615000px;}
.x9{left:283.539000px;}
.x4c{left:286.455000px;}
.x1{left:290.415000px;}
.x39{left:296.175000px;}
.x3d{left:297.615000px;}
.x48{left:301.215000px;}
.x54{left:302.295000px;}
.x4d{left:304.635000px;}
.x18{left:320.295000px;}
.x62{left:331.455000px;}
.x1b{left:335.415000px;}
.x58{left:343.335000px;}
.xa{left:344.949000px;}
.x14{left:348.375000px;}
.x16{left:359.895000px;}
.x17{left:364.575000px;}
.x67{left:376.275000px;}
.x64{left:379.155000px;}
.x13{left:392.475000px;}
.x10{left:408.495000px;}
.x69{left:432.795000px;}
.x36{left:436.395000px;}
.xe{left:441.465000px;}
.x3f{left:443.625000px;}
.x49{left:447.225000px;}
.x55{left:448.305000px;}
.x4f{left:450.645000px;}
.x1c{left:574.305000px;}
.x6a{left:585.465000px;}
.x59{left:590.865000px;}
.x66{left:627.990000px;}
.x3a{left:630.870000px;}
.x40{left:631.950000px;}
.x68{left:634.110000px;}
.x4a{left:635.910000px;}
.x56{left:636.990000px;}
.x50{left:639.330000px;}
.x65{left:660.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls26{letter-spacing:-0.367467pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.183467pt;}
.ls22{letter-spacing:0.230933pt;}
.ls2b{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.271467pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.456533pt;}
.ls27{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls30{letter-spacing:0.869333pt;}
.ls2e{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.600000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.680000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls20{letter-spacing:4.000000pt;}
.ls19{letter-spacing:4.160000pt;}
.ls15{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls14{letter-spacing:26.368000pt;}
.ls12{letter-spacing:27.648000pt;}
.lsf{letter-spacing:172.778667pt;}
.ls1e{letter-spacing:174.698667pt;}
.ls0{letter-spacing:749.386667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws0{word-spacing:-29.280000pt;}
.ws6{word-spacing:-19.840000pt;}
.wse{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.149333pt;}
.ws9{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-14.645333pt;}
._4{margin-left:-12.821333pt;}
._6{margin-left:-11.061333pt;}
._2{margin-left:-8.104533pt;}
._7{margin-left:-7.008000pt;}
._5{margin-left:-3.925333pt;}
._3{margin-left:-2.293333pt;}
._1{margin-left:-0.908800pt;}
._0{width:1.171200pt;}
._a{width:2.570667pt;}
._d{width:4.044800pt;}
._e{width:5.017600pt;}
._11{width:6.570667pt;}
._c{width:8.320000pt;}
._10{width:9.911467pt;}
._f{width:10.880000pt;}
._16{width:12.147200pt;}
._14{width:13.888000pt;}
._15{width:14.860800pt;}
._19{width:16.042880pt;}
._17{width:17.004800pt;}
._18{width:17.996800pt;}
._1d{width:25.935573pt;}
._1c{width:27.453227pt;}
._1b{width:29.375360pt;}
._1a{width:30.437760pt;}
._12{width:54.592000pt;}
._13{width:55.552000pt;}
._b{width:172.778667pt;}
._9{width:752.138667pt;}
.fs8{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:90.880000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y13{bottom:-52.800000pt;}
.y12{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.520000pt;}
.ya7{bottom:3.680000pt;}
.yd9{bottom:4.960000pt;}
.y1b1{bottom:5.440000pt;}
.yc8{bottom:5.760000pt;}
.y157{bottom:5.920000pt;}
.yab{bottom:6.080000pt;}
.yb5{bottom:6.240000pt;}
.y14d{bottom:6.400000pt;}
.y147{bottom:6.560000pt;}
.yad{bottom:6.720000pt;}
.y12c{bottom:6.880000pt;}
.yac{bottom:7.040000pt;}
.y16a{bottom:7.200000pt;}
.y134{bottom:7.240000pt;}
.y1a0{bottom:7.360000pt;}
.y138{bottom:8.640000pt;}
.y173{bottom:8.826667pt;}
.y13a{bottom:8.960000pt;}
.y174{bottom:9.146667pt;}
.y1af{bottom:9.760000pt;}
.y1a2{bottom:10.080000pt;}
.yb{bottom:10.720000pt;}
.y19e{bottom:11.040000pt;}
.y139{bottom:11.840000pt;}
.yd6{bottom:13.280000pt;}
.y1b7{bottom:13.440000pt;}
.y1a6{bottom:14.880000pt;}
.y162{bottom:15.360000pt;}
.yb7{bottom:15.520000pt;}
.y15c{bottom:15.552000pt;}
.y163{bottom:15.680000pt;}
.yb8{bottom:15.840000pt;}
.y15e{bottom:15.872000pt;}
.y150{bottom:15.880000pt;}
.y158{bottom:16.000000pt;}
.y166{bottom:16.160000pt;}
.y151{bottom:16.200000pt;}
.ya9{bottom:16.800000pt;}
.y170{bottom:16.960000pt;}
.y136{bottom:17.000000pt;}
.y144{bottom:17.280000pt;}
.y145{bottom:17.600000pt;}
.yd7{bottom:20.480000pt;}
.yd4{bottom:23.040000pt;}
.y19c{bottom:23.520000pt;}
.y19a{bottom:23.680000pt;}
.y15a{bottom:25.120000pt;}
.yc7{bottom:25.280000pt;}
.yb0{bottom:25.320000pt;}
.yb9{bottom:25.440000pt;}
.y143{bottom:25.466667pt;}
.ycc{bottom:25.600000pt;}
.yc5{bottom:25.626667pt;}
.y15d{bottom:25.632000pt;}
.yb4{bottom:25.640000pt;}
.y14c{bottom:25.760000pt;}
.y152{bottom:25.800000pt;}
.y16e{bottom:26.080000pt;}
.y132{bottom:26.280000pt;}
.y17d{bottom:26.400000pt;}
.y133{bottom:26.600000pt;}
.y171{bottom:27.040000pt;}
.y146{bottom:27.840000pt;}
.y11{bottom:31.360000pt;}
.y141{bottom:34.880000pt;}
.ycb{bottom:35.200000pt;}
.yb1{bottom:35.240000pt;}
.y14e{bottom:35.360000pt;}
.y16c{bottom:35.680000pt;}
.y179{bottom:36.160000pt;}
.y16f{bottom:36.320000pt;}
.y135{bottom:36.360000pt;}
.y1ae{bottom:39.840000pt;}
.y1b6{bottom:43.520000pt;}
.yca{bottom:44.640000pt;}
.yaf{bottom:44.680000pt;}
.yc3{bottom:44.960000pt;}
.yb3{bottom:45.000000pt;}
.y131{bottom:45.120000pt;}
.y16d{bottom:45.440000pt;}
.y17c{bottom:45.760000pt;}
.y12f{bottom:46.120000pt;}
.y15{bottom:50.720000pt;}
.ya{bottom:54.880000pt;}
.y178{bottom:55.680000pt;}
.y1a5{bottom:57.760000pt;}
.yc{bottom:60.960000pt;}
.yc2{bottom:64.320000pt;}
.yb2{bottom:64.360000pt;}
.y14a{bottom:64.480000pt;}
.y17b{bottom:65.280000pt;}
.y12e{bottom:65.640000pt;}
.y1aa{bottom:66.880000pt;}
.y14{bottom:69.440000pt;}
.y1ad{bottom:70.080000pt;}
.y10{bottom:71.232000pt;}
.y1b5{bottom:73.760000pt;}
.ybd{bottom:73.920000pt;}
.yc1{bottom:83.680000pt;}
.y149{bottom:83.840000pt;}
.y1ac{bottom:86.920000pt;}
.y9{bottom:88.800000pt;}
.yce{bottom:93.120000pt;}
.ycf{bottom:93.440000pt;}
.y6{bottom:94.080000pt;}
.y155{bottom:94.426667pt;}
.y13e{bottom:95.866667pt;}
.y1a9{bottom:96.960000pt;}
.ya4{bottom:98.400000pt;}
.y260{bottom:100.800000pt;}
.y110{bottom:102.880000pt;}
.yc0{bottom:103.040000pt;}
.ybb{bottom:103.386667pt;}
.y1b4{bottom:104.000000pt;}
.y1cb{bottom:105.440000pt;}
.y153{bottom:105.920000pt;}
.y1b9{bottom:106.400000pt;}
.y24b{bottom:106.720000pt;}
.yfa{bottom:107.040000pt;}
.y1ea{bottom:108.160000pt;}
.y235{bottom:110.400000pt;}
.yf{bottom:112.186667pt;}
.y154{bottom:113.786667pt;}
.y18b{bottom:114.432000pt;}
.y8d{bottom:114.752000pt;}
.y13d{bottom:115.226667pt;}
.y27c{bottom:117.632000pt;}
.y209{bottom:120.032000pt;}
.y43{bottom:121.472000pt;}
.ybf{bottom:122.400000pt;}
.y198{bottom:122.592000pt;}
.y241{bottom:123.872000pt;}
.ya3{bottom:126.112000pt;}
.y1a8{bottom:127.240000pt;}
.y24a{bottom:129.792000pt;}
.y10f{bottom:130.432000pt;}
.y1e9{bottom:131.392000pt;}
.y1ca{bottom:133.152000pt;}
.y25b{bottom:133.312000pt;}
.y234{bottom:133.466667pt;}
.y6f{bottom:134.106667pt;}
.y1b3{bottom:134.240000pt;}
.yf9{bottom:134.746667pt;}
.y8{bottom:135.706667pt;}
.y5{bottom:135.720000pt;}
.y27b{bottom:140.826667pt;}
.ybe{bottom:141.920000pt;}
.y62{bottom:141.946667pt;}
.yd2{bottom:141.960000pt;}
.y18a{bottom:142.106667pt;}
.y8c{bottom:142.266667pt;}
.y208{bottom:143.226667pt;}
.y15b{bottom:145.466667pt;}
.y240{bottom:146.906667pt;}
.y12a{bottom:147.226667pt;}
.y42{bottom:149.146667pt;}
.yd3{bottom:150.266667pt;}
.ye{bottom:153.146667pt;}
.ya2{bottom:153.626667pt;}
.y1e8{bottom:154.426667pt;}
.y225{bottom:156.346667pt;}
.y25a{bottom:156.506667pt;}
.y10e{bottom:158.106667pt;}
.y1c9{bottom:160.666667pt;}
.yd1{bottom:161.320000pt;}
.y6e{bottom:161.626667pt;}
.yf8{bottom:162.266667pt;}
.y27a{bottom:163.866667pt;}
.y249{bottom:165.946667pt;}
.y207{bottom:166.106667pt;}
.y61{bottom:169.466667pt;}
.y189{bottom:169.626667pt;}
.y23f{bottom:169.786667pt;}
.y8b{bottom:169.946667pt;}
.yd5{bottom:170.426667pt;}
.y129{bottom:174.906667pt;}
.y41{bottom:176.666667pt;}
.y4{bottom:176.680000pt;}
.y184{bottom:176.826667pt;}
.y1e7{bottom:177.306667pt;}
.y197{bottom:177.786667pt;}
.y224{bottom:179.546667pt;}
.yd0{bottom:180.680000pt;}
.y10d{bottom:185.626667pt;}
.y1c8{bottom:188.346667pt;}
.y248{bottom:189.146667pt;}
.y6d{bottom:189.306667pt;}
.yf7{bottom:189.946667pt;}
.y259{bottom:192.666667pt;}
.y233{bottom:192.826667pt;}
.yd{bottom:194.106667pt;}
.y60{bottom:197.146667pt;}
.y188{bottom:197.306667pt;}
.y8a{bottom:197.466667pt;}
.y279{bottom:200.026667pt;}
.y1e6{bottom:200.346667pt;}
.y128{bottom:202.426667pt;}
.y223{bottom:202.586667pt;}
.y183{bottom:204.346667pt;}
.ycd{bottom:204.826667pt;}
.y196{bottom:205.466667pt;}
.y40{bottom:212.346667pt;}
.y10c{bottom:213.306667pt;}
.y232{bottom:215.866667pt;}
.ya1{bottom:216.826667pt;}
.yf6{bottom:217.466667pt;}
.y3{bottom:217.640000pt;}
.y278{bottom:223.226667pt;}
.y1e5{bottom:223.386667pt;}
.y159{bottom:223.706667pt;}
.y1c7{bottom:223.866667pt;}
.y5f{bottom:224.666667pt;}
.y6c{bottom:224.826667pt;}
.y89{bottom:225.146667pt;}
.y247{bottom:225.306667pt;}
.y206{bottom:225.466667pt;}
.y127{bottom:229.946667pt;}
.y182{bottom:232.026667pt;}
.y195{bottom:232.986667pt;}
.y222{bottom:238.746667pt;}
.y23e{bottom:238.906667pt;}
.y3f{bottom:239.866667pt;}
.y10b{bottom:240.826667pt;}
.ya0{bottom:244.346667pt;}
.yf5{bottom:245.146667pt;}
.y246{bottom:248.506667pt;}
.y1c6{bottom:251.546667pt;}
.y231{bottom:252.026667pt;}
.y5e{bottom:252.346667pt;}
.y88{bottom:252.666667pt;}
.y126{bottom:257.626667pt;}
.y277{bottom:259.386667pt;}
.y181{bottom:259.546667pt;}
.y194{bottom:260.666667pt;}
.y205{bottom:261.626667pt;}
.y221{bottom:261.786667pt;}
.y3e{bottom:267.546667pt;}
.y10a{bottom:268.346667pt;}
.y9f{bottom:272.026667pt;}
.yf4{bottom:272.666667pt;}
.y230{bottom:275.226667pt;}
.y1c5{bottom:279.066667pt;}
.y5d{bottom:279.866667pt;}
.y6b{bottom:280.026667pt;}
.y156{bottom:282.586667pt;}
.y1e4{bottom:282.746667pt;}
.y245{bottom:284.666667pt;}
.y204{bottom:284.826667pt;}
.y125{bottom:285.146667pt;}
.y193{bottom:288.186667pt;}
.y87{bottom:288.346667pt;}
.y180{bottom:291.706667pt;}
.y3d{bottom:295.066667pt;}
.y109{bottom:296.026667pt;}
.y23d{bottom:297.946667pt;}
.y22f{bottom:298.106667pt;}
.y9e{bottom:299.546667pt;}
.yf3{bottom:300.346667pt;}
.y276{bottom:305.466667pt;}
.y1e3{bottom:305.626667pt;}
.y1c4{bottom:306.746667pt;}
.y6a{bottom:307.546667pt;}
.y203{bottom:307.866667pt;}
.y5c{bottom:312.026667pt;}
.y124{bottom:312.826667pt;}
.y187{bottom:315.546667pt;}
.y86{bottom:315.866667pt;}
.y220{bottom:320.986667pt;}
.y23c{bottom:321.146667pt;}
.y14f{bottom:322.426667pt;}
.y3c{bottom:322.746667pt;}
.y108{bottom:323.546667pt;}
.y17f{bottom:325.786667pt;}
.y9d{bottom:327.226667pt;}
.yf2{bottom:327.866667pt;}
.y244{bottom:330.906667pt;}
.y1c3{bottom:334.266667pt;}
.y69{bottom:335.226667pt;}
.y123{bottom:340.386667pt;}
.y275{bottom:341.666667pt;}
.y1e2{bottom:341.986667pt;}
.y186{bottom:343.266667pt;}
.y192{bottom:343.426667pt;}
.y85{bottom:343.586667pt;}
.y202{bottom:344.066667pt;}
.y21f{bottom:344.226667pt;}
.y3b{bottom:350.306667pt;}
.y107{bottom:351.266667pt;}
.y9c{bottom:354.786667pt;}
.yf1{bottom:355.586667pt;}
.y258{bottom:357.346667pt;}
.y22e{bottom:357.506667pt;}
.y5b{bottom:360.066667pt;}
.y17e{bottom:360.546667pt;}
.y1c2{bottom:361.986667pt;}
.y148{bottom:362.466667pt;}
.y68{bottom:362.786667pt;}
.y274{bottom:364.866667pt;}
.y1e1{bottom:365.026667pt;}
.y243{bottom:367.106667pt;}
.y201{bottom:367.266667pt;}
.y122{bottom:368.066667pt;}
.y185{bottom:370.786667pt;}
.y84{bottom:371.106667pt;}
.y177{bottom:375.106667pt;}
.y191{bottom:375.586667pt;}
.y3a{bottom:377.986667pt;}
.y106{bottom:378.786667pt;}
.y21e{bottom:380.386667pt;}
.y22d{bottom:380.546667pt;}
.y9b{bottom:382.466667pt;}
.yf0{bottom:383.106667pt;}
.y273{bottom:387.906667pt;}
.y1e0{bottom:388.066667pt;}
.y1c1{bottom:389.506667pt;}
.y200{bottom:390.146667pt;}
.y67{bottom:390.466667pt;}
.y17a{bottom:395.266667pt;}
.y121{bottom:395.586667pt;}
.y5a{bottom:398.466667pt;}
.y83{bottom:398.786667pt;}
.yc9{bottom:399.426667pt;}
.y21d{bottom:403.586667pt;}
.y39{bottom:405.506667pt;}
.y105{bottom:406.466667pt;}
.y9a{bottom:409.986667pt;}
.yef{bottom:410.786667pt;}
.y272{bottom:410.946667pt;}
.y22c{bottom:416.706667pt;}
.y1c0{bottom:417.186667pt;}
.y18e{bottom:417.986667pt;}
.y190{bottom:419.266667pt;}
.y120{bottom:423.266667pt;}
.y1df{bottom:424.226667pt;}
.y59{bottom:425.986667pt;}
.y82{bottom:426.306667pt;}
.y7{bottom:428.546667pt;}
.y38{bottom:433.186667pt;}
.y271{bottom:433.826667pt;}
.y104{bottom:433.986667pt;}
.y99{bottom:437.666667pt;}
.yee{bottom:438.306667pt;}
.y21c{bottom:439.746667pt;}
.y22b{bottom:439.906667pt;}
.y14b{bottom:440.706667pt;}
.y1bf{bottom:444.706667pt;}
.y18d{bottom:445.666667pt;}
.y1ff{bottom:449.506667pt;}
.y58{bottom:453.666667pt;}
.y81{bottom:453.986667pt;}
.y270{bottom:456.866667pt;}
.y18f{bottom:460.066667pt;}
.y1de{bottom:460.546667pt;}
.y37{bottom:460.706667pt;}
.y103{bottom:461.666667pt;}
.y21b{bottom:462.786667pt;}
.y98{bottom:465.186667pt;}
.yed{bottom:465.986667pt;}
.y11f{bottom:469.986667pt;}
.y1be{bottom:472.386667pt;}
.y1fe{bottom:472.546667pt;}
.y18c{bottom:473.186667pt;}
.y176{bottom:474.786667pt;}
.y22a{bottom:476.066667pt;}
.yc6{bottom:477.666667pt;}
.y26f{bottom:479.906667pt;}
.y34{bottom:480.386667pt;}
.y19b{bottom:480.546667pt;}
.y57{bottom:481.186667pt;}
.y80{bottom:481.506667pt;}
.y199{bottom:482.466667pt;}
.y1dd{bottom:483.746667pt;}
.y242{bottom:485.666667pt;}
.y23b{bottom:485.826667pt;}
.y36{bottom:488.386667pt;}
.y102{bottom:489.186667pt;}
.y23{bottom:490.466667pt;}
.y19d{bottom:493.346667pt;}
.yec{bottom:493.506667pt;}
.y175{bottom:494.786667pt;}
.y11e{bottom:497.666667pt;}
.y21a{bottom:499.106667pt;}
.y229{bottom:499.266667pt;}
.y13c{bottom:499.746667pt;}
.y1bd{bottom:499.906667pt;}
.y97{bottom:500.866667pt;}
.y1fd{bottom:508.706667pt;}
.y56{bottom:508.866667pt;}
.y7f{bottom:509.026667pt;}
.y33{bottom:515.906667pt;}
.y26e{bottom:516.066667pt;}
.y101{bottom:516.866667pt;}
.yba{bottom:517.186667pt;}
.y1dc{bottom:519.906667pt;}
.yeb{bottom:521.026667pt;}
.y23a{bottom:521.986667pt;}
.y219{bottom:522.146667pt;}
.y11d{bottom:525.186667pt;}
.y96{bottom:528.386667pt;}
.y22{bottom:531.746667pt;}
.y1fc{bottom:531.906667pt;}
.y1bc{bottom:535.426667pt;}
.y55{bottom:536.386667pt;}
.y7e{bottom:536.706667pt;}
.yc4{bottom:537.186667pt;}
.y26d{bottom:539.266667pt;}
.y142{bottom:542.786667pt;}
.y1db{bottom:543.106667pt;}
.y32{bottom:543.426667pt;}
.y100{bottom:544.386667pt;}
.y218{bottom:545.186667pt;}
.yea{bottom:548.706667pt;}
.y11c{bottom:552.866667pt;}
.y172{bottom:553.026667pt;}
.y95{bottom:556.066667pt;}
.y257{bottom:558.306667pt;}
.y26c{bottom:562.173333pt;}
.y1bb{bottom:563.133333pt;}
.y54{bottom:564.093333pt;}
.y7d{bottom:564.253333pt;}
.y21{bottom:566.653333pt;}
.y1fb{bottom:568.093333pt;}
.y239{bottom:568.253333pt;}
.y35{bottom:571.133333pt;}
.yff{bottom:572.093333pt;}
.ye9{bottom:576.253333pt;}
.ybc{bottom:576.733333pt;}
.y31{bottom:579.133333pt;}
.y1da{bottom:579.293333pt;}
.y11b{bottom:580.413333pt;}
.y217{bottom:581.373333pt;}
.y256{bottom:581.533333pt;}
.y140{bottom:582.173333pt;}
.y94{bottom:583.613333pt;}
.y26b{bottom:585.213333pt;}
.y1fa{bottom:591.293333pt;}
.y53{bottom:591.613333pt;}
.y1a3{bottom:594.493333pt;}
.y7c{bottom:595.773333pt;}
.y1a1{bottom:598.173333pt;}
.y19f{bottom:599.293333pt;}
.yfe{bottom:599.613333pt;}
.y20{bottom:600.893333pt;}
.y1d9{bottom:602.493333pt;}
.ye8{bottom:603.933333pt;}
.y216{bottom:604.573333pt;}
.y30{bottom:606.653333pt;}
.y11a{bottom:608.093333pt;}
.y26a{bottom:608.253333pt;}
.y1ba{bottom:608.573333pt;}
.y93{bottom:611.293333pt;}
.y1f9{bottom:614.173333pt;}
.y255{bottom:617.693333pt;}
.y52{bottom:619.293333pt;}
.y1d8{bottom:625.373333pt;}
.yfd{bottom:627.293333pt;}
.y238{bottom:627.453333pt;}
.y215{bottom:627.613333pt;}
.y269{bottom:631.293333pt;}
.ye7{bottom:631.453333pt;}
.y7b{bottom:631.613333pt;}
.y2f{bottom:634.333333pt;}
.y1f{bottom:635.133333pt;}
.y119{bottom:635.613333pt;}
.y92{bottom:638.813333pt;}
.y25f{bottom:640.733333pt;}
.y16b{bottom:640.893333pt;}
.y51{bottom:646.813333pt;}
.y1f8{bottom:650.333333pt;}
.y237{bottom:650.493333pt;}
.y268{bottom:654.173333pt;}
.yfc{bottom:654.813333pt;}
.ye6{bottom:659.133333pt;}
.y7a{bottom:659.293333pt;}
.y13f{bottom:660.413333pt;}
.y1d7{bottom:661.533333pt;}
.y2e{bottom:661.853333pt;}
.y118{bottom:663.293333pt;}
.y214{bottom:663.773333pt;}
.y25e{bottom:663.933333pt;}
.y1a7{bottom:664.413333pt;}
.y91{bottom:666.493333pt;}
.y2{bottom:666.973333pt;}
.y1e{bottom:669.373333pt;}
.y1f7{bottom:673.533333pt;}
.y50{bottom:674.493333pt;}
.y254{bottom:677.053333pt;}
.y267{bottom:677.213333pt;}
.yfb{bottom:682.493333pt;}
.y1d6{bottom:684.733333pt;}
.ye5{bottom:686.653333pt;}
.y79{bottom:686.813333pt;}
.y2d{bottom:689.533333pt;}
.y117{bottom:690.813333pt;}
.y90{bottom:694.013333pt;}
.y1ab{bottom:699.293333pt;}
.y253{bottom:700.253333pt;}
.y66{bottom:702.013333pt;}
.y1d{bottom:703.613333pt;}
.y1a4{bottom:704.893333pt;}
.y1d5{bottom:707.773333pt;}
.y1f6{bottom:709.693333pt;}
.y213{bottom:709.853333pt;}
.y4f{bottom:710.013333pt;}
.ye4{bottom:714.333333pt;}
.y78{bottom:714.493333pt;}
.y2c{bottom:717.053333pt;}
.y116{bottom:718.493333pt;}
.y13b{bottom:719.293333pt;}
.y169{bottom:720.733333pt;}
.y8f{bottom:721.693333pt;}
.y25d{bottom:722.973333pt;}
.y252{bottom:723.133333pt;}
.y65{bottom:729.693333pt;}
.yb6{bottom:732.573333pt;}
.y1f5{bottom:732.893333pt;}
.y266{bottom:736.413333pt;}
.y4e{bottom:737.693333pt;}
.y1c{bottom:737.853333pt;}
.ye3{bottom:741.853333pt;}
.y77{bottom:742.013333pt;}
.y1d4{bottom:743.933333pt;}
.y2b{bottom:744.733333pt;}
.y115{bottom:746.013333pt;}
.y251{bottom:746.173333pt;}
.y8e{bottom:749.213333pt;}
.y1f4{bottom:755.933333pt;}
.y64{bottom:757.213333pt;}
.y137{bottom:758.173333pt;}
.y265{bottom:759.613333pt;}
.y168{bottom:762.333333pt;}
.y4d{bottom:765.213333pt;}
.y1d3{bottom:767.133333pt;}
.y228{bottom:769.053333pt;}
.y212{bottom:769.213333pt;}
.ye2{bottom:769.533333pt;}
.yae{bottom:771.933333pt;}
.y1b{bottom:772.253333pt;}
.y114{bottom:773.693333pt;}
.y76{bottom:774.173333pt;}
.y250{bottom:782.333333pt;}
.y264{bottom:782.493333pt;}
.y12d{bottom:783.933333pt;}
.y63{bottom:784.893333pt;}
.y1d2{bottom:790.053333pt;}
.y1f3{bottom:792.133333pt;}
.y211{bottom:792.293333pt;}
.y4c{bottom:792.933333pt;}
.y167{bottom:796.453333pt;}
.ye1{bottom:797.093333pt;}
.y2a{bottom:799.973333pt;}
.y113{bottom:801.253333pt;}
.y25c{bottom:805.413333pt;}
.y24f{bottom:805.573333pt;}
.y1a{bottom:806.533333pt;}
.y165{bottom:811.013333pt;}
.y75{bottom:812.453333pt;}
.y1f2{bottom:815.173333pt;}
.y263{bottom:818.693333pt;}
.y4b{bottom:820.453333pt;}
.ye0{bottom:824.773333pt;}
.y1d1{bottom:826.213333pt;}
.y29{bottom:827.493333pt;}
.y210{bottom:828.453333pt;}
.y24e{bottom:828.613333pt;}
.y112{bottom:828.933333pt;}
.y1b2{bottom:829.093333pt;}
.y1f1{bottom:838.213333pt;}
.y74{bottom:840.133333pt;}
.y19{bottom:840.773333pt;}
.y262{bottom:841.893333pt;}
.y130{bottom:845.093333pt;}
.y4a{bottom:848.133333pt;}
.y27d{bottom:848.933333pt;}
.y1d0{bottom:849.413333pt;}
.ya8{bottom:850.213333pt;}
.y164{bottom:851.013333pt;}
.y236{bottom:851.333333pt;}
.y20f{bottom:851.493333pt;}
.ydf{bottom:852.293333pt;}
.y28{bottom:855.173333pt;}
.y111{bottom:856.453333pt;}
.y24d{bottom:864.773333pt;}
.y261{bottom:864.933333pt;}
.y73{bottom:867.653333pt;}
.yaa{bottom:872.133333pt;}
.y1f0{bottom:874.373333pt;}
.y20e{bottom:874.533333pt;}
.y18{bottom:875.013333pt;}
.y49{bottom:875.653333pt;}
.yde{bottom:879.973333pt;}
.y27{bottom:882.693333pt;}
.y1cf{bottom:885.573333pt;}
.y227{bottom:887.813333pt;}
.y24c{bottom:887.973333pt;}
.y161{bottom:890.533333pt;}
.ya6{bottom:892.773333pt;}
.y72{bottom:895.333333pt;}
.y1ef{bottom:897.573333pt;}
.y48{bottom:903.333333pt;}
.y12b{bottom:904.773333pt;}
.y1ce{bottom:908.773333pt;}
.y17{bottom:909.253333pt;}
.y26{bottom:910.373333pt;}
.y20d{bottom:910.693333pt;}
.y226{bottom:910.853333pt;}
.y71{bottom:922.853333pt;}
.ya5{bottom:923.013333pt;}
.ydd{bottom:926.693333pt;}
.y160{bottom:929.893333pt;}
.y1b8{bottom:930.533333pt;}
.y47{bottom:930.853333pt;}
.y1ee{bottom:933.733333pt;}
.y20c{bottom:933.893333pt;}
.y1b0{bottom:934.373333pt;}
.y25{bottom:937.893333pt;}
.y16{bottom:940.293333pt;}
.y1cd{bottom:944.933333pt;}
.y70{bottom:950.533333pt;}
.ydc{bottom:954.373333pt;}
.y1ed{bottom:956.933333pt;}
.y46{bottom:958.533333pt;}
.y24{bottom:965.573333pt;}
.y1cc{bottom:968.133333pt;}
.y20b{bottom:970.053333pt;}
.ydb{bottom:981.893333pt;}
.y45{bottom:986.053333pt;}
.y15f{bottom:988.773333pt;}
.y1ec{bottom:993.093333pt;}
.y20a{bottom:993.253333pt;}
.y1{bottom:1011.040000pt;}
.yda{bottom:1013.440000pt;}
.y44{bottom:1013.760000pt;}
.y1eb{bottom:1016.320000pt;}
.hf{height:16.960000pt;}
.h3f{height:18.720000pt;}
.h13{height:19.360000pt;}
.h20{height:19.520000pt;}
.h22{height:20.160000pt;}
.h2f{height:20.480000pt;}
.h38{height:20.640000pt;}
.h15{height:21.280000pt;}
.h39{height:23.360000pt;}
.h37{height:24.320000pt;}
.h26{height:25.120000pt;}
.h32{height:25.472000pt;}
.h3a{height:29.120000pt;}
.h1f{height:33.760000pt;}
.h35{height:36.960000pt;}
.h36{height:37.120000pt;}
.h17{height:38.720000pt;}
.h29{height:38.752000pt;}
.h1b{height:38.880000pt;}
.h1a{height:38.912000pt;}
.h2d{height:39.200000pt;}
.h2e{height:39.360000pt;}
.h2c{height:39.392000pt;}
.h11{height:41.280000pt;}
.h2a{height:42.400000pt;}
.hb{height:44.718750pt;}
.h44{height:47.621250pt;}
.hc{height:51.150937pt;}
.h43{height:52.108438pt;}
.h41{height:52.134375pt;}
.h42{height:53.535000pt;}
.h1e{height:53.920000pt;}
.h10{height:57.758750pt;}
.h14{height:57.787500pt;}
.h28{height:58.240000pt;}
.h24{height:58.400000pt;}
.h12{height:59.340000pt;}
.h25{height:60.352000pt;}
.h31{height:61.120000pt;}
.hd{height:62.812500pt;}
.he{height:64.500000pt;}
.h21{height:65.781915pt;}
.h3c{height:73.490625pt;}
.h3b{height:74.720000pt;}
.h2{height:75.465000pt;}
.h1c{height:77.600000pt;}
.h16{height:77.632000pt;}
.h30{height:78.560000pt;}
.h34{height:79.520000pt;}
.h9{height:89.193750pt;}
.ha{height:94.171875pt;}
.h4{height:94.218750pt;}
.h33{height:99.680000pt;}
.h3e{height:100.192000pt;}
.h7{height:104.896875pt;}
.h6{height:118.035000pt;}
.h23{height:119.552000pt;}
.h2b{height:136.640000pt;}
.h3d{height:140.506667pt;}
.h40{height:147.520000pt;}
.h19{height:155.200000pt;}
.h5{height:163.066667pt;}
.h1d{height:193.946667pt;}
.h18{height:214.746667pt;}
.h8{height:215.866667pt;}
.h27{height:218.906667pt;}
.h3{height:239.386667pt;}
.h46{height:793.333333pt;}
.h45{height:793.600000pt;}
.h47{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:16.000000pt;}
.w10{width:16.160000pt;}
.w22{width:77.792000pt;}
.w1c{width:80.320000pt;}
.w1b{width:91.840000pt;}
.w19{width:91.872000pt;}
.w20{width:115.392000pt;}
.w21{width:115.520000pt;}
.w8{width:129.792000pt;}
.w11{width:140.186667pt;}
.wa{width:140.320000pt;}
.w13{width:140.346667pt;}
.wb{width:142.266667pt;}
.we{width:143.706667pt;}
.wf{width:145.306667pt;}
.w1f{width:146.746667pt;}
.w12{width:148.346667pt;}
.w1a{width:151.226667pt;}
.w7{width:156.986667pt;}
.w24{width:158.746667pt;}
.w14{width:162.426667pt;}
.w1e{width:163.546667pt;}
.wd{width:167.386667pt;}
.w9{width:167.706667pt;}
.w17{width:178.146667pt;}
.w1d{width:188.186667pt;}
.w4{width:191.866667pt;}
.w6{width:198.466667pt;}
.w15{width:198.906667pt;}
.w23{width:212.026667pt;}
.w5{width:212.346667pt;}
.w16{width:220.026667pt;}
.w18{width:418.946667pt;}
.w2{width:489.053333pt;}
.w3{width:613.413333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w27{width:793.600000pt;}
.w25{width:1122.560000pt;}
.w26{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3c{left:7.040000pt;}
.x41{left:8.000000pt;}
.x57{left:8.960000pt;}
.x2f{left:9.920000pt;}
.x4b{left:11.520000pt;}
.x47{left:12.960000pt;}
.x52{left:13.920000pt;}
.x25{left:14.880000pt;}
.x32{left:15.840000pt;}
.x28{left:18.240000pt;}
.x30{left:19.680000pt;}
.x4e{left:20.640000pt;}
.x42{left:21.600000pt;}
.x46{left:23.360000pt;}
.x3e{left:24.960000pt;}
.x23{left:25.920000pt;}
.x31{left:27.520000pt;}
.x5b{left:28.520000pt;}
.x21{left:29.440000pt;}
.x53{left:30.880000pt;}
.x60{left:31.880000pt;}
.x2b{left:33.600000pt;}
.x8{left:34.874667pt;}
.x22{left:36.520000pt;}
.x2d{left:37.640000pt;}
.x27{left:38.920000pt;}
.x26{left:40.520000pt;}
.x2e{left:42.440000pt;}
.x2c{left:44.680000pt;}
.x20{left:47.400000pt;}
.x1e{left:50.074667pt;}
.x1f{left:51.200000pt;}
.x29{left:52.840000pt;}
.x5a{left:54.280000pt;}
.x24{left:55.194667pt;}
.x51{left:57.440000pt;}
.x34{left:59.674667pt;}
.x5c{left:63.200000pt;}
.x1d{left:64.520000pt;}
.x2a{left:65.434667pt;}
.x33{left:67.034667pt;}
.x35{left:68.314667pt;}
.x45{left:70.080000pt;}
.x7{left:74.714667pt;}
.x43{left:78.554667pt;}
.x44{left:83.840000pt;}
.x3{left:87.880000pt;}
.x5e{left:89.000000pt;}
.x5d{left:99.354667pt;}
.x1a{left:106.272000pt;}
.x6{left:109.632000pt;}
.xf{left:113.472000pt;}
.x11{left:128.192000pt;}
.x38{left:137.466667pt;}
.x5{left:140.840000pt;}
.x12{left:142.746667pt;}
.x63{left:151.386667pt;}
.x2{left:154.586667pt;}
.x15{left:160.666667pt;}
.xd{left:170.114667pt;}
.xc{left:176.034667pt;}
.x5f{left:209.474667pt;}
.x19{left:224.026667pt;}
.x6b{left:231.386667pt;}
.x37{left:234.626667pt;}
.xb{left:236.994667pt;}
.x4{left:244.546667pt;}
.x61{left:245.506667pt;}
.x3b{left:248.546667pt;}
.x9{left:252.034667pt;}
.x4c{left:254.626667pt;}
.x1{left:258.146667pt;}
.x39{left:263.266667pt;}
.x3d{left:264.546667pt;}
.x48{left:267.746667pt;}
.x54{left:268.706667pt;}
.x4d{left:270.786667pt;}
.x18{left:284.706667pt;}
.x62{left:294.626667pt;}
.x1b{left:298.146667pt;}
.x58{left:305.186667pt;}
.xa{left:306.621333pt;}
.x14{left:309.666667pt;}
.x16{left:319.906667pt;}
.x17{left:324.066667pt;}
.x67{left:334.466667pt;}
.x64{left:337.026667pt;}
.x13{left:348.866667pt;}
.x10{left:363.106667pt;}
.x69{left:384.706667pt;}
.x36{left:387.906667pt;}
.xe{left:392.413333pt;}
.x3f{left:394.333333pt;}
.x49{left:397.533333pt;}
.x55{left:398.493333pt;}
.x4f{left:400.573333pt;}
.x1c{left:510.493333pt;}
.x6a{left:520.413333pt;}
.x59{left:525.213333pt;}
.x66{left:558.213333pt;}
.x3a{left:560.773333pt;}
.x40{left:561.733333pt;}
.x68{left:563.653333pt;}
.x4a{left:565.253333pt;}
.x56{left:566.213333pt;}
.x50{left:568.293333pt;}
.x65{left:587.333333pt;}
}




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