
    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_04bfe9f0bf873d6509c8c070.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_51c6ede1e730a9d21b23e3ff.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_dc35663f7d64a2df8107294f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_e3effd7ee9c4d42c120d7f2b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_803ee9ca8240beeb6759daf4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f6298c0ab3ce864c027a7837.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6a856295174216db126a5c9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9d4d89cfc7449001e719186f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.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_7c27c8510ba13d5ad9f8aa77.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_df748a95723d87a3d3a5c239.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-75.744000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.305400px;}
.ls17{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.152000px;}
.ls19{letter-spacing:7.200000px;}
.ls1f{letter-spacing:9.360000px;}
.ls11{letter-spacing:28.224000px;}
.ls10{letter-spacing:31.824000px;}
.ls6{letter-spacing:33.984000px;}
.ls13{letter-spacing:39.744000px;}
.ls20{letter-spacing:54.144000px;}
.ls21{letter-spacing:54.864000px;}
.ls1b{letter-spacing:194.376000px;}
.ls3{letter-spacing:1165.260000px;}
.ls0{letter-spacing:1174.620000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws16{word-spacing:-59.760000px;}
.ws13{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.208000px;}
.ws12{word-spacing:-17.136000px;}
.ws7{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws15{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.680200px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-5.496000px;}
._3{margin-left:-4.320000px;}
._14{margin-left:-3.312000px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.080000px;}
._1{width:1.344000px;}
._6{width:2.352000px;}
._7{width:3.408000px;}
._b{width:4.584000px;}
._c{width:6.348000px;}
._12{width:7.644000px;}
._d{width:9.144000px;}
._e{width:10.368000px;}
._a{width:11.832000px;}
._8{width:12.864000px;}
._9{width:14.148000px;}
._15{width:15.192000px;}
._18{width:16.200000px;}
._13{width:19.296000px;}
._4{width:20.376000px;}
._5{width:21.852000px;}
._1c{width:23.148000px;}
._22{width:24.468000px;}
._11{width:25.560000px;}
._10{width:27.528000px;}
._f{width:29.424000px;}
._1d{width:30.780000px;}
._1e{width:32.400000px;}
._16{width:34.344000px;}
._17{width:35.568000px;}
._34{width:36.852000px;}
._30{width:38.160000px;}
._1b{width:39.552000px;}
._1a{width:40.584000px;}
._19{width:41.616000px;}
._29{width:42.660000px;}
._2d{width:44.628000px;}
._2c{width:45.948000px;}
._20{width:49.680000px;}
._21{width:50.760000px;}
._28{width:54.732000px;}
._31{width:58.296000px;}
._3d{width:62.748000px;}
._3b{width:64.695120px;}
._24{width:66.720000px;}
._25{width:68.436000px;}
._36{width:86.891040px;}
._35{width:90.720000px;}
._39{width:96.213600px;}
._3a{width:100.157760px;}
._2b{width:102.588000px;}
._2a{width:103.728000px;}
._33{width:115.008000px;}
._32{width:116.184000px;}
._26{width:118.704000px;}
._27{width:120.096000px;}
._37{width:123.464160px;}
._3e{width:126.486480px;}
._38{width:170.674560px;}
._3c{width:181.880160px;}
._2f{width:259.668000px;}
._23{width:318.960000px;}
._2e{width:436.032000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y251{bottom:12.420000px;}
.y23d{bottom:12.435000px;}
.y259{bottom:13.500000px;}
.y191{bottom:14.565000px;}
.y15{bottom:14.580000px;}
.y12e{bottom:14.595000px;}
.y254{bottom:14.610000px;}
.y194{bottom:14.745000px;}
.y13{bottom:14.760000px;}
.y16e{bottom:14.775000px;}
.y2d{bottom:14.790000px;}
.y1b{bottom:14.805000px;}
.y210{bottom:14.940000px;}
.y133{bottom:16.065000px;}
.y151{bottom:22.860000px;}
.y131{bottom:24.165000px;}
.y17d{bottom:24.840000px;}
.y108{bottom:27.360000px;}
.y14f{bottom:29.880000px;}
.y1f5{bottom:30.600000px;}
.y14d{bottom:30.780000px;}
.y1ef{bottom:30.825000px;}
.y250{bottom:38.340000px;}
.y23c{bottom:38.355000px;}
.y258{bottom:41.940000px;}
.y12f{bottom:45.540000px;}
.y12d{bottom:45.555000px;}
.y206{bottom:45.705000px;}
.y10a{bottom:45.720000px;}
.y22c{bottom:45.735000px;}
.y16c{bottom:45.750000px;}
.y213{bottom:46.845000px;}
.y132{bottom:47.025000px;}
.y129{bottom:47.925000px;}
.y150{bottom:48.600000px;}
.y130{bottom:49.905000px;}
.y32{bottom:57.060000px;}
.y1f7{bottom:61.545000px;}
.y1f4{bottom:61.560000px;}
.y1ee{bottom:61.785000px;}
.y14c{bottom:61.920000px;}
.y24f{bottom:64.260000px;}
.y23b{bottom:64.275000px;}
.y257{bottom:71.640000px;}
.y1{bottom:75.996000px;}
.y242{bottom:76.665000px;}
.y12b{bottom:76.680000px;}
.y240{bottom:76.710000px;}
.y154{bottom:76.725000px;}
.y22a{bottom:76.860000px;}
.y272{bottom:76.890000px;}
.y211{bottom:77.790000px;}
.y1f3{bottom:78.300000px;}
.y128{bottom:78.885000px;}
.y24e{bottom:90.000000px;}
.y23a{bottom:90.015000px;}
.y14b{bottom:92.880000px;}
.y256{bottom:102.600000px;}
.y1f2{bottom:109.485000px;}
.y127{bottom:109.845000px;}
.y24d{bottom:115.920000px;}
.y239{bottom:115.935000px;}
.y1f1{bottom:140.445000px;}
.y126{bottom:140.985000px;}
.y238{bottom:141.885000px;}
.y25f{bottom:151.785000px;}
.y1e7{bottom:154.110000px;}
.y10{bottom:154.290000px;}
.y24a{bottom:154.485000px;}
.y92{bottom:156.450000px;}
.y1af{bottom:158.430000px;}
.y199{bottom:161.130000px;}
.y196{bottom:161.490000px;}
.yd3{bottom:163.110000px;}
.y1d9{bottom:164.550000px;}
.y149{bottom:166.710000px;}
.y24c{bottom:167.625000px;}
.y237{bottom:167.805000px;}
.y244{bottom:167.970000px;}
.y7b{bottom:168.150000px;}
.ya3{bottom:170.310000px;}
.y1ea{bottom:174.270000px;}
.y21c{bottom:174.810000px;}
.y26f{bottom:179.850000px;}
.y31{bottom:180.210000px;}
.y169{bottom:180.750000px;}
.y5e{bottom:182.190000px;}
.y105{bottom:183.090000px;}
.y25e{bottom:183.645000px;}
.y243{bottom:185.085000px;}
.y249{bottom:185.445000px;}
.yc6{bottom:187.230000px;}
.y91{bottom:187.410000px;}
.y17a{bottom:189.390000px;}
.y123{bottom:191.190000px;}
.yfd{bottom:192.090000px;}
.y236{bottom:193.545000px;}
.y1dc{bottom:193.890000px;}
.yd2{bottom:194.250000px;}
.y205{bottom:194.265000px;}
.y148{bottom:194.790000px;}
.y1e6{bottom:197.130000px;}
.yf{bottom:197.310000px;}
.y7a{bottom:199.110000px;}
.ya2{bottom:201.270000px;}
.y195{bottom:201.645000px;}
.yda{bottom:204.150000px;}
.ydf{bottom:206.310000px;}
.y1d8{bottom:207.570000px;}
.yb6{bottom:211.170000px;}
.y168{bottom:211.890000px;}
.y5d{bottom:213.330000px;}
.y1c8{bottom:213.690000px;}
.y25d{bottom:215.505000px;}
.y248{bottom:216.585000px;}
.y241{bottom:216.945000px;}
.y122{bottom:217.110000px;}
.y1e9{bottom:217.290000px;}
.y179{bottom:217.650000px;}
.y21b{bottom:218.010000px;}
.y90{bottom:218.550000px;}
.y235{bottom:219.450000px;}
.y24b{bottom:219.465000px;}
.y1ae{bottom:220.530000px;}
.y26e{bottom:222.870000px;}
.y30{bottom:223.230000px;}
.yd1{bottom:225.210000px;}
.y147{bottom:225.930000px;}
.y79{bottom:230.250000px;}
.y193{bottom:233.325000px;}
.yd9{bottom:235.110000px;}
.y46{bottom:236.550000px;}
.y1db{bottom:236.910000px;}
.yde{bottom:237.270000px;}
.y1e5{bottom:240.150000px;}
.ye{bottom:240.330000px;}
.ya1{bottom:242.130000px;}
.yb5{bottom:242.310000px;}
.y167{bottom:242.850000px;}
.y229{bottom:243.225000px;}
.y5c{bottom:244.290000px;}
.y1c7{bottom:244.650000px;}
.y121{bottom:245.190000px;}
.y234{bottom:245.370000px;}
.y247{bottom:247.545000px;}
.y178{bottom:248.610000px;}
.ye4{bottom:249.330000px;}
.y1d7{bottom:250.770000px;}
.y198{bottom:254.190000px;}
.y1e8{bottom:256.170000px;}
.y102{bottom:256.350000px;}
.y146{bottom:256.890000px;}
.y204{bottom:257.085000px;}
.y21a{bottom:261.030000px;}
.y78{bottom:261.210000px;}
.y8f{bottom:261.570000px;}
.y1ad{bottom:264.810000px;}
.y192{bottom:265.185000px;}
.y26d{bottom:265.890000px;}
.y2f{bottom:266.250000px;}
.yd0{bottom:268.050000px;}
.ydd{bottom:268.410000px;}
.y233{bottom:271.110000px;}
.yb4{bottom:273.270000px;}
.y228{bottom:274.185000px;}
.y1c6{bottom:275.790000px;}
.y1da{bottom:275.970000px;}
.y120{bottom:276.330000px;}
.yd{bottom:277.230000px;}
.y25c{bottom:278.325000px;}
.y246{bottom:278.685000px;}
.y45{bottom:279.570000px;}
.y177{bottom:279.750000px;}
.ya0{bottom:279.930000px;}
.y1e4{bottom:283.170000px;}
.y197{bottom:285.330000px;}
.y166{bottom:286.050000px;}
.y5b{bottom:286.950000px;}
.yf9{bottom:287.310000px;}
.y145{bottom:288.030000px;}
.y203{bottom:288.765000px;}
.yc1{bottom:292.350000px;}
.y8e{bottom:292.530000px;}
.y1d6{bottom:293.790000px;}
.y1ac{bottom:295.950000px;}
.y232{bottom:297.030000px;}
.y190{bottom:297.045000px;}
.yd8{bottom:297.210000px;}
.y101{bottom:299.370000px;}
.y77{bottom:304.050000px;}
.yb3{bottom:304.410000px;}
.y227{bottom:305.325000px;}
.y9f{bottom:305.850000px;}
.y1c5{bottom:306.750000px;}
.y11f{bottom:307.290000px;}
.yc{bottom:307.470000px;}
.y26c{bottom:308.910000px;}
.y2e{bottom:309.270000px;}
.y176{bottom:310.710000px;}
.y23f{bottom:310.905000px;}
.ycf{bottom:311.070000px;}
.ydc{bottom:311.430000px;}
.yc5{bottom:316.290000px;}
.y165{bottom:317.010000px;}
.yf8{bottom:318.450000px;}
.y144{bottom:318.990000px;}
.y202{bottom:320.625000px;}
.y44{bottom:322.590000px;}
.y231{bottom:322.950000px;}
.yc0{bottom:323.310000px;}
.y8d{bottom:323.670000px;}
.y2c{bottom:325.665000px;}
.y1e3{bottom:326.370000px;}
.y1ab{bottom:326.910000px;}
.yd7{bottom:328.395000px;}
.y18f{bottom:328.755000px;}
.y5a{bottom:330.555000px;}
.y9e{bottom:331.635000px;}
.ye3{bottom:335.415000px;}
.y226{bottom:336.285000px;}
.y1d5{bottom:336.855000px;}
.y1c4{bottom:337.935000px;}
.y11e{bottom:338.475000px;}
.yb{bottom:339.375000px;}
.y25b{bottom:341.175000px;}
.y175{bottom:341.895000px;}
.yfb{bottom:342.435000px;}
.y219{bottom:347.115000px;}
.y76{bottom:347.475000px;}
.y164{bottom:348.015000px;}
.y22e{bottom:348.870000px;}
.yf7{bottom:349.455000px;}
.y143{bottom:350.175000px;}
.y1cc{bottom:351.255000px;}
.y26b{bottom:352.155000px;}
.y201{bottom:352.515000px;}
.ybf{bottom:354.495000px;}
.y8c{bottom:354.675000px;}
.y2b{bottom:356.835000px;}
.y9d{bottom:357.555000px;}
.yd6{bottom:359.355000px;}
.y18e{bottom:360.615000px;}
.y100{bottom:361.515000px;}
.y43{bottom:365.655000px;}
.ye2{bottom:366.555000px;}
.y230{bottom:366.690000px;}
.y225{bottom:367.425000px;}
.y11d{bottom:369.435000px;}
.y1aa{bottom:371.235000px;}
.y174{bottom:372.855000px;}
.y59{bottom:373.575000px;}
.y22d{bottom:374.610000px;}
.yb2{bottom:378.435000px;}
.y163{bottom:379.155000px;}
.y1d4{bottom:379.875000px;}
.yf6{bottom:380.595000px;}
.y1c3{bottom:382.215000px;}
.y200{bottom:384.195000px;}
.ybe{bottom:385.455000px;}
.y2a{bottom:387.795000px;}
.y218{bottom:390.135000px;}
.y75{bottom:390.495000px;}
.y18d{bottom:392.295000px;}
.y142{bottom:393.195000px;}
.y26a{bottom:395.175000px;}
.y9c{bottom:395.535000px;}
.y8b{bottom:397.335000px;}
.ye1{bottom:397.515000px;}
.y22f{bottom:397.695000px;}
.y224{bottom:398.430000px;}
.y11c{bottom:400.575000px;}
.y1a9{bottom:402.375000px;}
.y173{bottom:403.815000px;}
.y25a{bottom:403.995000px;}
.yff{bottom:404.175000px;}
.y58{bottom:404.535000px;}
.y23e{bottom:404.715000px;}
.y42{bottom:408.675000px;}
.yb1{bottom:409.575000px;}
.y162{bottom:410.115000px;}
.yf5{bottom:411.555000px;}
.y1e2{bottom:412.455000px;}
.y1c2{bottom:413.355000px;}
.y1ff{bottom:416.055000px;}
.yce{bottom:416.595000px;}
.y29{bottom:418.935000px;}
.y74{bottom:421.455000px;}
.y1d3{bottom:422.895000px;}
.y141{bottom:424.155000px;}
.y1cb{bottom:426.495000px;}
.ybd{bottom:428.655000px;}
.y223{bottom:429.570000px;}
.y11b{bottom:431.535000px;}
.y217{bottom:433.155000px;}
.y1a8{bottom:433.515000px;}
.y172{bottom:434.955000px;}
.y57{bottom:435.675000px;}
.y269{bottom:438.195000px;}
.y8a{bottom:440.535000px;}
.y161{bottom:441.255000px;}
.yf4{bottom:442.695000px;}
.ycd{bottom:447.555000px;}
.y28{bottom:449.895000px;}
.y216{bottom:450.435000px;}
.y41{bottom:451.875000px;}
.y73{bottom:452.595000px;}
.y140{bottom:455.295000px;}
.y1e1{bottom:455.475000px;}
.y18c{bottom:456.015000px;}
.y1c1{bottom:457.635000px;}
.ybc{bottom:459.615000px;}
.y222{bottom:460.530000px;}
.y11a{bottom:462.675000px;}
.y171{bottom:463.755000px;}
.y19c{bottom:464.655000px;}
.y1d2{bottom:465.915000px;}
.y56{bottom:466.635000px;}
.y255{bottom:466.815000px;}
.y221{bottom:467.520000px;}
.y21f{bottom:467.535000px;}
.yb0{bottom:471.675000px;}
.y160{bottom:472.215000px;}
.y1a7{bottom:477.795000px;}
.y9b{bottom:478.695000px;}
.y1fe{bottom:478.875000px;}
.y27{bottom:481.035000px;}
.y268{bottom:481.215000px;}
.y72{bottom:483.555000px;}
.y89{bottom:485.355000px;}
.yf3{bottom:485.715000px;}
.y13f{bottom:486.255000px;}
.y1c0{bottom:488.775000px;}
.ybb{bottom:490.755000px;}
.y119{bottom:491.295000px;}
.y220{bottom:491.655000px;}
.y170{bottom:491.835000px;}
.y40{bottom:494.895000px;}
.y19b{bottom:495.615000px;}
.y55{bottom:497.775000px;}
.y1e0{bottom:498.495000px;}
.y18b{bottom:500.115000px;}
.y1ca{bottom:501.915000px;}
.yaf{bottom:502.635000px;}
.y15f{bottom:503.355000px;}
.y1a6{bottom:508.755000px;}
.y16f{bottom:508.935000px;}
.y9a{bottom:509.655000px;}
.y1fd{bottom:510.735000px;}
.y26{bottom:511.995000px;}
.y215{bottom:513.255000px;}
.y71{bottom:514.695000px;}
.yf2{bottom:516.675000px;}
.y118{bottom:517.215000px;}
.y13e{bottom:517.395000px;}
.y279{bottom:518.115000px;}
.y267{bottom:524.235000px;}
.y19a{bottom:526.755000px;}
.y18a{bottom:528.375000px;}
.y54{bottom:528.735000px;}
.y117{bottom:531.435000px;}
.y1bf{bottom:533.055000px;}
.yae{bottom:533.775000px;}
.y15e{bottom:534.315000px;}
.y278{bottom:535.575000px;}
.y3f{bottom:537.915000px;}
.y1a5{bottom:539.895000px;}
.y99{bottom:540.795000px;}
.y1df{bottom:541.515000px;}
.y1fc{bottom:542.595000px;}
.y25{bottom:543.135000px;}
.y214{bottom:544.935000px;}
.y70{bottom:545.655000px;}
.yf1{bottom:547.815000px;}
.y13d{bottom:548.355000px;}
.y1d1{bottom:552.135000px;}
.ycc{bottom:552.675000px;}
.y104{bottom:557.715000px;}
.y189{bottom:559.335000px;}
.y19f{bottom:559.875000px;}
.y116{bottom:563.295000px;}
.y1be{bottom:564.015000px;}
.yad{bottom:564.735000px;}
.y15d{bottom:565.455000px;}
.y266{bottom:567.255000px;}
.y1a4{bottom:570.855000px;}
.y1de{bottom:571.035000px;}
.y16d{bottom:571.740000px;}
.y53{bottom:571.755000px;}
.y24{bottom:574.095000px;}
.y212{bottom:576.780000px;}
.y6f{bottom:576.795000px;}
.yf0{bottom:578.775000px;}
.y13c{bottom:579.495000px;}
.y3e{bottom:580.935000px;}
.ycb{bottom:583.815000px;}
.y1dd{bottom:584.175000px;}
.y253{bottom:586.695000px;}
.y103{bottom:588.675000px;}
.y188{bottom:590.475000px;}
.y115{bottom:595.185000px;}
.yfc{bottom:595.545000px;}
.yac{bottom:595.905000px;}
.y15c{bottom:596.445000px;}
.y277{bottom:598.425000px;}
.y52{bottom:602.925000px;}
.y23{bottom:605.085000px;}
.y1fb{bottom:605.445000px;}
.y6e{bottom:607.785000px;}
.yef{bottom:609.945000px;}
.y265{bottom:610.305000px;}
.y13b{bottom:610.485000px;}
.y88{bottom:614.805000px;}
.y1a3{bottom:615.165000px;}
.yd5{bottom:619.845000px;}
.y187{bottom:621.465000px;}
.y3d{bottom:623.985000px;}
.y1d0{bottom:626.145000px;}
.yba{bottom:626.865000px;}
.y15b{bottom:627.585000px;}
.y276{bottom:630.285000px;}
.y51{bottom:633.885000px;}
.y16b{bottom:634.785000px;}
.y22{bottom:636.225000px;}
.yab{bottom:638.565000px;}
.y6d{bottom:638.925000px;}
.y1bd{bottom:639.465000px;}
.y114{bottom:639.645000px;}
.y13a{bottom:641.625000px;}
.y87{bottom:645.945000px;}
.y1a2{bottom:646.305000px;}
.yd4{bottom:650.805000px;}
.yee{bottom:652.965000px;}
.y264{bottom:653.505000px;}
.y1cf{bottom:657.285000px;}
.yb9{bottom:658.005000px;}
.y15a{bottom:658.545000px;}
.y275{bottom:661.965000px;}
.y186{bottom:664.485000px;}
.y50{bottom:665.025000px;}
.y3c{bottom:667.005000px;}
.y21{bottom:667.185000px;}
.y1fa{bottom:668.265000px;}
.yc4{bottom:669.885000px;}
.y1bc{bottom:670.605000px;}
.y20f{bottom:671.685000px;}
.y139{bottom:672.585000px;}
.y86{bottom:676.905000px;}
.y1a1{bottom:677.445000px;}
.y252{bottom:680.505000px;}
.y6c{bottom:681.945000px;}
.y113{bottom:683.925000px;}
.yed{bottom:684.105000px;}
.ydb{bottom:688.605000px;}
.yb8{bottom:688.965000px;}
.y159{bottom:689.685000px;}
.y274{bottom:693.825000px;}
.y185{bottom:695.625000px;}
.y4f{bottom:695.985000px;}
.y263{bottom:696.525000px;}
.y16a{bottom:697.605000px;}
.y20{bottom:698.325000px;}
.y1f9{bottom:699.945000px;}
.yc3{bottom:701.025000px;}
.y1ce{bottom:701.565000px;}
.y20e{bottom:703.545000px;}
.y138{bottom:703.725000px;}
.yca{bottom:708.045000px;}
.y3b{bottom:710.205000px;}
.y6b{bottom:712.905000px;}
.y1a0{bottom:714.345000px;}
.y1bb{bottom:714.885000px;}
.y85{bottom:720.105000px;}
.y158{bottom:720.645000px;}
.y112{bottom:724.065000px;}
.yaa{bottom:724.965000px;}
.y184{bottom:726.585000px;}
.yec{bottom:727.125000px;}
.y1f{bottom:729.285000px;}
.y1f8{bottom:731.805000px;}
.yc2{bottom:731.985000px;}
.y137{bottom:732.345000px;}
.y1cd{bottom:732.705000px;}
.y20d{bottom:735.405000px;}
.y98{bottom:736.845000px;}
.y4e{bottom:739.005000px;}
.y262{bottom:739.545000px;}
.y245{bottom:743.325000px;}
.y6a{bottom:744.045000px;}
.y1ba{bottom:745.845000px;}
.y157{bottom:749.445000px;}
.ya{bottom:750.705000px;}
.y84{bottom:751.065000px;}
.y3a{bottom:753.225000px;}
.y111{bottom:755.025000px;}
.ya9{bottom:756.105000px;}
.y273{bottom:756.645000px;}
.y183{bottom:757.725000px;}
.yeb{bottom:758.085000px;}
.y136{bottom:758.265000px;}
.y1e{bottom:760.425000px;}
.yfe{bottom:763.125000px;}
.y1f0{bottom:763.665000px;}
.y1f6{bottom:763.680000px;}
.y20c{bottom:767.085000px;}
.y4d{bottom:770.145000px;}
.y97{bottom:774.645000px;}
.y69{bottom:775.005000px;}
.y156{bottom:775.365000px;}
.y1b9{bottom:776.985000px;}
.y83{bottom:782.205000px;}
.y261{bottom:782.565000px;}
.y135{bottom:784.185000px;}
.y110{bottom:786.165000px;}
.y9{bottom:786.525000px;}
.ya8{bottom:787.065000px;}
.y182{bottom:788.685000px;}
.yea{bottom:789.225000px;}
.y1d{bottom:791.385000px;}
.ye0{bottom:794.085000px;}
.y39{bottom:796.245000px;}
.y134{bottom:798.405000px;}
.y20b{bottom:798.960000px;}
.y260{bottom:799.665000px;}
.y96{bottom:800.565000px;}
.y4c{bottom:801.105000px;}
.y155{bottom:801.285000px;}
.y68{bottom:806.145000px;}
.y1c9{bottom:808.125000px;}
.yc9{bottom:813.165000px;}
.y153{bottom:815.505000px;}
.y10f{bottom:817.125000px;}
.ya7{bottom:818.205000px;}
.y271{bottom:819.480000px;}
.y181{bottom:819.825000px;}
.y1b8{bottom:821.265000px;}
.y1c{bottom:822.525000px;}
.yb7{bottom:824.865000px;}
.y82{bottom:825.225000px;}
.y95{bottom:826.485000px;}
.y8{bottom:829.545000px;}
.y20a{bottom:830.820000px;}
.ye9{bottom:831.885000px;}
.y4b{bottom:832.245000px;}
.y67{bottom:837.105000px;}
.y38{bottom:839.265000px;}
.y1ed{bottom:842.325000px;}
.yfa{bottom:843.945000px;}
.yc8{bottom:844.305000px;}
.y10e{bottom:845.925000px;}
.y180{bottom:848.445000px;}
.ya6{bottom:849.165000px;}
.y94{bottom:852.225000px;}
.y1b7{bottom:852.405000px;}
.y1a{bottom:853.485000px;}
.y81{bottom:856.185000px;}
.y125{bottom:861.225000px;}
.y7{bottom:861.990000px;}
.y209{bottom:862.530000px;}
.y4a{bottom:863.250000px;}
.y66{bottom:868.290000px;}
.y10d{bottom:871.890000px;}
.y17f{bottom:874.410000px;}
.yc7{bottom:875.310000px;}
.ya5{bottom:880.350000px;}
.y22b{bottom:882.315000px;}
.y37{bottom:882.330000px;}
.y1b6{bottom:883.410000px;}
.y19{bottom:884.670000px;}
.y80{bottom:887.370000px;}
.y93{bottom:890.250000px;}
.y6{bottom:894.210000px;}
.y19e{bottom:894.390000px;}
.y10c{bottom:897.630000px;}
.y65{bottom:899.250000px;}
.y17e{bottom:900.330000px;}
.y49{bottom:906.270000px;}
.y152{bottom:909.330000px;}
.ya4{bottom:911.310000px;}
.y10b{bottom:911.850000px;}
.y270{bottom:913.470000px;}
.y17c{bottom:914.550000px;}
.y18{bottom:915.630000px;}
.ye8{bottom:918.330000px;}
.y1ec{bottom:921.210000px;}
.y5{bottom:924.810000px;}
.y36{bottom:925.350000px;}
.y12c{bottom:925.515000px;}
.y12a{bottom:925.530000px;}
.y1b5{bottom:927.690000px;}
.y7f{bottom:930.390000px;}
.y19d{bottom:937.050000px;}
.y48{bottom:937.410000px;}
.y64{bottom:942.270000px;}
.y17{bottom:946.770000px;}
.ye7{bottom:949.470000px;}
.y1eb{bottom:953.070000px;}
.y17b{bottom:956.490000px;}
.y1b4{bottom:958.830000px;}
.y7e{bottom:961.350000px;}
.y4{bottom:968.010000px;}
.y35{bottom:968.370000px;}
.y14a{bottom:972.150000px;}
.y63{bottom:973.410000px;}
.y109{bottom:974.850000px;}
.y21e{bottom:976.290000px;}
.y16{bottom:977.730000px;}
.ye6{bottom:980.430000px;}
.y208{bottom:988.350000px;}
.y1b3{bottom:989.970000px;}
.y7d{bottom:992.490000px;}
.y62{bottom:1004.370000px;}
.y3{bottom:1006.350000px;}
.y14{bottom:1008.870000px;}
.y47{bottom:1011.210000px;}
.y34{bottom:1011.570000px;}
.y124{bottom:1019.310000px;}
.y7c{bottom:1023.450000px;}
.y1b2{bottom:1034.250000px;}
.y14e{bottom:1035.150000px;}
.y61{bottom:1035.510000px;}
.y107{bottom:1037.670000px;}
.y21d{bottom:1039.110000px;}
.y2{bottom:1039.830000px;}
.y207{bottom:1051.170000px;}
.ye5{bottom:1054.230000px;}
.y33{bottom:1054.590000px;}
.y1b1{bottom:1065.210000px;}
.y60{bottom:1066.470000px;}
.y106{bottom:1082.130000px;}
.y1b0{bottom:1096.350000px;}
.y12{bottom:1097.250000px;}
.y5f{bottom:1097.610000px;}
.y11{bottom:1194.840000px;}
.h29{height:2.826563px;}
.h5{height:18.140625px;}
.h9{height:30.945000px;}
.hc{height:30.960000px;}
.h26{height:30.981000px;}
.he{height:30.990000px;}
.h8{height:31.125000px;}
.hd{height:31.140000px;}
.hf{height:31.161000px;}
.hb{height:31.162500px;}
.h31{height:31.320000px;}
.h25{height:41.205000px;}
.h6{height:42.086250px;}
.h15{height:43.725000px;}
.h18{height:43.740000px;}
.h20{height:46.245000px;}
.h4{height:48.616875px;}
.h14{height:53.573906px;}
.h17{height:58.621992px;}
.h13{height:58.651172px;}
.h30{height:61.905000px;}
.h2f{height:61.950000px;}
.h16{height:62.085000px;}
.h1e{height:62.100000px;}
.h40{height:62.121000px;}
.h24{height:62.130000px;}
.h22{height:62.136000px;}
.h23{height:62.145000px;}
.h1d{height:63.382500px;}
.h11{height:64.546875px;}
.h2{height:65.010937px;}
.h27{height:70.628906px;}
.h7{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:74.004654px;}
.h10{height:74.953125px;}
.h2e{height:77.935500px;}
.h2d{height:77.940000px;}
.h2a{height:78.142500px;}
.h1c{height:93.045000px;}
.h1a{height:93.051000px;}
.h1b{height:93.060000px;}
.h3b{height:93.081000px;}
.h21{height:93.082500px;}
.h3e{height:93.090000px;}
.h38{height:93.225000px;}
.h36{height:93.231000px;}
.h37{height:93.240000px;}
.h41{height:93.261000px;}
.h42{height:93.262500px;}
.h32{height:94.176000px;}
.h33{height:94.185000px;}
.h28{height:96.508125px;}
.h1f{height:109.245000px;}
.h3f{height:118.965000px;}
.h12{height:129.315234px;}
.h2b{height:156.795000px;}
.h2c{height:156.810000px;}
.h19{height:157.350000px;}
.h3d{height:295.035000px;}
.h3c{height:295.050000px;}
.h39{height:414.060000px;}
.h3a{height:414.075000px;}
.h34{height:508.020000px;}
.h35{height:508.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:111.591000px;}
.w11{width:111.600000px;}
.wf{width:111.765000px;}
.w15{width:114.471000px;}
.w18{width:114.480000px;}
.wb{width:114.825000px;}
.w8{width:114.831000px;}
.w28{width:114.861000px;}
.w2c{width:114.862500px;}
.w17{width:115.185000px;}
.w1a{width:115.195500px;}
.w1b{width:115.200000px;}
.w29{width:116.445000px;}
.w2f{width:116.455500px;}
.w30{width:116.460000px;}
.w4{width:116.481000px;}
.w27{width:116.631000px;}
.w2b{width:116.640000px;}
.wd{width:117.021000px;}
.w12{width:117.022500px;}
.w33{width:117.165000px;}
.w31{width:117.171000px;}
.w34{width:117.175500px;}
.w35{width:117.180000px;}
.w32{width:117.201000px;}
.w22{width:117.345000px;}
.w25{width:117.355500px;}
.w26{width:117.360000px;}
.w20{width:117.381000px;}
.w24{width:117.382500px;}
.w1f{width:117.531000px;}
.w7{width:117.741000px;}
.w36{width:117.742500px;}
.w3a{width:118.065000px;}
.w38{width:118.101000px;}
.w39{width:118.116000px;}
.w3c{width:118.125000px;}
.w37{width:118.251000px;}
.w3b{width:118.281000px;}
.w3d{width:118.282500px;}
.w5{width:120.816000px;}
.w21{width:121.356000px;}
.w23{width:121.365000px;}
.w2a{width:121.521000px;}
.w2e{width:121.522500px;}
.wa{width:121.536000px;}
.w2d{width:121.545000px;}
.wc{width:122.601000px;}
.w6{width:124.725000px;}
.w16{width:125.301000px;}
.w19{width:125.302500px;}
.w9{width:125.481000px;}
.w10{width:129.441000px;}
.w14{width:129.442500px;}
.we{width:129.456000px;}
.w13{width:129.465000px;}
.w1d{width:192.630000px;}
.w1e{width:201.795000px;}
.w1c{width:210.441000px;}
.w2{width:595.350000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.085000px;}
.x3a{left:9.885000px;}
.x26{left:11.325000px;}
.x24{left:12.405000px;}
.x36{left:14.025000px;}
.x27{left:16.005000px;}
.x20{left:17.445000px;}
.x3b{left:18.705000px;}
.x21{left:19.965000px;}
.x22{left:21.420000px;}
.x25{left:22.860000px;}
.x23{left:24.105000px;}
.x35{left:25.200000px;}
.x59{left:26.670000px;}
.x2e{left:27.885000px;}
.x40{left:29.685000px;}
.x41{left:31.170000px;}
.x34{left:32.385000px;}
.x3c{left:33.825000px;}
.x3f{left:35.310000px;}
.x2f{left:36.750000px;}
.x32{left:37.785000px;}
.x42{left:39.045000px;}
.x1a{left:40.170000px;}
.x2d{left:41.385000px;}
.x56{left:42.645000px;}
.x18{left:43.725000px;}
.x28{left:45.345000px;}
.x39{left:46.785000px;}
.x1f{left:47.910000px;}
.x1c{left:49.320000px;}
.x4b{left:52.185000px;}
.x30{left:53.640000px;}
.x37{left:55.785000px;}
.x3d{left:57.225000px;}
.x55{left:58.530000px;}
.x54{left:60.660000px;}
.x3e{left:62.670000px;}
.x38{left:64.620000px;}
.x48{left:66.225000px;}
.x4d{left:74.145000px;}
.x45{left:78.120000px;}
.x47{left:82.785000px;}
.x49{left:87.120000px;}
.x4a{left:91.785000px;}
.xd{left:93.225000px;}
.x4c{left:96.285000px;}
.x43{left:105.105000px;}
.xe{left:143.130000px;}
.x5{left:148.896000px;}
.x11{left:170.130000px;}
.x13{left:175.890000px;}
.x14{left:180.930000px;}
.x12{left:201.990000px;}
.x15{left:207.930000px;}
.xf{left:210.630000px;}
.x17{left:225.390000px;}
.x6{left:241.770000px;}
.x19{left:261.585000px;}
.x29{left:264.825000px;}
.x51{left:267.885000px;}
.x3{left:290.055000px;}
.x7{left:312.555000px;}
.x4{left:329.295000px;}
.x44{left:360.975000px;}
.x1b{left:378.795000px;}
.x57{left:382.575000px;}
.x52{left:385.995000px;}
.x5a{left:387.435000px;}
.x2a{left:391.035000px;}
.xb{left:414.075000px;}
.x16{left:438.195000px;}
.x10{left:441.975000px;}
.xa{left:444.315000px;}
.x1{left:446.475000px;}
.x1d{left:500.340000px;}
.x58{left:504.840000px;}
.x5b{left:506.460000px;}
.x53{left:508.080000px;}
.x31{left:509.520000px;}
.x2b{left:513.300000px;}
.x46{left:554.340000px;}
.x9{left:581.685000px;}
.x8{left:614.805000px;}
.x33{left:622.020000px;}
.x1e{left:625.800000px;}
.x2c{left:628.860000px;}
.x50{left:700.890000px;}
.x4e{left:701.970000px;}
.x4f{left:742.650000px;}
.x2{left:744.270000px;}
@media print{
.v1{vertical-align:-67.328000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls17{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.024000pt;}
.ls19{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls11{letter-spacing:25.088000pt;}
.ls10{letter-spacing:28.288000pt;}
.ls6{letter-spacing:30.208000pt;}
.ls13{letter-spacing:35.328000pt;}
.ls20{letter-spacing:48.128000pt;}
.ls21{letter-spacing:48.768000pt;}
.ls1b{letter-spacing:172.778667pt;}
.ls3{letter-spacing:1035.786667pt;}
.ls0{letter-spacing:1044.106667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws16{word-spacing:-53.120000pt;}
.ws13{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws12{word-spacing:-15.232000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws15{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.049067pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-4.885333pt;}
._3{margin-left:-3.840000pt;}
._14{margin-left:-2.944000pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.194667pt;}
._6{width:2.090667pt;}
._7{width:3.029333pt;}
._b{width:4.074667pt;}
._c{width:5.642667pt;}
._12{width:6.794667pt;}
._d{width:8.128000pt;}
._e{width:9.216000pt;}
._a{width:10.517333pt;}
._8{width:11.434667pt;}
._9{width:12.576000pt;}
._15{width:13.504000pt;}
._18{width:14.400000pt;}
._13{width:17.152000pt;}
._4{width:18.112000pt;}
._5{width:19.424000pt;}
._1c{width:20.576000pt;}
._22{width:21.749333pt;}
._11{width:22.720000pt;}
._10{width:24.469333pt;}
._f{width:26.154667pt;}
._1d{width:27.360000pt;}
._1e{width:28.800000pt;}
._16{width:30.528000pt;}
._17{width:31.616000pt;}
._34{width:32.757333pt;}
._30{width:33.920000pt;}
._1b{width:35.157333pt;}
._1a{width:36.074667pt;}
._19{width:36.992000pt;}
._29{width:37.920000pt;}
._2d{width:39.669333pt;}
._2c{width:40.842667pt;}
._20{width:44.160000pt;}
._21{width:45.120000pt;}
._28{width:48.650667pt;}
._31{width:51.818667pt;}
._3d{width:55.776000pt;}
._3b{width:57.506773pt;}
._24{width:59.306667pt;}
._25{width:60.832000pt;}
._36{width:77.236480pt;}
._35{width:80.640000pt;}
._39{width:85.523200pt;}
._3a{width:89.029120pt;}
._2b{width:91.189333pt;}
._2a{width:92.202667pt;}
._33{width:102.229333pt;}
._32{width:103.274667pt;}
._26{width:105.514667pt;}
._27{width:106.752000pt;}
._37{width:109.745920pt;}
._3e{width:112.432427pt;}
._38{width:151.710720pt;}
._3c{width:161.671253pt;}
._2f{width:230.816000pt;}
._23{width:283.520000pt;}
._2e{width:387.584000pt;}
.fs8{font-size:2.560000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y251{bottom:11.040000pt;}
.y23d{bottom:11.053333pt;}
.y259{bottom:12.000000pt;}
.y191{bottom:12.946667pt;}
.y15{bottom:12.960000pt;}
.y12e{bottom:12.973333pt;}
.y254{bottom:12.986667pt;}
.y194{bottom:13.106667pt;}
.y13{bottom:13.120000pt;}
.y16e{bottom:13.133333pt;}
.y2d{bottom:13.146667pt;}
.y1b{bottom:13.160000pt;}
.y210{bottom:13.280000pt;}
.y133{bottom:14.280000pt;}
.y151{bottom:20.320000pt;}
.y131{bottom:21.480000pt;}
.y17d{bottom:22.080000pt;}
.y108{bottom:24.320000pt;}
.y14f{bottom:26.560000pt;}
.y1f5{bottom:27.200000pt;}
.y14d{bottom:27.360000pt;}
.y1ef{bottom:27.400000pt;}
.y250{bottom:34.080000pt;}
.y23c{bottom:34.093333pt;}
.y258{bottom:37.280000pt;}
.y12f{bottom:40.480000pt;}
.y12d{bottom:40.493333pt;}
.y206{bottom:40.626667pt;}
.y10a{bottom:40.640000pt;}
.y22c{bottom:40.653333pt;}
.y16c{bottom:40.666667pt;}
.y213{bottom:41.640000pt;}
.y132{bottom:41.800000pt;}
.y129{bottom:42.600000pt;}
.y150{bottom:43.200000pt;}
.y130{bottom:44.360000pt;}
.y32{bottom:50.720000pt;}
.y1f7{bottom:54.706667pt;}
.y1f4{bottom:54.720000pt;}
.y1ee{bottom:54.920000pt;}
.y14c{bottom:55.040000pt;}
.y24f{bottom:57.120000pt;}
.y23b{bottom:57.133333pt;}
.y257{bottom:63.680000pt;}
.y1{bottom:67.552000pt;}
.y242{bottom:68.146667pt;}
.y12b{bottom:68.160000pt;}
.y240{bottom:68.186667pt;}
.y154{bottom:68.200000pt;}
.y22a{bottom:68.320000pt;}
.y272{bottom:68.346667pt;}
.y211{bottom:69.146667pt;}
.y1f3{bottom:69.600000pt;}
.y128{bottom:70.120000pt;}
.y24e{bottom:80.000000pt;}
.y23a{bottom:80.013333pt;}
.y14b{bottom:82.560000pt;}
.y256{bottom:91.200000pt;}
.y1f2{bottom:97.320000pt;}
.y127{bottom:97.640000pt;}
.y24d{bottom:103.040000pt;}
.y239{bottom:103.053333pt;}
.y1f1{bottom:124.840000pt;}
.y126{bottom:125.320000pt;}
.y238{bottom:126.120000pt;}
.y25f{bottom:134.920000pt;}
.y1e7{bottom:136.986667pt;}
.y10{bottom:137.146667pt;}
.y24a{bottom:137.320000pt;}
.y92{bottom:139.066667pt;}
.y1af{bottom:140.826667pt;}
.y199{bottom:143.226667pt;}
.y196{bottom:143.546667pt;}
.yd3{bottom:144.986667pt;}
.y1d9{bottom:146.266667pt;}
.y149{bottom:148.186667pt;}
.y24c{bottom:149.000000pt;}
.y237{bottom:149.160000pt;}
.y244{bottom:149.306667pt;}
.y7b{bottom:149.466667pt;}
.ya3{bottom:151.386667pt;}
.y1ea{bottom:154.906667pt;}
.y21c{bottom:155.386667pt;}
.y26f{bottom:159.866667pt;}
.y31{bottom:160.186667pt;}
.y169{bottom:160.666667pt;}
.y5e{bottom:161.946667pt;}
.y105{bottom:162.746667pt;}
.y25e{bottom:163.240000pt;}
.y243{bottom:164.520000pt;}
.y249{bottom:164.840000pt;}
.yc6{bottom:166.426667pt;}
.y91{bottom:166.586667pt;}
.y17a{bottom:168.346667pt;}
.y123{bottom:169.946667pt;}
.yfd{bottom:170.746667pt;}
.y236{bottom:172.040000pt;}
.y1dc{bottom:172.346667pt;}
.yd2{bottom:172.666667pt;}
.y205{bottom:172.680000pt;}
.y148{bottom:173.146667pt;}
.y1e6{bottom:175.226667pt;}
.yf{bottom:175.386667pt;}
.y7a{bottom:176.986667pt;}
.ya2{bottom:178.906667pt;}
.y195{bottom:179.240000pt;}
.yda{bottom:181.466667pt;}
.ydf{bottom:183.386667pt;}
.y1d8{bottom:184.506667pt;}
.yb6{bottom:187.706667pt;}
.y168{bottom:188.346667pt;}
.y5d{bottom:189.626667pt;}
.y1c8{bottom:189.946667pt;}
.y25d{bottom:191.560000pt;}
.y248{bottom:192.520000pt;}
.y241{bottom:192.840000pt;}
.y122{bottom:192.986667pt;}
.y1e9{bottom:193.146667pt;}
.y179{bottom:193.466667pt;}
.y21b{bottom:193.786667pt;}
.y90{bottom:194.266667pt;}
.y235{bottom:195.066667pt;}
.y24b{bottom:195.080000pt;}
.y1ae{bottom:196.026667pt;}
.y26e{bottom:198.106667pt;}
.y30{bottom:198.426667pt;}
.yd1{bottom:200.186667pt;}
.y147{bottom:200.826667pt;}
.y79{bottom:204.666667pt;}
.y193{bottom:207.400000pt;}
.yd9{bottom:208.986667pt;}
.y46{bottom:210.266667pt;}
.y1db{bottom:210.586667pt;}
.yde{bottom:210.906667pt;}
.y1e5{bottom:213.466667pt;}
.ye{bottom:213.626667pt;}
.ya1{bottom:215.226667pt;}
.yb5{bottom:215.386667pt;}
.y167{bottom:215.866667pt;}
.y229{bottom:216.200000pt;}
.y5c{bottom:217.146667pt;}
.y1c7{bottom:217.466667pt;}
.y121{bottom:217.946667pt;}
.y234{bottom:218.106667pt;}
.y247{bottom:220.040000pt;}
.y178{bottom:220.986667pt;}
.ye4{bottom:221.626667pt;}
.y1d7{bottom:222.906667pt;}
.y198{bottom:225.946667pt;}
.y1e8{bottom:227.706667pt;}
.y102{bottom:227.866667pt;}
.y146{bottom:228.346667pt;}
.y204{bottom:228.520000pt;}
.y21a{bottom:232.026667pt;}
.y78{bottom:232.186667pt;}
.y8f{bottom:232.506667pt;}
.y1ad{bottom:235.386667pt;}
.y192{bottom:235.720000pt;}
.y26d{bottom:236.346667pt;}
.y2f{bottom:236.666667pt;}
.yd0{bottom:238.266667pt;}
.ydd{bottom:238.586667pt;}
.y233{bottom:240.986667pt;}
.yb4{bottom:242.906667pt;}
.y228{bottom:243.720000pt;}
.y1c6{bottom:245.146667pt;}
.y1da{bottom:245.306667pt;}
.y120{bottom:245.626667pt;}
.yd{bottom:246.426667pt;}
.y25c{bottom:247.400000pt;}
.y246{bottom:247.720000pt;}
.y45{bottom:248.506667pt;}
.y177{bottom:248.666667pt;}
.ya0{bottom:248.826667pt;}
.y1e4{bottom:251.706667pt;}
.y197{bottom:253.626667pt;}
.y166{bottom:254.266667pt;}
.y5b{bottom:255.066667pt;}
.yf9{bottom:255.386667pt;}
.y145{bottom:256.026667pt;}
.y203{bottom:256.680000pt;}
.yc1{bottom:259.866667pt;}
.y8e{bottom:260.026667pt;}
.y1d6{bottom:261.146667pt;}
.y1ac{bottom:263.066667pt;}
.y232{bottom:264.026667pt;}
.y190{bottom:264.040000pt;}
.yd8{bottom:264.186667pt;}
.y101{bottom:266.106667pt;}
.y77{bottom:270.266667pt;}
.yb3{bottom:270.586667pt;}
.y227{bottom:271.400000pt;}
.y9f{bottom:271.866667pt;}
.y1c5{bottom:272.666667pt;}
.y11f{bottom:273.146667pt;}
.yc{bottom:273.306667pt;}
.y26c{bottom:274.586667pt;}
.y2e{bottom:274.906667pt;}
.y176{bottom:276.186667pt;}
.y23f{bottom:276.360000pt;}
.ycf{bottom:276.506667pt;}
.ydc{bottom:276.826667pt;}
.yc5{bottom:281.146667pt;}
.y165{bottom:281.786667pt;}
.yf8{bottom:283.066667pt;}
.y144{bottom:283.546667pt;}
.y202{bottom:285.000000pt;}
.y44{bottom:286.746667pt;}
.y231{bottom:287.066667pt;}
.yc0{bottom:287.386667pt;}
.y8d{bottom:287.706667pt;}
.y2c{bottom:289.480000pt;}
.y1e3{bottom:290.106667pt;}
.y1ab{bottom:290.586667pt;}
.yd7{bottom:291.906667pt;}
.y18f{bottom:292.226667pt;}
.y5a{bottom:293.826667pt;}
.y9e{bottom:294.786667pt;}
.ye3{bottom:298.146667pt;}
.y226{bottom:298.920000pt;}
.y1d5{bottom:299.426667pt;}
.y1c4{bottom:300.386667pt;}
.y11e{bottom:300.866667pt;}
.yb{bottom:301.666667pt;}
.y25b{bottom:303.266667pt;}
.y175{bottom:303.906667pt;}
.yfb{bottom:304.386667pt;}
.y219{bottom:308.546667pt;}
.y76{bottom:308.866667pt;}
.y164{bottom:309.346667pt;}
.y22e{bottom:310.106667pt;}
.yf7{bottom:310.626667pt;}
.y143{bottom:311.266667pt;}
.y1cc{bottom:312.226667pt;}
.y26b{bottom:313.026667pt;}
.y201{bottom:313.346667pt;}
.ybf{bottom:315.106667pt;}
.y8c{bottom:315.266667pt;}
.y2b{bottom:317.186667pt;}
.y9d{bottom:317.826667pt;}
.yd6{bottom:319.426667pt;}
.y18e{bottom:320.546667pt;}
.y100{bottom:321.346667pt;}
.y43{bottom:325.026667pt;}
.ye2{bottom:325.826667pt;}
.y230{bottom:325.946667pt;}
.y225{bottom:326.600000pt;}
.y11d{bottom:328.386667pt;}
.y1aa{bottom:329.986667pt;}
.y174{bottom:331.426667pt;}
.y59{bottom:332.066667pt;}
.y22d{bottom:332.986667pt;}
.yb2{bottom:336.386667pt;}
.y163{bottom:337.026667pt;}
.y1d4{bottom:337.666667pt;}
.yf6{bottom:338.306667pt;}
.y1c3{bottom:339.746667pt;}
.y200{bottom:341.506667pt;}
.ybe{bottom:342.626667pt;}
.y2a{bottom:344.706667pt;}
.y218{bottom:346.786667pt;}
.y75{bottom:347.106667pt;}
.y18d{bottom:348.706667pt;}
.y142{bottom:349.506667pt;}
.y26a{bottom:351.266667pt;}
.y9c{bottom:351.586667pt;}
.y8b{bottom:353.186667pt;}
.ye1{bottom:353.346667pt;}
.y22f{bottom:353.506667pt;}
.y224{bottom:354.160000pt;}
.y11c{bottom:356.066667pt;}
.y1a9{bottom:357.666667pt;}
.y173{bottom:358.946667pt;}
.y25a{bottom:359.106667pt;}
.yff{bottom:359.266667pt;}
.y58{bottom:359.586667pt;}
.y23e{bottom:359.746667pt;}
.y42{bottom:363.266667pt;}
.yb1{bottom:364.066667pt;}
.y162{bottom:364.546667pt;}
.yf5{bottom:365.826667pt;}
.y1e2{bottom:366.626667pt;}
.y1c2{bottom:367.426667pt;}
.y1ff{bottom:369.826667pt;}
.yce{bottom:370.306667pt;}
.y29{bottom:372.386667pt;}
.y74{bottom:374.626667pt;}
.y1d3{bottom:375.906667pt;}
.y141{bottom:377.026667pt;}
.y1cb{bottom:379.106667pt;}
.ybd{bottom:381.026667pt;}
.y223{bottom:381.840000pt;}
.y11b{bottom:383.586667pt;}
.y217{bottom:385.026667pt;}
.y1a8{bottom:385.346667pt;}
.y172{bottom:386.626667pt;}
.y57{bottom:387.266667pt;}
.y269{bottom:389.506667pt;}
.y8a{bottom:391.586667pt;}
.y161{bottom:392.226667pt;}
.yf4{bottom:393.506667pt;}
.ycd{bottom:397.826667pt;}
.y28{bottom:399.906667pt;}
.y216{bottom:400.386667pt;}
.y41{bottom:401.666667pt;}
.y73{bottom:402.306667pt;}
.y140{bottom:404.706667pt;}
.y1e1{bottom:404.866667pt;}
.y18c{bottom:405.346667pt;}
.y1c1{bottom:406.786667pt;}
.ybc{bottom:408.546667pt;}
.y222{bottom:409.360000pt;}
.y11a{bottom:411.266667pt;}
.y171{bottom:412.226667pt;}
.y19c{bottom:413.026667pt;}
.y1d2{bottom:414.146667pt;}
.y56{bottom:414.786667pt;}
.y255{bottom:414.946667pt;}
.y221{bottom:415.573333pt;}
.y21f{bottom:415.586667pt;}
.yb0{bottom:419.266667pt;}
.y160{bottom:419.746667pt;}
.y1a7{bottom:424.706667pt;}
.y9b{bottom:425.506667pt;}
.y1fe{bottom:425.666667pt;}
.y27{bottom:427.586667pt;}
.y268{bottom:427.746667pt;}
.y72{bottom:429.826667pt;}
.y89{bottom:431.426667pt;}
.yf3{bottom:431.746667pt;}
.y13f{bottom:432.226667pt;}
.y1c0{bottom:434.466667pt;}
.ybb{bottom:436.226667pt;}
.y119{bottom:436.706667pt;}
.y220{bottom:437.026667pt;}
.y170{bottom:437.186667pt;}
.y40{bottom:439.906667pt;}
.y19b{bottom:440.546667pt;}
.y55{bottom:442.466667pt;}
.y1e0{bottom:443.106667pt;}
.y18b{bottom:444.546667pt;}
.y1ca{bottom:446.146667pt;}
.yaf{bottom:446.786667pt;}
.y15f{bottom:447.426667pt;}
.y1a6{bottom:452.226667pt;}
.y16f{bottom:452.386667pt;}
.y9a{bottom:453.026667pt;}
.y1fd{bottom:453.986667pt;}
.y26{bottom:455.106667pt;}
.y215{bottom:456.226667pt;}
.y71{bottom:457.506667pt;}
.yf2{bottom:459.266667pt;}
.y118{bottom:459.746667pt;}
.y13e{bottom:459.906667pt;}
.y279{bottom:460.546667pt;}
.y267{bottom:465.986667pt;}
.y19a{bottom:468.226667pt;}
.y18a{bottom:469.666667pt;}
.y54{bottom:469.986667pt;}
.y117{bottom:472.386667pt;}
.y1bf{bottom:473.826667pt;}
.yae{bottom:474.466667pt;}
.y15e{bottom:474.946667pt;}
.y278{bottom:476.066667pt;}
.y3f{bottom:478.146667pt;}
.y1a5{bottom:479.906667pt;}
.y99{bottom:480.706667pt;}
.y1df{bottom:481.346667pt;}
.y1fc{bottom:482.306667pt;}
.y25{bottom:482.786667pt;}
.y214{bottom:484.386667pt;}
.y70{bottom:485.026667pt;}
.yf1{bottom:486.946667pt;}
.y13d{bottom:487.426667pt;}
.y1d1{bottom:490.786667pt;}
.ycc{bottom:491.266667pt;}
.y104{bottom:495.746667pt;}
.y189{bottom:497.186667pt;}
.y19f{bottom:497.666667pt;}
.y116{bottom:500.706667pt;}
.y1be{bottom:501.346667pt;}
.yad{bottom:501.986667pt;}
.y15d{bottom:502.626667pt;}
.y266{bottom:504.226667pt;}
.y1a4{bottom:507.426667pt;}
.y1de{bottom:507.586667pt;}
.y16d{bottom:508.213333pt;}
.y53{bottom:508.226667pt;}
.y24{bottom:510.306667pt;}
.y212{bottom:512.693333pt;}
.y6f{bottom:512.706667pt;}
.yf0{bottom:514.466667pt;}
.y13c{bottom:515.106667pt;}
.y3e{bottom:516.386667pt;}
.ycb{bottom:518.946667pt;}
.y1dd{bottom:519.266667pt;}
.y253{bottom:521.506667pt;}
.y103{bottom:523.266667pt;}
.y188{bottom:524.866667pt;}
.y115{bottom:529.053333pt;}
.yfc{bottom:529.373333pt;}
.yac{bottom:529.693333pt;}
.y15c{bottom:530.173333pt;}
.y277{bottom:531.933333pt;}
.y52{bottom:535.933333pt;}
.y23{bottom:537.853333pt;}
.y1fb{bottom:538.173333pt;}
.y6e{bottom:540.253333pt;}
.yef{bottom:542.173333pt;}
.y265{bottom:542.493333pt;}
.y13b{bottom:542.653333pt;}
.y88{bottom:546.493333pt;}
.y1a3{bottom:546.813333pt;}
.yd5{bottom:550.973333pt;}
.y187{bottom:552.413333pt;}
.y3d{bottom:554.653333pt;}
.y1d0{bottom:556.573333pt;}
.yba{bottom:557.213333pt;}
.y15b{bottom:557.853333pt;}
.y276{bottom:560.253333pt;}
.y51{bottom:563.453333pt;}
.y16b{bottom:564.253333pt;}
.y22{bottom:565.533333pt;}
.yab{bottom:567.613333pt;}
.y6d{bottom:567.933333pt;}
.y1bd{bottom:568.413333pt;}
.y114{bottom:568.573333pt;}
.y13a{bottom:570.333333pt;}
.y87{bottom:574.173333pt;}
.y1a2{bottom:574.493333pt;}
.yd4{bottom:578.493333pt;}
.yee{bottom:580.413333pt;}
.y264{bottom:580.893333pt;}
.y1cf{bottom:584.253333pt;}
.yb9{bottom:584.893333pt;}
.y15a{bottom:585.373333pt;}
.y275{bottom:588.413333pt;}
.y186{bottom:590.653333pt;}
.y50{bottom:591.133333pt;}
.y3c{bottom:592.893333pt;}
.y21{bottom:593.053333pt;}
.y1fa{bottom:594.013333pt;}
.yc4{bottom:595.453333pt;}
.y1bc{bottom:596.093333pt;}
.y20f{bottom:597.053333pt;}
.y139{bottom:597.853333pt;}
.y86{bottom:601.693333pt;}
.y1a1{bottom:602.173333pt;}
.y252{bottom:604.893333pt;}
.y6c{bottom:606.173333pt;}
.y113{bottom:607.933333pt;}
.yed{bottom:608.093333pt;}
.ydb{bottom:612.093333pt;}
.yb8{bottom:612.413333pt;}
.y159{bottom:613.053333pt;}
.y274{bottom:616.733333pt;}
.y185{bottom:618.333333pt;}
.y4f{bottom:618.653333pt;}
.y263{bottom:619.133333pt;}
.y16a{bottom:620.093333pt;}
.y20{bottom:620.733333pt;}
.y1f9{bottom:622.173333pt;}
.yc3{bottom:623.133333pt;}
.y1ce{bottom:623.613333pt;}
.y20e{bottom:625.373333pt;}
.y138{bottom:625.533333pt;}
.yca{bottom:629.373333pt;}
.y3b{bottom:631.293333pt;}
.y6b{bottom:633.693333pt;}
.y1a0{bottom:634.973333pt;}
.y1bb{bottom:635.453333pt;}
.y85{bottom:640.093333pt;}
.y158{bottom:640.573333pt;}
.y112{bottom:643.613333pt;}
.yaa{bottom:644.413333pt;}
.y184{bottom:645.853333pt;}
.yec{bottom:646.333333pt;}
.y1f{bottom:648.253333pt;}
.y1f8{bottom:650.493333pt;}
.yc2{bottom:650.653333pt;}
.y137{bottom:650.973333pt;}
.y1cd{bottom:651.293333pt;}
.y20d{bottom:653.693333pt;}
.y98{bottom:654.973333pt;}
.y4e{bottom:656.893333pt;}
.y262{bottom:657.373333pt;}
.y245{bottom:660.733333pt;}
.y6a{bottom:661.373333pt;}
.y1ba{bottom:662.973333pt;}
.y157{bottom:666.173333pt;}
.ya{bottom:667.293333pt;}
.y84{bottom:667.613333pt;}
.y3a{bottom:669.533333pt;}
.y111{bottom:671.133333pt;}
.ya9{bottom:672.093333pt;}
.y273{bottom:672.573333pt;}
.y183{bottom:673.533333pt;}
.yeb{bottom:673.853333pt;}
.y136{bottom:674.013333pt;}
.y1e{bottom:675.933333pt;}
.yfe{bottom:678.333333pt;}
.y1f0{bottom:678.813333pt;}
.y1f6{bottom:678.826667pt;}
.y20c{bottom:681.853333pt;}
.y4d{bottom:684.573333pt;}
.y97{bottom:688.573333pt;}
.y69{bottom:688.893333pt;}
.y156{bottom:689.213333pt;}
.y1b9{bottom:690.653333pt;}
.y83{bottom:695.293333pt;}
.y261{bottom:695.613333pt;}
.y135{bottom:697.053333pt;}
.y110{bottom:698.813333pt;}
.y9{bottom:699.133333pt;}
.ya8{bottom:699.613333pt;}
.y182{bottom:701.053333pt;}
.yea{bottom:701.533333pt;}
.y1d{bottom:703.453333pt;}
.ye0{bottom:705.853333pt;}
.y39{bottom:707.773333pt;}
.y134{bottom:709.693333pt;}
.y20b{bottom:710.186667pt;}
.y260{bottom:710.813333pt;}
.y96{bottom:711.613333pt;}
.y4c{bottom:712.093333pt;}
.y155{bottom:712.253333pt;}
.y68{bottom:716.573333pt;}
.y1c9{bottom:718.333333pt;}
.yc9{bottom:722.813333pt;}
.y153{bottom:724.893333pt;}
.y10f{bottom:726.333333pt;}
.ya7{bottom:727.293333pt;}
.y271{bottom:728.426667pt;}
.y181{bottom:728.733333pt;}
.y1b8{bottom:730.013333pt;}
.y1c{bottom:731.133333pt;}
.yb7{bottom:733.213333pt;}
.y82{bottom:733.533333pt;}
.y95{bottom:734.653333pt;}
.y8{bottom:737.373333pt;}
.y20a{bottom:738.506667pt;}
.ye9{bottom:739.453333pt;}
.y4b{bottom:739.773333pt;}
.y67{bottom:744.093333pt;}
.y38{bottom:746.013333pt;}
.y1ed{bottom:748.733333pt;}
.yfa{bottom:750.173333pt;}
.yc8{bottom:750.493333pt;}
.y10e{bottom:751.933333pt;}
.y180{bottom:754.173333pt;}
.ya6{bottom:754.813333pt;}
.y94{bottom:757.533333pt;}
.y1b7{bottom:757.693333pt;}
.y1a{bottom:758.653333pt;}
.y81{bottom:761.053333pt;}
.y125{bottom:765.533333pt;}
.y7{bottom:766.213333pt;}
.y209{bottom:766.693333pt;}
.y4a{bottom:767.333333pt;}
.y66{bottom:771.813333pt;}
.y10d{bottom:775.013333pt;}
.y17f{bottom:777.253333pt;}
.yc7{bottom:778.053333pt;}
.ya5{bottom:782.533333pt;}
.y22b{bottom:784.280000pt;}
.y37{bottom:784.293333pt;}
.y1b6{bottom:785.253333pt;}
.y19{bottom:786.373333pt;}
.y80{bottom:788.773333pt;}
.y93{bottom:791.333333pt;}
.y6{bottom:794.853333pt;}
.y19e{bottom:795.013333pt;}
.y10c{bottom:797.893333pt;}
.y65{bottom:799.333333pt;}
.y17e{bottom:800.293333pt;}
.y49{bottom:805.573333pt;}
.y152{bottom:808.293333pt;}
.ya4{bottom:810.053333pt;}
.y10b{bottom:810.533333pt;}
.y270{bottom:811.973333pt;}
.y17c{bottom:812.933333pt;}
.y18{bottom:813.893333pt;}
.ye8{bottom:816.293333pt;}
.y1ec{bottom:818.853333pt;}
.y5{bottom:822.053333pt;}
.y36{bottom:822.533333pt;}
.y12c{bottom:822.680000pt;}
.y12a{bottom:822.693333pt;}
.y1b5{bottom:824.613333pt;}
.y7f{bottom:827.013333pt;}
.y19d{bottom:832.933333pt;}
.y48{bottom:833.253333pt;}
.y64{bottom:837.573333pt;}
.y17{bottom:841.573333pt;}
.ye7{bottom:843.973333pt;}
.y1eb{bottom:847.173333pt;}
.y17b{bottom:850.213333pt;}
.y1b4{bottom:852.293333pt;}
.y7e{bottom:854.533333pt;}
.y4{bottom:860.453333pt;}
.y35{bottom:860.773333pt;}
.y14a{bottom:864.133333pt;}
.y63{bottom:865.253333pt;}
.y109{bottom:866.533333pt;}
.y21e{bottom:867.813333pt;}
.y16{bottom:869.093333pt;}
.ye6{bottom:871.493333pt;}
.y208{bottom:878.533333pt;}
.y1b3{bottom:879.973333pt;}
.y7d{bottom:882.213333pt;}
.y62{bottom:892.773333pt;}
.y3{bottom:894.533333pt;}
.y14{bottom:896.773333pt;}
.y47{bottom:898.853333pt;}
.y34{bottom:899.173333pt;}
.y124{bottom:906.053333pt;}
.y7c{bottom:909.733333pt;}
.y1b2{bottom:919.333333pt;}
.y14e{bottom:920.133333pt;}
.y61{bottom:920.453333pt;}
.y107{bottom:922.373333pt;}
.y21d{bottom:923.653333pt;}
.y2{bottom:924.293333pt;}
.y207{bottom:934.373333pt;}
.ye5{bottom:937.093333pt;}
.y33{bottom:937.413333pt;}
.y1b1{bottom:946.853333pt;}
.y60{bottom:947.973333pt;}
.y106{bottom:961.893333pt;}
.y1b0{bottom:974.533333pt;}
.y12{bottom:975.333333pt;}
.y5f{bottom:975.653333pt;}
.y11{bottom:1062.080000pt;}
.h29{height:2.512500pt;}
.h5{height:16.125000pt;}
.h9{height:27.506667pt;}
.hc{height:27.520000pt;}
.h26{height:27.538667pt;}
.he{height:27.546667pt;}
.h8{height:27.666667pt;}
.hd{height:27.680000pt;}
.hf{height:27.698667pt;}
.hb{height:27.700000pt;}
.h31{height:27.840000pt;}
.h25{height:36.626667pt;}
.h6{height:37.410000pt;}
.h15{height:38.866667pt;}
.h18{height:38.880000pt;}
.h20{height:41.106667pt;}
.h4{height:43.215000pt;}
.h14{height:47.621250pt;}
.h17{height:52.108438pt;}
.h13{height:52.134375pt;}
.h30{height:55.026667pt;}
.h2f{height:55.066667pt;}
.h16{height:55.186667pt;}
.h1e{height:55.200000pt;}
.h40{height:55.218667pt;}
.h24{height:55.226667pt;}
.h22{height:55.232000pt;}
.h23{height:55.240000pt;}
.h1d{height:56.340000pt;}
.h11{height:57.375000pt;}
.h2{height:57.787500pt;}
.h27{height:62.781250pt;}
.h7{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:65.781915pt;}
.h10{height:66.625000pt;}
.h2e{height:69.276000pt;}
.h2d{height:69.280000pt;}
.h2a{height:69.460000pt;}
.h1c{height:82.706667pt;}
.h1a{height:82.712000pt;}
.h1b{height:82.720000pt;}
.h3b{height:82.738667pt;}
.h21{height:82.740000pt;}
.h3e{height:82.746667pt;}
.h38{height:82.866667pt;}
.h36{height:82.872000pt;}
.h37{height:82.880000pt;}
.h41{height:82.898667pt;}
.h42{height:82.900000pt;}
.h32{height:83.712000pt;}
.h33{height:83.720000pt;}
.h28{height:85.785000pt;}
.h1f{height:97.106667pt;}
.h3f{height:105.746667pt;}
.h12{height:114.946875pt;}
.h2b{height:139.373333pt;}
.h2c{height:139.386667pt;}
.h19{height:139.866667pt;}
.h3d{height:262.253333pt;}
.h3c{height:262.266667pt;}
.h39{height:368.053333pt;}
.h3a{height:368.066667pt;}
.h34{height:451.573333pt;}
.h35{height:451.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:99.192000pt;}
.w11{width:99.200000pt;}
.wf{width:99.346667pt;}
.w15{width:101.752000pt;}
.w18{width:101.760000pt;}
.wb{width:102.066667pt;}
.w8{width:102.072000pt;}
.w28{width:102.098667pt;}
.w2c{width:102.100000pt;}
.w17{width:102.386667pt;}
.w1a{width:102.396000pt;}
.w1b{width:102.400000pt;}
.w29{width:103.506667pt;}
.w2f{width:103.516000pt;}
.w30{width:103.520000pt;}
.w4{width:103.538667pt;}
.w27{width:103.672000pt;}
.w2b{width:103.680000pt;}
.wd{width:104.018667pt;}
.w12{width:104.020000pt;}
.w33{width:104.146667pt;}
.w31{width:104.152000pt;}
.w34{width:104.156000pt;}
.w35{width:104.160000pt;}
.w32{width:104.178667pt;}
.w22{width:104.306667pt;}
.w25{width:104.316000pt;}
.w26{width:104.320000pt;}
.w20{width:104.338667pt;}
.w24{width:104.340000pt;}
.w1f{width:104.472000pt;}
.w7{width:104.658667pt;}
.w36{width:104.660000pt;}
.w3a{width:104.946667pt;}
.w38{width:104.978667pt;}
.w39{width:104.992000pt;}
.w3c{width:105.000000pt;}
.w37{width:105.112000pt;}
.w3b{width:105.138667pt;}
.w3d{width:105.140000pt;}
.w5{width:107.392000pt;}
.w21{width:107.872000pt;}
.w23{width:107.880000pt;}
.w2a{width:108.018667pt;}
.w2e{width:108.020000pt;}
.wa{width:108.032000pt;}
.w2d{width:108.040000pt;}
.wc{width:108.978667pt;}
.w6{width:110.866667pt;}
.w16{width:111.378667pt;}
.w19{width:111.380000pt;}
.w9{width:111.538667pt;}
.w10{width:115.058667pt;}
.w14{width:115.060000pt;}
.we{width:115.072000pt;}
.w13{width:115.080000pt;}
.w1d{width:171.226667pt;}
.w1e{width:179.373333pt;}
.w1c{width:187.058667pt;}
.w2{width:529.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.186667pt;}
.x3a{left:8.786667pt;}
.x26{left:10.066667pt;}
.x24{left:11.026667pt;}
.x36{left:12.466667pt;}
.x27{left:14.226667pt;}
.x20{left:15.506667pt;}
.x3b{left:16.626667pt;}
.x21{left:17.746667pt;}
.x22{left:19.040000pt;}
.x25{left:20.320000pt;}
.x23{left:21.426667pt;}
.x35{left:22.400000pt;}
.x59{left:23.706667pt;}
.x2e{left:24.786667pt;}
.x40{left:26.386667pt;}
.x41{left:27.706667pt;}
.x34{left:28.786667pt;}
.x3c{left:30.066667pt;}
.x3f{left:31.386667pt;}
.x2f{left:32.666667pt;}
.x32{left:33.586667pt;}
.x42{left:34.706667pt;}
.x1a{left:35.706667pt;}
.x2d{left:36.786667pt;}
.x56{left:37.906667pt;}
.x18{left:38.866667pt;}
.x28{left:40.306667pt;}
.x39{left:41.586667pt;}
.x1f{left:42.586667pt;}
.x1c{left:43.840000pt;}
.x4b{left:46.386667pt;}
.x30{left:47.680000pt;}
.x37{left:49.586667pt;}
.x3d{left:50.866667pt;}
.x55{left:52.026667pt;}
.x54{left:53.920000pt;}
.x3e{left:55.706667pt;}
.x38{left:57.440000pt;}
.x48{left:58.866667pt;}
.x4d{left:65.906667pt;}
.x45{left:69.440000pt;}
.x47{left:73.586667pt;}
.x49{left:77.440000pt;}
.x4a{left:81.586667pt;}
.xd{left:82.866667pt;}
.x4c{left:85.586667pt;}
.x43{left:93.426667pt;}
.xe{left:127.226667pt;}
.x5{left:132.352000pt;}
.x11{left:151.226667pt;}
.x13{left:156.346667pt;}
.x14{left:160.826667pt;}
.x12{left:179.546667pt;}
.x15{left:184.826667pt;}
.xf{left:187.226667pt;}
.x17{left:200.346667pt;}
.x6{left:214.906667pt;}
.x19{left:232.520000pt;}
.x29{left:235.400000pt;}
.x51{left:238.120000pt;}
.x3{left:257.826667pt;}
.x7{left:277.826667pt;}
.x4{left:292.706667pt;}
.x44{left:320.866667pt;}
.x1b{left:336.706667pt;}
.x57{left:340.066667pt;}
.x52{left:343.106667pt;}
.x5a{left:344.386667pt;}
.x2a{left:347.586667pt;}
.xb{left:368.066667pt;}
.x16{left:389.506667pt;}
.x10{left:392.866667pt;}
.xa{left:394.946667pt;}
.x1{left:396.866667pt;}
.x1d{left:444.746667pt;}
.x58{left:448.746667pt;}
.x5b{left:450.186667pt;}
.x53{left:451.626667pt;}
.x31{left:452.906667pt;}
.x2b{left:456.266667pt;}
.x46{left:492.746667pt;}
.x9{left:517.053333pt;}
.x8{left:546.493333pt;}
.x33{left:552.906667pt;}
.x1e{left:556.266667pt;}
.x2c{left:558.986667pt;}
.x50{left:623.013333pt;}
.x4e{left:623.973333pt;}
.x4f{left:660.133333pt;}
.x2{left:661.573333pt;}
}




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