
    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_879eeabe71cdbebfe567c66f.woff')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_089197c8225bf0afdd498130.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8cd53f5356adb9ad9126120.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7e5579d4586be4632318967d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_5ea1094a88384ed75f209c04.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3536f3885b96dd64ca6810d5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_ccb51917dd7b0217b8c1ca36.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_b774889ff8673d728bba08fb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ef880e45fd75356a297d495d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6ef1219183d8b8d79ed36d56.woff')format("woff");}.fff{font-family:fff;line-height:0.918457;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:ff10;src:url('chunks/assets/font_2401b42626e512ebc539456c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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;}
.m2{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);}
.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);}
.m3{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);}
.v3{vertical-align:-69.840000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.349800px;}
.lsc{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.315600px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493920px;}
.ls17{letter-spacing:0.513600px;}
.ls16{letter-spacing:0.816000px;}
.ls14{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.440000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.ls13{letter-spacing:229.836000px;}
.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;}
}
.ws14{word-spacing:-18.000000px;}
.wse{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.526600px;}
.ws17{word-spacing:-14.220000px;}
.ws15{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws2{word-spacing:-10.990200px;}
.ws3{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.950480px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._35{margin-left:-2028.924000px;}
._5{margin-left:-59.580000px;}
._34{margin-left:-4.357920px;}
._13{margin-left:-3.334800px;}
._10{margin-left:-2.192160px;}
._2{margin-left:-1.046400px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._12{width:4.058880px;}
._23{width:5.199120px;}
._25{width:6.274800px;}
._c{width:7.768800px;}
._d{width:8.995680px;}
._8{width:10.697040px;}
._9{width:12.131280px;}
._f{width:13.804560px;}
._15{width:14.950800px;}
._11{width:16.352160px;}
._b{width:17.563440px;}
._a{width:19.095600px;}
._7{width:21.035520px;}
._1d{width:22.776240px;}
._17{width:24.220800px;}
._21{width:25.577280px;}
._1e{width:27.011520px;}
._2e{width:28.090800px;}
._24{width:29.472240px;}
._14{width:30.776400px;}
._28{width:31.792320px;}
._29{width:32.871600px;}
._30{width:34.153440px;}
._1b{width:35.529120px;}
._2c{width:36.573120px;}
._1f{width:38.007360px;}
._2b{width:39.620880px;}
._26{width:41.353920px;}
._27{width:42.967440px;}
._e{width:43.983360px;}
._22{width:45.298080px;}
._1c{width:47.329920px;}
._1a{width:48.525120px;}
._2f{width:50.531280px;}
._31{width:51.649440px;}
._32{width:52.947360px;}
._2a{width:56.054880px;}
._16{width:57.754080px;}
._36{width:59.939280px;}
._33{width:61.014960px;}
._20{width:62.030880px;}
._3{width:65.496000px;}
._37{width:70.576560px;}
._2d{width:71.951040px;}
._19{width:78.405120px;}
._38{width:103.416480px;}
._4{width:199.620000px;}
._18{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsf{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y45{bottom:-247.710000px;}
.y44{bottom:-214.050000px;}
.y43{bottom:-180.210000px;}
.y42{bottom:-146.550000px;}
.y7b{bottom:-143.490000px;}
.y41{bottom:-112.680000px;}
.y7a{bottom:-109.650000px;}
.y40{bottom:-79.020000px;}
.y79{bottom:-75.945000px;}
.y3f{bottom:-45.180000px;}
.y49{bottom:-42.120000px;}
.y78{bottom:-42.105000px;}
.y7d{bottom:-17.922750px;}
.y48{bottom:-13.860000px;}
.y3e{bottom:-11.520000px;}
.y77{bottom:-8.445000px;}
.y0{bottom:0.000000px;}
.y269{bottom:1.837500px;}
.y102{bottom:2.700000px;}
.y10d{bottom:2.880000px;}
.y10a{bottom:3.060000px;}
.y65{bottom:3.945000px;}
.y2{bottom:3.960000px;}
.y141{bottom:4.680000px;}
.y126{bottom:4.845000px;}
.y47{bottom:4.860000px;}
.y122{bottom:4.890000px;}
.y124{bottom:5.025000px;}
.y118{bottom:5.040000px;}
.y6d{bottom:5.580000px;}
.y3d{bottom:6.840000px;}
.y108{bottom:9.900000px;}
.y5{bottom:12.600000px;}
.y10c{bottom:16.740000px;}
.y111{bottom:16.770000px;}
.y106{bottom:16.920000px;}
.y6b{bottom:17.640000px;}
.y64{bottom:19.830000px;}
.y3c{bottom:20.700000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y107{bottom:23.760000px;}
.y10e{bottom:23.790000px;}
.y4{bottom:24.660000px;}
.y76{bottom:25.395000px;}
.y109{bottom:30.600000px;}
.y110{bottom:30.630000px;}
.y6a{bottom:31.320000px;}
.y63{bottom:32.250000px;}
.y3b{bottom:34.740000px;}
.y11b{bottom:38.160000px;}
.y11f{bottom:38.190000px;}
.y69{bottom:44.280000px;}
.y10f{bottom:44.490000px;}
.y80{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y62{bottom:50.070000px;}
.y115{bottom:54.720000px;}
.y75{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y7c{bottom:63.780000px;}
.y61{bottom:67.890000px;}
.y74{bottom:69.315000px;}
.y68{bottom:70.380000px;}
.y73{bottom:82.275000px;}
.y60{bottom:85.890000px;}
.y67{bottom:87.300000px;}
.y72{bottom:95.415000px;}
.y1d2{bottom:101.520000px;}
.y19d{bottom:101.700000px;}
.y1b2{bottom:102.600000px;}
.yb1{bottom:103.680000px;}
.y5f{bottom:103.710000px;}
.y1fb{bottom:104.040000px;}
.y164{bottom:105.660000px;}
.y232{bottom:106.380000px;}
.yc5{bottom:106.560000px;}
.y133{bottom:107.820000px;}
.y71{bottom:108.375000px;}
.yea{bottom:109.620000px;}
.y104{bottom:114.870000px;}
.yf9{bottom:115.560000px;}
.y1d1{bottom:121.320000px;}
.y19c{bottom:121.500000px;}
.y70{bottom:121.515000px;}
.y5e{bottom:121.530000px;}
.y38{bottom:122.220000px;}
.y1b1{bottom:122.400000px;}
.yb0{bottom:123.480000px;}
.y231{bottom:123.660000px;}
.y163{bottom:125.640000px;}
.yc4{bottom:126.360000px;}
.y268{bottom:127.080000px;}
.y132{bottom:127.620000px;}
.ye9{bottom:129.420000px;}
.y6f{bottom:133.755000px;}
.yf8{bottom:135.360000px;}
.y1fa{bottom:138.420000px;}
.y5d{bottom:139.350000px;}
.y230{bottom:140.940000px;}
.y1d0{bottom:141.120000px;}
.y19b{bottom:141.300000px;}
.y37{bottom:142.020000px;}
.y1b0{bottom:142.200000px;}
.yaf{bottom:143.280000px;}
.y267{bottom:144.360000px;}
.y162{bottom:145.440000px;}
.yc3{bottom:146.340000px;}
.y131{bottom:147.420000px;}
.ye8{bottom:149.220000px;}
.yf7{bottom:155.160000px;}
.y5c{bottom:157.170000px;}
.y22f{bottom:158.220000px;}
.y1f9{bottom:159.120000px;}
.y19a{bottom:161.100000px;}
.y266{bottom:161.640000px;}
.y36{bottom:162.000000px;}
.yae{bottom:163.110000px;}
.y161{bottom:165.270000px;}
.yc2{bottom:166.170000px;}
.y130{bottom:167.250000px;}
.ye7{bottom:169.050000px;}
.y5b{bottom:172.470000px;}
.yf6{bottom:174.990000px;}
.y22e{bottom:175.350000px;}
.y265{bottom:178.950000px;}
.y1cf{bottom:180.930000px;}
.y199{bottom:181.110000px;}
.y35{bottom:181.830000px;}
.yad{bottom:183.090000px;}
.y5a{bottom:185.070000px;}
.yc1{bottom:185.970000px;}
.y12f{bottom:187.050000px;}
.ye6{bottom:189.030000px;}
.y22d{bottom:192.630000px;}
.yf5{bottom:194.970000px;}
.y264{bottom:196.050000px;}
.y1f8{bottom:200.010000px;}
.y1ce{bottom:200.730000px;}
.y198{bottom:200.910000px;}
.y34{bottom:201.630000px;}
.y1af{bottom:201.810000px;}
.y59{bottom:202.890000px;}
.y160{bottom:204.870000px;}
.yc0{bottom:205.770000px;}
.y12e{bottom:207.030000px;}
.ye5{bottom:208.830000px;}
.y22c{bottom:209.910000px;}
.y263{bottom:213.330000px;}
.yf4{bottom:214.770000px;}
.y1f7{bottom:219.810000px;}
.y1cd{bottom:220.530000px;}
.y58{bottom:220.710000px;}
.y33{bottom:221.430000px;}
.y1ae{bottom:221.610000px;}
.yac{bottom:222.690000px;}
.y15f{bottom:224.850000px;}
.ybf{bottom:225.570000px;}
.y12d{bottom:226.470000px;}
.y136{bottom:226.830000px;}
.y22b{bottom:227.190000px;}
.ye4{bottom:228.630000px;}
.y262{bottom:230.610000px;}
.yf3{bottom:234.570000px;}
.y57{bottom:238.530000px;}
.y1cc{bottom:240.330000px;}
.y197{bottom:240.510000px;}
.y32{bottom:241.230000px;}
.y1ad{bottom:241.410000px;}
.yab{bottom:242.490000px;}
.y22a{bottom:244.470000px;}
.y15e{bottom:244.650000px;}
.y12c{bottom:246.270000px;}
.ybe{bottom:246.450000px;}
.y135{bottom:246.630000px;}
.y261{bottom:247.890000px;}
.ye3{bottom:248.430000px;}
.yf2{bottom:254.370000px;}
.y56{bottom:256.380000px;}
.y196{bottom:260.310000px;}
.y31{bottom:261.210000px;}
.y168{bottom:261.390000px;}
.y229{bottom:261.750000px;}
.y182{bottom:261.930000px;}
.yaa{bottom:262.290000px;}
.y15d{bottom:264.450000px;}
.y260{bottom:265.170000px;}
.ybd{bottom:266.070000px;}
.y134{bottom:266.430000px;}
.ye2{bottom:268.230000px;}
.y55{bottom:271.680000px;}
.yf1{bottom:274.170000px;}
.y167{bottom:274.350000px;}
.y181{bottom:278.850000px;}
.ybc{bottom:279.210000px;}
.y1cb{bottom:280.110000px;}
.y195{bottom:280.290000px;}
.y30{bottom:281.010000px;}
.y1f6{bottom:281.370000px;}
.ya9{bottom:282.270000px;}
.y25f{bottom:282.450000px;}
.y12b{bottom:283.170000px;}
.y15c{bottom:284.250000px;}
.y54{bottom:284.280000px;}
.ye1{bottom:288.210000px;}
.y180{bottom:292.170000px;}
.y12a{bottom:292.365000px;}
.yf0{bottom:294.150000px;}
.y228{bottom:296.130000px;}
.ybb{bottom:299.010000px;}
.y25e{bottom:299.550000px;}
.y1ca{bottom:299.910000px;}
.y194{bottom:300.090000px;}
.y2f{bottom:300.810000px;}
.y1ac{bottom:300.990000px;}
.y1f5{bottom:301.350000px;}
.ya8{bottom:302.070000px;}
.y53{bottom:302.100000px;}
.y15b{bottom:304.050000px;}
.ye0{bottom:308.010000px;}
.y129{bottom:308.925000px;}
.y17f{bottom:311.970000px;}
.y227{bottom:313.410000px;}
.yef{bottom:313.950000px;}
.y166{bottom:314.130000px;}
.y25d{bottom:316.830000px;}
.yba{bottom:318.810000px;}
.y1c9{bottom:319.710000px;}
.y193{bottom:319.890000px;}
.y52{bottom:319.920000px;}
.y2e{bottom:320.610000px;}
.y1ab{bottom:320.790000px;}
.y15a{bottom:320.970000px;}
.y1f4{bottom:321.150000px;}
.ya7{bottom:321.870000px;}
.y128{bottom:325.485000px;}
.ydf{bottom:327.810000px;}
.y226{bottom:330.690000px;}
.y17e{bottom:331.770000px;}
.y159{bottom:333.930000px;}
.y25c{bottom:334.110000px;}
.yee{bottom:334.650000px;}
.y51{bottom:337.740000px;}
.yb9{bottom:338.790000px;}
.y1c8{bottom:339.510000px;}
.y192{bottom:339.690000px;}
.y1aa{bottom:340.590000px;}
.y1f3{bottom:340.950000px;}
.y2d{bottom:341.310000px;}
.ya6{bottom:341.670000px;}
.y127{bottom:342.225000px;}
.yde{bottom:347.610000px;}
.y225{bottom:347.970000px;}
.y25b{bottom:351.390000px;}
.y17d{bottom:351.570000px;}
.y158{bottom:353.730000px;}
.yed{bottom:354.450000px;}
.y50{bottom:355.560000px;}
.y2c{bottom:358.590000px;}
.y125{bottom:358.785000px;}
.y1c7{bottom:359.310000px;}
.y191{bottom:359.490000px;}
.y1a9{bottom:360.390000px;}
.y1f2{bottom:360.750000px;}
.ya5{bottom:361.470000px;}
.y224{bottom:365.250000px;}
.ydd{bottom:367.410000px;}
.y2b{bottom:368.490000px;}
.y25a{bottom:368.670000px;}
.y4f{bottom:370.860000px;}
.y17c{bottom:371.370000px;}
.y157{bottom:373.530000px;}
.y123{bottom:375.345000px;}
.y4a{bottom:376.425000px;}
.yb8{bottom:378.390000px;}
.y1c6{bottom:379.290000px;}
.y190{bottom:379.470000px;}
.y1a8{bottom:380.190000px;}
.y1f1{bottom:380.550000px;}
.ya4{bottom:381.450000px;}
.y223{bottom:382.350000px;}
.y4e{bottom:383.460000px;}
.y259{bottom:385.770000px;}
.ydc{bottom:387.390000px;}
.y17b{bottom:391.350000px;}
.y11e{bottom:392.085000px;}
.y156{bottom:393.375000px;}
.y2a{bottom:394.995000px;}
.yb7{bottom:398.235000px;}
.y1c5{bottom:399.135000px;}
.y18f{bottom:399.315000px;}
.y222{bottom:399.675000px;}
.y1a7{bottom:400.215000px;}
.y1f0{bottom:400.575000px;}
.y4d{bottom:401.280000px;}
.ya3{bottom:401.295000px;}
.y258{bottom:403.095000px;}
.ydb{bottom:407.235000px;}
.y121{bottom:408.675000px;}
.y17a{bottom:411.195000px;}
.y155{bottom:413.355000px;}
.y221{bottom:416.955000px;}
.yb6{bottom:418.035000px;}
.y29{bottom:418.755000px;}
.y1c4{bottom:418.935000px;}
.y4c{bottom:419.100000px;}
.y18e{bottom:419.115000px;}
.y1a6{bottom:420.015000px;}
.y257{bottom:420.375000px;}
.ya2{bottom:421.095000px;}
.y1ef{bottom:421.275000px;}
.y120{bottom:425.235000px;}
.yda{bottom:427.035000px;}
.y179{bottom:430.995000px;}
.y154{bottom:433.155000px;}
.y220{bottom:434.235000px;}
.y4b{bottom:436.920000px;}
.y256{bottom:437.655000px;}
.yb5{bottom:438.015000px;}
.y1c3{bottom:438.735000px;}
.y18d{bottom:438.915000px;}
.y1a5{bottom:439.815000px;}
.ya1{bottom:440.895000px;}
.y11a{bottom:441.975000px;}
.y28{bottom:442.515000px;}
.yd9{bottom:446.835000px;}
.y178{bottom:450.795000px;}
.y21f{bottom:451.515000px;}
.y153{bottom:452.955000px;}
.y255{bottom:454.935000px;}
.yb4{bottom:457.815000px;}
.y11d{bottom:458.535000px;}
.y18c{bottom:458.715000px;}
.y1a4{bottom:459.615000px;}
.ya0{bottom:460.695000px;}
.y1ee{bottom:462.135000px;}
.y27{bottom:466.455000px;}
.yd8{bottom:466.635000px;}
.y21e{bottom:468.615000px;}
.y177{bottom:470.595000px;}
.y254{bottom:472.215000px;}
.y152{bottom:472.755000px;}
.y6e{bottom:474.540000px;}
.y11c{bottom:475.095000px;}
.yb3{bottom:478.515000px;}
.y18b{bottom:478.695000px;}
.y1a3{bottom:479.415000px;}
.y9f{bottom:480.675000px;}
.y1ed{bottom:482.835000px;}
.y21d{bottom:485.895000px;}
.yd7{bottom:486.615000px;}
.y26{bottom:487.335000px;}
.y253{bottom:489.315000px;}
.y176{bottom:490.575000px;}
.y114{bottom:491.835000px;}
.y151{bottom:492.555000px;}
.y1c2{bottom:498.315000px;}
.y18a{bottom:498.495000px;}
.yb2{bottom:499.395000px;}
.y9e{bottom:500.475000px;}
.y21c{bottom:503.175000px;}
.yd6{bottom:506.415000px;}
.y252{bottom:506.595000px;}
.y25{bottom:507.135000px;}
.y119{bottom:508.395000px;}
.y175{bottom:510.375000px;}
.y150{bottom:512.175000px;}
.y165{bottom:512.535000px;}
.y1c1{bottom:518.115000px;}
.y189{bottom:518.295000px;}
.y1a2{bottom:519.195000px;}
.y9d{bottom:520.275000px;}
.y21b{bottom:520.455000px;}
.y24{bottom:520.815000px;}
.y1ec{bottom:523.875000px;}
.y117{bottom:524.955000px;}
.yd5{bottom:526.215000px;}
.y23{bottom:529.455000px;}
.y174{bottom:530.175000px;}
.y14f{bottom:532.335000px;}
.y21a{bottom:537.735000px;}
.y1c0{bottom:537.915000px;}
.y188{bottom:538.095000px;}
.y1a1{bottom:538.995000px;}
.y9c{bottom:540.075000px;}
.y251{bottom:541.155000px;}
.y116{bottom:541.695000px;}
.y1eb{bottom:543.675000px;}
.yd4{bottom:546.015000px;}
.yec{bottom:546.915000px;}
.y14e{bottom:548.175000px;}
.y173{bottom:549.975000px;}
.y22{bottom:552.855000px;}
.y219{bottom:555.015000px;}
.y1bf{bottom:557.715000px;}
.y187{bottom:557.895000px;}
.y250{bottom:558.435000px;}
.y1a0{bottom:558.795000px;}
.y113{bottom:559.695000px;}
.y9b{bottom:559.875000px;}
.y1ea{bottom:563.475000px;}
.y14d{bottom:564.915000px;}
.yd3{bottom:565.815000px;}
.yeb{bottom:566.715000px;}
.y172{bottom:569.775000px;}
.y218{bottom:572.115000px;}
.y24f{bottom:575.715000px;}
.y21{bottom:576.075000px;}
.y1be{bottom:577.695000px;}
.y186{bottom:577.875000px;}
.y19f{bottom:578.595000px;}
.y9a{bottom:579.855000px;}
.y14c{bottom:581.475000px;}
.y1e9{bottom:583.275000px;}
.yd2{bottom:585.795000px;}
.y217{bottom:589.395000px;}
.y171{bottom:589.755000px;}
.y24e{bottom:592.815000px;}
.y185{bottom:595.695000px;}
.y1bd{bottom:597.495000px;}
.y14b{bottom:598.035000px;}
.y19e{bottom:598.575000px;}
.y20{bottom:599.475000px;}
.y99{bottom:599.655000px;}
.y112{bottom:600.915000px;}
.y1e8{bottom:603.975000px;}
.yd1{bottom:605.595000px;}
.y216{bottom:606.675000px;}
.y170{bottom:609.555000px;}
.y24d{bottom:610.095000px;}
.y14a{bottom:614.775000px;}
.y103{bottom:615.855000px;}
.y1bc{bottom:617.295000px;}
.y98{bottom:619.455000px;}
.y215{bottom:623.985000px;}
.yd0{bottom:625.425000px;}
.y24c{bottom:627.405000px;}
.y66{bottom:628.305000px;}
.y184{bottom:628.845000px;}
.y16f{bottom:629.385000px;}
.y149{bottom:631.365000px;}
.y1bb{bottom:637.125000px;}
.y97{bottom:639.285000px;}
.y183{bottom:640.905000px;}
.y214{bottom:641.265000px;}
.y24b{bottom:644.685000px;}
.y1e7{bottom:645.045000px;}
.ycf{bottom:645.225000px;}
.y148{bottom:647.925000px;}
.y16e{bottom:649.185000px;}
.y1f{bottom:654.225000px;}
.y1ba{bottom:656.925000px;}
.y213{bottom:658.545000px;}
.y96{bottom:659.085000px;}
.y24a{bottom:661.965000px;}
.y147{bottom:664.485000px;}
.yce{bottom:665.025000px;}
.y1e6{bottom:665.745000px;}
.y16d{bottom:668.985000px;}
.y1e{bottom:669.705000px;}
.y10b{bottom:671.865000px;}
.y212{bottom:675.645000px;}
.y1b9{bottom:676.905000px;}
.y95{bottom:679.065000px;}
.y249{bottom:679.245000px;}
.y146{bottom:681.225000px;}
.ycd{bottom:685.005000px;}
.y1d{bottom:685.365000px;}
.y16c{bottom:688.965000px;}
.y1e5{bottom:689.505000px;}
.y211{bottom:692.925000px;}
.y248{bottom:696.345000px;}
.y1b8{bottom:696.705000px;}
.y145{bottom:697.785000px;}
.y94{bottom:698.865000px;}
.y105{bottom:700.125000px;}
.y1c{bottom:700.845000px;}
.ycc{bottom:704.805000px;}
.y16b{bottom:708.765000px;}
.y210{bottom:710.205000px;}
.y247{bottom:713.625000px;}
.y144{bottom:714.345000px;}
.y1b{bottom:716.325000px;}
.y1b7{bottom:716.505000px;}
.y93{bottom:718.665000px;}
.ycb{bottom:724.605000px;}
.y1a{bottom:727.485000px;}
.y16a{bottom:728.565000px;}
.y1e4{bottom:730.365000px;}
.y246{bottom:730.905000px;}
.y143{bottom:731.085000px;}
.y39{bottom:736.125000px;}
.y1b6{bottom:736.305000px;}
.y92{bottom:738.465000px;}
.y19{bottom:741.165000px;}
.y101{bottom:743.865000px;}
.yca{bottom:744.405000px;}
.y20f{bottom:744.765000px;}
.y169{bottom:745.305000px;}
.y142{bottom:747.645000px;}
.y245{bottom:748.185000px;}
.y1e3{bottom:750.165000px;}
.y18{bottom:754.125000px;}
.y1b5{bottom:756.105000px;}
.y91{bottom:758.265000px;}
.y20e{bottom:761.865000px;}
.yc9{bottom:764.205000px;}
.y100{bottom:765.465000px;}
.y140{bottom:765.825000px;}
.y17{bottom:766.905000px;}
.y1e2{bottom:770.145000px;}
.y1b4{bottom:776.085000px;}
.y90{bottom:778.245000px;}
.y20d{bottom:779.145000px;}
.y16{bottom:779.865000px;}
.y244{bottom:782.565000px;}
.yc8{bottom:784.185000px;}
.y13f{bottom:789.585000px;}
.y1e1{bottom:789.945000px;}
.y15{bottom:793.725000px;}
.yff{bottom:796.065000px;}
.y20c{bottom:796.425000px;}
.y1b3{bottom:796.785000px;}
.y8f{bottom:798.045000px;}
.y243{bottom:799.845000px;}
.yc7{bottom:803.985000px;}
.y14{bottom:806.505000px;}
.y13e{bottom:807.945000px;}
.y1e0{bottom:809.745000px;}
.y20b{bottom:813.705000px;}
.yfe{bottom:815.685000px;}
.y242{bottom:817.125000px;}
.y8e{bottom:817.845000px;}
.yc6{bottom:824.685000px;}
.y13d{bottom:827.745000px;}
.y1df{bottom:829.545000px;}
.y20a{bottom:830.985000px;}
.y13{bottom:833.325000px;}
.y241{bottom:834.405000px;}
.yfd{bottom:835.485000px;}
.y8d{bottom:837.645000px;}
.y12{bottom:844.485000px;}
.y13c{bottom:847.545000px;}
.y209{bottom:848.265000px;}
.y1de{bottom:849.345000px;}
.y240{bottom:851.685000px;}
.yfc{bottom:855.330000px;}
.y8c{bottom:857.490000px;}
.y208{bottom:865.410000px;}
.y11{bottom:867.390000px;}
.y23f{bottom:869.010000px;}
.y1dd{bottom:869.370000px;}
.yfb{bottom:875.310000px;}
.y8b{bottom:877.470000px;}
.y207{bottom:882.690000px;}
.y23e{bottom:886.110000px;}
.y13b{bottom:887.370000px;}
.y1dc{bottom:889.170000px;}
.y10{bottom:891.510000px;}
.yfa{bottom:896.010000px;}
.y8a{bottom:897.270000px;}
.y206{bottom:899.970000px;}
.yf{bottom:901.770000px;}
.y23d{bottom:903.390000px;}
.y13a{bottom:907.170000px;}
.y1db{bottom:908.970000px;}
.y89{bottom:917.070000px;}
.y205{bottom:917.250000px;}
.y23c{bottom:920.670000px;}
.ye{bottom:921.210000px;}
.y139{bottom:926.970000px;}
.y1da{bottom:928.770000px;}
.y204{bottom:934.530000px;}
.yd{bottom:936.150000px;}
.y88{bottom:936.870000px;}
.y23b{bottom:937.950000px;}
.y138{bottom:946.410000px;}
.yc{bottom:947.670000px;}
.y1d9{bottom:948.570000px;}
.y203{bottom:951.810000px;}
.y23a{bottom:955.230000px;}
.y87{bottom:956.670000px;}
.y137{bottom:963.330000px;}
.yb{bottom:965.130000px;}
.y202{bottom:968.910000px;}
.y1d8{bottom:969.450000px;}
.y239{bottom:972.510000px;}
.y86{bottom:976.650000px;}
.y201{bottom:986.190000px;}
.ya{bottom:986.730000px;}
.y238{bottom:989.610000px;}
.y85{bottom:996.450000px;}
.y200{bottom:1003.470000px;}
.y237{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y1d7{bottom:1010.310000px;}
.y84{bottom:1016.250000px;}
.y1ff{bottom:1020.750000px;}
.y236{bottom:1024.170000px;}
.y1d6{bottom:1030.110000px;}
.y83{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1fe{bottom:1038.030000px;}
.y235{bottom:1041.450000px;}
.y1d5{bottom:1049.910000px;}
.y1fd{bottom:1055.310000px;}
.y82{bottom:1055.850000px;}
.y234{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y1d4{bottom:1069.710000px;}
.y1fc{bottom:1072.770000px;}
.y81{bottom:1075.650000px;}
.y233{bottom:1075.830000px;}
.y1d3{bottom:1085.220000px;}
.y6c{bottom:1096.200000px;}
.y7f{bottom:1105.920000px;}
.y7e{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h19{height:5.805000px;}
.h40{height:6.257812px;}
.h2{height:13.500000px;}
.h2e{height:13.680000px;}
.h35{height:15.825000px;}
.h39{height:15.840000px;}
.h38{height:15.861000px;}
.h3b{height:15.870000px;}
.h33{height:16.005000px;}
.h3a{height:16.020000px;}
.h1d{height:16.920000px;}
.h3e{height:17.666016px;}
.h24{height:22.140000px;}
.h17{height:23.319141px;}
.h31{height:27.540000px;}
.h2b{height:29.664141px;}
.hd{height:29.678906px;}
.h11{height:30.963516px;}
.h2c{height:31.081955px;}
.hf{height:31.583118px;}
.h4{height:34.200000px;}
.h22{height:36.281250px;}
.h15{height:39.503370px;}
.h5{height:40.985156px;}
.h30{height:41.400000px;}
.h3f{height:41.989570px;}
.h23{height:42.086250px;}
.h29{height:43.737568px;}
.h13{height:44.518359px;}
.hc{height:45.116367px;}
.h1b{height:45.714375px;}
.h14{height:46.622932px;}
.he{height:47.344922px;}
.h1e{height:48.616875px;}
.h36{height:49.125000px;}
.h37{height:49.161000px;}
.h16{height:52.998047px;}
.h1f{height:54.421875px;}
.h32{height:55.290000px;}
.h12{height:55.291992px;}
.h1a{height:57.780000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h2d{height:60.226875px;}
.h3d{height:61.423863px;}
.hb{height:65.010937px;}
.h3c{height:65.575595px;}
.h34{height:65.685000px;}
.h1c{height:65.884219px;}
.h10{height:67.824844px;}
.h2a{height:70.628906px;}
.ha{height:72.562500px;}
.h25{height:74.953125px;}
.h27{height:75.093750px;}
.h18{height:84.898125px;}
.h7{height:87.695156px;}
.h21{height:95.400000px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h2f{height:125.670000px;}
.h26{height:144.720000px;}
.h20{height:449.175000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wf{width:70.905000px;}
.w3{width:82.071000px;}
.w12{width:87.645000px;}
.w10{width:87.681000px;}
.w11{width:87.876000px;}
.wb{width:104.571000px;}
.wc{width:108.021000px;}
.w13{width:128.361000px;}
.w14{width:135.030000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:184.350000px;}
.w15{width:188.475000px;}
.wd{width:229.530000px;}
.we{width:249.720000px;}
.w16{width:351.615000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:4.252500px;}
.x2{left:8.091000px;}
.x12{left:10.791000px;}
.x30{left:14.610000px;}
.x28{left:15.645000px;}
.x2b{left:17.100000px;}
.x23{left:18.390000px;}
.x18{left:21.255000px;}
.x2e{left:25.410000px;}
.x29{left:27.570000px;}
.x2f{left:32.070000px;}
.x35{left:33.840000px;}
.x2a{left:34.950000px;}
.x2d{left:36.570000px;}
.x3b{left:37.800000px;}
.x3a{left:40.890000px;}
.x39{left:43.200000px;}
.x31{left:46.830000px;}
.x3d{left:48.060000px;}
.x3e{left:52.200000px;}
.x3c{left:61.005000px;}
.x2c{left:71.280000px;}
.x3{left:73.965000px;}
.x15{left:80.505000px;}
.x13{left:81.765000px;}
.x25{left:85.890000px;}
.x11{left:93.105000px;}
.x17{left:94.905000px;}
.x27{left:96.510000px;}
.x9{left:105.696000px;}
.x1{left:108.045000px;}
.x43{left:110.916000px;}
.xc{left:112.536000px;}
.x1e{left:119.196000px;}
.x20{left:121.536000px;}
.x21{left:122.805000px;}
.x1f{left:128.376000px;}
.xe{left:132.696000px;}
.x6{left:133.956000px;}
.xb{left:143.316000px;}
.x32{left:169.965000px;}
.x4{left:190.125000px;}
.x3f{left:195.870000px;}
.x40{left:198.765000px;}
.x45{left:208.290000px;}
.x22{left:227.385000px;}
.x1a{left:234.570000px;}
.x33{left:240.885000px;}
.x14{left:303.195000px;}
.x16{left:310.350000px;}
.x34{left:328.575000px;}
.x24{left:335.415000px;}
.x42{left:341.895000px;}
.x1b{left:344.595000px;}
.x1c{left:348.375000px;}
.x7{left:357.375000px;}
.xd{left:358.635000px;}
.x41{left:387.255000px;}
.x36{left:416.460000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xa{left:452.265000px;}
.x1d{left:468.645000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x37{left:504.120000px;}
.x26{left:564.960000px;}
.x19{left:620.253000px;}
.x38{left:632.490000px;}
.x44{left:770.760000px;}
@media print{
.v3{vertical-align:-62.080000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.310933pt;}
.lsc{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.280533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.439040pt;}
.ls17{letter-spacing:0.456533pt;}
.ls16{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls13{letter-spacing:204.298667pt;}
.ws14{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.240000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws18{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.912533pt;}
.ws17{word-spacing:-12.640000pt;}
.ws15{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws2{word-spacing:-9.769067pt;}
.ws3{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.733760pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._35{margin-left:-1803.488000pt;}
._5{margin-left:-52.960000pt;}
._34{margin-left:-3.873707pt;}
._13{margin-left:-2.964267pt;}
._10{margin-left:-1.948587pt;}
._2{margin-left:-0.930133pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._12{width:3.607893pt;}
._23{width:4.621440pt;}
._25{width:5.577600pt;}
._c{width:6.905600pt;}
._d{width:7.996160pt;}
._8{width:9.508480pt;}
._9{width:10.783360pt;}
._f{width:12.270720pt;}
._15{width:13.289600pt;}
._11{width:14.535253pt;}
._b{width:15.611947pt;}
._a{width:16.973867pt;}
._7{width:18.698240pt;}
._1d{width:20.245547pt;}
._17{width:21.529600pt;}
._21{width:22.735360pt;}
._1e{width:24.010240pt;}
._2e{width:24.969600pt;}
._24{width:26.197547pt;}
._14{width:27.356800pt;}
._28{width:28.259840pt;}
._29{width:29.219200pt;}
._30{width:30.358613pt;}
._1b{width:31.581440pt;}
._2c{width:32.509440pt;}
._1f{width:33.784320pt;}
._2b{width:35.218560pt;}
._26{width:36.759040pt;}
._27{width:38.193280pt;}
._e{width:39.096320pt;}
._22{width:40.264960pt;}
._1c{width:42.071040pt;}
._1a{width:43.133440pt;}
._2f{width:44.916693pt;}
._31{width:45.910613pt;}
._32{width:47.064320pt;}
._2a{width:49.826560pt;}
._16{width:51.336960pt;}
._36{width:53.279360pt;}
._33{width:54.235520pt;}
._20{width:55.138560pt;}
._3{width:58.218667pt;}
._37{width:62.734720pt;}
._2d{width:63.956480pt;}
._19{width:69.693440pt;}
._38{width:91.925760pt;}
._4{width:177.440000pt;}
._18{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsf{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.266667pt;}
.y43{bottom:-160.186667pt;}
.y42{bottom:-130.266667pt;}
.y7b{bottom:-127.546667pt;}
.y41{bottom:-100.160000pt;}
.y7a{bottom:-97.466667pt;}
.y40{bottom:-70.240000pt;}
.y79{bottom:-67.506667pt;}
.y3f{bottom:-40.160000pt;}
.y49{bottom:-37.440000pt;}
.y78{bottom:-37.426667pt;}
.y7d{bottom:-15.931333pt;}
.y48{bottom:-12.320000pt;}
.y3e{bottom:-10.240000pt;}
.y77{bottom:-7.506667pt;}
.y0{bottom:0.000000pt;}
.y269{bottom:1.633333pt;}
.y102{bottom:2.400000pt;}
.y10d{bottom:2.560000pt;}
.y10a{bottom:2.720000pt;}
.y65{bottom:3.506667pt;}
.y2{bottom:3.520000pt;}
.y141{bottom:4.160000pt;}
.y126{bottom:4.306667pt;}
.y47{bottom:4.320000pt;}
.y122{bottom:4.346667pt;}
.y124{bottom:4.466667pt;}
.y118{bottom:4.480000pt;}
.y6d{bottom:4.960000pt;}
.y3d{bottom:6.080000pt;}
.y108{bottom:8.800000pt;}
.y5{bottom:11.200000pt;}
.y10c{bottom:14.880000pt;}
.y111{bottom:14.906667pt;}
.y106{bottom:15.040000pt;}
.y6b{bottom:15.680000pt;}
.y64{bottom:17.626667pt;}
.y3c{bottom:18.400000pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y107{bottom:21.120000pt;}
.y10e{bottom:21.146667pt;}
.y4{bottom:21.920000pt;}
.y76{bottom:22.573333pt;}
.y109{bottom:27.200000pt;}
.y110{bottom:27.226667pt;}
.y6a{bottom:27.840000pt;}
.y63{bottom:28.666667pt;}
.y3b{bottom:30.880000pt;}
.y11b{bottom:33.920000pt;}
.y11f{bottom:33.946667pt;}
.y69{bottom:39.360000pt;}
.y10f{bottom:39.546667pt;}
.y80{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y62{bottom:44.506667pt;}
.y115{bottom:48.640000pt;}
.y75{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y7c{bottom:56.693333pt;}
.y61{bottom:60.346667pt;}
.y74{bottom:61.613333pt;}
.y68{bottom:62.560000pt;}
.y73{bottom:73.133333pt;}
.y60{bottom:76.346667pt;}
.y67{bottom:77.600000pt;}
.y72{bottom:84.813333pt;}
.y1d2{bottom:90.240000pt;}
.y19d{bottom:90.400000pt;}
.y1b2{bottom:91.200000pt;}
.yb1{bottom:92.160000pt;}
.y5f{bottom:92.186667pt;}
.y1fb{bottom:92.480000pt;}
.y164{bottom:93.920000pt;}
.y232{bottom:94.560000pt;}
.yc5{bottom:94.720000pt;}
.y133{bottom:95.840000pt;}
.y71{bottom:96.333333pt;}
.yea{bottom:97.440000pt;}
.y104{bottom:102.106667pt;}
.yf9{bottom:102.720000pt;}
.y1d1{bottom:107.840000pt;}
.y19c{bottom:108.000000pt;}
.y70{bottom:108.013333pt;}
.y5e{bottom:108.026667pt;}
.y38{bottom:108.640000pt;}
.y1b1{bottom:108.800000pt;}
.yb0{bottom:109.760000pt;}
.y231{bottom:109.920000pt;}
.y163{bottom:111.680000pt;}
.yc4{bottom:112.320000pt;}
.y268{bottom:112.960000pt;}
.y132{bottom:113.440000pt;}
.ye9{bottom:115.040000pt;}
.y6f{bottom:118.893333pt;}
.yf8{bottom:120.320000pt;}
.y1fa{bottom:123.040000pt;}
.y5d{bottom:123.866667pt;}
.y230{bottom:125.280000pt;}
.y1d0{bottom:125.440000pt;}
.y19b{bottom:125.600000pt;}
.y37{bottom:126.240000pt;}
.y1b0{bottom:126.400000pt;}
.yaf{bottom:127.360000pt;}
.y267{bottom:128.320000pt;}
.y162{bottom:129.280000pt;}
.yc3{bottom:130.080000pt;}
.y131{bottom:131.040000pt;}
.ye8{bottom:132.640000pt;}
.yf7{bottom:137.920000pt;}
.y5c{bottom:139.706667pt;}
.y22f{bottom:140.640000pt;}
.y1f9{bottom:141.440000pt;}
.y19a{bottom:143.200000pt;}
.y266{bottom:143.680000pt;}
.y36{bottom:144.000000pt;}
.yae{bottom:144.986667pt;}
.y161{bottom:146.906667pt;}
.yc2{bottom:147.706667pt;}
.y130{bottom:148.666667pt;}
.ye7{bottom:150.266667pt;}
.y5b{bottom:153.306667pt;}
.yf6{bottom:155.546667pt;}
.y22e{bottom:155.866667pt;}
.y265{bottom:159.066667pt;}
.y1cf{bottom:160.826667pt;}
.y199{bottom:160.986667pt;}
.y35{bottom:161.626667pt;}
.yad{bottom:162.746667pt;}
.y5a{bottom:164.506667pt;}
.yc1{bottom:165.306667pt;}
.y12f{bottom:166.266667pt;}
.ye6{bottom:168.026667pt;}
.y22d{bottom:171.226667pt;}
.yf5{bottom:173.306667pt;}
.y264{bottom:174.266667pt;}
.y1f8{bottom:177.786667pt;}
.y1ce{bottom:178.426667pt;}
.y198{bottom:178.586667pt;}
.y34{bottom:179.226667pt;}
.y1af{bottom:179.386667pt;}
.y59{bottom:180.346667pt;}
.y160{bottom:182.106667pt;}
.yc0{bottom:182.906667pt;}
.y12e{bottom:184.026667pt;}
.ye5{bottom:185.626667pt;}
.y22c{bottom:186.586667pt;}
.y263{bottom:189.626667pt;}
.yf4{bottom:190.906667pt;}
.y1f7{bottom:195.386667pt;}
.y1cd{bottom:196.026667pt;}
.y58{bottom:196.186667pt;}
.y33{bottom:196.826667pt;}
.y1ae{bottom:196.986667pt;}
.yac{bottom:197.946667pt;}
.y15f{bottom:199.866667pt;}
.ybf{bottom:200.506667pt;}
.y12d{bottom:201.306667pt;}
.y136{bottom:201.626667pt;}
.y22b{bottom:201.946667pt;}
.ye4{bottom:203.226667pt;}
.y262{bottom:204.986667pt;}
.yf3{bottom:208.506667pt;}
.y57{bottom:212.026667pt;}
.y1cc{bottom:213.626667pt;}
.y197{bottom:213.786667pt;}
.y32{bottom:214.426667pt;}
.y1ad{bottom:214.586667pt;}
.yab{bottom:215.546667pt;}
.y22a{bottom:217.306667pt;}
.y15e{bottom:217.466667pt;}
.y12c{bottom:218.906667pt;}
.ybe{bottom:219.066667pt;}
.y135{bottom:219.226667pt;}
.y261{bottom:220.346667pt;}
.ye3{bottom:220.826667pt;}
.yf2{bottom:226.106667pt;}
.y56{bottom:227.893333pt;}
.y196{bottom:231.386667pt;}
.y31{bottom:232.186667pt;}
.y168{bottom:232.346667pt;}
.y229{bottom:232.666667pt;}
.y182{bottom:232.826667pt;}
.yaa{bottom:233.146667pt;}
.y15d{bottom:235.066667pt;}
.y260{bottom:235.706667pt;}
.ybd{bottom:236.506667pt;}
.y134{bottom:236.826667pt;}
.ye2{bottom:238.426667pt;}
.y55{bottom:241.493333pt;}
.yf1{bottom:243.706667pt;}
.y167{bottom:243.866667pt;}
.y181{bottom:247.866667pt;}
.ybc{bottom:248.186667pt;}
.y1cb{bottom:248.986667pt;}
.y195{bottom:249.146667pt;}
.y30{bottom:249.786667pt;}
.y1f6{bottom:250.106667pt;}
.ya9{bottom:250.906667pt;}
.y25f{bottom:251.066667pt;}
.y12b{bottom:251.706667pt;}
.y15c{bottom:252.666667pt;}
.y54{bottom:252.693333pt;}
.ye1{bottom:256.186667pt;}
.y180{bottom:259.706667pt;}
.y12a{bottom:259.880000pt;}
.yf0{bottom:261.466667pt;}
.y228{bottom:263.226667pt;}
.ybb{bottom:265.786667pt;}
.y25e{bottom:266.266667pt;}
.y1ca{bottom:266.586667pt;}
.y194{bottom:266.746667pt;}
.y2f{bottom:267.386667pt;}
.y1ac{bottom:267.546667pt;}
.y1f5{bottom:267.866667pt;}
.ya8{bottom:268.506667pt;}
.y53{bottom:268.533333pt;}
.y15b{bottom:270.266667pt;}
.ye0{bottom:273.786667pt;}
.y129{bottom:274.600000pt;}
.y17f{bottom:277.306667pt;}
.y227{bottom:278.586667pt;}
.yef{bottom:279.066667pt;}
.y166{bottom:279.226667pt;}
.y25d{bottom:281.626667pt;}
.yba{bottom:283.386667pt;}
.y1c9{bottom:284.186667pt;}
.y193{bottom:284.346667pt;}
.y52{bottom:284.373333pt;}
.y2e{bottom:284.986667pt;}
.y1ab{bottom:285.146667pt;}
.y15a{bottom:285.306667pt;}
.y1f4{bottom:285.466667pt;}
.ya7{bottom:286.106667pt;}
.y128{bottom:289.320000pt;}
.ydf{bottom:291.386667pt;}
.y226{bottom:293.946667pt;}
.y17e{bottom:294.906667pt;}
.y159{bottom:296.826667pt;}
.y25c{bottom:296.986667pt;}
.yee{bottom:297.466667pt;}
.y51{bottom:300.213333pt;}
.yb9{bottom:301.146667pt;}
.y1c8{bottom:301.786667pt;}
.y192{bottom:301.946667pt;}
.y1aa{bottom:302.746667pt;}
.y1f3{bottom:303.066667pt;}
.y2d{bottom:303.386667pt;}
.ya6{bottom:303.706667pt;}
.y127{bottom:304.200000pt;}
.yde{bottom:308.986667pt;}
.y225{bottom:309.306667pt;}
.y25b{bottom:312.346667pt;}
.y17d{bottom:312.506667pt;}
.y158{bottom:314.426667pt;}
.yed{bottom:315.066667pt;}
.y50{bottom:316.053333pt;}
.y2c{bottom:318.746667pt;}
.y125{bottom:318.920000pt;}
.y1c7{bottom:319.386667pt;}
.y191{bottom:319.546667pt;}
.y1a9{bottom:320.346667pt;}
.y1f2{bottom:320.666667pt;}
.ya5{bottom:321.306667pt;}
.y224{bottom:324.666667pt;}
.ydd{bottom:326.586667pt;}
.y2b{bottom:327.546667pt;}
.y25a{bottom:327.706667pt;}
.y4f{bottom:329.653333pt;}
.y17c{bottom:330.106667pt;}
.y157{bottom:332.026667pt;}
.y123{bottom:333.640000pt;}
.y4a{bottom:334.600000pt;}
.yb8{bottom:336.346667pt;}
.y1c6{bottom:337.146667pt;}
.y190{bottom:337.306667pt;}
.y1a8{bottom:337.946667pt;}
.y1f1{bottom:338.266667pt;}
.ya4{bottom:339.066667pt;}
.y223{bottom:339.866667pt;}
.y4e{bottom:340.853333pt;}
.y259{bottom:342.906667pt;}
.ydc{bottom:344.346667pt;}
.y17b{bottom:347.866667pt;}
.y11e{bottom:348.520000pt;}
.y156{bottom:349.666667pt;}
.y2a{bottom:351.106667pt;}
.yb7{bottom:353.986667pt;}
.y1c5{bottom:354.786667pt;}
.y18f{bottom:354.946667pt;}
.y222{bottom:355.266667pt;}
.y1a7{bottom:355.746667pt;}
.y1f0{bottom:356.066667pt;}
.y4d{bottom:356.693333pt;}
.ya3{bottom:356.706667pt;}
.y258{bottom:358.306667pt;}
.ydb{bottom:361.986667pt;}
.y121{bottom:363.266667pt;}
.y17a{bottom:365.506667pt;}
.y155{bottom:367.426667pt;}
.y221{bottom:370.626667pt;}
.yb6{bottom:371.586667pt;}
.y29{bottom:372.226667pt;}
.y1c4{bottom:372.386667pt;}
.y4c{bottom:372.533333pt;}
.y18e{bottom:372.546667pt;}
.y1a6{bottom:373.346667pt;}
.y257{bottom:373.666667pt;}
.ya2{bottom:374.306667pt;}
.y1ef{bottom:374.466667pt;}
.y120{bottom:377.986667pt;}
.yda{bottom:379.586667pt;}
.y179{bottom:383.106667pt;}
.y154{bottom:385.026667pt;}
.y220{bottom:385.986667pt;}
.y4b{bottom:388.373333pt;}
.y256{bottom:389.026667pt;}
.yb5{bottom:389.346667pt;}
.y1c3{bottom:389.986667pt;}
.y18d{bottom:390.146667pt;}
.y1a5{bottom:390.946667pt;}
.ya1{bottom:391.906667pt;}
.y11a{bottom:392.866667pt;}
.y28{bottom:393.346667pt;}
.yd9{bottom:397.186667pt;}
.y178{bottom:400.706667pt;}
.y21f{bottom:401.346667pt;}
.y153{bottom:402.626667pt;}
.y255{bottom:404.386667pt;}
.yb4{bottom:406.946667pt;}
.y11d{bottom:407.586667pt;}
.y18c{bottom:407.746667pt;}
.y1a4{bottom:408.546667pt;}
.ya0{bottom:409.506667pt;}
.y1ee{bottom:410.786667pt;}
.y27{bottom:414.626667pt;}
.yd8{bottom:414.786667pt;}
.y21e{bottom:416.546667pt;}
.y177{bottom:418.306667pt;}
.y254{bottom:419.746667pt;}
.y152{bottom:420.226667pt;}
.y6e{bottom:421.813333pt;}
.y11c{bottom:422.306667pt;}
.yb3{bottom:425.346667pt;}
.y18b{bottom:425.506667pt;}
.y1a3{bottom:426.146667pt;}
.y9f{bottom:427.266667pt;}
.y1ed{bottom:429.186667pt;}
.y21d{bottom:431.906667pt;}
.yd7{bottom:432.546667pt;}
.y26{bottom:433.186667pt;}
.y253{bottom:434.946667pt;}
.y176{bottom:436.066667pt;}
.y114{bottom:437.186667pt;}
.y151{bottom:437.826667pt;}
.y1c2{bottom:442.946667pt;}
.y18a{bottom:443.106667pt;}
.yb2{bottom:443.906667pt;}
.y9e{bottom:444.866667pt;}
.y21c{bottom:447.266667pt;}
.yd6{bottom:450.146667pt;}
.y252{bottom:450.306667pt;}
.y25{bottom:450.786667pt;}
.y119{bottom:451.906667pt;}
.y175{bottom:453.666667pt;}
.y150{bottom:455.266667pt;}
.y165{bottom:455.586667pt;}
.y1c1{bottom:460.546667pt;}
.y189{bottom:460.706667pt;}
.y1a2{bottom:461.506667pt;}
.y9d{bottom:462.466667pt;}
.y21b{bottom:462.626667pt;}
.y24{bottom:462.946667pt;}
.y1ec{bottom:465.666667pt;}
.y117{bottom:466.626667pt;}
.yd5{bottom:467.746667pt;}
.y23{bottom:470.626667pt;}
.y174{bottom:471.266667pt;}
.y14f{bottom:473.186667pt;}
.y21a{bottom:477.986667pt;}
.y1c0{bottom:478.146667pt;}
.y188{bottom:478.306667pt;}
.y1a1{bottom:479.106667pt;}
.y9c{bottom:480.066667pt;}
.y251{bottom:481.026667pt;}
.y116{bottom:481.506667pt;}
.y1eb{bottom:483.266667pt;}
.yd4{bottom:485.346667pt;}
.yec{bottom:486.146667pt;}
.y14e{bottom:487.266667pt;}
.y173{bottom:488.866667pt;}
.y22{bottom:491.426667pt;}
.y219{bottom:493.346667pt;}
.y1bf{bottom:495.746667pt;}
.y187{bottom:495.906667pt;}
.y250{bottom:496.386667pt;}
.y1a0{bottom:496.706667pt;}
.y113{bottom:497.506667pt;}
.y9b{bottom:497.666667pt;}
.y1ea{bottom:500.866667pt;}
.y14d{bottom:502.146667pt;}
.yd3{bottom:502.946667pt;}
.yeb{bottom:503.746667pt;}
.y172{bottom:506.466667pt;}
.y218{bottom:508.546667pt;}
.y24f{bottom:511.746667pt;}
.y21{bottom:512.066667pt;}
.y1be{bottom:513.506667pt;}
.y186{bottom:513.666667pt;}
.y19f{bottom:514.306667pt;}
.y9a{bottom:515.426667pt;}
.y14c{bottom:516.866667pt;}
.y1e9{bottom:518.466667pt;}
.yd2{bottom:520.706667pt;}
.y217{bottom:523.906667pt;}
.y171{bottom:524.226667pt;}
.y24e{bottom:526.946667pt;}
.y185{bottom:529.506667pt;}
.y1bd{bottom:531.106667pt;}
.y14b{bottom:531.586667pt;}
.y19e{bottom:532.066667pt;}
.y20{bottom:532.866667pt;}
.y99{bottom:533.026667pt;}
.y112{bottom:534.146667pt;}
.y1e8{bottom:536.866667pt;}
.yd1{bottom:538.306667pt;}
.y216{bottom:539.266667pt;}
.y170{bottom:541.826667pt;}
.y24d{bottom:542.306667pt;}
.y14a{bottom:546.466667pt;}
.y103{bottom:547.426667pt;}
.y1bc{bottom:548.706667pt;}
.y98{bottom:550.626667pt;}
.y215{bottom:554.653333pt;}
.yd0{bottom:555.933333pt;}
.y24c{bottom:557.693333pt;}
.y66{bottom:558.493333pt;}
.y184{bottom:558.973333pt;}
.y16f{bottom:559.453333pt;}
.y149{bottom:561.213333pt;}
.y1bb{bottom:566.333333pt;}
.y97{bottom:568.253333pt;}
.y183{bottom:569.693333pt;}
.y214{bottom:570.013333pt;}
.y24b{bottom:573.053333pt;}
.y1e7{bottom:573.373333pt;}
.ycf{bottom:573.533333pt;}
.y148{bottom:575.933333pt;}
.y16e{bottom:577.053333pt;}
.y1f{bottom:581.533333pt;}
.y1ba{bottom:583.933333pt;}
.y213{bottom:585.373333pt;}
.y96{bottom:585.853333pt;}
.y24a{bottom:588.413333pt;}
.y147{bottom:590.653333pt;}
.yce{bottom:591.133333pt;}
.y1e6{bottom:591.773333pt;}
.y16d{bottom:594.653333pt;}
.y1e{bottom:595.293333pt;}
.y10b{bottom:597.213333pt;}
.y212{bottom:600.573333pt;}
.y1b9{bottom:601.693333pt;}
.y95{bottom:603.613333pt;}
.y249{bottom:603.773333pt;}
.y146{bottom:605.533333pt;}
.ycd{bottom:608.893333pt;}
.y1d{bottom:609.213333pt;}
.y16c{bottom:612.413333pt;}
.y1e5{bottom:612.893333pt;}
.y211{bottom:615.933333pt;}
.y248{bottom:618.973333pt;}
.y1b8{bottom:619.293333pt;}
.y145{bottom:620.253333pt;}
.y94{bottom:621.213333pt;}
.y105{bottom:622.333333pt;}
.y1c{bottom:622.973333pt;}
.ycc{bottom:626.493333pt;}
.y16b{bottom:630.013333pt;}
.y210{bottom:631.293333pt;}
.y247{bottom:634.333333pt;}
.y144{bottom:634.973333pt;}
.y1b{bottom:636.733333pt;}
.y1b7{bottom:636.893333pt;}
.y93{bottom:638.813333pt;}
.ycb{bottom:644.093333pt;}
.y1a{bottom:646.653333pt;}
.y16a{bottom:647.613333pt;}
.y1e4{bottom:649.213333pt;}
.y246{bottom:649.693333pt;}
.y143{bottom:649.853333pt;}
.y39{bottom:654.333333pt;}
.y1b6{bottom:654.493333pt;}
.y92{bottom:656.413333pt;}
.y19{bottom:658.813333pt;}
.y101{bottom:661.213333pt;}
.yca{bottom:661.693333pt;}
.y20f{bottom:662.013333pt;}
.y169{bottom:662.493333pt;}
.y142{bottom:664.573333pt;}
.y245{bottom:665.053333pt;}
.y1e3{bottom:666.813333pt;}
.y18{bottom:670.333333pt;}
.y1b5{bottom:672.093333pt;}
.y91{bottom:674.013333pt;}
.y20e{bottom:677.213333pt;}
.yc9{bottom:679.293333pt;}
.y100{bottom:680.413333pt;}
.y140{bottom:680.733333pt;}
.y17{bottom:681.693333pt;}
.y1e2{bottom:684.573333pt;}
.y1b4{bottom:689.853333pt;}
.y90{bottom:691.773333pt;}
.y20d{bottom:692.573333pt;}
.y16{bottom:693.213333pt;}
.y244{bottom:695.613333pt;}
.yc8{bottom:697.053333pt;}
.y13f{bottom:701.853333pt;}
.y1e1{bottom:702.173333pt;}
.y15{bottom:705.533333pt;}
.yff{bottom:707.613333pt;}
.y20c{bottom:707.933333pt;}
.y1b3{bottom:708.253333pt;}
.y8f{bottom:709.373333pt;}
.y243{bottom:710.973333pt;}
.yc7{bottom:714.653333pt;}
.y14{bottom:716.893333pt;}
.y13e{bottom:718.173333pt;}
.y1e0{bottom:719.773333pt;}
.y20b{bottom:723.293333pt;}
.yfe{bottom:725.053333pt;}
.y242{bottom:726.333333pt;}
.y8e{bottom:726.973333pt;}
.yc6{bottom:733.053333pt;}
.y13d{bottom:735.773333pt;}
.y1df{bottom:737.373333pt;}
.y20a{bottom:738.653333pt;}
.y13{bottom:740.733333pt;}
.y241{bottom:741.693333pt;}
.yfd{bottom:742.653333pt;}
.y8d{bottom:744.573333pt;}
.y12{bottom:750.653333pt;}
.y13c{bottom:753.373333pt;}
.y209{bottom:754.013333pt;}
.y1de{bottom:754.973333pt;}
.y240{bottom:757.053333pt;}
.yfc{bottom:760.293333pt;}
.y8c{bottom:762.213333pt;}
.y208{bottom:769.253333pt;}
.y11{bottom:771.013333pt;}
.y23f{bottom:772.453333pt;}
.y1dd{bottom:772.773333pt;}
.yfb{bottom:778.053333pt;}
.y8b{bottom:779.973333pt;}
.y207{bottom:784.613333pt;}
.y23e{bottom:787.653333pt;}
.y13b{bottom:788.773333pt;}
.y1dc{bottom:790.373333pt;}
.y10{bottom:792.453333pt;}
.yfa{bottom:796.453333pt;}
.y8a{bottom:797.573333pt;}
.y206{bottom:799.973333pt;}
.yf{bottom:801.573333pt;}
.y23d{bottom:803.013333pt;}
.y13a{bottom:806.373333pt;}
.y1db{bottom:807.973333pt;}
.y89{bottom:815.173333pt;}
.y205{bottom:815.333333pt;}
.y23c{bottom:818.373333pt;}
.ye{bottom:818.853333pt;}
.y139{bottom:823.973333pt;}
.y1da{bottom:825.573333pt;}
.y204{bottom:830.693333pt;}
.yd{bottom:832.133333pt;}
.y88{bottom:832.773333pt;}
.y23b{bottom:833.733333pt;}
.y138{bottom:841.253333pt;}
.yc{bottom:842.373333pt;}
.y1d9{bottom:843.173333pt;}
.y203{bottom:846.053333pt;}
.y23a{bottom:849.093333pt;}
.y87{bottom:850.373333pt;}
.y137{bottom:856.293333pt;}
.yb{bottom:857.893333pt;}
.y202{bottom:861.253333pt;}
.y1d8{bottom:861.733333pt;}
.y239{bottom:864.453333pt;}
.y86{bottom:868.133333pt;}
.y201{bottom:876.613333pt;}
.ya{bottom:877.093333pt;}
.y238{bottom:879.653333pt;}
.y85{bottom:885.733333pt;}
.y200{bottom:891.973333pt;}
.y237{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y1d7{bottom:898.053333pt;}
.y84{bottom:903.333333pt;}
.y1ff{bottom:907.333333pt;}
.y236{bottom:910.373333pt;}
.y1d6{bottom:915.653333pt;}
.y83{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1fe{bottom:922.693333pt;}
.y235{bottom:925.733333pt;}
.y1d5{bottom:933.253333pt;}
.y1fd{bottom:938.053333pt;}
.y82{bottom:938.533333pt;}
.y234{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y1d4{bottom:950.853333pt;}
.y1fc{bottom:953.573333pt;}
.y81{bottom:956.133333pt;}
.y233{bottom:956.293333pt;}
.y1d3{bottom:964.640000pt;}
.y6c{bottom:974.400000pt;}
.y7f{bottom:983.040000pt;}
.y7e{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h19{height:5.160000pt;}
.h40{height:5.562500pt;}
.h2{height:12.000000pt;}
.h2e{height:12.160000pt;}
.h35{height:14.066667pt;}
.h39{height:14.080000pt;}
.h38{height:14.098667pt;}
.h3b{height:14.106667pt;}
.h33{height:14.226667pt;}
.h3a{height:14.240000pt;}
.h1d{height:15.040000pt;}
.h3e{height:15.703125pt;}
.h24{height:19.680000pt;}
.h17{height:20.728125pt;}
.h31{height:24.480000pt;}
.h2b{height:26.368125pt;}
.hd{height:26.381250pt;}
.h11{height:27.523125pt;}
.h2c{height:27.628404pt;}
.hf{height:28.073883pt;}
.h4{height:30.400000pt;}
.h22{height:32.250000pt;}
.h15{height:35.114107pt;}
.h5{height:36.431250pt;}
.h30{height:36.800000pt;}
.h3f{height:37.324063pt;}
.h23{height:37.410000pt;}
.h29{height:38.877839pt;}
.h13{height:39.571875pt;}
.hc{height:40.103437pt;}
.h1b{height:40.635000pt;}
.h14{height:41.442606pt;}
.he{height:42.084375pt;}
.h1e{height:43.215000pt;}
.h36{height:43.666667pt;}
.h37{height:43.698667pt;}
.h16{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h32{height:49.146667pt;}
.h12{height:49.148438pt;}
.h1a{height:51.360000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h3d{height:54.598989pt;}
.hb{height:57.787500pt;}
.h3c{height:58.289418pt;}
.h34{height:58.386667pt;}
.h1c{height:58.563750pt;}
.h10{height:60.288750pt;}
.h2a{height:62.781250pt;}
.ha{height:64.500000pt;}
.h25{height:66.625000pt;}
.h27{height:66.750000pt;}
.h18{height:75.465000pt;}
.h7{height:77.951250pt;}
.h21{height:84.800000pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h2f{height:111.706667pt;}
.h26{height:128.640000pt;}
.h20{height:399.266667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wf{width:63.026667pt;}
.w3{width:72.952000pt;}
.w12{width:77.906667pt;}
.w10{width:77.938667pt;}
.w11{width:78.112000pt;}
.wb{width:92.952000pt;}
.wc{width:96.018667pt;}
.w13{width:114.098667pt;}
.w14{width:120.026667pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:163.866667pt;}
.w15{width:167.533333pt;}
.wd{width:204.026667pt;}
.we{width:221.973333pt;}
.w16{width:312.546667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:3.780000pt;}
.x2{left:7.192000pt;}
.x12{left:9.592000pt;}
.x30{left:12.986667pt;}
.x28{left:13.906667pt;}
.x2b{left:15.200000pt;}
.x23{left:16.346667pt;}
.x18{left:18.893333pt;}
.x2e{left:22.586667pt;}
.x29{left:24.506667pt;}
.x2f{left:28.506667pt;}
.x35{left:30.080000pt;}
.x2a{left:31.066667pt;}
.x2d{left:32.506667pt;}
.x3b{left:33.600000pt;}
.x3a{left:36.346667pt;}
.x39{left:38.400000pt;}
.x31{left:41.626667pt;}
.x3d{left:42.720000pt;}
.x3e{left:46.400000pt;}
.x3c{left:54.226667pt;}
.x2c{left:63.360000pt;}
.x3{left:65.746667pt;}
.x15{left:71.560000pt;}
.x13{left:72.680000pt;}
.x25{left:76.346667pt;}
.x11{left:82.760000pt;}
.x17{left:84.360000pt;}
.x27{left:85.786667pt;}
.x9{left:93.952000pt;}
.x1{left:96.040000pt;}
.x43{left:98.592000pt;}
.xc{left:100.032000pt;}
.x1e{left:105.952000pt;}
.x20{left:108.032000pt;}
.x21{left:109.160000pt;}
.x1f{left:114.112000pt;}
.xe{left:117.952000pt;}
.x6{left:119.072000pt;}
.xb{left:127.392000pt;}
.x32{left:151.080000pt;}
.x4{left:169.000000pt;}
.x3f{left:174.106667pt;}
.x40{left:176.680000pt;}
.x45{left:185.146667pt;}
.x22{left:202.120000pt;}
.x1a{left:208.506667pt;}
.x33{left:214.120000pt;}
.x14{left:269.506667pt;}
.x16{left:275.866667pt;}
.x34{left:292.066667pt;}
.x24{left:298.146667pt;}
.x42{left:303.906667pt;}
.x1b{left:306.306667pt;}
.x1c{left:309.666667pt;}
.x7{left:317.666667pt;}
.xd{left:318.786667pt;}
.x41{left:344.226667pt;}
.x36{left:370.186667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xa{left:402.013333pt;}
.x1d{left:416.573333pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x37{left:448.106667pt;}
.x26{left:502.186667pt;}
.x19{left:551.336000pt;}
.x38{left:562.213333pt;}
.x44{left:685.120000pt;}
}




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