
    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_6efcfe3cd90784428ad08cb3.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_4cbe0e088a5cb76d259f4fd8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_eb89e184e5bcab42b127f1f6.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_cb16f0b082d3cecba5b99856.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_513bd0967a435429f9dcd1e7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c7f3cf0d21440bb1c907d82e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a5525ee58b706103ef58c0d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_674645808a4e8117db8d78be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_17780e3b0d532130b414191f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_42cc9c5f84529afaf36b122b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v4{vertical-align:-62.760005px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls17{letter-spacing:-1.182000px;}
.ls26{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.828000px;}
.ls37{letter-spacing:-0.768000px;}
.ls27{letter-spacing:-0.666000px;}
.ls28{letter-spacing:-0.540000px;}
.ls39{letter-spacing:-0.486600px;}
.ls3a{letter-spacing:-0.450600px;}
.ls2d{letter-spacing:-0.413400px;}
.ls12{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.269400px;}
.ls2e{letter-spacing:-0.252000px;}
.ls3c{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.226200px;}
.ls1e{letter-spacing:-0.223800px;}
.ls2f{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.126000px;}
.ls29{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.018000px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.186480px;}
.ls2a{letter-spacing:0.223920px;}
.ls1f{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.404400px;}
.ls25{letter-spacing:0.513600px;}
.ls22{letter-spacing:0.542160px;}
.ls31{letter-spacing:0.828000px;}
.ls2b{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.620000px;}
.ls1d{letter-spacing:2.340000px;}
.ls1{letter-spacing:2.520000px;}
.ls1a{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.240000px;}
.ls32{letter-spacing:3.780000px;}
.ls9{letter-spacing:4.500000px;}
.ls33{letter-spacing:5.940000px;}
.ls34{letter-spacing:7.380000px;}
.ls3b{letter-spacing:8.100000px;}
.ls24{letter-spacing:11.700000px;}
.ls1c{letter-spacing:12.420000px;}
.lsb{letter-spacing:15.300000px;}
.lsa{letter-spacing:16.020000px;}
.lse{letter-spacing:21.060000px;}
.ls36{letter-spacing:22.500000px;}
.ls6{letter-spacing:66.240000px;}
.ls5{letter-spacing:66.600000px;}
.ls7{letter-spacing:66.960000px;}
.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;}
}
.ws24{word-spacing:-48.240000px;}
.ws9{word-spacing:-31.500000px;}
.wsb{word-spacing:-30.240000px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.865400px;}
.ws22{word-spacing:-15.768000px;}
.ws1c{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.833200px;}
.ws23{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.526600px;}
.ws21{word-spacing:-14.274000px;}
.ws20{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.518000px;}
.wsd{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws1a{word-spacing:-13.374000px;}
.ws1e{word-spacing:-13.248000px;}
.ws12{word-spacing:-13.140000px;}
.wse{word-spacing:-12.672000px;}
.ws4{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.240000px;}
.ws14{word-spacing:-12.105360px;}
.ws8{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.836200px;}
.ws26{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws28{word-spacing:-11.609400px;}
.ws25{word-spacing:-11.292000px;}
.ws1{word-spacing:-10.844400px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.wsa{word-spacing:-9.720000px;}
.ws1f{word-spacing:-8.856000px;}
.wsc{word-spacing:-7.560000px;}
.ws29{word-spacing:-7.316400px;}
.ws27{word-spacing:-7.073400px;}
.ws13{word-spacing:0.000000px;}
._1d{margin-left:-12.859680px;}
._24{margin-left:-2.372160px;}
._1{margin-left:-1.127520px;}
._0{width:1.419840px;}
._2{width:2.693760px;}
._b{width:3.726000px;}
._7{width:4.752000px;}
._8{width:6.186000px;}
._c{width:7.825200px;}
._f{width:8.844480px;}
._10{width:9.983760px;}
._15{width:11.473920px;}
._18{width:12.541440px;}
._13{width:13.625280px;}
._a{width:14.732880px;}
._6{width:15.930000px;}
._9{width:17.237040px;}
._14{width:18.495360px;}
._4{width:19.530000px;}
._12{width:20.736720px;}
._11{width:21.764640px;}
._19{width:23.035200px;}
._1a{width:24.113760px;}
._17{width:25.577280px;}
._16{width:26.593200px;}
._22{width:30.048000px;}
._21{width:31.229280px;}
._29{width:32.503920px;}
._1f{width:33.623280px;}
._20{width:34.744560px;}
._1e{width:48.450960px;}
._23{width:49.464000px;}
._25{width:57.550320px;}
._2a{width:64.207440px;}
._2b{width:65.926320px;}
._28{width:68.567040px;}
._26{width:79.644240px;}
._27{width:80.922720px;}
._d{width:86.939997px;}
._1c{width:108.020640px;}
._1b{width:109.426320px;}
._5{width:1724.709840px;}
._e{width:1834.296000px;}
._3{width:2055.281760px;}
.fcb{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc7{color:rgb(4,50,255);}
.fc4{color:rgb(0,29,53);}
.fc3{color:rgb(255,0,0);}
.fcc{color:rgb(34,34,34);}
.fca{color:rgb(27,27,27);}
.fc9{color:rgb(65,65,65);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.225000px;}
.yba{bottom:3.405000px;}
.y153{bottom:4.305000px;}
.y47{bottom:4.320000px;}
.yae{bottom:4.500000px;}
.yb0{bottom:4.665000px;}
.y161{bottom:4.680000px;}
.y165{bottom:4.860000px;}
.y16b{bottom:5.040000px;}
.y131{bottom:5.220000px;}
.y15f{bottom:5.400000px;}
.y2e{bottom:5.580000px;}
.y163{bottom:5.760000px;}
.y17b{bottom:5.790000px;}
.y150{bottom:6.105000px;}
.yac{bottom:6.285000px;}
.y136{bottom:6.300000px;}
.ya9{bottom:6.480000px;}
.y132{bottom:7.740000px;}
.yf7{bottom:7.920000px;}
.y12f{bottom:8.100000px;}
.yf1{bottom:8.640000px;}
.y157{bottom:8.805000px;}
.y159{bottom:8.806500px;}
.y15a{bottom:8.820000px;}
.yf3{bottom:9.900000px;}
.yb2{bottom:11.325000px;}
.yf9{bottom:11.340000px;}
.yec{bottom:12.060000px;}
.y155{bottom:13.485000px;}
.yaf{bottom:14.025000px;}
.yef{bottom:15.300000px;}
.y134{bottom:15.480000px;}
.y14e{bottom:17.985000px;}
.y46{bottom:18.180000px;}
.y4a{bottom:18.900000px;}
.y2d{bottom:19.440000px;}
.y14d{bottom:19.605000px;}
.y3{bottom:19.800000px;}
.yab{bottom:21.810000px;}
.yf2{bottom:23.400000px;}
.yf5{bottom:23.760000px;}
.yf8{bottom:24.120000px;}
.y12e{bottom:25.920000px;}
.y2c{bottom:27.000000px;}
.yb6{bottom:27.705000px;}
.yee{bottom:30.780000px;}
.y14c{bottom:32.745000px;}
.y2{bottom:33.840000px;}
.y2b{bottom:42.660000px;}
.y1{bottom:46.620000px;}
.y2a{bottom:58.140000px;}
.yc6{bottom:72.360000px;}
.y29{bottom:73.620000px;}
.y227{bottom:75.240000px;}
.y13f{bottom:79.920000px;}
.y80{bottom:80.100000px;}
.y267{bottom:82.620000px;}
.y15d{bottom:82.800000px;}
.y11d{bottom:83.520000px;}
.y44{bottom:84.060000px;}
.y28{bottom:89.100000px;}
.y1eb{bottom:91.800000px;}
.yc5{bottom:92.160000px;}
.y13e{bottom:94.140000px;}
.y266{bottom:96.480000px;}
.y15c{bottom:96.660000px;}
.y7f{bottom:99.900000px;}
.y226{bottom:102.960000px;}
.y11c{bottom:103.500000px;}
.y43{bottom:103.860000px;}
.y27{bottom:104.760000px;}
.y1ea{bottom:105.480000px;}
.y1ae{bottom:108.900000px;}
.y189{bottom:109.080000px;}
.y13d{bottom:109.620000px;}
.y265{bottom:110.160000px;}
.y15b{bottom:110.340000px;}
.yc4{bottom:111.960000px;}
.y7e{bottom:119.700000px;}
.y26{bottom:120.240000px;}
.y13c{bottom:121.860000px;}
.y225{bottom:122.760000px;}
.y11b{bottom:122.940000px;}
.y42{bottom:123.660000px;}
.y264{bottom:124.020000px;}
.y1e9{bottom:125.280000px;}
.y1ad{bottom:128.700000px;}
.yc3{bottom:129.060000px;}
.y25{bottom:135.720000px;}
.y224{bottom:136.440000px;}
.y263{bottom:137.880000px;}
.y1e8{bottom:139.140000px;}
.y7d{bottom:139.500000px;}
.y11a{bottom:142.740000px;}
.y41{bottom:143.460000px;}
.yc2{bottom:146.340000px;}
.y1ac{bottom:148.500000px;}
.y158{bottom:149.263500px;}
.y24{bottom:151.200000px;}
.y262{bottom:151.590000px;}
.y223{bottom:156.270000px;}
.y1e7{bottom:158.970000px;}
.y7c{bottom:159.330000px;}
.y119{bottom:162.570000px;}
.y40{bottom:163.290000px;}
.yc1{bottom:164.010000px;}
.y261{bottom:165.450000px;}
.y23{bottom:166.890000px;}
.y1ab{bottom:168.330000px;}
.y222{bottom:170.130000px;}
.y1e6{bottom:172.830000px;}
.y156{bottom:176.625000px;}
.y260{bottom:179.130000px;}
.y7b{bottom:179.310000px;}
.yc0{bottom:181.290000px;}
.y22{bottom:182.370000px;}
.y118{bottom:182.730000px;}
.y3f{bottom:183.270000px;}
.y1aa{bottom:188.310000px;}
.y221{bottom:189.930000px;}
.y1e5{bottom:192.630000px;}
.y25f{bottom:192.990000px;}
.y30{bottom:193.890000px;}
.y21{bottom:197.850000px;}
.ybf{bottom:198.390000px;}
.y7a{bottom:199.110000px;}
.y117{bottom:202.710000px;}
.y3e{bottom:203.070000px;}
.y220{bottom:203.790000px;}
.y154{bottom:203.805000px;}
.y1e4{bottom:206.310000px;}
.y25e{bottom:206.850000px;}
.y1a9{bottom:208.110000px;}
.y20{bottom:213.330000px;}
.ybe{bottom:215.670000px;}
.y21f{bottom:217.470000px;}
.y79{bottom:218.910000px;}
.y1e3{bottom:220.170000px;}
.y116{bottom:222.510000px;}
.y3d{bottom:222.870000px;}
.y25d{bottom:226.830000px;}
.y1a8{bottom:227.910000px;}
.y1f{bottom:228.990000px;}
.ybd{bottom:232.950000px;}
.y21e{bottom:237.270000px;}
.y78{bottom:238.350000px;}
.ydf{bottom:238.710000px;}
.y1e2{bottom:239.970000px;}
.y152{bottom:240.705000px;}
.y115{bottom:242.310000px;}
.y3c{bottom:242.670000px;}
.y1e{bottom:244.470000px;}
.y1a7{bottom:247.710000px;}
.y25c{bottom:248.430000px;}
.ybc{bottom:249.870000px;}
.y21d{bottom:251.130000px;}
.y1e1{bottom:253.830000px;}
.y77{bottom:258.150000px;}
.y1b2{bottom:258.510000px;}
.y151{bottom:259.245000px;}
.y1d{bottom:259.950000px;}
.y114{bottom:262.110000px;}
.y3b{bottom:262.470000px;}
.y1a6{bottom:267.510000px;}
.ybb{bottom:267.870000px;}
.y25b{bottom:270.030000px;}
.y21c{bottom:270.930000px;}
.yde{bottom:275.070000px;}
.y1c{bottom:275.430000px;}
.y76{bottom:278.490000px;}
.y113{bottom:281.910000px;}
.y3a{bottom:282.450000px;}
.y21b{bottom:284.790000px;}
.yb8{bottom:285.165000px;}
.y1e0{bottom:287.310000px;}
.y1a5{bottom:287.490000px;}
.ydd{bottom:288.390000px;}
.y1b{bottom:290.910000px;}
.y25a{bottom:291.450000px;}
.y14f{bottom:291.645000px;}
.y75{bottom:298.290000px;}
.y21a{bottom:298.470000px;}
.y1df{bottom:301.170000px;}
.yb9{bottom:301.365000px;}
.y112{bottom:301.530000px;}
.y39{bottom:302.250000px;}
.y1a{bottom:306.570000px;}
.y1a4{bottom:307.290000px;}
.ydc{bottom:308.190000px;}
.y259{bottom:313.050000px;}
.y14b{bottom:314.325000px;}
.y1de{bottom:315.030000px;}
.yb5{bottom:317.745000px;}
.y74{bottom:318.090000px;}
.y219{bottom:318.270000px;}
.y111{bottom:321.330000px;}
.y19{bottom:322.050000px;}
.y1a3{bottom:327.090000px;}
.ydb{bottom:327.990000px;}
.y218{bottom:332.130000px;}
.yb7{bottom:333.945000px;}
.y258{bottom:334.470000px;}
.y18{bottom:337.530000px;}
.y73{bottom:337.890000px;}
.y110{bottom:341.490000px;}
.y38{bottom:341.850000px;}
.y1dd{bottom:346.350000px;}
.y1a2{bottom:346.890000px;}
.yda{bottom:347.790000px;}
.yb1{bottom:350.325000px;}
.y217{bottom:351.930000px;}
.y17{bottom:353.010000px;}
.y257{bottom:356.070000px;}
.y72{bottom:357.330000px;}
.y1b1{bottom:357.690000px;}
.y10f{bottom:361.290000px;}
.y37{bottom:361.650000px;}
.y1dc{bottom:364.890000px;}
.y14a{bottom:365.430000px;}
.y216{bottom:365.790000px;}
.yb3{bottom:366.525000px;}
.y1a1{bottom:366.690000px;}
.yd9{bottom:367.590000px;}
.y16{bottom:375.150000px;}
.y71{bottom:377.310000px;}
.y256{bottom:377.490000px;}
.y1b0{bottom:377.670000px;}
.y215{bottom:379.470000px;}
.y10e{bottom:380.730000px;}
.y36{bottom:381.630000px;}
.y149{bottom:382.530000px;}
.yaa{bottom:382.725000px;}
.y13b{bottom:386.490000px;}
.y1a0{bottom:386.670000px;}
.yd8{bottom:387.570000px;}
.y2f{bottom:387.750000px;}
.y1db{bottom:388.110000px;}
.y70{bottom:397.470000px;}
.y255{bottom:399.135000px;}
.y214{bottom:399.315000px;}
.y13a{bottom:400.575000px;}
.y10d{bottom:400.755000px;}
.y35{bottom:401.475000px;}
.yad{bottom:401.655000px;}
.y148{bottom:402.735000px;}
.y188{bottom:405.075000px;}
.y19f{bottom:406.515000px;}
.yd7{bottom:407.415000px;}
.y139{bottom:412.815000px;}
.y213{bottom:413.175000px;}
.y6f{bottom:417.315000px;}
.ya8{bottom:420.375000px;}
.y254{bottom:420.735000px;}
.y10c{bottom:420.915000px;}
.y34{bottom:421.275000px;}
.y1da{bottom:422.355000px;}
.y187{bottom:424.875000px;}
.y19e{bottom:426.315000px;}
.yd6{bottom:426.855000px;}
.y212{bottom:432.975000px;}
.y147{bottom:433.335000px;}
.y6e{bottom:437.115000px;}
.y253{bottom:439.095000px;}
.y1d9{bottom:439.995000px;}
.y10b{bottom:440.715000px;}
.y33{bottom:441.075000px;}
.y186{bottom:441.975000px;}
.yd5{bottom:443.775000px;}
.y19d{bottom:446.115000px;}
.y211{bottom:446.835000px;}
.ya7{bottom:450.075000px;}
.y146{bottom:452.595000px;}
.y185{bottom:455.835000px;}
.y6d{bottom:456.555000px;}
.yd4{bottom:456.915000px;}
.y1d8{bottom:457.275000px;}
.y32{bottom:458.175000px;}
.y252{bottom:458.895000px;}
.y10a{bottom:460.515000px;}
.y19c{bottom:465.915000px;}
.y210{bottom:466.635000px;}
.y145{bottom:467.535000px;}
.y184{bottom:469.515000px;}
.ya6{bottom:470.775000px;}
.y1d7{bottom:474.375000px;}
.y31{bottom:475.815000px;}
.y6c{bottom:476.535000px;}
.yd3{bottom:476.895000px;}
.y109{bottom:480.315000px;}
.y183{bottom:481.035000px;}
.y251{bottom:481.575000px;}
.y19b{bottom:485.895000px;}
.y15{bottom:489.315000px;}
.y1d6{bottom:491.655000px;}
.ya5{bottom:493.815000px;}
.y20f{bottom:494.175000px;}
.y250{bottom:495.435000px;}
.y6b{bottom:496.335000px;}
.yd2{bottom:496.695000px;}
.y108{bottom:500.295000px;}
.y182{bottom:501.375000px;}
.y19a{bottom:505.695000px;}
.y1d5{bottom:508.575000px;}
.y24f{bottom:509.115000px;}
.ya4{bottom:513.615000px;}
.y20e{bottom:513.975000px;}
.y6a{bottom:516.135000px;}
.y1af{bottom:516.495000px;}
.y107{bottom:519.735000px;}
.y181{bottom:521.715000px;}
.y199{bottom:525.495000px;}
.y1d4{bottom:525.855000px;}
.y20d{bottom:527.835000px;}
.y24e{bottom:528.915000px;}
.yd1{bottom:533.055000px;}
.ya3{bottom:533.415000px;}
.y69{bottom:536.295000px;}
.y106{bottom:539.535000px;}
.y180{bottom:542.055000px;}
.y24d{bottom:542.775000px;}
.y1d3{bottom:543.495000px;}
.y198{bottom:545.295000px;}
.yd0{bottom:546.195000px;}
.y20c{bottom:547.635000px;}
.ya2{bottom:553.215000px;}
.y68{bottom:556.095000px;}
.y24c{bottom:556.635000px;}
.y105{bottom:559.695000px;}
.y1d2{bottom:560.415000px;}
.y20b{bottom:561.315000px;}
.y17f{bottom:562.395000px;}
.y197{bottom:565.095000px;}
.ycf{bottom:565.995000px;}
.ya1{bottom:572.655000px;}
.y67{bottom:576.075000px;}
.y24b{bottom:576.435000px;}
.y1d1{bottom:577.515000px;}
.y104{bottom:579.495000px;}
.y20a{bottom:581.115000px;}
.y17e{bottom:581.295000px;}
.y196{bottom:585.075000px;}
.yce{bottom:585.975000px;}
.y24a{bottom:590.115000px;}
.ya0{bottom:591.555000px;}
.y209{bottom:594.975000px;}
.y1d0{bottom:595.155000px;}
.y66{bottom:595.875000px;}
.y103{bottom:599.115000px;}
.y17d{bottom:601.635000px;}
.y195{bottom:604.875000px;}
.ycd{bottom:605.415000px;}
.y9f{bottom:608.835000px;}
.y249{bottom:609.915000px;}
.y1cf{bottom:612.435000px;}
.y208{bottom:614.775000px;}
.y65{bottom:615.675000px;}
.y102{bottom:618.915000px;}
.ycc{bottom:622.335000px;}
.y17c{bottom:622.695000px;}
.y248{bottom:623.775000px;}
.y194{bottom:624.675000px;}
.y9e{bottom:628.635000px;}
.y1ce{bottom:629.715000px;}
.ycb{bottom:635.115000px;}
.y64{bottom:635.475000px;}
.y101{bottom:638.715000px;}
.y17a{bottom:642.135000px;}
.y247{bottom:643.575000px;}
.y193{bottom:644.475000px;}
.y1cd{bottom:646.635000px;}
.y9d{bottom:648.465000px;}
.yca{bottom:654.945000px;}
.y63{bottom:655.305000px;}
.y246{bottom:657.465000px;}
.y100{bottom:659.805000px;}
.y207{bottom:662.145000px;}
.y179{bottom:662.505000px;}
.y1cc{bottom:663.765000px;}
.y192{bottom:664.305000px;}
.y9c{bottom:668.265000px;}
.y62{bottom:675.285000px;}
.y245{bottom:677.265000px;}
.y138{bottom:679.425000px;}
.y1cb{bottom:681.405000px;}
.y206{bottom:681.945000px;}
.yff{bottom:682.665000px;}
.y178{bottom:682.845000px;}
.y191{bottom:684.285000px;}
.y9b{bottom:688.245000px;}
.y244{bottom:690.945000px;}
.y61{bottom:695.085000px;}
.y205{bottom:695.805000px;}
.y1ca{bottom:698.325000px;}
.y137{bottom:700.845000px;}
.y177{bottom:701.745000px;}
.yfe{bottom:702.645000px;}
.y190{bottom:704.085000px;}
.y9a{bottom:708.045000px;}
.y204{bottom:709.665000px;}
.y243{bottom:710.745000px;}
.y133{bottom:712.545000px;}
.y60{bottom:714.885000px;}
.y1c9{bottom:715.605000px;}
.y176{bottom:722.085000px;}
.yfd{bottom:722.445000px;}
.y18f{bottom:723.885000px;}
.y242{bottom:724.605000px;}
.y99{bottom:727.485000px;}
.y203{bottom:729.465000px;}
.y135{bottom:731.085000px;}
.y1c8{bottom:733.245000px;}
.y5f{bottom:734.685000px;}
.y241{bottom:738.465000px;}
.yfc{bottom:742.245000px;}
.y175{bottom:742.425000px;}
.y202{bottom:743.145000px;}
.y18e{bottom:743.685000px;}
.y98{bottom:746.205000px;}
.y1c7{bottom:750.525000px;}
.y12d{bottom:751.785000px;}
.y5e{bottom:754.485000px;}
.y240{bottom:758.265000px;}
.yfb{bottom:761.685000px;}
.y174{bottom:762.765000px;}
.y201{bottom:762.945000px;}
.y97{bottom:763.485000px;}
.y1c6{bottom:767.265000px;}
.y23f{bottom:771.945000px;}
.y5d{bottom:774.465000px;}
.y130{bottom:775.365000px;}
.y200{bottom:776.805000px;}
.yfa{bottom:781.845000px;}
.y173{bottom:782.205000px;}
.y18d{bottom:783.105000px;}
.y96{bottom:783.465000px;}
.y1c5{bottom:787.065000px;}
.y23e{bottom:791.745000px;}
.y5c{bottom:794.265000px;}
.yf4{bottom:796.245000px;}
.y1ff{bottom:796.605000px;}
.y12c{bottom:800.205000px;}
.y18c{bottom:802.905000px;}
.y95{bottom:803.265000px;}
.y23d{bottom:805.605000px;}
.y1c4{bottom:806.865000px;}
.y1fe{bottom:810.285000px;}
.y5b{bottom:814.065000px;}
.y12b{bottom:819.105000px;}
.y23c{bottom:819.285000px;}
.y94{bottom:823.065000px;}
.y172{bottom:823.605000px;}
.y18b{bottom:826.305000px;}
.yf6{bottom:828.645000px;}
.y1c3{bottom:829.545000px;}
.y1fd{bottom:830.085000px;}
.y5a{bottom:833.865000px;}
.y144{bottom:834.045000px;}
.y12a{bottom:837.825000px;}
.y23b{bottom:839.085000px;}
.y171{bottom:842.505000px;}
.y93{bottom:842.865000px;}
.y1fc{bottom:843.945000px;}
.y23a{bottom:852.945000px;}
.y59{bottom:853.665000px;}
.yed{bottom:854.205000px;}
.y1c2{bottom:854.745000px;}
.y129{bottom:857.625000px;}
.y1fb{bottom:857.805000px;}
.y143{bottom:861.585000px;}
.y92{bottom:862.665000px;}
.y170{bottom:862.845000px;}
.y239{bottom:866.805000px;}
.y18a{bottom:868.965000px;}
.y58{bottom:873.645000px;}
.y1c1{bottom:874.545000px;}
.y142{bottom:875.625000px;}
.y128{bottom:877.605000px;}
.y91{bottom:882.645000px;}
.y14{bottom:882.825000px;}
.y16f{bottom:883.185000px;}
.yf0{bottom:883.545000px;}
.y238{bottom:886.605000px;}
.y141{bottom:891.105000px;}
.y1fa{bottom:891.285000px;}
.y57{bottom:893.445000px;}
.y1c0{bottom:894.525000px;}
.y127{bottom:897.450000px;}
.y237{bottom:900.330000px;}
.y13{bottom:901.770000px;}
.y90{bottom:902.490000px;}
.y16e{bottom:903.570000px;}
.y140{bottom:905.910000px;}
.yeb{bottom:910.590000px;}
.y1f9{bottom:911.130000px;}
.y56{bottom:913.290000px;}
.y12{bottom:914.010000px;}
.y236{bottom:914.190000px;}
.y1bf{bottom:914.370000px;}
.y126{bottom:916.890000px;}
.y8f{bottom:922.290000px;}
.y16d{bottom:923.910000px;}
.y1f8{bottom:924.990000px;}
.y11{bottom:926.790000px;}
.yc9{bottom:932.730000px;}
.y55{bottom:933.090000px;}
.y235{bottom:933.990000px;}
.y1be{bottom:934.170000px;}
.y125{bottom:936.150000px;}
.y8e{bottom:942.090000px;}
.y10{bottom:942.630000px;}
.y16c{bottom:943.350000px;}
.y1f7{bottom:944.790000px;}
.y234{bottom:947.850000px;}
.yea{bottom:948.930000px;}
.yf{bottom:952.170000px;}
.yc8{bottom:952.530000px;}
.y54{bottom:952.890000px;}
.y1bd{bottom:953.970000px;}
.y124{bottom:954.870000px;}
.y1f6{bottom:958.650000px;}
.y8d{bottom:961.530000px;}
.y16a{bottom:964.410000px;}
.ye9{bottom:966.030000px;}
.ye{bottom:966.210000px;}
.y1f5{bottom:972.330000px;}
.yc7{bottom:972.510000px;}
.y53{bottom:972.870000px;}
.y1bc{bottom:973.770000px;}
.y123{bottom:974.850000px;}
.y8c{bottom:978.450000px;}
.y233{bottom:981.330000px;}
.y169{bottom:983.310000px;}
.ye8{bottom:987.090000px;}
.yd{bottom:988.710000px;}
.y8b{bottom:991.770000px;}
.y1f4{bottom:992.130000px;}
.y52{bottom:992.670000px;}
.y1bb{bottom:993.750000px;}
.y122{bottom:994.650000px;}
.y232{bottom:995.190000px;}
.y168{bottom:1003.650000px;}
.y1f3{bottom:1005.990000px;}
.ye7{bottom:1009.590000px;}
.yc{bottom:1011.570000px;}
.y51{bottom:1012.470000px;}
.y1ba{bottom:1013.550000px;}
.y121{bottom:1014.450000px;}
.y231{bottom:1014.990000px;}
.y1f2{bottom:1019.850000px;}
.y167{bottom:1023.990000px;}
.y230{bottom:1028.850000px;}
.ye6{bottom:1029.390000px;}
.y8a{bottom:1031.370000px;}
.yb{bottom:1032.270000px;}
.y1b9{bottom:1033.350000px;}
.y120{bottom:1033.890000px;}
.y1f1{bottom:1039.650000px;}
.y166{bottom:1044.330000px;}
.y22f{bottom:1048.650000px;}
.ye5{bottom:1049.190000px;}
.y89{bottom:1051.170000px;}
.y50{bottom:1052.070000px;}
.y1b8{bottom:1052.790000px;}
.y11f{bottom:1053.150000px;}
.y1f0{bottom:1053.330000px;}
.y22e{bottom:1062.330000px;}
.y164{bottom:1064.670000px;}
.ya{bottom:1068.450000px;}
.ye4{bottom:1068.990000px;}
.y88{bottom:1070.970000px;}
.y4f{bottom:1072.050000px;}
.y1ef{bottom:1073.130000px;}
.y1b7{bottom:1075.650000px;}
.y22d{bottom:1082.130000px;}
.y162{bottom:1083.390000px;}
.y1ee{bottom:1086.990000px;}
.ye3{bottom:1088.970000px;}
.y87{bottom:1090.950000px;}
.y4e{bottom:1091.850000px;}
.y22c{bottom:1095.990000px;}
.y1b6{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y160{bottom:1104.450000px;}
.y1ed{bottom:1106.790000px;}
.ye2{bottom:1108.770000px;}
.y86{bottom:1110.750000px;}
.y4d{bottom:1111.650000px;}
.y45{bottom:1112.730000px;}
.y22b{bottom:1115.790000px;}
.y8{bottom:1117.950000px;}
.y1b5{bottom:1120.650000px;}
.y15e{bottom:1124.070000px;}
.ye1{bottom:1128.210000px;}
.y22a{bottom:1129.650000px;}
.y85{bottom:1130.190000px;}
.y4c{bottom:1131.450000px;}
.y1b4{bottom:1140.450000px;}
.ye0{bottom:1145.880000px;}
.y84{bottom:1147.140000px;}
.y229{bottom:1149.480000px;}
.y11e{bottom:1150.920000px;}
.y4b{bottom:1151.280000px;}
.y1ec{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y83{bottom:1159.920000px;}
.y1b3{bottom:1160.280000px;}
.y228{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y49{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y82{bottom:1178.460000px;}
.y48{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y81{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h10{height:12.012891px;}
.h21{height:15.465000px;}
.h24{height:15.645000px;}
.h2e{height:17.820000px;}
.h1e{height:17.985000px;}
.h1f{height:18.021000px;}
.h12{height:18.140625px;}
.h38{height:18.525000px;}
.h40{height:18.705000px;}
.h45{height:18.720000px;}
.h3f{height:18.885000px;}
.h44{height:18.900000px;}
.h31{height:19.980000px;}
.h47{height:20.145000px;}
.h3e{height:20.325000px;}
.h43{height:20.340000px;}
.h42{height:20.362500px;}
.h46{height:20.370000px;}
.h36{height:21.945000px;}
.h1b{height:22.845000px;}
.h2f{height:22.860000px;}
.h2b{height:24.840000px;}
.h28{height:26.302500px;}
.he{height:26.441367px;}
.h3a{height:27.165000px;}
.h3b{height:27.352500px;}
.h3c{height:27.396000px;}
.h15{height:27.705000px;}
.h29{height:28.620000px;}
.hf{height:29.664141px;}
.h2c{height:31.500000px;}
.h20{height:31.665000px;}
.h23{height:31.845000px;}
.h37{height:32.385000px;}
.h26{height:33.825000px;}
.hd{height:35.314453px;}
.h39{height:36.885000px;}
.h1c{height:36.921000px;}
.h30{height:38.520000px;}
.h3{height:40.985156px;}
.h2d{height:41.400000px;}
.h35{height:42.086250px;}
.h16{height:42.922699px;}
.h34{height:46.605000px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h4b{height:49.583118px;}
.h3d{height:50.558906px;}
.h19{height:52.435898px;}
.h1d{height:52.971680px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h14{height:55.503472px;}
.h27{height:55.642500px;}
.h2a{height:57.240000px;}
.h18{height:58.621992px;}
.hb{height:58.651172px;}
.h41{height:59.092031px;}
.h9{height:60.226875px;}
.h1a{height:61.423863px;}
.h22{height:64.245000px;}
.h25{height:65.518594px;}
.hc{height:66.543750px;}
.h13{height:66.757500px;}
.h17{height:70.664062px;}
.h5{height:72.562500px;}
.h49{height:82.676953px;}
.h4a{height:84.898125px;}
.h32{height:93.983203px;}
.h48{height:99.687656px;}
.h33{height:105.996094px;}
.ha{height:126.984375px;}
.h11{height:387.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w24{width:36.561000px;}
.w1c{width:60.480000px;}
.w17{width:61.905000px;}
.w14{width:61.920000px;}
.w15{width:62.100000px;}
.w13{width:62.121000px;}
.w1b{width:62.130000px;}
.w16{width:62.136000px;}
.w18{width:62.265000px;}
.w1a{width:67.665000px;}
.w19{width:67.701000px;}
.wc{width:99.529500px;}
.w3{width:101.730000px;}
.w20{width:115.185000px;}
.w1f{width:122.241000px;}
.w1e{width:122.256000px;}
.wf{width:122.610000px;}
.w10{width:124.041000px;}
.w12{width:124.185000px;}
.w11{width:124.236000px;}
.w21{width:129.090000px;}
.w28{width:130.170000px;}
.w26{width:132.645000px;}
.w25{width:134.136000px;}
.we{width:135.561000px;}
.w5{width:136.249500px;}
.w27{width:140.421000px;}
.w8{width:148.530000px;}
.w23{width:153.349500px;}
.w7{width:162.555000px;}
.wb{width:175.170000px;}
.w9{width:179.659500px;}
.w29{width:190.639500px;}
.w4{width:232.050000px;}
.w1d{width:244.279500px;}
.w6{width:281.760000px;}
.wd{width:373.920000px;}
.wa{width:376.275000px;}
.w2{width:640.890000px;}
.w22{width:731.295000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x10{left:8.089500px;}
.x9{left:10.650000px;}
.x13{left:14.025000px;}
.x23{left:17.265000px;}
.x1f{left:18.705000px;}
.x25{left:20.340000px;}
.x22{left:21.405000px;}
.x29{left:22.860000px;}
.x36{left:24.840000px;}
.x8{left:26.850000px;}
.x37{left:28.080000px;}
.x1b{left:30.090000px;}
.x42{left:32.400000px;}
.x1e{left:34.380000px;}
.x41{left:35.989500px;}
.x1c{left:41.070000px;}
.x7{left:42.510000px;}
.x33{left:48.060000px;}
.x30{left:51.480000px;}
.x35{left:54.930000px;}
.x40{left:56.190000px;}
.x3c{left:57.585000px;}
.x6{left:58.710000px;}
.x3e{left:61.590000px;}
.x15{left:71.130000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x44{left:102.636000px;}
.xc{left:108.036000px;}
.x45{left:113.076000px;}
.x19{left:137.190000px;}
.x46{left:158.250000px;}
.x18{left:179.145000px;}
.x11{left:217.305000px;}
.x38{left:225.208500px;}
.x39{left:233.145000px;}
.x24{left:241.275000px;}
.x16{left:260.715000px;}
.x3a{left:270.435000px;}
.x20{left:303.915000px;}
.x2f{left:325.335000px;}
.xf{left:359.715000px;}
.x26{left:366.015000px;}
.xe{left:395.715000px;}
.x3b{left:405.300000px;}
.x21{left:428.880000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x31{left:447.600000px;}
.x27{left:490.800000px;}
.x12{left:499.080000px;}
.x2c{left:514.005000px;}
.x3d{left:538.680000px;}
.x1a{left:553.800000px;}
.x32{left:569.850000px;}
.xd{left:590.370000px;}
.x28{left:621.690000px;}
.x17{left:636.990000px;}
.x14{left:661.650000px;}
.x3f{left:680.010000px;}
.x2b{left:681.810000px;}
.x34{left:685.050000px;}
.x1d{left:690.090000px;}
.x4{left:721.950000px;}
.x2a{left:752.220000px;}
.x2d{left:807.840000px;}
.x43{left:810.180000px;}
.x2e{left:812.340000px;}
@media print{
.v4{vertical-align:-55.786671pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls17{letter-spacing:-1.050667pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls37{letter-spacing:-0.682667pt;}
.ls27{letter-spacing:-0.592000pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls39{letter-spacing:-0.432533pt;}
.ls3a{letter-spacing:-0.400533pt;}
.ls2d{letter-spacing:-0.367467pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.239467pt;}
.ls2e{letter-spacing:-0.224000pt;}
.ls3c{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.201067pt;}
.ls1e{letter-spacing:-0.198933pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.112000pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.165760pt;}
.ls2a{letter-spacing:0.199040pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.359467pt;}
.ls25{letter-spacing:0.456533pt;}
.ls22{letter-spacing:0.481920pt;}
.ls31{letter-spacing:0.736000pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls1{letter-spacing:2.240000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls8{letter-spacing:2.880000pt;}
.ls32{letter-spacing:3.360000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls33{letter-spacing:5.280000pt;}
.ls34{letter-spacing:6.560000pt;}
.ls3b{letter-spacing:7.200000pt;}
.ls24{letter-spacing:10.400000pt;}
.ls1c{letter-spacing:11.040000pt;}
.lsb{letter-spacing:13.600000pt;}
.lsa{letter-spacing:14.240000pt;}
.lse{letter-spacing:18.720000pt;}
.ls36{letter-spacing:20.000000pt;}
.ls6{letter-spacing:58.880000pt;}
.ls5{letter-spacing:59.200000pt;}
.ls7{letter-spacing:59.520000pt;}
.ws24{word-spacing:-42.880000pt;}
.ws9{word-spacing:-28.000000pt;}
.wsb{word-spacing:-26.880000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.991467pt;}
.ws22{word-spacing:-14.016000pt;}
.ws1c{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws23{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.912533pt;}
.ws21{word-spacing:-12.688000pt;}
.ws20{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.016000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws1a{word-spacing:-11.888000pt;}
.ws1e{word-spacing:-11.776000pt;}
.ws12{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.264000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.880000pt;}
.ws14{word-spacing:-10.760320pt;}
.ws8{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.521067pt;}
.ws26{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws28{word-spacing:-10.319467pt;}
.ws25{word-spacing:-10.037333pt;}
.ws1{word-spacing:-9.639467pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.wsa{word-spacing:-8.640000pt;}
.ws1f{word-spacing:-7.872000pt;}
.wsc{word-spacing:-6.720000pt;}
.ws29{word-spacing:-6.503467pt;}
.ws27{word-spacing:-6.287467pt;}
.ws13{word-spacing:0.000000pt;}
._1d{margin-left:-11.430827pt;}
._24{margin-left:-2.108587pt;}
._1{margin-left:-1.002240pt;}
._0{width:1.262080pt;}
._2{width:2.394453pt;}
._b{width:3.312000pt;}
._7{width:4.224000pt;}
._8{width:5.498667pt;}
._c{width:6.955733pt;}
._f{width:7.861760pt;}
._10{width:8.874453pt;}
._15{width:10.199040pt;}
._18{width:11.147947pt;}
._13{width:12.111360pt;}
._a{width:13.095893pt;}
._6{width:14.160000pt;}
._9{width:15.321813pt;}
._14{width:16.440320pt;}
._4{width:17.360000pt;}
._12{width:18.432640pt;}
._11{width:19.346347pt;}
._19{width:20.475733pt;}
._1a{width:21.434453pt;}
._17{width:22.735360pt;}
._16{width:23.638400pt;}
._22{width:26.709333pt;}
._21{width:27.759360pt;}
._29{width:28.892373pt;}
._1f{width:29.887360pt;}
._20{width:30.884053pt;}
._1e{width:43.067520pt;}
._23{width:43.968000pt;}
._25{width:51.155840pt;}
._2a{width:57.073280pt;}
._2b{width:58.601173pt;}
._28{width:60.948480pt;}
._26{width:70.794880pt;}
._27{width:71.931307pt;}
._d{width:77.279997pt;}
._1c{width:96.018347pt;}
._1b{width:97.267840pt;}
._5{width:1533.075413pt;}
._e{width:1630.485333pt;}
._3{width:1826.917120pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.866667pt;}
.yba{bottom:3.026667pt;}
.y153{bottom:3.826667pt;}
.y47{bottom:3.840000pt;}
.yae{bottom:4.000000pt;}
.yb0{bottom:4.146667pt;}
.y161{bottom:4.160000pt;}
.y165{bottom:4.320000pt;}
.y16b{bottom:4.480000pt;}
.y131{bottom:4.640000pt;}
.y15f{bottom:4.800000pt;}
.y2e{bottom:4.960000pt;}
.y163{bottom:5.120000pt;}
.y17b{bottom:5.146667pt;}
.y150{bottom:5.426667pt;}
.yac{bottom:5.586667pt;}
.y136{bottom:5.600000pt;}
.ya9{bottom:5.760000pt;}
.y132{bottom:6.880000pt;}
.yf7{bottom:7.040000pt;}
.y12f{bottom:7.200000pt;}
.yf1{bottom:7.680000pt;}
.y157{bottom:7.826667pt;}
.y159{bottom:7.828000pt;}
.y15a{bottom:7.840000pt;}
.yf3{bottom:8.800000pt;}
.yb2{bottom:10.066667pt;}
.yf9{bottom:10.080000pt;}
.yec{bottom:10.720000pt;}
.y155{bottom:11.986667pt;}
.yaf{bottom:12.466667pt;}
.yef{bottom:13.600000pt;}
.y134{bottom:13.760000pt;}
.y14e{bottom:15.986667pt;}
.y46{bottom:16.160000pt;}
.y4a{bottom:16.800000pt;}
.y2d{bottom:17.280000pt;}
.y14d{bottom:17.426667pt;}
.y3{bottom:17.600000pt;}
.yab{bottom:19.386667pt;}
.yf2{bottom:20.800000pt;}
.yf5{bottom:21.120000pt;}
.yf8{bottom:21.440000pt;}
.y12e{bottom:23.040000pt;}
.y2c{bottom:24.000000pt;}
.yb6{bottom:24.626667pt;}
.yee{bottom:27.360000pt;}
.y14c{bottom:29.106667pt;}
.y2{bottom:30.080000pt;}
.y2b{bottom:37.920000pt;}
.y1{bottom:41.440000pt;}
.y2a{bottom:51.680000pt;}
.yc6{bottom:64.320000pt;}
.y29{bottom:65.440000pt;}
.y227{bottom:66.880000pt;}
.y13f{bottom:71.040000pt;}
.y80{bottom:71.200000pt;}
.y267{bottom:73.440000pt;}
.y15d{bottom:73.600000pt;}
.y11d{bottom:74.240000pt;}
.y44{bottom:74.720000pt;}
.y28{bottom:79.200000pt;}
.y1eb{bottom:81.600000pt;}
.yc5{bottom:81.920000pt;}
.y13e{bottom:83.680000pt;}
.y266{bottom:85.760000pt;}
.y15c{bottom:85.920000pt;}
.y7f{bottom:88.800000pt;}
.y226{bottom:91.520000pt;}
.y11c{bottom:92.000000pt;}
.y43{bottom:92.320000pt;}
.y27{bottom:93.120000pt;}
.y1ea{bottom:93.760000pt;}
.y1ae{bottom:96.800000pt;}
.y189{bottom:96.960000pt;}
.y13d{bottom:97.440000pt;}
.y265{bottom:97.920000pt;}
.y15b{bottom:98.080000pt;}
.yc4{bottom:99.520000pt;}
.y7e{bottom:106.400000pt;}
.y26{bottom:106.880000pt;}
.y13c{bottom:108.320000pt;}
.y225{bottom:109.120000pt;}
.y11b{bottom:109.280000pt;}
.y42{bottom:109.920000pt;}
.y264{bottom:110.240000pt;}
.y1e9{bottom:111.360000pt;}
.y1ad{bottom:114.400000pt;}
.yc3{bottom:114.720000pt;}
.y25{bottom:120.640000pt;}
.y224{bottom:121.280000pt;}
.y263{bottom:122.560000pt;}
.y1e8{bottom:123.680000pt;}
.y7d{bottom:124.000000pt;}
.y11a{bottom:126.880000pt;}
.y41{bottom:127.520000pt;}
.yc2{bottom:130.080000pt;}
.y1ac{bottom:132.000000pt;}
.y158{bottom:132.678667pt;}
.y24{bottom:134.400000pt;}
.y262{bottom:134.746667pt;}
.y223{bottom:138.906667pt;}
.y1e7{bottom:141.306667pt;}
.y7c{bottom:141.626667pt;}
.y119{bottom:144.506667pt;}
.y40{bottom:145.146667pt;}
.yc1{bottom:145.786667pt;}
.y261{bottom:147.066667pt;}
.y23{bottom:148.346667pt;}
.y1ab{bottom:149.626667pt;}
.y222{bottom:151.226667pt;}
.y1e6{bottom:153.626667pt;}
.y156{bottom:157.000000pt;}
.y260{bottom:159.226667pt;}
.y7b{bottom:159.386667pt;}
.yc0{bottom:161.146667pt;}
.y22{bottom:162.106667pt;}
.y118{bottom:162.426667pt;}
.y3f{bottom:162.906667pt;}
.y1aa{bottom:167.386667pt;}
.y221{bottom:168.826667pt;}
.y1e5{bottom:171.226667pt;}
.y25f{bottom:171.546667pt;}
.y30{bottom:172.346667pt;}
.y21{bottom:175.866667pt;}
.ybf{bottom:176.346667pt;}
.y7a{bottom:176.986667pt;}
.y117{bottom:180.186667pt;}
.y3e{bottom:180.506667pt;}
.y220{bottom:181.146667pt;}
.y154{bottom:181.160000pt;}
.y1e4{bottom:183.386667pt;}
.y25e{bottom:183.866667pt;}
.y1a9{bottom:184.986667pt;}
.y20{bottom:189.626667pt;}
.ybe{bottom:191.706667pt;}
.y21f{bottom:193.306667pt;}
.y79{bottom:194.586667pt;}
.y1e3{bottom:195.706667pt;}
.y116{bottom:197.786667pt;}
.y3d{bottom:198.106667pt;}
.y25d{bottom:201.626667pt;}
.y1a8{bottom:202.586667pt;}
.y1f{bottom:203.546667pt;}
.ybd{bottom:207.066667pt;}
.y21e{bottom:210.906667pt;}
.y78{bottom:211.866667pt;}
.ydf{bottom:212.186667pt;}
.y1e2{bottom:213.306667pt;}
.y152{bottom:213.960000pt;}
.y115{bottom:215.386667pt;}
.y3c{bottom:215.706667pt;}
.y1e{bottom:217.306667pt;}
.y1a7{bottom:220.186667pt;}
.y25c{bottom:220.826667pt;}
.ybc{bottom:222.106667pt;}
.y21d{bottom:223.226667pt;}
.y1e1{bottom:225.626667pt;}
.y77{bottom:229.466667pt;}
.y1b2{bottom:229.786667pt;}
.y151{bottom:230.440000pt;}
.y1d{bottom:231.066667pt;}
.y114{bottom:232.986667pt;}
.y3b{bottom:233.306667pt;}
.y1a6{bottom:237.786667pt;}
.ybb{bottom:238.106667pt;}
.y25b{bottom:240.026667pt;}
.y21c{bottom:240.826667pt;}
.yde{bottom:244.506667pt;}
.y1c{bottom:244.826667pt;}
.y76{bottom:247.546667pt;}
.y113{bottom:250.586667pt;}
.y3a{bottom:251.066667pt;}
.y21b{bottom:253.146667pt;}
.yb8{bottom:253.480000pt;}
.y1e0{bottom:255.386667pt;}
.y1a5{bottom:255.546667pt;}
.ydd{bottom:256.346667pt;}
.y1b{bottom:258.586667pt;}
.y25a{bottom:259.066667pt;}
.y14f{bottom:259.240000pt;}
.y75{bottom:265.146667pt;}
.y21a{bottom:265.306667pt;}
.y1df{bottom:267.706667pt;}
.yb9{bottom:267.880000pt;}
.y112{bottom:268.026667pt;}
.y39{bottom:268.666667pt;}
.y1a{bottom:272.506667pt;}
.y1a4{bottom:273.146667pt;}
.ydc{bottom:273.946667pt;}
.y259{bottom:278.266667pt;}
.y14b{bottom:279.400000pt;}
.y1de{bottom:280.026667pt;}
.yb5{bottom:282.440000pt;}
.y74{bottom:282.746667pt;}
.y219{bottom:282.906667pt;}
.y111{bottom:285.626667pt;}
.y19{bottom:286.266667pt;}
.y1a3{bottom:290.746667pt;}
.ydb{bottom:291.546667pt;}
.y218{bottom:295.226667pt;}
.yb7{bottom:296.840000pt;}
.y258{bottom:297.306667pt;}
.y18{bottom:300.026667pt;}
.y73{bottom:300.346667pt;}
.y110{bottom:303.546667pt;}
.y38{bottom:303.866667pt;}
.y1dd{bottom:307.866667pt;}
.y1a2{bottom:308.346667pt;}
.yda{bottom:309.146667pt;}
.yb1{bottom:311.400000pt;}
.y217{bottom:312.826667pt;}
.y17{bottom:313.786667pt;}
.y257{bottom:316.506667pt;}
.y72{bottom:317.626667pt;}
.y1b1{bottom:317.946667pt;}
.y10f{bottom:321.146667pt;}
.y37{bottom:321.466667pt;}
.y1dc{bottom:324.346667pt;}
.y14a{bottom:324.826667pt;}
.y216{bottom:325.146667pt;}
.yb3{bottom:325.800000pt;}
.y1a1{bottom:325.946667pt;}
.yd9{bottom:326.746667pt;}
.y16{bottom:333.466667pt;}
.y71{bottom:335.386667pt;}
.y256{bottom:335.546667pt;}
.y1b0{bottom:335.706667pt;}
.y215{bottom:337.306667pt;}
.y10e{bottom:338.426667pt;}
.y36{bottom:339.226667pt;}
.y149{bottom:340.026667pt;}
.yaa{bottom:340.200000pt;}
.y13b{bottom:343.546667pt;}
.y1a0{bottom:343.706667pt;}
.yd8{bottom:344.506667pt;}
.y2f{bottom:344.666667pt;}
.y1db{bottom:344.986667pt;}
.y70{bottom:353.306667pt;}
.y255{bottom:354.786667pt;}
.y214{bottom:354.946667pt;}
.y13a{bottom:356.066667pt;}
.y10d{bottom:356.226667pt;}
.y35{bottom:356.866667pt;}
.yad{bottom:357.026667pt;}
.y148{bottom:357.986667pt;}
.y188{bottom:360.066667pt;}
.y19f{bottom:361.346667pt;}
.yd7{bottom:362.146667pt;}
.y139{bottom:366.946667pt;}
.y213{bottom:367.266667pt;}
.y6f{bottom:370.946667pt;}
.ya8{bottom:373.666667pt;}
.y254{bottom:373.986667pt;}
.y10c{bottom:374.146667pt;}
.y34{bottom:374.466667pt;}
.y1da{bottom:375.426667pt;}
.y187{bottom:377.666667pt;}
.y19e{bottom:378.946667pt;}
.yd6{bottom:379.426667pt;}
.y212{bottom:384.866667pt;}
.y147{bottom:385.186667pt;}
.y6e{bottom:388.546667pt;}
.y253{bottom:390.306667pt;}
.y1d9{bottom:391.106667pt;}
.y10b{bottom:391.746667pt;}
.y33{bottom:392.066667pt;}
.y186{bottom:392.866667pt;}
.yd5{bottom:394.466667pt;}
.y19d{bottom:396.546667pt;}
.y211{bottom:397.186667pt;}
.ya7{bottom:400.066667pt;}
.y146{bottom:402.306667pt;}
.y185{bottom:405.186667pt;}
.y6d{bottom:405.826667pt;}
.yd4{bottom:406.146667pt;}
.y1d8{bottom:406.466667pt;}
.y32{bottom:407.266667pt;}
.y252{bottom:407.906667pt;}
.y10a{bottom:409.346667pt;}
.y19c{bottom:414.146667pt;}
.y210{bottom:414.786667pt;}
.y145{bottom:415.586667pt;}
.y184{bottom:417.346667pt;}
.ya6{bottom:418.466667pt;}
.y1d7{bottom:421.666667pt;}
.y31{bottom:422.946667pt;}
.y6c{bottom:423.586667pt;}
.yd3{bottom:423.906667pt;}
.y109{bottom:426.946667pt;}
.y183{bottom:427.586667pt;}
.y251{bottom:428.066667pt;}
.y19b{bottom:431.906667pt;}
.y15{bottom:434.946667pt;}
.y1d6{bottom:437.026667pt;}
.ya5{bottom:438.946667pt;}
.y20f{bottom:439.266667pt;}
.y250{bottom:440.386667pt;}
.y6b{bottom:441.186667pt;}
.yd2{bottom:441.506667pt;}
.y108{bottom:444.706667pt;}
.y182{bottom:445.666667pt;}
.y19a{bottom:449.506667pt;}
.y1d5{bottom:452.066667pt;}
.y24f{bottom:452.546667pt;}
.ya4{bottom:456.546667pt;}
.y20e{bottom:456.866667pt;}
.y6a{bottom:458.786667pt;}
.y1af{bottom:459.106667pt;}
.y107{bottom:461.986667pt;}
.y181{bottom:463.746667pt;}
.y199{bottom:467.106667pt;}
.y1d4{bottom:467.426667pt;}
.y20d{bottom:469.186667pt;}
.y24e{bottom:470.146667pt;}
.yd1{bottom:473.826667pt;}
.ya3{bottom:474.146667pt;}
.y69{bottom:476.706667pt;}
.y106{bottom:479.586667pt;}
.y180{bottom:481.826667pt;}
.y24d{bottom:482.466667pt;}
.y1d3{bottom:483.106667pt;}
.y198{bottom:484.706667pt;}
.yd0{bottom:485.506667pt;}
.y20c{bottom:486.786667pt;}
.ya2{bottom:491.746667pt;}
.y68{bottom:494.306667pt;}
.y24c{bottom:494.786667pt;}
.y105{bottom:497.506667pt;}
.y1d2{bottom:498.146667pt;}
.y20b{bottom:498.946667pt;}
.y17f{bottom:499.906667pt;}
.y197{bottom:502.306667pt;}
.ycf{bottom:503.106667pt;}
.ya1{bottom:509.026667pt;}
.y67{bottom:512.066667pt;}
.y24b{bottom:512.386667pt;}
.y1d1{bottom:513.346667pt;}
.y104{bottom:515.106667pt;}
.y20a{bottom:516.546667pt;}
.y17e{bottom:516.706667pt;}
.y196{bottom:520.066667pt;}
.yce{bottom:520.866667pt;}
.y24a{bottom:524.546667pt;}
.ya0{bottom:525.826667pt;}
.y209{bottom:528.866667pt;}
.y1d0{bottom:529.026667pt;}
.y66{bottom:529.666667pt;}
.y103{bottom:532.546667pt;}
.y17d{bottom:534.786667pt;}
.y195{bottom:537.666667pt;}
.ycd{bottom:538.146667pt;}
.y9f{bottom:541.186667pt;}
.y249{bottom:542.146667pt;}
.y1cf{bottom:544.386667pt;}
.y208{bottom:546.466667pt;}
.y65{bottom:547.266667pt;}
.y102{bottom:550.146667pt;}
.ycc{bottom:553.186667pt;}
.y17c{bottom:553.506667pt;}
.y248{bottom:554.466667pt;}
.y194{bottom:555.266667pt;}
.y9e{bottom:558.786667pt;}
.y1ce{bottom:559.746667pt;}
.ycb{bottom:564.546667pt;}
.y64{bottom:564.866667pt;}
.y101{bottom:567.746667pt;}
.y17a{bottom:570.786667pt;}
.y247{bottom:572.066667pt;}
.y193{bottom:572.866667pt;}
.y1cd{bottom:574.786667pt;}
.y9d{bottom:576.413333pt;}
.yca{bottom:582.173333pt;}
.y63{bottom:582.493333pt;}
.y246{bottom:584.413333pt;}
.y100{bottom:586.493333pt;}
.y207{bottom:588.573333pt;}
.y179{bottom:588.893333pt;}
.y1cc{bottom:590.013333pt;}
.y192{bottom:590.493333pt;}
.y9c{bottom:594.013333pt;}
.y62{bottom:600.253333pt;}
.y245{bottom:602.013333pt;}
.y138{bottom:603.933333pt;}
.y1cb{bottom:605.693333pt;}
.y206{bottom:606.173333pt;}
.yff{bottom:606.813333pt;}
.y178{bottom:606.973333pt;}
.y191{bottom:608.253333pt;}
.y9b{bottom:611.773333pt;}
.y244{bottom:614.173333pt;}
.y61{bottom:617.853333pt;}
.y205{bottom:618.493333pt;}
.y1ca{bottom:620.733333pt;}
.y137{bottom:622.973333pt;}
.y177{bottom:623.773333pt;}
.yfe{bottom:624.573333pt;}
.y190{bottom:625.853333pt;}
.y9a{bottom:629.373333pt;}
.y204{bottom:630.813333pt;}
.y243{bottom:631.773333pt;}
.y133{bottom:633.373333pt;}
.y60{bottom:635.453333pt;}
.y1c9{bottom:636.093333pt;}
.y176{bottom:641.853333pt;}
.yfd{bottom:642.173333pt;}
.y18f{bottom:643.453333pt;}
.y242{bottom:644.093333pt;}
.y99{bottom:646.653333pt;}
.y203{bottom:648.413333pt;}
.y135{bottom:649.853333pt;}
.y1c8{bottom:651.773333pt;}
.y5f{bottom:653.053333pt;}
.y241{bottom:656.413333pt;}
.yfc{bottom:659.773333pt;}
.y175{bottom:659.933333pt;}
.y202{bottom:660.573333pt;}
.y18e{bottom:661.053333pt;}
.y98{bottom:663.293333pt;}
.y1c7{bottom:667.133333pt;}
.y12d{bottom:668.253333pt;}
.y5e{bottom:670.653333pt;}
.y240{bottom:674.013333pt;}
.yfb{bottom:677.053333pt;}
.y174{bottom:678.013333pt;}
.y201{bottom:678.173333pt;}
.y97{bottom:678.653333pt;}
.y1c6{bottom:682.013333pt;}
.y23f{bottom:686.173333pt;}
.y5d{bottom:688.413333pt;}
.y130{bottom:689.213333pt;}
.y200{bottom:690.493333pt;}
.yfa{bottom:694.973333pt;}
.y173{bottom:695.293333pt;}
.y18d{bottom:696.093333pt;}
.y96{bottom:696.413333pt;}
.y1c5{bottom:699.613333pt;}
.y23e{bottom:703.773333pt;}
.y5c{bottom:706.013333pt;}
.yf4{bottom:707.773333pt;}
.y1ff{bottom:708.093333pt;}
.y12c{bottom:711.293333pt;}
.y18c{bottom:713.693333pt;}
.y95{bottom:714.013333pt;}
.y23d{bottom:716.093333pt;}
.y1c4{bottom:717.213333pt;}
.y1fe{bottom:720.253333pt;}
.y5b{bottom:723.613333pt;}
.y12b{bottom:728.093333pt;}
.y23c{bottom:728.253333pt;}
.y94{bottom:731.613333pt;}
.y172{bottom:732.093333pt;}
.y18b{bottom:734.493333pt;}
.yf6{bottom:736.573333pt;}
.y1c3{bottom:737.373333pt;}
.y1fd{bottom:737.853333pt;}
.y5a{bottom:741.213333pt;}
.y144{bottom:741.373333pt;}
.y12a{bottom:744.733333pt;}
.y23b{bottom:745.853333pt;}
.y171{bottom:748.893333pt;}
.y93{bottom:749.213333pt;}
.y1fc{bottom:750.173333pt;}
.y23a{bottom:758.173333pt;}
.y59{bottom:758.813333pt;}
.yed{bottom:759.293333pt;}
.y1c2{bottom:759.773333pt;}
.y129{bottom:762.333333pt;}
.y1fb{bottom:762.493333pt;}
.y143{bottom:765.853333pt;}
.y92{bottom:766.813333pt;}
.y170{bottom:766.973333pt;}
.y239{bottom:770.493333pt;}
.y18a{bottom:772.413333pt;}
.y58{bottom:776.573333pt;}
.y1c1{bottom:777.373333pt;}
.y142{bottom:778.333333pt;}
.y128{bottom:780.093333pt;}
.y91{bottom:784.573333pt;}
.y14{bottom:784.733333pt;}
.y16f{bottom:785.053333pt;}
.yf0{bottom:785.373333pt;}
.y238{bottom:788.093333pt;}
.y141{bottom:792.093333pt;}
.y1fa{bottom:792.253333pt;}
.y57{bottom:794.173333pt;}
.y1c0{bottom:795.133333pt;}
.y127{bottom:797.733333pt;}
.y237{bottom:800.293333pt;}
.y13{bottom:801.573333pt;}
.y90{bottom:802.213333pt;}
.y16e{bottom:803.173333pt;}
.y140{bottom:805.253333pt;}
.yeb{bottom:809.413333pt;}
.y1f9{bottom:809.893333pt;}
.y56{bottom:811.813333pt;}
.y12{bottom:812.453333pt;}
.y236{bottom:812.613333pt;}
.y1bf{bottom:812.773333pt;}
.y126{bottom:815.013333pt;}
.y8f{bottom:819.813333pt;}
.y16d{bottom:821.253333pt;}
.y1f8{bottom:822.213333pt;}
.y11{bottom:823.813333pt;}
.yc9{bottom:829.093333pt;}
.y55{bottom:829.413333pt;}
.y235{bottom:830.213333pt;}
.y1be{bottom:830.373333pt;}
.y125{bottom:832.133333pt;}
.y8e{bottom:837.413333pt;}
.y10{bottom:837.893333pt;}
.y16c{bottom:838.533333pt;}
.y1f7{bottom:839.813333pt;}
.y234{bottom:842.533333pt;}
.yea{bottom:843.493333pt;}
.yf{bottom:846.373333pt;}
.yc8{bottom:846.693333pt;}
.y54{bottom:847.013333pt;}
.y1bd{bottom:847.973333pt;}
.y124{bottom:848.773333pt;}
.y1f6{bottom:852.133333pt;}
.y8d{bottom:854.693333pt;}
.y16a{bottom:857.253333pt;}
.ye9{bottom:858.693333pt;}
.ye{bottom:858.853333pt;}
.y1f5{bottom:864.293333pt;}
.yc7{bottom:864.453333pt;}
.y53{bottom:864.773333pt;}
.y1bc{bottom:865.573333pt;}
.y123{bottom:866.533333pt;}
.y8c{bottom:869.733333pt;}
.y233{bottom:872.293333pt;}
.y169{bottom:874.053333pt;}
.ye8{bottom:877.413333pt;}
.yd{bottom:878.853333pt;}
.y8b{bottom:881.573333pt;}
.y1f4{bottom:881.893333pt;}
.y52{bottom:882.373333pt;}
.y1bb{bottom:883.333333pt;}
.y122{bottom:884.133333pt;}
.y232{bottom:884.613333pt;}
.y168{bottom:892.133333pt;}
.y1f3{bottom:894.213333pt;}
.ye7{bottom:897.413333pt;}
.yc{bottom:899.173333pt;}
.y51{bottom:899.973333pt;}
.y1ba{bottom:900.933333pt;}
.y121{bottom:901.733333pt;}
.y231{bottom:902.213333pt;}
.y1f2{bottom:906.533333pt;}
.y167{bottom:910.213333pt;}
.y230{bottom:914.533333pt;}
.ye6{bottom:915.013333pt;}
.y8a{bottom:916.773333pt;}
.yb{bottom:917.573333pt;}
.y1b9{bottom:918.533333pt;}
.y120{bottom:919.013333pt;}
.y1f1{bottom:924.133333pt;}
.y166{bottom:928.293333pt;}
.y22f{bottom:932.133333pt;}
.ye5{bottom:932.613333pt;}
.y89{bottom:934.373333pt;}
.y50{bottom:935.173333pt;}
.y1b8{bottom:935.813333pt;}
.y11f{bottom:936.133333pt;}
.y1f0{bottom:936.293333pt;}
.y22e{bottom:944.293333pt;}
.y164{bottom:946.373333pt;}
.ya{bottom:949.733333pt;}
.ye4{bottom:950.213333pt;}
.y88{bottom:951.973333pt;}
.y4f{bottom:952.933333pt;}
.y1ef{bottom:953.893333pt;}
.y1b7{bottom:956.133333pt;}
.y22d{bottom:961.893333pt;}
.y162{bottom:963.013333pt;}
.y1ee{bottom:966.213333pt;}
.ye3{bottom:967.973333pt;}
.y87{bottom:969.733333pt;}
.y4e{bottom:970.533333pt;}
.y22c{bottom:974.213333pt;}
.y1b6{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y160{bottom:981.733333pt;}
.y1ed{bottom:983.813333pt;}
.ye2{bottom:985.573333pt;}
.y86{bottom:987.333333pt;}
.y4d{bottom:988.133333pt;}
.y45{bottom:989.093333pt;}
.y22b{bottom:991.813333pt;}
.y8{bottom:993.733333pt;}
.y1b5{bottom:996.133333pt;}
.y15e{bottom:999.173333pt;}
.ye1{bottom:1002.853333pt;}
.y22a{bottom:1004.133333pt;}
.y85{bottom:1004.613333pt;}
.y4c{bottom:1005.733333pt;}
.y1b4{bottom:1013.733333pt;}
.ye0{bottom:1018.560000pt;}
.y84{bottom:1019.680000pt;}
.y229{bottom:1021.760000pt;}
.y11e{bottom:1023.040000pt;}
.y4b{bottom:1023.360000pt;}
.y1ec{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y83{bottom:1031.040000pt;}
.y1b3{bottom:1031.360000pt;}
.y228{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y49{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y82{bottom:1047.520000pt;}
.y48{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y81{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h10{height:10.678125pt;}
.h21{height:13.746667pt;}
.h24{height:13.906667pt;}
.h2e{height:15.840000pt;}
.h1e{height:15.986667pt;}
.h1f{height:16.018667pt;}
.h12{height:16.125000pt;}
.h38{height:16.466667pt;}
.h40{height:16.626667pt;}
.h45{height:16.640000pt;}
.h3f{height:16.786667pt;}
.h44{height:16.800000pt;}
.h31{height:17.760000pt;}
.h47{height:17.906667pt;}
.h3e{height:18.066667pt;}
.h43{height:18.080000pt;}
.h42{height:18.100000pt;}
.h46{height:18.106667pt;}
.h36{height:19.506667pt;}
.h1b{height:20.306667pt;}
.h2f{height:20.320000pt;}
.h2b{height:22.080000pt;}
.h28{height:23.380000pt;}
.he{height:23.503437pt;}
.h3a{height:24.146667pt;}
.h3b{height:24.313333pt;}
.h3c{height:24.352000pt;}
.h15{height:24.626667pt;}
.h29{height:25.440000pt;}
.hf{height:26.368125pt;}
.h2c{height:28.000000pt;}
.h20{height:28.146667pt;}
.h23{height:28.306667pt;}
.h37{height:28.786667pt;}
.h26{height:30.066667pt;}
.hd{height:31.390625pt;}
.h39{height:32.786667pt;}
.h1c{height:32.818667pt;}
.h30{height:34.240000pt;}
.h3{height:36.431250pt;}
.h2d{height:36.800000pt;}
.h35{height:37.410000pt;}
.h16{height:38.153511pt;}
.h34{height:41.426667pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h4b{height:44.073883pt;}
.h3d{height:44.941250pt;}
.h19{height:46.609688pt;}
.h1d{height:47.085938pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h14{height:49.336419pt;}
.h27{height:49.460000pt;}
.h2a{height:50.880000pt;}
.h18{height:52.108438pt;}
.hb{height:52.134375pt;}
.h41{height:52.526250pt;}
.h9{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h22{height:57.106667pt;}
.h25{height:58.238750pt;}
.hc{height:59.150000pt;}
.h13{height:59.340000pt;}
.h17{height:62.812500pt;}
.h5{height:64.500000pt;}
.h49{height:73.490625pt;}
.h4a{height:75.465000pt;}
.h32{height:83.540625pt;}
.h48{height:88.611250pt;}
.h33{height:94.218750pt;}
.ha{height:112.875000pt;}
.h11{height:344.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w24{width:32.498667pt;}
.w1c{width:53.760000pt;}
.w17{width:55.026667pt;}
.w14{width:55.040000pt;}
.w15{width:55.200000pt;}
.w13{width:55.218667pt;}
.w1b{width:55.226667pt;}
.w16{width:55.232000pt;}
.w18{width:55.346667pt;}
.w1a{width:60.146667pt;}
.w19{width:60.178667pt;}
.wc{width:88.470667pt;}
.w3{width:90.426667pt;}
.w20{width:102.386667pt;}
.w1f{width:108.658667pt;}
.w1e{width:108.672000pt;}
.wf{width:108.986667pt;}
.w10{width:110.258667pt;}
.w12{width:110.386667pt;}
.w11{width:110.432000pt;}
.w21{width:114.746667pt;}
.w28{width:115.706667pt;}
.w26{width:117.906667pt;}
.w25{width:119.232000pt;}
.we{width:120.498667pt;}
.w5{width:121.110667pt;}
.w27{width:124.818667pt;}
.w8{width:132.026667pt;}
.w23{width:136.310667pt;}
.w7{width:144.493333pt;}
.wb{width:155.706667pt;}
.w9{width:159.697333pt;}
.w29{width:169.457333pt;}
.w4{width:206.266667pt;}
.w1d{width:217.137333pt;}
.w6{width:250.453333pt;}
.wd{width:332.373333pt;}
.wa{width:334.466667pt;}
.w2{width:569.680000pt;}
.w22{width:650.040000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x10{left:7.190667pt;}
.x9{left:9.466667pt;}
.x13{left:12.466667pt;}
.x23{left:15.346667pt;}
.x1f{left:16.626667pt;}
.x25{left:18.080000pt;}
.x22{left:19.026667pt;}
.x29{left:20.320000pt;}
.x36{left:22.080000pt;}
.x8{left:23.866667pt;}
.x37{left:24.960000pt;}
.x1b{left:26.746667pt;}
.x42{left:28.800000pt;}
.x1e{left:30.560000pt;}
.x41{left:31.990667pt;}
.x1c{left:36.506667pt;}
.x7{left:37.786667pt;}
.x33{left:42.720000pt;}
.x30{left:45.760000pt;}
.x35{left:48.826667pt;}
.x40{left:49.946667pt;}
.x3c{left:51.186667pt;}
.x6{left:52.186667pt;}
.x3e{left:54.746667pt;}
.x15{left:63.226667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x44{left:91.232000pt;}
.xc{left:96.032000pt;}
.x45{left:100.512000pt;}
.x19{left:121.946667pt;}
.x46{left:140.666667pt;}
.x18{left:159.240000pt;}
.x11{left:193.160000pt;}
.x38{left:200.185333pt;}
.x39{left:207.240000pt;}
.x24{left:214.466667pt;}
.x16{left:231.746667pt;}
.x3a{left:240.386667pt;}
.x20{left:270.146667pt;}
.x2f{left:289.186667pt;}
.xf{left:319.746667pt;}
.x26{left:325.346667pt;}
.xe{left:351.746667pt;}
.x3b{left:360.266667pt;}
.x21{left:381.226667pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x31{left:397.866667pt;}
.x27{left:436.266667pt;}
.x12{left:443.626667pt;}
.x2c{left:456.893333pt;}
.x3d{left:478.826667pt;}
.x1a{left:492.266667pt;}
.x32{left:506.533333pt;}
.xd{left:524.773333pt;}
.x28{left:552.613333pt;}
.x17{left:566.213333pt;}
.x14{left:588.133333pt;}
.x3f{left:604.453333pt;}
.x2b{left:606.053333pt;}
.x34{left:608.933333pt;}
.x1d{left:613.413333pt;}
.x4{left:641.733333pt;}
.x2a{left:668.640000pt;}
.x2d{left:718.080000pt;}
.x43{left:720.160000pt;}
.x2e{left:722.080000pt;}
}




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