
    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_47ac99bfb3d09b9ddbbe5666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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);}
.v2d{vertical-align:-66.240000px;}
.v25{vertical-align:-64.800000px;}
.ve{vertical-align:-61.920000px;}
.v30{vertical-align:-60.480000px;}
.v20{vertical-align:-59.040000px;}
.v29{vertical-align:-57.600000px;}
.v1b{vertical-align:-56.160000px;}
.v27{vertical-align:-53.280000px;}
.v16{vertical-align:-51.840000px;}
.v22{vertical-align:-44.640000px;}
.v28{vertical-align:-43.200000px;}
.v2c{vertical-align:-31.680000px;}
.v2e{vertical-align:-27.360000px;}
.v2b{vertical-align:-23.040000px;}
.v7{vertical-align:-14.400000px;}
.v8{vertical-align:-12.960000px;}
.v9{vertical-align:-11.520000px;}
.vb{vertical-align:-10.080000px;}
.v10{vertical-align:-8.640000px;}
.v12{vertical-align:-7.200000px;}
.v11{vertical-align:-5.760000px;}
.vc{vertical-align:-4.320000px;}
.v4{vertical-align:-2.880000px;}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.va{vertical-align:2.880000px;}
.v5{vertical-align:4.320000px;}
.v6{vertical-align:5.760000px;}
.vd{vertical-align:7.200000px;}
.v1c{vertical-align:8.640000px;}
.v1e{vertical-align:10.080000px;}
.vf{vertical-align:11.520000px;}
.v26{vertical-align:12.960000px;}
.v2{vertical-align:14.400000px;}
.v17{vertical-align:15.840000px;}
.v23{vertical-align:17.280000px;}
.v24{vertical-align:20.160000px;}
.v1d{vertical-align:23.040000px;}
.v2f{vertical-align:25.920000px;}
.v18{vertical-align:31.680000px;}
.v15{vertical-align:37.440000px;}
.v14{vertical-align:40.320000px;}
.v13{vertical-align:43.200000px;}
.v1f{vertical-align:54.720000px;}
.v19{vertical-align:56.160000px;}
.v1a{vertical-align:57.600000px;}
.v2a{vertical-align:59.040000px;}
.v21{vertical-align:60.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:4.464000px;}
.ls4{letter-spacing:55.620000px;}
.ls1{letter-spacing:70.248000px;}
.ls3{letter-spacing:202.500000px;}
.ls2{letter-spacing:226.980000px;}
.ls5{letter-spacing:444.420000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-14.178000px;}
.ws1b{word-spacing:-10.008000px;}
.ws14{word-spacing:-2.220000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:7.482000px;}
.ws1e{word-spacing:46.740000px;}
.ws7{word-spacing:51.366000px;}
.wsd{word-spacing:53.472000px;}
.ws0{word-spacing:53.505000px;}
.ws5{word-spacing:57.630000px;}
.ws4{word-spacing:65.061000px;}
.wsa{word-spacing:65.142000px;}
.ws9{word-spacing:75.600000px;}
.ws1c{word-spacing:78.420000px;}
.ws1a{word-spacing:90.090000px;}
.ws2{word-spacing:95.373000px;}
.ws3{word-spacing:105.390000px;}
.ws16{word-spacing:133.029000px;}
.ws13{word-spacing:162.135000px;}
.ws1d{word-spacing:170.469000px;}
.ws8{word-spacing:170.955000px;}
.ws17{word-spacing:186.912000px;}
.ws19{word-spacing:195.654000px;}
.ws18{word-spacing:208.020000px;}
.wsb{word-spacing:239.760000px;}
.wsc{word-spacing:249.312000px;}
.ws12{word-spacing:309.810000px;}
.ws10{word-spacing:413.628000px;}
.ws11{word-spacing:548.874000px;}
.wsf{word-spacing:620.166000px;}
.ws6{word-spacing:620.502000px;}
._2f{margin-left:-4.248000px;}
._a{width:1.149000px;}
._1{width:2.484000px;}
._f{width:3.486000px;}
._7{width:4.509000px;}
._4{width:5.724000px;}
._d{width:6.870000px;}
._2{width:8.028000px;}
._5{width:9.600000px;}
._0{width:10.800000px;}
._3{width:12.330000px;}
._9{width:13.905000px;}
._c{width:15.195000px;}
._8{width:16.335000px;}
._e{width:17.568000px;}
._6{width:19.920000px;}
._2a{width:23.292000px;}
._16{width:24.552000px;}
._33{width:26.730000px;}
._27{width:28.302000px;}
._26{width:29.880000px;}
._25{width:31.410000px;}
._b{width:32.757000px;}
._20{width:33.810000px;}
._15{width:35.217000px;}
._10{width:37.092000px;}
._28{width:39.168000px;}
._19{width:40.176000px;}
._2c{width:42.570000px;}
._22{width:43.938000px;}
._1e{width:45.486000px;}
._1a{width:47.322000px;}
._24{width:48.438000px;}
._2d{width:49.932000px;}
._29{width:51.138000px;}
._17{width:53.136000px;}
._2b{width:54.252000px;}
._12{width:56.088000px;}
._2e{width:57.960000px;}
._18{width:60.246000px;}
._23{width:61.452000px;}
._32{width:64.746000px;}
._1d{width:68.013000px;}
._13{width:69.750000px;}
._21{width:74.178000px;}
._31{width:79.920000px;}
._14{width:81.297000px;}
._34{width:138.519000px;}
._30{width:151.632000px;}
._1f{width:160.227000px;}
._11{width:165.771000px;}
._1c{width:178.077000px;}
._1b{width:187.434000px;}
.fc0{color:transparent;}
.fs17{font-size:18.000000px;}
.fs13{font-size:21.000000px;}
.fs10{font-size:24.000000px;}
.fs15{font-size:27.000000px;}
.fs5{font-size:30.000000px;}
.fsd{font-size:33.000000px;}
.fse{font-size:36.000000px;}
.fsa{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fsf{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs14{font-size:66.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:75.000000px;}
.fs12{font-size:78.000000px;}
.fs11{font-size:81.000000px;}
.fs3{font-size:84.000000px;}
.fs18{font-size:87.000000px;}
.fs16{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1b6{bottom:6.840000px;}
.y93{bottom:7.200000px;}
.y277{bottom:8.640000px;}
.y25c{bottom:9.360000px;}
.y14e{bottom:9.720000px;}
.y241{bottom:10.440000px;}
.y59{bottom:10.800000px;}
.yc5{bottom:11.160000px;}
.y10a{bottom:12.240000px;}
.y35{bottom:12.600000px;}
.y132{bottom:13.320000px;}
.y22c{bottom:14.040000px;}
.y232{bottom:14.400000px;}
.y17f{bottom:15.120000px;}
.y1b5{bottom:15.480000px;}
.y1de{bottom:19.080000px;}
.y1f1{bottom:20.160000px;}
.y250{bottom:22.320000px;}
.ya{bottom:22.680000px;}
.y20d{bottom:23.400000px;}
.y58{bottom:24.840000px;}
.y34{bottom:25.200000px;}
.y14d{bottom:25.560000px;}
.y1b4{bottom:26.280000px;}
.yb6{bottom:29.520000px;}
.yae{bottom:29.880000px;}
.yc4{bottom:30.960000px;}
.y92{bottom:31.320000px;}
.y22b{bottom:31.680000px;}
.y231{bottom:32.040000px;}
.y26b{bottom:32.400000px;}
.y20c{bottom:33.840000px;}
.y131{bottom:35.640000px;}
.y1b3{bottom:36.720000px;}
.y57{bottom:37.440000px;}
.y33{bottom:38.160000px;}
.y9{bottom:38.520000px;}
.y122{bottom:38.880000px;}
.y25b{bottom:39.240000px;}
.y1f2{bottom:40.680000px;}
.y166{bottom:41.040000px;}
.ybd{bottom:43.560000px;}
.yb5{bottom:43.920000px;}
.yad{bottom:44.280000px;}
.y223{bottom:44.640000px;}
.y227{bottom:45.360000px;}
.y22a{bottom:45.720000px;}
.y230{bottom:46.440000px;}
.y1b2{bottom:47.160000px;}
.ybb{bottom:47.520000px;}
.y26a{bottom:47.880000px;}
.y1d3{bottom:48.240000px;}
.y14b{bottom:48.600000px;}
.y14a{bottom:48.960000px;}
.y1d6{bottom:49.320000px;}
.y1c8{bottom:49.680000px;}
.y16c{bottom:50.040000px;}
.y165{bottom:50.400000px;}
.y276{bottom:51.120000px;}
.y130{bottom:52.920000px;}
.y56{bottom:53.640000px;}
.y24f{bottom:54.360000px;}
.y109{bottom:56.520000px;}
.y32{bottom:56.880000px;}
.y20a{bottom:57.240000px;}
.y1b1{bottom:57.960000px;}
.yba{bottom:58.320000px;}
.yb4{bottom:58.680000px;}
.yac{bottom:59.040000px;}
.y222{bottom:59.400000px;}
.y226{bottom:59.760000px;}
.y229{bottom:60.480000px;}
.y22f{bottom:61.200000px;}
.y1d2{bottom:62.640000px;}
.y1cd{bottom:63.000000px;}
.y149{bottom:63.360000px;}
.y16b{bottom:63.720000px;}
.y164{bottom:64.080000px;}
.y55{bottom:66.240000px;}
.y108{bottom:66.600000px;}
.y209{bottom:68.040000px;}
.y1b0{bottom:68.400000px;}
.y31{bottom:69.480000px;}
.yc3{bottom:72.720000px;}
.yb3{bottom:73.080000px;}
.y91{bottom:73.440000px;}
.y221{bottom:73.800000px;}
.y54{bottom:75.960000px;}
.y20b{bottom:76.320000px;}
.y107{bottom:76.680000px;}
.y163{bottom:77.400000px;}
.y1cc{bottom:77.760000px;}
.y148{bottom:78.120000px;}
.y1dd{bottom:78.480000px;}
.y1c7{bottom:78.840000px;}
.y124{bottom:81.360000px;}
.y30{bottom:82.440000px;}
.y25a{bottom:82.800000px;}
.y1f0{bottom:83.160000px;}
.y106{bottom:86.400000px;}
.y206{bottom:86.760000px;}
.ybc{bottom:87.120000px;}
.yb0{bottom:87.480000px;}
.y24e{bottom:87.840000px;}
.yab{bottom:88.200000px;}
.y1a4{bottom:88.560000px;}
.y1a9{bottom:88.920000px;}
.y1af{bottom:89.280000px;}
.y228{bottom:89.640000px;}
.y22e{bottom:90.000000px;}
.y208{bottom:90.360000px;}
.y16a{bottom:90.720000px;}
.y123{bottom:91.080000px;}
.y1d0{bottom:91.800000px;}
.y121{bottom:92.160000px;}
.y147{bottom:92.520000px;}
.y14c{bottom:92.880000px;}
.y53{bottom:93.240000px;}
.y105{bottom:96.840000px;}
.y24d{bottom:97.560000px;}
.y8{bottom:98.280000px;}
.y207{bottom:99.720000px;}
.yc2{bottom:101.880000px;}
.yb2{bottom:102.240000px;}
.yaa{bottom:102.600000px;}
.y220{bottom:102.960000px;}
.y225{bottom:103.680000px;}
.y162{bottom:104.400000px;}
.y259{bottom:104.760000px;}
.y17e{bottom:105.120000px;}
.y1a3{bottom:105.840000px;}
.y52{bottom:106.200000px;}
.y1ae{bottom:106.560000px;}
.y146{bottom:107.280000px;}
.y1c6{bottom:107.640000px;}
.y90{bottom:108.000000px;}
.y1db{bottom:108.720000px;}
.y1a6{bottom:109.440000px;}
.y269{bottom:110.160000px;}
.y21{bottom:112.680000px;}
.y1ef{bottom:114.840000px;}
.y104{bottom:115.920000px;}
.yc1{bottom:116.280000px;}
.yb1{bottom:116.640000px;}
.ya9{bottom:117.000000px;}
.y103{bottom:117.720000px;}
.y224{bottom:118.080000px;}
.y161{bottom:118.440000px;}
.y51{bottom:118.800000px;}
.y1ad{bottom:119.160000px;}
.y22d{bottom:119.520000px;}
.y1d1{bottom:120.600000px;}
.y1cb{bottom:120.960000px;}
.y1d5{bottom:121.320000px;}
.y145{bottom:121.680000px;}
.y1c5{bottom:122.040000px;}
.y120{bottom:123.120000px;}
.y17d{bottom:124.920000px;}
.y258{bottom:126.720000px;}
.y26c{bottom:127.080000px;}
.y102{bottom:127.800000px;}
.y12f{bottom:128.520000px;}
.yc0{bottom:131.040000px;}
.yb9{bottom:131.400000px;}
.y50{bottom:131.760000px;}
.y169{bottom:132.120000px;}
.y160{bottom:132.480000px;}
.y11f{bottom:133.560000px;}
.y20{bottom:135.000000px;}
.y1ca{bottom:135.360000px;}
.y1d4{bottom:135.720000px;}
.y1da{bottom:136.080000px;}
.y2d{bottom:136.440000px;}
.y20e{bottom:137.160000px;}
.y101{bottom:137.520000px;}
.y240{bottom:138.240000px;}
.y275{bottom:140.400000px;}
.y7{bottom:141.120000px;}
.y100{bottom:141.840000px;}
.y8f{bottom:142.560000px;}
.y23d{bottom:143.640000px;}
.y1a2{bottom:144.000000px;}
.y4f{bottom:144.360000px;}
.y1ab{bottom:144.720000px;}
.ybf{bottom:145.440000px;}
.yb8{bottom:145.800000px;}
.ya8{bottom:146.160000px;}
.y1ee{bottom:146.520000px;}
.y205{bottom:147.960000px;}
.y257{bottom:149.040000px;}
.yaf{bottom:149.760000px;}
.y1c9{bottom:150.120000px;}
.y17c{bottom:150.480000px;}
.y1d9{bottom:150.840000px;}
.y142{bottom:151.200000px;}
.y11e{bottom:151.560000px;}
.yff{bottom:151.920000px;}
.y144{bottom:152.280000px;}
.y274{bottom:153.000000px;}
.yfc{bottom:154.440000px;}
.y4e{bottom:155.160000px;}
.y1a1{bottom:156.960000px;}
.y1a5{bottom:157.320000px;}
.y1aa{bottom:157.680000px;}
.y1a8{bottom:158.040000px;}
.y168{bottom:158.760000px;}
.ybe{bottom:159.840000px;}
.yb7{bottom:160.200000px;}
.y1f{bottom:160.560000px;}
.yfe{bottom:162.000000px;}
.y11d{bottom:163.080000px;}
.y141{bottom:163.440000px;}
.y2c{bottom:163.800000px;}
.y1cf{bottom:164.160000px;}
.y143{bottom:164.520000px;}
.y1d8{bottom:164.880000px;}
.yfb{bottom:165.240000px;}
.y1c4{bottom:165.600000px;}
.y268{bottom:168.480000px;}
.y204{bottom:169.560000px;}
.y4d{bottom:169.920000px;}
.y1a0{bottom:170.280000px;}
.y1a7{bottom:170.640000px;}
.y1ac{bottom:171.000000px;}
.yfd{bottom:171.360000px;}
.y21f{bottom:173.880000px;}
.y256{bottom:174.240000px;}
.y1e{bottom:174.600000px;}
.y167{bottom:174.960000px;}
.y8e{bottom:176.400000px;}
.y2b{bottom:178.200000px;}
.y1ce{bottom:178.560000px;}
.y6{bottom:178.920000px;}
.y1d7{bottom:179.280000px;}
.y1dc{bottom:179.640000px;}
.y1c3{bottom:180.000000px;}
.y4c{bottom:182.520000px;}
.ya4{bottom:183.240000px;}
.ya7{bottom:183.600000px;}
.y11c{bottom:185.400000px;}
.y23c{bottom:186.120000px;}
.y273{bottom:186.480000px;}
.y140{bottom:186.840000px;}
.y5{bottom:189.000000px;}
.y1d{bottom:189.360000px;}
.y19f{bottom:189.720000px;}
.y2a{bottom:190.440000px;}
.y255{bottom:191.520000px;}
.y8d{bottom:192.600000px;}
.ya6{bottom:192.960000px;}
.y203{bottom:193.680000px;}
.y1ed{bottom:194.760000px;}
.y21e{bottom:196.920000px;}
.y19e{bottom:198.720000px;}
.yfa{bottom:199.080000px;}
.y19a{bottom:199.440000px;}
.y4b{bottom:200.520000px;}
.ya3{bottom:200.880000px;}
.y17b{bottom:201.240000px;}
.y23f{bottom:203.040000px;}
.y1c{bottom:203.400000px;}
.y23b{bottom:203.760000px;}
.y254{bottom:204.120000px;}
.y29{bottom:204.480000px;}
.y1c2{bottom:204.840000px;}
.y8c{bottom:205.560000px;}
.y272{bottom:205.920000px;}
.y15f{bottom:206.640000px;}
.y202{bottom:207.000000px;}
.y19d{bottom:209.520000px;}
.ya5{bottom:209.880000px;}
.y4{bottom:210.240000px;}
.y21d{bottom:210.600000px;}
.y1ec{bottom:211.680000px;}
.y4a{bottom:212.400000px;}
.yf9{bottom:212.760000px;}
.y23a{bottom:215.640000px;}
.y23e{bottom:216.360000px;}
.y8b{bottom:218.520000px;}
.y1b{bottom:218.880000px;}
.y28{bottom:219.240000px;}
.y19c{bottom:219.960000px;}
.y13f{bottom:220.320000px;}
.y19b{bottom:220.680000px;}
.y3{bottom:221.400000px;}
.y201{bottom:221.760000px;}
.y1eb{bottom:224.280000px;}
.y49{bottom:225.360000px;}
.y265{bottom:226.800000px;}
.y17a{bottom:227.160000px;}
.y13e{bottom:228.240000px;}
.y267{bottom:230.400000px;}
.y21c{bottom:230.760000px;}
.ya2{bottom:231.840000px;}
.y1c1{bottom:232.200000px;}
.y1a{bottom:232.560000px;}
.y12b{bottom:235.080000px;}
.y253{bottom:235.440000px;}
.y179{bottom:235.800000px;}
.y178{bottom:236.160000px;}
.y48{bottom:237.960000px;}
.y11b{bottom:238.320000px;}
.yf8{bottom:238.680000px;}
.y252{bottom:241.560000px;}
.y266{bottom:244.080000px;}
.ya1{bottom:244.800000px;}
.y1c0{bottom:245.160000px;}
.y13d{bottom:245.520000px;}
.y19{bottom:246.960000px;}
.y15e{bottom:247.320000px;}
.y2f{bottom:248.040000px;}
.y239{bottom:250.200000px;}
.y271{bottom:250.560000px;}
.y47{bottom:250.920000px;}
.y199{bottom:251.280000px;}
.y11a{bottom:252.000000px;}
.y8a{bottom:252.360000px;}
.y251{bottom:253.440000px;}
.y1fe{bottom:255.240000px;}
.yd8{bottom:255.600000px;}
.ydc{bottom:255.960000px;}
.ye4{bottom:256.320000px;}
.yeb{bottom:256.680000px;}
.yf5{bottom:257.040000px;}
.y238{bottom:258.120000px;}
.y215{bottom:261.000000px;}
.y18{bottom:261.720000px;}
.y2e{bottom:262.800000px;}
.y13c{bottom:263.160000px;}
.y264{bottom:263.520000px;}
.y263{bottom:263.880000px;}
.y177{bottom:265.680000px;}
.y46{bottom:268.200000px;}
.y1ea{bottom:268.560000px;}
.y12a{bottom:271.440000px;}
.ydb{bottom:272.160000px;}
.yf4{bottom:272.880000px;}
.y89{bottom:275.040000px;}
.y70{bottom:275.760000px;}
.y17{bottom:276.120000px;}
.y119{bottom:276.840000px;}
.y13b{bottom:277.200000px;}
.y1e9{bottom:277.560000px;}
.y66{bottom:278.280000px;}
.ya0{bottom:280.080000px;}
.y195{bottom:280.800000px;}
.y45{bottom:281.160000px;}
.y18c{bottom:281.520000px;}
.y214{bottom:282.600000px;}
.y1fd{bottom:284.040000px;}
.y176{bottom:285.120000px;}
.yd7{bottom:285.840000px;}
.yda{bottom:286.200000px;}
.ye3{bottom:286.560000px;}
.yf3{bottom:287.280000px;}
.y1bf{bottom:290.160000px;}
.y65{bottom:290.520000px;}
.y6f{bottom:291.240000px;}
.y7e{bottom:291.600000px;}
.y83{bottom:291.960000px;}
.y24b{bottom:292.320000px;}
.y88{bottom:292.680000px;}
.y44{bottom:293.400000px;}
.y194{bottom:293.760000px;}
.y191{bottom:294.120000px;}
.y18b{bottom:294.480000px;}
.y16{bottom:296.640000px;}
.y23{bottom:297.720000px;}
.y270{bottom:298.080000px;}
.y118{bottom:299.880000px;}
.y9f{bottom:300.240000px;}
.yd6{bottom:300.600000px;}
.ye2{bottom:300.960000px;}
.yea{bottom:301.320000px;}
.y159{bottom:301.680000px;}
.yf2{bottom:302.040000px;}
.y1e4{bottom:302.760000px;}
.y175{bottom:304.560000px;}
.y213{bottom:304.920000px;}
.y64{bottom:305.280000px;}
.y87{bottom:305.640000px;}
.y77{bottom:306.000000px;}
.y43{bottom:306.360000px;}
.y82{bottom:306.720000px;}
.y6e{bottom:307.080000px;}
.y7d{bottom:307.800000px;}
.y12c{bottom:309.960000px;}
.y15{bottom:311.040000px;}
.y246{bottom:312.120000px;}
.y200{bottom:312.840000px;}
.y1fc{bottom:313.200000px;}
.y1f9{bottom:314.640000px;}
.yd5{bottom:315.000000px;}
.yd9{bottom:315.360000px;}
.ye9{bottom:315.720000px;}
.yf1{bottom:316.440000px;}
.y24a{bottom:317.160000px;}
.y42{bottom:318.600000px;}
.y63{bottom:319.680000px;}
.y86{bottom:320.040000px;}
.y76{bottom:320.400000px;}
.y7c{bottom:320.760000px;}
.y81{bottom:321.120000px;}
.y6d{bottom:321.480000px;}
.y198{bottom:322.920000px;}
.y174{bottom:324.000000px;}
.y129{bottom:324.360000px;}
.y237{bottom:325.080000px;}
.y14{bottom:325.800000px;}
.y249{bottom:326.160000px;}
.y27{bottom:327.240000px;}
.y158{bottom:327.600000px;}
.y15d{bottom:327.960000px;}
.y9e{bottom:329.040000px;}
.yd4{bottom:329.760000px;}
.yf7{bottom:330.120000px;}
.ye1{bottom:330.480000px;}
.ye8{bottom:330.840000px;}
.yf0{bottom:331.200000px;}
.y197{bottom:332.280000px;}
.y190{bottom:332.640000px;}
.y18a{bottom:333.000000px;}
.y41{bottom:334.080000px;}
.y85{bottom:334.440000px;}
.y6c{bottom:334.800000px;}
.y7b{bottom:335.160000px;}
.y13a{bottom:335.520000px;}
.y245{bottom:337.680000px;}
.y117{bottom:338.040000px;}
.y9d{bottom:338.400000px;}
.y157{bottom:340.200000px;}
.y15c{bottom:340.560000px;}
.y13{bottom:341.280000px;}
.y26{bottom:341.640000px;}
.y1e3{bottom:342.000000px;}
.y1e8{bottom:343.080000px;}
.y173{bottom:343.800000px;}
.y40{bottom:344.160000px;}
.yd3{bottom:344.520000px;}
.ye0{bottom:344.880000px;}
.ye7{bottom:345.240000px;}
.y189{bottom:345.600000px;}
.yef{bottom:345.960000px;}
.y248{bottom:347.040000px;}
.y128{bottom:347.760000px;}
.y261{bottom:348.480000px;}
.y62{bottom:348.840000px;}
.y21b{bottom:349.200000px;}
.y75{bottom:349.560000px;}
.y80{bottom:349.920000px;}
.y1fb{bottom:351.000000px;}
.y6b{bottom:351.720000px;}
.y1f8{bottom:352.080000px;}
.y156{bottom:353.160000px;}
.y15b{bottom:353.520000px;}
.y1be{bottom:354.240000px;}
.y12{bottom:354.600000px;}
.y247{bottom:356.400000px;}
.y3f{bottom:356.760000px;}
.y1bd{bottom:357.120000px;}
.y193{bottom:357.840000px;}
.y18f{bottom:358.200000px;}
.y188{bottom:358.560000px;}
.yd2{bottom:358.920000px;}
.yf6{bottom:359.280000px;}
.ydf{bottom:359.640000px;}
.ye6{bottom:360.000000px;}
.yee{bottom:360.360000px;}
.y114{bottom:361.440000px;}
.y61{bottom:363.240000px;}
.y6a{bottom:363.600000px;}
.y74{bottom:363.960000px;}
.y7a{bottom:364.320000px;}
.y9c{bottom:364.680000px;}
.y26f{bottom:366.120000px;}
.y155{bottom:366.480000px;}
.y1f7{bottom:367.200000px;}
.y11{bottom:369.360000px;}
.y25{bottom:370.440000px;}
.y192{bottom:370.800000px;}
.y187{bottom:371.160000px;}
.y212{bottom:371.880000px;}
.y1e2{bottom:372.240000px;}
.y1e7{bottom:373.320000px;}
.yd1{bottom:373.680000px;}
.yde{bottom:374.040000px;}
.y3e{bottom:374.400000px;}
.yed{bottom:375.120000px;}
.y21a{bottom:375.840000px;}
.y113{bottom:376.200000px;}
.y260{bottom:377.280000px;}
.y60{bottom:378.000000px;}
.y69{bottom:378.360000px;}
.y73{bottom:378.720000px;}
.y7f{bottom:379.080000px;}
.y15a{bottom:379.440000px;}
.y139{bottom:380.160000px;}
.y24c{bottom:380.520000px;}
.y1f6{bottom:381.240000px;}
.y1ff{bottom:381.960000px;}
.y172{bottom:383.040000px;}
.y196{bottom:383.400000px;}
.y10{bottom:383.760000px;}
.y18e{bottom:384.120000px;}
.y186{bottom:384.480000px;}
.y24{bottom:384.840000px;}
.y3d{bottom:387.000000px;}
.yd0{bottom:388.080000px;}
.ydd{bottom:388.440000px;}
.ye5{bottom:388.800000px;}
.yec{bottom:389.160000px;}
.y116{bottom:389.520000px;}
.y219{bottom:390.240000px;}
.y154{bottom:392.040000px;}
.y84{bottom:392.400000px;}
.y68{bottom:392.760000px;}
.y72{bottom:393.120000px;}
.y79{bottom:393.480000px;}
.y1bc{bottom:394.200000px;}
.y5f{bottom:396.000000px;}
.y127{bottom:396.360000px;}
.y18d{bottom:396.720000px;}
.y12e{bottom:397.080000px;}
.y9b{bottom:397.440000px;}
.yf{bottom:398.520000px;}
.y218{bottom:399.600000px;}
.y3c{bottom:399.960000px;}
.y171{bottom:402.480000px;}
.y10f{bottom:403.200000px;}
.y111{bottom:403.560000px;}
.y112{bottom:403.920000px;}
.y2{bottom:404.280000px;}
.y153{bottom:405.000000px;}
.y25f{bottom:406.080000px;}
.y5e{bottom:406.800000px;}
.y67{bottom:407.160000px;}
.y71{bottom:407.520000px;}
.y78{bottom:407.880000px;}
.y1fa{bottom:408.960000px;}
.y138{bottom:409.320000px;}
.ycb{bottom:409.680000px;}
.y185{bottom:410.040000px;}
.ycf{bottom:410.400000px;}
.y217{bottom:411.840000px;}
.y3b{bottom:412.560000px;}
.y244{bottom:414.360000px;}
.y26e{bottom:416.160000px;}
.y211{bottom:416.520000px;}
.y152{bottom:417.600000px;}
.y10e{bottom:417.960000px;}
.y110{bottom:418.320000px;}
.yca{bottom:418.680000px;}
.y115{bottom:419.040000px;}
.yce{bottom:419.400000px;}
.y9a{bottom:421.560000px;}
.ye{bottom:421.920000px;}
.y137{bottom:422.280000px;}
.y22{bottom:423.000000px;}
.y1f5{bottom:423.720000px;}
.y236{bottom:424.440000px;}
.y1bb{bottom:425.160000px;}
.y3a{bottom:425.520000px;}
.yc9{bottom:429.120000px;}
.y5d{bottom:429.840000px;}
.y151{bottom:430.560000px;}
.y1e1{bottom:432.360000px;}
.y1e6{bottom:433.440000px;}
.y25e{bottom:434.160000px;}
.y216{bottom:436.320000px;}
.y12d{bottom:436.680000px;}
.y39{bottom:438.480000px;}
.yc8{bottom:438.840000px;}
.ycd{bottom:439.560000px;}
.y170{bottom:439.920000px;}
.y1{bottom:440.280000px;}
.y136{bottom:442.800000px;}
.y150{bottom:443.520000px;}
.y98{bottom:445.320000px;}
.y99{bottom:446.040000px;}
.y5c{bottom:447.840000px;}
.y235{bottom:448.560000px;}
.yd{bottom:448.920000px;}
.y1e5{bottom:449.280000px;}
.yc7{bottom:449.640000px;}
.ycc{bottom:450.360000px;}
.y184{bottom:450.720000px;}
.y38{bottom:451.080000px;}
.y10d{bottom:451.440000px;}
.y126{bottom:452.520000px;}
.y243{bottom:452.880000px;}
.y1ba{bottom:453.240000px;}
.y96{bottom:456.120000px;}
.y97{bottom:456.840000px;}
.y5b{bottom:457.560000px;}
.y210{bottom:457.920000px;}
.y135{bottom:458.640000px;}
.y10c{bottom:460.080000px;}
.y181{bottom:460.440000px;}
.y182{bottom:460.800000px;}
.y183{bottom:461.520000px;}
.y1b9{bottom:465.840000px;}
.y16f{bottom:466.560000px;}
.y234{bottom:467.280000px;}
.y37{bottom:468.000000px;}
.y1f4{bottom:468.720000px;}
.y1e0{bottom:469.080000px;}
.y242{bottom:469.440000px;}
.y262{bottom:470.160000px;}
.yc6{bottom:470.520000px;}
.y125{bottom:470.880000px;}
.yc{bottom:472.320000px;}
.y1b8{bottom:478.800000px;}
.y16e{bottom:479.520000px;}
.y10b{bottom:479.880000px;}
.y233{bottom:480.240000px;}
.y134{bottom:480.600000px;}
.y36{bottom:481.320000px;}
.y1f3{bottom:481.680000px;}
.y95{bottom:483.120000px;}
.y26d{bottom:484.200000px;}
.yb{bottom:486.720000px;}
.y16d{bottom:493.920000px;}
.y1b7{bottom:494.280000px;}
.y5a{bottom:495.360000px;}
.y1df{bottom:495.720000px;}
.y14f{bottom:496.080000px;}
.y180{bottom:496.440000px;}
.y133{bottom:496.800000px;}
.y94{bottom:497.160000px;}
.y20f{bottom:497.520000px;}
.y25d{bottom:500.040000px;}
.h5c{height:18.773438px;}
.h51{height:21.902344px;}
.h50{height:25.031250px;}
.h66{height:31.289062px;}
.h1a{height:34.417969px;}
.h26{height:37.546875px;}
.h16{height:40.675781px;}
.h4c{height:42.115781px;}
.h53{height:42.364687px;}
.h4e{height:43.555781px;}
.h18{height:43.804688px;}
.h5d{height:44.995781px;}
.h33{height:45.244687px;}
.h30{height:45.493594px;}
.h8{height:45.689062px;}
.h45{height:45.742500px;}
.h5e{height:46.435781px;}
.h5b{height:46.684687px;}
.he{height:46.933594px;}
.h19{height:48.124688px;}
.h1d{height:48.373594px;}
.h14{height:48.622500px;}
.h34{height:49.564688px;}
.h1b{height:49.813594px;}
.h21{height:50.062500px;}
.h52{height:50.506875px;}
.h59{height:50.560312px;}
.h54{height:51.004688px;}
.h12{height:51.253594px;}
.hb{height:51.502500px;}
.h5a{height:52.249219px;}
.h13{height:52.693594px;}
.h1c{height:52.942500px;}
.h11{height:53.191406px;}
.h10{height:54.133594px;}
.hf{height:54.382500px;}
.hd{height:54.631406px;}
.h4f{height:54.880313px;}
.hc{height:56.071406px;}
.h7{height:56.320312px;}
.h64{height:56.569219px;}
.h22{height:57.013594px;}
.h4b{height:57.511406px;}
.h9{height:57.760312px;}
.h2d{height:58.009219px;}
.h49{height:58.951406px;}
.h3f{height:59.200313px;}
.h23{height:59.449219px;}
.h5f{height:60.391406px;}
.h36{height:60.640313px;}
.h60{height:60.889219px;}
.h28{height:62.080312px;}
.h17{height:62.578125px;}
.h37{height:62.827031px;}
.h38{height:63.520313px;}
.h27{height:64.018125px;}
.h2e{height:64.267031px;}
.h41{height:64.711406px;}
.h65{height:65.458125px;}
.h4{height:65.707031px;}
.h29{height:66.898125px;}
.h24{height:67.147031px;}
.h48{height:67.591406px;}
.h57{height:68.089219px;}
.h44{height:68.835938px;}
.h31{height:69.031406px;}
.ha{height:69.084844px;}
.h1e{height:70.027031px;}
.h15{height:71.964844px;}
.h55{height:73.653750px;}
.h32{height:75.040313px;}
.h6{height:75.093750px;}
.h35{height:75.484688px;}
.h2{height:76.782656px;}
.h25{height:77.227031px;}
.h42{height:77.973750px;}
.h5{height:78.222656px;}
.h43{height:79.555781px;}
.h40{height:80.746875px;}
.h47{height:80.995781px;}
.h39{height:81.351562px;}
.h63{height:83.484844px;}
.h2a{height:83.875781px;}
.h2f{height:84.373594px;}
.h2c{height:84.480469px;}
.h62{height:85.369219px;}
.h4d{height:85.867031px;}
.h3a{height:85.920469px;}
.h3{height:86.169375px;}
.h61{height:90.738281px;}
.h58{height:93.867188px;}
.h46{height:95.395781px;}
.h3e{height:98.275781px;}
.h3b{height:99.964688px;}
.h56{height:102.844688px;}
.h3c{height:103.093594px;}
.h3d{height:104.533594px;}
.h2b{height:106.027031px;}
.h4a{height:149.973750px;}
.h20{height:516.000000px;}
.h1f{height:516.240000px;}
.h0{height:517.320000px;}
.h1{height:517.500000px;}
.w3{width:314.250000px;}
.w2{width:314.280000px;}
.w1{width:315.000000px;}
.w0{width:315.360000px;}
.w4{width:316.440000px;}
.w5{width:316.500000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x84{left:2.880000px;}
.x26{left:4.680000px;}
.x59{left:5.760000px;}
.x28{left:7.560000px;}
.x4e{left:9.720000px;}
.x27{left:11.160000px;}
.x12{left:12.600000px;}
.x74{left:14.400000px;}
.x6e{left:15.480000px;}
.x4b{left:17.640000px;}
.x22{left:19.800000px;}
.x83{left:21.960000px;}
.x89{left:23.760000px;}
.x3a{left:24.840000px;}
.xb{left:26.280000px;}
.x13{left:27.360000px;}
.xd{left:28.440000px;}
.x1f{left:29.520000px;}
.x8a{left:31.320000px;}
.x4c{left:32.760000px;}
.x9b{left:34.200000px;}
.x20{left:35.280000px;}
.x44{left:38.160000px;}
.x29{left:39.960000px;}
.xc{left:41.400000px;}
.x8c{left:42.840000px;}
.x4a{left:44.280000px;}
.xa1{left:45.360000px;}
.x2e{left:46.440000px;}
.x9{left:47.520000px;}
.x1{left:48.600000px;}
.x24{left:50.400000px;}
.x88{left:51.480000px;}
.x2d{left:52.920000px;}
.x6b{left:55.800000px;}
.xa{left:57.960000px;}
.x61{left:59.760000px;}
.x62{left:60.840000px;}
.x66{left:61.920000px;}
.x2a{left:64.800000px;}
.x36{left:66.600000px;}
.x37{left:67.680000px;}
.x1d{left:68.760000px;}
.x51{left:70.560000px;}
.x40{left:72.360000px;}
.x1c{left:73.440000px;}
.x8{left:74.520000px;}
.x9c{left:75.960000px;}
.x1e{left:78.840000px;}
.x50{left:80.280000px;}
.x54{left:83.520000px;}
.x6a{left:84.600000px;}
.x52{left:88.200000px;}
.x4{left:89.280000px;}
.x78{left:90.720000px;}
.x6f{left:92.520000px;}
.x55{left:94.320000px;}
.x6d{left:96.120000px;}
.x41{left:97.200000px;}
.x3{left:98.280000px;}
.x4f{left:99.720000px;}
.x7{left:101.520000px;}
.x87{left:102.600000px;}
.x6{left:107.640000px;}
.x2f{left:108.720000px;}
.x23{left:110.520000px;}
.x5{left:111.600000px;}
.x2b{left:114.480000px;}
.x9f{left:116.640000px;}
.x63{left:118.080000px;}
.x2{left:119.160000px;}
.x53{left:120.240000px;}
.x97{left:125.640000px;}
.x3b{left:127.800000px;}
.x16{left:129.240000px;}
.x64{left:130.680000px;}
.x15{left:132.480000px;}
.x7a{left:133.560000px;}
.x72{left:135.720000px;}
.x14{left:137.160000px;}
.x73{left:138.240000px;}
.x95{left:140.040000px;}
.x45{left:144.720000px;}
.xa2{left:146.160000px;}
.x43{left:147.240000px;}
.x48{left:149.760000px;}
.x31{left:151.560000px;}
.x5c{left:153.360000px;}
.x5a{left:154.800000px;}
.x30{left:156.960000px;}
.x5d{left:159.480000px;}
.x25{left:160.560000px;}
.x67{left:161.640000px;}
.x56{left:163.440000px;}
.x57{left:165.240000px;}
.x8f{left:167.760000px;}
.x90{left:168.840000px;}
.x18{left:172.800000px;}
.xa0{left:174.600000px;}
.x17{left:177.480000px;}
.x79{left:180.720000px;}
.x5e{left:183.600000px;}
.x7b{left:185.040000px;}
.x65{left:186.120000px;}
.x47{left:191.880000px;}
.x3d{left:195.120000px;}
.x98{left:196.200000px;}
.x38{left:197.280000px;}
.x33{left:198.360000px;}
.x3c{left:200.160000px;}
.x75{left:201.240000px;}
.x7c{left:202.680000px;}
.x32{left:203.760000px;}
.x7d{left:208.800000px;}
.x86{left:214.560000px;}
.x5b{left:216.360000px;}
.x91{left:218.520000px;}
.x92{left:219.600000px;}
.x77{left:221.040000px;}
.x76{left:222.120000px;}
.x5f{left:226.080000px;}
.x71{left:227.160000px;}
.x94{left:228.600000px;}
.x19{left:230.040000px;}
.x4d{left:231.480000px;}
.x85{left:232.560000px;}
.x1a{left:235.080000px;}
.x46{left:237.240000px;}
.x70{left:238.320000px;}
.x39{left:239.400000px;}
.x2c{left:241.920000px;}
.xf{left:243.720000px;}
.x6c{left:245.880000px;}
.xe{left:247.320000px;}
.x10{left:249.120000px;}
.x42{left:250.200000px;}
.x96{left:251.640000px;}
.x9d{left:253.440000px;}
.x9e{left:254.880000px;}
.xa4{left:255.960000px;}
.x35{left:258.120000px;}
.x34{left:259.200000px;}
.x3f{left:260.280000px;}
.xa3{left:261.360000px;}
.x60{left:262.440000px;}
.x81{left:263.520000px;}
.x3e{left:265.320000px;}
.x93{left:266.400000px;}
.x8d{left:267.840000px;}
.x7e{left:270.000000px;}
.x7f{left:271.080000px;}
.x49{left:272.880000px;}
.x1b{left:275.400000px;}
.x69{left:277.200000px;}
.x99{left:278.640000px;}
.x80{left:281.160000px;}
.x68{left:282.240000px;}
.x8b{left:284.760000px;}
.x8e{left:292.320000px;}
.x82{left:294.120000px;}
.x9a{left:295.200000px;}
.x21{left:298.440000px;}
.x58{left:305.640000px;}
@media print{
.v2d{vertical-align:-58.880000pt;}
.v25{vertical-align:-57.600000pt;}
.ve{vertical-align:-55.040000pt;}
.v30{vertical-align:-53.760000pt;}
.v20{vertical-align:-52.480000pt;}
.v29{vertical-align:-51.200000pt;}
.v1b{vertical-align:-49.920000pt;}
.v27{vertical-align:-47.360000pt;}
.v16{vertical-align:-46.080000pt;}
.v22{vertical-align:-39.680000pt;}
.v28{vertical-align:-38.400000pt;}
.v2c{vertical-align:-28.160000pt;}
.v2e{vertical-align:-24.320000pt;}
.v2b{vertical-align:-20.480000pt;}
.v7{vertical-align:-12.800000pt;}
.v8{vertical-align:-11.520000pt;}
.v9{vertical-align:-10.240000pt;}
.vb{vertical-align:-8.960000pt;}
.v10{vertical-align:-7.680000pt;}
.v12{vertical-align:-6.400000pt;}
.v11{vertical-align:-5.120000pt;}
.vc{vertical-align:-3.840000pt;}
.v4{vertical-align:-2.560000pt;}
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.va{vertical-align:2.560000pt;}
.v5{vertical-align:3.840000pt;}
.v6{vertical-align:5.120000pt;}
.vd{vertical-align:6.400000pt;}
.v1c{vertical-align:7.680000pt;}
.v1e{vertical-align:8.960000pt;}
.vf{vertical-align:10.240000pt;}
.v26{vertical-align:11.520000pt;}
.v2{vertical-align:12.800000pt;}
.v17{vertical-align:14.080000pt;}
.v23{vertical-align:15.360000pt;}
.v24{vertical-align:17.920000pt;}
.v1d{vertical-align:20.480000pt;}
.v2f{vertical-align:23.040000pt;}
.v18{vertical-align:28.160000pt;}
.v15{vertical-align:33.280000pt;}
.v14{vertical-align:35.840000pt;}
.v13{vertical-align:38.400000pt;}
.v1f{vertical-align:48.640000pt;}
.v19{vertical-align:49.920000pt;}
.v1a{vertical-align:51.200000pt;}
.v2a{vertical-align:52.480000pt;}
.v21{vertical-align:53.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:3.968000pt;}
.ls4{letter-spacing:49.440000pt;}
.ls1{letter-spacing:62.442667pt;}
.ls3{letter-spacing:180.000000pt;}
.ls2{letter-spacing:201.760000pt;}
.ls5{letter-spacing:395.040000pt;}
.ws15{word-spacing:-12.602667pt;}
.ws1b{word-spacing:-8.896000pt;}
.ws14{word-spacing:-1.973333pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:6.650667pt;}
.ws1e{word-spacing:41.546667pt;}
.ws7{word-spacing:45.658667pt;}
.wsd{word-spacing:47.530667pt;}
.ws0{word-spacing:47.560000pt;}
.ws5{word-spacing:51.226667pt;}
.ws4{word-spacing:57.832000pt;}
.wsa{word-spacing:57.904000pt;}
.ws9{word-spacing:67.200000pt;}
.ws1c{word-spacing:69.706667pt;}
.ws1a{word-spacing:80.080000pt;}
.ws2{word-spacing:84.776000pt;}
.ws3{word-spacing:93.680000pt;}
.ws16{word-spacing:118.248000pt;}
.ws13{word-spacing:144.120000pt;}
.ws1d{word-spacing:151.528000pt;}
.ws8{word-spacing:151.960000pt;}
.ws17{word-spacing:166.144000pt;}
.ws19{word-spacing:173.914667pt;}
.ws18{word-spacing:184.906667pt;}
.wsb{word-spacing:213.120000pt;}
.wsc{word-spacing:221.610667pt;}
.ws12{word-spacing:275.386667pt;}
.ws10{word-spacing:367.669333pt;}
.ws11{word-spacing:487.888000pt;}
.wsf{word-spacing:551.258667pt;}
.ws6{word-spacing:551.557333pt;}
._2f{margin-left:-3.776000pt;}
._a{width:1.021333pt;}
._1{width:2.208000pt;}
._f{width:3.098667pt;}
._7{width:4.008000pt;}
._4{width:5.088000pt;}
._d{width:6.106667pt;}
._2{width:7.136000pt;}
._5{width:8.533333pt;}
._0{width:9.600000pt;}
._3{width:10.960000pt;}
._9{width:12.360000pt;}
._c{width:13.506667pt;}
._8{width:14.520000pt;}
._e{width:15.616000pt;}
._6{width:17.706667pt;}
._2a{width:20.704000pt;}
._16{width:21.824000pt;}
._33{width:23.760000pt;}
._27{width:25.157333pt;}
._26{width:26.560000pt;}
._25{width:27.920000pt;}
._b{width:29.117333pt;}
._20{width:30.053333pt;}
._15{width:31.304000pt;}
._10{width:32.970667pt;}
._28{width:34.816000pt;}
._19{width:35.712000pt;}
._2c{width:37.840000pt;}
._22{width:39.056000pt;}
._1e{width:40.432000pt;}
._1a{width:42.064000pt;}
._24{width:43.056000pt;}
._2d{width:44.384000pt;}
._29{width:45.456000pt;}
._17{width:47.232000pt;}
._2b{width:48.224000pt;}
._12{width:49.856000pt;}
._2e{width:51.520000pt;}
._18{width:53.552000pt;}
._23{width:54.624000pt;}
._32{width:57.552000pt;}
._1d{width:60.456000pt;}
._13{width:62.000000pt;}
._21{width:65.936000pt;}
._31{width:71.040000pt;}
._14{width:72.264000pt;}
._34{width:123.128000pt;}
._30{width:134.784000pt;}
._1f{width:142.424000pt;}
._11{width:147.352000pt;}
._1c{width:158.290667pt;}
._1b{width:166.608000pt;}
.fs17{font-size:16.000000pt;}
.fs13{font-size:18.666667pt;}
.fs10{font-size:21.333333pt;}
.fs15{font-size:24.000000pt;}
.fs5{font-size:26.666667pt;}
.fsd{font-size:29.333333pt;}
.fse{font-size:32.000000pt;}
.fsa{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fsf{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs14{font-size:58.666667pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:66.666667pt;}
.fs12{font-size:69.333333pt;}
.fs11{font-size:72.000000pt;}
.fs3{font-size:74.666667pt;}
.fs18{font-size:77.333333pt;}
.fs16{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1b6{bottom:6.080000pt;}
.y93{bottom:6.400000pt;}
.y277{bottom:7.680000pt;}
.y25c{bottom:8.320000pt;}
.y14e{bottom:8.640000pt;}
.y241{bottom:9.280000pt;}
.y59{bottom:9.600000pt;}
.yc5{bottom:9.920000pt;}
.y10a{bottom:10.880000pt;}
.y35{bottom:11.200000pt;}
.y132{bottom:11.840000pt;}
.y22c{bottom:12.480000pt;}
.y232{bottom:12.800000pt;}
.y17f{bottom:13.440000pt;}
.y1b5{bottom:13.760000pt;}
.y1de{bottom:16.960000pt;}
.y1f1{bottom:17.920000pt;}
.y250{bottom:19.840000pt;}
.ya{bottom:20.160000pt;}
.y20d{bottom:20.800000pt;}
.y58{bottom:22.080000pt;}
.y34{bottom:22.400000pt;}
.y14d{bottom:22.720000pt;}
.y1b4{bottom:23.360000pt;}
.yb6{bottom:26.240000pt;}
.yae{bottom:26.560000pt;}
.yc4{bottom:27.520000pt;}
.y92{bottom:27.840000pt;}
.y22b{bottom:28.160000pt;}
.y231{bottom:28.480000pt;}
.y26b{bottom:28.800000pt;}
.y20c{bottom:30.080000pt;}
.y131{bottom:31.680000pt;}
.y1b3{bottom:32.640000pt;}
.y57{bottom:33.280000pt;}
.y33{bottom:33.920000pt;}
.y9{bottom:34.240000pt;}
.y122{bottom:34.560000pt;}
.y25b{bottom:34.880000pt;}
.y1f2{bottom:36.160000pt;}
.y166{bottom:36.480000pt;}
.ybd{bottom:38.720000pt;}
.yb5{bottom:39.040000pt;}
.yad{bottom:39.360000pt;}
.y223{bottom:39.680000pt;}
.y227{bottom:40.320000pt;}
.y22a{bottom:40.640000pt;}
.y230{bottom:41.280000pt;}
.y1b2{bottom:41.920000pt;}
.ybb{bottom:42.240000pt;}
.y26a{bottom:42.560000pt;}
.y1d3{bottom:42.880000pt;}
.y14b{bottom:43.200000pt;}
.y14a{bottom:43.520000pt;}
.y1d6{bottom:43.840000pt;}
.y1c8{bottom:44.160000pt;}
.y16c{bottom:44.480000pt;}
.y165{bottom:44.800000pt;}
.y276{bottom:45.440000pt;}
.y130{bottom:47.040000pt;}
.y56{bottom:47.680000pt;}
.y24f{bottom:48.320000pt;}
.y109{bottom:50.240000pt;}
.y32{bottom:50.560000pt;}
.y20a{bottom:50.880000pt;}
.y1b1{bottom:51.520000pt;}
.yba{bottom:51.840000pt;}
.yb4{bottom:52.160000pt;}
.yac{bottom:52.480000pt;}
.y222{bottom:52.800000pt;}
.y226{bottom:53.120000pt;}
.y229{bottom:53.760000pt;}
.y22f{bottom:54.400000pt;}
.y1d2{bottom:55.680000pt;}
.y1cd{bottom:56.000000pt;}
.y149{bottom:56.320000pt;}
.y16b{bottom:56.640000pt;}
.y164{bottom:56.960000pt;}
.y55{bottom:58.880000pt;}
.y108{bottom:59.200000pt;}
.y209{bottom:60.480000pt;}
.y1b0{bottom:60.800000pt;}
.y31{bottom:61.760000pt;}
.yc3{bottom:64.640000pt;}
.yb3{bottom:64.960000pt;}
.y91{bottom:65.280000pt;}
.y221{bottom:65.600000pt;}
.y54{bottom:67.520000pt;}
.y20b{bottom:67.840000pt;}
.y107{bottom:68.160000pt;}
.y163{bottom:68.800000pt;}
.y1cc{bottom:69.120000pt;}
.y148{bottom:69.440000pt;}
.y1dd{bottom:69.760000pt;}
.y1c7{bottom:70.080000pt;}
.y124{bottom:72.320000pt;}
.y30{bottom:73.280000pt;}
.y25a{bottom:73.600000pt;}
.y1f0{bottom:73.920000pt;}
.y106{bottom:76.800000pt;}
.y206{bottom:77.120000pt;}
.ybc{bottom:77.440000pt;}
.yb0{bottom:77.760000pt;}
.y24e{bottom:78.080000pt;}
.yab{bottom:78.400000pt;}
.y1a4{bottom:78.720000pt;}
.y1a9{bottom:79.040000pt;}
.y1af{bottom:79.360000pt;}
.y228{bottom:79.680000pt;}
.y22e{bottom:80.000000pt;}
.y208{bottom:80.320000pt;}
.y16a{bottom:80.640000pt;}
.y123{bottom:80.960000pt;}
.y1d0{bottom:81.600000pt;}
.y121{bottom:81.920000pt;}
.y147{bottom:82.240000pt;}
.y14c{bottom:82.560000pt;}
.y53{bottom:82.880000pt;}
.y105{bottom:86.080000pt;}
.y24d{bottom:86.720000pt;}
.y8{bottom:87.360000pt;}
.y207{bottom:88.640000pt;}
.yc2{bottom:90.560000pt;}
.yb2{bottom:90.880000pt;}
.yaa{bottom:91.200000pt;}
.y220{bottom:91.520000pt;}
.y225{bottom:92.160000pt;}
.y162{bottom:92.800000pt;}
.y259{bottom:93.120000pt;}
.y17e{bottom:93.440000pt;}
.y1a3{bottom:94.080000pt;}
.y52{bottom:94.400000pt;}
.y1ae{bottom:94.720000pt;}
.y146{bottom:95.360000pt;}
.y1c6{bottom:95.680000pt;}
.y90{bottom:96.000000pt;}
.y1db{bottom:96.640000pt;}
.y1a6{bottom:97.280000pt;}
.y269{bottom:97.920000pt;}
.y21{bottom:100.160000pt;}
.y1ef{bottom:102.080000pt;}
.y104{bottom:103.040000pt;}
.yc1{bottom:103.360000pt;}
.yb1{bottom:103.680000pt;}
.ya9{bottom:104.000000pt;}
.y103{bottom:104.640000pt;}
.y224{bottom:104.960000pt;}
.y161{bottom:105.280000pt;}
.y51{bottom:105.600000pt;}
.y1ad{bottom:105.920000pt;}
.y22d{bottom:106.240000pt;}
.y1d1{bottom:107.200000pt;}
.y1cb{bottom:107.520000pt;}
.y1d5{bottom:107.840000pt;}
.y145{bottom:108.160000pt;}
.y1c5{bottom:108.480000pt;}
.y120{bottom:109.440000pt;}
.y17d{bottom:111.040000pt;}
.y258{bottom:112.640000pt;}
.y26c{bottom:112.960000pt;}
.y102{bottom:113.600000pt;}
.y12f{bottom:114.240000pt;}
.yc0{bottom:116.480000pt;}
.yb9{bottom:116.800000pt;}
.y50{bottom:117.120000pt;}
.y169{bottom:117.440000pt;}
.y160{bottom:117.760000pt;}
.y11f{bottom:118.720000pt;}
.y20{bottom:120.000000pt;}
.y1ca{bottom:120.320000pt;}
.y1d4{bottom:120.640000pt;}
.y1da{bottom:120.960000pt;}
.y2d{bottom:121.280000pt;}
.y20e{bottom:121.920000pt;}
.y101{bottom:122.240000pt;}
.y240{bottom:122.880000pt;}
.y275{bottom:124.800000pt;}
.y7{bottom:125.440000pt;}
.y100{bottom:126.080000pt;}
.y8f{bottom:126.720000pt;}
.y23d{bottom:127.680000pt;}
.y1a2{bottom:128.000000pt;}
.y4f{bottom:128.320000pt;}
.y1ab{bottom:128.640000pt;}
.ybf{bottom:129.280000pt;}
.yb8{bottom:129.600000pt;}
.ya8{bottom:129.920000pt;}
.y1ee{bottom:130.240000pt;}
.y205{bottom:131.520000pt;}
.y257{bottom:132.480000pt;}
.yaf{bottom:133.120000pt;}
.y1c9{bottom:133.440000pt;}
.y17c{bottom:133.760000pt;}
.y1d9{bottom:134.080000pt;}
.y142{bottom:134.400000pt;}
.y11e{bottom:134.720000pt;}
.yff{bottom:135.040000pt;}
.y144{bottom:135.360000pt;}
.y274{bottom:136.000000pt;}
.yfc{bottom:137.280000pt;}
.y4e{bottom:137.920000pt;}
.y1a1{bottom:139.520000pt;}
.y1a5{bottom:139.840000pt;}
.y1aa{bottom:140.160000pt;}
.y1a8{bottom:140.480000pt;}
.y168{bottom:141.120000pt;}
.ybe{bottom:142.080000pt;}
.yb7{bottom:142.400000pt;}
.y1f{bottom:142.720000pt;}
.yfe{bottom:144.000000pt;}
.y11d{bottom:144.960000pt;}
.y141{bottom:145.280000pt;}
.y2c{bottom:145.600000pt;}
.y1cf{bottom:145.920000pt;}
.y143{bottom:146.240000pt;}
.y1d8{bottom:146.560000pt;}
.yfb{bottom:146.880000pt;}
.y1c4{bottom:147.200000pt;}
.y268{bottom:149.760000pt;}
.y204{bottom:150.720000pt;}
.y4d{bottom:151.040000pt;}
.y1a0{bottom:151.360000pt;}
.y1a7{bottom:151.680000pt;}
.y1ac{bottom:152.000000pt;}
.yfd{bottom:152.320000pt;}
.y21f{bottom:154.560000pt;}
.y256{bottom:154.880000pt;}
.y1e{bottom:155.200000pt;}
.y167{bottom:155.520000pt;}
.y8e{bottom:156.800000pt;}
.y2b{bottom:158.400000pt;}
.y1ce{bottom:158.720000pt;}
.y6{bottom:159.040000pt;}
.y1d7{bottom:159.360000pt;}
.y1dc{bottom:159.680000pt;}
.y1c3{bottom:160.000000pt;}
.y4c{bottom:162.240000pt;}
.ya4{bottom:162.880000pt;}
.ya7{bottom:163.200000pt;}
.y11c{bottom:164.800000pt;}
.y23c{bottom:165.440000pt;}
.y273{bottom:165.760000pt;}
.y140{bottom:166.080000pt;}
.y5{bottom:168.000000pt;}
.y1d{bottom:168.320000pt;}
.y19f{bottom:168.640000pt;}
.y2a{bottom:169.280000pt;}
.y255{bottom:170.240000pt;}
.y8d{bottom:171.200000pt;}
.ya6{bottom:171.520000pt;}
.y203{bottom:172.160000pt;}
.y1ed{bottom:173.120000pt;}
.y21e{bottom:175.040000pt;}
.y19e{bottom:176.640000pt;}
.yfa{bottom:176.960000pt;}
.y19a{bottom:177.280000pt;}
.y4b{bottom:178.240000pt;}
.ya3{bottom:178.560000pt;}
.y17b{bottom:178.880000pt;}
.y23f{bottom:180.480000pt;}
.y1c{bottom:180.800000pt;}
.y23b{bottom:181.120000pt;}
.y254{bottom:181.440000pt;}
.y29{bottom:181.760000pt;}
.y1c2{bottom:182.080000pt;}
.y8c{bottom:182.720000pt;}
.y272{bottom:183.040000pt;}
.y15f{bottom:183.680000pt;}
.y202{bottom:184.000000pt;}
.y19d{bottom:186.240000pt;}
.ya5{bottom:186.560000pt;}
.y4{bottom:186.880000pt;}
.y21d{bottom:187.200000pt;}
.y1ec{bottom:188.160000pt;}
.y4a{bottom:188.800000pt;}
.yf9{bottom:189.120000pt;}
.y23a{bottom:191.680000pt;}
.y23e{bottom:192.320000pt;}
.y8b{bottom:194.240000pt;}
.y1b{bottom:194.560000pt;}
.y28{bottom:194.880000pt;}
.y19c{bottom:195.520000pt;}
.y13f{bottom:195.840000pt;}
.y19b{bottom:196.160000pt;}
.y3{bottom:196.800000pt;}
.y201{bottom:197.120000pt;}
.y1eb{bottom:199.360000pt;}
.y49{bottom:200.320000pt;}
.y265{bottom:201.600000pt;}
.y17a{bottom:201.920000pt;}
.y13e{bottom:202.880000pt;}
.y267{bottom:204.800000pt;}
.y21c{bottom:205.120000pt;}
.ya2{bottom:206.080000pt;}
.y1c1{bottom:206.400000pt;}
.y1a{bottom:206.720000pt;}
.y12b{bottom:208.960000pt;}
.y253{bottom:209.280000pt;}
.y179{bottom:209.600000pt;}
.y178{bottom:209.920000pt;}
.y48{bottom:211.520000pt;}
.y11b{bottom:211.840000pt;}
.yf8{bottom:212.160000pt;}
.y252{bottom:214.720000pt;}
.y266{bottom:216.960000pt;}
.ya1{bottom:217.600000pt;}
.y1c0{bottom:217.920000pt;}
.y13d{bottom:218.240000pt;}
.y19{bottom:219.520000pt;}
.y15e{bottom:219.840000pt;}
.y2f{bottom:220.480000pt;}
.y239{bottom:222.400000pt;}
.y271{bottom:222.720000pt;}
.y47{bottom:223.040000pt;}
.y199{bottom:223.360000pt;}
.y11a{bottom:224.000000pt;}
.y8a{bottom:224.320000pt;}
.y251{bottom:225.280000pt;}
.y1fe{bottom:226.880000pt;}
.yd8{bottom:227.200000pt;}
.ydc{bottom:227.520000pt;}
.ye4{bottom:227.840000pt;}
.yeb{bottom:228.160000pt;}
.yf5{bottom:228.480000pt;}
.y238{bottom:229.440000pt;}
.y215{bottom:232.000000pt;}
.y18{bottom:232.640000pt;}
.y2e{bottom:233.600000pt;}
.y13c{bottom:233.920000pt;}
.y264{bottom:234.240000pt;}
.y263{bottom:234.560000pt;}
.y177{bottom:236.160000pt;}
.y46{bottom:238.400000pt;}
.y1ea{bottom:238.720000pt;}
.y12a{bottom:241.280000pt;}
.ydb{bottom:241.920000pt;}
.yf4{bottom:242.560000pt;}
.y89{bottom:244.480000pt;}
.y70{bottom:245.120000pt;}
.y17{bottom:245.440000pt;}
.y119{bottom:246.080000pt;}
.y13b{bottom:246.400000pt;}
.y1e9{bottom:246.720000pt;}
.y66{bottom:247.360000pt;}
.ya0{bottom:248.960000pt;}
.y195{bottom:249.600000pt;}
.y45{bottom:249.920000pt;}
.y18c{bottom:250.240000pt;}
.y214{bottom:251.200000pt;}
.y1fd{bottom:252.480000pt;}
.y176{bottom:253.440000pt;}
.yd7{bottom:254.080000pt;}
.yda{bottom:254.400000pt;}
.ye3{bottom:254.720000pt;}
.yf3{bottom:255.360000pt;}
.y1bf{bottom:257.920000pt;}
.y65{bottom:258.240000pt;}
.y6f{bottom:258.880000pt;}
.y7e{bottom:259.200000pt;}
.y83{bottom:259.520000pt;}
.y24b{bottom:259.840000pt;}
.y88{bottom:260.160000pt;}
.y44{bottom:260.800000pt;}
.y194{bottom:261.120000pt;}
.y191{bottom:261.440000pt;}
.y18b{bottom:261.760000pt;}
.y16{bottom:263.680000pt;}
.y23{bottom:264.640000pt;}
.y270{bottom:264.960000pt;}
.y118{bottom:266.560000pt;}
.y9f{bottom:266.880000pt;}
.yd6{bottom:267.200000pt;}
.ye2{bottom:267.520000pt;}
.yea{bottom:267.840000pt;}
.y159{bottom:268.160000pt;}
.yf2{bottom:268.480000pt;}
.y1e4{bottom:269.120000pt;}
.y175{bottom:270.720000pt;}
.y213{bottom:271.040000pt;}
.y64{bottom:271.360000pt;}
.y87{bottom:271.680000pt;}
.y77{bottom:272.000000pt;}
.y43{bottom:272.320000pt;}
.y82{bottom:272.640000pt;}
.y6e{bottom:272.960000pt;}
.y7d{bottom:273.600000pt;}
.y12c{bottom:275.520000pt;}
.y15{bottom:276.480000pt;}
.y246{bottom:277.440000pt;}
.y200{bottom:278.080000pt;}
.y1fc{bottom:278.400000pt;}
.y1f9{bottom:279.680000pt;}
.yd5{bottom:280.000000pt;}
.yd9{bottom:280.320000pt;}
.ye9{bottom:280.640000pt;}
.yf1{bottom:281.280000pt;}
.y24a{bottom:281.920000pt;}
.y42{bottom:283.200000pt;}
.y63{bottom:284.160000pt;}
.y86{bottom:284.480000pt;}
.y76{bottom:284.800000pt;}
.y7c{bottom:285.120000pt;}
.y81{bottom:285.440000pt;}
.y6d{bottom:285.760000pt;}
.y198{bottom:287.040000pt;}
.y174{bottom:288.000000pt;}
.y129{bottom:288.320000pt;}
.y237{bottom:288.960000pt;}
.y14{bottom:289.600000pt;}
.y249{bottom:289.920000pt;}
.y27{bottom:290.880000pt;}
.y158{bottom:291.200000pt;}
.y15d{bottom:291.520000pt;}
.y9e{bottom:292.480000pt;}
.yd4{bottom:293.120000pt;}
.yf7{bottom:293.440000pt;}
.ye1{bottom:293.760000pt;}
.ye8{bottom:294.080000pt;}
.yf0{bottom:294.400000pt;}
.y197{bottom:295.360000pt;}
.y190{bottom:295.680000pt;}
.y18a{bottom:296.000000pt;}
.y41{bottom:296.960000pt;}
.y85{bottom:297.280000pt;}
.y6c{bottom:297.600000pt;}
.y7b{bottom:297.920000pt;}
.y13a{bottom:298.240000pt;}
.y245{bottom:300.160000pt;}
.y117{bottom:300.480000pt;}
.y9d{bottom:300.800000pt;}
.y157{bottom:302.400000pt;}
.y15c{bottom:302.720000pt;}
.y13{bottom:303.360000pt;}
.y26{bottom:303.680000pt;}
.y1e3{bottom:304.000000pt;}
.y1e8{bottom:304.960000pt;}
.y173{bottom:305.600000pt;}
.y40{bottom:305.920000pt;}
.yd3{bottom:306.240000pt;}
.ye0{bottom:306.560000pt;}
.ye7{bottom:306.880000pt;}
.y189{bottom:307.200000pt;}
.yef{bottom:307.520000pt;}
.y248{bottom:308.480000pt;}
.y128{bottom:309.120000pt;}
.y261{bottom:309.760000pt;}
.y62{bottom:310.080000pt;}
.y21b{bottom:310.400000pt;}
.y75{bottom:310.720000pt;}
.y80{bottom:311.040000pt;}
.y1fb{bottom:312.000000pt;}
.y6b{bottom:312.640000pt;}
.y1f8{bottom:312.960000pt;}
.y156{bottom:313.920000pt;}
.y15b{bottom:314.240000pt;}
.y1be{bottom:314.880000pt;}
.y12{bottom:315.200000pt;}
.y247{bottom:316.800000pt;}
.y3f{bottom:317.120000pt;}
.y1bd{bottom:317.440000pt;}
.y193{bottom:318.080000pt;}
.y18f{bottom:318.400000pt;}
.y188{bottom:318.720000pt;}
.yd2{bottom:319.040000pt;}
.yf6{bottom:319.360000pt;}
.ydf{bottom:319.680000pt;}
.ye6{bottom:320.000000pt;}
.yee{bottom:320.320000pt;}
.y114{bottom:321.280000pt;}
.y61{bottom:322.880000pt;}
.y6a{bottom:323.200000pt;}
.y74{bottom:323.520000pt;}
.y7a{bottom:323.840000pt;}
.y9c{bottom:324.160000pt;}
.y26f{bottom:325.440000pt;}
.y155{bottom:325.760000pt;}
.y1f7{bottom:326.400000pt;}
.y11{bottom:328.320000pt;}
.y25{bottom:329.280000pt;}
.y192{bottom:329.600000pt;}
.y187{bottom:329.920000pt;}
.y212{bottom:330.560000pt;}
.y1e2{bottom:330.880000pt;}
.y1e7{bottom:331.840000pt;}
.yd1{bottom:332.160000pt;}
.yde{bottom:332.480000pt;}
.y3e{bottom:332.800000pt;}
.yed{bottom:333.440000pt;}
.y21a{bottom:334.080000pt;}
.y113{bottom:334.400000pt;}
.y260{bottom:335.360000pt;}
.y60{bottom:336.000000pt;}
.y69{bottom:336.320000pt;}
.y73{bottom:336.640000pt;}
.y7f{bottom:336.960000pt;}
.y15a{bottom:337.280000pt;}
.y139{bottom:337.920000pt;}
.y24c{bottom:338.240000pt;}
.y1f6{bottom:338.880000pt;}
.y1ff{bottom:339.520000pt;}
.y172{bottom:340.480000pt;}
.y196{bottom:340.800000pt;}
.y10{bottom:341.120000pt;}
.y18e{bottom:341.440000pt;}
.y186{bottom:341.760000pt;}
.y24{bottom:342.080000pt;}
.y3d{bottom:344.000000pt;}
.yd0{bottom:344.960000pt;}
.ydd{bottom:345.280000pt;}
.ye5{bottom:345.600000pt;}
.yec{bottom:345.920000pt;}
.y116{bottom:346.240000pt;}
.y219{bottom:346.880000pt;}
.y154{bottom:348.480000pt;}
.y84{bottom:348.800000pt;}
.y68{bottom:349.120000pt;}
.y72{bottom:349.440000pt;}
.y79{bottom:349.760000pt;}
.y1bc{bottom:350.400000pt;}
.y5f{bottom:352.000000pt;}
.y127{bottom:352.320000pt;}
.y18d{bottom:352.640000pt;}
.y12e{bottom:352.960000pt;}
.y9b{bottom:353.280000pt;}
.yf{bottom:354.240000pt;}
.y218{bottom:355.200000pt;}
.y3c{bottom:355.520000pt;}
.y171{bottom:357.760000pt;}
.y10f{bottom:358.400000pt;}
.y111{bottom:358.720000pt;}
.y112{bottom:359.040000pt;}
.y2{bottom:359.360000pt;}
.y153{bottom:360.000000pt;}
.y25f{bottom:360.960000pt;}
.y5e{bottom:361.600000pt;}
.y67{bottom:361.920000pt;}
.y71{bottom:362.240000pt;}
.y78{bottom:362.560000pt;}
.y1fa{bottom:363.520000pt;}
.y138{bottom:363.840000pt;}
.ycb{bottom:364.160000pt;}
.y185{bottom:364.480000pt;}
.ycf{bottom:364.800000pt;}
.y217{bottom:366.080000pt;}
.y3b{bottom:366.720000pt;}
.y244{bottom:368.320000pt;}
.y26e{bottom:369.920000pt;}
.y211{bottom:370.240000pt;}
.y152{bottom:371.200000pt;}
.y10e{bottom:371.520000pt;}
.y110{bottom:371.840000pt;}
.yca{bottom:372.160000pt;}
.y115{bottom:372.480000pt;}
.yce{bottom:372.800000pt;}
.y9a{bottom:374.720000pt;}
.ye{bottom:375.040000pt;}
.y137{bottom:375.360000pt;}
.y22{bottom:376.000000pt;}
.y1f5{bottom:376.640000pt;}
.y236{bottom:377.280000pt;}
.y1bb{bottom:377.920000pt;}
.y3a{bottom:378.240000pt;}
.yc9{bottom:381.440000pt;}
.y5d{bottom:382.080000pt;}
.y151{bottom:382.720000pt;}
.y1e1{bottom:384.320000pt;}
.y1e6{bottom:385.280000pt;}
.y25e{bottom:385.920000pt;}
.y216{bottom:387.840000pt;}
.y12d{bottom:388.160000pt;}
.y39{bottom:389.760000pt;}
.yc8{bottom:390.080000pt;}
.ycd{bottom:390.720000pt;}
.y170{bottom:391.040000pt;}
.y1{bottom:391.360000pt;}
.y136{bottom:393.600000pt;}
.y150{bottom:394.240000pt;}
.y98{bottom:395.840000pt;}
.y99{bottom:396.480000pt;}
.y5c{bottom:398.080000pt;}
.y235{bottom:398.720000pt;}
.yd{bottom:399.040000pt;}
.y1e5{bottom:399.360000pt;}
.yc7{bottom:399.680000pt;}
.ycc{bottom:400.320000pt;}
.y184{bottom:400.640000pt;}
.y38{bottom:400.960000pt;}
.y10d{bottom:401.280000pt;}
.y126{bottom:402.240000pt;}
.y243{bottom:402.560000pt;}
.y1ba{bottom:402.880000pt;}
.y96{bottom:405.440000pt;}
.y97{bottom:406.080000pt;}
.y5b{bottom:406.720000pt;}
.y210{bottom:407.040000pt;}
.y135{bottom:407.680000pt;}
.y10c{bottom:408.960000pt;}
.y181{bottom:409.280000pt;}
.y182{bottom:409.600000pt;}
.y183{bottom:410.240000pt;}
.y1b9{bottom:414.080000pt;}
.y16f{bottom:414.720000pt;}
.y234{bottom:415.360000pt;}
.y37{bottom:416.000000pt;}
.y1f4{bottom:416.640000pt;}
.y1e0{bottom:416.960000pt;}
.y242{bottom:417.280000pt;}
.y262{bottom:417.920000pt;}
.yc6{bottom:418.240000pt;}
.y125{bottom:418.560000pt;}
.yc{bottom:419.840000pt;}
.y1b8{bottom:425.600000pt;}
.y16e{bottom:426.240000pt;}
.y10b{bottom:426.560000pt;}
.y233{bottom:426.880000pt;}
.y134{bottom:427.200000pt;}
.y36{bottom:427.840000pt;}
.y1f3{bottom:428.160000pt;}
.y95{bottom:429.440000pt;}
.y26d{bottom:430.400000pt;}
.yb{bottom:432.640000pt;}
.y16d{bottom:439.040000pt;}
.y1b7{bottom:439.360000pt;}
.y5a{bottom:440.320000pt;}
.y1df{bottom:440.640000pt;}
.y14f{bottom:440.960000pt;}
.y180{bottom:441.280000pt;}
.y133{bottom:441.600000pt;}
.y94{bottom:441.920000pt;}
.y20f{bottom:442.240000pt;}
.y25d{bottom:444.480000pt;}
.h5c{height:16.687500pt;}
.h51{height:19.468750pt;}
.h50{height:22.250000pt;}
.h66{height:27.812500pt;}
.h1a{height:30.593750pt;}
.h26{height:33.375000pt;}
.h16{height:36.156250pt;}
.h4c{height:37.436250pt;}
.h53{height:37.657500pt;}
.h4e{height:38.716250pt;}
.h18{height:38.937500pt;}
.h5d{height:39.996250pt;}
.h33{height:40.217500pt;}
.h30{height:40.438750pt;}
.h8{height:40.612500pt;}
.h45{height:40.660000pt;}
.h5e{height:41.276250pt;}
.h5b{height:41.497500pt;}
.he{height:41.718750pt;}
.h19{height:42.777500pt;}
.h1d{height:42.998750pt;}
.h14{height:43.220000pt;}
.h34{height:44.057500pt;}
.h1b{height:44.278750pt;}
.h21{height:44.500000pt;}
.h52{height:44.895000pt;}
.h59{height:44.942500pt;}
.h54{height:45.337500pt;}
.h12{height:45.558750pt;}
.hb{height:45.780000pt;}
.h5a{height:46.443750pt;}
.h13{height:46.838750pt;}
.h1c{height:47.060000pt;}
.h11{height:47.281250pt;}
.h10{height:48.118750pt;}
.hf{height:48.340000pt;}
.hd{height:48.561250pt;}
.h4f{height:48.782500pt;}
.hc{height:49.841250pt;}
.h7{height:50.062500pt;}
.h64{height:50.283750pt;}
.h22{height:50.678750pt;}
.h4b{height:51.121250pt;}
.h9{height:51.342500pt;}
.h2d{height:51.563750pt;}
.h49{height:52.401250pt;}
.h3f{height:52.622500pt;}
.h23{height:52.843750pt;}
.h5f{height:53.681250pt;}
.h36{height:53.902500pt;}
.h60{height:54.123750pt;}
.h28{height:55.182500pt;}
.h17{height:55.625000pt;}
.h37{height:55.846250pt;}
.h38{height:56.462500pt;}
.h27{height:56.905000pt;}
.h2e{height:57.126250pt;}
.h41{height:57.521250pt;}
.h65{height:58.185000pt;}
.h4{height:58.406250pt;}
.h29{height:59.465000pt;}
.h24{height:59.686250pt;}
.h48{height:60.081250pt;}
.h57{height:60.523750pt;}
.h44{height:61.187500pt;}
.h31{height:61.361250pt;}
.ha{height:61.408750pt;}
.h1e{height:62.246250pt;}
.h15{height:63.968750pt;}
.h55{height:65.470000pt;}
.h32{height:66.702500pt;}
.h6{height:66.750000pt;}
.h35{height:67.097500pt;}
.h2{height:68.251250pt;}
.h25{height:68.646250pt;}
.h42{height:69.310000pt;}
.h5{height:69.531250pt;}
.h43{height:70.716250pt;}
.h40{height:71.775000pt;}
.h47{height:71.996250pt;}
.h39{height:72.312500pt;}
.h63{height:74.208750pt;}
.h2a{height:74.556250pt;}
.h2f{height:74.998750pt;}
.h2c{height:75.093750pt;}
.h62{height:75.883750pt;}
.h4d{height:76.326250pt;}
.h3a{height:76.373750pt;}
.h3{height:76.595000pt;}
.h61{height:80.656250pt;}
.h58{height:83.437500pt;}
.h46{height:84.796250pt;}
.h3e{height:87.356250pt;}
.h3b{height:88.857500pt;}
.h56{height:91.417500pt;}
.h3c{height:91.638750pt;}
.h3d{height:92.918750pt;}
.h2b{height:94.246250pt;}
.h4a{height:133.310000pt;}
.h20{height:458.666667pt;}
.h1f{height:458.880000pt;}
.h0{height:459.840000pt;}
.h1{height:460.000000pt;}
.w3{width:279.333333pt;}
.w2{width:279.360000pt;}
.w1{width:280.000000pt;}
.w0{width:280.320000pt;}
.w4{width:281.280000pt;}
.w5{width:281.333333pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x84{left:2.560000pt;}
.x26{left:4.160000pt;}
.x59{left:5.120000pt;}
.x28{left:6.720000pt;}
.x4e{left:8.640000pt;}
.x27{left:9.920000pt;}
.x12{left:11.200000pt;}
.x74{left:12.800000pt;}
.x6e{left:13.760000pt;}
.x4b{left:15.680000pt;}
.x22{left:17.600000pt;}
.x83{left:19.520000pt;}
.x89{left:21.120000pt;}
.x3a{left:22.080000pt;}
.xb{left:23.360000pt;}
.x13{left:24.320000pt;}
.xd{left:25.280000pt;}
.x1f{left:26.240000pt;}
.x8a{left:27.840000pt;}
.x4c{left:29.120000pt;}
.x9b{left:30.400000pt;}
.x20{left:31.360000pt;}
.x44{left:33.920000pt;}
.x29{left:35.520000pt;}
.xc{left:36.800000pt;}
.x8c{left:38.080000pt;}
.x4a{left:39.360000pt;}
.xa1{left:40.320000pt;}
.x2e{left:41.280000pt;}
.x9{left:42.240000pt;}
.x1{left:43.200000pt;}
.x24{left:44.800000pt;}
.x88{left:45.760000pt;}
.x2d{left:47.040000pt;}
.x6b{left:49.600000pt;}
.xa{left:51.520000pt;}
.x61{left:53.120000pt;}
.x62{left:54.080000pt;}
.x66{left:55.040000pt;}
.x2a{left:57.600000pt;}
.x36{left:59.200000pt;}
.x37{left:60.160000pt;}
.x1d{left:61.120000pt;}
.x51{left:62.720000pt;}
.x40{left:64.320000pt;}
.x1c{left:65.280000pt;}
.x8{left:66.240000pt;}
.x9c{left:67.520000pt;}
.x1e{left:70.080000pt;}
.x50{left:71.360000pt;}
.x54{left:74.240000pt;}
.x6a{left:75.200000pt;}
.x52{left:78.400000pt;}
.x4{left:79.360000pt;}
.x78{left:80.640000pt;}
.x6f{left:82.240000pt;}
.x55{left:83.840000pt;}
.x6d{left:85.440000pt;}
.x41{left:86.400000pt;}
.x3{left:87.360000pt;}
.x4f{left:88.640000pt;}
.x7{left:90.240000pt;}
.x87{left:91.200000pt;}
.x6{left:95.680000pt;}
.x2f{left:96.640000pt;}
.x23{left:98.240000pt;}
.x5{left:99.200000pt;}
.x2b{left:101.760000pt;}
.x9f{left:103.680000pt;}
.x63{left:104.960000pt;}
.x2{left:105.920000pt;}
.x53{left:106.880000pt;}
.x97{left:111.680000pt;}
.x3b{left:113.600000pt;}
.x16{left:114.880000pt;}
.x64{left:116.160000pt;}
.x15{left:117.760000pt;}
.x7a{left:118.720000pt;}
.x72{left:120.640000pt;}
.x14{left:121.920000pt;}
.x73{left:122.880000pt;}
.x95{left:124.480000pt;}
.x45{left:128.640000pt;}
.xa2{left:129.920000pt;}
.x43{left:130.880000pt;}
.x48{left:133.120000pt;}
.x31{left:134.720000pt;}
.x5c{left:136.320000pt;}
.x5a{left:137.600000pt;}
.x30{left:139.520000pt;}
.x5d{left:141.760000pt;}
.x25{left:142.720000pt;}
.x67{left:143.680000pt;}
.x56{left:145.280000pt;}
.x57{left:146.880000pt;}
.x8f{left:149.120000pt;}
.x90{left:150.080000pt;}
.x18{left:153.600000pt;}
.xa0{left:155.200000pt;}
.x17{left:157.760000pt;}
.x79{left:160.640000pt;}
.x5e{left:163.200000pt;}
.x7b{left:164.480000pt;}
.x65{left:165.440000pt;}
.x47{left:170.560000pt;}
.x3d{left:173.440000pt;}
.x98{left:174.400000pt;}
.x38{left:175.360000pt;}
.x33{left:176.320000pt;}
.x3c{left:177.920000pt;}
.x75{left:178.880000pt;}
.x7c{left:180.160000pt;}
.x32{left:181.120000pt;}
.x7d{left:185.600000pt;}
.x86{left:190.720000pt;}
.x5b{left:192.320000pt;}
.x91{left:194.240000pt;}
.x92{left:195.200000pt;}
.x77{left:196.480000pt;}
.x76{left:197.440000pt;}
.x5f{left:200.960000pt;}
.x71{left:201.920000pt;}
.x94{left:203.200000pt;}
.x19{left:204.480000pt;}
.x4d{left:205.760000pt;}
.x85{left:206.720000pt;}
.x1a{left:208.960000pt;}
.x46{left:210.880000pt;}
.x70{left:211.840000pt;}
.x39{left:212.800000pt;}
.x2c{left:215.040000pt;}
.xf{left:216.640000pt;}
.x6c{left:218.560000pt;}
.xe{left:219.840000pt;}
.x10{left:221.440000pt;}
.x42{left:222.400000pt;}
.x96{left:223.680000pt;}
.x9d{left:225.280000pt;}
.x9e{left:226.560000pt;}
.xa4{left:227.520000pt;}
.x35{left:229.440000pt;}
.x34{left:230.400000pt;}
.x3f{left:231.360000pt;}
.xa3{left:232.320000pt;}
.x60{left:233.280000pt;}
.x81{left:234.240000pt;}
.x3e{left:235.840000pt;}
.x93{left:236.800000pt;}
.x8d{left:238.080000pt;}
.x7e{left:240.000000pt;}
.x7f{left:240.960000pt;}
.x49{left:242.560000pt;}
.x1b{left:244.800000pt;}
.x69{left:246.400000pt;}
.x99{left:247.680000pt;}
.x80{left:249.920000pt;}
.x68{left:250.880000pt;}
.x8b{left:253.120000pt;}
.x8e{left:259.840000pt;}
.x82{left:261.440000pt;}
.x9a{left:262.400000pt;}
.x21{left:265.280000pt;}
.x58{left:271.680000pt;}
}




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