
    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_a3c153153bf62b7af1516bb6.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_6e7a6c19218f8e3b3e8eea5e.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_a4a8517fcce240e5ee17725d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_e705def58379d516d86a22c8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4087ff6aa99d2f8603372348.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls30{letter-spacing:-0.798000px;}
.ls4{letter-spacing:-0.738000px;}
.ls2b{letter-spacing:-0.590400px;}
.ls3a{letter-spacing:-0.306000px;}
.lse{letter-spacing:-0.252000px;}
.ls23{letter-spacing:-0.229800px;}
.ls24{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.193200px;}
.ls1b{letter-spacing:-0.164400px;}
.ls25{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.129600px;}
.ls11{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.115800px;}
.ls10{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.046080px;}
.ls31{letter-spacing:-0.041040px;}
.ls1a{letter-spacing:-0.037440px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.075000px;}
.ls1d{letter-spacing:0.086400px;}
.ls27{letter-spacing:0.089400px;}
.ls6{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.175200px;}
.ls33{letter-spacing:0.178560px;}
.lsc{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.186600px;}
.ls2c{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.283800px;}
.ls22{letter-spacing:0.285120px;}
.ls26{letter-spacing:0.306000px;}
.ls2e{letter-spacing:0.311760px;}
.ls34{letter-spacing:0.313920px;}
.ls39{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.348600px;}
.ls17{letter-spacing:0.371400px;}
.ls1f{letter-spacing:14.705280px;}
.ls1e{letter-spacing:18.305280px;}
.ls21{letter-spacing:19.781280px;}
.ls38{letter-spacing:25.505280px;}
.ls2a{letter-spacing:38.304000px;}
.ls32{letter-spacing:39.185280px;}
.ls37{letter-spacing:40.428000px;}
.ls20{letter-spacing:53.585280px;}
.ls2f{letter-spacing:58.266720px;}
.ls36{letter-spacing:63.468000px;}
.lsf{letter-spacing:66.348000px;}
.ls12{letter-spacing:69.408000px;}
.ls13{letter-spacing:90.264000px;}
.ls15{letter-spacing:111.168000px;}
.ls35{letter-spacing:849.329760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-66.240000px;}
.ws25{word-spacing:-54.000000px;}
.ws0{word-spacing:-19.038240px;}
.ws1b{word-spacing:-18.808440px;}
.ws20{word-spacing:-16.488000px;}
.ws12{word-spacing:-15.341640px;}
.ws1{word-spacing:-15.226440px;}
.ws1e{word-spacing:-15.059640px;}
.ws18{word-spacing:-15.056640px;}
.ws14{word-spacing:-15.045240px;}
.ws19{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.932800px;}
.ws17{word-spacing:-14.924160px;}
.ws16{word-spacing:-14.805840px;}
.ws13{word-spacing:-14.777040px;}
.ws1c{word-spacing:-14.754240px;}
.ws21{word-spacing:-14.379840px;}
.ws22{word-spacing:-14.172240px;}
.ws7{word-spacing:-13.854360px;}
.ws1d{word-spacing:-13.811760px;}
.ws1f{word-spacing:-13.692360px;}
.ws23{word-spacing:-13.680960px;}
.ws11{word-spacing:-13.566360px;}
.ws10{word-spacing:-13.505760px;}
.ws24{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.389960px;}
.wsb{word-spacing:-12.546000px;}
.ws26{word-spacing:-12.528000px;}
.wsd{word-spacing:-12.384000px;}
.wsa{word-spacing:-12.366000px;}
.ws5{word-spacing:-12.222000px;}
.ws2{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.wse{word-spacing:-12.114000px;}
.wsc{word-spacing:-11.952000px;}
.ws27{word-spacing:-11.898000px;}
.ws4{word-spacing:-11.466000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-11.940720px;}
._13{margin-left:-10.797840px;}
._f{margin-left:-8.946240px;}
._e{margin-left:-6.992160px;}
._10{margin-left:-5.784480px;}
._12{margin-left:-4.772160px;}
._22{margin-left:-3.658080px;}
._5{margin-left:-2.484000px;}
._0{margin-left:-1.015200px;}
._1{width:1.026000px;}
._6{width:2.461200px;}
._c{width:3.978000px;}
._7{width:5.076000px;}
._8{width:6.318000px;}
._1c{width:7.730160px;}
._9{width:8.772000px;}
._20{width:10.768800px;}
._1b{width:12.188160px;}
._d{width:13.482000px;}
._25{width:14.905440px;}
._1f{width:16.191360px;}
._1e{width:17.901120px;}
._17{width:18.944640px;}
._18{width:20.092320px;}
._19{width:21.860640px;}
._1a{width:23.569440px;}
._1d{width:24.730320px;}
._21{width:25.800000px;}
._24{width:30.684240px;}
._3{width:768.024960px;}
._2{width:849.329760px;}
._b{width:852.096000px;}
._14{width:1230.929760px;}
._23{width:1572.234240px;}
._a{width:1591.674240px;}
._16{width:1601.711280px;}
._4{width:1605.354240px;}
._15{width:1631.249760px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y71{bottom:3.600000px;}
.y164{bottom:3.960000px;}
.y27{bottom:5.940000px;}
.y30{bottom:6.660000px;}
.y40{bottom:6.690000px;}
.y38{bottom:6.705000px;}
.y35{bottom:6.840000px;}
.y5e{bottom:7.920000px;}
.y7e{bottom:7.950000px;}
.y61{bottom:7.965000px;}
.y58{bottom:8.100000px;}
.y56{bottom:8.280000px;}
.y14c{bottom:8.325000px;}
.y7c{bottom:8.460000px;}
.yd2{bottom:8.820000px;}
.y21{bottom:9.000000px;}
.y145{bottom:9.180000px;}
.y24{bottom:12.420000px;}
.y21f{bottom:12.450000px;}
.y90{bottom:12.600000px;}
.y188{bottom:12.780000px;}
.y113{bottom:12.960000px;}
.y17{bottom:13.500000px;}
.y116{bottom:17.640000px;}
.y15e{bottom:17.820000px;}
.y172{bottom:22.140000px;}
.y163{bottom:22.320000px;}
.y2f{bottom:23.040000px;}
.y37{bottom:23.085000px;}
.y32{bottom:23.220000px;}
.y3f{bottom:23.250000px;}
.y5b{bottom:24.480000px;}
.y5c{bottom:24.660000px;}
.y12f{bottom:26.640000px;}
.y1bb{bottom:26.670000px;}
.y14b{bottom:26.685000px;}
.y115{bottom:26.820000px;}
.y23{bottom:28.980000px;}
.y8f{bottom:29.160000px;}
.y22f{bottom:29.190000px;}
.y167{bottom:31.140000px;}
.y207{bottom:31.320000px;}
.y15d{bottom:36.180000px;}
.y21e{bottom:38.010000px;}
.y171{bottom:40.500000px;}
.y1bc{bottom:40.530000px;}
.y162{bottom:40.680000px;}
.y119{bottom:45.000000px;}
.y1ba{bottom:45.030000px;}
.y14a{bottom:45.045000px;}
.y121{bottom:45.180000px;}
.y1c3{bottom:45.225000px;}
.y22{bottom:45.540000px;}
.y157{bottom:49.500000px;}
.y81{bottom:49.860000px;}
.y217{bottom:50.040000px;}
.y1b5{bottom:50.220000px;}
.y203{bottom:54.000000px;}
.y174{bottom:54.180000px;}
.y15c{bottom:54.360000px;}
.y8e{bottom:54.540000px;}
.y22d{bottom:56.010000px;}
.y2c{bottom:57.060000px;}
.y22b{bottom:58.140000px;}
.y22e{bottom:58.350000px;}
.y170{bottom:58.860000px;}
.y161{bottom:59.040000px;}
.y229{bottom:61.920000px;}
.y18c{bottom:63.180000px;}
.y1b8{bottom:63.210000px;}
.y148{bottom:63.225000px;}
.y118{bottom:63.360000px;}
.y1b9{bottom:63.390000px;}
.y149{bottom:63.405000px;}
.y129{bottom:63.540000px;}
.y135{bottom:63.570000px;}
.y156{bottom:67.860000px;}
.y1b4{bottom:68.580000px;}
.y80{bottom:70.920000px;}
.y8d{bottom:71.100000px;}
.y173{bottom:72.540000px;}
.y15b{bottom:72.750000px;}
.y22a{bottom:74.880000px;}
.y2b{bottom:75.240000px;}
.y205{bottom:76.860000px;}
.y16f{bottom:77.040000px;}
.y1bd{bottom:77.220000px;}
.y160{bottom:77.250000px;}
.y228{bottom:78.525000px;}
.y158{bottom:81.540000px;}
.y147{bottom:81.585000px;}
.y11f{bottom:81.720000px;}
.y134{bottom:81.750000px;}
.y12e{bottom:81.765000px;}
.y166{bottom:86.040000px;}
.y252{bottom:86.070000px;}
.y155{bottom:86.220000px;}
.y1de{bottom:86.250000px;}
.y21d{bottom:88.950000px;}
.y16b{bottom:90.945000px;}
.y15a{bottom:91.110000px;}
.y1b3{bottom:92.340000px;}
.y2a{bottom:93.600000px;}
.y16e{bottom:95.445000px;}
.y15f{bottom:95.610000px;}
.y1c4{bottom:95.625000px;}
.y8c{bottom:96.480000px;}
.y1b1{bottom:97.560000px;}
.y150{bottom:99.900000px;}
.y12d{bottom:99.945000px;}
.y11e{bottom:100.080000px;}
.y133{bottom:100.110000px;}
.y1c2{bottom:100.125000px;}
.y25{bottom:100.980000px;}
.y154{bottom:104.400000px;}
.y1db{bottom:104.580000px;}
.y226{bottom:106.785000px;}
.y227{bottom:107.685000px;}
.y16a{bottom:109.305000px;}
.y1ee{bottom:112.680000px;}
.y8b{bottom:113.085000px;}
.y1c8{bottom:113.760000px;}
.y16d{bottom:113.805000px;}
.y21c{bottom:114.510000px;}
.y231{bottom:115.200000px;}
.y1b2{bottom:115.740000px;}
.y1b0{bottom:115.920000px;}
.y20{bottom:116.640000px;}
.y120{bottom:118.260000px;}
.y12c{bottom:118.305000px;}
.y11d{bottom:118.440000px;}
.y132{bottom:118.470000px;}
.y1c1{bottom:118.485000px;}
.y153{bottom:122.760000px;}
.y1da{bottom:122.940000px;}
.y199{bottom:123.480000px;}
.y54{bottom:127.260000px;}
.y169{bottom:127.665000px;}
.y1b6{bottom:129.600000px;}
.y1d6{bottom:130.500000px;}
.y230{bottom:131.580000px;}
.y16c{bottom:132.165000px;}
.y82{bottom:133.200000px;}
.y8a{bottom:133.965000px;}
.y1af{bottom:134.100000px;}
.y20a{bottom:135.540000px;}
.y14f{bottom:136.620000px;}
.y128{bottom:136.650000px;}
.y11c{bottom:136.665000px;}
.y131{bottom:136.830000px;}
.y21b{bottom:139.890000px;}
.y152{bottom:141.120000px;}
.y143{bottom:141.300000px;}
.y1ed{bottom:142.740000px;}
.y198{bottom:143.640000px;}
.y7f{bottom:146.160000px;}
.y17c{bottom:149.220000px;}
.y1ae{bottom:152.460000px;}
.y12b{bottom:154.845000px;}
.y14e{bottom:154.980000px;}
.y127{bottom:155.010000px;}
.y11b{bottom:155.025000px;}
.y53{bottom:155.520000px;}
.y209{bottom:155.700000px;}
.y151{bottom:159.480000px;}
.y197{bottom:163.800000px;}
.y219{bottom:163.830000px;}
.y142{bottom:164.700000px;}
.y21a{bottom:166.170000px;}
.y136{bottom:170.280000px;}
.y52{bottom:172.080000px;}
.y1ec{bottom:172.620000px;}
.y126{bottom:173.370000px;}
.y208{bottom:175.860000px;}
.y17b{bottom:178.380000px;}
.y130{bottom:186.660000px;}
.y51{bottom:188.460000px;}
.y1d5{bottom:189.360000px;}
.y124{bottom:191.550000px;}
.y125{bottom:191.730000px;}
.y206{bottom:192.240000px;}
.y196{bottom:194.220000px;}
.y1f{bottom:197.460000px;}
.y17a{bottom:198.540000px;}
.y1eb{bottom:202.680000px;}
.y1d4{bottom:209.520000px;}
.y123{bottom:209.910000px;}
.y50{bottom:213.840000px;}
.y179{bottom:218.700000px;}
.y1b7{bottom:220.320000px;}
.y22c{bottom:223.020000px;}
.y1e{bottom:226.620000px;}
.y1d3{bottom:229.680000px;}
.y4f{bottom:230.400000px;}
.y1ea{bottom:232.740000px;}
.y7d{bottom:234.540000px;}
.y178{bottom:238.890000px;}
.y204{bottom:243.210000px;}
.y195{bottom:245.550000px;}
.y1d{bottom:255.810000px;}
.y1d2{bottom:259.230000px;}
.y7b{bottom:259.950000px;}
.y1e9{bottom:262.830000px;}
.y194{bottom:265.710000px;}
.y177{bottom:268.410000px;}
.y4e{bottom:272.370000px;}
.y1c{bottom:284.970000px;}
.y193{bottom:285.870000px;}
.y1e8{bottom:292.890000px;}
.y4d{bottom:297.930000px;}
.y7a{bottom:299.910000px;}
.y111{bottom:300.630000px;}
.y1ad{bottom:303.330000px;}
.y192{bottom:306.030000px;}
.yae{bottom:306.750000px;}
.y1d1{bottom:307.830000px;}
.yce{bottom:309.630000px;}
.y79{bottom:312.870000px;}
.y1b{bottom:314.130000px;}
.y4c{bottom:314.490000px;}
.y176{bottom:318.270000px;}
.y1e7{bottom:322.770000px;}
.y191{bottom:326.190000px;}
.yad{bottom:326.370000px;}
.y1d0{bottom:327.990000px;}
.ycd{bottom:329.790000px;}
.y4b{bottom:330.870000px;}
.y78{bottom:338.250000px;}
.y202{bottom:339.690000px;}
.y1a{bottom:343.290000px;}
.y4a{bottom:347.430000px;}
.y110{bottom:349.950000px;}
.y1e6{bottom:351.930000px;}
.yea{bottom:352.830000px;}
.yac{bottom:353.730000px;}
.y190{bottom:355.710000px;}
.y242{bottom:356.070000px;}
.y1cf{bottom:357.870000px;}
.y19{bottom:358.950000px;}
.y25c{bottom:362.370000px;}
.y77{bottom:363.810000px;}
.y175{bottom:369.570000px;}
.y1e5{bottom:372.090000px;}
.y49{bottom:373.710000px;}
.y25b{bottom:378.930000px;}
.ycc{bottom:379.110000px;}
.yab{bottom:380.910000px;}
.ye9{bottom:381.990000px;}
.y241{bottom:385.230000px;}
.y168{bottom:386.130000px;}
.y1ce{bottom:387.930000px;}
.y18{bottom:388.110000px;}
.y76{bottom:389.190000px;}
.y225{bottom:389.370000px;}
.y1e4{bottom:392.250000px;}
.y12a{bottom:398.010000px;}
.ye8{bottom:398.370000px;}
.y10f{bottom:399.270000px;}
.y48{bottom:402.870000px;}
.y18f{bottom:404.310000px;}
.y75{bottom:405.750000px;}
.yaa{bottom:408.270000px;}
.ycb{bottom:409.350000px;}
.y201{bottom:413.310000px;}
.y240{bottom:414.390000px;}
.y16{bottom:417.270000px;}
.y1cd{bottom:417.990000px;}
.y47{bottom:419.250000px;}
.y10e{bottom:419.430000px;}
.y18e{bottom:420.690000px;}
.y1e3{bottom:421.770000px;}
.ye7{bottom:428.250000px;}
.y25a{bottom:429.870000px;}
.y74{bottom:431.130000px;}
.ya9{bottom:435.450000px;}
.y200{bottom:441.390000px;}
.y23f{bottom:443.550000px;}
.y1cc{bottom:447.150000px;}
.y10d{bottom:448.410000px;}
.y259{bottom:455.250000px;}
.y73{bottom:456.690000px;}
.ye6{bottom:458.130000px;}
.y46{bottom:458.310000px;}
.y15{bottom:459.930000px;}
.yca{bottom:460.830000px;}
.y18d{bottom:467.130000px;}
.y1cb{bottom:467.310000px;}
.y10c{bottom:468.615000px;}
.y1e2{bottom:470.415000px;}
.ya8{bottom:471.855000px;}
.y23e{bottom:472.575000px;}
.y1ac{bottom:475.455000px;}
.y258{bottom:480.855000px;}
.yc9{bottom:481.035000px;}
.y72{bottom:482.295000px;}
.y1e1{bottom:486.795000px;}
.ye5{bottom:488.055000px;}
.y10b{bottom:488.775000px;}
.y14{bottom:488.955000px;}
.y45{bottom:497.235000px;}
.y1ca{bottom:497.595000px;}
.y141{bottom:497.775000px;}
.y1ff{bottom:500.295000px;}
.yc8{bottom:501.195000px;}
.y23d{bottom:501.735000px;}
.y257{bottom:506.235000px;}
.y70{bottom:507.675000px;}
.ya7{bottom:508.215000px;}
.y10a{bottom:508.935000px;}
.y224{bottom:514.335000px;}
.ye4{bottom:517.935000px;}
.y13{bottom:518.115000px;}
.y1fe{bottom:520.455000px;}
.yc7{bottom:521.355000px;}
.y6f{bottom:524.235000px;}
.y109{bottom:529.095000px;}
.y23c{bottom:530.895000px;}
.y256{bottom:531.795000px;}
.y1e0{bottom:533.235000px;}
.y165{bottom:533.415000px;}
.ya6{bottom:535.575000px;}
.y44{bottom:536.115000px;}
.y140{bottom:538.095000px;}
.y1ab{bottom:540.075000px;}
.y1fd{bottom:540.615000px;}
.y223{bottom:542.415000px;}
.y12{bottom:547.275000px;}
.ye3{bottom:547.815000px;}
.y1c9{bottom:549.075000px;}
.y108{bottom:549.255000px;}
.y6e{bottom:549.615000px;}
.yc6{bottom:550.515000px;}
.y255{bottom:557.175000px;}
.y13f{bottom:558.255000px;}
.y23b{bottom:560.055000px;}
.y1fc{bottom:560.595000px;}
.ya5{bottom:562.935000px;}
.y1c7{bottom:565.455000px;}
.y18b{bottom:568.515000px;}
.y107{bottom:569.415000px;}
.y122{bottom:572.475000px;}
.y43{bottom:575.175000px;}
.y11{bottom:576.435000px;}
.ye2{bottom:577.875000px;}
.y13e{bottom:578.415000px;}
.y1df{bottom:579.675000px;}
.yc5{bottom:580.755000px;}
.y254{bottom:582.735000px;}
.y23a{bottom:589.215000px;}
.ya4{bottom:590.115000px;}
.y106{bottom:598.575000px;}
.y6d{bottom:600.555000px;}
.y222{bottom:601.635000px;}
.y10{bottom:605.595000px;}
.y13d{bottom:607.395000px;}
.ye1{bottom:607.755000px;}
.y253{bottom:609.015000px;}
.y42{bottom:614.055000px;}
.ya3{bottom:617.475000px;}
.y239{bottom:618.375000px;}
.y105{bottom:618.735000px;}
.y1dd{bottom:625.935000px;}
.y6c{bottom:626.115000px;}
.y13c{bottom:627.555000px;}
.yc4{bottom:632.235000px;}
.y159{bottom:634.575000px;}
.yf{bottom:635.835000px;}
.y251{bottom:637.095000px;}
.ye0{bottom:637.635000px;}
.y1fb{bottom:638.715000px;}
.y104{bottom:638.895000px;}
.y1aa{bottom:641.415000px;}
.y238{bottom:647.535000px;}
.y13b{bottom:647.715000px;}
.y221{bottom:650.235000px;}
.y6b{bottom:651.495000px;}
.y41{bottom:653.115000px;}
.ya2{bottom:653.835000px;}
.yc3{bottom:661.395000px;}
.y220{bottom:666.615000px;}
.ydf{bottom:667.515000px;}
.y103{bottom:669.135000px;}
.y1a9{bottom:669.495000px;}
.ye{bottom:670.575000px;}
.y6a{bottom:677.055000px;}
.y237{bottom:677.595000px;}
.y13a{bottom:678.135000px;}
.ya1{bottom:681.195000px;}
.yc2{bottom:681.555000px;}
.y1fa{bottom:685.335000px;}
.y3e{bottom:691.995000px;}
.y218{bottom:692.175000px;}
.yd{bottom:696.135000px;}
.yde{bottom:697.425000px;}
.yc1{bottom:701.745000px;}
.y69{bottom:702.465000px;}
.y236{bottom:707.505000px;}
.ya0{bottom:708.405000px;}
.y1f9{bottom:708.765000px;}
.y18a{bottom:716.145000px;}
.y102{bottom:720.645000px;}
.y1c6{bottom:721.725000px;}
.yc0{bottom:721.905000px;}
.ydd{bottom:727.305000px;}
.y68{bottom:728.025000px;}
.y1a8{bottom:728.385000px;}
.y139{bottom:729.465000px;}
.yc{bottom:729.645000px;}
.y3d{bottom:731.085000px;}
.y1dc{bottom:731.805000px;}
.y235{bottom:737.565000px;}
.y101{bottom:740.805000px;}
.ybf{bottom:741.885000px;}
.y9f{bottom:744.765000px;}
.y14d{bottom:745.305000px;}
.y1a7{bottom:748.545000px;}
.y67{bottom:753.585000px;}
.y250{bottom:755.565000px;}
.ydc{bottom:757.185000px;}
.yb{bottom:758.805000px;}
.y100{bottom:760.965000px;}
.y9e{bottom:763.125000px;}
.y234{bottom:767.985000px;}
.y1a6{bottom:768.525000px;}
.y3c{bottom:769.965000px;}
.ybe{bottom:771.045000px;}
.y24f{bottom:771.945000px;}
.y138{bottom:776.085000px;}
.y189{bottom:780.765000px;}
.y9d{bottom:781.305000px;}
.y1c5{bottom:786.345000px;}
.ydb{bottom:787.065000px;}
.ya{bottom:787.965000px;}
.yff{bottom:789.945000px;}
.ybd{bottom:791.205000px;}
.y66{bottom:793.365000px;}
.y1d9{bottom:796.425000px;}
.y24e{bottom:797.505000px;}
.y1a5{bottom:798.045000px;}
.y137{bottom:799.485000px;}
.y9c{bottom:799.665000px;}
.y91{bottom:801.465000px;}
.y11a{bottom:802.005000px;}
.yf5{bottom:802.725000px;}
.y65{bottom:806.325000px;}
.y3b{bottom:809.025000px;}
.yfe{bottom:810.105000px;}
.ybc{bottom:811.365000px;}
.y233{bottom:816.045000px;}
.yda{bottom:816.945000px;}
.y9{bottom:817.125000px;}
.y89{bottom:817.845000px;}
.y1f8{bottom:818.925000px;}
.y24d{bottom:822.885000px;}
.y211{bottom:823.605000px;}
.y187{bottom:826.485000px;}
.y9b{bottom:827.025000px;}
.yfd{bottom:830.265000px;}
.ybb{bottom:831.525000px;}
.y64{bottom:831.705000px;}
.yf4{bottom:831.885000px;}
.y1f7{bottom:839.085000px;}
.y232{bottom:839.445000px;}
.y8{bottom:841.785000px;}
.y1a4{bottom:846.645000px;}
.yd9{bottom:846.825000px;}
.y3a{bottom:847.905000px;}
.y24c{bottom:848.445000px;}
.yba{bottom:851.685000px;}
.yf3{bottom:852.045000px;}
.y210{bottom:854.025000px;}
.y9a{bottom:854.385000px;}
.yfc{bottom:859.425000px;}
.y1a3{bottom:866.805000px;}
.y1f6{bottom:868.245000px;}
.yb9{bottom:871.845000px;}
.yf2{bottom:872.205000px;}
.y63{bottom:873.825000px;}
.y24b{bottom:874.005000px;}
.y20f{bottom:874.185000px;}
.y216{bottom:874.905000px;}
.yd8{bottom:876.705000px;}
.yfb{bottom:879.585000px;}
.y99{bottom:881.565000px;}
.y186{bottom:885.165000px;}
.y39{bottom:886.785000px;}
.y1a2{bottom:886.965000px;}
.y1c0{bottom:887.685000px;}
.yb8{bottom:892.005000px;}
.yf1{bottom:892.365000px;}
.y20e{bottom:894.345000px;}
.y1f5{bottom:897.405000px;}
.y62{bottom:899.205000px;}
.y24a{bottom:899.385000px;}
.y185{bottom:905.325000px;}
.yd7{bottom:906.585000px;}
.y1a1{bottom:907.125000px;}
.y98{bottom:908.925000px;}
.yfa{bottom:909.825000px;}
.yb7{bottom:912.165000px;}
.yf0{bottom:912.525000px;}
.y20d{bottom:914.505000px;}
.y1f4{bottom:917.565000px;}
.y146{bottom:919.905000px;}
.y60{bottom:924.765000px;}
.y249{bottom:924.945000px;}
.y36{bottom:925.845000px;}
.yb6{bottom:932.370000px;}
.y184{bottom:934.890000px;}
.yd6{bottom:936.510000px;}
.y1a0{bottom:936.690000px;}
.y1d8{bottom:939.030000px;}
.yef{bottom:941.550000px;}
.y215{bottom:943.170000px;}
.y20c{bottom:944.970000px;}
.y97{bottom:945.330000px;}
.y1f3{bottom:946.770000px;}
.y5f{bottom:950.190000px;}
.y248{bottom:950.370000px;}
.yb5{bottom:961.350000px;}
.y34{bottom:964.770000px;}
.yd5{bottom:966.390000px;}
.y1f2{bottom:966.930000px;}
.y88{bottom:969.990000px;}
.yee{bottom:971.610000px;}
.y5d{bottom:975.750000px;}
.y247{bottom:975.930000px;}
.y117{bottom:976.650000px;}
.y96{bottom:981.510000px;}
.y183{bottom:983.490000px;}
.y19f{bottom:985.290000px;}
.y7{bottom:987.270000px;}
.y1f1{bottom:996.090000px;}
.yd4{bottom:996.270000px;}
.y5a{bottom:1001.130000px;}
.y246{bottom:1001.310000px;}
.yb4{bottom:1001.670000px;}
.y214{bottom:1002.030000px;}
.y1d7{bottom:1003.650000px;}
.y33{bottom:1003.830000px;}
.yf9{bottom:1010.670000px;}
.y182{bottom:1013.550000px;}
.y19e{bottom:1015.350000px;}
.y1f0{bottom:1016.250000px;}
.y6{bottom:1016.430000px;}
.y87{bottom:1017.330000px;}
.y95{bottom:1017.870000px;}
.yb3{bottom:1021.830000px;}
.y213{bottom:1022.190000px;}
.y1bf{bottom:1025.610000px;}
.yd3{bottom:1026.330000px;}
.y245{bottom:1027.590000px;}
.yf8{bottom:1030.830000px;}
.y181{bottom:1033.710000px;}
.yb2{bottom:1041.990000px;}
.y31{bottom:1042.710000px;}
.y59{bottom:1043.070000px;}
.y86{bottom:1043.430000px;}
.y19d{bottom:1045.410000px;}
.y5{bottom:1045.590000px;}
.y20b{bottom:1045.950000px;}
.yed{bottom:1050.990000px;}
.y212{bottom:1051.710000px;}
.y94{bottom:1054.230000px;}
.y244{bottom:1055.670000px;}
.yd1{bottom:1056.210000px;}
.y114{bottom:1059.630000px;}
.yf7{bottom:1059.990000px;}
.yb1{bottom:1062.150000px;}
.y180{bottom:1063.770000px;}
.y1ef{bottom:1065.570000px;}
.y57{bottom:1068.630000px;}
.y85{bottom:1069.710000px;}
.yec{bottom:1071.150000px;}
.y19c{bottom:1074.390000px;}
.y4{bottom:1074.750000px;}
.y144{bottom:1076.190000px;}
.yf6{bottom:1080.150000px;}
.y2e{bottom:1081.770000px;}
.yb0{bottom:1082.310000px;}
.y17f{bottom:1083.930000px;}
.yd0{bottom:1086.090000px;}
.y93{bottom:1090.410000px;}
.y55{bottom:1094.190000px;}
.y19b{bottom:1094.550000px;}
.y84{bottom:1095.990000px;}
.yeb{bottom:1100.310000px;}
.y3{bottom:1103.910000px;}
.y112{bottom:1105.170000px;}
.yaf{bottom:1112.550000px;}
.y17e{bottom:1113.810000px;}
.y19a{bottom:1114.710000px;}
.y83{bottom:1123.170000px;}
.y1be{bottom:1126.950000px;}
.y92{bottom:1130.370000px;}
.ycf{bottom:1130.550000px;}
.y2{bottom:1133.070000px;}
.y243{bottom:1133.430000px;}
.y17d{bottom:1133.970000px;}
.y2d{bottom:1134.870000px;}
.y29{bottom:1154.490000px;}
.y1{bottom:1162.260000px;}
.y28{bottom:1172.880000px;}
.y26{bottom:1187.280000px;}
.h15{height:16.560000px;}
.h8{height:22.500000px;}
.h36{height:22.860000px;}
.h12{height:25.380000px;}
.h13{height:25.416000px;}
.h10{height:25.560000px;}
.h16{height:25.596000px;}
.he{height:27.180000px;}
.h17{height:27.360000px;}
.h1c{height:28.980000px;}
.h4{height:29.160000px;}
.h1d{height:29.196000px;}
.ha{height:38.880000px;}
.hc{height:38.916000px;}
.hb{height:39.060000px;}
.hd{height:39.096000px;}
.h11{height:41.940000px;}
.h14{height:42.120000px;}
.h2b{height:45.180000px;}
.h1e{height:45.360000px;}
.h31{height:45.396000px;}
.h1f{height:45.540000px;}
.h2c{height:45.720000px;}
.h19{height:46.440000px;}
.h3e{height:50.256000px;}
.h6{height:53.709961px;}
.h44{height:55.291992px;}
.h7{height:59.439023px;}
.hf{height:61.189805px;}
.h2d{height:63.900000px;}
.h2e{height:63.936000px;}
.h2{height:65.884219px;}
.h5{height:67.500000px;}
.h3f{height:67.536000px;}
.h9{height:67.824844px;}
.h1b{height:71.613281px;}
.h3c{height:72.900000px;}
.h2a{height:73.722656px;}
.h43{height:74.916000px;}
.h2f{height:82.080000px;}
.h34{height:82.116000px;}
.h20{height:82.260000px;}
.h3{height:86.255508px;}
.h18{height:88.380000px;}
.h42{height:91.440000px;}
.h3d{height:95.760000px;}
.h35{height:95.940000px;}
.h28{height:100.440000px;}
.h30{height:100.476000px;}
.h32{height:100.620000px;}
.h45{height:104.976000px;}
.h3b{height:105.156000px;}
.h27{height:110.016000px;}
.h39{height:118.800000px;}
.h41{height:124.236000px;}
.h37{height:137.196000px;}
.h3a{height:141.696000px;}
.h29{height:146.376000px;}
.h1a{height:151.410000px;}
.h25{height:155.370000px;}
.h38{height:155.550000px;}
.h33{height:171.390000px;}
.h26{height:173.700000px;}
.h23{height:173.730000px;}
.h21{height:173.910000px;}
.h40{height:182.730000px;}
.h24{height:210.450000px;}
.h22{height:228.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w33{width:50.400000px;}
.wf{width:74.196000px;}
.w38{width:89.856000px;}
.w39{width:90.000000px;}
.w3a{width:90.036000px;}
.w2a{width:92.556000px;}
.w25{width:93.456000px;}
.w29{width:94.680000px;}
.w9{width:95.796000px;}
.w2c{width:95.940000px;}
.w2b{width:96.300000px;}
.w27{width:96.660000px;}
.w26{width:97.056000px;}
.w21{width:101.736000px;}
.w10{width:105.660000px;}
.w5{width:106.416000px;}
.w3{width:116.676000px;}
.w1b{width:116.820000px;}
.w18{width:117.036000px;}
.w1d{width:127.656000px;}
.w34{width:130.356000px;}
.w3d{width:135.180000px;}
.w3c{width:135.216000px;}
.w3e{width:135.396000px;}
.wd{width:138.276000px;}
.w15{width:147.996000px;}
.w1a{width:148.716000px;}
.w13{width:149.076000px;}
.w20{width:170.130000px;}
.w23{width:180.750000px;}
.w30{width:180.930000px;}
.w2e{width:185.430000px;}
.w19{width:191.370000px;}
.w1f{width:201.990000px;}
.w12{width:212.250000px;}
.w1e{width:223.410000px;}
.wb{width:265.710000px;}
.w4{width:287.130000px;}
.w7{width:297.795000px;}
.w11{width:328.755000px;}
.w2d{width:339.375000px;}
.w28{width:340.275000px;}
.wa{width:361.695000px;}
.w8{width:424.515000px;}
.w2f{width:436.035000px;}
.w22{width:440.715000px;}
.w6{width:467.895000px;}
.w37{width:478.335000px;}
.w35{width:489.135000px;}
.w31{width:542.265000px;}
.w3b{width:542.445000px;}
.w16{width:572.865000px;}
.w14{width:573.945000px;}
.we{width:584.925000px;}
.w36{width:659.265000px;}
.w32{width:669.885000px;}
.w1c{width:722.310000px;}
.w24{width:722.670000px;}
.w17{width:723.030000px;}
.wc{width:723.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x22{left:15.660000px;}
.x1e{left:18.000000px;}
.x11{left:24.660000px;}
.x1c{left:29.376000px;}
.x14{left:34.785000px;}
.x1b{left:38.556000px;}
.x21{left:41.760000px;}
.x1f{left:76.185000px;}
.x1{left:84.959987px;}
.x27{left:87.119987px;}
.x34{left:89.100000px;}
.x9{left:93.825000px;}
.x15{left:101.555987px;}
.x18{left:111.995987px;}
.x35{left:116.856000px;}
.x16{left:117.935987px;}
.x19{left:138.995987px;}
.xd{left:144.210000px;}
.x12{left:159.870000px;}
.x32{left:162.030000px;}
.x1a{left:165.989987px;}
.x38{left:175.350000px;}
.x2c{left:178.410000px;}
.xe{left:180.750000px;}
.x37{left:183.089987px;}
.x2a{left:186.690000px;}
.xb{left:190.290000px;}
.x8{left:191.370000px;}
.x1d{left:201.990000px;}
.x4{left:212.609987px;}
.x10{left:223.230000px;}
.x17{left:234.030000px;}
.x5{left:265.709987px;}
.x2d{left:275.475000px;}
.x31{left:283.574987px;}
.x33{left:292.395000px;}
.xa{left:297.795000px;}
.x3c{left:310.935000px;}
.x7{left:329.295000px;}
.x25{left:341.714987px;}
.x39{left:356.115000px;}
.x2e{left:372.135000px;}
.xc{left:382.755000px;}
.x20{left:393.375000px;}
.x28{left:436.035000px;}
.x3{left:446.474987px;}
.x3a{left:536.865000px;}
.xf{left:542.445000px;}
.x3d{left:582.045000px;}
.x13{left:595.905000px;}
.x2b{left:627.405000px;}
.x29{left:638.025000px;}
.x23{left:691.170000px;}
.x26{left:704.129987px;}
.x2f{left:712.950000px;}
.x3b{left:717.810000px;}
.x36{left:722.129987px;}
.x2{left:745.709987px;}
.x24{left:752.549987px;}
.x30{left:758.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.709333pt;}
.ls4{letter-spacing:-0.656000pt;}
.ls2b{letter-spacing:-0.524800pt;}
.ls3a{letter-spacing:-0.272000pt;}
.lse{letter-spacing:-0.224000pt;}
.ls23{letter-spacing:-0.204267pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.171733pt;}
.ls1b{letter-spacing:-0.146133pt;}
.ls25{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.115200pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.102933pt;}
.ls10{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.040960pt;}
.ls31{letter-spacing:-0.036480pt;}
.ls1a{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.066667pt;}
.ls1d{letter-spacing:0.076800pt;}
.ls27{letter-spacing:0.079467pt;}
.ls6{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.155733pt;}
.ls33{letter-spacing:0.158720pt;}
.lsc{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.165867pt;}
.ls2c{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.252267pt;}
.ls22{letter-spacing:0.253440pt;}
.ls26{letter-spacing:0.272000pt;}
.ls2e{letter-spacing:0.277120pt;}
.ls34{letter-spacing:0.279040pt;}
.ls39{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.309867pt;}
.ls17{letter-spacing:0.330133pt;}
.ls1f{letter-spacing:13.071360pt;}
.ls1e{letter-spacing:16.271360pt;}
.ls21{letter-spacing:17.583360pt;}
.ls38{letter-spacing:22.671360pt;}
.ls2a{letter-spacing:34.048000pt;}
.ls32{letter-spacing:34.831360pt;}
.ls37{letter-spacing:35.936000pt;}
.ls20{letter-spacing:47.631360pt;}
.ls2f{letter-spacing:51.792640pt;}
.ls36{letter-spacing:56.416000pt;}
.lsf{letter-spacing:58.976000pt;}
.ls12{letter-spacing:61.696000pt;}
.ls13{letter-spacing:80.234667pt;}
.ls15{letter-spacing:98.816000pt;}
.ls35{letter-spacing:754.959787pt;}
.ws1a{word-spacing:-58.880000pt;}
.ws25{word-spacing:-48.000000pt;}
.ws0{word-spacing:-16.922880pt;}
.ws1b{word-spacing:-16.718613pt;}
.ws20{word-spacing:-14.656000pt;}
.ws12{word-spacing:-13.637013pt;}
.ws1{word-spacing:-13.534613pt;}
.ws1e{word-spacing:-13.386347pt;}
.ws18{word-spacing:-13.383680pt;}
.ws14{word-spacing:-13.373547pt;}
.ws19{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.273600pt;}
.ws17{word-spacing:-13.265920pt;}
.ws16{word-spacing:-13.160747pt;}
.ws13{word-spacing:-13.135147pt;}
.ws1c{word-spacing:-13.114880pt;}
.ws21{word-spacing:-12.782080pt;}
.ws22{word-spacing:-12.597547pt;}
.ws7{word-spacing:-12.314987pt;}
.ws1d{word-spacing:-12.277120pt;}
.ws1f{word-spacing:-12.170987pt;}
.ws23{word-spacing:-12.160853pt;}
.ws11{word-spacing:-12.058987pt;}
.ws10{word-spacing:-12.005120pt;}
.ws24{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.152000pt;}
.ws26{word-spacing:-11.136000pt;}
.wsd{word-spacing:-11.008000pt;}
.wsa{word-spacing:-10.992000pt;}
.ws5{word-spacing:-10.864000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.wse{word-spacing:-10.768000pt;}
.wsc{word-spacing:-10.624000pt;}
.ws27{word-spacing:-10.576000pt;}
.ws4{word-spacing:-10.192000pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-10.613973pt;}
._13{margin-left:-9.598080pt;}
._f{margin-left:-7.952213pt;}
._e{margin-left:-6.215253pt;}
._10{margin-left:-5.141760pt;}
._12{margin-left:-4.241920pt;}
._22{margin-left:-3.251627pt;}
._5{margin-left:-2.208000pt;}
._0{margin-left:-0.902400pt;}
._1{width:0.912000pt;}
._6{width:2.187733pt;}
._c{width:3.536000pt;}
._7{width:4.512000pt;}
._8{width:5.616000pt;}
._1c{width:6.871253pt;}
._9{width:7.797333pt;}
._20{width:9.572267pt;}
._1b{width:10.833920pt;}
._d{width:11.984000pt;}
._25{width:13.249280pt;}
._1f{width:14.392320pt;}
._1e{width:15.912107pt;}
._17{width:16.839680pt;}
._18{width:17.859840pt;}
._19{width:19.431680pt;}
._1a{width:20.950613pt;}
._1d{width:21.982507pt;}
._21{width:22.933333pt;}
._24{width:27.274880pt;}
._3{width:682.688853pt;}
._2{width:754.959787pt;}
._b{width:757.418667pt;}
._14{width:1094.159787pt;}
._23{width:1397.541547pt;}
._a{width:1414.821547pt;}
._16{width:1423.743360pt;}
._4{width:1426.981547pt;}
._15{width:1449.999787pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:3.200000pt;}
.y164{bottom:3.520000pt;}
.y27{bottom:5.280000pt;}
.y30{bottom:5.920000pt;}
.y40{bottom:5.946667pt;}
.y38{bottom:5.960000pt;}
.y35{bottom:6.080000pt;}
.y5e{bottom:7.040000pt;}
.y7e{bottom:7.066667pt;}
.y61{bottom:7.080000pt;}
.y58{bottom:7.200000pt;}
.y56{bottom:7.360000pt;}
.y14c{bottom:7.400000pt;}
.y7c{bottom:7.520000pt;}
.yd2{bottom:7.840000pt;}
.y21{bottom:8.000000pt;}
.y145{bottom:8.160000pt;}
.y24{bottom:11.040000pt;}
.y21f{bottom:11.066667pt;}
.y90{bottom:11.200000pt;}
.y188{bottom:11.360000pt;}
.y113{bottom:11.520000pt;}
.y17{bottom:12.000000pt;}
.y116{bottom:15.680000pt;}
.y15e{bottom:15.840000pt;}
.y172{bottom:19.680000pt;}
.y163{bottom:19.840000pt;}
.y2f{bottom:20.480000pt;}
.y37{bottom:20.520000pt;}
.y32{bottom:20.640000pt;}
.y3f{bottom:20.666667pt;}
.y5b{bottom:21.760000pt;}
.y5c{bottom:21.920000pt;}
.y12f{bottom:23.680000pt;}
.y1bb{bottom:23.706667pt;}
.y14b{bottom:23.720000pt;}
.y115{bottom:23.840000pt;}
.y23{bottom:25.760000pt;}
.y8f{bottom:25.920000pt;}
.y22f{bottom:25.946667pt;}
.y167{bottom:27.680000pt;}
.y207{bottom:27.840000pt;}
.y15d{bottom:32.160000pt;}
.y21e{bottom:33.786667pt;}
.y171{bottom:36.000000pt;}
.y1bc{bottom:36.026667pt;}
.y162{bottom:36.160000pt;}
.y119{bottom:40.000000pt;}
.y1ba{bottom:40.026667pt;}
.y14a{bottom:40.040000pt;}
.y121{bottom:40.160000pt;}
.y1c3{bottom:40.200000pt;}
.y22{bottom:40.480000pt;}
.y157{bottom:44.000000pt;}
.y81{bottom:44.320000pt;}
.y217{bottom:44.480000pt;}
.y1b5{bottom:44.640000pt;}
.y203{bottom:48.000000pt;}
.y174{bottom:48.160000pt;}
.y15c{bottom:48.320000pt;}
.y8e{bottom:48.480000pt;}
.y22d{bottom:49.786667pt;}
.y2c{bottom:50.720000pt;}
.y22b{bottom:51.680000pt;}
.y22e{bottom:51.866667pt;}
.y170{bottom:52.320000pt;}
.y161{bottom:52.480000pt;}
.y229{bottom:55.040000pt;}
.y18c{bottom:56.160000pt;}
.y1b8{bottom:56.186667pt;}
.y148{bottom:56.200000pt;}
.y118{bottom:56.320000pt;}
.y1b9{bottom:56.346667pt;}
.y149{bottom:56.360000pt;}
.y129{bottom:56.480000pt;}
.y135{bottom:56.506667pt;}
.y156{bottom:60.320000pt;}
.y1b4{bottom:60.960000pt;}
.y80{bottom:63.040000pt;}
.y8d{bottom:63.200000pt;}
.y173{bottom:64.480000pt;}
.y15b{bottom:64.666667pt;}
.y22a{bottom:66.560000pt;}
.y2b{bottom:66.880000pt;}
.y205{bottom:68.320000pt;}
.y16f{bottom:68.480000pt;}
.y1bd{bottom:68.640000pt;}
.y160{bottom:68.666667pt;}
.y228{bottom:69.800000pt;}
.y158{bottom:72.480000pt;}
.y147{bottom:72.520000pt;}
.y11f{bottom:72.640000pt;}
.y134{bottom:72.666667pt;}
.y12e{bottom:72.680000pt;}
.y166{bottom:76.480000pt;}
.y252{bottom:76.506667pt;}
.y155{bottom:76.640000pt;}
.y1de{bottom:76.666667pt;}
.y21d{bottom:79.066667pt;}
.y16b{bottom:80.840000pt;}
.y15a{bottom:80.986667pt;}
.y1b3{bottom:82.080000pt;}
.y2a{bottom:83.200000pt;}
.y16e{bottom:84.840000pt;}
.y15f{bottom:84.986667pt;}
.y1c4{bottom:85.000000pt;}
.y8c{bottom:85.760000pt;}
.y1b1{bottom:86.720000pt;}
.y150{bottom:88.800000pt;}
.y12d{bottom:88.840000pt;}
.y11e{bottom:88.960000pt;}
.y133{bottom:88.986667pt;}
.y1c2{bottom:89.000000pt;}
.y25{bottom:89.760000pt;}
.y154{bottom:92.800000pt;}
.y1db{bottom:92.960000pt;}
.y226{bottom:94.920000pt;}
.y227{bottom:95.720000pt;}
.y16a{bottom:97.160000pt;}
.y1ee{bottom:100.160000pt;}
.y8b{bottom:100.520000pt;}
.y1c8{bottom:101.120000pt;}
.y16d{bottom:101.160000pt;}
.y21c{bottom:101.786667pt;}
.y231{bottom:102.400000pt;}
.y1b2{bottom:102.880000pt;}
.y1b0{bottom:103.040000pt;}
.y20{bottom:103.680000pt;}
.y120{bottom:105.120000pt;}
.y12c{bottom:105.160000pt;}
.y11d{bottom:105.280000pt;}
.y132{bottom:105.306667pt;}
.y1c1{bottom:105.320000pt;}
.y153{bottom:109.120000pt;}
.y1da{bottom:109.280000pt;}
.y199{bottom:109.760000pt;}
.y54{bottom:113.120000pt;}
.y169{bottom:113.480000pt;}
.y1b6{bottom:115.200000pt;}
.y1d6{bottom:116.000000pt;}
.y230{bottom:116.960000pt;}
.y16c{bottom:117.480000pt;}
.y82{bottom:118.400000pt;}
.y8a{bottom:119.080000pt;}
.y1af{bottom:119.200000pt;}
.y20a{bottom:120.480000pt;}
.y14f{bottom:121.440000pt;}
.y128{bottom:121.466667pt;}
.y11c{bottom:121.480000pt;}
.y131{bottom:121.626667pt;}
.y21b{bottom:124.346667pt;}
.y152{bottom:125.440000pt;}
.y143{bottom:125.600000pt;}
.y1ed{bottom:126.880000pt;}
.y198{bottom:127.680000pt;}
.y7f{bottom:129.920000pt;}
.y17c{bottom:132.640000pt;}
.y1ae{bottom:135.520000pt;}
.y12b{bottom:137.640000pt;}
.y14e{bottom:137.760000pt;}
.y127{bottom:137.786667pt;}
.y11b{bottom:137.800000pt;}
.y53{bottom:138.240000pt;}
.y209{bottom:138.400000pt;}
.y151{bottom:141.760000pt;}
.y197{bottom:145.600000pt;}
.y219{bottom:145.626667pt;}
.y142{bottom:146.400000pt;}
.y21a{bottom:147.706667pt;}
.y136{bottom:151.360000pt;}
.y52{bottom:152.960000pt;}
.y1ec{bottom:153.440000pt;}
.y126{bottom:154.106667pt;}
.y208{bottom:156.320000pt;}
.y17b{bottom:158.560000pt;}
.y130{bottom:165.920000pt;}
.y51{bottom:167.520000pt;}
.y1d5{bottom:168.320000pt;}
.y124{bottom:170.266667pt;}
.y125{bottom:170.426667pt;}
.y206{bottom:170.880000pt;}
.y196{bottom:172.640000pt;}
.y1f{bottom:175.520000pt;}
.y17a{bottom:176.480000pt;}
.y1eb{bottom:180.160000pt;}
.y1d4{bottom:186.240000pt;}
.y123{bottom:186.586667pt;}
.y50{bottom:190.080000pt;}
.y179{bottom:194.400000pt;}
.y1b7{bottom:195.840000pt;}
.y22c{bottom:198.240000pt;}
.y1e{bottom:201.440000pt;}
.y1d3{bottom:204.160000pt;}
.y4f{bottom:204.800000pt;}
.y1ea{bottom:206.880000pt;}
.y7d{bottom:208.480000pt;}
.y178{bottom:212.346667pt;}
.y204{bottom:216.186667pt;}
.y195{bottom:218.266667pt;}
.y1d{bottom:227.386667pt;}
.y1d2{bottom:230.426667pt;}
.y7b{bottom:231.066667pt;}
.y1e9{bottom:233.626667pt;}
.y194{bottom:236.186667pt;}
.y177{bottom:238.586667pt;}
.y4e{bottom:242.106667pt;}
.y1c{bottom:253.306667pt;}
.y193{bottom:254.106667pt;}
.y1e8{bottom:260.346667pt;}
.y4d{bottom:264.826667pt;}
.y7a{bottom:266.586667pt;}
.y111{bottom:267.226667pt;}
.y1ad{bottom:269.626667pt;}
.y192{bottom:272.026667pt;}
.yae{bottom:272.666667pt;}
.y1d1{bottom:273.626667pt;}
.yce{bottom:275.226667pt;}
.y79{bottom:278.106667pt;}
.y1b{bottom:279.226667pt;}
.y4c{bottom:279.546667pt;}
.y176{bottom:282.906667pt;}
.y1e7{bottom:286.906667pt;}
.y191{bottom:289.946667pt;}
.yad{bottom:290.106667pt;}
.y1d0{bottom:291.546667pt;}
.ycd{bottom:293.146667pt;}
.y4b{bottom:294.106667pt;}
.y78{bottom:300.666667pt;}
.y202{bottom:301.946667pt;}
.y1a{bottom:305.146667pt;}
.y4a{bottom:308.826667pt;}
.y110{bottom:311.066667pt;}
.y1e6{bottom:312.826667pt;}
.yea{bottom:313.626667pt;}
.yac{bottom:314.426667pt;}
.y190{bottom:316.186667pt;}
.y242{bottom:316.506667pt;}
.y1cf{bottom:318.106667pt;}
.y19{bottom:319.066667pt;}
.y25c{bottom:322.106667pt;}
.y77{bottom:323.386667pt;}
.y175{bottom:328.506667pt;}
.y1e5{bottom:330.746667pt;}
.y49{bottom:332.186667pt;}
.y25b{bottom:336.826667pt;}
.ycc{bottom:336.986667pt;}
.yab{bottom:338.586667pt;}
.ye9{bottom:339.546667pt;}
.y241{bottom:342.426667pt;}
.y168{bottom:343.226667pt;}
.y1ce{bottom:344.826667pt;}
.y18{bottom:344.986667pt;}
.y76{bottom:345.946667pt;}
.y225{bottom:346.106667pt;}
.y1e4{bottom:348.666667pt;}
.y12a{bottom:353.786667pt;}
.ye8{bottom:354.106667pt;}
.y10f{bottom:354.906667pt;}
.y48{bottom:358.106667pt;}
.y18f{bottom:359.386667pt;}
.y75{bottom:360.666667pt;}
.yaa{bottom:362.906667pt;}
.ycb{bottom:363.866667pt;}
.y201{bottom:367.386667pt;}
.y240{bottom:368.346667pt;}
.y16{bottom:370.906667pt;}
.y1cd{bottom:371.546667pt;}
.y47{bottom:372.666667pt;}
.y10e{bottom:372.826667pt;}
.y18e{bottom:373.946667pt;}
.y1e3{bottom:374.906667pt;}
.ye7{bottom:380.666667pt;}
.y25a{bottom:382.106667pt;}
.y74{bottom:383.226667pt;}
.ya9{bottom:387.066667pt;}
.y200{bottom:392.346667pt;}
.y23f{bottom:394.266667pt;}
.y1cc{bottom:397.466667pt;}
.y10d{bottom:398.586667pt;}
.y259{bottom:404.666667pt;}
.y73{bottom:405.946667pt;}
.ye6{bottom:407.226667pt;}
.y46{bottom:407.386667pt;}
.y15{bottom:408.826667pt;}
.yca{bottom:409.626667pt;}
.y18d{bottom:415.226667pt;}
.y1cb{bottom:415.386667pt;}
.y10c{bottom:416.546667pt;}
.y1e2{bottom:418.146667pt;}
.ya8{bottom:419.426667pt;}
.y23e{bottom:420.066667pt;}
.y1ac{bottom:422.626667pt;}
.y258{bottom:427.426667pt;}
.yc9{bottom:427.586667pt;}
.y72{bottom:428.706667pt;}
.y1e1{bottom:432.706667pt;}
.ye5{bottom:433.826667pt;}
.y10b{bottom:434.466667pt;}
.y14{bottom:434.626667pt;}
.y45{bottom:441.986667pt;}
.y1ca{bottom:442.306667pt;}
.y141{bottom:442.466667pt;}
.y1ff{bottom:444.706667pt;}
.yc8{bottom:445.506667pt;}
.y23d{bottom:445.986667pt;}
.y257{bottom:449.986667pt;}
.y70{bottom:451.266667pt;}
.ya7{bottom:451.746667pt;}
.y10a{bottom:452.386667pt;}
.y224{bottom:457.186667pt;}
.ye4{bottom:460.386667pt;}
.y13{bottom:460.546667pt;}
.y1fe{bottom:462.626667pt;}
.yc7{bottom:463.426667pt;}
.y6f{bottom:465.986667pt;}
.y109{bottom:470.306667pt;}
.y23c{bottom:471.906667pt;}
.y256{bottom:472.706667pt;}
.y1e0{bottom:473.986667pt;}
.y165{bottom:474.146667pt;}
.ya6{bottom:476.066667pt;}
.y44{bottom:476.546667pt;}
.y140{bottom:478.306667pt;}
.y1ab{bottom:480.066667pt;}
.y1fd{bottom:480.546667pt;}
.y223{bottom:482.146667pt;}
.y12{bottom:486.466667pt;}
.ye3{bottom:486.946667pt;}
.y1c9{bottom:488.066667pt;}
.y108{bottom:488.226667pt;}
.y6e{bottom:488.546667pt;}
.yc6{bottom:489.346667pt;}
.y255{bottom:495.266667pt;}
.y13f{bottom:496.226667pt;}
.y23b{bottom:497.826667pt;}
.y1fc{bottom:498.306667pt;}
.ya5{bottom:500.386667pt;}
.y1c7{bottom:502.626667pt;}
.y18b{bottom:505.346667pt;}
.y107{bottom:506.146667pt;}
.y122{bottom:508.866667pt;}
.y43{bottom:511.266667pt;}
.y11{bottom:512.386667pt;}
.ye2{bottom:513.666667pt;}
.y13e{bottom:514.146667pt;}
.y1df{bottom:515.266667pt;}
.yc5{bottom:516.226667pt;}
.y254{bottom:517.986667pt;}
.y23a{bottom:523.746667pt;}
.ya4{bottom:524.546667pt;}
.y106{bottom:532.066667pt;}
.y6d{bottom:533.826667pt;}
.y222{bottom:534.786667pt;}
.y10{bottom:538.306667pt;}
.y13d{bottom:539.906667pt;}
.ye1{bottom:540.226667pt;}
.y253{bottom:541.346667pt;}
.y42{bottom:545.826667pt;}
.ya3{bottom:548.866667pt;}
.y239{bottom:549.666667pt;}
.y105{bottom:549.986667pt;}
.y1dd{bottom:556.386667pt;}
.y6c{bottom:556.546667pt;}
.y13c{bottom:557.826667pt;}
.yc4{bottom:561.986667pt;}
.y159{bottom:564.066667pt;}
.yf{bottom:565.186667pt;}
.y251{bottom:566.306667pt;}
.ye0{bottom:566.786667pt;}
.y1fb{bottom:567.746667pt;}
.y104{bottom:567.906667pt;}
.y1aa{bottom:570.146667pt;}
.y238{bottom:575.586667pt;}
.y13b{bottom:575.746667pt;}
.y221{bottom:577.986667pt;}
.y6b{bottom:579.106667pt;}
.y41{bottom:580.546667pt;}
.ya2{bottom:581.186667pt;}
.yc3{bottom:587.906667pt;}
.y220{bottom:592.546667pt;}
.ydf{bottom:593.346667pt;}
.y103{bottom:594.786667pt;}
.y1a9{bottom:595.106667pt;}
.ye{bottom:596.066667pt;}
.y6a{bottom:601.826667pt;}
.y237{bottom:602.306667pt;}
.y13a{bottom:602.786667pt;}
.ya1{bottom:605.506667pt;}
.yc2{bottom:605.826667pt;}
.y1fa{bottom:609.186667pt;}
.y3e{bottom:615.106667pt;}
.y218{bottom:615.266667pt;}
.yd{bottom:618.786667pt;}
.yde{bottom:619.933333pt;}
.yc1{bottom:623.773333pt;}
.y69{bottom:624.413333pt;}
.y236{bottom:628.893333pt;}
.ya0{bottom:629.693333pt;}
.y1f9{bottom:630.013333pt;}
.y18a{bottom:636.573333pt;}
.y102{bottom:640.573333pt;}
.y1c6{bottom:641.533333pt;}
.yc0{bottom:641.693333pt;}
.ydd{bottom:646.493333pt;}
.y68{bottom:647.133333pt;}
.y1a8{bottom:647.453333pt;}
.y139{bottom:648.413333pt;}
.yc{bottom:648.573333pt;}
.y3d{bottom:649.853333pt;}
.y1dc{bottom:650.493333pt;}
.y235{bottom:655.613333pt;}
.y101{bottom:658.493333pt;}
.ybf{bottom:659.453333pt;}
.y9f{bottom:662.013333pt;}
.y14d{bottom:662.493333pt;}
.y1a7{bottom:665.373333pt;}
.y67{bottom:669.853333pt;}
.y250{bottom:671.613333pt;}
.ydc{bottom:673.053333pt;}
.yb{bottom:674.493333pt;}
.y100{bottom:676.413333pt;}
.y9e{bottom:678.333333pt;}
.y234{bottom:682.653333pt;}
.y1a6{bottom:683.133333pt;}
.y3c{bottom:684.413333pt;}
.ybe{bottom:685.373333pt;}
.y24f{bottom:686.173333pt;}
.y138{bottom:689.853333pt;}
.y189{bottom:694.013333pt;}
.y9d{bottom:694.493333pt;}
.y1c5{bottom:698.973333pt;}
.ydb{bottom:699.613333pt;}
.ya{bottom:700.413333pt;}
.yff{bottom:702.173333pt;}
.ybd{bottom:703.293333pt;}
.y66{bottom:705.213333pt;}
.y1d9{bottom:707.933333pt;}
.y24e{bottom:708.893333pt;}
.y1a5{bottom:709.373333pt;}
.y137{bottom:710.653333pt;}
.y9c{bottom:710.813333pt;}
.y91{bottom:712.413333pt;}
.y11a{bottom:712.893333pt;}
.yf5{bottom:713.533333pt;}
.y65{bottom:716.733333pt;}
.y3b{bottom:719.133333pt;}
.yfe{bottom:720.093333pt;}
.ybc{bottom:721.213333pt;}
.y233{bottom:725.373333pt;}
.yda{bottom:726.173333pt;}
.y9{bottom:726.333333pt;}
.y89{bottom:726.973333pt;}
.y1f8{bottom:727.933333pt;}
.y24d{bottom:731.453333pt;}
.y211{bottom:732.093333pt;}
.y187{bottom:734.653333pt;}
.y9b{bottom:735.133333pt;}
.yfd{bottom:738.013333pt;}
.ybb{bottom:739.133333pt;}
.y64{bottom:739.293333pt;}
.yf4{bottom:739.453333pt;}
.y1f7{bottom:745.853333pt;}
.y232{bottom:746.173333pt;}
.y8{bottom:748.253333pt;}
.y1a4{bottom:752.573333pt;}
.yd9{bottom:752.733333pt;}
.y3a{bottom:753.693333pt;}
.y24c{bottom:754.173333pt;}
.yba{bottom:757.053333pt;}
.yf3{bottom:757.373333pt;}
.y210{bottom:759.133333pt;}
.y9a{bottom:759.453333pt;}
.yfc{bottom:763.933333pt;}
.y1a3{bottom:770.493333pt;}
.y1f6{bottom:771.773333pt;}
.yb9{bottom:774.973333pt;}
.yf2{bottom:775.293333pt;}
.y63{bottom:776.733333pt;}
.y24b{bottom:776.893333pt;}
.y20f{bottom:777.053333pt;}
.y216{bottom:777.693333pt;}
.yd8{bottom:779.293333pt;}
.yfb{bottom:781.853333pt;}
.y99{bottom:783.613333pt;}
.y186{bottom:786.813333pt;}
.y39{bottom:788.253333pt;}
.y1a2{bottom:788.413333pt;}
.y1c0{bottom:789.053333pt;}
.yb8{bottom:792.893333pt;}
.yf1{bottom:793.213333pt;}
.y20e{bottom:794.973333pt;}
.y1f5{bottom:797.693333pt;}
.y62{bottom:799.293333pt;}
.y24a{bottom:799.453333pt;}
.y185{bottom:804.733333pt;}
.yd7{bottom:805.853333pt;}
.y1a1{bottom:806.333333pt;}
.y98{bottom:807.933333pt;}
.yfa{bottom:808.733333pt;}
.yb7{bottom:810.813333pt;}
.yf0{bottom:811.133333pt;}
.y20d{bottom:812.893333pt;}
.y1f4{bottom:815.613333pt;}
.y146{bottom:817.693333pt;}
.y60{bottom:822.013333pt;}
.y249{bottom:822.173333pt;}
.y36{bottom:822.973333pt;}
.yb6{bottom:828.773333pt;}
.y184{bottom:831.013333pt;}
.yd6{bottom:832.453333pt;}
.y1a0{bottom:832.613333pt;}
.y1d8{bottom:834.693333pt;}
.yef{bottom:836.933333pt;}
.y215{bottom:838.373333pt;}
.y20c{bottom:839.973333pt;}
.y97{bottom:840.293333pt;}
.y1f3{bottom:841.573333pt;}
.y5f{bottom:844.613333pt;}
.y248{bottom:844.773333pt;}
.yb5{bottom:854.533333pt;}
.y34{bottom:857.573333pt;}
.yd5{bottom:859.013333pt;}
.y1f2{bottom:859.493333pt;}
.y88{bottom:862.213333pt;}
.yee{bottom:863.653333pt;}
.y5d{bottom:867.333333pt;}
.y247{bottom:867.493333pt;}
.y117{bottom:868.133333pt;}
.y96{bottom:872.453333pt;}
.y183{bottom:874.213333pt;}
.y19f{bottom:875.813333pt;}
.y7{bottom:877.573333pt;}
.y1f1{bottom:885.413333pt;}
.yd4{bottom:885.573333pt;}
.y5a{bottom:889.893333pt;}
.y246{bottom:890.053333pt;}
.yb4{bottom:890.373333pt;}
.y214{bottom:890.693333pt;}
.y1d7{bottom:892.133333pt;}
.y33{bottom:892.293333pt;}
.yf9{bottom:898.373333pt;}
.y182{bottom:900.933333pt;}
.y19e{bottom:902.533333pt;}
.y1f0{bottom:903.333333pt;}
.y6{bottom:903.493333pt;}
.y87{bottom:904.293333pt;}
.y95{bottom:904.773333pt;}
.yb3{bottom:908.293333pt;}
.y213{bottom:908.613333pt;}
.y1bf{bottom:911.653333pt;}
.yd3{bottom:912.293333pt;}
.y245{bottom:913.413333pt;}
.yf8{bottom:916.293333pt;}
.y181{bottom:918.853333pt;}
.yb2{bottom:926.213333pt;}
.y31{bottom:926.853333pt;}
.y59{bottom:927.173333pt;}
.y86{bottom:927.493333pt;}
.y19d{bottom:929.253333pt;}
.y5{bottom:929.413333pt;}
.y20b{bottom:929.733333pt;}
.yed{bottom:934.213333pt;}
.y212{bottom:934.853333pt;}
.y94{bottom:937.093333pt;}
.y244{bottom:938.373333pt;}
.yd1{bottom:938.853333pt;}
.y114{bottom:941.893333pt;}
.yf7{bottom:942.213333pt;}
.yb1{bottom:944.133333pt;}
.y180{bottom:945.573333pt;}
.y1ef{bottom:947.173333pt;}
.y57{bottom:949.893333pt;}
.y85{bottom:950.853333pt;}
.yec{bottom:952.133333pt;}
.y19c{bottom:955.013333pt;}
.y4{bottom:955.333333pt;}
.y144{bottom:956.613333pt;}
.yf6{bottom:960.133333pt;}
.y2e{bottom:961.573333pt;}
.yb0{bottom:962.053333pt;}
.y17f{bottom:963.493333pt;}
.yd0{bottom:965.413333pt;}
.y93{bottom:969.253333pt;}
.y55{bottom:972.613333pt;}
.y19b{bottom:972.933333pt;}
.y84{bottom:974.213333pt;}
.yeb{bottom:978.053333pt;}
.y3{bottom:981.253333pt;}
.y112{bottom:982.373333pt;}
.yaf{bottom:988.933333pt;}
.y17e{bottom:990.053333pt;}
.y19a{bottom:990.853333pt;}
.y83{bottom:998.373333pt;}
.y1be{bottom:1001.733333pt;}
.y92{bottom:1004.773333pt;}
.ycf{bottom:1004.933333pt;}
.y2{bottom:1007.173333pt;}
.y243{bottom:1007.493333pt;}
.y17d{bottom:1007.973333pt;}
.y2d{bottom:1008.773333pt;}
.y29{bottom:1026.213333pt;}
.y1{bottom:1033.120000pt;}
.y28{bottom:1042.560000pt;}
.y26{bottom:1055.360000pt;}
.h15{height:14.720000pt;}
.h8{height:20.000000pt;}
.h36{height:20.320000pt;}
.h12{height:22.560000pt;}
.h13{height:22.592000pt;}
.h10{height:22.720000pt;}
.h16{height:22.752000pt;}
.he{height:24.160000pt;}
.h17{height:24.320000pt;}
.h1c{height:25.760000pt;}
.h4{height:25.920000pt;}
.h1d{height:25.952000pt;}
.ha{height:34.560000pt;}
.hc{height:34.592000pt;}
.hb{height:34.720000pt;}
.hd{height:34.752000pt;}
.h11{height:37.280000pt;}
.h14{height:37.440000pt;}
.h2b{height:40.160000pt;}
.h1e{height:40.320000pt;}
.h31{height:40.352000pt;}
.h1f{height:40.480000pt;}
.h2c{height:40.640000pt;}
.h19{height:41.280000pt;}
.h3e{height:44.672000pt;}
.h6{height:47.742188pt;}
.h44{height:49.148438pt;}
.h7{height:52.834688pt;}
.hf{height:54.390938pt;}
.h2d{height:56.800000pt;}
.h2e{height:56.832000pt;}
.h2{height:58.563750pt;}
.h5{height:60.000000pt;}
.h3f{height:60.032000pt;}
.h9{height:60.288750pt;}
.h1b{height:63.656250pt;}
.h3c{height:64.800000pt;}
.h2a{height:65.531250pt;}
.h43{height:66.592000pt;}
.h2f{height:72.960000pt;}
.h34{height:72.992000pt;}
.h20{height:73.120000pt;}
.h3{height:76.671562pt;}
.h18{height:78.560000pt;}
.h42{height:81.280000pt;}
.h3d{height:85.120000pt;}
.h35{height:85.280000pt;}
.h28{height:89.280000pt;}
.h30{height:89.312000pt;}
.h32{height:89.440000pt;}
.h45{height:93.312000pt;}
.h3b{height:93.472000pt;}
.h27{height:97.792000pt;}
.h39{height:105.600000pt;}
.h41{height:110.432000pt;}
.h37{height:121.952000pt;}
.h3a{height:125.952000pt;}
.h29{height:130.112000pt;}
.h1a{height:134.586667pt;}
.h25{height:138.106667pt;}
.h38{height:138.266667pt;}
.h33{height:152.346667pt;}
.h26{height:154.400000pt;}
.h23{height:154.426667pt;}
.h21{height:154.586667pt;}
.h40{height:162.426667pt;}
.h24{height:187.066667pt;}
.h22{height:203.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w33{width:44.800000pt;}
.wf{width:65.952000pt;}
.w38{width:79.872000pt;}
.w39{width:80.000000pt;}
.w3a{width:80.032000pt;}
.w2a{width:82.272000pt;}
.w25{width:83.072000pt;}
.w29{width:84.160000pt;}
.w9{width:85.152000pt;}
.w2c{width:85.280000pt;}
.w2b{width:85.600000pt;}
.w27{width:85.920000pt;}
.w26{width:86.272000pt;}
.w21{width:90.432000pt;}
.w10{width:93.920000pt;}
.w5{width:94.592000pt;}
.w3{width:103.712000pt;}
.w1b{width:103.840000pt;}
.w18{width:104.032000pt;}
.w1d{width:113.472000pt;}
.w34{width:115.872000pt;}
.w3d{width:120.160000pt;}
.w3c{width:120.192000pt;}
.w3e{width:120.352000pt;}
.wd{width:122.912000pt;}
.w15{width:131.552000pt;}
.w1a{width:132.192000pt;}
.w13{width:132.512000pt;}
.w20{width:151.226667pt;}
.w23{width:160.666667pt;}
.w30{width:160.826667pt;}
.w2e{width:164.826667pt;}
.w19{width:170.106667pt;}
.w1f{width:179.546667pt;}
.w12{width:188.666667pt;}
.w1e{width:198.586667pt;}
.wb{width:236.186667pt;}
.w4{width:255.226667pt;}
.w7{width:264.706667pt;}
.w11{width:292.226667pt;}
.w2d{width:301.666667pt;}
.w28{width:302.466667pt;}
.wa{width:321.506667pt;}
.w8{width:377.346667pt;}
.w2f{width:387.586667pt;}
.w22{width:391.746667pt;}
.w6{width:415.906667pt;}
.w37{width:425.186667pt;}
.w35{width:434.786667pt;}
.w31{width:482.013333pt;}
.w3b{width:482.173333pt;}
.w16{width:509.213333pt;}
.w14{width:510.173333pt;}
.we{width:519.933333pt;}
.w36{width:586.013333pt;}
.w32{width:595.453333pt;}
.w1c{width:642.053333pt;}
.w24{width:642.373333pt;}
.w17{width:642.693333pt;}
.wc{width:642.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x22{left:13.920000pt;}
.x1e{left:16.000000pt;}
.x11{left:21.920000pt;}
.x1c{left:26.112000pt;}
.x14{left:30.920000pt;}
.x1b{left:34.272000pt;}
.x21{left:37.120000pt;}
.x1f{left:67.720000pt;}
.x1{left:75.519988pt;}
.x27{left:77.439988pt;}
.x34{left:79.200000pt;}
.x9{left:83.400000pt;}
.x15{left:90.271988pt;}
.x18{left:99.551988pt;}
.x35{left:103.872000pt;}
.x16{left:104.831988pt;}
.x19{left:123.551988pt;}
.xd{left:128.186667pt;}
.x12{left:142.106667pt;}
.x32{left:144.026667pt;}
.x1a{left:147.546655pt;}
.x38{left:155.866667pt;}
.x2c{left:158.586667pt;}
.xe{left:160.666667pt;}
.x37{left:162.746655pt;}
.x2a{left:165.946667pt;}
.xb{left:169.146667pt;}
.x8{left:170.106667pt;}
.x1d{left:179.546667pt;}
.x4{left:188.986655pt;}
.x10{left:198.426667pt;}
.x17{left:208.026667pt;}
.x5{left:236.186655pt;}
.x2d{left:244.866667pt;}
.x31{left:252.066655pt;}
.x33{left:259.906667pt;}
.xa{left:264.706667pt;}
.x3c{left:276.386667pt;}
.x7{left:292.706667pt;}
.x25{left:303.746655pt;}
.x39{left:316.546667pt;}
.x2e{left:330.786667pt;}
.xc{left:340.226667pt;}
.x20{left:349.666667pt;}
.x28{left:387.586667pt;}
.x3{left:396.866655pt;}
.x3a{left:477.213333pt;}
.xf{left:482.173333pt;}
.x3d{left:517.373333pt;}
.x13{left:529.693333pt;}
.x2b{left:557.693333pt;}
.x29{left:567.133333pt;}
.x23{left:614.373333pt;}
.x26{left:625.893322pt;}
.x2f{left:633.733333pt;}
.x3b{left:638.053333pt;}
.x36{left:641.893322pt;}
.x2{left:662.853322pt;}
.x24{left:668.933322pt;}
.x30{left:673.893322pt;}
}




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