
    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_89d7d5db0454090b5bfec94f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_90fafc2b1de2e712f014af9b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_29eb364edd985b258004ecd1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.012207;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_d95754542062f4169d3ab970.woff')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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_9c6ce8eeaa56ad85a49ce4ab.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_cffa52a742c85ae324b093bd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.057617;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f77ea90b3770644f040c3e6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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_d4a7e920c7b70c9c98eddfea.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8628c9f33e008b29b38a1c83.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb9b43aadd3da72b7e07dfbe.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4e5860d839a0fc5e7efa14f5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.800781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-11.940000px;}
.v5{vertical-align:-6.000000px;}
.v4{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.000000px;}
.v1{vertical-align:14.940000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.195000px;}
.ls6{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.105000px;}
.lsa{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000003px;}
.ls7{letter-spacing:0.006000px;}
.ls18{letter-spacing:0.015000px;}
.ls0{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.105000px;}
.ls16{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.210000px;}
.ls5{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.282000px;}
.ls8{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.600000px;}
.lsd{letter-spacing:2.082000px;}
.lsf{letter-spacing:2.658000px;}
.lse{letter-spacing:2.682000px;}
.ls2{letter-spacing:10.800000px;}
.lsc{letter-spacing:15.882000px;}
.ls9{letter-spacing:18.882000px;}
.lsb{letter-spacing:18.942000px;}
.ls3{letter-spacing:46.320000px;}
.ls10{letter-spacing:46.440000px;}
.ls1f{letter-spacing:46.500000px;}
.ls21{letter-spacing:63.690000px;}
.ls20{letter-spacing:63.870000px;}
.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;}
}
.ws1e{word-spacing:-60.000000px;}
.ws5{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.180000px;}
.ws19{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws20{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.820000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.200000px;}
.ws9{word-spacing:-13.020000px;}
.ws7{word-spacing:-11.550000px;}
.ws18{word-spacing:-11.430000px;}
.ws16{word-spacing:-11.370000px;}
.ws15{word-spacing:-11.355000px;}
.ws6{word-spacing:-11.250000px;}
.wsa{word-spacing:-11.160000px;}
.ws1c{word-spacing:-11.145000px;}
.ws1d{word-spacing:-11.070000px;}
.ws1b{word-spacing:-11.055000px;}
.ws1a{word-spacing:-10.500000px;}
.ws13{word-spacing:-9.522000px;}
.ws1{word-spacing:-9.000000px;}
.wsb{word-spacing:-7.500000px;}
.ws17{word-spacing:-6.750000px;}
.ws12{word-spacing:-0.420000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.120000px;}
.wsf{word-spacing:0.180000px;}
.wse{word-spacing:0.300000px;}
.ws11{word-spacing:0.540000px;}
.ws14{word-spacing:0.899991px;}
.ws10{word-spacing:1.020000px;}
.wsc{word-spacing:3.120000px;}
._b{margin-left:-4.584000px;}
._a{margin-left:-3.120000px;}
._13{margin-left:-2.040000px;}
._1{margin-left:-1.038000px;}
._0{width:1.008000px;}
._f{width:2.340000px;}
._1a{width:3.444000px;}
._17{width:4.500000px;}
._18{width:5.580000px;}
._19{width:7.200000px;}
._5{width:8.940000px;}
._6{width:10.320000px;}
._1c{width:11.532000px;}
._c{width:13.320000px;}
._26{width:15.120000px;}
._9{width:16.260000px;}
._1b{width:17.598000px;}
._7{width:18.660000px;}
._8{width:19.950000px;}
._10{width:21.300000px;}
._27{width:22.380000px;}
._d{width:23.460000px;}
._e{width:24.600000px;}
._21{width:25.800000px;}
._11{width:26.880000px;}
._12{width:27.960000px;}
._14{width:29.190000px;}
._16{width:30.720000px;}
._1d{width:32.040000px;}
._24{width:33.960000px;}
._25{width:35.040000px;}
._15{width:37.080000px;}
._2f{width:38.112000px;}
._20{width:39.300000px;}
._1f{width:40.500000px;}
._23{width:41.640000px;}
._30{width:42.912000px;}
._29{width:46.200000px;}
._2a{width:47.220000px;}
._2e{width:48.300000px;}
._2d{width:49.452000px;}
._22{width:51.720000px;}
._2c{width:53.460000px;}
._1e{width:65.700000px;}
._36{width:75.360000px;}
._37{width:76.440000px;}
._31{width:83.280000px;}
._32{width:109.680000px;}
._38{width:138.660000px;}
._3e{width:166.680000px;}
._2b{width:186.150000px;}
._28{width:200.970000px;}
._3b{width:213.960000px;}
._3a{width:214.980000px;}
._33{width:218.640000px;}
._34{width:219.660000px;}
._3c{width:244.080000px;}
._3d{width:245.220000px;}
._2{width:315.978000px;}
._4{width:371.580000px;}
._3{width:479.766000px;}
._35{width:694.380000px;}
._39{width:873.540000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.000000px;}
.fs5{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:2.400000px;}
.y6b{bottom:3.285000px;}
.y6e{bottom:3.300000px;}
.y1a2{bottom:3.315000px;}
.y13f{bottom:3.330000px;}
.y143{bottom:3.450000px;}
.yfe{bottom:3.465000px;}
.ycb{bottom:4.350000px;}
.y79{bottom:4.365000px;}
.y1f0{bottom:4.500000px;}
.y1ee{bottom:5.100000px;}
.ya6{bottom:5.535000px;}
.y82{bottom:5.550000px;}
.y7b{bottom:5.565000px;}
.yaa{bottom:5.685000px;}
.y86{bottom:5.700000px;}
.y80{bottom:5.715000px;}
.y138{bottom:5.850000px;}
.y135{bottom:5.865000px;}
.y5c{bottom:6.000000px;}
.y54{bottom:6.015000px;}
.y1ae{bottom:6.135000px;}
.y1a8{bottom:6.150000px;}
.y1a3{bottom:6.165000px;}
.y1ba{bottom:6.180000px;}
.y55{bottom:6.300000px;}
.y1a5{bottom:6.315000px;}
.y104{bottom:6.585000px;}
.y102{bottom:6.600000px;}
.y100{bottom:6.615000px;}
.y1ce{bottom:6.750000px;}
.y1cc{bottom:6.765000px;}
.yb1{bottom:6.900000px;}
.y1d0{bottom:7.035000px;}
.yad{bottom:7.200000px;}
.y1d2{bottom:7.500000px;}
.y17b{bottom:7.950000px;}
.y132{bottom:8.250000px;}
.y17d{bottom:8.550000px;}
.y179{bottom:8.700000px;}
.y19f{bottom:9.000000px;}
.y17f{bottom:9.300000px;}
.y108{bottom:9.750000px;}
.y10b{bottom:9.765000px;}
.y10d{bottom:9.795000px;}
.y1ca{bottom:9.900000px;}
.y1fd{bottom:10.500000px;}
.y156{bottom:10.950000px;}
.yfd{bottom:10.965000px;}
.y13d{bottom:10.980000px;}
.y1fc{bottom:11.400000px;}
.y162{bottom:12.900000px;}
.y9e{bottom:14.415000px;}
.y67{bottom:15.315000px;}
.y130{bottom:15.885000px;}
.y19d{bottom:16.650000px;}
.y149{bottom:17.662500px;}
.y6a{bottom:18.435000px;}
.y13e{bottom:18.480000px;}
.y157{bottom:18.585000px;}
.y73{bottom:18.600000px;}
.y6d{bottom:18.645000px;}
.y153{bottom:19.050000px;}
.y78{bottom:19.365000px;}
.y58{bottom:19.515000px;}
.y9d{bottom:23.115000px;}
.y131{bottom:23.430000px;}
.y19e{bottom:24.300000px;}
.y7e{bottom:24.450000px;}
.yac{bottom:24.615000px;}
.ya4{bottom:26.085000px;}
.y1f9{bottom:26.100000px;}
.y5b{bottom:26.250000px;}
.y98{bottom:26.550000px;}
.y160{bottom:28.050000px;}
.y66{bottom:28.365000px;}
.y2b{bottom:30.450000px;}
.y52{bottom:30.750000px;}
.y148{bottom:31.762500px;}
.y1f8{bottom:41.250000px;}
.y1fb{bottom:41.700000px;}
.y84{bottom:42.000000px;}
.y7d{bottom:42.045000px;}
.y161{bottom:43.200000px;}
.ya3{bottom:43.500000px;}
.y5a{bottom:46.365000px;}
.y5d{bottom:46.665000px;}
.y51{bottom:52.050000px;}
.y152{bottom:53.850000px;}
.y1f7{bottom:56.550000px;}
.y29{bottom:57.150000px;}
.yb2{bottom:59.400000px;}
.y19a{bottom:60.000000px;}
.ya2{bottom:61.050000px;}
.y74{bottom:61.800000px;}
.yf5{bottom:63.000000px;}
.y12c{bottom:63.750000px;}
.y1a0{bottom:69.000000px;}
.y176{bottom:73.500000px;}
.y28{bottom:74.400000px;}
.y72{bottom:77.700000px;}
.y50{bottom:77.850000px;}
.y1f4{bottom:78.300000px;}
.ya1{bottom:78.435000px;}
.yda{bottom:79.050000px;}
.y27{bottom:79.650000px;}
.y83{bottom:80.250000px;}
.yf4{bottom:83.250000px;}
.y12b{bottom:84.000000px;}
.y1c9{bottom:84.600000px;}
.y145{bottom:85.500000px;}
.y111{bottom:88.350000px;}
.y19c{bottom:90.750000px;}
.y146{bottom:91.800000px;}
.y26{bottom:92.250000px;}
.y175{bottom:93.750000px;}
.yb0{bottom:95.850000px;}
.y1c8{bottom:96.000000px;}
.yd9{bottom:97.350000px;}
.y4f{bottom:98.100000px;}
.y87{bottom:98.400000px;}
.y1f3{bottom:98.550000px;}
.y14c{bottom:100.005000px;}
.y20a{bottom:100.050000px;}
.y199{bottom:100.500000px;}
.y144{bottom:101.400000px;}
.yf3{bottom:103.500000px;}
.y12a{bottom:104.100000px;}
.y110{bottom:108.600000px;}
.y71{bottom:108.900000px;}
.y174{bottom:114.000000px;}
.y14b{bottom:114.105000px;}
.yd8{bottom:115.500000px;}
.y1c7{bottom:116.250000px;}
.y85{bottom:116.550000px;}
.y142{bottom:117.300000px;}
.y4e{bottom:118.350000px;}
.y1f2{bottom:118.650000px;}
.y9a{bottom:120.000000px;}
.y209{bottom:120.300000px;}
.y198{bottom:120.750000px;}
.y147{bottom:123.000000px;}
.yf2{bottom:123.750000px;}
.y129{bottom:124.350000px;}
.y70{bottom:124.800000px;}
.y25{bottom:127.500000px;}
.y14a{bottom:128.205000px;}
.y10f{bottom:128.850000px;}
.y19b{bottom:132.600000px;}
.y141{bottom:133.350000px;}
.yd7{bottom:133.650000px;}
.y173{bottom:134.250000px;}
.y7c{bottom:134.850000px;}
.y1c6{bottom:136.500000px;}
.y4d{bottom:138.450000px;}
.y56{bottom:138.600000px;}
.y1f1{bottom:138.900000px;}
.y208{bottom:140.550000px;}
.y6f{bottom:140.700000px;}
.y197{bottom:141.000000px;}
.yf1{bottom:144.000000px;}
.y128{bottom:144.600000px;}
.y10e{bottom:145.200000px;}
.y24{bottom:147.750000px;}
.y140{bottom:148.500000px;}
.yd6{bottom:151.950000px;}
.y81{bottom:153.000000px;}
.y172{bottom:154.500000px;}
.y1ef{bottom:155.400000px;}
.y6c{bottom:156.600000px;}
.y4c{bottom:158.700000px;}
.y99{bottom:158.850000px;}
.y207{bottom:160.800000px;}
.y196{bottom:161.250000px;}
.yf0{bottom:164.250000px;}
.y13c{bottom:164.400000px;}
.y127{bottom:164.850000px;}
.y10c{bottom:167.550000px;}
.y23{bottom:168.045000px;}
.yd5{bottom:170.130000px;}
.y7f{bottom:171.180000px;}
.y1ed{bottom:172.530000px;}
.y171{bottom:174.795000px;}
.y1c5{bottom:176.895000px;}
.y4b{bottom:178.995000px;}
.y206{bottom:181.080000px;}
.yef{bottom:184.530000px;}
.y126{bottom:185.145000px;}
.y69{bottom:187.845000px;}
.y22{bottom:188.130000px;}
.yd4{bottom:188.280000px;}
.y7a{bottom:189.480000px;}
.y10a{bottom:189.930000px;}
.y1ec{bottom:190.230000px;}
.y53{bottom:194.730000px;}
.y170{bottom:195.045000px;}
.y195{bottom:196.095000px;}
.y1c4{bottom:197.145000px;}
.y4a{bottom:199.245000px;}
.y205{bottom:201.330000px;}
.y150{bottom:202.800000px;}
.yee{bottom:204.780000px;}
.y125{bottom:205.395000px;}
.yd3{bottom:206.595000px;}
.y77{bottom:207.630000px;}
.y21{bottom:208.380000px;}
.y194{bottom:210.195000px;}
.y1eb{bottom:211.380000px;}
.y109{bottom:211.530000px;}
.y16f{bottom:215.295000px;}
.y13b{bottom:215.595000px;}
.y14f{bottom:216.900000px;}
.y1c3{bottom:217.395000px;}
.y65{bottom:218.880000px;}
.y49{bottom:219.495000px;}
.y204{bottom:221.445000px;}
.yd2{bottom:224.730000px;}
.yed{bottom:224.880000px;}
.y124{bottom:225.645000px;}
.y20{bottom:228.630000px;}
.y1ea{bottom:229.980000px;}
.y107{bottom:233.880000px;}
.y16e{bottom:235.545000px;}
.y14e{bottom:235.980000px;}
.y13a{bottom:236.280000px;}
.y1c2{bottom:237.645000px;}
.y48{bottom:239.745000px;}
.y203{bottom:241.695000px;}
.y76{bottom:242.880000px;}
.yec{bottom:245.130000px;}
.y123{bottom:245.895000px;}
.y1f{bottom:248.880000px;}
.y14d{bottom:250.095000px;}
.y1e9{bottom:250.230000px;}
.y16d{bottom:255.795000px;}
.y106{bottom:256.230000px;}
.y139{bottom:257.130000px;}
.y1c1{bottom:257.895000px;}
.y47{bottom:259.995000px;}
.yd1{bottom:261.195000px;}
.y202{bottom:261.945000px;}
.y64{bottom:263.130000px;}
.yeb{bottom:265.380000px;}
.y122{bottom:266.145000px;}
.y1e{bottom:269.130000px;}
.y1e8{bottom:270.480000px;}
.y16c{bottom:274.845000px;}
.y1c0{bottom:276.945000px;}
.y137{bottom:277.845000px;}
.y105{bottom:278.595000px;}
.yd0{bottom:279.345000px;}
.y46{bottom:280.245000px;}
.y201{bottom:282.195000px;}
.yea{bottom:285.630000px;}
.y121{bottom:286.395000px;}
.y1d{bottom:289.380000px;}
.y16b{bottom:289.995000px;}
.y1e7{bottom:290.595000px;}
.y151{bottom:291.975000px;}
.y1bf{bottom:292.095000px;}
.y187{bottom:293.880000px;}
.y136{bottom:298.695000px;}
.y45{bottom:300.495000px;}
.y103{bottom:300.945000px;}
.y200{bottom:302.445000px;}
.y16a{bottom:302.595000px;}
.yc5{bottom:303.495000px;}
.ye9{bottom:305.880000px;}
.y120{bottom:306.645000px;}
.y1be{bottom:307.380000px;}
.y1c{bottom:309.630000px;}
.y1e6{bottom:310.845000px;}
.y186{bottom:314.130000px;}
.y169{bottom:317.730000px;}
.y1ff{bottom:318.945000px;}
.y134{bottom:319.380000px;}
.y1bd{bottom:319.980000px;}
.y44{bottom:320.745000px;}
.yc4{bottom:322.095000px;}
.y101{bottom:323.280000px;}
.ye8{bottom:326.130000px;}
.y11f{bottom:326.745000px;}
.y1b{bottom:329.880000px;}
.y1e5{bottom:331.095000px;}
.y190{bottom:331.845000px;}
.y168{bottom:332.880000px;}
.y185{bottom:334.380000px;}
.y133{bottom:340.230000px;}
.y1bc{bottom:340.845000px;}
.y43{bottom:340.995000px;}
.yc3{bottom:342.345000px;}
.yff{bottom:345.630000px;}
.ye7{bottom:346.380000px;}
.y11e{bottom:346.995000px;}
.y167{bottom:348.195000px;}
.y1a{bottom:350.130000px;}
.y1e4{bottom:351.345000px;}
.y18f{bottom:352.095000px;}
.y184{bottom:354.630000px;}
.y57{bottom:355.980000px;}
.y12f{bottom:360.945000px;}
.y42{bottom:361.245000px;}
.y1bb{bottom:361.845000px;}
.yc2{bottom:362.595000px;}
.y166{bottom:363.345000px;}
.y1fe{bottom:364.845000px;}
.ye6{bottom:366.630000px;}
.y11d{bottom:367.245000px;}
.yfc{bottom:367.980000px;}
.y19{bottom:370.380000px;}
.y1e3{bottom:371.595000px;}
.y18e{bottom:372.345000px;}
.y183{bottom:374.880000px;}
.y165{bottom:378.480000px;}
.y41{bottom:381.345000px;}
.y63{bottom:381.495000px;}
.y1b9{bottom:382.695000px;}
.yc1{bottom:382.845000px;}
.ye5{bottom:386.925000px;}
.y11c{bottom:387.525000px;}
.y1f6{bottom:388.275000px;}
.y18{bottom:390.675000px;}
.y1e2{bottom:391.875000px;}
.y18d{bottom:392.625000px;}
.y164{bottom:393.675000px;}
.y182{bottom:395.175000px;}
.y40{bottom:401.625000px;}
.y62{bottom:401.775000px;}
.yc0{bottom:403.125000px;}
.yfb{bottom:403.275000px;}
.y1b8{bottom:403.725000px;}
.y12e{bottom:404.775000px;}
.ye4{bottom:407.175000px;}
.y11b{bottom:407.775000px;}
.y163{bottom:408.825000px;}
.y17{bottom:410.775000px;}
.y1e1{bottom:412.125000px;}
.y18c{bottom:412.875000px;}
.y181{bottom:415.425000px;}
.y1fa{bottom:417.825000px;}
.y3f{bottom:421.875000px;}
.y61{bottom:422.025000px;}
.ybf{bottom:423.375000px;}
.y1b7{bottom:424.575000px;}
.y15f{bottom:424.725000px;}
.ye3{bottom:427.425000px;}
.y11a{bottom:428.025000px;}
.y16{bottom:431.025000px;}
.y1e0{bottom:432.375000px;}
.y18b{bottom:433.125000px;}
.y180{bottom:435.675000px;}
.y75{bottom:437.625000px;}
.y3e{bottom:442.125000px;}
.ybe{bottom:443.475000px;}
.yfa{bottom:443.925000px;}
.y1b6{bottom:445.575000px;}
.y119{bottom:448.275000px;}
.y15{bottom:451.275000px;}
.y17e{bottom:452.175000px;}
.y1df{bottom:452.625000px;}
.y18a{bottom:453.375000px;}
.yf9{bottom:462.075000px;}
.y3d{bottom:462.375000px;}
.ybd{bottom:463.725000px;}
.y1b5{bottom:466.425000px;}
.y118{bottom:468.525000px;}
.y14{bottom:471.525000px;}
.y1de{bottom:472.875000px;}
.y17c{bottom:473.325000px;}
.yf8{bottom:480.225000px;}
.y3c{bottom:482.625000px;}
.y193{bottom:482.925000px;}
.ybc{bottom:483.975000px;}
.y1f5{bottom:484.275000px;}
.y1b4{bottom:487.425000px;}
.y189{bottom:488.175000px;}
.y117{bottom:488.775000px;}
.y13{bottom:491.775000px;}
.y1dd{bottom:493.125000px;}
.y17a{bottom:493.725000px;}
.y15e{bottom:494.175000px;}
.ye2{bottom:501.825000px;}
.y188{bottom:502.275000px;}
.y3b{bottom:502.875000px;}
.ybb{bottom:504.225000px;}
.y1b3{bottom:508.275000px;}
.y116{bottom:509.025000px;}
.y12{bottom:512.025000px;}
.y15d{bottom:512.775000px;}
.y1dc{bottom:513.225000px;}
.y178{bottom:514.275000px;}
.y192{bottom:517.725000px;}
.ye1{bottom:520.425000px;}
.y3a{bottom:523.125000px;}
.yba{bottom:524.475000px;}
.y115{bottom:529.275000px;}
.y191{bottom:531.825000px;}
.y11{bottom:532.275000px;}
.y15c{bottom:533.025000px;}
.y1db{bottom:533.475000px;}
.ye0{bottom:540.675000px;}
.y39{bottom:543.375000px;}
.yb9{bottom:544.725000px;}
.y177{bottom:545.025000px;}
.y114{bottom:549.525000px;}
.y1b2{bottom:550.125000px;}
.y15b{bottom:552.075000px;}
.y10{bottom:552.525000px;}
.y1da{bottom:553.725000px;}
.ydf{bottom:560.925000px;}
.y38{bottom:563.625000px;}
.yb8{bottom:564.975000px;}
.y15a{bottom:567.225000px;}
.y113{bottom:569.625000px;}
.y1b1{bottom:571.125000px;}
.yf{bottom:572.775000px;}
.y1d9{bottom:573.975000px;}
.y159{bottom:579.825000px;}
.yde{bottom:581.175000px;}
.y97{bottom:582.675000px;}
.y37{bottom:583.875000px;}
.yb7{bottom:585.225000px;}
.y12d{bottom:586.125000px;}
.y1b0{bottom:591.975000px;}
.ye{bottom:593.025000px;}
.y1d8{bottom:594.225000px;}
.y158{bottom:594.975000px;}
.y96{bottom:597.825000px;}
.ydd{bottom:601.470000px;}
.y36{bottom:604.005000px;}
.y60{bottom:604.155000px;}
.yab{bottom:604.455000px;}
.yb6{bottom:605.505000px;}
.y155{bottom:610.920000px;}
.y95{bottom:613.005000px;}
.y1af{bottom:613.020000px;}
.yd{bottom:613.320000px;}
.y1d7{bottom:614.505000px;}
.ydc{bottom:621.570000px;}
.ycf{bottom:622.005000px;}
.yaf{bottom:622.755000px;}
.y35{bottom:624.255000px;}
.y5f{bottom:624.405000px;}
.y112{bottom:625.920000px;}
.y94{bottom:628.155000px;}
.y1ad{bottom:633.870000px;}
.y1d6{bottom:634.755000px;}
.yc{bottom:635.655000px;}
.yce{bottom:640.155000px;}
.yae{bottom:640.905000px;}
.ydb{bottom:641.820000px;}
.y93{bottom:643.320000px;}
.y34{bottom:644.505000px;}
.y5e{bottom:644.655000px;}
.y154{bottom:646.170000px;}
.y1ac{bottom:654.855000px;}
.y1d5{bottom:655.005000px;}
.yb{bottom:655.755000px;}
.ycd{bottom:658.320000px;}
.y92{bottom:658.620000px;}
.ya0{bottom:659.070000px;}
.y33{bottom:664.755000px;}
.y91{bottom:673.755000px;}
.ya{bottom:673.920000px;}
.y1d4{bottom:675.255000px;}
.y1ab{bottom:675.705000px;}
.ycc{bottom:676.605000px;}
.ya9{bottom:677.355000px;}
.y32{bottom:685.005000px;}
.y90{bottom:688.905000px;}
.y8{bottom:694.170000px;}
.yf7{bottom:694.755000px;}
.yca{bottom:694.770000px;}
.ya8{bottom:695.505000px;}
.y1aa{bottom:696.705000px;}
.y9{bottom:697.905000px;}
.y8f{bottom:704.070000px;}
.y31{bottom:705.255000px;}
.yf6{bottom:712.905000px;}
.ya7{bottom:713.655000px;}
.y7{bottom:715.320000px;}
.y1d3{bottom:715.755000px;}
.yb5{bottom:716.370000px;}
.y1a9{bottom:717.570000px;}
.y8e{bottom:719.205000px;}
.y30{bottom:725.505000px;}
.yc9{bottom:731.220000px;}
.ya5{bottom:731.970000px;}
.y1d1{bottom:732.120000px;}
.y8d{bottom:734.505000px;}
.y1a7{bottom:738.570000px;}
.y6{bottom:739.620000px;}
.y2f{bottom:745.755000px;}
.yc8{bottom:749.355000px;}
.y8c{bottom:749.655000px;}
.y9f{bottom:750.105000px;}
.y1cf{bottom:755.370000px;}
.y1a6{bottom:759.405000px;}
.y59{bottom:761.505000px;}
.y5{bottom:763.905000px;}
.y8b{bottom:764.820000px;}
.y2e{bottom:766.005000px;}
.yc7{bottom:767.505000px;}
.y9c{bottom:768.255000px;}
.yb4{bottom:769.620000px;}
.y1cd{bottom:777.870000px;}
.y8a{bottom:779.955000px;}
.y1a4{bottom:780.255000px;}
.yc6{bottom:785.820000px;}
.y2d{bottom:786.255000px;}
.yb3{bottom:787.920000px;}
.y4{bottom:788.205000px;}
.y89{bottom:795.120000px;}
.y1cb{bottom:800.355000px;}
.y1a1{bottom:801.255000px;}
.y9b{bottom:803.955000px;}
.y2c{bottom:806.505000px;}
.y88{bottom:810.255000px;}
.y3{bottom:813.420000px;}
.y2{bottom:831.750000px;}
.y1{bottom:849.900000px;}
.y2a{bottom:851.400000px;}
.h27{height:14.850000px;}
.h1b{height:15.150000px;}
.h34{height:15.187500px;}
.h2f{height:15.300000px;}
.h45{height:16.200000px;}
.h47{height:16.387500px;}
.h46{height:16.950000px;}
.h1e{height:17.400000px;}
.h21{height:17.437500px;}
.h20{height:17.550000px;}
.h2a{height:17.587500px;}
.h37{height:19.800000px;}
.h2c{height:19.950000px;}
.h2d{height:20.100000px;}
.h10{height:20.250000px;}
.h38{height:20.400000px;}
.h3e{height:20.835000px;}
.h3a{height:20.850000px;}
.h3d{height:20.887500px;}
.h3c{height:21.000000px;}
.h3f{height:21.037500px;}
.h39{height:21.150000px;}
.h28{height:21.600000px;}
.h29{height:21.637500px;}
.h42{height:21.735000px;}
.h41{height:21.787500px;}
.h43{height:22.485000px;}
.h4c{height:22.500000px;}
.h4b{height:22.687500px;}
.h44{height:23.235000px;}
.h7{height:23.239687px;}
.h4d{height:23.400000px;}
.h36{height:25.800000px;}
.h5{height:26.314453px;}
.h9{height:27.231445px;}
.h40{height:28.500000px;}
.h4a{height:29.550000px;}
.h1d{height:29.850000px;}
.h18{height:30.300000px;}
.h2e{height:30.337500px;}
.h33{height:30.435000px;}
.h1c{height:30.450000px;}
.h1a{height:30.487500px;}
.h6{height:30.700195px;}
.h17{height:31.750488px;}
.h19{height:32.893066px;}
.h16{height:33.134766px;}
.h32{height:33.150000px;}
.h25{height:34.950000px;}
.hc{height:35.085938px;}
.hb{height:35.179688px;}
.h12{height:35.287500px;}
.h14{height:37.705078px;}
.h15{height:38.850000px;}
.h24{height:39.471680px;}
.h2{height:39.577148px;}
.h2b{height:40.237500px;}
.h23{height:40.500000px;}
.h3b{height:41.850000px;}
.ha{height:41.894531px;}
.h4{height:43.857422px;}
.h1{height:43.974609px;}
.hf{height:44.179688px;}
.he{height:45.826172px;}
.hd{height:46.552734px;}
.h8{height:50.273438px;}
.h11{height:50.566406px;}
.h3{height:53.015625px;}
.h22{height:53.850000px;}
.h1f{height:53.887500px;}
.h13{height:60.637500px;}
.h49{height:61.500000px;}
.h35{height:64.500000px;}
.h31{height:67.734375px;}
.h26{height:90.300000px;}
.h48{height:91.050000px;}
.h30{height:325.800000px;}
.h0{height:918.000000px;}
.w40{width:29.400000px;}
.w29{width:36.135000px;}
.w2a{width:40.500000px;}
.w3a{width:47.250000px;}
.w26{width:54.000000px;}
.w35{width:60.750000px;}
.w4a{width:60.787500px;}
.w4{width:61.050000px;}
.w4c{width:62.250000px;}
.w4f{width:62.287500px;}
.w2f{width:63.600000px;}
.w4b{width:66.000000px;}
.wc{width:66.150000px;}
.w21{width:66.637500px;}
.wf{width:67.350000px;}
.w28{width:67.500000px;}
.w22{width:67.537500px;}
.w19{width:67.650000px;}
.w50{width:69.000000px;}
.w4d{width:69.037500px;}
.wa{width:69.900000px;}
.w2e{width:72.937500px;}
.w34{width:74.287500px;}
.w2c{width:74.437500px;}
.w56{width:75.300000px;}
.w8{width:76.237500px;}
.w9{width:78.150000px;}
.w24{width:78.637500px;}
.w30{width:81.037500px;}
.w3e{width:83.400000px;}
.w33{width:87.750000px;}
.w3d{width:87.787500px;}
.w32{width:90.037500px;}
.w31{width:92.250000px;}
.w54{width:92.400000px;}
.wb{width:93.337500px;}
.w1a{width:94.350000px;}
.w17{width:94.537500px;}
.wd{width:98.287500px;}
.w42{width:101.287500px;}
.w23{width:103.650000px;}
.w55{width:105.487500px;}
.w25{width:108.000000px;}
.w2d{width:109.200000px;}
.w49{width:109.537500px;}
.w1f{width:113.400000px;}
.w41{width:114.750000px;}
.w47{width:121.537500px;}
.w10{width:121.687500px;}
.w18{width:121.837500px;}
.w48{width:128.250000px;}
.w58{width:128.287500px;}
.w1c{width:128.737500px;}
.w7{width:139.800000px;}
.w43{width:141.750000px;}
.w57{width:148.500000px;}
.w51{width:148.537500px;}
.w1d{width:150.930000px;}
.w15{width:155.145000px;}
.w2b{width:155.400000px;}
.w13{width:156.150000px;}
.w4e{width:168.750000px;}
.w46{width:168.780000px;}
.w44{width:175.530000px;}
.w3c{width:175.545000px;}
.w53{width:180.645000px;}
.w39{width:182.280000px;}
.w5a{width:182.295000px;}
.w12{width:188.745000px;}
.w1e{width:190.530000px;}
.w3f{width:193.395000px;}
.w14{width:195.195000px;}
.w52{width:213.930000px;}
.w20{width:220.245000px;}
.w3b{width:243.045000px;}
.we{width:252.795000px;}
.w16{width:283.830000px;}
.w1b{width:341.475000px;}
.w59{width:351.075000px;}
.w5{width:424.470000px;}
.w6{width:479.025000px;}
.w3{width:479.070000px;}
.w45{width:528.120000px;}
.w37{width:530.400000px;}
.w38{width:530.475000px;}
.w27{width:533.370000px;}
.w11{width:540.120000px;}
.w36{width:553.620000px;}
.w2{width:701.999979px;}
.w1{width:701.999990px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.x16{left:7.950000px;}
.x1f{left:9.750000px;}
.x30{left:10.950000px;}
.x1e{left:12.435000px;}
.x63{left:13.485000px;}
.x2e{left:15.450000px;}
.x2a{left:16.845000px;}
.x3e{left:18.150000px;}
.x27{left:19.950000px;}
.x25{left:21.945000px;}
.x22{left:22.950000px;}
.x36{left:24.900000px;}
.x2f{left:26.550000px;}
.x24{left:28.545000px;}
.x14{left:29.850000px;}
.x28{left:31.500000px;}
.x79{left:32.550000px;}
.x2b{left:33.900000px;}
.x53{left:35.700000px;}
.x66{left:37.080000px;}
.x2c{left:38.280000px;}
.x29{left:40.230000px;}
.x4b{left:41.850000px;}
.x32{left:43.087500px;}
.x51{left:45.345000px;}
.x4a{left:47.145000px;}
.x1c{left:48.592500px;}
.x38{left:50.145000px;}
.x41{left:51.150000px;}
.x4d{left:52.350000px;}
.x1{left:53.999990px;}
.x2d{left:55.942500px;}
.x31{left:57.007500px;}
.xc{left:58.799990px;}
.x18{left:62.707500px;}
.x58{left:64.035000px;}
.x5{left:68.399990px;}
.x4{left:69.599990px;}
.x3{left:71.249990px;}
.x3f{left:73.042500px;}
.x43{left:79.080000px;}
.x89{left:80.999990px;}
.x17{left:83.400000px;}
.x45{left:84.945000px;}
.x71{left:86.550000px;}
.x46{left:87.780000px;}
.x47{left:89.145000px;}
.x44{left:90.480000px;}
.x55{left:96.330000px;}
.x4e{left:98.145000px;}
.x34{left:103.965000px;}
.xa{left:108.037490px;}
.x1b{left:114.637500px;}
.x3b{left:120.457500px;}
.x59{left:121.537500px;}
.x64{left:135.037500px;}
.x33{left:152.280000px;}
.x69{left:156.600000px;}
.xf{left:162.029990px;}
.x19{left:170.707500px;}
.x9{left:182.579990px;}
.x5d{left:189.045000px;}
.x11{left:197.444990px;}
.x74{left:201.029990px;}
.x80{left:202.545000px;}
.x52{left:204.945000px;}
.x48{left:209.145000px;}
.x54{left:221.445000px;}
.x72{left:222.795000px;}
.x6{left:224.144979px;}
.x5a{left:225.195000px;}
.x7{left:227.594990px;}
.x6f{left:229.545000px;}
.x6a{left:233.550000px;}
.x6c{left:236.295000px;}
.x39{left:247.575000px;}
.x85{left:249.795000px;}
.x3d{left:251.775000px;}
.x1d{left:254.445000px;}
.x82{left:256.545000px;}
.x10{left:257.744990px;}
.x5f{left:263.445000px;}
.x8{left:268.529990px;}
.xb{left:270.029990px;}
.x88{left:272.294990px;}
.x76{left:274.244990px;}
.x7c{left:276.795000px;}
.x3c{left:277.994990px;}
.x6d{left:283.545000px;}
.x40{left:296.775000px;}
.x5b{left:303.825000px;}
.x6b{left:309.525000px;}
.xe{left:317.624990px;}
.x2{left:324.074990px;}
.x20{left:330.675000px;}
.x60{left:337.875000px;}
.x67{left:339.225000px;}
.x78{left:344.325000px;}
.x68{left:348.675000px;}
.x6e{left:357.825000px;}
.x5e{left:371.325000px;}
.x83{left:378.075000px;}
.x4f{left:395.475000px;}
.x4c{left:398.625000px;}
.x70{left:400.725000px;}
.x35{left:405.075000px;}
.x21{left:408.825000px;}
.x7a{left:410.325000px;}
.x5c{left:411.825000px;}
.x81{left:416.475000px;}
.x87{left:418.575000px;}
.x56{left:441.675000px;}
.x61{left:447.075000px;}
.x42{left:452.925000px;}
.x7d{left:464.325000px;}
.x50{left:465.375000px;}
.x84{left:470.475000px;}
.x37{left:472.425000px;}
.x23{left:478.725000px;}
.x49{left:492.975000px;}
.x86{left:499.620000px;}
.x57{left:508.320000px;}
.x62{left:520.020000px;}
.x13{left:522.254990px;}
.x7e{left:526.620000px;}
.x15{left:533.070000px;}
.x73{left:535.754990px;}
.x7b{left:541.620000px;}
.x65{left:546.870000px;}
.x77{left:557.219990px;}
.x75{left:559.154990px;}
.x26{left:572.070000px;}
.x12{left:576.254990px;}
.x1a{left:587.070000px;}
.x7f{left:595.620000px;}
.x3a{left:608.819990px;}
.xd{left:636.119990px;}
@media print{
.v2{vertical-align:-10.613333pt;}
.v5{vertical-align:-5.333333pt;}
.v4{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.666667pt;}
.v1{vertical-align:13.280000pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.173333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.093333pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000003pt;}
.ls7{letter-spacing:0.005333pt;}
.ls18{letter-spacing:0.013333pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.093333pt;}
.ls16{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.186667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.250667pt;}
.ls8{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.850667pt;}
.lsf{letter-spacing:2.362667pt;}
.lse{letter-spacing:2.384000pt;}
.ls2{letter-spacing:9.600000pt;}
.lsc{letter-spacing:14.117333pt;}
.ls9{letter-spacing:16.784000pt;}
.lsb{letter-spacing:16.837333pt;}
.ls3{letter-spacing:41.173333pt;}
.ls10{letter-spacing:41.280000pt;}
.ls1f{letter-spacing:41.333333pt;}
.ls21{letter-spacing:56.613333pt;}
.ls20{letter-spacing:56.773333pt;}
.ws1e{word-spacing:-53.333333pt;}
.ws5{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.493333pt;}
.ws19{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws20{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.173333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.733333pt;}
.ws9{word-spacing:-11.573333pt;}
.ws7{word-spacing:-10.266667pt;}
.ws18{word-spacing:-10.160000pt;}
.ws16{word-spacing:-10.106667pt;}
.ws15{word-spacing:-10.093333pt;}
.ws6{word-spacing:-10.000000pt;}
.wsa{word-spacing:-9.920000pt;}
.ws1c{word-spacing:-9.906667pt;}
.ws1d{word-spacing:-9.840000pt;}
.ws1b{word-spacing:-9.826667pt;}
.ws1a{word-spacing:-9.333333pt;}
.ws13{word-spacing:-8.464000pt;}
.ws1{word-spacing:-8.000000pt;}
.wsb{word-spacing:-6.666667pt;}
.ws17{word-spacing:-6.000000pt;}
.ws12{word-spacing:-0.373333pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.106667pt;}
.wsf{word-spacing:0.160000pt;}
.wse{word-spacing:0.266667pt;}
.ws11{word-spacing:0.480000pt;}
.ws14{word-spacing:0.799992pt;}
.ws10{word-spacing:0.906667pt;}
.wsc{word-spacing:2.773333pt;}
._b{margin-left:-4.074667pt;}
._a{margin-left:-2.773333pt;}
._13{margin-left:-1.813333pt;}
._1{margin-left:-0.922667pt;}
._0{width:0.896000pt;}
._f{width:2.080000pt;}
._1a{width:3.061333pt;}
._17{width:4.000000pt;}
._18{width:4.960000pt;}
._19{width:6.400000pt;}
._5{width:7.946667pt;}
._6{width:9.173333pt;}
._1c{width:10.250667pt;}
._c{width:11.840000pt;}
._26{width:13.440000pt;}
._9{width:14.453333pt;}
._1b{width:15.642667pt;}
._7{width:16.586667pt;}
._8{width:17.733333pt;}
._10{width:18.933333pt;}
._27{width:19.893333pt;}
._d{width:20.853333pt;}
._e{width:21.866667pt;}
._21{width:22.933333pt;}
._11{width:23.893333pt;}
._12{width:24.853333pt;}
._14{width:25.946667pt;}
._16{width:27.306667pt;}
._1d{width:28.480000pt;}
._24{width:30.186667pt;}
._25{width:31.146667pt;}
._15{width:32.960000pt;}
._2f{width:33.877333pt;}
._20{width:34.933333pt;}
._1f{width:36.000000pt;}
._23{width:37.013333pt;}
._30{width:38.144000pt;}
._29{width:41.066667pt;}
._2a{width:41.973333pt;}
._2e{width:42.933333pt;}
._2d{width:43.957333pt;}
._22{width:45.973333pt;}
._2c{width:47.520000pt;}
._1e{width:58.400000pt;}
._36{width:66.986667pt;}
._37{width:67.946667pt;}
._31{width:74.026667pt;}
._32{width:97.493333pt;}
._38{width:123.253333pt;}
._3e{width:148.160000pt;}
._2b{width:165.466667pt;}
._28{width:178.640000pt;}
._3b{width:190.186667pt;}
._3a{width:191.093333pt;}
._33{width:194.346667pt;}
._34{width:195.253333pt;}
._3c{width:216.960000pt;}
._3d{width:217.973333pt;}
._2{width:280.869333pt;}
._4{width:330.293333pt;}
._3{width:426.458667pt;}
._35{width:617.226667pt;}
._39{width:776.480000pt;}
.fsa{font-size:24.000000pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.133333pt;}
.y6b{bottom:2.920000pt;}
.y6e{bottom:2.933333pt;}
.y1a2{bottom:2.946667pt;}
.y13f{bottom:2.960000pt;}
.y143{bottom:3.066667pt;}
.yfe{bottom:3.080000pt;}
.ycb{bottom:3.866667pt;}
.y79{bottom:3.880000pt;}
.y1f0{bottom:4.000000pt;}
.y1ee{bottom:4.533333pt;}
.ya6{bottom:4.920000pt;}
.y82{bottom:4.933333pt;}
.y7b{bottom:4.946667pt;}
.yaa{bottom:5.053333pt;}
.y86{bottom:5.066667pt;}
.y80{bottom:5.080000pt;}
.y138{bottom:5.200000pt;}
.y135{bottom:5.213333pt;}
.y5c{bottom:5.333333pt;}
.y54{bottom:5.346667pt;}
.y1ae{bottom:5.453333pt;}
.y1a8{bottom:5.466667pt;}
.y1a3{bottom:5.480000pt;}
.y1ba{bottom:5.493333pt;}
.y55{bottom:5.600000pt;}
.y1a5{bottom:5.613333pt;}
.y104{bottom:5.853333pt;}
.y102{bottom:5.866667pt;}
.y100{bottom:5.880000pt;}
.y1ce{bottom:6.000000pt;}
.y1cc{bottom:6.013333pt;}
.yb1{bottom:6.133333pt;}
.y1d0{bottom:6.253333pt;}
.yad{bottom:6.400000pt;}
.y1d2{bottom:6.666667pt;}
.y17b{bottom:7.066667pt;}
.y132{bottom:7.333333pt;}
.y17d{bottom:7.600000pt;}
.y179{bottom:7.733333pt;}
.y19f{bottom:8.000000pt;}
.y17f{bottom:8.266667pt;}
.y108{bottom:8.666667pt;}
.y10b{bottom:8.680000pt;}
.y10d{bottom:8.706667pt;}
.y1ca{bottom:8.800000pt;}
.y1fd{bottom:9.333333pt;}
.y156{bottom:9.733333pt;}
.yfd{bottom:9.746667pt;}
.y13d{bottom:9.760000pt;}
.y1fc{bottom:10.133333pt;}
.y162{bottom:11.466667pt;}
.y9e{bottom:12.813333pt;}
.y67{bottom:13.613333pt;}
.y130{bottom:14.120000pt;}
.y19d{bottom:14.800000pt;}
.y149{bottom:15.700000pt;}
.y6a{bottom:16.386667pt;}
.y13e{bottom:16.426667pt;}
.y157{bottom:16.520000pt;}
.y73{bottom:16.533333pt;}
.y6d{bottom:16.573333pt;}
.y153{bottom:16.933333pt;}
.y78{bottom:17.213333pt;}
.y58{bottom:17.346667pt;}
.y9d{bottom:20.546667pt;}
.y131{bottom:20.826667pt;}
.y19e{bottom:21.600000pt;}
.y7e{bottom:21.733333pt;}
.yac{bottom:21.880000pt;}
.ya4{bottom:23.186667pt;}
.y1f9{bottom:23.200000pt;}
.y5b{bottom:23.333333pt;}
.y98{bottom:23.600000pt;}
.y160{bottom:24.933333pt;}
.y66{bottom:25.213333pt;}
.y2b{bottom:27.066667pt;}
.y52{bottom:27.333333pt;}
.y148{bottom:28.233333pt;}
.y1f8{bottom:36.666667pt;}
.y1fb{bottom:37.066667pt;}
.y84{bottom:37.333333pt;}
.y7d{bottom:37.373333pt;}
.y161{bottom:38.400000pt;}
.ya3{bottom:38.666667pt;}
.y5a{bottom:41.213333pt;}
.y5d{bottom:41.480000pt;}
.y51{bottom:46.266667pt;}
.y152{bottom:47.866667pt;}
.y1f7{bottom:50.266667pt;}
.y29{bottom:50.800000pt;}
.yb2{bottom:52.800000pt;}
.y19a{bottom:53.333333pt;}
.ya2{bottom:54.266667pt;}
.y74{bottom:54.933333pt;}
.yf5{bottom:56.000000pt;}
.y12c{bottom:56.666667pt;}
.y1a0{bottom:61.333333pt;}
.y176{bottom:65.333333pt;}
.y28{bottom:66.133333pt;}
.y72{bottom:69.066667pt;}
.y50{bottom:69.200000pt;}
.y1f4{bottom:69.600000pt;}
.ya1{bottom:69.720000pt;}
.yda{bottom:70.266667pt;}
.y27{bottom:70.800000pt;}
.y83{bottom:71.333333pt;}
.yf4{bottom:74.000000pt;}
.y12b{bottom:74.666667pt;}
.y1c9{bottom:75.200000pt;}
.y145{bottom:76.000000pt;}
.y111{bottom:78.533333pt;}
.y19c{bottom:80.666667pt;}
.y146{bottom:81.600000pt;}
.y26{bottom:82.000000pt;}
.y175{bottom:83.333333pt;}
.yb0{bottom:85.200000pt;}
.y1c8{bottom:85.333333pt;}
.yd9{bottom:86.533333pt;}
.y4f{bottom:87.200000pt;}
.y87{bottom:87.466667pt;}
.y1f3{bottom:87.600000pt;}
.y14c{bottom:88.893333pt;}
.y20a{bottom:88.933333pt;}
.y199{bottom:89.333333pt;}
.y144{bottom:90.133333pt;}
.yf3{bottom:92.000000pt;}
.y12a{bottom:92.533333pt;}
.y110{bottom:96.533333pt;}
.y71{bottom:96.800000pt;}
.y174{bottom:101.333333pt;}
.y14b{bottom:101.426667pt;}
.yd8{bottom:102.666667pt;}
.y1c7{bottom:103.333333pt;}
.y85{bottom:103.600000pt;}
.y142{bottom:104.266667pt;}
.y4e{bottom:105.200000pt;}
.y1f2{bottom:105.466667pt;}
.y9a{bottom:106.666667pt;}
.y209{bottom:106.933333pt;}
.y198{bottom:107.333333pt;}
.y147{bottom:109.333333pt;}
.yf2{bottom:110.000000pt;}
.y129{bottom:110.533333pt;}
.y70{bottom:110.933333pt;}
.y25{bottom:113.333333pt;}
.y14a{bottom:113.960000pt;}
.y10f{bottom:114.533333pt;}
.y19b{bottom:117.866667pt;}
.y141{bottom:118.533333pt;}
.yd7{bottom:118.800000pt;}
.y173{bottom:119.333333pt;}
.y7c{bottom:119.866667pt;}
.y1c6{bottom:121.333333pt;}
.y4d{bottom:123.066667pt;}
.y56{bottom:123.200000pt;}
.y1f1{bottom:123.466667pt;}
.y208{bottom:124.933333pt;}
.y6f{bottom:125.066667pt;}
.y197{bottom:125.333333pt;}
.yf1{bottom:128.000000pt;}
.y128{bottom:128.533333pt;}
.y10e{bottom:129.066667pt;}
.y24{bottom:131.333333pt;}
.y140{bottom:132.000000pt;}
.yd6{bottom:135.066667pt;}
.y81{bottom:136.000000pt;}
.y172{bottom:137.333333pt;}
.y1ef{bottom:138.133333pt;}
.y6c{bottom:139.200000pt;}
.y4c{bottom:141.066667pt;}
.y99{bottom:141.200000pt;}
.y207{bottom:142.933333pt;}
.y196{bottom:143.333333pt;}
.yf0{bottom:146.000000pt;}
.y13c{bottom:146.133333pt;}
.y127{bottom:146.533333pt;}
.y10c{bottom:148.933333pt;}
.y23{bottom:149.373333pt;}
.yd5{bottom:151.226667pt;}
.y7f{bottom:152.160000pt;}
.y1ed{bottom:153.360000pt;}
.y171{bottom:155.373333pt;}
.y1c5{bottom:157.240000pt;}
.y4b{bottom:159.106667pt;}
.y206{bottom:160.960000pt;}
.yef{bottom:164.026667pt;}
.y126{bottom:164.573333pt;}
.y69{bottom:166.973333pt;}
.y22{bottom:167.226667pt;}
.yd4{bottom:167.360000pt;}
.y7a{bottom:168.426667pt;}
.y10a{bottom:168.826667pt;}
.y1ec{bottom:169.093333pt;}
.y53{bottom:173.093333pt;}
.y170{bottom:173.373333pt;}
.y195{bottom:174.306667pt;}
.y1c4{bottom:175.240000pt;}
.y4a{bottom:177.106667pt;}
.y205{bottom:178.960000pt;}
.y150{bottom:180.266667pt;}
.yee{bottom:182.026667pt;}
.y125{bottom:182.573333pt;}
.yd3{bottom:183.640000pt;}
.y77{bottom:184.560000pt;}
.y21{bottom:185.226667pt;}
.y194{bottom:186.840000pt;}
.y1eb{bottom:187.893333pt;}
.y109{bottom:188.026667pt;}
.y16f{bottom:191.373333pt;}
.y13b{bottom:191.640000pt;}
.y14f{bottom:192.800000pt;}
.y1c3{bottom:193.240000pt;}
.y65{bottom:194.560000pt;}
.y49{bottom:195.106667pt;}
.y204{bottom:196.840000pt;}
.yd2{bottom:199.760000pt;}
.yed{bottom:199.893333pt;}
.y124{bottom:200.573333pt;}
.y20{bottom:203.226667pt;}
.y1ea{bottom:204.426667pt;}
.y107{bottom:207.893333pt;}
.y16e{bottom:209.373333pt;}
.y14e{bottom:209.760000pt;}
.y13a{bottom:210.026667pt;}
.y1c2{bottom:211.240000pt;}
.y48{bottom:213.106667pt;}
.y203{bottom:214.840000pt;}
.y76{bottom:215.893333pt;}
.yec{bottom:217.893333pt;}
.y123{bottom:218.573333pt;}
.y1f{bottom:221.226667pt;}
.y14d{bottom:222.306667pt;}
.y1e9{bottom:222.426667pt;}
.y16d{bottom:227.373333pt;}
.y106{bottom:227.760000pt;}
.y139{bottom:228.560000pt;}
.y1c1{bottom:229.240000pt;}
.y47{bottom:231.106667pt;}
.yd1{bottom:232.173333pt;}
.y202{bottom:232.840000pt;}
.y64{bottom:233.893333pt;}
.yeb{bottom:235.893333pt;}
.y122{bottom:236.573333pt;}
.y1e{bottom:239.226667pt;}
.y1e8{bottom:240.426667pt;}
.y16c{bottom:244.306667pt;}
.y1c0{bottom:246.173333pt;}
.y137{bottom:246.973333pt;}
.y105{bottom:247.640000pt;}
.yd0{bottom:248.306667pt;}
.y46{bottom:249.106667pt;}
.y201{bottom:250.840000pt;}
.yea{bottom:253.893333pt;}
.y121{bottom:254.573333pt;}
.y1d{bottom:257.226667pt;}
.y16b{bottom:257.773333pt;}
.y1e7{bottom:258.306667pt;}
.y151{bottom:259.533333pt;}
.y1bf{bottom:259.640000pt;}
.y187{bottom:261.226667pt;}
.y136{bottom:265.506667pt;}
.y45{bottom:267.106667pt;}
.y103{bottom:267.506667pt;}
.y200{bottom:268.840000pt;}
.y16a{bottom:268.973333pt;}
.yc5{bottom:269.773333pt;}
.ye9{bottom:271.893333pt;}
.y120{bottom:272.573333pt;}
.y1be{bottom:273.226667pt;}
.y1c{bottom:275.226667pt;}
.y1e6{bottom:276.306667pt;}
.y186{bottom:279.226667pt;}
.y169{bottom:282.426667pt;}
.y1ff{bottom:283.506667pt;}
.y134{bottom:283.893333pt;}
.y1bd{bottom:284.426667pt;}
.y44{bottom:285.106667pt;}
.yc4{bottom:286.306667pt;}
.y101{bottom:287.360000pt;}
.ye8{bottom:289.893333pt;}
.y11f{bottom:290.440000pt;}
.y1b{bottom:293.226667pt;}
.y1e5{bottom:294.306667pt;}
.y190{bottom:294.973333pt;}
.y168{bottom:295.893333pt;}
.y185{bottom:297.226667pt;}
.y133{bottom:302.426667pt;}
.y1bc{bottom:302.973333pt;}
.y43{bottom:303.106667pt;}
.yc3{bottom:304.306667pt;}
.yff{bottom:307.226667pt;}
.ye7{bottom:307.893333pt;}
.y11e{bottom:308.440000pt;}
.y167{bottom:309.506667pt;}
.y1a{bottom:311.226667pt;}
.y1e4{bottom:312.306667pt;}
.y18f{bottom:312.973333pt;}
.y184{bottom:315.226667pt;}
.y57{bottom:316.426667pt;}
.y12f{bottom:320.840000pt;}
.y42{bottom:321.106667pt;}
.y1bb{bottom:321.640000pt;}
.yc2{bottom:322.306667pt;}
.y166{bottom:322.973333pt;}
.y1fe{bottom:324.306667pt;}
.ye6{bottom:325.893333pt;}
.y11d{bottom:326.440000pt;}
.yfc{bottom:327.093333pt;}
.y19{bottom:329.226667pt;}
.y1e3{bottom:330.306667pt;}
.y18e{bottom:330.973333pt;}
.y183{bottom:333.226667pt;}
.y165{bottom:336.426667pt;}
.y41{bottom:338.973333pt;}
.y63{bottom:339.106667pt;}
.y1b9{bottom:340.173333pt;}
.yc1{bottom:340.306667pt;}
.ye5{bottom:343.933333pt;}
.y11c{bottom:344.466667pt;}
.y1f6{bottom:345.133333pt;}
.y18{bottom:347.266667pt;}
.y1e2{bottom:348.333333pt;}
.y18d{bottom:349.000000pt;}
.y164{bottom:349.933333pt;}
.y182{bottom:351.266667pt;}
.y40{bottom:357.000000pt;}
.y62{bottom:357.133333pt;}
.yc0{bottom:358.333333pt;}
.yfb{bottom:358.466667pt;}
.y1b8{bottom:358.866667pt;}
.y12e{bottom:359.800000pt;}
.ye4{bottom:361.933333pt;}
.y11b{bottom:362.466667pt;}
.y163{bottom:363.400000pt;}
.y17{bottom:365.133333pt;}
.y1e1{bottom:366.333333pt;}
.y18c{bottom:367.000000pt;}
.y181{bottom:369.266667pt;}
.y1fa{bottom:371.400000pt;}
.y3f{bottom:375.000000pt;}
.y61{bottom:375.133333pt;}
.ybf{bottom:376.333333pt;}
.y1b7{bottom:377.400000pt;}
.y15f{bottom:377.533333pt;}
.ye3{bottom:379.933333pt;}
.y11a{bottom:380.466667pt;}
.y16{bottom:383.133333pt;}
.y1e0{bottom:384.333333pt;}
.y18b{bottom:385.000000pt;}
.y180{bottom:387.266667pt;}
.y75{bottom:389.000000pt;}
.y3e{bottom:393.000000pt;}
.ybe{bottom:394.200000pt;}
.yfa{bottom:394.600000pt;}
.y1b6{bottom:396.066667pt;}
.y119{bottom:398.466667pt;}
.y15{bottom:401.133333pt;}
.y17e{bottom:401.933333pt;}
.y1df{bottom:402.333333pt;}
.y18a{bottom:403.000000pt;}
.yf9{bottom:410.733333pt;}
.y3d{bottom:411.000000pt;}
.ybd{bottom:412.200000pt;}
.y1b5{bottom:414.600000pt;}
.y118{bottom:416.466667pt;}
.y14{bottom:419.133333pt;}
.y1de{bottom:420.333333pt;}
.y17c{bottom:420.733333pt;}
.yf8{bottom:426.866667pt;}
.y3c{bottom:429.000000pt;}
.y193{bottom:429.266667pt;}
.ybc{bottom:430.200000pt;}
.y1f5{bottom:430.466667pt;}
.y1b4{bottom:433.266667pt;}
.y189{bottom:433.933333pt;}
.y117{bottom:434.466667pt;}
.y13{bottom:437.133333pt;}
.y1dd{bottom:438.333333pt;}
.y17a{bottom:438.866667pt;}
.y15e{bottom:439.266667pt;}
.ye2{bottom:446.066667pt;}
.y188{bottom:446.466667pt;}
.y3b{bottom:447.000000pt;}
.ybb{bottom:448.200000pt;}
.y1b3{bottom:451.800000pt;}
.y116{bottom:452.466667pt;}
.y12{bottom:455.133333pt;}
.y15d{bottom:455.800000pt;}
.y1dc{bottom:456.200000pt;}
.y178{bottom:457.133333pt;}
.y192{bottom:460.200000pt;}
.ye1{bottom:462.600000pt;}
.y3a{bottom:465.000000pt;}
.yba{bottom:466.200000pt;}
.y115{bottom:470.466667pt;}
.y191{bottom:472.733333pt;}
.y11{bottom:473.133333pt;}
.y15c{bottom:473.800000pt;}
.y1db{bottom:474.200000pt;}
.ye0{bottom:480.600000pt;}
.y39{bottom:483.000000pt;}
.yb9{bottom:484.200000pt;}
.y177{bottom:484.466667pt;}
.y114{bottom:488.466667pt;}
.y1b2{bottom:489.000000pt;}
.y15b{bottom:490.733333pt;}
.y10{bottom:491.133333pt;}
.y1da{bottom:492.200000pt;}
.ydf{bottom:498.600000pt;}
.y38{bottom:501.000000pt;}
.yb8{bottom:502.200000pt;}
.y15a{bottom:504.200000pt;}
.y113{bottom:506.333333pt;}
.y1b1{bottom:507.666667pt;}
.yf{bottom:509.133333pt;}
.y1d9{bottom:510.200000pt;}
.y159{bottom:515.400000pt;}
.yde{bottom:516.600000pt;}
.y97{bottom:517.933333pt;}
.y37{bottom:519.000000pt;}
.yb7{bottom:520.200000pt;}
.y12d{bottom:521.000000pt;}
.y1b0{bottom:526.200000pt;}
.ye{bottom:527.133333pt;}
.y1d8{bottom:528.200000pt;}
.y158{bottom:528.866667pt;}
.y96{bottom:531.400000pt;}
.ydd{bottom:534.640000pt;}
.y36{bottom:536.893333pt;}
.y60{bottom:537.026667pt;}
.yab{bottom:537.293333pt;}
.yb6{bottom:538.226667pt;}
.y155{bottom:543.040000pt;}
.y95{bottom:544.893333pt;}
.y1af{bottom:544.906667pt;}
.yd{bottom:545.173333pt;}
.y1d7{bottom:546.226667pt;}
.ydc{bottom:552.506667pt;}
.ycf{bottom:552.893333pt;}
.yaf{bottom:553.560000pt;}
.y35{bottom:554.893333pt;}
.y5f{bottom:555.026667pt;}
.y112{bottom:556.373333pt;}
.y94{bottom:558.360000pt;}
.y1ad{bottom:563.440000pt;}
.y1d6{bottom:564.226667pt;}
.yc{bottom:565.026667pt;}
.yce{bottom:569.026667pt;}
.yae{bottom:569.693333pt;}
.ydb{bottom:570.506667pt;}
.y93{bottom:571.840000pt;}
.y34{bottom:572.893333pt;}
.y5e{bottom:573.026667pt;}
.y154{bottom:574.373333pt;}
.y1ac{bottom:582.093333pt;}
.y1d5{bottom:582.226667pt;}
.yb{bottom:582.893333pt;}
.ycd{bottom:585.173333pt;}
.y92{bottom:585.440000pt;}
.ya0{bottom:585.840000pt;}
.y33{bottom:590.893333pt;}
.y91{bottom:598.893333pt;}
.ya{bottom:599.040000pt;}
.y1d4{bottom:600.226667pt;}
.y1ab{bottom:600.626667pt;}
.ycc{bottom:601.426667pt;}
.ya9{bottom:602.093333pt;}
.y32{bottom:608.893333pt;}
.y90{bottom:612.360000pt;}
.y8{bottom:617.040000pt;}
.yf7{bottom:617.560000pt;}
.yca{bottom:617.573333pt;}
.ya8{bottom:618.226667pt;}
.y1aa{bottom:619.293333pt;}
.y9{bottom:620.360000pt;}
.y8f{bottom:625.840000pt;}
.y31{bottom:626.893333pt;}
.yf6{bottom:633.693333pt;}
.ya7{bottom:634.360000pt;}
.y7{bottom:635.840000pt;}
.y1d3{bottom:636.226667pt;}
.yb5{bottom:636.773333pt;}
.y1a9{bottom:637.840000pt;}
.y8e{bottom:639.293333pt;}
.y30{bottom:644.893333pt;}
.yc9{bottom:649.973333pt;}
.ya5{bottom:650.640000pt;}
.y1d1{bottom:650.773333pt;}
.y8d{bottom:652.893333pt;}
.y1a7{bottom:656.506667pt;}
.y6{bottom:657.440000pt;}
.y2f{bottom:662.893333pt;}
.yc8{bottom:666.093333pt;}
.y8c{bottom:666.360000pt;}
.y9f{bottom:666.760000pt;}
.y1cf{bottom:671.440000pt;}
.y1a6{bottom:675.026667pt;}
.y59{bottom:676.893333pt;}
.y5{bottom:679.026667pt;}
.y8b{bottom:679.840000pt;}
.y2e{bottom:680.893333pt;}
.yc7{bottom:682.226667pt;}
.y9c{bottom:682.893333pt;}
.yb4{bottom:684.106667pt;}
.y1cd{bottom:691.440000pt;}
.y8a{bottom:693.293333pt;}
.y1a4{bottom:693.560000pt;}
.yc6{bottom:698.506667pt;}
.y2d{bottom:698.893333pt;}
.yb3{bottom:700.373333pt;}
.y4{bottom:700.626667pt;}
.y89{bottom:706.773333pt;}
.y1cb{bottom:711.426667pt;}
.y1a1{bottom:712.226667pt;}
.y9b{bottom:714.626667pt;}
.y2c{bottom:716.893333pt;}
.y88{bottom:720.226667pt;}
.y3{bottom:723.040000pt;}
.y2{bottom:739.333333pt;}
.y1{bottom:755.466667pt;}
.y2a{bottom:756.800000pt;}
.h27{height:13.200000pt;}
.h1b{height:13.466667pt;}
.h34{height:13.500000pt;}
.h2f{height:13.600000pt;}
.h45{height:14.400000pt;}
.h47{height:14.566667pt;}
.h46{height:15.066667pt;}
.h1e{height:15.466667pt;}
.h21{height:15.500000pt;}
.h20{height:15.600000pt;}
.h2a{height:15.633333pt;}
.h37{height:17.600000pt;}
.h2c{height:17.733333pt;}
.h2d{height:17.866667pt;}
.h10{height:18.000000pt;}
.h38{height:18.133333pt;}
.h3e{height:18.520000pt;}
.h3a{height:18.533333pt;}
.h3d{height:18.566667pt;}
.h3c{height:18.666667pt;}
.h3f{height:18.700000pt;}
.h39{height:18.800000pt;}
.h28{height:19.200000pt;}
.h29{height:19.233333pt;}
.h42{height:19.320000pt;}
.h41{height:19.366667pt;}
.h43{height:19.986667pt;}
.h4c{height:20.000000pt;}
.h4b{height:20.166667pt;}
.h44{height:20.653333pt;}
.h7{height:20.657500pt;}
.h4d{height:20.800000pt;}
.h36{height:22.933333pt;}
.h5{height:23.390625pt;}
.h9{height:24.205729pt;}
.h40{height:25.333333pt;}
.h4a{height:26.266667pt;}
.h1d{height:26.533333pt;}
.h18{height:26.933333pt;}
.h2e{height:26.966667pt;}
.h33{height:27.053333pt;}
.h1c{height:27.066667pt;}
.h1a{height:27.100000pt;}
.h6{height:27.289062pt;}
.h17{height:28.222656pt;}
.h19{height:29.238281pt;}
.h16{height:29.453125pt;}
.h32{height:29.466667pt;}
.h25{height:31.066667pt;}
.hc{height:31.187500pt;}
.hb{height:31.270833pt;}
.h12{height:31.366667pt;}
.h14{height:33.515625pt;}
.h15{height:34.533333pt;}
.h24{height:35.085938pt;}
.h2{height:35.179688pt;}
.h2b{height:35.766667pt;}
.h23{height:36.000000pt;}
.h3b{height:37.200000pt;}
.ha{height:37.239583pt;}
.h4{height:38.984375pt;}
.h1{height:39.088542pt;}
.hf{height:39.270833pt;}
.he{height:40.734375pt;}
.hd{height:41.380208pt;}
.h8{height:44.687500pt;}
.h11{height:44.947917pt;}
.h3{height:47.125000pt;}
.h22{height:47.866667pt;}
.h1f{height:47.900000pt;}
.h13{height:53.900000pt;}
.h49{height:54.666667pt;}
.h35{height:57.333333pt;}
.h31{height:60.208333pt;}
.h26{height:80.266667pt;}
.h48{height:80.933333pt;}
.h30{height:289.600000pt;}
.h0{height:816.000000pt;}
.w40{width:26.133333pt;}
.w29{width:32.120000pt;}
.w2a{width:36.000000pt;}
.w3a{width:42.000000pt;}
.w26{width:48.000000pt;}
.w35{width:54.000000pt;}
.w4a{width:54.033333pt;}
.w4{width:54.266667pt;}
.w4c{width:55.333333pt;}
.w4f{width:55.366667pt;}
.w2f{width:56.533333pt;}
.w4b{width:58.666667pt;}
.wc{width:58.800000pt;}
.w21{width:59.233333pt;}
.wf{width:59.866667pt;}
.w28{width:60.000000pt;}
.w22{width:60.033333pt;}
.w19{width:60.133333pt;}
.w50{width:61.333333pt;}
.w4d{width:61.366667pt;}
.wa{width:62.133333pt;}
.w2e{width:64.833333pt;}
.w34{width:66.033333pt;}
.w2c{width:66.166667pt;}
.w56{width:66.933333pt;}
.w8{width:67.766667pt;}
.w9{width:69.466667pt;}
.w24{width:69.900000pt;}
.w30{width:72.033333pt;}
.w3e{width:74.133333pt;}
.w33{width:78.000000pt;}
.w3d{width:78.033333pt;}
.w32{width:80.033333pt;}
.w31{width:82.000000pt;}
.w54{width:82.133333pt;}
.wb{width:82.966667pt;}
.w1a{width:83.866667pt;}
.w17{width:84.033333pt;}
.wd{width:87.366667pt;}
.w42{width:90.033333pt;}
.w23{width:92.133333pt;}
.w55{width:93.766667pt;}
.w25{width:96.000000pt;}
.w2d{width:97.066667pt;}
.w49{width:97.366667pt;}
.w1f{width:100.800000pt;}
.w41{width:102.000000pt;}
.w47{width:108.033333pt;}
.w10{width:108.166667pt;}
.w18{width:108.300000pt;}
.w48{width:114.000000pt;}
.w58{width:114.033333pt;}
.w1c{width:114.433333pt;}
.w7{width:124.266667pt;}
.w43{width:126.000000pt;}
.w57{width:132.000000pt;}
.w51{width:132.033333pt;}
.w1d{width:134.160000pt;}
.w15{width:137.906667pt;}
.w2b{width:138.133333pt;}
.w13{width:138.800000pt;}
.w4e{width:150.000000pt;}
.w46{width:150.026667pt;}
.w44{width:156.026667pt;}
.w3c{width:156.040000pt;}
.w53{width:160.573333pt;}
.w39{width:162.026667pt;}
.w5a{width:162.040000pt;}
.w12{width:167.773333pt;}
.w1e{width:169.360000pt;}
.w3f{width:171.906667pt;}
.w14{width:173.506667pt;}
.w52{width:190.160000pt;}
.w20{width:195.773333pt;}
.w3b{width:216.040000pt;}
.we{width:224.706667pt;}
.w16{width:252.293333pt;}
.w1b{width:303.533333pt;}
.w59{width:312.066667pt;}
.w5{width:377.306667pt;}
.w6{width:425.800000pt;}
.w3{width:425.840000pt;}
.w45{width:469.440000pt;}
.w37{width:471.466667pt;}
.w38{width:471.533333pt;}
.w27{width:474.106667pt;}
.w11{width:480.106667pt;}
.w36{width:492.106667pt;}
.w2{width:623.999981pt;}
.w1{width:623.999991pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.066667pt;}
.x1f{left:8.666667pt;}
.x30{left:9.733333pt;}
.x1e{left:11.053333pt;}
.x63{left:11.986667pt;}
.x2e{left:13.733333pt;}
.x2a{left:14.973333pt;}
.x3e{left:16.133333pt;}
.x27{left:17.733333pt;}
.x25{left:19.506667pt;}
.x22{left:20.400000pt;}
.x36{left:22.133333pt;}
.x2f{left:23.600000pt;}
.x24{left:25.373333pt;}
.x14{left:26.533333pt;}
.x28{left:28.000000pt;}
.x79{left:28.933333pt;}
.x2b{left:30.133333pt;}
.x53{left:31.733333pt;}
.x66{left:32.960000pt;}
.x2c{left:34.026667pt;}
.x29{left:35.760000pt;}
.x4b{left:37.200000pt;}
.x32{left:38.300000pt;}
.x51{left:40.306667pt;}
.x4a{left:41.906667pt;}
.x1c{left:43.193333pt;}
.x38{left:44.573333pt;}
.x41{left:45.466667pt;}
.x4d{left:46.533333pt;}
.x1{left:47.999991pt;}
.x2d{left:49.726667pt;}
.x31{left:50.673333pt;}
.xc{left:52.266657pt;}
.x18{left:55.740000pt;}
.x58{left:56.920000pt;}
.x5{left:60.799991pt;}
.x4{left:61.866657pt;}
.x3{left:63.333324pt;}
.x3f{left:64.926667pt;}
.x43{left:70.293333pt;}
.x89{left:71.999991pt;}
.x17{left:74.133333pt;}
.x45{left:75.506667pt;}
.x71{left:76.933333pt;}
.x46{left:78.026667pt;}
.x47{left:79.240000pt;}
.x44{left:80.426667pt;}
.x55{left:85.626667pt;}
.x4e{left:87.240000pt;}
.x34{left:92.413333pt;}
.xa{left:96.033324pt;}
.x1b{left:101.900000pt;}
.x3b{left:107.073333pt;}
.x59{left:108.033333pt;}
.x64{left:120.033333pt;}
.x33{left:135.360000pt;}
.x69{left:139.200000pt;}
.xf{left:144.026657pt;}
.x19{left:151.740000pt;}
.x9{left:162.293324pt;}
.x5d{left:168.040000pt;}
.x11{left:175.506657pt;}
.x74{left:178.693324pt;}
.x80{left:180.040000pt;}
.x52{left:182.173333pt;}
.x48{left:185.906667pt;}
.x54{left:196.840000pt;}
.x72{left:198.040000pt;}
.x6{left:199.239981pt;}
.x5a{left:200.173333pt;}
.x7{left:202.306657pt;}
.x6f{left:204.040000pt;}
.x6a{left:207.600000pt;}
.x6c{left:210.040000pt;}
.x39{left:220.066667pt;}
.x85{left:222.040000pt;}
.x3d{left:223.800000pt;}
.x1d{left:226.173333pt;}
.x82{left:228.040000pt;}
.x10{left:229.106657pt;}
.x5f{left:234.173333pt;}
.x8{left:238.693324pt;}
.xb{left:240.026657pt;}
.x88{left:242.039991pt;}
.x76{left:243.773324pt;}
.x7c{left:246.040000pt;}
.x3c{left:247.106657pt;}
.x6d{left:252.040000pt;}
.x40{left:263.800000pt;}
.x5b{left:270.066667pt;}
.x6b{left:275.133333pt;}
.xe{left:282.333324pt;}
.x2{left:288.066657pt;}
.x20{left:293.933333pt;}
.x60{left:300.333333pt;}
.x67{left:301.533333pt;}
.x78{left:306.066667pt;}
.x68{left:309.933333pt;}
.x6e{left:318.066667pt;}
.x5e{left:330.066667pt;}
.x83{left:336.066667pt;}
.x4f{left:351.533333pt;}
.x4c{left:354.333333pt;}
.x70{left:356.200000pt;}
.x35{left:360.066667pt;}
.x21{left:363.400000pt;}
.x7a{left:364.733333pt;}
.x5c{left:366.066667pt;}
.x81{left:370.200000pt;}
.x87{left:372.066667pt;}
.x56{left:392.600000pt;}
.x61{left:397.400000pt;}
.x42{left:402.600000pt;}
.x7d{left:412.733333pt;}
.x50{left:413.666667pt;}
.x84{left:418.200000pt;}
.x37{left:419.933333pt;}
.x23{left:425.533333pt;}
.x49{left:438.200000pt;}
.x86{left:444.106667pt;}
.x57{left:451.840000pt;}
.x62{left:462.240000pt;}
.x13{left:464.226657pt;}
.x7e{left:468.106667pt;}
.x15{left:473.840000pt;}
.x73{left:476.226657pt;}
.x7b{left:481.440000pt;}
.x65{left:486.106667pt;}
.x77{left:495.306657pt;}
.x75{left:497.026657pt;}
.x26{left:508.506667pt;}
.x12{left:512.226657pt;}
.x1a{left:521.840000pt;}
.x7f{left:529.440000pt;}
.x3a{left:541.173324pt;}
.xd{left:565.439991pt;}
}




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