
    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_f2cdb8792cd9bcd881619d73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_46cff81de6debc65deec6123.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e6b2d162fbb30dcccb3da7ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1f6a2aeeefed09849ca87db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_3dd70f6e20fc9523de31c781.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_57fb96efb4a11ad08e1d571e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_ef5b980675f906db97927923.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7f346a786155048e3cfc8eb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859375;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_55b0c37a3071383e0bb58284.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c94bb4b6cbb76d8a187cad30.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964355;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_8ed3ed88d0777ba015cf56f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_0e0fbcf2b7903d5d9d6032fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_37fbfb62f43b064d55a3b351.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.162000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:0.738000px;}
.ls13{letter-spacing:25.308000px;}
.lsd{letter-spacing:51.264000px;}
.ls12{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsb{word-spacing:-13.860000px;}
.wse{word-spacing:-13.626000px;}
.wsf{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.338000px;}
.ws9{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.ws4{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._27{margin-left:-35.280000px;}
._26{margin-left:-10.315680px;}
._3{margin-left:-2.514240px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._5{width:2.836080px;}
._e{width:4.098240px;}
._7{width:5.184000px;}
._6{width:7.032960px;}
._4{width:8.050320px;}
._b{width:9.836640px;}
._a{width:10.854000px;}
._9{width:12.100320px;}
._c{width:14.688000px;}
._12{width:16.416000px;}
._11{width:17.766000px;}
._15{width:18.868320px;}
._10{width:20.016000px;}
._d{width:21.168000px;}
._22{width:22.626000px;}
._1f{width:23.656320px;}
._1d{width:25.326000px;}
._8{width:26.406000px;}
._18{width:28.404000px;}
._1e{width:29.970000px;}
._17{width:31.698000px;}
._21{width:33.093360px;}
._20{width:34.132320px;}
._f{width:35.590320px;}
._13{width:37.638000px;}
._14{width:39.078000px;}
._1b{width:40.662000px;}
._1c{width:41.837040px;}
._16{width:43.578000px;}
._25{width:45.414000px;}
._1a{width:46.872000px;}
._19{width:47.898000px;}
._29{width:49.410000px;}
._3b{width:51.070320px;}
._36{width:52.074000px;}
._38{width:53.189280px;}
._2b{width:54.486000px;}
._24{width:59.862240px;}
._23{width:60.912000px;}
._2a{width:63.234000px;}
._2f{width:80.946000px;}
._2e{width:82.458000px;}
._2d{width:84.456000px;}
._2c{width:86.076000px;}
._35{width:111.006000px;}
._34{width:112.104000px;}
._37{width:126.144000px;}
._3c{width:128.682000px;}
._39{width:157.518000px;}
._32{width:158.652000px;}
._33{width:171.720000px;}
._30{width:256.500000px;}
._28{width:273.744000px;}
._3a{width:357.588000px;}
._2{width:391.226400px;}
._31{width:394.092000px;}
.fc5{color:transparent;}
.fc7{color:rgb(70,120,134);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(32,33,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.240000px;}
.y2f{bottom:3.600000px;}
.y13e{bottom:5.220000px;}
.y18b{bottom:5.400000px;}
.y179{bottom:5.565000px;}
.y147{bottom:5.580000px;}
.y177{bottom:5.745000px;}
.y18c{bottom:5.760000px;}
.y1c5{bottom:7.005000px;}
.y1c9{bottom:7.185000px;}
.y1cb{bottom:7.365000px;}
.y1aa{bottom:8.100000px;}
.y1a8{bottom:8.280000px;}
.y142{bottom:8.460000px;}
.y1b0{bottom:8.490000px;}
.y1ae{bottom:8.640000px;}
.y16e{bottom:8.820000px;}
.y171{bottom:8.985000px;}
.y16c{bottom:9.000000px;}
.y175{bottom:9.345000px;}
.y1c7{bottom:10.965000px;}
.y1ab{bottom:10.980000px;}
.y32{bottom:18.900000px;}
.y2e{bottom:20.880000px;}
.y13d{bottom:23.040000px;}
.y18e{bottom:23.220000px;}
.y193{bottom:23.400000px;}
.y146{bottom:23.580000px;}
.y141{bottom:26.460000px;}
.y31{bottom:34.380000px;}
.y145{bottom:41.400000px;}
.y140{bottom:44.280000px;}
.y2d{bottom:48.960000px;}
.y61{bottom:58.500000px;}
.y144{bottom:59.220000px;}
.y2c{bottom:66.960000px;}
.y4{bottom:76.860000px;}
.y60{bottom:77.220000px;}
.y2b{bottom:84.780000px;}
.y5d{bottom:92.340000px;}
.y18a{bottom:95.400000px;}
.y103{bottom:97.200000px;}
.y1d5{bottom:100.980000px;}
.y48{bottom:101.340000px;}
.y2a{bottom:102.600000px;}
.y6{bottom:105.120000px;}
.y13a{bottom:105.840000px;}
.yec{bottom:106.020000px;}
.y262{bottom:106.380000px;}
.y9b{bottom:108.900000px;}
.y5c{bottom:110.340000px;}
.y102{bottom:115.020000px;}
.y1d4{bottom:118.800000px;}
.y47{bottom:119.160000px;}
.y29{bottom:120.450000px;}
.y208{bottom:120.600000px;}
.y182{bottom:123.660000px;}
.yeb{bottom:123.840000px;}
.y261{bottom:124.200000px;}
.y9a{bottom:126.720000px;}
.y5b{bottom:128.160000px;}
.y101{bottom:132.840000px;}
.y1d3{bottom:136.800000px;}
.y46{bottom:136.980000px;}
.y28{bottom:138.270000px;}
.y207{bottom:138.420000px;}
.y181{bottom:141.480000px;}
.y189{bottom:141.660000px;}
.yea{bottom:141.840000px;}
.y125{bottom:142.020000px;}
.y99{bottom:144.720000px;}
.y5a{bottom:145.980000px;}
.y100{bottom:150.840000px;}
.y229{bottom:153.180000px;}
.y1d2{bottom:154.620000px;}
.y45{bottom:154.800000px;}
.y206{bottom:156.240000px;}
.y27{bottom:156.270000px;}
.y180{bottom:159.300000px;}
.y188{bottom:159.480000px;}
.ye9{bottom:159.660000px;}
.y260{bottom:159.840000px;}
.y98{bottom:162.540000px;}
.y59{bottom:163.800000px;}
.yff{bottom:168.660000px;}
.y124{bottom:169.200000px;}
.y228{bottom:171.180000px;}
.y1d1{bottom:172.440000px;}
.y44{bottom:172.620000px;}
.y205{bottom:174.060000px;}
.y26{bottom:174.090000px;}
.y17f{bottom:177.120000px;}
.y187{bottom:177.300000px;}
.ye8{bottom:177.480000px;}
.y25f{bottom:177.840000px;}
.y139{bottom:178.200000px;}
.y97{bottom:180.360000px;}
.y58{bottom:181.620000px;}
.yfe{bottom:186.480000px;}
.y123{bottom:187.020000px;}
.y227{bottom:189.000000px;}
.y1d0{bottom:189.900000px;}
.y43{bottom:190.440000px;}
.y25{bottom:191.910000px;}
.y204{bottom:192.060000px;}
.y17e{bottom:194.940000px;}
.y186{bottom:195.120000px;}
.y25e{bottom:195.660000px;}
.y138{bottom:196.020000px;}
.y96{bottom:198.180000px;}
.y57{bottom:199.440000px;}
.ye7{bottom:204.300000px;}
.y122{bottom:204.840000px;}
.y226{bottom:206.850000px;}
.y42{bottom:208.470000px;}
.y24{bottom:209.730000px;}
.y203{bottom:209.910000px;}
.y1cf{bottom:212.265000px;}
.y17d{bottom:212.790000px;}
.y185{bottom:212.970000px;}
.y25d{bottom:213.510000px;}
.y137{bottom:213.870000px;}
.y95{bottom:216.030000px;}
.y56{bottom:217.470000px;}
.y23e{bottom:221.970000px;}
.ye6{bottom:222.150000px;}
.y121{bottom:222.870000px;}
.y225{bottom:224.670000px;}
.y41{bottom:226.290000px;}
.y23{bottom:227.550000px;}
.y202{bottom:227.730000px;}
.y17c{bottom:230.790000px;}
.y25c{bottom:231.330000px;}
.y136{bottom:231.870000px;}
.y94{bottom:234.030000px;}
.y1ce{bottom:236.025000px;}
.ye5{bottom:239.970000px;}
.y120{bottom:240.690000px;}
.y224{bottom:242.490000px;}
.y40{bottom:244.110000px;}
.y55{bottom:244.290000px;}
.y22{bottom:245.370000px;}
.y201{bottom:245.550000px;}
.y184{bottom:248.790000px;}
.yfd{bottom:248.970000px;}
.y25b{bottom:249.150000px;}
.y135{bottom:249.690000px;}
.y93{bottom:251.850000px;}
.y17b{bottom:257.250000px;}
.y23d{bottom:257.790000px;}
.ye4{bottom:257.970000px;}
.y11f{bottom:258.510000px;}
.y1cd{bottom:259.605000px;}
.y264{bottom:260.850000px;}
.y54{bottom:262.110000px;}
.y21{bottom:263.370000px;}
.y183{bottom:266.610000px;}
.yfc{bottom:266.970000px;}
.y134{bottom:267.510000px;}
.y223{bottom:269.310000px;}
.y92{bottom:269.670000px;}
.y3f{bottom:270.930000px;}
.y16{bottom:273.810000px;}
.y23c{bottom:275.610000px;}
.ye3{bottom:275.790000px;}
.y11e{bottom:276.330000px;}
.y53{bottom:279.930000px;}
.y20{bottom:281.190000px;}
.y200{bottom:281.370000px;}
.y1cc{bottom:283.185000px;}
.y17a{bottom:284.070000px;}
.yfb{bottom:284.790000px;}
.y25a{bottom:284.970000px;}
.y133{bottom:285.330000px;}
.y222{bottom:287.310000px;}
.y91{bottom:287.490000px;}
.y3e{bottom:288.750000px;}
.y23b{bottom:293.430000px;}
.ye2{bottom:293.610000px;}
.y11d{bottom:294.150000px;}
.y52{bottom:297.750000px;}
.y263{bottom:298.830000px;}
.y1f{bottom:299.010000px;}
.y1ff{bottom:299.190000px;}
.y15{bottom:300.630000px;}
.yfa{bottom:302.610000px;}
.y259{bottom:302.790000px;}
.y132{bottom:303.150000px;}
.y221{bottom:305.130000px;}
.y90{bottom:305.310000px;}
.y178{bottom:306.405000px;}
.y3d{bottom:306.750000px;}
.y1ca{bottom:306.765000px;}
.y23a{bottom:311.250000px;}
.ye1{bottom:311.430000px;}
.y11c{bottom:311.970000px;}
.y51{bottom:315.750000px;}
.y1e{bottom:316.830000px;}
.y1fe{bottom:317.010000px;}
.yf9{bottom:320.430000px;}
.y258{bottom:320.610000px;}
.y131{bottom:320.970000px;}
.y220{bottom:322.950000px;}
.y8f{bottom:323.130000px;}
.y3c{bottom:324.570000px;}
.y14{bottom:327.630000px;}
.y239{bottom:329.070000px;}
.ye0{bottom:329.250000px;}
.y11b{bottom:329.970000px;}
.y1c8{bottom:330.525000px;}
.y176{bottom:331.785000px;}
.y50{bottom:333.570000px;}
.y1d{bottom:334.650000px;}
.y1fd{bottom:334.830000px;}
.yf8{bottom:338.250000px;}
.y257{bottom:338.430000px;}
.y130{bottom:338.970000px;}
.y8e{bottom:341.130000px;}
.y3b{bottom:342.390000px;}
.ydf{bottom:347.070000px;}
.y21f{bottom:351.210000px;}
.y4f{bottom:351.390000px;}
.yc6{bottom:351.570000px;}
.y1fc{bottom:352.650000px;}
.y1c{bottom:352.695000px;}
.y13{bottom:354.135000px;}
.y1c6{bottom:354.825000px;}
.yf7{bottom:356.070000px;}
.y256{bottom:356.250000px;}
.y174{bottom:356.265000px;}
.y11a{bottom:356.430000px;}
.y12f{bottom:356.790000px;}
.y8d{bottom:358.950000px;}
.y3a{bottom:360.210000px;}
.yde{bottom:365.070000px;}
.y4e{bottom:369.210000px;}
.y1fb{bottom:370.470000px;}
.y1b{bottom:370.515000px;}
.y238{bottom:373.890000px;}
.yf6{bottom:374.070000px;}
.y12e{bottom:374.610000px;}
.y39{bottom:378.030000px;}
.y1c4{bottom:378.405000px;}
.y12{bottom:381.315000px;}
.y173{bottom:381.645000px;}
.y21e{bottom:382.530000px;}
.yc5{bottom:382.890000px;}
.y119{bottom:383.610000px;}
.y8c{bottom:385.770000px;}
.y4d{bottom:387.030000px;}
.y1a{bottom:388.335000px;}
.y1fa{bottom:388.470000px;}
.y237{bottom:391.710000px;}
.yf5{bottom:391.890000px;}
.y255{bottom:392.070000px;}
.y12d{bottom:392.430000px;}
.y38{bottom:395.850000px;}
.y11{bottom:399.135000px;}
.y21d{bottom:400.530000px;}
.yc4{bottom:400.710000px;}
.y118{bottom:401.430000px;}
.y8b{bottom:403.590000px;}
.y4c{bottom:404.850000px;}
.y172{bottom:406.125000px;}
.y19{bottom:406.155000px;}
.y1f9{bottom:406.290000px;}
.y236{bottom:409.530000px;}
.yf4{bottom:409.710000px;}
.y254{bottom:409.890000px;}
.y12c{bottom:410.250000px;}
.y37{bottom:413.850000px;}
.y1c3{bottom:417.090000px;}
.y21c{bottom:418.350000px;}
.yc3{bottom:418.530000px;}
.y117{bottom:419.250000px;}
.y8a{bottom:421.410000px;}
.y4b{bottom:422.850000px;}
.y18{bottom:423.975000px;}
.y10{bottom:425.595000px;}
.y235{bottom:427.350000px;}
.yf3{bottom:427.530000px;}
.y253{bottom:427.710000px;}
.y12b{bottom:428.070000px;}
.y170{bottom:430.605000px;}
.y36{bottom:431.670000px;}
.y1f8{bottom:434.550000px;}
.y21b{bottom:436.170000px;}
.yc2{bottom:436.350000px;}
.y116{bottom:437.070000px;}
.y89{bottom:439.410000px;}
.y4a{bottom:440.670000px;}
.y17{bottom:441.975000px;}
.yf{bottom:443.415000px;}
.y1bb{bottom:444.315000px;}
.yf2{bottom:445.395000px;}
.y252{bottom:445.575000px;}
.y12a{bottom:446.115000px;}
.y35{bottom:449.535000px;}
.y1c2{bottom:453.315000px;}
.y21a{bottom:454.035000px;}
.yc1{bottom:454.395000px;}
.y115{bottom:455.115000px;}
.y88{bottom:457.275000px;}
.y49{bottom:458.535000px;}
.y1ba{bottom:462.135000px;}
.y234{bottom:463.215000px;}
.yf1{bottom:463.395000px;}
.y129{bottom:463.935000px;}
.y1f7{bottom:465.915000px;}
.y1c1{bottom:471.135000px;}
.y219{bottom:471.855000px;}
.yc0{bottom:472.215000px;}
.y114{bottom:472.935000px;}
.y34{bottom:474.915000px;}
.y87{bottom:475.095000px;}
.y16f{bottom:479.595000px;}
.y1b9{bottom:479.955000px;}
.y233{bottom:481.035000px;}
.yf0{bottom:481.215000px;}
.y251{bottom:481.395000px;}
.y128{bottom:481.755000px;}
.y1f6{bottom:483.735000px;}
.y1c0{bottom:488.955000px;}
.y218{bottom:489.675000px;}
.ybf{bottom:490.035000px;}
.y113{bottom:490.755000px;}
.y86{bottom:492.915000px;}
.y1b8{bottom:497.955000px;}
.y232{bottom:498.855000px;}
.yef{bottom:499.035000px;}
.y250{bottom:499.215000px;}
.y127{bottom:499.575000px;}
.y30{bottom:501.195000px;}
.y1f5{bottom:501.735000px;}
.y16d{bottom:504.075000px;}
.y1bf{bottom:506.955000px;}
.y217{bottom:507.675000px;}
.ybe{bottom:507.855000px;}
.y112{bottom:508.575000px;}
.y85{bottom:510.735000px;}
.y1b7{bottom:515.775000px;}
.ydd{bottom:516.495000px;}
.y231{bottom:516.675000px;}
.yee{bottom:516.855000px;}
.y24f{bottom:517.035000px;}
.y126{bottom:517.395000px;}
.y1f4{bottom:519.555000px;}
.y1be{bottom:524.775000px;}
.y216{bottom:525.495000px;}
.ybd{bottom:525.675000px;}
.y111{bottom:526.395000px;}
.y84{bottom:528.555000px;}
.y16b{bottom:529.275000px;}
.y1b6{bottom:533.595000px;}
.ydc{bottom:534.315000px;}
.y230{bottom:534.495000px;}
.yed{bottom:534.675000px;}
.y24e{bottom:534.855000px;}
.y1f3{bottom:537.375000px;}
.y1bd{bottom:542.595000px;}
.y215{bottom:543.315000px;}
.ybc{bottom:543.495000px;}
.y83{bottom:546.555000px;}
.y1b5{bottom:551.415000px;}
.y22f{bottom:552.495000px;}
.y24d{bottom:552.675000px;}
.y110{bottom:553.035000px;}
.y1f2{bottom:555.195000px;}
.y16a{bottom:555.375000px;}
.ye{bottom:559.335000px;}
.y1bc{bottom:560.415000px;}
.ybb{bottom:561.495000px;}
.y82{bottom:564.375000px;}
.y214{bottom:570.135000px;}
.y22e{bottom:570.315000px;}
.y24c{bottom:570.495000px;}
.y1f1{bottom:573.015000px;}
.y1b4{bottom:577.875000px;}
.yba{bottom:579.315000px;}
.ydb{bottom:579.495000px;}
.y10f{bottom:581.655000px;}
.y81{bottom:582.195000px;}
.y15a{bottom:587.775000px;}
.y213{bottom:587.955000px;}
.y22d{bottom:588.135000px;}
.y24b{bottom:588.495000px;}
.y1f0{bottom:591.015000px;}
.yb9{bottom:597.135000px;}
.yda{bottom:597.315000px;}
.y80{bottom:600.015000px;}
.y1b3{bottom:600.195000px;}
.y159{bottom:605.775000px;}
.y169{bottom:605.955000px;}
.y24a{bottom:606.315000px;}
.y1ef{bottom:608.835000px;}
.yb8{bottom:614.955000px;}
.yd9{bottom:615.135000px;}
.y10e{bottom:617.655000px;}
.y7f{bottom:617.835000px;}
.y168{bottom:623.775000px;}
.y1b2{bottom:623.955000px;}
.y249{bottom:624.135000px;}
.y1ee{bottom:626.655000px;}
.y158{bottom:632.595000px;}
.yb7{bottom:632.775000px;}
.yd8{bottom:632.955000px;}
.y7e{bottom:635.655000px;}
.y212{bottom:641.595000px;}
.y167{bottom:641.775000px;}
.y248{bottom:641.955000px;}
.y1ed{bottom:644.475000px;}
.y1b1{bottom:647.535000px;}
.y10d{bottom:648.615000px;}
.y157{bottom:650.415000px;}
.yb6{bottom:650.775000px;}
.y7d{bottom:653.655000px;}
.y211{bottom:659.415000px;}
.y166{bottom:659.595000px;}
.y247{bottom:659.775000px;}
.y1ec{bottom:662.295000px;}
.y156{bottom:668.235000px;}
.yb5{bottom:668.595000px;}
.yd7{bottom:668.775000px;}
.y1af{bottom:671.115000px;}
.y7c{bottom:671.475000px;}
.y210{bottom:677.265000px;}
.y165{bottom:677.445000px;}
.y246{bottom:677.805000px;}
.y10c{bottom:679.965000px;}
.y1eb{bottom:680.145000px;}
.y155{bottom:686.085000px;}
.yb4{bottom:686.445000px;}
.yd6{bottom:686.625000px;}
.y1ad{bottom:694.725000px;}
.y20f{bottom:695.085000px;}
.y164{bottom:695.265000px;}
.y245{bottom:695.625000px;}
.y7b{bottom:697.965000px;}
.y1ea{bottom:698.145000px;}
.y154{bottom:704.085000px;}
.yb3{bottom:704.265000px;}
.yd5{bottom:704.445000px;}
.y104{bottom:706.965000px;}
.y10b{bottom:711.465000px;}
.y163{bottom:713.085000px;}
.y244{bottom:713.445000px;}
.y1e9{bottom:715.965000px;}
.y1ac{bottom:718.485000px;}
.y153{bottom:721.905000px;}
.yd4{bottom:722.265000px;}
.y7a{bottom:726.585000px;}
.y20e{bottom:730.905000px;}
.yb2{bottom:731.085000px;}
.y243{bottom:731.265000px;}
.y1e8{bottom:733.785000px;}
.y152{bottom:739.725000px;}
.yd3{bottom:740.085000px;}
.y10a{bottom:742.425000px;}
.y1a9{bottom:742.785000px;}
.y20d{bottom:748.725000px;}
.yb1{bottom:748.905000px;}
.y242{bottom:749.085000px;}
.y1e7{bottom:751.605000px;}
.y151{bottom:757.545000px;}
.y79{bottom:757.905000px;}
.y1a7{bottom:766.365000px;}
.y20c{bottom:766.545000px;}
.y162{bottom:766.725000px;}
.yb0{bottom:766.905000px;}
.y1e6{bottom:769.425000px;}
.y109{bottom:773.565000px;}
.y150{bottom:775.365000px;}
.y78{bottom:775.905000px;}
.y20b{bottom:784.365000px;}
.y161{bottom:784.545000px;}
.yaf{bottom:784.725000px;}
.y241{bottom:784.905000px;}
.y1e5{bottom:787.245000px;}
.y14f{bottom:793.185000px;}
.y77{bottom:793.725000px;}
.y108{bottom:802.185000px;}
.y160{bottom:802.365000px;}
.yae{bottom:802.545000px;}
.y240{bottom:802.725000px;}
.y1a6{bottom:805.245000px;}
.y14e{bottom:811.185000px;}
.y20a{bottom:811.365000px;}
.y76{bottom:811.545000px;}
.y1e4{bottom:815.685000px;}
.y15f{bottom:820.185000px;}
.yad{bottom:820.365000px;}
.y23f{bottom:820.545000px;}
.y14d{bottom:829.005000px;}
.y209{bottom:829.185000px;}
.y75{bottom:829.365000px;}
.y19d{bottom:835.305000px;}
.y1a5{bottom:835.485000px;}
.yac{bottom:838.185000px;}
.y107{bottom:838.365000px;}
.y1e3{bottom:846.645000px;}
.y74{bottom:847.185000px;}
.y19c{bottom:853.125000px;}
.y1a4{bottom:853.305000px;}
.y14c{bottom:855.465000px;}
.y15e{bottom:856.005000px;}
.yab{bottom:856.185000px;}
.y22c{bottom:865.005000px;}
.y73{bottom:865.185000px;}
.y1e2{bottom:868.965000px;}
.y106{bottom:869.505000px;}
.y19b{bottom:870.945000px;}
.y1a3{bottom:871.125000px;}
.y15d{bottom:873.825000px;}
.yaa{bottom:874.005000px;}
.yd2{bottom:874.185000px;}
.y14b{bottom:882.645000px;}
.y22b{bottom:882.825000px;}
.y72{bottom:883.005000px;}
.y19a{bottom:888.765000px;}
.y1a2{bottom:888.945000px;}
.y15c{bottom:891.645000px;}
.ya9{bottom:891.825000px;}
.yd1{bottom:892.005000px;}
.y1e1{bottom:892.545000px;}
.y14a{bottom:900.465000px;}
.y22a{bottom:900.645000px;}
.y71{bottom:900.825000px;}
.y199{bottom:906.585000px;}
.y1a1{bottom:906.765000px;}
.y15b{bottom:909.465000px;}
.ya8{bottom:909.645000px;}
.yd0{bottom:909.825000px;}
.y1e0{bottom:916.350000px;}
.y70{bottom:918.690000px;}
.y198{bottom:924.630000px;}
.y149{bottom:927.150000px;}
.ya7{bottom:927.510000px;}
.ycf{bottom:927.690000px;}
.y6f{bottom:936.510000px;}
.y1df{bottom:939.930000px;}
.y197{bottom:942.450000px;}
.y1a0{bottom:942.630000px;}
.ya6{bottom:945.330000px;}
.yce{bottom:945.510000px;}
.y105{bottom:953.970000px;}
.y6e{bottom:954.330000px;}
.y148{bottom:957.570000px;}
.y19f{bottom:960.450000px;}
.ya5{bottom:963.330000px;}
.y1de{bottom:963.510000px;}
.y196{bottom:968.910000px;}
.y143{bottom:970.890000px;}
.y6d{bottom:972.330000px;}
.y19e{bottom:978.270000px;}
.ya4{bottom:981.150000px;}
.ycd{bottom:981.330000px;}
.y1dd{bottom:987.090000px;}
.y6c{bottom:990.150000px;}
.y195{bottom:990.510000px;}
.ya3{bottom:998.970000px;}
.ycc{bottom:999.150000px;}
.y6b{bottom:1007.970000px;}
.y1dc{bottom:1010.850000px;}
.y194{bottom:1013.730000px;}
.ya2{bottom:1016.790000px;}
.ycb{bottom:1016.970000px;}
.y6a{bottom:1025.790000px;}
.y1db{bottom:1034.430000px;}
.ya1{bottom:1034.610000px;}
.yca{bottom:1034.790000px;}
.yd{bottom:1036.770000px;}
.y69{bottom:1043.610000px;}
.y192{bottom:1049.550000px;}
.y13f{bottom:1051.350000px;}
.ya0{bottom:1052.610000px;}
.y1da{bottom:1058.010000px;}
.y68{bottom:1061.610000px;}
.yc{bottom:1063.590000px;}
.y9f{bottom:1070.430000px;}
.yc9{bottom:1070.610000px;}
.y67{bottom:1079.430000px;}
.y1d9{bottom:1081.590000px;}
.yb{bottom:1081.770000px;}
.y191{bottom:1085.190000px;}
.yc8{bottom:1088.430000px;}
.y9e{bottom:1096.890000px;}
.y66{bottom:1097.250000px;}
.y1d8{bottom:1106.070000px;}
.yc7{bottom:1106.250000px;}
.y190{bottom:1107.690000px;}
.ya{bottom:1108.050000px;}
.y5{bottom:1112.940000px;}
.y65{bottom:1115.070000px;}
.y13c{bottom:1117.590000px;}
.y9d{bottom:1124.070000px;}
.y1d7{bottom:1129.650000px;}
.y18f{bottom:1130.910000px;}
.y9{bottom:1132.350000px;}
.y64{bottom:1132.890000px;}
.y9c{bottom:1141.890000px;}
.y18d{bottom:1154.160000px;}
.y63{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y1d6{bottom:1168.740000px;}
.y13b{bottom:1177.380000px;}
.y62{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y5f{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y5e{bottom:1198.080000px;}
.h14{height:17.666016px;}
.h25{height:22.485000px;}
.h22{height:22.498500px;}
.h24{height:22.530000px;}
.h2b{height:23.565000px;}
.h29{height:23.580000px;}
.h2a{height:23.610000px;}
.h2c{height:23.745000px;}
.h28{height:23.760000px;}
.h2d{height:23.782500px;}
.h20{height:24.465000px;}
.h21{height:24.501000px;}
.h1f{height:25.365000px;}
.h1e{height:26.805000px;}
.hb{height:35.332031px;}
.h26{height:35.625000px;}
.h27{height:35.805000px;}
.h23{height:35.820000px;}
.h1d{height:38.997070px;}
.h18{height:44.507812px;}
.h1a{height:44.670000px;}
.h16{height:45.061523px;}
.h5{height:47.344922px;}
.h19{height:47.971025px;}
.h13{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h15{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h2e{height:55.503491px;}
.h11{height:57.225000px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.hf{height:60.226875px;}
.h4{height:65.010937px;}
.h1b{height:65.505000px;}
.h3{height:65.884219px;}
.ha{height:70.664062px;}
.h12{height:72.562500px;}
.h17{height:74.004654px;}
.h1c{height:80.445000px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:465.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w1a{width:60.660000px;}
.w1b{width:66.276000px;}
.we{width:68.205000px;}
.w15{width:75.225000px;}
.wd{width:76.161000px;}
.wf{width:81.030000px;}
.w14{width:82.476000px;}
.w8{width:84.240000px;}
.w17{width:91.110000px;}
.w1c{width:91.425000px;}
.wa{width:92.730000px;}
.w7{width:105.321000px;}
.w12{width:105.696000px;}
.w16{width:115.761000px;}
.w10{width:120.589500px;}
.w19{width:121.521000px;}
.w11{width:124.221000px;}
.wc{width:133.365000px;}
.w22{width:134.490000px;}
.w21{width:140.421000px;}
.w18{width:148.309500px;}
.w6{width:150.289500px;}
.w1f{width:163.290000px;}
.w1e{width:206.175000px;}
.w3{width:210.133500px;}
.w9{width:269.535000px;}
.w13{width:330.499500px;}
.w1d{width:332.659500px;}
.wb{width:350.524500px;}
.w20{width:427.204500px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.098500px;}
.x4f{left:9.900000px;}
.x3{left:12.090000px;}
.x2c{left:14.580000px;}
.x2b{left:19.965000px;}
.x28{left:21.585000px;}
.x2a{left:23.025000px;}
.x2d{left:25.380000px;}
.x4d{left:26.850000px;}
.x48{left:29.700000px;}
.x34{left:30.765000px;}
.x49{left:32.970000px;}
.x24{left:34.200000px;}
.x35{left:35.820000px;}
.x22{left:37.965000px;}
.x26{left:40.500000px;}
.x4e{left:43.770000px;}
.x30{left:47.550000px;}
.x39{left:49.320000px;}
.x31{left:52.560000px;}
.x1{left:54.000000px;}
.x32{left:55.800000px;}
.x36{left:60.300000px;}
.x60{left:63.360000px;}
.x40{left:64.470000px;}
.x5e{left:65.520000px;}
.x20{left:66.585000px;}
.x3d{left:67.890000px;}
.x5f{left:69.285000px;}
.x4b{left:71.670000px;}
.xb{left:72.901500px;}
.x46{left:75.090000px;}
.x2e{left:77.040000px;}
.x53{left:79.920000px;}
.x65{left:81.000000px;}
.x33{left:83.685000px;}
.x6{left:86.760000px;}
.x37{left:88.185000px;}
.x1e{left:89.443500px;}
.x62{left:90.705000px;}
.x1d{left:92.026500px;}
.x3e{left:93.960000px;}
.xd{left:95.256000px;}
.x3b{left:97.380000px;}
.x8{left:99.936000px;}
.x3a{left:102.630000px;}
.x2f{left:104.925000px;}
.x4c{left:107.670000px;}
.x38{left:109.290000px;}
.x58{left:118.080000px;}
.x3f{left:121.845000px;}
.x3c{left:125.265000px;}
.x61{left:126.360000px;}
.x55{left:135.030000px;}
.x5b{left:149.610000px;}
.x57{left:154.110000px;}
.x5a{left:155.160000px;}
.x56{left:160.950000px;}
.x15{left:164.910000px;}
.x16{left:171.390000px;}
.x59{left:174.450000px;}
.x12{left:203.430000px;}
.x7{left:205.770000px;}
.x27{left:212.625000px;}
.x17{left:239.430000px;}
.x18{left:245.910000px;}
.x45{left:247.365000px;}
.x9{left:284.655000px;}
.x54{left:321.148500px;}
.x19{left:329.835000px;}
.xa{left:333.255000px;}
.x29{left:336.855000px;}
.x50{left:338.835000px;}
.x1a{left:351.075000px;}
.x13{left:352.155000px;}
.x47{left:368.895000px;}
.x51{left:428.115000px;}
.x41{left:429.555000px;}
.x1b{left:435.315000px;}
.x11{left:438.195000px;}
.x1f{left:442.380000px;}
.x14{left:446.505000px;}
.xe{left:473.505000px;}
.x4a{left:495.840000px;}
.x63{left:500.505000px;}
.x42{left:512.040000px;}
.xf{left:514.725000px;}
.x5c{left:522.660000px;}
.x64{left:527.505000px;}
.x21{left:575.760000px;}
.x43{left:587.280000px;}
.x52{left:634.290000px;}
.x23{left:651.930000px;}
.x5d{left:663.090000px;}
.x10{left:668.490000px;}
.x44{left:703.050000px;}
.x1c{left:704.850000px;}
.x25{left:720.150000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.656000pt;}
.ls13{letter-spacing:22.496000pt;}
.lsd{letter-spacing:45.568000pt;}
.ls12{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.112000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.856000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._27{margin-left:-31.360000pt;}
._26{margin-left:-9.169493pt;}
._3{margin-left:-2.234880pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._5{width:2.520960pt;}
._e{width:3.642880pt;}
._7{width:4.608000pt;}
._6{width:6.251520pt;}
._4{width:7.155840pt;}
._b{width:8.743680pt;}
._a{width:9.648000pt;}
._9{width:10.755840pt;}
._c{width:13.056000pt;}
._12{width:14.592000pt;}
._11{width:15.792000pt;}
._15{width:16.771840pt;}
._10{width:17.792000pt;}
._d{width:18.816000pt;}
._22{width:20.112000pt;}
._1f{width:21.027840pt;}
._1d{width:22.512000pt;}
._8{width:23.472000pt;}
._18{width:25.248000pt;}
._1e{width:26.640000pt;}
._17{width:28.176000pt;}
._21{width:29.416320pt;}
._20{width:30.339840pt;}
._f{width:31.635840pt;}
._13{width:33.456000pt;}
._14{width:34.736000pt;}
._1b{width:36.144000pt;}
._1c{width:37.188480pt;}
._16{width:38.736000pt;}
._25{width:40.368000pt;}
._1a{width:41.664000pt;}
._19{width:42.576000pt;}
._29{width:43.920000pt;}
._3b{width:45.395840pt;}
._36{width:46.288000pt;}
._38{width:47.279360pt;}
._2b{width:48.432000pt;}
._24{width:53.210880pt;}
._23{width:54.144000pt;}
._2a{width:56.208000pt;}
._2f{width:71.952000pt;}
._2e{width:73.296000pt;}
._2d{width:75.072000pt;}
._2c{width:76.512000pt;}
._35{width:98.672000pt;}
._34{width:99.648000pt;}
._37{width:112.128000pt;}
._3c{width:114.384000pt;}
._39{width:140.016000pt;}
._32{width:141.024000pt;}
._33{width:152.640000pt;}
._30{width:228.000000pt;}
._28{width:243.328000pt;}
._3a{width:317.856000pt;}
._2{width:347.756800pt;}
._31{width:350.304000pt;}
.fs8{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.880000pt;}
.y2f{bottom:3.200000pt;}
.y13e{bottom:4.640000pt;}
.y18b{bottom:4.800000pt;}
.y179{bottom:4.946667pt;}
.y147{bottom:4.960000pt;}
.y177{bottom:5.106667pt;}
.y18c{bottom:5.120000pt;}
.y1c5{bottom:6.226667pt;}
.y1c9{bottom:6.386667pt;}
.y1cb{bottom:6.546667pt;}
.y1aa{bottom:7.200000pt;}
.y1a8{bottom:7.360000pt;}
.y142{bottom:7.520000pt;}
.y1b0{bottom:7.546667pt;}
.y1ae{bottom:7.680000pt;}
.y16e{bottom:7.840000pt;}
.y171{bottom:7.986667pt;}
.y16c{bottom:8.000000pt;}
.y175{bottom:8.306667pt;}
.y1c7{bottom:9.746667pt;}
.y1ab{bottom:9.760000pt;}
.y32{bottom:16.800000pt;}
.y2e{bottom:18.560000pt;}
.y13d{bottom:20.480000pt;}
.y18e{bottom:20.640000pt;}
.y193{bottom:20.800000pt;}
.y146{bottom:20.960000pt;}
.y141{bottom:23.520000pt;}
.y31{bottom:30.560000pt;}
.y145{bottom:36.800000pt;}
.y140{bottom:39.360000pt;}
.y2d{bottom:43.520000pt;}
.y61{bottom:52.000000pt;}
.y144{bottom:52.640000pt;}
.y2c{bottom:59.520000pt;}
.y4{bottom:68.320000pt;}
.y60{bottom:68.640000pt;}
.y2b{bottom:75.360000pt;}
.y5d{bottom:82.080000pt;}
.y18a{bottom:84.800000pt;}
.y103{bottom:86.400000pt;}
.y1d5{bottom:89.760000pt;}
.y48{bottom:90.080000pt;}
.y2a{bottom:91.200000pt;}
.y6{bottom:93.440000pt;}
.y13a{bottom:94.080000pt;}
.yec{bottom:94.240000pt;}
.y262{bottom:94.560000pt;}
.y9b{bottom:96.800000pt;}
.y5c{bottom:98.080000pt;}
.y102{bottom:102.240000pt;}
.y1d4{bottom:105.600000pt;}
.y47{bottom:105.920000pt;}
.y29{bottom:107.066667pt;}
.y208{bottom:107.200000pt;}
.y182{bottom:109.920000pt;}
.yeb{bottom:110.080000pt;}
.y261{bottom:110.400000pt;}
.y9a{bottom:112.640000pt;}
.y5b{bottom:113.920000pt;}
.y101{bottom:118.080000pt;}
.y1d3{bottom:121.600000pt;}
.y46{bottom:121.760000pt;}
.y28{bottom:122.906667pt;}
.y207{bottom:123.040000pt;}
.y181{bottom:125.760000pt;}
.y189{bottom:125.920000pt;}
.yea{bottom:126.080000pt;}
.y125{bottom:126.240000pt;}
.y99{bottom:128.640000pt;}
.y5a{bottom:129.760000pt;}
.y100{bottom:134.080000pt;}
.y229{bottom:136.160000pt;}
.y1d2{bottom:137.440000pt;}
.y45{bottom:137.600000pt;}
.y206{bottom:138.880000pt;}
.y27{bottom:138.906667pt;}
.y180{bottom:141.600000pt;}
.y188{bottom:141.760000pt;}
.ye9{bottom:141.920000pt;}
.y260{bottom:142.080000pt;}
.y98{bottom:144.480000pt;}
.y59{bottom:145.600000pt;}
.yff{bottom:149.920000pt;}
.y124{bottom:150.400000pt;}
.y228{bottom:152.160000pt;}
.y1d1{bottom:153.280000pt;}
.y44{bottom:153.440000pt;}
.y205{bottom:154.720000pt;}
.y26{bottom:154.746667pt;}
.y17f{bottom:157.440000pt;}
.y187{bottom:157.600000pt;}
.ye8{bottom:157.760000pt;}
.y25f{bottom:158.080000pt;}
.y139{bottom:158.400000pt;}
.y97{bottom:160.320000pt;}
.y58{bottom:161.440000pt;}
.yfe{bottom:165.760000pt;}
.y123{bottom:166.240000pt;}
.y227{bottom:168.000000pt;}
.y1d0{bottom:168.800000pt;}
.y43{bottom:169.280000pt;}
.y25{bottom:170.586667pt;}
.y204{bottom:170.720000pt;}
.y17e{bottom:173.280000pt;}
.y186{bottom:173.440000pt;}
.y25e{bottom:173.920000pt;}
.y138{bottom:174.240000pt;}
.y96{bottom:176.160000pt;}
.y57{bottom:177.280000pt;}
.ye7{bottom:181.600000pt;}
.y122{bottom:182.080000pt;}
.y226{bottom:183.866667pt;}
.y42{bottom:185.306667pt;}
.y24{bottom:186.426667pt;}
.y203{bottom:186.586667pt;}
.y1cf{bottom:188.680000pt;}
.y17d{bottom:189.146667pt;}
.y185{bottom:189.306667pt;}
.y25d{bottom:189.786667pt;}
.y137{bottom:190.106667pt;}
.y95{bottom:192.026667pt;}
.y56{bottom:193.306667pt;}
.y23e{bottom:197.306667pt;}
.ye6{bottom:197.466667pt;}
.y121{bottom:198.106667pt;}
.y225{bottom:199.706667pt;}
.y41{bottom:201.146667pt;}
.y23{bottom:202.266667pt;}
.y202{bottom:202.426667pt;}
.y17c{bottom:205.146667pt;}
.y25c{bottom:205.626667pt;}
.y136{bottom:206.106667pt;}
.y94{bottom:208.026667pt;}
.y1ce{bottom:209.800000pt;}
.ye5{bottom:213.306667pt;}
.y120{bottom:213.946667pt;}
.y224{bottom:215.546667pt;}
.y40{bottom:216.986667pt;}
.y55{bottom:217.146667pt;}
.y22{bottom:218.106667pt;}
.y201{bottom:218.266667pt;}
.y184{bottom:221.146667pt;}
.yfd{bottom:221.306667pt;}
.y25b{bottom:221.466667pt;}
.y135{bottom:221.946667pt;}
.y93{bottom:223.866667pt;}
.y17b{bottom:228.666667pt;}
.y23d{bottom:229.146667pt;}
.ye4{bottom:229.306667pt;}
.y11f{bottom:229.786667pt;}
.y1cd{bottom:230.760000pt;}
.y264{bottom:231.866667pt;}
.y54{bottom:232.986667pt;}
.y21{bottom:234.106667pt;}
.y183{bottom:236.986667pt;}
.yfc{bottom:237.306667pt;}
.y134{bottom:237.786667pt;}
.y223{bottom:239.386667pt;}
.y92{bottom:239.706667pt;}
.y3f{bottom:240.826667pt;}
.y16{bottom:243.386667pt;}
.y23c{bottom:244.986667pt;}
.ye3{bottom:245.146667pt;}
.y11e{bottom:245.626667pt;}
.y53{bottom:248.826667pt;}
.y20{bottom:249.946667pt;}
.y200{bottom:250.106667pt;}
.y1cc{bottom:251.720000pt;}
.y17a{bottom:252.506667pt;}
.yfb{bottom:253.146667pt;}
.y25a{bottom:253.306667pt;}
.y133{bottom:253.626667pt;}
.y222{bottom:255.386667pt;}
.y91{bottom:255.546667pt;}
.y3e{bottom:256.666667pt;}
.y23b{bottom:260.826667pt;}
.ye2{bottom:260.986667pt;}
.y11d{bottom:261.466667pt;}
.y52{bottom:264.666667pt;}
.y263{bottom:265.626667pt;}
.y1f{bottom:265.786667pt;}
.y1ff{bottom:265.946667pt;}
.y15{bottom:267.226667pt;}
.yfa{bottom:268.986667pt;}
.y259{bottom:269.146667pt;}
.y132{bottom:269.466667pt;}
.y221{bottom:271.226667pt;}
.y90{bottom:271.386667pt;}
.y178{bottom:272.360000pt;}
.y3d{bottom:272.666667pt;}
.y1ca{bottom:272.680000pt;}
.y23a{bottom:276.666667pt;}
.ye1{bottom:276.826667pt;}
.y11c{bottom:277.306667pt;}
.y51{bottom:280.666667pt;}
.y1e{bottom:281.626667pt;}
.y1fe{bottom:281.786667pt;}
.yf9{bottom:284.826667pt;}
.y258{bottom:284.986667pt;}
.y131{bottom:285.306667pt;}
.y220{bottom:287.066667pt;}
.y8f{bottom:287.226667pt;}
.y3c{bottom:288.506667pt;}
.y14{bottom:291.226667pt;}
.y239{bottom:292.506667pt;}
.ye0{bottom:292.666667pt;}
.y11b{bottom:293.306667pt;}
.y1c8{bottom:293.800000pt;}
.y176{bottom:294.920000pt;}
.y50{bottom:296.506667pt;}
.y1d{bottom:297.466667pt;}
.y1fd{bottom:297.626667pt;}
.yf8{bottom:300.666667pt;}
.y257{bottom:300.826667pt;}
.y130{bottom:301.306667pt;}
.y8e{bottom:303.226667pt;}
.y3b{bottom:304.346667pt;}
.ydf{bottom:308.506667pt;}
.y21f{bottom:312.186667pt;}
.y4f{bottom:312.346667pt;}
.yc6{bottom:312.506667pt;}
.y1fc{bottom:313.466667pt;}
.y1c{bottom:313.506667pt;}
.y13{bottom:314.786667pt;}
.y1c6{bottom:315.400000pt;}
.yf7{bottom:316.506667pt;}
.y256{bottom:316.666667pt;}
.y174{bottom:316.680000pt;}
.y11a{bottom:316.826667pt;}
.y12f{bottom:317.146667pt;}
.y8d{bottom:319.066667pt;}
.y3a{bottom:320.186667pt;}
.yde{bottom:324.506667pt;}
.y4e{bottom:328.186667pt;}
.y1fb{bottom:329.306667pt;}
.y1b{bottom:329.346667pt;}
.y238{bottom:332.346667pt;}
.yf6{bottom:332.506667pt;}
.y12e{bottom:332.986667pt;}
.y39{bottom:336.026667pt;}
.y1c4{bottom:336.360000pt;}
.y12{bottom:338.946667pt;}
.y173{bottom:339.240000pt;}
.y21e{bottom:340.026667pt;}
.yc5{bottom:340.346667pt;}
.y119{bottom:340.986667pt;}
.y8c{bottom:342.906667pt;}
.y4d{bottom:344.026667pt;}
.y1a{bottom:345.186667pt;}
.y1fa{bottom:345.306667pt;}
.y237{bottom:348.186667pt;}
.yf5{bottom:348.346667pt;}
.y255{bottom:348.506667pt;}
.y12d{bottom:348.826667pt;}
.y38{bottom:351.866667pt;}
.y11{bottom:354.786667pt;}
.y21d{bottom:356.026667pt;}
.yc4{bottom:356.186667pt;}
.y118{bottom:356.826667pt;}
.y8b{bottom:358.746667pt;}
.y4c{bottom:359.866667pt;}
.y172{bottom:361.000000pt;}
.y19{bottom:361.026667pt;}
.y1f9{bottom:361.146667pt;}
.y236{bottom:364.026667pt;}
.yf4{bottom:364.186667pt;}
.y254{bottom:364.346667pt;}
.y12c{bottom:364.666667pt;}
.y37{bottom:367.866667pt;}
.y1c3{bottom:370.746667pt;}
.y21c{bottom:371.866667pt;}
.yc3{bottom:372.026667pt;}
.y117{bottom:372.666667pt;}
.y8a{bottom:374.586667pt;}
.y4b{bottom:375.866667pt;}
.y18{bottom:376.866667pt;}
.y10{bottom:378.306667pt;}
.y235{bottom:379.866667pt;}
.yf3{bottom:380.026667pt;}
.y253{bottom:380.186667pt;}
.y12b{bottom:380.506667pt;}
.y170{bottom:382.760000pt;}
.y36{bottom:383.706667pt;}
.y1f8{bottom:386.266667pt;}
.y21b{bottom:387.706667pt;}
.yc2{bottom:387.866667pt;}
.y116{bottom:388.506667pt;}
.y89{bottom:390.586667pt;}
.y4a{bottom:391.706667pt;}
.y17{bottom:392.866667pt;}
.yf{bottom:394.146667pt;}
.y1bb{bottom:394.946667pt;}
.yf2{bottom:395.906667pt;}
.y252{bottom:396.066667pt;}
.y12a{bottom:396.546667pt;}
.y35{bottom:399.586667pt;}
.y1c2{bottom:402.946667pt;}
.y21a{bottom:403.586667pt;}
.yc1{bottom:403.906667pt;}
.y115{bottom:404.546667pt;}
.y88{bottom:406.466667pt;}
.y49{bottom:407.586667pt;}
.y1ba{bottom:410.786667pt;}
.y234{bottom:411.746667pt;}
.yf1{bottom:411.906667pt;}
.y129{bottom:412.386667pt;}
.y1f7{bottom:414.146667pt;}
.y1c1{bottom:418.786667pt;}
.y219{bottom:419.426667pt;}
.yc0{bottom:419.746667pt;}
.y114{bottom:420.386667pt;}
.y34{bottom:422.146667pt;}
.y87{bottom:422.306667pt;}
.y16f{bottom:426.306667pt;}
.y1b9{bottom:426.626667pt;}
.y233{bottom:427.586667pt;}
.yf0{bottom:427.746667pt;}
.y251{bottom:427.906667pt;}
.y128{bottom:428.226667pt;}
.y1f6{bottom:429.986667pt;}
.y1c0{bottom:434.626667pt;}
.y218{bottom:435.266667pt;}
.ybf{bottom:435.586667pt;}
.y113{bottom:436.226667pt;}
.y86{bottom:438.146667pt;}
.y1b8{bottom:442.626667pt;}
.y232{bottom:443.426667pt;}
.yef{bottom:443.586667pt;}
.y250{bottom:443.746667pt;}
.y127{bottom:444.066667pt;}
.y30{bottom:445.506667pt;}
.y1f5{bottom:445.986667pt;}
.y16d{bottom:448.066667pt;}
.y1bf{bottom:450.626667pt;}
.y217{bottom:451.266667pt;}
.ybe{bottom:451.426667pt;}
.y112{bottom:452.066667pt;}
.y85{bottom:453.986667pt;}
.y1b7{bottom:458.466667pt;}
.ydd{bottom:459.106667pt;}
.y231{bottom:459.266667pt;}
.yee{bottom:459.426667pt;}
.y24f{bottom:459.586667pt;}
.y126{bottom:459.906667pt;}
.y1f4{bottom:461.826667pt;}
.y1be{bottom:466.466667pt;}
.y216{bottom:467.106667pt;}
.ybd{bottom:467.266667pt;}
.y111{bottom:467.906667pt;}
.y84{bottom:469.826667pt;}
.y16b{bottom:470.466667pt;}
.y1b6{bottom:474.306667pt;}
.ydc{bottom:474.946667pt;}
.y230{bottom:475.106667pt;}
.yed{bottom:475.266667pt;}
.y24e{bottom:475.426667pt;}
.y1f3{bottom:477.666667pt;}
.y1bd{bottom:482.306667pt;}
.y215{bottom:482.946667pt;}
.ybc{bottom:483.106667pt;}
.y83{bottom:485.826667pt;}
.y1b5{bottom:490.146667pt;}
.y22f{bottom:491.106667pt;}
.y24d{bottom:491.266667pt;}
.y110{bottom:491.586667pt;}
.y1f2{bottom:493.506667pt;}
.y16a{bottom:493.666667pt;}
.ye{bottom:497.186667pt;}
.y1bc{bottom:498.146667pt;}
.ybb{bottom:499.106667pt;}
.y82{bottom:501.666667pt;}
.y214{bottom:506.786667pt;}
.y22e{bottom:506.946667pt;}
.y24c{bottom:507.106667pt;}
.y1f1{bottom:509.346667pt;}
.y1b4{bottom:513.666667pt;}
.yba{bottom:514.946667pt;}
.ydb{bottom:515.106667pt;}
.y10f{bottom:517.026667pt;}
.y81{bottom:517.506667pt;}
.y15a{bottom:522.466667pt;}
.y213{bottom:522.626667pt;}
.y22d{bottom:522.786667pt;}
.y24b{bottom:523.106667pt;}
.y1f0{bottom:525.346667pt;}
.yb9{bottom:530.786667pt;}
.yda{bottom:530.946667pt;}
.y80{bottom:533.346667pt;}
.y1b3{bottom:533.506667pt;}
.y159{bottom:538.466667pt;}
.y169{bottom:538.626667pt;}
.y24a{bottom:538.946667pt;}
.y1ef{bottom:541.186667pt;}
.yb8{bottom:546.626667pt;}
.yd9{bottom:546.786667pt;}
.y10e{bottom:549.026667pt;}
.y7f{bottom:549.186667pt;}
.y168{bottom:554.466667pt;}
.y1b2{bottom:554.626667pt;}
.y249{bottom:554.786667pt;}
.y1ee{bottom:557.026667pt;}
.y158{bottom:562.306667pt;}
.yb7{bottom:562.466667pt;}
.yd8{bottom:562.626667pt;}
.y7e{bottom:565.026667pt;}
.y212{bottom:570.306667pt;}
.y167{bottom:570.466667pt;}
.y248{bottom:570.626667pt;}
.y1ed{bottom:572.866667pt;}
.y1b1{bottom:575.586667pt;}
.y10d{bottom:576.546667pt;}
.y157{bottom:578.146667pt;}
.yb6{bottom:578.466667pt;}
.y7d{bottom:581.026667pt;}
.y211{bottom:586.146667pt;}
.y166{bottom:586.306667pt;}
.y247{bottom:586.466667pt;}
.y1ec{bottom:588.706667pt;}
.y156{bottom:593.986667pt;}
.yb5{bottom:594.306667pt;}
.yd7{bottom:594.466667pt;}
.y1af{bottom:596.546667pt;}
.y7c{bottom:596.866667pt;}
.y210{bottom:602.013333pt;}
.y165{bottom:602.173333pt;}
.y246{bottom:602.493333pt;}
.y10c{bottom:604.413333pt;}
.y1eb{bottom:604.573333pt;}
.y155{bottom:609.853333pt;}
.yb4{bottom:610.173333pt;}
.yd6{bottom:610.333333pt;}
.y1ad{bottom:617.533333pt;}
.y20f{bottom:617.853333pt;}
.y164{bottom:618.013333pt;}
.y245{bottom:618.333333pt;}
.y7b{bottom:620.413333pt;}
.y1ea{bottom:620.573333pt;}
.y154{bottom:625.853333pt;}
.yb3{bottom:626.013333pt;}
.yd5{bottom:626.173333pt;}
.y104{bottom:628.413333pt;}
.y10b{bottom:632.413333pt;}
.y163{bottom:633.853333pt;}
.y244{bottom:634.173333pt;}
.y1e9{bottom:636.413333pt;}
.y1ac{bottom:638.653333pt;}
.y153{bottom:641.693333pt;}
.yd4{bottom:642.013333pt;}
.y7a{bottom:645.853333pt;}
.y20e{bottom:649.693333pt;}
.yb2{bottom:649.853333pt;}
.y243{bottom:650.013333pt;}
.y1e8{bottom:652.253333pt;}
.y152{bottom:657.533333pt;}
.yd3{bottom:657.853333pt;}
.y10a{bottom:659.933333pt;}
.y1a9{bottom:660.253333pt;}
.y20d{bottom:665.533333pt;}
.yb1{bottom:665.693333pt;}
.y242{bottom:665.853333pt;}
.y1e7{bottom:668.093333pt;}
.y151{bottom:673.373333pt;}
.y79{bottom:673.693333pt;}
.y1a7{bottom:681.213333pt;}
.y20c{bottom:681.373333pt;}
.y162{bottom:681.533333pt;}
.yb0{bottom:681.693333pt;}
.y1e6{bottom:683.933333pt;}
.y109{bottom:687.613333pt;}
.y150{bottom:689.213333pt;}
.y78{bottom:689.693333pt;}
.y20b{bottom:697.213333pt;}
.y161{bottom:697.373333pt;}
.yaf{bottom:697.533333pt;}
.y241{bottom:697.693333pt;}
.y1e5{bottom:699.773333pt;}
.y14f{bottom:705.053333pt;}
.y77{bottom:705.533333pt;}
.y108{bottom:713.053333pt;}
.y160{bottom:713.213333pt;}
.yae{bottom:713.373333pt;}
.y240{bottom:713.533333pt;}
.y1a6{bottom:715.773333pt;}
.y14e{bottom:721.053333pt;}
.y20a{bottom:721.213333pt;}
.y76{bottom:721.373333pt;}
.y1e4{bottom:725.053333pt;}
.y15f{bottom:729.053333pt;}
.yad{bottom:729.213333pt;}
.y23f{bottom:729.373333pt;}
.y14d{bottom:736.893333pt;}
.y209{bottom:737.053333pt;}
.y75{bottom:737.213333pt;}
.y19d{bottom:742.493333pt;}
.y1a5{bottom:742.653333pt;}
.yac{bottom:745.053333pt;}
.y107{bottom:745.213333pt;}
.y1e3{bottom:752.573333pt;}
.y74{bottom:753.053333pt;}
.y19c{bottom:758.333333pt;}
.y1a4{bottom:758.493333pt;}
.y14c{bottom:760.413333pt;}
.y15e{bottom:760.893333pt;}
.yab{bottom:761.053333pt;}
.y22c{bottom:768.893333pt;}
.y73{bottom:769.053333pt;}
.y1e2{bottom:772.413333pt;}
.y106{bottom:772.893333pt;}
.y19b{bottom:774.173333pt;}
.y1a3{bottom:774.333333pt;}
.y15d{bottom:776.733333pt;}
.yaa{bottom:776.893333pt;}
.yd2{bottom:777.053333pt;}
.y14b{bottom:784.573333pt;}
.y22b{bottom:784.733333pt;}
.y72{bottom:784.893333pt;}
.y19a{bottom:790.013333pt;}
.y1a2{bottom:790.173333pt;}
.y15c{bottom:792.573333pt;}
.ya9{bottom:792.733333pt;}
.yd1{bottom:792.893333pt;}
.y1e1{bottom:793.373333pt;}
.y14a{bottom:800.413333pt;}
.y22a{bottom:800.573333pt;}
.y71{bottom:800.733333pt;}
.y199{bottom:805.853333pt;}
.y1a1{bottom:806.013333pt;}
.y15b{bottom:808.413333pt;}
.ya8{bottom:808.573333pt;}
.yd0{bottom:808.733333pt;}
.y1e0{bottom:814.533333pt;}
.y70{bottom:816.613333pt;}
.y198{bottom:821.893333pt;}
.y149{bottom:824.133333pt;}
.ya7{bottom:824.453333pt;}
.ycf{bottom:824.613333pt;}
.y6f{bottom:832.453333pt;}
.y1df{bottom:835.493333pt;}
.y197{bottom:837.733333pt;}
.y1a0{bottom:837.893333pt;}
.ya6{bottom:840.293333pt;}
.yce{bottom:840.453333pt;}
.y105{bottom:847.973333pt;}
.y6e{bottom:848.293333pt;}
.y148{bottom:851.173333pt;}
.y19f{bottom:853.733333pt;}
.ya5{bottom:856.293333pt;}
.y1de{bottom:856.453333pt;}
.y196{bottom:861.253333pt;}
.y143{bottom:863.013333pt;}
.y6d{bottom:864.293333pt;}
.y19e{bottom:869.573333pt;}
.ya4{bottom:872.133333pt;}
.ycd{bottom:872.293333pt;}
.y1dd{bottom:877.413333pt;}
.y6c{bottom:880.133333pt;}
.y195{bottom:880.453333pt;}
.ya3{bottom:887.973333pt;}
.ycc{bottom:888.133333pt;}
.y6b{bottom:895.973333pt;}
.y1dc{bottom:898.533333pt;}
.y194{bottom:901.093333pt;}
.ya2{bottom:903.813333pt;}
.ycb{bottom:903.973333pt;}
.y6a{bottom:911.813333pt;}
.y1db{bottom:919.493333pt;}
.ya1{bottom:919.653333pt;}
.yca{bottom:919.813333pt;}
.yd{bottom:921.573333pt;}
.y69{bottom:927.653333pt;}
.y192{bottom:932.933333pt;}
.y13f{bottom:934.533333pt;}
.ya0{bottom:935.653333pt;}
.y1da{bottom:940.453333pt;}
.y68{bottom:943.653333pt;}
.yc{bottom:945.413333pt;}
.y9f{bottom:951.493333pt;}
.yc9{bottom:951.653333pt;}
.y67{bottom:959.493333pt;}
.y1d9{bottom:961.413333pt;}
.yb{bottom:961.573333pt;}
.y191{bottom:964.613333pt;}
.yc8{bottom:967.493333pt;}
.y9e{bottom:975.013333pt;}
.y66{bottom:975.333333pt;}
.y1d8{bottom:983.173333pt;}
.yc7{bottom:983.333333pt;}
.y190{bottom:984.613333pt;}
.ya{bottom:984.933333pt;}
.y5{bottom:989.280000pt;}
.y65{bottom:991.173333pt;}
.y13c{bottom:993.413333pt;}
.y9d{bottom:999.173333pt;}
.y1d7{bottom:1004.133333pt;}
.y18f{bottom:1005.253333pt;}
.y9{bottom:1006.533333pt;}
.y64{bottom:1007.013333pt;}
.y9c{bottom:1015.013333pt;}
.y18d{bottom:1025.920000pt;}
.y63{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y1d6{bottom:1038.880000pt;}
.y13b{bottom:1046.560000pt;}
.y62{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y5f{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y5e{bottom:1064.960000pt;}
.h14{height:15.703125pt;}
.h25{height:19.986667pt;}
.h22{height:19.998667pt;}
.h24{height:20.026667pt;}
.h2b{height:20.946667pt;}
.h29{height:20.960000pt;}
.h2a{height:20.986667pt;}
.h2c{height:21.106667pt;}
.h28{height:21.120000pt;}
.h2d{height:21.140000pt;}
.h20{height:21.746667pt;}
.h21{height:21.778667pt;}
.h1f{height:22.546667pt;}
.h1e{height:23.826667pt;}
.hb{height:31.406250pt;}
.h26{height:31.666667pt;}
.h27{height:31.826667pt;}
.h23{height:31.840000pt;}
.h1d{height:34.664062pt;}
.h18{height:39.562500pt;}
.h1a{height:39.706667pt;}
.h16{height:40.054688pt;}
.h5{height:42.084375pt;}
.h19{height:42.640911pt;}
.h13{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h15{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h2e{height:49.336436pt;}
.h11{height:50.866667pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.hf{height:53.535000pt;}
.h4{height:57.787500pt;}
.h1b{height:58.226667pt;}
.h3{height:58.563750pt;}
.ha{height:62.812500pt;}
.h12{height:64.500000pt;}
.h17{height:65.781915pt;}
.h1c{height:71.506667pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:413.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w1a{width:53.920000pt;}
.w1b{width:58.912000pt;}
.we{width:60.626667pt;}
.w15{width:66.866667pt;}
.wd{width:67.698667pt;}
.wf{width:72.026667pt;}
.w14{width:73.312000pt;}
.w8{width:74.880000pt;}
.w17{width:80.986667pt;}
.w1c{width:81.266667pt;}
.wa{width:82.426667pt;}
.w7{width:93.618667pt;}
.w12{width:93.952000pt;}
.w16{width:102.898667pt;}
.w10{width:107.190667pt;}
.w19{width:108.018667pt;}
.w11{width:110.418667pt;}
.wc{width:118.546667pt;}
.w22{width:119.546667pt;}
.w21{width:124.818667pt;}
.w18{width:131.830667pt;}
.w6{width:133.590667pt;}
.w1f{width:145.146667pt;}
.w1e{width:183.266667pt;}
.w3{width:186.785333pt;}
.w9{width:239.586667pt;}
.w13{width:293.777333pt;}
.w1d{width:295.697333pt;}
.wb{width:311.577333pt;}
.w20{width:379.737333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.198667pt;}
.x4f{left:8.800000pt;}
.x3{left:10.746667pt;}
.x2c{left:12.960000pt;}
.x2b{left:17.746667pt;}
.x28{left:19.186667pt;}
.x2a{left:20.466667pt;}
.x2d{left:22.560000pt;}
.x4d{left:23.866667pt;}
.x48{left:26.400000pt;}
.x34{left:27.346667pt;}
.x49{left:29.306667pt;}
.x24{left:30.400000pt;}
.x35{left:31.840000pt;}
.x22{left:33.746667pt;}
.x26{left:36.000000pt;}
.x4e{left:38.906667pt;}
.x30{left:42.266667pt;}
.x39{left:43.840000pt;}
.x31{left:46.720000pt;}
.x1{left:48.000000pt;}
.x32{left:49.600000pt;}
.x36{left:53.600000pt;}
.x60{left:56.320000pt;}
.x40{left:57.306667pt;}
.x5e{left:58.240000pt;}
.x20{left:59.186667pt;}
.x3d{left:60.346667pt;}
.x5f{left:61.586667pt;}
.x4b{left:63.706667pt;}
.xb{left:64.801333pt;}
.x46{left:66.746667pt;}
.x2e{left:68.480000pt;}
.x53{left:71.040000pt;}
.x65{left:72.000000pt;}
.x33{left:74.386667pt;}
.x6{left:77.120000pt;}
.x37{left:78.386667pt;}
.x1e{left:79.505333pt;}
.x62{left:80.626667pt;}
.x1d{left:81.801333pt;}
.x3e{left:83.520000pt;}
.xd{left:84.672000pt;}
.x3b{left:86.560000pt;}
.x8{left:88.832000pt;}
.x3a{left:91.226667pt;}
.x2f{left:93.266667pt;}
.x4c{left:95.706667pt;}
.x38{left:97.146667pt;}
.x58{left:104.960000pt;}
.x3f{left:108.306667pt;}
.x3c{left:111.346667pt;}
.x61{left:112.320000pt;}
.x55{left:120.026667pt;}
.x5b{left:132.986667pt;}
.x57{left:136.986667pt;}
.x5a{left:137.920000pt;}
.x56{left:143.066667pt;}
.x15{left:146.586667pt;}
.x16{left:152.346667pt;}
.x59{left:155.066667pt;}
.x12{left:180.826667pt;}
.x7{left:182.906667pt;}
.x27{left:189.000000pt;}
.x17{left:212.826667pt;}
.x18{left:218.586667pt;}
.x45{left:219.880000pt;}
.x9{left:253.026667pt;}
.x54{left:285.465333pt;}
.x19{left:293.186667pt;}
.xa{left:296.226667pt;}
.x29{left:299.426667pt;}
.x50{left:301.186667pt;}
.x1a{left:312.066667pt;}
.x13{left:313.026667pt;}
.x47{left:327.906667pt;}
.x51{left:380.546667pt;}
.x41{left:381.826667pt;}
.x1b{left:386.946667pt;}
.x11{left:389.506667pt;}
.x1f{left:393.226667pt;}
.x14{left:396.893333pt;}
.xe{left:420.893333pt;}
.x4a{left:440.746667pt;}
.x63{left:444.893333pt;}
.x42{left:455.146667pt;}
.xf{left:457.533333pt;}
.x5c{left:464.586667pt;}
.x64{left:468.893333pt;}
.x21{left:511.786667pt;}
.x43{left:522.026667pt;}
.x52{left:563.813333pt;}
.x23{left:579.493333pt;}
.x5d{left:589.413333pt;}
.x10{left:594.213333pt;}
.x44{left:624.933333pt;}
.x1c{left:626.533333pt;}
.x25{left:640.133333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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