
    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_e3390972cd764b54d06b3aeb.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_34f61e7a25973416b509f4ef.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_8aba667ad30e71c93c08e9ba.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_fe6f0e785c9d3a7a89abc6f3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.135742;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_de12129bc523b107babdfc57.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f8dc5e96fef84644656f5835.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_fc36a0b8f2d2ea392e9e12b1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0f31720e86d7001c818442b7.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_b4603d5343e847babdc076c2.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_b7808c88b2f53b394c943cf0.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_10bd33bea87e530388934446.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_82abe9068a584d7e774c4c47.woff')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.349800px;}
.ls17{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.226080px;}
.ls11{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.315600px;}
.ls14{letter-spacing:0.328200px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:1.080000px;}
.ls4{letter-spacing:16.020000px;}
.ls1{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.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;}
}
.ws13{word-spacing:-48.240000px;}
.wsd{word-spacing:-41.760000px;}
.ws12{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws10{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws19{word-spacing:-14.680200px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.241200px;}
.ws15{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.340000px;}
.ws4{word-spacing:-10.990200px;}
.ws5{word-spacing:-10.980000px;}
.ws9{word-spacing:-10.950480px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws16{word-spacing:-6.840000px;}
.ws14{word-spacing:-6.834240px;}
.wse{word-spacing:0.000000px;}
.ws0{word-spacing:60.960000px;}
._5{margin-left:-59.580000px;}
._28{margin-left:-4.063680px;}
._e{margin-left:-2.988000px;}
._2{margin-left:-1.111680px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._12{width:4.099680px;}
._b{width:5.617440px;}
._c{width:6.904080px;}
._a{width:7.948080px;}
._22{width:8.967600px;}
._26{width:10.000800px;}
._d{width:11.354400px;}
._13{width:12.700800px;}
._23{width:13.804560px;}
._15{width:15.009600px;}
._14{width:16.015680px;}
._1c{width:17.151120px;}
._1b{width:18.824400px;}
._25{width:19.991520px;}
._21{width:21.402000px;}
._1d{width:22.410000px;}
._1e{width:23.757600px;}
._20{width:24.858960px;}
._29{width:25.918080px;}
._2d{width:27.268320px;}
._1f{width:28.334160px;}
._7{width:29.461680px;}
._8{width:30.628800px;}
._9{width:32.122800px;}
._10{width:33.764400px;}
._11{width:34.817040px;}
._27{width:36.009360px;}
._30{width:37.208160px;}
._2a{width:38.273040px;}
._f{width:39.391200px;}
._34{width:40.696560px;}
._2e{width:42.967440px;}
._2f{width:44.015040px;}
._19{width:46.979280px;}
._1a{width:47.987280px;}
._31{width:49.302000px;}
._2c{width:51.572880px;}
._38{width:52.652160px;}
._24{width:54.517680px;}
._3a{width:57.787920px;}
._32{width:63.345600px;}
._33{width:64.365120px;}
._3{width:65.496000px;}
._37{width:66.811680px;}
._36{width:68.425200px;}
._35{width:71.891280px;}
._39{width:76.438080px;}
._2b{width:79.259520px;}
._17{width:107.822400px;}
._3b{width:125.256000px;}
._4{width:199.620000px;}
._18{width:201.060000px;}
._16{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;}
.fs10{font-size:6.000000px;}
.fsd{font-size:23.760000px;}
.fsf{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsc{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;}
.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:-213.870000px;}
.y43{bottom:-180.210000px;}
.y80{bottom:-156.270000px;}
.y42{bottom:-146.550000px;}
.y7f{bottom:-122.610000px;}
.y41{bottom:-112.680000px;}
.y7e{bottom:-88.770000px;}
.y40{bottom:-79.020000px;}
.y7d{bottom:-55.065000px;}
.y3f{bottom:-45.180000px;}
.y48{bottom:-27.180000px;}
.y7c{bottom:-21.225000px;}
.y82{bottom:-17.922750px;}
.y3e{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y254{bottom:1.837500px;}
.y156{bottom:2.880000px;}
.y19f{bottom:2.895000px;}
.y1ab{bottom:3.060000px;}
.y19b{bottom:3.075000px;}
.y6f{bottom:3.240000px;}
.y2{bottom:3.960000px;}
.y159{bottom:4.680000px;}
.y15b{bottom:4.860000px;}
.y47{bottom:5.040000px;}
.y71{bottom:5.580000px;}
.y67{bottom:5.745000px;}
.y166{bottom:6.480000px;}
.y160{bottom:6.660000px;}
.y3d{bottom:6.840000px;}
.y172{bottom:7.020000px;}
.y169{bottom:8.280000px;}
.y17c{bottom:8.310000px;}
.y16f{bottom:8.445000px;}
.y175{bottom:8.460000px;}
.y15d{bottom:8.640000px;}
.y163{bottom:8.820000px;}
.y19c{bottom:9.900000px;}
.y16c{bottom:10.065000px;}
.y7b{bottom:12.435000px;}
.y5{bottom:12.600000px;}
.y154{bottom:15.660000px;}
.y133{bottom:16.020000px;}
.y6e{bottom:16.200000px;}
.y139{bottom:16.230000px;}
.y158{bottom:16.380000px;}
.y157{bottom:16.740000px;}
.y132{bottom:16.920000px;}
.y165{bottom:18.540000px;}
.y15f{bottom:18.720000px;}
.y171{bottom:18.885000px;}
.y17a{bottom:18.900000px;}
.y3c{bottom:20.700000px;}
.y16b{bottom:21.810000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y66{bottom:23.565000px;}
.y4{bottom:24.660000px;}
.y6d{bottom:29.340000px;}
.y3b{bottom:34.740000px;}
.y65{bottom:39.045000px;}
.y6c{bottom:42.300000px;}
.y7a{bottom:43.395000px;}
.y85{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y64{bottom:51.465000px;}
.y6b{bottom:55.260000px;}
.y79{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y81{bottom:63.780000px;}
.y6a{bottom:68.400000px;}
.y63{bottom:69.285000px;}
.y78{bottom:69.495000px;}
.y77{bottom:82.455000px;}
.y69{bottom:85.320000px;}
.y62{bottom:87.150000px;}
.y76{bottom:95.595000px;}
.y197{bottom:98.100000px;}
.y21c{bottom:100.620000px;}
.y1fc{bottom:101.520000px;}
.y61{bottom:102.270000px;}
.yde{bottom:103.500000px;}
.yb7{bottom:103.680000px;}
.y75{bottom:108.555000px;}
.y253{bottom:109.800000px;}
.y12e{bottom:113.400000px;}
.y1cf{bottom:114.660000px;}
.y60{bottom:114.870000px;}
.y1e8{bottom:115.560000px;}
.y38{bottom:116.820000px;}
.y196{bottom:117.900000px;}
.y110{bottom:119.520000px;}
.y1fb{bottom:121.320000px;}
.y74{bottom:121.515000px;}
.yb6{bottom:123.480000px;}
.ydd{bottom:126.360000px;}
.y252{bottom:127.080000px;}
.y5f{bottom:132.870000px;}
.y12d{bottom:133.200000px;}
.y73{bottom:133.935000px;}
.y1ce{bottom:134.640000px;}
.y21b{bottom:135.000000px;}
.y1e7{bottom:135.360000px;}
.y37{bottom:136.620000px;}
.y195{bottom:137.700000px;}
.y10f{bottom:139.320000px;}
.y1fa{bottom:141.120000px;}
.yb5{bottom:143.280000px;}
.y251{bottom:144.360000px;}
.ydc{bottom:146.340000px;}
.y5e{bottom:150.690000px;}
.y21a{bottom:152.280000px;}
.y12c{bottom:153.900000px;}
.y1cd{bottom:154.440000px;}
.y1e6{bottom:155.340000px;}
.y36{bottom:156.600000px;}
.y194{bottom:157.500000px;}
.y10e{bottom:159.120000px;}
.y151{bottom:160.560000px;}
.y1f9{bottom:161.100000px;}
.y250{bottom:161.640000px;}
.yb4{bottom:163.110000px;}
.ydb{bottom:166.170000px;}
.y5d{bottom:168.510000px;}
.y219{bottom:169.590000px;}
.y1cc{bottom:174.270000px;}
.y1e5{bottom:175.170000px;}
.y35{bottom:176.430000px;}
.y193{bottom:177.330000px;}
.y24f{bottom:178.950000px;}
.y10d{bottom:179.130000px;}
.y150{bottom:180.390000px;}
.y1f8{bottom:180.930000px;}
.yb3{bottom:183.090000px;}
.yda{bottom:185.970000px;}
.y5c{bottom:186.330000px;}
.y218{bottom:186.870000px;}
.y1cb{bottom:194.070000px;}
.y12b{bottom:194.970000px;}
.y24e{bottom:196.050000px;}
.y34{bottom:196.230000px;}
.y192{bottom:197.310000px;}
.y10c{bottom:198.930000px;}
.y14f{bottom:200.190000px;}
.y1f7{bottom:200.730000px;}
.yb2{bottom:202.890000px;}
.y5b{bottom:204.150000px;}
.yd9{bottom:205.770000px;}
.y24d{bottom:213.330000px;}
.y1ca{bottom:213.870000px;}
.y12a{bottom:214.770000px;}
.y33{bottom:216.030000px;}
.y191{bottom:217.110000px;}
.y10b{bottom:218.730000px;}
.y14e{bottom:219.990000px;}
.y1f6{bottom:220.530000px;}
.y217{bottom:221.250000px;}
.y5a{bottom:221.970000px;}
.yb1{bottom:222.690000px;}
.yd8{bottom:225.570000px;}
.y24c{bottom:230.610000px;}
.y1c9{bottom:233.850000px;}
.y129{bottom:234.570000px;}
.y32{bottom:235.830000px;}
.y190{bottom:236.910000px;}
.y10a{bottom:238.530000px;}
.y216{bottom:238.890000px;}
.y14d{bottom:239.790000px;}
.y59{bottom:239.970000px;}
.y1f5{bottom:240.330000px;}
.yb0{bottom:242.490000px;}
.yd7{bottom:245.550000px;}
.y24b{bottom:247.890000px;}
.y1c8{bottom:253.650000px;}
.y128{bottom:254.370000px;}
.y1e4{bottom:254.550000px;}
.y31{bottom:255.810000px;}
.y18f{bottom:256.710000px;}
.y58{bottom:257.790000px;}
.y109{bottom:258.330000px;}
.y14c{bottom:259.770000px;}
.y1f4{bottom:260.310000px;}
.yaf{bottom:262.290000px;}
.y24a{bottom:265.170000px;}
.yd6{bottom:265.350000px;}
.y1c7{bottom:273.450000px;}
.y127{bottom:274.170000px;}
.y1e3{bottom:274.350000px;}
.y30{bottom:275.610000px;}
.y18e{bottom:276.510000px;}
.y215{bottom:277.230000px;}
.y108{bottom:278.310000px;}
.y14b{bottom:279.570000px;}
.y1f3{bottom:280.110000px;}
.yae{bottom:282.270000px;}
.y249{bottom:282.450000px;}
.yd5{bottom:285.150000px;}
.y1c6{bottom:293.250000px;}
.y57{bottom:293.430000px;}
.y126{bottom:294.150000px;}
.y2f{bottom:296.310000px;}
.y18d{bottom:296.490000px;}
.y214{bottom:297.930000px;}
.y107{bottom:298.110000px;}
.y14a{bottom:299.370000px;}
.y248{bottom:299.550000px;}
.y1f2{bottom:299.910000px;}
.yad{bottom:302.070000px;}
.yd4{bottom:304.950000px;}
.y56{bottom:306.780000px;}
.y1c5{bottom:313.050000px;}
.y2e{bottom:313.590000px;}
.y125{bottom:313.950000px;}
.y55{bottom:315.600000px;}
.y18c{bottom:316.290000px;}
.y247{bottom:316.830000px;}
.y106{bottom:317.910000px;}
.y49{bottom:318.465000px;}
.y2d{bottom:318.630000px;}
.y149{bottom:319.170000px;}
.y1f1{bottom:319.710000px;}
.yac{bottom:321.870000px;}
.yd3{bottom:324.750000px;}
.y1c4{bottom:333.030000px;}
.y54{bottom:333.600000px;}
.y124{bottom:333.750000px;}
.y2c{bottom:333.930000px;}
.y246{bottom:334.110000px;}
.y18b{bottom:336.090000px;}
.y105{bottom:337.710000px;}
.y213{bottom:338.790000px;}
.y148{bottom:338.970000px;}
.y1f0{bottom:339.510000px;}
.yab{bottom:341.670000px;}
.yd2{bottom:344.730000px;}
.y245{bottom:351.390000px;}
.y53{bottom:351.420000px;}
.y1c3{bottom:352.830000px;}
.y123{bottom:353.550000px;}
.y1e2{bottom:353.730000px;}
.y18a{bottom:355.890000px;}
.y104{bottom:357.510000px;}
.y2b{bottom:357.870000px;}
.y212{bottom:358.590000px;}
.y147{bottom:358.950000px;}
.y1ef{bottom:359.310000px;}
.yaa{bottom:361.470000px;}
.yd1{bottom:364.530000px;}
.y244{bottom:368.670000px;}
.y52{bottom:369.240000px;}
.y1c2{bottom:372.630000px;}
.y122{bottom:373.350000px;}
.y1e1{bottom:373.530000px;}
.y189{bottom:375.690000px;}
.y103{bottom:377.310000px;}
.y146{bottom:378.750000px;}
.y1ee{bottom:379.290000px;}
.ya9{bottom:381.450000px;}
.y2a{bottom:381.630000px;}
.yd0{bottom:384.330000px;}
.y243{bottom:385.770000px;}
.y51{bottom:387.060000px;}
.y1c1{bottom:392.475000px;}
.y121{bottom:393.375000px;}
.y188{bottom:395.715000px;}
.y102{bottom:397.335000px;}
.y145{bottom:398.595000px;}
.y1ed{bottom:399.135000px;}
.ya8{bottom:401.295000px;}
.y242{bottom:403.095000px;}
.ycf{bottom:404.175000px;}
.y50{bottom:404.880000px;}
.y29{bottom:405.435000px;}
.y1c0{bottom:412.275000px;}
.y120{bottom:413.175000px;}
.y187{bottom:415.515000px;}
.y101{bottom:417.135000px;}
.y4f{bottom:418.200000px;}
.y144{bottom:418.395000px;}
.y1ec{bottom:418.935000px;}
.y211{bottom:420.195000px;}
.y241{bottom:420.375000px;}
.ya7{bottom:421.095000px;}
.yce{bottom:423.975000px;}
.y4e{bottom:427.020000px;}
.y28{bottom:429.195000px;}
.y1bf{bottom:432.255000px;}
.y11f{bottom:432.975000px;}
.y186{bottom:435.315000px;}
.y100{bottom:436.935000px;}
.y240{bottom:437.655000px;}
.y143{bottom:438.195000px;}
.y1eb{bottom:438.735000px;}
.y210{bottom:440.175000px;}
.ya6{bottom:440.895000px;}
.ycd{bottom:443.955000px;}
.y4d{bottom:445.020000px;}
.y1be{bottom:452.055000px;}
.y1e0{bottom:452.955000px;}
.y27{bottom:453.135000px;}
.y11e{bottom:453.675000px;}
.y23f{bottom:454.935000px;}
.y185{bottom:455.115000px;}
.yff{bottom:456.735000px;}
.y142{bottom:458.175000px;}
.y1ea{bottom:458.535000px;}
.y20f{bottom:459.975000px;}
.ya5{bottom:460.695000px;}
.y72{bottom:461.040000px;}
.y4c{bottom:462.840000px;}
.ycc{bottom:463.755000px;}
.y1bd{bottom:471.855000px;}
.y23e{bottom:472.215000px;}
.y1df{bottom:472.755000px;}
.y11d{bottom:473.475000px;}
.y26{bottom:474.015000px;}
.y184{bottom:474.915000px;}
.yfe{bottom:476.535000px;}
.y141{bottom:477.975000px;}
.y1e9{bottom:479.415000px;}
.y20e{bottom:479.775000px;}
.y4b{bottom:480.660000px;}
.ya4{bottom:480.675000px;}
.ycb{bottom:483.555000px;}
.y11c{bottom:486.615000px;}
.y23d{bottom:489.315000px;}
.y1bc{bottom:491.655000px;}
.y1de{bottom:492.555000px;}
.y25{bottom:493.815000px;}
.y183{bottom:494.895000px;}
.yfd{bottom:496.515000px;}
.y140{bottom:497.775000px;}
.y4a{bottom:498.480000px;}
.ya3{bottom:500.475000px;}
.y20d{bottom:500.655000px;}
.yca{bottom:504.255000px;}
.y11b{bottom:506.415000px;}
.y23c{bottom:506.595000px;}
.y24{bottom:507.495000px;}
.y182{bottom:511.095000px;}
.y1bb{bottom:511.455000px;}
.y1dd{bottom:512.355000px;}
.y23{bottom:516.135000px;}
.yfc{bottom:516.315000px;}
.y13f{bottom:517.575000px;}
.ya2{bottom:520.275000px;}
.y181{bottom:523.155000px;}
.y23b{bottom:523.875000px;}
.yc9{bottom:524.055000px;}
.y11a{bottom:526.215000px;}
.y1ba{bottom:531.435000px;}
.y1dc{bottom:532.155000px;}
.y180{bottom:534.855000px;}
.yfb{bottom:536.115000px;}
.yc8{bottom:537.015000px;}
.y13e{bottom:537.375000px;}
.y22{bottom:539.535000px;}
.ya1{bottom:540.075000px;}
.y23a{bottom:541.155000px;}
.y119{bottom:546.015000px;}
.y20c{bottom:547.635000px;}
.y1b9{bottom:551.235000px;}
.y1db{bottom:552.135000px;}
.y17f{bottom:555.195000px;}
.yfa{bottom:555.915000px;}
.yc7{bottom:556.995000px;}
.y13d{bottom:557.355000px;}
.y239{bottom:558.435000px;}
.ya0{bottom:559.875000px;}
.y21{bottom:562.755000px;}
.y118{bottom:565.815000px;}
.y20b{bottom:568.155000px;}
.y1b8{bottom:571.035000px;}
.y1da{bottom:571.935000px;}
.yf9{bottom:575.715000px;}
.yc6{bottom:576.795000px;}
.y13c{bottom:577.155000px;}
.y17e{bottom:578.775000px;}
.y9f{bottom:579.855000px;}
.y117{bottom:585.795000px;}
.y20{bottom:585.975000px;}
.y1b7{bottom:590.835000px;}
.y1d9{bottom:591.735000px;}
.y238{bottom:592.815000px;}
.y13b{bottom:593.355000px;}
.y17d{bottom:595.335000px;}
.yf8{bottom:595.695000px;}
.yc5{bottom:596.595000px;}
.y9e{bottom:599.655000px;}
.y13a{bottom:605.415000px;}
.y116{bottom:605.595000px;}
.y20a{bottom:609.195000px;}
.y237{bottom:610.095000px;}
.y1b6{bottom:610.635000px;}
.y1d8{bottom:611.535000px;}
.yf7{bottom:615.495000px;}
.yc4{bottom:616.395000px;}
.y138{bottom:617.115000px;}
.y9d{bottom:619.455000px;}
.y115{bottom:625.425000px;}
.y236{bottom:627.405000px;}
.y209{bottom:629.025000px;}
.y1b5{bottom:630.645000px;}
.y1d7{bottom:631.365000px;}
.y68{bottom:633.165000px;}
.yf6{bottom:635.325000px;}
.yc3{bottom:636.225000px;}
.y9c{bottom:639.285000px;}
.y17b{bottom:640.005000px;}
.y1f{bottom:640.905000px;}
.y235{bottom:644.685000px;}
.y137{bottom:644.865000px;}
.y114{bottom:645.225000px;}
.y208{bottom:648.825000px;}
.y1b4{bottom:650.445000px;}
.y1d6{bottom:651.345000px;}
.yf5{bottom:655.125000px;}
.yc2{bottom:656.205000px;}
.y1e{bottom:656.385000px;}
.y179{bottom:656.565000px;}
.y9b{bottom:659.085000px;}
.y234{bottom:661.965000px;}
.y113{bottom:665.025000px;}
.y207{bottom:669.525000px;}
.y1b3{bottom:670.245000px;}
.y1d5{bottom:671.145000px;}
.y1d{bottom:672.045000px;}
.y136{bottom:672.405000px;}
.yf4{bottom:674.925000px;}
.yc1{bottom:676.005000px;}
.y178{bottom:676.905000px;}
.y9a{bottom:679.065000px;}
.y233{bottom:679.245000px;}
.y112{bottom:685.905000px;}
.y1c{bottom:687.525000px;}
.y1b2{bottom:690.045000px;}
.y1d4{bottom:690.945000px;}
.yf3{bottom:694.905000px;}
.yc0{bottom:695.805000px;}
.y232{bottom:696.345000px;}
.y99{bottom:698.865000px;}
.y135{bottom:700.125000px;}
.y177{bottom:701.205000px;}
.y1b{bottom:703.005000px;}
.y111{bottom:705.705000px;}
.y1b1{bottom:709.845000px;}
.y206{bottom:710.565000px;}
.y1d3{bottom:710.745000px;}
.y231{bottom:713.625000px;}
.yf2{bottom:714.705000px;}
.ybf{bottom:715.605000px;}
.y176{bottom:717.765000px;}
.y1a{bottom:718.485000px;}
.y98{bottom:718.665000px;}
.y134{bottom:727.845000px;}
.y19{bottom:729.645000px;}
.y1b0{bottom:729.825000px;}
.y205{bottom:730.185000px;}
.y1d2{bottom:730.545000px;}
.y230{bottom:730.905000px;}
.yf1{bottom:734.505000px;}
.ybe{bottom:735.405000px;}
.y174{bottom:737.925000px;}
.y39{bottom:738.285000px;}
.y97{bottom:738.465000px;}
.y18{bottom:743.325000px;}
.y22f{bottom:748.185000px;}
.y1af{bottom:749.625000px;}
.y1d1{bottom:750.525000px;}
.y204{bottom:751.065000px;}
.yf0{bottom:754.305000px;}
.ybd{bottom:755.385000px;}
.y17{bottom:756.285000px;}
.y96{bottom:758.265000px;}
.y173{bottom:761.685000px;}
.y22e{bottom:765.465000px;}
.y1ae{bottom:767.445000px;}
.y16{bottom:769.245000px;}
.y1d0{bottom:770.325000px;}
.yef{bottom:774.105000px;}
.y203{bottom:774.825000px;}
.ybc{bottom:775.185000px;}
.y95{bottom:778.245000px;}
.y170{bottom:778.260000px;}
.y15{bottom:782.025000px;}
.y22d{bottom:782.565000px;}
.y131{bottom:784.545000px;}
.yee{bottom:794.085000px;}
.ybb{bottom:794.985000px;}
.y14{bottom:795.885000px;}
.y94{bottom:798.045000px;}
.y16e{bottom:799.140000px;}
.y22c{bottom:799.845000px;}
.y1ad{bottom:805.425000px;}
.y13{bottom:808.665000px;}
.yed{bottom:813.885000px;}
.yba{bottom:814.785000px;}
.y202{bottom:815.685000px;}
.y22b{bottom:817.125000px;}
.y1ac{bottom:817.665000px;}
.y93{bottom:817.845000px;}
.y130{bottom:821.265000px;}
.y16d{bottom:822.885000px;}
.y1aa{bottom:829.545000px;}
.yec{bottom:833.685000px;}
.y22a{bottom:834.405000px;}
.y12{bottom:835.485000px;}
.yb9{bottom:835.665000px;}
.y92{bottom:837.645000px;}
.y12f{bottom:839.085000px;}
.y16a{bottom:839.460000px;}
.y11{bottom:846.645000px;}
.y229{bottom:851.685000px;}
.yeb{bottom:853.530000px;}
.y201{bottom:855.330000px;}
.yb8{bottom:856.590000px;}
.y91{bottom:857.490000px;}
.y1a9{bottom:857.835000px;}
.y1a8{bottom:857.850000px;}
.y168{bottom:866.490000px;}
.y228{bottom:869.010000px;}
.y10{bottom:869.550000px;}
.yea{bottom:873.330000px;}
.y200{bottom:875.310000px;}
.y90{bottom:877.470000px;}
.y227{bottom:886.110000px;}
.y1a7{bottom:886.275000px;}
.y1a6{bottom:886.290000px;}
.yf{bottom:889.170000px;}
.y167{bottom:890.070000px;}
.ye9{bottom:893.310000px;}
.y1ff{bottom:895.110000px;}
.y8f{bottom:897.270000px;}
.y226{bottom:903.390000px;}
.y164{bottom:906.630000px;}
.ye{bottom:908.610000px;}
.ye8{bottom:913.110000px;}
.y1a5{bottom:914.535000px;}
.y1a4{bottom:914.550000px;}
.y1fe{bottom:914.910000px;}
.y8e{bottom:917.070000px;}
.yd{bottom:919.950000px;}
.y225{bottom:920.670000px;}
.y162{bottom:926.250000px;}
.ye7{bottom:932.910000px;}
.y1fd{bottom:935.610000px;}
.y8d{bottom:936.870000px;}
.yc{bottom:937.590000px;}
.y224{bottom:937.950000px;}
.y1a3{bottom:942.975000px;}
.y1a2{bottom:942.990000px;}
.y161{bottom:950.550000px;}
.ye6{bottom:952.710000px;}
.y223{bottom:955.230000px;}
.y8c{bottom:956.670000px;}
.yb{bottom:959.190000px;}
.y15e{bottom:967.290000px;}
.y1a1{bottom:971.235000px;}
.y1a0{bottom:971.250000px;}
.ye5{bottom:972.510000px;}
.y8b{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.y15c{bottom:987.450000px;}
.y222{bottom:989.610000px;}
.ye4{bottom:992.490000px;}
.y8a{bottom:996.450000px;}
.y19e{bottom:999.675000px;}
.y19d{bottom:999.690000px;}
.y221{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y15a{bottom:1011.750000px;}
.ye3{bottom:1012.290000px;}
.y89{bottom:1016.250000px;}
.y220{bottom:1024.170000px;}
.y19a{bottom:1027.935000px;}
.y199{bottom:1027.950000px;}
.y153{bottom:1029.930000px;}
.ye2{bottom:1032.090000px;}
.y88{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y21f{bottom:1041.450000px;}
.ye1{bottom:1051.890000px;}
.y155{bottom:1055.490000px;}
.y87{bottom:1055.850000px;}
.y198{bottom:1057.830000px;}
.y21e{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.ye0{bottom:1072.590000px;}
.y86{bottom:1075.650000px;}
.y21d{bottom:1075.830000px;}
.y152{bottom:1077.090000px;}
.ydf{bottom:1093.500000px;}
.y70{bottom:1096.200000px;}
.y84{bottom:1105.920000px;}
.y83{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h17{height:5.805000px;}
.h53{height:6.257812px;}
.h2{height:13.500000px;}
.h33{height:13.845000px;}
.h36{height:15.825000px;}
.h3f{height:15.840000px;}
.h1b{height:16.920000px;}
.h3b{height:18.885000px;}
.h39{height:19.425000px;}
.h43{height:19.440000px;}
.h49{height:19.605000px;}
.h48{height:20.145000px;}
.h40{height:20.160000px;}
.h23{height:22.140000px;}
.h3c{height:22.845000px;}
.h46{height:22.890000px;}
.h41{height:23.040000px;}
.h16{height:23.319141px;}
.h44{height:23.400000px;}
.h37{height:23.565000px;}
.h35{height:24.825000px;}
.h3e{height:26.301000px;}
.h30{height:26.820000px;}
.h2f{height:27.000000px;}
.h31{height:27.030000px;}
.h4f{height:27.525000px;}
.h4d{height:27.531000px;}
.h4e{height:27.540000px;}
.h50{height:27.562500px;}
.h4c{height:27.705000px;}
.h4a{height:27.711000px;}
.h4b{height:27.720000px;}
.h2e{height:28.800000px;}
.hc{height:29.678906px;}
.h20{height:30.476250px;}
.hf{height:30.963516px;}
.h2d{height:31.081955px;}
.h4{height:34.200000px;}
.h2b{height:35.806641px;}
.h14{height:36.281250px;}
.h32{height:39.405000px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h2c{height:41.726953px;}
.h22{height:42.086250px;}
.h3a{height:43.185000px;}
.h42{height:43.200000px;}
.h38{height:43.725000px;}
.h28{height:43.737568px;}
.h45{height:43.740000px;}
.h47{height:43.950000px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h19{height:45.714375px;}
.h12{height:46.622932px;}
.hd{height:47.344922px;}
.h1c{height:48.616875px;}
.h34{height:49.394180px;}
.h3d{height:49.881000px;}
.h15{height:52.998047px;}
.h1d{height:54.421875px;}
.h10{height:55.291992px;}
.h1f{height:55.503491px;}
.h18{height:57.780000px;}
.h27{height:58.621992px;}
.h3{height:58.651172px;}
.h52{height:59.439023px;}
.h29{height:60.226875px;}
.ha{height:65.010937px;}
.h1a{height:65.884219px;}
.he{height:67.824844px;}
.h2a{height:70.628906px;}
.h51{height:70.664062px;}
.h9{height:72.562500px;}
.h24{height:74.953125px;}
.h26{height:75.093750px;}
.h7{height:87.695156px;}
.h21{height:93.420000px;}
.h8{height:96.508125px;}
.h25{height:144.900000px;}
.h1e{height:510.735000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w10{width:54.030000px;}
.w11{width:66.240000px;}
.w16{width:74.370000px;}
.wc{width:80.985000px;}
.w14{width:81.021000px;}
.w3{width:82.071000px;}
.w15{width:101.145000px;}
.wb{width:111.441000px;}
.w12{width:141.681000px;}
.wd{width:148.530000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:182.535000px;}
.wf{width:222.675000px;}
.we{width:377.706000px;}
.w17{width:421.980000px;}
.w13{width:421.986000px;}
.w18{width:421.995000px;}
.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;}
.x3b{left:4.252500px;}
.x2{left:8.091000px;}
.x12{left:10.791000px;}
.x35{left:14.760000px;}
.x34{left:18.540000px;}
.x18{left:21.255000px;}
.x2b{left:22.320000px;}
.x3a{left:23.610000px;}
.x30{left:27.180000px;}
.x2d{left:29.700000px;}
.x27{left:31.500000px;}
.x32{left:33.120000px;}
.x23{left:37.080000px;}
.x26{left:40.500000px;}
.x33{left:45.705000px;}
.x2e{left:49.125000px;}
.x28{left:63.750000px;}
.x25{left:68.250000px;}
.x31{left:70.725000px;}
.x3{left:73.965000px;}
.x16{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x15{left:94.185000px;}
.x1{left:108.045000px;}
.x6{left:118.296000px;}
.x1e{left:123.696000px;}
.xc{left:125.136000px;}
.x7{left:127.656000px;}
.x36{left:129.465000px;}
.xe{left:132.696000px;}
.x1a{left:134.316000px;}
.x1f{left:187.770000px;}
.x4{left:190.125000px;}
.x20{left:191.550000px;}
.x1b{left:198.390000px;}
.x1c{left:202.170000px;}
.x8{left:236.910000px;}
.x1d{left:245.955000px;}
.x21{left:278.175000px;}
.xa{left:282.855000px;}
.x14{left:302.835000px;}
.x17{left:310.350000px;}
.xd{left:423.285000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.x29{left:485.760000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x37{left:551.460000px;}
.x22{left:602.250000px;}
.x19{left:620.253000px;}
.x2f{left:627.450000px;}
.x38{left:632.490000px;}
.x24{left:683.250000px;}
.x2a{left:708.450000px;}
.x39{left:733.650000px;}
.x2c{left:762.480000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.310933pt;}
.ls17{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.200960pt;}
.ls11{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.280533pt;}
.ls14{letter-spacing:0.291733pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls4{letter-spacing:14.240000pt;}
.ls1{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ws13{word-spacing:-42.880000pt;}
.wsd{word-spacing:-37.120000pt;}
.ws12{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws19{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.881067pt;}
.ws15{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.080000pt;}
.ws4{word-spacing:-9.769067pt;}
.ws5{word-spacing:-9.760000pt;}
.ws9{word-spacing:-9.733760pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws16{word-spacing:-6.080000pt;}
.ws14{word-spacing:-6.074880pt;}
.wse{word-spacing:0.000000pt;}
.ws0{word-spacing:54.186667pt;}
._5{margin-left:-52.960000pt;}
._28{margin-left:-3.612160pt;}
._e{margin-left:-2.656000pt;}
._2{margin-left:-0.988160pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._12{width:3.644160pt;}
._b{width:4.993280pt;}
._c{width:6.136960pt;}
._a{width:7.064960pt;}
._22{width:7.971200pt;}
._26{width:8.889600pt;}
._d{width:10.092800pt;}
._13{width:11.289600pt;}
._23{width:12.270720pt;}
._15{width:13.341867pt;}
._14{width:14.236160pt;}
._1c{width:15.245440pt;}
._1b{width:16.732800pt;}
._25{width:17.770240pt;}
._21{width:19.024000pt;}
._1d{width:19.920000pt;}
._1e{width:21.117867pt;}
._20{width:22.096853pt;}
._29{width:23.038293pt;}
._2d{width:24.238507pt;}
._1f{width:25.185920pt;}
._7{width:26.188160pt;}
._8{width:27.225600pt;}
._9{width:28.553600pt;}
._10{width:30.012800pt;}
._11{width:30.948480pt;}
._27{width:32.008320pt;}
._30{width:33.073920pt;}
._2a{width:34.020480pt;}
._f{width:35.014400pt;}
._34{width:36.174720pt;}
._2e{width:38.193280pt;}
._2f{width:39.124480pt;}
._19{width:41.759360pt;}
._1a{width:42.655360pt;}
._31{width:43.824000pt;}
._2c{width:45.842560pt;}
._38{width:46.801920pt;}
._24{width:48.460160pt;}
._3a{width:51.367040pt;}
._32{width:56.307200pt;}
._33{width:57.213440pt;}
._3{width:58.218667pt;}
._37{width:59.388160pt;}
._36{width:60.822400pt;}
._35{width:63.903360pt;}
._39{width:67.944960pt;}
._2b{width:70.452907pt;}
._17{width:95.842133pt;}
._3b{width:111.338667pt;}
._4{width:177.440000pt;}
._18{width:178.720000pt;}
._16{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsd{font-size:21.120000pt;}
.fsf{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsc{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;}
.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.106667pt;}
.y43{bottom:-160.186667pt;}
.y80{bottom:-138.906667pt;}
.y42{bottom:-130.266667pt;}
.y7f{bottom:-108.986667pt;}
.y41{bottom:-100.160000pt;}
.y7e{bottom:-78.906667pt;}
.y40{bottom:-70.240000pt;}
.y7d{bottom:-48.946667pt;}
.y3f{bottom:-40.160000pt;}
.y48{bottom:-24.160000pt;}
.y7c{bottom:-18.866667pt;}
.y82{bottom:-15.931333pt;}
.y3e{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y254{bottom:1.633333pt;}
.y156{bottom:2.560000pt;}
.y19f{bottom:2.573333pt;}
.y1ab{bottom:2.720000pt;}
.y19b{bottom:2.733333pt;}
.y6f{bottom:2.880000pt;}
.y2{bottom:3.520000pt;}
.y159{bottom:4.160000pt;}
.y15b{bottom:4.320000pt;}
.y47{bottom:4.480000pt;}
.y71{bottom:4.960000pt;}
.y67{bottom:5.106667pt;}
.y166{bottom:5.760000pt;}
.y160{bottom:5.920000pt;}
.y3d{bottom:6.080000pt;}
.y172{bottom:6.240000pt;}
.y169{bottom:7.360000pt;}
.y17c{bottom:7.386667pt;}
.y16f{bottom:7.506667pt;}
.y175{bottom:7.520000pt;}
.y15d{bottom:7.680000pt;}
.y163{bottom:7.840000pt;}
.y19c{bottom:8.800000pt;}
.y16c{bottom:8.946667pt;}
.y7b{bottom:11.053333pt;}
.y5{bottom:11.200000pt;}
.y154{bottom:13.920000pt;}
.y133{bottom:14.240000pt;}
.y6e{bottom:14.400000pt;}
.y139{bottom:14.426667pt;}
.y158{bottom:14.560000pt;}
.y157{bottom:14.880000pt;}
.y132{bottom:15.040000pt;}
.y165{bottom:16.480000pt;}
.y15f{bottom:16.640000pt;}
.y171{bottom:16.786667pt;}
.y17a{bottom:16.800000pt;}
.y3c{bottom:18.400000pt;}
.y16b{bottom:19.386667pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y66{bottom:20.946667pt;}
.y4{bottom:21.920000pt;}
.y6d{bottom:26.080000pt;}
.y3b{bottom:30.880000pt;}
.y65{bottom:34.706667pt;}
.y6c{bottom:37.600000pt;}
.y7a{bottom:38.573333pt;}
.y85{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y64{bottom:45.746667pt;}
.y6b{bottom:49.120000pt;}
.y79{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y81{bottom:56.693333pt;}
.y6a{bottom:60.800000pt;}
.y63{bottom:61.586667pt;}
.y78{bottom:61.773333pt;}
.y77{bottom:73.293333pt;}
.y69{bottom:75.840000pt;}
.y62{bottom:77.466667pt;}
.y76{bottom:84.973333pt;}
.y197{bottom:87.200000pt;}
.y21c{bottom:89.440000pt;}
.y1fc{bottom:90.240000pt;}
.y61{bottom:90.906667pt;}
.yde{bottom:92.000000pt;}
.yb7{bottom:92.160000pt;}
.y75{bottom:96.493333pt;}
.y253{bottom:97.600000pt;}
.y12e{bottom:100.800000pt;}
.y1cf{bottom:101.920000pt;}
.y60{bottom:102.106667pt;}
.y1e8{bottom:102.720000pt;}
.y38{bottom:103.840000pt;}
.y196{bottom:104.800000pt;}
.y110{bottom:106.240000pt;}
.y1fb{bottom:107.840000pt;}
.y74{bottom:108.013333pt;}
.yb6{bottom:109.760000pt;}
.ydd{bottom:112.320000pt;}
.y252{bottom:112.960000pt;}
.y5f{bottom:118.106667pt;}
.y12d{bottom:118.400000pt;}
.y73{bottom:119.053333pt;}
.y1ce{bottom:119.680000pt;}
.y21b{bottom:120.000000pt;}
.y1e7{bottom:120.320000pt;}
.y37{bottom:121.440000pt;}
.y195{bottom:122.400000pt;}
.y10f{bottom:123.840000pt;}
.y1fa{bottom:125.440000pt;}
.yb5{bottom:127.360000pt;}
.y251{bottom:128.320000pt;}
.ydc{bottom:130.080000pt;}
.y5e{bottom:133.946667pt;}
.y21a{bottom:135.360000pt;}
.y12c{bottom:136.800000pt;}
.y1cd{bottom:137.280000pt;}
.y1e6{bottom:138.080000pt;}
.y36{bottom:139.200000pt;}
.y194{bottom:140.000000pt;}
.y10e{bottom:141.440000pt;}
.y151{bottom:142.720000pt;}
.y1f9{bottom:143.200000pt;}
.y250{bottom:143.680000pt;}
.yb4{bottom:144.986667pt;}
.ydb{bottom:147.706667pt;}
.y5d{bottom:149.786667pt;}
.y219{bottom:150.746667pt;}
.y1cc{bottom:154.906667pt;}
.y1e5{bottom:155.706667pt;}
.y35{bottom:156.826667pt;}
.y193{bottom:157.626667pt;}
.y24f{bottom:159.066667pt;}
.y10d{bottom:159.226667pt;}
.y150{bottom:160.346667pt;}
.y1f8{bottom:160.826667pt;}
.yb3{bottom:162.746667pt;}
.yda{bottom:165.306667pt;}
.y5c{bottom:165.626667pt;}
.y218{bottom:166.106667pt;}
.y1cb{bottom:172.506667pt;}
.y12b{bottom:173.306667pt;}
.y24e{bottom:174.266667pt;}
.y34{bottom:174.426667pt;}
.y192{bottom:175.386667pt;}
.y10c{bottom:176.826667pt;}
.y14f{bottom:177.946667pt;}
.y1f7{bottom:178.426667pt;}
.yb2{bottom:180.346667pt;}
.y5b{bottom:181.466667pt;}
.yd9{bottom:182.906667pt;}
.y24d{bottom:189.626667pt;}
.y1ca{bottom:190.106667pt;}
.y12a{bottom:190.906667pt;}
.y33{bottom:192.026667pt;}
.y191{bottom:192.986667pt;}
.y10b{bottom:194.426667pt;}
.y14e{bottom:195.546667pt;}
.y1f6{bottom:196.026667pt;}
.y217{bottom:196.666667pt;}
.y5a{bottom:197.306667pt;}
.yb1{bottom:197.946667pt;}
.yd8{bottom:200.506667pt;}
.y24c{bottom:204.986667pt;}
.y1c9{bottom:207.866667pt;}
.y129{bottom:208.506667pt;}
.y32{bottom:209.626667pt;}
.y190{bottom:210.586667pt;}
.y10a{bottom:212.026667pt;}
.y216{bottom:212.346667pt;}
.y14d{bottom:213.146667pt;}
.y59{bottom:213.306667pt;}
.y1f5{bottom:213.626667pt;}
.yb0{bottom:215.546667pt;}
.yd7{bottom:218.266667pt;}
.y24b{bottom:220.346667pt;}
.y1c8{bottom:225.466667pt;}
.y128{bottom:226.106667pt;}
.y1e4{bottom:226.266667pt;}
.y31{bottom:227.386667pt;}
.y18f{bottom:228.186667pt;}
.y58{bottom:229.146667pt;}
.y109{bottom:229.626667pt;}
.y14c{bottom:230.906667pt;}
.y1f4{bottom:231.386667pt;}
.yaf{bottom:233.146667pt;}
.y24a{bottom:235.706667pt;}
.yd6{bottom:235.866667pt;}
.y1c7{bottom:243.066667pt;}
.y127{bottom:243.706667pt;}
.y1e3{bottom:243.866667pt;}
.y30{bottom:244.986667pt;}
.y18e{bottom:245.786667pt;}
.y215{bottom:246.426667pt;}
.y108{bottom:247.386667pt;}
.y14b{bottom:248.506667pt;}
.y1f3{bottom:248.986667pt;}
.yae{bottom:250.906667pt;}
.y249{bottom:251.066667pt;}
.yd5{bottom:253.466667pt;}
.y1c6{bottom:260.666667pt;}
.y57{bottom:260.826667pt;}
.y126{bottom:261.466667pt;}
.y2f{bottom:263.386667pt;}
.y18d{bottom:263.546667pt;}
.y214{bottom:264.826667pt;}
.y107{bottom:264.986667pt;}
.y14a{bottom:266.106667pt;}
.y248{bottom:266.266667pt;}
.y1f2{bottom:266.586667pt;}
.yad{bottom:268.506667pt;}
.yd4{bottom:271.066667pt;}
.y56{bottom:272.693333pt;}
.y1c5{bottom:278.266667pt;}
.y2e{bottom:278.746667pt;}
.y125{bottom:279.066667pt;}
.y55{bottom:280.533333pt;}
.y18c{bottom:281.146667pt;}
.y247{bottom:281.626667pt;}
.y106{bottom:282.586667pt;}
.y49{bottom:283.080000pt;}
.y2d{bottom:283.226667pt;}
.y149{bottom:283.706667pt;}
.y1f1{bottom:284.186667pt;}
.yac{bottom:286.106667pt;}
.yd3{bottom:288.666667pt;}
.y1c4{bottom:296.026667pt;}
.y54{bottom:296.533333pt;}
.y124{bottom:296.666667pt;}
.y2c{bottom:296.826667pt;}
.y246{bottom:296.986667pt;}
.y18b{bottom:298.746667pt;}
.y105{bottom:300.186667pt;}
.y213{bottom:301.146667pt;}
.y148{bottom:301.306667pt;}
.y1f0{bottom:301.786667pt;}
.yab{bottom:303.706667pt;}
.yd2{bottom:306.426667pt;}
.y245{bottom:312.346667pt;}
.y53{bottom:312.373333pt;}
.y1c3{bottom:313.626667pt;}
.y123{bottom:314.266667pt;}
.y1e2{bottom:314.426667pt;}
.y18a{bottom:316.346667pt;}
.y104{bottom:317.786667pt;}
.y2b{bottom:318.106667pt;}
.y212{bottom:318.746667pt;}
.y147{bottom:319.066667pt;}
.y1ef{bottom:319.386667pt;}
.yaa{bottom:321.306667pt;}
.yd1{bottom:324.026667pt;}
.y244{bottom:327.706667pt;}
.y52{bottom:328.213333pt;}
.y1c2{bottom:331.226667pt;}
.y122{bottom:331.866667pt;}
.y1e1{bottom:332.026667pt;}
.y189{bottom:333.946667pt;}
.y103{bottom:335.386667pt;}
.y146{bottom:336.666667pt;}
.y1ee{bottom:337.146667pt;}
.ya9{bottom:339.066667pt;}
.y2a{bottom:339.226667pt;}
.yd0{bottom:341.626667pt;}
.y243{bottom:342.906667pt;}
.y51{bottom:344.053333pt;}
.y1c1{bottom:348.866667pt;}
.y121{bottom:349.666667pt;}
.y188{bottom:351.746667pt;}
.y102{bottom:353.186667pt;}
.y145{bottom:354.306667pt;}
.y1ed{bottom:354.786667pt;}
.ya8{bottom:356.706667pt;}
.y242{bottom:358.306667pt;}
.ycf{bottom:359.266667pt;}
.y50{bottom:359.893333pt;}
.y29{bottom:360.386667pt;}
.y1c0{bottom:366.466667pt;}
.y120{bottom:367.266667pt;}
.y187{bottom:369.346667pt;}
.y101{bottom:370.786667pt;}
.y4f{bottom:371.733333pt;}
.y144{bottom:371.906667pt;}
.y1ec{bottom:372.386667pt;}
.y211{bottom:373.506667pt;}
.y241{bottom:373.666667pt;}
.ya7{bottom:374.306667pt;}
.yce{bottom:376.866667pt;}
.y4e{bottom:379.573333pt;}
.y28{bottom:381.506667pt;}
.y1bf{bottom:384.226667pt;}
.y11f{bottom:384.866667pt;}
.y186{bottom:386.946667pt;}
.y100{bottom:388.386667pt;}
.y240{bottom:389.026667pt;}
.y143{bottom:389.506667pt;}
.y1eb{bottom:389.986667pt;}
.y210{bottom:391.266667pt;}
.ya6{bottom:391.906667pt;}
.ycd{bottom:394.626667pt;}
.y4d{bottom:395.573333pt;}
.y1be{bottom:401.826667pt;}
.y1e0{bottom:402.626667pt;}
.y27{bottom:402.786667pt;}
.y11e{bottom:403.266667pt;}
.y23f{bottom:404.386667pt;}
.y185{bottom:404.546667pt;}
.yff{bottom:405.986667pt;}
.y142{bottom:407.266667pt;}
.y1ea{bottom:407.586667pt;}
.y20f{bottom:408.866667pt;}
.ya5{bottom:409.506667pt;}
.y72{bottom:409.813333pt;}
.y4c{bottom:411.413333pt;}
.ycc{bottom:412.226667pt;}
.y1bd{bottom:419.426667pt;}
.y23e{bottom:419.746667pt;}
.y1df{bottom:420.226667pt;}
.y11d{bottom:420.866667pt;}
.y26{bottom:421.346667pt;}
.y184{bottom:422.146667pt;}
.yfe{bottom:423.586667pt;}
.y141{bottom:424.866667pt;}
.y1e9{bottom:426.146667pt;}
.y20e{bottom:426.466667pt;}
.y4b{bottom:427.253333pt;}
.ya4{bottom:427.266667pt;}
.ycb{bottom:429.826667pt;}
.y11c{bottom:432.546667pt;}
.y23d{bottom:434.946667pt;}
.y1bc{bottom:437.026667pt;}
.y1de{bottom:437.826667pt;}
.y25{bottom:438.946667pt;}
.y183{bottom:439.906667pt;}
.yfd{bottom:441.346667pt;}
.y140{bottom:442.466667pt;}
.y4a{bottom:443.093333pt;}
.ya3{bottom:444.866667pt;}
.y20d{bottom:445.026667pt;}
.yca{bottom:448.226667pt;}
.y11b{bottom:450.146667pt;}
.y23c{bottom:450.306667pt;}
.y24{bottom:451.106667pt;}
.y182{bottom:454.306667pt;}
.y1bb{bottom:454.626667pt;}
.y1dd{bottom:455.426667pt;}
.y23{bottom:458.786667pt;}
.yfc{bottom:458.946667pt;}
.y13f{bottom:460.066667pt;}
.ya2{bottom:462.466667pt;}
.y181{bottom:465.026667pt;}
.y23b{bottom:465.666667pt;}
.yc9{bottom:465.826667pt;}
.y11a{bottom:467.746667pt;}
.y1ba{bottom:472.386667pt;}
.y1dc{bottom:473.026667pt;}
.y180{bottom:475.426667pt;}
.yfb{bottom:476.546667pt;}
.yc8{bottom:477.346667pt;}
.y13e{bottom:477.666667pt;}
.y22{bottom:479.586667pt;}
.ya1{bottom:480.066667pt;}
.y23a{bottom:481.026667pt;}
.y119{bottom:485.346667pt;}
.y20c{bottom:486.786667pt;}
.y1b9{bottom:489.986667pt;}
.y1db{bottom:490.786667pt;}
.y17f{bottom:493.506667pt;}
.yfa{bottom:494.146667pt;}
.yc7{bottom:495.106667pt;}
.y13d{bottom:495.426667pt;}
.y239{bottom:496.386667pt;}
.ya0{bottom:497.666667pt;}
.y21{bottom:500.226667pt;}
.y118{bottom:502.946667pt;}
.y20b{bottom:505.026667pt;}
.y1b8{bottom:507.586667pt;}
.y1da{bottom:508.386667pt;}
.yf9{bottom:511.746667pt;}
.yc6{bottom:512.706667pt;}
.y13c{bottom:513.026667pt;}
.y17e{bottom:514.466667pt;}
.y9f{bottom:515.426667pt;}
.y117{bottom:520.706667pt;}
.y20{bottom:520.866667pt;}
.y1b7{bottom:525.186667pt;}
.y1d9{bottom:525.986667pt;}
.y238{bottom:526.946667pt;}
.y13b{bottom:527.426667pt;}
.y17d{bottom:529.186667pt;}
.yf8{bottom:529.506667pt;}
.yc5{bottom:530.306667pt;}
.y9e{bottom:533.026667pt;}
.y13a{bottom:538.146667pt;}
.y116{bottom:538.306667pt;}
.y20a{bottom:541.506667pt;}
.y237{bottom:542.306667pt;}
.y1b6{bottom:542.786667pt;}
.y1d8{bottom:543.586667pt;}
.yf7{bottom:547.106667pt;}
.yc4{bottom:547.906667pt;}
.y138{bottom:548.546667pt;}
.y9d{bottom:550.626667pt;}
.y115{bottom:555.933333pt;}
.y236{bottom:557.693333pt;}
.y209{bottom:559.133333pt;}
.y1b5{bottom:560.573333pt;}
.y1d7{bottom:561.213333pt;}
.y68{bottom:562.813333pt;}
.yf6{bottom:564.733333pt;}
.yc3{bottom:565.533333pt;}
.y9c{bottom:568.253333pt;}
.y17b{bottom:568.893333pt;}
.y1f{bottom:569.693333pt;}
.y235{bottom:573.053333pt;}
.y137{bottom:573.213333pt;}
.y114{bottom:573.533333pt;}
.y208{bottom:576.733333pt;}
.y1b4{bottom:578.173333pt;}
.y1d6{bottom:578.973333pt;}
.yf5{bottom:582.333333pt;}
.yc2{bottom:583.293333pt;}
.y1e{bottom:583.453333pt;}
.y179{bottom:583.613333pt;}
.y9b{bottom:585.853333pt;}
.y234{bottom:588.413333pt;}
.y113{bottom:591.133333pt;}
.y207{bottom:595.133333pt;}
.y1b3{bottom:595.773333pt;}
.y1d5{bottom:596.573333pt;}
.y1d{bottom:597.373333pt;}
.y136{bottom:597.693333pt;}
.yf4{bottom:599.933333pt;}
.yc1{bottom:600.893333pt;}
.y178{bottom:601.693333pt;}
.y9a{bottom:603.613333pt;}
.y233{bottom:603.773333pt;}
.y112{bottom:609.693333pt;}
.y1c{bottom:611.133333pt;}
.y1b2{bottom:613.373333pt;}
.y1d4{bottom:614.173333pt;}
.yf3{bottom:617.693333pt;}
.yc0{bottom:618.493333pt;}
.y232{bottom:618.973333pt;}
.y99{bottom:621.213333pt;}
.y135{bottom:622.333333pt;}
.y177{bottom:623.293333pt;}
.y1b{bottom:624.893333pt;}
.y111{bottom:627.293333pt;}
.y1b1{bottom:630.973333pt;}
.y206{bottom:631.613333pt;}
.y1d3{bottom:631.773333pt;}
.y231{bottom:634.333333pt;}
.yf2{bottom:635.293333pt;}
.ybf{bottom:636.093333pt;}
.y176{bottom:638.013333pt;}
.y1a{bottom:638.653333pt;}
.y98{bottom:638.813333pt;}
.y134{bottom:646.973333pt;}
.y19{bottom:648.573333pt;}
.y1b0{bottom:648.733333pt;}
.y205{bottom:649.053333pt;}
.y1d2{bottom:649.373333pt;}
.y230{bottom:649.693333pt;}
.yf1{bottom:652.893333pt;}
.ybe{bottom:653.693333pt;}
.y174{bottom:655.933333pt;}
.y39{bottom:656.253333pt;}
.y97{bottom:656.413333pt;}
.y18{bottom:660.733333pt;}
.y22f{bottom:665.053333pt;}
.y1af{bottom:666.333333pt;}
.y1d1{bottom:667.133333pt;}
.y204{bottom:667.613333pt;}
.yf0{bottom:670.493333pt;}
.ybd{bottom:671.453333pt;}
.y17{bottom:672.253333pt;}
.y96{bottom:674.013333pt;}
.y173{bottom:677.053333pt;}
.y22e{bottom:680.413333pt;}
.y1ae{bottom:682.173333pt;}
.y16{bottom:683.773333pt;}
.y1d0{bottom:684.733333pt;}
.yef{bottom:688.093333pt;}
.y203{bottom:688.733333pt;}
.ybc{bottom:689.053333pt;}
.y95{bottom:691.773333pt;}
.y170{bottom:691.786667pt;}
.y15{bottom:695.133333pt;}
.y22d{bottom:695.613333pt;}
.y131{bottom:697.373333pt;}
.yee{bottom:705.853333pt;}
.ybb{bottom:706.653333pt;}
.y14{bottom:707.453333pt;}
.y94{bottom:709.373333pt;}
.y16e{bottom:710.346667pt;}
.y22c{bottom:710.973333pt;}
.y1ad{bottom:715.933333pt;}
.y13{bottom:718.813333pt;}
.yed{bottom:723.453333pt;}
.yba{bottom:724.253333pt;}
.y202{bottom:725.053333pt;}
.y22b{bottom:726.333333pt;}
.y1ac{bottom:726.813333pt;}
.y93{bottom:726.973333pt;}
.y130{bottom:730.013333pt;}
.y16d{bottom:731.453333pt;}
.y1aa{bottom:737.373333pt;}
.yec{bottom:741.053333pt;}
.y22a{bottom:741.693333pt;}
.y12{bottom:742.653333pt;}
.yb9{bottom:742.813333pt;}
.y92{bottom:744.573333pt;}
.y12f{bottom:745.853333pt;}
.y16a{bottom:746.186667pt;}
.y11{bottom:752.573333pt;}
.y229{bottom:757.053333pt;}
.yeb{bottom:758.693333pt;}
.y201{bottom:760.293333pt;}
.yb8{bottom:761.413333pt;}
.y91{bottom:762.213333pt;}
.y1a9{bottom:762.520000pt;}
.y1a8{bottom:762.533333pt;}
.y168{bottom:770.213333pt;}
.y228{bottom:772.453333pt;}
.y10{bottom:772.933333pt;}
.yea{bottom:776.293333pt;}
.y200{bottom:778.053333pt;}
.y90{bottom:779.973333pt;}
.y227{bottom:787.653333pt;}
.y1a7{bottom:787.800000pt;}
.y1a6{bottom:787.813333pt;}
.yf{bottom:790.373333pt;}
.y167{bottom:791.173333pt;}
.ye9{bottom:794.053333pt;}
.y1ff{bottom:795.653333pt;}
.y8f{bottom:797.573333pt;}
.y226{bottom:803.013333pt;}
.y164{bottom:805.893333pt;}
.ye{bottom:807.653333pt;}
.ye8{bottom:811.653333pt;}
.y1a5{bottom:812.920000pt;}
.y1a4{bottom:812.933333pt;}
.y1fe{bottom:813.253333pt;}
.y8e{bottom:815.173333pt;}
.yd{bottom:817.733333pt;}
.y225{bottom:818.373333pt;}
.y162{bottom:823.333333pt;}
.ye7{bottom:829.253333pt;}
.y1fd{bottom:831.653333pt;}
.y8d{bottom:832.773333pt;}
.yc{bottom:833.413333pt;}
.y224{bottom:833.733333pt;}
.y1a3{bottom:838.200000pt;}
.y1a2{bottom:838.213333pt;}
.y161{bottom:844.933333pt;}
.ye6{bottom:846.853333pt;}
.y223{bottom:849.093333pt;}
.y8c{bottom:850.373333pt;}
.yb{bottom:852.613333pt;}
.y15e{bottom:859.813333pt;}
.y1a1{bottom:863.320000pt;}
.y1a0{bottom:863.333333pt;}
.ye5{bottom:864.453333pt;}
.y8b{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.y15c{bottom:877.733333pt;}
.y222{bottom:879.653333pt;}
.ye4{bottom:882.213333pt;}
.y8a{bottom:885.733333pt;}
.y19e{bottom:888.600000pt;}
.y19d{bottom:888.613333pt;}
.y221{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y15a{bottom:899.333333pt;}
.ye3{bottom:899.813333pt;}
.y89{bottom:903.333333pt;}
.y220{bottom:910.373333pt;}
.y19a{bottom:913.720000pt;}
.y199{bottom:913.733333pt;}
.y153{bottom:915.493333pt;}
.ye2{bottom:917.413333pt;}
.y88{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y21f{bottom:925.733333pt;}
.ye1{bottom:935.013333pt;}
.y155{bottom:938.213333pt;}
.y87{bottom:938.533333pt;}
.y198{bottom:940.293333pt;}
.y21e{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.ye0{bottom:953.413333pt;}
.y86{bottom:956.133333pt;}
.y21d{bottom:956.293333pt;}
.y152{bottom:957.413333pt;}
.ydf{bottom:972.000000pt;}
.y70{bottom:974.400000pt;}
.y84{bottom:983.040000pt;}
.y83{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h17{height:5.160000pt;}
.h53{height:5.562500pt;}
.h2{height:12.000000pt;}
.h33{height:12.306667pt;}
.h36{height:14.066667pt;}
.h3f{height:14.080000pt;}
.h1b{height:15.040000pt;}
.h3b{height:16.786667pt;}
.h39{height:17.266667pt;}
.h43{height:17.280000pt;}
.h49{height:17.426667pt;}
.h48{height:17.906667pt;}
.h40{height:17.920000pt;}
.h23{height:19.680000pt;}
.h3c{height:20.306667pt;}
.h46{height:20.346667pt;}
.h41{height:20.480000pt;}
.h16{height:20.728125pt;}
.h44{height:20.800000pt;}
.h37{height:20.946667pt;}
.h35{height:22.066667pt;}
.h3e{height:23.378667pt;}
.h30{height:23.840000pt;}
.h2f{height:24.000000pt;}
.h31{height:24.026667pt;}
.h4f{height:24.466667pt;}
.h4d{height:24.472000pt;}
.h4e{height:24.480000pt;}
.h50{height:24.500000pt;}
.h4c{height:24.626667pt;}
.h4a{height:24.632000pt;}
.h4b{height:24.640000pt;}
.h2e{height:25.600000pt;}
.hc{height:26.381250pt;}
.h20{height:27.090000pt;}
.hf{height:27.523125pt;}
.h2d{height:27.628404pt;}
.h4{height:30.400000pt;}
.h2b{height:31.828125pt;}
.h14{height:32.250000pt;}
.h32{height:35.026667pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h2c{height:37.090625pt;}
.h22{height:37.410000pt;}
.h3a{height:38.386667pt;}
.h42{height:38.400000pt;}
.h38{height:38.866667pt;}
.h28{height:38.877839pt;}
.h45{height:38.880000pt;}
.h47{height:39.066667pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h19{height:40.635000pt;}
.h12{height:41.442606pt;}
.hd{height:42.084375pt;}
.h1c{height:43.215000pt;}
.h34{height:43.905937pt;}
.h3d{height:44.338667pt;}
.h15{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h10{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h18{height:51.360000pt;}
.h27{height:52.108438pt;}
.h3{height:52.134375pt;}
.h52{height:52.834688pt;}
.h29{height:53.535000pt;}
.ha{height:57.787500pt;}
.h1a{height:58.563750pt;}
.he{height:60.288750pt;}
.h2a{height:62.781250pt;}
.h51{height:62.812500pt;}
.h9{height:64.500000pt;}
.h24{height:66.625000pt;}
.h26{height:66.750000pt;}
.h7{height:77.951250pt;}
.h21{height:83.040000pt;}
.h8{height:85.785000pt;}
.h25{height:128.800000pt;}
.h1e{height:453.986667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w10{width:48.026667pt;}
.w11{width:58.880000pt;}
.w16{width:66.106667pt;}
.wc{width:71.986667pt;}
.w14{width:72.018667pt;}
.w3{width:72.952000pt;}
.w15{width:89.906667pt;}
.wb{width:99.058667pt;}
.w12{width:125.938667pt;}
.wd{width:132.026667pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:162.253333pt;}
.wf{width:197.933333pt;}
.we{width:335.738667pt;}
.w17{width:375.093333pt;}
.w13{width:375.098667pt;}
.w18{width:375.106667pt;}
.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;}
.x3b{left:3.780000pt;}
.x2{left:7.192000pt;}
.x12{left:9.592000pt;}
.x35{left:13.120000pt;}
.x34{left:16.480000pt;}
.x18{left:18.893333pt;}
.x2b{left:19.840000pt;}
.x3a{left:20.986667pt;}
.x30{left:24.160000pt;}
.x2d{left:26.400000pt;}
.x27{left:28.000000pt;}
.x32{left:29.440000pt;}
.x23{left:32.960000pt;}
.x26{left:36.000000pt;}
.x33{left:40.626667pt;}
.x2e{left:43.666667pt;}
.x28{left:56.666667pt;}
.x25{left:60.666667pt;}
.x31{left:62.866667pt;}
.x3{left:65.746667pt;}
.x16{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x15{left:83.720000pt;}
.x1{left:96.040000pt;}
.x6{left:105.152000pt;}
.x1e{left:109.952000pt;}
.xc{left:111.232000pt;}
.x7{left:113.472000pt;}
.x36{left:115.080000pt;}
.xe{left:117.952000pt;}
.x1a{left:119.392000pt;}
.x1f{left:166.906667pt;}
.x4{left:169.000000pt;}
.x20{left:170.266667pt;}
.x1b{left:176.346667pt;}
.x1c{left:179.706667pt;}
.x8{left:210.586667pt;}
.x1d{left:218.626667pt;}
.x21{left:247.266667pt;}
.xa{left:251.426667pt;}
.x14{left:269.186667pt;}
.x17{left:275.866667pt;}
.xd{left:376.253333pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.x29{left:431.786667pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x37{left:490.186667pt;}
.x22{left:535.333333pt;}
.x19{left:551.336000pt;}
.x2f{left:557.733333pt;}
.x38{left:562.213333pt;}
.x24{left:607.333333pt;}
.x2a{left:629.733333pt;}
.x39{left:652.133333pt;}
.x2c{left:677.760000pt;}
}




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