
    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_ba303793939973b87513ba69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_5124f79722288c5a8d522113.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_d068d8da50bb7eb8a3e29dc3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_d8dc17e7e9943b80c366ce0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_78abb35d8b85de8b3252718b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_f71186fe0fa367971c605f8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_b55095799365d7219d906777.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_deadeab13a31943bb450a387.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef13fe5621d17a8a24de7c81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e7e01bf4a9d3b51e5332baa2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2{letter-spacing:-2.976000px;}
.ls14{letter-spacing:-1.584000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.555000px;}
.ls7{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.056880px;}
.ls1c{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.165000px;}
.ls5{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.274800px;}
.ls6{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.382320px;}
.ls1f{letter-spacing:3.744000px;}
.ls19{letter-spacing:23.381280px;}
.ls11{letter-spacing:33.264000px;}
.lse{letter-spacing:34.973280px;}
.lsa{letter-spacing:38.573280px;}
.ls1a{letter-spacing:40.464000px;}
.lsf{letter-spacing:43.541280px;}
.ls15{letter-spacing:44.784000px;}
.ls10{letter-spacing:54.864000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws0{word-spacing:-37.913760px;}
.ws1{word-spacing:-34.937760px;}
.wsb{word-spacing:-27.174240px;}
.wse{word-spacing:-19.038240px;}
.wsf{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.416000px;}
.ws18{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.200000px;}
.wsc{word-spacing:-16.128000px;}
.wsd{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.768000px;}
.ws16{word-spacing:-15.696000px;}
.ws12{word-spacing:-15.624000px;}
.ws9{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.970240px;}
.ws8{word-spacing:-13.780560px;}
.ws17{word-spacing:-12.528000px;}
.ws14{word-spacing:-12.348000px;}
.ws15{word-spacing:-12.204000px;}
.ws13{word-spacing:-12.186000px;}
.ws11{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-16.640640px;}
._2f{margin-left:-14.822880px;}
._31{margin-left:-13.284000px;}
._2b{margin-left:-11.666160px;}
._2e{margin-left:-10.135200px;}
._5{margin-left:-8.455680px;}
._32{margin-left:-6.732000px;}
._2c{margin-left:-5.000400px;}
._4{margin-left:-3.575520px;}
._0{margin-left:-1.792800px;}
._1{width:1.135440px;}
._2{width:2.440560px;}
._28{width:3.744000px;}
._29{width:5.088000px;}
._34{width:6.163440px;}
._1a{width:7.230960px;}
._37{width:8.314800px;}
._35{width:9.390720px;}
._3a{width:10.812960px;}
._18{width:12.011040px;}
._42{width:13.440000px;}
._40{width:15.192000px;}
._3d{width:17.280000px;}
._41{width:18.576000px;}
._39{width:19.612800px;}
._38{width:20.640000px;}
._44{width:21.808320px;}
._43{width:22.878960px;}
._3b{width:24.264000px;}
._3c{width:25.288560px;}
._3e{width:26.428320px;}
._b{width:27.429840px;}
._2a{width:28.488000px;}
._c{width:30.298320px;}
._d{width:31.971600px;}
._36{width:35.496000px;}
._27{width:38.425680px;}
._23{width:45.178560px;}
._15{width:50.019120px;}
._33{width:63.504000px;}
._1d{width:65.676240px;}
._1e{width:69.219840px;}
._3{width:84.746880px;}
._e{width:87.377760px;}
._f{width:88.760160px;}
._30{width:89.904000px;}
._2d{width:91.368000px;}
._14{width:99.227520px;}
._10{width:107.209440px;}
._22{width:112.210560px;}
._11{width:117.244800px;}
._1c{width:122.279040px;}
._a{width:128.041920px;}
._20{width:133.802640px;}
._19{width:137.381760px;}
._8{width:149.716560px;}
._17{width:155.464560px;}
._9{width:156.989520px;}
._25{width:163.388160px;}
._26{width:165.008160px;}
._1b{width:169.917120px;}
._13{width:173.304000px;}
._1f{width:177.033600px;}
._21{width:190.156320px;}
._16{width:192.128400px;}
._3f{width:200.088000px;}
._12{width:338.600160px;}
._24{width:470.729520px;}
._7{width:848.028000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(46,116,181);}
.fc3{color:rgb(68,114,196);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(68,84,106);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:167.760000px;}
.y60{bottom:-14.760000px;}
.y0{bottom:0.000000px;}
.y148{bottom:1.800000px;}
.y128{bottom:4.140000px;}
.y5f{bottom:4.860000px;}
.y3e{bottom:5.040000px;}
.y2{bottom:5.400000px;}
.y36{bottom:7.920000px;}
.yc6{bottom:9.720000px;}
.y54{bottom:11.520000px;}
.y63{bottom:13.674000px;}
.y38{bottom:14.400000px;}
.y3c{bottom:14.940000px;}
.y2d{bottom:15.660000px;}
.y41{bottom:16.020000px;}
.y8{bottom:17.100000px;}
.y5{bottom:17.640000px;}
.y4d{bottom:18.000000px;}
.y33{bottom:18.180000px;}
.y47{bottom:18.210000px;}
.y12{bottom:18.360000px;}
.y17{bottom:18.390000px;}
.y200{bottom:18.534000px;}
.y15{bottom:18.540000px;}
.y20{bottom:18.585000px;}
.y57{bottom:19.260000px;}
.y67{bottom:19.614000px;}
.y31{bottom:19.620000px;}
.y4b{bottom:19.650000px;}
.y3a{bottom:19.800000px;}
.y5b{bottom:19.845000px;}
.y10{bottom:20.340000px;}
.y51{bottom:20.700000px;}
.y65{bottom:21.054000px;}
.y2f{bottom:21.060000px;}
.y49{bottom:21.090000px;}
.y44{bottom:21.240000px;}
.y59{bottom:21.285000px;}
.y5e{bottom:24.480000px;}
.y3d{bottom:24.660000px;}
.y35{bottom:26.100000px;}
.y6c{bottom:26.820000px;}
.y62{bottom:30.594000px;}
.y2c{bottom:30.600000px;}
.y46{bottom:30.630000px;}
.y56{bottom:30.645000px;}
.y191{bottom:31.320000px;}
.y1f3{bottom:31.494000px;}
.y12f{bottom:31.500000px;}
.y1a4{bottom:31.545000px;}
.yc5{bottom:31.680000px;}
.y23{bottom:33.120000px;}
.y16a{bottom:33.660000px;}
.y13c{bottom:35.100000px;}
.y14e{bottom:35.280000px;}
.y7{bottom:35.460000px;}
.y2e{bottom:39.240000px;}
.y30{bottom:39.780000px;}
.y39{bottom:39.960000px;}
.y64{bottom:40.674000px;}
.y4e{bottom:40.680000px;}
.y48{bottom:40.710000px;}
.y43{bottom:40.860000px;}
.y58{bottom:40.905000px;}
.y66{bottom:41.394000px;}
.y4f{bottom:41.400000px;}
.y4a{bottom:41.430000px;}
.y3f{bottom:41.580000px;}
.y5a{bottom:41.625000px;}
.y5d{bottom:44.280000px;}
.y34{bottom:44.460000px;}
.y13b{bottom:48.060000px;}
.y14d{bottom:48.240000px;}
.y6{bottom:53.820000px;}
.y9{bottom:57.816000px;}
.y4{bottom:74.916000px;}
.y25{bottom:79.416000px;}
.y15a{bottom:104.796000px;}
.y16c{bottom:108.576000px;}
.y1f4{bottom:110.916000px;}
.yeb{bottom:111.096000px;}
.y1b5{bottom:113.796000px;}
.y10b{bottom:115.236000px;}
.y9f{bottom:116.496000px;}
.y139{bottom:120.816000px;}
.y201{bottom:123.156000px;}
.y68{bottom:125.316000px;}
.y1f2{bottom:128.016000px;}
.y159{bottom:128.376000px;}
.y126{bottom:133.596000px;}
.y1c8{bottom:135.936000px;}
.y1b4{bottom:137.556000px;}
.y10a{bottom:138.816000px;}
.y1a3{bottom:139.356000px;}
.y9e{bottom:140.076000px;}
.y1ff{bottom:140.256000px;}
.y61{bottom:143.136000px;}
.y16b{bottom:144.216000px;}
.yea{bottom:146.916000px;}
.y158{bottom:152.130000px;}
.y138{bottom:156.450000px;}
.y125{bottom:157.350000px;}
.y1b3{bottom:157.710000px;}
.y1c7{bottom:159.690000px;}
.y1ad{bottom:161.130000px;}
.y169{bottom:161.310000px;}
.y109{bottom:162.570000px;}
.y1a2{bottom:163.110000px;}
.y9d{bottom:163.830000px;}
.ye9{bottom:170.670000px;}
.y157{bottom:172.290000px;}
.y124{bottom:181.110000px;}
.y137{bottom:181.290000px;}
.y1c6{bottom:183.270000px;}
.y1ac{bottom:184.710000px;}
.y108{bottom:186.330000px;}
.y1a1{bottom:186.870000px;}
.y9c{bottom:187.590000px;}
.ye8{bottom:194.250000px;}
.y5c{bottom:202.710000px;}
.y156{bottom:203.790000px;}
.y1db{bottom:204.510000px;}
.y136{bottom:204.870000px;}
.y1a0{bottom:207.030000px;}
.y9b{bottom:211.350000px;}
.y123{bottom:212.070000px;}
.ye7{bottom:218.010000px;}
.y107{bottom:221.970000px;}
.y135{bottom:229.530000px;}
.y9a{bottom:234.930000px;}
.y18b{bottom:236.190000px;}
.yc2{bottom:236.370000px;}
.y1da{bottom:240.150000px;}
.y106{bottom:245.730000px;}
.y1c5{bottom:249.690000px;}
.y21{bottom:251.850000px;}
.y134{bottom:253.290000px;}
.ye6{bottom:253.650000px;}
.y99{bottom:258.690000px;}
.y18a{bottom:259.950000px;}
.y55{bottom:262.110000px;}
.y1d9{bottom:263.910000px;}
.y122{bottom:265.350000px;}
.y105{bottom:269.490000px;}
.y1f{bottom:269.670000px;}
.yc1{bottom:272.010000px;}
.y133{bottom:277.050000px;}
.y98{bottom:282.495000px;}
.y189{bottom:283.755000px;}
.y1d8{bottom:287.715000px;}
.y121{bottom:288.975000px;}
.ye5{bottom:289.515000px;}
.y1c4{bottom:297.435000px;}
.y180{bottom:299.415000px;}
.y132{bottom:300.855000px;}
.y188{bottom:303.915000px;}
.y104{bottom:305.175000px;}
.y1e{bottom:306.075000px;}
.y198{bottom:309.495000px;}
.y120{bottom:312.735000px;}
.yc0{bottom:314.355000px;}
.y1ea{bottom:320.115000px;}
.y53{bottom:321.735000px;}
.y17f{bottom:323.175000px;}
.y131{bottom:324.435000px;}
.y97{bottom:324.795000px;}
.ye4{bottom:325.155000px;}
.y1d7{bottom:330.375000px;}
.y1c3{bottom:333.075000px;}
.y197{bottom:333.255000px;}
.y14b{bottom:336.315000px;}
.y103{bottom:340.815000px;}
.y17e{bottom:343.335000px;}
.y1e9{bottom:343.875000px;}
.y1d{bottom:344.235000px;}
.ye3{bottom:348.915000px;}
.y1e2{bottom:351.435000px;}
.y11f{bottom:355.755000px;}
.y1c2{bottom:357.735000px;}
.y96{bottom:359.895000px;}
.y130{bottom:361.155000px;}
.ybf{bottom:361.515000px;}
.y102{bottom:364.575000px;}
.y175{bottom:367.095000px;}
.y1e8{bottom:367.455000px;}
.y196{bottom:368.895000px;}
.y14a{bottom:372.135000px;}
.ye2{bottom:372.675000px;}
.y11e{bottom:377.715000px;}
.y1d6{bottom:377.895000px;}
.y12e{bottom:378.255000px;}
.y1c{bottom:380.595000px;}
.y52{bottom:381.315000px;}
.y1c1{bottom:382.395000px;}
.ybe{bottom:385.275000px;}
.y195{bottom:385.995000px;}
.y1e1{bottom:387.075000px;}
.y1e7{bottom:387.615000px;}
.y101{bottom:388.335000px;}
.y149{bottom:389.235000px;}
.y174{bottom:390.855000px;}
.y95{bottom:391.215000px;}
.ye1{bottom:396.255000px;}
.y11d{bottom:399.675000px;}
.y1d5{bottom:402.555000px;}
.y1c0{bottom:407.055000px;}
.ybd{bottom:409.035000px;}
.y168{bottom:409.395000px;}
.y1e0{bottom:410.835000px;}
.y1b{bottom:418.755000px;}
.y155{bottom:420.375000px;}
.y147{bottom:420.735000px;}
.y19f{bottom:421.275000px;}
.y11c{bottom:421.635000px;}
.y94{bottom:422.355000px;}
.y100{bottom:423.975000px;}
.y1ab{bottom:425.955000px;}
.y173{bottom:426.495000px;}
.y1d4{bottom:427.215000px;}
.y1df{bottom:430.995000px;}
.y1bf{bottom:431.715000px;}
.ybc{bottom:432.615000px;}
.y1b2{bottom:432.795000px;}
.y154{bottom:437.475000px;}
.ye0{bottom:438.915000px;}
.y50{bottom:440.895000px;}
.y11b{bottom:443.595000px;}
.y19e{bottom:445.035000px;}
.y167{bottom:446.115000px;}
.yff{bottom:447.735000px;}
.y1aa{bottom:449.715000px;}
.y172{bottom:450.255000px;}
.y1d3{bottom:452.055000px;}
.y93{bottom:453.675000px;}
.y1a{bottom:455.115000px;}
.ybb{bottom:456.375000px;}
.y166{bottom:463.215000px;}
.y19d{bottom:468.615000px;}
.y1a9{bottom:473.475000px;}
.y1b1{bottom:476.535000px;}
.y1d2{bottom:476.715000px;}
.yba{bottom:480.135000px;}
.y1be{bottom:481.035000px;}
.y92{bottom:484.815000px;}
.y11a{bottom:486.615000px;}
.ydf{bottom:486.795000px;}
.y19c{bottom:488.775000px;}
.yfe{bottom:490.395000px;}
.y19{bottom:491.295000px;}
.y171{bottom:492.915000px;}
.y1a8{bottom:493.635000px;}
.y4c{bottom:500.475000px;}
.y1d1{bottom:501.375000px;}
.yb9{bottom:503.895000px;}
.y1bd{bottom:505.695000px;}
.y119{bottom:508.575000px;}
.yde{bottom:510.375000px;}
.y91{bottom:515.955000px;}
.y1d0{bottom:526.035000px;}
.y1f1{bottom:526.935000px;}
.yb8{bottom:527.475000px;}
.y18{bottom:527.655000px;}
.y1bc{bottom:530.355000px;}
.y118{bottom:530.535000px;}
.ydd{bottom:535.035000px;}
.yfd{bottom:538.095000px;}
.y170{bottom:540.615000px;}
.y90{bottom:547.275000px;}
.y1cf{bottom:550.695000px;}
.yb7{bottom:551.235000px;}
.y117{bottom:552.495000px;}
.y1bb{bottom:555.195000px;}
.y194{bottom:557.535000px;}
.y45{bottom:560.055000px;}
.y1fe{bottom:560.415000px;}
.y16{bottom:564.015000px;}
.y1f0{bottom:569.445000px;}
.ydc{bottom:571.785000px;}
.y187{bottom:572.325000px;}
.yfc{bottom:573.765000px;}
.yb6{bottom:575.025000px;}
.y1ce{bottom:575.385000px;}
.y16f{bottom:576.285000px;}
.y8f{bottom:578.445000px;}
.y193{bottom:581.325000px;}
.y1fd{bottom:584.205000px;}
.y1ba{bottom:591.945000px;}
.y16e{bottom:593.385000px;}
.ydb{bottom:595.545000px;}
.y186{bottom:596.085000px;}
.yfb{bottom:597.525000px;}
.yb5{bottom:598.785000px;}
.y1cd{bottom:600.045000px;}
.y14{bottom:600.225000px;}
.y192{bottom:605.085000px;}
.y8e{bottom:609.765000px;}
.y1b9{bottom:615.705000px;}
.y1ef{bottom:617.325000px;}
.y116{bottom:617.505000px;}
.y42{bottom:619.485000px;}
.y185{bottom:619.665000px;}
.y1fc{bottom:619.845000px;}
.yfa{bottom:621.285000px;}
.yb4{bottom:622.365000px;}
.y1cc{bottom:624.705000px;}
.y190{bottom:625.245000px;}
.yda{bottom:631.185000px;}
.y13{bottom:636.585000px;}
.y115{bottom:639.465000px;}
.y146{bottom:639.645000px;}
.y184{bottom:639.825000px;}
.y8d{bottom:640.905000px;}
.y17d{bottom:643.605000px;}
.yf9{bottom:645.045000px;}
.yb3{bottom:646.125000px;}
.y1cb{bottom:649.365000px;}
.yd9{bottom:654.945000px;}
.y1b8{bottom:658.365000px;}
.y1ee{bottom:659.985000px;}
.y114{bottom:661.425000px;}
.y145{bottom:663.225000px;}
.y17c{bottom:667.365000px;}
.yb2{bottom:669.885000px;}
.y8c{bottom:672.045000px;}
.y11{bottom:674.745000px;}
.y40{bottom:679.065000px;}
.yf8{bottom:680.685000px;}
.y113{bottom:683.385000px;}
.y1ca{bottom:686.085000px;}
.yd8{bottom:690.585000px;}
.y17b{bottom:690.945000px;}
.y1de{bottom:692.565000px;}
.yb1{bottom:693.645000px;}
.y144{bottom:699.045000px;}
.y1b7{bottom:699.405000px;}
.y1c9{bottom:703.185000px;}
.y8b{bottom:703.365000px;}
.yf7{bottom:704.445000px;}
.y1ed{bottom:707.685000px;}
.y1fb{bottom:709.845000px;}
.yf{bottom:711.105000px;}
.y165{bottom:711.825000px;}
.y1b0{bottom:713.445000px;}
.yd7{bottom:714.345000px;}
.y1dd{bottom:716.325000px;}
.yb0{bottom:717.225000px;}
.y143{bottom:722.625000px;}
.y112{bottom:726.405000px;}
.y17a{bottom:726.765000px;}
.yf6{bottom:728.205000px;}
.y8a{bottom:734.505000px;}
.y164{bottom:735.405000px;}
.y1af{bottom:737.025000px;}
.yd6{bottom:738.105000px;}
.y3b{bottom:738.645000px;}
.y1dc{bottom:739.905000px;}
.yaf{bottom:740.985000px;}
.y142{bottom:746.385000px;}
.y111{bottom:748.365000px;}
.y179{bottom:750.525000px;}
.y78{bottom:752.865000px;}
.y1a7{bottom:753.765000px;}
.y1ae{bottom:757.185000px;}
.y1fa{bottom:757.545000px;}
.y163{bottom:760.065000px;}
.yf5{bottom:763.845000px;}
.yae{bottom:764.745000px;}
.y89{bottom:765.825000px;}
.y153{bottom:767.445000px;}
.ye{bottom:767.805000px;}
.y141{bottom:770.145000px;}
.y110{bottom:770.325000px;}
.y77{bottom:770.685000px;}
.yd5{bottom:773.745000px;}
.y178{bottom:774.105000px;}
.y1f9{bottom:775.725000px;}
.y1a6{bottom:777.345000px;}
.y12d{bottom:787.245000px;}
.yf4{bottom:787.605000px;}
.yad{bottom:788.325000px;}
.y152{bottom:791.205000px;}
.y1ec{bottom:791.925000px;}
.y10f{bottom:792.285000px;}
.y76{bottom:792.645000px;}
.y1e6{bottom:795.525000px;}
.yd{bottom:796.245000px;}
.y88{bottom:796.965000px;}
.yd4{bottom:797.505000px;}
.y37{bottom:798.225000px;}
.y1a5{bottom:801.105000px;}
.y18f{bottom:801.285000px;}
.y19b{bottom:804.525000px;}
.y1eb{bottom:809.025000px;}
.y177{bottom:809.925000px;}
.yac{bottom:812.085000px;}
.y140{bottom:812.805000px;}
.y10e{bottom:814.245000px;}
.y75{bottom:814.605000px;}
.y151{bottom:814.785000px;}
.y1e5{bottom:819.105000px;}
.yd3{bottom:821.265000px;}
.yf3{bottom:823.245000px;}
.y18e{bottom:825.045000px;}
.y176{bottom:827.025000px;}
.y87{bottom:828.105000px;}
.y12c{bottom:829.905000px;}
.yab{bottom:835.845000px;}
.y74{bottom:836.565000px;}
.y162{bottom:839.445000px;}
.y7e{bottom:840.885000px;}
.y1e4{bottom:842.865000px;}
.yc{bottom:847.590000px;}
.y18d{bottom:848.670000px;}
.y150{bottom:850.650000px;}
.y19a{bottom:851.910000px;}
.yd2{bottom:856.950000px;}
.y32{bottom:857.850000px;}
.y73{bottom:858.570000px;}
.yf2{bottom:858.930000px;}
.y86{bottom:859.470000px;}
.yaa{bottom:859.650000px;}
.y13f{bottom:861.450000px;}
.y1e3{bottom:863.070000px;}
.y18c{bottom:868.830000px;}
.y199{bottom:872.070000px;}
.y14f{bottom:874.230000px;}
.y7d{bottom:876.750000px;}
.y72{bottom:880.530000px;}
.yd1{bottom:880.710000px;}
.y183{bottom:881.250000px;}
.yf1{bottom:882.690000px;}
.ya9{bottom:883.230000px;}
.y12b{bottom:885.030000px;}
.y1b6{bottom:885.570000px;}
.y161{bottom:887.370000px;}
.y85{bottom:890.610000px;}
.y14c{bottom:891.330000px;}
.yb{bottom:898.890000px;}
.y7c{bottom:900.330000px;}
.y71{bottom:902.490000px;}
.ycb{bottom:902.850000px;}
.yd0{bottom:904.470000px;}
.y182{bottom:904.830000px;}
.ya8{bottom:906.990000px;}
.y13e{bottom:909.150000px;}
.y2b{bottom:917.430000px;}
.yf0{bottom:918.510000px;}
.yca{bottom:920.670000px;}
.y84{bottom:921.930000px;}
.y70{bottom:924.450000px;}
.y181{bottom:924.990000px;}
.ycf{bottom:928.050000px;}
.y160{bottom:929.850000px;}
.ya7{bottom:930.750000px;}
.y13d{bottom:932.910000px;}
.y7b{bottom:936.150000px;}
.y12a{bottom:938.130000px;}
.ya{bottom:938.850000px;}
.y10d{bottom:942.090000px;}
.yc9{bottom:943.530000px;}
.y6f{bottom:946.590000px;}
.y13a{bottom:950.010000px;}
.y83{bottom:953.070000px;}
.yef{bottom:954.150000px;}
.ya6{bottom:954.510000px;}
.y129{bottom:955.230000px;}
.y7a{bottom:959.730000px;}
.yce{bottom:963.870000px;}
.yc8{bottom:966.210000px;}
.y6e{bottom:968.550000px;}
.y15f{bottom:977.730000px;}
.yee{bottom:977.910000px;}
.ya5{bottom:978.090000px;}
.y79{bottom:983.490000px;}
.y82{bottom:984.210000px;}
.y127{bottom:986.730000px;}
.ycd{bottom:987.450000px;}
.yc7{bottom:988.890000px;}
.y2a{bottom:995.550000px;}
.yed{bottom:1001.490000px;}
.ya4{bottom:1001.850000px;}
.yc4{bottom:1011.570000px;}
.y6d{bottom:1012.470000px;}
.y15e{bottom:1013.370000px;}
.y10c{bottom:1013.550000px;}
.y81{bottom:1015.530000px;}
.y203{bottom:1018.410000px;}
.y29{bottom:1019.310000px;}
.ya3{bottom:1025.610000px;}
.ycc{bottom:1030.110000px;}
.y6b{bottom:1034.430000px;}
.yec{bottom:1037.310000px;}
.y15d{bottom:1038.030000px;}
.y28{bottom:1042.890000px;}
.y80{bottom:1046.670000px;}
.y1f8{bottom:1047.390000px;}
.ya2{bottom:1049.370000px;}
.y16d{bottom:1050.990000px;}
.y202{bottom:1054.230000px;}
.yc3{bottom:1061.070000px;}
.y27{bottom:1066.650000px;}
.y1f7{bottom:1070.970000px;}
.ya1{bottom:1072.950000px;}
.y15c{bottom:1074.750000px;}
.y7f{bottom:1077.990000px;}
.y6a{bottom:1079.070000px;}
.y1f6{bottom:1095.810000px;}
.ya0{bottom:1096.710000px;}
.y26{bottom:1108.950000px;}
.y15b{bottom:1117.410000px;}
.y1f5{bottom:1119.390000px;}
.y69{bottom:1120.470000px;}
.y24{bottom:1142.460000px;}
.y22{bottom:1159.560000px;}
.y3{bottom:1170.180000px;}
.y1{bottom:1187.280000px;}
.h17{height:21.960000px;}
.h1b{height:21.996000px;}
.h1a{height:22.140000px;}
.h2{height:22.500000px;}
.h21{height:31.500000px;}
.ha{height:35.460000px;}
.hc{height:35.496000px;}
.hb{height:35.640000px;}
.hd{height:35.676000px;}
.h9{height:37.440000px;}
.h22{height:43.453125px;}
.h18{height:43.920000px;}
.h1d{height:48.780000px;}
.he{height:50.220000px;}
.h19{height:54.386719px;}
.h6{height:56.900391px;}
.h10{height:58.680000px;}
.h16{height:58.716000px;}
.h15{height:58.860000px;}
.h14{height:58.896000px;}
.h13{height:59.439023px;}
.h12{height:65.884219px;}
.h11{height:67.824844px;}
.h4{height:68.220000px;}
.h7{height:68.554688px;}
.h3{height:71.613281px;}
.h25{height:71.824219px;}
.h5{height:73.722656px;}
.h1f{height:74.004654px;}
.h1e{height:87.695156px;}
.h24{height:104.400000px;}
.hf{height:114.486328px;}
.h1c{height:125.171719px;}
.h20{height:150.870000px;}
.h34{height:153.000000px;}
.h33{height:157.320000px;}
.h8{height:159.732422px;}
.h3f{height:167.430000px;}
.h3e{height:184.530000px;}
.h37{height:195.690000px;}
.h29{height:198.030000px;}
.h26{height:200.190000px;}
.h3a{height:202.530000px;}
.h2f{height:212.610000px;}
.h3c{height:218.370000px;}
.h30{height:222.870000px;}
.h2b{height:229.530000px;}
.h2a{height:230.070000px;}
.h3d{height:232.770000px;}
.h39{height:241.410000px;}
.h42{height:242.850000px;}
.h27{height:246.270000px;}
.h31{height:249.840000px;}
.h47{height:253.110000px;}
.h38{height:256.890000px;}
.h35{height:265.530000px;}
.h32{height:268.770000px;}
.h41{height:270.570000px;}
.h43{height:274.530000px;}
.h2e{height:281.730000px;}
.h36{height:297.030000px;}
.h2d{height:310.575000px;}
.h28{height:311.250000px;}
.h45{height:328.575000px;}
.h46{height:380.190000px;}
.h3b{height:380.415000px;}
.h44{height:389.190000px;}
.h23{height:390.450000px;}
.h48{height:401.610000px;}
.h40{height:434.415000px;}
.h2c{height:439.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:41.796000px;}
.w6{width:101.556000px;}
.w10{width:144.036000px;}
.w11{width:144.396000px;}
.w12{width:144.540000px;}
.w13{width:144.576000px;}
.w16{width:169.230000px;}
.w14{width:169.770000px;}
.wb{width:212.250000px;}
.wd{width:220.890000px;}
.wf{width:234.210000px;}
.w3{width:240.690000px;}
.w4{width:240.870000px;}
.w2{width:240.915000px;}
.we{width:266.430000px;}
.w21{width:359.355000px;}
.w1e{width:359.535000px;}
.w1b{width:360.435000px;}
.w18{width:361.155000px;}
.w20{width:361.515000px;}
.w1c{width:362.595000px;}
.w1f{width:363.495000px;}
.w22{width:363.675000px;}
.w9{width:367.815000px;}
.w8{width:367.995000px;}
.wa{width:510.045000px;}
.w17{width:551.265000px;}
.w15{width:551.625000px;}
.w7{width:688.605000px;}
.w1d{width:722.130000px;}
.w19{width:722.310000px;}
.w1a{width:723.030000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x2d{left:25.776000px;}
.x31{left:42.336000px;}
.xf{left:75.060000px;}
.x3c{left:76.530000px;}
.x1{left:84.960000px;}
.x39{left:87.870000px;}
.x6{left:90.030000px;}
.x3a{left:95.430000px;}
.x3d{left:100.830000px;}
.x22{left:102.995987px;}
.x24{left:111.995987px;}
.x10{left:117.576000px;}
.x3{left:120.240000px;}
.x1b{left:137.514000px;}
.x25{left:138.995987px;}
.x38{left:143.130000px;}
.x16{left:165.954000px;}
.x15{left:167.754000px;}
.x34{left:172.110000px;}
.x11{left:178.419000px;}
.x1d{left:182.919000px;}
.x7{left:186.510000px;}
.x14{left:188.139000px;}
.xa{left:191.189987px;}
.x19{left:194.259000px;}
.x17{left:198.759000px;}
.x18{left:202.359000px;}
.xd{left:204.165000px;}
.x66{left:213.915000px;}
.x1a{left:221.079000px;}
.x1c{left:223.239000px;}
.x1e{left:229.530000px;}
.x3f{left:232.815000px;}
.x5e{left:236.775000px;}
.x5{left:241.245000px;}
.x4d{left:244.335000px;}
.x4f{left:245.775000px;}
.x4b{left:250.815000px;}
.x59{left:252.255000px;}
.x23{left:255.630000px;}
.x4a{left:258.555000px;}
.x2b{left:264.135000px;}
.x45{left:266.475000px;}
.x53{left:270.615000px;}
.x5a{left:272.775000px;}
.x48{left:273.855000px;}
.x51{left:276.015000px;}
.x43{left:279.075000px;}
.x57{left:280.515000px;}
.x5f{left:283.755000px;}
.x5c{left:289.335000px;}
.x55{left:290.415000px;}
.x62{left:295.275000px;}
.x60{left:299.235000px;}
.x2{left:325.875000px;}
.x12{left:339.375000px;}
.x2e{left:342.075000px;}
.x27{left:348.015000px;}
.x29{left:352.335000px;}
.x35{left:353.415000px;}
.x3b{left:354.675000px;}
.x37{left:357.555000px;}
.x32{left:359.175000px;}
.x2f{left:361.335000px;}
.x30{left:363.675000px;}
.x1f{left:373.935000px;}
.x9{left:434.774987px;}
.x36{left:444.495000px;}
.x28{left:446.115000px;}
.xb{left:452.955000px;}
.x2c{left:463.425000px;}
.x54{left:482.685000px;}
.x49{left:488.265000px;}
.x5d{left:490.785000px;}
.x50{left:492.765000px;}
.x42{left:496.545000px;}
.x58{left:506.265000px;}
.x41{left:508.605000px;}
.x47{left:512.205000px;}
.x5b{left:514.185000px;}
.x4e{left:516.705000px;}
.x20{left:518.325000px;}
.x46{left:520.125000px;}
.x4c{left:521.925000px;}
.x44{left:525.345000px;}
.x52{left:526.425000px;}
.x64{left:533.265000px;}
.x4{left:566.565000px;}
.x61{left:592.845000px;}
.xc{left:595.005000px;}
.x40{left:600.765000px;}
.x13{left:606.525000px;}
.x33{left:613.230000px;}
.x21{left:662.865000px;}
.x56{left:682.890000px;}
.x63{left:712.410000px;}
.x65{left:717.810000px;}
.x2a{left:719.250000px;}
.x3e{left:730.950000px;}
.x26{left:787.829987px;}
.xe{left:796.289987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-2.645333pt;}
.ls14{letter-spacing:-1.408000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.493333pt;}
.ls7{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.050560pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.146667pt;}
.ls5{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.244267pt;}
.ls6{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.339840pt;}
.ls1f{letter-spacing:3.328000pt;}
.ls19{letter-spacing:20.783360pt;}
.ls11{letter-spacing:29.568000pt;}
.lse{letter-spacing:31.087360pt;}
.lsa{letter-spacing:34.287360pt;}
.ls1a{letter-spacing:35.968000pt;}
.lsf{letter-spacing:38.703360pt;}
.ls15{letter-spacing:39.808000pt;}
.ls10{letter-spacing:48.768000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws0{word-spacing:-33.701120pt;}
.ws1{word-spacing:-31.055787pt;}
.wsb{word-spacing:-24.154880pt;}
.wse{word-spacing:-16.922880pt;}
.wsf{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.592000pt;}
.ws18{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.336000pt;}
.wsd{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws16{word-spacing:-13.952000pt;}
.ws12{word-spacing:-13.888000pt;}
.ws9{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.249387pt;}
.ws17{word-spacing:-11.136000pt;}
.ws14{word-spacing:-10.976000pt;}
.ws15{word-spacing:-10.848000pt;}
.ws13{word-spacing:-10.832000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-14.791680pt;}
._2f{margin-left:-13.175893pt;}
._31{margin-left:-11.808000pt;}
._2b{margin-left:-10.369920pt;}
._2e{margin-left:-9.009067pt;}
._5{margin-left:-7.516160pt;}
._32{margin-left:-5.984000pt;}
._2c{margin-left:-4.444800pt;}
._4{margin-left:-3.178240pt;}
._0{margin-left:-1.593600pt;}
._1{width:1.009280pt;}
._2{width:2.169387pt;}
._28{width:3.328000pt;}
._29{width:4.522667pt;}
._34{width:5.478613pt;}
._1a{width:6.427520pt;}
._37{width:7.390933pt;}
._35{width:8.347307pt;}
._3a{width:9.611520pt;}
._18{width:10.676480pt;}
._42{width:11.946667pt;}
._40{width:13.504000pt;}
._3d{width:15.360000pt;}
._41{width:16.512000pt;}
._39{width:17.433600pt;}
._38{width:18.346667pt;}
._44{width:19.385173pt;}
._43{width:20.336853pt;}
._3b{width:21.568000pt;}
._3c{width:22.478720pt;}
._3e{width:23.491840pt;}
._b{width:24.382080pt;}
._2a{width:25.322667pt;}
._c{width:26.931840pt;}
._d{width:28.419200pt;}
._36{width:31.552000pt;}
._27{width:34.156160pt;}
._23{width:40.158720pt;}
._15{width:44.461440pt;}
._33{width:56.448000pt;}
._1d{width:58.378880pt;}
._1e{width:61.528747pt;}
._3{width:75.330560pt;}
._e{width:77.669120pt;}
._f{width:78.897920pt;}
._30{width:79.914667pt;}
._2d{width:81.216000pt;}
._14{width:88.202240pt;}
._10{width:95.297280pt;}
._22{width:99.742720pt;}
._11{width:104.217600pt;}
._1c{width:108.692480pt;}
._a{width:113.815040pt;}
._20{width:118.935680pt;}
._19{width:122.117120pt;}
._8{width:133.081387pt;}
._17{width:138.190720pt;}
._9{width:139.546240pt;}
._25{width:145.233920pt;}
._26{width:146.673920pt;}
._1b{width:151.037440pt;}
._13{width:154.048000pt;}
._1f{width:157.363200pt;}
._21{width:169.027840pt;}
._16{width:170.780800pt;}
._3f{width:177.856000pt;}
._12{width:300.977920pt;}
._24{width:418.426240pt;}
._7{width:753.802667pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:149.120000pt;}
.y60{bottom:-13.120000pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:1.600000pt;}
.y128{bottom:3.680000pt;}
.y5f{bottom:4.320000pt;}
.y3e{bottom:4.480000pt;}
.y2{bottom:4.800000pt;}
.y36{bottom:7.040000pt;}
.yc6{bottom:8.640000pt;}
.y54{bottom:10.240000pt;}
.y63{bottom:12.154667pt;}
.y38{bottom:12.800000pt;}
.y3c{bottom:13.280000pt;}
.y2d{bottom:13.920000pt;}
.y41{bottom:14.240000pt;}
.y8{bottom:15.200000pt;}
.y5{bottom:15.680000pt;}
.y4d{bottom:16.000000pt;}
.y33{bottom:16.160000pt;}
.y47{bottom:16.186667pt;}
.y12{bottom:16.320000pt;}
.y17{bottom:16.346667pt;}
.y200{bottom:16.474667pt;}
.y15{bottom:16.480000pt;}
.y20{bottom:16.520000pt;}
.y57{bottom:17.120000pt;}
.y67{bottom:17.434667pt;}
.y31{bottom:17.440000pt;}
.y4b{bottom:17.466667pt;}
.y3a{bottom:17.600000pt;}
.y5b{bottom:17.640000pt;}
.y10{bottom:18.080000pt;}
.y51{bottom:18.400000pt;}
.y65{bottom:18.714667pt;}
.y2f{bottom:18.720000pt;}
.y49{bottom:18.746667pt;}
.y44{bottom:18.880000pt;}
.y59{bottom:18.920000pt;}
.y5e{bottom:21.760000pt;}
.y3d{bottom:21.920000pt;}
.y35{bottom:23.200000pt;}
.y6c{bottom:23.840000pt;}
.y62{bottom:27.194667pt;}
.y2c{bottom:27.200000pt;}
.y46{bottom:27.226667pt;}
.y56{bottom:27.240000pt;}
.y191{bottom:27.840000pt;}
.y1f3{bottom:27.994667pt;}
.y12f{bottom:28.000000pt;}
.y1a4{bottom:28.040000pt;}
.yc5{bottom:28.160000pt;}
.y23{bottom:29.440000pt;}
.y16a{bottom:29.920000pt;}
.y13c{bottom:31.200000pt;}
.y14e{bottom:31.360000pt;}
.y7{bottom:31.520000pt;}
.y2e{bottom:34.880000pt;}
.y30{bottom:35.360000pt;}
.y39{bottom:35.520000pt;}
.y64{bottom:36.154667pt;}
.y4e{bottom:36.160000pt;}
.y48{bottom:36.186667pt;}
.y43{bottom:36.320000pt;}
.y58{bottom:36.360000pt;}
.y66{bottom:36.794667pt;}
.y4f{bottom:36.800000pt;}
.y4a{bottom:36.826667pt;}
.y3f{bottom:36.960000pt;}
.y5a{bottom:37.000000pt;}
.y5d{bottom:39.360000pt;}
.y34{bottom:39.520000pt;}
.y13b{bottom:42.720000pt;}
.y14d{bottom:42.880000pt;}
.y6{bottom:47.840000pt;}
.y9{bottom:51.392000pt;}
.y4{bottom:66.592000pt;}
.y25{bottom:70.592000pt;}
.y15a{bottom:93.152000pt;}
.y16c{bottom:96.512000pt;}
.y1f4{bottom:98.592000pt;}
.yeb{bottom:98.752000pt;}
.y1b5{bottom:101.152000pt;}
.y10b{bottom:102.432000pt;}
.y9f{bottom:103.552000pt;}
.y139{bottom:107.392000pt;}
.y201{bottom:109.472000pt;}
.y68{bottom:111.392000pt;}
.y1f2{bottom:113.792000pt;}
.y159{bottom:114.112000pt;}
.y126{bottom:118.752000pt;}
.y1c8{bottom:120.832000pt;}
.y1b4{bottom:122.272000pt;}
.y10a{bottom:123.392000pt;}
.y1a3{bottom:123.872000pt;}
.y9e{bottom:124.512000pt;}
.y1ff{bottom:124.672000pt;}
.y61{bottom:127.232000pt;}
.y16b{bottom:128.192000pt;}
.yea{bottom:130.592000pt;}
.y158{bottom:135.226667pt;}
.y138{bottom:139.066667pt;}
.y125{bottom:139.866667pt;}
.y1b3{bottom:140.186667pt;}
.y1c7{bottom:141.946667pt;}
.y1ad{bottom:143.226667pt;}
.y169{bottom:143.386667pt;}
.y109{bottom:144.506667pt;}
.y1a2{bottom:144.986667pt;}
.y9d{bottom:145.626667pt;}
.ye9{bottom:151.706667pt;}
.y157{bottom:153.146667pt;}
.y124{bottom:160.986667pt;}
.y137{bottom:161.146667pt;}
.y1c6{bottom:162.906667pt;}
.y1ac{bottom:164.186667pt;}
.y108{bottom:165.626667pt;}
.y1a1{bottom:166.106667pt;}
.y9c{bottom:166.746667pt;}
.ye8{bottom:172.666667pt;}
.y5c{bottom:180.186667pt;}
.y156{bottom:181.146667pt;}
.y1db{bottom:181.786667pt;}
.y136{bottom:182.106667pt;}
.y1a0{bottom:184.026667pt;}
.y9b{bottom:187.866667pt;}
.y123{bottom:188.506667pt;}
.ye7{bottom:193.786667pt;}
.y107{bottom:197.306667pt;}
.y135{bottom:204.026667pt;}
.y9a{bottom:208.826667pt;}
.y18b{bottom:209.946667pt;}
.yc2{bottom:210.106667pt;}
.y1da{bottom:213.466667pt;}
.y106{bottom:218.426667pt;}
.y1c5{bottom:221.946667pt;}
.y21{bottom:223.866667pt;}
.y134{bottom:225.146667pt;}
.ye6{bottom:225.466667pt;}
.y99{bottom:229.946667pt;}
.y18a{bottom:231.066667pt;}
.y55{bottom:232.986667pt;}
.y1d9{bottom:234.586667pt;}
.y122{bottom:235.866667pt;}
.y105{bottom:239.546667pt;}
.y1f{bottom:239.706667pt;}
.yc1{bottom:241.786667pt;}
.y133{bottom:246.266667pt;}
.y98{bottom:251.106667pt;}
.y189{bottom:252.226667pt;}
.y1d8{bottom:255.746667pt;}
.y121{bottom:256.866667pt;}
.ye5{bottom:257.346667pt;}
.y1c4{bottom:264.386667pt;}
.y180{bottom:266.146667pt;}
.y132{bottom:267.426667pt;}
.y188{bottom:270.146667pt;}
.y104{bottom:271.266667pt;}
.y1e{bottom:272.066667pt;}
.y198{bottom:275.106667pt;}
.y120{bottom:277.986667pt;}
.yc0{bottom:279.426667pt;}
.y1ea{bottom:284.546667pt;}
.y53{bottom:285.986667pt;}
.y17f{bottom:287.266667pt;}
.y131{bottom:288.386667pt;}
.y97{bottom:288.706667pt;}
.ye4{bottom:289.026667pt;}
.y1d7{bottom:293.666667pt;}
.y1c3{bottom:296.066667pt;}
.y197{bottom:296.226667pt;}
.y14b{bottom:298.946667pt;}
.y103{bottom:302.946667pt;}
.y17e{bottom:305.186667pt;}
.y1e9{bottom:305.666667pt;}
.y1d{bottom:305.986667pt;}
.ye3{bottom:310.146667pt;}
.y1e2{bottom:312.386667pt;}
.y11f{bottom:316.226667pt;}
.y1c2{bottom:317.986667pt;}
.y96{bottom:319.906667pt;}
.y130{bottom:321.026667pt;}
.ybf{bottom:321.346667pt;}
.y102{bottom:324.066667pt;}
.y175{bottom:326.306667pt;}
.y1e8{bottom:326.626667pt;}
.y196{bottom:327.906667pt;}
.y14a{bottom:330.786667pt;}
.ye2{bottom:331.266667pt;}
.y11e{bottom:335.746667pt;}
.y1d6{bottom:335.906667pt;}
.y12e{bottom:336.226667pt;}
.y1c{bottom:338.306667pt;}
.y52{bottom:338.946667pt;}
.y1c1{bottom:339.906667pt;}
.ybe{bottom:342.466667pt;}
.y195{bottom:343.106667pt;}
.y1e1{bottom:344.066667pt;}
.y1e7{bottom:344.546667pt;}
.y101{bottom:345.186667pt;}
.y149{bottom:345.986667pt;}
.y174{bottom:347.426667pt;}
.y95{bottom:347.746667pt;}
.ye1{bottom:352.226667pt;}
.y11d{bottom:355.266667pt;}
.y1d5{bottom:357.826667pt;}
.y1c0{bottom:361.826667pt;}
.ybd{bottom:363.586667pt;}
.y168{bottom:363.906667pt;}
.y1e0{bottom:365.186667pt;}
.y1b{bottom:372.226667pt;}
.y155{bottom:373.666667pt;}
.y147{bottom:373.986667pt;}
.y19f{bottom:374.466667pt;}
.y11c{bottom:374.786667pt;}
.y94{bottom:375.426667pt;}
.y100{bottom:376.866667pt;}
.y1ab{bottom:378.626667pt;}
.y173{bottom:379.106667pt;}
.y1d4{bottom:379.746667pt;}
.y1df{bottom:383.106667pt;}
.y1bf{bottom:383.746667pt;}
.ybc{bottom:384.546667pt;}
.y1b2{bottom:384.706667pt;}
.y154{bottom:388.866667pt;}
.ye0{bottom:390.146667pt;}
.y50{bottom:391.906667pt;}
.y11b{bottom:394.306667pt;}
.y19e{bottom:395.586667pt;}
.y167{bottom:396.546667pt;}
.yff{bottom:397.986667pt;}
.y1aa{bottom:399.746667pt;}
.y172{bottom:400.226667pt;}
.y1d3{bottom:401.826667pt;}
.y93{bottom:403.266667pt;}
.y1a{bottom:404.546667pt;}
.ybb{bottom:405.666667pt;}
.y166{bottom:411.746667pt;}
.y19d{bottom:416.546667pt;}
.y1a9{bottom:420.866667pt;}
.y1b1{bottom:423.586667pt;}
.y1d2{bottom:423.746667pt;}
.yba{bottom:426.786667pt;}
.y1be{bottom:427.586667pt;}
.y92{bottom:430.946667pt;}
.y11a{bottom:432.546667pt;}
.ydf{bottom:432.706667pt;}
.y19c{bottom:434.466667pt;}
.yfe{bottom:435.906667pt;}
.y19{bottom:436.706667pt;}
.y171{bottom:438.146667pt;}
.y1a8{bottom:438.786667pt;}
.y4c{bottom:444.866667pt;}
.y1d1{bottom:445.666667pt;}
.yb9{bottom:447.906667pt;}
.y1bd{bottom:449.506667pt;}
.y119{bottom:452.066667pt;}
.yde{bottom:453.666667pt;}
.y91{bottom:458.626667pt;}
.y1d0{bottom:467.586667pt;}
.y1f1{bottom:468.386667pt;}
.yb8{bottom:468.866667pt;}
.y18{bottom:469.026667pt;}
.y1bc{bottom:471.426667pt;}
.y118{bottom:471.586667pt;}
.ydd{bottom:475.586667pt;}
.yfd{bottom:478.306667pt;}
.y170{bottom:480.546667pt;}
.y90{bottom:486.466667pt;}
.y1cf{bottom:489.506667pt;}
.yb7{bottom:489.986667pt;}
.y117{bottom:491.106667pt;}
.y1bb{bottom:493.506667pt;}
.y194{bottom:495.586667pt;}
.y45{bottom:497.826667pt;}
.y1fe{bottom:498.146667pt;}
.y16{bottom:501.346667pt;}
.y1f0{bottom:506.173333pt;}
.ydc{bottom:508.253333pt;}
.y187{bottom:508.733333pt;}
.yfc{bottom:510.013333pt;}
.yb6{bottom:511.133333pt;}
.y1ce{bottom:511.453333pt;}
.y16f{bottom:512.253333pt;}
.y8f{bottom:514.173333pt;}
.y193{bottom:516.733333pt;}
.y1fd{bottom:519.293333pt;}
.y1ba{bottom:526.173333pt;}
.y16e{bottom:527.453333pt;}
.ydb{bottom:529.373333pt;}
.y186{bottom:529.853333pt;}
.yfb{bottom:531.133333pt;}
.yb5{bottom:532.253333pt;}
.y1cd{bottom:533.373333pt;}
.y14{bottom:533.533333pt;}
.y192{bottom:537.853333pt;}
.y8e{bottom:542.013333pt;}
.y1b9{bottom:547.293333pt;}
.y1ef{bottom:548.733333pt;}
.y116{bottom:548.893333pt;}
.y42{bottom:550.653333pt;}
.y185{bottom:550.813333pt;}
.y1fc{bottom:550.973333pt;}
.yfa{bottom:552.253333pt;}
.yb4{bottom:553.213333pt;}
.y1cc{bottom:555.293333pt;}
.y190{bottom:555.773333pt;}
.yda{bottom:561.053333pt;}
.y13{bottom:565.853333pt;}
.y115{bottom:568.413333pt;}
.y146{bottom:568.573333pt;}
.y184{bottom:568.733333pt;}
.y8d{bottom:569.693333pt;}
.y17d{bottom:572.093333pt;}
.yf9{bottom:573.373333pt;}
.yb3{bottom:574.333333pt;}
.y1cb{bottom:577.213333pt;}
.yd9{bottom:582.173333pt;}
.y1b8{bottom:585.213333pt;}
.y1ee{bottom:586.653333pt;}
.y114{bottom:587.933333pt;}
.y145{bottom:589.533333pt;}
.y17c{bottom:593.213333pt;}
.yb2{bottom:595.453333pt;}
.y8c{bottom:597.373333pt;}
.y11{bottom:599.773333pt;}
.y40{bottom:603.613333pt;}
.yf8{bottom:605.053333pt;}
.y113{bottom:607.453333pt;}
.y1ca{bottom:609.853333pt;}
.yd8{bottom:613.853333pt;}
.y17b{bottom:614.173333pt;}
.y1de{bottom:615.613333pt;}
.yb1{bottom:616.573333pt;}
.y144{bottom:621.373333pt;}
.y1b7{bottom:621.693333pt;}
.y1c9{bottom:625.053333pt;}
.y8b{bottom:625.213333pt;}
.yf7{bottom:626.173333pt;}
.y1ed{bottom:629.053333pt;}
.y1fb{bottom:630.973333pt;}
.yf{bottom:632.093333pt;}
.y165{bottom:632.733333pt;}
.y1b0{bottom:634.173333pt;}
.yd7{bottom:634.973333pt;}
.y1dd{bottom:636.733333pt;}
.yb0{bottom:637.533333pt;}
.y143{bottom:642.333333pt;}
.y112{bottom:645.693333pt;}
.y17a{bottom:646.013333pt;}
.yf6{bottom:647.293333pt;}
.y8a{bottom:652.893333pt;}
.y164{bottom:653.693333pt;}
.y1af{bottom:655.133333pt;}
.yd6{bottom:656.093333pt;}
.y3b{bottom:656.573333pt;}
.y1dc{bottom:657.693333pt;}
.yaf{bottom:658.653333pt;}
.y142{bottom:663.453333pt;}
.y111{bottom:665.213333pt;}
.y179{bottom:667.133333pt;}
.y78{bottom:669.213333pt;}
.y1a7{bottom:670.013333pt;}
.y1ae{bottom:673.053333pt;}
.y1fa{bottom:673.373333pt;}
.y163{bottom:675.613333pt;}
.yf5{bottom:678.973333pt;}
.yae{bottom:679.773333pt;}
.y89{bottom:680.733333pt;}
.y153{bottom:682.173333pt;}
.ye{bottom:682.493333pt;}
.y141{bottom:684.573333pt;}
.y110{bottom:684.733333pt;}
.y77{bottom:685.053333pt;}
.yd5{bottom:687.773333pt;}
.y178{bottom:688.093333pt;}
.y1f9{bottom:689.533333pt;}
.y1a6{bottom:690.973333pt;}
.y12d{bottom:699.773333pt;}
.yf4{bottom:700.093333pt;}
.yad{bottom:700.733333pt;}
.y152{bottom:703.293333pt;}
.y1ec{bottom:703.933333pt;}
.y10f{bottom:704.253333pt;}
.y76{bottom:704.573333pt;}
.y1e6{bottom:707.133333pt;}
.yd{bottom:707.773333pt;}
.y88{bottom:708.413333pt;}
.yd4{bottom:708.893333pt;}
.y37{bottom:709.533333pt;}
.y1a5{bottom:712.093333pt;}
.y18f{bottom:712.253333pt;}
.y19b{bottom:715.133333pt;}
.y1eb{bottom:719.133333pt;}
.y177{bottom:719.933333pt;}
.yac{bottom:721.853333pt;}
.y140{bottom:722.493333pt;}
.y10e{bottom:723.773333pt;}
.y75{bottom:724.093333pt;}
.y151{bottom:724.253333pt;}
.y1e5{bottom:728.093333pt;}
.yd3{bottom:730.013333pt;}
.yf3{bottom:731.773333pt;}
.y18e{bottom:733.373333pt;}
.y176{bottom:735.133333pt;}
.y87{bottom:736.093333pt;}
.y12c{bottom:737.693333pt;}
.yab{bottom:742.973333pt;}
.y74{bottom:743.613333pt;}
.y162{bottom:746.173333pt;}
.y7e{bottom:747.453333pt;}
.y1e4{bottom:749.213333pt;}
.yc{bottom:753.413333pt;}
.y18d{bottom:754.373333pt;}
.y150{bottom:756.133333pt;}
.y19a{bottom:757.253333pt;}
.yd2{bottom:761.733333pt;}
.y32{bottom:762.533333pt;}
.y73{bottom:763.173333pt;}
.yf2{bottom:763.493333pt;}
.y86{bottom:763.973333pt;}
.yaa{bottom:764.133333pt;}
.y13f{bottom:765.733333pt;}
.y1e3{bottom:767.173333pt;}
.y18c{bottom:772.293333pt;}
.y199{bottom:775.173333pt;}
.y14f{bottom:777.093333pt;}
.y7d{bottom:779.333333pt;}
.y72{bottom:782.693333pt;}
.yd1{bottom:782.853333pt;}
.y183{bottom:783.333333pt;}
.yf1{bottom:784.613333pt;}
.ya9{bottom:785.093333pt;}
.y12b{bottom:786.693333pt;}
.y1b6{bottom:787.173333pt;}
.y161{bottom:788.773333pt;}
.y85{bottom:791.653333pt;}
.y14c{bottom:792.293333pt;}
.yb{bottom:799.013333pt;}
.y7c{bottom:800.293333pt;}
.y71{bottom:802.213333pt;}
.ycb{bottom:802.533333pt;}
.yd0{bottom:803.973333pt;}
.y182{bottom:804.293333pt;}
.ya8{bottom:806.213333pt;}
.y13e{bottom:808.133333pt;}
.y2b{bottom:815.493333pt;}
.yf0{bottom:816.453333pt;}
.yca{bottom:818.373333pt;}
.y84{bottom:819.493333pt;}
.y70{bottom:821.733333pt;}
.y181{bottom:822.213333pt;}
.ycf{bottom:824.933333pt;}
.y160{bottom:826.533333pt;}
.ya7{bottom:827.333333pt;}
.y13d{bottom:829.253333pt;}
.y7b{bottom:832.133333pt;}
.y12a{bottom:833.893333pt;}
.ya{bottom:834.533333pt;}
.y10d{bottom:837.413333pt;}
.yc9{bottom:838.693333pt;}
.y6f{bottom:841.413333pt;}
.y13a{bottom:844.453333pt;}
.y83{bottom:847.173333pt;}
.yef{bottom:848.133333pt;}
.ya6{bottom:848.453333pt;}
.y129{bottom:849.093333pt;}
.y7a{bottom:853.093333pt;}
.yce{bottom:856.773333pt;}
.yc8{bottom:858.853333pt;}
.y6e{bottom:860.933333pt;}
.y15f{bottom:869.093333pt;}
.yee{bottom:869.253333pt;}
.ya5{bottom:869.413333pt;}
.y79{bottom:874.213333pt;}
.y82{bottom:874.853333pt;}
.y127{bottom:877.093333pt;}
.ycd{bottom:877.733333pt;}
.yc7{bottom:879.013333pt;}
.y2a{bottom:884.933333pt;}
.yed{bottom:890.213333pt;}
.ya4{bottom:890.533333pt;}
.yc4{bottom:899.173333pt;}
.y6d{bottom:899.973333pt;}
.y15e{bottom:900.773333pt;}
.y10c{bottom:900.933333pt;}
.y81{bottom:902.693333pt;}
.y203{bottom:905.253333pt;}
.y29{bottom:906.053333pt;}
.ya3{bottom:911.653333pt;}
.ycc{bottom:915.653333pt;}
.y6b{bottom:919.493333pt;}
.yec{bottom:922.053333pt;}
.y15d{bottom:922.693333pt;}
.y28{bottom:927.013333pt;}
.y80{bottom:930.373333pt;}
.y1f8{bottom:931.013333pt;}
.ya2{bottom:932.773333pt;}
.y16d{bottom:934.213333pt;}
.y202{bottom:937.093333pt;}
.yc3{bottom:943.173333pt;}
.y27{bottom:948.133333pt;}
.y1f7{bottom:951.973333pt;}
.ya1{bottom:953.733333pt;}
.y15c{bottom:955.333333pt;}
.y7f{bottom:958.213333pt;}
.y6a{bottom:959.173333pt;}
.y1f6{bottom:974.053333pt;}
.ya0{bottom:974.853333pt;}
.y26{bottom:985.733333pt;}
.y15b{bottom:993.253333pt;}
.y1f5{bottom:995.013333pt;}
.y69{bottom:995.973333pt;}
.y24{bottom:1015.520000pt;}
.y22{bottom:1030.720000pt;}
.y3{bottom:1040.160000pt;}
.y1{bottom:1055.360000pt;}
.h17{height:19.520000pt;}
.h1b{height:19.552000pt;}
.h1a{height:19.680000pt;}
.h2{height:20.000000pt;}
.h21{height:28.000000pt;}
.ha{height:31.520000pt;}
.hc{height:31.552000pt;}
.hb{height:31.680000pt;}
.hd{height:31.712000pt;}
.h9{height:33.280000pt;}
.h22{height:38.625000pt;}
.h18{height:39.040000pt;}
.h1d{height:43.360000pt;}
.he{height:44.640000pt;}
.h19{height:48.343750pt;}
.h6{height:50.578125pt;}
.h10{height:52.160000pt;}
.h16{height:52.192000pt;}
.h15{height:52.320000pt;}
.h14{height:52.352000pt;}
.h13{height:52.834688pt;}
.h12{height:58.563750pt;}
.h11{height:60.288750pt;}
.h4{height:60.640000pt;}
.h7{height:60.937500pt;}
.h3{height:63.656250pt;}
.h25{height:63.843750pt;}
.h5{height:65.531250pt;}
.h1f{height:65.781915pt;}
.h1e{height:77.951250pt;}
.h24{height:92.800000pt;}
.hf{height:101.765625pt;}
.h1c{height:111.263750pt;}
.h20{height:134.106667pt;}
.h34{height:136.000000pt;}
.h33{height:139.840000pt;}
.h8{height:141.984375pt;}
.h3f{height:148.826667pt;}
.h3e{height:164.026667pt;}
.h37{height:173.946667pt;}
.h29{height:176.026667pt;}
.h26{height:177.946667pt;}
.h3a{height:180.026667pt;}
.h2f{height:188.986667pt;}
.h3c{height:194.106667pt;}
.h30{height:198.106667pt;}
.h2b{height:204.026667pt;}
.h2a{height:204.506667pt;}
.h3d{height:206.906667pt;}
.h39{height:214.586667pt;}
.h42{height:215.866667pt;}
.h27{height:218.906667pt;}
.h31{height:222.080000pt;}
.h47{height:224.986667pt;}
.h38{height:228.346667pt;}
.h35{height:236.026667pt;}
.h32{height:238.906667pt;}
.h41{height:240.506667pt;}
.h43{height:244.026667pt;}
.h2e{height:250.426667pt;}
.h36{height:264.026667pt;}
.h2d{height:276.066667pt;}
.h28{height:276.666667pt;}
.h45{height:292.066667pt;}
.h46{height:337.946667pt;}
.h3b{height:338.146667pt;}
.h44{height:345.946667pt;}
.h23{height:347.066667pt;}
.h48{height:356.986667pt;}
.h40{height:386.146667pt;}
.h2c{height:390.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.152000pt;}
.w6{width:90.272000pt;}
.w10{width:128.032000pt;}
.w11{width:128.352000pt;}
.w12{width:128.480000pt;}
.w13{width:128.512000pt;}
.w16{width:150.426667pt;}
.w14{width:150.906667pt;}
.wb{width:188.666667pt;}
.wd{width:196.346667pt;}
.wf{width:208.186667pt;}
.w3{width:213.946667pt;}
.w4{width:214.106667pt;}
.w2{width:214.146667pt;}
.we{width:236.826667pt;}
.w21{width:319.426667pt;}
.w1e{width:319.586667pt;}
.w1b{width:320.386667pt;}
.w18{width:321.026667pt;}
.w20{width:321.346667pt;}
.w1c{width:322.306667pt;}
.w1f{width:323.106667pt;}
.w22{width:323.266667pt;}
.w9{width:326.946667pt;}
.w8{width:327.106667pt;}
.wa{width:453.373333pt;}
.w17{width:490.013333pt;}
.w15{width:490.333333pt;}
.w7{width:612.093333pt;}
.w1d{width:641.893333pt;}
.w19{width:642.053333pt;}
.w1a{width:642.693333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x2d{left:22.912000pt;}
.x31{left:37.632000pt;}
.xf{left:66.720000pt;}
.x3c{left:68.026667pt;}
.x1{left:75.520000pt;}
.x39{left:78.106667pt;}
.x6{left:80.026667pt;}
.x3a{left:84.826667pt;}
.x3d{left:89.626667pt;}
.x22{left:91.551988pt;}
.x24{left:99.551988pt;}
.x10{left:104.512000pt;}
.x3{left:106.880000pt;}
.x1b{left:122.234667pt;}
.x25{left:123.551988pt;}
.x38{left:127.226667pt;}
.x16{left:147.514667pt;}
.x15{left:149.114667pt;}
.x34{left:152.986667pt;}
.x11{left:158.594667pt;}
.x1d{left:162.594667pt;}
.x7{left:165.786667pt;}
.x14{left:167.234667pt;}
.xa{left:169.946655pt;}
.x19{left:172.674667pt;}
.x17{left:176.674667pt;}
.x18{left:179.874667pt;}
.xd{left:181.480000pt;}
.x66{left:190.146667pt;}
.x1a{left:196.514667pt;}
.x1c{left:198.434667pt;}
.x1e{left:204.026667pt;}
.x3f{left:206.946667pt;}
.x5e{left:210.466667pt;}
.x5{left:214.440000pt;}
.x4d{left:217.186667pt;}
.x4f{left:218.466667pt;}
.x4b{left:222.946667pt;}
.x59{left:224.226667pt;}
.x23{left:227.226667pt;}
.x4a{left:229.826667pt;}
.x2b{left:234.786667pt;}
.x45{left:236.866667pt;}
.x53{left:240.546667pt;}
.x5a{left:242.466667pt;}
.x48{left:243.426667pt;}
.x51{left:245.346667pt;}
.x43{left:248.066667pt;}
.x57{left:249.346667pt;}
.x5f{left:252.226667pt;}
.x5c{left:257.186667pt;}
.x55{left:258.146667pt;}
.x62{left:262.466667pt;}
.x60{left:265.986667pt;}
.x2{left:289.666667pt;}
.x12{left:301.666667pt;}
.x2e{left:304.066667pt;}
.x27{left:309.346667pt;}
.x29{left:313.186667pt;}
.x35{left:314.146667pt;}
.x3b{left:315.266667pt;}
.x37{left:317.826667pt;}
.x32{left:319.266667pt;}
.x2f{left:321.186667pt;}
.x30{left:323.266667pt;}
.x1f{left:332.386667pt;}
.x9{left:386.466655pt;}
.x36{left:395.106667pt;}
.x28{left:396.546667pt;}
.xb{left:402.626667pt;}
.x2c{left:411.933333pt;}
.x54{left:429.053333pt;}
.x49{left:434.013333pt;}
.x5d{left:436.253333pt;}
.x50{left:438.013333pt;}
.x42{left:441.373333pt;}
.x58{left:450.013333pt;}
.x41{left:452.093333pt;}
.x47{left:455.293333pt;}
.x5b{left:457.053333pt;}
.x4e{left:459.293333pt;}
.x20{left:460.733333pt;}
.x46{left:462.333333pt;}
.x4c{left:463.933333pt;}
.x44{left:466.973333pt;}
.x52{left:467.933333pt;}
.x64{left:474.013333pt;}
.x4{left:503.613333pt;}
.x61{left:526.973333pt;}
.xc{left:528.893333pt;}
.x40{left:534.013333pt;}
.x13{left:539.133333pt;}
.x33{left:545.093333pt;}
.x21{left:589.213333pt;}
.x56{left:607.013333pt;}
.x63{left:633.253333pt;}
.x65{left:638.053333pt;}
.x2a{left:639.333333pt;}
.x3e{left:649.733333pt;}
.x26{left:700.293322pt;}
.xe{left:707.813322pt;}
}




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